diff --git a/docs/cosmwasm/local/localosmosis.md b/docs/cosmwasm/local/localosmosis.md index 8e0b8a680..432aec096 100644 --- a/docs/cosmwasm/local/localosmosis.md +++ b/docs/cosmwasm/local/localosmosis.md @@ -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 ``` diff --git a/docs/osmosis-core/osmosisd.md b/docs/osmosis-core/osmosisd.md index c100b6a02..33ba3e277 100644 --- a/docs/osmosis-core/osmosisd.md +++ b/docs/osmosis-core/osmosisd.md @@ -60,14 +60,14 @@ 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 @@ -75,7 +75,7 @@ cd $HOME git clone https://github.com/osmosis-labs/osmosis cd osmosis -git checkout v11.0.1 +git checkout v29.0.0 make install ``` diff --git a/docs/overview/validate/joining-mainnet.md b/docs/overview/validate/joining-mainnet.md index c116f6e63..14c97591f 100644 --- a/docs/overview/validate/joining-mainnet.md +++ b/docs/overview/validate/joining-mainnet.md @@ -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 @@ -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 ``` diff --git a/docs/overview/validate/joining-testnet.md b/docs/overview/validate/joining-testnet.md index e0160e277..e40069cc0 100644 --- a/docs/overview/validate/joining-testnet.md +++ b/docs/overview/validate/joining-testnet.md @@ -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: @@ -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 ```