polymarket 0.1.0

Rust SDK for Polymarket prediction market - CLOB trading, on-chain operations, and WebSocket streaming
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod request;
pub use request::*;

pub mod response;
pub use response::*;

pub mod channels;
pub use channels::*;

// Re-export websocket types for convenience
// This allows bot to only import from polymarket crate, not ws-reconnect-client directly
pub use ws_reconnect_client::{MessageStream, Message, WsWriter, WsReader, WebSocketError};