mucrypto2023-07-19 08:39 PM
    Updated 2023-07-20
    select
    date_trunc('month', proposal_start_time) as month,
    count(voter) as "VOTES (L)",
    sum("VOTES (L)") over (order by month) as "TOTAL VOTES OVER TIME (R)"
    from ethereum.core.ez_snapshot
    where space_id = 'gal.eth'
    or space_id = 'project-galaxy.eth'
    group by 1
    order by 1
    Run a query to Download Data