-
Notifications
You must be signed in to change notification settings - Fork 27
Markets without invalid #1532
Description
There's an interest in removing invalid as an outcome. When a market would resolve as invalid, it would instead pay out equally to all outcomes.
This involves some core changes because right now there is no inherent notion of invalid: it's just outcomes, one of which wins. There are also some mixins that need to be updated, as well as the Sports market factories.
The Grouped market factory needs to be updated as well but that's in purgatory (not sure if we'll release it) so it can be excluded from this ticket's scope. The Crypto market factory doesn't use invalid so it needn't be updated.
This requires changes in a few places:
AbstractMarketFactoryV3.sol- The
claimWinningsmethod needs to be rewritten. Probably just tack on an invalid-wins check at the start then follow an alternate code path that iterates over all outcomes to pay them out equally. - The Market struct needs to be changed to indicate that a market is resolved as invalid. Right now, having winner==0 means the market is not resolved. Without invalid as a separate outcome, there must be a way to indicate that a market is resolved without referring to an actual outcome token. This could be a flag or something like
0xF..For0x0..1.This impacts some methods:isMarketResolvedendMarket
- The
- Mixins: remove everything related to invalid or No Contest:
Sport.solHasHeadToHeadMarketHasSpreadMarketHasOverUnderMarketResolvesByFiat(contract name and file name differ by a plural)ResolvesByScore(same)TokenNamesFromTeams
- MarketFactories: remove everything related to invalid or No Contest:
NFLMarketFactoryV3NBAMarketFactoryV3MMAMarketFactoryV3MLBMarketFactoryV3
There are other market factories like NCAAFB but they aren't being used so I've excluded them.
There are two broad approaches to take to changing the base code:
- Copy-paste the AbstractMarketFactory and use the new one for the base of invalidless markets.
- Split out the relevant code from the AbstractMarketFactory and make them into mixins.
Copy-paste is easier but creates more technical debt.
In either case, the UI will have issues if the contract names aren't changed. The naming scheme is a little hacky but a couple of rules should be sufficient:
- Market factory names are composed of three parts. Consider
MMAMarketFactoryV3:MMAis the kind of markets it creates.MarketFactoryindicates that this contract is a market factory.V3is the API version. This comes from the base classAbstractMarketFactoryV3. The API version is relevant to the UI and many scripts.
- If market factories can have multiple base classes WITHOUT affecting the API then it makes sense to add another "channel" to the naming scheme. Perhaps something like
MMAMarketFactoryEqV3, whereEqindicates that invalid markets will pay out Equally to all outcomes.
Subtasks:
- Contracts
- Deploy
- Tests
- Tasks. Can probably delete anything that isn't related to the canned markets since most tasks are now deprecated in favor of polygonscan and tenderly.
- UI