📬Updates

After update you can check prevotes/precommits status

FOLDER=.junction

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

PORT=<enter your port>

# Checking prevotes/precommits. Useful for updates
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.6.0 (Update Height: )

cd $HOME/archway
git pull
git checkout v1.0.0-rc.2
make build
$HOME/archway/build/archwayd version --long | grep -e version -e commit
# 1.0.0-rc.2
# commit: 209cd16af9bea784385ba8cfbdbc25a991c423e3

# AFTER THE NETWORK IS STOPPED ON THE REQUIRED BLOCK!!!
systemctl stop archwayd
mv $HOME/archway/build/archwayd $(which archwayd)
archwayd version --long | grep -e version -e commit
# 

systemctl restart archwayd && journalctl -u archwayd -f -o cat

UPD 🕊 on v1.0.0-rc.4 (Update Height: 695333)

cd $HOME/archway
git pull
git checkout v1.0.0-rc.4
make build
$HOME/archway/build/archwayd version --long | grep -e version -e commit
# 1.0.0-rc.4
# commit: edff565bff6f179a254a9ed1a9cf9698cea20b60

# AFTER THE NETWORK IS STOPPED ON THE REQUIRED BLOCK!!!
systemctl stop archwayd
mv $HOME/archway/build/archwayd $(which archwayd)
archwayd version --long | grep -e version -e commit
# 

systemctl restart archwayd && journalctl -u archwayd -f -o cat

UPD 🕊 on v2.0.0 (Update Height: 1046250)

cd $HOME/archway
git pull
git checkout v2.0.0
make build
$HOME/archway/build/archwayd version --long | grep -e version -e commit
# 2.0.0
# commit: d6c5cf4509e1c848f26d539c3519685f1d323dfd

# AFTER THE NETWORK IS STOPPED ON THE REQUIRED BLOCK!!!
systemctl stop archwayd
mv $HOME/archway/build/archwayd $(which archwayd)
archwayd version --long | grep -e version -e commit
# 

systemctl restart archwayd && journalctl -u archwayd -f -o cat

UPD 🕊 on v4.0.0 (Update Height: 1659500)

cd $HOME/archway
git pull
git checkout v4.0.0
make build
$HOME/archway/build/archwayd version --long | grep -e version -e commit
# 4.0.0
# commit: 0f74dfbf6178578bc30fb2cbee3ae1ed5bc63dd9

# AFTER THE NETWORK IS STOPPED ON THE REQUIRED BLOCK!!!
systemctl stop archwayd
mv $HOME/archway/build/archwayd $(which archwayd)
archwayd version --long | grep -e version -e commit
# 

systemctl restart archwayd && journalctl -u archwayd -f -o cat

UPD 🕊 on v4.0.2 (Update Height: 1677800)

cd $HOME/archway
git pull
git checkout v4.0.2
make build
$HOME/archway/build/archwayd version --long | grep -e version -e commit
# 4.0.2
# commit: 23404f906b9f767d09d525672b962b5a19f3efee

# AFTER THE NETWORK IS STOPPED ON THE REQUIRED BLOCK!!!
systemctl stop archwayd
mv $HOME/archway/build/archwayd $(which archwayd)
archwayd version --long | grep -e version -e commit
# 

systemctl restart archwayd && journalctl -u archwayd -f -o cat

Last updated