Documentation Index
Fetch the complete documentation index at: https://prophet.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
What Is a Prediction Market?
A prediction market is a trading venue where participants buy and sell contracts whose value depends on the outcome of a future event. Unlike traditional financial markets where you trade claims on company earnings or commodity supply, prediction markets trade claims on whether specific events happen or not. The fundamental insight is simple: when people risk real money on outcomes, prices reflect honest beliefs. You cannot inflate a price by stating an opinion. You can only move a price by backing that opinion with capital — and risking loss if you are wrong.YES and NO Shares as Financial Instruments
Prophet implements the simplest form of prediction market: binary YES/NO markets. Every market has exactly two tradable assets:- A YES share pays 0.00 if it resolves NO
- A NO share pays 0.00 if it resolves YES
Share Price = Probability
This equivalence is not metaphorical — it is a mathematical fact. If the YES share trades at $0.60:- A rational buyer pays 1.00 on YES or $0.00 on NO
- That implies the buyer believes the probability of YES is at least 60%
- If buyers collectively believed the probability were lower, they would not pay $0.60 — they would sell, pushing the price down
- If they believed the probability were higher, more buyers would enter, pushing the price up
A Concrete Example
Market: “Will Arsenal win the Premier League 2025/26 season?”| Share | Price | Implied Probability |
|---|---|---|
| YES | $0.60 | 60% chance Arsenal wins |
| NO | $0.40 | 40% chance Arsenal does not win |
Why Prediction Markets Beat Expert Forecasting
Decades of academic research show that prediction market prices consistently outperform:- Expert panels: Experts have individual cognitive biases, career incentives to be diplomatic, and limited information compared to the aggregate
- Polls and surveys: Respondents have no skin in the game — they can say anything without consequence
- Statistical models: Models are parameterized on historical data and cannot incorporate real-time soft information
Why Liquidity Matters
A prediction market with no liquidity is useless. Without liquidity:- Wide spreads: Buyers and sellers cannot transact near the fair price
- Price manipulation: Small trades move the price dramatically — a single participant can dominate
- Informed traders stay out: No one wants to trade in a thin market where their own entry moves the price against them
Why Resolution Accuracy Matters
A prediction market is only as good as its resolution mechanism. If participants do not trust that markets will resolve correctly, they will not participate — or they will demand wide risk premiums that distort prices. Resolution failure modes in existing systems:| Failure Mode | Example | Impact |
|---|---|---|
| Political bias | Human committee favors popular outcome | Prices reflect politics, not probability |
| Gaming | Large token holder votes self-interest | Governance attacks undermine integrity |
| Delay | Challenge process takes weeks | Capital tied up, participants lose confidence |
| Inconclusive | Ambiguous question, no clear answer | Market cancelled, no price signal produced |
- No human bias — the AI is given the question, the evidence, and a strict JSON response format
- No token governance — no one can buy influence over the oracle
- Fast resolution — inference completes in under 2 minutes once triggered
- Question validation at creation — ambiguous questions are rejected before a market opens
The Cold-Start Liquidity Problem
Every new prediction market faces a chicken-and-egg problem:No liquidity → no traders → no price signal → no interest → no liquidityTraditional solutions:
- Whitelist curated market creators who are responsible for seeding — but this creates centralization and limits the long-tail of interesting markets
- Incentivize LPs with token rewards — but this creates mercenary liquidity that leaves when incentives end
- Require a minimum deposit from the market creator — this prices out smaller participants and limits market creation
The Accountability Gap
Even when markets resolve correctly, existing protocols often produce no verifiable record of why. A human committee votes — but the deliberations are off-chain, private, and unauditable. A token vote passes — but the reasoning is forum posts that disappear. Prophet stores the oracle’s full reasoning chain permanently on 0G Storage before posting the verdict on-chain. The root hash in the contract links to the exact reasoning that produced the verdict. This is not just an audit log — it is a public, permanent record that any user can retrieve and independently verify.Next: How the AMM Works
Binary YES/NO AMM
Understand the complete-set accounting, buy/sell equations, price discovery mechanics, and slippage protection in Prophet’s AMM.