Base Argument object for methods.

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

Hierarchy (view full)

  • Args
    • PoolAssetsTransferArgs

Properties

Properties

amount: string | number

The amount by which the sender's balance of the asset from poolAssets 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 from poolAsset to have some amount transferred formatted as a number.

target: string

The account to be credited.