winnie-fsDately Avalanche Specific DEXs TVL Over Time
Updated 2024-06-28
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
›
⌄
select date,
case when protocol ilike '%joe%' then 'Trader Joe'
when protocol ilike '%uniswap%' then 'Uniswap'
when protocol ilike '%kyberswap%' then 'Kyberswap'
when protocol ilike '%hashflow%' then 'Hashflow'
when protocol ilike '%sushiswap%' then 'Sushiswap'
when protocol ilike '%Balancer%' then 'Balancer'
when protocol ilike '%platypus%' then 'Platypus'
when protocol ilike '%curve%' then 'Curve'
else initcap (protocol) end as dex,
sum (chain_tvl) as tvl
from external.defillama.fact_protocol_tvl
where category ilike 'dexes'
and chain ilike 'Avalanche'
and dex ilike '%{{Project_Name}}%'
group by 1,2
order by 1 desc
QueryRunArchived: QueryRun has been archived