Upgrade height: 1917414. Please don`t upgrade before the specified height.
Manual upgrade
cd $HOME
wget -O pellcored https://github.com/0xPellNetwork/network-config/releases/download/v1.3.0/pellcored-1.3.0-linux-amd64
chmod +x pellcored
sudo mv $HOME/pellcored $(which pellcored)
sudo systemctl restart pellcored && sudo journalctl -u pellcored -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
cd $HOME && \
wget -O pellcored https://github.com/0xPellNetwork/network-config/releases/download/v1.3.0/pellcored-1.3.0-linux-amd64 && \
chmod +x pellcored && \
old_bin_path=$(which pellcored) && \
home_path=$HOME && \
rpc_port=$(grep -m 1 -oP '^laddr = "\K[^"]+' "$HOME/.pellcored/config/config.toml" | cut -d ':' -f 3) && \
[[ -z "$rpc_port" ]] && rpc_port=$(grep -oP 'node = "tcp://[^:]+:\K\d+' "$HOME/.pellcored/config/client.toml") ; \
tmux new -s pell-upgrade "sudo bash -c 'curl -s https://raw.githubusercontent.com/itrocket-team/testnet_guides/main/utils/autoupgrade/upgrade.sh | bash -s -- -u \"1917414\" -b pellcored -n \"$HOME/pellcored\" -o \"$old_bin_path\" -h \"$home_path\" -p \"https://pell-testnet-api.itrocket.net/cosmos/gov/v1/proposals/16\" -r \"$rpc_port\"'"