Table Details
| Property | Value |
|---|---|
| Table Name | solana.raw.spl_token_supply_daily |
| Table Status | Production-Ready |
Table Columns
| Column Name | Data Type | Description |
|---|---|---|
| block_date | TIMESTAMP_NTZ(9) | Calendar date (UTC) derived from block_timestamp. Used as a partition key in incremental models. |
| mint | VARCHAR(16777216) | Base58-encoded mint address of the SPL token. Analogous to token_address on EVM chains. Each mint uniquely identifies a fungible or non-fungible token on Solana. |
| token_name | VARCHAR(16777216) | Full name of the token (e.g. βUSD Coinβ, βWrapped Etherβ). |
| token_symbol | VARCHAR(16777216) | Ticker symbol of the token (e.g. βUSDCβ, βWETHβ). |
| decimals | NUMBER(38,0) | Number of decimal places for this token. Short alias for token_decimals used in tables that preserve the original blockchain field naming convention. |
| raw_amount_str | VARCHAR(16777216) | Raw collateral amount in USDC base units (6 decimals), as a string. |
| raw_amount | NUMBER(38,0) | Token amount in the smallest indivisible unit (not decimal-adjusted). Same concept as amount_raw β the column is named raw_amount in models that follow the raw_ prefix convention. |
| amount_str | VARCHAR(16777216) | Normalized token amount stored as a string to preserve full precision. Equivalent to amount but avoids floating-point truncation for very large or very small values. |
| amount | FLOAT | Token amount normalized by the tokenβs decimal precision (amount_raw / 10^decimals). This is the human-readable value (e.g. 1.5 USDC rather than 1500000). |
| multiplier | FLOAT | Scale factor applied to convert the raw token amount into the displayed token units. |
| last_activity_block_timestamp | TIMESTAMP_NTZ(9) | Timestamp of the block that last changed this balance. |
| last_activity_block_slot | NUMBER(38,0) | Solana slot number of the block containing the most recent activity for this account |
| last_activity_block_hash | VARCHAR(16777216) | Hash of the block that last changed this balance. |
| last_activity_block_height | NUMBER(38,0) | Height of the block containing the last balance change. |
| _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. |