Anti-whale
Minimize the power of large token holders and encourage your community to take part in the vote!
Last updated
Minimize the power of large token holders and encourage your community to take part in the vote!
Last updated
A cryptocurrency whale, more commonly known as a "crypto whale" or just a "whale," is a cryptocurrency community term that refers to individuals or entities that hold large amounts of cryptocurrency. Whales own enough cryptocurrency to influence currency markets. https://www.investopedia.com/terms/b/bitcoin-whale.asp
Whales can influence not only currency markets but also the governance process of web3 communities. With the large holdings, their sheer Voting Power can oftentimes swing a proposal for their advantage. This leads to outcomes that are not welcomed by the community, poses a threat to taking the Treasury over, and also to lowering community participation in the vote as its members don't see the point in voting knowing that one wallet can decide on its outcome.
Let's have a look at different setups that will allow your space to minimize the power of whales.
You can predefine the that all proposals in your space will use. In the case of the anti-whale approach, the best solution is the Quadratic Voting type.
Snapshot's Quadratic Voting (QV) type goes beyond the conventional approach of simply calculating the square root of each voter's voting power. It presents a more nuanced and democratic framework for decision-making.
One of the main features of our QV type is its emphasis on the number of individual voters rather than the size of their voting power. By doing so, it ensures that every voice counts, thereby enhancing collective decision-making and preventing power concentration.
Additionally, Snapshot's QV type provides voters with the flexibility to distribute their voting power across multiple choices. This feature allows for a more precise representation of a voter's diverse opinions, all without any additional cost.
Drawing key principles from the Quadratic Funding model, our QV type fosters greater participation and effectively balances influence. It represents a significant advancement over simpler voting mechanisms that rely on basic square root calculations of voting power.
You can set it up for all proposals in your Space by heading to the Voting tab in the Space settings and selecting the desired Voting System in the Type field:
Let's consider there are 3 voters and two choices, A and B:
Alice with 9 tokens
Bob with 4 tokens
Maria with 1 token
John with 1 token
Here's how they allocate their tokens:
Alice allocates all her 9 tokens to A
Bob allocates all his 4 tokens to B
Maria allocates her 1 token to B
John allocates his 1 token to B
This results in:
A having 9 tokens
B having 6 tokens
Now, let's calculate the individual square root contributions for each choice:
A: the square root of Alice's 9 tokens is √9 = 3.
B: the square root of Bob's 4 tokens is √4 = 2, the square root of Maria's 1 token is √1 = 1, and the square root of John's 1 token is √1 = 1.
Next, we add up the square root contributions for each choice and square the result:
A: we square the 3, so A gets 3^2 = 9.
B: we add 2, 1, and 1, giving us 4, and square it, so B gets 4^2 = 16.
The total amount of tokens is 9 + 16 = 25.
So the percentages for each choice are:
A: 9 / 25 = 36%
B: 16 / 25 = 64%
As a last step, we match these percentages with the total voting power of 14 tokens:
A: 36% of 15 = 5.4 tokens
B: 64% of 15 = 9.6 tokens
All in all you don't have to understand each step of the calculation, yet it should give you an idea how John with 100 SMS tokens was not able to push through his choice despite having the majority of Voting Power in the group as Quadratic Funding model emphasizes the number of individual contributors rather than the amount contributed.
This Voting System may encourage the whales to create multiple wallets and split their holdings among them. Therefore it's important to also implement a mechanism providing Sybil Resistance. Read more here!
You can think of it as creating multiple buckets which will determine the Voting Power of an individual address. To put it in the simplest way, imagine that:
users who hold less than 5 tokens will have 0 Voting Power
users who hold from 5 to 10 tokens will have 1 Voting Power
users who hold from 10 to 20 tokens will have 2 Voting Power
users who hold more than 20 tokens will have 5 Voting Power
As you can see, you are able to set various thresholds which will fix user's Voting Power at a specific level. This way whales who may have large holdings, for example 1000 tokens, will not get more than 5 Voting Power.
This way the voting can be more reflective of the public opinion.
Strategy setup:
You can test it out in the Playground on Snapshot:
This strategy executes a chosen Voting Strategy and applies algorithms to its result to reduce the impact of big wallets on the vote.
This strategy requires understanding some of the calculations shown below. If you have issues with setting it up contact our support on Help Center
In practice, the strategy sets a soft restriction on the voting threshold by giving limited incentive to the voter below threshold by moderately increasing the voting power of voters and reducing the impact of whales as token amount increases, keeping the gap in voting power within a relatively moderate range.
As an example, assuming our threshold is 5:
if user's Voting Power is below or equal to 5, their final Voting Power will be moderately increased
if user's Voting Power is above 5, their final Voting Power will be reduced (the higher the Voting Power, the more increased it will be)
The following algorithm is applied to the result of the configured Voting Strategy:
antiWhale.threshold
- point at which the antiWhale
takes effect.
Results not greater than the threshold will be treated with a static multiplier. This is to reduce infinite incentive for multiple wallet exploits.
Default: 1625
Lower limit: > 0 - set to default if ≤ 0
thresholdMultiplier
- the multiplier at which all results below antiWhale.threshold
are multiplied.
antiWhale.inflectionPoint
- point at which the output matches the result.
-> Results less than this will increase output.
-> Results greater than the inflection point will decrease output.
Default: 6500
Lower limit: > 0 - set to default if ≤ 0
Must be bigger or equal to antiWhale.threshold
. Otherwise will be same as antiWhale.threshold
antiWhale.exponent
- the exponent is responsible for the antiWhale effect.
-> Must be ≤ 1, or else it will have a pro-whale effect.
-> Must be >0, or else it will cause total voting power to trend to 0. Look at the example below to understand its effect.
Example
random value = 5
exponent A = 0.5
exponent B = 1.5
Calculation A: 5 ^ 0.5 ~= 2.236
Calculation B: 5 ^ 1.5 ~= 11.18 As you can see exponent lower than 1 will reduce the original random value while exponent bigger than 1 will increase it.
Default: 0.5.
Upper limit: 1.
Lower limit: > 0 - set to default if ≤ 0.
log
: Boolean flag to enable or disable logging to the console (used for debugging purposes during development)
Strategy setup: