Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/evm/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ replace (

require (
github.com/ethereum/go-ethereum v1.17.4
github.com/evstack/ev-node v1.1.3
github.com/evstack/ev-node v1.2.1

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🗄️ Data Integrity & Integration | 🟠 Major | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -euo pipefail

root="$(git rev-parse --show-toplevel)"
cd "$root/apps/evm"

go list -m -f '{{.Path}} {{.Version}} {{.Dir}}' github.com/evstack/ev-node

if go list -m -f '{{.Dir}}' github.com/evstack/ev-node | grep -Fq "$root"; then
  echo "ev-node is resolving from the local checkout, not the published module" >&2
  exit 1
fi

Repository: evstack/ev-node

Length of output: 277


Remove the local replace for release validation

apps/evm/go.mod:6 still rewrites github.com/evstack/ev-node to ../../, so this module resolves the local checkout instead of the published v1.2.1 on line 13. If this bump is meant to exercise the released dependency, gate or remove the replace first.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@apps/evm/go.mod` at line 13, Remove the local replace directive for
github.com/evstack/ev-node from apps/evm/go.mod so the dependency version v1.2.1
resolves from the published module during release validation. Preserve the
existing require entry and do not alter unrelated module directives.

github.com/evstack/ev-node/core v1.1.0
github.com/evstack/ev-node/execution/evm v1.0.1
github.com/ipfs/go-datastore v0.9.1
Expand Down
7 changes: 1 addition & 6 deletions execution/evm/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,9 @@ module github.com/evstack/ev-node/execution/evm

go 1.25.8

replace (
github.com/evstack/ev-node => ../../
github.com/evstack/ev-node/core => ../../core
)

require (
github.com/ethereum/go-ethereum v1.17.4
github.com/evstack/ev-node v1.1.2
github.com/evstack/ev-node v1.2.1
github.com/evstack/ev-node/core v1.1.0
github.com/golang-jwt/jwt/v5 v5.3.1
github.com/ipfs/go-datastore v0.9.1
Expand Down
4 changes: 4 additions & 0 deletions execution/evm/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,10 @@ github.com/ethereum/go-bigmodexpfix v0.0.0-20250911101455-f9e208c548ab h1:rvv6MJ
github.com/ethereum/go-bigmodexpfix v0.0.0-20250911101455-f9e208c548ab/go.mod h1:IuLm4IsPipXKF7CW5Lzf68PIbZ5yl7FFd74l/E0o9A8=
github.com/ethereum/go-ethereum v1.17.4 h1:uA4q+qiLp7QImBsjdRbINu8iX6OEVmj4DPc5/E5Fsxc=
github.com/ethereum/go-ethereum v1.17.4/go.mod h1:qMdgwqqRAen+aT8P7KKQKi0Qt6RzG4cfejVAbCpJgqA=
github.com/evstack/ev-node v1.2.1 h1:67u22AZFbFDkv/N6hyzx7eGtoS1RD7pOj4AsQqA4+pc=
github.com/evstack/ev-node v1.2.1/go.mod h1:OG0eQEvqB6w0p70L9wIVboLDPiSRfr359dd5eKKJslg=
github.com/evstack/ev-node/core v1.1.0 h1:Sa7uU5yuNF7YUyLBHPThD6Jt8/jacM1epRLATrdvKRE=
github.com/evstack/ev-node/core v1.1.0/go.mod h1:n2w/LhYQTPsi48m6lMj16YiIqsaQw6gxwjyJvR+B3sY=
github.com/felixge/httpsnoop v1.0.4 h1:NFTV2Zj1bL4mc9sqWACXbQFVBBg2W3GPvqp8/ESS2Wg=
github.com/felixge/httpsnoop v1.0.4/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U=
github.com/ferranbt/fastssz v0.1.4 h1:OCDB+dYDEQDvAgtAGnTSidK1Pe2tW3nFV40XyMkTeDY=
Expand Down
2 changes: 1 addition & 1 deletion execution/evm/test/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ require (
github.com/dvsekhvalnov/jose2go v1.7.0 // indirect
github.com/emicklei/dot v1.6.2 // indirect
github.com/ethereum/c-kzg-4844/v2 v2.1.6 // indirect
github.com/evstack/ev-node v1.1.2 // indirect
github.com/evstack/ev-node v1.2.1 // indirect
github.com/evstack/ev-node/core v1.1.0 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
github.com/ferranbt/fastssz v0.1.4 // indirect
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ require (
github.com/cosmos/cosmos-sdk v0.53.6
github.com/cosmos/ibc-go/v8 v8.8.0
github.com/ethereum/go-ethereum v1.17.4
github.com/evstack/ev-node v1.1.2
github.com/evstack/ev-node v1.2.1
github.com/evstack/ev-node/execution/evm v0.0.0-20250602130019-2a732cf903a5
github.com/evstack/ev-node/execution/evm/test v0.0.0-00010101000000-000000000000
github.com/libp2p/go-libp2p v0.48.0
Expand Down
Loading