CHAIN | DATE | new users | total users | |
---|---|---|---|---|
1 | base | 2025-01-13 00:00:00.000 | 3779235 | 116287435 |
2 | arbitrum | 2024-05-20 00:00:00.000 | 789485 | 23303850 |
3 | bsc | 2025-01-13 00:00:00.000 | 2733324 | 223101553 |
4 | bsc | 2025-03-10 00:00:00.000 | 2217791 | 244354246 |
5 | blast | 2024-04-29 00:00:00.000 | 76520 | 755977 |
6 | base | 2024-04-15 00:00:00.000 | 540457 | 7523524 |
7 | ethereum | 2024-10-28 00:00:00.000 | 537018 | 210338957 |
8 | ethereum | 2024-03-11 00:00:00.000 | 777673 | 188895005 |
9 | arbitrum | 2023-12-11 00:00:00.000 | 157506 | 12256021 |
10 | arbitrum | 2024-07-08 00:00:00.000 | 646865 | 31416081 |
11 | polygon | 2024-02-19 00:00:00.000 | 940104 | 61350169 |
12 | optimism | 2025-02-10 00:00:00.000 | 169389 | 14182024 |
13 | ethereum | 2024-06-24 00:00:00.000 | 659348 | 199689712 |
14 | bsc | 2023-11-13 00:00:00.000 | 905525 | 137543186 |
15 | avalanche | 2024-10-07 00:00:00.000 | 32013 | 9699920 |
16 | avalanche | 2024-12-23 00:00:00.000 | 151412 | 10401485 |
17 | avalanche | 2025-03-10 00:00:00.000 | 84398 | 11730496 |
18 | blast | 2024-03-04 00:00:00.000 | 126380 | 260410 |
19 | avalanche | 2024-10-14 00:00:00.000 | 35257 | 9735177 |
20 | polygon | 2024-09-09 00:00:00.000 | 648673 | 90121915 |
AzinNew users
Updated 2025-03-22
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 t1 AS
(( SELECT
FROM_ADDRESS ,
MIN(BLOCK_TIMESTAMP) AS Datee,
'base' AS Chain
FROM
base.core.fact_transactions
GROUP BY 1)
UNION ALL
(SELECT
FROM_ADDRESS ,
MIN(BLOCK_TIMESTAMP) AS Datee,
'arbitrum' AS Chain
FROM
arbitrum.core.fact_transactions
GROUP BY 1)
UNION ALL
(SELECT
FROM_ADDRESS ,
MIN(BLOCK_TIMESTAMP) AS Datee,
'polygon' AS Chain
FROM
polygon.core.fact_transactions
GROUP BY 1)
UNION ALL
(SELECT
FROM_ADDRESS ,
MIN(BLOCK_TIMESTAMP) AS Datee,
'optimism' AS Chain
FROM
Last run: 17 days ago
...
554
29KB
924s