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 ? (
- status |
- {`${opts.status} ${msg}`} |
-
) : null }
- {opts.hash && !opts.isCall ? (
- transaction hash |
- {opts.hash}
-
- |
-
) : null }
- {
- opts.contractAddress ? (
-
- contract address |
- {opts.contractAddress}
-
- |
-
- ) : null
- }
- {
- opts.from ? (
-
- from |
- {opts.from}
-
- |
-
- ) : null
- }
- {
- opts.to ? (
-
- to |
- {toHash}
-
- |
-
- ) : null
- }
- {
- opts.gas ? (
-
- gas |
- {opts.gas} gas
-
- |
-
- ) : null
- }
- {
- opts.transactionCost ? (
-
- transaction cost |
- {opts.transactionCost} gas {callWarning}
-
- |
-
- ) : null
- }
- {
- opts.executionCost ? (
-
- execution cost |
- {opts.executionCost} gas {callWarning}
-
- |
-
- ) : null
- }
+
+
+ {opts.status !== undefined ? (
+
+
+ status
+ |
+ {`${opts.status} ${msg}`} |
+
+ ) : null}
+ {opts.hash && !opts.isCall ? (
+
+
+ transaction hash
+ |
+
+ {opts.hash}
+
+ |
+
+ ) : null}
+ {opts.contractAddress ? (
+
+
+ contract address
+ |
+
+ {opts.contractAddress}
+
+ |
+
+ ) : null}
+ {opts.from ? (
+
+
+ from
+ |
+
+ {opts.from}
+
+ |
+
+ ) : null}
+ {opts.to ? (
+
+
+ to
+ |
+
+ {toHash}
+
+ |
+
+ ) : null}
+ {opts.gas ? (
+
+
+ gas
+ |
+
+ {opts.gas} gas
+
+ |
+
+ ) : null}
+ {opts.transactionCost ? (
+
+
+ transaction cost
+ |
+
+ {opts.transactionCost} gas {callWarning}
+
+ |
+
+ ) : null}
+ {opts.executionCost ? (
+
+
+ execution cost
+ |
+
+ {opts.executionCost} gas {callWarning}
+
+ |
+
+ ) : null}
{opts.hash ? (
-
- hash |
- {opts.hash}
-
+
+
+ hash
+ |
+
+ {opts.hash}
+
|
) : null}
{opts.input ? (
-
- input |
- {helper.shortenHexData(opts.input)}
-
+
+
+ input
+ |
+
+ {helper.shortenHexData(opts.input)}
+
|
) : null}
{opts['decoded input'] ? (
-
- decoded input |
- {opts['decoded input'].trim()}
-
+ |
+
+ decoded input
+ |
+
+ {opts['decoded input'].trim()}
+
|
) : null}
{opts['decoded output'] ? (
-
- decoded output |
- {opts['decoded output']}
-
+ |
+
+ decoded output
+ |
+
+ {opts['decoded output']}
+
|
) : null}
{opts.logs ? (
-
- logs |
-
+ |
+
+ logs
+ |
+
{JSON.stringify(stringified, null, '\t')}
-
-
+
+
|
) : null}
{opts.val ? (
-
- val |
- {val} wei
-
+ |
+
+ val
+ |
+
+ {val} wei
+
|
) : null}
| |