WEEK_START | NEW_USERS | TOTAL_USERS | |
---|---|---|---|
1 | 2025-03-17 00:00:00.000 | 353551 | 16280996 |
2 | 2025-03-10 00:00:00.000 | 437989 | 15927445 |
3 | 2025-03-03 00:00:00.000 | 408935 | 15489456 |
4 | 2025-02-24 00:00:00.000 | 195362 | 15080521 |
5 | 2025-02-17 00:00:00.000 | 278965 | 14885159 |
6 | 2025-02-10 00:00:00.000 | 619852 | 14606194 |
7 | 2025-02-03 00:00:00.000 | 553784 | 13986342 |
8 | 2025-01-27 00:00:00.000 | 560735 | 13432558 |
9 | 2025-01-20 00:00:00.000 | 866393 | 12871823 |
10 | 2025-01-13 00:00:00.000 | 1041334 | 12005430 |
11 | 2025-01-06 00:00:00.000 | 737432 | 10964096 |
12 | 2024-12-30 00:00:00.000 | 1433777 | 10226664 |
13 | 2024-12-23 00:00:00.000 | 2096587 | 8792887 |
14 | 2024-12-16 00:00:00.000 | 924969 | 6696300 |
15 | 2024-12-09 00:00:00.000 | 446111 | 5771331 |
16 | 2024-12-02 00:00:00.000 | 715253 | 5325220 |
17 | 2024-11-25 00:00:00.000 | 775871 | 4609967 |
18 | 2024-11-18 00:00:00.000 | 496161 | 3834096 |
19 | 2024-11-11 00:00:00.000 | 314967 | 3337935 |
20 | 2024-11-04 00:00:00.000 | 88078 | 3022968 |
omer93sei transactions bo 3
Updated 2025-03-24
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
›
⌄
WITH
weekly_data AS (
SELECT distinct tx_from as new_user,
min(DATE_TRUNC('week', block_timestamp::DATE)) AS week_start
FROM sei.core.fact_transactions
WHERE block_timestamp::DATE >= '2023-08-15'
AND tx_from NOT IN (SELECT address FROM sei.core.dim_labels)
AND tx_id NOT IN (
SELECT DISTINCT tx_id
FROM sei.core.fact_transactions
WHERE fee = '0usei'
AND block_timestamp::DATE >= '2023-08-15'
)
AND tx_succeeded = 'TRUE'
GROUP BY 1
UNION
SELECT distinct from_address as new_user,
min(DATE_TRUNC('week', block_timestamp::DATE)) AS week_start
FROM sei.core_evm.fact_transactions
GROUP BY 1
)
SELECT
week_start,
count(distinct new_user) as new_users,
sum(new_users) over (order by week_start) as total_users
from weekly_data where week_start < trunc(current_date,'week')
group by 1 order by 1 desc
Last run: 28 days ago
84
3KB
583s