Skip to content

Commit 9e37070

Browse files
authored
Merge pull request #60 from bandprotocol/update-testnet-rc3
Docs: update joining testnet doc to use rc3 binary
2 parents 9ac6b94 + dab5bbb commit 9e37070

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

docs/node-validators/02-run-node/02-joining-testnet/02-installation.md

+12-10
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ sudo apt-get upgrade -y && \
4646
sudo apt-get install -y build-essential curl wget jq
4747
```
4848

49-
- Go 1.22.3
49+
- Go 1.24.2
5050
```bash
51-
# Install Go 1.22.3
52-
wget https://go.dev/dl/go1.22.3.linux-amd64.tar.gz
53-
tar xf go1.22.3.linux-amd64.tar.gz
51+
# Install Go 1.24.2
52+
wget https://go.dev/dl/go1.24.2.linux-amd64.tar.gz
53+
tar xf go1.24.2.linux-amd64.tar.gz
5454
sudo mv go /usr/local/go
5555

5656
# Set Go path to $PATH variable
@@ -67,10 +67,10 @@ Install [Docker for Ubuntu](https://docs.docker.com/engine/install/ubuntu/)
6767
### Step 1.2: Clone & Install Band V3 binary
6868

6969
```bash
70-
# Clone Band binary version v3.0.0-rc2
70+
# Clone Band binary version v3.0.0-rc3
7171
git clone https://github.com/bandprotocol/chain
7272
cd chain
73-
git checkout v3.0.0-rc2
73+
git checkout v3.0.0-rc3
7474

7575
# Install binaries to $GOPATH/bin
7676
make install
@@ -137,8 +137,6 @@ sed -E -i \
137137

138138
### Step 1.5: Setup State Sync config
139139

140-
**Note:** If you want to sync blocks traditionally from genesis, you can skip this step.
141-
142140
```bash
143141
# Get trust height and trust hash
144142
LATEST_HEIGHT=$(curl -s https://rpc.band-v3-testnet.bandchain.org/block | jq -r .result.block.header.height);
@@ -195,6 +193,10 @@ go install cosmossdk.io/tools/cosmovisor/cmd/cosmovisor@v1.5.0
195193
mkdir -p $HOME/.band/cosmovisor/genesis/bin
196194
mkdir -p $HOME/.band/cosmovisor/upgrades
197195
cp $HOME/go/bin/bandd $HOME/.band/cosmovisor/genesis/bin
196+
197+
# Setup folder and provide bandd binary for Cosmovisor Upgrades
198+
mkdir -p $HOME/.band/cosmovisor/upgrades/v3_rc3/bin
199+
cp $HOME/go/bin/bandd $DAEMON_HOME/cosmovisor/upgrades/v3_rc3/bin
198200
```
199201

200202
### Step 2.3: Update Bandchain service
@@ -245,11 +247,11 @@ There is an update in the executor configuration. You can **set up a new executo
245247

246248
**Note** You can use the old executor on laozi-testnet6 (no change from that version)
247249

248-
Then, check Yoda version that we have compiled. It should be `v3.0.0-rc2`.
250+
Then, check Yoda version that we have compiled. It should be `v3.0.0-rc3`.
249251

250252
```bash
251253
yoda version
252-
# v3.0.0-rc2
254+
# v3.0.0-rc3
253255
```
254256

255257
### Step 3.2: Configure Yoda

0 commit comments

Comments
 (0)