monad.gov Table: fact_rewards_claimed Type: Base Table
What
ClaimRewards events emitted when claimRewards() is called to withdraw accumulated rewards. Claims from the delegator struct’s rewards field, which includes BOTH proportional staking rewards AND commission (for auth_address). For validators, the amount includes their commission earnings plus rewards earned on their self-stake. Transfers claimed amount to msg.sender and resets delegator.rewards to 0.Columns
| Column Name | Data Type | Description |
|---|---|---|
| BLOCK_NUMBER | NUMBER | Block number where the claim occurred |
| BLOCK_TIMESTAMP | TIMESTAMP_NTZ | Timestamp of the claim |
| TX_HASH | TEXT | Transaction hash of the claim |
| EVENT_INDEX | NUMBER | Index of the event within the transaction |
| CONTRACT_ADDRESS | TEXT | Staking precompile contract address (0x0000000000000000000000000000000000001000) |
| EVENT_NAME | TEXT | Event name (ClaimRewards) |
| VALIDATOR_ID | NUMBER | ID of the validator from which rewards are being claimed. The delegator must have a delegation to this validator. |
| DELEGATOR_ADDRESS | TEXT | Address claiming rewards (msg.sender). If this equals the validator’s auth_address, the amount includes BOTH commission AND self-stake rewards. For regular delegators, only staking rewards. |
| AMOUNT_RAW | NUMBER | Raw claimed amount in wei. For auth_address, includes commission + self-stake rewards. |
| AMOUNT | FLOAT | Claimed amount in MON (adjusted for 18 decimals) |
| EPOCH | NUMBER | Current epoch at time of claim |
| ORIGIN_FROM_ADDRESS | TEXT | Address that initiated the transaction |
| ORIGIN_TO_ADDRESS | TEXT | Target address of the transaction |
| ORIGIN_FUNCTION_SIGNATURE | TEXT | Function signature (claimRewards) |
| FACT_REWARDS_CLAIMED_ID | TEXT | Unique identifier for this record |
| INSERTED_TIMESTAMP | TIMESTAMP_NTZ | Timestamp when the record was inserted |
| MODIFIED_TIMESTAMP | TIMESTAMP_NTZ | Timestamp when the record was last modified |