Table Details
| Property | Value |
|---|---|
| Table Name | robinhood.unhydrated.fungible_balances_eod |
| Table Status | Production-Ready |
| Unique Key | block_date, address, token_address |
| Clustering Key(s) | block_date, _short_address, _short_token_address |
| Search Optimization | address, token_address |
Table Columns
| Column Name | Data Type | Description |
|---|---|---|
| address | VARCHAR(42) | The wallet address holding the tokens |
| token_address | VARCHAR(42) | Contract address of the token (or sentinel address for the native token) |
| raw_balance_str | VARCHAR(16777216) | Token balance, unnormalized, as a string to retain precision |
| block_date | TIMESTAMP_NTZ(9) | The UTC date (end of day) this balance snapshot covers |
| block_timestamp | TIMESTAMP_NTZ(9) | Block timestamp of the last balance-changing activity on this date |
| block_number | NUMBER(38,0) | Block number of the last balance-changing activity on this date |
| block_hash | VARCHAR(16777216) | Block hash of the last balance-changing activity on this date |
| _has_error | NUMBER(1,0) | Flag indicating whether an error occurred computing this balance (1 = error) |
| _short_address | VARCHAR(42) | Truncated form of address used as a clustering key for query pruning |
| _short_token_address | VARCHAR(42) | Truncated form of token_address used as a clustering key for query pruning |
| _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. |