A transfer of an asset from one address to another

Export

Transfer

interface Transfer {
    address_id: string;
    amount: string;
    asset: Asset;
    asset_id: string;
    destination: string;
    gasless: boolean;
    network_id: string;
    signed_payload?: string;
    sponsored_send?: SponsoredSend;
    status?: string;
    transaction?: Transaction;
    transaction_hash?: string;
    transfer_id: string;
    unsigned_payload?: string;
    wallet_id: string;
}

Properties

address_id: string

The onchain address of the sender

Memberof

Transfer

amount: string

The amount in the atomic units of the asset

Memberof

Transfer

asset: Asset

Memberof

Transfer

asset_id: string

The ID of the asset being transferred. Use asset.asset_id instead.

Memberof

Transfer

Deprecated

destination: string

The onchain address of the recipient

Memberof

Transfer

gasless: boolean

Whether the transfer uses sponsored gas

Memberof

Transfer

network_id: string

The ID of the blockchain network

Memberof

Transfer

signed_payload?: string

The signed payload of the transfer. This is the payload that has been signed by the sender.

Memberof

Transfer

Deprecated

sponsored_send?: SponsoredSend

Memberof

Transfer

status?: string

Memberof

Transfer

Deprecated

transaction?: Transaction

Memberof

Transfer

transaction_hash?: string

The hash of the transfer transaction

Memberof

Transfer

Deprecated

transfer_id: string

The ID of the transfer

Memberof

Transfer

unsigned_payload?: string

The unsigned payload of the transfer. This is the payload that needs to be signed by the sender.

Memberof

Transfer

Deprecated

wallet_id: string

The ID of the wallet that owns the from address

Memberof

Transfer