boomer77uniswap fees monthly
    Updated 2021-07-31
    select
    pool_address,
    pool_name,
    SUM(amount0_usd + amount1_usd) as fees,
    date_trunc('month', block_timestamp) as Months
    from uniswapv3.position_collected_fees
    where months <= '2021-07-18'
    group by 1,2,4
    having fees > 0
    Order by fees DESc
    Run a query to Download Data