Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Collateral-Based Scoring System
Problem
Miners can spam PRs at high-weighted repos with 'low' risk - the only penalty is a ding to their success ratio.
This incentivizes "homerun shots" or things similar to that nature which ultimately leads to lengthy review times for maintainers.
Solution
Open PRs now incur collateral - a percentage (20%) of their potential score is deducted from the miner's total until the PR resolves (is either closed or merged).
Analogous Impact
As Sam0x17 said:
This proposed implementation helps address the lead in the water. Previously, miners could spray the hose freely and only face consequences after - a slight ding to their success ratio. Now, by requiring collateral on open PRs, miners must drink their own water first.
If they're confident it's clean water (quality contribution), they'll gladly pay the temporary cost knowing they'll be reimbursed when it merges. If they know it's lead-filled slop, they're less likely to poison their own score just to spray it at maintainers.
The collateral system is a step toward making miners have skin in the game before the merge decision, not just after.
How It Works
If the PR is closed, then the collateral point deduction goes away as the PR is no longer open. However, a closed PR will impact the miners success ratio credibility as it takes a ding due to an unsuccessful attempt.
Key Constants
COLLATERAL_EFFECTIVE_DATE- Only PRs created after this date are subject to collateral. Date is 2025-12-19, 12PM EST.POTENTIAL_SCORE_COLLATERAL_PERCENT = 0.20- 20% of potential score as collateralCOLLATERAL_REINFLATION_MULTIPLIER = 1.20- Boost for merged PRs post-effective-dateScoring Flow Changes
Collateral Multipliers Applied to Open PR Scores
Applied:
repo_weight,gittensor_tag,open_pr_spamNot applied:
time_decay,merge_success,uniqueness(merge/cross-miner dependent)