mucryptoUniswap v2, monthly transactions
    Updated 2023-01-27
    select
    date_trunc('month', block_timestamp) as month,
    count(tx_hash) as transactions_count
    from ethereum.core.ez_dex_swaps
    where platform = 'uniswap-v2'
    and block_timestamp::date between '2022-01-01' and '2022-12-31'
    group by month
    Run a query to Download Data