Developers
Build the next layer on Evolve Pro.
A typed SDK, a complete REST surface, reference contracts, and webhooks. Meter consumption in EVOP — no API key gymnastics.
TypeScript SDK
First-class types, streaming responses, and SSR support. Works in Node, edge runtimes, and the browser.
REST API
A predictable, versioned HTTP surface with deterministic pricing per call. OpenAPI spec included.
Reference contracts
Audited Solidity primitives for vesting, staking, governance, and treasury — drop-in or extend.
Webhooks
Subscribe to generation, deploy, and consumption events. Signed payloads, retries, replay.
Guides
End-to-end recipes for common launches — DeFi protocol, RWA marketplace, autonomous agent.
Open source
SDKs, contract libraries, and example apps are MIT-licensed on GitHub. Contributions welcome.
Quickstart
From npm install to live deploy.
install.sh
EVOP
# install the SDK npm install @evolve-pro/sdk # set your key export EVOLVE_KEY=evp_live_...
deploy.ts
EVOP
import { Evolve } from "@evolve-pro/sdk";
const evolve = new Evolve();
const proj = await evolve.retina.generate({
prompt: "A staking protocol for clean-energy credits.",
artifacts: ["contracts", "tokenomics", "site"],
});
await proj.deploy({ network: "evolve-mainnet" });Developer hub