Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GOR — Evaluation DAO #407

Open
moul opened this issue Dec 1, 2022 · 6 comments
Open

GOR — Evaluation DAO #407

moul opened this issue Dec 1, 2022 · 6 comments
Labels
⚔️🤝 Game of Realms 🤝⚔️ 🗺️good first issue🗺️ Ideal for newcomer contributors help wanted Want to contribute? We recommend these issues. tokenomics

Comments

@moul
Copy link
Member

moul commented Dec 1, 2022

Note: this issue will be updated to keep track of changes in rules.

Context

Related slides:

Part of ContribursDAO/WorxDAO (#872)

Problem Description

In order to ensure a fair and transparent distribution of rewards in the Game of Realms competition, an Evaluation DAO is needed. The Evaluation DAO will evaluate contributions during phase two of Game of Realms and attribute rewards accordingly. Using a DAO will allow us to scale the review process and let members vote on the best contributions for the platform.

Implementation of the Evaluation DAO is the only step the New Tendermint core team must approve because of its crucial role in the competition and the platform's future. Once the DAO is in place, DAO members will collectively review some previous and all further contributions.

Important features:

  • people (anyone?) can submit a contribution for review
  • the DAO can review contributions and decide
  • existing DAO members can invite new members to join
  • least authority security design

What we look for in the submissions / suggestion on what could work for addressing the challenge

What wins points

  • notable contributions
  • code modularity
  • collaborative mindset
@grepsuzette
Copy link
Contributor

grepsuzette commented Mar 3, 2023

What's not clear

  • least authority security design

I would rephrase it to "designed around the principle of least privilege".

The principle of least privilege (PoLP). , also known as the principle of minimal privilege or the principle of least authority, is an information security concept. It states that any user, device, workload, or process should only have the bare minimum privileges it needs to perform its intended function.

Seeing "authority security" next to each other is a bit ambiguous for the non-native english speaker that I am

@nir1218
Copy link
Contributor

nir1218 commented Mar 19, 2023

Here are my initial thoughts, @moul let me know if it is worth pursuing...

One way to measure and numerically quantify contributions is by defining a contribution metric. The metric will map a contribution type to a discreet number of tokens.
This will simplify the allocation of contributors into voting power tiers as proposed in the Governance DAO, #503

The first group of contributions could be an approved and merged PR of an issue reported.
X - number of Gnosh for the smallest contribution defined, such as a chore maybe,
any other issue type corresponding Gnosh value could be a function of X.

Issue Type Gnosh
Chore X
Defect X + 10
Feature X + 50
Documentation  
TBD  

The second group of contributions could be approved proposals.
Proposal Type

Proposal Type Gnosh
TextProposal X
ConstitutionAmendementProposal 2X
ParamChangeProposal X
GovParamChangeProposal 2X
ValidatorUpdateProposal 2X

Alternatively, Gnosh could be rewarded based on whether the approved proposal required simple or super majority.

Majority Gnosh
Simple X
Supper 2X

The third group of contributions that could be rewarded is voting, so a vote, Yes or No, will get an equal number of Gnosh.

@moul
Copy link
Member Author

moul commented Apr 11, 2023

To make the challenge more manageable, we've isolated a simpler part that's maybe more appropriate to get started. Please check out #728. However, working on the complete task is still worthwhile.

@moul
Copy link
Member Author

moul commented May 1, 2023

Kick-off PR by @nir1218: #792

@MichaelFrazzy
Copy link

Issue Type Gnosh
Chore X
Defect X + 10
Feature X + 50
Documentation  
TBD  
The second group of contributions could be approved proposals. Proposal Type

Proposal Type Gnosh
TextProposal X
ConstitutionAmendementProposal 2X
ParamChangeProposal X
GovParamChangeProposal 2X
ValidatorUpdateProposal 2X
Alternatively, Gnosh could be rewarded based on whether the approved proposal required simple or super majority.

Majority Gnosh
Simple X
Supper 2X
The third group of contributions that could be rewarded is voting, so a vote, Yes or No, will get an equal number of Gnosh.

I think this is a great start, I plan to start expanding on this a bit further if you'd like to bounce some stuff around! I had an extremely similar idea after first hearing the concept.

I think you're spot on. It seems to make more sense for a Contributor to select the contribution type they believe theirs falls under based on a predetermined reward scale. Opposed to each contribution reward being judged individually and uniquely by Evaluation DAO. This way Evaluation DAO just has to choose between yes (we agree with your selected contribution type and corresponding reward) or no.

No could then be further split down into rejecting the contribution outright (reject or no), rewarding even more than asked (upgrade), or still rewarding but with a GNOSH reward corresponding lower on the scale (downgrade). Large feature commits that are already at the top of the reward scale wouldn't have a valid upgrade option, and the lowest tier ones like a minor change or even say, a very short published article wouldn't have downgrade available to them.

This would need to be run by all the devs to make sure nothing is being missed and to gauge difficulty... but I currently see that last part being implemented one of two ways. There'd be separate scales similar to how you have them above, but with even more categories. Small, medium, or critical bug fixes. Short, medium, or large documentation (maybe based on text count). Different feature or commit sizes (though here I'm not sure if basing this on lines or code would work since that doesn't always correlate to efficiency or difficulty/complexity of the code being contributed), etc.

Upgrade and downgrade could simply move the contribution type up or down one level accordingly, but if a contributor severely misjudges they would need to get rejected all together and restart this process to reselect their type. I'm assuming after they work out their misclassification in GitHub comments or wherever else so they can feel sure the 2nd time.

Otherwise, a new proposal could get started when a misclassification takes place, allowing the DAO to reassign that contribution to any contribution type/reward tier that they feel best matches it. This second method would add some extra workload to the DAO participants though (extra research and voting time), let alone to devs implementing it. And an extra wait period for the reclassification proposal itself. Depending on the reclassification proposal time, it'd potentially take longer than rejecting and resubmitting a contribution with a new classification if it's more than one level away though... not ideal if so. In that case, might make more sense to stick to the first option that is strictly yes, no, upgrade, and downgrade?

Going to keep going through this, just thinking out loud at the moment. Would love your thoughts on all of this as well!

@moul moul added this to the 🚀 main.gno.land milestone Sep 6, 2023
@MichaelFrazzy
Copy link

@moul we should change the Evaluation DAO description here. Now that Evaluation DAO is strictly writing reviews that are added to user profiles. Also after talking to @jaekwon it seems like Evaluation DAO will retain the power to add new contributors to every tier besides the top tier, even though each tier will largely be governed by the tier above it now. And I am guessing that means Tier 1 will be self governing since there is no tier above it?

@VT-Cosmos VT-Cosmos assigned VT-Cosmos and unassigned VT-Cosmos Nov 30, 2023
@Kouteki Kouteki added help wanted Want to contribute? We recommend these issues. and removed help wanted labels Oct 2, 2024
@Kouteki Kouteki removed this from the 🚀 Mainnet launch milestone Oct 16, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
⚔️🤝 Game of Realms 🤝⚔️ 🗺️good first issue🗺️ Ideal for newcomer contributors help wanted Want to contribute? We recommend these issues. tokenomics
Projects
Status: Todo
Status: 🚀 Needed for Launch
Development

No branches or pull requests

6 participants