WEEK | PROTOCOL | TVL | |
---|---|---|---|
1 | 2025-04-21 00:00:00.000 | Ankr | 6512638 |
2 | 2025-04-21 00:00:00.000 | Fixes Launchpad | 1073 |
3 | 2025-04-21 00:00:00.000 | Fixes frc20 | 25370 |
4 | 2025-04-21 00:00:00.000 | Fixes frc20 Staking | 24068 |
5 | 2025-04-21 00:00:00.000 | Increment Lending | 2000923 |
6 | 2025-04-21 00:00:00.000 | Increment Liquid Staking | 4496395 |
7 | 2025-04-21 00:00:00.000 | Increment Swap | 15874694 |
8 | 2025-04-21 00:00:00.000 | KittyPunch PunchSwap | 7977713 |
9 | 2025-04-21 00:00:00.000 | KittyPunch PunchSwap V3 | 1293547 |
10 | 2025-04-21 00:00:00.000 | KittyPunch StableKitty | 11910210 |
11 | 2025-04-21 00:00:00.000 | MORE Markets | 13554783 |
12 | 2025-04-21 00:00:00.000 | Sturdy V2 | 819985.5 |
13 | 2025-04-21 00:00:00.000 | Trado Perpetual | 304365 |
14 | 2025-04-21 00:00:00.000 | Trado Spot | 1671885 |
15 | 2025-04-20 00:00:00.000 | Ankr | 6358772 |
16 | 2025-04-20 00:00:00.000 | Fixes Launchpad | 1007 |
17 | 2025-04-20 00:00:00.000 | Fixes frc20 | 24911 |
18 | 2025-04-20 00:00:00.000 | Fixes frc20 Staking | 23540 |
19 | 2025-04-20 00:00:00.000 | Increment Lending | 1964780 |
20 | 2025-04-20 00:00:00.000 | Increment Liquid Staking | 4410623 |
adriaparcerisasflow defi tvl by protocol all
Updated 1 day ago
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
select
trunc(x.date,'day') as week,
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 week<trunc(current_date,'day')
group by 1,2 order by 1 desc,2
Last run: 1 day ago
...
2961
154KB
2s