已通过 Certik 审计 — 查看 Skynet 报告 Audited by Certik — view the Skynet report 主站Main Site
文档中心Documentation

PrometheX 文档PrometheX Docs

全球首个白标预测市场引擎。在你的域名下、以你的品牌部署预测市场 — 即时 APMM 流动性,免信任的链上结算。

The first white-label prediction market engine. Deploy prediction markets on your domain, under your brand — instant APMM liquidity, trustless on-chain settlement.

  • 即时 APMM 流动性Instant APMM liquidity
  • 免信任的链上结算Trustless on-chain settlement
  • 你的品牌与域名Your brand & domain
01

合作伙伴快速上手Quick start for partners

只需一行代码,即可嵌入实时预测卡片、价格图表和交易面板 — 也可以从平台基础知识开始了解。

Embed live market cards, price charts and trading panels with one line of code — or start with the platform fundamentals.

  • 即时 APMM 流动性Instant APMM liquidity市场创建即可交易,无需自带做市商Markets are tradable on creation — no need to bring your own market makers
  • 非托管结算Non-custodial settlement通过经审计的链上合约结算,资金不经过我们Settled by audited on-chain contracts — funds never touch us
  • 你的品牌与用户Your brand, your users你的品牌、你的域名、你的用户数据Your brand, your domain, your user data
阅读完整接入指南Read the full integration guide
import { MarketCard, BetPanel } from '@promethex/widget-react'

<MarketCard marketId="0x4f2a…c9" theme="dark" />
<BetPanel marketId="0x4f2a…c9" onTradeComplete={handleTrade} />
渲染效果Rendered result
PROMETHEX24h 量24h vol $1.2M
BTC 在 2026 年底前突破 $150K?BTC above $150K by end of 2026?
62¢ Yes38¢ No
买"是"Buy Yes买"否"Buy No
02

浏览文档Browse the docs

按角色进入:商务看套餐与分成,工程看接入与合约,运营看引擎与风控。

Pick your lane: business reads plans & revenue share, engineering reads integration & contracts, operations reads the engine & risk.

开发者指南Developer guide/快速开始Quick start

快速开始Quick start

从零到第一笔链上交易,大约 10 分钟。本指南以 React 接入为例;Web Component 与 iframe 的参数一一对应。

Zero to your first on-chain trade in about 10 minutes. This guide uses the React SDK; Web Component and iframe parameters map one-to-one.

前置条件:Prerequisite: 你需要一个合作伙伴密钥(pk_live_…)。通过「商务与合作 → 服务套餐」获取,审核通常在 1 个工作日内完成。you need a partner key (pk_live_…). Request one via “Business → Service Tiers” — review usually takes one business day.

01

安装 SDKInstall the SDK

SDK 体积约 14 KB(gzip),不携带钱包依赖 — 钱包连接由你现有的 provider 注入。

The SDK is ~14 KB gzipped and carries no wallet dependency — wallet connections come from your existing provider.

npm install @promethex/widget-react
02

挂载 Provider 并嵌入组件Mount the provider & embed a component

PrometheXProvider 包裹应用并传入密钥,之后任意位置都可以渲染市场组件。

Wrap your app in PrometheXProvider with your key — market components render anywhere below it.

import { PrometheXProvider, MarketCard } from '@promethex/widget-react'

export default function App() {
  return (
    <PrometheXProvider partnerKey="pk_live_…" theme="dark">
      <MarketCard marketId="0x4f2a…c9" />
    </PrometheXProvider>
  )
}
03

处理交易事件Handle trade events

交易在链上确认后,onTradeComplete 会收到回执 — 用它驱动你自己的积分、通知或风控逻辑。

Once a trade confirms on-chain, onTradeComplete receives the receipt — feed it into your own points, notifications or risk logic.

<BetPanel
  marketId="0x4f2a…c9"
  onTradeComplete={(trade) => {
    analytics.track('trade', { side: trade.side, amount: trade.amount })
  }}
/>
04

上线检查Go-live checklist

