HadisehDistrict Deep Dive: Contracts Deployed 4
    Updated 2022-09-28
    select count(distinct tx_hash) as total_contract,
    date_trunc('month', block_timestamp) as date,
    sum(total_contract) over (order by date) as cumulative_contracts
    from near.core.fact_actions_events
    where ACTION_NAME='DeployContract'
    group by date
    Run a query to Download Data