Developers
Build on Pyre
Pyre is the onchain launchpad on Robinhood Chain — bonding-curve launches that graduate to Uniswap v4, with ten configurable fee modes and auto-paid rewards. Everything the web app does is available programmatically.
Three ways to build: the TypeScript SDK, a Claude MCP server to launch and query from natural language, and a public token API. Start here:
QuickstartInstall the SDK and launch your first token in a few lines.ConceptsBonding curve, graduation, the Mixer, rewards, and the trust model.SDK@pyre-one/sdk — read, trade, launch, and configure from your backend.MCP for ClaudeGive Claude the tools to launch and query Pyre for you.Token APIPublic REST endpoints for tokens, prices, holders, and stats.ExamplesCopy-paste recipes for common flows.
Install
bash
npm install @pyre-one/sdk viemts
import { PyreClient } from "@pyre-one/sdk";
const pyre = new PyreClient(); // read-only
const tokens = await pyre.read.tokens();
const stats = await pyre.read.stats();Not deployed yet
Pyre's contracts are staged for mainnet but not broadcast. Read endpoints return empty collections and write calls throwisUndeployed until the factory address is set. The SDK and MCP work the moment the protocol goes live — no code changes needed, just addresses.