Interface ValidatorHistoricalRewardsRecord

ValidatorHistoricalRewardsRecord is used for import / export via genesis json.

interface ValidatorHistoricalRewardsRecord {
    period: bigint;
    rewards: undefined | ValidatorHistoricalRewards;
    validatorAddress: string;
}

Properties

period: bigint

period defines the period the historical rewards apply to.

rewards: undefined | ValidatorHistoricalRewards

rewards defines the historical rewards of a validator.

validatorAddress: string

validator_address is the address of the validator.