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

> ## Agent Instructions
> To query the Token Terminal data catalog, read https://tokenterminal.com/docs/catalog/agents-manual.md first. It is the whole catalog as one page: table naming grammar, key columns, partition and cluster rules, units, additivity, and the tables that are documented but not served yet.
> Never query a catalog table on a time bound alone. Also filter its cluster key, which you read from INFORMATION_SCHEMA.COLUMNS; an empty result means the object is a view, whose pruning contract is on its page. Compute is billed to the caller's own Google Cloud project.

# Tokenized assets

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

Gnosis tokenized assets are the [Assets](/docs/catalog/chain-verticals/evm/gnosis/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` carries the daily supply and holders of its Gnosis deployments, one table per measure.

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 Gnosis by circulating market cap.**

    ```sql theme={null}
    select
        assets.symbol,
        assets.asset_type,
        daily.market_cap_circulating_total
    from `metrics_asset_tokens.market_cap_circulating_total_daily` as daily
    join `dimensions.asset_tokens` as deployments
        using (asset_token_id)
    join `dimensions.assets` as assets
        using (asset_id)
    where daily.timestamp >= timestamp('2026-08-22')
      and daily.timestamp < timestamp('2026-08-23')
      and deployments.chain_id = 'gnosis'
      and assets.asset_type in ('tokenized-stocks', 'tokenized-funds', 'tokenized-commodities')
    order by daily.market_cap_circulating_total desc
    limit 20
    ```
  </Tab>

  <Tab title="What each one tracks">
    **List Gnosis 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 = 'gnosis'
      and assets.asset_type = 'tokenized-stocks'
    order by assets.symbol
    ```
  </Tab>
</Tabs>
