polyfill2 0.3.0

Polymarket CLOB V2 Rust client (fork of polyfill-rs). High-performance, EIP-712 signing, WebSocket streaming.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
// Integration tests for polyfill-rs
// These tests hit the real Polymarket API and are ignored by default
// Run with: cargo test --test integration_tests -- --ignored --test-threads=1

use polyfill2::{ClobClient, OrderArgs, Side};
use rust_decimal_macros::dec;
use std::env;

const HOST: &str = "https://clob.polymarket.com";
const CHAIN_ID: u64 = 137;

fn load_env_vars() -> (String, Option<String>, Option<String>, Option<String>) {
    dotenvy::dotenv().ok();

    let private_key =
        env::var("POLYMARKET_PRIVATE_KEY").expect("POLYMARKET_PRIVATE_KEY must be set in .env");
    let api_key = env::var("POLYMARKET_API_KEY").ok();
    let api_secret = env::var("POLYMARKET_API_SECRET").ok();
    let api_passphrase = env::var("POLYMARKET_API_PASSPHRASE").ok();

    (private_key, api_key, api_secret, api_passphrase)
}

#[tokio::test(flavor = "multi_thread")]
#[ignore]
async fn test_real_api_create_derive_api_key() {
    let (private_key, _, _, _) = load_env_vars();

    let client = ClobClient::with_l1_headers(HOST, &private_key, CHAIN_ID);

    // Test creating/deriving API key
    let result = client.create_or_derive_api_key(None).await;
    assert!(
        result.is_ok(),
        "Failed to create/derive API key: {:?}",
        result
    );

    let api_creds = result.unwrap();
    assert!(!api_creds.api_key.is_empty());
    assert!(!api_creds.secret.is_empty());
    assert!(!api_creds.passphrase.is_empty());

    println!("PASS: Successfully created/derived API key");
}

#[tokio::test(flavor = "multi_thread")]
#[ignore]
async fn test_real_api_authenticated_order_flow() {
    let (private_key, _, _, _) = load_env_vars();

    // Initialize client with L1 headers
    let mut client = ClobClient::with_l1_headers(HOST, &private_key, CHAIN_ID);

    // Step 1: Create/derive API credentials
    println!("Step 1: Creating/deriving API credentials...");
    let api_creds = client
        .create_or_derive_api_key(None)
        .await
        .expect("Failed to create/derive API key");
    client.set_api_creds(api_creds);
    println!("PASS: API credentials set");

    // Step 2: Get a valid token_id from active markets
    println!("Step 2: Fetching active markets...");
    let markets = client
        .get_sampling_markets(None)
        .await
        .expect("Failed to get markets");

    let active_market = markets
        .data
        .iter()
        .find(|m| m.active && !m.closed)
        .expect("No active markets found");

    let token_id = &active_market.tokens[0].token_id;
    println!("PASS: Found active token: {}", token_id);

    // Step 3: Get current price to place a reasonable order
    println!("Step 3: Getting current market price...");
    let midpoint = client
        .get_midpoint(token_id)
        .await
        .expect("Failed to get midpoint");
    println!("PASS: Current midpoint: {}", midpoint.mid);

    // Step 4: Create and post a small order well away from market price (so it won't fill immediately).
    // IMPORTANT: choose side consistently with the price so we don't accidentally create a marketable order.
    let (side, order_price) = if midpoint.mid > dec!(0.5) {
        (Side::BUY, dec!(0.01)) // Very low buy price, won't fill
    } else {
        (Side::SELL, dec!(0.99)) // Very high sell price, won't fill
    };

    println!(
        "Step 4: Posting {:?} order at price {}...",
        side, order_price
    );
    let order_args = OrderArgs {
        token_id: token_id.clone(),
        price: order_price,
        size: dec!(1.0), // Small size (auth is the thing we're testing here)
        side,
    };

    let post_result = client.create_and_post_order(&order_args).await;

    // This is the critical test - did we get past the 401 error?
    match &post_result {
        Ok(response) => {
            println!("PASS: Order posted successfully!");

            // Step 5: Cancel the order
            if !response.order_id.is_empty() {
                println!("Step 5: Canceling order {}...", response.order_id);
                let cancel_result = client.cancel(&response.order_id).await;
                assert!(
                    cancel_result.is_ok(),
                    "Failed to cancel order: {:?}",
                    cancel_result
                );
                println!("PASS: Order canceled successfully");
            } else {
                println!(
                    "WARNING: Order posted but no orderID in response: {:?}",
                    response
                );
            }
        },
        Err(e) => {
            // The critical failure: did we get a 401 (authentication failure)?
            match &e {
                polyfill2::PolyfillError::Api { status: 401, .. } => {
                    panic!(
                        "FAIL: CRITICAL: 401 Unauthorized error - HMAC authentication is broken!"
                    );
                },
                // Any 4xx other than 401 indicates auth succeeded and we reached server-side validation.
                polyfill2::PolyfillError::Api {
                    status: 400..=499, ..
                } => {
                    println!("PASS: Authentication successful (got expected validation error)");
                    println!("  Error: {:?}", e);
                },
                _ => {
                    panic!("FAIL: Unexpected error: {:?}", e);
                },
            }
        },
    }
}

