mondovtop10traders
    Updated 2023-10-30
    select
    origin_from_address as "Wallet",
    count(distinct tx_hash) as "Total Swaps"
    from
    avalanche.core.ez_decoded_event_logs
    where
    origin_to_address = lower('0x60aE616a2155Ee3d9A68541Ba4544862310933d4')
    and event_name = 'Swap'
    and tx_status = 'SUCCESS'
    group by
    1
    order by
    2 desc
    limit
    10
    Run a query to Download Data