Skip to content

Commit 9813d63

Browse files
authored
Merge branch 'main' into julien/edge-case-p2p-stall
2 parents e096d3c + 27eeb48 commit 9813d63

42 files changed

Lines changed: 1165 additions & 913 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/benchmark.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ jobs:
164164
# only update the benchmark baseline on push/dispatch, not on PRs
165165
- name: Store EVM Contract Roundtrip result
166166
if: always()
167-
uses: benchmark-action/github-action-benchmark@a60cea5bc7b49e15c1f58f411161f99e0df48372 # v1.22.0
167+
uses: benchmark-action/github-action-benchmark@52576c92bccf6ac60c8223ec7eb2565637cae9ba # v1.22.1
168168
with:
169169
name: EVM Contract Roundtrip
170170
tool: 'go'
@@ -183,7 +183,7 @@ jobs:
183183

184184
- name: Store Block Executor result
185185
if: always()
186-
uses: benchmark-action/github-action-benchmark@a60cea5bc7b49e15c1f58f411161f99e0df48372 # v1.22.0
186+
uses: benchmark-action/github-action-benchmark@52576c92bccf6ac60c8223ec7eb2565637cae9ba # v1.22.1
187187
with:
188188
name: Block Executor Benchmark
189189
tool: 'go'

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
code: ${{ steps.filter.outputs.code }}
2020
steps:
2121
- uses: actions/checkout@v6.0.2
22-
- uses: dorny/paths-filter@v3
22+
- uses: dorny/paths-filter@v4
2323
id: filter
2424
with:
2525
filters: |

.mockery.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,6 @@ packages:
9797
interfaces:
9898
ForcedInclusionRetriever:
9999
config:
100-
dir: ./pkg/sequencers/common
101-
pkgname: common
100+
dir: ./pkg/sequencers/based
101+
pkgname: based
102102
filename: forced_inclusion_retriever_mock.go

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212
### Changes
1313