#[tokio::test(flavor = "multi_thread")]
#[ignore]
async fn test_real_api_get_orders() {
    let (private_key, _, _, _) = load_env_vars();

    let mut client = ClobClient::with_l1_headers(HOST, &private_key, CHAIN_ID);
    let api_creds = client
        .create_or_derive_api_key(None)
        .await
        .expect("Failed to create/derive API key");
    client.set_api_creds(api_creds);

    println!("Testing get_orders...");
    let result = client.get_orders(None, None).await;

    match result {
        Ok(orders) => {
            println!("PASS: Successfully fetched orders");
            println!("  Found {} orders", orders.len());
        },
        Err(e) => {
            let err_str = format!("{:?}", e);
            if err_str.contains("401") {
                panic!("FAIL: 401 Unauthorized - authentication failed!");
            }
            panic!("Failed to get orders: {:?}", e);
        },
    }
}

#[tokio::test(flavor = "multi_thread")]
#[ignore]
async fn test_real_api_get_trades() {
    let (private_key, _, _, _) = load_env_vars();

    let mut client = ClobClient::with_l1_headers(HOST, &private_key, CHAIN_ID);
    let api_creds = client
        .create_or_derive_api_key(None)
        .await
        .expect("Failed to create/derive API key");
    client.set_api_creds(api_creds);

    println!("Testing get_trades...");
    let result = client.get_trades(None, None).await;

    match result {
        Ok(_trades) => {
            println!("PASS: Successfully fetched trades");
        },
        Err(e) => {
            let err_str = format!("{:?}", e);
            if err_str.contains("401") {
                panic!("FAIL: 401 Unauthorized - authentication failed!");
            }
            panic!("Failed to get trades: {:?}", e);
        },
    }
}

#[tokio::test(flavor = "multi_thread")]
#[ignore]
async fn test_real_api_get_balance_allowance() {
    let (private_key, _, _, _) = load_env_vars();

    let mut client = ClobClient::with_l1_headers(HOST, &private_key, CHAIN_ID);
    let api_creds = client
        .create_or_derive_api_key(None)
        .await
        .expect("Failed to create/derive API key");
    client.set_api_creds(api_creds);

    println!("Testing get_balance_allowance...");

    // Get a valid token_id first
    let markets = client
        .get_sampling_markets(None)
        .await
        .expect("Failed to get markets");
    let token_id = &markets.data[0].tokens[0].token_id;

    use polyfill2::types::{AssetType, BalanceAllowanceParams};
    let params = BalanceAllowanceParams {
        asset_type: Some(AssetType::CONDITIONAL),
        token_id: Some(token_id.clone()),
        signature_type: None,
    };

    let result = client.get_balance_allowance(Some(params)).await;

    match result {
        Ok(balance) => {
            println!("PASS: Successfully fetched balance/allowance");
            println!("  Balance: {:?}", balance);
        },
        Err(e) => {
            let err_str = format!("{:?}", e);
            if err_str.contains("401") {
                panic!("FAIL: 401 Unauthorized - authentication failed!");
            }
            println!("WARNING: Balance check failed (may be expected): {:?}", e);
        },
    }
}

#[tokio::test(flavor = "multi_thread")]
#[ignore]
async fn test_real_api_get_api_keys() {
    let (private_key, _, _, _) = load_env_vars();

    let mut client = ClobClient::with_l1_headers(HOST, &private_key, CHAIN_ID);
    let api_creds = client
        .create_or_derive_api_key(None)
        .await
        .expect("Failed to create/derive API key");
    client.set_api_creds(api_creds);

    println!("Testing get_api_keys...");
    let result = client.get_api_keys().await;

    match result {
        Ok(keys) => {
            println!("PASS: Successfully fetched API keys");
            println!("  Found {} keys", keys.len());
        },
        Err(e) => {
            let err_str = format!("{:?}", e);
            if err_str.contains("401") {
                panic!("FAIL: 401 Unauthorized - authentication failed!");
            }
            panic!("Failed to get API keys: {:?}", e);
        },
    }
}

