rezarwzTime to Reach 500,000 Users
Updated 2024-07-28
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
›
⌄
WITH user_growth AS (
SELECT
'Blast' as blockchain,
DATE_TRUNC('day', block_timestamp) AS date,
COUNT(DISTINCT from_address) AS total_users
FROM
blast.core.fact_transactions
where BLOCK_TIMESTAMP::date>='2024-02-29'
GROUP BY
blockchain,
DATE_TRUNC('day', block_timestamp)
union all
SELECT
'Base' as blockchain,
DATE_TRUNC('day', block_timestamp) AS date,
COUNT(DISTINCT from_address) AS total_users
FROM
Base.core.fact_transactions
where BLOCK_TIMESTAMP::date>='2023-07-20'
GROUP BY
blockchain,
DATE_TRUNC('day', block_timestamp)
union all
SELECT
'Arbitrum' as blockchain,
DATE_TRUNC('day', block_timestamp) AS date,
COUNT(DISTINCT from_address) AS total_users
FROM
Arbitrum.core.fact_transactions
where BLOCK_TIMESTAMP::date>='2021-08-31'
GROUP BY
blockchain,
DATE_TRUNC('day', block_timestamp)
union all
SELECT
'Optimism' as blockchain,
QueryRunArchived: QueryRun has been archived