Mrftisupporting-brown
    Updated 2 hours ago
    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
    DATE
    Daily New Unique Contract Deployers
    Cumulative Unique Contract Deployers
    1
    2025-02-19 00:00:00.0002035821402
    2
    2025-02-20 00:00:00.0002462446026
    3
    2025-02-21 00:00:00.0001929065316
    4
    2025-02-22 00:00:00.0001625381569
    5
    2025-02-23 00:00:00.00022292103861
    6
    2025-02-24 00:00:00.00028628132489
    7
    2025-02-25 00:00:00.00072006204495
    8
    2025-02-26 00:00:00.000134058338553
    9
    2025-02-27 00:00:00.00099492438045
    10
    2025-02-28 00:00:00.000114410552455
    11
    2025-03-01 00:00:00.00080032632487
    12
    2025-03-02 00:00:00.00049669682156
    13
    2025-03-03 00:00:00.00050864733020
    14
    2025-03-04 00:00:00.00077982811002
    15
    2025-03-05 00:00:00.00048604859606
    16
    2025-03-06 00:00:00.00022877882483
    17
    2025-03-07 00:00:00.00050055932538
    18
    2025-03-08 00:00:00.00023338955876
    19
    2025-03-09 00:00:00.00018012973888
    20
    2025-03-10 00:00:00.00019395993283
    29
    1KB
    383s