Follow the releases, fixes, and improvements on Probable Rails.
We just launched `@probable/sdk` to speed up integration pipelines, alongside a live developer webhook logs visualizer in the dashboard.
import { ProbableClient } from "@probable/sdk";
const sdk = new ProbableClient({
apiKey: "sk_live_prod_52x19c3"
});
// Stream, trade, score. Done.
const market = await sdk.markets.create({
question: "Will ETH gas stay below 10 gwei?",
closes: "2026-08-31T23:59:59Z"
});Full orderbook sync with clob.polymarket.com on Polygon network (`chainId: 137`). Users can place gasless limit trades using paymaster sponsors.
// Polymarket EIP-712 transaction signature generator
const signature = await polymarket.signOrder({
price: 0.52,
amount: 250,
side: "BUY"
});Initial public launch of the Probable Prediction Market routing rails. Setup core Prisma ORM engines and Gemini-powered auto market resolvers.
// AI Oracle evaluation
const outcome = await gemini.evaluateMarket(
"Will BTC hit $150k?"
);