This table tracks all reward claim events by delegators on the Monad network. Delegators earn rewards proportional to their stake after the validator’s commission is deducted.Documentation Index
Fetch the complete documentation index at: https://docs.allium.so/llms.txt
Use this file to discover all available pages before exploring further.
Table Schema
| Column Name | Data Type | Description |
|---|---|---|
| delegator_address | VARCHAR | Address of the delegator claiming rewards |
| validator_id | VARCHAR | Unique identifier of the validator from which rewards are claimed |
| amount_str | VARCHAR | String representation of the claimed reward amount in MON |
| amount | DECIMAL | Float representation of the claimed reward amount in MON |
| epoch | INTEGER | The epoch at which rewards were claimed |
| contract_address | VARCHAR | Address of the staking precompile contract |
| transaction_hash | VARCHAR | Hash of the transaction containing the claim |
| transaction_index | INTEGER | Index of the transaction in the block |
| transaction_from_address | VARCHAR | Address that initiated the transaction |
| transaction_to_address | VARCHAR | Target address of the transaction |
| log_index | INTEGER | Index of the event log in the transaction |
| block_timestamp | TIMESTAMP | Timestamp of the block containing the claim |
| block_number | INTEGER | Block number containing the claim |
| block_hash | VARCHAR | Hash of the block containing the claim |
| unique_id | VARCHAR | Unique identifier for the claim event |
Understanding Delegator Rewards
Delegators earn staking rewards based on:- Stake Amount: The amount of MON delegated to a validator
- Validator Commission: The percentage retained by the validator (e.g., 10% commission means delegators receive 90% of their proportional rewards)
- Epoch Duration: Rewards accumulate over each epoch (~50,000 blocks)