diff --git a/web/src/txHistory/TransactionEntry.tsx b/web/src/txHistory/TransactionEntry.tsx index e95667f..99d9a48 100644 --- a/web/src/txHistory/TransactionEntry.tsx +++ b/web/src/txHistory/TransactionEntry.tsx @@ -155,24 +155,41 @@ export const TransactionEntry: FC<{ txHash: EtherscanTx }> = ({ txHash }) => { className="hidden" />
-
-
Names
-
-
    - {inputData?.args[0].map((name, _index) => ( -
  • - - {name} - -
  • - ))} -
+ {inputData?.functionName === 'multiRegister' || + (inputData?.functionName === 'renewAll' && ( +
+
Names
+
+
    + {inputData?.args[0].map((name, _index) => ( +
  • + + {name} + +
  • + ))} +
+
+
+ ))} + {inputData?.functionName === 'multiCommit' && ( +
+
Commitments
+
+
    + {inputData?.args[0].map( + (commitment, _index) => ( +
  • {commitment}
  • + ) + )} +
+
-
+ )}
{JSON.stringify(txHash)}