Skip to content

Introduction

POP turns any real-world question into a live, onchain prediction market. This guide explains how markets are priced, how to trade and provide liquidity, and how outcomes are resolved. It is written for both traders and developers integrating the protocol.

A POP market is a binary market: every question resolves to either YES or NO. Each market is an independent smart contract that mints two outcome tokens, holds an automated market maker (AMM) for them, and pays out in USDCUSDC once the result is known.

The core idea

When a market is created, the initiator seeds it with USDC. That collateral mints an equal number of YES and NO tokens, which are deposited into a constant-product pool. Traders buy the side they believe in; the AMM adjusts the price along the curve as one side is bought up.

1 USDCcollateralmint1 YESredeems for 1 USDC if YES wins1 NOredeems for 1 USDC if NO wins
Depositing collateral mints a balanced pair. One YES and one NO is always worth exactly 1 USDC.

Because YES and NO are always backed 1:1 by collateral, holding one YES and one NO is always worth exactly 1 USDC. This invariant is what lets the AMM quote a fair, self-balancing price and what guarantees winners can be paid at settlement.

No counterparty to match

Unlike an order book, there is no counterparty to find. You always trade against a shared liquidity pool, so a market can be created and traded instantly — there is no waiting for a maker on the other side, and no half-filled orders.

Order bookYouMaker?wait for a matchingorder on the other sidePOP AMMYouLiquiditypooltrade instantly againstshared liquidity
An order book needs both sides to agree. An AMM is always ready to quote.

How POP compares

POP markets are CPMM AMM markets — distinct from a traditional order book and from the earlier parimutuel style of prediction market.

POP AMMOrder bookParimutuel pool
Liquidity at launch✅ Instant, from the pool❌ Needs makers⚠️ Grows as bets arrive
Live priceContinuous AMM quoteBest bid/askOnly the final split
Exit before resolution✅ Sell or redeem any timeDepends on book depth❌ Usually locked in
Who you trade againstA shared poolA counterpartyThe other bettors
Earn while providing capital✅ LP swap feesMaker rebates

The numbers behind the curve

Want the exact math? See AMM & pricing for the constant-product formula and a step-by-step buy/sell walkthrough, and Providing liquidity & fees for how LP shares and fees accrue.

Where to next

Onchain prediction markets, priced by an AMM and settled in USDC.