diff --git a/libs/remix-ui/terminal/src/lib/components/Table.tsx b/libs/remix-ui/terminal/src/lib/components/Table.tsx index 90b250fde4..948b9b1e59 100644 --- a/libs/remix-ui/terminal/src/lib/components/Table.tsx +++ b/libs/remix-ui/terminal/src/lib/components/Table.tsx @@ -36,124 +36,219 @@ const showTable = (opts, showTableHash) => { } const val = opts.val != null ? typeConversion.toInt(opts.val) : 0 return ( - - { opts.status !== undefined ? ( - - - ) : null } - {opts.hash && !opts.isCall ? ( - - - ) : null } - { - opts.contractAddress ? ( - - - - - ) : null - } - { - opts.from ? ( - - - - - ) : null - } - { - opts.to ? ( - - - - - ) : null - } - { - opts.gas ? ( - - - - - ) : null - } - { - opts.transactionCost ? ( - - - - - ) : null - } - { - opts.executionCost ? ( - - - - - ) : null - } +
status{`${opts.status} ${msg}`}
transaction hash{opts.hash} - -
contract address{opts.contractAddress} - -
from{opts.from} - -
to{toHash} - -
gas{opts.gas} gas - -
transaction cost{opts.transactionCost} gas {callWarning} - -
execution cost{opts.executionCost} gas {callWarning} - -
+ + {opts.status !== undefined ? ( + + + + + ) : null} + {opts.hash && !opts.isCall ? ( + + + + + ) : null} + {opts.contractAddress ? ( + + + + + ) : null} + {opts.from ? ( + + + + + ) : null} + {opts.to ? ( + + + + + ) : null} + {opts.gas ? ( + + + + + ) : null} + {opts.transactionCost ? ( + + + + + ) : null} + {opts.executionCost ? ( + + + + + ) : null} {opts.hash ? ( - - - + + ) : null} {opts.input ? ( - - - + + ) : null} {opts['decoded input'] ? ( - - - + + ) : null} {opts['decoded output'] ? ( - - - + + ) : null} {opts.logs ? ( - - - + + ) : null} {opts.val ? ( - - - + + ) : null}
+ status + {`${opts.status} ${msg}`}
+ transaction hash + + {opts.hash} + +
+ contract address + + {opts.contractAddress} + +
+ from + + {opts.from} + +
+ to + + {toHash} + +
+ gas + + {opts.gas} gas + +
+ transaction cost + + {opts.transactionCost} gas {callWarning} + +
+ execution cost + + {opts.executionCost} gas {callWarning} + +
hash{opts.hash} - +
+ hash + + {opts.hash} +
input{helper.shortenHexData(opts.input)} - +
+ input + + {helper.shortenHexData(opts.input)} +
decoded input{opts['decoded input'].trim()} - +
+ decoded input + + {opts['decoded input'].trim()} +
decoded output{opts['decoded output']} - +
+ decoded output + + {opts['decoded output']} +
logs +
+ logs + {JSON.stringify(stringified, null, '\t')} - - + +
val{val} wei - +
+ val + + {val} wei +