Interface ValidatorHistoricalRewardsRecordAmino

ValidatorHistoricalRewardsRecord is used for import / export via genesis json.

interface ValidatorHistoricalRewardsRecordAmino {
    period?: string;
    rewards?: ValidatorHistoricalRewardsAmino;
    validator_address?: string;
}

Properties

period?: string

period defines the period the historical rewards apply to.

rewards defines the historical rewards of a validator.

validator_address?: string

validator_address is the address of the validator.