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

# Tokenized assets

> Tokenized stocks, funds and commodities issued on Plasma, tracked against their underlying instruments.

Plasma tokenized assets are the [Assets](/docs/catalog/chain-verticals/evm/plasma/assets) layer under the tokenized instrument types: stocks, funds and commodities. Each one tracks an underlying instrument named in `dimensions.reference_assets`, and `metrics.asset_tokens_daily` carries the daily supply and holders of its Plasma deployments.

Every column is documented at [Tokenized assets](/docs/catalog/tokenized-assets/index).

## Sample queries

<Tabs>
  <Tab title="Largest tokenized assets">
    **Rank the tokenized assets issued on Plasma by circulating market cap.**

    ```sql theme={null}
    select
        symbol,
        asset_type,
        market_cap_circulating_total,
        holders_native
    from `metrics.asset_tokens_daily`
    where timestamp >= timestamp('2026-08-22')
      and timestamp < timestamp('2026-08-23')
      and chain_id = 'plasma'
      and asset_type in ('tokenized-stocks', 'tokenized-funds', 'tokenized-commodities')
    order by market_cap_circulating_total desc
    limit 20
    ```
  </Tab>

  <Tab title="What each one tracks">
    **List Plasma tokenized stocks with the instrument each one tracks.**

    ```sql theme={null}
    select
        assets.symbol,
        reference_assets.name as tracks,
        reference_assets.type
    from `dimensions.asset_tokens` as deployments
    join `dimensions.assets` as assets
        using (asset_id)
    join `dimensions.reference_assets` as reference_assets
        using (reference_asset_id)
    where deployments.chain_id = 'plasma'
      and assets.asset_type = 'tokenized-stocks'
    order by assets.symbol
    ```
  </Tab>
</Tabs>
