Skip to content

Latest commit

 

History

History
48 lines (31 loc) · 1.76 KB

v0.2.12 Upgrade.md

File metadata and controls

48 lines (31 loc) · 1.76 KB

v0.2.12 Upgrade

The upgrade is scheduled for block 2057480, which should be about 14:00PM UTC on 27th Sep. 2023.

These instructions assume you are running Cosmovisor. Most mainnet validators are running Cosmovisor, and a setup guide can be found here.

NOTE: Cosmovisor will preform a full backup unless UNSAFE_SKIP_BACKUP=true is set as an environment variable.

# make a dir if you've not
mkdir -p $DAEMON_HOME/cosmovisor/upgrades/v0.2.12/bin


# if you are using cosmovisor you then need to download this new binary
cd $DAEMON_HOME/cosmovisor/upgrades/v0.2.12/bin

## amd64
wget https://raw.githubusercontent.com/UptickNetwork/uptick-testnet/main/origin_1170-1/lib/uptickd-linux-amd64-v0.2.12.tar.gz
tar -zxvf uptickd-linux-amd64-v0.2.12.tar.gz && chmod +x uptickd

## arm64
wget https://raw.githubusercontent.com/UptickNetwork/uptick-testnet/main/origin_1170-1/lib/uptickd-linux-arm64-v0.2.12.tar.gz
tar -zxvf uptickd-linux-arm64-v0.2.12.tar.gz && chmod +x uptickd

# View version- should be v0.2.12
$DAEMON_HOME/cosmovisor/upgrades/v0.2.12/bin/uptickd version

If you are not using Cosmovisor, then the chain will halt at the target height and you can manually switch over.

# download this new binary
cd $GOPATH/bin

## amd64
wget https://raw.githubusercontent.com/UptickNetwork/uptick-testnet/main/origin_1170-1/lib/uptickd-linux-amd64-v0.2.12.tar.gz
tar -zxvf uptickd-linux-amd64-v0.2.12.tar.gz && chmod +x uptickd

## arm64
wget https://raw.githubusercontent.com/UptickNetwork/uptick-testnet/main/origin_1170-1/lib/uptickd-linux-arm64-v0.2.12.tar.gz
tar -zxvf uptickd-linux-arm64-v0.2.12.tar.gz && chmod +x uptickd

# View version- should be v0.2.12
uptickd version