WEEK | PROTOCOL | TVL | |
---|---|---|---|
1 | 2025-05-25 00:00:00.000 | Ankr | 10592408 |
2 | 2025-05-25 00:00:00.000 | Fixes Launchpad | 1199 |
3 | 2025-05-25 00:00:00.000 | Fixes frc20 | 26678 |
4 | 2025-05-25 00:00:00.000 | Fixes frc20 Staking | 25653 |
5 | 2025-05-25 00:00:00.000 | Increment Lending | 1852952.5 |
6 | 2025-05-25 00:00:00.000 | Increment Liquid Staking | 3875306 |
7 | 2025-05-25 00:00:00.000 | Increment Swap | 12478211 |
8 | 2025-05-25 00:00:00.000 | KittyPunch PunchSwap | 10067201 |
9 | 2025-05-25 00:00:00.000 | KittyPunch PunchSwap V3 | 6155473 |
10 | 2025-05-25 00:00:00.000 | KittyPunch StableKitty | 18639281 |
11 | 2025-05-25 00:00:00.000 | MORE Markets | 8614730 |
12 | 2025-05-25 00:00:00.000 | Sturdy V2 | 1046711.5 |
13 | 2025-05-25 00:00:00.000 | Trado Perpetual | 304377 |
14 | 2025-05-25 00:00:00.000 | Trado Spot | 778717 |
15 | 2025-05-24 00:00:00.000 | Ankr | 10894599 |
16 | 2025-05-24 00:00:00.000 | Fixes Launchpad | 1235 |
17 | 2025-05-24 00:00:00.000 | Fixes frc20 | 27540 |
18 | 2025-05-24 00:00:00.000 | Fixes frc20 Staking | 26302 |
19 | 2025-05-24 00:00:00.000 | Increment Lending | 1927061 |
20 | 2025-05-24 00:00:00.000 | Increment Liquid Staking | 3992223 |
adriaparcerisasflow defi tvl by protocol
Updated 5 days ago
99
1
2
3
4
5
6
7
8
9
10
›
⌄
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') and week>='2025-01-01'
group by 1,2 order by 1 desc,2
Last run: 5 days ago
...
1824
95KB
3s