freemartianTop 10 Arbitrum Wallets
Updated 2022-11-15
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
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