yasmin-n-d-r-hUntitled Query
    Updated 2022-08-14
    select
    date_trunc('day', block_timestamp) as day,
    count (distinct origin_from_address) as "Users Count",
    sum (lp_fee_usd) as feee
    from
    optimism.velodrome.ez_swaps
    group by
    day
    order by
    day asc

    Run a query to Download Data