Upgrade height: 5215651. Please don`t upgrade before the specified height. No matching upgrade proposal found for the specified height
Manual upgrade
cd $HOME
rm -rf bin
mkdir bin
cd $HOME/bin
curl -LO https://github.com/empe-io/empe-chain-releases/raw/master/v0.4.0/emped_v0.4.0_linux_amd64.tar.gz
tar -xvf emped_v0.4.0_linux_amd64.tar.gz
chmod +x $HOME/bin/emped
sudo mv $HOME/bin/emped $(which emped)
sudo systemctl restart emped && sudo journalctl -u emped -f
Auto upgrade
Don't kill the session with CTRL+C before update is completed, if you want to disconnect the session use CTRL+B D
cd $HOME && \
rm -rf bin && \
mkdir bin && \
cd $HOME/bin && \
curl -LO https://github.com/empe-io/empe-chain-releases/raw/master/v0.4.0/emped_v0.4.0_linux_amd64.tar.gz && \
tar -xvf emped_v0.4.0_linux_amd64.tar.gz && \
chmod +x $HOME/bin/emped && \
old_bin_path=$(which emped) && \
home_path=$HOME && \
rpc_port=$(grep -m 1 -oP '^laddr = "\K[^"]+' "$HOME/.empe-chain/config/config.toml" | cut -d ':' -f 3) && \
[[ -z "$rpc_port" ]] && rpc_port=$(grep -oP 'node = "tcp://[^:]+:\K\d+' "$HOME/.empe-chain/config/client.toml") ; \
tmux new -s empeiria-upgrade "sudo bash -c 'curl -s https://raw.githubusercontent.com/itrocket-team/testnet_guides/main/utils/autoupgrade/upgrade.sh | bash -s -- -u \"5215651\" -b emped -n \"$HOME/bin/emped\" -o \"$old_bin_path\" -h \"$home_path\" -p \"undefined\" -r \"$rpc_port\"'"