sendSignedUserOperation method
override
Sends a signed user operation to the bundler.
op
: The UserOperation.
Returns the UserOperationResponse
of the transaction.
Implementation
@override
Future<UserOperationResponse> sendSignedUserOperation(
UserOperation op) async {
return plugin<BundlerProviderBase>('bundler')
.sendUserOperation(op.toMap(), _chain.entrypoint);
}