polyoxide-clob 0.23.0

Rust client library for Polymarket CLOB (order book) API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! API namespace modules for organizing CLOB operations

pub mod account;
pub mod auth;
pub mod health;
pub mod markets;
pub mod notifications;
pub mod orders;
pub mod rewards;

pub use account::AccountApi;
pub use auth::Auth;
pub use health::Health;
pub use markets::Markets;
pub use notifications::Notifications;
pub use orders::{CancelOrderRequest, Orders};
pub use rewards::Rewards;