Skip to content

Commit 3327233

Browse files
committed
Merge remote-tracking branch 'origin/main' into feat/attesters-return-to-evolve-tastora
2 parents 5fd23c3 + 1fd823c commit 3327233

11 files changed

Lines changed: 695 additions & 579 deletions

File tree

.github/workflows/integration_test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
runs-on: ubuntu-latest
1717
timeout-minutes: 30
1818
env:
19-
EVNODE_VERSION: "v1.0.0-beta.2.0.20250917144924-05372840f308"
20-
IGNITE_VERSION: "v29.3.1"
19+
EVNODE_VERSION: "v1.0.0-beta.4"
20+
IGNITE_VERSION: "v29.4.0"
2121
IGNITE_EVOLVE_APP_VERSION: "main" # use tagged when apps has tagged (blocked on things)
2222
EVOLVE_IMAGE_REPO: "evolve-gm"
2323
EVOLVE_IMAGE_TAG: "latest"
@@ -48,7 +48,7 @@ jobs:
4848
- name: Run Liveness Test
4949
run: |
5050
cd tests/integration
51-
go test -v -run TestLivenessWithCelestiaDA -timeout 30m
51+
go test -v -run TestDockerIntegrationTestSuite/TestLivenessWithCelestiaDA -timeout 30m
5252
env:
5353
EVOLVE_IMAGE_REPO: ${{ env.EVOLVE_IMAGE_REPO }}
5454
EVOLVE_IMAGE_TAG: ${{ env.EVOLVE_IMAGE_TAG }}
@@ -59,8 +59,8 @@ jobs:
5959
timeout-minutes: 30
6060
env:
6161
DO_NOT_TRACK: true
62-
EVNODE_VERSION: "v1.0.0-beta.2.0.20250917144924-05372840f308"
63-
IGNITE_VERSION: "v29.3.1"
62+
EVNODE_VERSION: "v1.0.0-beta.4"
63+
IGNITE_VERSION: "v29.4.0"
6464
IGNITE_EVOLVE_APP_VERSION: "main" # use tagged when apps has tagged (blocked on things)
6565
outputs:
6666
carol_mnemonic: ${{ steps.save_mnemonic.outputs.carol_mnemonic }}
@@ -266,7 +266,7 @@ jobs:
266266
GMD_HOME: ${{ needs.liveness.outputs.gmd_home }}
267267
HERMES_VERSION: "v1.13.1"
268268
GAIA_VERSION: "v25.1.0"
269-
EVNODE_VERSION: "v1.0.0-beta.2.0.20250917144924-05372840f308"
269+
EVNODE_VERSION: "v1.0.0-beta.4"
270270
EVNODE_DA_VERSION: "v1.0.0-beta.1"
271271
steps:
272272
- name: Set up Go

.github/workflows/migration_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
timeout-minutes: 45
1414
env:
1515
DO_NOT_TRACK: true
16-
EVNODE_VERSION: "v1.0.0-beta.2.0.20250917144924-05372840f308"
17-
IGNITE_VERSION: "v29.3.1"
16+
EVNODE_VERSION: "v1.0.0-beta.4"
17+
IGNITE_VERSION: "v29.4.0"
1818
IGNITE_EVOLVE_APP_VERSION: "main" # use tagged when apps has tagged (blocked on things)
1919
steps:
2020
- uses: actions/checkout@v5

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ RUN apk add --no-cache \
77
bash
88

99
# Set environment variables
10-
ENV EVNODE_VERSION=v1.0.0-beta.2.0.20250917144924-05372840f308
10+
ENV EVNODE_VERSION=v1.0.0-beta.4
1111
ENV IGNITE_VERSION=v29.3.1
1212
ENV IGNITE_EVOLVE_APP_VERSION=main
1313

go.mod

Lines changed: 12 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,15 @@
11
module github.com/evstack/ev-abci
22

3-
go 1.24.6
3+
go 1.24.2
44

55
replace (
66
github.com/btcsuite/btcd => github.com/btcsuite/btcd v0.22.0-beta
77
github.com/cosmos/cosmos-sdk => github.com/cosmos/cosmos-sdk v0.50.14
88
github.com/ipfs/go-datastore => github.com/celestiaorg/go-datastore v0.0.0-20250801131506-48a63ae531e4
99
)
1010

