PROTOCOL | TVL | |
---|---|---|
1 | KittyPunch StableKitty | 20972534 |
2 | Increment Swap | 12415984 |
3 | Ankr | 10710086 |
4 | MORE Markets | 10388370.5 |
5 | KittyPunch PunchSwap | 10259204 |
6 | KittyPunch PunchSwap V3 | 7353799 |
7 | Increment Liquid Staking | 3900685 |
8 | Increment Lending | 1863989 |
9 | Sturdy V2 | 1208769 |
10 | Trado Spot | 799715 |
11 | Trado Perpetual | 304382 |
12 | Fixes frc20 | 27008 |
13 | Fixes frc20 Staking | 25891 |
14 | Fixes Launchpad | 1209 |
adriaparcerisasflow defi tvl by protocol 2
Updated 2 days ago
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
select
x.protocol,
avg(chain_tvl) as tvl
--sum(volume) as dex_volume,
--sum(dex_volume) over (order by week) as total_dex_volume
from external.defillama.fact_protocol_tvl x
--join external.defillama.fact_dex_volume y on lower(x.chain)=y.chain and x.date=y.date
where x.chain ilike '%Flow%' and trunc(date,'week')=trunc(current_date,'week')
group by 1 order by 2 desc
Last run: 1 day ago
14
396B
1s