CHAIN | DATE | TVL_USD | |
---|---|---|---|
1 | Base | 2025-05-14 00:00:00.000 | 4610582647 |
2 | Avalanche | 2025-05-14 00:00:00.000 | 1959987683 |
3 | Base | 2025-04-10 00:00:00.000 | 3445653297 |
4 | Base | 2025-04-09 00:00:00.000 | 3197605077 |
5 | Base | 2025-04-06 00:00:00.000 | 3770037992 |
6 | Base | 2025-04-08 00:00:00.000 | 3318754057 |
7 | Base | 2025-04-07 00:00:00.000 | 3509638962 |
8 | Base | 2025-04-05 00:00:00.000 | 3782164782 |
9 | Base | 2025-04-03 00:00:00.000 | 3583161368 |
10 | Base | 2025-04-02 00:00:00.000 | 3539160175 |
11 | Base | 2025-04-01 00:00:00.000 | 3530776064 |
12 | Base | 2025-03-31 00:00:00.000 | 3488574831 |
13 | Base | 2025-03-29 00:00:00.000 | 3601104621 |
14 | Base | 2025-04-04 00:00:00.000 | 3628218984 |
15 | Base | 2025-02-16 00:00:00.000 | 3958070282 |
16 | Base | 2025-02-28 00:00:00.000 | 3557832026 |
17 | Base | 2025-03-03 00:00:00.000 | 3843336488 |
18 | Base | 2025-03-02 00:00:00.000 | 3546280296 |
19 | Base | 2025-03-01 00:00:00.000 | 3508399427 |
20 | Base | 2025-02-27 00:00:00.000 | 3567887740 |
BlockTrackerchain TVL [Dominance]
Updated 2025-05-14
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
›
⌄
with base_tvl as (
select
'Base' as chain,
date,
tvl_usd as tvl_usd
from external.defillama.fact_chain_tvl
where date >= dateadd(day, -{{past_days}}, current_date())
and chain = 'Base'
)
, avalanche_tvl as (
select
'Avalanche' as chain,
date,
tvl_usd as tvl_usd
from external.defillama.fact_chain_tvl
where date >= dateadd(day, -{{past_days}}, current_date())
and chain = 'Avalanche'
)
select
*
from base_tvl
union all
select *
from avalanche_tvl
Last run: 25 days ago
...
182
9KB
1s