You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/docs/hub-tutorials/join-testnet.md
+20-17
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ order: 3
5
5
6
6
This tutorial will provide all necessary instructions for joining the current public testnet. If you're interested in more advanced configuration and synchronization options, see [Join Mainnet](./join-mainnet.md) for a detailed walkthrough.
7
7
8
-
* Current Version: v14
8
+
* Current Version: v15
9
9
* Chain ID: `theta-testnet-001`
10
10
11
11
## Background
@@ -20,10 +20,13 @@ The table below shows all past and upcoming versions of the public testnet.
You will need to install and configure the Gaia binary using the script below. The Cosmos Hub Public Testnet is running Gaia [`v13.0.0`](https://github.com/cosmos/gaia/releases/tag/v13.0.0).
82
+
You will need to install and configure the Gaia binary using the script below. The Cosmos Hub Public Testnet is running Gaia [`v15.0.0-rc0`](https://github.com/cosmos/gaia/releases/tag/v15.0.0-rc0).
80
83
81
84
* For up-to-date endpoints like seeds and state sync RPC servers, visit the [testnets repository](https://github.com/cosmos/testnets/tree/master/public).
82
85
@@ -87,7 +90,7 @@ cd $HOME
87
90
git clone https://github.com/cosmos/gaia
88
91
cd gaia
89
92
# To sync from genesis, comment out the next line.
90
-
git checkout v13.0.0
93
+
git checkout v15.0.0-rc0
91
94
# To sync from genesis, uncomment the next line and skip the State Sync Setup section.
To follow the service log, run `journalctl -fu gaiad` or `journalctl -fu cosmovisor`.
223
226
224
227
* If you are using State Sync, the chain will start syncing once a snapshot is found and verified. Syncing to the current block height should take less than half an hour.
225
-
* If you are using Fast Sync, the chain will start syncing once the first block after genesis is found among the peers. **Syncing to the current block height will take several days**.
228
+
* If you are using Block Sync, the chain will start syncing once the first block after genesis is found among the peers. **Syncing to the current block height will take several days**.
226
229
227
230
## Create a Validator (Optional)
228
231
@@ -245,7 +248,7 @@ There are three ways you can update the binary:
245
248
246
249
The instructions below are for option 2. For more information on auto-download with Cosmovisor, see the relevant [documentation](https://github.com/cosmos/cosmos-sdk/tree/main/tools/cosmovisor#auto-download) in the Cosmos SDK repo.
247
250
248
-
If the environment variable `DAEMON_ALLOW_DOWNLOAD_BINARIES` is set to `false`, Cosmovisor will look for the new binary in a folder that matches the name of the upgrade specified in the software upgrade proposal. For the `v13` upgrade, the expected folder structure would look as follows:
251
+
If the environment variable `DAEMON_ALLOW_DOWNLOAD_BINARIES` is set to `false`, Cosmovisor will look for the new binary in a folder that matches the name of the upgrade specified in the software upgrade proposal. For the `v16` upgrade, the expected folder structure would look as follows:
249
252
250
253
```shell
251
254
.gaia
@@ -255,27 +258,27 @@ If the environment variable `DAEMON_ALLOW_DOWNLOAD_BINARIES` is set to `false`,
255
258
│ └── bin
256
259
| └── gaiad
257
260
└── upgrades
258
-
└── v13
261
+
└── v16
259
262
└── bin
260
263
└── gaiad
261
264
```
262
265
263
266
Prepare the upgrade directory
264
267
265
268
```shell
266
-
mkdir -p ~/.gaia/cosmovisor/upgrades/v14/bin
269
+
mkdir -p ~/.gaia/cosmovisor/upgrades/v16/bin
267
270
```
268
271
269
272
Download and install the new binary version.
270
273
271
274
```shell
272
275
cd$HOME/gaia
273
276
git pull
274
-
git checkout v13.0.0-rc0
277
+
git checkout v16.0.0-rc0
275
278
make install
276
279
277
-
# Copy the new binary to the v13 upgrade directory
When the upgrade height is reached, Cosmovisor will stop the gaiad binary, copy the new binary to the `current/bin` folder and restart. After a few minutes, the node should start syncing blocks using the new binary.
0 commit comments