NatVelodrome: all-time values
    Updated 2023-04-13
    select
    count(distinct tx_hash) as swap_transactions,
    count(distinct origin_from_address) as unique_users,
    sum(amount_in_usd) as volume_in_usd,
    sum(amount_out_usd) as volume_out_usd,
    sum(lp_fee_usd) as fees_usd
    from optimism.velodrome.ez_swaps
    Run a query to Download Data