cloudr3nTransaction over time
    Updated 2021-12-22
    -- select *
    select date(block_timestamp) as dates, count(*) as no_of_tx

    from terra.msg_events

    where event_attributes:task_type IS NOT NULL -- and event_type='from_contract'
    GROUP BY dates
    --order by block_timestamp

    --limit 100
    Run a query to Download Data