From bbd7b3d02478c1944994f7ad6aad506b04b4bfaf Mon Sep 17 00:00:00 2001 From: abel Date: Wed, 20 Sep 2023 11:15:13 -0300 Subject: [PATCH] (fix) Added port to endpoints where the port was missing, to have the same configuration in the Go SDK --- pyinjective/core/network.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pyinjective/core/network.py b/pyinjective/core/network.py index 930fafe0..39c4af65 100644 --- a/pyinjective/core/network.py +++ b/pyinjective/core/network.py @@ -218,11 +218,11 @@ def testnet(cls, node="lb"): cookie_assistant = BareMetalLoadBalancedCookieAssistant() use_secure_connection = True else: - lcd_endpoint = "https://testnet.lcd.injective.network" - tm_websocket_endpoint = "wss://testnet.tm.injective.network/websocket" - grpc_endpoint = "testnet.chain.grpc.injective.network" - grpc_exchange_endpoint = "testnet.exchange.grpc.injective.network" - grpc_explorer_endpoint = "testnet.explorer.grpc.injective.network" + lcd_endpoint = "https://testnet.lcd.injective.network:443" + tm_websocket_endpoint = "wss://testnet.tm.injective.network:443/websocket" + grpc_endpoint = "testnet.chain.grpc.injective.network:443" + grpc_exchange_endpoint = "testnet.exchange.grpc.injective.network:443" + grpc_explorer_endpoint = "testnet.explorer.grpc.injective.network:443" cookie_assistant = DisabledCookieAssistant() use_secure_connection = True