Interface ITransactionFetcher

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

Methods