BLOCKCHAIN | TOTAL_USERS | RETAINED_30_DAYS | RETENTION_RATE_AFTER_7_DAYS | |
---|---|---|---|---|
1 | Blast | 1792052 | 1063046 | 59.320042 |
2 | Base | 134108360 | 26265837 | 19.585533 |
3 | Optimism | 14531370 | 7192899 | 49.499111 |
4 | Arbitrum | 43464899 | 18145069 | 41.746488 |
rezarwzUser Retention Rate copy
Updated 2025-02-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
33
34
35
36
›
⌄
-- forked from User Retention Rate @ https://flipsidecrypto.xyz/studio/queries/45eafee3-c08c-476f-82e8-65ffff553a04
WITH user_activity AS (
SELECT
'Blast' as blockchain,
from_Address as user_address,
MIN(DATE_TRUNC('day', block_timestamp)) AS first_activity_date,
MAX(DATE_TRUNC('day', block_timestamp)) AS last_activity_date
FROM
blast.core.fact_transactions
GROUP BY
blockchain,
user_address
union
all
SELECT
'Base' as blockchain,
from_Address as user_address,
MIN(DATE_TRUNC('day', block_timestamp)) AS first_activity_date,
MAX(DATE_TRUNC('day', block_timestamp)) AS last_activity_date
FROM
base.core.fact_transactions
GROUP BY
blockchain,
user_address
union
all
SELECT
'Arbitrum' as blockchain,
from_Address as user_address,
MIN(DATE_TRUNC('day', block_timestamp)) AS first_activity_date,
MAX(DATE_TRUNC('day', block_timestamp)) AS last_activity_date
FROM
Arbitrum.core.fact_transactions
GROUP BY
blockchain,
Last run: 2 months ago
4
156B
308s