SpiltadavidWeekly New Contracts Deployed on Terra
    Updated 2022-12-20
    select
    date_trunc('week', block_timestamp) as week,
    count(distinct tx_id) as new_deploys
    from terra.core.ez_messages
    where message_type = '/cosmwasm.wasm.v1.MsgInstantiateContract'
    group by week

    Run a query to Download Data