@@ -46,11 +46,11 @@ sudo apt-get upgrade -y && \
46
46
sudo apt-get install -y build-essential curl wget jq
47
47
```
48
48
49
- - Go 1.22.3
49
+ - Go 1.24.2
50
50
``` 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
54
54
sudo mv go /usr/local/go
55
55
56
56
# Set Go path to $PATH variable
@@ -67,10 +67,10 @@ Install [Docker for Ubuntu](https://docs.docker.com/engine/install/ubuntu/)
67
67
### Step 1.2: Clone & Install Band V3 binary
68
68
69
69
``` bash
70
- # Clone Band binary version v3.0.0-rc2
70
+ # Clone Band binary version v3.0.0-rc3
71
71
git clone https://github.com/bandprotocol/chain
72
72
cd chain
73
- git checkout v3.0.0-rc2
73
+ git checkout v3.0.0-rc3
74
74
75
75
# Install binaries to $GOPATH/bin
76
76
make install
@@ -137,8 +137,6 @@ sed -E -i \
137
137
138
138
### Step 1.5: Setup State Sync config
139
139
140
- ** Note:** If you want to sync blocks traditionally from genesis, you can skip this step.
141
-
142
140
``` bash
143
141
# Get trust height and trust hash
144
142
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
195
193
mkdir -p $HOME /.band/cosmovisor/genesis/bin
196
194
mkdir -p $HOME /.band/cosmovisor/upgrades
197
195
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
198
200
```
199
201
200
202
### 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
245
247
246
248
** Note** You can use the old executor on laozi-testnet6 (no change from that version)
247
249
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 ` .
249
251
250
252
``` bash
251
253
yoda version
252
- # v3.0.0-rc2
254
+ # v3.0.0-rc3
253
255
```
254
256
255
257
### Step 3.2: Configure Yoda
0 commit comments