Skip to main content
type SendUserOperationOptions = {
  evmSmartAccount: EvmAddress;
  network: SendEvmTransactionWithEndUserAccountBodyNetwork;
  calls: EvmCall[];
  useCdpPaymaster?: boolean;
  paymasterUrl?: string;
};
Request parameters for sending a user operation.

Properties

PropertyTypeDescription
evmSmartAccountEvmAddressThe EVM Smart Account to send the user operation with.
networkSendEvmTransactionWithEndUserAccountBodyNetworkThe network to send the user operation on.
callsEvmCall[]The calls to make from the user operation.
useCdpPaymaster?booleanWhether to use the CDP Paymaster for the user operation.
paymasterUrl?stringThe URL of the paymaster to use for the user operation. Get your free Base paymaster URL from the CDP Portal.