diff --git a/apps/trading/lib/hooks/use-ethereum-transaction-toasts.tsx b/apps/trading/lib/hooks/use-ethereum-transaction-toasts.tsx index a4bc75b9a..168879cef 100644 --- a/apps/trading/lib/hooks/use-ethereum-transaction-toasts.tsx +++ b/apps/trading/lib/hooks/use-ethereum-transaction-toasts.tsx @@ -103,7 +103,9 @@ const EthTxPendingToastContent = ({ tx }: EthTxToastContentProps) => { <> {t('Awaiting confirmation')}

{t('Please wait for your transaction to be confirmed.')}

- {tx.txHash && } + {tx.txHash && ( + {t('View on Etherscan')} + )} ); @@ -131,7 +133,9 @@ const EthTxConfirmedToastContent = ({ tx }: EthTxToastContentProps) => { <> {t('Transaction confirmed')}

{t('Your transaction has been confirmed.')}

- {tx.txHash && } + {tx.txHash && ( + {t('View on Etherscan')} + )} ); @@ -148,7 +152,9 @@ const EthTxCompletedToastContent = ({ tx }: EthTxToastContentProps) => { {t('Your transaction has been completed.')}{' '} {isDeposit && t('Waiting for deposit confirmation.')}

- {tx.txHash && } + {tx.txHash && ( + {t('View on Etherscan')} + )} );