hessTotal Number of Daily Contracts
    Updated 2023-01-11
    select date(block_timestamp) as date,case when date < '2023-01-01' then '2022' else 'New Year' end as type, count(DISTINCT(tx:body:messages[0]:contract)) as contracts
    from terra.core.fact_transactions
    where date >= CURRENT_DATE - 60
    group by 1,2
    Run a query to Download Data