Account is an entry in the staking ledger.

The same ledger entry can hold both general and escrow accounts. Escrow accounts are used to hold funds delegated for staking.

interface StakingAccount {
    escrow?: StakingEscrowAccount;
    general?: StakingGeneralAccount;
}

Properties

Properties