diff --git a/components/ResultDialog/index.tsx b/components/ResultDialog/index.tsx index 118fc15b7..70b15d518 100644 --- a/components/ResultDialog/index.tsx +++ b/components/ResultDialog/index.tsx @@ -98,6 +98,29 @@ export const ResultDialog = ({ const output = []; for (let key in args) { + if (key === "_isBigNumber") { + continue; + } + + if (key === "_hex") { + const bnString = BigNumber.from(args[key]).toString(); + + output.push( + copyText(bnString)} + > + + + ); + } + output.push(