| rebase_date | DATE | Calendar date of the rebase event (date-truncated from rebase_block_timestamp). |
| address | VARCHAR(42) | Wallet or contract address of the account. On EVM chains, a 42-character hex string (0x-prefixed). On other chains, the native address format applies. |
| rebase_amount | FLOAT | Net change in total stETH supply from this rebase (decimal-adjusted ETH). Equal to post_rebase_balance - pre_rebase_balance. |
| post_rebase_balance | FLOAT | Total stETH balance held across all wallets immediately after this rebase event (decimal-adjusted ETH). |
| pre_rebase_balance | FLOAT | Total stETH balance held across all wallets immediately before this rebase event (decimal-adjusted ETH). |
| raw_shares_balance | FLOAT | Total stETH shares outstanding at the time of this rebase event (raw, not decimal-adjusted). Shares are the underlying accounting unit; stETH balances are derived by multiplying shares by the current share price. |
| raw_shares_delta | FLOAT | Change in total stETH shares caused by this rebase event (raw). Positive for reward distributions; negative for slashing events. |
| rebase_annualized_apr | FLOAT | Annualized staking APR implied by this rebase event, computed from the ratio of rebase_amount to pre_rebase_balance scaled to a yearly rate. |
| rebase_block_number | NUMBER(38,0) | Block number of the block containing this rebase event. |
| rebase_block_timestamp | TIMESTAMP_NTZ(9) | Timestamp of the block containing this rebase event. |
| rebase_transaction_hash | VARCHAR(66) | Transaction hash of the transaction that emitted this rebase event. |
| last_activity_block_number | NUMBER(38,0) | Block number of the block that last changed this balance. |
| last_activity_block_timestamp | TIMESTAMP_NTZ(9) | Timestamp of the block that last changed this balance. |
| last_activity_transaction_hash | VARCHAR(66) | Hash of the last activity transaction. |
| rebase_amount_str | VARCHAR(16777216) | rebase_amount stored as a string to preserve full precision. |
| post_rebase_balance_str | VARCHAR(16777216) | post_rebase_balance stored as a string to preserve full precision. |
| pre_rebase_balance_str | VARCHAR(16777216) | pre_rebase_balance stored as a string to preserve full precision. |
| raw_shares_balance_str | VARCHAR(16777216) | raw_shares_balance stored as a string to preserve full precision. |
| raw_shares_delta_str | VARCHAR(16777216) | raw_shares_delta stored as a string to preserve full precision. |
| _created_at | TIMESTAMP_NTZ(9) | Timestamp of when the entry was created in the database. |
| _updated_at | TIMESTAMP_NTZ(9) | Timestamp of when the entry was last updated in the database. |