上线前确认三件事:密钥已切换为 pk_live_、域名已加入合作伙伴白名单、主题与你的站点一致(见「主题与定制」)。

Before launch, confirm three things: key switched to pk_live_, your domain is on the partner allow-list, and the theme matches your site (see “Theming”).

就这些。That’s it. 组件会自动处理钱包连接、滑点保护和移动端布局。完整参数见组件 API。Components handle wallet connection, slippage protection and mobile layout automatically. See the Component API for every prop.

开发者指南Developer guide/组件 APIComponent API

组件 APIComponent API

两个核心组件覆盖大多数集成:MarketCard 负责展示与跳转,BetPanel 负责下单。所有属性在三种嵌入方式中同名可用。

Two core components cover most integrations: MarketCard for display, BetPanel for order entry. Every prop is available under the same name in all three embed modes.

MarketCard

实时市场卡片:问题、概率条、双边价格与成交量,点击跳转交易面板。

A live market card: question, probability bar, two-sided prices and volume — clicks through to the trade panel.

属性Prop类型Type默认值Default说明Description
marketIdrequiredstring市场合约地址Market contract address
theme'dark' | 'light''dark'配色主题,可被主题令牌覆盖Color theme; overridable via theme tokens
locale'zh' | 'en'auto文案语言,默认跟随浏览器Copy language; follows the browser by default
hideVolumebooleanfalse隐藏 24h 成交量角标Hide the 24h volume badge
onPriceChange(price) => void价格更新回调(约 1 次/秒)Price update callback (~1/sec)

BetPanel

完整下单面板:方向选择、金额输入、滑点保护与钱包连接,交易确认后回调。

The full order panel: side selection, amount entry, slippage protection and wallet connection, with a callback on confirmation.

属性Prop类型Type默认值Default说明Description
marketIdrequiredstring市场合约地址Market contract address
defaultSide'yes' | 'no''yes'面板打开时预选的方向Side pre-selected when the panel opens
maxSlippagenumber0.01最大滑点(1% = 0.01),超出自动回滚Max slippage (1% = 0.01); reverts beyond it
onTradeComplete(trade) => void链上确认后回调,携带方向、数量与成交价Fires after on-chain confirmation with side, amount and fill price

滑点与退款:超过 maxSlippage 的交易会在合约层回滚,资金原路退回 — 不会部分成交。Slippage & refunds: trades beyond maxSlippage revert at the contract level and funds return in full — there are no partial fills.

项目概览Project Overview/什么是 PrometheX?What is PrometheX?

什么是 PrometheX?What is PrometheX?

PrometheX 是全球首个白标预测市场引擎 — 一个全栈基础设施平台,让任何公司都能在数周内(而非数月)上线自己品牌的预测市场。

PrometheX is the world's first white-label prediction market engine — a full-stack infrastructure platform that enables any company to launch its own branded prediction market in weeks, not months.

基于预测市场即服务(PMaaS)模式,PrometheX 提供平台上线所需的一切:自动化流动性、链上结算、完全可定制的前端与互动增长层 — 全部部署在你的品牌与域名之下。

Built on the model of Prediction Markets as a Service (PMaaS), PrometheX provides everything a platform needs to go live: automated liquidity, on-chain settlement, a fully customizable front-end, and an engagement layer — all deployed under your brand, on your domain.

核心理念The Core Idea

可以把 PrometheX 理解为预测市场领域的"Shopify"。正如 Shopify 让任何人无需自建支付、物流与库存系统即可开店,PrometheX 让任何平台无需从零解决流动性、合约安全与市场基础设施,即可上线一个功能完整的预测市场。

Think of PrometheX as the "Shopify" of prediction markets. Just as Shopify lets anyone launch an e-commerce store without building payment rails, logistics, or inventory systems from scratch, PrometheX lets any platform launch a fully functional prediction market without solving liquidity, smart contract security, or market infrastructure from scratch.

我们是引擎。你是品牌。

We are the engine. You are the brand.

