execute method

Future<IUserOperationBuilder> execute(
  1. Call call
)

Executes a transaction on the network.

Implementation

Future<IUserOperationBuilder> execute(
  Call call,
) async {
  return setCallData(
    bytesToHex(
      proxy.self.function('execute').encodeCall(
        [
          call.to,
          call.value,
          call.data,
          BigInt.zero,
        ],
      ),
      include0x: true,
    ),
  );
}