farid-c9j0VMtotal velo
    Updated 2022-09-02
    with swaps_tx as (select * from optimism.velodrome.ez_swaps
    where block_timestamp::date >= CURRENT_DATE - 30)

    select
    count(distinct tx_hash) as swap_tx_count,
    count(distinct origin_from_address) as user_count,
    sum(amount_in_usd) as volume_usd
    from swaps_tx

    Run a query to Download Data