AVG_PERCENT_NEW_USERS | |
---|---|
1 | 44.516446902 |
elsinaavg daily new users percentage (Fablebone)
Updated 2025-02-21
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 users AS (
SELECT
origin_from_address,
MIN(block_timestamp) AS min_date
FROM
ronin.core.fact_event_logs
where
contract_address in ('0x3825ff6b6ad0f460660547e5890425ee821bd02c', '0xd887014121ddbad4494093689997125dde30612a')
GROUP BY
origin_from_address
),
new_users AS (
SELECT
date_trunc('day', min_date) AS date,
COUNT(DISTINCT origin_from_address) AS new_user_count
FROM
users
GROUP BY
date
),
old_users AS (
SELECT
date_trunc('day', block_timestamp) AS date,
COUNT(DISTINCT origin_from_address) AS old_user_count
FROM
ronin.core.fact_event_logs
WHERE
origin_from_address IN (
SELECT origin_from_address
FROM users
WHERE min_date < date_trunc('day', block_timestamp)
)
GROUP BY
date
Last run: 29 days ago
1
16B
4s