SalehUntitled Query
    Updated 2023-02-14
    SELECT
    BLOCK_TIMESTAMP::date
    ,sum( AMOUNT0_USD-AMOUNT1_USD)
    from ethereum.uniswapv3.ez_swaps
    where BLOCK_TIMESTAMP >'2023-01-01'
    and AMOUNT0_ADJUSTED>0
    group by 1
    order by 1
    Run a query to Download Data