FatemeTheLadyNumber of transactions
    Updated 2022-03-13
    select tx_from[0] as wallet_address,
    -- min(block_timestamp)::date as min_date ,
    count(DISTINCT tx_id) as transactions_Num
    from terra.transactions
    group by 1 having min(block_timestamp)::date<='2022-03-07' and min(block_timestamp)::date>='2021-12-08'
    order by 2 DESC
    Run a query to Download Data