15+ chains. Pre-aggregated daily metrics. Swap-level granularity when you need it.
Track DEX volume, market share, liquidity pool health, and trader behavior in SQL. Pre-built stats tables for fast answers. Raw swap data for custom analysis. AI agents that ping you when something moves.
01 / What you can track
From protocol-level market share to individual whale swaps. Each use case maps to tables you can query today.
Key question:
"Which DEX is winning volume on Base this month?"
Key question:
"Where is DEX volume growing, and where is it leaving?"
Key question:
"Which pools are losing capital, and how fast?"
Key question:
"What percentage of our volume comes from bots vs. real traders?"
Key question:
"How much flash loan arbitrage is happening on my protocol?"
Key question:
"Are bridge inflows actually driving trading activity on our chain?"
Key question:
"What percentage of USDC supply is deployed in DEX pools?"
Key question:
"Which protocols gained the most TVL this week?"
02 / The data layer
Pre-aggregated daily stats for fast charts. Swap-level events for custom analysis. Liquidity pool tables for depth monitoring. Same SQL, every chain.
Explore the schemaDaily volume and market share, no aggregation needed
Three daily stats tables cover the most common DEX queries. Chain-level totals, protocol-level market share, and token-level pair data — all with volume, unique traders, and transaction counts pre-computed.
-- Protocol market share by chain, last 30 days
SELECT blockchain, platform, block_date,
dex_volume_usd, dex_distinct_addresses,
dex_volume_usd / SUM(dex_volume_usd)
OVER (PARTITION BY blockchain, block_date)
AS market_share
FROM crosschain.stats.ez_dex_protocol_metrics_daily
WHERE block_date >= CURRENT_DATE - 30
ORDER BY block_date DESC, dex_volume_usd DESCEvery trade with USD values, token metadata, and labels
When you need to trace individual trades, filter by trader, or build custom aggregations. Every swap includes platform attribution, token symbols, USD amounts, and the trader address — ready to join with labels for identity enrichment.
-- Large swaps with entity labels, last 24 hours
SELECT s.trader, s.platform,
s.symbol_in, s.symbol_out, s.amount_in_usd,
l.label_type, l.project_name
FROM crosschain.defi.ez_dex_swaps s
LEFT JOIN crosschain.core.dim_labels l
ON s.trader = l.address
AND s.blockchain = l.blockchain
WHERE s.amount_in_usd >= 100000
AND s.block_timestamp >= CURRENT_DATE - 1
ORDER BY s.amount_in_usd DESCPool metadata, LP actions, and stablecoin depth
Track every LP add and remove with USD values. Calculate net flow per pool to identify capital trends. The stablecoin supply table includes a dedicated column for stablecoin capital deployed in DEX pools — no joins or computation required.
-- Pools with largest net outflows this week
SELECT p.platform, p.pool_address,
SUM(CASE WHEN a.action = 'add'
THEN a.amount_usd ELSE -a.amount_usd
END) AS net_flow_usd
FROM crosschain.defi.ez_dex_liquidity_pool_actions a
JOIN crosschain.defi.dim_dex_liquidity_pools p
ON a.pool_address = p.pool_address
AND a.blockchain = p.blockchain
WHERE a.block_timestamp >= CURRENT_DATE - 7
GROUP BY 1, 2 ORDER BY net_flow_usd ASC03 / Agent intelligence
AI agents run DEX queries on a schedule, detect volume spikes and liquidity shifts, and deliver findings to Slack or email. Set it once, get alerts when something moves.
Get pinged when a protocol's daily volume jumps 3x its 7-day average, when a new DEX takes 5%+ market share on a chain, or when a specific trading pair sees unusual activity.
Monitor your key pools for large LP exits, net outflow trends, and concentration changes. Know before your users do when a pool starts thinning out.
Track swaps above your threshold ($100K, $1M, whatever you set). Enriched with entity labels so you know when it's a fund, a protocol treasury, or a known arbitrageur.
Weekly briefings on how bridge inflows correlate with DEX activity per chain. Spot when a competitor chain starts pulling trading volume or when bridged capital feeds a new DEX.
04 / Who uses this
Track volume, market share, LP health, and user growth across chains.
Due diligence, protocol comparison, and portfolio monitoring with onchain data.
Crosschain DEX comparison, ecosystem health, and growth attribution.
Flash loan detection, liquidity risk analysis, and market structure research.
15+
Chains with DEX data
100+
DEX protocols decoded
3
Pre-aggregated stats tables
Daily
Metrics refresh frequency
Flipside covers every major DEX including Uniswap (v2, v3, v4), Raydium, Jupiter, Orca, Curve, PancakeSwap, SushiSwap, Trader Joe, and dozens more. All swap data lands in normalized ez_dex_swaps tables with USD values, token metadata, and protocol labels. The same schema works across 15+ chains.
Yes. Flipside provides three pre-aggregated stats tables: ez_dex_metrics_daily for chain-level volume, ez_dex_protocol_metrics_daily for protocol-level market share, and ez_dex_token_metrics_daily for pair-level stats. Each includes daily volume, unique traders, and transaction counts — no GROUP BY needed.
Flipside's quality scoring system assigns each address a score from 0-10 based on behavioral signals. A score of 4 or higher indicates organic activity. You can also join ez_dex_swaps with dim_labels to filter out known MEV bots, arbitrageurs, and aggregator contracts. No other platform offers built-in bot-vs-human scoring for DEX analytics.
Yes. dim_dex_liquidity_pools provides pool metadata (tokens, platform, fee tier) and ez_dex_liquidity_pool_actions tracks every LP add and remove with USD values. You can calculate net flow, identify pools losing capital, and monitor LP concentration. The stablecoin supply table also includes a dedicated AMOUNT_IN_DEX_LIQUIDITY_POOLS column.
Join ez_lending_flashloans with ez_dex_swaps on tx_hash and blockchain. Transactions with a flash loan plus two or more DEX swaps are strong arbitrage signals. Flipside provides both tables with full USD values, so you can measure arbitrage frequency and size across chains without decoding raw logs.
Yes. ez_bridge_metrics_daily and ez_dex_metrics_daily share the same blockchain and block_date keys, so you can join them directly to see how bridge volume correlates with DEX trading on each chain. ez_bridge_protocol_metrics_daily breaks this down by bridge protocol for deeper analysis.
Get Started
15+ chains, 100+ decoded DEX protocols, pre-aggregated daily stats. Tell us what you're tracking and we'll show you how fast you can get answers.