chore: default live CLOB host to production

This commit is contained in:
floor-licker
2026-04-28 09:46:06 -03:00
parent e5994d04dd
commit 54c35a7034
19 changed files with 33 additions and 33 deletions
+2 -2
View File
@@ -13,7 +13,7 @@ async fn test_post_order_authentication() {
env::var("POLYMARKET_PRIVATE_KEY").expect("POLYMARKET_PRIVATE_KEY must be set in .env");
let bootstrap = ClobClient::from_config(ClientConfig {
base_url: "https://clob-v2.polymarket.com".to_string(),
base_url: "https://clob.polymarket.com".to_string(),
chain: 137,
private_key: Some(private_key.clone()),
..ClientConfig::default()
@@ -26,7 +26,7 @@ async fn test_post_order_authentication() {
.await
.expect("Failed to create API key");
let client = ClobClient::from_config(ClientConfig {
base_url: "https://clob-v2.polymarket.com".to_string(),
base_url: "https://clob.polymarket.com".to_string(),
chain: 137,
private_key: Some(private_key),
api_credentials: Some(creds),