Base Argument object for methods.

interface CurrenciesTransferArgs {
    amount: string | number;
    currencyId: string | {
        Token: string;
    } | {
        DEXShare: string;
    };
    dest: string;
}

Hierarchy (view full)

Properties

amount: string | number

The amount to send.

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

The CurrencyId of the token to send.

dest: string

The recipient address, SS-58 encoded.