Skip to content

Commit

Permalink
(fix) Added port to endpoints where the port was missing, to have the…
Browse files Browse the repository at this point in the history
… same configuration in the Go SDK
  • Loading branch information
abel committed Sep 20, 2023
1 parent 9ceb008 commit bbd7b3d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pyinjective/core/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit bbd7b3d

Please sign in to comment.