mattkstewLargest Tokemak DEX Pools 5
    Updated 2022-06-22
    select
    date_trunc('day', block_timestamp),
    pool_name,
    avg(amount_out_usd)
    from ethereum.core.ez_dex_swaps
    where pool_name like '%TOKE-%'
    and pool_name not like '%STOKE%'
    group by 1,2

    Run a query to Download Data