Alexaydeploy contracts
    Updated 2022-09-29
    select
    date_trunc('week', block_timestamp) as week,
    count(distinct tx_hash) as contracts, sum(contracts) over(order by week) as cumm
    from near.core.fact_actions_events
    where ACTION_NAME='DeployContract'
    group by 1
    order by week desc
    Run a query to Download Data