nitsTerra State 2
    Updated 2022-03-06
    SELECT date(block_timestamp) as day,
    count(DISTINCT tx_id) as total_txs,
    COUNT (DISTINCT tx_from) as unique_senders,
    COUNT (DISTINCT tx_to) as unique_receivers ,
    from terra.transactions
    where block_timestamp > CURRENT_DATE -30
    GROUP by 1

    Run a query to Download Data