nitsTerra Transactions
    Updated 2022-02-26
    SELECT hr , unique_txs from
    (SELECT COUNT(distinct tx_id ) as unique_txs ,
    trunc(block_timestamp, 'hour' ) as hr
    from terra.transactions
    where block_timestamp > CURRENT_DATE -30
    GROUP by 2 )
    -- limit 100
    Run a query to Download Data