🗃️Governance
All snapshot.org spaces, proposals, and votes
Last updated
All snapshot.org spaces, proposals, and votes
Last updated
Snapshot.org is a decentralized governance platform that makes it easy to create and vote on proposals. This query dataset is a periodic download of all snapshot.org spaces (organizations), proposals, and votes.
Spaces contain all the spaces that have been created. All proposal related to the same topic or entity are organized under the same space.
Field name | Type | Description |
---|---|---|
space_id | STRING | The unique ID of the snapshot space |
space_name | STRING | The name of the space ID |
about | STRING | Description for this space |
space_symbol | STRING | The symbol |
network | STRING | The network the space is on (usually 1 for mainnet) |
admins | STRING | Admin of the space id (addresses) |
strategies | RECORD | The strategies available for this space. See snapshot.org docs for more info |
name | STRING | Name of the strategy |
symbol | STRING | The token symbol associated with the strategy |
address | STRING | The token address associated with this strategy |
decimals | STRING | The decimals for the token |
original_blob | STRING | The original space blob |
Proposals are ballots put forth by members of the proposals. There are two types of proposals:
Active Proposals: Proposals that are still open to voting
Closed Proposals: Proposals that are closed to voting
Field name | Type | Description |
---|---|---|
proposal_id | STRING | ID of the proposal |
title | STRING | Proposal Title |
created_timestamp | TIMESTAMP | When the proposal was created |
start_timestamp | TIMESTAMP | Start time of the voting period |
end_timestamp | TIMESTAMP | End time of the voting period |
choice_array | STRING | Choices available for vote |
strategies_array | STRING | The arrat of function that returns a score for a set of addresses. Strategies are being used on Snapshot to calculate the result for a proposal |
author | STRING | Author of the proposal |
space_id | STRING | The Space ID of the proposal |
space_name | STRING | The name of the Space ID |
proposal_state | STRING | The current status of the proposal |
original_blob | STRING | The original proposal blob |
The votes table is a record of each vote for a specific proposal by a specific voter. Aggregating by proposal_id
would show the result of a vote and allow for analysis at the voter and choice level.
Field name | Type | Description |
---|---|---|
vote_id | STRING | Unique ID of the vote |
voter_address | STRING | Address of the voter |
voting_power | FLOAT | The voting power associated with this vote |
vp_by_strategy | STRING | The voting power according to different strategies |
vp_state | STRING | The state of the voting power |
created | STRING | Snapshot block number |
created_timestamp | TIMESTAMP | Timestamp of the block snapshot |
ipfs | STRING | IPFS location of the vote |
proposal_id | STRING | The proposal ID voted for |
choice | STRING | The vote elected |
choice_array | STRING | The array of choices elected (if relevant) |
choice_multiple_json | STRING | The JSON of choices elected (if relevant) |
space_id | STRING | The space ID of of the proposal |
space_name | STRING | The name of the space ID |
original_blob | STRING | The original blob of the vote |