zakkisyedsushi add liquidity
    Updated 2021-11-22
    select
    date_trunc('day',block_timestamp) as day,
    amount,
    amount_usd,
    origin_address
    from ethereum.udm_events
    where ORIGIN_FUNCTION_NAME = 'addLiquidity'
    and to_label = 'sushiswap'
    and block_timestamp > CURRENT_DATE-90
    order by DAY

    Run a query to Download Data