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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ contracts/@openzeppelin/*

# Build files
evmd/build/
evmd/evmd

build/

Expand Down
2 changes: 1 addition & 1 deletion ante/ante.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
antetypes "github.com/cosmos/evm/ante/types"
"github.com/cosmos/evm/x/vm/types"
"github.com/cosmos/gogoproto/proto"
ibckeeper "github.com/cosmos/ibc-go/v10/modules/core/keeper"
ibckeeper "github.com/cosmos/ibc-go/v11/modules/core/keeper"

errorsmod "cosmossdk.io/errors"
storetypes "cosmossdk.io/store/types"
Expand Down
2 changes: 1 addition & 1 deletion ante/cosmos.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
cosmosante "github.com/cosmos/evm/ante/cosmos"
evmante "github.com/cosmos/evm/ante/evm"
evmtypes "github.com/cosmos/evm/x/vm/types"
ibcante "github.com/cosmos/ibc-go/v10/modules/core/ante"
ibcante "github.com/cosmos/ibc-go/v11/modules/core/ante"

sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/x/auth/ante"
Expand Down
24 changes: 12 additions & 12 deletions evmd/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,18 +43,18 @@ import (
evmkeeper "github.com/cosmos/evm/x/vm/keeper"
evmtypes "github.com/cosmos/evm/x/vm/types"
"github.com/cosmos/gogoproto/proto"
ibccallbacks "github.com/cosmos/ibc-go/v10/modules/apps/callbacks"
transfer "github.com/cosmos/ibc-go/v10/modules/apps/transfer"
transferkeeper "github.com/cosmos/ibc-go/v10/modules/apps/transfer/keeper"
ibctransfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types"
transferv2 "github.com/cosmos/ibc-go/v10/modules/apps/transfer/v2"
ibc "github.com/cosmos/ibc-go/v10/modules/core"
porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types"
ibcapi "github.com/cosmos/ibc-go/v10/modules/core/api"
ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported"
ibckeeper "github.com/cosmos/ibc-go/v10/modules/core/keeper"
ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint"
ibctesting "github.com/cosmos/ibc-go/v10/testing"
ibccallbacks "github.com/cosmos/ibc-go/v11/modules/apps/callbacks"
transfer "github.com/cosmos/ibc-go/v11/modules/apps/transfer"
transferkeeper "github.com/cosmos/ibc-go/v11/modules/apps/transfer/keeper"
ibctransfertypes "github.com/cosmos/ibc-go/v11/modules/apps/transfer/types"
transferv2 "github.com/cosmos/ibc-go/v11/modules/apps/transfer/v2"
ibc "github.com/cosmos/ibc-go/v11/modules/core"
porttypes "github.com/cosmos/ibc-go/v11/modules/core/05-port/types"
ibcapi "github.com/cosmos/ibc-go/v11/modules/core/api"
ibcexported "github.com/cosmos/ibc-go/v11/modules/core/exported"
ibckeeper "github.com/cosmos/ibc-go/v11/modules/core/keeper"
ibctm "github.com/cosmos/ibc-go/v11/modules/light-clients/07-tendermint"
ibctesting "github.com/cosmos/ibc-go/v11/testing"

autocliv1 "cosmossdk.io/api/cosmos/autocli/v1"
reflectionv1 "cosmossdk.io/api/cosmos/reflection/v1"
Expand Down
2 changes: 1 addition & 1 deletion evmd/config/permissions.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
erc20types "github.com/cosmos/evm/x/erc20/types"
feemarkettypes "github.com/cosmos/evm/x/feemarket/types"
vmtypes "github.com/cosmos/evm/x/vm/types"
transfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types"
transfertypes "github.com/cosmos/ibc-go/v11/modules/apps/transfer/types"
corevm "github.com/ethereum/go-ethereum/core/vm"
)

Expand Down
6 changes: 2 additions & 4 deletions evmd/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ require (
cosmossdk.io/client/v2 v2.0.0-beta.10.0.20260227212600-39d4711b8970
cosmossdk.io/core v1.1.0
cosmossdk.io/errors v1.1.0
cosmossdk.io/log/v2 v2.0.2-0.20260311135820-ea452a1660fd
cosmossdk.io/log/v2 v2.0.2-0.20260311165803-2c527014f3ee
cosmossdk.io/math v1.5.3
cosmossdk.io/store v1.10.0-rc.2.0.20260311135820-ea452a1660fd
cosmossdk.io/tools/confix v0.1.2
Expand All @@ -16,7 +16,7 @@ require (
github.com/cosmos/cosmos-sdk v0.54.0-rc.1.0.20260311165803-2c527014f3ee
github.com/cosmos/evm v0.2.0
github.com/cosmos/gogoproto v1.7.2
github.com/cosmos/ibc-go/v10 v10.0.0-beta.0.0.20260311202420-1b48494ae021
github.com/cosmos/ibc-go/v11 v11.0.0-20260311172126-d2ebd83ffd5f
github.com/ethereum/go-ethereum v1.16.8
github.com/onsi/ginkgo/v2 v2.23.4
github.com/onsi/gomega v1.38.0
Expand Down Expand Up @@ -388,5 +388,3 @@ replace (
)

replace github.com/cosmos/cosmos-sdk/x/group => github.com/cosmos/cosmos-sdk/enterprise/group v0.0.0-20260227212600-39d4711b8970

replace cosmossdk.io/log/v2 => github.com/cosmos/cosmos-sdk/log/v2 v2.0.2-0.20260302180736-2fbcc8d5f49e
8 changes: 4 additions & 4 deletions evmd/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ cosmossdk.io/depinject v1.2.1 h1:eD6FxkIjlVaNZT+dXTQuwQTKZrFZ4UrfCq1RKgzyhMw=
cosmossdk.io/depinject v1.2.1/go.mod h1:lqQEycz0H2JXqvOgVwTsjEdMI0plswI7p6KX+MVqFOM=
cosmossdk.io/errors v1.1.0 h1:X2DSt9JYgH7cuiaDr318aUqIl2z5Lfo/PdGzAtmczUU=
cosmossdk.io/errors v1.1.0/go.mod h1:lnjBmx7etZpMTLnxdspZupH0d9HGRWZhiezDZX2ayyI=
cosmossdk.io/log/v2 v2.0.2-0.20260311165803-2c527014f3ee h1:6p/O3NR3o2Fi5mCTs2lmxdugDMiRVEufp0WQ+eKS1MM=
cosmossdk.io/log/v2 v2.0.2-0.20260311165803-2c527014f3ee/go.mod h1:+31kpYi571Y8KWWPUnw/ict/S7yBqHaCfgFKn3HXr+Y=
cosmossdk.io/math v1.5.3 h1:WH6tu6Z3AUCeHbeOSHg2mt9rnoiUWVWaQ2t6Gkll96U=
cosmossdk.io/math v1.5.3/go.mod h1:uqcZv7vexnhMFJF+6zh9EWdm/+Ylyln34IvPnBauPCQ=
cosmossdk.io/schema v1.1.0 h1:mmpuz3dzouCoyjjcMcA/xHBEmMChN+EHh8EHxHRHhzE=
Expand Down Expand Up @@ -270,8 +272,6 @@ github.com/cosmos/cosmos-proto v1.0.0-beta.5 h1:eNcayDLpip+zVLRLYafhzLvQlSmyab+R
github.com/cosmos/cosmos-proto v1.0.0-beta.5/go.mod h1:hQGLpiIUloJBMdQMMWb/4wRApmI9hjHH05nefC0Ojec=
github.com/cosmos/cosmos-sdk v0.54.0-rc.1.0.20260311165803-2c527014f3ee h1:gAqxehRc0hIEOzw/pUQWDVADds7P0PnGEeRXUsKZHRw=
github.com/cosmos/cosmos-sdk v0.54.0-rc.1.0.20260311165803-2c527014f3ee/go.mod h1:iH4LQxDSImD6nwxmj+dyfUurZy0dlhBjQluMwidHKBE=
github.com/cosmos/cosmos-sdk/log/v2 v2.0.2-0.20260302180736-2fbcc8d5f49e h1:mZfv3i0jUvAp2m2mMPVb9fhgLjnh98aDbYbPddV3YR8=
github.com/cosmos/cosmos-sdk/log/v2 v2.0.2-0.20260302180736-2fbcc8d5f49e/go.mod h1:Mvss71xjzwK7lywM5hO+Emne4BcAgK+YhkiiO1NU7mQ=
github.com/cosmos/go-bip39 v1.0.0 h1:pcomnQdrdH22njcAatO0yWojsUnCO3y2tNoV1cb6hHY=
github.com/cosmos/go-bip39 v1.0.0/go.mod h1:RNJv0H/pOIVgxw6KS7QeX2a0Uo0aKUlfhZ4xuwvCdJw=
github.com/cosmos/go-ethereum v1.16.2-cosmos-1.0.20260126204437-32ededcf907f h1:xsll4sPrBiGOaLCfRRsGXBQeveGId7TYI+WJ7KkTuwE=
Expand All @@ -283,8 +283,8 @@ github.com/cosmos/gogoproto v1.7.2 h1:5G25McIraOC0mRFv9TVO139Uh3OklV2hczr13KKVHC
github.com/cosmos/gogoproto v1.7.2/go.mod h1:8S7w53P1Y1cHwND64o0BnArT6RmdgIvsBuco6uTllsk=
github.com/cosmos/iavl v1.2.6 h1:Hs3LndJbkIB+rEvToKJFXZvKo6Vy0Ex1SJ54hhtioIs=
github.com/cosmos/iavl v1.2.6/go.mod h1:GiM43q0pB+uG53mLxLDzimxM9l/5N9UuSY3/D0huuVw=
github.com/cosmos/ibc-go/v10 v10.0.0-beta.0.0.20260311202420-1b48494ae021 h1:S7/LxIfkYZ4jEy2tPRpIU+GZ1KfhnRINSJTHLwx6vIA=
github.com/cosmos/ibc-go/v10 v10.0.0-beta.0.0.20260311202420-1b48494ae021/go.mod h1:DJWRAeB10fPiIlYaVcbuFW88DcUvT4zAzR2TLxz3Mes=
github.com/cosmos/ibc-go/v11 v11.0.0-20260311172126-d2ebd83ffd5f h1:UWVmJAieoNIRFk07n2dwPZjGWeVjzVt9fy9md5ppAXg=
github.com/cosmos/ibc-go/v11 v11.0.0-20260311172126-d2ebd83ffd5f/go.mod h1:pGaslaA72xPFbgLuaUgogJLDEyotleA25VAtNiNEzh0=
github.com/cosmos/ics23/go v0.11.0 h1:jk5skjT0TqX5e5QJbEnwXIS2yI2vnmLOgpQPeM5RtnU=
github.com/cosmos/ics23/go v0.11.0/go.mod h1:A8OjxPE67hHST4Icw94hOxxFEJMBG031xIGF/JHNIY0=
github.com/cosmos/keyring v1.2.0 h1:8C1lBP9xhImmIabyXW4c3vFjjLiBdGCmfLUfeZlV1Yo=
Expand Down
2 changes: 1 addition & 1 deletion evmd/test_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"github.com/cosmos/evm/testutil/integration/evm/network"
feemarkettypes "github.com/cosmos/evm/x/feemarket/types"
"github.com/cosmos/evm/x/vm/types"
ibctesting "github.com/cosmos/ibc-go/v10/testing"
ibctesting "github.com/cosmos/ibc-go/v11/testing"

"cosmossdk.io/log/v2"
"cosmossdk.io/math"
Expand Down
2 changes: 1 addition & 1 deletion evmd/tests/ibc/helper.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
erc20types "github.com/cosmos/evm/x/erc20/types"
"github.com/cosmos/evm/x/vm/statedb"
"github.com/cosmos/evm/x/vm/types"
ibctesting "github.com/cosmos/ibc-go/v10/testing"
ibctesting "github.com/cosmos/ibc-go/v11/testing"

errorsmod "cosmossdk.io/errors"

Expand Down
10 changes: 5 additions & 5 deletions evmd/tests/ibc/ibc_middleware_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ import (
callbacktypes "github.com/cosmos/evm/x/ibc/callbacks/types"
"github.com/cosmos/evm/x/vm/statedb"
evmtypes "github.com/cosmos/evm/x/vm/types"
ibctransfer "github.com/cosmos/ibc-go/v10/modules/apps/transfer"
transfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types"
clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types"
channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types"
ibctesting "github.com/cosmos/ibc-go/v10/testing"
ibctransfer "github.com/cosmos/ibc-go/v11/modules/apps/transfer"
transfertypes "github.com/cosmos/ibc-go/v11/modules/apps/transfer/types"
clienttypes "github.com/cosmos/ibc-go/v11/modules/core/02-client/types"
channeltypes "github.com/cosmos/ibc-go/v11/modules/core/04-channel/types"
ibctesting "github.com/cosmos/ibc-go/v11/testing"

"cosmossdk.io/math"

Expand Down
12 changes: 6 additions & 6 deletions evmd/tests/ibc/ics02_precompile_client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ import (
"github.com/cosmos/evm/precompiles/ics02"
evmibctesting "github.com/cosmos/evm/testutil/ibc"
"github.com/cosmos/gogoproto/proto"
clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types"
commitmenttypesv2 "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types/v2"
ibchost "github.com/cosmos/ibc-go/v10/modules/core/24-host"
ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported"
ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint"
ibctesting "github.com/cosmos/ibc-go/v10/testing"
clienttypes "github.com/cosmos/ibc-go/v11/modules/core/02-client/types"
commitmenttypesv2 "github.com/cosmos/ibc-go/v11/modules/core/23-commitment/types/v2"
ibchost "github.com/cosmos/ibc-go/v11/modules/core/24-host"
ibcexported "github.com/cosmos/ibc-go/v11/modules/core/exported"
ibctm "github.com/cosmos/ibc-go/v11/modules/light-clients/07-tendermint"
ibctesting "github.com/cosmos/ibc-go/v11/testing"
)

type ICS02ClientTestSuite struct {
Expand Down
4 changes: 2 additions & 2 deletions evmd/tests/ibc/ics20_erc20_conversion_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ import (
"github.com/cosmos/evm/precompiles/ics20"
evmibctesting "github.com/cosmos/evm/testutil/ibc"
erc20types "github.com/cosmos/evm/x/erc20/types"
transfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types"
clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types"
transfertypes "github.com/cosmos/ibc-go/v11/modules/apps/transfer/types"
clienttypes "github.com/cosmos/ibc-go/v11/modules/core/02-client/types"

sdkmath "cosmossdk.io/math"

Expand Down
4 changes: 2 additions & 2 deletions evmd/tests/ibc/ics20_precompile_transfer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ import (
evmibctesting "github.com/cosmos/evm/testutil/ibc"
evmante "github.com/cosmos/evm/x/vm/ante"
"github.com/cosmos/evm/x/vm/statedb"
transfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types"
clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types"
transfertypes "github.com/cosmos/ibc-go/v11/modules/apps/transfer/types"
clienttypes "github.com/cosmos/ibc-go/v11/modules/core/02-client/types"

sdkmath "cosmossdk.io/math"

Expand Down
4 changes: 2 additions & 2 deletions evmd/tests/ibc/ics20_recursive_precompile_calls_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import (
erc20types "github.com/cosmos/evm/x/erc20/types"
"github.com/cosmos/evm/x/vm/statedb"
evmtypes "github.com/cosmos/evm/x/vm/types"
transfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types"
clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types"
transfertypes "github.com/cosmos/ibc-go/v11/modules/apps/transfer/types"
clienttypes "github.com/cosmos/ibc-go/v11/modules/core/02-client/types"

sdkmath "cosmossdk.io/math"

Expand Down
4 changes: 2 additions & 2 deletions evmd/tests/ibc/transfer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import (
"github.com/cosmos/evm/evmd"
"github.com/cosmos/evm/evmd/tests/integration"
evmibctesting "github.com/cosmos/evm/testutil/ibc"
"github.com/cosmos/ibc-go/v10/modules/apps/transfer/types"
clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types"
"github.com/cosmos/ibc-go/v11/modules/apps/transfer/types"
clienttypes "github.com/cosmos/ibc-go/v11/modules/core/02-client/types"

sdkmath "cosmossdk.io/math"

Expand Down
10 changes: 5 additions & 5 deletions evmd/tests/ibc/v2_ibc_middleware_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ import (
"github.com/cosmos/evm/x/erc20/types"
v2 "github.com/cosmos/evm/x/erc20/v2"
"github.com/cosmos/gogoproto/proto"
transfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types"
channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types"
channeltypesv2 "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types"
ibctesting "github.com/cosmos/ibc-go/v10/testing"
ibcmockv2 "github.com/cosmos/ibc-go/v10/testing/mock/v2"
transfertypes "github.com/cosmos/ibc-go/v11/modules/apps/transfer/types"
channeltypes "github.com/cosmos/ibc-go/v11/modules/core/04-channel/types"
channeltypesv2 "github.com/cosmos/ibc-go/v11/modules/core/04-channel/v2/types"
ibctesting "github.com/cosmos/ibc-go/v11/testing"
ibcmockv2 "github.com/cosmos/ibc-go/v11/testing/mock/v2"

"cosmossdk.io/math"

Expand Down
4 changes: 2 additions & 2 deletions evmd/tests/ibc/v2_ics20_precompile_transfer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import (
evmibctesting "github.com/cosmos/evm/testutil/ibc"
evmante "github.com/cosmos/evm/x/vm/ante"
"github.com/cosmos/evm/x/vm/statedb"
transfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types"
clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types"
transfertypes "github.com/cosmos/ibc-go/v11/modules/apps/transfer/types"
clienttypes "github.com/cosmos/ibc-go/v11/modules/core/02-client/types"

sdkmath "cosmossdk.io/math"

Expand Down
8 changes: 4 additions & 4 deletions evmd/tests/ibc/v2_transfer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ import (
"github.com/cosmos/evm/evmd"
"github.com/cosmos/evm/evmd/tests/integration"
evmibctesting "github.com/cosmos/evm/testutil/ibc"
"github.com/cosmos/ibc-go/v10/modules/apps/transfer/types"
clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types"
channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types"
channeltypesv2 "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types"
"github.com/cosmos/ibc-go/v11/modules/apps/transfer/types"
clienttypes "github.com/cosmos/ibc-go/v11/modules/core/02-client/types"
channeltypes "github.com/cosmos/ibc-go/v11/modules/core/04-channel/types"
channeltypesv2 "github.com/cosmos/ibc-go/v11/modules/core/04-channel/v2/types"

sdkmath "cosmossdk.io/math"

Expand Down
2 changes: 1 addition & 1 deletion evmd/tests/integration/create_app.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
srvflags "github.com/cosmos/evm/server/flags"
"github.com/cosmos/evm/testutil/constants"
feemarkettypes "github.com/cosmos/evm/x/feemarket/types"
ibctesting "github.com/cosmos/ibc-go/v10/testing"
ibctesting "github.com/cosmos/ibc-go/v11/testing"

"cosmossdk.io/log/v2"

Expand Down
8 changes: 2 additions & 6 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require (
cosmossdk.io/api v1.0.0
cosmossdk.io/core v1.1.0
cosmossdk.io/errors v1.1.0
cosmossdk.io/log/v2 v2.0.2-0.20260311135820-ea452a1660fd
cosmossdk.io/log/v2 v2.0.2-0.20260311165803-2c527014f3ee
cosmossdk.io/math v1.5.3
cosmossdk.io/store v1.10.0-rc.2.0.20260311135820-ea452a1660fd
cosmossdk.io/tools/confix v0.1.2
Expand All @@ -18,7 +18,7 @@ require (
github.com/cosmos/cosmos-sdk v0.54.0-rc.1.0.20260311165803-2c527014f3ee
github.com/cosmos/go-bip39 v1.0.0
github.com/cosmos/gogoproto v1.7.2
github.com/cosmos/ibc-go/v10 v10.0.0-beta.0.0.20260311202420-1b48494ae021
github.com/cosmos/ibc-go/v11 v11.0.0-20260311172126-d2ebd83ffd5f
github.com/cosmos/ledger-cosmos-go v1.0.0
github.com/creachadair/tomledit v0.0.29
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
Expand Down Expand Up @@ -381,14 +381,10 @@ replace (
github.com/tidwall/btree => github.com/cosmos/btree v0.0.0-20250924232609-2c6195d95951
)

replace github.com/cometbft/cometbft => github.com/cometbft/cometbft v0.39.0-beta.2.0.20260227171234-00271936093e

retract v0.4.0

replace cosmossdk.io/x/group => github.com/cosmos/cosmos-sdk/enterprise/group v0.0.0-20260227212600-39d4711b8970

replace github.com/cosmos/cosmos-sdk/x/group => github.com/cosmos/cosmos-sdk/enterprise/group v0.0.0-20260227212600-39d4711b8970

replace cosmossdk.io/x/evidence => github.com/cosmos/cosmos-sdk/x/evidence v0.2.0-rc.2.0.20250429200042-9c736b26bf0c

replace cosmossdk.io/log/v2 => github.com/cosmos/cosmos-sdk/log/v2 v2.0.2-0.20260302180736-2fbcc8d5f49e
12 changes: 6 additions & 6 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ cosmossdk.io/depinject v1.2.1 h1:eD6FxkIjlVaNZT+dXTQuwQTKZrFZ4UrfCq1RKgzyhMw=
cosmossdk.io/depinject v1.2.1/go.mod h1:lqQEycz0H2JXqvOgVwTsjEdMI0plswI7p6KX+MVqFOM=
cosmossdk.io/errors v1.1.0 h1:X2DSt9JYgH7cuiaDr318aUqIl2z5Lfo/PdGzAtmczUU=
cosmossdk.io/errors v1.1.0/go.mod h1:lnjBmx7etZpMTLnxdspZupH0d9HGRWZhiezDZX2ayyI=
cosmossdk.io/log/v2 v2.0.2-0.20260311165803-2c527014f3ee h1:6p/O3NR3o2Fi5mCTs2lmxdugDMiRVEufp0WQ+eKS1MM=
cosmossdk.io/log/v2 v2.0.2-0.20260311165803-2c527014f3ee/go.mod h1:+31kpYi571Y8KWWPUnw/ict/S7yBqHaCfgFKn3HXr+Y=
cosmossdk.io/math v1.5.3 h1:WH6tu6Z3AUCeHbeOSHg2mt9rnoiUWVWaQ2t6Gkll96U=
cosmossdk.io/math v1.5.3/go.mod h1:uqcZv7vexnhMFJF+6zh9EWdm/+Ylyln34IvPnBauPCQ=
cosmossdk.io/schema v1.1.0 h1:mmpuz3dzouCoyjjcMcA/xHBEmMChN+EHh8EHxHRHhzE=
Expand Down Expand Up @@ -241,8 +243,8 @@ github.com/cockroachdb/redact v1.1.6/go.mod h1:BVNblN9mBWFyMyqK1k3AAiSxhvhfK2oOZ
github.com/cockroachdb/tokenbucket v0.0.0-20250429170803-42689b6311bb h1:3bCgBvB8PbJVMX1ouCcSIxvsqKPYM7gs72o0zC76n9g=
github.com/cockroachdb/tokenbucket v0.0.0-20250429170803-42689b6311bb/go.mod h1:7nc4anLGjupUW/PeY5qiNYsdNXj7zopG+eqsS7To5IQ=
github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd/go.mod h1:sE/e/2PUdi/liOCUjSTXgM1o87ZssimdTWN964YiIeI=
github.com/cometbft/cometbft v0.39.0-beta.2.0.20260227171234-00271936093e h1:wPbD7JfQwC8vKT4JInMnSiYVrpLYHPqkVTW96OXZurk=
github.com/cometbft/cometbft v0.39.0-beta.2.0.20260227171234-00271936093e/go.mod h1:x63z4WfA5e/o9oA8fo4260UC/z5wFs3PW2nMBhtzHkU=
github.com/cometbft/cometbft v0.39.0-beta.3 h1:g8/uWpjmAVCj/0hVUTjqixdgFQEVJLXpUzj1d5y0NV8=
github.com/cometbft/cometbft v0.39.0-beta.3/go.mod h1:mseCsn4XwUovKhgOrrApXTLzfqAsMdpQobqp9wG1PSA=
github.com/cometbft/cometbft-db v0.14.3 h1:foX2zuH/L6feyUSLDWg9YRLvt9w8iWVo883wGcyhdQk=
github.com/cometbft/cometbft-db v0.14.3/go.mod h1:5CcpGc+0fgZh8ecKa38MwDHfmRAGiRgQg6bGNs1HA/g=
github.com/consensys/gnark-crypto v0.18.1 h1:RyLV6UhPRoYYzaFnPQA4qK3DyuDgkTgskDdoGqFt3fI=
Expand All @@ -265,8 +267,6 @@ github.com/cosmos/cosmos-proto v1.0.0-beta.5 h1:eNcayDLpip+zVLRLYafhzLvQlSmyab+R
github.com/cosmos/cosmos-proto v1.0.0-beta.5/go.mod h1:hQGLpiIUloJBMdQMMWb/4wRApmI9hjHH05nefC0Ojec=
github.com/cosmos/cosmos-sdk v0.54.0-rc.1.0.20260311165803-2c527014f3ee h1:gAqxehRc0hIEOzw/pUQWDVADds7P0PnGEeRXUsKZHRw=
github.com/cosmos/cosmos-sdk v0.54.0-rc.1.0.20260311165803-2c527014f3ee/go.mod h1:iH4LQxDSImD6nwxmj+dyfUurZy0dlhBjQluMwidHKBE=
github.com/cosmos/cosmos-sdk/log/v2 v2.0.2-0.20260302180736-2fbcc8d5f49e h1:mZfv3i0jUvAp2m2mMPVb9fhgLjnh98aDbYbPddV3YR8=
github.com/cosmos/cosmos-sdk/log/v2 v2.0.2-0.20260302180736-2fbcc8d5f49e/go.mod h1:Mvss71xjzwK7lywM5hO+Emne4BcAgK+YhkiiO1NU7mQ=
github.com/cosmos/go-bip39 v1.0.0 h1:pcomnQdrdH22njcAatO0yWojsUnCO3y2tNoV1cb6hHY=
github.com/cosmos/go-bip39 v1.0.0/go.mod h1:RNJv0H/pOIVgxw6KS7QeX2a0Uo0aKUlfhZ4xuwvCdJw=
github.com/cosmos/go-ethereum v1.16.2-cosmos-1.0.20260126204437-32ededcf907f h1:xsll4sPrBiGOaLCfRRsGXBQeveGId7TYI+WJ7KkTuwE=
Expand All @@ -278,8 +278,8 @@ github.com/cosmos/gogoproto v1.7.2 h1:5G25McIraOC0mRFv9TVO139Uh3OklV2hczr13KKVHC
github.com/cosmos/gogoproto v1.7.2/go.mod h1:8S7w53P1Y1cHwND64o0BnArT6RmdgIvsBuco6uTllsk=
github.com/cosmos/iavl v1.2.6 h1:Hs3LndJbkIB+rEvToKJFXZvKo6Vy0Ex1SJ54hhtioIs=
github.com/cosmos/iavl v1.2.6/go.mod h1:GiM43q0pB+uG53mLxLDzimxM9l/5N9UuSY3/D0huuVw=
github.com/cosmos/ibc-go/v10 v10.0.0-beta.0.0.20260311202420-1b48494ae021 h1:S7/LxIfkYZ4jEy2tPRpIU+GZ1KfhnRINSJTHLwx6vIA=
github.com/cosmos/ibc-go/v10 v10.0.0-beta.0.0.20260311202420-1b48494ae021/go.mod h1:DJWRAeB10fPiIlYaVcbuFW88DcUvT4zAzR2TLxz3Mes=
github.com/cosmos/ibc-go/v11 v11.0.0-20260311172126-d2ebd83ffd5f h1:UWVmJAieoNIRFk07n2dwPZjGWeVjzVt9fy9md5ppAXg=
github.com/cosmos/ibc-go/v11 v11.0.0-20260311172126-d2ebd83ffd5f/go.mod h1:pGaslaA72xPFbgLuaUgogJLDEyotleA25VAtNiNEzh0=
github.com/cosmos/ics23/go v0.11.0 h1:jk5skjT0TqX5e5QJbEnwXIS2yI2vnmLOgpQPeM5RtnU=
github.com/cosmos/ics23/go v0.11.0/go.mod h1:A8OjxPE67hHST4Icw94hOxxFEJMBG031xIGF/JHNIY0=
github.com/cosmos/keyring v1.2.0 h1:8C1lBP9xhImmIabyXW4c3vFjjLiBdGCmfLUfeZlV1Yo=
Expand Down
4 changes: 2 additions & 2 deletions ibc/interfaces.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package ibc
import (
cmtbytes "github.com/cometbft/cometbft/libs/bytes"

ibctypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types"
ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported"
ibctypes "github.com/cosmos/ibc-go/v11/modules/apps/transfer/types"
ibcexported "github.com/cosmos/ibc-go/v11/modules/core/exported"

sdk "github.com/cosmos/cosmos-sdk/types"
)
Expand Down
Loading
Loading