Polymarket、Kalshi、Robinhood 等竞品是聚合平台 — 用户关系、数据和手续费都归它们所有。PrometheX 是基础设施。用户在你的平台交易,数据归你所有,大部分交易手续费也留给你。

Competing platforms like Polymarket, Kalshi, and Robinhood are aggregators — they own the user relationship, the data, and the fees. PrometheX is infrastructure. Your users trade on your platform, you own their data, and you keep the majority of trading fees.

PrometheX 提供什么What PrometheX Delivers

核心预测引擎Core Prediction Engine

每个 PrometheX 部署的技术骨干:

The technical backbone of every PrometheX deployment:

  • 自动化预测做市商(APMM) — 专有算法,从第一天起提供持续流动性,消除传统订单簿"先有鸡还是先有蛋"的问题Automated Prediction Market Maker (APMM) — a proprietary algorithm that provides continuous liquidity from day one, eliminating the "chicken-and-egg" problem of traditional order books
  • 联合曲线定价机制 — 价格基于市场需求自动、数学化调整,日常市场无需活跃做市商Bonding curve pricing mechanism — prices adjust automatically and mathematically based on market demand, no active market makers needed for everyday markets
  • 智能合约即时免信任结算 — 任何事件结果均链上裁决,非托管、不可篡改Instant, trustless settlement via smart contracts — on-chain resolution for any event outcome, non-custodial and tamper-proof
  • 支持多结果与二元市场 — 既能运行简单的是/否市场,也能运行复杂的多结果事件(如"谁将赢得 2026 世界杯?")Multi-outcome & binary market support — run simple yes/no markets or complex multi-outcome events (e.g., "Who will win the 2026 World Cup?")

白标套件White-Label Suite

完全品牌化的体验,看起来、用起来都像你自己的产品:

A fully branded experience that looks and feels like your product:

  • 你的品牌、Logo、字体与配色Your brand, logo, typography, and color palette
  • 部署在你的自定义域名Deployed on your custom domain
  • 移动端自适应,SEO 优化Mobile-responsive and SEO optimized
  • 无缝钱包集成,支持邮箱与社交登录Seamless wallet integration with Email and Social login support

互动增长层Engagement Layer

驱动留存与病毒式增长的工具:

Tools to drive retention and viral growth:

  • 实时排行榜与交易者主页Live leaderboards and trader profiles
  • 成就徽章与游戏化机制Achievement badges and gamification mechanics
  • 社交分享卡片,助力自然传播Social sharing cards for organic distribution
  • 内置推荐系统Built-in referral system

管理与控制Admin & Control

在单一后台掌控全部运营:

Complete operational control from a single dashboard:

  • 完整的数据分析与报表Comprehensive analytics and reporting
  • 用户管理工具User management tools
  • 市场模板,快速创建市场Market templates for rapid market creation
  • 完整的分析与报表套件Full analytics and reporting suite

APMM 的优势The APMM Advantage

PrometheX 的核心是自动化预测做市商(APMM) — 让预测市场得以规模化运转的引擎。

At the heart of PrometheX is the Automated Prediction Market Maker (APMM) — the engine that makes prediction markets viable at scale.

传统订单簿需要资金雄厚的做市商持续维护。没有他们,市场就会失去流动性、无法使用。Polymarket 花了数年时间和 7,400 万美元融资解决这个问题。PrometheX 开箱即解决:

Traditional order books require active market makers with significant capital and constant maintenance. Without them, markets go illiquid and become unusable. Polymarket spent years and $74M in funding solving this problem. PrometheX solves it out of the box:

传统订单簿Traditional Order BookPrometheX APMM
流动性Liquidity需要资本密集型做市商Requires capital-intensive market makers即时 — 智能合约随时可交易Instant — smart contract always ready
可扩展性Scalability每个新市场都难以冷启动Hard to bootstrap each new market上线 10,000 个市场和 1 个一样简单Launch 10,000 markets as easily as 1
定价Pricing小众市场点差巨大Wide spreads on niche markets确定性的联合曲线定价Deterministic bonding curve pricing
成本Cost持续维护成本高High ongoing maintenance每个市场边际成本为零Zero marginal cost per market

