Skip to content

Commit 6bb7504

Browse files
committed
bump ibc-go to v10
1 parent 3de3a92 commit 6bb7504

File tree

22 files changed

+1300
-628
lines changed

22 files changed

+1300
-628
lines changed

app/app.go

Lines changed: 47 additions & 114 deletions
Large diffs are not rendered by default.

app/sim_test.go

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,10 @@ import (
3232
simcli "github.com/cosmos/cosmos-sdk/x/simulation/client/cli"
3333
slashingtypes "github.com/cosmos/cosmos-sdk/x/slashing/types"
3434
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"
35-
capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types"
3635

3736
simtypes "github.com/cosmos/cosmos-sdk/types/simulation"
38-
ibcfeetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types"
39-
ibctransfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types"
40-
ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported"
37+
ibctransfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types"
38+
ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported"
4139
cronosmoduletypes "github.com/crypto-org-chain/cronos/v2/x/cronos/types"
4240
)
4341

@@ -236,12 +234,10 @@ func TestAppImportExport(t *testing.T) {
236234
{app.keys[paramtypes.StoreKey], newApp.keys[paramtypes.StoreKey], [][]byte{}},
237235
{app.keys[govtypes.StoreKey], newApp.keys[govtypes.StoreKey], [][]byte{}},
238236
{app.keys[evidencetypes.StoreKey], newApp.keys[evidencetypes.StoreKey], [][]byte{}},
239-
{app.keys[capabilitytypes.StoreKey], newApp.keys[capabilitytypes.StoreKey], [][]byte{}},
240237
{app.keys[evmtypes.StoreKey], newApp.keys[evmtypes.StoreKey], [][]byte{}},
241238
{app.keys[cronosmoduletypes.StoreKey], newApp.keys[cronosmoduletypes.StoreKey], [][]byte{}},
242239
{app.keys[ibcexported.StoreKey], newApp.keys[ibcexported.StoreKey], [][]byte{}},
243240
{app.keys[ibctransfertypes.StoreKey], newApp.keys[ibctransfertypes.StoreKey], [][]byte{}},
244-
{app.keys[ibcfeetypes.StoreKey], newApp.keys[ibcfeetypes.StoreKey], [][]byte{}},
245241
}
246242

