Skip to main content
The 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

ColumnTypeDescription
blockchainVARCHARChain name
token_addressVARCHARToken contract/mint address
currencyVARCHARISO 4217 currency code the stablecoin is pegged to
symbolVARCHARToken symbol
decimalsBIGINTToken decimals

Sample Queries

SELECT
    t.blockchain
    , t.symbol
    , t.currency
    , t.token_address
FROM stablecoins_multichain.tokens AS t
ORDER BY t.blockchain, t.symbol