Table Details
| Property | Value |
|---|---|
| Table Name | ethereum.stablecoins.balances_eod |
| Table Status | Production-Ready |
Table Columns
| Column Name | Data Type | Description |
|---|---|---|
| address | VARCHAR(42) | The wallet or contract address holding the balance. |
| token_address | VARCHAR(42) | Contract address of the stablecoin token. |
| token_name | VARCHAR(16777216) | Name of the stablecoin. |
| token_symbol | VARCHAR(16777216) | Symbol of the stablecoin. |
| token_decimals | NUMBER(38,0) | Decimal precision of the stablecoin. |
| product_id | VARCHAR(16777216) | Allium stablecoin product identifier (e.g. usdc, usdt). |
| raw_balance_str | VARCHAR(16777216) | End-of-day balance in the tokenβs smallest indivisible unit, as a string to retain full precision. |
| raw_balance | FLOAT | End-of-day balance in the tokenβs smallest indivisible unit. |
| balance_str | VARCHAR(16777216) | Decimal-adjusted end-of-day balance as a string, to preserve full precision. |
| balance | FLOAT | Decimal-adjusted end-of-day balance. |
| 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 | NUMBER(38,0) | Whether an error was encountered when fetching this balance snapshot. |
| _short_address | VARCHAR(4) | A shortened version of the address used for indexing. |
| _short_token_address | VARCHAR(4) | A shortened version of the token address used for indexing. |
| _deployment_updated_at | TIMESTAMP_NTZ(9) | Timestamp of the most recent update to the stablecoin deployment metadata for this token. |
| _balances_created_at | TIMESTAMP_NTZ(9) | Timestamp when the underlying balance record was created. |
| _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. |
| _changed_since_full_refresh | BOOLEAN | Indicates if the record has changed since the last full data refresh. |