Table Details
| Property | Value |
|---|---|
| Table Name | dogecoin.assets.balances_daily |
| Table Status | Production-Ready |
Table Columns
| Column Name | Data Type | Description |
|---|---|---|
| date | TIMESTAMP_NTZ(9) | Date of the balance. |
| address | VARCHAR(16777216) | Address of the account. |
| token_name | VARCHAR(16777216) | Name of the token. |
| token_symbol | VARCHAR(16777216) | Token symbol of this token. |
| token_decimals | NUMBER(38,0) | Number of decimal places used to normalize the raw balance into the token balance. |
| raw_balance_str | VARCHAR(16777216) | String of balance of tokens. |
| raw_balance | FLOAT | Balance of tokens (unnormalized). |
| balance_str | VARCHAR(16777216) | Balance of this token, normalized by the decimal points defined in the token contract. |
| balance | FLOAT | Balance of the token, normalized by the decimal points defined by the DOGE protocol. One DOGE = 1e8 of the smallest unit. |
| usd_exchange_rate | FLOAT | The exchange rate used to calculate the usd_value at current time. |
| usd_balance | FLOAT | The amount of tokens, in $USD at the current time. |
| last_activity_block_timestamp | TIMESTAMP_NTZ(9) | Timestamp of the last activity block. |
| last_activity_block_number | NUMBER(38,0) | Number of the last activity block. |
| last_activity_block_hash | VARCHAR(16777216) | Hash of the last activity block. |
| 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. |