Skip to content
Open
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
10 changes: 5 additions & 5 deletions .github/workflows/integration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
env:
IGNITE_VERSION: v29.3.0 # the gm build script depends on some annotations
IGNITE_EVOLVE_APP_VERSION: main
EVNODE_VERSION: v1.0.0-beta.10.0.20251216132820-afcd6bd9b354
EVNODE_VERSION: v1.0.0-rc.1
steps:
- uses: actions/checkout@v5

Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 30
env:
EVNODE_VERSION: "v1.0.0-beta.10.0.20251216132820-afcd6bd9b354"
EVNODE_VERSION: "v1.0.0-rc.1"
IGNITE_VERSION: "v29.6.1"
IGNITE_EVOLVE_APP_VERSION: "main"
EVOLVE_IMAGE_REPO: "evolve-gm"
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
timeout-minutes: 30
env:
DO_NOT_TRACK: true
EVNODE_VERSION: "v1.0.0-beta.10.0.20251216132820-afcd6bd9b354"
EVNODE_VERSION: "v1.0.0-rc.1"
IGNITE_VERSION: "v29.6.1"
IGNITE_EVOLVE_APP_VERSION: "main"
outputs:
Expand Down Expand Up @@ -313,7 +313,7 @@ jobs:
GMD_HOME: ${{ needs.liveness.outputs.gmd_home }}
HERMES_VERSION: "v1.13.1"
GAIA_VERSION: "v25.1.0"
EVNODE_VERSION: "v1.0.0-beta.10.0.20251216132820-afcd6bd9b354"
EVNODE_VERSION: "v1.0.0-rc.1"
steps:
- name: Set up Go
uses: actions/setup-go@v6
Expand Down Expand Up @@ -540,7 +540,7 @@ jobs:
timeout-minutes: 30
env:
DO_NOT_TRACK: true
EVNODE_VERSION: "v1.0.0-beta.10.0.20251216132820-afcd6bd9b354"
EVNODE_VERSION: "v1.0.0-rc.1"
IGNITE_VERSION: "v29.6.1"
IGNITE_EVOLVE_APP_VERSION: "main"
GAIA_VERSION: "v25.1.0"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/migration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions:
actions: write

env:
EVNODE_VERSION: "v1.0.0-beta.10.0.20251216132820-afcd6bd9b354"
EVNODE_VERSION: "v1.0.0-rc.1"
IGNITE_VERSION: "v29.6.1"
IGNITE_EVOLVE_APP_VERSION: "main"
EVOLVE_IMAGE_REPO: "ghcr.io/evstack/evolve-abci-gm"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN apk add --no-cache \
bash

# Set environment variables
ENV EVNODE_VERSION=v1.0.0-beta.10.0.20251216132820-afcd6bd9b354
ENV EVNODE_VERSION=v1.0.0-rc.1
ENV IGNITE_VERSION=v29.6.1
ENV IGNITE_EVOLVE_APP_VERSION=main

Expand Down
40 changes: 23 additions & 17 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,6 @@ module github.com/evstack/ev-abci

go 1.25.0

// TODO: remove after https://github.com/evstack/ev-node/pull/2797
replace (
github.com/evstack/ev-node => github.com/evstack/ev-node v1.0.0-beta.10.0.20251216132820-afcd6bd9b354
github.com/evstack/ev-node/core => github.com/evstack/ev-node/core v1.0.0-beta.5.0.20251216132820-afcd6bd9b354
)

