Interface StakingStakeAccumulator

StakeAccumulator is a per-escrow-account stake accumulator.

interface StakingStakeAccumulator {
    claims?: {
        [claim: string]: StakingStakeThreshold[];
    };
}

Properties

Properties

claims?: {
    [claim: string]: StakingStakeThreshold[];
}

Claims are the stake claims that must be satisfied at any given point. Adding a new claim is only possible if all of the existing claims plus the new claim is satisfied.

Type declaration