Export

CreateTransferRequest

interface CreateTransferRequest {
    amount: string;
    asset_id: string;
    destination: string;
    gasless?: boolean;
    network_id: string;
    skip_batching?: boolean;
}

Properties

amount: string

The amount to transfer

Memberof

CreateTransferRequest

asset_id: string

The ID of the asset to transfer. Can be an asset symbol or a token contract address.

Memberof

CreateTransferRequest

destination: string

The destination address, which can be a 0x address, Basename, or ENS name

Memberof

CreateTransferRequest

gasless?: boolean

Whether the transfer uses sponsored gas

Memberof

CreateTransferRequest

network_id: string

The ID of the blockchain network

Memberof

CreateTransferRequest

skip_batching?: boolean

When true, the transfer will be submitted immediately. Otherwise, the transfer will be batched. Defaults to false

Memberof

CreateTransferRequest