Updated 2025-03-21
    SELECT
    hour,
    contracts_deployed,
    SUM(contracts_deployed) OVER (ORDER BY hour) AS total_contracts_deployed

    FROM (
    SELECT
    DATE_TRUNC('hour', created_block_timestamp) AS hour,
    COUNT(DISTINCT address) AS contracts_deployed
    FROM monad.testnet.dim_contracts
    GROUP BY 1
    )
    WHERE hour > '2025-02-18'



    Last run: about 1 month ago
    HOUR
    CONTRACTS_DEPLOYED
    TOTAL_CONTRACTS_DEPLOYED
    1
    2025-03-11 09:00:00.000157234411913
    2
    2025-02-20 06:00:00.000563379178
    3
    2025-03-01 15:00:00.000121762328964
    4
    2025-03-09 13:00:00.000102664012674
    5
    2025-03-04 02:00:00.00062112860708
    6
    2025-03-10 21:00:00.000104994269239
    7
    2025-03-15 23:00:00.00085475763630
    8
    2025-02-25 13:00:00.0007145671508
    9
    2025-03-07 20:00:00.00084723699135
    10
    2025-02-24 05:00:00.0005976471166
    11
    2025-03-05 08:00:00.00094103169941
    12
    2025-03-11 16:00:00.000138084527475
    13
    2025-02-19 09:00:00.0002891231
    14
    2025-02-18 20:00:00.00038518
    15
    2025-03-06 15:00:00.00085323420877
    16
    2025-03-07 09:00:00.000292883587856
    17
    2025-03-09 23:00:00.00040444085990
    18
    2025-03-10 20:00:00.000101214258740
    19
    2025-02-24 19:00:00.0007245577788
    20
    2025-02-23 17:00:00.0005570420449
    ...
    753
    30KB
    3s