monad.gov Table: ez_delegator_balances_daily Type: View
What
Daily staking balances enriched with delegator labels from dim_labels. Provides a labeled view of all delegator staking activity across validators, identifying known entities (exchanges, protocols, validators) vs unlabeled addresses. Use for analyzing staking behavior by entity type and tracking institutional vs retail delegation patterns.Columns
| Column Name | Data Type | Description |
|---|---|---|
| BALANCE_DATE | DATE | Date of the balance snapshot |
| VALIDATOR_ID | NUMBER | ID of the validator receiving the delegation |
| VALIDATOR_NAME | TEXT | Human-readable validator name |
| CONSENSUS_ADDRESS | TEXT | Validator’s block producer address |
| DELEGATOR_ADDRESS | TEXT | Address of the delegator |
| DELEGATOR_NAME | TEXT | Name of the delegator from labels, or ‘Unlabeled Address’ if not labeled |
| DELEGATOR_PROJECT | TEXT | Project/protocol name from labels, or ‘unknown’ if not labeled |
| DELEGATOR_LABEL_TYPE | TEXT | Label type (e.g., ‘cex’, ‘defi’, ‘nft’), or ‘unknown’ if not labeled |
| DELEGATOR_LABEL_SUBTYPE | TEXT | Label subtype for more specific categorization, or ‘unknown’ if not labeled |
| IS_LABELED | BOOLEAN | Boolean flag indicating if the delegator address has a known label |
| IS_LIQUID_STAKING_POOL | BOOLEAN | Boolean flag for liquid staking protocol pools (defi/dex type with pool subtype, or LST in name) |
| IS_FOUNDATION_DELEGATION | BOOLEAN | Boolean flag for Monad Foundation delegations |
| ACTIVE_BALANCE | FLOAT | Currently delegated stake (MON) |
| PENDING_WITHDRAWAL_BALANCE | FLOAT | Stake in withdrawal queue awaiting completion (MON) |
| TOTAL_BALANCE_AT_RISK | FLOAT | Sum of active + pending balance, both subject to slashing (MON) |
| DAILY_ACTIVE_CHANGE | FLOAT | Net change in active balance for this day (MON) |
| DAILY_PENDING_CHANGE | FLOAT | Net change in pending withdrawal balance for this day (MON) |
| EZ_DELEGATOR_BALANCES_DAILY_ID | TEXT | Unique identifier for this record |