Sbhn_NPDaily Voters and Unvoters
    Updated 2022-08-17
    select date_trunc('day',block_timestamp) as date,COUNT(DISTINCT origin_from_address) as voters
    from optimism.velodrome.ez_votes
    where block_timestamp > CURRENT_DATE -90
    group by 1
    order by 1
    Run a query to Download Data