Updated 2022-11-04
    select
    pool_name,
    count(DISTINCT tx_hash) as swaps
    from ethereum.core.ez_dex_swaps where pool_name is not null
    and platform like 'balancer'
    group by 1
    order by 2 desc
    limit 4
    Run a query to Download Data