APMM 使用联合曲线机制:不是撮合买家与卖家,而是让用户直接与智能合约交易,价格由流通份额的供给数学化决定。这意味着永远有对手方 — 你随时可以即时买入或卖出,7×24 不间断。

The APMM uses a bonding curve mechanism: instead of matching buyers with sellers, users trade against a smart contract whose price is determined mathematically by the supply of shares in circulation. This means there is always a counterparty — you can always buy or sell instantly, 24/7.

适合谁用Who PrometheX Is For

PrometheX 是面向以下对象打造的 B2B 基础设施平台:

PrometheX is a B2B infrastructure platform built for:

  • 加密与 DeFi 协议Crypto & DeFi protocols提供对冲协议风险的原生工具,提升 TVL 与代币效用Offer native hedging instruments against protocol risks, increase TVL and token utility
  • 游戏与电竞平台Gaming & esports platforms让观众对比赛结果交易,把被动观看变现Monetize passive viewership by letting fans trade on match outcomes
  • 媒体与新闻机构Media & news outlets把被动读者转化为积极参与者,用市场概率验证报道Transform passive readers into active participants, validate reporting with market probabilities
  • DAO 与社区DAOs & communities实现 futarchy 式治理信号,通过交易手续费多元化金库收益Implement futarchy-style governance signaling, diversify treasury yield through trading fees
  • 金融科技与券商平台Fintech & broker platforms无库存风险地新增高互动产品,与竞争对手形成差异化Add a high-engagement product without inventory risk, differentiate from competitors

为什么是现在Why Now

预测市场行业 2025 年总交易量超过 440 亿美元,月交易量在 18 个月内增长了 130 倍。Robinhood、CME、盈透证券等主流机构已经入场或在积极布局。

The prediction market industry reached $44B+ in total volume in 2025, growing 130x in monthly volume over 18 months. Major institutions — Robinhood, CME Group, Interactive Brokers — have entered or are actively exploring the space.

你的用户已经在交易预测。问题只是:他们是在你的平台上,还是在别人的平台上。

Your users are already trading predictions. The question is whether they're doing it on your platform, or someone else's.

PrometheX 让你可以在 4 周内上线 — 赶在下一个重大催化剂到来之前。

PrometheX makes it possible to be live in 4 weeks — before the next major catalyst arrives.

商务与合作Business & Partnership/服务套餐Service Tiers

服务套餐Service Tiers

PrometheX 以基础设施授权的方式提供,而非托管服务。每份合作伙伴许可都包含 PrometheX 白标系统的使用权、明确的功能与定制范围,以及一次性部署费用。

PrometheX is licensed as infrastructure, not a managed service. Each partner license includes access to the white-labeled system, a defined feature and customization scope, and a one-time deployment fee.

三档核心套餐,覆盖从启动 MVP 的初创团队,到规模化平台与企业机构。

Three core tiers designed to fit your scale and ambition — from startups launching MVPs to scaling platforms and enterprise institutions.

核心套餐Core Tiers

功能FeatureLaunch EngineGrowth EngineOperator Engine
目标客户Target audience初创与 MVPStartups & MVPs成长型平台Scaling platforms企业与机构Enterprise & institutions
部署费用Deployment fee$50,000$80,000$100,000
收益分成(PrometheX)Revenue share (PrometheX)10%8%5%
可用市场类别Available categories1513
核心 APMM 引擎Core APMM engine
自定义域名 / 嵌入Custom domain / embed
白标品牌White-label branding标准*Standard*扩展**Expanded**深度***Deep***
UI 布局定制UI layout customization有限Limited
游戏化与排行榜Gamification & leaderboards
奖励与推荐系统Rewards & referral system
APMM 参数调优APMM parameter tuning有限Limited
功能开关(地区/分组)Feature flags (region/segment)
环境Environments仅生产Prod only仅生产Prod only预发 + 生产Staging + prod
管理席位Admin seats25自定义Custom
API 访问与数据导出API access & data exports
部署支持Deployment support轻量引导Light guided全程引导Full guided高级引导Advanced guided
支持等级Support level标准Standard优先Priority专属通道Dedicated channel

