m4ri4ncocho2023-12-14 04:35 PM
    Updated 2023-12-14
    SELECT
    symbol_out,
    count(tx_hash) as swap_count
    from ethereum.defi.ez_dex_swaps
    where platform = 'sushiswap'
    and date_trunc('month', block_timestamp) = '2023-02-01'
    group by 1
    order by 2 desc
    limit 10