Wikist-oA67h0Gritnova L5 a - All swaps that took place on UNISWAP v.2 in January of 2023
    Updated 2023-02-27
    select
    date_trunc('month', block_timestamp) as month,
    count(distinct tx_hash) as Swaps
    from ethereum.core.ez_dex_swaps
    where platform = 'uniswap-v2'
    and block_timestamp >= '2023-01-01' and block_timestamp <= '2023-01-31'
    group by 1
    order by 1
    Run a query to Download Data