stablecoins_multichain.tokens table is a reference table listing all tracked stablecoins across EVM, Solana, and Tron ecosystems with enriched symbol and decimals metadata.
One row represents one stablecoin token on one blockchain.
This table is useful for:
- Looking up which stablecoins are tracked per chain
- Joining with transfer or balance tables for token metadata
- Filtering stablecoin activity by currency peg (USD, EUR, etc.)
Table Schema
| Column | Type | Description |
|---|---|---|
blockchain | VARCHAR | Chain name |
token_address | VARCHAR | Token contract/mint address |
currency | VARCHAR | ISO 4217 currency code the stablecoin is pegged to |
symbol | VARCHAR | Token symbol |
decimals | BIGINT | Token decimals |