Table Columns
| Column Name | Data Type | Description |
|---|---|---|
| address | VARCHAR(16777216) | The wallet or contract address holding the balance. |
| token_address | VARCHAR(16777216) | Contract address of the token. On EVM chains native currency is represented as the zero address. |
| raw_balance_str | VARCHAR(16777216) | End-of-day balance in the token’s smallest indivisible unit, as a string to retain full precision. |
| block_date | TIMESTAMP_NTZ(9) | The calendar date (UTC) of this end-of-day balance snapshot. |
| block_timestamp | TIMESTAMP_NTZ(9) | Timestamp (UTC) of the last block of the day that produced this balance. |
| block_number | NUMBER(38,0) | Number of the last block of the day that produced this balance. |
| block_hash | VARCHAR(16777216) | Hash of the last block of the day that produced this balance. |
| _has_error | BOOLEAN | Whether an error was encountered when fetching this balance snapshot. |
| _short_address | VARCHAR(16777216) | A shortened version of the address used for indexing. |
| _short_token_address | VARCHAR(16777216) | A shortened version of the token address used for indexing. |
| _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. |