Skip to content

Commit dfd42aa

Browse files
Updated go version details
1 parent c2fa874 commit dfd42aa

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

docs/overview/validate/joining-mainnet.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,21 +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 (V10) Upgrade Info
39+
## Latest Version (V25.1.2) Upgrade Info
4040

4141
### Go Requirement
4242

43-
You will need to be running go1.18 for this version of Osmosis. You can check if you are running go1.18 with the following command:
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:
4444

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

49-
If this does not say go1.18, you need to upgrade/downgrade. One of the many ways to upgrade/downgrade to/from go 1.18 on linux is as follows:
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:
5050

5151
```{.sh}
52-
wget -q -O - https://git.io/vQhTU | bash -s -- --remove
53-
wget -q -O - https://git.io/vQhTU | bash -s -- --version 1.18
52+
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
5456
```
5557
### Memory Requirements
5658

@@ -276,4 +278,4 @@ git pull
276278
git checkout v10.0.0
277279
make build
278280
cp build/osmosisd ~/.osmosisd/cosmovisor/upgrades/v9/bin
279-
```
281+
```

0 commit comments

Comments
 (0)