nitsTop 5 Swap Pairs on Ethereum
    Updated 2022-11-04
    (SELECT symbol_in, symbol_out, count(DISTINCT tx_hash) as total_txs from ethereum.sushi.ez_swaps
    where symbol_out!= 'WETH'
    GROUP by 1,2
    order by 3 desc
    LIMIT 5)
    Run a query to Download Data