From 42daa85d22d068f5f36c15f31cc4831bd95fa52b Mon Sep 17 00:00:00 2001 From: wood Date: Sun, 6 Jul 2025 23:52:55 +0800 Subject: [PATCH] update readme --- README.md | 6 +++--- README_CN.md | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index f5f0a95..749d5e7 100755 --- a/README.md +++ b/README.md @@ -85,9 +85,9 @@ let priority_fee = PriorityFee { // Configure multiple swqos in single region, can send transactions concurrently let swqos_configs = vec![ - SwqosConfig::new(None, Some("your auth_token for jito".to_string()), SwqosType::Jito, SwqosRegion::Frankfurt), - SwqosConfig::new(None, Some("your auth_token for zeroslot".to_string()), SwqosType::ZeroSlot, SwqosRegion::Frankfurt), - SwqosConfig::new(None, Some("your auth_token for temporal".to_string()), SwqosType::Temporal, SwqosRegion::Frankfurt), + SwqosConfig::new(None, None, SwqosType::Jito, SwqosRegion::Frankfurt), + SwqosConfig::new(None, Some("your auth_token".to_string()), SwqosType::ZeroSlot, SwqosRegion::Frankfurt), + SwqosConfig::new(None, Some("your auth_token".to_string()), SwqosType::Temporal, SwqosRegion::Frankfurt), ]; let rpc_url = "https://mainnet.helius-rpc.com/?api-key=xxxxxx".to_string(); diff --git a/README_CN.md b/README_CN.md index d8d71f1..98d629f 100755 --- a/README_CN.md +++ b/README_CN.md @@ -85,9 +85,9 @@ let priority_fee = PriorityFee { // 单区域配置多个swqos,可同时发送交易 let swqos_configs = vec![ - SwqosConfig::new(None, Some("your auth_token for jito".to_string()), SwqosType::Jito, SwqosRegion::Frankfurt), - SwqosConfig::new(None, Some("your auth_token for zeroslot".to_string()), SwqosType::ZeroSlot, SwqosRegion::Frankfurt), - SwqosConfig::new(None, Some("your auth_token for temporal".to_string()), SwqosType::Temporal, SwqosRegion::Frankfurt), + SwqosConfig::new(None, None, SwqosType::Jito, SwqosRegion::Frankfurt), + SwqosConfig::new(None, Some("your auth_token".to_string()), SwqosType::ZeroSlot, SwqosRegion::Frankfurt), + SwqosConfig::new(None, Some("your auth_token".to_string()), SwqosType::Temporal, SwqosRegion::Frankfurt), ]; let rpc_url = "https://mainnet.helius-rpc.com/?api-key=xxxxxx".to_string();