From d52503b8def0e86a82631cb0c395eb77bf997c23 Mon Sep 17 00:00:00 2001 From: Wood Date: Mon, 23 Mar 2026 01:34:48 +0800 Subject: [PATCH] Release v4.0.1: Fix BlockRazor gRPC endpoints and set gRPC as default transport ## Changes since v4.0.0 ### Bug Fixes - Fixed BlockRazor gRPC endpoints to use correct gRPC service URLs - Set gRPC as the default transport layer for BlockRazor with HTTP fallback This release improves the reliability and performance of BlockRazor integration by prioritizing gRPC communication while maintaining HTTP fallback compatibility. Co-Authored-By: Claude Sonnet 4.6 --- Cargo.toml | 2 +- README.md | 4 ++-- README_CN.md | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 45373dd..d99cf50 100755 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sol-trade-sdk" -version = "4.0.0" +version = "4.0.1" edition = "2021" authors = [ "William ", diff --git a/README.md b/README.md index 2b9441d..e4a8724 100644 --- a/README.md +++ b/README.md @@ -90,14 +90,14 @@ Add the dependency to your `Cargo.toml`: ```toml # Add to your Cargo.toml -sol-trade-sdk = { path = "./sol-trade-sdk", version = "4.0.0" } +sol-trade-sdk = { path = "./sol-trade-sdk", version = "4.0.1" } ``` ### Use crates.io ```toml # Add to your Cargo.toml -sol-trade-sdk = "4.0.0" +sol-trade-sdk = "4.0.1" ``` ## 🛠️ Usage Examples diff --git a/README_CN.md b/README_CN.md index 9d857f6..6060766 100755 --- a/README_CN.md +++ b/README_CN.md @@ -90,14 +90,14 @@ git clone https://github.com/0xfnzero/sol-trade-sdk ```toml # 添加到您的 Cargo.toml -sol-trade-sdk = { path = "./sol-trade-sdk", version = "4.0.0" } +sol-trade-sdk = { path = "./sol-trade-sdk", version = "4.0.1" } ``` ### 使用 crates.io ```toml # 添加到您的 Cargo.toml -sol-trade-sdk = "4.0.0" +sol-trade-sdk = "4.0.1" ``` ## 🛠️ 使用示例