monad.gov Table: ez_validator_earnings Type: View
What
Daily validator total earnings calculated as claimed rewards plus the change in unclaimed balance from the prior day. Uses getDelegator snapshot which captures the validator’s TOTAL earnings including both commission (from delegators) AND proportional rewards earned on the validator’s self-stake. The claimRewards function claims from the delegator struct which accumulates both reward types.Columns
| Column Name | Data Type | Description |
|---|---|---|
| VALIDATOR_ID | NUMBER | ID of the validator |
| VALIDATOR_NAME | TEXT | Human-readable validator name from labels, or ‘Validator N’ if not labeled |
| CONSENSUS_ADDRESS | TEXT | Block producer address derived from secp_pubkey. Appears as “miner” in block headers. |
| EARNING_DATE | DATE | Date of the earnings (from snapshot) |
| SELF_STAKE | FLOAT | Validator’s self-stake amount in MON (for context) |
| CLAIMED_REWARDS | FLOAT | Amount of rewards claimed on this date in MON (by auth_address from their own validator) |
| CLAIMED_REWARDS_RAW | NUMBER | Amount of rewards claimed on this date in wei |
| CLAIM_COUNT | NUMBER | Number of claim transactions on this date |
| UNCLAIMED_CHANGE | FLOAT | Change in unclaimed balance from prior day (can be negative if claimed more than earned) |
| PRIORITY_FEES | FLOAT | PRIORITY_FEES column |
| BLOCKS_PRODUCED | NUMBER | BLOCKS_PRODUCED column |
| TOTAL_EARNED | FLOAT | Total earnings this day (claimed + unclaimed change) in MON - includes commission AND self-stake rewards |
| UNCLAIMED_BALANCE | FLOAT | Current unclaimed rewards balance in MON (commission + self-stake rewards) |
| UNCLAIMED_BALANCE_USD | FLOAT | Current unclaimed rewards balance in USD |
| MON_PRICE_USD | FLOAT | MON price at snapshot used for USD calculations |
| TOTAL_EARNED_USD | FLOAT | Total earnings this day in USD |
| PRIORITY_FEES_USD | FLOAT | PRIORITY_FEES_USD column |
| PREV_SNAPSHOT_DATE | DATE | Date of the prior snapshot used for unclaimed change calculation |
| EZ_VALIDATOR_EARNINGS_ID | TEXT | Unique identifier for this record |