Updated 2022-03-09
    select top 100 tx_from[0] as "wallet Address", count (tx_id) as "Number of Transactions"
    --,min(block_timestamp)::date as min_date
    from terra.transactions
    group by 1
    having min(block_timestamp)::date >=CURRENT_DATE-90
    order by 2 DESC;
    Run a query to Download Data