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