TransferOptions: {
    amount: bigint;
    network: Network;
    to: EvmAccount | Address;
    token: "eth" | "usdc" | Hex;
}

The options for the transfer.

Type declaration

  • amount: bigint

    The amount of the token to transfer, represented as an atomic value.

  • network: Network

    The network to transfer the token on.

  • to: EvmAccount | Address

    The account to transfer the token to.

  • token: "eth" | "usdc" | Hex

    The token to transfer. Can be a contract address or a predefined token name.