📬Updates

After update you can check prevotes/precommits status

FOLDER=.warden

# find out RPC port
echo -e "\033[0;32m$(grep -A 3 "\[rpc\]" ~/$FOLDER/config/config.toml | egrep -o ":[0-9]+")\033[0m"

PORT=<enter_your_port>

curl -s localhost:$PORT/consensus_state | jq '.result.round_state.height_vote_set[0].prevotes_bit_array' && \
curl -s localhost:$PORT/consensus_state | jq '.result.round_state.height_vote_set[0].precommits_bit_array'

Updates are available for information. Boot via State sync or Snapshot to avoid installing all updates. In this case, you must use the actual version of the binary file and genesis

UPD 🕊 on v0.4.1 (Update Height: 1675700)

cd $HOME/wardenprotocol
wget https://github.com/warden-protocol/wardenprotocol/releases/download/v0.4.1/wardend_Linux_x86_64.zip
unzip wardend_Linux_x86_64.zip
rm -rf wardend_Linux_x86_64.zip
chmod +x wardend
$HOME/wardenprotocol/wardend version --long | grep -e version -e commit
# version: 0.4.1
# commit: 5a8cd6e89d5931cdc131b786d1157431a8b27dc5

# AFTER STOPPING THE NETWORK ON THE REQUIRED BLOCK!
systemctl stop wardend
cp $HOME/.warden/data/priv_validator_state.json $HOME/.warden/priv_validator_state.json.backup

mv $HOME/wardenprotocol/wardend $(which wardend)
wardend version --long | grep -e version -e commit
# version: 0.4.1

UPD 🕊 on v0.4.2 (Update Height: 1965400)

cd $HOME/wardenprotocol
wget https://github.com/warden-protocol/wardenprotocol/releases/download/v0.4.2/wardend_Linux_x86_64.zip
unzip wardend_Linux_x86_64.zip
rm -rf wardend_Linux_x86_64.zip
chmod +x wardend
$HOME/wardenprotocol/wardend version --long | grep -e version -e commit
# version: 0.4.2
# commit: 0bfb022a96b5da6e7cf5c348bdb17d0d4d62195b

# AFTER STOPPING THE NETWORK ON THE REQUIRED BLOCK!
systemctl stop wardend
cp $HOME/.warden/data/priv_validator_state.json $HOME/.warden/priv_validator_state.json.backup

mv $HOME/wardenprotocol/wardend $(which wardend)
wardend version --long | grep -e version -e commit
# version: 0.4.2

Last updated