getUserOperationByHash method

Future<Map<String, dynamic>?> getUserOperationByHash(
  1. String hash
)

Implementation

Future<Map<String, dynamic>?> getUserOperationByHash(String hash) {
  // Needs live RPC transport
  throw UnimplementedError(
    'BundlerLink.getUserOperationByHash: needs live RPC transport. '
    'Request body: ${jsonEncode(_formatRequest('eth_getUserOperationByHash', [hash], 1))}',
  );
}