freemartianTop 10 Arbitrum Wallets
    Updated 2022-11-15
    select
    from_address as user,
    (sum(gas_used/pow(10,9)) * avg(price)) as Fee_in_usd,
    sum(tx_fee) as Fee_in_eth
    from arbitrum.core.fact_transactions inner join ethereum.core.fact_hourly_token_prices p
    on hour::date = block_timestamp::date and hour(p.hour) = hour(block_timestamp)
    where block_timestamp > CURRENT_DATE - 31
    and status = 'SUCCESS'
    and symbol = 'WETH'
    group by user
    order by Fee_in_usd desc
    limit 10

    Run a query to Download Data