require (
cosmossdk.io/api v0.9.2
cosmossdk.io/collections v1.3.1
Expand All @@ -17,15 +11,15 @@ require (
cosmossdk.io/log v1.6.1
cosmossdk.io/math v1.5.3
cosmossdk.io/store v1.1.2
github.com/celestiaorg/go-header v0.7.5-0.20260116211018-3f61d145c9d2
github.com/cometbft/cometbft v0.38.20
github.com/celestiaorg/go-header v0.8.1
github.com/cometbft/cometbft v0.38.21
github.com/cometbft/cometbft-db v0.14.1
github.com/cosmos/cosmos-db v1.1.3
github.com/cosmos/cosmos-proto v1.0.0-beta.5
github.com/cosmos/cosmos-sdk v0.50.15
github.com/cosmos/gogoproto v1.7.2
github.com/evstack/ev-node v1.0.0-beta.10
github.com/evstack/ev-node/core v1.0.0-beta.5
github.com/evstack/ev-node v1.0.0-rc.1
github.com/evstack/ev-node/core v1.0.0-rc.1
github.com/go-kit/kit v0.13.0
github.com/golang/protobuf v1.5.4
github.com/grpc-ecosystem/grpc-gateway v1.16.0
Expand All @@ -41,7 +35,7 @@ require (
github.com/stretchr/testify v1.11.1
golang.org/x/net v0.49.0
golang.org/x/sync v0.19.0
google.golang.org/genproto/googleapis/api v0.0.0-20251029180050-ab9386a59fda
google.golang.org/genproto/googleapis/api v0.0.0-20251202230838-ff82c1b0f217
google.golang.org/grpc v1.78.0
google.golang.org/protobuf v1.36.11
gotest.tools/v3 v3.5.2
Expand Down Expand Up @@ -74,9 +68,11 @@ require (
github.com/DataDog/zstd v1.5.7 // indirect
github.com/Microsoft/go-winio v0.6.2 // indirect
github.com/antlr4-go/antlr/v4 v4.13.1 // indirect
github.com/armon/go-metrics v0.4.1 // indirect
github.com/benbjohnson/clock v1.3.5 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/bgentry/speakeasy v0.2.0 // indirect
github.com/boltdb/bolt v1.3.1 // indirect
github.com/bufbuild/buf v1.54.0 // indirect
github.com/bufbuild/protocompile v0.14.1 // indirect
github.com/bufbuild/protoplugin v0.0.0-20250218205857-750e09ce93e1 // indirect
Expand All @@ -87,6 +83,7 @@ require (
github.com/celestiaorg/go-square/v3 v3.0.2 // indirect
github.com/celestiaorg/nmt v0.24.2 // indirect
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
github.com/cenkalti/backoff/v5 v5.0.3 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/cloudwego/base64x v0.1.5 // indirect
github.com/cockroachdb/errors v1.12.0 // indirect
Expand Down Expand Up @@ -124,7 +121,7 @@ require (
github.com/fatih/color v1.15.0 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
github.com/filecoin-project/go-clock v0.1.0 // indirect
github.com/filecoin-project/go-jsonrpc v0.9.0 // indirect
github.com/filecoin-project/go-jsonrpc v0.10.0 // indirect
github.com/flynn/noise v1.1.0 // indirect
github.com/fsnotify/fsnotify v1.9.0 // indirect
github.com/getsentry/sentry-go v0.33.0 // indirect
Expand Down Expand Up @@ -156,12 +153,17 @@ require (
github.com/gorilla/mux v1.8.1 // indirect
github.com/gorilla/websocket v1.5.3 // indirect
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.3 // indirect
github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c // indirect
github.com/hashicorp/go-hclog v1.6.3 // indirect
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
github.com/hashicorp/go-msgpack v0.5.5 // indirect
github.com/hashicorp/go-msgpack/v2 v2.1.2 // indirect
github.com/hashicorp/go-plugin v1.6.3 // indirect
github.com/hashicorp/golang-lru v1.0.2 // indirect
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
github.com/hashicorp/raft v1.7.3 // indirect
github.com/hashicorp/raft-boltdb v0.0.0-20251103221153-05f9dd7a5148 // indirect
github.com/hashicorp/yamux v0.1.2 // indirect
github.com/hdevalence/ed25519consensus v0.2.0 // indirect
github.com/huandu/skiplist v1.2.1 // indirect
Expand Down Expand Up @@ -189,7 +191,7 @@ require (
github.com/libp2p/go-cidranger v1.1.0 // indirect
github.com/libp2p/go-flow-metrics v0.3.0 // indirect
github.com/libp2p/go-libp2p-asn-util v0.4.1 // indirect
github.com/libp2p/go-libp2p-kad-dht v0.36.0 // indirect
github.com/libp2p/go-libp2p-kad-dht v0.37.0 // indirect
github.com/libp2p/go-libp2p-kbucket v0.8.0 // indirect
github.com/libp2p/go-libp2p-record v0.3.1 // indirect
github.com/libp2p/go-libp2p-routing-helpers v0.7.5 // indirect
Expand Down Expand Up @@ -305,9 +307,13 @@ require (
go.opencensus.io v0.24.0 // indirect
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.63.0 // indirect
go.opentelemetry.io/otel v1.38.0 // indirect
go.opentelemetry.io/otel/metric v1.38.0 // indirect
go.opentelemetry.io/otel/trace v1.38.0 // indirect
go.opentelemetry.io/otel v1.39.0 // indirect
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.39.0 // indirect
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.39.0 // indirect
go.opentelemetry.io/otel/metric v1.39.0 // indirect
go.opentelemetry.io/otel/sdk v1.39.0 // indirect
go.opentelemetry.io/otel/trace v1.39.0 // indirect
go.opentelemetry.io/proto/otlp v1.9.0 // indirect
go.uber.org/dig v1.19.0 // indirect
go.uber.org/fx v1.24.0 // indirect
go.uber.org/mock v0.5.2 // indirect
Expand All @@ -329,7 +335,7 @@ require (
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
gonum.org/v1/gonum v0.16.0 // indirect
google.golang.org/genproto v0.0.0-20241118233622-e639e219e697 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20251029180050-ab9386a59fda // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20251202230838-ff82c1b0f217 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
lukechampine.com/blake3 v1.4.1 // indirect
Expand Down
Loading
Loading