Upgrade v0.2.10: Pre-download binaries

The on-chain governance process for the v0.2.10 upgrade proposal is nearing its conclusion.

Voting ends: February 18th, 2026, at 09:26:26 UTC.
Upgrade height: 2712600.
Estimated upgrade time: February 18th, 2026, at 15:30:00 UTC.

Hosts are encouraged to review the proposal on GitHub and participate in the vote.
Pre-downloading binaries in advance may help avoid relying on GitHub availability during the upgrade window.

shell

# 1. Create Directories
sudo mkdir -p .dapi/cosmovisor/upgrades/v0.2.10/bin \
              .inference/cosmovisor/upgrades/v0.2.10/bin && \

# 2. DAPI: Download -> Verify -> Unzip directly to bin -> Make Executable
wget -q -O decentralized-api.zip "https://github.com/gonka-ai/gonka/releases/download/release%2Fv0.2.10/decentralized-api-amd64.zip" && \
echo "47d6b64424f34242ba12d04aa367f3a7d3933961b55f9d2434b36399d0faf18f decentralized-api.zip" | sha256sum --check && \
sudo unzip -o -j decentralized-api.zip -d .dapi/cosmovisor/upgrades/v0.2.10/bin/ && \
sudo chmod +x .dapi/cosmovisor/upgrades/v0.2.10/bin/decentralized-api && \
echo "DAPI Installed and Verified" && \

# 3. Inference: Download -> Verify -> Unzip directly to bin -> Make Executable
sudo rm -rf inferenced.zip .inference/cosmovisor/upgrades/v0.2.10/bin/ && \
wget -q -O inferenced.zip "https://github.com/gonka-ai/gonka/releases/download/release%2Fv0.2.10/inferenced-amd64.zip" && \
echo "b118610cfa1f45f9dfb4eb112a01a91ad886333b73aac49fee20abc0c3f1998a inferenced.zip" | sha256sum --check && \
sudo unzip -o -j inferenced.zip -d .inference/cosmovisor/upgrades/v0.2.10/bin/ && \
sudo chmod +x .inference/cosmovisor/upgrades/v0.2.10/bin/inferenced && \
echo "Inference Installed and Verified" && \

# 4. Cleanup and Final Check
rm decentralized-api.zip inferenced.zip && \
echo "--- Final Verification ---" && \
sudo ls -l .dapi/cosmovisor/upgrades/v0.2.10/bin/decentralized-api && \
sudo ls -l .inference/cosmovisor/upgrades/v0.2.10/bin/inferenced && \
echo "39096e781f70d486bfd4009d49d623446ea63f9f8eceb52ff54820326ca975f1 .dapi/cosmovisor/upgrades/v0.2.10/bin/decentralized-api" | sudo sha256sum --check && \
echo "601e43dc68b2e8261dd6fe267fb1c0d1c1e0f70b64dcb1984aa28d202736b7f2 .inference/cosmovisor/upgrades/v0.2.10/bin/inferenced" | sudo sha256sum --check

Required host actions after upgrade execution
If the proposal is approved and the upgrade is executed, ML Node containers must be restarted to trigger model redeployment. Run:

shell

docker restart join-mlnode-1

The transition to mlnode:3.0.12-post4-* should be completed within the 3000-block grace period introduced in the upgrade.