interface ValidatorDailyRewardDto {
    consensusEndEpoch?: number;
    consensusEpochsObserved?: number;
    consensusRewards: string;
    consensusStartEpoch?: number;
    dayStart: number;
    ethPrice: number;
    executionBlocksWon?: number;
    executionEndEpoch?: number;
    executionRewards: string;
    executionStartEpoch?: number;
    index: number;
}

Properties

consensusEndEpoch?: number

The end epoch of the consensus rewards. Only available for v2

consensusEpochsObserved?: number

The number of epochs of consensus rewardsobserved for the day. Only available for v2

consensusRewards: string
consensusStartEpoch?: number

The start epoch of the consensus rewards. Only available for v2

dayStart: number
ethPrice: number
executionBlocksWon?: number

The number of blocks won for the day. Only available for v2

executionEndEpoch?: number

The last epoch in the day where an execution reward was earned. Only available for v2

executionRewards: string
executionStartEpoch?: number

The first epoch in the day where an execution reward was earned. Only available for v2

index: number