px-core
Core traits, models, and errors for the OpenPX prediction market SDK.
Overview
px-core provides the foundational components for building prediction market integrations:
- Exchange trait: Unified async interface for all prediction market operations
- Models:
Market,Order,Position,Orderbook, and more - WebSocket trait: Real-time orderbook and trade streaming
- Strategy trait: Framework for building trading strategies
- Error types: Comprehensive error hierarchy (
OpenPxError)
Installation
[]
= "0.1"
Usage
This crate is typically used as a dependency by exchange implementations (px-exchange-polymarket, px-exchange-kalshi, px-exchange-opinion).
use ;
// The Exchange trait defines the unified API
Models
| Model | Description |
|---|---|
Market |
Prediction market with question, outcomes, prices, volume |
Order |
Order with price, size, status, timestamps |
Position |
Position with size, average price, current price |
Orderbook |
Orderbook with bids and asks |
Trade |
Executed trade information |
Features
- Async-first: Built on
tokiofor high-performance async operations - Type-safe: Leverage Rust's type system for compile-time safety
- Serde support: All models are serializable/deserializable