forked from cosmos/cosmos-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* deprecate gaia testnets dir for testnets repo * update docs for gaia-7002
- Loading branch information
Showing
4 changed files
with
29 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,7 +52,7 @@ Now it is time to upgrade the software: | |
|
||
```bash | ||
cd $GOPATH/src/github.com/cosmos/cosmos-sdk | ||
git fetch --all && git checkout v0.19.0 | ||
git fetch --all && git checkout v0.23.0 | ||
make update_tools && make get_vendor_deps && make install | ||
``` | ||
|
||
|
@@ -62,11 +62,11 @@ Your full node has been cleanly upgraded! | |
|
||
### Copy the Genesis File | ||
|
||
Copy the testnet's `genesis.json` file and place it in `gaiad`'s config directory. | ||
Fetch the testnet's `genesis.json` file into `gaiad`'s config directory. | ||
|
||
```bash | ||
mkdir -p $HOME/.gaiad/config | ||
cp -a $GOPATH/src/github.com/cosmos/cosmos-sdk/cmd/gaia/testnets/gaia-6002/genesis.json $HOME/.gaiad/config/genesis.json | ||
curl https://raw.githubusercontent.com/cosmos/testnets/master/gaia-7002/genesis.json > $HOME/.gaiad/config/genesis.json | ||
``` | ||
|
||
### Add Seed Nodes | ||
|
@@ -75,7 +75,7 @@ Your node needs to know how to find peers. You'll need to add healthy seed nodes | |
|
||
```toml | ||
# Comma separated list of seed nodes to connect to | ||
seeds = "38aa9bec3998f12ae9088b21a2d910d19d565c27@gaia-6002.coinculture.net:46656,[email protected]:46656,[email protected]:46656,[email protected]:46656" | ||
seeds = "718145d422a823fd2a4e1e36e91b92bb0c4ddf8e@gaia-testnet.coinculture.net:26656,[email protected]:26656,7c8b8fd03577cd4817f5be1f03d506f879df98d8@gaia-7000-seed1.interblock.io:26656,a28737ff02391a6e00a1d3b79befd57e68e8264c@gaia-7000-seed2.interblock.io:26656,987ffd26640cd03d08ed7e53b24dfaa7956e612d@gaia-7000-seed3.interblock.io:26656" | ||
``` | ||
|
||
If those seeds aren't working, you can find more seeds and persistent peers on the [Cosmos Explorer](https://explorecosmos.network/nodes). Open the the `Full Nodes` pane and select nodes that do not have private (`10.x.x.x`) or [local IP addresses](https://en.wikipedia.org/wiki/Private_network). The `Persistent Peer` field contains the connection string. For best results use 4-6. | ||
|