polymarket-sdk 0.0.5

Rust SDK for Polymarket prediction markets - REST APIs, WebSocket streams, order signing, and Safe wallet integration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Core infrastructure for the Polymarket SDK.
//!
//! This module provides fundamental building blocks used across the SDK:
//!
//! - `error` - Unified error handling with retry support
//! - `endpoints` - API endpoint management and configuration

mod endpoints;
mod error;

pub use endpoints::*;
pub use error::*;