Compare commits

..

3 Commits

Author SHA1 Message Date
Wood 460395e5b2 chore: release v3.5.6
Made-with: Cursor
2026-02-28 01:01:44 +08:00
Wood 5335a4f5ff Merge pull request #82 from VariantConst/patch-5
Change Helius endpoints from HTTPS to HTTP
2026-02-28 00:47:55 +08:00
VariantConst 23a45e611c Change Helius endpoints from HTTPS to HTTP
Change Helius endpoints from HTTPS to HTTP
2026-02-27 23:49:38 +08:00
4 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "sol-trade-sdk"
version = "3.5.5"
version = "3.5.6"
edition = "2021"
authors = [
"William <byteblock6@gmail.com>",
+2 -2
View File
@@ -89,14 +89,14 @@ Add the dependency to your `Cargo.toml`:
```toml
# Add to your Cargo.toml
sol-trade-sdk = { path = "./sol-trade-sdk", version = "3.5.5" }
sol-trade-sdk = { path = "./sol-trade-sdk", version = "3.5.6" }
```
### Use crates.io
```toml
# Add to your Cargo.toml
sol-trade-sdk = "3.5.5"
sol-trade-sdk = "3.5.6"
```
## 🛠️ Usage Examples
+2 -2
View File
@@ -89,14 +89,14 @@ git clone https://github.com/0xfnzero/sol-trade-sdk
```toml
# 添加到您的 Cargo.toml
sol-trade-sdk = { path = "./sol-trade-sdk", version = "3.5.5" }
sol-trade-sdk = { path = "./sol-trade-sdk", version = "3.5.6" }
```
### 使用 crates.io
```toml
# 添加到您的 Cargo.toml
sol-trade-sdk = "3.5.5"
sol-trade-sdk = "3.5.6"
```
## 🛠️ 使用示例
+7 -7
View File
@@ -303,13 +303,13 @@ pub const SWQOS_ENDPOINTS_SPEEDLANDING: [&str; 8] = [
/// Helius Sender: POST /fast, dual routing to validators and Jito. API key optional (custom TPS only).
/// Region order: NewYork(EWR), Frankfurt, Amsterdam, SLC, Tokyo, London, LosAngeles(SG), Default(Global).
pub const SWQOS_ENDPOINTS_HELIUS: [&str; 8] = [
"https://ewr-sender.helius-rpc.com/fast",
"https://fra-sender.helius-rpc.com/fast",
"https://ams-sender.helius-rpc.com/fast",
"https://slc-sender.helius-rpc.com/fast",
"https://tyo-sender.helius-rpc.com/fast",
"https://lon-sender.helius-rpc.com/fast",
"https://sg-sender.helius-rpc.com/fast",
"http://ewr-sender.helius-rpc.com/fast",
"http://fra-sender.helius-rpc.com/fast",
"http://ams-sender.helius-rpc.com/fast",
"http://slc-sender.helius-rpc.com/fast",
"http://tyo-sender.helius-rpc.com/fast",
"http://lon-sender.helius-rpc.com/fast",
"http://sg-sender.helius-rpc.com/fast",
"https://sender.helius-rpc.com/fast",
];