ValidatorCurrentRewards represents current rewards and current period for a validator kept as a running counter and incremented each block as long as the validator's tokens remain constant.

interface ValidatorCurrentRewards {
    period: bigint;
    rewards: DecCoin[];
}

Properties

Properties

period: bigint
rewards: DecCoin[]