cyphervelodrome locks over time
    Updated 2022-11-13
    with data as (select
    date_trunc('day', block_timestamp) as date,
    datediff(day, date::date, unlock_date) as lock_time,
    velo_amount_usd as amount_usd
    from optimism.velodrome.ez_velo_locks
    where velo_action = 'deposit')

    select * from data
    Run a query to Download Data