Base Argument object for methods.

interface TokensTransferAllArgs {
    currencyId: string | {
        Token: string;
    } | {
        DEXShare: string;
    };
    dest: string;
    keepAlive: boolean;
}

Hierarchy (view full)

  • Args
    • TokensTransferAllArgs

Properties

currencyId: string | {
    Token: string;
} | {
    DEXShare: string;
}

The currency type.

dest: string

The recipient of the transfer.

keepAlive: boolean

A boolean to determine if the transfer_all operation should send all of the funds the account has, causing the sender account to be killed (false), or transfer everything except at least the existential deposit, which will guarantee to keep the sender account alive (true).