kiacryptoredux : eth : Top swapping from assets in terms of count - sushiswap
    Updated 2022-10-27
    select
    symbol_in,
    count(distinct tx_hash) as swap_count
    from ethereum.sushi.ez_swaps
    where block_timestamp::date >= current_date - {{interval}} and platform = 'sushiswap'
    group by 1
    order by 2 desc
    limit 10
    Run a query to Download Data