Skip to content

Commit 77c0688

Browse files
Merge pull request #291 from JeremyParish69/upd-to-v29
Update Osmosis Testnet and Mainnet to v29
2 parents 2e48331 + 005c080 commit 77c0688

File tree

4 files changed

+23
-23
lines changed

4 files changed

+23
-23
lines changed

docs/cosmwasm/local/localosmosis.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,13 +87,13 @@ cargo install -f beaker
8787

8888
#### Osmosis
8989

90-
Setup v12.x Osmosis
90+
Setup v29.x Osmosis
9191

9292
```bash
9393
cd $HOME
9494
git clone https://github.com/osmosis-labs/osmosis.git
9595
cd $HOME/osmosis
96-
git checkout v12.x
96+
git checkout v29.x
9797
make install
9898
source ~/.profile
9999
```

docs/osmosis-core/osmosisd.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,22 +60,22 @@ sudo apt install git build-essential ufw curl jq snapd --yes
6060
Install go:
6161

6262
```bash
63-
wget -q -O - https://git.io/vQhTU | bash -s -- --version 1.19.9
63+
wget -q -O - https://git.io/vQhTU | bash -s -- --version 1.22.11
6464
```
6565

6666
After installed, open new terminal to properly load go
6767

6868
## Install Osmosis Binary
6969

70-
Clone the osmosis repo, checkout and install v11.0.1:
70+
Clone the osmosis repo, checkout and install v29:
7171

7272

7373
```bash
7474
cd $HOME
7575
git clone https://github.com/osmosis-labs/osmosis
7676
cd osmosis
7777

78-
git checkout v11.0.1
78+
git checkout v29.0.0
7979

8080
make install
8181
```

docs/overview/validate/joining-mainnet.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -36,23 +36,23 @@ Download and place the genesis file in the osmosis config folder:
3636
wget -O ~/.osmosisd/config/genesis.json https://github.com/osmosis-labs/networks/raw/main/osmosis-1/genesis.json
3737
```
3838

39-
## Latest Version (V25.1.2) Upgrade Info
39+
## Latest Version (v29) Upgrade Info
4040

4141
### Go Requirement
4242

43-
You will need to be running go1.21.1 for this version of Osmosis. You can check if you are running go1.21.1 with the following command:
43+
You will need to be running go1.22.11 for this version of Osmosis. You can check if you are running go1.22.11 with the following command:
4444

4545
```{.sh}
4646
go version
4747
```
4848

49-
If this does not say go1.21.1, you need to upgrade/downgrade. One of the many ways to upgrade/downgrade to/from go1.21.1 on linux is as follows:
49+
If this does not say go1.22.11, you need to upgrade/downgrade. One of the many ways to upgrade/downgrade to/from go1.22.11 on linux is as follows:
5050

5151
```{.sh}
5252
sudo rm -rvf /usr/local/go/
53-
wget https://golang.org/dl/go1.21.1.linux-amd64.tar.gz
54-
sudo tar -C /usr/local -xzf go1.21.1.linux-amd64.tar.gz
55-
rm go1.21.1.linux-amd64.tar.gz
53+
wget https://golang.org/dl/go1.22.11.linux-amd64.tar.gz
54+
sudo tar -C /usr/local -xzf go1.22.11.linux-amd64.tar.gz
55+
rm go1.22.11.linux-amd64.tar.gz
5656
```
5757
### Memory Requirements
5858

@@ -267,15 +267,15 @@ To see live logs of the service:
267267
journalctl -u cosmovisor -f
268268
```
269269

270-
## Update Cosmovisor to V10
270+
## Update Cosmovisor to V29
271271

272-
If you want osmosisd to upgrade automatically from V9 to V10, do the following steps prior to the upgrade height (4713065):
272+
If you want osmosisd to upgrade automatically from V28 to V29, do the following steps prior to the upgrade height (33187000):
273273

274274
```{.sh}
275-
mkdir -p ~/.osmosisd/cosmovisor/upgrades/v9/bin
275+
mkdir -p ~/.osmosisd/cosmovisor/upgrades/v28/bin
276276
cd $HOME/osmosis
277277
git pull
278-
git checkout v10.0.0
278+
git checkout v29.0.0
279279
make build
280-
cp build/osmosisd ~/.osmosisd/cosmovisor/upgrades/v9/bin
280+
cp build/osmosisd ~/.osmosisd/cosmovisor/upgrades/v28/bin
281281
```

docs/overview/validate/joining-testnet.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ cosmovisor version
106106
osmosisd version
107107
```
108108

109-
These two command should both output 7.0.3
109+
These two command should both output 29.0.0
110110

111111
Reset private validator file to genesis state:
112112

@@ -218,20 +218,20 @@ To see live logs of the service:
218218
journalctl -u cosmovisor -f
219219
```
220220

221-
## Update Cosmovisor to V7
221+
## Update Cosmovisor to V29
222222

223-
If you want osmosisd to upgrade automatically from V6 to V7, do the following steps prior to the upgrade height (3215657):
223+
If you want osmosisd to upgrade automatically from V28 to V29, do the following steps prior to the upgrade height (27192200):
224224

225-
This step is only needed if syncing from genesis and haven't passed block 3215657 yet.
225+
This step is only needed if syncing from genesis and haven't passed block 27192200 yet.
226226

227227
```bash
228-
mkdir -p ~/.osmosisd/cosmovisor/upgrades/v7/bin
228+
mkdir -p ~/.osmosisd/cosmovisor/upgrades/v28/bin
229229
cd $HOME/osmosis
230230
git pull
231-
git checkout v10.0.1
231+
git checkout v29.0.0
232232
make build
233233
systemctl stop cosmovisor.service
234-
cp build/osmosisd ~/.osmosisd/cosmovisor/upgrades/v7/bin
234+
cp build/osmosisd ~/.osmosisd/cosmovisor/upgrades/v28/bin
235235
systemctl start cosmovisor.service
236236
cd $HOME
237237
```

0 commit comments

Comments
 (0)