Updated 2022-09-30
    select
    SPACE_ID,
    count(distinct VOTER) as no_voter,
    count(*) as no_votes
    from ethereum.core.ez_snapshot where NETWORK= 'Ethereum Mainnet'
    and VOTE_TIMESTAMP>='2022-01-01'
    group by 1
    order by 2 desc limit 5
    Run a query to Download Data