getTransactionByHash method
Returns the information about a transaction requested by transaction hash
transactionHash
.
Implementation
Future<TransactionInformation> getTransactionByHash(String transactionHash) {
return _makeRPCCall<Map<String, dynamic>>(
'eth_getTransactionByHash',
[transactionHash],
).then((s) => TransactionInformation.fromMap(s));
}