github scrtlabs/SecretNetwork v1.9.3

latest releases: v1.13.0-beta.7, v1.13.0-beta.6, v1.13.0-beta.5...
11 months ago

What's changed

  • Bump ibc-go from v4.3.0 to v4.3.1 (Huckleberry)

Patch instructions

⚠️ Note: The following instructions assume a default installation. DO NOT COPY-PASTE if config.toml is not located in ~/.secretd/config/config.toml or if you have made modifications to /etc/systemd/system/secret-node.service. If you have made changes to /etc/systemd/system/secret-node.service, you will need to reapply those modifications after the installation and before restarting the service.

# Backup your node's SGX secrets
cp -a /opt/secret/.sgx_secrets ~/sgx_secrets_backup
mkdir 192backup
cp ~/.secretd/.node/* 192backup/

# Stop your v1.9.2 node
sudo systemctl stop secret-node

# Figure out currently used db backend
DB_BACKEND=$(awk -F \" '/^db_backend =/{print $2}' ~/.secretd/config/config.toml)

# Get the v1.9.3 binaries
wget "https://github.com/scrtlabs/SecretNetwork/releases/download/v1.9.3/secretnetwork_1.9.3_mainnet_${DB_BACKEND}_amd64.deb"

# Verify the v1.9.3 binaries
echo '894857bb414d3b20c48d4fb9126e14ae462bcd8aa21bde9ae3361ed1ad37e5d9 secretnetwork_1.9.3_mainnet_goleveldb_amd64.deb
eabce3e6fccc3ea69b5a9472cd8d889108c9a5f04329ad2b16c3a4b69c6b7133 secretnetwork_1.9.3_mainnet_rocksdb_amd64.deb' |
    grep "$DB_BACKEND" |
    sha256sum --check

# re-apply any systemd unit file customizations if relevant

# Install the v1.9.3 binaries
sudo apt install -y "./secretnetwork_1.9.3_mainnet_${DB_BACKEND}_amd64.deb"

Don't miss a new SecretNetwork release

NewReleases is sending notifications on new releases.