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
13
14
15
16
//! Wallet layer for interacting with Polygon blockchain
//!
//! This module provides the core `OnchainClient` for managing wallets,
//! signing transactions, and interacting with smart contracts.

mod provider;
pub use provider::OnchainProvider;

mod signer;
pub use signer::OnchainSigner;

mod builder;
pub use builder::OnchainClientBuilder;

mod client;
pub use client::OnchainClient;