DATE | Daily New Unique Contract Deployers | Cumulative Unique Contract Deployers | |
---|---|---|---|
1 | 2024-11-28 00:00:00.000 | 10 | 10 |
2 | 2024-12-02 00:00:00.000 | 15 | 25 |
3 | 2024-12-03 00:00:00.000 | 60 | 85 |
4 | 2024-12-04 00:00:00.000 | 4 | 89 |
5 | 2024-12-05 00:00:00.000 | 2 | 91 |
6 | 2024-12-06 00:00:00.000 | 6 | 97 |
7 | 2024-12-08 00:00:00.000 | 4 | 101 |
8 | 2024-12-09 00:00:00.000 | 43 | 144 |
9 | 2024-12-10 00:00:00.000 | 3 | 147 |
10 | 2024-12-11 00:00:00.000 | 2 | 149 |
11 | 2024-12-12 00:00:00.000 | 3 | 152 |
12 | 2024-12-13 00:00:00.000 | 1 | 153 |
13 | 2024-12-16 00:00:00.000 | 2 | 155 |
14 | 2024-12-17 00:00:00.000 | 6 | 161 |
15 | 2024-12-18 00:00:00.000 | 6 | 167 |
16 | 2024-12-19 00:00:00.000 | 7 | 174 |
17 | 2024-12-20 00:00:00.000 | 12 | 186 |
18 | 2024-12-21 00:00:00.000 | 6 | 192 |
19 | 2024-12-22 00:00:00.000 | 8 | 200 |
20 | 2024-12-23 00:00:00.000 | 17 | 217 |
Mrftidefensive-plum copy
Updated 19 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
36
›
⌄
-- forked from defensive-plum @ https://flipsidecrypto.xyz/studio/queries/c4773233-061f-4f82-822a-644ad2cac59e
WITH first_tbl AS (
SELECT
a.from_address,
MIN(DATE_TRUNC('day', a.block_timestamp)) AS first_date
FROM swell.core.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 swell.core.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
ORDER BY 1
Last run: about 19 hours agoAuto-refreshes every 12 hours
85
3KB
15s