DATE | Daily New Unique Contract Deployers | Cumulative Unique Contract Deployers | |
---|---|---|---|
1 | 2025-02-19 00:00:00.000 | 20358 | 21402 |
2 | 2025-02-20 00:00:00.000 | 24624 | 46026 |
3 | 2025-02-21 00:00:00.000 | 19290 | 65316 |
4 | 2025-02-22 00:00:00.000 | 16253 | 81569 |
5 | 2025-02-23 00:00:00.000 | 22292 | 103861 |
6 | 2025-02-24 00:00:00.000 | 28628 | 132489 |
7 | 2025-02-25 00:00:00.000 | 72006 | 204495 |
8 | 2025-02-26 00:00:00.000 | 134058 | 338553 |
9 | 2025-02-27 00:00:00.000 | 99492 | 438045 |
10 | 2025-02-28 00:00:00.000 | 114410 | 552455 |
11 | 2025-03-01 00:00:00.000 | 80032 | 632487 |
12 | 2025-03-02 00:00:00.000 | 49669 | 682156 |
13 | 2025-03-03 00:00:00.000 | 50864 | 733020 |
14 | 2025-03-04 00:00:00.000 | 77982 | 811002 |
15 | 2025-03-05 00:00:00.000 | 48604 | 859606 |
16 | 2025-03-06 00:00:00.000 | 22877 | 882483 |
17 | 2025-03-07 00:00:00.000 | 50055 | 932538 |
18 | 2025-03-08 00:00:00.000 | 23338 | 955876 |
19 | 2025-03-09 00:00:00.000 | 18012 | 973888 |
20 | 2025-03-10 00:00:00.000 | 19395 | 993283 |
Mrftisupporting-brown
Updated 2 hours ago
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
›
⌄
WITH first_tbl AS (
SELECT
a.from_address,
MIN(DATE_TRUNC('day', a.block_timestamp)) AS first_date
FROM monad.testnet.fact_traces a
WHERE
a.type LIKE '%CREATE%'
AND a.to_address IS NOT NULL
AND a.input IS NOT NULL
AND a.input != '0x'
GROUP BY 1
),
daily_new_deployers AS (
SELECT
DATE_TRUNC('day', a.block_timestamp) AS date,
COUNT(DISTINCT a.from_address) AS daily_new_deployers
FROM monad.testnet.fact_traces a JOIN first_tbl b ON a.from_address = b.from_address
WHERE DATE_TRUNC('day', a.block_timestamp) = b.first_date
GROUP BY 1
),
cumulative_deployers AS (
SELECT
date,
daily_new_deployers,
SUM(daily_new_deployers) OVER (ORDER BY date) AS cumulative_deployers
FROM daily_new_deployers
)
SELECT
date,
daily_new_deployers AS "Daily New Unique Contract Deployers",
cumulative_deployers AS "Cumulative Unique Contract Deployers"
FROM cumulative_deployers
where date > '2025-02-18 00:00:00.000'
ORDER BY 1
Last run: about 2 hours agoAuto-refreshes every 12 hours
29
1KB
383s