
Polymarket Rust Client
An ergonomic Rust client for interacting with Polymarket services, primarily the Central Limit Order Book (CLOB).
This crate provides strongly typed request builders, authenticated endpoints, alloy support and more.
Table of Contents
- Overview
- Getting Started
- Examples
- Setting Token Allowances
- Minimum Supported Rust Version (MSRV)
- Contributing
- About Polymarket
Overview
- Typed CLOB requests (orders, trades, markets, balances, and more)
- Dual authentication flows
- Normal authenticated flow
- Builder authentication flow
- Type-level state machine
- Prevents using authenticated endpoints before authenticating
- Compile-time enforcement of correct transitions
- Signer support via
alloy::signers::Signer- Including remote signers, e.g. AWS KMS
- Zero-cost abstractions — no dynamic dispatch in hot paths
- Order builders for easy construction & signing
- Full
serdesupport - Async-first design with
reqwest
Getting started
Add the crate to your Cargo.toml:
[]
= "0.1"
or
Then run any of the examples
Examples
Some hand-picked examples. Please see examples/ for more.
Unauthenticated client (read-only)
use Client;
async
Authenticated client
Set POLYMARKET_PRIVATE_KEY as an environment variable with your private key.
EOA wallets
If using MetaMask or hardware wallet, you must first set token allowances. See Token Allowances section below.
use FromStr as _;
use Signer as _;
use LocalSigner;
use ;
use ;
async
Proxy/Safe wallets
For proxy/Safe wallets, create your client as such:
let client = new?
.authentication_builder
.funder
.signature_type
.authenticate
.await?;
Funder Address
The funder address is the actual address that holds your funds on Polymarket. When using proxy wallets (email wallets like Magic or browser extension wallets), the signing key differs from the address holding the funds. The funder address ensures orders are properly attributed to your funded account.
Signature Types
The signature_type parameter tells the system how to verify your signatures:
signature_type=0(default): Standard EOA (Externally Owned Account) signatures - includes MetaMask, hardware wallets, and any wallet where you control the private key directlysignature_type=1: Email/Magic wallet signatures (delegated signing)signature_type=2: Browser wallet proxy signatures (when using a proxy contract, not direct wallet connections)
See SignatureType for more information.
Place a market order
use FromStr as _;
use Signer as _;
use LocalSigner;
use ;
use ;
use ;
use Decimal;
async
Place a limit order
use FromStr as _;
use Signer as _;
use LocalSigner;
use ;
use ;
use ;
use Decimal;
use dec;
async
Builder-authenticated client
Remote signing
use FromStr as _;
use ;
use Signer as _;
use LocalSigner;
use Config as BuilderConfig;
use ;
use ;
use ;
async
Token Allowances
Do I need to set allowances?
MetaMask and EOA users must set token allowances. If you are using a proxy or Safe-type wallet, then you do not.
What are allowances?
Think of allowances as permissions. Before Polymarket can move your funds to execute trades, you need to give the exchange contracts permission to access your USDC and conditional tokens.
Quick Setup
You need to approve two types of tokens:
- USDC (for deposits and trading)
- Conditional Tokens (the outcome tokens you trade)
Each needs approval for the exchange contracts to work properly.
Setting Allowances
Use examples/approvals.rs to approve the right contracts. Run once to approve USDC. Then change
the TOKEN_TO_APPROVE and run for each conditional token.
Pro tip: You only need to set these once per wallet. After that, you can trade freely.
Minimum Supported Rust Version (MSRV)
MSRV: Rust 1.88
Older versions may compile, but are not supported.
This project aims to maintain compatibility with a Rust version that is at least six months old.
Version updates may occur more frequently than the policy guideline states if external forces require it. For example, a CVE in a downstream dependency requiring an MSRV bump would be considered an acceptable reason to violate the six-month guideline.
Contributing
We encourage contributions from the community. Check out our contributing guidelines for instructions on how to contribute to this SDK.
About Polymarket
Polymarket is the world’s largest prediction market, allowing you to stay informed and profit from your knowledge by betting on future events across various topics. Studies show prediction markets are often more accurate than pundits because they combine news, polls, and expert opinions into a single value that represents the market’s view of an event’s odds. Our markets reflect accurate, unbiased, and real-time probabilities for the events that matter most to you. Markets seek truth.