HadisehDistrict Deep Dive: Contracts Deployed 6
    Updated 2022-09-28
    select
    date(block_timestamp) as date,
    count(distinct TX_RECEIVER) as new_contract,
    sum(new_contract) over (order by block_timestamp::date) as cumulative_contracts
    from near.core.fact_transactions
    where date >= CURRENT_DATE - 180
    group by date
    Run a query to Download Data