diff --git a/README.md b/README.md index a8be4b41..8d256565 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Providing a base layer currency to settle interoperable payments at high through Proudly building on the work of [Cosmos](https://github.com/cosmos/cosmos-sdk) and [Interledger](https://github.com/interledger/rfcs). # Project Status -[![Testnet](https://img.shields.io/badge/testnet-live-brightgreen.svg)](http://validator.connector.kava.io:26657/abci_info) +[![Testnet](https://img.shields.io/badge/testnet-live-brightgreen.svg)](http://validator.connector.kava.io:17127/abci_info) [![Go Report Card](https://goreportcard.com/badge/github.com/kava-labs/kava)](https://goreportcard.com/report/github.com/kava-labs/kava) [![GitHub](https://img.shields.io/github/license/kava-labs/kava.svg)](https://github.com/Kava-Labs/kava/blob/master/LICENSE.md) diff --git a/docker-compose.yml b/docker-compose.yml index 4a4a2ddd..c62d9e03 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4,7 +4,7 @@ services: image: kava/kava command: ["kvd", "start"] ports: - - 26657:26657 + - 17127:17127 volumes: - ~/.kvd:/root/.kvd - ~/.kvcli:/root/.kvcli diff --git a/docs/setup.md b/docs/setup.md index fc5f5ee6..50e09ad2 100644 --- a/docs/setup.md +++ b/docs/setup.md @@ -73,7 +73,7 @@ Or, to start in the background and capture output to a log file: To see the output of the log: tail -f kvd.log -> Note: It might take a while to fully sync. Check the latest block height [here](http://validator.connector.kava.io:26657/abci_info). +> Note: It might take a while to fully sync. Check the latest block height [here](http://validator.connector.kava.io:17127/abci_info). ## Become a Validator diff --git a/internal/lcd/root.go b/internal/lcd/root.go index 989bd6d0..50d22bdb 100644 --- a/internal/lcd/root.go +++ b/internal/lcd/root.go @@ -65,7 +65,7 @@ func ServeCommand(cdc *wire.Codec) *cobra.Command { cmd.Flags().String(flagListenAddr, "tcp://localhost:1317", "The address for the server to listen on") cmd.Flags().String(flagCORS, "", "Set the domains that can make CORS requests (* for all)") cmd.Flags().String(client.FlagChainID, "", "The chain ID to connect to") - cmd.Flags().String(client.FlagNode, "tcp://localhost:26657", "Address of the node to connect to") + cmd.Flags().String(client.FlagNode, "tcp://localhost:17127", "Address of the node to connect to") cmd.Flags().Int(flagMaxOpenConnections, 1000, "The number of maximum open connections") return cmd