* 标准:Logo、favicon、主品牌色、自定义域名。
** 扩展:标准 + 完整配色、自定义字体、邮件模板、自定义加载页、社交分享卡、品牌 PDF 导出。
*** 深度:扩展 + 组件级主题、自定义页面布局、定制落地页、完全定制的引导流程。

* Standard: logo, favicon, primary brand color, custom domain.
** Expanded: Standard + full color palette, custom fonts, email templates, custom loading screens, social share cards, branded PDF exports.
*** Deep: Expanded + component-level theming, custom page layouts, bespoke landing page, fully tailored onboarding flow.

托管基础设施(可选增值)Managed Infrastructure (Optional Add-On)

不希望自行运维基础设施的合作伙伴,可以按年订阅 PrometheX 托管基础设施。它独立于一次性部署费和交易手续费分成,覆盖托管、维护与支持合作伙伴实例的持续运营成本 — 包括专属云主机、RPC 节点访问、服务器监控、软件更新与故障响应。

Partners who don't wish to operate their own infrastructure can subscribe to PrometheX Managed Infrastructure as an annual add-on — separate from the one-time deployment fee and the revenue share. It covers hosting, maintenance and support: dedicated cloud hosting, RPC node access, server monitoring, software updates, and incident response.

项目FeatureStarterGrowth
年费Annual fee$10,000/年$10,000/yr$25,000/年$25,000/yr
目标规模Target scale<1,000 DAU1,000–10,000 DAU
基础设施Infrastructure单实例(8C/16G)Single instance (8C/16G)2–3 实例 + 负载均衡2–3 instances + load balancer
在线率 SLAUptime SLA99.50%99.90%
支持Support标准(邮件,48h 响应)Standard (email, 48h response)优先(专属通道,12h 响应)Priority (dedicated channel, 12h response)
环境Environments仅生产Production only仅生产Production only

托管基础设施按年计费。自托管合作伙伴的部署与配置已包含在一次性部署费中,无需订阅托管基础设施。Managed Infrastructure is billed annually. Self-hosted partners receive deployment and configuration as part of the one-time deployment fee and are not required to subscribe.

商务与合作Business & Partnership/部署路线图Deployment Roadmap

部署路线图Deployment Roadmap

4 周。从签署合同到预测市场在你的平台上线,只需要这么久。

4 weeks. That's how long it takes to go from signed contract to prediction markets live on your platform.

我们成熟的部署流程,在不牺牲质量的前提下快速推进。每一周具体发生什么,如下:

Our proven deployment process is designed to move fast without sacrificing quality. Here's exactly what happens each week:

01

第 1 周Week 1

我们与你对齐技术需求、目标链与集成架构。

We align on your technical requirements, target chain, and integration architecture.

02

第 2 周:合约部署与平台配置Week 2: Contract Deployment & Platform Configuration

我们部署核心合约,并针对你的具体场景配置平台环境。

We deploy the core contracts and configure the platform environment for your specific setup.

03

第 3 周:品牌与内容配置Week 3: Branding & Content Setup

我们应用你的品牌,配置面向用户的体验,并准备初始市场与内容结构。

We apply your branding, configure the user-facing experience, and prepare the initial market and content structure.

04

第 4 周:测试与上线Week 4: Testing & Go-Live

我们完成最终测试,端到端验证用户流程,并将你的预测市场实例发布到生产环境。

We complete final testing, validate the user flow end-to-end, and launch your prediction market instance in production.

本节内容尚未迁入新版设计稿 — 这里展示的是新版的页面框架。可先查看已完成的 欢迎页快速开始This section hasn’t been migrated into the redesign yet — what you see is the new page frame. The finished Welcome and Quick start pages are ready to review.