The chain DEX schema tables contain key events emitted by a protocol’s liquidity pool.

The events table are hydrated with token decimals, prices and transaction-level details for ease of analysis.

Currently we support the following protocols and events.

Protocol Coverage

ProtocolTableEventsProjects
uniswap_v2dex.uniswap_v2_eventsmint, swap, burn, syncuniswap & uniswap forks (e.g. sushiswap)
uniswap_v3dex.uniswap_v3_eventsflash_paid, swap, flash, burn, mint, initialize, collectuniswap & uniswap forks
uniswap_v4dex.uniswap_v4_eventsSwap, Initialize, OwnershipTransferred, Transfer, ModifyLiquidity, OperatorSetuniswap & uniswap forks

Coming Soon

We’re actively working on expanding our DEX pool event coverage to include other major protocols such as:

  • Curve Finance

  • Algebra

  • PancakeSwap

  • And more!

If you’d like to request support for a specific DEX protocol, please reach out to our team.

Query Example

How to calculate quarterly liquidity pool deltas in USD for all uniswap v2 pools?

Steps:

  1. calculate the liquidity changes in token amounts first

  2. convert token amount to USD amount based on the end of quarter usd exchange rate

  3. filter out noisy data (set limit of 5 billion for token liquidity change in a quarter)

see public query here for table, graph and sql query.