ML65The top 10 addresses on Ethereum that spend the most on gas in the past month
    Updated 2022-11-12
    select sum(gas_used/1e9) as eth_gas , from_address from ethereum.core.fact_transactions
    where
    block_timestamp::date > current_date - interval '30 days'
    group by 2
    order by 1 DESC
    limit 10

    Run a query to Download Data