chore: bump tentative v12 - #36
Merged
Merged
Conversation
This was referenced Jan 22, 2026
There was a problem hiding this comment.
Pull request overview
This PR updates the fork to a newer ev-node stack and restructures how the node integrates with DA, the EVM engine, and sequencing, while also simplifying some legacy namespace-migration logic.
Changes:
- Bumps a large number of dependencies (notably
ev-node,go-ethereum, libp2p, OTEL, etc.) and updatesgo.mod/go.sumaccordingly. - Reworks
cmd/run.goto use the new DA client and sequencer abstractions (including a “based” sequencer mode) and to configure the EVM engine client via a JWT secret file or backward‑compatible config. - Extends rollback behavior to also rollback the execution layer, refactors signer passphrase handling, introduces backward‑compatibility constants, and removes the now-unused namespace-migration layer and its tests.
Reviewed changes
Copilot reviewed 7 out of 8 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
go.mod |
Updates the Go toolchain version and switches core dependencies (e.g., celestiaorg/go-header to v0.8.0, evstack/ev-node and its submodules to newer pseudo-versions, go-ethereum to v1.16.8). Also removes many unused indirect requirements and adds/bumps others to match the new ev-node stack. |
go.sum |
Regenerates checksums to align with the updated dependency graph from go.mod. |
cmd/run.go |
Refactors node startup: creates a dedicated evmDbName datastore, wires it into the new evm.EngineClient (with tracing), instantiates a new DA client (block.NewDAClient), selects between a “based” sequencer and the new single sequencer via createSequencer, adds an optional force-inclusion HTTP server, and updates JWT handling to prefer a secret file with a backward-compatible config flag. |
cmd/rollback.go |
Uses the shared evmDbName datastore and store.NewEvNodeKVStore, adds execution-layer rollback by constructing an evm.EngineClient and calling Rollback, updates user messages, and adds EVM connection/JWT flags for rollback. |
cmd/init.go |
Reuses the new backward-compatibility constant flagBackwardPassphrase, adds support for reading the signer passphrase from a file, and marks the passphrase string and file flags mutually exclusive. |
cmd/backward.go |
Introduces central constants for backward‑compatible flag names (evnode.signer.passphrase and evnode.evm.jwt-secret) so they can be used consistently across commands. |
cmd/run_test.go |
Removes tests that specifically exercised the old namespace-migration wrapper around the DA JSON-RPC client; this matches the removal of that wrapper in run.go. |
README.md |
Drops the bullet-point documenting explicit “namespace migration support”, which is no longer implemented in this fork. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
julienrbrt
commented
Jan 22, 2026
| "proposer_address": "N89c6gm4fP8oW7OxEtHft7b7PFu8BRzrqkPRzVH04dA=", | ||
| "da_start_height": 7970386 | ||
| "da_start_height": 7970386, | ||
| "da_epoch_forced_inclusion": 100 |
Contributor
Author
There was a problem hiding this comment.
This is a notable change that all node operators must perform on their genesis
cc @auricom @tac0turtle
Took arbitrary 100, default value in ev-node is 50. The feature is disabled, so it currently does nothing. Feature will be enabled for v13 / final v1.
julienrbrt
commented
Jan 22, 2026
julienrbrt
force-pushed
the
julien/bump-latest
branch
from
January 22, 2026 14:43
7a12dd6 to
63041bd
Compare
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.
No description provided.