Skip to main content
type SendEvmEoaUsdcOptions = {
  evmAccount: EvmAddress;
  to: EvmAddress;
  amount: string;
  network: SendEvmUsdcNetwork;
};
Request parameters for sending EVM USDC from an EOA account.

Properties

PropertyTypeDescription
evmAccountEvmAddressThe EVM EOA 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.