Base Argument object for methods.

interface AssetsTransferKeepAliveArgs {
    amount: string | number;
    id: number;
    target: string;
}

Hierarchy (view full)

  • Args
    • AssetsTransferKeepAliveArgs

Properties

Properties

amount: string | number

The amount by which the sender's balance of assets should be reduced and target's balance increased. The amount actually transferred may be slightly greater in the case that the transfer would otherwise take the sender balance above zero but below the minimum balance. Must be greater than zero.

id: number

The identifier of the asset to have some amount transferred.

target: string

The account to be credited.