> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dune.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Stablecoin Tokens (Multichain)

> Reference table of all tracked stablecoins across EVM, Solana, and Tron with token metadata.

export const TableSample = ({tableName, tableSchema}) => <>
    <div className="hidden dark:block">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}&darkMode=true`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
    <div className="dark:hidden">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
  </>;

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

| 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                                     |

<TableSample tableSchema="stablecoins_multichain" tableName="tokens" />

## Sample Queries

```sql theme={null}
SELECT
    t.blockchain
    , t.symbol
    , t.currency
    , t.token_address
FROM stablecoins_multichain.tokens AS t
ORDER BY t.blockchain, t.symbol
```
