Skip to content

Commit 22a4b0b

Browse files
authored
Merge branch 'main' into cian/compat-test
2 parents 2f65f85 + 4a19108 commit 22a4b0b

File tree

17 files changed

+29
-29
lines changed

17 files changed

+29
-29
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## [Unreleased]
1111

12+
## v1.0.0-rc.1
13+
1214
### Added
1315

1416
- Implement forced inclusion and based sequencing ([#2797](https://github.com/evstack/ev-node/pull/2797))
15-
This changes requires to add a `da_epoch_forced_inclusion` field in `genesis.json` file.
16-
To enable this feature, set the force inclusion namespace in the `evnode.yaml`.
17+
**This change requires to add a `da_epoch_forced_inclusion` field in node's `genesis.json` file.**
18+
To enable this feature, set the force inclusion namespace in the `evnode.yaml` (enableable from rc.2).
1719
- Added `post-tx` command and force inclusion server to submit transaction directly to the DA layer. ([#2888](https://github.com/evstack/ev-node/pull/2888))
1820
Additionally, modified the core package to support marking transactions as forced included transactions.
1921
The execution client ought to perform basic validation on those transactions as they have skipped the execution client's mempool.

apps/evm/go.mod

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,12 @@ module github.com/evstack/ev-node/apps/evm
22

33
go 1.25.6
44

5-
replace (
6-
github.com/evstack/ev-node => ../../
7-
github.com/evstack/ev-node/execution/evm => ../../execution/evm
8-
)
5+
replace github.com/evstack/ev-node/execution/evm => ../../execution/evm
96

107
require (
118
github.com/celestiaorg/go-header v0.8.1
129
github.com/ethereum/go-ethereum v1.16.8
13-
github.com/evstack/ev-node v1.0.0-beta.10
10+
github.com/evstack/ev-node v1.0.0-rc.1
1411
github.com/evstack/ev-node/core v1.0.0-rc.1
1512
github.com/evstack/ev-node/execution/evm v1.0.0-beta.3
1613
github.com/ipfs/go-datastore v0.9.0

apps/evm/go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -409,6 +409,8 @@ github.com/ethereum/go-ethereum v1.16.8 h1:LLLfkZWijhR5m6yrAXbdlTeXoqontH+Ga2f9i
409409
github.com/ethereum/go-ethereum v1.16.8/go.mod h1:Fs6QebQbavneQTYcA39PEKv2+zIjX7rPUZ14DER46wk=
410410
github.com/ethereum/go-verkle v0.2.2 h1:I2W0WjnrFUIzzVPwm8ykY+7pL2d4VhlsePn4j7cnFk8=
411411
github.com/ethereum/go-verkle v0.2.2/go.mod h1:M3b90YRnzqKyyzBEWJGqj8Qff4IDeXnzFw0P9bFw3uk=
412+
github.com/evstack/ev-node v1.0.0-rc.1 h1:MO7DT3y1X4WK7pTgl/867NroqhXJ/oe2NbmvMr3jqq8=
413+
github.com/evstack/ev-node v1.0.0-rc.1/go.mod h1:JtbvY2r6k6ZhGYMeDNZk7cx6ALj3d0f6dVyyJmJHBd4=
412414
github.com/evstack/ev-node/core v1.0.0-rc.1 h1:Dic2PMUMAYUl5JW6DkDj6HXDEWYzorVJQuuUJOV0FjE=
413415
github.com/evstack/ev-node/core v1.0.0-rc.1/go.mod h1:n2w/LhYQTPsi48m6lMj16YiIqsaQw6gxwjyJvR+B3sY=
414416
github.com/fatih/color v1.10.0/go.mod h1:ELkj/draVOlAH/xkhN6mQ50Qd0MPOk5AAr3maGEBuJM=

apps/grpc/go.mod

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,10 @@ module github.com/evstack/ev-node/apps/grpc
22

33
go 1.25.6
44

5-
replace (
6-
github.com/evstack/ev-node => ../../
7-
github.com/evstack/ev-node/execution/grpc => ../../execution/grpc
8-
)
5+
replace github.com/evstack/ev-node/execution/grpc => ../../execution/grpc
96

107
require (
11-
github.com/evstack/ev-node v1.0.0-beta.11
8+
github.com/evstack/ev-node v1.0.0-rc.1
129
github.com/evstack/ev-node/core v1.0.0-rc.1
1310
github.com/evstack/ev-node/execution/grpc v0.0.0
1411
github.com/ipfs/go-datastore v0.9.0

apps/grpc/go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -365,6 +365,8 @@ github.com/envoyproxy/protoc-gen-validate v0.10.0/go.mod h1:DRjgyB0I43LtJapqN6Ni
365365
github.com/envoyproxy/protoc-gen-validate v0.10.1/go.mod h1:DRjgyB0I43LtJapqN6NiRwroiAU2PaFuvk/vjgh61ss=
366366
github.com/envoyproxy/protoc-gen-validate v1.0.1/go.mod h1:0vj8bNkYbSTNS2PIyH87KZaeN4x9zpL9Qt8fQC7d+vs=
367367
github.com/envoyproxy/protoc-gen-validate v1.0.2/go.mod h1:GpiZQP3dDbg4JouG/NNS7QWXpgx6x8QiMKdmN72jogE=
368+
github.com/evstack/ev-node v1.0.0-rc.1 h1:MO7DT3y1X4WK7pTgl/867NroqhXJ/oe2NbmvMr3jqq8=
369+
github.com/evstack/ev-node v1.0.0-rc.1/go.mod h1:JtbvY2r6k6ZhGYMeDNZk7cx6ALj3d0f6dVyyJmJHBd4=
368370
github.com/evstack/ev-node/core v1.0.0-rc.1 h1:Dic2PMUMAYUl5JW6DkDj6HXDEWYzorVJQuuUJOV0FjE=
369371
github.com/evstack/ev-node/core v1.0.0-rc.1/go.mod h1:n2w/LhYQTPsi48m6lMj16YiIqsaQw6gxwjyJvR+B3sY=
370372
github.com/fatih/color v1.10.0/go.mod h1:ELkj/draVOlAH/xkhN6mQ50Qd0MPOk5AAr3maGEBuJM=

apps/testapp/go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,9 @@ module github.com/evstack/ev-node/apps/testapp
22

33
go 1.25.6
44

5-
replace github.com/evstack/ev-node => ../../.
6-
75
require (
86
github.com/celestiaorg/go-header v0.8.1
9-
github.com/evstack/ev-node v1.0.0-beta.10
7+
github.com/evstack/ev-node v1.0.0-rc.1
108
github.com/evstack/ev-node/core v1.0.0-rc.1
119
github.com/ipfs/go-datastore v0.9.0
1210
github.com/rs/zerolog v1.34.0

apps/testapp/go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -365,6 +365,8 @@ github.com/envoyproxy/protoc-gen-validate v0.10.0/go.mod h1:DRjgyB0I43LtJapqN6Ni
365365
github.com/envoyproxy/protoc-gen-validate v0.10.1/go.mod h1:DRjgyB0I43LtJapqN6NiRwroiAU2PaFuvk/vjgh61ss=
366366
github.com/envoyproxy/protoc-gen-validate v1.0.1/go.mod h1:0vj8bNkYbSTNS2PIyH87KZaeN4x9zpL9Qt8fQC7d+vs=
367367
github.com/envoyproxy/protoc-gen-validate v1.0.2/go.mod h1:GpiZQP3dDbg4JouG/NNS7QWXpgx6x8QiMKdmN72jogE=
368+
github.com/evstack/ev-node v1.0.0-rc.1 h1:MO7DT3y1X4WK7pTgl/867NroqhXJ/oe2NbmvMr3jqq8=
369+
github.com/evstack/ev-node v1.0.0-rc.1/go.mod h1:JtbvY2r6k6ZhGYMeDNZk7cx6ALj3d0f6dVyyJmJHBd4=
368370
github.com/evstack/ev-node/core v1.0.0-rc.1 h1:Dic2PMUMAYUl5JW6DkDj6HXDEWYzorVJQuuUJOV0FjE=
369371
github.com/evstack/ev-node/core v1.0.0-rc.1/go.mod h1:n2w/LhYQTPsi48m6lMj16YiIqsaQw6gxwjyJvR+B3sY=
370372
github.com/fatih/color v1.10.0/go.mod h1:ELkj/draVOlAH/xkhN6mQ50Qd0MPOk5AAr3maGEBuJM=

execution/evm/go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.25.6
44

55
require (
66
github.com/ethereum/go-ethereum v1.16.8
7-
github.com/evstack/ev-node v1.0.0-beta.10
7+
github.com/evstack/ev-node v1.0.0-rc.1
88
github.com/evstack/ev-node/core v1.0.0-rc.1
99
github.com/golang-jwt/jwt/v5 v5.3.0
1010
github.com/ipfs/go-datastore v0.9.0
@@ -103,5 +103,3 @@ require (
103103
gopkg.in/yaml.v3 v3.0.1 // indirect
104104
lukechampine.com/blake3 v1.4.1 // indirect
105105
)
106-
107-
replace github.com/evstack/ev-node => ../../

execution/evm/go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@ github.com/ethereum/go-ethereum v1.16.8 h1:LLLfkZWijhR5m6yrAXbdlTeXoqontH+Ga2f9i
7676
github.com/ethereum/go-ethereum v1.16.8/go.mod h1:Fs6QebQbavneQTYcA39PEKv2+zIjX7rPUZ14DER46wk=
7777
github.com/ethereum/go-verkle v0.2.2 h1:I2W0WjnrFUIzzVPwm8ykY+7pL2d4VhlsePn4j7cnFk8=
7878
github.com/ethereum/go-verkle v0.2.2/go.mod h1:M3b90YRnzqKyyzBEWJGqj8Qff4IDeXnzFw0P9bFw3uk=
79+
github.com/evstack/ev-node v1.0.0-rc.1 h1:MO7DT3y1X4WK7pTgl/867NroqhXJ/oe2NbmvMr3jqq8=
80+
github.com/evstack/ev-node v1.0.0-rc.1/go.mod h1:JtbvY2r6k6ZhGYMeDNZk7cx6ALj3d0f6dVyyJmJHBd4=
7981
github.com/evstack/ev-node/core v1.0.0-rc.1 h1:Dic2PMUMAYUl5JW6DkDj6HXDEWYzorVJQuuUJOV0FjE=
8082
github.com/evstack/ev-node/core v1.0.0-rc.1/go.mod h1:n2w/LhYQTPsi48m6lMj16YiIqsaQw6gxwjyJvR+B3sY=
8183
github.com/ferranbt/fastssz v0.1.4 h1:OCDB+dYDEQDvAgtAGnTSidK1Pe2tW3nFV40XyMkTeDY=

execution/evm/test/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ require (
7272
github.com/emicklei/dot v1.6.2 // indirect
7373
github.com/ethereum/c-kzg-4844/v2 v2.1.5 // indirect
7474
github.com/ethereum/go-verkle v0.2.2 // indirect
75-
github.com/evstack/ev-node v1.0.0-beta.10 // indirect
75+
github.com/evstack/ev-node v1.0.0-rc.1 // indirect
7676
github.com/evstack/ev-node/core v1.0.0-rc.1 // indirect
7777
github.com/felixge/httpsnoop v1.0.4 // indirect
7878
github.com/ferranbt/fastssz v0.1.4 // indirect

0 commit comments

Comments
 (0)