Upgrade Guide v5.1
This document provides guidelines for node operators upgrading from Regen Ledger v5.0 to v5.1. For a general overview of the upgrade process, please refer to Upgrade Overview.
Upgrade Info
Regen Ledger v5.1
Regen Mainnet
- Upgrade Height:
10068550
Redwood Testnet
- Upgrade Height:
8341536
Upgrade Guidelines
Update Go
Go 1.19
or later is required.
For available downloads, see Go Downloads.
Option 1: Using Cosmovisor
Cosmovisor v1.0
or later is required.
The following instructions assume the cosmovisor
binary is already installed and cosmovisor
is set up as a systemd service. If this is not the case, please refer to Using Cosmovisor for instructions on how to install and set up cosmovisor
.
Auto-Download Not Recommended
Cosmovisor provides an auto-download option that prevents the need for the following steps in preparing for the upgrade. Although available to validators, this feature should only be used for non-validator nodes and validators should build the binary from source.
Build the upgrade binary (v5.1.2
) from source:
cd regen-ledger
git fetch --tags
git checkout v5.1.2
make build
Ensure the regen
binary has been built:
./build/regen version
You should see the following:
v5.1.2
Create a v5.1
directory and copy the upgrade binary (v5.1.2
) to the directory:
mkdir -p $HOME/.regen/cosmovisor/upgrades/v5.1/bin
cp ./build/regen $HOME/.regen/cosmovisor/upgrades/v5.1/bin
Ensure the right regen
binary has been placed in the directory:
$HOME/.regen/cosmovisor/upgrades/v5.1/bin/regen version
You should see the following:
v5.1.2
At the proposed block height, cosmovisor
will automatically stop the current binary (v5.0.x
), set the upgrade binary as the current binary (v5.1.2
), and then (depending on the cosmovisor settings) perform a backup and restart the node.
Option 2: Without Cosmovisor
Using cosmovisor
to perform the upgrade is not required. Node operators also have the option to manually update the regen
binary at the time of the upgrade.
First Build the upgrade binary (v5.1.2
) from source:
cd regen-ledger
git fetch --tags
git checkout v5.1.2
make install
Ensure the regen
binary has been updated:
regen version
You should see the following:
v5.1.2
When the chain halts at the proposed upgrade height, stop the current process running regen
.
Restart the process running regen
.