Conversation
…tion, add CI version check Co-authored-by: numbers-official <181934381+numbers-official@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] [Feature][High] Migrate from deprecated subnet-cli to avalanche CLI, fix version drift in update scripts
Migrate from deprecated subnet-cli, fix version drift in update scripts, fix chain ID validation in RPC tests
Mar 3, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The validator update scripts were hardcoding versions 3 major releases behind what the README documents (
v1.10.11/v0.5.6vsv1.14.1/v0.8.0), creating a concrete downgrade risk. Additionally,rpc_test.py'stest_chain_id()never validated the returned chain ID — it silently passed regardless of the RPC response.Version canonicalization
.versions.envat repo root: single source of truth forAVALANCHEGO_VERSION=1.14.1andSUBNET_EVM_VERSION=0.8.0chains/update-validator-mainnet.shandchains/update-validator-testnet.shnow source.versions.envinstead of hardcoding stale versions;AVALANCHEGO_PREVIOUS_VERSIONremains a local variable for operators to set per their installed stateCI guard against future drift
.github/workflows/check-versions.ymlfails the build ifREADME.mdversion references diverge from.versions.env, preventing silent drift going forwardsubnet-cli deprecation
subnet-cli/README.mdwith a prominent deprecation notice directing operators to the Avalanche CLI workflowchains/install-subnet-cli.shandsubnet-cli/install-subnet-cli.shRPC test fix
test_chain_id()now sets"id": 1in the JSON-RPC payload (it was incorrectly using the expected chain ID as the requestid) and assertsint(response['result'], 16) == chain_id:rpc/requirements.txtwithrequests>=2.28.0andwebsockets>=10.0Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.