247243
for _, skp := range storeKeysPrefixes {

app/versiondb.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ func (app *App) setupVersionDB(
1616
homePath string,
1717
keys map[string]*storetypes.KVStoreKey,
1818
tkeys map[string]*storetypes.TransientStoreKey,
19-
memKeys map[string]*storetypes.MemoryStoreKey,
2019
okeys map[string]*storetypes.ObjectStoreKey,
2120
) (storetypes.RootMultiStore, error) {
2221
dataDir := filepath.Join(homePath, "data", "versiondb")
@@ -51,9 +50,6 @@ func (app *App) setupVersionDB(
5150
for _, k := range tkeys {
5251
delegatedStoreKeys[k] = struct{}{}
5352
}
54-
for _, k := range memKeys {
55-
delegatedStoreKeys[k] = struct{}{}
56-
}
5753
for _, k := range okeys {
5854
delegatedStoreKeys[k] = struct{}{}
5955
}

app/versiondb_placeholder.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ func (app *App) setupVersionDB(
1313
homePath string,
1414
keys map[string]*storetypes.KVStoreKey,
1515
tkeys map[string]*storetypes.TransientStoreKey,
16-
memKeys map[string]*storetypes.MemoryStoreKey,
1716
okeys map[string]*storetypes.ObjectStoreKey,
1817
) (storetypes.RootMultiStore, error) {
1918
return nil, errors.New("versiondb is not supported in this binary")

cmd/cronosd/cmd/versiondb.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
)
1515

1616
func ChangeSetCmd() *cobra.Command {
17-
keys, _, _, _ := app.StoreKeys()
17+
keys, _, _ := app.StoreKeys()
1818
storeNames := make([]string, 0, len(keys))
1919
for name := range keys {
2020
storeNames = append(storeNames, name)

go.mod

Lines changed: 74 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -18,50 +18,53 @@ require (
1818
filippo.io/age v1.2.1
1919
github.com/99designs/keyring v1.2.2
2020
github.com/cometbft/cometbft v0.38.17
21-
github.com/cosmos/cosmos-db v1.1.0
21+
github.com/cosmos/cosmos-db v1.1.1
2222
github.com/cosmos/cosmos-proto v1.0.0-beta.5
23-
github.com/cosmos/cosmos-sdk v0.50.10
23+
github.com/cosmos/cosmos-sdk v0.50.13
2424
github.com/cosmos/gogoproto v1.7.0
25-
github.com/cosmos/ibc-go/modules/apps/callbacks v0.0.0-20241220132848-a9bdb8a50a39 // v9.0.2
26-
github.com/cosmos/ibc-go/modules/capability v1.0.1
2725
// release/v10.0.x
28-
github.com/cosmos/ibc-go/v9 v9.0.2
26+
github.com/cosmos/ibc-go/v10 v10.1.1
2927
github.com/cosmos/rosetta v0.50.3-1
3028
github.com/crypto-org-chain/cronos/store v0.0.4
3129
github.com/crypto-org-chain/cronos/versiondb v0.0.0-00010101000000-000000000000
32-
github.com/ethereum/go-ethereum v1.14.12
30+
github.com/ethereum/go-ethereum v1.15.5
3331
github.com/evmos/ethermint v0.0.0-00010101000000-000000000000
3432
github.com/golang/protobuf v1.5.4
3533
github.com/gorilla/mux v1.8.1
3634
github.com/grpc-ecosystem/grpc-gateway v1.16.0
3735
github.com/hashicorp/go-metrics v0.5.3
3836
github.com/linxGnu/grocksdb v1.9.10-0.20250331012329-9d5f074653d1
39-
github.com/spf13/cast v1.7.0
37+
github.com/spf13/cast v1.7.1
4038
github.com/spf13/cobra v1.8.1
4139
github.com/spf13/pflag v1.0.5
4240
github.com/spf13/viper v1.19.0
4341
github.com/stretchr/testify v1.10.0
44-
golang.org/x/crypto v0.35.0
45-
google.golang.org/genproto/googleapis/api v0.0.0-20241202173237-19429a94021a
46-
google.golang.org/grpc v1.70.0
47-
google.golang.org/protobuf v1.36.4
42+
golang.org/x/crypto v0.37.0
43+
google.golang.org/genproto/googleapis/api v0.0.0-20250106144421-5f5ef82da422
44+
google.golang.org/grpc v1.71.1
45+
google.golang.org/protobuf v1.36.6
4846
gopkg.in/yaml.v2 v2.4.0
4947
)
5048

5149
require (
52-
cloud.google.com/go v0.115.0 // indirect
53-
cloud.google.com/go/auth v0.6.0 // indirect
54-
cloud.google.com/go/auth/oauth2adapt v0.2.2 // indirect
55-
cloud.google.com/go/compute/metadata v0.5.2 // indirect
56-
cloud.google.com/go/iam v1.1.9 // indirect
57-
cloud.google.com/go/storage v1.41.0 // indirect
50+
cel.dev/expr v0.20.0 // indirect
51+
cloud.google.com/go v0.116.0 // indirect
52+
cloud.google.com/go/auth v0.14.1 // indirect
53+
cloud.google.com/go/auth/oauth2adapt v0.2.7 // indirect
54+
cloud.google.com/go/compute/metadata v0.6.0 // indirect
55+
cloud.google.com/go/iam v1.2.2 // indirect
56+
cloud.google.com/go/monitoring v1.21.2 // indirect
57+
cloud.google.com/go/storage v1.49.0 // indirect
5858
cosmossdk.io/collections v0.4.0 // indirect
59-
cosmossdk.io/depinject v1.0.0 // indirect
60-
cosmossdk.io/x/tx v0.13.7 // indirect
59+
cosmossdk.io/depinject v1.2.0 // indirect
60+
cosmossdk.io/x/tx v0.14.0 // indirect
6161
filippo.io/edwards25519 v1.1.0 // indirect
6262
github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect
6363
github.com/DataDog/datadog-go v4.8.3+incompatible // indirect
64-
github.com/DataDog/zstd v1.5.5 // indirect
64+
github.com/DataDog/zstd v1.5.7 // indirect
65+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.26.0 // indirect
66+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.48.1 // indirect
67+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.48.1 // indirect
6568
github.com/Microsoft/go-winio v0.6.2 // indirect
6669
github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6 // indirect
6770
github.com/VictoriaMetrics/fastcache v1.6.0 // indirect
@@ -70,20 +73,21 @@ require (
7073
github.com/beorn7/perks v1.0.1 // indirect
7174
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
7275
github.com/bgentry/speakeasy v0.2.0 // indirect
73-
github.com/bits-and-blooms/bitset v1.13.0 // indirect
76+
github.com/bits-and-blooms/bitset v1.22.0 // indirect
7477
github.com/btcsuite/btcd v0.24.2 // indirect
7578
github.com/btcsuite/btcd/btcec/v2 v2.3.4 // indirect
7679
github.com/btcsuite/btcd/btcutil v1.1.6 // indirect
7780
github.com/btcsuite/btcd/chaincfg/chainhash v1.1.0 // indirect
7881
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
7982
github.com/cespare/xxhash/v2 v2.3.0 // indirect
8083
github.com/chzyer/readline v1.5.1 // indirect
84+
github.com/cncf/xds/go v0.0.0-20250121191232-2f005788dc42 // indirect
8185
github.com/cockroachdb/apd/v2 v2.0.2 // indirect
8286
github.com/cockroachdb/errors v1.11.3 // indirect
8387
github.com/cockroachdb/fifo v0.0.0-20240616162244-4768e80dfb9a // indirect
8488
github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b // indirect
85-
github.com/cockroachdb/pebble v1.1.2 // indirect
86-
github.com/cockroachdb/redact v1.1.5 // indirect
89+
github.com/cockroachdb/pebble v1.1.5 // indirect
90+
github.com/cockroachdb/redact v1.1.6 // indirect
8791
github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06 // indirect
8892
github.com/coinbase/rosetta-sdk-go/types v1.0.0 // indirect
8993
github.com/cometbft/cometbft-db v0.15.0 // indirect
@@ -92,7 +96,7 @@ require (
9296
github.com/cosmos/gogogateway v1.2.0 // indirect
9397
github.com/cosmos/iavl v1.2.4-0.20241218014611-3b0ad9922f9f // indirect
9498
github.com/cosmos/ics23/go v0.11.0 // indirect
95-
github.com/cosmos/ledger-cosmos-go v0.13.3 // indirect
99+
github.com/cosmos/ledger-cosmos-go v0.14.0 // indirect
96100
github.com/cosmos/rosetta-sdk-go v0.10.0 // indirect
97101
github.com/creachadair/atomicfile v0.3.1 // indirect
98102
github.com/creachadair/tomledit v0.0.24 // indirect
@@ -101,7 +105,7 @@ require (
101105
github.com/danieljoos/wincred v1.2.1 // indirect
102106
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
103107
github.com/deckarep/golang-set/v2 v2.1.0 // indirect
104-
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
108+
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.4.0 // indirect
105109
github.com/desertbit/timer v1.0.1 // indirect
106110
github.com/dgraph-io/badger/v4 v4.3.0 // indirect
107111
github.com/dgraph-io/ristretto v0.1.2-0.20240116140435-c67e07994f91 // indirect
@@ -111,9 +115,11 @@ require (
111115
github.com/dvsekhvalnov/jose2go v1.7.0 // indirect
112116
github.com/edsrzf/mmap-go v1.1.0 // indirect
113117
github.com/emicklei/dot v1.6.2 // indirect
118+
github.com/envoyproxy/go-control-plane/envoy v1.32.4 // indirect
119+
github.com/envoyproxy/protoc-gen-validate v1.2.1 // indirect
114120
github.com/fatih/color v1.17.0 // indirect
115121
github.com/felixge/httpsnoop v1.0.4 // indirect
116-
github.com/fsnotify/fsnotify v1.7.0 // indirect
122+
github.com/fsnotify/fsnotify v1.9.0 // indirect
117123
github.com/gballet/go-libpcsclite v0.0.0-20190607065134-2772fd86a8ff // indirect
118124
github.com/getsentry/sentry-go v0.28.1 // indirect
119125
github.com/go-kit/kit v0.13.0 // indirect
@@ -133,46 +139,46 @@ require (
133139
github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb // indirect
134140
github.com/google/btree v1.1.3 // indirect
135141
github.com/google/flatbuffers v24.3.25+incompatible // indirect
136-
github.com/google/go-cmp v0.6.0 // indirect
142+
github.com/google/go-cmp v0.7.0 // indirect
137143
github.com/google/orderedcode v0.0.1 // indirect
138-
github.com/google/s2a-go v0.1.7 // indirect
144+
github.com/google/s2a-go v0.1.9 // indirect
139145
github.com/google/uuid v1.6.0 // indirect
140-
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
141-
github.com/googleapis/gax-go/v2 v2.12.5 // indirect
146+
github.com/googleapis/enterprise-certificate-proxy v0.3.4 // indirect
147+
github.com/googleapis/gax-go/v2 v2.14.1 // indirect
142148
github.com/gorilla/handlers v1.5.2 // indirect
143149
github.com/gorilla/websocket v1.5.3 // indirect
144150
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect
145151
github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c // indirect
146152
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
147-
github.com/hashicorp/go-getter v1.7.5 // indirect
153+
github.com/hashicorp/go-getter v1.7.8 // indirect
148154
github.com/hashicorp/go-hclog v1.6.3 // indirect
149155
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
150-
github.com/hashicorp/go-plugin v1.6.1 // indirect
156+
github.com/hashicorp/go-plugin v1.6.3 // indirect
151157
github.com/hashicorp/go-safetemp v1.0.0 // indirect
152158
github.com/hashicorp/go-version v1.6.0 // indirect
153159
github.com/hashicorp/golang-lru v1.0.2 // indirect
154160
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
155161
github.com/hashicorp/hcl v1.0.0 // indirect
156-
github.com/hashicorp/yamux v0.1.1 // indirect
162+
github.com/hashicorp/yamux v0.1.2 // indirect
157163
github.com/hdevalence/ed25519consensus v0.2.0 // indirect
158164
github.com/holiman/bloomfilter/v2 v2.0.3 // indirect
159-
github.com/holiman/uint256 v1.3.1 // indirect
160-
github.com/huandu/skiplist v1.2.0 // indirect
165+
github.com/holiman/uint256 v1.3.2 // indirect
166+
github.com/huandu/skiplist v1.2.1 // indirect
161167
github.com/huin/goupnp v1.0.3 // indirect
162168
github.com/iancoleman/strcase v0.3.0 // indirect
163169
github.com/improbable-eng/grpc-web v0.15.0 // indirect
164170
github.com/inconshreveable/mousetrap v1.1.0 // indirect
165171
github.com/jackpal/go-nat-pmp v1.0.2 // indirect
166172
github.com/jmespath/go-jmespath v0.4.0 // indirect
167173
github.com/jmhodges/levigo v1.0.0 // indirect
168-
github.com/klauspost/compress v1.17.9 // indirect
174+
github.com/klauspost/compress v1.18.0 // indirect
169175
github.com/kr/pretty v0.3.1 // indirect
170176
github.com/kr/text v0.2.0 // indirect
171177
github.com/ledgerwatch/erigon-lib v0.0.0-20230210071639-db0e7ed11263 // indirect
172178
github.com/lib/pq v1.10.9 // indirect
173179
github.com/magiconair/properties v1.8.7 // indirect
174180
github.com/manifoldco/promptui v0.9.0 // indirect
175-
github.com/mattn/go-colorable v0.1.13 // indirect
181+
github.com/mattn/go-colorable v0.1.14 // indirect
176182
github.com/mattn/go-isatty v0.0.20 // indirect
177183
github.com/mattn/go-runewidth v0.0.15 // indirect
178184
github.com/minio/highwayhash v1.0.3 // indirect
@@ -184,25 +190,26 @@ require (
184190
github.com/oasisprotocol/curve25519-voi v0.0.0-20230904125328-1f23a7beb09a // indirect
185191
github.com/oklog/run v1.1.0 // indirect
186192
github.com/olekukonko/tablewriter v0.0.5 // indirect
187-
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
193+
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
188194
github.com/petermattis/goid v0.0.0-20240813172612-4fcff4a6cae7 // indirect
189195
github.com/pkg/errors v0.9.1 // indirect
196+
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect
190197
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
191-
github.com/prometheus/client_golang v1.20.5 // indirect
198+
github.com/prometheus/client_golang v1.22.0 // indirect
192199
github.com/prometheus/client_model v0.6.1 // indirect
193-
github.com/prometheus/common v0.62.0 // indirect
200+
github.com/prometheus/common v0.63.0 // indirect
194201
github.com/prometheus/procfs v0.15.1 // indirect
195202
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect
196203
github.com/rivo/uniseg v0.2.0 // indirect
197-
github.com/rogpeppe/go-internal v1.12.0 // indirect
204+
github.com/rogpeppe/go-internal v1.14.1 // indirect
198205
github.com/rs/cors v1.11.1 // indirect
199-
github.com/rs/zerolog v1.33.0 // indirect
200-
github.com/sagikazarmark/locafero v0.6.0 // indirect
206+
github.com/rs/zerolog v1.34.0 // indirect
207+
github.com/sagikazarmark/locafero v0.7.0 // indirect
201208
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
202209
github.com/sasha-s/go-deadlock v0.3.5 // indirect
203210
github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible // indirect
204211
github.com/sourcegraph/conc v0.3.0 // indirect
205-
github.com/spf13/afero v1.11.0 // indirect
212+
github.com/spf13/afero v1.12.0 // indirect
206213
github.com/status-im/keycard-go v0.2.0 // indirect
207214
github.com/subosito/gotenv v1.6.0 // indirect
208215
github.com/syndtr/goleveldb v1.0.1-0.20220721030215-126854af5e6d // indirect
@@ -223,29 +230,33 @@ require (
223230
github.com/zondax/ledger-go v0.14.3 // indirect
224231
go.etcd.io/bbolt v1.4.0-alpha.1 // indirect
225232
go.opencensus.io v0.24.0 // indirect
226-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect
227-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect
228-
go.opentelemetry.io/otel v1.32.0 // indirect
229-
go.opentelemetry.io/otel/metric v1.32.0 // indirect
230-
go.opentelemetry.io/otel/trace v1.32.0 // indirect
233+
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
234+
go.opentelemetry.io/contrib/detectors/gcp v1.34.0 // indirect
235+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.58.0 // indirect
236+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.58.0 // indirect
237+
go.opentelemetry.io/otel v1.34.0 // indirect
238+
go.opentelemetry.io/otel/metric v1.34.0 // indirect
239+
go.opentelemetry.io/otel/sdk v1.34.0 // indirect
240+
go.opentelemetry.io/otel/sdk/metric v1.34.0 // indirect
241+
go.opentelemetry.io/otel/trace v1.34.0 // indirect
231242
go.uber.org/multierr v1.11.0 // indirect
232-
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
233-
golang.org/x/net v0.36.0 // indirect
234-
golang.org/x/oauth2 v0.24.0 // indirect
235-
golang.org/x/sync v0.11.0 // indirect
236-
golang.org/x/sys v0.30.0 // indirect
237-
golang.org/x/term v0.29.0 // indirect
238-
golang.org/x/text v0.22.0 // indirect
239-
golang.org/x/time v0.5.0 // indirect
240-
google.golang.org/api v0.186.0 // indirect
241-
google.golang.org/genproto v0.0.0-20240701130421-f6361c86f094 // indirect
242-
google.golang.org/genproto/googleapis/rpc v0.0.0-20241202173237-19429a94021a // indirect
243+
golang.org/x/exp v0.0.0-20250305212735-054e65f0b394 // indirect
244+
golang.org/x/net v0.39.0 // indirect
245+
golang.org/x/oauth2 v0.27.0 // indirect
246+
golang.org/x/sync v0.13.0 // indirect
247+
golang.org/x/sys v0.32.0 // indirect
248+
golang.org/x/term v0.31.0 // indirect
249+
golang.org/x/text v0.24.0 // indirect
250+
golang.org/x/time v0.10.0 // indirect
251+
google.golang.org/api v0.222.0 // indirect
252+
google.golang.org/genproto v0.0.0-20241118233622-e639e219e697 // indirect
253+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250422160041-2d3770c4ea7f // indirect
243254
gopkg.in/ini.v1 v1.67.0 // indirect
244255
gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce // indirect
245256
gopkg.in/yaml.v3 v3.0.1 // indirect
246-
gotest.tools/v3 v3.5.1 // indirect
257+
gotest.tools/v3 v3.5.2 // indirect
247258
nhooyr.io/websocket v1.8.11 // indirect
248-
pgregory.net/rapid v1.1.0 // indirect
259+
pgregory.net/rapid v1.2.0 // indirect
249260
sigs.k8s.io/yaml v1.4.0 // indirect
250261
)
251262

@@ -272,7 +283,7 @@ replace (
272283
github.com/dgrijalva/jwt-go => github.com/golang-jwt/jwt/v4 v4.4.2
273284
github.com/ethereum/go-ethereum => github.com/crypto-org-chain/go-ethereum v1.10.20-0.20240926023215-d2275b4afb9a
274285
// develop
275-
github.com/evmos/ethermint => github.com/crypto-org-chain/ethermint v0.6.1-0.20250114082733-11b246d20511
286+
github.com/evmos/ethermint => github.com/jayt106/ethermint v0.4.2-0.20250524001118-ed40c40a9c10
276287
// Fix upstream GHSA-h395-qcrw-5vmq and GHSA-3vp4-m3rf-835h vulnerabilities.
277288
// TODO Remove it: https://github.com/cosmos/cosmos-sdk/issues/10409
278289
github.com/gin-gonic/gin => github.com/gin-gonic/gin v1.9.0

0 commit comments

Comments
 (0)