Skip to content

Commit

Permalink
(fix) Updated devnet, devnet-1 and local Network configuration to sol…
Browse files Browse the repository at this point in the history
…ve an issue with the latest gRPC version (v1.64.1 vs v1.63.2)
  • Loading branch information
aarmoa committed Dec 19, 2024
1 parent 8712c31 commit 485932c
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions client/common/network.go
Original file line number Diff line number Diff line change
Expand Up @@ -211,10 +211,10 @@ func LoadNetwork(name, node string) Network {
return Network{
LcdEndpoint: "http://localhost:10337",
TmEndpoint: "http://localhost:26657",
ChainGrpcEndpoint: "tcp://localhost:9900",
ChainStreamGrpcEndpoint: "tcp://localhost:9999",
ExchangeGrpcEndpoint: "tcp://localhost:9910",
ExplorerGrpcEndpoint: "tcp://localhost:9911",
ChainGrpcEndpoint: "localhost:9900",
ChainStreamGrpcEndpoint: "localhost:9999",
ExchangeGrpcEndpoint: "localhost:9910",
ExplorerGrpcEndpoint: "localhost:9911",
ChainId: "injective-1",
FeeDenom: "inj",
Name: "local",
Expand All @@ -228,10 +228,10 @@ func LoadNetwork(name, node string) Network {
return Network{
LcdEndpoint: "https://devnet-1.lcd.injective.dev",
TmEndpoint: "https://devnet-1.tm.injective.dev:443",
ChainGrpcEndpoint: "tcp://devnet-1.grpc.injective.dev:9900",
ChainStreamGrpcEndpoint: "tcp://devnet-1.grpc.injective.dev:9999",
ExchangeGrpcEndpoint: "tcp://devnet-1.api.injective.dev:9910",
ExplorerGrpcEndpoint: "tcp://devnet-1.api.injective.dev:9911",
ChainGrpcEndpoint: "devnet-1.grpc.injective.dev:9900",
ChainStreamGrpcEndpoint: "devnet-1.grpc.injective.dev:9999",
ExchangeGrpcEndpoint: "devnet-1.api.injective.dev:9910",
ExplorerGrpcEndpoint: "devnet-1.api.injective.dev:9911",
ChainId: "injective-777",
FeeDenom: "inj",
Name: "devnet-1",
Expand All @@ -244,10 +244,10 @@ func LoadNetwork(name, node string) Network {
return Network{
LcdEndpoint: "https://devnet.lcd.injective.dev",
TmEndpoint: "https://devnet.tm.injective.dev:443",
ChainGrpcEndpoint: "tcp://devnet.injective.dev:9900",
ChainStreamGrpcEndpoint: "tcp://devnet.injective.dev:9999",
ExchangeGrpcEndpoint: "tcp://devnet.injective.dev:9910",
ExplorerGrpcEndpoint: "tcp://devnet.api.injective.dev:9911",
ChainGrpcEndpoint: "devnet.injective.dev:9900",
ChainStreamGrpcEndpoint: "devnet.injective.dev:9999",
ExchangeGrpcEndpoint: "devnet.injective.dev:9910",
ExplorerGrpcEndpoint: "devnet.api.injective.dev:9911",
ChainId: "injective-777",
FeeDenom: "inj",
Name: "devnet",
Expand Down

0 comments on commit 485932c

Please sign in to comment.