#[tokio::test(flavor = "multi_thread")]
#[ignore]
async fn test_real_api_get_notifications() {
    let (private_key, _, _, _) = load_env_vars();

    let mut client = ClobClient::with_l1_headers(HOST, &private_key, CHAIN_ID);
    let api_creds = client
        .create_or_derive_api_key(None)
        .await
        .expect("Failed to create/derive API key");
    client.set_api_creds(api_creds);

    println!("Testing get_notifications...");
    let result = client.get_notifications().await;

    match result {
        Ok(notifications) => {
            println!("PASS: Successfully fetched notifications");
            println!("  Notifications: {:?}", notifications);
        },
        Err(e) => {
            let err_str = format!("{:?}", e);
            if err_str.contains("401") {
                panic!("FAIL: 401 Unauthorized - authentication failed!");
            }
            panic!("Failed to get notifications: {:?}", e);
        },
    }
}

#[tokio::test(flavor = "multi_thread")]
#[ignore]
async fn test_real_api_market_data_endpoints() {
    let (private_key, _, _, _) = load_env_vars();

    let client = ClobClient::with_l1_headers(HOST, &private_key, CHAIN_ID);

    println!("Testing market data endpoints (no auth required)...");

    // Get a valid token_id
    let markets = client
        .get_sampling_markets(None)
        .await
        .expect("Failed to get markets");
    let token_id = &markets.data[0].tokens[0].token_id;
    println!("PASS: Using token_id: {}", token_id);

    // Test multiple endpoints
    println!("Testing get_order_book...");
    let book = client
        .get_order_book(token_id)
        .await
        .expect("Failed to get order book");
    println!(
        "PASS: Order book: {} bids, {} asks",
        book.bids.len(),
        book.asks.len()
    );

    println!("Testing get_midpoint...");
    let midpoint = client
        .get_midpoint(token_id)
        .await
        .expect("Failed to get midpoint");
    println!("PASS: Midpoint: {}", midpoint.mid);

    println!("Testing get_spread...");
    let spread = client
        .get_spread(token_id)
        .await
        .expect("Failed to get spread");
    println!("PASS: Spread: {}", spread.spread);

    println!("Testing get_price...");
    let price = client
        .get_price(token_id, Side::BUY)
        .await
        .expect("Failed to get price");
    println!("PASS: Buy price: {}", price.price);

    println!("Testing get_tick_size...");
    let tick_size = client
        .get_tick_size(token_id)
        .await
        .expect("Failed to get tick size");
    println!("PASS: Tick size: {}", tick_size);

    println!("Testing get_markets...");
    let all_markets = client
        .get_markets(None)
        .await
        .expect("Failed to get all markets");
    println!("PASS: Found {} markets", all_markets.data.len());

    println!("\nPASS: All market data endpoints working!");
}

#[tokio::test(flavor = "multi_thread")]
#[ignore]
async fn test_real_api_batch_endpoints() {
    let (private_key, _, _, _) = load_env_vars();

    let client = ClobClient::with_l1_headers(HOST, &private_key, CHAIN_ID);

    println!("Testing batch endpoints...");

    // Get multiple valid token_ids
    let markets = client
        .get_sampling_markets(None)
        .await
        .expect("Failed to get markets");
    let token_ids: Vec<String> = markets.data[0..2.min(markets.data.len())]
        .iter()
        .map(|m| m.tokens[0].token_id.clone())
        .collect();

    println!("Testing get_order_books (batch)...");
    let books = client
        .get_order_books(&token_ids)
        .await
        .expect("Failed to get order books");
    println!("PASS: Fetched {} order books", books.len());

    println!("Testing get_midpoints (batch)...");
    let midpoints = client
        .get_midpoints(&token_ids)
        .await
        .expect("Failed to get midpoints");
    println!("PASS: Fetched {} midpoints", midpoints.len());

    println!("Testing get_spreads (batch)...");
    let spreads = client
        .get_spreads(&token_ids)
        .await
        .expect("Failed to get spreads");
    println!("PASS: Fetched {} spreads", spreads.len());

    println!("\nPASS: All batch endpoints working!");
}

#[tokio::test(flavor = "multi_thread")]
#[ignore]
async fn test_real_api_health_check() {
    let client = ClobClient::new(HOST);

    println!("Testing health check endpoints...");

    let ok = client.get_ok().await;
    assert!(ok, "API health check failed!");
    println!("PASS: API is healthy");

    let server_time = client
        .get_server_time()
        .await
        .expect("Failed to get server time");
    println!("PASS: Server time: {}", server_time);
}