bobby_danieltart-harlequin
    Updated 2025-03-08
    -- monad.testnet.fact_blocks
    -- monad.testnet.fact_transactions
    -- monad.testnet.fact_event_logs
    -- monad.testnet.fact_traces
    -- monad.testnet.dim_contracts

    --Successful_contract_deployments
    -- SELECT
    -- DATE(block_timestamp) AS deployment_date,
    -- COUNT(DISTINCT to_address) AS new_contracts
    -- FROM monad.testnet.fact_traces
    -- WHERE type = 'CREATE'
    -- AND trace_succeeded = TRUE
    -- AND block_timestamp >= '2025-02-19 15:00'
    -- GROUP BY 1
    -- ORDER BY 1

    -- Contract_interactions
    -- SELECT
    -- DATE(block_timestamp) AS interaction_date,
    -- COUNT(DISTINCT tx_hash) AS total_interactions,
    -- COUNT(DISTINCT contract_address) AS unique_contracts_interacted,
    -- COUNT(DISTINCT origin_from_address) AS unique_users
    -- FROM monad.testnet.fact_event_logs
    -- WHERE block_timestamp >= '2025-02-19 15:00'
    -- AND tx_succeeded = TRUE -- Only successful transactions
    -- AND contract_address IS NOT NULL -- Ensure we're looking at contract interactions
    -- GROUP BY 1
    -- ORDER BY 1 ASC;
    Last run: about 2 months ago
    INTERACTION_DATE
    TOTAL_INTERACTIONS
    UNIQUE_CONTRACTS_INTERACTED
    UNIQUE_USERS
    1
    2025-02-19 00:00:00.0005915406472107618
    2
    2025-02-20 00:00:00.000247725764633249916
    3
    2025-02-21 00:00:00.000327887866614396422
    4
    2025-02-22 00:00:00.000446627344423390432
    5
    2025-02-23 00:00:00.000871208253726484854
    6
    2025-02-24 00:00:00.000891594171350665144
    7
    2025-02-25 00:00:00.00011653516851451063847
    8
    2025-02-26 00:00:00.000189262661237571883785
    9
    2025-02-27 00:00:00.00013657667917541249358
    10
    2025-02-28 00:00:00.00012623398771081082988
    11
    2025-03-01 00:00:00.0009780664679191044544
    12
    2025-03-02 00:00:00.0009247905616631010609
    13
    2025-03-03 00:00:00.0009117081625641130394
    14
    2025-03-04 00:00:00.0009633714660281567453
    15
    2025-03-05 00:00:00.0008635551657201382141
    16
    2025-03-06 00:00:00.0008539165836651183509
    17
    2025-03-07 00:00:00.0008861754689531319296
    18
    2025-03-08 00:00:00.0007860716571781178077
    18
    898B
    20s