Upgrading
Upgrades should keep all validator runtimes version-aligned. Xian relies on a shared CPython minor version for deterministic bytecode metering, so validators must upgrade in a coordinated way.
Safe Upgrade Sequence
- Stop the node
- Update the repos or release artifact
- Rebuild or pull the immutable node image
- Run validation and smoke coverage
- Start the node again and verify status
Example from a sibling workspace:
bash
cd ~/xian/xian-stack
make validate
make smoke-cli
cd ../xian-cli
uv run xian node stop validator-1
uv run xian node start validator-1
uv run xian node status validator-1What to Keep Stable
- CPython minor version across validators
xian-contractingandxian-abciversions- canonical network bundle selection from
xian-configs
State and Config Safety
- keep backups of the CometBFT home before high-risk upgrades
- do not mutate canonical manifests ad hoc on validators
- prefer schema-validated manifest/profile rewrites through
xian-cli