import React from 'react'; import { translateRaw } from 'translations'; import { BlockExplorerConfig } from 'types/network'; export interface TransactionSucceededProps { txHash: string; blockExplorer: BlockExplorerConfig; } const TransactionSucceeded = ({ txHash, blockExplorer }: TransactionSucceededProps) => { const txHashLink = blockExplorer.txUrl(txHash); return (
{translateRaw('SUCCESS_3') + txHash}
Verify Transaction