1414
- Add automatic DA retriever walkback when P2P stalls and DA blocks too far ahead [#3262](https://github.com/evstack/ev-node/pull/3262)
15+
- Add max bytes contraints in simple solo sequnecer [#3312](https://github.com/evstack/ev-node/pull/3312)
16+
- Add support for otlp in execution/grpc. [#3300](https://github.com/evstack/ev-node/pull/3300)
1517
- Optimization of mutex usage in cache for reaper [#3286](https://github.com/evstack/ev-node/pull/3286)
1618
- Add Unix domain socket support for gRPC execution endpoints via `unix:///path/to/socket` [#3297](https://github.com/evstack/ev-node/pull/3297)
1719
- **BREAKING:** (execution/grpc)
18-
- Move execution service where it belongs in execution/grpc. []()
20+
- Move execution service where it belongs in execution/grpc. [#3302](https://github.com/evstack/ev-node/pull/3302)
1921
- Replace legacy gRPC execution `txs` payload fields with `tx_batch` so clients and servers use contiguous transaction buffers [#3297](https://github.com/evstack/ev-node/pull/3297)
2022
- Optimize metadata writes by making it async in cache store [#3298](https://github.com/evstack/ev-node/pull/3298)
2123
- Reduce tx cache retention to avoid OOM under (really) heavy tx load [#3299](https://github.com/evstack/ev-node/pull/3299)

apps/evm/go.mod

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ require (
2424
cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect
2525
cloud.google.com/go/compute/metadata v0.9.0 // indirect
2626
cloud.google.com/go/iam v1.7.0 // indirect
27-
cloud.google.com/go/kms v1.29.0 // indirect
27+
cloud.google.com/go/kms v1.30.0 // indirect
2828
cloud.google.com/go/longrunning v0.9.0 // indirect
2929
connectrpc.com/connect v1.19.2 // indirect
3030
connectrpc.com/grpcreflect v1.3.0 // indirect
@@ -34,20 +34,20 @@ require (
3434
github.com/ProjectZKM/Ziren/crates/go-runtime/zkvm_runtime v0.0.0-20251001021608-1fe7b43fc4d6 // indirect
3535
github.com/StackExchange/wmi v1.2.1 // indirect
3636
github.com/armon/go-metrics v0.4.1 // indirect
37-
github.com/aws/aws-sdk-go-v2 v1.41.6 // indirect
38-
github.com/aws/aws-sdk-go-v2/config v1.32.16 // indirect
39-
github.com/aws/aws-sdk-go-v2/credentials v1.19.15 // indirect
40-
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.22 // indirect
41-
github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.22 // indirect
42-
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.22 // indirect
43-
github.com/aws/aws-sdk-go-v2/internal/v4a v1.4.23 // indirect
44-
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.8 // indirect
45-
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.22 // indirect
46-
github.com/aws/aws-sdk-go-v2/service/kms v1.51.0 // indirect
47-
github.com/aws/aws-sdk-go-v2/service/signin v1.0.10 // indirect
48-
github.com/aws/aws-sdk-go-v2/service/sso v1.30.16 // indirect
49-
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.35.20 // indirect
50-
github.com/aws/aws-sdk-go-v2/service/sts v1.42.0 // indirect
37+
github.com/aws/aws-sdk-go-v2 v1.41.7 // indirect
38+
github.com/aws/aws-sdk-go-v2/config v1.32.17 // indirect
39+
github.com/aws/aws-sdk-go-v2/credentials v1.19.16 // indirect
40+
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.23 // indirect
41+
github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.23 // indirect
42+
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.23 // indirect
43+
github.com/aws/aws-sdk-go-v2/internal/v4a v1.4.24 // indirect
44+
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.9 // indirect
45+
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.23 // indirect
46+
github.com/aws/aws-sdk-go-v2/service/kms v1.51.1 // indirect
47+
github.com/aws/aws-sdk-go-v2/service/signin v1.0.11 // indirect
48+
github.com/aws/aws-sdk-go-v2/service/sso v1.30.17 // indirect
49+
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.35.21 // indirect
50+
github.com/aws/aws-sdk-go-v2/service/sts v1.42.1 // indirect
5151
github.com/aws/smithy-go v1.25.1 // indirect
5252
github.com/benbjohnson/clock v1.3.5 // indirect
5353
github.com/beorn7/perks v1.0.1 // indirect
@@ -95,8 +95,8 @@ require (
9595
github.com/google/gopacket v1.1.19 // indirect
9696
github.com/google/s2a-go v0.1.9 // indirect
9797
github.com/google/uuid v1.6.0 // indirect
98-
github.com/googleapis/enterprise-certificate-proxy v0.3.14 // indirect
99-
github.com/googleapis/gax-go/v2 v2.21.0 // indirect
98+
github.com/googleapis/enterprise-certificate-proxy v0.3.15 // indirect
99+
github.com/googleapis/gax-go/v2 v2.22.0 // indirect
100100
github.com/gorilla/websocket v1.5.3 // indirect
101101
github.com/grpc-ecosystem/grpc-gateway/v2 v2.28.0 // indirect
102102
github.com/hashicorp/go-hclog v1.6.3 // indirect
@@ -214,7 +214,7 @@ require (
214214
go.uber.org/fx v1.24.0 // indirect
215215
go.uber.org/mock v0.5.2 // indirect
216216
go.uber.org/multierr v1.11.0 // indirect
217-
go.uber.org/zap v1.27.1 // indirect
217+
go.uber.org/zap v1.28.0 // indirect
218218
go.yaml.in/yaml/v2 v2.4.4 // indirect
219219
go.yaml.in/yaml/v3 v3.0.4 // indirect
220220
golang.org/x/crypto v0.50.0 // indirect
@@ -230,11 +230,11 @@ require (
230230
golang.org/x/tools v0.43.0 // indirect
231231
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
232232
gonum.org/v1/gonum v0.17.0 // indirect
233-
google.golang.org/api v0.276.0 // indirect
233+
google.golang.org/api v0.277.0 // indirect
234234
google.golang.org/genproto v0.0.0-20260319201613-d00831a3d3e7 // indirect
235235
google.golang.org/genproto/googleapis/api v0.0.0-20260401024825-9d38bb4040a9 // indirect
236-
google.golang.org/genproto/googleapis/rpc v0.0.0-20260401024825-9d38bb4040a9 // indirect
237-
google.golang.org/grpc v1.80.0 // indirect
236+
google.golang.org/genproto/googleapis/rpc v0.0.0-20260427160629-7cedc36a6bc4 // indirect
237+
google.golang.org/grpc v1.81.0 // indirect
238238
google.golang.org/protobuf v1.36.11 // indirect
239239
gopkg.in/yaml.v2 v2.4.0 // indirect
240240
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)