Base Argument object for methods.

interface ForeignAssetsTransferArgs {
    amount: string | number;
    id: AnyJson;
    target: string;
}

Hierarchy (view full)

  • Args
    • ForeignAssetsTransferArgs

Properties

Properties

amount: string | number

The amount by which the sender's balance of foreignAssets 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: AnyJson

The identifier of the foreignAsset to have some amount transferred formatted as a MultiLocation.

target: string

The account to be credited.