Skip to main content
type SendEvmSmartAccountUsdcOptions = {
  evmSmartAccount: EvmAddress;
  to: EvmAddress;
  amount: string;
  network: SendEvmUsdcNetwork;
  useCdpPaymaster?: boolean;
  paymasterUrl?: string;
};
Request parameters for sending EVM USDC from a Smart Account.

Properties

PropertyTypeDescription
evmSmartAccountEvmAddressThe EVM Smart Account to send USDC from.
toEvmAddressThe recipient address.
amountstringThe amount of USDC to send in human-readable format (e.g., “1.50” for 1.5 USDC).
networkSendEvmUsdcNetworkThe network to send USDC on.
useCdpPaymaster?booleanWhether to use CDP Paymaster to sponsor gas fees.
paymasterUrl?stringOptional custom Paymaster URL to use for gas sponsorship.