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
//! Polymarket Gas Relayer
//!
//! The relayer service allows users to submit transactions without paying gas fees directly.
//! The relayer pays the gas and submits transactions to the blockchain.

mod client;
mod types;

pub use client::RelayerClient;
pub use types::*;