issues : 45
Great issue: Implement Continuous Reputation-Based Deposit Tiers
Description
The CreatorReputation system is currently a binary switch that only grants benefits once a "Pro" threshold is reached. This provides zero economic incentive for "Basic" creators to improve their behavior incrementally, leading to a stagnant contributor base.
Requirements and context
- Implement a linear or multi-tiered deposit discount model.
- Grant incremental fee reductions or lower deposits for every 100 reputation points earned.
Suggested execution
- Fork the repo and create a branch:
git checkout -b feat/issue-45-reputation-incentives
- Refactor the deposit calculation logic.
Implementation changes
- Modify
markets.rs (around line 55) to use the exact reputation score for fee/deposit scaling.
Test and commit
- Verify that a creator with 500 reputation points pays less than one with 100 points.
Example commit message
feat: implement linear reputation-based discounts for market creators
Guidelines
- Strong economic incentives for positive platform contribution.
- Timeframe: 48 hours.
issues : 45
Great issue: Implement Continuous Reputation-Based Deposit Tiers
Description
The
CreatorReputationsystem is currently a binary switch that only grants benefits once a "Pro" threshold is reached. This provides zero economic incentive for "Basic" creators to improve their behavior incrementally, leading to a stagnant contributor base.Requirements and context
Suggested execution
git checkout -b feat/issue-45-reputation-incentivesImplementation changes
markets.rs(around line 55) to use the exact reputation score for fee/deposit scaling.Test and commit
Example commit message
feat: implement linear reputation-based discounts for market creators
Guidelines