rezarwzTime to Reach 1M TXs
Updated 2024-05-17
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 TX_hash) AS total_tx
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 tx_hash) AS total_tx
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 tx_hash) AS total_tx
FROM
Arbitrum.core.fact_transactions
where
BLOCK_TIMESTAMP :: date >= '2021-08-31'
GROUP BY
QueryRunArchived: QueryRun has been archived