mmdrezaDaily Volume(usd) of Burn Action in Veolodrome
    Updated 2022-08-14
    select date_trunc('day',block_timestamp) as date,sum(TOKEN0_AMOUNT_USD+TOKEN1_AMOUNT_USD) as volume
    from optimism.velodrome.ez_lp_actions
    where lp_action like 'withdraw'
    and lp_token_action like 'burn'
    group by date
    order by date asc
    Run a query to Download Data