shreyash-5873EIP-1559 Top Burners
    Updated 2021-08-05
    select
    to_label as top_burners,
    sum(fee_usd) as total_usd_burnt
    from ethereum.transactions
    where block_id >= 12965000
    and top_burners is not null
    group by 1
    order by total_usd_burnt desc
    limit 20;
    Run a query to Download Data