DAILY | BLOCKCHAIN | ACTIVE_ADDRESSES | |
---|---|---|---|
1 | 2025-04-12 00:00:00.000 | ethereum | 335308 |
2 | 2025-04-16 00:00:00.000 | ethereum | 372145 |
3 | 2025-04-12 00:00:00.000 | base | 1309731 |
4 | 2025-04-16 00:00:00.000 | base | 646322 |
5 | 2025-04-12 00:00:00.000 | aptos | 915662 |
6 | 2025-04-16 00:00:00.000 | aptos | 629247 |
7 | 2025-04-12 00:00:00.000 | arbitrum | 282423 |
8 | 2025-04-16 00:00:00.000 | arbitrum | 193159 |
9 | 2025-04-12 00:00:00.000 | sei | 273824 |
10 | 2025-04-16 00:00:00.000 | sei | 260345 |
11 | 2025-04-12 00:00:00.000 | avalanche | 28099 |
12 | 2025-04-16 00:00:00.000 | avalanche | 29760 |
13 | 2025-04-12 00:00:00.000 | optimism | 90767 |
14 | 2025-04-16 00:00:00.000 | optimism | 103409 |
15 | 2025-04-12 00:00:00.000 | polygon | 442231 |
16 | 2025-04-16 00:00:00.000 | polygon | 459822 |
17 | 2025-04-16 00:00:00.000 | thorchain | 2209 |
18 | 2025-04-12 00:00:00.000 | thorchain | 2414 |
19 | 2025-04-12 00:00:00.000 | kaia | 5481650 |
20 | 2025-04-16 00:00:00.000 | kaia | 2409540 |
SajjadiiiDaily Active Addresses copy
Updated 3 days ago
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
›
⌄
-- forked from Masi / Daily Active Addresses @ https://flipsidecrypto.xyz/Masi/q/lOD1WUkl2aBU/daily-active-addresses
with tb0_0 AS (
SELECT
block_timestamp,
BLOCK_ID,
tx_hash,
ifnull(tx:actions[0]:Delegate:delegate_action:receiver_id::string, TX_RECEIVER)::string as receiver,
ifnull(tx:actions[0]:Delegate:delegate_action:sender_id::string, TX_SIGNER)::string AS user
FROM near.core.fact_transactions
where block_timestamp::date >= current_date - 30
)
,
tb0 as ( select block_timestamp,
from_address
from thorchain.core.fact_transfers
where block_timestamp::date >= current_date - 30
UNION
select block_timestamp,
from_address
from thorchain.defi.fact_swaps
where block_timestamp::date >= current_date - 30
UNION
select block_timestamp,
native_to_address as from_address
from thorchain.defi.fact_swaps
where block_timestamp::date >= current_date - 30),
tb5 as (select address from avalanche.core.dim_contracts)
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 >= current_date - 30
group by 1
Last run: 3 days ago
...
446
19KB
298s