MLDZMNsnap11
    Updated 2022-08-20
    select
    PROPOSAL_TITLE,
    count(*) as no_votes,
    count(distinct PROPOSAL_ID) as no_proposals,
    count(distinct VOTER) as no_voter,
    count(distinct PROPOSAL_AUTHOR) as authors
    from ethereum.core.ez_snapshot where NETWORK='Ethereum Mainnet' and SPACE_ID='sushigov.eth'
    group by 1
    order by 2 desc limit 10

    Run a query to Download Data