zakkisyedETH top 10 wallets by transaction volume
    Updated 2022-10-03



    select distinct from_address as wallets,
    sum(eth_value) as eth_value,
    sum(tx_fee) as tx_fees,
    count(tx_hash)
    from ethereum.core.fact_transactions
    where block_timestamp >= current_date-7

    group by 1
    order by 2 desc
    limit 10



    Run a query to Download Data