> ## 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.

# Steth Rebase

### Table Details

| Property     | Value                          |
| ------------ | ------------------------------ |
| Table Name   | `ethereum.assets.steth_rebase` |
| Table Status | Production-Ready               |
| Unique Key   | `date`, `address`              |

### Table Columns

| Column Name                       | Data Type         | Description                                                                                                                                                                                                          |
| --------------------------------- | ----------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| 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.                                                                                                                                                        |
