Most common | snapshot (2024)

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

erc20-balance-of

#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:

Most common | snapshot (1)

You can test it out in the Playground on Snapshot:

Snapshot

eth-balance

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:

https://snapshot.org/#/playground/eth-balance?query=eyJwYXJhbXMiOnsic3ltYm9sIjoiQkFMIiwiYWRkcmVzcyI6IjB4YmExMDAwMDA2MjVhMzc1NDQyMzk3OGE2MGM5MzE3YzU4YTQyNGUzRCIsImRlY2ltYWxzIjoxOH0sIm5ldHdvcmsiOiIxIiwic25hcHNob3QiOiIiLCJhZGRyZXNzZXMiOlsiMHhhNDc4YzI5NzVhYjFlYTg5ZTgxOTY4MTFmNTFhN2I3YWRlMzNlYjExIiwiMHhlRjgzMDVFMTQwYWM1MjAyMjVEQWYwNTBlMmY3MWQ1ZkJjQzU0M2U3IiwiMHgxRTFBNTFFMjVmMjgxNjMzNWNBNDM2RDY1ZTlBZjc2OTRCRTIzMmFkIiwiMHgxRjcxN0NlOGZmMDc1OTdlZTdjNDA4YjU2MjNkRjQwQWFBZjE3ODdDIiwiMHgxYzdhOTI3NUYyQkQ1YTI2MEE5YzMxMDY5Rjc3ZDUzNDczYjhhZTJlIiwiMHgxZDVFNjVhMDg3ZUJjM2QwM2EyOTQ0MTJFNDZDRTVENjg4Mjk2OWY0IiwiMHgxZjI1NDMzNkU1YzQ2NjM5QTg1MWI5Q2ZDMTY1Njk3MTUwYTZjMzI3IiwiMHgyZWMzRjgwQmVEQTYzRWRlOTZCQTIwMzc1MDMyQ0REM2FBZmIzMDMwIiwiMHg0QWNCY0E2QkUyZjhEMjU0MGJCRjRDQTc3RTQ1ZEEwQTRhMDk1RmEyIiwiMHg0RjNEMzQ4YTZEMDk4MzdBZTc5NjFCMUUwY0VlMmNjMTE4Y2VjNzc3IiwiMHg2RDdmMjNBNTA5RTIxMkJhNzc3M0VDMWIyNTA1ZDFBMTM0ZjU0ZmJlIiwiMHgwN2ExZjZmYzg5Mji*zYzVlYkQ0ZTRkZGFFODlBYzk3NjI5ODU2QTBmIiwiMHg4ZDVGMDUyNzBkYTQ3MGUwMTViNjdBYjUwNDJCRGJFMkQyRkVGQjQ4IiwiMHg4ZDA3RDIyNWE3NjliN0FmM0E5MjM0ODFFMUZkRjQ5MTgwZTZBMjY1IiwiMHg4ZjYwNTAxZEU1YjliMDFGOUVBZjEyMTRkYkUxOTI0YUE5N0Y3ZmQwIiwiMHg5QjhlOGREOTE1MTI2MGMyMUNCNkQ3Y2M1OTA2N2NkOERGMzA2RDU4IiwiMHgxN2VhOTJENkZmYkFBMWM3RjZCMTE3YzFFOUQwYzg4QUJkYzhiODRDIiwiMHgzOEMwMDM5MjQ3QTMxRjM5MzliYUU2NWU5NTM2MTIxMjVjQjg4MjY4Il19snapshot.org

erc721

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:

Most common | snapshot (3)

You can test it out in the Playground on Snapshot:

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:

