Mrftidefensive-plum copy
    Updated 19 hours ago
    -- 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
    DATE
    Daily New Unique Contract Deployers
    Cumulative Unique Contract Deployers
    1
    2024-11-28 00:00:00.0001010
    2
    2024-12-02 00:00:00.0001525
    3
    2024-12-03 00:00:00.0006085
    4
    2024-12-04 00:00:00.000489
    5
    2024-12-05 00:00:00.000291
    6
    2024-12-06 00:00:00.000697
    7
    2024-12-08 00:00:00.0004101
    8
    2024-12-09 00:00:00.00043144
    9
    2024-12-10 00:00:00.0003147
    10
    2024-12-11 00:00:00.0002149
    11
    2024-12-12 00:00:00.0003152
    12
    2024-12-13 00:00:00.0001153
    13
    2024-12-16 00:00:00.0002155
    14
    2024-12-17 00:00:00.0006161
    15
    2024-12-18 00:00:00.0006167
    16
    2024-12-19 00:00:00.0007174
    17
    2024-12-20 00:00:00.00012186
    18
    2024-12-21 00:00:00.0006192
    19
    2024-12-22 00:00:00.0008200
    20
    2024-12-23 00:00:00.00017217
    85
    3KB
    15s