Docs
What's real, what's mocked, and what's left to build.
Mock vs. real
| Surface | Status |
|---|---|
| Markets on /launch and /board | Mocked — lib/mock.ts, not live Polymarket data |
| Live board coins | Mocked — static fixtures |
| Launch flow | Stubbed — simulates a delay, no coin is deployed |
| $POLYBET burn stats | Mocked — lib/mock.ts |
| Fee split (80/20) | Product spec, not yet wired to an on-chain program |
Left to build for a real launch
Fee-share routing
Wire the 80/20 split to a real on-chain program that watches creator fee claims on the paired coin and routes them automatically.
Polymarket buy rail
Integrate Polymarket's order/CLOB API to actually purchase the paired side and hold the position under the coin's escrow.
Resolution + burn-back
Subscribe to Polymarket market resolution, and on a win, route payout proceeds into a buy-and-burn of the paired coin. On a loss, mark the coin's board status.
Market eligibility feed
Replace the static market list with a live feed filtered to markets that are currently buyable and resolve ≥ 2 hours out.
Stack
Next.js (App Router) · TypeScript · Tailwind CSS. All content lives in lib/mock.ts; swap it for real data sources as the integrations above land.