feat(contract): support multi-outcome (categorical) markets (#1329) - #1489
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
@AJ0070 Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
Collaborator
|
@AJ0070 pls fix CI |
Contributor
Author
|
@Olowodarey Can you please trigger the CI tests again? |
Contributor
Author
|
@Olowodarey Are there any other issues which I can take up? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Extends the market model to support multi-outcome (categorical) prediction markets with 2 to N mutually exclusive named outcomes bounded by a configurable maximum cap.
Key Changes
DEFAULT_MAX_OUTCOMES(10) constant andmax_outcomes: u32to globalConfig. Implementedset_max_outcomesadmin setter on the contract.market::create_marketthatparams.outcomes.len()must be between2andcfg.max_outcomes. Creation reverts withInsightArenaError::InvalidInputif outcomes exceed the ceiling or fall below 2.accumulate_outcome_poolsto seed all outcome options declared on the market with initial zero stakes, ensuring complete per-outcome visibility inget_outcome_distributionandget_market_stats.outcome_optionsand pro-rata distribution of the total market pool to winning stakers while strictly conserving total funds.market_tests.rs.Acceptance Criteria Checklist
Related Files
Resolves #1329