sendUserOperation abstract method

Future<UserOperationResponse> sendUserOperation(
  1. Map<String, dynamic> userOp,
  2. EthereumAddress entrypoint
)

Sends a user operation to the given network.

  • userOp: The user operation.
  • entrypoint: The entrypoint address through which the operation should pass.

Returns a Future that completes with a UserOperationResponse object.

Implementation

Future<UserOperationResponse> sendUserOperation(
    Map<String, dynamic> userOp, EthereumAddress entrypoint);