Upgrade to v0.17.0 chain dependencies - #159
Merged
Merged
Conversation
Bump github.com/allora-network/allora-chain from the v0.16.1 pseudo-version to the released v0.17.0 and drop the temporary replace directive that pinned the unreleased v10/classification chain code. This aligns the node's chain deps with the v0.17.0 chain it is deployed against on testnet. Co-authored-by: Cursor <cursoragent@cursor.com>
There was a problem hiding this comment.
No issues found across 2 files
Architecture diagram
sequenceDiagram
participant Node as Allora Off-Chain Node
participant GoMod as Go Module Resolution
participant ChainLib as all ora-chain v0.17.0 Library
participant Testnet as Testnet Chain (v0.17.0)
Note over Node,ChainLib: CHANGED: dependency aligned to released v0.17.0
Node->>GoMod: import all ora-chain (compile time)
GoMod->>ChainLib: resolve to v0.17.0 (no replace override)
ChainLib-->>Node: expose types, client constructors
Note over Node,Testnet: NEW: Node now built with same chain version as testnet
Node->>Testnet: gRPC dial (configured endpoint)
Testnet-->>Node: connection established
Node->>ChainLib: create query client
ChainLib->>Testnet: QueryState(topic)
Testnet-->>ChainLib: raw state response
ChainLib-->>Node: parsed state result
Node->>ChainLib: sign & submit transaction (worker update)
ChainLib->>Testnet: BroadcastTx
Testnet-->>ChainLib: tx response (code, gas used)
ChainLib-->>Node: final tx result
xmariachi
approved these changes
Jul 15, 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.
Summary
github.com/allora-network/allora-chainfrom thev0.16.1pseudo-version to the releasedv0.17.0.replacedirective that pinned the unreleased v10/classification chain code (no longer needed now that v0.17.0 is released).This aligns the node's chain dependency with the v0.17.0 chain it is deployed against (see the flux-infra testnet rollout, where the
node-initallora-chainimage isv0.17.0). Thev0.14.0release tag notes it runs "w/ chain v0.17.0", butgo.modstill pointed at the v0.16.1 pseudo-version; this closes that gap.Changes
go.mod:allora-chain v0.16.0->v0.17.0, removedreplace ... => ...v0.16.1-0.20260602135805-81f3d7a7ea69.go.sum: updated checksums (chain module go.mod hash is unchanged, i.e. same lineage).Test plan
go build ./...go vet ./...go test ./...(141 passed, 9 packages)Made with Cursor
Summary by cubic
Aligns the node with the v0.17.0 chain deployed on testnet for consistency and compatibility. Upgrades the chain dependency and removes the temporary pseudo-version pin.
github.com/allora-network/allora-chaintov0.17.0(fromv0.16.0/pseudov0.16.1-...).replacedirective forallora-chain.Written for commit 29264ba. Summary will update on new commits.