adriaparcerisasflow defi tvl
Updated 2025-04-14
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
--IncrementFi (separated out by swaps, liquid staking and lending),
--Bloctoswap,
--Metapier,
--Celer Network,
--Flowty (NFT Loans only)
select
trunc(x.date,'week') as week,
avg(tvl_usd) as tvl,
sum(volume) as dex_volume,
sum(dex_volume) over (order by week) as total_dex_volume
from external.defillama.fact_chain_tvl x
join external.defillama.fact_dex_volume y on lower(x.chain)=y.chain and x.date=y.date
where x.chain='Flow' and week<trunc(current_date,'week')
group by 1 order by 1 desc
QueryRunArchived: QueryRun has been archived