Table Details
Table Columns
Use Cases
- Track total amount of staking rewards claimed by a staker
- This model does not account for rewards βclaimedβs for delegators during an event of a Restake.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Record of all staking rewards claimed on the Polygon PoS network
| Property | Value |
|---|---|
| Table Name | polygon.staking.rewards_claimed |
| Table Status | Production-Ready |
| Unique Key | block_timestamp, transaction_hash, log_index |
| Clustering Key(s) | block_timestamp::date |
| Column Name | Data Type | Description |
|---|---|---|
| event_type | VARCHAR(16777216) | Type of reward claim (validator_reward, delegator_reward) |
| validator_id | NUMBER(38,0) | ID of the validator associated with the claimed rewards |
| user_address | VARCHAR(16777216) | The user: payer for deposits, payee for withdrawals. |
| rewards_str | VARCHAR(16777216) | Staking rewards amount as a string for full precision. Equivalent to rewards_amount but avoids floating-point truncation for very large values. |
| rewards_amount | FLOAT | Staking rewards claimed in this event, decimal-adjusted to the tokenβs human-readable units. |
| total_rewards_amount | FLOAT | Cumulative staking rewards claimed by this address, summed across all claim events in the dataset. |
| transaction_hash | VARCHAR(16777216) | Unique hash of the Ethereum transaction containing the claim |
| transaction_index | VARCHAR(16777216) | Index of the transaction within its block |
| log_index | VARCHAR(16777216) | Index of the event log within the transaction |
| block_timestamp | TIMESTAMP_NTZ(9) | Timestamp when the block containing the claim was mined |
| block_number | NUMBER(38,0) | Block number containing the claim transaction |
| block_hash | VARCHAR(16777216) | Hash of the block containing the claim transaction |
| _created_at | TIMESTAMP_NTZ(9) | Timestamp of when the record was created |
| _updated_at | TIMESTAMP_NTZ(9) | Timestamp of when the record was updated |
Was this page helpful?