Most common

Learn about the most popular configurations.

Before we jump into specific use cases, let's have a look at the most common configurations that the majority of spaces use on Snapshot.

Voting strategy + Proposal validation strategy

The minimum setup required to run your governance on Snapshot consists of:

  • selecting at least one Voting strategy

  • choosing a Validation strategy for proposal creation

To recap what Voting and Validation Strategies are:

Validation strategies are a way to define who is allowed to vote on a proposal or create a new one.

Voting strategies calculate how much Voting power each user has.

Most common Voting strategies

Token based

#1 Voting strategy on Snapshot used by over 8 thousand Spaces.

This strategy returns the balance for a specific ERC20 token that user holds in their wallet.

Strategy setup:

You can test it out in the Playground on Snapshot:

This strategy returns the balance of the user's ETH holdings as their Voting power.

Strategy setup:

You only need to provide the ETH symbol:

{
  "symbol": "ETH"
}

You can test it out in the Playground on Snapshot:

This strategy is designed for NFT holdings and is similar to erc20-balance-of.

This strategy returns the balance for a specific ERC721 NFT as the user's Voting Power.

Strategy setup:

You can test it out in the Playground on Snapshot:

eth-with-balance

eth-with-balance in its simplest way to assign 1 vote to wallets holding any balance of ETH. Regardless of how big the balance is, the VP is always the same and equal to 1 VP. If the wallet doesn't hold any ETH, the VP is 0.

This allows you to poll your community without referencing the number of ETH they hold, each address will have 1VP. If you want to use this approach for another token, have a look at the erc20-with-balance strategy.

You can also use this strategy to set a voting threshold by adding an optional parameter minBalance and defining the minimum required balance which will give the user the eligibility to vote and 1 Voting Power. The parameter value is set to 0 by default.

Using a low minimum balance, this strategy can be used as a proxy for "active Ethereum address", based on the assumption that active addresses will always have some ETH to pay the fees.

Strategy setup:

{
  "symbol": "ETH",
  "minBalance": 0.5
}

You can test it out in the Playground on Snapshot:

Other

Another very popular strategy that gives you control over who can cast the votes. All you need to do is to provide the addresses which should be eligible to vote, and each will have 1 Voting Power.

The wallet address can also be its corresponding ENS domain.

To assign arbitrary votes to a specific address, see whitelist weighted.

Note that if you add other Strategies to your space and users meet the criteria set by those Strategies, the whitelist approach will not work anymore. To be able to combine multiple Voting strategies for whitelisted users, use the Basic Validation strategy in a custom setup with the whitelist strategy selected, and a minimum score of 1 VP.

Strategy setup:

{
  "symbol": "POINT",
  "addresses": [
    "0xa478c2975ab1ea89e8196811f51a7b7ade33eb11",
    "0xeF8305E140ac520225DAf050e2f71d5fBcC543e7"
  ]
}

You can test it out in the Playground on Snapshot:

Validation strategies

Validation strategies are a way to define who is allowed to vote on a proposal or create a new one.

All spaces are now required to use Proposal Validation in order to minimise the risk of malicious proposals. You can read more about this requirement here.

You can also configure a Validation strategy for voting. The combination of Voting Strategies and Voting validation allows you to achieve high customization of your governance process. How? Let's go through a couple of possible scenarios:

  • You are using several Voting strategies for the Voting Power calculation, and at the same time, you want to require each user to have at least 10 VP to be able to cast a vote. You can then use Basic Validation with a minimum score of 10.

  • Only specific users should be able to vote, and their Voting Power should depend on their holdings. You can use whitelist strategy in the custom Basic Validation setup, and any combination of Voting Strategies for the calculation of the individual Voting power.

  • Your space is attacked by bots and you want only genuine humans to cast votes. You can use the Gitcoin Validation for Sybil resistance, and select a combination of Voting Strategies for VP calculation.

Let's have a look at the currently available strategies:

Basic Validation

The Basic Validation Strategy allows you to specify multiple Voting strategies to determine if a user is eligible to create a proposal.

Voting Strategy is a set of conditions used to calculate user's voting power. Strategies enable Snapshot to calculate the final result of voting on a given proposal.

When setting the Validation strategy up it’s important to keep in mind that it is meant to make it difficult for users outside of your community to post scam proposals.

Therefore make sure to use a high threshold, for example, $100 worth of your organization’s token. A good idea would be to check the holdings of previous proposal creators, both legitimate and scammers, to assess a reasonable value.

In case the threshold you’ve set is too high for some of your community members, don’t forget that you can always add the trusted addresses as Authors, thanks to which they will surpass the Proposal Validation stage.

Below you can see an example of the Basic Proposal Validation using Voting Strategies set for the space:

If you want to set up a more complex validation, you can use custom strategies as shown in the screenshot below:

Gitcoin Passport Validation

While Basic Validation focuses on the monetary assets, this validation allows you to set requirements protecting your space against Sybil attacks by checking the Gitcoin Passport stamps which serve as validation for the user’s identity and online reputation.

You can select individual or multiple stamps that matter for your space. You can also decide if they need to meet all of these criteria or only one. The more criteria you select, the more Sybil-resistant your space is.

Last updated