Base Argument object for methods.

interface StakingBondArgs {
    payee: string | {
        Account: string;
    };
    value: string | number;
}

Hierarchy (view full)

Properties

Properties

payee: string | {
    Account: string;
}

The rewards destination. Can be "Stash", "Staked", "Controller" or "{ Account: accountId }".

value: string | number

The number of tokens to bond.