getTransactionReceipt method
- String txHash
Get the transaction receipt
Implementation
Future<Json?> getTransactionReceipt(String txHash) async {
final response = await _call<Json?>(
'eth_getTransactionReceipt',
args: [txHash],
);
return response ?? {};
}