How to download a list of all names that voted on a snapshot?

I want to do some interesting visualizations with names. Is there an easy way to download it? Using graph queries?

I believe it’s possible using their subgraph; take a look at your browser’s network inspector while loading a page and you’ll see it’s querying all the votes.

1 Like

https://github.com/show-karma/subgraph-on-chain-voting

This subgraph is for on-chain votes but I guess it wouldn’t be hard to adapt it for Snapshot? @mmurthy’s work

@AvsA @inplco you can use this query to get all voters of ENS
URL: https://hub.snapshot.org/graphql

      {
        votes (
          first: 10000
          orderBy: "created"
          where: {
            space: "ens.eth",
          }
        ) {
          voter
        }
      }
1 Like