Interface ITransactionFetcher

interface ITransactionFetcher {
    getTransaction(txHash: string): Promise<ITransactionOnNetwork>;
}

Methods