import { BlockExplorerConfig } from 'config'; import React from 'react'; import { translateRaw } from 'translations'; export interface TransactionSucceededProps { txHash: string; blockExplorer: BlockExplorerConfig; } const TransactionSucceeded = ({ txHash, blockExplorer }: TransactionSucceededProps) => { // const checkTxLink = `https://www.myetherwallet.com?txHash=${txHash}/#check-tx-status`; const txHashLink = blockExplorer.txUrl(txHash); return (

{translateRaw('SUCCESS_3') + txHash}

Verify Transaction
); }; export default TransactionSucceeded;