getTransactionReceipt method

Future<Json?> getTransactionReceipt(
  1. String txHash
)

Get the transaction receipt

Implementation

Future<Json?> getTransactionReceipt(String txHash) async {
  final response = await _call<Json?>(
    'eth_getTransactionReceipt',
    args: [txHash],
  );

  return response ?? {};
}