diff --git a/docs/docs/01-ibc/02-integration.md b/docs/docs/01-ibc/02-integration.md index 4a2a771590d..a444e7ab621 100644 --- a/docs/docs/01-ibc/02-integration.md +++ b/docs/docs/01-ibc/02-integration.md @@ -36,8 +36,8 @@ We need to register the core `ibc` and `transfer` `Keeper`s as follows: import ( // other imports // ... - ibckeeper "github.com/cosmos/ibc-go/v9/modules/core/keeper" - ibctransferkeeper "github.com/cosmos/ibc-go/v9/modules/apps/transfer/keeper" + ibckeeper "github.com/cosmos/ibc-go/v10/modules/core/keeper" + ibctransferkeeper "github.com/cosmos/ibc-go/v10/modules/apps/transfer/keeper" ) type App struct { @@ -65,11 +65,11 @@ import ( capabilitykeeper "github.com/cosmos/ibc-go/modules/capability/keeper" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibckeeper "github.com/cosmos/ibc-go/v9/modules/core/keeper" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer" - ibctransfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibckeeper "github.com/cosmos/ibc-go/v10/modules/core/keeper" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer" + ibctransfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" ) func NewApp(...args) *App { @@ -136,8 +136,8 @@ Once the `Router` has been set, no new routes can be added. import ( // other imports // ... - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" - ibctransfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" + ibctransfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" ) func NewApp(...args) *App { @@ -163,8 +163,8 @@ import ( // ... "github.com/cosmos/cosmos-sdk/types/module" - ibc "github.com/cosmos/ibc-go/v9/modules/core" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer" + ibc "github.com/cosmos/ibc-go/v10/modules/core" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer" ) func NewApp(...args) *App { @@ -204,7 +204,7 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" // highlight-next-line -+ ibctransfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" ++ ibctransfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" ) // app.go @@ -232,7 +232,7 @@ import ( // ... "github.com/cosmos/cosmos-sdk/types/module" // highlight-next-line -+ ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" ++ ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" ) // app.go @@ -265,9 +265,9 @@ import ( // other imports // ... stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibckeeper "github.com/cosmos/ibc-go/v9/modules/core/keeper" - ibctransfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibckeeper "github.com/cosmos/ibc-go/v10/modules/core/keeper" + ibctransfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" ) func NewApp(...args) *App { diff --git a/docs/docs/01-ibc/06-channel-upgrades.md b/docs/docs/01-ibc/06-channel-upgrades.md index 05e640c4214..02249a00b65 100644 --- a/docs/docs/01-ibc/06-channel-upgrades.md +++ b/docs/docs/01-ibc/06-channel-upgrades.md @@ -290,10 +290,10 @@ In app.go, the existing transfer stack must be wrapped with the fee middleware. import ( // ... - ibcfee "github.com/cosmos/ibc-go/v9/modules/apps/29-fee" - ibctransferkeeper "github.com/cosmos/ibc-go/v9/modules/apps/transfer/keeper" - transfer "github.com/cosmos/ibc-go/v9/modules/apps/transfer" - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + ibcfee "github.com/cosmos/ibc-go/v10/modules/apps/29-fee" + ibctransferkeeper "github.com/cosmos/ibc-go/v10/modules/apps/transfer/keeper" + transfer "github.com/cosmos/ibc-go/v10/modules/apps/transfer" + porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" // ... ) diff --git a/docs/docs/05-migrations/13-v8-to-v9.md b/docs/docs/05-migrations/13-v8-to-v9.md index 7b1dc0399db..801089f9311 100644 --- a/docs/docs/05-migrations/13-v8-to-v9.md +++ b/docs/docs/05-migrations/13-v8-to-v9.md @@ -440,7 +440,7 @@ clientQueryServer := clientkeeper.NewQueryServer(app.IBCKeeper.ClientKeeper) - The `mock.PV` type has been removed in favour of [`cmttypes.MockPV`](https://github.com/cometbft/cometbft/blob/v0.38.5/types/priv_validator.go#L50) in [#5709](https://github.com/cosmos/ibc-go/pull/5709). - [Functions `ConstructUpdateTMClientHeader` and `ConstructUpdateTMClientHeaderWithTrustedHeight`](https://github.com/cosmos/ibc-go/blob/v8.0.0/testing/chain.go#L446-L481) of `TestChain` type have been replaced with `IBCClientHeader` function. This function will construct a 07-tendermint header to update the light client on the counterparty chain. The trusted height must be passed in as a non-zero height. - [`GetValsAtHeight`](https://github.com/cosmos/ibc-go/blob/v8.0.0/testing/chain.go#L401) has been renamed to [`GetTrustedValidators`](https://github.com/cosmos/ibc-go/blob/release/v9.0.x/testing/chain.go#L403). -- [`AssertEventsLegacy` function](https://github.com/cosmos/ibc-go/blob/v8.0.0/testing/events.go#L140) of `ibctesting` package (alias for `"github.com/cosmos/ibc-go/v9/testing"`) has been removed in [#6070](https://github.com/cosmos/ibc-go/pull/6070), and [`AssertEvents` function](https://github.com/cosmos/ibc-go/blob/release/v9.0.x/testing/events.go#L187) should be used instead. +- [`AssertEventsLegacy` function](https://github.com/cosmos/ibc-go/blob/v8.0.0/testing/events.go#L140) of `ibctesting` package (alias for `"github.com/cosmos/ibc-go/v10/testing"`) has been removed in [#6070](https://github.com/cosmos/ibc-go/pull/6070), and [`AssertEvents` function](https://github.com/cosmos/ibc-go/blob/release/v9.0.x/testing/events.go#L187) should be used instead. ```diff // testing/events.go diff --git a/docs/versioned_docs/version-v9.0.x/01-ibc/02-integration.md b/docs/versioned_docs/version-v9.0.x/01-ibc/02-integration.md index def03102de0..514c57dbaa1 100644 --- a/docs/versioned_docs/version-v9.0.x/01-ibc/02-integration.md +++ b/docs/versioned_docs/version-v9.0.x/01-ibc/02-integration.md @@ -36,8 +36,8 @@ We need to register the core `ibc` and `transfer` `Keeper`s as follows: import ( // other imports // ... - ibckeeper "github.com/cosmos/ibc-go/v9/modules/core/keeper" - ibctransferkeeper "github.com/cosmos/ibc-go/v9/modules/apps/transfer/keeper" + ibckeeper "github.com/cosmos/ibc-go/v10/modules/core/keeper" + ibctransferkeeper "github.com/cosmos/ibc-go/v10/modules/apps/transfer/keeper" ) type App struct { @@ -65,11 +65,11 @@ import ( capabilitykeeper "github.com/cosmos/ibc-go/modules/capability/keeper" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibckeeper "github.com/cosmos/ibc-go/v9/modules/core/keeper" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer" - ibctransfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibckeeper "github.com/cosmos/ibc-go/v10/modules/core/keeper" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer" + ibctransfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" ) func NewApp(...args) *App { @@ -136,8 +136,8 @@ Once the `Router` has been set, no new routes can be added. import ( // other imports // ... - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" - ibctransfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" + ibctransfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" ) func NewApp(...args) *App { @@ -163,8 +163,8 @@ import ( // ... "github.com/cosmos/cosmos-sdk/types/module" - ibc "github.com/cosmos/ibc-go/v9/modules/core" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer" + ibc "github.com/cosmos/ibc-go/v10/modules/core" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer" ) func NewApp(...args) *App { @@ -204,7 +204,7 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" // highlight-next-line -+ ibctransfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" ++ ibctransfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" ) // app.go @@ -232,7 +232,7 @@ import ( // ... "github.com/cosmos/cosmos-sdk/types/module" // highlight-next-line -+ ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" ++ ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" ) // app.go @@ -265,9 +265,9 @@ import ( // other imports // ... stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibckeeper "github.com/cosmos/ibc-go/v9/modules/core/keeper" - ibctransfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibckeeper "github.com/cosmos/ibc-go/v10/modules/core/keeper" + ibctransfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" ) func NewApp(...args) *App { diff --git a/docs/versioned_docs/version-v9.0.x/01-ibc/06-channel-upgrades.md b/docs/versioned_docs/version-v9.0.x/01-ibc/06-channel-upgrades.md index 05e640c4214..02249a00b65 100644 --- a/docs/versioned_docs/version-v9.0.x/01-ibc/06-channel-upgrades.md +++ b/docs/versioned_docs/version-v9.0.x/01-ibc/06-channel-upgrades.md @@ -290,10 +290,10 @@ In app.go, the existing transfer stack must be wrapped with the fee middleware. import ( // ... - ibcfee "github.com/cosmos/ibc-go/v9/modules/apps/29-fee" - ibctransferkeeper "github.com/cosmos/ibc-go/v9/modules/apps/transfer/keeper" - transfer "github.com/cosmos/ibc-go/v9/modules/apps/transfer" - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + ibcfee "github.com/cosmos/ibc-go/v10/modules/apps/29-fee" + ibctransferkeeper "github.com/cosmos/ibc-go/v10/modules/apps/transfer/keeper" + transfer "github.com/cosmos/ibc-go/v10/modules/apps/transfer" + porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" // ... ) diff --git a/docs/versioned_docs/version-v9.0.x/05-migrations/13-v8-to-v9.md b/docs/versioned_docs/version-v9.0.x/05-migrations/13-v8-to-v9.md index 7b1dc0399db..801089f9311 100644 --- a/docs/versioned_docs/version-v9.0.x/05-migrations/13-v8-to-v9.md +++ b/docs/versioned_docs/version-v9.0.x/05-migrations/13-v8-to-v9.md @@ -440,7 +440,7 @@ clientQueryServer := clientkeeper.NewQueryServer(app.IBCKeeper.ClientKeeper) - The `mock.PV` type has been removed in favour of [`cmttypes.MockPV`](https://github.com/cometbft/cometbft/blob/v0.38.5/types/priv_validator.go#L50) in [#5709](https://github.com/cosmos/ibc-go/pull/5709). - [Functions `ConstructUpdateTMClientHeader` and `ConstructUpdateTMClientHeaderWithTrustedHeight`](https://github.com/cosmos/ibc-go/blob/v8.0.0/testing/chain.go#L446-L481) of `TestChain` type have been replaced with `IBCClientHeader` function. This function will construct a 07-tendermint header to update the light client on the counterparty chain. The trusted height must be passed in as a non-zero height. - [`GetValsAtHeight`](https://github.com/cosmos/ibc-go/blob/v8.0.0/testing/chain.go#L401) has been renamed to [`GetTrustedValidators`](https://github.com/cosmos/ibc-go/blob/release/v9.0.x/testing/chain.go#L403). -- [`AssertEventsLegacy` function](https://github.com/cosmos/ibc-go/blob/v8.0.0/testing/events.go#L140) of `ibctesting` package (alias for `"github.com/cosmos/ibc-go/v9/testing"`) has been removed in [#6070](https://github.com/cosmos/ibc-go/pull/6070), and [`AssertEvents` function](https://github.com/cosmos/ibc-go/blob/release/v9.0.x/testing/events.go#L187) should be used instead. +- [`AssertEventsLegacy` function](https://github.com/cosmos/ibc-go/blob/v8.0.0/testing/events.go#L140) of `ibctesting` package (alias for `"github.com/cosmos/ibc-go/v10/testing"`) has been removed in [#6070](https://github.com/cosmos/ibc-go/pull/6070), and [`AssertEvents` function](https://github.com/cosmos/ibc-go/blob/release/v9.0.x/testing/events.go#L187) should be used instead. ```diff // testing/events.go diff --git a/e2e/go.mod b/e2e/go.mod index 01bfa2e32bc..871eea06b63 100644 --- a/e2e/go.mod +++ b/e2e/go.mod @@ -2,8 +2,7 @@ module github.com/cosmos/ibc-go/e2e go 1.23.6 -// needed temporarily for v9. -replace github.com/strangelove-ventures/interchaintest/v8 => github.com/gjermundgaraba/interchaintest/v8 v8.0.0-20250207235834-7fa4ae7a13be +replace github.com/strangelove-ventures/interchaintest/v8 => github.com/gjermundgaraba/interchaintest/v8 v8.0.0-20250215053841-57b934aaa4db require ( cosmossdk.io/errors v1.0.1 @@ -13,7 +12,7 @@ require ( github.com/cosmos/cosmos-sdk v0.50.11 github.com/cosmos/gogoproto v1.7.0 github.com/cosmos/ibc-go/modules/light-clients/08-wasm v0.0.0-00010101000000-000000000000 - github.com/cosmos/ibc-go/v9 v9.0.0 + github.com/cosmos/ibc-go/v10 v10.0.0 github.com/docker/docker v27.3.1+incompatible github.com/pelletier/go-toml v1.9.5 github.com/strangelove-ventures/interchaintest/v8 v8.2.1-0.20240419152858-c8b741617cd8 @@ -238,7 +237,7 @@ require ( ) // uncomment to use the local version of ibc-go, you will need to run `go mod tidy` in e2e directory. -replace github.com/cosmos/ibc-go/v9 => ../ +replace github.com/cosmos/ibc-go/v10 => ../ replace ( github.com/cosmos/ibc-go/modules/light-clients/08-wasm => ../modules/light-clients/08-wasm diff --git a/e2e/go.sum b/e2e/go.sum index 23b5f9d1291..d10742fd4ec 100644 --- a/e2e/go.sum +++ b/e2e/go.sum @@ -451,8 +451,8 @@ github.com/getsentry/sentry-go v0.28.1/go.mod h1:1fQZ+7l7eeJ3wYi82q5Hg8GqAPgefRq github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI= github.com/gin-gonic/gin v1.6.3/go.mod h1:75u5sXoLsGZoRN5Sgbi1eraJ4GU3++wFwWzhwvtwp4M= -github.com/gjermundgaraba/interchaintest/v8 v8.0.0-20250207235834-7fa4ae7a13be h1:KJjLqJZtRymH+iM+wpHVf8NGiXoakpqX/PhGpEUN2yA= -github.com/gjermundgaraba/interchaintest/v8 v8.0.0-20250207235834-7fa4ae7a13be/go.mod h1:O0rdZsJif1tYSUEh5XkRqSckEkg+L8t1VSl6TdlSdpY= +github.com/gjermundgaraba/interchaintest/v8 v8.0.0-20250215053841-57b934aaa4db h1:4DSb1as7owQW2AGTr/tkvY5GNhbUBqUvA0v0Dm8czec= +github.com/gjermundgaraba/interchaintest/v8 v8.0.0-20250215053841-57b934aaa4db/go.mod h1:BZ9OQKaC/xq10slM9OPeFTdWm3joJi8Opb2MlvRA3Xk= github.com/go-errors/errors v1.4.2 h1:J6MZopCL4uSllY1OfXM374weqZFFItUbrImctkmUxIA= github.com/go-errors/errors v1.4.2/go.mod h1:sIVyrIiJhuEF+Pj9Ebtd6P/rEYROXFi3BopGUQ5a5Og= github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= diff --git a/e2e/tests/core/02-client/client_test.go b/e2e/tests/core/02-client/client_test.go index 0d8b512167a..39cf288f2d4 100644 --- a/e2e/tests/core/02-client/client_test.go +++ b/e2e/tests/core/02-client/client_test.go @@ -34,10 +34,10 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" wasmtypes "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + 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" ) const ( diff --git a/e2e/tests/core/03-connection/connection_test.go b/e2e/tests/core/03-connection/connection_test.go index 47253621684..6c33bc3d627 100644 --- a/e2e/tests/core/03-connection/connection_test.go +++ b/e2e/tests/core/03-connection/connection_test.go @@ -20,9 +20,9 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) // compatibility:from_version: v7.4.0 diff --git a/e2e/tests/interchain_accounts/base_test.go b/e2e/tests/interchain_accounts/base_test.go index 9edac0e0fc1..68f6a88b671 100644 --- a/e2e/tests/interchain_accounts/base_test.go +++ b/e2e/tests/interchain_accounts/base_test.go @@ -23,10 +23,10 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + controllertypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) // orderMapping is a mapping from channel ordering to the string representation of the ordering. diff --git a/e2e/tests/interchain_accounts/gov_test.go b/e2e/tests/interchain_accounts/gov_test.go index 5871cc95104..ec741d5ea41 100644 --- a/e2e/tests/interchain_accounts/gov_test.go +++ b/e2e/tests/interchain_accounts/gov_test.go @@ -22,10 +22,10 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + controllertypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) // compatibility:from_version: v7.4.0 diff --git a/e2e/tests/interchain_accounts/groups_test.go b/e2e/tests/interchain_accounts/groups_test.go index fbaa2b78a1e..c6169d6702a 100644 --- a/e2e/tests/interchain_accounts/groups_test.go +++ b/e2e/tests/interchain_accounts/groups_test.go @@ -22,10 +22,10 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + controllertypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) const ( diff --git a/e2e/tests/interchain_accounts/incentivized_test.go b/e2e/tests/interchain_accounts/incentivized_test.go index c31f402ac4c..f4b03511c12 100644 --- a/e2e/tests/interchain_accounts/incentivized_test.go +++ b/e2e/tests/interchain_accounts/incentivized_test.go @@ -21,11 +21,11 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - feetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + controllertypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + feetypes "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) // compatibility:from_version: v7.4.0 diff --git a/e2e/tests/interchain_accounts/localhost_test.go b/e2e/tests/interchain_accounts/localhost_test.go index c65b2098b52..8e5c8e407cf 100644 --- a/e2e/tests/interchain_accounts/localhost_test.go +++ b/e2e/tests/interchain_accounts/localhost_test.go @@ -21,13 +21,13 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - localhost "github.com/cosmos/ibc-go/v9/modules/light-clients/09-localhost" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + controllertypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/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" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + localhost "github.com/cosmos/ibc-go/v10/modules/light-clients/09-localhost" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func TestInterchainAccountsLocalhostTestSuite(t *testing.T) { diff --git a/e2e/tests/interchain_accounts/params_test.go b/e2e/tests/interchain_accounts/params_test.go index d3b4610ec21..2477f146661 100644 --- a/e2e/tests/interchain_accounts/params_test.go +++ b/e2e/tests/interchain_accounts/params_test.go @@ -23,12 +23,12 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - hosttypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - coretypes "github.com/cosmos/ibc-go/v9/modules/core/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + controllertypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + hosttypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + coretypes "github.com/cosmos/ibc-go/v10/modules/core/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) // compatibility:from_version: v7.4.0 diff --git a/e2e/tests/interchain_accounts/query_test.go b/e2e/tests/interchain_accounts/query_test.go index 3f1fada7c91..7839bfeff7b 100644 --- a/e2e/tests/interchain_accounts/query_test.go +++ b/e2e/tests/interchain_accounts/query_test.go @@ -19,11 +19,11 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - icahosttypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + controllertypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + icahosttypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) // compatibility:from_version: v7.5.0 diff --git a/e2e/tests/interchain_accounts/upgrades_test.go b/e2e/tests/interchain_accounts/upgrades_test.go index e4595478eb8..6e09126616e 100644 --- a/e2e/tests/interchain_accounts/upgrades_test.go +++ b/e2e/tests/interchain_accounts/upgrades_test.go @@ -22,11 +22,11 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - feetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + controllertypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + feetypes "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) // compatibility:from_version: v8.4.0 diff --git a/e2e/tests/transfer/authz_test.go b/e2e/tests/transfer/authz_test.go index feb11b6cd01..a4302766487 100644 --- a/e2e/tests/transfer/authz_test.go +++ b/e2e/tests/transfer/authz_test.go @@ -20,8 +20,8 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + transfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" ) // compatibility:from_version: v7.4.0 diff --git a/e2e/tests/transfer/base_test.go b/e2e/tests/transfer/base_test.go index 38895d3860e..fdf5a602d5f 100644 --- a/e2e/tests/transfer/base_test.go +++ b/e2e/tests/transfer/base_test.go @@ -18,7 +18,7 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + transfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" ) // compatibility:from_version: v7.4.0 diff --git a/e2e/tests/transfer/incentivized_test.go b/e2e/tests/transfer/incentivized_test.go index ca940793023..41db0a3e2ba 100644 --- a/e2e/tests/transfer/incentivized_test.go +++ b/e2e/tests/transfer/incentivized_test.go @@ -19,8 +19,8 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - feetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + feetypes "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" ) const ( diff --git a/e2e/tests/transfer/localhost_test.go b/e2e/tests/transfer/localhost_test.go index a7ec0dd6afb..ae6e58910c0 100644 --- a/e2e/tests/transfer/localhost_test.go +++ b/e2e/tests/transfer/localhost_test.go @@ -12,12 +12,12 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - localhost "github.com/cosmos/ibc-go/v9/modules/light-clients/09-localhost" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + 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" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + localhost "github.com/cosmos/ibc-go/v10/modules/light-clients/09-localhost" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) // compatibility:from_version: v7.2.0 diff --git a/e2e/tests/transfer/send_enabled_test.go b/e2e/tests/transfer/send_enabled_test.go index 4dc2b3c8ba2..2e821d8d1a1 100644 --- a/e2e/tests/transfer/send_enabled_test.go +++ b/e2e/tests/transfer/send_enabled_test.go @@ -15,8 +15,8 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + transfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) // compatibility:from_version: v7.2.0 diff --git a/e2e/tests/transfer/send_receive_test.go b/e2e/tests/transfer/send_receive_test.go index 782fcdc7858..a7c62008aa9 100644 --- a/e2e/tests/transfer/send_receive_test.go +++ b/e2e/tests/transfer/send_receive_test.go @@ -15,8 +15,8 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + transfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) // compatibility:from_version: v7.2.0 diff --git a/e2e/tests/transfer/upgradesv2_test.go b/e2e/tests/transfer/upgradesv2_test.go index 53ff2f5d0e9..4747d21b41c 100644 --- a/e2e/tests/transfer/upgradesv2_test.go +++ b/e2e/tests/transfer/upgradesv2_test.go @@ -16,8 +16,8 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - feetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + feetypes "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" ) // compatibility:from_version: v8.4.0 diff --git a/e2e/tests/upgrades/genesis_test.go b/e2e/tests/upgrades/genesis_test.go index acb2ad33ed6..dfd1a871783 100644 --- a/e2e/tests/upgrades/genesis_test.go +++ b/e2e/tests/upgrades/genesis_test.go @@ -23,10 +23,10 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + controllertypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) // compatibility:from_version: v8.4.0 diff --git a/e2e/tests/upgrades/upgrade_test.go b/e2e/tests/upgrades/upgrade_test.go index 1b7ecbffd4e..dd8a8ba9d10 100644 --- a/e2e/tests/upgrades/upgrade_test.go +++ b/e2e/tests/upgrades/upgrade_test.go @@ -27,16 +27,16 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - feetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - v7migrations "github.com/cosmos/ibc-go/v9/modules/core/02-client/migrations/v7" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" - localhost "github.com/cosmos/ibc-go/v9/modules/light-clients/09-localhost" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + feetypes "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + transfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + v7migrations "github.com/cosmos/ibc-go/v10/modules/core/02-client/migrations/v7" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v10/modules/light-clients/06-solomachine" + localhost "github.com/cosmos/ibc-go/v10/modules/light-clients/09-localhost" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) const ( diff --git a/e2e/testsuite/codec.go b/e2e/testsuite/codec.go index 3ca820500c3..f4f8ddf1d3e 100644 --- a/e2e/testsuite/codec.go +++ b/e2e/testsuite/codec.go @@ -24,18 +24,18 @@ import ( proposaltypes "github.com/cosmos/cosmos-sdk/x/params/types/proposal" wasmtypes "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - icacontrollertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - icahosttypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" - feetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - v7migrations "github.com/cosmos/ibc-go/v9/modules/core/02-client/migrations/v7" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - channeltypesv2 "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" - solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" - ibctmtypes "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + icacontrollertypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + icahosttypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" + feetypes "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + transfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + v7migrations "github.com/cosmos/ibc-go/v10/modules/core/02-client/migrations/v7" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/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" + solomachine "github.com/cosmos/ibc-go/v10/modules/light-clients/06-solomachine" + ibctmtypes "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) // Codec returns the global E2E protobuf codec. diff --git a/e2e/testsuite/query/queries.go b/e2e/testsuite/query/queries.go index 6286562d161..c51914d5f37 100644 --- a/e2e/testsuite/query/queries.go +++ b/e2e/testsuite/query/queries.go @@ -14,12 +14,12 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - feetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + controllertypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + feetypes "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + 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" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" ) const queryPathTransferDenoms = "/ibc.applications.transfer.v2.QueryV2/Denoms" diff --git a/e2e/testsuite/sanitize/messages.go b/e2e/testsuite/sanitize/messages.go index f74643cec37..349f340797f 100644 --- a/e2e/testsuite/sanitize/messages.go +++ b/e2e/testsuite/sanitize/messages.go @@ -6,8 +6,8 @@ import ( grouptypes "github.com/cosmos/cosmos-sdk/x/group" "github.com/cosmos/ibc-go/e2e/semverutil" - icacontrollertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + icacontrollertypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" ) var ( diff --git a/e2e/testsuite/testconfig.go b/e2e/testsuite/testconfig.go index 9a370d834ba..c4a74a3da3b 100644 --- a/e2e/testsuite/testconfig.go +++ b/e2e/testsuite/testconfig.go @@ -30,9 +30,9 @@ import ( "github.com/cosmos/ibc-go/e2e/semverutil" "github.com/cosmos/ibc-go/e2e/testvalues" wasmtypes "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctypes "github.com/cosmos/ibc-go/v9/modules/core/types" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibctypes "github.com/cosmos/ibc-go/v10/modules/core/types" ) const ( diff --git a/e2e/testsuite/testsuite.go b/e2e/testsuite/testsuite.go index 734b41a39b9..f67f8428682 100644 --- a/e2e/testsuite/testsuite.go +++ b/e2e/testsuite/testsuite.go @@ -29,10 +29,10 @@ import ( "github.com/cosmos/ibc-go/e2e/relayer" "github.com/cosmos/ibc-go/e2e/testsuite/diagnostics" "github.com/cosmos/ibc-go/e2e/testsuite/query" - feetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + feetypes "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + 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" ) const ( diff --git a/e2e/testsuite/tx.go b/e2e/testsuite/tx.go index 73dfe089978..2528cdf5889 100644 --- a/e2e/testsuite/tx.go +++ b/e2e/testsuite/tx.go @@ -30,9 +30,9 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testsuite/sanitize" "github.com/cosmos/ibc-go/e2e/testvalues" - feetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + feetypes "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/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" ) // BroadcastMessages broadcasts the provided messages to the given chain and signs them on behalf of the provided user. diff --git a/e2e/testvalues/values.go b/e2e/testvalues/values.go index 7f0bbcbdc2a..6ff5b07b49c 100644 --- a/e2e/testvalues/values.go +++ b/e2e/testvalues/values.go @@ -11,7 +11,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/ibc-go/e2e/semverutil" - feetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + feetypes "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" ) const ( diff --git a/go.mod b/go.mod index e0d4643d811..85c612c10b9 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,6 @@ go 1.23.6 -module github.com/cosmos/ibc-go/v9 - -retract [v9.0.0, v9.0.2] +module github.com/cosmos/ibc-go/v10 require ( cosmossdk.io/api v0.7.6 diff --git a/internal/validate/validate.go b/internal/validate/validate.go index 4ba4e0713a7..17975b396ae 100644 --- a/internal/validate/validate.go +++ b/internal/validate/validate.go @@ -4,7 +4,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" ) // GRPCRequest validates that the portID and channelID of a gRPC Request are valid identifiers. diff --git a/internal/validate/validate_test.go b/internal/validate/validate_test.go index 8f543ccfeb7..082746ef0eb 100644 --- a/internal/validate/validate_test.go +++ b/internal/validate/validate_test.go @@ -8,7 +8,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/cosmos/ibc-go/v9/internal/validate" + "github.com/cosmos/ibc-go/v10/internal/validate" ) func TestGRPCRequest(t *testing.T) { diff --git a/modules/apps/27-interchain-accounts/client/cli/cli.go b/modules/apps/27-interchain-accounts/client/cli/cli.go index e89c5b51261..557c93d1ea1 100644 --- a/modules/apps/27-interchain-accounts/client/cli/cli.go +++ b/modules/apps/27-interchain-accounts/client/cli/cli.go @@ -3,8 +3,8 @@ package cli import ( "github.com/spf13/cobra" - controllercli "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/client/cli" - hostcli "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/client/cli" + controllercli "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/client/cli" + hostcli "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/client/cli" ) // GetQueryCmd returns the query commands for the interchain-accounts submodule diff --git a/modules/apps/27-interchain-accounts/controller/client/cli/query.go b/modules/apps/27-interchain-accounts/controller/client/cli/query.go index dbcf3a19820..641eeab2022 100644 --- a/modules/apps/27-interchain-accounts/controller/client/cli/query.go +++ b/modules/apps/27-interchain-accounts/controller/client/cli/query.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/version" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" ) // GetCmdQueryInterchainAccount returns the command handler for the controller submodule parameter querying. diff --git a/modules/apps/27-interchain-accounts/controller/client/cli/tx.go b/modules/apps/27-interchain-accounts/controller/client/cli/tx.go index f866c9d7cac..695230a3bbc 100644 --- a/modules/apps/27-interchain-accounts/controller/client/cli/tx.go +++ b/modules/apps/27-interchain-accounts/controller/client/cli/tx.go @@ -13,10 +13,10 @@ import ( "github.com/cosmos/cosmos-sdk/client/tx" "github.com/cosmos/cosmos-sdk/codec" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" ) const ( diff --git a/modules/apps/27-interchain-accounts/controller/ibc_middleware.go b/modules/apps/27-interchain-accounts/controller/ibc_middleware.go index e90ebbb723e..893ce5b30dd 100644 --- a/modules/apps/27-interchain-accounts/controller/ibc_middleware.go +++ b/modules/apps/27-interchain-accounts/controller/ibc_middleware.go @@ -8,14 +8,14 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/keeper" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/keeper" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/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" + porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" ) var ( diff --git a/modules/apps/27-interchain-accounts/controller/ibc_middleware_test.go b/modules/apps/27-interchain-accounts/controller/ibc_middleware_test.go index e8e8a6012fa..6768bcb0886 100644 --- a/modules/apps/27-interchain-accounts/controller/ibc_middleware_test.go +++ b/modules/apps/27-interchain-accounts/controller/ibc_middleware_test.go @@ -12,17 +12,17 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller" - controllerkeeper "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/keeper" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller" + controllerkeeper "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/keeper" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/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" + porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v10/testing" + ibcmock "github.com/cosmos/ibc-go/v10/testing/mock" ) const invalidVersion = "invalid|version" diff --git a/modules/apps/27-interchain-accounts/controller/keeper/account.go b/modules/apps/27-interchain-accounts/controller/keeper/account.go index eb0f9064d83..3f4d0fa39db 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/account.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/account.go @@ -8,10 +8,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/cosmos/ibc-go/v9/internal/logging" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + "github.com/cosmos/ibc-go/v10/internal/logging" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" ) // RegisterInterchainAccount is the entry point to registering an interchain account: diff --git a/modules/apps/27-interchain-accounts/controller/keeper/account_test.go b/modules/apps/27-interchain-accounts/controller/keeper/account_test.go index c6f507428ed..c130fd1109b 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/account_test.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/account_test.go @@ -1,9 +1,9 @@ package keeper_test import ( - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func (suite *KeeperTestSuite) TestRegisterInterchainAccount() { diff --git a/modules/apps/27-interchain-accounts/controller/keeper/events.go b/modules/apps/27-interchain-accounts/controller/keeper/events.go index 871682b8f6f..38752f72d20 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/events.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/events.go @@ -6,9 +6,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // EmitAcknowledgementEvent emits an event signalling a successful or failed acknowledgement and including the error diff --git a/modules/apps/27-interchain-accounts/controller/keeper/export_test.go b/modules/apps/27-interchain-accounts/controller/keeper/export_test.go index c580aa61005..fa44aa3f833 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/export_test.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/export_test.go @@ -7,7 +7,7 @@ package keeper import ( "context" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" ) // GetAppMetadata is a wrapper around getAppMetadata to allow the function to be directly called in tests. diff --git a/modules/apps/27-interchain-accounts/controller/keeper/genesis.go b/modules/apps/27-interchain-accounts/controller/keeper/genesis.go index 81d9ade6672..6e7212d0ac4 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/genesis.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/genesis.go @@ -3,7 +3,7 @@ package keeper import ( "context" - genesistypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/genesis/types" + genesistypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/genesis/types" ) // InitGenesis initializes the interchain accounts controller application state from a provided genesis state diff --git a/modules/apps/27-interchain-accounts/controller/keeper/genesis_test.go b/modules/apps/27-interchain-accounts/controller/keeper/genesis_test.go index 70ec159d0b0..fff8a30c349 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/genesis_test.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/genesis_test.go @@ -1,12 +1,12 @@ package keeper_test import ( - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/keeper" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - genesistypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/genesis/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/keeper" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + genesistypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/genesis/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func (suite *KeeperTestSuite) TestInitGenesis() { diff --git a/modules/apps/27-interchain-accounts/controller/keeper/grpc_query.go b/modules/apps/27-interchain-accounts/controller/keeper/grpc_query.go index 4d8e14c6d76..e2c39f61c7c 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/grpc_query.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/grpc_query.go @@ -8,8 +8,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" ) var _ types.QueryServer = (*Keeper)(nil) diff --git a/modules/apps/27-interchain-accounts/controller/keeper/grpc_query_test.go b/modules/apps/27-interchain-accounts/controller/keeper/grpc_query_test.go index e5d73cfe5c6..f6b087eb483 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/grpc_query_test.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/grpc_query_test.go @@ -1,9 +1,9 @@ package keeper_test import ( - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func (suite *KeeperTestSuite) TestQueryInterchainAccount() { diff --git a/modules/apps/27-interchain-accounts/controller/keeper/handshake.go b/modules/apps/27-interchain-accounts/controller/keeper/handshake.go index c7f6d77cf3d..9694f2148a4 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/handshake.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/handshake.go @@ -7,9 +7,9 @@ import ( errorsmod "cosmossdk.io/errors" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" ) // OnChanOpenInit performs basic validation of channel initialization. diff --git a/modules/apps/27-interchain-accounts/controller/keeper/handshake_test.go b/modules/apps/27-interchain-accounts/controller/keeper/handshake_test.go index d781b0c2938..83344acb5e8 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/handshake_test.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/handshake_test.go @@ -1,11 +1,11 @@ package keeper_test import ( - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) const ( diff --git a/modules/apps/27-interchain-accounts/controller/keeper/keeper.go b/modules/apps/27-interchain-accounts/controller/keeper/keeper.go index 2d784feb327..1f137641c61 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/keeper.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/keeper.go @@ -16,13 +16,13 @@ import ( "github.com/cosmos/cosmos-sdk/runtime" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - genesistypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/genesis/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + genesistypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/genesis/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // Keeper defines the IBC interchain accounts controller keeper diff --git a/modules/apps/27-interchain-accounts/controller/keeper/keeper_test.go b/modules/apps/27-interchain-accounts/controller/keeper/keeper_test.go index 520c6a4383c..893e924a726 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/keeper_test.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/keeper_test.go @@ -9,13 +9,13 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/keeper" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - genesistypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/genesis/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - channelkeeper "github.com/cosmos/ibc-go/v9/modules/core/04-channel/keeper" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/keeper" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + genesistypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/genesis/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + channelkeeper "github.com/cosmos/ibc-go/v10/modules/core/04-channel/keeper" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) var ( diff --git a/modules/apps/27-interchain-accounts/controller/keeper/migrations.go b/modules/apps/27-interchain-accounts/controller/keeper/migrations.go index a25c64e3714..b0bf83bcfb9 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/migrations.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/migrations.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + controllertypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" ) // Migrator is a struct for handling in-place store migrations. diff --git a/modules/apps/27-interchain-accounts/controller/keeper/migrations_test.go b/modules/apps/27-interchain-accounts/controller/keeper/migrations_test.go index 0a9da175f92..ee4af56cb8d 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/migrations_test.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/migrations_test.go @@ -5,8 +5,8 @@ import ( "github.com/cosmos/cosmos-sdk/runtime" - icacontrollerkeeper "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/keeper" - icacontrollertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + icacontrollerkeeper "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/keeper" + icacontrollertypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" ) func (suite *KeeperTestSuite) TestMigratorMigrateParams() { diff --git a/modules/apps/27-interchain-accounts/controller/keeper/msg_server.go b/modules/apps/27-interchain-accounts/controller/keeper/msg_server.go index ea78c2d0fde..d89347bc50d 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/msg_server.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/msg_server.go @@ -7,10 +7,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" ) var _ types.MsgServer = (*msgServer)(nil) diff --git a/modules/apps/27-interchain-accounts/controller/keeper/msg_server_test.go b/modules/apps/27-interchain-accounts/controller/keeper/msg_server_test.go index 6164fc513cb..6a041c62152 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/msg_server_test.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/msg_server_test.go @@ -8,13 +8,13 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/keeper" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/keeper" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func (suite *KeeperTestSuite) TestRegisterInterchainAccount_MsgServer() { diff --git a/modules/apps/27-interchain-accounts/controller/keeper/relay.go b/modules/apps/27-interchain-accounts/controller/keeper/relay.go index 7b072bdea2f..3ca4fbc0d1e 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/relay.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/relay.go @@ -7,10 +7,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/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" ) // SendTx takes pre-built packet data containing messages to be executed on the host chain from an authentication module and attempts to send the packet. diff --git a/modules/apps/27-interchain-accounts/controller/keeper/relay_test.go b/modules/apps/27-interchain-accounts/controller/keeper/relay_test.go index ee886fc59f8..780404784f3 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/relay_test.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/relay_test.go @@ -6,11 +6,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/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" ) func (suite *KeeperTestSuite) TestSendTx() { diff --git a/modules/apps/27-interchain-accounts/controller/types/codec_test.go b/modules/apps/27-interchain-accounts/controller/types/codec_test.go index e45fcb2967f..a431249a989 100644 --- a/modules/apps/27-interchain-accounts/controller/types/codec_test.go +++ b/modules/apps/27-interchain-accounts/controller/types/codec_test.go @@ -9,8 +9,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" - ica "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + ica "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" ) func TestCodecTypeRegistration(t *testing.T) { diff --git a/modules/apps/27-interchain-accounts/controller/types/msgs.go b/modules/apps/27-interchain-accounts/controller/types/msgs.go index b8d89fb49f3..46c88390f31 100644 --- a/modules/apps/27-interchain-accounts/controller/types/msgs.go +++ b/modules/apps/27-interchain-accounts/controller/types/msgs.go @@ -8,10 +8,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" ) const MaximumOwnerLength = 2048 // maximum length of the owner in bytes (value chosen arbitrarily) diff --git a/modules/apps/27-interchain-accounts/controller/types/msgs_test.go b/modules/apps/27-interchain-accounts/controller/types/msgs_test.go index 602e3a72966..784f0630b35 100644 --- a/modules/apps/27-interchain-accounts/controller/types/msgs_test.go +++ b/modules/apps/27-interchain-accounts/controller/types/msgs_test.go @@ -11,14 +11,14 @@ import ( moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - ica "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - feetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + ica "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + feetypes "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func TestMsgRegisterInterchainAccountValidateBasic(t *testing.T) { diff --git a/modules/apps/27-interchain-accounts/controller/types/tx.pb.go b/modules/apps/27-interchain-accounts/controller/types/tx.pb.go index f1898a388cd..7f5c2d79089 100644 --- a/modules/apps/27-interchain-accounts/controller/types/tx.pb.go +++ b/modules/apps/27-interchain-accounts/controller/types/tx.pb.go @@ -10,8 +10,8 @@ import ( _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" - types1 "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - types "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + types1 "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + types "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" diff --git a/modules/apps/27-interchain-accounts/genesis/types/genesis.go b/modules/apps/27-interchain-accounts/genesis/types/genesis.go index 63d77fbfcea..01b5baaa086 100644 --- a/modules/apps/27-interchain-accounts/genesis/types/genesis.go +++ b/modules/apps/27-interchain-accounts/genesis/types/genesis.go @@ -1,10 +1,10 @@ package types import ( - controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - hosttypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + controllertypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + hosttypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" ) // DefaultGenesis creates and returns the interchain accounts GenesisState diff --git a/modules/apps/27-interchain-accounts/genesis/types/genesis.pb.go b/modules/apps/27-interchain-accounts/genesis/types/genesis.pb.go index 707bc37280e..a177333abc3 100644 --- a/modules/apps/27-interchain-accounts/genesis/types/genesis.pb.go +++ b/modules/apps/27-interchain-accounts/genesis/types/genesis.pb.go @@ -7,8 +7,8 @@ import ( fmt "fmt" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" - types "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - types1 "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" + types "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + types1 "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" io "io" math "math" math_bits "math/bits" diff --git a/modules/apps/27-interchain-accounts/genesis/types/genesis_test.go b/modules/apps/27-interchain-accounts/genesis/types/genesis_test.go index c411257e06f..9d78e6bc935 100644 --- a/modules/apps/27-interchain-accounts/genesis/types/genesis_test.go +++ b/modules/apps/27-interchain-accounts/genesis/types/genesis_test.go @@ -5,12 +5,12 @@ import ( testifysuite "github.com/stretchr/testify/suite" - controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - genesistypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/genesis/types" - hosttypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + controllertypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + genesistypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/genesis/types" + hosttypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) var ( diff --git a/modules/apps/27-interchain-accounts/host/client/cli/query.go b/modules/apps/27-interchain-accounts/host/client/cli/query.go index 4b3ba46d05b..1ddea2076eb 100644 --- a/modules/apps/27-interchain-accounts/host/client/cli/query.go +++ b/modules/apps/27-interchain-accounts/host/client/cli/query.go @@ -15,10 +15,10 @@ import ( abci "github.com/cometbft/cometbft/abci/types" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" ) // GetCmdParams returns the command handler for the host submodule parameter querying. diff --git a/modules/apps/27-interchain-accounts/host/client/cli/tx.go b/modules/apps/27-interchain-accounts/host/client/cli/tx.go index a714c511bd0..c537ec82373 100644 --- a/modules/apps/27-interchain-accounts/host/client/cli/tx.go +++ b/modules/apps/27-interchain-accounts/host/client/cli/tx.go @@ -13,7 +13,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/version" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" ) const ( diff --git a/modules/apps/27-interchain-accounts/host/client/cli/tx_test.go b/modules/apps/27-interchain-accounts/host/client/cli/tx_test.go index d378b56e181..da102b8a5db 100644 --- a/modules/apps/27-interchain-accounts/host/client/cli/tx_test.go +++ b/modules/apps/27-interchain-accounts/host/client/cli/tx_test.go @@ -12,7 +12,7 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" ) const msgDelegateMessage = `{ diff --git a/modules/apps/27-interchain-accounts/host/ibc_module.go b/modules/apps/27-interchain-accounts/host/ibc_module.go index e23b0514e59..a4650bb6261 100644 --- a/modules/apps/27-interchain-accounts/host/ibc_module.go +++ b/modules/apps/27-interchain-accounts/host/ibc_module.go @@ -8,13 +8,13 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/keeper" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/keeper" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" ) var ( diff --git a/modules/apps/27-interchain-accounts/host/ibc_module_test.go b/modules/apps/27-interchain-accounts/host/ibc_module_test.go index e5050e85442..a84738877dd 100644 --- a/modules/apps/27-interchain-accounts/host/ibc_module_test.go +++ b/modules/apps/27-interchain-accounts/host/ibc_module_test.go @@ -15,16 +15,16 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - icahost "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - feetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + icahost "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + feetypes "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/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" + porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) var ( diff --git a/modules/apps/27-interchain-accounts/host/keeper/account.go b/modules/apps/27-interchain-accounts/host/keeper/account.go index c6b239232bb..020a683e310 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/account.go +++ b/modules/apps/27-interchain-accounts/host/keeper/account.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" ) // createInterchainAccount creates a new interchain account. An address is generated using the host connectionID, the controller portID, diff --git a/modules/apps/27-interchain-accounts/host/keeper/events.go b/modules/apps/27-interchain-accounts/host/keeper/events.go index ccdf95cc13b..7cd6189ebf0 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/events.go +++ b/modules/apps/27-interchain-accounts/host/keeper/events.go @@ -6,10 +6,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // EmitAcknowledgementEvent emits an event signalling a successful or failed acknowledgement and including the error diff --git a/modules/apps/27-interchain-accounts/host/keeper/export_test.go b/modules/apps/27-interchain-accounts/host/keeper/export_test.go index c9916e1b3b4..77a8df79c33 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/export_test.go +++ b/modules/apps/27-interchain-accounts/host/keeper/export_test.go @@ -7,7 +7,7 @@ package keeper import ( "context" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" ) // GetAppMetadata is a wrapper around getAppMetadata to allow the function to be directly called in tests. diff --git a/modules/apps/27-interchain-accounts/host/keeper/genesis.go b/modules/apps/27-interchain-accounts/host/keeper/genesis.go index 4b3dafa3d49..15fb049143c 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/genesis.go +++ b/modules/apps/27-interchain-accounts/host/keeper/genesis.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - genesistypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/genesis/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + genesistypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/genesis/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" ) // InitGenesis initializes the interchain accounts host application state from a provided genesis state diff --git a/modules/apps/27-interchain-accounts/host/keeper/genesis_test.go b/modules/apps/27-interchain-accounts/host/keeper/genesis_test.go index 079e2aa7903..900a7ecb44d 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/genesis_test.go +++ b/modules/apps/27-interchain-accounts/host/keeper/genesis_test.go @@ -1,12 +1,12 @@ package keeper_test import ( - genesistypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/genesis/types" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/keeper" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + genesistypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/genesis/types" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/keeper" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func (suite *KeeperTestSuite) TestInitGenesis() { diff --git a/modules/apps/27-interchain-accounts/host/keeper/grpc_query.go b/modules/apps/27-interchain-accounts/host/keeper/grpc_query.go index c6616c455bd..00aaf48fe93 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/grpc_query.go +++ b/modules/apps/27-interchain-accounts/host/keeper/grpc_query.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" ) var _ types.QueryServer = (*Keeper)(nil) diff --git a/modules/apps/27-interchain-accounts/host/keeper/grpc_query_test.go b/modules/apps/27-interchain-accounts/host/keeper/grpc_query_test.go index 746487ee8d0..354de22487c 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/grpc_query_test.go +++ b/modules/apps/27-interchain-accounts/host/keeper/grpc_query_test.go @@ -1,7 +1,7 @@ package keeper_test import ( - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" ) func (suite *KeeperTestSuite) TestQueryParams() { diff --git a/modules/apps/27-interchain-accounts/host/keeper/handshake.go b/modules/apps/27-interchain-accounts/host/keeper/handshake.go index 19d126218b3..840a01cd794 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/handshake.go +++ b/modules/apps/27-interchain-accounts/host/keeper/handshake.go @@ -9,10 +9,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" ) // OnChanOpenTry performs basic validation of the ICA channel diff --git a/modules/apps/27-interchain-accounts/host/keeper/handshake_test.go b/modules/apps/27-interchain-accounts/host/keeper/handshake_test.go index 54763f0ec03..bff72667984 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/handshake_test.go +++ b/modules/apps/27-interchain-accounts/host/keeper/handshake_test.go @@ -5,13 +5,13 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - hosttypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + hosttypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) const ( diff --git a/modules/apps/27-interchain-accounts/host/keeper/keeper.go b/modules/apps/27-interchain-accounts/host/keeper/keeper.go index 07f480248ed..d85450662b8 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/keeper.go +++ b/modules/apps/27-interchain-accounts/host/keeper/keeper.go @@ -21,13 +21,13 @@ import ( "github.com/cosmos/cosmos-sdk/runtime" sdk "github.com/cosmos/cosmos-sdk/types" - genesistypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/genesis/types" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + genesistypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/genesis/types" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // Keeper defines the IBC interchain accounts host keeper diff --git a/modules/apps/27-interchain-accounts/host/keeper/keeper_test.go b/modules/apps/27-interchain-accounts/host/keeper/keeper_test.go index e2b186286c3..ff86da9813b 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/keeper_test.go +++ b/modules/apps/27-interchain-accounts/host/keeper/keeper_test.go @@ -9,15 +9,15 @@ import ( "github.com/cosmos/cosmos-sdk/runtime" authkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper" - genesistypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/genesis/types" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/keeper" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - ibcfeekeeper "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/keeper" - channelkeeper "github.com/cosmos/ibc-go/v9/modules/core/04-channel/keeper" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + genesistypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/genesis/types" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/keeper" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + ibcfeekeeper "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/keeper" + channelkeeper "github.com/cosmos/ibc-go/v10/modules/core/04-channel/keeper" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) var ( diff --git a/modules/apps/27-interchain-accounts/host/keeper/migrations.go b/modules/apps/27-interchain-accounts/host/keeper/migrations.go index ea0fb9374f5..251fa8cfb12 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/migrations.go +++ b/modules/apps/27-interchain-accounts/host/keeper/migrations.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" ) // Migrator is a struct for handling in-place state migrations. diff --git a/modules/apps/27-interchain-accounts/host/keeper/migrations_test.go b/modules/apps/27-interchain-accounts/host/keeper/migrations_test.go index 99a11b9be65..8f8b118d85d 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/migrations_test.go +++ b/modules/apps/27-interchain-accounts/host/keeper/migrations_test.go @@ -7,8 +7,8 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - icahostkeeper "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/keeper" - icahosttypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" + icahostkeeper "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/keeper" + icahosttypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" ) func (suite *KeeperTestSuite) TestMigratorMigrateParams() { diff --git a/modules/apps/27-interchain-accounts/host/keeper/msg_server.go b/modules/apps/27-interchain-accounts/host/keeper/msg_server.go index a344b904e93..1c04be0e682 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/msg_server.go +++ b/modules/apps/27-interchain-accounts/host/keeper/msg_server.go @@ -10,8 +10,8 @@ import ( abci "github.com/cometbft/cometbft/abci/types" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" ) var _ types.MsgServer = (*msgServer)(nil) diff --git a/modules/apps/27-interchain-accounts/host/keeper/msg_server_test.go b/modules/apps/27-interchain-accounts/host/keeper/msg_server_test.go index 476bf5bf00a..66de5408927 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/msg_server_test.go +++ b/modules/apps/27-interchain-accounts/host/keeper/msg_server_test.go @@ -5,10 +5,10 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/keeper" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" - transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/keeper" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" + transfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" ) func (suite *KeeperTestSuite) TestModuleQuerySafe() { diff --git a/modules/apps/27-interchain-accounts/host/keeper/relay.go b/modules/apps/27-interchain-accounts/host/keeper/relay.go index 13158abff60..08a650c8b56 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/relay.go +++ b/modules/apps/27-interchain-accounts/host/keeper/relay.go @@ -10,10 +10,10 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" ) // OnRecvPacket handles a given interchain accounts packet on a destination host chain. diff --git a/modules/apps/27-interchain-accounts/host/keeper/relay_test.go b/modules/apps/27-interchain-accounts/host/keeper/relay_test.go index 8bc89cc9384..b338dd8ae28 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/relay_test.go +++ b/modules/apps/27-interchain-accounts/host/keeper/relay_test.go @@ -18,12 +18,12 @@ import ( govtypesv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + transfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func (suite *KeeperTestSuite) TestOnRecvPacket() { diff --git a/modules/apps/27-interchain-accounts/host/types/codec_test.go b/modules/apps/27-interchain-accounts/host/types/codec_test.go index 4cc6423d284..ea2cd5c5763 100644 --- a/modules/apps/27-interchain-accounts/host/types/codec_test.go +++ b/modules/apps/27-interchain-accounts/host/types/codec_test.go @@ -8,8 +8,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" - ica "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" + ica "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" ) func TestCodecTypeRegistration(t *testing.T) { diff --git a/modules/apps/27-interchain-accounts/host/types/msgs.go b/modules/apps/27-interchain-accounts/host/types/msgs.go index c9f8d166dd8..d8eeb679473 100644 --- a/modules/apps/27-interchain-accounts/host/types/msgs.go +++ b/modules/apps/27-interchain-accounts/host/types/msgs.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" ) var ( diff --git a/modules/apps/27-interchain-accounts/host/types/msgs_test.go b/modules/apps/27-interchain-accounts/host/types/msgs_test.go index a6c0d979df7..ba8e71b46a3 100644 --- a/modules/apps/27-interchain-accounts/host/types/msgs_test.go +++ b/modules/apps/27-interchain-accounts/host/types/msgs_test.go @@ -8,10 +8,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" - ica "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + ica "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func TestMsgUpdateParamsValidateBasic(t *testing.T) { diff --git a/modules/apps/27-interchain-accounts/host/types/params_test.go b/modules/apps/27-interchain-accounts/host/types/params_test.go index 15f8b8a2bc8..c41a7a3acb1 100644 --- a/modules/apps/27-interchain-accounts/host/types/params_test.go +++ b/modules/apps/27-interchain-accounts/host/types/params_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" ) func TestValidateParams(t *testing.T) { diff --git a/modules/apps/27-interchain-accounts/module.go b/modules/apps/27-interchain-accounts/module.go index 293be361b51..6b31334d135 100644 --- a/modules/apps/27-interchain-accounts/module.go +++ b/modules/apps/27-interchain-accounts/module.go @@ -17,16 +17,16 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/client/cli" - controllerkeeper "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/keeper" - controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - genesistypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/genesis/types" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host" - hostkeeper "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/keeper" - hosttypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/simulation" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/client/cli" + controllerkeeper "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/keeper" + controllertypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + genesistypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/genesis/types" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host" + hostkeeper "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/keeper" + hosttypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/simulation" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" ) var ( diff --git a/modules/apps/27-interchain-accounts/module_test.go b/modules/apps/27-interchain-accounts/module_test.go index 16f0a66e511..190a608b7ce 100644 --- a/modules/apps/27-interchain-accounts/module_test.go +++ b/modules/apps/27-interchain-accounts/module_test.go @@ -5,7 +5,7 @@ import ( testifysuite "github.com/stretchr/testify/suite" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) type InterchainAccountsTestSuite struct { diff --git a/modules/apps/27-interchain-accounts/simulation/decoder.go b/modules/apps/27-interchain-accounts/simulation/decoder.go index aec21648745..a0a1998dad2 100644 --- a/modules/apps/27-interchain-accounts/simulation/decoder.go +++ b/modules/apps/27-interchain-accounts/simulation/decoder.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" ) // NewDecodeStore returns a decoder function closure that unmarshals the KVPair's diff --git a/modules/apps/27-interchain-accounts/simulation/decoder_test.go b/modules/apps/27-interchain-accounts/simulation/decoder_test.go index f0d7021a3b4..43ccb05c156 100644 --- a/modules/apps/27-interchain-accounts/simulation/decoder_test.go +++ b/modules/apps/27-interchain-accounts/simulation/decoder_test.go @@ -8,9 +8,9 @@ import ( "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/simulation" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/simulation" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func TestDecodeStore(t *testing.T) { diff --git a/modules/apps/27-interchain-accounts/simulation/genesis.go b/modules/apps/27-interchain-accounts/simulation/genesis.go index 6ba2ef07a6c..88aae189490 100644 --- a/modules/apps/27-interchain-accounts/simulation/genesis.go +++ b/modules/apps/27-interchain-accounts/simulation/genesis.go @@ -7,10 +7,10 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" - controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - genesistypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/genesis/types" - hosttypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + controllertypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + genesistypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/genesis/types" + hosttypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" ) // RandomEnabled randomized controller or host enabled param with 75% prob of being true. diff --git a/modules/apps/27-interchain-accounts/simulation/genesis_test.go b/modules/apps/27-interchain-accounts/simulation/genesis_test.go index ab129717642..7ccc51d73f7 100644 --- a/modules/apps/27-interchain-accounts/simulation/genesis_test.go +++ b/modules/apps/27-interchain-accounts/simulation/genesis_test.go @@ -15,9 +15,9 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - genesistypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/genesis/types" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/simulation" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + genesistypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/genesis/types" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/simulation" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" ) // TestRandomizedGenState tests the normal scenario of applying RandomizedGenState. diff --git a/modules/apps/27-interchain-accounts/simulation/proposals.go b/modules/apps/27-interchain-accounts/simulation/proposals.go index 1776362f8fc..317e051e982 100644 --- a/modules/apps/27-interchain-accounts/simulation/proposals.go +++ b/modules/apps/27-interchain-accounts/simulation/proposals.go @@ -8,10 +8,10 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" - controllerkeeper "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/keeper" - controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - hostkeeper "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/keeper" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" + controllerkeeper "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/keeper" + controllertypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + hostkeeper "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/keeper" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" ) // Simulation operation weights constants diff --git a/modules/apps/27-interchain-accounts/simulation/proposals_test.go b/modules/apps/27-interchain-accounts/simulation/proposals_test.go index bed08905111..183287ca932 100644 --- a/modules/apps/27-interchain-accounts/simulation/proposals_test.go +++ b/modules/apps/27-interchain-accounts/simulation/proposals_test.go @@ -12,11 +12,11 @@ import ( cmtproto "github.com/cometbft/cometbft/proto/tendermint/types" - controllerkeeper "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/keeper" - controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - hostkeeper "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/keeper" - hosttypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/simulation" + controllerkeeper "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/keeper" + controllertypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + hostkeeper "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/keeper" + hosttypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/simulation" ) func TestProposalMsgs(t *testing.T) { diff --git a/modules/apps/27-interchain-accounts/types/account_test.go b/modules/apps/27-interchain-accounts/types/account_test.go index bb2cca0c519..ec6515e4dc7 100644 --- a/modules/apps/27-interchain-accounts/types/account_test.go +++ b/modules/apps/27-interchain-accounts/types/account_test.go @@ -11,8 +11,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) var ( diff --git a/modules/apps/27-interchain-accounts/types/codec.go b/modules/apps/27-interchain-accounts/types/codec.go index 1f63cb9d1d2..f08bd3df50e 100644 --- a/modules/apps/27-interchain-accounts/types/codec.go +++ b/modules/apps/27-interchain-accounts/types/codec.go @@ -10,7 +10,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" ) // ModuleCdc references the global interchain accounts module codec. Note, the codec diff --git a/modules/apps/27-interchain-accounts/types/codec_test.go b/modules/apps/27-interchain-accounts/types/codec_test.go index 33f378d22dd..7b448153dfe 100644 --- a/modules/apps/27-interchain-accounts/types/codec_test.go +++ b/modules/apps/27-interchain-accounts/types/codec_test.go @@ -12,8 +12,8 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" ) // mockSdkMsg defines a mock struct, used for testing codec error scenarios diff --git a/modules/apps/27-interchain-accounts/types/expected_keepers.go b/modules/apps/27-interchain-accounts/types/expected_keepers.go index 9ae0e0346ae..5c453420a39 100644 --- a/modules/apps/27-interchain-accounts/types/expected_keepers.go +++ b/modules/apps/27-interchain-accounts/types/expected_keepers.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" ) // AccountKeeper defines the expected account keeper diff --git a/modules/apps/27-interchain-accounts/types/keys_test.go b/modules/apps/27-interchain-accounts/types/keys_test.go index f4346a77334..6729e89eb64 100644 --- a/modules/apps/27-interchain-accounts/types/keys_test.go +++ b/modules/apps/27-interchain-accounts/types/keys_test.go @@ -3,8 +3,8 @@ package types_test import ( "fmt" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func (suite *TypesTestSuite) TestKeyActiveChannel() { diff --git a/modules/apps/27-interchain-accounts/types/metadata.go b/modules/apps/27-interchain-accounts/types/metadata.go index 7998e518d58..299f8050373 100644 --- a/modules/apps/27-interchain-accounts/types/metadata.go +++ b/modules/apps/27-interchain-accounts/types/metadata.go @@ -6,8 +6,8 @@ import ( errorsmod "cosmossdk.io/errors" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" ) const ( diff --git a/modules/apps/27-interchain-accounts/types/metadata_test.go b/modules/apps/27-interchain-accounts/types/metadata_test.go index f96174c04d0..dfb34d4c64f 100644 --- a/modules/apps/27-interchain-accounts/types/metadata_test.go +++ b/modules/apps/27-interchain-accounts/types/metadata_test.go @@ -1,9 +1,9 @@ package types_test import ( - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) // use TestVersion as metadata being compared against diff --git a/modules/apps/27-interchain-accounts/types/packet.go b/modules/apps/27-interchain-accounts/types/packet.go index c5a0144ae94..00592760a4d 100644 --- a/modules/apps/27-interchain-accounts/types/packet.go +++ b/modules/apps/27-interchain-accounts/types/packet.go @@ -9,7 +9,7 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" ) var ( diff --git a/modules/apps/27-interchain-accounts/types/packet_test.go b/modules/apps/27-interchain-accounts/types/packet_test.go index 041745e024b..047179e35eb 100644 --- a/modules/apps/27-interchain-accounts/types/packet_test.go +++ b/modules/apps/27-interchain-accounts/types/packet_test.go @@ -3,8 +3,8 @@ package types_test import ( "fmt" - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func (suite *TypesTestSuite) TestValidateBasic() { diff --git a/modules/apps/27-interchain-accounts/types/port_test.go b/modules/apps/27-interchain-accounts/types/port_test.go index 0fc769ee015..87b50856512 100644 --- a/modules/apps/27-interchain-accounts/types/port_test.go +++ b/modules/apps/27-interchain-accounts/types/port_test.go @@ -1,8 +1,8 @@ package types_test import ( - "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func (suite *TypesTestSuite) TestNewControllerPortID() { diff --git a/modules/apps/29-fee/client/cli/query.go b/modules/apps/29-fee/client/cli/query.go index 079a17401ca..b3f4b36f66e 100644 --- a/modules/apps/29-fee/client/cli/query.go +++ b/modules/apps/29-fee/client/cli/query.go @@ -11,8 +11,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/version" - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" ) // GetCmdIncentivizedPacket returns the unrelayed incentivized packet for a given packetID diff --git a/modules/apps/29-fee/client/cli/tx.go b/modules/apps/29-fee/client/cli/tx.go index a5b4a4eaf95..8c7a0631dd2 100644 --- a/modules/apps/29-fee/client/cli/tx.go +++ b/modules/apps/29-fee/client/cli/tx.go @@ -13,8 +13,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/version" - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" ) const ( diff --git a/modules/apps/29-fee/fee_test.go b/modules/apps/29-fee/fee_test.go index b2d266c8090..588a3b8812c 100644 --- a/modules/apps/29-fee/fee_test.go +++ b/modules/apps/29-fee/fee_test.go @@ -5,18 +5,18 @@ import ( testifysuite "github.com/stretchr/testify/suite" - icacontroller "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller" - icacontrollertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - icahost "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host" - icahosttypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer" - transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" + icacontroller "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller" + icacontrollertypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + icahost "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host" + icahosttypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + "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" + porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" + ibcmock "github.com/cosmos/ibc-go/v10/testing/mock" ) type FeeTestSuite struct { diff --git a/modules/apps/29-fee/ibc_middleware.go b/modules/apps/29-fee/ibc_middleware.go index 08d8c227a3f..f7c445065fa 100644 --- a/modules/apps/29-fee/ibc_middleware.go +++ b/modules/apps/29-fee/ibc_middleware.go @@ -9,13 +9,13 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/keeper" - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/keeper" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/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" + porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) var ( diff --git a/modules/apps/29-fee/ibc_middleware_test.go b/modules/apps/29-fee/ibc_middleware_test.go index 49b13ee712e..3c04c9622ac 100644 --- a/modules/apps/29-fee/ibc_middleware_test.go +++ b/modules/apps/29-fee/ibc_middleware_test.go @@ -11,16 +11,16 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - ibcfee "github.com/cosmos/ibc-go/v9/modules/apps/29-fee" - feekeeper "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/keeper" - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" + ibcfee "github.com/cosmos/ibc-go/v10/modules/apps/29-fee" + feekeeper "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/keeper" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + transfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v10/testing" + ibcmock "github.com/cosmos/ibc-go/v10/testing/mock" ) var ( diff --git a/modules/apps/29-fee/ica_test.go b/modules/apps/29-fee/ica_test.go index a90a18c58b1..ae38bfbc013 100644 --- a/modules/apps/29-fee/ica_test.go +++ b/modules/apps/29-fee/ica_test.go @@ -9,12 +9,12 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - icahosttypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + icahosttypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/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" ) var ( diff --git a/modules/apps/29-fee/keeper/escrow.go b/modules/apps/29-fee/keeper/escrow.go index 338746bc2db..bb3853fb9a8 100644 --- a/modules/apps/29-fee/keeper/escrow.go +++ b/modules/apps/29-fee/keeper/escrow.go @@ -9,8 +9,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" ) // escrowPacketFee sends the packet fee to the 29-fee module account to hold in escrow diff --git a/modules/apps/29-fee/keeper/escrow_test.go b/modules/apps/29-fee/keeper/escrow_test.go index c623cd11cdc..1c18e785c8e 100644 --- a/modules/apps/29-fee/keeper/escrow_test.go +++ b/modules/apps/29-fee/keeper/escrow_test.go @@ -7,11 +7,11 @@ import ( "github.com/cometbft/cometbft/crypto/secp256k1" - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - "github.com/cosmos/ibc-go/v9/testing/mock" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + transfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" + "github.com/cosmos/ibc-go/v10/testing/mock" ) func (suite *KeeperTestSuite) TestDistributeFee() { diff --git a/modules/apps/29-fee/keeper/events.go b/modules/apps/29-fee/keeper/events.go index 5bfd426db15..915aeb966e2 100644 --- a/modules/apps/29-fee/keeper/events.go +++ b/modules/apps/29-fee/keeper/events.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" ) // emitIncentivizedPacketEvent emits an event containing information on the total amount of fees incentivizing diff --git a/modules/apps/29-fee/keeper/events_test.go b/modules/apps/29-fee/keeper/events_test.go index 856c2c683dc..db762f64dc7 100644 --- a/modules/apps/29-fee/keeper/events_test.go +++ b/modules/apps/29-fee/keeper/events_test.go @@ -5,12 +5,12 @@ import ( abcitypes "github.com/cometbft/cometbft/abci/types" - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + 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" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func (suite *KeeperTestSuite) TestIncentivizePacketEvent() { diff --git a/modules/apps/29-fee/keeper/export_test.go b/modules/apps/29-fee/keeper/export_test.go index 0af18b5775a..956845daf3f 100644 --- a/modules/apps/29-fee/keeper/export_test.go +++ b/modules/apps/29-fee/keeper/export_test.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" ) // LegacyTotal is a wrapper for the legacyTotal function for testing. diff --git a/modules/apps/29-fee/keeper/genesis.go b/modules/apps/29-fee/keeper/genesis.go index c407238f772..c9d91e1ff7b 100644 --- a/modules/apps/29-fee/keeper/genesis.go +++ b/modules/apps/29-fee/keeper/genesis.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" ) // InitGenesis initializes the fee middleware application state from a provided genesis state diff --git a/modules/apps/29-fee/keeper/genesis_test.go b/modules/apps/29-fee/keeper/genesis_test.go index a1c8be052fc..cdc6b4ff027 100644 --- a/modules/apps/29-fee/keeper/genesis_test.go +++ b/modules/apps/29-fee/keeper/genesis_test.go @@ -1,9 +1,9 @@ package keeper_test import ( - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func (suite *KeeperTestSuite) TestInitGenesis() { diff --git a/modules/apps/29-fee/keeper/grpc_query.go b/modules/apps/29-fee/keeper/grpc_query.go index d366b63d7d6..443ce0cecef 100644 --- a/modules/apps/29-fee/keeper/grpc_query.go +++ b/modules/apps/29-fee/keeper/grpc_query.go @@ -13,9 +13,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - "github.com/cosmos/ibc-go/v9/internal/validate" - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v10/internal/validate" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" ) var _ types.QueryServer = (*Keeper)(nil) diff --git a/modules/apps/29-fee/keeper/grpc_query_test.go b/modules/apps/29-fee/keeper/grpc_query_test.go index 3732be86f01..1dec49abddc 100644 --- a/modules/apps/29-fee/keeper/grpc_query_test.go +++ b/modules/apps/29-fee/keeper/grpc_query_test.go @@ -10,9 +10,9 @@ import ( "github.com/cometbft/cometbft/crypto/secp256k1" - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func (suite *KeeperTestSuite) TestQueryIncentivizedPackets() { diff --git a/modules/apps/29-fee/keeper/keeper.go b/modules/apps/29-fee/keeper/keeper.go index 4b0b0b8db7c..ef2f030fe48 100644 --- a/modules/apps/29-fee/keeper/keeper.go +++ b/modules/apps/29-fee/keeper/keeper.go @@ -11,10 +11,10 @@ import ( "github.com/cosmos/cosmos-sdk/runtime" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // Middleware must implement types.ChannelKeeper and types.PortKeeper expected interfaces diff --git a/modules/apps/29-fee/keeper/keeper_test.go b/modules/apps/29-fee/keeper/keeper_test.go index f07b6e8b106..4e18e83cfa8 100644 --- a/modules/apps/29-fee/keeper/keeper_test.go +++ b/modules/apps/29-fee/keeper/keeper_test.go @@ -10,11 +10,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/keeper" - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - channelkeeper "github.com/cosmos/ibc-go/v9/modules/core/04-channel/keeper" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/keeper" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + channelkeeper "github.com/cosmos/ibc-go/v10/modules/core/04-channel/keeper" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) var ( diff --git a/modules/apps/29-fee/keeper/migrations.go b/modules/apps/29-fee/keeper/migrations.go index 25408c95954..765e7d6018c 100644 --- a/modules/apps/29-fee/keeper/migrations.go +++ b/modules/apps/29-fee/keeper/migrations.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/runtime" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" ) // Migrator is a struct for handling in-place store migrations. diff --git a/modules/apps/29-fee/keeper/migrations_test.go b/modules/apps/29-fee/keeper/migrations_test.go index 20d452c950d..a0c5eaa3365 100644 --- a/modules/apps/29-fee/keeper/migrations_test.go +++ b/modules/apps/29-fee/keeper/migrations_test.go @@ -6,9 +6,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" minttypes "github.com/cosmos/cosmos-sdk/x/mint/types" - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/keeper" - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/keeper" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" ) func (suite *KeeperTestSuite) TestLegacyTotal() { diff --git a/modules/apps/29-fee/keeper/msg_server.go b/modules/apps/29-fee/keeper/msg_server.go index e79996a0389..a584135bd1d 100644 --- a/modules/apps/29-fee/keeper/msg_server.go +++ b/modules/apps/29-fee/keeper/msg_server.go @@ -7,9 +7,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" ) var _ types.MsgServer = (*Keeper)(nil) diff --git a/modules/apps/29-fee/keeper/msg_server_test.go b/modules/apps/29-fee/keeper/msg_server_test.go index c2c629e95cc..607d0e89393 100644 --- a/modules/apps/29-fee/keeper/msg_server_test.go +++ b/modules/apps/29-fee/keeper/msg_server_test.go @@ -10,13 +10,13 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + 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" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v10/testing" + ibcmock "github.com/cosmos/ibc-go/v10/testing/mock" ) func (suite *KeeperTestSuite) TestRegisterPayee() { diff --git a/modules/apps/29-fee/keeper/relay.go b/modules/apps/29-fee/keeper/relay.go index 2fe2e2b70c4..2fd66d0083d 100644 --- a/modules/apps/29-fee/keeper/relay.go +++ b/modules/apps/29-fee/keeper/relay.go @@ -6,10 +6,10 @@ import ( errorsmod "cosmossdk.io/errors" - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/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" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // SendPacket wraps the ICS4Wrapper SendPacket function diff --git a/modules/apps/29-fee/keeper/relay_test.go b/modules/apps/29-fee/keeper/relay_test.go index 4bffcedc0d3..3291b11b7a2 100644 --- a/modules/apps/29-fee/keeper/relay_test.go +++ b/modules/apps/29-fee/keeper/relay_test.go @@ -1,11 +1,11 @@ package keeper_test import ( - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/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" + ibcmock "github.com/cosmos/ibc-go/v10/testing/mock" ) func (suite *KeeperTestSuite) TestWriteAcknowledgementAsync() { diff --git a/modules/apps/29-fee/module.go b/modules/apps/29-fee/module.go index 05d2f1cd0c2..bb88f92035c 100644 --- a/modules/apps/29-fee/module.go +++ b/modules/apps/29-fee/module.go @@ -17,9 +17,9 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/client/cli" - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/keeper" - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/client/cli" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/keeper" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" ) var ( diff --git a/modules/apps/29-fee/transfer_test.go b/modules/apps/29-fee/transfer_test.go index f16180d39e5..9283a59894d 100644 --- a/modules/apps/29-fee/transfer_test.go +++ b/modules/apps/29-fee/transfer_test.go @@ -3,10 +3,10 @@ package fee_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + transfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) // Integration test to ensure ics29 works with ics20 diff --git a/modules/apps/29-fee/types/codec_test.go b/modules/apps/29-fee/types/codec_test.go index 56666abab64..d4d66ba6d71 100644 --- a/modules/apps/29-fee/types/codec_test.go +++ b/modules/apps/29-fee/types/codec_test.go @@ -9,9 +9,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" - fee "github.com/cosmos/ibc-go/v9/modules/apps/29-fee" - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + fee "github.com/cosmos/ibc-go/v10/modules/apps/29-fee" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func TestCodecTypeRegistration(t *testing.T) { diff --git a/modules/apps/29-fee/types/expected_keepers.go b/modules/apps/29-fee/types/expected_keepers.go index 0285a2bc683..92ceaf736ed 100644 --- a/modules/apps/29-fee/types/expected_keepers.go +++ b/modules/apps/29-fee/types/expected_keepers.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" ) // AccountKeeper defines the contract required for account APIs. diff --git a/modules/apps/29-fee/types/fee.go b/modules/apps/29-fee/types/fee.go index 8b82229791d..bccde5620a8 100644 --- a/modules/apps/29-fee/types/fee.go +++ b/modules/apps/29-fee/types/fee.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" ) // NewPacketFee creates and returns a new PacketFee struct including the incentivization fees, refund address and relayers diff --git a/modules/apps/29-fee/types/fee.pb.go b/modules/apps/29-fee/types/fee.pb.go index 302a05f2043..c763b7dcccd 100644 --- a/modules/apps/29-fee/types/fee.pb.go +++ b/modules/apps/29-fee/types/fee.pb.go @@ -11,7 +11,7 @@ import ( _ "github.com/cosmos/cosmos-sdk/types/tx/amino" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" - types1 "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + types1 "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" io "io" math "math" math_bits "math/bits" diff --git a/modules/apps/29-fee/types/fee_test.go b/modules/apps/29-fee/types/fee_test.go index 0168b0e2275..541ce5556a9 100644 --- a/modules/apps/29-fee/types/fee_test.go +++ b/modules/apps/29-fee/types/fee_test.go @@ -12,9 +12,9 @@ import ( "github.com/cometbft/cometbft/crypto/secp256k1" - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) var ( diff --git a/modules/apps/29-fee/types/genesis.go b/modules/apps/29-fee/types/genesis.go index 03cb796d43e..dad43265aad 100644 --- a/modules/apps/29-fee/types/genesis.go +++ b/modules/apps/29-fee/types/genesis.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" ) // NewGenesisState creates a 29-fee GenesisState instance. diff --git a/modules/apps/29-fee/types/genesis.pb.go b/modules/apps/29-fee/types/genesis.pb.go index 7df8165f97b..6e5161eac24 100644 --- a/modules/apps/29-fee/types/genesis.pb.go +++ b/modules/apps/29-fee/types/genesis.pb.go @@ -7,7 +7,7 @@ import ( fmt "fmt" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" - types "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + types "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" io "io" math "math" math_bits "math/bits" diff --git a/modules/apps/29-fee/types/genesis_test.go b/modules/apps/29-fee/types/genesis_test.go index 93e063745b9..2a13acee394 100644 --- a/modules/apps/29-fee/types/genesis_test.go +++ b/modules/apps/29-fee/types/genesis_test.go @@ -10,11 +10,11 @@ import ( "github.com/cometbft/cometbft/crypto/secp256k1" - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func TestValidateDefaultGenesis(t *testing.T) { diff --git a/modules/apps/29-fee/types/keys.go b/modules/apps/29-fee/types/keys.go index 4b81f00fa8e..fd58ca8276b 100644 --- a/modules/apps/29-fee/types/keys.go +++ b/modules/apps/29-fee/types/keys.go @@ -7,8 +7,8 @@ import ( errorsmod "cosmossdk.io/errors" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" ) const ( diff --git a/modules/apps/29-fee/types/keys_test.go b/modules/apps/29-fee/types/keys_test.go index ec95afab64b..b84e733fa1c 100644 --- a/modules/apps/29-fee/types/keys_test.go +++ b/modules/apps/29-fee/types/keys_test.go @@ -7,10 +7,10 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) var validPacketID = channeltypes.NewPacketID(ibctesting.MockFeePort, ibctesting.FirstChannelID, 1) diff --git a/modules/apps/29-fee/types/metadata_test.go b/modules/apps/29-fee/types/metadata_test.go index 32b2b3e776b..62d5131495b 100644 --- a/modules/apps/29-fee/types/metadata_test.go +++ b/modules/apps/29-fee/types/metadata_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + ibcmock "github.com/cosmos/ibc-go/v10/testing/mock" ) func TestMetadataFromVersion(t *testing.T) { diff --git a/modules/apps/29-fee/types/msgs.go b/modules/apps/29-fee/types/msgs.go index df4274bbea4..d95f776a8fe 100644 --- a/modules/apps/29-fee/types/msgs.go +++ b/modules/apps/29-fee/types/msgs.go @@ -7,9 +7,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" ) const MaximumCounterpartyPayeeLength = 2048 // maximum length of the counterparty payee in bytes (value chosen arbitrarily) diff --git a/modules/apps/29-fee/types/msgs_test.go b/modules/apps/29-fee/types/msgs_test.go index 7699b94e990..67b09699ecc 100644 --- a/modules/apps/29-fee/types/msgs_test.go +++ b/modules/apps/29-fee/types/msgs_test.go @@ -11,12 +11,12 @@ import ( "github.com/cometbft/cometbft/crypto/secp256k1" - modulefee "github.com/cosmos/ibc-go/v9/modules/apps/29-fee" - "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + modulefee "github.com/cosmos/ibc-go/v10/modules/apps/29-fee" + "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func TestMsgRegisterPayeeValidation(t *testing.T) { diff --git a/modules/apps/29-fee/types/query.pb.go b/modules/apps/29-fee/types/query.pb.go index dd727e891e8..e8bda792660 100644 --- a/modules/apps/29-fee/types/query.pb.go +++ b/modules/apps/29-fee/types/query.pb.go @@ -12,7 +12,7 @@ import ( _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" - types "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + types "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" diff --git a/modules/apps/29-fee/types/tx.pb.go b/modules/apps/29-fee/types/tx.pb.go index f2017682bf0..bad97a0eef4 100644 --- a/modules/apps/29-fee/types/tx.pb.go +++ b/modules/apps/29-fee/types/tx.pb.go @@ -11,7 +11,7 @@ import ( _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" - types "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + types "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" diff --git a/modules/apps/callbacks/callbacks_test.go b/modules/apps/callbacks/callbacks_test.go index 500a0b0c2eb..2ee22f560c3 100644 --- a/modules/apps/callbacks/callbacks_test.go +++ b/modules/apps/callbacks/callbacks_test.go @@ -21,14 +21,14 @@ import ( "github.com/cosmos/ibc-go/modules/apps/callbacks/testing/simapp" "github.com/cosmos/ibc-go/modules/apps/callbacks/types" - icacontrollertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - feetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + icacontrollertypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + feetypes "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + 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" + porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) const maxCallbackGas = uint64(1000000) diff --git a/modules/apps/callbacks/fee_transfer_test.go b/modules/apps/callbacks/fee_transfer_test.go index 44e342143b9..b757c467a45 100644 --- a/modules/apps/callbacks/fee_transfer_test.go +++ b/modules/apps/callbacks/fee_transfer_test.go @@ -9,9 +9,9 @@ import ( "github.com/cosmos/ibc-go/modules/apps/callbacks/testing/simapp" "github.com/cosmos/ibc-go/modules/apps/callbacks/types" - feetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + feetypes "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) var ( diff --git a/modules/apps/callbacks/go.mod b/modules/apps/callbacks/go.mod index a82cc3fae14..3ca3af98db6 100644 --- a/modules/apps/callbacks/go.mod +++ b/modules/apps/callbacks/go.mod @@ -2,7 +2,7 @@ module github.com/cosmos/ibc-go/modules/apps/callbacks go 1.23.6 -replace github.com/cosmos/ibc-go/v9 => ../../../ +replace github.com/cosmos/ibc-go/v10 => ../../../ replace github.com/syndtr/goleveldb => github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 @@ -17,7 +17,7 @@ require ( github.com/cosmos/cosmos-db v1.1.0 github.com/cosmos/cosmos-sdk v0.50.10 github.com/cosmos/gogoproto v1.7.0 - github.com/cosmos/ibc-go/v9 v9.0.0 + github.com/cosmos/ibc-go/v10 v10.0.0 github.com/spf13/cast v1.7.0 github.com/stretchr/testify v1.10.0 ) diff --git a/modules/apps/callbacks/ibc_middleware.go b/modules/apps/callbacks/ibc_middleware.go index 4915adbe643..91aafc9d31e 100644 --- a/modules/apps/callbacks/ibc_middleware.go +++ b/modules/apps/callbacks/ibc_middleware.go @@ -11,10 +11,10 @@ import ( "github.com/cosmos/ibc-go/modules/apps/callbacks/internal" "github.com/cosmos/ibc-go/modules/apps/callbacks/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" ) var ( diff --git a/modules/apps/callbacks/ibc_middleware_test.go b/modules/apps/callbacks/ibc_middleware_test.go index 7274fe7b5b4..04e8587f0a8 100644 --- a/modules/apps/callbacks/ibc_middleware_test.go +++ b/modules/apps/callbacks/ibc_middleware_test.go @@ -13,16 +13,16 @@ import ( "github.com/cosmos/ibc-go/modules/apps/callbacks/internal" "github.com/cosmos/ibc-go/modules/apps/callbacks/testing/simapp" "github.com/cosmos/ibc-go/modules/apps/callbacks/types" - icacontrollertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channelkeeper "github.com/cosmos/ibc-go/v9/modules/core/04-channel/keeper" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" + icacontrollertypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + transfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + channelkeeper "github.com/cosmos/ibc-go/v10/modules/core/04-channel/keeper" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v10/testing" + ibcmock "github.com/cosmos/ibc-go/v10/testing/mock" ) func (s *CallbacksTestSuite) TestNewIBCMiddleware() { diff --git a/modules/apps/callbacks/ica_test.go b/modules/apps/callbacks/ica_test.go index ecd669d933b..374b9fab837 100644 --- a/modules/apps/callbacks/ica_test.go +++ b/modules/apps/callbacks/ica_test.go @@ -13,10 +13,10 @@ import ( "github.com/cosmos/ibc-go/modules/apps/callbacks/testing/simapp" "github.com/cosmos/ibc-go/modules/apps/callbacks/types" - icacontrollertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - icahosttypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + icacontrollertypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + icahosttypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func (s *CallbacksTestSuite) TestICACallbacks() { diff --git a/modules/apps/callbacks/replay_test.go b/modules/apps/callbacks/replay_test.go index 501584586ed..79c4da5ac86 100644 --- a/modules/apps/callbacks/replay_test.go +++ b/modules/apps/callbacks/replay_test.go @@ -6,12 +6,12 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/ibc-go/modules/apps/callbacks/testing/simapp" - transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + 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" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func (s *CallbacksTestSuite) TestTransferTimeoutReplayProtection() { diff --git a/modules/apps/callbacks/testing/simapp/ante_handler.go b/modules/apps/callbacks/testing/simapp/ante_handler.go index f1c4cb8207a..ddc67392672 100644 --- a/modules/apps/callbacks/testing/simapp/ante_handler.go +++ b/modules/apps/callbacks/testing/simapp/ante_handler.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/x/auth/ante" - ibcante "github.com/cosmos/ibc-go/v9/modules/core/ante" - "github.com/cosmos/ibc-go/v9/modules/core/keeper" + ibcante "github.com/cosmos/ibc-go/v10/modules/core/ante" + "github.com/cosmos/ibc-go/v10/modules/core/keeper" ) // HandlerOptions are the options required for constructing a default SDK AnteHandler. diff --git a/modules/apps/callbacks/testing/simapp/app.go b/modules/apps/callbacks/testing/simapp/app.go index 6f04252dce4..103ace1277f 100644 --- a/modules/apps/callbacks/testing/simapp/app.go +++ b/modules/apps/callbacks/testing/simapp/app.go @@ -80,29 +80,29 @@ import ( ibccallbacks "github.com/cosmos/ibc-go/modules/apps/callbacks" ibccallbacksv2 "github.com/cosmos/ibc-go/modules/apps/callbacks/v2" - ica "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts" - icacontroller "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller" - icacontrollerkeeper "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/keeper" - icacontrollertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - icahost "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host" - icahostkeeper "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/keeper" - icahosttypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - ibcfee "github.com/cosmos/ibc-go/v9/modules/apps/29-fee" - ibcfeekeeper "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/keeper" - ibcfeetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer" - ibctransferkeeper "github.com/cosmos/ibc-go/v9/modules/apps/transfer/keeper" - ibctransfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - transferv2 "github.com/cosmos/ibc-go/v9/modules/apps/transfer/v2" - ibc "github.com/cosmos/ibc-go/v9/modules/core" - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" - ibcapi "github.com/cosmos/ibc-go/v9/modules/core/api" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibckeeper "github.com/cosmos/ibc-go/v9/modules/core/keeper" - solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" + ica "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts" + icacontroller "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller" + icacontrollerkeeper "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/keeper" + icacontrollertypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + icahost "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host" + icahostkeeper "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/keeper" + icahosttypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + ibcfee "github.com/cosmos/ibc-go/v10/modules/apps/29-fee" + ibcfeekeeper "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/keeper" + ibcfeetypes "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer" + ibctransferkeeper "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" + solomachine "github.com/cosmos/ibc-go/v10/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" + ibcmock "github.com/cosmos/ibc-go/v10/testing/mock" ) const appName = "SimApp" diff --git a/modules/apps/callbacks/testing/simapp/contract_keeper.go b/modules/apps/callbacks/testing/simapp/contract_keeper.go index b2206f06fba..381915b421a 100644 --- a/modules/apps/callbacks/testing/simapp/contract_keeper.go +++ b/modules/apps/callbacks/testing/simapp/contract_keeper.go @@ -8,10 +8,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" callbacktypes "github.com/cosmos/ibc-go/modules/apps/callbacks/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibcmock "github.com/cosmos/ibc-go/v10/testing/mock" ) // MockKeeper implements callbacktypes.ContractKeeper diff --git a/modules/apps/callbacks/transfer_test.go b/modules/apps/callbacks/transfer_test.go index 96b2abc45aa..e21ab8903e3 100644 --- a/modules/apps/callbacks/transfer_test.go +++ b/modules/apps/callbacks/transfer_test.go @@ -9,9 +9,9 @@ import ( "github.com/cosmos/ibc-go/modules/apps/callbacks/testing/simapp" "github.com/cosmos/ibc-go/modules/apps/callbacks/types" - transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + transfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func (s *CallbacksTestSuite) TestTransferCallbacks() { diff --git a/modules/apps/callbacks/types/callbacks.go b/modules/apps/callbacks/types/callbacks.go index 6d72dc210e4..4e767446d0f 100644 --- a/modules/apps/callbacks/types/callbacks.go +++ b/modules/apps/callbacks/types/callbacks.go @@ -8,10 +8,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" - "github.com/cosmos/ibc-go/v9/modules/core/api" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" + "github.com/cosmos/ibc-go/v10/modules/core/api" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" ) /* diff --git a/modules/apps/callbacks/types/callbacks_test.go b/modules/apps/callbacks/types/callbacks_test.go index b67c3782b44..c289e6cbfa3 100644 --- a/modules/apps/callbacks/types/callbacks_test.go +++ b/modules/apps/callbacks/types/callbacks_test.go @@ -10,13 +10,13 @@ import ( "github.com/cometbft/cometbft/crypto/secp256k1" "github.com/cosmos/ibc-go/modules/apps/callbacks/types" - transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" + 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" + porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v10/testing" + ibcmock "github.com/cosmos/ibc-go/v10/testing/mock" ) func (s *CallbacksTypesTestSuite) TestGetCallbackData() { diff --git a/modules/apps/callbacks/types/events_test.go b/modules/apps/callbacks/types/events_test.go index e5c4e98fff1..fc7cb986d98 100644 --- a/modules/apps/callbacks/types/events_test.go +++ b/modules/apps/callbacks/types/events_test.go @@ -6,10 +6,10 @@ import ( abci "github.com/cometbft/cometbft/abci/types" "github.com/cosmos/ibc-go/modules/apps/callbacks/types" - transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + 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" ) func (s *CallbacksTypesTestSuite) TestEvents() { diff --git a/modules/apps/callbacks/types/expected_keepers.go b/modules/apps/callbacks/types/expected_keepers.go index cfcb83d0106..18707915e0d 100644 --- a/modules/apps/callbacks/types/expected_keepers.go +++ b/modules/apps/callbacks/types/expected_keepers.go @@ -5,10 +5,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - channeltypesv2 "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + 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" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // ContractKeeper defines the entry points exposed to the VM module which invokes a smart contract diff --git a/modules/apps/callbacks/types/types_test.go b/modules/apps/callbacks/types/types_test.go index 060cc534bc6..0698561ad25 100644 --- a/modules/apps/callbacks/types/types_test.go +++ b/modules/apps/callbacks/types/types_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/suite" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) // CallbacksTypesTestSuite defines the needed instances and methods to test callbacks diff --git a/modules/apps/callbacks/v2/ibc_middleware.go b/modules/apps/callbacks/v2/ibc_middleware.go index 59e52b8fba6..75782832f4d 100644 --- a/modules/apps/callbacks/v2/ibc_middleware.go +++ b/modules/apps/callbacks/v2/ibc_middleware.go @@ -11,10 +11,10 @@ import ( "github.com/cosmos/ibc-go/modules/apps/callbacks/internal" "github.com/cosmos/ibc-go/modules/apps/callbacks/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - channeltypesv2 "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" - "github.com/cosmos/ibc-go/v9/modules/core/api" + 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/v10/modules/core/api" ) var _ api.IBCModule = (*IBCMiddleware)(nil) diff --git a/modules/apps/callbacks/v2/ibc_middleware_test.go b/modules/apps/callbacks/v2/ibc_middleware_test.go index ba4cef072aa..565f03e076a 100644 --- a/modules/apps/callbacks/v2/ibc_middleware_test.go +++ b/modules/apps/callbacks/v2/ibc_middleware_test.go @@ -11,15 +11,15 @@ import ( "github.com/cosmos/ibc-go/modules/apps/callbacks/testing/simapp" "github.com/cosmos/ibc-go/modules/apps/callbacks/types" v2 "github.com/cosmos/ibc-go/modules/apps/callbacks/v2" - transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - channelkeeperv2 "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/keeper" - channeltypesv2 "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" - "github.com/cosmos/ibc-go/v9/modules/core/api" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" - ibcmockv2 "github.com/cosmos/ibc-go/v9/testing/mock/v2" + transfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + channelkeeperv2 "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/keeper" + channeltypesv2 "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types" + "github.com/cosmos/ibc-go/v10/modules/core/api" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v10/testing" + ibcmock "github.com/cosmos/ibc-go/v10/testing/mock" + ibcmockv2 "github.com/cosmos/ibc-go/v10/testing/mock/v2" ) func (s *CallbacksTestSuite) TestNewIBCMiddleware() { diff --git a/modules/apps/callbacks/v2/v2_test.go b/modules/apps/callbacks/v2/v2_test.go index b93886174ca..56c8e7a742d 100644 --- a/modules/apps/callbacks/v2/v2_test.go +++ b/modules/apps/callbacks/v2/v2_test.go @@ -18,7 +18,7 @@ import ( "github.com/cosmos/ibc-go/modules/apps/callbacks/testing/simapp" "github.com/cosmos/ibc-go/modules/apps/callbacks/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) const maxCallbackGas = uint64(1000000) diff --git a/modules/apps/transfer/client/cli/query.go b/modules/apps/transfer/client/cli/query.go index 51561e58bac..299dbb288d8 100644 --- a/modules/apps/transfer/client/cli/query.go +++ b/modules/apps/transfer/client/cli/query.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/version" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" ) // GetCmdQueryDenom defines the command to query a denomination from a given hash or ibc denom. diff --git a/modules/apps/transfer/client/cli/tx.go b/modules/apps/transfer/client/cli/tx.go index 753312dfeaa..8caa998a941 100644 --- a/modules/apps/transfer/client/cli/tx.go +++ b/modules/apps/transfer/client/cli/tx.go @@ -14,8 +14,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/version" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" ) const ( diff --git a/modules/apps/transfer/ibc_module.go b/modules/apps/transfer/ibc_module.go index e60ca6a58f6..594a986ba69 100644 --- a/modules/apps/transfer/ibc_module.go +++ b/modules/apps/transfer/ibc_module.go @@ -11,14 +11,14 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/internal/events" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/internal/telemetry" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/keeper" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/internal/events" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/internal/telemetry" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/keeper" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" ) var ( diff --git a/modules/apps/transfer/ibc_module_test.go b/modules/apps/transfer/ibc_module_test.go index 8c89a5ec95d..5e8944b2d61 100644 --- a/modules/apps/transfer/ibc_module_test.go +++ b/modules/apps/transfer/ibc_module_test.go @@ -9,15 +9,15 @@ import ( "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func (suite *TransferTestSuite) TestOnChanOpenInit() { diff --git a/modules/apps/transfer/internal/events/events.go b/modules/apps/transfer/internal/events/events.go index dc35c1a1824..fdf080081c3 100644 --- a/modules/apps/transfer/internal/events/events.go +++ b/modules/apps/transfer/internal/events/events.go @@ -7,9 +7,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // EmitTransferEvent emits a ibc transfer event on successful transfers. diff --git a/modules/apps/transfer/internal/telemetry/telemetry.go b/modules/apps/transfer/internal/telemetry/telemetry.go index 824d359ac05..68b43bf0764 100644 --- a/modules/apps/transfer/internal/telemetry/telemetry.go +++ b/modules/apps/transfer/internal/telemetry/telemetry.go @@ -9,8 +9,8 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - coremetrics "github.com/cosmos/ibc-go/v9/modules/core/metrics" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + coremetrics "github.com/cosmos/ibc-go/v10/modules/core/metrics" ) func ReportTransfer(sourcePort, sourceChannel, destinationPort, destinationChannel string, token types.Token) { diff --git a/modules/apps/transfer/internal/types/legacy_denomtrace.go b/modules/apps/transfer/internal/types/legacy_denomtrace.go index 63c2182616e..bf78e5c46de 100644 --- a/modules/apps/transfer/internal/types/legacy_denomtrace.go +++ b/modules/apps/transfer/internal/types/legacy_denomtrace.go @@ -6,7 +6,7 @@ import ( cmtbytes "github.com/cometbft/cometbft/libs/bytes" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" ) // Hash returns the hex bytes of the SHA256 hash of the DenomTrace fields using the following formula: diff --git a/modules/apps/transfer/internal/types/legacy_denomtrace_test.go b/modules/apps/transfer/internal/types/legacy_denomtrace_test.go index 87178c0e6ae..db16c0c054a 100644 --- a/modules/apps/transfer/internal/types/legacy_denomtrace_test.go +++ b/modules/apps/transfer/internal/types/legacy_denomtrace_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - internaltypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/internal/types" + internaltypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/internal/types" ) func TestDenomTrace_IBCDenom(t *testing.T) { diff --git a/modules/apps/transfer/keeper/export_test.go b/modules/apps/transfer/keeper/export_test.go index 1f9c2eb81c3..9593ebb8176 100644 --- a/modules/apps/transfer/keeper/export_test.go +++ b/modules/apps/transfer/keeper/export_test.go @@ -3,8 +3,8 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - internaltypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/internal/types" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + internaltypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/internal/types" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" ) // SetDenomTrace is a wrapper around setDenomTrace for testing purposes. diff --git a/modules/apps/transfer/keeper/genesis.go b/modules/apps/transfer/keeper/genesis.go index 5a9e5d3dde9..7b309b90897 100644 --- a/modules/apps/transfer/keeper/genesis.go +++ b/modules/apps/transfer/keeper/genesis.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" ) // InitGenesis initializes the ibc-transfer state and binds to PortID. diff --git a/modules/apps/transfer/keeper/genesis_test.go b/modules/apps/transfer/keeper/genesis_test.go index 61fa75ebf3c..77320dc1885 100644 --- a/modules/apps/transfer/keeper/genesis_test.go +++ b/modules/apps/transfer/keeper/genesis_test.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" ) func (suite *KeeperTestSuite) TestGenesis() { diff --git a/modules/apps/transfer/keeper/grpc_query.go b/modules/apps/transfer/keeper/grpc_query.go index 90f53542985..32eb851ec6f 100644 --- a/modules/apps/transfer/keeper/grpc_query.go +++ b/modules/apps/transfer/keeper/grpc_query.go @@ -15,9 +15,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - "github.com/cosmos/ibc-go/v9/internal/validate" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v10/internal/validate" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" ) var ( diff --git a/modules/apps/transfer/keeper/grpc_query_test.go b/modules/apps/transfer/keeper/grpc_query_test.go index 866a5b34728..eca2d611318 100644 --- a/modules/apps/transfer/keeper/grpc_query_test.go +++ b/modules/apps/transfer/keeper/grpc_query_test.go @@ -9,8 +9,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func (suite *KeeperTestSuite) TestQueryDenom() { diff --git a/modules/apps/transfer/keeper/keeper.go b/modules/apps/transfer/keeper/keeper.go index b67df9b9584..920a62e5286 100644 --- a/modules/apps/transfer/keeper/keeper.go +++ b/modules/apps/transfer/keeper/keeper.go @@ -19,9 +19,9 @@ import ( cmtbytes "github.com/cometbft/cometbft/libs/bytes" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // Keeper defines the IBC fungible transfer keeper diff --git a/modules/apps/transfer/keeper/keeper_test.go b/modules/apps/transfer/keeper/keeper_test.go index e2f790c1882..e80c8400e68 100644 --- a/modules/apps/transfer/keeper/keeper_test.go +++ b/modules/apps/transfer/keeper/keeper_test.go @@ -16,10 +16,10 @@ import ( authkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper" minttypes "github.com/cosmos/cosmos-sdk/x/mint/types" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/keeper" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - channelkeeper "github.com/cosmos/ibc-go/v9/modules/core/04-channel/keeper" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/keeper" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + channelkeeper "github.com/cosmos/ibc-go/v10/modules/core/04-channel/keeper" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) type KeeperTestSuite struct { diff --git a/modules/apps/transfer/keeper/mbt_relay_test.go b/modules/apps/transfer/keeper/mbt_relay_test.go index 10eb11fac54..be61eb3cacd 100644 --- a/modules/apps/transfer/keeper/mbt_relay_test.go +++ b/modules/apps/transfer/keeper/mbt_relay_test.go @@ -19,11 +19,11 @@ import ( "github.com/cometbft/cometbft/crypto" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "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" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) type TlaBalance struct { diff --git a/modules/apps/transfer/keeper/migrations.go b/modules/apps/transfer/keeper/migrations.go index bc82b83c21a..2c06517763c 100644 --- a/modules/apps/transfer/keeper/migrations.go +++ b/modules/apps/transfer/keeper/migrations.go @@ -12,8 +12,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - internaltypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/internal/types" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + internaltypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/internal/types" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" ) // Migrator is a struct for handling in-place store migrations. diff --git a/modules/apps/transfer/keeper/migrations_test.go b/modules/apps/transfer/keeper/migrations_test.go index 8eea47d4ab0..64c70bca0ae 100644 --- a/modules/apps/transfer/keeper/migrations_test.go +++ b/modules/apps/transfer/keeper/migrations_test.go @@ -9,10 +9,10 @@ import ( banktestutil "github.com/cosmos/cosmos-sdk/x/bank/testutil" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - internaltransfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/internal/types" - transferkeeper "github.com/cosmos/ibc-go/v9/modules/apps/transfer/keeper" - transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + internaltransfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/internal/types" + transferkeeper "github.com/cosmos/ibc-go/v10/modules/apps/transfer/keeper" + transfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func (suite *KeeperTestSuite) TestMigratorMigrateParams() { diff --git a/modules/apps/transfer/keeper/msg_server.go b/modules/apps/transfer/keeper/msg_server.go index 01906cdd653..74d5d59f2e5 100644 --- a/modules/apps/transfer/keeper/msg_server.go +++ b/modules/apps/transfer/keeper/msg_server.go @@ -7,11 +7,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/internal/events" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/internal/telemetry" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/internal/events" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/internal/telemetry" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" ) var _ types.MsgServer = (*Keeper)(nil) diff --git a/modules/apps/transfer/keeper/msg_server_test.go b/modules/apps/transfer/keeper/msg_server_test.go index 1903decfbf1..e658bdf648e 100644 --- a/modules/apps/transfer/keeper/msg_server_test.go +++ b/modules/apps/transfer/keeper/msg_server_test.go @@ -10,10 +10,10 @@ import ( abci "github.com/cometbft/cometbft/abci/types" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) // TestMsgTransfer tests Transfer rpc handler diff --git a/modules/apps/transfer/keeper/relay.go b/modules/apps/transfer/keeper/relay.go index 7824619f8ad..8b274e70709 100644 --- a/modules/apps/transfer/keeper/relay.go +++ b/modules/apps/transfer/keeper/relay.go @@ -10,10 +10,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/internal/events" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/internal/events" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" ) // SendTransfer handles transfer sending logic. There are 2 possible cases: diff --git a/modules/apps/transfer/keeper/relay_test.go b/modules/apps/transfer/keeper/relay_test.go index e13a3e2c400..2d4531b55d6 100644 --- a/modules/apps/transfer/keeper/relay_test.go +++ b/modules/apps/transfer/keeper/relay_test.go @@ -16,13 +16,13 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" minttypes "github.com/cosmos/cosmos-sdk/x/mint/types" - transferkeeper "github.com/cosmos/ibc-go/v9/modules/apps/transfer/keeper" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" + transferkeeper "github.com/cosmos/ibc-go/v10/modules/apps/transfer/keeper" + "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" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v10/testing" + ibcmock "github.com/cosmos/ibc-go/v10/testing/mock" ) var ( diff --git a/modules/apps/transfer/module.go b/modules/apps/transfer/module.go index 9f5379ae535..6b573977b55 100644 --- a/modules/apps/transfer/module.go +++ b/modules/apps/transfer/module.go @@ -17,11 +17,11 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/client/cli" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/keeper" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/simulation" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/client/cli" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/keeper" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/simulation" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" ) var ( diff --git a/modules/apps/transfer/simulation/decoder.go b/modules/apps/transfer/simulation/decoder.go index 690174de732..29ae441c4c4 100644 --- a/modules/apps/transfer/simulation/decoder.go +++ b/modules/apps/transfer/simulation/decoder.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" ) // NewDecodeStore returns a decoder function closure that unmarshals the KVPair's diff --git a/modules/apps/transfer/simulation/decoder_test.go b/modules/apps/transfer/simulation/decoder_test.go index e83dd8e75ed..6dfa765a3b5 100644 --- a/modules/apps/transfer/simulation/decoder_test.go +++ b/modules/apps/transfer/simulation/decoder_test.go @@ -8,8 +8,8 @@ import ( "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/simulation" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/simulation" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" ) func TestDecodeStore(t *testing.T) { diff --git a/modules/apps/transfer/simulation/genesis.go b/modules/apps/transfer/simulation/genesis.go index 0bd3d581efe..11a670d0eb8 100644 --- a/modules/apps/transfer/simulation/genesis.go +++ b/modules/apps/transfer/simulation/genesis.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" ) // Simulation parameter constants diff --git a/modules/apps/transfer/simulation/genesis_test.go b/modules/apps/transfer/simulation/genesis_test.go index 3cb5f681442..bbb5fda0877 100644 --- a/modules/apps/transfer/simulation/genesis_test.go +++ b/modules/apps/transfer/simulation/genesis_test.go @@ -15,8 +15,8 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/simulation" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/simulation" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" ) // TestRandomizedGenState tests the normal scenario of applying RandomizedGenState. diff --git a/modules/apps/transfer/simulation/proposals.go b/modules/apps/transfer/simulation/proposals.go index 404a24ff3a0..a14b9af3c9c 100644 --- a/modules/apps/transfer/simulation/proposals.go +++ b/modules/apps/transfer/simulation/proposals.go @@ -8,7 +8,7 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" ) // Simulation operation weights constants diff --git a/modules/apps/transfer/simulation/proposals_test.go b/modules/apps/transfer/simulation/proposals_test.go index 44a03d6d569..125bc673d90 100644 --- a/modules/apps/transfer/simulation/proposals_test.go +++ b/modules/apps/transfer/simulation/proposals_test.go @@ -12,8 +12,8 @@ import ( cmtproto "github.com/cometbft/cometbft/proto/tendermint/types" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/simulation" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/simulation" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" ) func TestProposalMsgs(t *testing.T) { diff --git a/modules/apps/transfer/transfer_test.go b/modules/apps/transfer/transfer_test.go index 8a98e4ac805..cc654dd6694 100644 --- a/modules/apps/transfer/transfer_test.go +++ b/modules/apps/transfer/transfer_test.go @@ -9,9 +9,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) type TransferTestSuite struct { diff --git a/modules/apps/transfer/types/codec_test.go b/modules/apps/transfer/types/codec_test.go index 591282526b7..84635c0257d 100644 --- a/modules/apps/transfer/types/codec_test.go +++ b/modules/apps/transfer/types/codec_test.go @@ -7,9 +7,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) // TestMustMarshalProtoJSON tests that the memo field is only emitted (marshalled) if it is populated diff --git a/modules/apps/transfer/types/denom.go b/modules/apps/transfer/types/denom.go index 8846d876ce2..291d591e9d8 100644 --- a/modules/apps/transfer/types/denom.go +++ b/modules/apps/transfer/types/denom.go @@ -14,8 +14,8 @@ import ( cmtbytes "github.com/cometbft/cometbft/libs/bytes" cmttypes "github.com/cometbft/cometbft/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/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" ) // NewDenom creates a new Denom instance given the base denomination and a variable number of hops. diff --git a/modules/apps/transfer/types/denom_test.go b/modules/apps/transfer/types/denom_test.go index d6d47c78e56..6c2e6dfb5ce 100644 --- a/modules/apps/transfer/types/denom_test.go +++ b/modules/apps/transfer/types/denom_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" ) func (suite *TypesTestSuite) TestDenomsValidate() { diff --git a/modules/apps/transfer/types/expected_keepers.go b/modules/apps/transfer/types/expected_keepers.go index 8d0e6d1f0d6..07959cf1946 100644 --- a/modules/apps/transfer/types/expected_keepers.go +++ b/modules/apps/transfer/types/expected_keepers.go @@ -7,9 +7,9 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // AccountKeeper defines the contract required for account APIs. diff --git a/modules/apps/transfer/types/genesis.go b/modules/apps/transfer/types/genesis.go index 4ae14cf8ded..e6f9c0d92c6 100644 --- a/modules/apps/transfer/types/genesis.go +++ b/modules/apps/transfer/types/genesis.go @@ -3,7 +3,7 @@ package types import ( sdk "github.com/cosmos/cosmos-sdk/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" ) // NewGenesisState creates a new ibc-transfer GenesisState instance. diff --git a/modules/apps/transfer/types/genesis.pb.go b/modules/apps/transfer/types/genesis.pb.go index c639d8d1976..c60da10ecec 100644 --- a/modules/apps/transfer/types/genesis.pb.go +++ b/modules/apps/transfer/types/genesis.pb.go @@ -9,7 +9,7 @@ import ( types "github.com/cosmos/cosmos-sdk/types" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" - _ "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + _ "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" io "io" math "math" math_bits "math/bits" diff --git a/modules/apps/transfer/types/genesis_test.go b/modules/apps/transfer/types/genesis_test.go index b86f337ee4a..0f1ee589948 100644 --- a/modules/apps/transfer/types/genesis_test.go +++ b/modules/apps/transfer/types/genesis_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" ) func TestValidateGenesis(t *testing.T) { diff --git a/modules/apps/transfer/types/hop.go b/modules/apps/transfer/types/hop.go index 807e2797b54..11abf5d04ef 100644 --- a/modules/apps/transfer/types/hop.go +++ b/modules/apps/transfer/types/hop.go @@ -5,7 +5,7 @@ import ( errorsmod "cosmossdk.io/errors" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" ) // NewHop creates a Hop with the given port ID and channel ID. diff --git a/modules/apps/transfer/types/hop_test.go b/modules/apps/transfer/types/hop_test.go index d0494761f06..db2e6421187 100644 --- a/modules/apps/transfer/types/hop_test.go +++ b/modules/apps/transfer/types/hop_test.go @@ -5,9 +5,9 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func TestValidateHop(t *testing.T) { diff --git a/modules/apps/transfer/types/keys_test.go b/modules/apps/transfer/types/keys_test.go index 692e1dfe610..7508c7a1b00 100644 --- a/modules/apps/transfer/types/keys_test.go +++ b/modules/apps/transfer/types/keys_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" ) // Test that there is domain separation between the port id and the channel id otherwise an diff --git a/modules/apps/transfer/types/msgs.go b/modules/apps/transfer/types/msgs.go index c04ee0f9bdc..fe4f61913b3 100644 --- a/modules/apps/transfer/types/msgs.go +++ b/modules/apps/transfer/types/msgs.go @@ -7,9 +7,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" ) const ( diff --git a/modules/apps/transfer/types/msgs_test.go b/modules/apps/transfer/types/msgs_test.go index 4fcb6a0fd01..a821d8f8af3 100644 --- a/modules/apps/transfer/types/msgs_test.go +++ b/modules/apps/transfer/types/msgs_test.go @@ -11,12 +11,12 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) // define constants used for testing diff --git a/modules/apps/transfer/types/packet.go b/modules/apps/transfer/types/packet.go index 39d3502278e..fa195912622 100644 --- a/modules/apps/transfer/types/packet.go +++ b/modules/apps/transfer/types/packet.go @@ -12,8 +12,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec/unknownproto" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" ) var ( diff --git a/modules/apps/transfer/types/packet_test.go b/modules/apps/transfer/types/packet_test.go index 26b2354d652..315530bc3ed 100644 --- a/modules/apps/transfer/types/packet_test.go +++ b/modules/apps/transfer/types/packet_test.go @@ -10,10 +10,10 @@ import ( errorsmod "cosmossdk.io/errors" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) const ( diff --git a/modules/apps/transfer/types/solidity_abi_test.go b/modules/apps/transfer/types/solidity_abi_test.go index a6d07502091..e684877768d 100644 --- a/modules/apps/transfer/types/solidity_abi_test.go +++ b/modules/apps/transfer/types/solidity_abi_test.go @@ -1,7 +1,7 @@ package types_test import ( - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" ) func (suite *TypesTestSuite) TestFTPD() { diff --git a/modules/apps/transfer/types/transfer_authorization.go b/modules/apps/transfer/types/transfer_authorization.go index 3f332339349..753a72f3950 100644 --- a/modules/apps/transfer/types/transfer_authorization.go +++ b/modules/apps/transfer/types/transfer_authorization.go @@ -12,9 +12,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/x/authz" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" ) var _ authz.Authorization = (*TransferAuthorization)(nil) diff --git a/modules/apps/transfer/types/transfer_authorization_test.go b/modules/apps/transfer/types/transfer_authorization_test.go index 6985fa15247..0290a07e337 100644 --- a/modules/apps/transfer/types/transfer_authorization_test.go +++ b/modules/apps/transfer/types/transfer_authorization_test.go @@ -8,12 +8,12 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/x/authz" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - "github.com/cosmos/ibc-go/v9/testing/mock" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v10/testing" + "github.com/cosmos/ibc-go/v10/testing/mock" ) const ( diff --git a/modules/apps/transfer/types/tx.pb.go b/modules/apps/transfer/types/tx.pb.go index 4dc838e8a6f..9d2545a3b18 100644 --- a/modules/apps/transfer/types/tx.pb.go +++ b/modules/apps/transfer/types/tx.pb.go @@ -12,7 +12,7 @@ import ( _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" - types1 "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + types1 "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" diff --git a/modules/apps/transfer/types/types_test.go b/modules/apps/transfer/types/types_test.go index 831d97ee982..2995b72936f 100644 --- a/modules/apps/transfer/types/types_test.go +++ b/modules/apps/transfer/types/types_test.go @@ -5,7 +5,7 @@ import ( testifysuite "github.com/stretchr/testify/suite" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) type TypesTestSuite struct { diff --git a/modules/apps/transfer/v2/ibc_module.go b/modules/apps/transfer/v2/ibc_module.go index 777eade26df..119e502a537 100644 --- a/modules/apps/transfer/v2/ibc_module.go +++ b/modules/apps/transfer/v2/ibc_module.go @@ -10,14 +10,14 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/internal/events" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/internal/telemetry" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/keeper" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - channeltypesv2 "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" - "github.com/cosmos/ibc-go/v9/modules/core/api" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/internal/events" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/internal/telemetry" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/keeper" + "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" + "github.com/cosmos/ibc-go/v10/modules/core/api" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" ) var _ api.IBCModule = (*IBCModule)(nil) diff --git a/modules/apps/transfer/v2/ibc_module_test.go b/modules/apps/transfer/v2/ibc_module_test.go index d625cf0d69a..081df30683a 100644 --- a/modules/apps/transfer/v2/ibc_module_test.go +++ b/modules/apps/transfer/v2/ibc_module_test.go @@ -12,10 +12,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - channeltypesv2 "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "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" ) type TransferTestSuite struct { diff --git a/modules/core/02-client/abci.go b/modules/core/02-client/abci.go index 1b582a36e93..4d5bda0c029 100644 --- a/modules/core/02-client/abci.go +++ b/modules/core/02-client/abci.go @@ -3,9 +3,9 @@ package client import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/keeper" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/keeper" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" ) // BeginBlocker is used to perform IBC client upgrades diff --git a/modules/core/02-client/abci_test.go b/modules/core/02-client/abci_test.go index fbd1970e7f3..959cdac37df 100644 --- a/modules/core/02-client/abci_test.go +++ b/modules/core/02-client/abci_test.go @@ -12,10 +12,10 @@ import ( cmtproto "github.com/cometbft/cometbft/proto/tendermint/types" - client "github.com/cosmos/ibc-go/v9/modules/core/02-client" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + client "github.com/cosmos/ibc-go/v10/modules/core/02-client" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) type ClientTestSuite struct { diff --git a/modules/core/02-client/client/cli/cli.go b/modules/core/02-client/client/cli/cli.go index 2490668f122..6af03a996cd 100644 --- a/modules/core/02-client/client/cli/cli.go +++ b/modules/core/02-client/client/cli/cli.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" ) // GetQueryCmd returns the query commands for IBC clients diff --git a/modules/core/02-client/client/cli/query.go b/modules/core/02-client/client/cli/query.go index 082fc2004bf..1284e27f5df 100644 --- a/modules/core/02-client/client/cli/query.go +++ b/modules/core/02-client/client/cli/query.go @@ -10,9 +10,9 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/version" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/client/utils" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/client/utils" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" ) const ( diff --git a/modules/core/02-client/client/cli/tx.go b/modules/core/02-client/client/cli/tx.go index 223343dbfd9..8d1b9adee63 100644 --- a/modules/core/02-client/client/cli/tx.go +++ b/modules/core/02-client/client/cli/tx.go @@ -19,8 +19,8 @@ import ( govcli "github.com/cosmos/cosmos-sdk/x/gov/client/cli" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) const FlagAuthority = "authority" diff --git a/modules/core/02-client/client/utils/utils.go b/modules/core/02-client/client/utils/utils.go index f7e88037b69..0f1ed87a084 100644 --- a/modules/core/02-client/client/utils/utils.go +++ b/modules/core/02-client/client/utils/utils.go @@ -10,12 +10,12 @@ import ( cmttypes "github.com/cometbft/cometbft/types" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcclient "github.com/cosmos/ibc-go/v9/modules/core/client" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcclient "github.com/cosmos/ibc-go/v10/modules/core/client" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" ) // QueryClientState returns a client state. If prove is true, it performs an ABCI store query diff --git a/modules/core/02-client/genesis.go b/modules/core/02-client/genesis.go index 8737a40a910..ce3ca7d526b 100644 --- a/modules/core/02-client/genesis.go +++ b/modules/core/02-client/genesis.go @@ -6,9 +6,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/keeper" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/keeper" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // InitGenesis initializes the ibc client submodule's state from a provided genesis diff --git a/modules/core/02-client/keeper/client.go b/modules/core/02-client/keeper/client.go index 422fca31ba3..419f96fa9bd 100644 --- a/modules/core/02-client/keeper/client.go +++ b/modules/core/02-client/keeper/client.go @@ -5,9 +5,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - "github.com/cosmos/ibc-go/v9/modules/core/internal/telemetry" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/internal/telemetry" ) // CreateClient generates a new client identifier and invokes the associated light client module in order to diff --git a/modules/core/02-client/keeper/client_test.go b/modules/core/02-client/keeper/client_test.go index 7f7f5ea7291..d1a05eb1c69 100644 --- a/modules/core/02-client/keeper/client_test.go +++ b/modules/core/02-client/keeper/client_test.go @@ -12,13 +12,13 @@ import ( abci "github.com/cometbft/cometbft/abci/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v10/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func (suite *KeeperTestSuite) TestCreateClient() { diff --git a/modules/core/02-client/keeper/events.go b/modules/core/02-client/keeper/events.go index 6727ede5b7a..b22c2ab1a42 100644 --- a/modules/core/02-client/keeper/events.go +++ b/modules/core/02-client/keeper/events.go @@ -10,8 +10,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // emitCreateClientEvent emits a create client event diff --git a/modules/core/02-client/keeper/events_test.go b/modules/core/02-client/keeper/events_test.go index 47032029c71..8b560be86fd 100644 --- a/modules/core/02-client/keeper/events_test.go +++ b/modules/core/02-client/keeper/events_test.go @@ -3,10 +3,10 @@ package keeper_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func (suite *KeeperTestSuite) TestMsgCreateClientEvents() { diff --git a/modules/core/02-client/keeper/grpc_query.go b/modules/core/02-client/keeper/grpc_query.go index e0dafbd3294..e9f62b9c075 100644 --- a/modules/core/02-client/keeper/grpc_query.go +++ b/modules/core/02-client/keeper/grpc_query.go @@ -18,9 +18,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) var _ types.QueryServer = (*queryServer)(nil) diff --git a/modules/core/02-client/keeper/grpc_query_test.go b/modules/core/02-client/keeper/grpc_query_test.go index 1abaa4a1d15..a99a7039d49 100644 --- a/modules/core/02-client/keeper/grpc_query_test.go +++ b/modules/core/02-client/keeper/grpc_query_test.go @@ -13,14 +13,14 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" "github.com/cosmos/cosmos-sdk/types/query" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/keeper" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - "github.com/cosmos/ibc-go/v9/testing/mock" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/keeper" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "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" + "github.com/cosmos/ibc-go/v10/testing/mock" ) func (suite *KeeperTestSuite) TestQueryClientState() { diff --git a/modules/core/02-client/keeper/keeper.go b/modules/core/02-client/keeper/keeper.go index aa1b2806450..b2217da9942 100644 --- a/modules/core/02-client/keeper/keeper.go +++ b/modules/core/02-client/keeper/keeper.go @@ -17,11 +17,11 @@ import ( "github.com/cosmos/cosmos-sdk/runtime" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - localhost "github.com/cosmos/ibc-go/v9/modules/light-clients/09-localhost" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" + localhost "github.com/cosmos/ibc-go/v10/modules/light-clients/09-localhost" ) // Keeper represents a type that grants read and write permissions to any client diff --git a/modules/core/02-client/keeper/keeper_test.go b/modules/core/02-client/keeper/keeper_test.go index 4fa4bc6710d..e85cb8d137b 100644 --- a/modules/core/02-client/keeper/keeper_test.go +++ b/modules/core/02-client/keeper/keeper_test.go @@ -20,14 +20,14 @@ import ( cmtbytes "github.com/cometbft/cometbft/libs/bytes" cmttypes "github.com/cometbft/cometbft/types" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/keeper" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - "github.com/cosmos/ibc-go/v9/testing/simapp" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/keeper" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "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" + "github.com/cosmos/ibc-go/v10/testing/simapp" ) const ( diff --git a/modules/core/02-client/keeper/migrations.go b/modules/core/02-client/keeper/migrations.go index d39a756ed93..094a8ee636f 100644 --- a/modules/core/02-client/keeper/migrations.go +++ b/modules/core/02-client/keeper/migrations.go @@ -3,10 +3,10 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/migrations/v7" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/migrations/v7" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // Migrator is a struct for handling in-place store migrations. diff --git a/modules/core/02-client/keeper/migrations_test.go b/modules/core/02-client/keeper/migrations_test.go index 59116215dc5..21265b4deb5 100644 --- a/modules/core/02-client/keeper/migrations_test.go +++ b/modules/core/02-client/keeper/migrations_test.go @@ -1,10 +1,10 @@ package keeper_test import ( - "github.com/cosmos/ibc-go/v9/modules/core/02-client/keeper" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/keeper" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // TestMigrateParams tests the migration for the client params diff --git a/modules/core/02-client/migrations/v7/expected_keepers.go b/modules/core/02-client/migrations/v7/expected_keepers.go index feb486b73f2..609c565d681 100644 --- a/modules/core/02-client/migrations/v7/expected_keepers.go +++ b/modules/core/02-client/migrations/v7/expected_keepers.go @@ -5,7 +5,7 @@ import ( storetypes "cosmossdk.io/store/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // ClientKeeper expected IBC client keeper diff --git a/modules/core/02-client/migrations/v7/genesis.go b/modules/core/02-client/migrations/v7/genesis.go index 5abd3a5e0ca..5c2a8895e94 100644 --- a/modules/core/02-client/migrations/v7/genesis.go +++ b/modules/core/02-client/migrations/v7/genesis.go @@ -5,8 +5,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // MigrateGenesis accepts an exported IBC client genesis file and migrates it to: diff --git a/modules/core/02-client/migrations/v7/genesis_test.go b/modules/core/02-client/migrations/v7/genesis_test.go index 2478f2a00f4..870fdb18351 100644 --- a/modules/core/02-client/migrations/v7/genesis_test.go +++ b/modules/core/02-client/migrations/v7/genesis_test.go @@ -7,12 +7,12 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" "github.com/cosmos/cosmos-sdk/runtime" - ibcclient "github.com/cosmos/ibc-go/v9/modules/core/02-client" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/migrations/v7" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + ibcclient "github.com/cosmos/ibc-go/v10/modules/core/02-client" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/migrations/v7" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func (suite *MigrationsV7TestSuite) TestMigrateGenesisSolomachine() { diff --git a/modules/core/02-client/migrations/v7/solomachine.go b/modules/core/02-client/migrations/v7/solomachine.go index 7999b9279d8..ac5415d2556 100644 --- a/modules/core/02-client/migrations/v7/solomachine.go +++ b/modules/core/02-client/migrations/v7/solomachine.go @@ -10,7 +10,7 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // NOTE: this is a mock implementation for exported.ClientState. This implementation diff --git a/modules/core/02-client/migrations/v7/solomachine.pb.go b/modules/core/02-client/migrations/v7/solomachine.pb.go index dd800652124..3cf11e9cc3e 100644 --- a/modules/core/02-client/migrations/v7/solomachine.pb.go +++ b/modules/core/02-client/migrations/v7/solomachine.pb.go @@ -8,8 +8,8 @@ import ( types "github.com/cosmos/cosmos-sdk/codec/types" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" - types1 "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - types2 "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + types1 "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + types2 "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" io "io" math "math" math_bits "math/bits" diff --git a/modules/core/02-client/migrations/v7/store.go b/modules/core/02-client/migrations/v7/store.go index 2bfff6099de..0b7787fc6d2 100644 --- a/modules/core/02-client/migrations/v7/store.go +++ b/modules/core/02-client/migrations/v7/store.go @@ -12,12 +12,12 @@ import ( "github.com/cosmos/cosmos-sdk/runtime" sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v10/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" ) // Localhost is the client type for a localhost client. It is also used as the clientID diff --git a/modules/core/02-client/migrations/v7/store_test.go b/modules/core/02-client/migrations/v7/store_test.go index f9e104e823f..eadcd0a237f 100644 --- a/modules/core/02-client/migrations/v7/store_test.go +++ b/modules/core/02-client/migrations/v7/store_test.go @@ -9,11 +9,11 @@ import ( "github.com/cosmos/cosmos-sdk/codec" "github.com/cosmos/cosmos-sdk/runtime" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/migrations/v7" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/migrations/v7" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) // numCreations is the number of clients/consensus states created for diff --git a/modules/core/02-client/module.go b/modules/core/02-client/module.go index a26c587cb87..30e91f8bc25 100644 --- a/modules/core/02-client/module.go +++ b/modules/core/02-client/module.go @@ -3,8 +3,8 @@ package client import ( "github.com/spf13/cobra" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/client/cli" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/client/cli" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" ) // Name returns the IBC client name diff --git a/modules/core/02-client/simulation/decoder.go b/modules/core/02-client/simulation/decoder.go index af6cd9b4bc5..aa9ce9cc4a8 100644 --- a/modules/core/02-client/simulation/decoder.go +++ b/modules/core/02-client/simulation/decoder.go @@ -7,8 +7,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" ) // NewDecodeStore returns a decoder function closure that unmarshals the KVPair's diff --git a/modules/core/02-client/simulation/decoder_test.go b/modules/core/02-client/simulation/decoder_test.go index ca4931d1eb9..4406024088a 100644 --- a/modules/core/02-client/simulation/decoder_test.go +++ b/modules/core/02-client/simulation/decoder_test.go @@ -9,11 +9,11 @@ import ( "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/simulation" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - "github.com/cosmos/ibc-go/v9/testing/simapp" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/simulation" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" + "github.com/cosmos/ibc-go/v10/testing/simapp" ) func TestDecodeStore(t *testing.T) { diff --git a/modules/core/02-client/simulation/genesis.go b/modules/core/02-client/simulation/genesis.go index 818a592bc7a..7b0bc8d4886 100644 --- a/modules/core/02-client/simulation/genesis.go +++ b/modules/core/02-client/simulation/genesis.go @@ -5,7 +5,7 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" ) // GenClientGenesis returns the default client genesis state. diff --git a/modules/core/02-client/types/client.go b/modules/core/02-client/types/client.go index 92785165174..71d319fa370 100644 --- a/modules/core/02-client/types/client.go +++ b/modules/core/02-client/types/client.go @@ -12,8 +12,8 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) var ( diff --git a/modules/core/02-client/types/client_test.go b/modules/core/02-client/types/client_test.go index 6655c04c6e3..d4d835c53fa 100644 --- a/modules/core/02-client/types/client_test.go +++ b/modules/core/02-client/types/client_test.go @@ -6,8 +6,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func (suite *TypesTestSuite) TestMarshalConsensusStateWithHeight() { diff --git a/modules/core/02-client/types/codec.go b/modules/core/02-client/types/codec.go index da7fdb64595..4535839c8fb 100644 --- a/modules/core/02-client/types/codec.go +++ b/modules/core/02-client/types/codec.go @@ -9,8 +9,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/msgservice" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // RegisterInterfaces registers the client interfaces to protobuf Any. diff --git a/modules/core/02-client/types/codec_test.go b/modules/core/02-client/types/codec_test.go index 5430ce8aa6e..e15fad96d72 100644 --- a/modules/core/02-client/types/codec_test.go +++ b/modules/core/02-client/types/codec_test.go @@ -8,12 +8,12 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + "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" ) type caseAny struct { diff --git a/modules/core/02-client/types/encoding.go b/modules/core/02-client/types/encoding.go index 471227c123a..a92fb37ce54 100644 --- a/modules/core/02-client/types/encoding.go +++ b/modules/core/02-client/types/encoding.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // MustUnmarshalClientState attempts to decode and return an ClientState object from diff --git a/modules/core/02-client/types/encoding_test.go b/modules/core/02-client/types/encoding_test.go index 59316f9d850..dc8319813ab 100644 --- a/modules/core/02-client/types/encoding_test.go +++ b/modules/core/02-client/types/encoding_test.go @@ -1,8 +1,8 @@ package types_test import ( - "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" ) func (suite *TypesTestSuite) TestMarshalHeader() { diff --git a/modules/core/02-client/types/events.go b/modules/core/02-client/types/events.go index ca3659b761a..7dd43f91841 100644 --- a/modules/core/02-client/types/events.go +++ b/modules/core/02-client/types/events.go @@ -3,7 +3,7 @@ package types import ( "fmt" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // IBC client events diff --git a/modules/core/02-client/types/genesis.go b/modules/core/02-client/types/genesis.go index 7939adbaa47..f3b4a2d992f 100644 --- a/modules/core/02-client/types/genesis.go +++ b/modules/core/02-client/types/genesis.go @@ -7,8 +7,8 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) var ( diff --git a/modules/core/02-client/types/genesis_test.go b/modules/core/02-client/types/genesis_test.go index 14f68212685..bf95db56055 100644 --- a/modules/core/02-client/types/genesis_test.go +++ b/modules/core/02-client/types/genesis_test.go @@ -6,13 +6,13 @@ import ( cmttypes "github.com/cometbft/cometbft/types" - client "github.com/cosmos/ibc-go/v9/modules/core/02-client" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + client "github.com/cosmos/ibc-go/v10/modules/core/02-client" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v10/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) const ( diff --git a/modules/core/02-client/types/height.go b/modules/core/02-client/types/height.go index df081f8efde..e8ca07f1fba 100644 --- a/modules/core/02-client/types/height.go +++ b/modules/core/02-client/types/height.go @@ -12,8 +12,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) var _ exported.Height = (*Height)(nil) diff --git a/modules/core/02-client/types/height_test.go b/modules/core/02-client/types/height_test.go index 68fccb50a76..60499c403f8 100644 --- a/modules/core/02-client/types/height_test.go +++ b/modules/core/02-client/types/height_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" ) func TestZeroHeight(t *testing.T) { diff --git a/modules/core/02-client/types/keys.go b/modules/core/02-client/types/keys.go index 4e2ea72768a..7aa99f4b9e1 100644 --- a/modules/core/02-client/types/keys.go +++ b/modules/core/02-client/types/keys.go @@ -8,8 +8,8 @@ import ( errorsmod "cosmossdk.io/errors" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) const ( diff --git a/modules/core/02-client/types/keys_test.go b/modules/core/02-client/types/keys_test.go index f031cf8b002..a1de3673ab3 100644 --- a/modules/core/02-client/types/keys_test.go +++ b/modules/core/02-client/types/keys_test.go @@ -7,8 +7,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" ) // tests ParseClientIdentifier and IsValidClientID diff --git a/modules/core/02-client/types/msgs.go b/modules/core/02-client/types/msgs.go index efb49006131..5e01ff626f3 100644 --- a/modules/core/02-client/types/msgs.go +++ b/modules/core/02-client/types/msgs.go @@ -7,9 +7,9 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) var ( diff --git a/modules/core/02-client/types/msgs_test.go b/modules/core/02-client/types/msgs_test.go index cd1c16bf8ca..eb6c9ed9eeb 100644 --- a/modules/core/02-client/types/msgs_test.go +++ b/modules/core/02-client/types/msgs_test.go @@ -18,15 +18,15 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" - ibc "github.com/cosmos/ibc-go/v9/modules/core" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + ibc "github.com/cosmos/ibc-go/v10/modules/core" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v10/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) type TypesTestSuite struct { diff --git a/modules/core/02-client/types/params_test.go b/modules/core/02-client/types/params_test.go index 26165bb0cb8..67193b934a0 100644 --- a/modules/core/02-client/types/params_test.go +++ b/modules/core/02-client/types/params_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) func TestIsAllowedClient(t *testing.T) { diff --git a/modules/core/02-client/types/query.go b/modules/core/02-client/types/query.go index 5fe411ab3ed..c6a7b50b4bd 100644 --- a/modules/core/02-client/types/query.go +++ b/modules/core/02-client/types/query.go @@ -3,7 +3,7 @@ package types import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) var ( diff --git a/modules/core/02-client/types/query.pb.go b/modules/core/02-client/types/query.pb.go index 2585a9a8988..1c17b9de3b7 100644 --- a/modules/core/02-client/types/query.pb.go +++ b/modules/core/02-client/types/query.pb.go @@ -11,7 +11,7 @@ import ( _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" - v2 "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types/v2" + v2 "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types/v2" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" diff --git a/modules/core/02-client/types/router.go b/modules/core/02-client/types/router.go index 8b7ef5fdee0..5bcc44659ea 100644 --- a/modules/core/02-client/types/router.go +++ b/modules/core/02-client/types/router.go @@ -3,7 +3,7 @@ package types import ( "fmt" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // Router is a map from a clientType to a LightClientModule instance. diff --git a/modules/core/02-client/types/router_test.go b/modules/core/02-client/types/router_test.go index 1d2a0701fc3..fb098aa5892 100644 --- a/modules/core/02-client/types/router_test.go +++ b/modules/core/02-client/types/router_test.go @@ -8,9 +8,9 @@ import ( "github.com/cosmos/cosmos-sdk/runtime" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" ) func (suite *TypesTestSuite) TestAddRoute() { diff --git a/modules/core/02-client/types/store.go b/modules/core/02-client/types/store.go index 416a75e3ec5..a2739e5b56d 100644 --- a/modules/core/02-client/types/store.go +++ b/modules/core/02-client/types/store.go @@ -10,7 +10,7 @@ import ( "github.com/cosmos/cosmos-sdk/runtime" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" ) // StoreProvider encapsulates the IBC core store service and offers convenience methods for LightClientModules. diff --git a/modules/core/02-client/v2/genesis.go b/modules/core/02-client/v2/genesis.go index 41583483223..27f5b50c1a5 100644 --- a/modules/core/02-client/v2/genesis.go +++ b/modules/core/02-client/v2/genesis.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/v2/keeper" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/v2/types" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/v2/keeper" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/v2/types" ) // InitGenesis initializes the ibc client/v2 submodule's state from a provided genesis diff --git a/modules/core/02-client/v2/genesis_test.go b/modules/core/02-client/v2/genesis_test.go index e40155b1fac..ee88e8c1255 100644 --- a/modules/core/02-client/v2/genesis_test.go +++ b/modules/core/02-client/v2/genesis_test.go @@ -1,9 +1,9 @@ package clientv2_test import ( - clientv2 "github.com/cosmos/ibc-go/v9/modules/core/02-client/v2" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/v2/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + clientv2 "github.com/cosmos/ibc-go/v10/modules/core/02-client/v2" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/v2/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) // TestInitExportGenesis tests the import and export flow for the channel v2 keeper. diff --git a/modules/core/02-client/v2/keeper/grpc_query.go b/modules/core/02-client/v2/keeper/grpc_query.go index 5e819d34384..d004bd02363 100644 --- a/modules/core/02-client/v2/keeper/grpc_query.go +++ b/modules/core/02-client/v2/keeper/grpc_query.go @@ -9,8 +9,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/v2/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/v2/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" ) var _ types.QueryServer = (*queryServer)(nil) diff --git a/modules/core/02-client/v2/keeper/grpc_query_test.go b/modules/core/02-client/v2/keeper/grpc_query_test.go index 1252417065a..0c367de5d4e 100644 --- a/modules/core/02-client/v2/keeper/grpc_query_test.go +++ b/modules/core/02-client/v2/keeper/grpc_query_test.go @@ -6,9 +6,9 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/v2/keeper" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/v2/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/v2/keeper" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/v2/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func (suite *KeeperTestSuite) TestQueryCounterPartyInfo() { diff --git a/modules/core/02-client/v2/keeper/keeper.go b/modules/core/02-client/v2/keeper/keeper.go index e078f640029..bc73b14dce2 100644 --- a/modules/core/02-client/v2/keeper/keeper.go +++ b/modules/core/02-client/v2/keeper/keeper.go @@ -4,8 +4,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - clientv1keeper "github.com/cosmos/ibc-go/v9/modules/core/02-client/keeper" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/v2/types" + clientv1keeper "github.com/cosmos/ibc-go/v10/modules/core/02-client/keeper" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/v2/types" ) type Keeper struct { diff --git a/modules/core/02-client/v2/keeper/keeper_test.go b/modules/core/02-client/v2/keeper/keeper_test.go index 292745be24d..e0130cebcba 100644 --- a/modules/core/02-client/v2/keeper/keeper_test.go +++ b/modules/core/02-client/v2/keeper/keeper_test.go @@ -8,10 +8,10 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/v2/keeper" - types2 "github.com/cosmos/ibc-go/v9/modules/core/02-client/v2/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - "github.com/cosmos/ibc-go/v9/testing/simapp" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/v2/keeper" + types2 "github.com/cosmos/ibc-go/v10/modules/core/02-client/v2/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" + "github.com/cosmos/ibc-go/v10/testing/simapp" ) const ( diff --git a/modules/core/02-client/v2/module.go b/modules/core/02-client/v2/module.go index 87ff3361001..f77883d36bd 100644 --- a/modules/core/02-client/v2/module.go +++ b/modules/core/02-client/v2/module.go @@ -3,7 +3,7 @@ package clientv2 import ( "github.com/spf13/cobra" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/v2/types" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/v2/types" ) // Name returns the IBC channel ICS name. diff --git a/modules/core/02-client/v2/module_test.go b/modules/core/02-client/v2/module_test.go index 96f5b8cbd79..d119b2b2942 100644 --- a/modules/core/02-client/v2/module_test.go +++ b/modules/core/02-client/v2/module_test.go @@ -5,7 +5,7 @@ import ( testifysuite "github.com/stretchr/testify/suite" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func TestModuleTestSuite(t *testing.T) { diff --git a/modules/core/02-client/v2/types/genesis_test.go b/modules/core/02-client/v2/types/genesis_test.go index 9ccba92df0b..fb79aa73e75 100644 --- a/modules/core/02-client/v2/types/genesis_test.go +++ b/modules/core/02-client/v2/types/genesis_test.go @@ -3,7 +3,7 @@ package types_test import ( "testing" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/v2/types" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/v2/types" ) func TestGenesisState_Validate(t *testing.T) { diff --git a/modules/core/02-client/v2/types/msgs.go b/modules/core/02-client/v2/types/msgs.go index 6a09176d6ac..08dcfd711dc 100644 --- a/modules/core/02-client/v2/types/msgs.go +++ b/modules/core/02-client/v2/types/msgs.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" ) var ( diff --git a/modules/core/02-client/v2/types/msgs_test.go b/modules/core/02-client/v2/types/msgs_test.go index c174e3bbb6d..5fb7ba2e51d 100644 --- a/modules/core/02-client/v2/types/msgs_test.go +++ b/modules/core/02-client/v2/types/msgs_test.go @@ -5,10 +5,10 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/v2/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/v2/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func TestMsgRegisterCounterpartyValidateBasic(t *testing.T) { diff --git a/modules/core/03-connection/client/cli/cli.go b/modules/core/03-connection/client/cli/cli.go index be7745d35ab..ee44d465f9a 100644 --- a/modules/core/03-connection/client/cli/cli.go +++ b/modules/core/03-connection/client/cli/cli.go @@ -3,7 +3,7 @@ package cli import ( "github.com/spf13/cobra" - "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" ) // GetQueryCmd returns the query commands for IBC connections diff --git a/modules/core/03-connection/client/cli/query.go b/modules/core/03-connection/client/cli/query.go index fff958c8b38..577289b1e99 100644 --- a/modules/core/03-connection/client/cli/query.go +++ b/modules/core/03-connection/client/cli/query.go @@ -9,9 +9,9 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/version" - "github.com/cosmos/ibc-go/v9/modules/core/03-connection/client/utils" - "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/03-connection/client/utils" + "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // GetCmdQueryConnections defines the command to query all the connection ends diff --git a/modules/core/03-connection/client/utils/utils.go b/modules/core/03-connection/client/utils/utils.go index e1a14c64e20..10a1ee34d0e 100644 --- a/modules/core/03-connection/client/utils/utils.go +++ b/modules/core/03-connection/client/utils/utils.go @@ -11,13 +11,13 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/codec" - clientutils "github.com/cosmos/ibc-go/v9/modules/core/02-client/client/utils" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcclient "github.com/cosmos/ibc-go/v9/modules/core/client" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clientutils "github.com/cosmos/ibc-go/v10/modules/core/02-client/client/utils" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcclient "github.com/cosmos/ibc-go/v10/modules/core/client" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // QueryConnection returns a connection end. diff --git a/modules/core/03-connection/genesis.go b/modules/core/03-connection/genesis.go index a7fbfb4e5d7..a1dcfebd754 100644 --- a/modules/core/03-connection/genesis.go +++ b/modules/core/03-connection/genesis.go @@ -3,8 +3,8 @@ package connection import ( "context" - "github.com/cosmos/ibc-go/v9/modules/core/03-connection/keeper" - "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v10/modules/core/03-connection/keeper" + "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" ) // InitGenesis initializes the ibc connection submodule's state from a provided genesis diff --git a/modules/core/03-connection/keeper/events.go b/modules/core/03-connection/keeper/events.go index d0bad44a946..0289f675447 100644 --- a/modules/core/03-connection/keeper/events.go +++ b/modules/core/03-connection/keeper/events.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" ) // emitConnectionOpenInitEvent emits a connection open init event diff --git a/modules/core/03-connection/keeper/events_test.go b/modules/core/03-connection/keeper/events_test.go index 43ceaacdbd7..741f4501753 100644 --- a/modules/core/03-connection/keeper/events_test.go +++ b/modules/core/03-connection/keeper/events_test.go @@ -3,9 +3,9 @@ package keeper_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func (suite *KeeperTestSuite) TestMsgConnectionOpenInitEvents() { diff --git a/modules/core/03-connection/keeper/grpc_query.go b/modules/core/03-connection/keeper/grpc_query.go index 859b6125332..82adf4dfc0a 100644 --- a/modules/core/03-connection/keeper/grpc_query.go +++ b/modules/core/03-connection/keeper/grpc_query.go @@ -13,9 +13,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" ) var _ types.QueryServer = (*queryServer)(nil) diff --git a/modules/core/03-connection/keeper/grpc_query_test.go b/modules/core/03-connection/keeper/grpc_query_test.go index a2349aa0d5b..2b1a74b9358 100644 --- a/modules/core/03-connection/keeper/grpc_query_test.go +++ b/modules/core/03-connection/keeper/grpc_query_test.go @@ -10,12 +10,12 @@ import ( "github.com/cosmos/cosmos-sdk/types/query" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/03-connection/keeper" - "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/03-connection/keeper" + "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func (suite *KeeperTestSuite) TestQueryConnection() { diff --git a/modules/core/03-connection/keeper/handshake.go b/modules/core/03-connection/keeper/handshake.go index 0b52d58991a..921c58d394a 100644 --- a/modules/core/03-connection/keeper/handshake.go +++ b/modules/core/03-connection/keeper/handshake.go @@ -7,10 +7,10 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // ConnOpenInit initialises a connection attempt on chain A. The generated connection identifier diff --git a/modules/core/03-connection/keeper/handshake_test.go b/modules/core/03-connection/keeper/handshake_test.go index 34a101d87e0..a9fd9a0f19f 100644 --- a/modules/core/03-connection/keeper/handshake_test.go +++ b/modules/core/03-connection/keeper/handshake_test.go @@ -5,11 +5,11 @@ import ( errorsmod "cosmossdk.io/errors" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) // TestConnOpenInit - chainA initializes (INIT state) a connection with diff --git a/modules/core/03-connection/keeper/keeper.go b/modules/core/03-connection/keeper/keeper.go index 0698b888c1f..1c8c368f823 100644 --- a/modules/core/03-connection/keeper/keeper.go +++ b/modules/core/03-connection/keeper/keeper.go @@ -13,11 +13,11 @@ import ( "github.com/cosmos/cosmos-sdk/runtime" sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // Keeper defines the IBC connection keeper diff --git a/modules/core/03-connection/keeper/keeper_test.go b/modules/core/03-connection/keeper/keeper_test.go index 60b184ad704..d7824115f11 100644 --- a/modules/core/03-connection/keeper/keeper_test.go +++ b/modules/core/03-connection/keeper/keeper_test.go @@ -6,10 +6,10 @@ import ( testifysuite "github.com/stretchr/testify/suite" - "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) type KeeperTestSuite struct { diff --git a/modules/core/03-connection/keeper/migrations.go b/modules/core/03-connection/keeper/migrations.go index d668687d017..0220f49e85c 100644 --- a/modules/core/03-connection/keeper/migrations.go +++ b/modules/core/03-connection/keeper/migrations.go @@ -3,8 +3,8 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - connectionv7 "github.com/cosmos/ibc-go/v9/modules/core/03-connection/migrations/v7" - "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + connectionv7 "github.com/cosmos/ibc-go/v10/modules/core/03-connection/migrations/v7" + "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" ) // Migrator is a struct for handling in-place store migrations. diff --git a/modules/core/03-connection/keeper/migrations_test.go b/modules/core/03-connection/keeper/migrations_test.go index 6227ebb8796..beb2e6ae541 100644 --- a/modules/core/03-connection/keeper/migrations_test.go +++ b/modules/core/03-connection/keeper/migrations_test.go @@ -1,9 +1,9 @@ package keeper_test import ( - "github.com/cosmos/ibc-go/v9/modules/core/03-connection/keeper" - "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/03-connection/keeper" + "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // TestMigrateParams tests that the params for the connection are properly migrated diff --git a/modules/core/03-connection/keeper/verify.go b/modules/core/03-connection/keeper/verify.go index 1cdc8193d2e..7ce8d865a7e 100644 --- a/modules/core/03-connection/keeper/verify.go +++ b/modules/core/03-connection/keeper/verify.go @@ -8,11 +8,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // VerifyConnectionState verifies a proof of the connection state of the diff --git a/modules/core/03-connection/keeper/verify_test.go b/modules/core/03-connection/keeper/verify_test.go index 7b75badf9fd..40985a0bbcf 100644 --- a/modules/core/03-connection/keeper/verify_test.go +++ b/modules/core/03-connection/keeper/verify_test.go @@ -6,16 +6,16 @@ import ( errorsmod "cosmossdk.io/errors" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + "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" + ibcmock "github.com/cosmos/ibc-go/v10/testing/mock" ) var defaultTimeoutHeight = clienttypes.NewHeight(1, 100000) diff --git a/modules/core/03-connection/module.go b/modules/core/03-connection/module.go index 2899847ca48..f058ef26b13 100644 --- a/modules/core/03-connection/module.go +++ b/modules/core/03-connection/module.go @@ -3,8 +3,8 @@ package connection import ( "github.com/spf13/cobra" - "github.com/cosmos/ibc-go/v9/modules/core/03-connection/client/cli" - "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v10/modules/core/03-connection/client/cli" + "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" ) // Name returns the IBC connection ICS name. diff --git a/modules/core/03-connection/simulation/decoder.go b/modules/core/03-connection/simulation/decoder.go index 5f6b1e12b1f..c51c1a63540 100644 --- a/modules/core/03-connection/simulation/decoder.go +++ b/modules/core/03-connection/simulation/decoder.go @@ -7,8 +7,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" ) // NewDecodeStore returns a decoder function closure that unmarshals the KVPair's diff --git a/modules/core/03-connection/simulation/decoder_test.go b/modules/core/03-connection/simulation/decoder_test.go index 4362a2599ab..cab829c4659 100644 --- a/modules/core/03-connection/simulation/decoder_test.go +++ b/modules/core/03-connection/simulation/decoder_test.go @@ -8,10 +8,10 @@ import ( "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/cosmos/ibc-go/v9/modules/core/03-connection/simulation" - "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/testing/simapp" + "github.com/cosmos/ibc-go/v10/modules/core/03-connection/simulation" + "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/testing/simapp" ) func TestDecodeStore(t *testing.T) { diff --git a/modules/core/03-connection/simulation/genesis.go b/modules/core/03-connection/simulation/genesis.go index 57a9a070e10..6934a5d3c56 100644 --- a/modules/core/03-connection/simulation/genesis.go +++ b/modules/core/03-connection/simulation/genesis.go @@ -5,7 +5,7 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" ) // GenConnectionGenesis returns the default connection genesis state. diff --git a/modules/core/03-connection/types/codec_test.go b/modules/core/03-connection/types/codec_test.go index 3bd87924fc3..931e8e23ba9 100644 --- a/modules/core/03-connection/types/codec_test.go +++ b/modules/core/03-connection/types/codec_test.go @@ -9,8 +9,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" - ibc "github.com/cosmos/ibc-go/v9/modules/core" - "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + ibc "github.com/cosmos/ibc-go/v10/modules/core" + "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" ) func TestCodecTypeRegistration(t *testing.T) { diff --git a/modules/core/03-connection/types/connection.go b/modules/core/03-connection/types/connection.go index f89f295dec2..4cc2e4d6741 100644 --- a/modules/core/03-connection/types/connection.go +++ b/modules/core/03-connection/types/connection.go @@ -3,9 +3,9 @@ package types import ( errorsmod "cosmossdk.io/errors" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" ) // NewConnectionEnd creates a new ConnectionEnd instance. diff --git a/modules/core/03-connection/types/connection.pb.go b/modules/core/03-connection/types/connection.pb.go index 95178c037ae..20a9cc0ce90 100644 --- a/modules/core/03-connection/types/connection.pb.go +++ b/modules/core/03-connection/types/connection.pb.go @@ -7,7 +7,7 @@ import ( fmt "fmt" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" - types "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + types "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" io "io" math "math" math_bits "math/bits" diff --git a/modules/core/03-connection/types/connection_test.go b/modules/core/03-connection/types/connection_test.go index 4a9250d1ec2..e27017a2cef 100644 --- a/modules/core/03-connection/types/connection_test.go +++ b/modules/core/03-connection/types/connection_test.go @@ -5,12 +5,12 @@ import ( "github.com/stretchr/testify/require" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) var ( diff --git a/modules/core/03-connection/types/events.go b/modules/core/03-connection/types/events.go index fa60da4642c..ac1dfbb1b91 100644 --- a/modules/core/03-connection/types/events.go +++ b/modules/core/03-connection/types/events.go @@ -3,7 +3,7 @@ package types import ( "fmt" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // IBC connection events diff --git a/modules/core/03-connection/types/expected_keepers.go b/modules/core/03-connection/types/expected_keepers.go index 81430da3242..6df8d1f816e 100644 --- a/modules/core/03-connection/types/expected_keepers.go +++ b/modules/core/03-connection/types/expected_keepers.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // ClientKeeper expected account IBC client keeper diff --git a/modules/core/03-connection/types/genesis.go b/modules/core/03-connection/types/genesis.go index fc6689a0704..9b94d02b15a 100644 --- a/modules/core/03-connection/types/genesis.go +++ b/modules/core/03-connection/types/genesis.go @@ -3,8 +3,8 @@ package types import ( "fmt" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // NewConnectionPaths creates a ConnectionPaths instance. diff --git a/modules/core/03-connection/types/genesis_test.go b/modules/core/03-connection/types/genesis_test.go index 0ea3849294b..7dfe60ed64a 100644 --- a/modules/core/03-connection/types/genesis_test.go +++ b/modules/core/03-connection/types/genesis_test.go @@ -6,11 +6,11 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func TestValidateGenesis(t *testing.T) { diff --git a/modules/core/03-connection/types/keys.go b/modules/core/03-connection/types/keys.go index 0eb2c756447..68b9651d4f2 100644 --- a/modules/core/03-connection/types/keys.go +++ b/modules/core/03-connection/types/keys.go @@ -6,7 +6,7 @@ import ( errorsmod "cosmossdk.io/errors" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" ) const ( diff --git a/modules/core/03-connection/types/keys_test.go b/modules/core/03-connection/types/keys_test.go index 816687077e9..08a2a2d8e95 100644 --- a/modules/core/03-connection/types/keys_test.go +++ b/modules/core/03-connection/types/keys_test.go @@ -7,8 +7,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" ) // tests ParseConnectionSequence and IsValidConnectionID diff --git a/modules/core/03-connection/types/msgs.go b/modules/core/03-connection/types/msgs.go index ed69c34bcf8..aed83f11553 100644 --- a/modules/core/03-connection/types/msgs.go +++ b/modules/core/03-connection/types/msgs.go @@ -5,11 +5,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) var ( diff --git a/modules/core/03-connection/types/msgs_test.go b/modules/core/03-connection/types/msgs_test.go index 5d82fd94b50..590600d53f3 100644 --- a/modules/core/03-connection/types/msgs_test.go +++ b/modules/core/03-connection/types/msgs_test.go @@ -18,15 +18,15 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" - ibc "github.com/cosmos/ibc-go/v9/modules/core" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - "github.com/cosmos/ibc-go/v9/testing/simapp" + ibc "github.com/cosmos/ibc-go/v10/modules/core" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v10/testing" + "github.com/cosmos/ibc-go/v10/testing/simapp" ) var ( diff --git a/modules/core/03-connection/types/params_test.go b/modules/core/03-connection/types/params_test.go index 0c515ba3ff3..d6b8a413583 100644 --- a/modules/core/03-connection/types/params_test.go +++ b/modules/core/03-connection/types/params_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" ) func TestValidateParams(t *testing.T) { diff --git a/modules/core/03-connection/types/query.go b/modules/core/03-connection/types/query.go index 0b6b3f3ca55..3249da030f9 100644 --- a/modules/core/03-connection/types/query.go +++ b/modules/core/03-connection/types/query.go @@ -3,8 +3,8 @@ package types import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) var ( diff --git a/modules/core/03-connection/types/query.pb.go b/modules/core/03-connection/types/query.pb.go index 2915d37eac8..43eb9b44ca6 100644 --- a/modules/core/03-connection/types/query.pb.go +++ b/modules/core/03-connection/types/query.pb.go @@ -11,7 +11,7 @@ import ( _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" - types "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + types "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" diff --git a/modules/core/03-connection/types/tx.pb.go b/modules/core/03-connection/types/tx.pb.go index 4ce68cd9ba6..4f14aaaa6f3 100644 --- a/modules/core/03-connection/types/tx.pb.go +++ b/modules/core/03-connection/types/tx.pb.go @@ -11,7 +11,7 @@ import ( _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" - types1 "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + types1 "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" diff --git a/modules/core/03-connection/types/version_test.go b/modules/core/03-connection/types/version_test.go index bc377d6267e..dc4e0fff8c9 100644 --- a/modules/core/03-connection/types/version_test.go +++ b/modules/core/03-connection/types/version_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func TestValidateVersion(t *testing.T) { diff --git a/modules/core/04-channel/client/cli/cli.go b/modules/core/04-channel/client/cli/cli.go index 7fd74ef7aa2..696c8049c1a 100644 --- a/modules/core/04-channel/client/cli/cli.go +++ b/modules/core/04-channel/client/cli/cli.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" ) // GetQueryCmd returns the query commands for IBC channels diff --git a/modules/core/04-channel/client/cli/query.go b/modules/core/04-channel/client/cli/query.go index 0080f5ba345..0b4017c9fd4 100644 --- a/modules/core/04-channel/client/cli/query.go +++ b/modules/core/04-channel/client/cli/query.go @@ -10,9 +10,9 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/version" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/client/utils" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/client/utils" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" ) const ( diff --git a/modules/core/04-channel/client/cli/tx.go b/modules/core/04-channel/client/cli/tx.go index 748f9cf82be..d1dd9a02c4c 100644 --- a/modules/core/04-channel/client/cli/tx.go +++ b/modules/core/04-channel/client/cli/tx.go @@ -16,8 +16,8 @@ import ( "github.com/cosmos/cosmos-sdk/version" govcli "github.com/cosmos/cosmos-sdk/x/gov/client/cli" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" ) const ( diff --git a/modules/core/04-channel/client/utils/utils.go b/modules/core/04-channel/client/utils/utils.go index 44202085b6a..7123948e187 100644 --- a/modules/core/04-channel/client/utils/utils.go +++ b/modules/core/04-channel/client/utils/utils.go @@ -9,11 +9,11 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/codec" - clientutils "github.com/cosmos/ibc-go/v9/modules/core/02-client/client/utils" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcclient "github.com/cosmos/ibc-go/v9/modules/core/client" + clientutils "github.com/cosmos/ibc-go/v10/modules/core/02-client/client/utils" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcclient "github.com/cosmos/ibc-go/v10/modules/core/client" ) // QueryChannel returns a channel end. diff --git a/modules/core/04-channel/genesis.go b/modules/core/04-channel/genesis.go index 416d5cacfd6..354b3797f6f 100644 --- a/modules/core/04-channel/genesis.go +++ b/modules/core/04-channel/genesis.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/keeper" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/keeper" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" ) // InitGenesis initializes the ibc channel submodule's state from a provided genesis diff --git a/modules/core/04-channel/keeper/ante.go b/modules/core/04-channel/keeper/ante.go index 0fa1fe39a5b..a2edcef9bec 100644 --- a/modules/core/04-channel/keeper/ante.go +++ b/modules/core/04-channel/keeper/ante.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" ) // RecvPacketReCheckTx applies replay protection ensuring that when relay messages are diff --git a/modules/core/04-channel/keeper/ante_test.go b/modules/core/04-channel/keeper/ante_test.go index 4de476a81f5..ccd3a007210 100644 --- a/modules/core/04-channel/keeper/ante_test.go +++ b/modules/core/04-channel/keeper/ante_test.go @@ -1,8 +1,8 @@ package keeper_test import ( - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func (suite *KeeperTestSuite) TestRecvPacketReCheckTx() { diff --git a/modules/core/04-channel/keeper/events.go b/modules/core/04-channel/keeper/events.go index 5334b71b32a..6d8b9327c28 100644 --- a/modules/core/04-channel/keeper/events.go +++ b/modules/core/04-channel/keeper/events.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // emitChannelOpenInitEvent emits a channel open init event diff --git a/modules/core/04-channel/keeper/export_test.go b/modules/core/04-channel/keeper/export_test.go index fce2e6487b4..b0e2964c5cb 100644 --- a/modules/core/04-channel/keeper/export_test.go +++ b/modules/core/04-channel/keeper/export_test.go @@ -7,7 +7,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" ) // StartFlushing is a wrapper around startFlushing to allow the function to be directly called in tests. diff --git a/modules/core/04-channel/keeper/grpc_query.go b/modules/core/04-channel/keeper/grpc_query.go index 648a8028534..b9c2d0a5324 100644 --- a/modules/core/04-channel/keeper/grpc_query.go +++ b/modules/core/04-channel/keeper/grpc_query.go @@ -14,11 +14,11 @@ import ( "github.com/cosmos/cosmos-sdk/runtime" "github.com/cosmos/cosmos-sdk/types/query" - "github.com/cosmos/ibc-go/v9/internal/validate" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/internal/validate" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" ) var _ types.QueryServer = (*queryServer)(nil) diff --git a/modules/core/04-channel/keeper/grpc_query_test.go b/modules/core/04-channel/keeper/grpc_query_test.go index 3b42625120a..794b6c926d5 100644 --- a/modules/core/04-channel/keeper/grpc_query_test.go +++ b/modules/core/04-channel/keeper/grpc_query_test.go @@ -10,14 +10,14 @@ import ( "github.com/cosmos/cosmos-sdk/types/query" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/keeper" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - "github.com/cosmos/ibc-go/v9/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/keeper" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v10/testing" + "github.com/cosmos/ibc-go/v10/testing/mock" ) const doesnotexist = "doesnotexist" diff --git a/modules/core/04-channel/keeper/handshake.go b/modules/core/04-channel/keeper/handshake.go index 635b178e067..f05f0113eea 100644 --- a/modules/core/04-channel/keeper/handshake.go +++ b/modules/core/04-channel/keeper/handshake.go @@ -8,10 +8,10 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // ChanOpenInit is called by a module to initiate a channel opening handshake with diff --git a/modules/core/04-channel/keeper/handshake_test.go b/modules/core/04-channel/keeper/handshake_test.go index 5e42d673a49..dd9f13217fd 100644 --- a/modules/core/04-channel/keeper/handshake_test.go +++ b/modules/core/04-channel/keeper/handshake_test.go @@ -5,15 +5,15 @@ import ( errorsmod "cosmossdk.io/errors" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - "github.com/cosmos/ibc-go/v9/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v10/testing" + "github.com/cosmos/ibc-go/v10/testing/mock" ) type testCase = struct { diff --git a/modules/core/04-channel/keeper/keeper.go b/modules/core/04-channel/keeper/keeper.go index 5b9837b5fef..05942ac4f0b 100644 --- a/modules/core/04-channel/keeper/keeper.go +++ b/modules/core/04-channel/keeper/keeper.go @@ -17,12 +17,12 @@ import ( "github.com/cosmos/cosmos-sdk/runtime" sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) var _ porttypes.ICS4Wrapper = (*Keeper)(nil) diff --git a/modules/core/04-channel/keeper/keeper_test.go b/modules/core/04-channel/keeper/keeper_test.go index bd46d702312..c4e38d8ad50 100644 --- a/modules/core/04-channel/keeper/keeper_test.go +++ b/modules/core/04-channel/keeper/keeper_test.go @@ -10,13 +10,13 @@ import ( errorsmod "cosmossdk.io/errors" - transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" + transfertypes "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/v10/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v10/testing" + ibcmock "github.com/cosmos/ibc-go/v10/testing/mock" ) // KeeperTestSuite is a testing suite to test keeper functions. diff --git a/modules/core/04-channel/keeper/migrations.go b/modules/core/04-channel/keeper/migrations.go index 9a382d26265..046eeddd28e 100644 --- a/modules/core/04-channel/keeper/migrations.go +++ b/modules/core/04-channel/keeper/migrations.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" ) // Migrator is a struct for handling in-place store migrations. diff --git a/modules/core/04-channel/keeper/migrations_test.go b/modules/core/04-channel/keeper/migrations_test.go index 1d2af1baa3e..0786341643a 100644 --- a/modules/core/04-channel/keeper/migrations_test.go +++ b/modules/core/04-channel/keeper/migrations_test.go @@ -1,8 +1,8 @@ package keeper_test import ( - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/keeper" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/keeper" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" ) // TestMigrateDefaultParams tests the migration for the channel params diff --git a/modules/core/04-channel/keeper/packet.go b/modules/core/04-channel/keeper/packet.go index c96ce9d7f55..89fbe6f6791 100644 --- a/modules/core/04-channel/keeper/packet.go +++ b/modules/core/04-channel/keeper/packet.go @@ -10,10 +10,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // SendPacket is called by a module in order to send an IBC packet on a channel. diff --git a/modules/core/04-channel/keeper/packet_test.go b/modules/core/04-channel/keeper/packet_test.go index a7e64213790..75f44b2e5bc 100644 --- a/modules/core/04-channel/keeper/packet_test.go +++ b/modules/core/04-channel/keeper/packet_test.go @@ -9,15 +9,15 @@ import ( abci "github.com/cometbft/cometbft/abci/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "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" + ibcmock "github.com/cosmos/ibc-go/v10/testing/mock" ) var ( diff --git a/modules/core/04-channel/keeper/timeout.go b/modules/core/04-channel/keeper/timeout.go index b7d39b843c4..b273cd41d8e 100644 --- a/modules/core/04-channel/keeper/timeout.go +++ b/modules/core/04-channel/keeper/timeout.go @@ -7,10 +7,10 @@ import ( errorsmod "cosmossdk.io/errors" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // TimeoutPacket is called by a module which originally attempted to send a diff --git a/modules/core/04-channel/keeper/timeout_test.go b/modules/core/04-channel/keeper/timeout_test.go index 8e10cf15c62..b264b94fcdc 100644 --- a/modules/core/04-channel/keeper/timeout_test.go +++ b/modules/core/04-channel/keeper/timeout_test.go @@ -10,15 +10,15 @@ import ( abci "github.com/cometbft/cometbft/abci/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - "github.com/cosmos/ibc-go/v9/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v10/testing" + "github.com/cosmos/ibc-go/v10/testing/mock" ) // TestTimeoutPacket test the TimeoutPacket call on chainA by ensuring the timeout has passed diff --git a/modules/core/04-channel/keeper/upgrade.go b/modules/core/04-channel/keeper/upgrade.go index d138d9eb21d..3ba7d3e47cc 100644 --- a/modules/core/04-channel/keeper/upgrade.go +++ b/modules/core/04-channel/keeper/upgrade.go @@ -11,11 +11,11 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // ChanUpgradeInit is called by a module to initiate a channel upgrade handshake with diff --git a/modules/core/04-channel/keeper/upgrade_test.go b/modules/core/04-channel/keeper/upgrade_test.go index f1c49dbeebb..dec4471d105 100644 --- a/modules/core/04-channel/keeper/upgrade_test.go +++ b/modules/core/04-channel/keeper/upgrade_test.go @@ -7,15 +7,15 @@ import ( errorsmod "cosmossdk.io/errors" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - channelkeeper "github.com/cosmos/ibc-go/v9/modules/core/04-channel/keeper" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - "github.com/cosmos/ibc-go/v9/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + channelkeeper "github.com/cosmos/ibc-go/v10/modules/core/04-channel/keeper" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v10/testing" + "github.com/cosmos/ibc-go/v10/testing/mock" ) func (suite *KeeperTestSuite) TestChanUpgradeInit() { diff --git a/modules/core/04-channel/module.go b/modules/core/04-channel/module.go index 7f20cba1a8b..4bb9300c2d1 100644 --- a/modules/core/04-channel/module.go +++ b/modules/core/04-channel/module.go @@ -3,8 +3,8 @@ package channel import ( "github.com/spf13/cobra" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/client/cli" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/client/cli" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" ) // Name returns the IBC channel ICS name. diff --git a/modules/core/04-channel/simulation/decoder.go b/modules/core/04-channel/simulation/decoder.go index a7eb8fa594c..58dc9a41790 100644 --- a/modules/core/04-channel/simulation/decoder.go +++ b/modules/core/04-channel/simulation/decoder.go @@ -8,8 +8,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" ) // NewDecodeStore returns a decoder function closure that unmarshals the KVPair's diff --git a/modules/core/04-channel/simulation/decoder_test.go b/modules/core/04-channel/simulation/decoder_test.go index df1e9127313..dd0cd8e94ce 100644 --- a/modules/core/04-channel/simulation/decoder_test.go +++ b/modules/core/04-channel/simulation/decoder_test.go @@ -9,10 +9,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/simulation" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/testing/simapp" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/simulation" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/testing/simapp" ) func TestDecodeStore(t *testing.T) { diff --git a/modules/core/04-channel/simulation/genesis.go b/modules/core/04-channel/simulation/genesis.go index 0a787eab1cc..cc4b00eae4f 100644 --- a/modules/core/04-channel/simulation/genesis.go +++ b/modules/core/04-channel/simulation/genesis.go @@ -5,7 +5,7 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" ) // GenChannelGenesis returns the default channel genesis state. diff --git a/modules/core/04-channel/types/acknowledgement_test.go b/modules/core/04-channel/types/acknowledgement_test.go index 7ecac6e434f..9cd88531104 100644 --- a/modules/core/04-channel/types/acknowledgement_test.go +++ b/modules/core/04-channel/types/acknowledgement_test.go @@ -10,8 +10,8 @@ import ( abcitypes "github.com/cometbft/cometbft/abci/types" cmtstate "github.com/cometbft/cometbft/state" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" ) const ( diff --git a/modules/core/04-channel/types/channel.go b/modules/core/04-channel/types/channel.go index cbffb3ccc7b..1ffd62bd2d1 100644 --- a/modules/core/04-channel/types/channel.go +++ b/modules/core/04-channel/types/channel.go @@ -5,7 +5,7 @@ import ( errorsmod "cosmossdk.io/errors" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" ) // NewChannel creates a new Channel instance diff --git a/modules/core/04-channel/types/channel.pb.go b/modules/core/04-channel/types/channel.pb.go index 2263ee69c4e..587699fa4c0 100644 --- a/modules/core/04-channel/types/channel.pb.go +++ b/modules/core/04-channel/types/channel.pb.go @@ -7,7 +7,7 @@ import ( fmt "fmt" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" - types "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + types "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" io "io" math "math" math_bits "math/bits" diff --git a/modules/core/04-channel/types/channel_test.go b/modules/core/04-channel/types/channel_test.go index a589fe8a2d8..25f97f1d649 100644 --- a/modules/core/04-channel/types/channel_test.go +++ b/modules/core/04-channel/types/channel_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" ) func TestChannelValidateBasic(t *testing.T) { diff --git a/modules/core/04-channel/types/codec.go b/modules/core/04-channel/types/codec.go index 1b4fbef1493..4d28f2c90b2 100644 --- a/modules/core/04-channel/types/codec.go +++ b/modules/core/04-channel/types/codec.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/msgservice" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // RegisterInterfaces register the ibc channel submodule interfaces to protobuf diff --git a/modules/core/04-channel/types/codec_test.go b/modules/core/04-channel/types/codec_test.go index 78289ea949f..90b7123ec12 100644 --- a/modules/core/04-channel/types/codec_test.go +++ b/modules/core/04-channel/types/codec_test.go @@ -9,8 +9,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" - ibc "github.com/cosmos/ibc-go/v9/modules/core" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibc "github.com/cosmos/ibc-go/v10/modules/core" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" ) func TestCodecTypeRegistration(t *testing.T) { diff --git a/modules/core/04-channel/types/events.go b/modules/core/04-channel/types/events.go index 48fa108024a..8f8fde0e3fd 100644 --- a/modules/core/04-channel/types/events.go +++ b/modules/core/04-channel/types/events.go @@ -3,7 +3,7 @@ package types import ( "fmt" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // IBC channel events diff --git a/modules/core/04-channel/types/expected_keepers.go b/modules/core/04-channel/types/expected_keepers.go index dfe2a5552ea..69d84e82c8a 100644 --- a/modules/core/04-channel/types/expected_keepers.go +++ b/modules/core/04-channel/types/expected_keepers.go @@ -3,9 +3,9 @@ package types import ( "context" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // ClientKeeper expected account IBC client keeper diff --git a/modules/core/04-channel/types/genesis.go b/modules/core/04-channel/types/genesis.go index 16ca4c369a8..e54acfedeb5 100644 --- a/modules/core/04-channel/types/genesis.go +++ b/modules/core/04-channel/types/genesis.go @@ -6,8 +6,8 @@ import ( errorsmod "cosmossdk.io/errors" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" ) // NewPacketState creates a new PacketState instance. diff --git a/modules/core/04-channel/types/genesis_test.go b/modules/core/04-channel/types/genesis_test.go index 2da79970cab..5fe3b747b84 100644 --- a/modules/core/04-channel/types/genesis_test.go +++ b/modules/core/04-channel/types/genesis_test.go @@ -5,9 +5,9 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" ) const ( diff --git a/modules/core/04-channel/types/keys.go b/modules/core/04-channel/types/keys.go index 701c452d6d6..8a6f4db8bf7 100644 --- a/modules/core/04-channel/types/keys.go +++ b/modules/core/04-channel/types/keys.go @@ -6,7 +6,7 @@ import ( errorsmod "cosmossdk.io/errors" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" ) const ( diff --git a/modules/core/04-channel/types/keys_test.go b/modules/core/04-channel/types/keys_test.go index a8a0abfc15f..4f2d239dfd0 100644 --- a/modules/core/04-channel/types/keys_test.go +++ b/modules/core/04-channel/types/keys_test.go @@ -6,8 +6,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" ) // tests ParseChannelSequence and IsValidChannelID diff --git a/modules/core/04-channel/types/msgs.go b/modules/core/04-channel/types/msgs.go index 891ae7383f8..d8e3f30261b 100644 --- a/modules/core/04-channel/types/msgs.go +++ b/modules/core/04-channel/types/msgs.go @@ -8,10 +8,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" ) var ( diff --git a/modules/core/04-channel/types/msgs_test.go b/modules/core/04-channel/types/msgs_test.go index 2fab309d23c..0f3853a4f0f 100644 --- a/modules/core/04-channel/types/msgs_test.go +++ b/modules/core/04-channel/types/msgs_test.go @@ -20,15 +20,15 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - ibc "github.com/cosmos/ibc-go/v9/modules/core" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - "github.com/cosmos/ibc-go/v9/testing/mock" - "github.com/cosmos/ibc-go/v9/testing/simapp" + ibc "github.com/cosmos/ibc-go/v10/modules/core" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v10/testing" + "github.com/cosmos/ibc-go/v10/testing/mock" + "github.com/cosmos/ibc-go/v10/testing/simapp" ) const ( diff --git a/modules/core/04-channel/types/packet.go b/modules/core/04-channel/types/packet.go index f3524990331..dac609198f2 100644 --- a/modules/core/04-channel/types/packet.go +++ b/modules/core/04-channel/types/packet.go @@ -7,9 +7,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) const MaximumPayloadsSize = 262144 // 256 KiB. This is the maximum size of all payloads combined diff --git a/modules/core/04-channel/types/packet_test.go b/modules/core/04-channel/types/packet_test.go index 60566bcae8c..9d9e968714d 100644 --- a/modules/core/04-channel/types/packet_test.go +++ b/modules/core/04-channel/types/packet_test.go @@ -6,8 +6,8 @@ import ( "github.com/stretchr/testify/require" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" ) func TestCommitPacket(t *testing.T) { diff --git a/modules/core/04-channel/types/params.go b/modules/core/04-channel/types/params.go index 8d493134106..65af645180c 100644 --- a/modules/core/04-channel/types/params.go +++ b/modules/core/04-channel/types/params.go @@ -5,7 +5,7 @@ import ( errorsmod "cosmossdk.io/errors" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" ) // DefaultTimeout defines a default parameter for the channel upgrade protocol. diff --git a/modules/core/04-channel/types/query.go b/modules/core/04-channel/types/query.go index e0f8121d752..54a5b016b1f 100644 --- a/modules/core/04-channel/types/query.go +++ b/modules/core/04-channel/types/query.go @@ -3,8 +3,8 @@ package types import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) var ( diff --git a/modules/core/04-channel/types/query.pb.go b/modules/core/04-channel/types/query.pb.go index aae2ab333d0..49c133496ca 100644 --- a/modules/core/04-channel/types/query.pb.go +++ b/modules/core/04-channel/types/query.pb.go @@ -11,7 +11,7 @@ import ( _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" - types "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + types "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" diff --git a/modules/core/04-channel/types/timeout.go b/modules/core/04-channel/types/timeout.go index ca1e70ca8e6..17b307a9592 100644 --- a/modules/core/04-channel/types/timeout.go +++ b/modules/core/04-channel/types/timeout.go @@ -3,7 +3,7 @@ package types import ( errorsmod "cosmossdk.io/errors" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" ) // NewTimeout returns a new Timeout instance. diff --git a/modules/core/04-channel/types/timeout_test.go b/modules/core/04-channel/types/timeout_test.go index 842e5ac8fc1..03e62378fd5 100644 --- a/modules/core/04-channel/types/timeout_test.go +++ b/modules/core/04-channel/types/timeout_test.go @@ -3,8 +3,8 @@ package types_test import ( errorsmod "cosmossdk.io/errors" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" ) func (suite *TypesTestSuite) TestIsValid() { diff --git a/modules/core/04-channel/types/tx.pb.go b/modules/core/04-channel/types/tx.pb.go index 71157b18e4b..ab6c5561f03 100644 --- a/modules/core/04-channel/types/tx.pb.go +++ b/modules/core/04-channel/types/tx.pb.go @@ -10,7 +10,7 @@ import ( _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" - types "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + types "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" diff --git a/modules/core/04-channel/types/upgrade.go b/modules/core/04-channel/types/upgrade.go index 55119a0ed7f..72fa8af9ac5 100644 --- a/modules/core/04-channel/types/upgrade.go +++ b/modules/core/04-channel/types/upgrade.go @@ -8,7 +8,7 @@ import ( errorsmod "cosmossdk.io/errors" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" ) // NewUpgrade creates a new Upgrade instance. diff --git a/modules/core/04-channel/types/upgrade_test.go b/modules/core/04-channel/types/upgrade_test.go index ef5631f1d85..b6b4dfe2d62 100644 --- a/modules/core/04-channel/types/upgrade_test.go +++ b/modules/core/04-channel/types/upgrade_test.go @@ -6,10 +6,10 @@ import ( errorsmod "cosmossdk.io/errors" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - "github.com/cosmos/ibc-go/v9/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" + "github.com/cosmos/ibc-go/v10/testing/mock" ) func (suite *TypesTestSuite) TestUpgradeValidateBasic() { diff --git a/modules/core/04-channel/v2/client/cli/abci.go b/modules/core/04-channel/v2/client/cli/abci.go index d341e35b4e2..5b58c337dec 100644 --- a/modules/core/04-channel/v2/client/cli/abci.go +++ b/modules/core/04-channel/v2/client/cli/abci.go @@ -7,9 +7,9 @@ import ( "github.com/cosmos/cosmos-sdk/client" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" - hostv2 "github.com/cosmos/ibc-go/v9/modules/core/24-host/v2" - ibcclient "github.com/cosmos/ibc-go/v9/modules/core/client" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types" + hostv2 "github.com/cosmos/ibc-go/v10/modules/core/24-host/v2" + ibcclient "github.com/cosmos/ibc-go/v10/modules/core/client" ) func queryNextSequenceSendABCI(clientCtx client.Context, channelID string) (*types.QueryNextSequenceSendResponse, error) { diff --git a/modules/core/04-channel/v2/client/cli/cli.go b/modules/core/04-channel/v2/client/cli/cli.go index cf8f883f46d..6754ed22df3 100644 --- a/modules/core/04-channel/v2/client/cli/cli.go +++ b/modules/core/04-channel/v2/client/cli/cli.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types" ) // GetQueryCmd returns the query commands for the IBC channel/v2. diff --git a/modules/core/04-channel/v2/client/cli/query.go b/modules/core/04-channel/v2/client/cli/query.go index 0f7949d3504..e0e24c15cb4 100644 --- a/modules/core/04-channel/v2/client/cli/query.go +++ b/modules/core/04-channel/v2/client/cli/query.go @@ -10,8 +10,8 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/version" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) const ( diff --git a/modules/core/04-channel/v2/genesis.go b/modules/core/04-channel/v2/genesis.go index 4df9d61bf5c..bd9dbb0e505 100644 --- a/modules/core/04-channel/v2/genesis.go +++ b/modules/core/04-channel/v2/genesis.go @@ -5,8 +5,8 @@ import ( "github.com/cosmos/gogoproto/proto" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/keeper" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/keeper" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types" ) func InitGenesis(ctx context.Context, k *keeper.Keeper, gs types.GenesisState) { diff --git a/modules/core/04-channel/v2/genesis_test.go b/modules/core/04-channel/v2/genesis_test.go index 53fd7f8d389..85488493946 100644 --- a/modules/core/04-channel/v2/genesis_test.go +++ b/modules/core/04-channel/v2/genesis_test.go @@ -3,10 +3,10 @@ package channelv2_test import ( proto "github.com/cosmos/gogoproto/proto" - channelv2 "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - mockv2 "github.com/cosmos/ibc-go/v9/testing/mock/v2" + channelv2 "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" + mockv2 "github.com/cosmos/ibc-go/v10/testing/mock/v2" ) // TestInitExportGenesis tests the import and export flow for the channel v2 keeper. diff --git a/modules/core/04-channel/v2/keeper/events.go b/modules/core/04-channel/v2/keeper/events.go index 5db1229fc14..b1f8c466ccd 100644 --- a/modules/core/04-channel/v2/keeper/events.go +++ b/modules/core/04-channel/v2/keeper/events.go @@ -9,7 +9,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types" ) // emitSendPacketEvents emits events for the SendPacket handler. diff --git a/modules/core/04-channel/v2/keeper/export_test.go b/modules/core/04-channel/v2/keeper/export_test.go index aae6048ed2a..31424d2e99e 100644 --- a/modules/core/04-channel/v2/keeper/export_test.go +++ b/modules/core/04-channel/v2/keeper/export_test.go @@ -7,8 +7,8 @@ package keeper import ( "context" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) func (k *Keeper) SendPacketTest( diff --git a/modules/core/04-channel/v2/keeper/grpc_query.go b/modules/core/04-channel/v2/keeper/grpc_query.go index 38fb243d064..d9f2603a8e7 100644 --- a/modules/core/04-channel/v2/keeper/grpc_query.go +++ b/modules/core/04-channel/v2/keeper/grpc_query.go @@ -14,10 +14,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - hostv2 "github.com/cosmos/ibc-go/v9/modules/core/24-host/v2" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + hostv2 "github.com/cosmos/ibc-go/v10/modules/core/24-host/v2" ) var _ types.QueryServer = (*queryServer)(nil) diff --git a/modules/core/04-channel/v2/keeper/grpc_query_test.go b/modules/core/04-channel/v2/keeper/grpc_query_test.go index 8d8a07d73ac..d07fba57031 100644 --- a/modules/core/04-channel/v2/keeper/grpc_query_test.go +++ b/modules/core/04-channel/v2/keeper/grpc_query_test.go @@ -8,9 +8,9 @@ import ( "github.com/cosmos/cosmos-sdk/types/query" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/keeper" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/keeper" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func (suite *KeeperTestSuite) TestQueryPacketCommitment() { diff --git a/modules/core/04-channel/v2/keeper/keeper.go b/modules/core/04-channel/v2/keeper/keeper.go index 2398f4f9acd..f9c287c909f 100644 --- a/modules/core/04-channel/v2/keeper/keeper.go +++ b/modules/core/04-channel/v2/keeper/keeper.go @@ -12,13 +12,13 @@ import ( "github.com/cosmos/cosmos-sdk/runtime" sdk "github.com/cosmos/cosmos-sdk/types" - clientv2keeper "github.com/cosmos/ibc-go/v9/modules/core/02-client/v2/keeper" - connectionkeeper "github.com/cosmos/ibc-go/v9/modules/core/03-connection/keeper" - channelkeeperv1 "github.com/cosmos/ibc-go/v9/modules/core/04-channel/keeper" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" - hostv2 "github.com/cosmos/ibc-go/v9/modules/core/24-host/v2" - "github.com/cosmos/ibc-go/v9/modules/core/api" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clientv2keeper "github.com/cosmos/ibc-go/v10/modules/core/02-client/v2/keeper" + connectionkeeper "github.com/cosmos/ibc-go/v10/modules/core/03-connection/keeper" + channelkeeperv1 "github.com/cosmos/ibc-go/v10/modules/core/04-channel/keeper" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types" + hostv2 "github.com/cosmos/ibc-go/v10/modules/core/24-host/v2" + "github.com/cosmos/ibc-go/v10/modules/core/api" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // Keeper defines the channel keeper v2. diff --git a/modules/core/04-channel/v2/keeper/keeper_test.go b/modules/core/04-channel/v2/keeper/keeper_test.go index 5da9af68bda..999cd73d117 100644 --- a/modules/core/04-channel/v2/keeper/keeper_test.go +++ b/modules/core/04-channel/v2/keeper/keeper_test.go @@ -5,7 +5,7 @@ import ( testifysuite "github.com/stretchr/testify/suite" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func TestKeeperTestSuite(t *testing.T) { diff --git a/modules/core/04-channel/v2/keeper/msg_server.go b/modules/core/04-channel/v2/keeper/msg_server.go index cb77dda971d..39b3e8a1392 100644 --- a/modules/core/04-channel/v2/keeper/msg_server.go +++ b/modules/core/04-channel/v2/keeper/msg_server.go @@ -9,9 +9,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" - internalerrors "github.com/cosmos/ibc-go/v9/modules/core/internal/errors" - "github.com/cosmos/ibc-go/v9/modules/core/internal/v2/telemetry" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types" + internalerrors "github.com/cosmos/ibc-go/v10/modules/core/internal/errors" + "github.com/cosmos/ibc-go/v10/modules/core/internal/v2/telemetry" ) var _ types.MsgServer = &Keeper{} diff --git a/modules/core/04-channel/v2/keeper/msg_server_test.go b/modules/core/04-channel/v2/keeper/msg_server_test.go index 58c25f4a062..3113d2976c8 100644 --- a/modules/core/04-channel/v2/keeper/msg_server_test.go +++ b/modules/core/04-channel/v2/keeper/msg_server_test.go @@ -8,13 +8,13 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - clientv2types "github.com/cosmos/ibc-go/v9/modules/core/02-client/v2/types" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - "github.com/cosmos/ibc-go/v9/testing/mock" - mockv2 "github.com/cosmos/ibc-go/v9/testing/mock/v2" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + clientv2types "github.com/cosmos/ibc-go/v10/modules/core/02-client/v2/types" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" + "github.com/cosmos/ibc-go/v10/testing/mock" + mockv2 "github.com/cosmos/ibc-go/v10/testing/mock/v2" ) func (suite *KeeperTestSuite) TestMsgSendPacket() { diff --git a/modules/core/04-channel/v2/keeper/packet.go b/modules/core/04-channel/v2/keeper/packet.go index a784f018f2c..1493c42542a 100644 --- a/modules/core/04-channel/v2/keeper/packet.go +++ b/modules/core/04-channel/v2/keeper/packet.go @@ -10,11 +10,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - clientv2types "github.com/cosmos/ibc-go/v9/modules/core/02-client/v2/types" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" - hostv2 "github.com/cosmos/ibc-go/v9/modules/core/24-host/v2" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + clientv2types "github.com/cosmos/ibc-go/v10/modules/core/02-client/v2/types" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types" + hostv2 "github.com/cosmos/ibc-go/v10/modules/core/24-host/v2" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // sendPacket constructs a packet from the input arguments, writes a packet commitment to state diff --git a/modules/core/04-channel/v2/keeper/packet_test.go b/modules/core/04-channel/v2/keeper/packet_test.go index c96759cd27c..eb1bacc6e2a 100644 --- a/modules/core/04-channel/v2/keeper/packet_test.go +++ b/modules/core/04-channel/v2/keeper/packet_test.go @@ -4,14 +4,14 @@ import ( "fmt" "time" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - clientv2types "github.com/cosmos/ibc-go/v9/modules/core/02-client/v2/types" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - hostv2 "github.com/cosmos/ibc-go/v9/modules/core/24-host/v2" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - mockv2 "github.com/cosmos/ibc-go/v9/testing/mock/v2" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + clientv2types "github.com/cosmos/ibc-go/v10/modules/core/02-client/v2/types" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + hostv2 "github.com/cosmos/ibc-go/v10/modules/core/24-host/v2" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v10/testing" + mockv2 "github.com/cosmos/ibc-go/v10/testing/mock/v2" ) var unusedChannel = "channel-5" diff --git a/modules/core/04-channel/v2/module.go b/modules/core/04-channel/v2/module.go index aa899ec2291..9ef12b3b54f 100644 --- a/modules/core/04-channel/v2/module.go +++ b/modules/core/04-channel/v2/module.go @@ -3,8 +3,8 @@ package channelv2 import ( "github.com/spf13/cobra" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/client/cli" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/client/cli" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types" ) func Name() string { diff --git a/modules/core/04-channel/v2/module_test.go b/modules/core/04-channel/v2/module_test.go index dcac04a2614..afe5441682a 100644 --- a/modules/core/04-channel/v2/module_test.go +++ b/modules/core/04-channel/v2/module_test.go @@ -5,7 +5,7 @@ import ( testifysuite "github.com/stretchr/testify/suite" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func TestModuleTestSuite(t *testing.T) { diff --git a/modules/core/04-channel/v2/types/acknowledgement.go b/modules/core/04-channel/v2/types/acknowledgement.go index 22e67fb7d0d..0fe321614e9 100644 --- a/modules/core/04-channel/v2/types/acknowledgement.go +++ b/modules/core/04-channel/v2/types/acknowledgement.go @@ -8,7 +8,7 @@ import ( errorsmod "cosmossdk.io/errors" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) var ( diff --git a/modules/core/04-channel/v2/types/acknowledgement_test.go b/modules/core/04-channel/v2/types/acknowledgement_test.go index 3c6f8f64061..cc0cd7f2d00 100644 --- a/modules/core/04-channel/v2/types/acknowledgement_test.go +++ b/modules/core/04-channel/v2/types/acknowledgement_test.go @@ -1,7 +1,7 @@ package types_test import ( - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types" ) // Test_ValidateAcknowledgement tests the acknowledgements Validate method diff --git a/modules/core/04-channel/v2/types/commitment_test.go b/modules/core/04-channel/v2/types/commitment_test.go index 637c0ade235..2c029b39fda 100644 --- a/modules/core/04-channel/v2/types/commitment_test.go +++ b/modules/core/04-channel/v2/types/commitment_test.go @@ -7,8 +7,8 @@ import ( "github.com/stretchr/testify/require" - transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" + transfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types" ) // TestCommitPacket is primarily used to document the expected commitment output diff --git a/modules/core/04-channel/v2/types/events.go b/modules/core/04-channel/v2/types/events.go index d1d42fdc73a..6980f00c637 100644 --- a/modules/core/04-channel/v2/types/events.go +++ b/modules/core/04-channel/v2/types/events.go @@ -3,7 +3,7 @@ package types import ( "fmt" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // IBC Eureka core events diff --git a/modules/core/04-channel/v2/types/expected_keepers.go b/modules/core/04-channel/v2/types/expected_keepers.go index 666b241bc2c..a52d2bc5497 100644 --- a/modules/core/04-channel/v2/types/expected_keepers.go +++ b/modules/core/04-channel/v2/types/expected_keepers.go @@ -3,8 +3,8 @@ package types import ( "context" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) type ClientKeeper interface { diff --git a/modules/core/04-channel/v2/types/genesis.go b/modules/core/04-channel/v2/types/genesis.go index aeef861000f..5d6d1430aa3 100644 --- a/modules/core/04-channel/v2/types/genesis.go +++ b/modules/core/04-channel/v2/types/genesis.go @@ -4,7 +4,7 @@ import ( "errors" "fmt" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" ) // NewPacketState creates a new PacketState instance. diff --git a/modules/core/04-channel/v2/types/genesis_test.go b/modules/core/04-channel/v2/types/genesis_test.go index d539c19a262..7beebff1058 100644 --- a/modules/core/04-channel/v2/types/genesis_test.go +++ b/modules/core/04-channel/v2/types/genesis_test.go @@ -6,8 +6,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func TestValidateGenesis(t *testing.T) { diff --git a/modules/core/04-channel/v2/types/merkle.go b/modules/core/04-channel/v2/types/merkle.go index 30d6cbfc000..68ad501d3ee 100644 --- a/modules/core/04-channel/v2/types/merkle.go +++ b/modules/core/04-channel/v2/types/merkle.go @@ -1,7 +1,7 @@ package types import ( - commitmenttypesv2 "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types/v2" + commitmenttypesv2 "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types/v2" ) // BuildMerklePath takes the merkle path prefix and an ICS24 path diff --git a/modules/core/04-channel/v2/types/merkle_test.go b/modules/core/04-channel/v2/types/merkle_test.go index 0eac1e68428..465d3bf23a5 100644 --- a/modules/core/04-channel/v2/types/merkle_test.go +++ b/modules/core/04-channel/v2/types/merkle_test.go @@ -1,10 +1,10 @@ package types_test import ( - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" - commitmenttypesv2 "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types/v2" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types" + commitmenttypesv2 "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types/v2" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func (s *TypesTestSuite) TestBuildMerklePath() { diff --git a/modules/core/04-channel/v2/types/msgs.go b/modules/core/04-channel/v2/types/msgs.go index 7c71e8972fe..0843e6acc32 100644 --- a/modules/core/04-channel/v2/types/msgs.go +++ b/modules/core/04-channel/v2/types/msgs.go @@ -7,10 +7,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - commitmenttypesv1 "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + commitmenttypesv1 "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" ) const MaxTimeoutDelta time.Duration = 24 * time.Hour diff --git a/modules/core/04-channel/v2/types/msgs_test.go b/modules/core/04-channel/v2/types/msgs_test.go index e097a7fd173..dc251cca0cc 100644 --- a/modules/core/04-channel/v2/types/msgs_test.go +++ b/modules/core/04-channel/v2/types/msgs_test.go @@ -5,14 +5,14 @@ import ( "github.com/stretchr/testify/suite" - transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - mockv2 "github.com/cosmos/ibc-go/v9/testing/mock/v2" + transfertypes "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/v10/modules/core/04-channel/v2/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v10/testing" + mockv2 "github.com/cosmos/ibc-go/v10/testing/mock/v2" ) var testProof = []byte("test") diff --git a/modules/core/04-channel/v2/types/packet.go b/modules/core/04-channel/v2/types/packet.go index d3fd79d01c5..cf2c63b11bf 100644 --- a/modules/core/04-channel/v2/types/packet.go +++ b/modules/core/04-channel/v2/types/packet.go @@ -5,8 +5,8 @@ import ( errorsmod "cosmossdk.io/errors" - channeltypesv1 "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + channeltypesv1 "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" ) // NewPacket constructs a new packet. diff --git a/modules/core/04-channel/v2/types/packet_test.go b/modules/core/04-channel/v2/types/packet_test.go index 015ca83812f..9a2f967473d 100644 --- a/modules/core/04-channel/v2/types/packet_test.go +++ b/modules/core/04-channel/v2/types/packet_test.go @@ -6,12 +6,12 @@ import ( "github.com/stretchr/testify/require" - transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - channeltypesv1 "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - "github.com/cosmos/ibc-go/v9/testing/mock" + transfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + channeltypesv1 "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibctesting "github.com/cosmos/ibc-go/v10/testing" + "github.com/cosmos/ibc-go/v10/testing/mock" ) // TestValidateBasic tests the ValidateBasic function of Packet diff --git a/modules/core/04-channel/v2/types/query.go b/modules/core/04-channel/v2/types/query.go index fdc87dccb39..46ee59181f5 100644 --- a/modules/core/04-channel/v2/types/query.go +++ b/modules/core/04-channel/v2/types/query.go @@ -1,7 +1,7 @@ package types import ( - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" ) // NewQueryNextSequenceSendRequest creates a new next sequence send query. diff --git a/modules/core/04-channel/v2/types/query.pb.go b/modules/core/04-channel/v2/types/query.pb.go index 4f230d4757a..6c39ef4e8a9 100644 --- a/modules/core/04-channel/v2/types/query.pb.go +++ b/modules/core/04-channel/v2/types/query.pb.go @@ -10,7 +10,7 @@ import ( _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" - types "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + types "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" diff --git a/modules/core/04-channel/v2/types/tx.pb.go b/modules/core/04-channel/v2/types/tx.pb.go index ba67180f946..e6d2ce823ac 100644 --- a/modules/core/04-channel/v2/types/tx.pb.go +++ b/modules/core/04-channel/v2/types/tx.pb.go @@ -10,7 +10,7 @@ import ( _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" - types "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + types "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" diff --git a/modules/core/05-port/keeper/keeper.go b/modules/core/05-port/keeper/keeper.go index c97c1c9bdd6..fa27c8eef00 100644 --- a/modules/core/05-port/keeper/keeper.go +++ b/modules/core/05-port/keeper/keeper.go @@ -8,9 +8,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" - "github.com/cosmos/ibc-go/v9/modules/core/api" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" + "github.com/cosmos/ibc-go/v10/modules/core/api" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // Keeper defines the IBC connection keeper diff --git a/modules/core/05-port/keeper/keeper_test.go b/modules/core/05-port/keeper/keeper_test.go index 541ce96f462..0a6ca77ef23 100644 --- a/modules/core/05-port/keeper/keeper_test.go +++ b/modules/core/05-port/keeper/keeper_test.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v9/modules/core/05-port/keeper" - "github.com/cosmos/ibc-go/v9/testing/simapp" + "github.com/cosmos/ibc-go/v10/modules/core/05-port/keeper" + "github.com/cosmos/ibc-go/v10/testing/simapp" ) type KeeperTestSuite struct { diff --git a/modules/core/05-port/module.go b/modules/core/05-port/module.go index f52d4c893d9..ccc132ffa2a 100644 --- a/modules/core/05-port/module.go +++ b/modules/core/05-port/module.go @@ -3,8 +3,8 @@ package port import ( "github.com/spf13/cobra" - "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" - "github.com/cosmos/ibc-go/v9/modules/core/client/cli" + "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" + "github.com/cosmos/ibc-go/v10/modules/core/client/cli" ) // Name returns the IBC port ICS name. diff --git a/modules/core/05-port/types/module.go b/modules/core/05-port/types/module.go index cc7915bb6b0..3f29058b7d5 100644 --- a/modules/core/05-port/types/module.go +++ b/modules/core/05-port/types/module.go @@ -5,9 +5,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // IBCModule defines an interface that implements all the callbacks diff --git a/modules/core/23-commitment/types/codec.go b/modules/core/23-commitment/types/codec.go index 28a429d0f9f..9513ec59f7c 100644 --- a/modules/core/23-commitment/types/codec.go +++ b/modules/core/23-commitment/types/codec.go @@ -3,8 +3,8 @@ package types import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" - "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types/v2" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types/v2" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // RegisterInterfaces registers the commitment interfaces to protobuf Any. diff --git a/modules/core/23-commitment/types/codec_test.go b/modules/core/23-commitment/types/codec_test.go index f9044bc9900..10523699a8b 100644 --- a/modules/core/23-commitment/types/codec_test.go +++ b/modules/core/23-commitment/types/codec_test.go @@ -6,9 +6,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" - ibc "github.com/cosmos/ibc-go/v9/modules/core" - "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types/v2" + ibc "github.com/cosmos/ibc-go/v10/modules/core" + "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types/v2" ) func (suite *MerkleTestSuite) TestCodecTypeRegistration() { diff --git a/modules/core/23-commitment/types/merkle.go b/modules/core/23-commitment/types/merkle.go index 5cdf72dddbd..79ee37c413a 100644 --- a/modules/core/23-commitment/types/merkle.go +++ b/modules/core/23-commitment/types/merkle.go @@ -7,8 +7,8 @@ import ( errorsmod "cosmossdk.io/errors" - "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types/v2" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types/v2" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // var representing the proofspecs for an SDK chain diff --git a/modules/core/23-commitment/types/merkle_test.go b/modules/core/23-commitment/types/merkle_test.go index 9c8657cc237..f821d7b4d55 100644 --- a/modules/core/23-commitment/types/merkle_test.go +++ b/modules/core/23-commitment/types/merkle_test.go @@ -8,8 +8,8 @@ import ( storetypes "cosmossdk.io/store/types" - "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types/v2" + "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types/v2" ) func (suite *MerkleTestSuite) TestVerifyMembership() { diff --git a/modules/core/23-commitment/types/utils_test.go b/modules/core/23-commitment/types/utils_test.go index 909f081430a..d2ef603bc50 100644 --- a/modules/core/23-commitment/types/utils_test.go +++ b/modules/core/23-commitment/types/utils_test.go @@ -9,7 +9,7 @@ import ( "github.com/cometbft/cometbft/proto/tendermint/crypto" - "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" ) func (suite *MerkleTestSuite) TestConvertProofs() { diff --git a/modules/core/23-commitment/types/v2/merkle.go b/modules/core/23-commitment/types/v2/merkle.go index 7cdccc1f39d..b30db6e3db8 100644 --- a/modules/core/23-commitment/types/v2/merkle.go +++ b/modules/core/23-commitment/types/v2/merkle.go @@ -4,7 +4,7 @@ import ( "errors" "fmt" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) var _ exported.Path = (*MerklePath)(nil) diff --git a/modules/core/24-host/client_keys.go b/modules/core/24-host/client_keys.go index ad80cbae63a..bd1efe5b0fe 100644 --- a/modules/core/24-host/client_keys.go +++ b/modules/core/24-host/client_keys.go @@ -3,7 +3,7 @@ package host import ( "fmt" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // KeyClientStorePrefix defines the KVStore key prefix for IBC clients diff --git a/modules/core/24-host/parse_test.go b/modules/core/24-host/parse_test.go index 3bb8ba10017..a1df8f3777b 100644 --- a/modules/core/24-host/parse_test.go +++ b/modules/core/24-host/parse_test.go @@ -8,9 +8,9 @@ import ( "github.com/stretchr/testify/require" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func TestParseIdentifier(t *testing.T) { diff --git a/modules/core/24-host/v2/packet_key_test.go b/modules/core/24-host/v2/packet_key_test.go index 36642005f75..83aef71a635 100644 --- a/modules/core/24-host/v2/packet_key_test.go +++ b/modules/core/24-host/v2/packet_key_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/v9/modules/core/24-host/v2" + "github.com/cosmos/ibc-go/v10/modules/core/24-host/v2" ) // TestPacketCommitmentKey is primarily used to document the expected key output diff --git a/modules/core/ante/ante.go b/modules/core/ante/ante.go index d3620ebdec9..87cb0787b5c 100644 --- a/modules/core/ante/ante.go +++ b/modules/core/ante/ante.go @@ -5,11 +5,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - channeltypesv2 "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - "github.com/cosmos/ibc-go/v9/modules/core/keeper" + 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/v10/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/keeper" ) type RedundantRelayDecorator struct { diff --git a/modules/core/ante/ante_test.go b/modules/core/ante/ante_test.go index 3548a848dcb..db217216038 100644 --- a/modules/core/ante/ante_test.go +++ b/modules/core/ante/ante_test.go @@ -12,17 +12,17 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - channeltypesv2 "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - hostv2 "github.com/cosmos/ibc-go/v9/modules/core/24-host/v2" - "github.com/cosmos/ibc-go/v9/modules/core/ante" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - "github.com/cosmos/ibc-go/v9/testing/mock/v2" + 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" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + hostv2 "github.com/cosmos/ibc-go/v10/modules/core/24-host/v2" + "github.com/cosmos/ibc-go/v10/modules/core/ante" + "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" + "github.com/cosmos/ibc-go/v10/testing/mock/v2" ) type AnteTestSuite struct { diff --git a/modules/core/api/module.go b/modules/core/api/module.go index 48013e2301c..7fc11b3011c 100644 --- a/modules/core/api/module.go +++ b/modules/core/api/module.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - channeltypesv2 "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" + channeltypesv2 "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types" ) // IBCModule defines an interface that implements all the callbacks diff --git a/modules/core/api/router_test.go b/modules/core/api/router_test.go index 7258924b9b2..ae6c25f758a 100644 --- a/modules/core/api/router_test.go +++ b/modules/core/api/router_test.go @@ -1,8 +1,8 @@ package api_test import ( - "github.com/cosmos/ibc-go/v9/modules/core/api" - mockv2 "github.com/cosmos/ibc-go/v9/testing/mock/v2" + "github.com/cosmos/ibc-go/v10/modules/core/api" + mockv2 "github.com/cosmos/ibc-go/v10/testing/mock/v2" ) func (suite *APITestSuite) TestRouter() { diff --git a/modules/core/client/cli/cli.go b/modules/core/client/cli/cli.go index 7edaf621076..3285fd6bcbe 100644 --- a/modules/core/client/cli/cli.go +++ b/modules/core/client/cli/cli.go @@ -5,11 +5,11 @@ import ( "github.com/cosmos/cosmos-sdk/client" - ibcclient "github.com/cosmos/ibc-go/v9/modules/core/02-client" - connection "github.com/cosmos/ibc-go/v9/modules/core/03-connection" - channel "github.com/cosmos/ibc-go/v9/modules/core/04-channel" - channelv2 "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibcclient "github.com/cosmos/ibc-go/v10/modules/core/02-client" + connection "github.com/cosmos/ibc-go/v10/modules/core/03-connection" + channel "github.com/cosmos/ibc-go/v10/modules/core/04-channel" + channelv2 "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // GetTxCmd returns the transaction commands for this module diff --git a/modules/core/client/query.go b/modules/core/client/query.go index 815c81276f5..6cac04f96c9 100644 --- a/modules/core/client/query.go +++ b/modules/core/client/query.go @@ -9,9 +9,9 @@ import ( abci "github.com/cometbft/cometbft/abci/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // QueryTendermintProof performs an ABCI query with the given key and returns diff --git a/modules/core/errors/errors.go b/modules/core/errors/errors.go index 919852131d2..c2e2fca93a8 100644 --- a/modules/core/errors/errors.go +++ b/modules/core/errors/errors.go @@ -3,7 +3,7 @@ package errors import ( errorsmod "cosmossdk.io/errors" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) const codespace = exported.ModuleName diff --git a/modules/core/genesis.go b/modules/core/genesis.go index 2dd286343df..692fdd41eb5 100644 --- a/modules/core/genesis.go +++ b/modules/core/genesis.go @@ -3,13 +3,13 @@ package ibc import ( sdk "github.com/cosmos/cosmos-sdk/types" - client "github.com/cosmos/ibc-go/v9/modules/core/02-client" - clientv2 "github.com/cosmos/ibc-go/v9/modules/core/02-client/v2" - connection "github.com/cosmos/ibc-go/v9/modules/core/03-connection" - channel "github.com/cosmos/ibc-go/v9/modules/core/04-channel" - channelv2 "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2" - "github.com/cosmos/ibc-go/v9/modules/core/keeper" - "github.com/cosmos/ibc-go/v9/modules/core/types" + client "github.com/cosmos/ibc-go/v10/modules/core/02-client" + clientv2 "github.com/cosmos/ibc-go/v10/modules/core/02-client/v2" + connection "github.com/cosmos/ibc-go/v10/modules/core/03-connection" + channel "github.com/cosmos/ibc-go/v10/modules/core/04-channel" + channelv2 "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2" + "github.com/cosmos/ibc-go/v10/modules/core/keeper" + "github.com/cosmos/ibc-go/v10/modules/core/types" ) // InitGenesis initializes the ibc state from a provided genesis diff --git a/modules/core/genesis_test.go b/modules/core/genesis_test.go index 176030f33ce..e715f3ef653 100644 --- a/modules/core/genesis_test.go +++ b/modules/core/genesis_test.go @@ -10,19 +10,19 @@ import ( "github.com/cosmos/cosmos-sdk/codec" - ibc "github.com/cosmos/ibc-go/v9/modules/core" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - clientv2types "github.com/cosmos/ibc-go/v9/modules/core/02-client/v2/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - channelv2types "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - "github.com/cosmos/ibc-go/v9/modules/core/types" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - mockv2 "github.com/cosmos/ibc-go/v9/testing/mock/v2" - "github.com/cosmos/ibc-go/v9/testing/simapp" + ibc "github.com/cosmos/ibc-go/v10/modules/core" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + clientv2types "github.com/cosmos/ibc-go/v10/modules/core/02-client/v2/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + channelv2types "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/types" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v10/testing" + mockv2 "github.com/cosmos/ibc-go/v10/testing/mock/v2" + "github.com/cosmos/ibc-go/v10/testing/simapp" ) const ( diff --git a/modules/core/integration_test.go b/modules/core/integration_test.go index ae7191ab419..b9395bc33e6 100644 --- a/modules/core/integration_test.go +++ b/modules/core/integration_test.go @@ -1,11 +1,11 @@ package ibc_test import ( - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibctesting "github.com/cosmos/ibc-go/v10/testing" + ibcmock "github.com/cosmos/ibc-go/v10/testing/mock" ) // If packet receipts are pruned, it may be possible to double spend via a diff --git a/modules/core/internal/errors/errors.go b/modules/core/internal/errors/errors.go index 99acf8c02a5..448a698f8ed 100644 --- a/modules/core/internal/errors/errors.go +++ b/modules/core/internal/errors/errors.go @@ -3,7 +3,7 @@ package errors import ( sdk "github.com/cosmos/cosmos-sdk/types" - coretypes "github.com/cosmos/ibc-go/v9/modules/core/types" + coretypes "github.com/cosmos/ibc-go/v10/modules/core/types" ) // ConvertToErrorEvents converts all events to error events by appending the diff --git a/modules/core/internal/telemetry/client.go b/modules/core/internal/telemetry/client.go index 590b56a0f30..d1e577729a5 100644 --- a/modules/core/internal/telemetry/client.go +++ b/modules/core/internal/telemetry/client.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" - ibcmetrics "github.com/cosmos/ibc-go/v9/modules/core/metrics" + ibcmetrics "github.com/cosmos/ibc-go/v10/modules/core/metrics" ) func ReportCreateClient(clientType string) { diff --git a/modules/core/internal/telemetry/packet.go b/modules/core/internal/telemetry/packet.go index 89c8dac6369..4c2c1bcd384 100644 --- a/modules/core/internal/telemetry/packet.go +++ b/modules/core/internal/telemetry/packet.go @@ -5,8 +5,8 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibcmetrics "github.com/cosmos/ibc-go/v9/modules/core/metrics" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibcmetrics "github.com/cosmos/ibc-go/v10/modules/core/metrics" ) func ReportRecvPacket(packet types.Packet) { diff --git a/modules/core/internal/v2/telemetry/packet.go b/modules/core/internal/v2/telemetry/packet.go index a126f085725..e3a48ee981b 100644 --- a/modules/core/internal/v2/telemetry/packet.go +++ b/modules/core/internal/v2/telemetry/packet.go @@ -5,8 +5,8 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" - ibcmetrics "github.com/cosmos/ibc-go/v9/modules/core/metrics" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types" + ibcmetrics "github.com/cosmos/ibc-go/v10/modules/core/metrics" ) func ReportRecvPacket(packet types.Packet) { diff --git a/modules/core/keeper/events_test.go b/modules/core/keeper/events_test.go index 359322833f0..fc4cfb38a37 100644 --- a/modules/core/keeper/events_test.go +++ b/modules/core/keeper/events_test.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - internalerrors "github.com/cosmos/ibc-go/v9/modules/core/internal/errors" - "github.com/cosmos/ibc-go/v9/modules/core/types" + internalerrors "github.com/cosmos/ibc-go/v10/modules/core/internal/errors" + "github.com/cosmos/ibc-go/v10/modules/core/types" ) func TestConvertToErrorEvents(t *testing.T) { diff --git a/modules/core/keeper/expected_keeper.go b/modules/core/keeper/expected_keeper.go index 0f2320dd488..30f15e9e6c9 100644 --- a/modules/core/keeper/expected_keeper.go +++ b/modules/core/keeper/expected_keeper.go @@ -3,8 +3,8 @@ package keeper import ( "context" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) type PacketHandler interface { diff --git a/modules/core/keeper/keeper.go b/modules/core/keeper/keeper.go index 5691a419441..1785b9273e1 100644 --- a/modules/core/keeper/keeper.go +++ b/modules/core/keeper/keeper.go @@ -9,16 +9,16 @@ import ( "github.com/cosmos/cosmos-sdk/codec" - clientkeeper "github.com/cosmos/ibc-go/v9/modules/core/02-client/keeper" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - clientv2keeper "github.com/cosmos/ibc-go/v9/modules/core/02-client/v2/keeper" - connectionkeeper "github.com/cosmos/ibc-go/v9/modules/core/03-connection/keeper" - channelkeeper "github.com/cosmos/ibc-go/v9/modules/core/04-channel/keeper" - channelkeeperv2 "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/keeper" - portkeeper "github.com/cosmos/ibc-go/v9/modules/core/05-port/keeper" - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" - "github.com/cosmos/ibc-go/v9/modules/core/api" - "github.com/cosmos/ibc-go/v9/modules/core/types" + clientkeeper "github.com/cosmos/ibc-go/v10/modules/core/02-client/keeper" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + clientv2keeper "github.com/cosmos/ibc-go/v10/modules/core/02-client/v2/keeper" + connectionkeeper "github.com/cosmos/ibc-go/v10/modules/core/03-connection/keeper" + channelkeeper "github.com/cosmos/ibc-go/v10/modules/core/04-channel/keeper" + channelkeeperv2 "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/keeper" + portkeeper "github.com/cosmos/ibc-go/v10/modules/core/05-port/keeper" + porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" + "github.com/cosmos/ibc-go/v10/modules/core/api" + "github.com/cosmos/ibc-go/v10/modules/core/types" ) // Keeper defines each ICS keeper for IBC diff --git a/modules/core/keeper/keeper_test.go b/modules/core/keeper/keeper_test.go index 77d11f82c70..bbc554184fc 100644 --- a/modules/core/keeper/keeper_test.go +++ b/modules/core/keeper/keeper_test.go @@ -9,10 +9,10 @@ import ( "github.com/cosmos/cosmos-sdk/runtime" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibckeeper "github.com/cosmos/ibc-go/v9/modules/core/keeper" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibckeeper "github.com/cosmos/ibc-go/v10/modules/core/keeper" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) type KeeperTestSuite struct { diff --git a/modules/core/keeper/msg_server.go b/modules/core/keeper/msg_server.go index a6147bd0394..d4dfed63215 100644 --- a/modules/core/keeper/msg_server.go +++ b/modules/core/keeper/msg_server.go @@ -8,15 +8,15 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - clientv2types "github.com/cosmos/ibc-go/v9/modules/core/02-client/v2/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - "github.com/cosmos/ibc-go/v9/modules/core/04-channel/keeper" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - internalerrors "github.com/cosmos/ibc-go/v9/modules/core/internal/errors" - "github.com/cosmos/ibc-go/v9/modules/core/internal/telemetry" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + clientv2types "github.com/cosmos/ibc-go/v10/modules/core/02-client/v2/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v10/modules/core/04-channel/keeper" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + internalerrors "github.com/cosmos/ibc-go/v10/modules/core/internal/errors" + "github.com/cosmos/ibc-go/v10/modules/core/internal/telemetry" ) var ( diff --git a/modules/core/keeper/msg_server_test.go b/modules/core/keeper/msg_server_test.go index cd2f05f6094..6c40816c01c 100644 --- a/modules/core/keeper/msg_server_test.go +++ b/modules/core/keeper/msg_server_test.go @@ -12,19 +12,19 @@ import ( abci "github.com/cometbft/cometbft/abci/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - clientv2types "github.com/cosmos/ibc-go/v9/modules/core/02-client/v2/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - internalerrors "github.com/cosmos/ibc-go/v9/modules/core/internal/errors" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + clientv2types "github.com/cosmos/ibc-go/v10/modules/core/02-client/v2/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + internalerrors "github.com/cosmos/ibc-go/v10/modules/core/internal/errors" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v10/testing" + ibcmock "github.com/cosmos/ibc-go/v10/testing/mock" ) var ( diff --git a/modules/core/migrations/v7/genesis.go b/modules/core/migrations/v7/genesis.go index dccc918f75b..4270662a4f0 100644 --- a/modules/core/migrations/v7/genesis.go +++ b/modules/core/migrations/v7/genesis.go @@ -4,9 +4,9 @@ import ( "github.com/cosmos/cosmos-sdk/codec" genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types" - clientv7 "github.com/cosmos/ibc-go/v9/modules/core/02-client/migrations/v7" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" - "github.com/cosmos/ibc-go/v9/modules/core/types" + clientv7 "github.com/cosmos/ibc-go/v10/modules/core/02-client/migrations/v7" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/types" ) // MigrateGenesis accepts an exported IBC client genesis file and migrates it to: diff --git a/modules/core/migrations/v7/genesis_test.go b/modules/core/migrations/v7/genesis_test.go index 57ceb04973f..9a66a39a360 100644 --- a/modules/core/migrations/v7/genesis_test.go +++ b/modules/core/migrations/v7/genesis_test.go @@ -10,14 +10,14 @@ import ( "github.com/cosmos/cosmos-sdk/runtime" genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types" - ibcclient "github.com/cosmos/ibc-go/v9/modules/core/02-client" - clientv7 "github.com/cosmos/ibc-go/v9/modules/core/02-client/migrations/v7" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" - "github.com/cosmos/ibc-go/v9/modules/core/migrations/v7" - "github.com/cosmos/ibc-go/v9/modules/core/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + ibcclient "github.com/cosmos/ibc-go/v10/modules/core/02-client" + clientv7 "github.com/cosmos/ibc-go/v10/modules/core/02-client/migrations/v7" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/migrations/v7" + "github.com/cosmos/ibc-go/v10/modules/core/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) type MigrationsV7TestSuite struct { diff --git a/modules/core/module.go b/modules/core/module.go index 8355b6f4e23..4c0bce3c65a 100644 --- a/modules/core/module.go +++ b/modules/core/module.go @@ -17,22 +17,22 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - ibcclient "github.com/cosmos/ibc-go/v9/modules/core/02-client" - clientkeeper "github.com/cosmos/ibc-go/v9/modules/core/02-client/keeper" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - clientv2keeper "github.com/cosmos/ibc-go/v9/modules/core/02-client/v2/keeper" - clientv2types "github.com/cosmos/ibc-go/v9/modules/core/02-client/v2/types" - connectionkeeper "github.com/cosmos/ibc-go/v9/modules/core/03-connection/keeper" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - channelkeeper "github.com/cosmos/ibc-go/v9/modules/core/04-channel/keeper" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - channelkeeperv2 "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/keeper" - channeltypesv2 "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" - "github.com/cosmos/ibc-go/v9/modules/core/client/cli" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - "github.com/cosmos/ibc-go/v9/modules/core/keeper" - "github.com/cosmos/ibc-go/v9/modules/core/simulation" - "github.com/cosmos/ibc-go/v9/modules/core/types" + ibcclient "github.com/cosmos/ibc-go/v10/modules/core/02-client" + clientkeeper "github.com/cosmos/ibc-go/v10/modules/core/02-client/keeper" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + clientv2keeper "github.com/cosmos/ibc-go/v10/modules/core/02-client/v2/keeper" + clientv2types "github.com/cosmos/ibc-go/v10/modules/core/02-client/v2/types" + connectionkeeper "github.com/cosmos/ibc-go/v10/modules/core/03-connection/keeper" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + channelkeeper "github.com/cosmos/ibc-go/v10/modules/core/04-channel/keeper" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + channelkeeperv2 "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/keeper" + channeltypesv2 "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types" + "github.com/cosmos/ibc-go/v10/modules/core/client/cli" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/keeper" + "github.com/cosmos/ibc-go/v10/modules/core/simulation" + "github.com/cosmos/ibc-go/v10/modules/core/types" ) var ( diff --git a/modules/core/simulation/decoder.go b/modules/core/simulation/decoder.go index fe0677b4143..383230ee885 100644 --- a/modules/core/simulation/decoder.go +++ b/modules/core/simulation/decoder.go @@ -5,11 +5,11 @@ import ( "github.com/cosmos/cosmos-sdk/types/kv" - clientsim "github.com/cosmos/ibc-go/v9/modules/core/02-client/simulation" - connectionsim "github.com/cosmos/ibc-go/v9/modules/core/03-connection/simulation" - channelsim "github.com/cosmos/ibc-go/v9/modules/core/04-channel/simulation" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" - "github.com/cosmos/ibc-go/v9/modules/core/keeper" + clientsim "github.com/cosmos/ibc-go/v10/modules/core/02-client/simulation" + connectionsim "github.com/cosmos/ibc-go/v10/modules/core/03-connection/simulation" + channelsim "github.com/cosmos/ibc-go/v10/modules/core/04-channel/simulation" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/keeper" ) // NewDecodeStore returns a decoder function closure that unmarshals the KVPair's diff --git a/modules/core/simulation/decoder_test.go b/modules/core/simulation/decoder_test.go index 12d9dab6fc2..fefc0f263d7 100644 --- a/modules/core/simulation/decoder_test.go +++ b/modules/core/simulation/decoder_test.go @@ -8,13 +8,13 @@ import ( "github.com/cosmos/cosmos-sdk/types/kv" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/simulation" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - "github.com/cosmos/ibc-go/v9/testing/simapp" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/simulation" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" + "github.com/cosmos/ibc-go/v10/testing/simapp" ) func TestDecodeStore(t *testing.T) { diff --git a/modules/core/simulation/genesis.go b/modules/core/simulation/genesis.go index b4f6d6eb642..685458b6623 100644 --- a/modules/core/simulation/genesis.go +++ b/modules/core/simulation/genesis.go @@ -9,14 +9,14 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" - clientsims "github.com/cosmos/ibc-go/v9/modules/core/02-client/simulation" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - connectionsims "github.com/cosmos/ibc-go/v9/modules/core/03-connection/simulation" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - channelsims "github.com/cosmos/ibc-go/v9/modules/core/04-channel/simulation" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" - "github.com/cosmos/ibc-go/v9/modules/core/types" + clientsims "github.com/cosmos/ibc-go/v10/modules/core/02-client/simulation" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + connectionsims "github.com/cosmos/ibc-go/v10/modules/core/03-connection/simulation" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + channelsims "github.com/cosmos/ibc-go/v10/modules/core/04-channel/simulation" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/types" ) // Simulation parameter constants diff --git a/modules/core/simulation/genesis_test.go b/modules/core/simulation/genesis_test.go index 3a3d62d5c8a..58f68480611 100644 --- a/modules/core/simulation/genesis_test.go +++ b/modules/core/simulation/genesis_test.go @@ -15,9 +15,9 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" - "github.com/cosmos/ibc-go/v9/modules/core/simulation" - "github.com/cosmos/ibc-go/v9/modules/core/types" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/simulation" + "github.com/cosmos/ibc-go/v10/modules/core/types" ) // TestRandomizedGenState tests the normal scenario of applying RandomizedGenState. diff --git a/modules/core/simulation/proposals.go b/modules/core/simulation/proposals.go index e909d1fa1f0..4bd33f3f745 100644 --- a/modules/core/simulation/proposals.go +++ b/modules/core/simulation/proposals.go @@ -11,10 +11,10 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" ) // Simulation operation weights constants diff --git a/modules/core/simulation/proposals_test.go b/modules/core/simulation/proposals_test.go index b26bf9c94e6..4964643ac4b 100644 --- a/modules/core/simulation/proposals_test.go +++ b/modules/core/simulation/proposals_test.go @@ -13,10 +13,10 @@ import ( cmtproto "github.com/cometbft/cometbft/proto/tendermint/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - "github.com/cosmos/ibc-go/v9/modules/core/simulation" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v10/modules/core/simulation" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" ) func TestProposalMsgs(t *testing.T) { diff --git a/modules/core/types/codec.go b/modules/core/types/codec.go index a3519ca0efa..d5b8c63ee92 100644 --- a/modules/core/types/codec.go +++ b/modules/core/types/codec.go @@ -3,12 +3,12 @@ package types import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - clientv2types "github.com/cosmos/ibc-go/v9/modules/core/02-client/v2/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - channeltypesv2 "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + clientv2types "github.com/cosmos/ibc-go/v10/modules/core/02-client/v2/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/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" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" ) // RegisterInterfaces registers ibc types against interfaces using the global InterfaceRegistry. diff --git a/modules/core/types/genesis.go b/modules/core/types/genesis.go index dc7a617b4a2..fe8187a96ad 100644 --- a/modules/core/types/genesis.go +++ b/modules/core/types/genesis.go @@ -3,11 +3,11 @@ package types import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - clientv2types "github.com/cosmos/ibc-go/v9/modules/core/02-client/v2/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - channelv2types "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + clientv2types "github.com/cosmos/ibc-go/v10/modules/core/02-client/v2/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + channelv2types "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types" ) var _ codectypes.UnpackInterfacesMessage = (*GenesisState)(nil) diff --git a/modules/core/types/genesis.pb.go b/modules/core/types/genesis.pb.go index 5389b443a56..2c7976aa49c 100644 --- a/modules/core/types/genesis.pb.go +++ b/modules/core/types/genesis.pb.go @@ -7,11 +7,11 @@ import ( fmt "fmt" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" - types "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - types3 "github.com/cosmos/ibc-go/v9/modules/core/02-client/v2/types" - types1 "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - types2 "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - types4 "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" + types "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + types3 "github.com/cosmos/ibc-go/v10/modules/core/02-client/v2/types" + types1 "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + types2 "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + types4 "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types" io "io" math "math" math_bits "math/bits" diff --git a/modules/light-clients/06-solomachine/client_state.go b/modules/light-clients/06-solomachine/client_state.go index 4c92e976192..f74b72fb8a1 100644 --- a/modules/light-clients/06-solomachine/client_state.go +++ b/modules/light-clients/06-solomachine/client_state.go @@ -8,11 +8,11 @@ import ( cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" "github.com/cosmos/cosmos-sdk/types/tx/signing" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - commitmenttypesv2 "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types/v2" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + 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" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) var _ exported.ClientState = (*ClientState)(nil) diff --git a/modules/light-clients/06-solomachine/client_state_test.go b/modules/light-clients/06-solomachine/client_state_test.go index d70735b3b17..bb62e065a7e 100644 --- a/modules/light-clients/06-solomachine/client_state_test.go +++ b/modules/light-clients/06-solomachine/client_state_test.go @@ -4,8 +4,8 @@ import ( "bytes" "errors" - solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + solomachine "github.com/cosmos/ibc-go/v10/modules/light-clients/06-solomachine" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) const ( diff --git a/modules/light-clients/06-solomachine/codec.go b/modules/light-clients/06-solomachine/codec.go index e6f9a2c6184..596512c0067 100644 --- a/modules/light-clients/06-solomachine/codec.go +++ b/modules/light-clients/06-solomachine/codec.go @@ -7,7 +7,7 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" "github.com/cosmos/cosmos-sdk/types/tx/signing" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // RegisterInterfaces register the ibc channel submodule interfaces to protobuf diff --git a/modules/light-clients/06-solomachine/codec_test.go b/modules/light-clients/06-solomachine/codec_test.go index 744a4b1537c..a11af45d140 100644 --- a/modules/light-clients/06-solomachine/codec_test.go +++ b/modules/light-clients/06-solomachine/codec_test.go @@ -9,7 +9,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" - solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" + solomachine "github.com/cosmos/ibc-go/v10/modules/light-clients/06-solomachine" ) func TestCodecTypeRegistration(t *testing.T) { diff --git a/modules/light-clients/06-solomachine/consensus_state.go b/modules/light-clients/06-solomachine/consensus_state.go index 33c891dfd22..b518052ed2e 100644 --- a/modules/light-clients/06-solomachine/consensus_state.go +++ b/modules/light-clients/06-solomachine/consensus_state.go @@ -7,8 +7,8 @@ import ( cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) var _ exported.ConsensusState = (*ConsensusState)(nil) diff --git a/modules/light-clients/06-solomachine/consensus_state_test.go b/modules/light-clients/06-solomachine/consensus_state_test.go index 6a385dca309..20500feee04 100644 --- a/modules/light-clients/06-solomachine/consensus_state_test.go +++ b/modules/light-clients/06-solomachine/consensus_state_test.go @@ -3,9 +3,9 @@ package solomachine_test import ( "errors" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v10/modules/light-clients/06-solomachine" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func (suite *SoloMachineTestSuite) TestConsensusState() { diff --git a/modules/light-clients/06-solomachine/header.go b/modules/light-clients/06-solomachine/header.go index 8772c481b36..59bac7f0ca2 100644 --- a/modules/light-clients/06-solomachine/header.go +++ b/modules/light-clients/06-solomachine/header.go @@ -7,8 +7,8 @@ import ( cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // SentinelHeaderPath defines a placeholder path value used for headers in solomachine client updates diff --git a/modules/light-clients/06-solomachine/header_test.go b/modules/light-clients/06-solomachine/header_test.go index 29c2b6571ab..fa19011256f 100644 --- a/modules/light-clients/06-solomachine/header_test.go +++ b/modules/light-clients/06-solomachine/header_test.go @@ -3,9 +3,9 @@ package solomachine_test import ( "errors" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v10/modules/light-clients/06-solomachine" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func (suite *SoloMachineTestSuite) TestHeaderValidateBasic() { diff --git a/modules/light-clients/06-solomachine/light_client_module.go b/modules/light-clients/06-solomachine/light_client_module.go index 2ac9d66cf22..6c4684882af 100644 --- a/modules/light-clients/06-solomachine/light_client_module.go +++ b/modules/light-clients/06-solomachine/light_client_module.go @@ -8,8 +8,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) var _ exported.LightClientModule = (*LightClientModule)(nil) diff --git a/modules/light-clients/06-solomachine/light_client_module_test.go b/modules/light-clients/06-solomachine/light_client_module_test.go index fcefbf08044..50a903699fe 100644 --- a/modules/light-clients/06-solomachine/light_client_module_test.go +++ b/modules/light-clients/06-solomachine/light_client_module_test.go @@ -7,16 +7,16 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - commitmenttypesv2 "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types/v2" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + commitmenttypesv2 "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types/v2" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v10/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v10/testing" + ibcmock "github.com/cosmos/ibc-go/v10/testing/mock" ) const ( diff --git a/modules/light-clients/06-solomachine/misbehaviour.go b/modules/light-clients/06-solomachine/misbehaviour.go index d74b2461bf8..78db1813db8 100644 --- a/modules/light-clients/06-solomachine/misbehaviour.go +++ b/modules/light-clients/06-solomachine/misbehaviour.go @@ -5,8 +5,8 @@ import ( errorsmod "cosmossdk.io/errors" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) var _ exported.ClientMessage = (*Misbehaviour)(nil) diff --git a/modules/light-clients/06-solomachine/misbehaviour_handle.go b/modules/light-clients/06-solomachine/misbehaviour_handle.go index 3987a4823b0..967b8bb9d36 100644 --- a/modules/light-clients/06-solomachine/misbehaviour_handle.go +++ b/modules/light-clients/06-solomachine/misbehaviour_handle.go @@ -8,8 +8,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" - commitmenttypesv2 "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types/v2" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + commitmenttypesv2 "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types/v2" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // CheckForMisbehaviour returns true for type Misbehaviour (passed VerifyClientMessage check), otherwise returns false diff --git a/modules/light-clients/06-solomachine/misbehaviour_test.go b/modules/light-clients/06-solomachine/misbehaviour_test.go index d16ff879d60..54d3f69d2ca 100644 --- a/modules/light-clients/06-solomachine/misbehaviour_test.go +++ b/modules/light-clients/06-solomachine/misbehaviour_test.go @@ -3,9 +3,9 @@ package solomachine_test import ( "errors" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v10/modules/light-clients/06-solomachine" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func (suite *SoloMachineTestSuite) TestMisbehaviour() { diff --git a/modules/light-clients/06-solomachine/proof_test.go b/modules/light-clients/06-solomachine/proof_test.go index a4fc0aba031..7d11f8a5c95 100644 --- a/modules/light-clients/06-solomachine/proof_test.go +++ b/modules/light-clients/06-solomachine/proof_test.go @@ -6,7 +6,7 @@ import ( cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" "github.com/cosmos/cosmos-sdk/types/tx/signing" - solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" + solomachine "github.com/cosmos/ibc-go/v10/modules/light-clients/06-solomachine" ) func (suite *SoloMachineTestSuite) TestVerifySignature() { diff --git a/modules/light-clients/06-solomachine/proposal_handle.go b/modules/light-clients/06-solomachine/proposal_handle.go index a1a89a84279..7fd7c7875c8 100644 --- a/modules/light-clients/06-solomachine/proposal_handle.go +++ b/modules/light-clients/06-solomachine/proposal_handle.go @@ -9,8 +9,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // CheckSubstituteAndUpdateState verifies that the subject is allowed to be updated by diff --git a/modules/light-clients/06-solomachine/solomachine_test.go b/modules/light-clients/06-solomachine/solomachine_test.go index 395f8ec554b..19922961b72 100644 --- a/modules/light-clients/06-solomachine/solomachine_test.go +++ b/modules/light-clients/06-solomachine/solomachine_test.go @@ -14,14 +14,14 @@ import ( "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" "github.com/cosmos/cosmos-sdk/testutil/testdata" - transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - "github.com/cosmos/ibc-go/v9/testing/mock" + 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" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v10/modules/light-clients/06-solomachine" + ibctesting "github.com/cosmos/ibc-go/v10/testing" + "github.com/cosmos/ibc-go/v10/testing/mock" ) var channelIDSolomachine = "channel-on-solomachine" // channelID generated on solo machine side diff --git a/modules/light-clients/06-solomachine/store.go b/modules/light-clients/06-solomachine/store.go index a038a119051..8883c415976 100644 --- a/modules/light-clients/06-solomachine/store.go +++ b/modules/light-clients/06-solomachine/store.go @@ -7,8 +7,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" ) // getClientState retrieves the client state from the store using the provided KVStore and codec. diff --git a/modules/light-clients/06-solomachine/update.go b/modules/light-clients/06-solomachine/update.go index b3c1463028d..0fbc4323796 100644 --- a/modules/light-clients/06-solomachine/update.go +++ b/modules/light-clients/06-solomachine/update.go @@ -8,8 +8,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // VerifyClientMessage introspects the provided ClientMessage and checks its validity diff --git a/modules/light-clients/07-tendermint/client_state.go b/modules/light-clients/07-tendermint/client_state.go index c2ee64a3afa..f53e5d0bcef 100644 --- a/modules/light-clients/07-tendermint/client_state.go +++ b/modules/light-clients/07-tendermint/client_state.go @@ -16,11 +16,11 @@ import ( "github.com/cometbft/cometbft/light" cmttypes "github.com/cometbft/cometbft/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - commitmenttypesv2 "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types/v2" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + commitmenttypesv2 "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types/v2" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) var _ exported.ClientState = (*ClientState)(nil) diff --git a/modules/light-clients/07-tendermint/client_state_test.go b/modules/light-clients/07-tendermint/client_state_test.go index 74935533c7d..f113b7b2358 100644 --- a/modules/light-clients/07-tendermint/client_state_test.go +++ b/modules/light-clients/07-tendermint/client_state_test.go @@ -3,9 +3,9 @@ package tendermint_test import ( ics23 "github.com/cosmos/ics23/go" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" ) const ( diff --git a/modules/light-clients/07-tendermint/codec.go b/modules/light-clients/07-tendermint/codec.go index 1b35bed3aae..5425d0fd4d2 100644 --- a/modules/light-clients/07-tendermint/codec.go +++ b/modules/light-clients/07-tendermint/codec.go @@ -3,7 +3,7 @@ package tendermint import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // RegisterInterfaces registers the tendermint concrete client-related diff --git a/modules/light-clients/07-tendermint/codec_test.go b/modules/light-clients/07-tendermint/codec_test.go index 6e3f07e33ff..f0ee952eee5 100644 --- a/modules/light-clients/07-tendermint/codec_test.go +++ b/modules/light-clients/07-tendermint/codec_test.go @@ -9,7 +9,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" - tendermint "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + tendermint "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" ) func TestCodecTypeRegistration(t *testing.T) { diff --git a/modules/light-clients/07-tendermint/consensus_state.go b/modules/light-clients/07-tendermint/consensus_state.go index df82b8a8e5b..2496cdc08f7 100644 --- a/modules/light-clients/07-tendermint/consensus_state.go +++ b/modules/light-clients/07-tendermint/consensus_state.go @@ -8,9 +8,9 @@ import ( cmtbytes "github.com/cometbft/cometbft/libs/bytes" cmttypes "github.com/cometbft/cometbft/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) var _ exported.ConsensusState = (*ConsensusState)(nil) diff --git a/modules/light-clients/07-tendermint/consensus_state_test.go b/modules/light-clients/07-tendermint/consensus_state_test.go index fe086555a50..137c2d0f07d 100644 --- a/modules/light-clients/07-tendermint/consensus_state_test.go +++ b/modules/light-clients/07-tendermint/consensus_state_test.go @@ -3,9 +3,9 @@ package tendermint_test import ( "time" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" ) func (suite *TendermintTestSuite) TestConsensusStateValidateBasic() { diff --git a/modules/light-clients/07-tendermint/header.go b/modules/light-clients/07-tendermint/header.go index f388f968827..982e9cfd320 100644 --- a/modules/light-clients/07-tendermint/header.go +++ b/modules/light-clients/07-tendermint/header.go @@ -8,9 +8,9 @@ import ( cmttypes "github.com/cometbft/cometbft/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) var _ exported.ClientMessage = (*Header)(nil) diff --git a/modules/light-clients/07-tendermint/header_test.go b/modules/light-clients/07-tendermint/header_test.go index fcdb3403984..d68678126c7 100644 --- a/modules/light-clients/07-tendermint/header_test.go +++ b/modules/light-clients/07-tendermint/header_test.go @@ -6,9 +6,9 @@ import ( cmtprotocrypto "github.com/cometbft/cometbft/proto/tendermint/crypto" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" ) func (suite *TendermintTestSuite) TestGetHeight() { diff --git a/modules/light-clients/07-tendermint/light_client_module.go b/modules/light-clients/07-tendermint/light_client_module.go index 2b45ba7d917..c50cb1f27c7 100644 --- a/modules/light-clients/07-tendermint/light_client_module.go +++ b/modules/light-clients/07-tendermint/light_client_module.go @@ -8,9 +8,9 @@ import ( "github.com/cosmos/cosmos-sdk/codec" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) var _ exported.LightClientModule = (*LightClientModule)(nil) diff --git a/modules/light-clients/07-tendermint/light_client_module_test.go b/modules/light-clients/07-tendermint/light_client_module_test.go index 5ca14aca0ce..1b451d57b41 100644 --- a/modules/light-clients/07-tendermint/light_client_module_test.go +++ b/modules/light-clients/07-tendermint/light_client_module_test.go @@ -11,16 +11,16 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" - transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" + 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" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + "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" + ibcmock "github.com/cosmos/ibc-go/v10/testing/mock" ) var ( diff --git a/modules/light-clients/07-tendermint/migrations/expected_keepers.go b/modules/light-clients/07-tendermint/migrations/expected_keepers.go index 48ff97e416d..3b8e8d4a2f0 100644 --- a/modules/light-clients/07-tendermint/migrations/expected_keepers.go +++ b/modules/light-clients/07-tendermint/migrations/expected_keepers.go @@ -6,7 +6,7 @@ import ( "cosmossdk.io/log" storetypes "cosmossdk.io/store/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // ClientKeeper expected account IBC client keeper diff --git a/modules/light-clients/07-tendermint/migrations/migrations.go b/modules/light-clients/07-tendermint/migrations/migrations.go index c5457f6e684..d1be65ea632 100644 --- a/modules/light-clients/07-tendermint/migrations/migrations.go +++ b/modules/light-clients/07-tendermint/migrations/migrations.go @@ -7,9 +7,9 @@ import ( "github.com/cosmos/cosmos-sdk/codec" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" ) // PruneExpiredConsensusStates prunes all expired tendermint consensus states. This function diff --git a/modules/light-clients/07-tendermint/migrations/migrations_test.go b/modules/light-clients/07-tendermint/migrations/migrations_test.go index 65161c391ce..395dd3a8b91 100644 --- a/modules/light-clients/07-tendermint/migrations/migrations_test.go +++ b/modules/light-clients/07-tendermint/migrations/migrations_test.go @@ -6,12 +6,12 @@ import ( testifysuite "github.com/stretchr/testify/suite" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - ibctmmigrations "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint/migrations" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" + ibctmmigrations "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint/migrations" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) type MigrationsTestSuite struct { diff --git a/modules/light-clients/07-tendermint/misbehaviour.go b/modules/light-clients/07-tendermint/misbehaviour.go index 86d1de187bc..c0ead89c659 100644 --- a/modules/light-clients/07-tendermint/misbehaviour.go +++ b/modules/light-clients/07-tendermint/misbehaviour.go @@ -8,9 +8,9 @@ import ( cmtproto "github.com/cometbft/cometbft/proto/tendermint/types" cmttypes "github.com/cometbft/cometbft/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) var _ exported.ClientMessage = (*Misbehaviour)(nil) diff --git a/modules/light-clients/07-tendermint/misbehaviour_handle.go b/modules/light-clients/07-tendermint/misbehaviour_handle.go index 58707ac2bbe..f95e2caf29d 100644 --- a/modules/light-clients/07-tendermint/misbehaviour_handle.go +++ b/modules/light-clients/07-tendermint/misbehaviour_handle.go @@ -14,8 +14,8 @@ import ( cmttypes "github.com/cometbft/cometbft/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // CheckForMisbehaviour detects duplicate height misbehaviour and BFT time violation misbehaviour diff --git a/modules/light-clients/07-tendermint/misbehaviour_handle_test.go b/modules/light-clients/07-tendermint/misbehaviour_handle_test.go index ce49cb1ab89..e2ed15ef338 100644 --- a/modules/light-clients/07-tendermint/misbehaviour_handle_test.go +++ b/modules/light-clients/07-tendermint/misbehaviour_handle_test.go @@ -8,11 +8,11 @@ import ( cmttypes "github.com/cometbft/cometbft/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v10/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func (suite *TendermintTestSuite) TestVerifyMisbehaviour() { diff --git a/modules/light-clients/07-tendermint/misbehaviour_test.go b/modules/light-clients/07-tendermint/misbehaviour_test.go index fe5efaea67f..553c7ad1228 100644 --- a/modules/light-clients/07-tendermint/misbehaviour_test.go +++ b/modules/light-clients/07-tendermint/misbehaviour_test.go @@ -10,10 +10,10 @@ import ( cmtproto "github.com/cometbft/cometbft/proto/tendermint/types" cmttypes "github.com/cometbft/cometbft/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "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" ) func (suite *TendermintTestSuite) TestMisbehaviour() { diff --git a/modules/light-clients/07-tendermint/proposal_handle.go b/modules/light-clients/07-tendermint/proposal_handle.go index ae83014cfec..a32f8f85747 100644 --- a/modules/light-clients/07-tendermint/proposal_handle.go +++ b/modules/light-clients/07-tendermint/proposal_handle.go @@ -10,8 +10,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // CheckSubstituteAndUpdateState will try to update the client with the state of the diff --git a/modules/light-clients/07-tendermint/proposal_handle_test.go b/modules/light-clients/07-tendermint/proposal_handle_test.go index e114dc3f50e..4a89bcbfb8d 100644 --- a/modules/light-clients/07-tendermint/proposal_handle_test.go +++ b/modules/light-clients/07-tendermint/proposal_handle_test.go @@ -3,10 +3,10 @@ package tendermint_test import ( "time" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "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" ) var frozenHeight = clienttypes.NewHeight(0, 1) diff --git a/modules/light-clients/07-tendermint/store.go b/modules/light-clients/07-tendermint/store.go index 953ec5eab2a..b0ae72ee002 100644 --- a/modules/light-clients/07-tendermint/store.go +++ b/modules/light-clients/07-tendermint/store.go @@ -12,9 +12,9 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) /* diff --git a/modules/light-clients/07-tendermint/store_test.go b/modules/light-clients/07-tendermint/store_test.go index e6155284c8a..ad842893340 100644 --- a/modules/light-clients/07-tendermint/store_test.go +++ b/modules/light-clients/07-tendermint/store_test.go @@ -4,13 +4,13 @@ import ( "math" "time" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" - tendermint "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v10/modules/light-clients/06-solomachine" + tendermint "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func (suite *TendermintTestSuite) TestGetConsensusState() { diff --git a/modules/light-clients/07-tendermint/tendermint.pb.go b/modules/light-clients/07-tendermint/tendermint.pb.go index b2224d12c44..0bc5e70eaca 100644 --- a/modules/light-clients/07-tendermint/tendermint.pb.go +++ b/modules/light-clients/07-tendermint/tendermint.pb.go @@ -10,8 +10,8 @@ import ( _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" github_com_cosmos_gogoproto_types "github.com/cosmos/gogoproto/types" - types "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - types1 "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + types "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + types1 "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" _go "github.com/cosmos/ics23/go" _ "google.golang.org/protobuf/types/known/durationpb" _ "google.golang.org/protobuf/types/known/timestamppb" diff --git a/modules/light-clients/07-tendermint/tendermint_test.go b/modules/light-clients/07-tendermint/tendermint_test.go index 0060def8526..f122583d7bc 100644 --- a/modules/light-clients/07-tendermint/tendermint_test.go +++ b/modules/light-clients/07-tendermint/tendermint_test.go @@ -12,10 +12,10 @@ import ( cmtbytes "github.com/cometbft/cometbft/libs/bytes" cmttypes "github.com/cometbft/cometbft/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - "github.com/cosmos/ibc-go/v9/testing/simapp" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v10/testing" + "github.com/cosmos/ibc-go/v10/testing/simapp" ) const ( diff --git a/modules/light-clients/07-tendermint/update.go b/modules/light-clients/07-tendermint/update.go index 8a47a17a131..c595f5626dd 100644 --- a/modules/light-clients/07-tendermint/update.go +++ b/modules/light-clients/07-tendermint/update.go @@ -14,10 +14,10 @@ import ( "github.com/cometbft/cometbft/light" cmttypes "github.com/cometbft/cometbft/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // VerifyClientMessage checks if the clientMessage is of type Header or Misbehaviour and verifies the message diff --git a/modules/light-clients/07-tendermint/update_test.go b/modules/light-clients/07-tendermint/update_test.go index 05ed8cfb2d2..e4679f043a3 100644 --- a/modules/light-clients/07-tendermint/update_test.go +++ b/modules/light-clients/07-tendermint/update_test.go @@ -10,12 +10,12 @@ import ( cmttypes "github.com/cometbft/cometbft/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "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" ) func (suite *TendermintTestSuite) TestVerifyHeader() { diff --git a/modules/light-clients/07-tendermint/upgrade.go b/modules/light-clients/07-tendermint/upgrade.go index 9148b4f7c77..78bea233412 100644 --- a/modules/light-clients/07-tendermint/upgrade.go +++ b/modules/light-clients/07-tendermint/upgrade.go @@ -10,10 +10,10 @@ import ( "github.com/cosmos/cosmos-sdk/codec" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - commitmenttypesv2 "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types/v2" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + commitmenttypesv2 "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types/v2" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // VerifyUpgradeAndUpdateState checks if the upgraded client has been committed by the current client diff --git a/modules/light-clients/07-tendermint/upgrade_test.go b/modules/light-clients/07-tendermint/upgrade_test.go index 5fcda9454d3..e28e7deb987 100644 --- a/modules/light-clients/07-tendermint/upgrade_test.go +++ b/modules/light-clients/07-tendermint/upgrade_test.go @@ -5,12 +5,12 @@ import ( upgradetypes "cosmossdk.io/x/upgrade/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v10/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func (suite *TendermintTestSuite) TestVerifyUpgrade() { diff --git a/modules/light-clients/08-wasm/client/cli/query.go b/modules/light-clients/08-wasm/client/cli/query.go index 9a69a01736d..38390d1d317 100644 --- a/modules/light-clients/08-wasm/client/cli/query.go +++ b/modules/light-clients/08-wasm/client/cli/query.go @@ -11,7 +11,7 @@ import ( "github.com/cosmos/cosmos-sdk/version" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // getCmdCode defines the command to query wasm code for given checksum. diff --git a/modules/light-clients/08-wasm/client/cli/tx.go b/modules/light-clients/08-wasm/client/cli/tx.go index da371b37f09..6a1fa9f8d89 100644 --- a/modules/light-clients/08-wasm/client/cli/tx.go +++ b/modules/light-clients/08-wasm/client/cli/tx.go @@ -17,7 +17,7 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" ) const FlagAuthority = "authority" diff --git a/modules/light-clients/08-wasm/go.mod b/modules/light-clients/08-wasm/go.mod index 01ef86eee7f..1b08bccc37d 100644 --- a/modules/light-clients/08-wasm/go.mod +++ b/modules/light-clients/08-wasm/go.mod @@ -4,7 +4,7 @@ go 1.23.6 replace ( github.com/cosmos/ibc-go/modules/light-clients/08-wasm/blsverifier => ./blsverifier - github.com/cosmos/ibc-go/v9 => ../../../ + github.com/cosmos/ibc-go/v10 => ../../../ ) replace github.com/syndtr/goleveldb => github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 @@ -30,7 +30,7 @@ require ( github.com/cosmos/cosmos-sdk v0.50.11 github.com/cosmos/gogoproto v1.7.0 github.com/cosmos/ibc-go/modules/light-clients/08-wasm/blsverifier v0.0.0 - github.com/cosmos/ibc-go/v9 v9.0.0 + github.com/cosmos/ibc-go/v10 v10.0.0 github.com/golang/protobuf v1.5.4 github.com/grpc-ecosystem/grpc-gateway v1.16.0 github.com/spf13/cast v1.7.0 diff --git a/modules/light-clients/08-wasm/internal/types/store_test.go b/modules/light-clients/08-wasm/internal/types/store_test.go index f954e2290d3..abddd2c530a 100644 --- a/modules/light-clients/08-wasm/internal/types/store_test.go +++ b/modules/light-clients/08-wasm/internal/types/store_test.go @@ -18,10 +18,10 @@ import ( wasmtesting "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/testing" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/testing/simapp" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func init() { diff --git a/modules/light-clients/08-wasm/keeper/contract_keeper.go b/modules/light-clients/08-wasm/keeper/contract_keeper.go index e812f2570e4..39542311aec 100644 --- a/modules/light-clients/08-wasm/keeper/contract_keeper.go +++ b/modules/light-clients/08-wasm/keeper/contract_keeper.go @@ -17,9 +17,9 @@ import ( internaltypes "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/internal/types" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) var ( diff --git a/modules/light-clients/08-wasm/keeper/contract_keeper_test.go b/modules/light-clients/08-wasm/keeper/contract_keeper_test.go index c22ffd4a378..a633cf28a6f 100644 --- a/modules/light-clients/08-wasm/keeper/contract_keeper_test.go +++ b/modules/light-clients/08-wasm/keeper/contract_keeper_test.go @@ -8,10 +8,10 @@ import ( wasmtesting "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/testing" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" ) func (suite *KeeperTestSuite) TestWasmInstantiate() { diff --git a/modules/light-clients/08-wasm/keeper/keeper.go b/modules/light-clients/08-wasm/keeper/keeper.go index 5e05a7a44c4..8159bf582b7 100644 --- a/modules/light-clients/08-wasm/keeper/keeper.go +++ b/modules/light-clients/08-wasm/keeper/keeper.go @@ -16,8 +16,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // Keeper defines the 08-wasm keeper diff --git a/modules/light-clients/08-wasm/keeper/keeper_test.go b/modules/light-clients/08-wasm/keeper/keeper_test.go index dacea997a09..5b2fd37a2ba 100644 --- a/modules/light-clients/08-wasm/keeper/keeper_test.go +++ b/modules/light-clients/08-wasm/keeper/keeper_test.go @@ -23,11 +23,11 @@ import ( wasmtesting "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/testing" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/testing/simapp" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "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" ) const ( diff --git a/modules/light-clients/08-wasm/keeper/msg_server.go b/modules/light-clients/08-wasm/keeper/msg_server.go index d08063d6630..bbcd839b13a 100644 --- a/modules/light-clients/08-wasm/keeper/msg_server.go +++ b/modules/light-clients/08-wasm/keeper/msg_server.go @@ -9,7 +9,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" ) var _ types.MsgServer = (*Keeper)(nil) diff --git a/modules/light-clients/08-wasm/keeper/msg_server_test.go b/modules/light-clients/08-wasm/keeper/msg_server_test.go index 250f2f7c967..f54dbf6f5c1 100644 --- a/modules/light-clients/08-wasm/keeper/msg_server_test.go +++ b/modules/light-clients/08-wasm/keeper/msg_server_test.go @@ -14,10 +14,10 @@ import ( wasmtesting "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/testing" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func (suite *KeeperTestSuite) TestMsgStoreCode() { diff --git a/modules/light-clients/08-wasm/keeper/querier_test.go b/modules/light-clients/08-wasm/keeper/querier_test.go index e1b31efe032..833e25823b8 100644 --- a/modules/light-clients/08-wasm/keeper/querier_test.go +++ b/modules/light-clients/08-wasm/keeper/querier_test.go @@ -14,9 +14,9 @@ import ( "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/keeper" wasmtesting "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/testing" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) type CustomQuery struct { diff --git a/modules/light-clients/08-wasm/light_client_module.go b/modules/light-clients/08-wasm/light_client_module.go index ffa3c2b097a..32ed4deb03f 100644 --- a/modules/light-clients/08-wasm/light_client_module.go +++ b/modules/light-clients/08-wasm/light_client_module.go @@ -14,10 +14,10 @@ import ( internaltypes "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/internal/types" wasmkeeper "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/keeper" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - commitmenttypesv2 "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types/v2" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + 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" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) var _ exported.LightClientModule = (*LightClientModule)(nil) diff --git a/modules/light-clients/08-wasm/light_client_module_test.go b/modules/light-clients/08-wasm/light_client_module_test.go index 43ae4027ae4..06c06cfa6c2 100644 --- a/modules/light-clients/08-wasm/light_client_module_test.go +++ b/modules/light-clients/08-wasm/light_client_module_test.go @@ -14,15 +14,15 @@ import ( internaltypes "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/internal/types" wasmtesting "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/testing" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v10/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v10/testing" + ibcmock "github.com/cosmos/ibc-go/v10/testing/mock" ) const ( diff --git a/modules/light-clients/08-wasm/testing/simapp/ante_handler.go b/modules/light-clients/08-wasm/testing/simapp/ante_handler.go index a95f9657b5f..e815598fafc 100644 --- a/modules/light-clients/08-wasm/testing/simapp/ante_handler.go +++ b/modules/light-clients/08-wasm/testing/simapp/ante_handler.go @@ -6,9 +6,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/x/auth/ante" - ibcante "github.com/cosmos/ibc-go/v9/modules/core/ante" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - "github.com/cosmos/ibc-go/v9/modules/core/keeper" + ibcante "github.com/cosmos/ibc-go/v10/modules/core/ante" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + "github.com/cosmos/ibc-go/v10/modules/core/keeper" ) // HandlerOptions extend the SDK's AnteHandler options by requiring the IBC keeper. diff --git a/modules/light-clients/08-wasm/testing/simapp/app.go b/modules/light-clients/08-wasm/testing/simapp/app.go index a4f765b7433..5f58e3d1f9d 100644 --- a/modules/light-clients/08-wasm/testing/simapp/app.go +++ b/modules/light-clients/08-wasm/testing/simapp/app.go @@ -109,31 +109,31 @@ import ( "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/blsverifier" wasmkeeper "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/keeper" wasmtypes "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - ica "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts" - icacontroller "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller" - icacontrollerkeeper "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/keeper" - icacontrollertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - icahost "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host" - icahostkeeper "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/keeper" - icahosttypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - ibcfee "github.com/cosmos/ibc-go/v9/modules/apps/29-fee" - ibcfeekeeper "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/keeper" - ibcfeetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer" - ibctransferkeeper "github.com/cosmos/ibc-go/v9/modules/apps/transfer/keeper" - ibctransfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - transferv2 "github.com/cosmos/ibc-go/v9/modules/apps/transfer/v2" - ibc "github.com/cosmos/ibc-go/v9/modules/core" - ibcclienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - ibcconnectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" - ibcapi "github.com/cosmos/ibc-go/v9/modules/core/api" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibckeeper "github.com/cosmos/ibc-go/v9/modules/core/keeper" - solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" + ica "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts" + icacontroller "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller" + icacontrollerkeeper "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/keeper" + icacontrollertypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + icahost "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host" + icahostkeeper "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/keeper" + icahosttypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + ibcfee "github.com/cosmos/ibc-go/v10/modules/apps/29-fee" + ibcfeekeeper "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/keeper" + ibcfeetypes "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer" + ibctransferkeeper "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" + ibcclienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + ibcconnectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + 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" + solomachine "github.com/cosmos/ibc-go/v10/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" + ibcmock "github.com/cosmos/ibc-go/v10/testing/mock" ) const appName = "SimApp" diff --git a/modules/light-clients/08-wasm/testing/values.go b/modules/light-clients/08-wasm/testing/values.go index 2e78b815710..c13b08fde83 100644 --- a/modules/light-clients/08-wasm/testing/values.go +++ b/modules/light-clients/08-wasm/testing/values.go @@ -7,10 +7,10 @@ import ( "github.com/cosmos/cosmos-sdk/codec" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) var ( diff --git a/modules/light-clients/08-wasm/testing/wasm_endpoint.go b/modules/light-clients/08-wasm/testing/wasm_endpoint.go index a6cfa930420..75107d869cb 100644 --- a/modules/light-clients/08-wasm/testing/wasm_endpoint.go +++ b/modules/light-clients/08-wasm/testing/wasm_endpoint.go @@ -4,8 +4,8 @@ import ( "github.com/stretchr/testify/require" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) // WasmEndpoint is a wrapper around the ibctesting pkg Endpoint struct. diff --git a/modules/light-clients/08-wasm/types/client_message.go b/modules/light-clients/08-wasm/types/client_message.go index a3dd719f600..90784753b3e 100644 --- a/modules/light-clients/08-wasm/types/client_message.go +++ b/modules/light-clients/08-wasm/types/client_message.go @@ -3,7 +3,7 @@ package types import ( errorsmod "cosmossdk.io/errors" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) var _ exported.ClientMessage = &ClientMessage{} diff --git a/modules/light-clients/08-wasm/types/client_state.go b/modules/light-clients/08-wasm/types/client_state.go index c1e6cbfb597..6d7604231ad 100644 --- a/modules/light-clients/08-wasm/types/client_state.go +++ b/modules/light-clients/08-wasm/types/client_state.go @@ -3,8 +3,8 @@ package types import ( errorsmod "cosmossdk.io/errors" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) var _ exported.ClientState = (*ClientState)(nil) diff --git a/modules/light-clients/08-wasm/types/client_state_test.go b/modules/light-clients/08-wasm/types/client_state_test.go index f042e0183b5..b4a5d06e397 100644 --- a/modules/light-clients/08-wasm/types/client_state_test.go +++ b/modules/light-clients/08-wasm/types/client_state_test.go @@ -5,7 +5,7 @@ import ( wasmtesting "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/testing" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" ) func (suite *TypesTestSuite) TestValidate() { diff --git a/modules/light-clients/08-wasm/types/codec.go b/modules/light-clients/08-wasm/types/codec.go index 73f2f51a3a1..3784b998da6 100644 --- a/modules/light-clients/08-wasm/types/codec.go +++ b/modules/light-clients/08-wasm/types/codec.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/msgservice" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // RegisterInterfaces registers the Wasm concrete client-related diff --git a/modules/light-clients/08-wasm/types/consensus_state.go b/modules/light-clients/08-wasm/types/consensus_state.go index 6894b60af45..d5b712aa6d5 100644 --- a/modules/light-clients/08-wasm/types/consensus_state.go +++ b/modules/light-clients/08-wasm/types/consensus_state.go @@ -3,7 +3,7 @@ package types import ( errorsmod "cosmossdk.io/errors" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) var _ exported.ConsensusState = (*ConsensusState)(nil) diff --git a/modules/light-clients/08-wasm/types/contract_api.go b/modules/light-clients/08-wasm/types/contract_api.go index 5e987738b9e..b0a98ea9202 100644 --- a/modules/light-clients/08-wasm/types/contract_api.go +++ b/modules/light-clients/08-wasm/types/contract_api.go @@ -1,8 +1,8 @@ package types import ( - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - commitmenttypesv2 "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types/v2" + 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" ) // InstantiateMessage is the message that is sent to the contract's instantiate entry point. diff --git a/modules/light-clients/08-wasm/types/expected_keepers.go b/modules/light-clients/08-wasm/types/expected_keepers.go index a0a469b4c40..ab2b43560ba 100644 --- a/modules/light-clients/08-wasm/types/expected_keepers.go +++ b/modules/light-clients/08-wasm/types/expected_keepers.go @@ -5,7 +5,7 @@ import ( storetypes "cosmossdk.io/store/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // ClientKeeper defines the expected client keeper diff --git a/modules/light-clients/08-wasm/types/msgs.go b/modules/light-clients/08-wasm/types/msgs.go index 35ab74ec6d0..8c17b8fdc83 100644 --- a/modules/light-clients/08-wasm/types/msgs.go +++ b/modules/light-clients/08-wasm/types/msgs.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" ) var ( diff --git a/modules/light-clients/08-wasm/types/msgs_test.go b/modules/light-clients/08-wasm/types/msgs_test.go index a1c61bb2ca9..b49ec543b83 100644 --- a/modules/light-clients/08-wasm/types/msgs_test.go +++ b/modules/light-clients/08-wasm/types/msgs_test.go @@ -12,9 +12,9 @@ import ( wasmtesting "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/testing" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func TestMsgStoreCodeValidateBasic(t *testing.T) { diff --git a/modules/light-clients/08-wasm/types/store.go b/modules/light-clients/08-wasm/types/store.go index 8443c4e2d1d..facce62830c 100644 --- a/modules/light-clients/08-wasm/types/store.go +++ b/modules/light-clients/08-wasm/types/store.go @@ -10,8 +10,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" ) // GetClientState retrieves the client state from the store using the provided KVStore and codec. diff --git a/modules/light-clients/08-wasm/types/types_test.go b/modules/light-clients/08-wasm/types/types_test.go index f3c1b51afcb..451444808ed 100644 --- a/modules/light-clients/08-wasm/types/types_test.go +++ b/modules/light-clients/08-wasm/types/types_test.go @@ -13,7 +13,7 @@ import ( simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/testing/simapp" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) const ( diff --git a/modules/light-clients/08-wasm/types/validation.go b/modules/light-clients/08-wasm/types/validation.go index 79b7b59890a..6020d1c4a71 100644 --- a/modules/light-clients/08-wasm/types/validation.go +++ b/modules/light-clients/08-wasm/types/validation.go @@ -5,8 +5,8 @@ import ( errorsmod "cosmossdk.io/errors" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" ) // MaxWasmSize denotes the maximum size (in bytes) a contract is allowed to be. diff --git a/modules/light-clients/08-wasm/types/validation_test.go b/modules/light-clients/08-wasm/types/validation_test.go index 16c5ed8cbc3..18fadf8cdf2 100644 --- a/modules/light-clients/08-wasm/types/validation_test.go +++ b/modules/light-clients/08-wasm/types/validation_test.go @@ -10,8 +10,8 @@ import ( wasmtesting "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/testing" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func TestValidateWasmCode(t *testing.T) { diff --git a/modules/light-clients/08-wasm/types/wasm.pb.go b/modules/light-clients/08-wasm/types/wasm.pb.go index d64874e9714..a0cbd7e10b2 100644 --- a/modules/light-clients/08-wasm/types/wasm.pb.go +++ b/modules/light-clients/08-wasm/types/wasm.pb.go @@ -7,7 +7,7 @@ import ( fmt "fmt" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" - types "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + types "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" io "io" math "math" math_bits "math/bits" diff --git a/modules/light-clients/08-wasm/wasm_test.go b/modules/light-clients/08-wasm/wasm_test.go index 09bccba6023..fca3e1792db 100644 --- a/modules/light-clients/08-wasm/wasm_test.go +++ b/modules/light-clients/08-wasm/wasm_test.go @@ -20,11 +20,11 @@ import ( wasmtesting "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/testing" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/testing/simapp" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "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" ) type WasmTestSuite struct { diff --git a/modules/light-clients/09-localhost/light_client_module.go b/modules/light-clients/09-localhost/light_client_module.go index 847d9f7fcce..d40b0a89f7b 100644 --- a/modules/light-clients/09-localhost/light_client_module.go +++ b/modules/light-clients/09-localhost/light_client_module.go @@ -10,12 +10,12 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - commitmenttypesv2 "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types/v2" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + commitmenttypesv2 "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types/v2" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v10/modules/core/errors" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) const ( diff --git a/modules/light-clients/09-localhost/light_client_module_test.go b/modules/light-clients/09-localhost/light_client_module_test.go index 822a8d4b6f5..4bc976dc701 100644 --- a/modules/light-clients/09-localhost/light_client_module_test.go +++ b/modules/light-clients/09-localhost/light_client_module_test.go @@ -8,15 +8,15 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - localhost "github.com/cosmos/ibc-go/v9/modules/light-clients/09-localhost" - ibctesting "github.com/cosmos/ibc-go/v9/testing" - "github.com/cosmos/ibc-go/v9/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + localhost "github.com/cosmos/ibc-go/v10/modules/light-clients/09-localhost" + ibctesting "github.com/cosmos/ibc-go/v10/testing" + "github.com/cosmos/ibc-go/v10/testing/mock" ) type LocalhostTestSuite struct { diff --git a/proto/ibc/applications/fee/v1/ack.proto b/proto/ibc/applications/fee/v1/ack.proto index 28c7ff7dfb3..2d2a3f7fc98 100644 --- a/proto/ibc/applications/fee/v1/ack.proto +++ b/proto/ibc/applications/fee/v1/ack.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.fee.v1; -option go_package = "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types"; // IncentivizedAcknowledgement is the acknowledgement format to be used by applications wrapped in the fee middleware message IncentivizedAcknowledgement { diff --git a/proto/ibc/applications/fee/v1/fee.proto b/proto/ibc/applications/fee/v1/fee.proto index d616b382750..114a588ae4c 100644 --- a/proto/ibc/applications/fee/v1/fee.proto +++ b/proto/ibc/applications/fee/v1/fee.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.fee.v1; -option go_package = "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types"; import "amino/amino.proto"; import "cosmos/base/v1beta1/coin.proto"; diff --git a/proto/ibc/applications/fee/v1/genesis.proto b/proto/ibc/applications/fee/v1/genesis.proto index 792d4354fa1..449c0294ba7 100644 --- a/proto/ibc/applications/fee/v1/genesis.proto +++ b/proto/ibc/applications/fee/v1/genesis.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.fee.v1; -option go_package = "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types"; import "gogoproto/gogo.proto"; import "ibc/applications/fee/v1/fee.proto"; diff --git a/proto/ibc/applications/fee/v1/metadata.proto b/proto/ibc/applications/fee/v1/metadata.proto index 38150d8fc56..bc47e81bdf0 100644 --- a/proto/ibc/applications/fee/v1/metadata.proto +++ b/proto/ibc/applications/fee/v1/metadata.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.fee.v1; -option go_package = "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types"; // Metadata defines the ICS29 channel specific metadata encoded into the channel version bytestring // See ICS004: https://github.com/cosmos/ibc/tree/master/spec/core/ics-004-channel-and-packet-semantics#Versioning diff --git a/proto/ibc/applications/fee/v1/query.proto b/proto/ibc/applications/fee/v1/query.proto index cd6bf18e663..f9f46b29929 100644 --- a/proto/ibc/applications/fee/v1/query.proto +++ b/proto/ibc/applications/fee/v1/query.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.fee.v1; -option go_package = "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types"; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; diff --git a/proto/ibc/applications/fee/v1/tx.proto b/proto/ibc/applications/fee/v1/tx.proto index 89e21f63bee..a83b12e0be3 100644 --- a/proto/ibc/applications/fee/v1/tx.proto +++ b/proto/ibc/applications/fee/v1/tx.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.fee.v1; -option go_package = "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types"; import "amino/amino.proto"; import "gogoproto/gogo.proto"; diff --git a/proto/ibc/applications/interchain_accounts/controller/v1/controller.proto b/proto/ibc/applications/interchain_accounts/controller/v1/controller.proto index 62a3fad81fb..2cb37ed8072 100644 --- a/proto/ibc/applications/interchain_accounts/controller/v1/controller.proto +++ b/proto/ibc/applications/interchain_accounts/controller/v1/controller.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.interchain_accounts.controller.v1; -option go_package = "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types"; // Params defines the set of on-chain interchain accounts parameters. // The following parameters may be used to disable the controller submodule. diff --git a/proto/ibc/applications/interchain_accounts/controller/v1/query.proto b/proto/ibc/applications/interchain_accounts/controller/v1/query.proto index 743da1a8ac0..ecee046ddf4 100644 --- a/proto/ibc/applications/interchain_accounts/controller/v1/query.proto +++ b/proto/ibc/applications/interchain_accounts/controller/v1/query.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.interchain_accounts.controller.v1; -option go_package = "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types"; import "ibc/applications/interchain_accounts/controller/v1/controller.proto"; import "google/api/annotations.proto"; diff --git a/proto/ibc/applications/interchain_accounts/controller/v1/tx.proto b/proto/ibc/applications/interchain_accounts/controller/v1/tx.proto index b4a2df51e3a..8416a36b3a4 100644 --- a/proto/ibc/applications/interchain_accounts/controller/v1/tx.proto +++ b/proto/ibc/applications/interchain_accounts/controller/v1/tx.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.interchain_accounts.controller.v1; -option go_package = "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types"; import "gogoproto/gogo.proto"; import "ibc/applications/interchain_accounts/v1/packet.proto"; @@ -79,4 +79,4 @@ message MsgUpdateParams { } // MsgUpdateParamsResponse defines the response for Msg/UpdateParams -message MsgUpdateParamsResponse {} \ No newline at end of file +message MsgUpdateParamsResponse {} diff --git a/proto/ibc/applications/interchain_accounts/genesis/v1/genesis.proto b/proto/ibc/applications/interchain_accounts/genesis/v1/genesis.proto index 84a67985c32..c4cd7855475 100644 --- a/proto/ibc/applications/interchain_accounts/genesis/v1/genesis.proto +++ b/proto/ibc/applications/interchain_accounts/genesis/v1/genesis.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.interchain_accounts.genesis.v1; -option go_package = "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/genesis/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/genesis/types"; import "gogoproto/gogo.proto"; import "ibc/applications/interchain_accounts/controller/v1/controller.proto"; @@ -44,4 +44,4 @@ message RegisteredInterchainAccount { string connection_id = 1; string port_id = 2; string account_address = 3; -} \ No newline at end of file +} diff --git a/proto/ibc/applications/interchain_accounts/host/v1/host.proto b/proto/ibc/applications/interchain_accounts/host/v1/host.proto index 4f28bcd9a10..580d88eab7b 100644 --- a/proto/ibc/applications/interchain_accounts/host/v1/host.proto +++ b/proto/ibc/applications/interchain_accounts/host/v1/host.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.interchain_accounts.host.v1; -option go_package = "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types"; // Params defines the set of on-chain interchain accounts parameters. // The following parameters may be used to disable the host submodule. diff --git a/proto/ibc/applications/interchain_accounts/host/v1/query.proto b/proto/ibc/applications/interchain_accounts/host/v1/query.proto index 8840e2260d5..346288c4440 100644 --- a/proto/ibc/applications/interchain_accounts/host/v1/query.proto +++ b/proto/ibc/applications/interchain_accounts/host/v1/query.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.interchain_accounts.host.v1; -option go_package = "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types"; import "google/api/annotations.proto"; import "ibc/applications/interchain_accounts/host/v1/host.proto"; diff --git a/proto/ibc/applications/interchain_accounts/host/v1/tx.proto b/proto/ibc/applications/interchain_accounts/host/v1/tx.proto index ec5506c25cf..29eea2ede8c 100644 --- a/proto/ibc/applications/interchain_accounts/host/v1/tx.proto +++ b/proto/ibc/applications/interchain_accounts/host/v1/tx.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.interchain_accounts.host.v1; -option go_package = "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types"; import "gogoproto/gogo.proto"; import "cosmos/msg/v1/msg.proto"; diff --git a/proto/ibc/applications/interchain_accounts/v1/account.proto b/proto/ibc/applications/interchain_accounts/v1/account.proto index bfa97d94cdb..7ef67a106d1 100644 --- a/proto/ibc/applications/interchain_accounts/v1/account.proto +++ b/proto/ibc/applications/interchain_accounts/v1/account.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.interchain_accounts.v1; -option go_package = "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types"; import "cosmos_proto/cosmos.proto"; import "gogoproto/gogo.proto"; diff --git a/proto/ibc/applications/interchain_accounts/v1/metadata.proto b/proto/ibc/applications/interchain_accounts/v1/metadata.proto index ff0ff513cb3..38b9de8ba6e 100644 --- a/proto/ibc/applications/interchain_accounts/v1/metadata.proto +++ b/proto/ibc/applications/interchain_accounts/v1/metadata.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.interchain_accounts.v1; -option go_package = "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types"; // Metadata defines a set of protocol specific data encoded into the ICS27 channel version bytestring // See ICS004: https://github.com/cosmos/ibc/tree/master/spec/core/ics-004-channel-and-packet-semantics#Versioning diff --git a/proto/ibc/applications/interchain_accounts/v1/packet.proto b/proto/ibc/applications/interchain_accounts/v1/packet.proto index 83dc0eee653..4da358d56ce 100644 --- a/proto/ibc/applications/interchain_accounts/v1/packet.proto +++ b/proto/ibc/applications/interchain_accounts/v1/packet.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.interchain_accounts.v1; -option go_package = "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types"; import "google/protobuf/any.proto"; import "gogoproto/gogo.proto"; diff --git a/proto/ibc/applications/transfer/v1/authz.proto b/proto/ibc/applications/transfer/v1/authz.proto index 3f53ebf91f8..475d6cf1e47 100644 --- a/proto/ibc/applications/transfer/v1/authz.proto +++ b/proto/ibc/applications/transfer/v1/authz.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.transfer.v1; -option go_package = "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types"; import "cosmos_proto/cosmos.proto"; import "gogoproto/gogo.proto"; diff --git a/proto/ibc/applications/transfer/v1/denomtrace.proto b/proto/ibc/applications/transfer/v1/denomtrace.proto index 11a55bb0f5e..3aef3a8f6dd 100644 --- a/proto/ibc/applications/transfer/v1/denomtrace.proto +++ b/proto/ibc/applications/transfer/v1/denomtrace.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.transfer.v1; -option go_package = "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types"; // DenomTrace contains the base denomination for ICS20 fungible tokens and the // source tracing information path. diff --git a/proto/ibc/applications/transfer/v1/query.proto b/proto/ibc/applications/transfer/v1/query.proto index 5e8f01f576f..b09ed969e31 100644 --- a/proto/ibc/applications/transfer/v1/query.proto +++ b/proto/ibc/applications/transfer/v1/query.proto @@ -7,7 +7,7 @@ import "cosmos/base/v1beta1/coin.proto"; import "ibc/applications/transfer/v1/transfer.proto"; import "google/api/annotations.proto"; -option go_package = "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types"; // Query provides defines the gRPC querier service. service Query { diff --git a/proto/ibc/applications/transfer/v1/transfer.proto b/proto/ibc/applications/transfer/v1/transfer.proto index d391c7fba14..eec17613ee4 100644 --- a/proto/ibc/applications/transfer/v1/transfer.proto +++ b/proto/ibc/applications/transfer/v1/transfer.proto @@ -4,7 +4,7 @@ package ibc.applications.transfer.v1; import "gogoproto/gogo.proto"; -option go_package = "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types"; // Params defines the set of IBC transfer parameters. // NOTE: To prevent a single token from being transferred, set the diff --git a/proto/ibc/applications/transfer/v1/tx.proto b/proto/ibc/applications/transfer/v1/tx.proto index 537acbbedb7..8e43d1d86e5 100644 --- a/proto/ibc/applications/transfer/v1/tx.proto +++ b/proto/ibc/applications/transfer/v1/tx.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.transfer.v1; -option go_package = "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types"; import "amino/amino.proto"; import "gogoproto/gogo.proto"; diff --git a/proto/ibc/applications/transfer/v2/genesis.proto b/proto/ibc/applications/transfer/v2/genesis.proto index c3fdee63c85..4d2bd66d16a 100644 --- a/proto/ibc/applications/transfer/v2/genesis.proto +++ b/proto/ibc/applications/transfer/v2/genesis.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.transfer.v2; -option go_package = "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types"; import "ibc/applications/transfer/v1/transfer.proto"; import "ibc/applications/transfer/v2/token.proto"; diff --git a/proto/ibc/applications/transfer/v2/packet.proto b/proto/ibc/applications/transfer/v2/packet.proto index c27d7ec7ea7..3eb0e0f6bc3 100644 --- a/proto/ibc/applications/transfer/v2/packet.proto +++ b/proto/ibc/applications/transfer/v2/packet.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.transfer.v2; -option go_package = "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types"; import "ibc/applications/transfer/v2/token.proto"; import "gogoproto/gogo.proto"; diff --git a/proto/ibc/applications/transfer/v2/queryv2.proto b/proto/ibc/applications/transfer/v2/queryv2.proto index 93f2fdae39e..95d18a66755 100644 --- a/proto/ibc/applications/transfer/v2/queryv2.proto +++ b/proto/ibc/applications/transfer/v2/queryv2.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.transfer.v2; -option go_package = "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types"; import "gogoproto/gogo.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; diff --git a/proto/ibc/applications/transfer/v2/token.proto b/proto/ibc/applications/transfer/v2/token.proto index d251a44299e..e6a6a7cc69a 100644 --- a/proto/ibc/applications/transfer/v2/token.proto +++ b/proto/ibc/applications/transfer/v2/token.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.transfer.v2; -option go_package = "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types"; import "ibc/applications/transfer/v1/transfer.proto"; import "gogoproto/gogo.proto"; diff --git a/proto/ibc/core/channel/v1/channel.proto b/proto/ibc/core/channel/v1/channel.proto index 78df62bdbb4..aba71984864 100644 --- a/proto/ibc/core/channel/v1/channel.proto +++ b/proto/ibc/core/channel/v1/channel.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.core.channel.v1; -option go_package = "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types"; import "gogoproto/gogo.proto"; import "ibc/core/client/v1/client.proto"; diff --git a/proto/ibc/core/channel/v1/genesis.proto b/proto/ibc/core/channel/v1/genesis.proto index 2f0cc448230..eec59444140 100644 --- a/proto/ibc/core/channel/v1/genesis.proto +++ b/proto/ibc/core/channel/v1/genesis.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.core.channel.v1; -option go_package = "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types"; import "gogoproto/gogo.proto"; import "ibc/core/channel/v1/channel.proto"; diff --git a/proto/ibc/core/channel/v1/query.proto b/proto/ibc/core/channel/v1/query.proto index f44a3e5aa62..26f0c251dd0 100644 --- a/proto/ibc/core/channel/v1/query.proto +++ b/proto/ibc/core/channel/v1/query.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.core.channel.v1; -option go_package = "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types"; import "ibc/core/client/v1/client.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; @@ -456,4 +456,4 @@ message QueryChannelParamsRequest {} message QueryChannelParamsResponse { // params defines the parameters of the module. Params params = 1; -} \ No newline at end of file +} diff --git a/proto/ibc/core/channel/v1/tx.proto b/proto/ibc/core/channel/v1/tx.proto index 06e8523284a..75baa1f42a5 100644 --- a/proto/ibc/core/channel/v1/tx.proto +++ b/proto/ibc/core/channel/v1/tx.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.core.channel.v1; -option go_package = "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types"; import "gogoproto/gogo.proto"; import "cosmos/msg/v1/msg.proto"; diff --git a/proto/ibc/core/channel/v1/upgrade.proto b/proto/ibc/core/channel/v1/upgrade.proto index ea5ae929b46..319954d9aed 100644 --- a/proto/ibc/core/channel/v1/upgrade.proto +++ b/proto/ibc/core/channel/v1/upgrade.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.core.channel.v1; -option go_package = "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types"; import "gogoproto/gogo.proto"; import "ibc/core/channel/v1/channel.proto"; diff --git a/proto/ibc/core/channel/v2/genesis.proto b/proto/ibc/core/channel/v2/genesis.proto index b7ac3f6f467..5208044f331 100644 --- a/proto/ibc/core/channel/v2/genesis.proto +++ b/proto/ibc/core/channel/v2/genesis.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.core.channel.v2; -option go_package = "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types"; import "gogoproto/gogo.proto"; diff --git a/proto/ibc/core/channel/v2/packet.proto b/proto/ibc/core/channel/v2/packet.proto index e7284bae0c2..c7683f6ede0 100644 --- a/proto/ibc/core/channel/v2/packet.proto +++ b/proto/ibc/core/channel/v2/packet.proto @@ -3,7 +3,7 @@ syntax = "proto3"; package ibc.core.channel.v2; -option go_package = "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types"; import "gogoproto/gogo.proto"; diff --git a/proto/ibc/core/channel/v2/query.proto b/proto/ibc/core/channel/v2/query.proto index 3efb9fcfe7d..2a19de89c9b 100644 --- a/proto/ibc/core/channel/v2/query.proto +++ b/proto/ibc/core/channel/v2/query.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.core.channel.v2; -option go_package = "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types"; import "cosmos/base/query/v1beta1/pagination.proto"; import "ibc/core/channel/v2/genesis.proto"; diff --git a/proto/ibc/core/channel/v2/tx.proto b/proto/ibc/core/channel/v2/tx.proto index 6c3c224c2ea..534c8ddd3c5 100644 --- a/proto/ibc/core/channel/v2/tx.proto +++ b/proto/ibc/core/channel/v2/tx.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.core.channel.v2; -option go_package = "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types"; import "gogoproto/gogo.proto"; import "cosmos/msg/v1/msg.proto"; diff --git a/proto/ibc/core/client/v1/client.proto b/proto/ibc/core/client/v1/client.proto index d2ff2a2801c..f22a7b581eb 100644 --- a/proto/ibc/core/client/v1/client.proto +++ b/proto/ibc/core/client/v1/client.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.core.client.v1; -option go_package = "github.com/cosmos/ibc-go/v9/modules/core/02-client/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/core/02-client/types"; import "gogoproto/gogo.proto"; import "google/protobuf/any.proto"; diff --git a/proto/ibc/core/client/v1/genesis.proto b/proto/ibc/core/client/v1/genesis.proto index f5d7b258735..ba588282ab7 100644 --- a/proto/ibc/core/client/v1/genesis.proto +++ b/proto/ibc/core/client/v1/genesis.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.core.client.v1; -option go_package = "github.com/cosmos/ibc-go/v9/modules/core/02-client/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/core/02-client/types"; import "ibc/core/client/v1/client.proto"; import "gogoproto/gogo.proto"; diff --git a/proto/ibc/core/client/v1/query.proto b/proto/ibc/core/client/v1/query.proto index 02c3f4b1eeb..2873ab32f29 100644 --- a/proto/ibc/core/client/v1/query.proto +++ b/proto/ibc/core/client/v1/query.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.core.client.v1; -option go_package = "github.com/cosmos/ibc-go/v9/modules/core/02-client/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/core/02-client/types"; import "cosmos/base/query/v1beta1/pagination.proto"; import "cosmos/query/v1/query.proto"; diff --git a/proto/ibc/core/client/v1/tx.proto b/proto/ibc/core/client/v1/tx.proto index 1e9e4f47ada..701dcb5f4a2 100644 --- a/proto/ibc/core/client/v1/tx.proto +++ b/proto/ibc/core/client/v1/tx.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.core.client.v1; -option go_package = "github.com/cosmos/ibc-go/v9/modules/core/02-client/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/core/02-client/types"; import "cosmos/msg/v1/msg.proto"; import "cosmos/upgrade/v1beta1/upgrade.proto"; diff --git a/proto/ibc/core/client/v2/counterparty.proto b/proto/ibc/core/client/v2/counterparty.proto index 9cf91697436..494ac0b436e 100644 --- a/proto/ibc/core/client/v2/counterparty.proto +++ b/proto/ibc/core/client/v2/counterparty.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.core.client.v2; -option go_package = "github.com/cosmos/ibc-go/v9/modules/core/02-client/v2/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/core/02-client/v2/types"; // CounterpartyInfo defines the key that the counterparty will use to message our client message CounterpartyInfo { diff --git a/proto/ibc/core/client/v2/genesis.proto b/proto/ibc/core/client/v2/genesis.proto index 112083a9c07..b2b0e3d6def 100644 --- a/proto/ibc/core/client/v2/genesis.proto +++ b/proto/ibc/core/client/v2/genesis.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.core.client.v2; -option go_package = "github.com/cosmos/ibc-go/v9/modules/core/02-client/v2/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/core/02-client/v2/types"; import "ibc/core/client/v2/counterparty.proto"; import "gogoproto/gogo.proto"; @@ -20,4 +20,4 @@ message GenesisCounterpartyInfo { message GenesisState { // counterparty info for each client repeated GenesisCounterpartyInfo counterparty_infos = 1 [(gogoproto.nullable) = false]; -} \ No newline at end of file +} diff --git a/proto/ibc/core/client/v2/query.proto b/proto/ibc/core/client/v2/query.proto index 0e85b48941f..5fc70690265 100644 --- a/proto/ibc/core/client/v2/query.proto +++ b/proto/ibc/core/client/v2/query.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.core.client.v2; -option go_package = "github.com/cosmos/ibc-go/v9/modules/core/02-client/v2/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/core/02-client/v2/types"; import "ibc/core/client/v2/counterparty.proto"; import "google/api/annotations.proto"; @@ -26,4 +26,4 @@ message QueryCounterpartyInfoRequest { // Query/CounterpartyInfo RPC method. message QueryCounterpartyInfoResponse { CounterpartyInfo counterparty_info = 1; -} \ No newline at end of file +} diff --git a/proto/ibc/core/client/v2/tx.proto b/proto/ibc/core/client/v2/tx.proto index beda7795ad1..d64e2bdcae2 100644 --- a/proto/ibc/core/client/v2/tx.proto +++ b/proto/ibc/core/client/v2/tx.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.core.client.v2; -option go_package = "github.com/cosmos/ibc-go/v9/modules/core/02-client/v2/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/core/02-client/v2/types"; import "cosmos/msg/v1/msg.proto"; import "gogoproto/gogo.proto"; diff --git a/proto/ibc/core/commitment/v1/commitment.proto b/proto/ibc/core/commitment/v1/commitment.proto index d3431f71ab1..07b143bd320 100644 --- a/proto/ibc/core/commitment/v1/commitment.proto +++ b/proto/ibc/core/commitment/v1/commitment.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.core.commitment.v1; -option go_package = "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types"; import "gogoproto/gogo.proto"; import "cosmos/ics23/v1/proofs.proto"; diff --git a/proto/ibc/core/commitment/v2/commitment.proto b/proto/ibc/core/commitment/v2/commitment.proto index 5c1b5f40279..f164d38ca8c 100644 --- a/proto/ibc/core/commitment/v2/commitment.proto +++ b/proto/ibc/core/commitment/v2/commitment.proto @@ -2,11 +2,11 @@ syntax = "proto3"; package ibc.core.commitment.v2; -option go_package = "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types/v2"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types/v2"; // MerklePath is the path used to verify commitment proofs, which can be an // arbitrary structured object (defined by a commitment type). // MerklePath is represented from root-to-leaf message MerklePath { repeated bytes key_path = 1; -} \ No newline at end of file +} diff --git a/proto/ibc/core/connection/v1/connection.proto b/proto/ibc/core/connection/v1/connection.proto index c5aa79dabcf..5ef00982627 100644 --- a/proto/ibc/core/connection/v1/connection.proto +++ b/proto/ibc/core/connection/v1/connection.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.core.connection.v1; -option go_package = "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types"; import "gogoproto/gogo.proto"; import "ibc/core/commitment/v1/commitment.proto"; diff --git a/proto/ibc/core/connection/v1/genesis.proto b/proto/ibc/core/connection/v1/genesis.proto index 9db9c1748ed..b8456373c79 100644 --- a/proto/ibc/core/connection/v1/genesis.proto +++ b/proto/ibc/core/connection/v1/genesis.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.core.connection.v1; -option go_package = "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types"; import "gogoproto/gogo.proto"; import "ibc/core/connection/v1/connection.proto"; diff --git a/proto/ibc/core/connection/v1/query.proto b/proto/ibc/core/connection/v1/query.proto index 5b6547282f3..090dcc60dbc 100644 --- a/proto/ibc/core/connection/v1/query.proto +++ b/proto/ibc/core/connection/v1/query.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.core.connection.v1; -option go_package = "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types"; import "gogoproto/gogo.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; @@ -149,4 +149,4 @@ message QueryConnectionParamsRequest {} message QueryConnectionParamsResponse { // params defines the parameters of the module. Params params = 1; -} \ No newline at end of file +} diff --git a/proto/ibc/core/connection/v1/tx.proto b/proto/ibc/core/connection/v1/tx.proto index 894a8bcddd6..ac45fddbd56 100644 --- a/proto/ibc/core/connection/v1/tx.proto +++ b/proto/ibc/core/connection/v1/tx.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.core.connection.v1; -option go_package = "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types"; import "gogoproto/gogo.proto"; import "cosmos/msg/v1/msg.proto"; diff --git a/proto/ibc/core/types/v1/genesis.proto b/proto/ibc/core/types/v1/genesis.proto index aedf0a3f36e..bbf5524b862 100644 --- a/proto/ibc/core/types/v1/genesis.proto +++ b/proto/ibc/core/types/v1/genesis.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.core.types.v1; -option go_package = "github.com/cosmos/ibc-go/v9/modules/core/types"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/core/types"; import "gogoproto/gogo.proto"; import "ibc/core/client/v1/genesis.proto"; diff --git a/proto/ibc/lightclients/solomachine/v2/solomachine.proto b/proto/ibc/lightclients/solomachine/v2/solomachine.proto index 4d240a7c04b..3a43e208b42 100644 --- a/proto/ibc/lightclients/solomachine/v2/solomachine.proto +++ b/proto/ibc/lightclients/solomachine/v2/solomachine.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.lightclients.solomachine.v2; -option go_package = "github.com/cosmos/ibc-go/v9/modules/core/02-client/migrations/v7"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/core/02-client/migrations/v7"; import "ibc/core/connection/v1/connection.proto"; import "ibc/core/channel/v1/channel.proto"; diff --git a/proto/ibc/lightclients/solomachine/v3/solomachine.proto b/proto/ibc/lightclients/solomachine/v3/solomachine.proto index bb257f2a793..d8e0adcbf6f 100644 --- a/proto/ibc/lightclients/solomachine/v3/solomachine.proto +++ b/proto/ibc/lightclients/solomachine/v3/solomachine.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.lightclients.solomachine.v3; -option go_package = "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine;solomachine"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/light-clients/06-solomachine;solomachine"; import "gogoproto/gogo.proto"; import "google/protobuf/any.proto"; diff --git a/proto/ibc/lightclients/tendermint/v1/tendermint.proto b/proto/ibc/lightclients/tendermint/v1/tendermint.proto index 9069fd6fa5a..89c9f88961c 100644 --- a/proto/ibc/lightclients/tendermint/v1/tendermint.proto +++ b/proto/ibc/lightclients/tendermint/v1/tendermint.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.lightclients.tendermint.v1; -option go_package = "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint;tendermint"; +option go_package = "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint;tendermint"; import "tendermint/types/validator.proto"; import "tendermint/types/types.proto"; diff --git a/simapp/ante.go b/simapp/ante.go index 58603401edf..08969fea63b 100644 --- a/simapp/ante.go +++ b/simapp/ante.go @@ -8,8 +8,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/x/auth/ante" - ibcante "github.com/cosmos/ibc-go/v9/modules/core/ante" - "github.com/cosmos/ibc-go/v9/modules/core/keeper" + ibcante "github.com/cosmos/ibc-go/v10/modules/core/ante" + "github.com/cosmos/ibc-go/v10/modules/core/keeper" ) // HandlerOptions are the options required for constructing a default SDK AnteHandler. diff --git a/simapp/app.go b/simapp/app.go index cba03e2f857..da8151a9b16 100644 --- a/simapp/app.go +++ b/simapp/app.go @@ -101,28 +101,28 @@ import ( abci "github.com/cometbft/cometbft/abci/types" - ica "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts" - icacontroller "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller" - icacontrollerkeeper "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/keeper" - icacontrollertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - icahost "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host" - icahostkeeper "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/keeper" - icahosttypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - ibcfee "github.com/cosmos/ibc-go/v9/modules/apps/29-fee" - ibcfeekeeper "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/keeper" - ibcfeetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer" - ibctransferkeeper "github.com/cosmos/ibc-go/v9/modules/apps/transfer/keeper" - ibctransfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - ibc "github.com/cosmos/ibc-go/v9/modules/core" - ibcclienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - ibcconnectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibckeeper "github.com/cosmos/ibc-go/v9/modules/core/keeper" - solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ica "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts" + icacontroller "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller" + icacontrollerkeeper "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/keeper" + icacontrollertypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + icahost "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host" + icahostkeeper "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/keeper" + icahosttypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + ibcfee "github.com/cosmos/ibc-go/v10/modules/apps/29-fee" + ibcfeekeeper "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/keeper" + ibcfeetypes "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer" + ibctransferkeeper "github.com/cosmos/ibc-go/v10/modules/apps/transfer/keeper" + ibctransfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + ibc "github.com/cosmos/ibc-go/v10/modules/core" + ibcclienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + ibcconnectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" + ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibckeeper "github.com/cosmos/ibc-go/v10/modules/core/keeper" + solomachine "github.com/cosmos/ibc-go/v10/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" ) const appName = "SimApp" diff --git a/simapp/go.mod b/simapp/go.mod index e3be44fd0de..6b359f57ac5 100644 --- a/simapp/go.mod +++ b/simapp/go.mod @@ -2,7 +2,7 @@ go 1.23.6 module github.com/cosmos/ibc-go/simapp -replace github.com/cosmos/ibc-go/v9 => ../ +replace github.com/cosmos/ibc-go/v10 => ../ require ( cosmossdk.io/api v0.7.6 @@ -20,7 +20,7 @@ require ( github.com/cosmos/cosmos-db v1.1.0 github.com/cosmos/cosmos-sdk v0.50.10 github.com/cosmos/gogoproto v1.7.0 - github.com/cosmos/ibc-go/v9 v9.0.0 + github.com/cosmos/ibc-go/v10 v10.0.0 github.com/spf13/cast v1.7.0 github.com/spf13/cobra v1.8.1 github.com/spf13/viper v1.19.0 diff --git a/simapp/upgrades/upgrades.go b/simapp/upgrades/upgrades.go index 15b5cea8d8e..4812e1b549f 100644 --- a/simapp/upgrades/upgrades.go +++ b/simapp/upgrades/upgrades.go @@ -13,9 +13,9 @@ import ( paramskeeper "github.com/cosmos/cosmos-sdk/x/params/keeper" paramstypes "github.com/cosmos/cosmos-sdk/x/params/types" - clientkeeper "github.com/cosmos/ibc-go/v9/modules/core/02-client/keeper" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctmmigrations "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint/migrations" + clientkeeper "github.com/cosmos/ibc-go/v10/modules/core/02-client/keeper" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibctmmigrations "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint/migrations" ) const ( diff --git a/testing/README.md b/testing/README.md index 844b011fd99..e767b5ed81a 100644 --- a/testing/README.md +++ b/testing/README.md @@ -253,8 +253,8 @@ import ( "github.com/cometbft/cometbft/libs/log" dbm "github.com/cometbft/cometbft-db" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer/simapp" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer/simapp" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func SetupTransferTestingApp() (ibctesting.TestingApp, map[string]json.RawMessage) { diff --git a/testing/chain.go b/testing/chain.go index 54ebc978c4c..5ce90448886 100644 --- a/testing/chain.go +++ b/testing/chain.go @@ -25,13 +25,13 @@ import ( cmttypes "github.com/cometbft/cometbft/types" cmtversion "github.com/cometbft/cometbft/version" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - "github.com/cosmos/ibc-go/v9/testing/simapp" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" + "github.com/cosmos/ibc-go/v10/testing/simapp" ) var MaxAccounts = 10 diff --git a/testing/chain_test.go b/testing/chain_test.go index e72057765b3..eb8bd7bce22 100644 --- a/testing/chain_test.go +++ b/testing/chain_test.go @@ -10,7 +10,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/x/staking/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + ibctesting "github.com/cosmos/ibc-go/v10/testing" ) func TestChangeValSet(t *testing.T) { diff --git a/testing/config.go b/testing/config.go index 49a058cb334..c2fc455970e 100644 --- a/testing/config.go +++ b/testing/config.go @@ -3,11 +3,11 @@ package ibctesting import ( "time" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - "github.com/cosmos/ibc-go/v9/testing/mock" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" + "github.com/cosmos/ibc-go/v10/testing/mock" ) type ClientConfig interface { diff --git a/testing/endpoint.go b/testing/endpoint.go index e4f08fd2e32..42a9afb0b00 100644 --- a/testing/endpoint.go +++ b/testing/endpoint.go @@ -13,14 +13,14 @@ import ( abci "github.com/cometbft/cometbft/abci/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - commitmenttypesv2 "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types/v2" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + commitmenttypesv2 "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types/v2" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" ) // Endpoint is a which represents a channel endpoint and its associated diff --git a/testing/endpoint_v2.go b/testing/endpoint_v2.go index 6f31064a2ac..c020ccc1712 100644 --- a/testing/endpoint_v2.go +++ b/testing/endpoint_v2.go @@ -5,9 +5,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - clientv2types "github.com/cosmos/ibc-go/v9/modules/core/02-client/v2/types" - channeltypesv2 "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" - hostv2 "github.com/cosmos/ibc-go/v9/modules/core/24-host/v2" + clientv2types "github.com/cosmos/ibc-go/v10/modules/core/02-client/v2/types" + channeltypesv2 "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types" + hostv2 "github.com/cosmos/ibc-go/v10/modules/core/24-host/v2" ) // RegisterCounterparty will construct and execute a MsgRegisterCounterparty on the associated endpoint. diff --git a/testing/events.go b/testing/events.go index 3f505052469..0cbcc10efa5 100644 --- a/testing/events.go +++ b/testing/events.go @@ -11,9 +11,9 @@ import ( abci "github.com/cometbft/cometbft/abci/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" ) // ParseClientIDFromEvents parses events emitted from a MsgCreateClient and returns the diff --git a/testing/events_test.go b/testing/events_test.go index c18a75866a4..03fa7d94b72 100644 --- a/testing/events_test.go +++ b/testing/events_test.go @@ -8,9 +8,9 @@ import ( abci "github.com/cometbft/cometbft/abci/types" - "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v9/testing" + "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" ) func TestParsePacketsFromEvents(t *testing.T) { diff --git a/testing/mock/ibc_app.go b/testing/mock/ibc_app.go index 09532ac0ff5..4dd2efc3412 100644 --- a/testing/mock/ibc_app.go +++ b/testing/mock/ibc_app.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) // IBCApp contains IBC application module callbacks as defined in 05-port. diff --git a/testing/mock/ibc_module.go b/testing/mock/ibc_module.go index 657098b6d1e..60bda69f673 100644 --- a/testing/mock/ibc_module.go +++ b/testing/mock/ibc_module.go @@ -8,9 +8,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) var ( diff --git a/testing/mock/middleware.go b/testing/mock/middleware.go index 7a07de0e13b..57dd5e31ffb 100644 --- a/testing/mock/middleware.go +++ b/testing/mock/middleware.go @@ -7,10 +7,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) const ( diff --git a/testing/mock/mock.go b/testing/mock/mock.go index 0fe029ad64f..115f375626f 100644 --- a/testing/mock/mock.go +++ b/testing/mock/mock.go @@ -18,10 +18,10 @@ import ( abci "github.com/cometbft/cometbft/abci/types" - feetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" - "github.com/cosmos/ibc-go/v9/modules/core/exported" + feetypes "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" + "github.com/cosmos/ibc-go/v10/modules/core/exported" ) const ( diff --git a/testing/mock/v2/ibc_app.go b/testing/mock/v2/ibc_app.go index 7b72f4bac30..92794c86c77 100644 --- a/testing/mock/v2/ibc_app.go +++ b/testing/mock/v2/ibc_app.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - channeltypesv2 "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" + channeltypesv2 "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types" ) type IBCApp struct { diff --git a/testing/mock/v2/ibc_module.go b/testing/mock/v2/ibc_module.go index 082aececbe2..f2e8a11eeac 100644 --- a/testing/mock/v2/ibc_module.go +++ b/testing/mock/v2/ibc_module.go @@ -6,9 +6,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - channeltypesv2 "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" - "github.com/cosmos/ibc-go/v9/modules/core/api" - mockv1 "github.com/cosmos/ibc-go/v9/testing/mock" + channeltypesv2 "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types" + "github.com/cosmos/ibc-go/v10/modules/core/api" + mockv1 "github.com/cosmos/ibc-go/v10/testing/mock" ) var _ api.IBCModule = (*IBCModule)(nil) diff --git a/testing/mock/v2/mock.go b/testing/mock/v2/mock.go index dc8aa4b6830..2e120dd79a0 100644 --- a/testing/mock/v2/mock.go +++ b/testing/mock/v2/mock.go @@ -1,9 +1,9 @@ package mock import ( - transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - channeltypesv2 "github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types" - mockv1 "github.com/cosmos/ibc-go/v9/testing/mock" + transfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + channeltypesv2 "github.com/cosmos/ibc-go/v10/modules/core/04-channel/v2/types" + mockv1 "github.com/cosmos/ibc-go/v10/testing/mock" ) const ( diff --git a/testing/path.go b/testing/path.go index 28c40b4e226..10ac31170bc 100644 --- a/testing/path.go +++ b/testing/path.go @@ -6,9 +6,9 @@ import ( abci "github.com/cometbft/cometbft/abci/types" - transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" + transfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + ibcmock "github.com/cosmos/ibc-go/v10/testing/mock" ) // Path contains two endpoints representing two chains connected over IBC diff --git a/testing/simapp/ante.go b/testing/simapp/ante.go index 45d5529e038..4884a6d3ce7 100644 --- a/testing/simapp/ante.go +++ b/testing/simapp/ante.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/x/auth/ante" - ibcante "github.com/cosmos/ibc-go/v9/modules/core/ante" - "github.com/cosmos/ibc-go/v9/modules/core/keeper" + ibcante "github.com/cosmos/ibc-go/v10/modules/core/ante" + "github.com/cosmos/ibc-go/v10/modules/core/keeper" ) // HandlerOptions are the options required for constructing a default SDK AnteHandler. diff --git a/testing/simapp/app.go b/testing/simapp/app.go index 582f413ce98..7ce4749bb0f 100644 --- a/testing/simapp/app.go +++ b/testing/simapp/app.go @@ -82,32 +82,32 @@ import ( abci "github.com/cometbft/cometbft/abci/types" - ica "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts" - icacontroller "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller" - icacontrollerkeeper "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/keeper" - icacontrollertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" - icahost "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host" - icahostkeeper "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/keeper" - icahosttypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" - ibcfee "github.com/cosmos/ibc-go/v9/modules/apps/29-fee" - ibcfeekeeper "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/keeper" - ibcfeetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" - "github.com/cosmos/ibc-go/v9/modules/apps/transfer" - ibctransferkeeper "github.com/cosmos/ibc-go/v9/modules/apps/transfer/keeper" - ibctransfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - transferv2 "github.com/cosmos/ibc-go/v9/modules/apps/transfer/v2" - ibc "github.com/cosmos/ibc-go/v9/modules/core" - ibcclienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - ibcconnectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" - ibcapi "github.com/cosmos/ibc-go/v9/modules/core/api" - ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" - ibckeeper "github.com/cosmos/ibc-go/v9/modules/core/keeper" - solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" - mockv2 "github.com/cosmos/ibc-go/v9/testing/mock/v2" + ica "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts" + icacontroller "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller" + icacontrollerkeeper "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/keeper" + icacontrollertypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" + icahost "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host" + icahostkeeper "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/keeper" + icahosttypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" + ibcfee "github.com/cosmos/ibc-go/v10/modules/apps/29-fee" + ibcfeekeeper "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/keeper" + ibcfeetypes "github.com/cosmos/ibc-go/v10/modules/apps/29-fee/types" + "github.com/cosmos/ibc-go/v10/modules/apps/transfer" + ibctransferkeeper "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" + ibcclienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + ibcconnectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + 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" + solomachine "github.com/cosmos/ibc-go/v10/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" + ibcmock "github.com/cosmos/ibc-go/v10/testing/mock" + mockv2 "github.com/cosmos/ibc-go/v10/testing/mock/v2" ) const appName = "SimApp" diff --git a/testing/solomachine.go b/testing/solomachine.go index a5404fbcf4c..12dfe820a5d 100644 --- a/testing/solomachine.go +++ b/testing/solomachine.go @@ -14,15 +14,15 @@ import ( "github.com/cosmos/cosmos-sdk/crypto/types/multisig" "github.com/cosmos/cosmos-sdk/types/tx/signing" - transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - commitmenttypesv2 "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types/v2" - host "github.com/cosmos/ibc-go/v9/modules/core/24-host" - "github.com/cosmos/ibc-go/v9/modules/core/exported" - solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" + transfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + commitmenttypesv2 "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types/v2" + host "github.com/cosmos/ibc-go/v10/modules/core/24-host" + "github.com/cosmos/ibc-go/v10/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v10/modules/light-clients/06-solomachine" ) var ( diff --git a/testing/testing_app.go b/testing/testing_app.go index 39d69e0cfdc..4b1b52f8806 100644 --- a/testing/testing_app.go +++ b/testing/testing_app.go @@ -27,8 +27,8 @@ import ( abci "github.com/cometbft/cometbft/abci/types" cmttypes "github.com/cometbft/cometbft/types" - "github.com/cosmos/ibc-go/v9/modules/core/keeper" - "github.com/cosmos/ibc-go/v9/testing/simapp" + "github.com/cosmos/ibc-go/v10/modules/core/keeper" + "github.com/cosmos/ibc-go/v10/testing/simapp" ) var DefaultTestingAppInit = SetupTestingApp diff --git a/testing/values.go b/testing/values.go index 736e547d913..9fb8215332a 100644 --- a/testing/values.go +++ b/testing/values.go @@ -13,12 +13,12 @@ import ( "github.com/cometbft/cometbft/crypto/tmhash" - ibctransfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" - connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" - commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" - ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" - "github.com/cosmos/ibc-go/v9/testing/mock" - "github.com/cosmos/ibc-go/v9/testing/simapp" + ibctransfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" + connectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types" + commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types" + ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" + "github.com/cosmos/ibc-go/v10/testing/mock" + "github.com/cosmos/ibc-go/v10/testing/simapp" ) const (