| slot_number | NUMBER(38,0) | Beacon Chain slot number for the end-of-day snapshot. |
| slot_timestamp | TIMESTAMP_NTZ(9) | Timestamp of that slot (UTC), typically 23:59:59 on the snapshot calendar day. |
| validator_index | NUMBER(38,0) | Index of the validator in the Beacon validator registry. |
| raw_balance | VARCHAR | Validator balance in gwei as a string (1e9 gwei = 1 ETH); string-typed for precision. |
| balance | FLOAT | Validator balance in ETH. |
| effective_balance | FLOAT | Effective balance at stake in ETH (reward and penalty weighting). |
| raw_effective_balance | VARCHAR | Effective balance at stake in gwei, as a string for precision. |
| status | VARCHAR | Validator status (for example active_ongoing, withdrawal_done, exited_unslashed, exited_slashed, pending_queued, pending_initialized). |
| pubkey | VARCHAR | Validator BLS public key (48 bytes, hex with 0x prefix). |
| withdrawal_credentials | VARCHAR | 32-byte withdrawal credentials from the deposit (hex). |
| withdrawal_prefix | VARCHAR | Credential prefix (for example 0x01 for execution-address withdrawals). |
| withdrawal_address | VARCHAR | Execution-layer withdrawal address when applicable (hex). |
| slashed | BOOLEAN | Whether the validator has been slashed. |
| activation_eligibility_epoch | VARCHAR | Epoch when the validator became eligible for activation (string-encoded; FAR_FUTURE_EPOCH / max-uint style when not applicable). |
| activation_epoch | VARCHAR | Epoch when the validator was activated. |
| exit_epoch | VARCHAR | Epoch when the validator exited or will exit. |
| withdrawable_epoch | VARCHAR | Epoch when balance becomes withdrawable. |
| execution_optimistic | BOOLEAN | Optimistic execution payload flag when set; may be null if absent (treat per your warehouse semantics). |
| finalized | BOOLEAN | Whether the beacon data for this row is finalized. |
| unique_id | VARCHAR | Stable row id, for example date-2026-03-28-validator_index-2067035. |
| _created_at | TIMESTAMP_NTZ(9) | When this row was written in Allium. |
| _updated_at | TIMESTAMP_NTZ(9) | When this row was last updated in Allium. |