From 908fa13247d19623717a1842ff429861034aeca0 Mon Sep 17 00:00:00 2001 From: Lucemans Date: Sun, 17 Mar 2024 16:24:38 +0000 Subject: [PATCH] Update Name List --- web/src/txHistory/TransactionEntry.tsx | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/web/src/txHistory/TransactionEntry.tsx b/web/src/txHistory/TransactionEntry.tsx index d33adcd..e95667f 100644 --- a/web/src/txHistory/TransactionEntry.tsx +++ b/web/src/txHistory/TransactionEntry.tsx @@ -154,8 +154,28 @@ export const TransactionEntry: FC<{ txHash: EtherscanTx }> = ({ txHash }) => { id={'car-' + txHash.hash} className="hidden" /> -
- {JSON.stringify(txHash)} +
+
+
Names
+
+
    + {inputData?.args[0].map((name, _index) => ( +
  • + + {name} + +
  • + ))} +
+
+
+
+ {JSON.stringify(txHash)} +
);