1
- # Connect to the ` gaia-6001 ` Testnet
1
+ # Connect to the ` gaia-6002 ` Testnet
2
2
3
3
Note: We are aware this documentation is sub-par. We are working to
4
4
improve the tooling and the documentation to make this process as painless as
@@ -23,15 +23,15 @@ Next, let's install the testnet's version of the Cosmos SDK.
23
23
mkdir -p $GOPATH/src/github.com/cosmos
24
24
cd $GOPATH/src/github.com/cosmos
25
25
git clone https://github.com/cosmos/cosmos-sdk
26
- cd cosmos-sdk && git checkout v0.18 .0
26
+ cd cosmos-sdk && git checkout v0.19 .0
27
27
make get_tools && make get_vendor_deps && make install
28
28
```
29
29
30
30
That will install the ` gaiad ` and ` gaiacli ` binaries. Verify that everything is OK:
31
31
32
32
```
33
33
gaiad version
34
- 0.18 .0-eceb56b7
34
+ 0.19 .0-<commit>
35
35
```
36
36
37
37
### Node Setup
@@ -76,7 +76,7 @@ Now it is time to upgrade the software:
76
76
77
77
```
78
78
cd $GOPATH/src/github.com/cosmos/cosmos-sdk
79
- git fetch --all && git checkout v0.18 .0
79
+ git fetch --all && git checkout v0.19 .0
80
80
make update_tools && make get_vendor_deps && make install
81
81
```
82
82
@@ -90,7 +90,7 @@ Copy the testnet's `genesis.json` file and place it in `gaiad`'s config director
90
90
91
91
```
92
92
mkdir -p $HOME/.gaiad/config
93
- cp -a $GOPATH/src/github.com/cosmos/cosmos-sdk/cmd/gaia/testnets/gaia-6001 /genesis.json $HOME/.gaiad/config/genesis.json
93
+ cp -a $GOPATH/src/github.com/cosmos/cosmos-sdk/cmd/gaia/testnets/gaia-6002 /genesis.json $HOME/.gaiad/config/genesis.json
94
94
```
95
95
96
96
### Add Seed Nodes
@@ -99,7 +99,7 @@ Your node needs to know how to find peers. You'll need to add healthy seed nodes
99
99
100
100
```
101
101
# Comma separated list of seed nodes to connect to
102
- seeds = "38aa9bec3998f12ae9088b21a2d910d19d565c27@gaia-6001 .coinculture.net:46656,[email protected] :46656,[email protected] :46656,[email protected] :46656"
102
+ seeds = "38aa9bec3998f12ae9088b21a2d910d19d565c27@gaia-6002 .coinculture.net:46656,[email protected] :46656,[email protected] :46656,[email protected] :46656"
103
103
```
104
104
105
105
You can also [ ask other validators] ( https://riot.im/app/#/room/#cosmos_validators:matrix.org ) for a persistent peer and add it under the ` persistent_peers ` key. For more information on seeds and peers, [ read this] ( https://github.com/tendermint/tendermint/blob/develop/docs/using-tendermint.md#peers ) .
0 commit comments