| BLOCK_DATE | DATE | The date of the daily supply snapshot. This corresponds with the MAX block_number from the previous day. Example: ‘2025-06-10’ |
| TOKEN_ADDRESS | TEXT | The address of the stablecoin token. Example: ‘0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48’ |
| SYMBOL | TEXT | The symbol identifier for the stablecoin token. Example: ‘USDC’ |
| NAME | TEXT | The full name of the stablecoin token. Example: ‘USD Coin’ |
| LABEL | TEXT | A combined display label containing both symbol and name, as a stablecoin unique identifier. Example: ‘USDC: USD Coin’ |
| DECIMALS | NUMBER | The number of decimal places used by the token address. Example: 6 |
| TOTAL_SUPPLY | FLOAT | The total supply of the stablecoin on this blockchain as of the block_date. Example: 1500000000 |
| TOTAL_HOLDERS | NUMBER | The total number of unique addresses holding the stablecoin on this blockchain as of the block_date. Example: 750000 |
| AMOUNT_MINTED | FLOAT | The amount of tokens minted daily. Example: 2000000000 |
| AMOUNT_BURNED | FLOAT | The amount of tokens burned daily. Example: 500000000 |
| AMOUNT_TRANSFERRED | FLOAT | The amount of tokens transferred daily. Example: 10000000000 |
| AMOUNT_IN_CEX | FLOAT | The amount of tokens held in centralized exchange addresses. Example: 300000000 |
| AMOUNT_IN_BRIDGES | FLOAT | The amount of tokens held in bridge vaults and contracts. Example: 50000000 |
| AMOUNT_IN_DEX_LIQUIDITY_POOLS | FLOAT | The amount of tokens deposited in decentralized exchange liquidity pools. Example: 200000000 |
| AMOUNT_IN_LENDING_POOLS | FLOAT | The amount of tokens deposited in lending protocol pools. Example: 150000000 |
| AMOUNT_IN_CONTRACTS | FLOAT | The amount of tokens held in all contracts (including other categorized contracts). Example: 100000000 |
| INSERTED_TIMESTAMP | TIMESTAMP_NTZ | The timestamp when this transaction record was first inserted into the analytics database. Used for data freshness tracking and incremental model logic. Format: YYYY-MM-DD HH:MI:SS. Not derived from the blockchain, but from the ETL process. |
| MODIFIED_TIMESTAMP | TIMESTAMP_NTZ | The timestamp when this transaction record was last updated in the analytics database. Used for tracking updates and supporting incremental model logic. Format: YYYY-MM-DD HH:MI:SS. Not derived from the blockchain, but from the ETL process. |
| EZ_STABLECOINS_SUPPLY_ID | TEXT | A unique, stable identifier for each record in this table. The primary key (PK) ensures that every row is uniquely identifiable and supports efficient joins, lookups, and data integrity across models. The PK may be a natural key (such as a blockchain transaction hash) or a surrogate key generated from one or more fields, depending on the table’s structure and requirements. |