DT | CHAIN | TVL per Active User [USD] | |
---|---|---|---|
1 | 2025-02-11 00:00:00.000 | Ethereum | 282115.792262 |
2 | 2025-02-15 00:00:00.000 | Ethereum | 330023.205239 |
3 | 2025-02-18 00:00:00.000 | Ethereum | 285046.120737 |
4 | 2025-02-16 00:00:00.000 | Ethereum | 312685.953918 |
5 | 2025-01-28 00:00:00.000 | Ethereum | 327656.793774 |
6 | 2025-02-25 00:00:00.000 | Ethereum | 250799.325013 |
7 | 2025-01-29 00:00:00.000 | Ethereum | 330457.829058 |
8 | 2025-02-12 00:00:00.000 | Ethereum | 286870.439559 |
9 | 2025-01-30 00:00:00.000 | Ethereum | 334760.481122 |
10 | 2025-02-09 00:00:00.000 | Ethereum | 307835.357137 |
11 | 2025-02-03 00:00:00.000 | Ethereum | 311585.84023 |
12 | 2025-02-10 00:00:00.000 | Ethereum | 235903.377319 |
13 | 2025-02-07 00:00:00.000 | Ethereum | 260493.155615 |
14 | 2025-02-08 00:00:00.000 | Ethereum | 285408.187531 |
15 | 2025-02-17 00:00:00.000 | Ethereum | 261843.58821 |
16 | 2025-02-05 00:00:00.000 | Ethereum | 316740.586063 |
17 | 2025-02-21 00:00:00.000 | Ethereum | 279771.733262 |
18 | 2025-02-20 00:00:00.000 | Ethereum | 271481.063341 |
19 | 2025-02-13 00:00:00.000 | Ethereum | 283904.697491 |
20 | 2025-02-14 00:00:00.000 | Ethereum | 266510.881849 |
MostlyData_TVL by Active User
Updated 2025-02-27
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
30
31
32
33
34
35
36
›
⌄
with solana_daily_users as(
select
date_trunc('day', block_timestamp) as dt,
'Solana' as tag,
count(distinct signers[0]) as n_users
from solana.core.fact_transactions
where
block_timestamp >= current_date() - interval '30 days'
and block_timestamp < current_date()
group by 1
)
,ethereum_daily_users as(
select
date_trunc('day', block_timestamp) as dt,
'Ethereum' as tag,
count(distinct from_address) as n_users
from ethereum.core.fact_transactions
where
block_timestamp >= current_date() - interval '30 days'
and block_timestamp < current_date()
group by 1,2
)
,active_users as(
select * from solana_daily_users
union all
select * from ethereum_daily_users
)
Last run: about 1 month ago
60
3KB
152s