Export

CreateExternalTransferRequest

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

Properties

amount: string

The amount to transfer

Memberof

CreateExternalTransferRequest

asset_id: string

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

Memberof

CreateExternalTransferRequest

destination: string

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

Memberof

CreateExternalTransferRequest

gasless: boolean

Whether the transfer uses sponsored gas

Memberof

CreateExternalTransferRequest

skip_batching?: boolean

When true, the transfer will be submitted immediately. Otherwise, the transfer will be batched. Defaults to false. Note: Requires the gasless option to be set to true.

Memberof

CreateExternalTransferRequest