From 23a45e611c3e203e9ba9a754f891213d39e2cd41 Mon Sep 17 00:00:00 2001 From: VariantConst <50503766+VariantConst@users.noreply.github.com> Date: Fri, 27 Feb 2026 23:49:38 +0800 Subject: [PATCH] Change Helius endpoints from HTTPS to HTTP Change Helius endpoints from HTTPS to HTTP --- src/constants/swqos.rs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/constants/swqos.rs b/src/constants/swqos.rs index c662f91..c60b3bc 100755 --- a/src/constants/swqos.rs +++ b/src/constants/swqos.rs @@ -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", ];