select * from bitcoin.assets.balances_daily
where address = '34xp4vRoCGJym3xR7yCVPFHoCNxv4Twseo'
order by date desc
date, address
Table Details
| Property | Value |
|---|---|
| Table Name | bitcoin.assets.balances_daily |
| Table Status | Production-Ready |
Table Columns
| Column Name | Data Type | Description |
|---|---|---|
| date | TIMESTAMP_NTZ(9) | End-of-day date (UTC) of the balance snapshot. |
| address | VARCHAR(16777216) | 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. |
| raw_balance_str | VARCHAR(16777216) | Token balance in the smallest unit, stored as a string for full precision. Avoids floating-point truncation for tokens with very large integer balances. |
| raw_balance | FLOAT | Token balance in the tokenβs smallest unit (not decimal-adjusted). Use balance for the human-readable normalized value. |
| balance_str | VARCHAR(16777216) | Normalized token balance stored as a string for full precision. Equivalent to balance but avoids floating-point truncation. |
| balance | FLOAT | Sum of end-of-day token balances for this address_type. |
| usd_balance | FLOAT | USD value of the token balance, computed using the exchange rate at the time of the balance snapshot. |
| usd_exchange_rate | VARCHAR(16777216) | USD price per unit of the token at the time of the event, used to compute usd_amount. Sourced from Alliumβs hourly price feed. |
| last_activity_block_timestamp | TIMESTAMP_NTZ(9) | Timestamp of the block that last changed this balance. |
| last_activity_block_number | NUMBER(38,0) | Block number of the block that last changed this balance. |
| last_activity_block_hash | VARCHAR(16777216) | Hash of the block that last changed this balance. |
| last_activity_transaction_hash | VARCHAR(66) | Hash of the last activity transaction. |
| last_activity_transaction_index | NUMBER(38,0) | Index of the last activity transaction. |
| _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. |