Base Argument object for methods.

interface BalancesTransferAllArgs {
    dest: {
        id: string;
    };
    keepAlive: boolean;
}

Hierarchy (view full)

  • Args
    • BalancesTransferAllArgs

Properties

Properties

dest: {
    id: 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).