Skip to content

Commit

Permalink
Added reputation system explainer
Browse files Browse the repository at this point in the history
  • Loading branch information
joeisdev committed Aug 22, 2024
1 parent 980c717 commit fc643c6
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
1 change: 1 addition & 0 deletions pages/_meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"type": "separator",
"title": "How it Works"
},
"reputation_system": "Reputation system",
"onchain_contract": "On-chain contract",
"bot_commands": "Bot commands"
}
43 changes: 43 additions & 0 deletions pages/reputation_system.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
import { Callout } from "nextra/components";

# Reputation System

Githoney uses a reputation system to recognize and reward contributions from both maintainers and contributors. Your reputation score helps build trust and showcase your track record on the platform.


## How It Works

- Three Roles, Three Scores: Users have separate reputation scores for their roles as contributors, maintainers and sponsors.
- Earning Points: You earn points for completing bounties, creating bounties that get fulfilled, and sponsoring bounties.
- Losing Points: You might lose points for uncompleted claimed bounties, missed deadlines, or other actions that negatively impact the community.

## Reputation Changes

Here's a breakdown of how reputation points are calculated for different actions:

- On Merge (Bounty Completed)
- Maintainer (Bounty Creator):
- +5 points for creating the bounty
- +5 points for successful completion
- +1 point for every 100 ADA deposited in the bounty
- Contributor:
- +10 points for completing the bounty
- +1 point for their current streak level (0 to 3)
- +1 point for every 100 ADA in the bounty
- Sponsor:
- +1 point for the bounty being completed
- +1 point for every 100 ADA they sponsored
- On Close (A Claimed Bounty Closed without Merge)
- Maintainer: -10 points
- On Deadline (A Claimed Bounty Expires)
- Contributor:
- -5 points for not completing the bounty
- -1 point for every 200 ADA in the bounty



<Callout type="info">

This is the initial version of the reputation system, and it will evolve based on community feedback and usage patterns.

</Callout>

0 comments on commit fc643c6

Please sign in to comment.