solana-binary-markets
Installation
SKILL.md
Solana Binary Prediction Markets
Overview
A binary market is a market with exactly two outcomes — YES or NO — that resolves to one of them at a known future time. Each side is represented as a token (YES token / NO token) that pays out $1 at resolution if the side wins, $0 if it loses. While a market is live, the YES token trades between $0 and $1, and its price is the market's implied probability of YES:
- YES at $0.62 → market thinks YES is 62% likely
- NO at $0.38 → market thinks NO is 38% likely
- YES + NO always sum to ~$1 (minus spread/fees)
Onchain binary markets are useful because they aggregate forecasts into a single, tradeable, oracle-friendly probability that any other smart contract can read. Polymarket popularized them on EVM; in 2025–2026 the action moved to Solana for three reasons (per Helius CEO @mert listing "onchain binary markets, especially for tail assets" as a top-5 Solana priority):
- Cheap, fast settlement — sub-cent fees and ~400ms finality make low-stakes long-tail markets economically viable, which is impossible on Ethereum L1.
- Composability — outcome tokens are SPL tokens, so any AMM, lending market, or vault can use them.
- Capital efficiency — Solana's perp infra (Drift) lets you express a binary view with leverage and cross-collateral, not just spot YES/NO.