0-MIDtop 10 sushi swappers by swap count(poly)
    Updated 2022-10-16
    select ORIGIN_FROM_ADDRESS ,count(distinct TX_HASH)as swap_count
    from polygon.core.fact_event_logs
    where ORIGIN_TO_ADDRESS='0x1b02da8cb0d097eb8d57a175b88c7d8b47997506'
    and TX_STATUS='SUCCESS'
    group by 1
    order by 2 desc
    limit 10
    Run a query to Download Data