| CONTRACT_ADDRESS | TEXT | The unique smart contract 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. Example: ‘USDC: USD Coin’ |
| DECIMALS | NUMBER | The number of decimal places used by the token contract. Example: 6 |
| IS_VERIFIED | BOOLEAN | Indicates whether the stablecoin is verified by the Flipside team. Example: true |
| IS_VERIFIED_MODIFIED_TIMESTAMP | TIMESTAMP_NTZ | IS_VERIFIED_MODIFIED_TIMESTAMP column |
| INSERTED_TIMESTAMP | TIMESTAMP_NTZ | UTC timestamp when the record was first added to the Flipside database. Format: TIMESTAMP_NTZ Use Cases: Data freshness monitoring Incremental processing markers Debugging data pipeline issues SLA tracking Query Example: |
| MODIFIED_TIMESTAMP | TIMESTAMP_NTZ | UTC timestamp of the most recent update to this record. Format: TIMESTAMP_NTZ Triggers for Updates: Data corrections Enrichment additions Reprocessing for accuracy Schema migrations Monitoring Usage: |
| DIM_STABLECOINS_ID | TEXT | Primary key - unique identifier for each row ensuring data integrity. Format: Usually VARCHAR containing composite key generated using MD5 hash of the relevant columns. Example: MD5(blocknumber, txhash, trace_index) Usage: Deduplication in incremental loads Join operations for data quality checks Troubleshooting specific records Important: Implementation varies by table - check table-specific documentation. |