MasiDaily Active Addresses
Updated 2024-05-05
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
›
⌄
select trunc(block_timestamp,'day') as daily ,
'ethereum' as blockchain,
count(DISTINCT from_address) as active_addresses
from ethereum.core.fact_transactions
where block_timestamp::date >= '2024-04-01' and block_timestamp < '2024-05-01'
group by 1
UNION all
select trunc(block_timestamp,'day') as daily ,
'base' as blockchain,
count(DISTINCT from_address) as active_addresses
from base.core.fact_transactions
where block_timestamp::date >= '2024-04-01' and block_timestamp < '2024-05-01'
group by 1
UNION all
select trunc(block_timestamp,'day') as daily ,
'arbitrum' as blockchain,
count(DISTINCT from_address) as active_addresses
from arbitrum.core.fact_transactions
where block_timestamp::date >= '2024-04-01' and block_timestamp < '2024-05-01'
group by 1
UNION all
select trunc(block_timestamp,'day') as daily ,
'blast' as blockchain,
count(DISTINCT from_address) as active_addresses
from blast.core.fact_transactions
where block_timestamp::date >= '2024-04-01' and block_timestamp < '2024-05-01'
group by 1
UNION all
select trunc(block_timestamp,'day') as daily ,
'avalanche' as blockchain,
count(DISTINCT from_address) as active_addresses
from avalanche.core.fact_transactions
where block_timestamp::date >= '2024-04-01' and block_timestamp < '2024-05-01'
group by 1
UNION all
select trunc(block_timestamp,'day') as daily ,
QueryRunArchived: QueryRun has been archived