nitsTerra Transactions
    Updated 2022-03-06
    SELECT tx_from, count(*) as total_txs from terra.transactions
    where block_timestamp >= CURRENT_DATE -90 and tx_from is not NULL
    GROUP by 1
    order by 2 desc
    -- limit 100
    Run a query to Download Data