kingharald-ethTop 10 User with most transactions
    Updated 2022-08-04
    select from_address as wallet_address, count(distinct(tx_hash)) as tx_num from optimism.core.fact_transactions
    where status = 'SUCCESS'
    group by from_address
    order by tx_num desc
    limit 10
    Run a query to Download Data