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

# Flow EVM

> Everything the catalog holds for Flow EVM, from raw blocks to project activity.

Most of the catalog is queryable for Flow EVM, from the blocks themselves to the daily activity of the projects that run on it.

The chain's own record sits in the `flowevm` dataset: one row per block, transaction, log and internal call. Everything above that sits in the catalog, where the Flow EVM rows are selected with `chain_id = 'flowevm'`.

The section mirrors the catalog itself: the core entities, then the market verticals with data on Flow EVM.

## Layers

<table>
  <thead>
    <tr>
      <th width="180">Layer</th>
      <th width="110">Since</th>
      <th>What it holds</th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td><a href="/docs/catalog/chain-verticals/evm/flowevm/raw">Raw</a></td>
      <td>2024-09</td>
      <td>Blocks, transactions, logs and internal calls.</td>
    </tr>

    <tr>
      <td><a href="/docs/catalog/chain-verticals/evm/flowevm/projects">Projects</a></td>
      <td>2025-01</td>
      <td>Daily trading and bridge volume for each tracked app and project, broken out to Flow EVM.</td>
    </tr>

    <tr>
      <td><a href="/docs/catalog/chain-verticals/evm/flowevm/assets">Assets</a></td>
      <td>2024-09</td>
      <td>Every curated asset issued on Flow EVM, with daily supply, holders and transfer activity.</td>
    </tr>

    <tr>
      <td><a href="/docs/catalog/chain-verticals/evm/flowevm/tokens">Tokens</a></td>
      <td><strong>In progress</strong></td>
      <td>Every ERC-20 transfer, both sides of every balance move, holder balances at query time, and daily prices.</td>
    </tr>

    <tr>
      <td><a href="/docs/catalog/chain-verticals/evm/flowevm/accounts">Accounts</a></td>
      <td><strong>In progress</strong></td>
      <td>Wallets and contracts labeled with the projects that own them.</td>
    </tr>

    <tr>
      <td><a href="/docs/catalog/chain-verticals/evm/flowevm/stablecoins">Stablecoins</a></td>
      <td>2024-09</td>
      <td>Every stablecoin issued on Flow EVM: supply, holders and transfers.</td>
    </tr>

    <tr>
      <td><a href="/docs/catalog/chain-verticals/evm/flowevm/bridges">Bridges</a></td>
      <td>2025-01</td>
      <td>Cross-chain transfers that left Flow EVM or arrived on it, matched leg to leg.</td>
    </tr>
  </tbody>
</table>

## Filtering

`chain_id` reads `flowevm` wherever a catalog table carries a chain, so the same filter selects Flow EVM everywhere. Some shapes ask for something else. The asset tables key on the asset or its deployment, so the chain comes from `dimensions.asset_tokens`, as the query below does. Project and app totals span every chain a project runs on, so one chain's share reads from `metrics_project_chains` and `metrics_app_chains`. A bridge transfer has a chain on each end and carries `source_chain_id` and `destination_chain_id`.

<Warning>
  Every table splits by day: the raw and event tables on `block_timestamp`, the daily tables on `timestamp`. Bound that column in every query; without a bound the query reads the whole table.
</Warning>

```sql theme={null}
select
    daily.timestamp,
    deployments.asset_id,
    assets.symbol,
    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 deployments.chain_id = 'flowevm'
  and daily.timestamp >= timestamp('2026-08-01')
  and daily.timestamp < timestamp('2026-08-02')
limit 100
```
