rs-clob-client-v2 0.2.0

Rust client for Polymarket's CLOB v2 protocol (Central Limit Order Book)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Module declarations
pub mod auth;
pub mod markets;
pub mod notifications;
pub mod orders;
pub mod primitives;
pub mod rewards;
pub mod server;

// Re-export all public types for backward compatibility
pub use auth::*;
pub use markets::*;
pub use notifications::*;
pub use orders::*;
pub use primitives::*;
pub use rewards::*;
pub use server::*;