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

# Stablecoins

> Every stablecoin issued on Sei EVM: supply, holders and transfers.

Sei EVM stablecoins are the [Assets](/docs/catalog/chain-verticals/evm/seievm/assets) layer under `asset_type = 'stablecoin'`: the registry rows describe each coin's deployments and `metrics.asset_tokens_daily` carries their daily supply, holders and transfer activity.

Every column is documented at [Stablecoins](/docs/catalog/stablecoins/index).

## Sample queries

<Tabs>
  <Tab title="Largest stablecoins">
    **Rank the stablecoins issued on Sei EVM by native circulating supply.**

    ```sql theme={null}
    select
        symbol,
        market_cap_circulating_native,
        holders_native,
        transfer_volume_native
    from `metrics.asset_tokens_daily`
    where timestamp >= timestamp('2026-08-22')
      and timestamp < timestamp('2026-08-23')
      and chain_id = 'seievm'
      and asset_type = 'stablecoin'
      and bridged_status = 'native'
    order by market_cap_circulating_native desc
    limit 20
    ```
  </Tab>

  <Tab title="One coin's series">
    **Read one stablecoin's daily supply and holders on Sei EVM.**

    ```sql theme={null}
    select
        timestamp,
        market_cap_circulating_native,
        holders_native,
        transfer_count_native
    from `metrics.asset_tokens_daily`
    where timestamp >= timestamp('2026-06-01')
      and timestamp < timestamp('2026-08-23')
      and asset_token_id = 'usdc-0xe15fc38f6d8c56af07bbcbe3baf5708a2bf42392-seievm'
    order by timestamp
    ```
  </Tab>
</Tabs>
