mlhcount of swaps and swappers to ETH in DEXs
    Updated 2023-01-14
    SELECT date_trunc('day', BLOCK_TIMESTAMP) as date,
    count(DISTINCT tx_hash) as trxs,
    count(DISTINCT SENDER) as swappers,
    sum(AMOUNT_out_USD) as usd_amount_out
    FROM ethereum.core.ez_dex_swaps
    WHERE SYMBOL_out = 'WETH'
    AND BLOCK_TIMESTAMP::date >= '2022-01-01'
    group by 1
    order by 1 desc
    Run a query to Download Data