shawnedwardsTop 5 wallets have conducted the most transactions since Jan, 2022
    Updated 2022-07-08
    select sender, count (distinct tx_id) as count_transactions, sum(fee) as sum_fee
    from flipside_prod_db.algorand.transactions
    where not fee is null and block_timestamp::date > '2021-12-31' and block_timestamp::date < '2022-07-07'
    group by 1
    order by count_transactions desc
    limit 5
    Run a query to Download Data