v1.7
Secret Network v1.7 Upgrade Instructions
β οΈ IMPORTANT NOTES β οΈ
Upgrading Manually
2:00PM ERR UPGRADE "v1.7" NEEDED at height: 7719500:
2:00PM ERR CONSENSUS FAILURE!!! err="UPGRADE \"v1.7\" NEEDED at height: 7719500# Backup your node's SGX secrets
cp -a /opt/secret/.sgx_secrets ~/sgx_secrets_backup
cp ~/.secretd/.node/seed.json seed.json.backup
# Figure out currently used db backend
DB_BACKEND=$(awk -F \" '/^db_backend =/{print $2}' ~/.secretd/config/config.toml)
# Get the v1.7 binaries
wget "https://github.com/scrtlabs/SecretNetwork/releases/download/v1.7.1/secretnetwork_1.7.1_mainnet_${DB_BACKEND}_amd64.deb"
# Verify the v1.7 binaries
echo '32fa1dcc3e0d234f596d7efde917f9ca14df2292e6b6ef997eca20a435abcd95 secretnetwork_1.7.1_mainnet_goleveldb_amd64.deb
590573d0be9543440d2675ce7ae4e157bf44b4151fd38dca17575000bc8d2d44 secretnetwork_1.7.1_mainnet_rocksdb_amd64.deb' |
grep "$DB_BACKEND" |
sha256sum --check
# Stop the v1.6 node
sudo systemctl stop secret-node
# Install the v1.7 binaries
sudo apt install -y "./secretnetwork_1.7.1_mainnet_${DB_BACKEND}_amd64.deb"
# re-apply any systemd unit file customizations
# Restart the node
sudo systemctl restart secret-nodeUpgrading Automatically Using Cosmovisor
Details of Upgrade Time
In Case of an Upgrade Failure
Last updated
Was this helpful?