DATE | TOTAL_TVL | |
---|---|---|
1 | 2025-03-13 00:00:00.000 | 503593280 |
2 | 2025-03-12 00:00:00.000 | 502291970 |
3 | 2025-03-11 00:00:00.000 | 501516402 |
4 | 2025-03-10 00:00:00.000 | 503555624 |
5 | 2025-03-09 00:00:00.000 | 505209390 |
6 | 2025-03-08 00:00:00.000 | 505436873 |
7 | 2025-03-07 00:00:00.000 | 517541830 |
8 | 2025-03-06 00:00:00.000 | 518956335 |
9 | 2025-03-05 00:00:00.000 | 524913465 |
10 | 2025-03-04 00:00:00.000 | 509807349 |
11 | 2025-03-03 00:00:00.000 | 505514747 |
12 | 2025-03-02 00:00:00.000 | 502539200 |
13 | 2025-03-01 00:00:00.000 | 500179224 |
14 | 2025-02-28 00:00:00.000 | 460091807 |
15 | 2025-02-27 00:00:00.000 | 464585612 |
16 | 2025-02-26 00:00:00.000 | 464865441 |
17 | 2025-02-25 00:00:00.000 | 454270555 |
18 | 2025-02-24 00:00:00.000 | 456792681 |
19 | 2025-02-23 00:00:00.000 | 458004995 |
20 | 2025-02-22 00:00:00.000 | 457470213 |
permarytvl
Updated 2025-03-13
9
1
2
3
4
5
6
7
8
›
⌄
select
date,
sum(chain_tvl) as total_tvl
from external.defillama.fact_protocol_tvl
where chain = 'Stellar'
and date >= dateadd(month, -12, current_date)
group by 1
order by 1 desc
Last run: 24 days ago
...
283
10KB
1s