| TOKEN_ADDRESS | TEXT | The unique token address of the stablecoin token. Example: ‘EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v’ |
| 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. Example: ‘USDC: USD Coin’ |
| DECIMALS | NUMBER | The number of decimal places used by the token address. Example: 6 |
| IS_VERIFIED | BOOLEAN | Indicates whether the stablecoin is verified by the Flipside team. Example: true |
| IS_VERIFIED_MODIFIED_TIMESTAMP | TIMESTAMP_NTZ | Indicates when the stablecoin was verified by the Flipside team. Example: true |
| 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. |
| DIM_STABLECOINS_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. |