Mrftiunhappy-magenta
    Updated 24 hours ago

    WITH tbl AS (
    SELECT
    CREATED_BLOCK_TIMESTAMP,
    creator_address AS "Address",
    COUNT(*) as "Total Contracts deployed"
    FROM monad.testnet.dim_contracts
    GROUP BY 1,2
    )

    SELECT
    date_trunc (day, CREATED_BLOCK_TIMESTAMP) as date,
    sum ("Total Contracts deployed") as "Total Contracts Deployed",
    sum ("Total Contracts Deployed") over (order by date) as "Cumulative Deployed Contracts"
    from tbl
    where date > '2025-02-18 00:00:00.000'
    group by 1
    order by 1
    Last run: about 24 hours agoAuto-refreshes every 12 hours
    DATE
    Total Contracts Deployed
    Cumulative Deployed Contracts
    1
    2025-02-19 00:00:00.0004848748487
    2
    2025-02-20 00:00:00.000106848155335
    3
    2025-02-21 00:00:00.00095381250716
    4
    2025-02-22 00:00:00.00082158332874
    5
    2025-02-23 00:00:00.000111471444345
    6
    2025-02-24 00:00:00.000150344594689
    7
    2025-02-25 00:00:00.000279517874206
    8
    2025-02-26 00:00:00.0005223951396601
    9
    2025-02-27 00:00:00.0003847111781312
    10
    2025-02-28 00:00:00.0003490162130328
    11
    2025-03-01 00:00:00.0002772962407624
    12
    2025-03-02 00:00:00.0002288622636486
    13
    2025-03-03 00:00:00.0002081382844624
    14
    2025-03-04 00:00:00.0002344983079122
    15
    2025-03-05 00:00:00.0002014113280533
    16
    2025-03-06 00:00:00.0002024213482954
    17
    2025-03-07 00:00:00.0002395763722530
    18
    2025-03-08 00:00:00.0001784023900932
    19
    2025-03-09 00:00:00.0001844774085409
    20
    2025-03-10 00:00:00.0002039264289335
    28
    1KB
    5s