vendettaSnapshot top 5 Spaces by votes
    Updated 2022-08-31
    select top 5 space_id as DAO,
    count (distinct id) as Votes,
    count (distinct voter) as Voters
    from ethereum.core.ez_snapshot
    group by 1
    order by 2 DESC

    Run a query to Download Data