https://snapshot.org/#/playground/eth-with-balance?query=eyJwYXJhbXMiOnsic3ltYm9sIjoiQkFMIiwiYWRkcmVzcyI6IjB4YmExMDAwMDA2MjVhMzc1NDQyMzk3OGE2MGM5MzE3YzU4YTQyNGUzRCIsImRlY2ltYWxzIjoxOH0sIm5ldHdvcmsiOiIxIiwic25hcHNob3QiOiIiLCJhZGRyZXNzZXMiOlsiMHhhNDc4YzI5NzVhYjFlYTg5ZTgxOTY4MTFmNTFhN2I3YWRlMzNlYjExIiwiMHhlRjgzMDVFMTQwYWM1MjAyMjVEQWYwNTBlMmY3MWQ1ZkJjQzU0M2U3IiwiMHgxRTFBNTFFMjVmMjgxNjMzNWNBNDM2RDY1ZTlBZjc2OTRCRTIzMmFkIiwiMHgxRjcxN0NlOGZmMDc1OTdlZTdjNDA4YjU2MjNkRjQwQWFBZjE3ODdDIiwiMHgxYzdhOTI3NUYyQkQ1YTI2MEE5YzMxMDY5Rjc3ZDUzNDczYjhhZTJlIiwiMHgxZDVFNjVhMDg3ZUJjM2QwM2EyOTQ0MTJFNDZDRTVENjg4Mjk2OWY0IiwiMHgxZjI1NDMzNkU1YzQ2NjM5QTg1MWI5Q2ZDMTY1Njk3MTUwYTZjMzI3IiwiMHgyZWMzRjgwQmVEQTYzRWRlOTZCQTIwMzc1MDMyQ0REM2FBZmIzMDMwIiwiMHg0QWNCY0E2QkUyZjhEMjU0MGJCRjRDQTc3RTQ1ZEEwQTRhMDk1RmEyIiwiMHg0RjNEMzQ4YTZEMDk4MzdBZTc5NjFCMUUwY0VlMmNjMTE4Y2VjNzc3IiwiMHg2RDdmMjNBNTA5RTIxMkJhNzc3M0VDMWIyNTA1ZDFBMTM0ZjU0ZmJlIiwiMHgwN2ExZjZmYzg5Mji*zYzVlYkQ0ZTRkZGFFODlBYzk3NjI5ODU2QTBmIiwiMHg4ZDVGMDUyNzBkYTQ3MGUwMTViNjdBYjUwNDJCRGJFMkQyRkVGQjQ4IiwiMHg4ZDA3RDIyNWE3NjliN0FmM0E5MjM0ODFFMUZkRjQ5MTgwZTZBMjY1IiwiMHg4ZjYwNTAxZEU1YjliMDFGOUVBZjEyMTRkYkUxOTI0YUE5N0Y3ZmQwIiwiMHg5QjhlOGREOTE1MTI2MGMyMUNCNkQ3Y2M1OTA2N2NkOERGMzA2RDU4IiwiMHgxN2VhOTJENkZmYkFBMWM3RjZCMTE3YzFFOUQwYzg4QUJkYzhiODRDIiwiMHgzOEMwMDM5MjQ3QTMxRjM5MzliYUU2NWU5NTM2MTIxMjVjQjg4MjY4Il19snapshot.org

Other

whitelist

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:

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:

Most common | snapshot (6)

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

Most common | snapshot (7)

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.

Most common | snapshot (8)

Most common | snapshot (2024)

References

Top Articles
2048 Cupcakes Game - Chrome Web Store
Engr 2300 Osu
No Hard Feelings (2023) Tickets & Showtimes
Readyset Ochsner.org
Get train & bus departures - Android
Teenbeautyfitness
Craigslist Cars And Trucks Buffalo Ny
Western Razor David Angelo Net Worth
Ecers-3 Cheat Sheet Free
Matthew Rotuno Johnson
Craigslist Free Grand Rapids
Aita Autism
Rapv Springfield Ma
Robert Malone é o inventor da vacina mRNA e está certo sobre vacinação de crianças #boato
What is Cyber Big Game Hunting? - CrowdStrike
Bowie Tx Craigslist
Sony E 18-200mm F3.5-6.3 OSS LE Review
Cvs Appointment For Booster Shot
Becu Turbotax Discount Code
Craigslist Free Stuff Santa Cruz
Mals Crazy Crab
Roll Out Gutter Extensions Lowe's
Nick Pulos Height, Age, Net Worth, Girlfriend, Stunt Actor
U Arizona Phonebook
Welcome to GradeBook
Evil Dead Rise - Everything You Need To Know
Thick Ebony Trans
Hdmovie2 Sbs
How To Tighten Lug Nuts Properly (Torque Specs) | TireGrades
Mta Bus Forums
800-695-2780
Wolfwalkers 123Movies
This Is How We Roll (Remix) - Florida Georgia Line, Jason Derulo, Luke Bryan - NhacCuaTui
Santa Barbara Craigs List
Duke University Transcript Request
The Creator Showtimes Near Baxter Avenue Theatres
Rays Salary Cap
Save on Games, Flamingo, Toys Games & Novelties
Dreammarriage.com Login
Unlock The Secrets Of "Skip The Game" Greensboro North Carolina
Covalen hiring Ai Annotator - Dutch , Finnish, Japanese , Polish , Swedish in Dublin, County Dublin, Ireland | LinkedIn
Santa Cruz California Craigslist
Metro By T Mobile Sign In
Academic important dates - University of Victoria
O'reilly's El Dorado Kansas
Giovanna Ewbank Nua
Mcalister's Deli Warrington Reviews
Myrtle Beach Craigs List
Mother Cabrini, the First American Saint of the Catholic Church
Rise Meadville Reviews
60 Days From August 16
Bloons Tower Defense 1 Unblocked
Latest Posts
Article information

Author: Otha Schamberger

Last Updated:

Views: 5963

Rating: 4.4 / 5 (75 voted)

Reviews: 82% of readers found this page helpful

Author information

Name: Otha Schamberger

Birthday: 1999-08-15

Address: Suite 490 606 Hammes Ferry, Carterhaven, IL 62290

Phone: +8557035444877

Job: Forward IT Agent

Hobby: Fishing, Flying, Jewelry making, Digital arts, Sand art, Parkour, tabletop games

Introduction: My name is Otha Schamberger, I am a vast, good, healthy, cheerful, energetic, gorgeous, magnificent person who loves writing and wants to share my knowledge and understanding with you.