CHAIN | BLOCKCHAIN | ACTIVE_ADDRESSES | |
---|---|---|---|
1 | Other Chains | ethereum | 7801130 |
2 | Other Chains | base | 20060420 |
3 | Other Chains | arbitrum | 5234565 |
4 | Other Chains | avalanche | 706409 |
5 | Other Chains | optimism | 1631644 |
6 | Other Chains | polygon | 5453687 |
7 | Other Chains | blast | 105581 |
8 | Other Chains | kaia | 7946024 |
9 | Near | near | 5707564 |
10 | Other Chains | Aptos | 16172691 |
11 | Other Chains | sei | 2598141 |
12 | Other Chains | thorchain | 72232 |
13 | Other Chains | axelar | 11047 |
14 | Other Chains | solana | 77273355 |
15 | Other Chains | Flow | 3020949 |
MasiNum
Updated 2025-02-02
999
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 tb0 as ( select block_timestamp,
from_address
from thorchain.core.fact_transfers
where block_timestamp::date >= current_date - 31
UNION
select block_timestamp,
from_address
from thorchain.defi.fact_swaps
where block_timestamp::date >= current_date - 31
UNION
select block_timestamp,
native_to_address as from_address
from thorchain.defi.fact_swaps
where block_timestamp::date >= current_date - 31)
,
tb1 as (select
'ethereum' as blockchain,
count(DISTINCT from_address) as active_addresses
from ethereum.core.fact_transactions
where block_timestamp::date >= current_date - 31
group by 1
UNION all
select
'base' as blockchain,
count(DISTINCT from_address) as active_addresses
from base.core.fact_transactions
where block_timestamp::date >= current_date - 31
group by 1
UNION all
select
'arbitrum' as blockchain,
count(DISTINCT from_address) as active_addresses
from arbitrum.core.fact_transactions
where block_timestamp::date >= current_date - 31
group by 1
UNION all
Last run: about 1 month ago
15
500B
373s