maybeyonasalgo_fees_top10_2022
    Updated 2022-01-30
    select
    sender,
    sum(fee) as algo_fees,
    count(distinct tx_id) as txs
    from algorand.transactions
    where year(block_timestamp) >= 2022 and fee is not null
    group by 1
    order by algo_fees desc
    limit 10
    Run a query to Download Data