Options for sending a user operation.

interface SendUserOperationOptions {
    calls: Call[];
    idempotencyKey?: string;
    network: EvmUserOperationNetwork;
    paymasterUrl?: string;
    smartAccount: EvmSmartAccount;
}

Properties

calls: Call[]

The calls.

idempotencyKey?: string

The idempotency key.

The network.

paymasterUrl?: string

The paymaster URL.

smartAccount: EvmSmartAccount

The smart account.