Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/cosmwasm/local/localosmosis.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,13 @@ cargo install -f beaker

#### Osmosis

Setup v12.x Osmosis
Setup v29.x Osmosis

```bash
cd $HOME
git clone https://github.com/osmosis-labs/osmosis.git
cd $HOME/osmosis
git checkout v12.x
git checkout v29.x
make install
source ~/.profile
```
Expand Down
6 changes: 3 additions & 3 deletions docs/osmosis-core/osmosisd.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,22 +60,22 @@ sudo apt install git build-essential ufw curl jq snapd --yes
Install go:

```bash
wget -q -O - https://git.io/vQhTU | bash -s -- --version 1.19.9
wget -q -O - https://git.io/vQhTU | bash -s -- --version 1.22.11
```

After installed, open new terminal to properly load go

## Install Osmosis Binary

Clone the osmosis repo, checkout and install v11.0.1:
Clone the osmosis repo, checkout and install v29:


```bash
cd $HOME
git clone https://github.com/osmosis-labs/osmosis
cd osmosis

git checkout v11.0.1
git checkout v29.0.0

make install
```
Expand Down
22 changes: 11 additions & 11 deletions docs/overview/validate/joining-mainnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,23 +36,23 @@ Download and place the genesis file in the osmosis config folder:
wget -O ~/.osmosisd/config/genesis.json https://github.com/osmosis-labs/networks/raw/main/osmosis-1/genesis.json
```

## Latest Version (V25.1.2) Upgrade Info
## Latest Version (v29) Upgrade Info

### Go Requirement

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:
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:

```{.sh}
go version
```

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:
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:

```{.sh}
sudo rm -rvf /usr/local/go/
wget https://golang.org/dl/go1.21.1.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.21.1.linux-amd64.tar.gz
rm go1.21.1.linux-amd64.tar.gz
wget https://golang.org/dl/go1.22.11.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.22.11.linux-amd64.tar.gz
rm go1.22.11.linux-amd64.tar.gz
```
### Memory Requirements

Expand Down Expand Up @@ -267,15 +267,15 @@ To see live logs of the service:
journalctl -u cosmovisor -f
```

## Update Cosmovisor to V10
## Update Cosmovisor to V29

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

```{.sh}
mkdir -p ~/.osmosisd/cosmovisor/upgrades/v9/bin
mkdir -p ~/.osmosisd/cosmovisor/upgrades/v28/bin
cd $HOME/osmosis
git pull
git checkout v10.0.0
git checkout v29.0.0
make build
cp build/osmosisd ~/.osmosisd/cosmovisor/upgrades/v9/bin
cp build/osmosisd ~/.osmosisd/cosmovisor/upgrades/v28/bin
```
14 changes: 7 additions & 7 deletions docs/overview/validate/joining-testnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ cosmovisor version
osmosisd version
```

These two command should both output 7.0.3
These two command should both output 29.0.0

Reset private validator file to genesis state:

Expand Down Expand Up @@ -218,20 +218,20 @@ To see live logs of the service:
journalctl -u cosmovisor -f
```

## Update Cosmovisor to V7
## Update Cosmovisor to V29

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

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

```bash
mkdir -p ~/.osmosisd/cosmovisor/upgrades/v7/bin
mkdir -p ~/.osmosisd/cosmovisor/upgrades/v28/bin
cd $HOME/osmosis
git pull
git checkout v10.0.1
git checkout v29.0.0
make build
systemctl stop cosmovisor.service
cp build/osmosisd ~/.osmosisd/cosmovisor/upgrades/v7/bin
cp build/osmosisd ~/.osmosisd/cosmovisor/upgrades/v28/bin
systemctl start cosmovisor.service
cd $HOME
```