kingharald-ethTop 10 Swapper
    Updated 2022-08-06
    select origin_from_address, count(distinct(tx_hash)) as tx_num from gnosis.core.fact_event_logs
    where tx_status = 'SUCCESS'
    and event_name != ''
    and event_name = 'Swap'
    group by origin_from_address
    order by tx_num desc
    limit 10
    Run a query to Download Data