11-
// Force client import to resolve from monolith
12-
replace github.com/moby/moby/client => github.com/moby/moby v28.3.3+incompatible
13-
1411
exclude github.com/btcsuite/btcd/chaincfg/chainhash v1.0.2
1512

16-
// Avoid ambiguous imports with moby monolithic module vs api split
17-
exclude github.com/moby/moby v27.5.1+incompatible
18-
19-
exclude github.com/moby/moby v28.1.1+incompatible
20-
21-
exclude github.com/moby/moby v28.4.0+incompatible
22-
23-
exclude github.com/moby/moby/client v0.1.0-beta.0
24-
25-
exclude github.com/moby/moby/api v1.52.0-beta.1
26-
2713
require (
2814
cosmossdk.io/api v0.9.2
2915
cosmossdk.io/collections v1.3.1
@@ -33,33 +19,30 @@ require (
3319
cosmossdk.io/log v1.6.1
3420
cosmossdk.io/math v1.5.3
3521
cosmossdk.io/store v1.1.2
36-
github.com/celestiaorg/go-header v0.7.1
37-
github.com/celestiaorg/tastora v0.4.1
22+
github.com/celestiaorg/go-header v0.7.2
3823
github.com/cometbft/cometbft v0.38.17
3924
github.com/cometbft/cometbft-db v0.14.1
4025
github.com/cosmos/cosmos-db v1.1.3
4126
github.com/cosmos/cosmos-proto v1.0.0-beta.5
4227
github.com/cosmos/cosmos-sdk v0.50.14
4328
github.com/cosmos/gogoproto v1.7.0
44-
github.com/evstack/ev-node v1.0.0-beta.2.0.20250917144924-05372840f308
45-
github.com/evstack/ev-node/core v1.0.0-beta.1.0.20250917144924-05372840f308
46-
github.com/evstack/ev-node/da v0.0.0-20250917144924-05372840f308
47-
github.com/evstack/ev-node/sequencers/single v0.0.0-20250917144924-05372840f308
29+
github.com/evstack/ev-node v1.0.0-beta.4
30+
github.com/evstack/ev-node/core v1.0.0-beta.3
31+
github.com/evstack/ev-node/da v1.0.0-beta.3
32+
github.com/evstack/ev-node/sequencers/single v1.0.0-beta.2
4833
github.com/go-kit/kit v0.13.0
4934
github.com/golang/protobuf v1.5.4
5035
github.com/grpc-ecosystem/grpc-gateway v1.16.0
5136
github.com/hashicorp/go-metrics v0.5.4
5237
github.com/ipfs/go-datastore v0.8.3
5338
github.com/libp2p/go-libp2p v0.43.0
5439
github.com/libp2p/go-libp2p-pubsub v0.15.0
55-
github.com/moby/moby v28.3.3+incompatible
5640
github.com/multiformats/go-multiaddr v0.16.1
5741
github.com/prometheus/client_golang v1.23.2
5842
github.com/rs/cors v1.11.1
5943
github.com/rs/zerolog v1.34.0
6044
github.com/spf13/cobra v1.10.1
6145
github.com/stretchr/testify v1.11.1
62-
go.uber.org/zap v1.27.0
6346
golang.org/x/net v0.44.0
6447
golang.org/x/sync v0.17.0
6548
google.golang.org/genproto/googleapis/api v0.0.0-20250707201910-8d1bb00bc6a7
@@ -90,12 +73,10 @@ require (
9073
github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect
9174
github.com/99designs/keyring v1.2.1 // indirect
9275
github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c // indirect
93-
github.com/BurntSushi/toml v1.5.0 // indirect
9476
github.com/DataDog/datadog-go v3.2.0+incompatible // indirect
9577
github.com/DataDog/zstd v1.5.7 // indirect
9678
github.com/Microsoft/go-winio v0.6.2 // indirect
9779
github.com/antlr4-go/antlr/v4 v4.13.1 // indirect
98-
github.com/avast/retry-go/v4 v4.6.1 // indirect
9980
github.com/benbjohnson/clock v1.3.5 // indirect
10081
github.com/beorn7/perks v1.0.1 // indirect
10182
github.com/bgentry/speakeasy v0.2.0 // indirect
@@ -105,7 +86,7 @@ require (
10586
github.com/bytedance/sonic v1.14.0 // indirect
10687
github.com/bytedance/sonic/loader v0.3.0 // indirect
10788
github.com/celestiaorg/go-libp2p-messenger v0.2.2 // indirect
108-
github.com/celestiaorg/go-square/v3 v3.0.0 // indirect
89+
github.com/celestiaorg/go-square/v2 v2.3.3 // indirect
10990
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
11091
github.com/cespare/xxhash/v2 v2.3.0 // indirect
11192
github.com/cloudwego/base64x v0.1.5 // indirect
@@ -115,16 +96,14 @@ require (
11596
github.com/cockroachdb/pebble v1.1.5 // indirect
11697
github.com/cockroachdb/redact v1.1.6 // indirect
11798
github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06 // indirect
118-
github.com/containerd/errdefs v1.0.0 // indirect
119-
github.com/containerd/errdefs/pkg v0.3.0 // indirect
12099
github.com/containerd/log v0.1.0 // indirect
121100
github.com/containerd/stargz-snapshotter/estargz v0.16.3 // indirect
122101
github.com/cosmos/btcutil v1.0.5 // indirect
123102
github.com/cosmos/go-bip39 v1.0.0 // indirect
124103
github.com/cosmos/gogogateway v1.2.0 // indirect
125104
github.com/cosmos/iavl v1.2.2 // indirect
126105
github.com/cosmos/ics23/go v0.11.0 // indirect
127-
github.com/cosmos/ledger-cosmos-go v0.15.0 // indirect
106+
github.com/cosmos/ledger-cosmos-go v0.14.0 // indirect
128107
github.com/cpuguy83/go-md2man/v2 v2.0.7 // indirect
129108
github.com/danieljoos/wincred v1.2.2 // indirect
130109
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
@@ -136,7 +115,7 @@ require (
136115
github.com/distribution/reference v0.6.0 // indirect
137116
github.com/docker/cli v28.1.1+incompatible // indirect
138117
github.com/docker/distribution v2.8.3+incompatible // indirect
139-
github.com/docker/docker v28.3.3+incompatible // indirect
118+
github.com/docker/docker v28.1.1+incompatible // indirect
140119
github.com/docker/docker-credential-helpers v0.9.3 // indirect
141120
github.com/docker/go-connections v0.5.0 // indirect
142121
github.com/docker/go-units v0.5.0 // indirect
@@ -319,7 +298,7 @@ require (
319298
github.com/whyrusleeping/go-keyspace v0.0.0-20160322163242-5b898ac5add1 // indirect
320299
github.com/wlynxg/anet v0.0.5 // indirect
321300
github.com/zondax/hid v0.9.2 // indirect
322-
github.com/zondax/ledger-go v1.0.0 // indirect
301+
github.com/zondax/ledger-go v0.14.3 // indirect
323302
go.etcd.io/bbolt v1.4.0-alpha.0.0.20240404170359-43604f3112c5 // indirect
324303
go.lsp.dev/jsonrpc2 v0.10.0 // indirect
325304
go.lsp.dev/pkg v0.0.0-20210717090340-384b27a52fb2 // indirect
@@ -335,6 +314,7 @@ require (
335314
go.uber.org/fx v1.24.0 // indirect
336315
go.uber.org/mock v0.5.2 // indirect
337316
go.uber.org/multierr v1.11.0 // indirect
317+
go.uber.org/zap v1.27.0 // indirect
338318
go.uber.org/zap/exp v0.3.0 // indirect
339319
go.yaml.in/yaml/v2 v2.4.2 // indirect
340320
go.yaml.in/yaml/v3 v3.0.4 // indirect
@@ -350,7 +330,7 @@ require (
350330
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
351331
gonum.org/v1/gonum v0.16.0 // indirect
352332
google.golang.org/genproto v0.0.0-20241118233622-e639e219e697 // indirect
353-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250728155136-f173205681a0 // indirect
333+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250707201910-8d1bb00bc6a7 // indirect
354334
gopkg.in/yaml.v2 v2.4.0 // indirect
355335
gopkg.in/yaml.v3 v3.0.1 // indirect
356336
gotest.tools/v3 v3.5.2 // indirect

0 commit comments

Comments
 (0)