Hi all, we have released a new version of bor, v2.2.4
, and a new version of heimdall, v1.6.0
These releases include all the changes required for the mainnet heimdall migration (more info here).
Steps for upgrading Bor node
-
Stop bor service
sudo service bor stop
-
Install Bor with a version tag, network name (mainnet), and node type (sentry, validator or archive).
# Replace the node type curl -L https://raw.githubusercontent.com/maticnetwork/install/main/bor.sh | bash -s -- v2.2.4 <network> <node_type>
-
Check bor version
/usr/bin/bor version # It should print # v2.2.4
-
Restart bor service
sudo service bor start
Steps for Upgrading Heimdall
Before proceeding, please create a backup of your heimdall
config file whose default location is: /var/lib/heimdall/config/config.toml
. This might differ if you have setup heimdall
at a different location.
-
Stop
heimdalld
servicesudo service heimdalld stop
-
Install
heimdall
with a version tag, network name (mainnet), and node type (sentry or validator).# Replace the network and node type curl -L https://raw.githubusercontent.com/maticnetwork/install/main/heimdall.sh | bash -s -- v1.6.0 <network> <node_type>
-
Check
heimdall
version/usr/bin/heimdalld version # It should print # 1.6.0
-
Restart
heimdall
servicesudo service heimdalld start
-
Restart the telemetry services
sudo service telemetry restart