NuveveCryptoArchivedWeekly Swap Volume
    Updated 2023-04-13
    select
    date_trunc('week', block_timestamp) as week,
    sum(amount_out_usd) as volume_usd
    from optimism.velodrome.ez_swaps
    where block_timestamp >= current_date - 365
    group by week
    Run a query to Download Data