Skip to content

Commit a1ef65e

Browse files
committed
go mod changes
1 parent e4aedd3 commit a1ef65e

File tree

164 files changed

+1099
-1460
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

164 files changed

+1099
-1460
lines changed

docs/docs/01-ibc/02-integration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ connection handshake.
272272
import (
273273
// other imports
274274
// ...
275-
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"
275+
stakingtypes "cosmossdk.io/x/staking/types"
276276
capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types"
277277
ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported"
278278
ibckeeper "github.com/cosmos/ibc-go/v9/modules/core/keeper"

docs/docs/03-light-clients/04-wasm/05-governance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
...
2020
"github.com/cosmos/cosmos-sdk/runtime"
2121
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
22-
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
22+
govtypes "cosmossdk.io/x/gov/types"
2323

2424
ibcwasmkeeper "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/keeper"
2525
ibcwasmtypes "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types"

docs/docs/05-migrations/06-v4-to-v5.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ The `MockEmptyAcknowledgement` type has been renamed to `EmptyAcknowledgement` (
336336

337337
The `TestingApp` interface in `testing` has gone through some modifications:
338338

339-
- The return type of the function `GetStakingKeeper` is not the concrete type `stakingkeeper.Keeper` anymore (where `stakingkeeper` is an import alias for `"github.com/cosmos/cosmos-sdk/x/staking/keeper"`), but it has been changed to the interface `ibctestingtypes.StakingKeeper` (where `ibctestingtypes` is an import alias for `""github.com/cosmos/ibc-go/v5/testing/types"`). See this [PR](https://github.com/cosmos/ibc-go/pull/2028) for more details. The `StakingKeeper` interface is defined as:
339+
- The return type of the function `GetStakingKeeper` is not the concrete type `stakingkeeper.Keeper` anymore (where `stakingkeeper` is an import alias for `"cosmossdk.io/x/staking/keeper"`), but it has been changed to the interface `ibctestingtypes.StakingKeeper` (where `ibctestingtypes` is an import alias for `""github.com/cosmos/ibc-go/v5/testing/types"`). See this [PR](https://github.com/cosmos/ibc-go/pull/2028) for more details. The `StakingKeeper` interface is defined as:
340340

341341
```go
342342
type StakingKeeper interface {

docs/versioned_docs/version-v6.3.x/04-migrations/06-v4-to-v5.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ The `MockEmptyAcknowledgement` type has been renamed to `EmptyAcknowledgement` (
336336

337337
The `TestingApp` interface in `testing` has gone through some modifications:
338338

339-
- The return type of the function `GetStakingKeeper` is not the concrete type `stakingkeeper.Keeper` anymore (where `stakingkeeper` is an import alias for `"github.com/cosmos/cosmos-sdk/x/staking/keeper"`), but it has been changed to the interface `ibctestingtypes.StakingKeeper` (where `ibctestingtypes` is an import alias for `""github.com/cosmos/ibc-go/v5/testing/types"`). See this [PR](https://github.com/cosmos/ibc-go/pull/2028) for more details. The `StakingKeeper` interface is defined as:
339+
- The return type of the function `GetStakingKeeper` is not the concrete type `stakingkeeper.Keeper` anymore (where `stakingkeeper` is an import alias for `"cosmossdk.io/x/staking/keeper"`), but it has been changed to the interface `ibctestingtypes.StakingKeeper` (where `ibctestingtypes` is an import alias for `""github.com/cosmos/ibc-go/v5/testing/types"`). See this [PR](https://github.com/cosmos/ibc-go/pull/2028) for more details. The `StakingKeeper` interface is defined as:
340340

341341
```go
342342
type StakingKeeper interface {

docs/versioned_docs/version-v7.8.x/03-light-clients/04-wasm/05-governance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
...
2020
"github.com/cosmos/cosmos-sdk/runtime"
2121
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
22-
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
22+
govtypes "cosmossdk.io/x/gov/types"
2323

2424
ibcwasmkeeper "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/keeper"
2525
ibcwasmtypes "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types"

docs/versioned_docs/version-v7.8.x/05-migrations/06-v4-to-v5.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ The `MockEmptyAcknowledgement` type has been renamed to `EmptyAcknowledgement` (
336336

337337
The `TestingApp` interface in `testing` has gone through some modifications:
338338

339-
- The return type of the function `GetStakingKeeper` is not the concrete type `stakingkeeper.Keeper` anymore (where `stakingkeeper` is an import alias for `"github.com/cosmos/cosmos-sdk/x/staking/keeper"`), but it has been changed to the interface `ibctestingtypes.StakingKeeper` (where `ibctestingtypes` is an import alias for `""github.com/cosmos/ibc-go/v5/testing/types"`). See this [PR](https://github.com/cosmos/ibc-go/pull/2028) for more details. The `StakingKeeper` interface is defined as:
339+
- The return type of the function `GetStakingKeeper` is not the concrete type `stakingkeeper.Keeper` anymore (where `stakingkeeper` is an import alias for `"cosmossdk.io/x/staking/keeper"`), but it has been changed to the interface `ibctestingtypes.StakingKeeper` (where `ibctestingtypes` is an import alias for `""github.com/cosmos/ibc-go/v5/testing/types"`). See this [PR](https://github.com/cosmos/ibc-go/pull/2028) for more details. The `StakingKeeper` interface is defined as:
340340

341341
```go
342342
type StakingKeeper interface {

docs/versioned_docs/version-v8.5.x/03-light-clients/04-wasm/05-governance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
...
2020
"github.com/cosmos/cosmos-sdk/runtime"
2121
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
22-
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
22+
govtypes "cosmossdk.io/x/gov/types"
2323

2424
ibcwasmkeeper "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/keeper"
2525
ibcwasmtypes "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types"

docs/versioned_docs/version-v8.5.x/05-migrations/06-v4-to-v5.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ The `MockEmptyAcknowledgement` type has been renamed to `EmptyAcknowledgement` (
336336

337337
The `TestingApp` interface in `testing` has gone through some modifications:
338338

339-
- The return type of the function `GetStakingKeeper` is not the concrete type `stakingkeeper.Keeper` anymore (where `stakingkeeper` is an import alias for `"github.com/cosmos/cosmos-sdk/x/staking/keeper"`), but it has been changed to the interface `ibctestingtypes.StakingKeeper` (where `ibctestingtypes` is an import alias for `""github.com/cosmos/ibc-go/v5/testing/types"`). See this [PR](https://github.com/cosmos/ibc-go/pull/2028) for more details. The `StakingKeeper` interface is defined as:
339+
- The return type of the function `GetStakingKeeper` is not the concrete type `stakingkeeper.Keeper` anymore (where `stakingkeeper` is an import alias for `"cosmossdk.io/x/staking/keeper"`), but it has been changed to the interface `ibctestingtypes.StakingKeeper` (where `ibctestingtypes` is an import alias for `""github.com/cosmos/ibc-go/v5/testing/types"`). See this [PR](https://github.com/cosmos/ibc-go/pull/2028) for more details. The `StakingKeeper` interface is defined as:
340340

341341
```go
342342
type StakingKeeper interface {

e2e/tests/core/02-client/client_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ import (
1717

1818
upgradetypes "cosmossdk.io/x/upgrade/types"
1919

20+
govtypes "cosmossdk.io/x/gov/types"
21+
paramsproposaltypes "cosmossdk.io/x/params/types/proposal"
2022
"github.com/cosmos/cosmos-sdk/client/grpc/cmtservice"
21-
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
22-
paramsproposaltypes "github.com/cosmos/cosmos-sdk/x/params/types/proposal"
2323

24+
cmtproto "github.com/cometbft/cometbft/api/cometbft/types/v1"
25+
cmtprotoversion "github.com/cometbft/cometbft/api/cometbft/version/v1"
2426
"github.com/cometbft/cometbft/crypto/tmhash"
2527
cmtjson "github.com/cometbft/cometbft/libs/json"
2628
"github.com/cometbft/cometbft/privval"
27-
cmtproto "github.com/cometbft/cometbft/proto/tendermint/types"
28-
cmtprotoversion "github.com/cometbft/cometbft/proto/tendermint/version"
2929
cmttypes "github.com/cometbft/cometbft/types"
3030
cmtversion "github.com/cometbft/cometbft/version"
3131

e2e/tests/core/03-connection/connection_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import (
1414
test "github.com/strangelove-ventures/interchaintest/v8/testutil"
1515
testifysuite "github.com/stretchr/testify/suite"
1616

17-
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
18-
paramsproposaltypes "github.com/cosmos/cosmos-sdk/x/params/types/proposal"
17+
govtypes "cosmossdk.io/x/gov/types"
18+
paramsproposaltypes "cosmossdk.io/x/params/types/proposal"
1919

2020
"github.com/cosmos/ibc-go/e2e/testsuite"
2121
"github.com/cosmos/ibc-go/e2e/testsuite/query"

e2e/tests/interchain_accounts/base_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ import (
1515

1616
sdkmath "cosmossdk.io/math"
1717

18+
banktypes "cosmossdk.io/x/bank/types"
19+
govtypes "cosmossdk.io/x/gov/types"
20+
govv1 "cosmossdk.io/x/gov/types/v1"
1821
sdk "github.com/cosmos/cosmos-sdk/types"
19-
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
20-
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
21-
govv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1"
2222

2323
"github.com/cosmos/ibc-go/e2e/testsuite"
2424
"github.com/cosmos/ibc-go/e2e/testsuite/query"

e2e/tests/interchain_accounts/gov_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ import (
1515

1616
sdkmath "cosmossdk.io/math"
1717

18+
banktypes "cosmossdk.io/x/bank/types"
19+
govtypes "cosmossdk.io/x/gov/types"
1820
sdk "github.com/cosmos/cosmos-sdk/types"
19-
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
20-
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
2121

2222
"github.com/cosmos/ibc-go/e2e/testsuite"
2323
"github.com/cosmos/ibc-go/e2e/testsuite/query"

e2e/tests/interchain_accounts/groups_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ import (
1515

1616
sdkmath "cosmossdk.io/math"
1717

18+
banktypes "cosmossdk.io/x/bank/types"
19+
grouptypes "cosmossdk.io/x/group"
1820
sdk "github.com/cosmos/cosmos-sdk/types"
19-
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
20-
grouptypes "github.com/cosmos/cosmos-sdk/x/group"
2121

2222
"github.com/cosmos/ibc-go/e2e/testsuite"
2323
"github.com/cosmos/ibc-go/e2e/testsuite/query"

e2e/tests/interchain_accounts/incentivized_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ import (
1515

1616
sdkmath "cosmossdk.io/math"
1717

18+
banktypes "cosmossdk.io/x/bank/types"
1819
sdk "github.com/cosmos/cosmos-sdk/types"
19-
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
2020

2121
"github.com/cosmos/ibc-go/e2e/testsuite"
2222
"github.com/cosmos/ibc-go/e2e/testsuite/query"

e2e/tests/interchain_accounts/localhost_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ import (
1515

1616
sdkmath "cosmossdk.io/math"
1717

18+
banktypes "cosmossdk.io/x/bank/types"
1819
sdk "github.com/cosmos/cosmos-sdk/types"
19-
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
2020

2121
"github.com/cosmos/ibc-go/e2e/testsuite"
2222
"github.com/cosmos/ibc-go/e2e/testsuite/query"

e2e/tests/interchain_accounts/params_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ import (
1515

1616
sdkmath "cosmossdk.io/math"
1717

18+
banktypes "cosmossdk.io/x/bank/types"
19+
govtypes "cosmossdk.io/x/gov/types"
20+
paramsproposaltypes "cosmossdk.io/x/params/types/proposal"
1821
sdk "github.com/cosmos/cosmos-sdk/types"
19-
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
20-
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
21-
paramsproposaltypes "github.com/cosmos/cosmos-sdk/x/params/types/proposal"
2222

2323
"github.com/cosmos/ibc-go/e2e/testsuite"
2424
"github.com/cosmos/ibc-go/e2e/testsuite/query"

e2e/tests/interchain_accounts/query_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ import (
1313
"github.com/strangelove-ventures/interchaintest/v8/testutil"
1414
testifysuite "github.com/stretchr/testify/suite"
1515

16+
banktypes "cosmossdk.io/x/bank/types"
1617
sdk "github.com/cosmos/cosmos-sdk/types"
17-
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
1818

1919
"github.com/cosmos/ibc-go/e2e/testsuite"
2020
"github.com/cosmos/ibc-go/e2e/testsuite/query"

e2e/tests/interchain_accounts/upgrades_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ import (
1515

1616
sdkmath "cosmossdk.io/math"
1717

18+
banktypes "cosmossdk.io/x/bank/types"
19+
govtypes "cosmossdk.io/x/gov/types"
1820
sdk "github.com/cosmos/cosmos-sdk/types"
19-
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
20-
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
2121

2222
"github.com/cosmos/ibc-go/e2e/testsuite"
2323
"github.com/cosmos/ibc-go/e2e/testsuite/query"

e2e/tests/transfer/authz_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ import (
1212

1313
sdkmath "cosmossdk.io/math"
1414

15+
"cosmossdk.io/x/authz"
1516
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
1617
sdk "github.com/cosmos/cosmos-sdk/types"
1718
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
18-
"github.com/cosmos/cosmos-sdk/x/authz"
1919

2020
"github.com/cosmos/ibc-go/e2e/testsuite"
2121
"github.com/cosmos/ibc-go/e2e/testsuite/query"

e2e/tests/transfer/send_enabled_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
test "github.com/strangelove-ventures/interchaintest/v8/testutil"
1010
testifysuite "github.com/stretchr/testify/suite"
1111

12-
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
13-
paramsproposaltypes "github.com/cosmos/cosmos-sdk/x/params/types/proposal"
12+
govtypes "cosmossdk.io/x/gov/types"
13+
paramsproposaltypes "cosmossdk.io/x/params/types/proposal"
1414

1515
"github.com/cosmos/ibc-go/e2e/testsuite"
1616
"github.com/cosmos/ibc-go/e2e/testsuite/query"

e2e/tests/transfer/send_receive_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
test "github.com/strangelove-ventures/interchaintest/v8/testutil"
1010
testifysuite "github.com/stretchr/testify/suite"
1111

12-
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
13-
paramsproposaltypes "github.com/cosmos/cosmos-sdk/x/params/types/proposal"
12+
govtypes "cosmossdk.io/x/gov/types"
13+
paramsproposaltypes "cosmossdk.io/x/params/types/proposal"
1414

1515
"github.com/cosmos/ibc-go/e2e/testsuite"
1616
"github.com/cosmos/ibc-go/e2e/testsuite/query"

e2e/tests/upgrades/genesis_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ import (
1717

1818
sdkmath "cosmossdk.io/math"
1919

20+
banktypes "cosmossdk.io/x/bank/types"
2021
sdk "github.com/cosmos/cosmos-sdk/types"
21-
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
2222

2323
"github.com/cosmos/ibc-go/e2e/testsuite"
2424
"github.com/cosmos/ibc-go/e2e/testsuite/query"

e2e/tests/upgrades/upgrade_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ import (
1919
sdkmath "cosmossdk.io/math"
2020
upgradetypes "cosmossdk.io/x/upgrade/types"
2121

22+
govtypes "cosmossdk.io/x/gov/types"
2223
sdk "github.com/cosmos/cosmos-sdk/types"
2324
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
24-
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
2525

2626
e2erelayer "github.com/cosmos/ibc-go/e2e/relayer"
2727
"github.com/cosmos/ibc-go/e2e/testsuite"

e2e/tests/wasm/grandpa_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ import (
2121

2222
sdkmath "cosmossdk.io/math"
2323

24+
govtypes "cosmossdk.io/x/gov/types"
2425
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
25-
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
2626

2727
"github.com/cosmos/ibc-go/e2e/testsuite"
2828
"github.com/cosmos/ibc-go/e2e/testsuite/query"

e2e/tests/wasm/upgrade_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ import (
1919

2020
upgradetypes "cosmossdk.io/x/upgrade/types"
2121

22+
govtypes "cosmossdk.io/x/gov/types"
2223
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
23-
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
2424

2525
"github.com/cosmos/ibc-go/e2e/testsuite"
2626
"github.com/cosmos/ibc-go/e2e/testsuite/query"

e2e/testsuite/codec.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@ import (
99

1010
upgradetypes "cosmossdk.io/x/upgrade/types"
1111

12+
"cosmossdk.io/x/authz"
13+
banktypes "cosmossdk.io/x/bank/types"
14+
govv1 "cosmossdk.io/x/gov/types/v1"
15+
govv1beta1 "cosmossdk.io/x/gov/types/v1beta1"
16+
grouptypes "cosmossdk.io/x/group"
17+
proposaltypes "cosmossdk.io/x/params/types/proposal"
1218
"github.com/cosmos/cosmos-sdk/codec"
1319
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
1420
cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec"
1521
sdk "github.com/cosmos/cosmos-sdk/types"
1622
"github.com/cosmos/cosmos-sdk/types/module/testutil"
1723
txtypes "github.com/cosmos/cosmos-sdk/types/tx"
1824
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
19-
"github.com/cosmos/cosmos-sdk/x/authz"
20-
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
21-
govv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1"
22-
govv1beta1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1"
23-
grouptypes "github.com/cosmos/cosmos-sdk/x/group"
24-
proposaltypes "github.com/cosmos/cosmos-sdk/x/params/types/proposal"
2525

2626
wasmtypes "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types"
2727
icacontrollertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types"

e2e/testsuite/query/queries.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ import (
99

1010
"cosmossdk.io/math"
1111

12+
banktypes "cosmossdk.io/x/bank/types"
1213
"github.com/cosmos/cosmos-sdk/client/grpc/cmtservice"
1314
sdk "github.com/cosmos/cosmos-sdk/types"
1415
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
15-
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
1616

1717
controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types"
1818
feetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types"

e2e/testsuite/sanitize/messages.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package sanitize
22

33
import (
4+
govtypesv1 "cosmossdk.io/x/gov/types/v1"
5+
grouptypes "cosmossdk.io/x/group"
46
sdk "github.com/cosmos/cosmos-sdk/types"
5-
govtypesv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1"
6-
grouptypes "github.com/cosmos/cosmos-sdk/x/group"
77

88
"github.com/cosmos/ibc-go/e2e/semverutil"
99
icacontrollertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types"

e2e/testsuite/testconfig.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ import (
1515
interchaintestutil "github.com/strangelove-ventures/interchaintest/v8/testutil"
1616
"gopkg.in/yaml.v2"
1717

18+
govtypes "cosmossdk.io/x/gov/types"
19+
govv1 "cosmossdk.io/x/gov/types/v1"
20+
govv1beta1 "cosmossdk.io/x/gov/types/v1beta1"
1821
"github.com/cosmos/cosmos-sdk/codec"
1922
sdk "github.com/cosmos/cosmos-sdk/types"
2023
"github.com/cosmos/cosmos-sdk/types/module/testutil"
2124
genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types"
22-
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
23-
govv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1"
24-
govv1beta1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1"
2525

2626
cmtjson "github.com/cometbft/cometbft/libs/json"
2727

e2e/testsuite/testsuite.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ import (
2121

2222
sdkmath "cosmossdk.io/math"
2323

24+
banktypes "cosmossdk.io/x/bank/types"
25+
govtypes "cosmossdk.io/x/gov/types"
2426
sdk "github.com/cosmos/cosmos-sdk/types"
25-
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
26-
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
2727

2828
"github.com/cosmos/ibc-go/e2e/internal/directories"
2929
"github.com/cosmos/ibc-go/e2e/relayer"

e2e/testsuite/tx.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ import (
1616
errorsmod "cosmossdk.io/errors"
1717
sdkmath "cosmossdk.io/math"
1818

19+
govtypesv1 "cosmossdk.io/x/gov/types/v1"
20+
govtypesv1beta1 "cosmossdk.io/x/gov/types/v1beta1"
1921
"github.com/cosmos/cosmos-sdk/client"
2022
"github.com/cosmos/cosmos-sdk/client/flags"
2123
"github.com/cosmos/cosmos-sdk/client/tx"
2224
sdk "github.com/cosmos/cosmos-sdk/types"
2325
signingtypes "github.com/cosmos/cosmos-sdk/types/tx/signing"
2426
authtx "github.com/cosmos/cosmos-sdk/x/auth/tx"
25-
govtypesv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1"
26-
govtypesv1beta1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1"
2727

2828
abci "github.com/cometbft/cometbft/abci/types"
2929

0 commit comments

Comments
 (0)