boomer77Untitled Query
    Updated 2021-08-04
    SELECT
    date_trunc('month',block_timestamp) as month,
    avg(amount_usd),
    direction,
    platform
    from ethereum.dex_swaps
    where amount_usd is not null and platform in ('uniswap-v2','uniswap-v3') and direction = 'IN'
    group by 1,3,4
    Run a query to Download Data