> ## 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 Polygon: supply, holders and transfers.

Polygon stablecoins are the [Assets](/docs/catalog/chain-verticals/evm/polygon/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 Polygon 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 = 'polygon'
      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 Polygon.**

    ```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-0x3c499c542cef5e3811e1192ce70d8cc03d5c3359-polygon'
    order by timestamp
    ```
  </Tab>
</Tabs>
