From 7fb133e365ed532c13a6acd088f0e8acce338f5f Mon Sep 17 00:00:00 2001 From: Damian Nolan Date: Thu, 23 Sep 2021 15:50:34 +0200 Subject: [PATCH] chore: merge latest main to interchain-accounts (#435) --- .../client/cli/query.go | 2 +- .../apps/27-interchain-accounts/genesis.go | 6 +-- .../27-interchain-accounts/keeper/account.go | 6 +-- .../keeper/account_test.go | 4 +- .../keeper/grpc_query.go | 2 +- .../keeper/grpc_query_test.go | 2 +- .../keeper/handshake.go | 10 ++-- .../keeper/handshake_test.go | 8 +-- .../27-interchain-accounts/keeper/keeper.go | 4 +- .../keeper/keeper_test.go | 6 +-- .../27-interchain-accounts/keeper/relay.go | 9 ++-- .../keeper/relay_test.go | 8 +-- modules/apps/27-interchain-accounts/module.go | 12 ++--- .../27-interchain-accounts/module_test.go | 6 +-- .../27-interchain-accounts/types/account.go | 2 +- .../types/account.pb.go | 14 +++--- .../types/account_test.go | 4 +- .../types/expected_keepers.go | 7 +-- .../types/genesis.pb.go | 14 +++--- .../27-interchain-accounts/types/query.pb.go | 46 ++++++++--------- .../27-interchain-accounts/types/types.pb.go | 50 +++++++++---------- .../types/validate_test.go | 2 +- .../interchain_accounts/v1/account.proto | 2 +- .../interchain_accounts/v1/genesis.proto | 2 +- .../interchain_accounts/v1/query.proto | 2 +- .../interchain_accounts/v1/types.proto | 2 +- testing/simapp/app.go | 7 ++- 27 files changed, 120 insertions(+), 119 deletions(-) diff --git a/modules/apps/27-interchain-accounts/client/cli/query.go b/modules/apps/27-interchain-accounts/client/cli/query.go index 55149f2b0fd..70137749561 100644 --- a/modules/apps/27-interchain-accounts/client/cli/query.go +++ b/modules/apps/27-interchain-accounts/client/cli/query.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/cosmos/ibc-go/modules/apps/27-interchain-accounts/types" + "github.com/cosmos/ibc-go/v2/modules/apps/27-interchain-accounts/types" ) func GetQueryCmd() *cobra.Command { diff --git a/modules/apps/27-interchain-accounts/genesis.go b/modules/apps/27-interchain-accounts/genesis.go index 7f225f54150..0fd975ace00 100644 --- a/modules/apps/27-interchain-accounts/genesis.go +++ b/modules/apps/27-interchain-accounts/genesis.go @@ -4,10 +4,10 @@ import ( "fmt" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/modules/apps/27-interchain-accounts/keeper" - "github.com/cosmos/ibc-go/modules/apps/27-interchain-accounts/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/apps/27-interchain-accounts/keeper" + "github.com/cosmos/ibc-go/v2/modules/apps/27-interchain-accounts/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" ) // InitGenesis initializes the interchain accounts application state from a provided genesis state diff --git a/modules/apps/27-interchain-accounts/keeper/account.go b/modules/apps/27-interchain-accounts/keeper/account.go index 814e96d6dad..069ec805b85 100644 --- a/modules/apps/27-interchain-accounts/keeper/account.go +++ b/modules/apps/27-interchain-accounts/keeper/account.go @@ -5,9 +5,9 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/cosmos/ibc-go/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" ) // InitInterchainAccount is the entry point to registering an interchain account. diff --git a/modules/apps/27-interchain-accounts/keeper/account_test.go b/modules/apps/27-interchain-accounts/keeper/account_test.go index 69ac5a5dc87..78a35eafaef 100644 --- a/modules/apps/27-interchain-accounts/keeper/account_test.go +++ b/modules/apps/27-interchain-accounts/keeper/account_test.go @@ -1,8 +1,8 @@ package keeper_test import ( - "github.com/cosmos/ibc-go/modules/apps/27-interchain-accounts/types" - ibctesting "github.com/cosmos/ibc-go/testing" + "github.com/cosmos/ibc-go/v2/modules/apps/27-interchain-accounts/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) func (suite *KeeperTestSuite) TestInitInterchainAccount() { diff --git a/modules/apps/27-interchain-accounts/keeper/grpc_query.go b/modules/apps/27-interchain-accounts/keeper/grpc_query.go index dacf55efeb1..1d110916202 100644 --- a/modules/apps/27-interchain-accounts/keeper/grpc_query.go +++ b/modules/apps/27-interchain-accounts/keeper/grpc_query.go @@ -10,7 +10,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/cosmos/ibc-go/modules/apps/27-interchain-accounts/types" + "github.com/cosmos/ibc-go/v2/modules/apps/27-interchain-accounts/types" ) var _ types.QueryServer = Keeper{} diff --git a/modules/apps/27-interchain-accounts/keeper/grpc_query_test.go b/modules/apps/27-interchain-accounts/keeper/grpc_query_test.go index c5ea7a3cd84..1beed47d7e1 100644 --- a/modules/apps/27-interchain-accounts/keeper/grpc_query_test.go +++ b/modules/apps/27-interchain-accounts/keeper/grpc_query_test.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/cosmos/ibc-go/modules/apps/27-interchain-accounts/types" + "github.com/cosmos/ibc-go/v2/modules/apps/27-interchain-accounts/types" ) func (suite *KeeperTestSuite) TestQueryInterchainAccountAddress() { diff --git a/modules/apps/27-interchain-accounts/keeper/handshake.go b/modules/apps/27-interchain-accounts/keeper/handshake.go index bccd1be1a16..ea1015eaefa 100644 --- a/modules/apps/27-interchain-accounts/keeper/handshake.go +++ b/modules/apps/27-interchain-accounts/keeper/handshake.go @@ -5,10 +5,10 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" - "github.com/cosmos/ibc-go/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/modules/core/05-port/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v2/modules/core/05-port/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" ) // OnChanOpenInit performs basic validation of channel initialization. @@ -87,7 +87,7 @@ func (k Keeper) OnChanOpenTry( return err } - // Check to ensure that the version string contains the expected address generated from the Counterparty portID + // Check to ensure that the version string contains the expected address generated from the Counterparty portID accAddr := types.GenerateAddress(counterparty.PortId) parsedAddr := types.ParseAddressFromVersion(version) if parsedAddr != accAddr.String() { diff --git a/modules/apps/27-interchain-accounts/keeper/handshake_test.go b/modules/apps/27-interchain-accounts/keeper/handshake_test.go index d3ba9b20a31..ba2a1eea9ca 100644 --- a/modules/apps/27-interchain-accounts/keeper/handshake_test.go +++ b/modules/apps/27-interchain-accounts/keeper/handshake_test.go @@ -3,10 +3,10 @@ package keeper_test import ( capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" - "github.com/cosmos/ibc-go/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" - ibctesting "github.com/cosmos/ibc-go/testing" + "github.com/cosmos/ibc-go/v2/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) func (suite *KeeperTestSuite) TestOnChanOpenInit() { diff --git a/modules/apps/27-interchain-accounts/keeper/keeper.go b/modules/apps/27-interchain-accounts/keeper/keeper.go index d45fd9037aa..93fe12ba9ac 100644 --- a/modules/apps/27-interchain-accounts/keeper/keeper.go +++ b/modules/apps/27-interchain-accounts/keeper/keeper.go @@ -11,8 +11,8 @@ import ( capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" "github.com/tendermint/tendermint/libs/log" - "github.com/cosmos/ibc-go/modules/apps/27-interchain-accounts/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/apps/27-interchain-accounts/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" ) // Keeper defines the IBC transfer keeper diff --git a/modules/apps/27-interchain-accounts/keeper/keeper_test.go b/modules/apps/27-interchain-accounts/keeper/keeper_test.go index 0f7c12d8189..cf3aca35f96 100644 --- a/modules/apps/27-interchain-accounts/keeper/keeper_test.go +++ b/modules/apps/27-interchain-accounts/keeper/keeper_test.go @@ -7,9 +7,9 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" "github.com/stretchr/testify/suite" - "github.com/cosmos/ibc-go/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/testing" + "github.com/cosmos/ibc-go/v2/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) var ( diff --git a/modules/apps/27-interchain-accounts/keeper/relay.go b/modules/apps/27-interchain-accounts/keeper/relay.go index 6884a026dba..09175043dec 100644 --- a/modules/apps/27-interchain-accounts/keeper/relay.go +++ b/modules/apps/27-interchain-accounts/keeper/relay.go @@ -5,11 +5,12 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/cosmos/ibc-go/modules/apps/27-interchain-accounts/types" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" "github.com/tendermint/tendermint/crypto/tmhash" + + "github.com/cosmos/ibc-go/v2/modules/apps/27-interchain-accounts/types" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" ) // TODO: implement middleware functionality, this will allow us to use capabilities to diff --git a/modules/apps/27-interchain-accounts/keeper/relay_test.go b/modules/apps/27-interchain-accounts/keeper/relay_test.go index 6fd53d7b888..78d407934d8 100644 --- a/modules/apps/27-interchain-accounts/keeper/relay_test.go +++ b/modules/apps/27-interchain-accounts/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/modules/apps/27-interchain-accounts/types" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v2/modules/apps/27-interchain-accounts/types" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/testing" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) func (suite *KeeperTestSuite) TestTrySendTx() { diff --git a/modules/apps/27-interchain-accounts/module.go b/modules/apps/27-interchain-accounts/module.go index efa808f8d01..99bbf2d1bd8 100644 --- a/modules/apps/27-interchain-accounts/module.go +++ b/modules/apps/27-interchain-accounts/module.go @@ -17,12 +17,12 @@ import ( "github.com/grpc-ecosystem/grpc-gateway/runtime" abci "github.com/tendermint/tendermint/abci/types" - "github.com/cosmos/ibc-go/modules/apps/27-interchain-accounts/client/cli" - "github.com/cosmos/ibc-go/modules/apps/27-interchain-accounts/keeper" - "github.com/cosmos/ibc-go/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/modules/core/05-port/types" - ibcexported "github.com/cosmos/ibc-go/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/apps/27-interchain-accounts/client/cli" + "github.com/cosmos/ibc-go/v2/modules/apps/27-interchain-accounts/keeper" + "github.com/cosmos/ibc-go/v2/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v2/modules/core/05-port/types" + ibcexported "github.com/cosmos/ibc-go/v2/modules/core/exported" ) var ( diff --git a/modules/apps/27-interchain-accounts/module_test.go b/modules/apps/27-interchain-accounts/module_test.go index fbfea84a189..af5ea30eb7b 100644 --- a/modules/apps/27-interchain-accounts/module_test.go +++ b/modules/apps/27-interchain-accounts/module_test.go @@ -6,9 +6,9 @@ import ( "github.com/stretchr/testify/suite" - "github.com/cosmos/ibc-go/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/testing" + "github.com/cosmos/ibc-go/v2/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) var ( diff --git a/modules/apps/27-interchain-accounts/types/account.go b/modules/apps/27-interchain-accounts/types/account.go index 7948e2e6afa..db44d4acf14 100644 --- a/modules/apps/27-interchain-accounts/types/account.go +++ b/modules/apps/27-interchain-accounts/types/account.go @@ -12,7 +12,7 @@ import ( "github.com/tendermint/tendermint/crypto/tmhash" yaml "gopkg.in/yaml.v2" - connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/types" + connectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" ) const ( diff --git a/modules/apps/27-interchain-accounts/types/account.pb.go b/modules/apps/27-interchain-accounts/types/account.pb.go index 4518d7581a9..d645d28b72c 100644 --- a/modules/apps/27-interchain-accounts/types/account.pb.go +++ b/modules/apps/27-interchain-accounts/types/account.pb.go @@ -72,7 +72,7 @@ func init() { } var fileDescriptor_5561bd92625bf7da = []byte{ - // 338 bytes of a gzipped FileDescriptorProto + // 341 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x32, 0xcd, 0x4c, 0x4a, 0xd6, 0x4f, 0x2c, 0x28, 0xc8, 0xc9, 0x4c, 0x4e, 0x2c, 0xc9, 0xcc, 0xcf, 0x2b, 0xd6, 0xcf, 0xcc, 0x2b, 0x49, 0x2d, 0x4a, 0xce, 0x48, 0xcc, 0xcc, 0x8b, 0x4f, 0x4c, 0x4e, 0xce, 0x2f, 0xcd, 0x2b, 0x29, @@ -88,13 +88,13 @@ var fileDescriptor_5561bd92625bf7da = []byte{ 0x5c, 0xbc, 0x50, 0x89, 0xf8, 0xfc, 0xf2, 0xbc, 0xd4, 0x22, 0x09, 0x26, 0x05, 0x46, 0x0d, 0x4e, 0x27, 0x89, 0x4f, 0xf7, 0xe4, 0x45, 0x20, 0x9a, 0x51, 0xa4, 0x95, 0x82, 0x78, 0xa0, 0x7c, 0x7f, 0x10, 0xd7, 0x4a, 0xae, 0x63, 0x81, 0x3c, 0xc3, 0x8c, 0x05, 0xf2, 0x0c, 0x97, 0xb6, 0xe8, 0x0a, - 0x61, 0xb8, 0xdf, 0xd3, 0x29, 0xe6, 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, + 0x61, 0xb8, 0xdf, 0xd3, 0x29, 0xfe, 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, 0xe1, 0xc2, 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, - 0x9c, 0xd2, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xa1, 0xe1, 0xa7, 0x9f, 0x99, - 0x94, 0xac, 0x9b, 0x9e, 0xaf, 0x9f, 0x9b, 0x9f, 0x52, 0x9a, 0x93, 0x5a, 0x0c, 0x8a, 0xbe, 0x62, - 0x7d, 0x23, 0x73, 0x5d, 0x44, 0x14, 0xe8, 0xc2, 0x63, 0xae, 0xa4, 0xb2, 0x20, 0xb5, 0x38, 0x89, - 0x0d, 0x1c, 0x76, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x46, 0x61, 0xdb, 0x7e, 0xee, 0x01, - 0x00, 0x00, + 0x5c, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xa1, 0xe1, 0xa7, 0x9f, 0x99, + 0x94, 0xac, 0x9b, 0x9e, 0xaf, 0x5f, 0x66, 0xa4, 0x9f, 0x9b, 0x9f, 0x52, 0x9a, 0x93, 0x5a, 0x0c, + 0x8a, 0xc1, 0x62, 0x7d, 0x23, 0x73, 0x5d, 0x44, 0x2c, 0xe8, 0xc2, 0x23, 0xaf, 0xa4, 0xb2, 0x20, + 0xb5, 0x38, 0x89, 0x0d, 0x1c, 0x7c, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe7, 0xf4, 0x36, + 0xc4, 0xf1, 0x01, 0x00, 0x00, } func (m *InterchainAccount) Marshal() (dAtA []byte, err error) { diff --git a/modules/apps/27-interchain-accounts/types/account_test.go b/modules/apps/27-interchain-accounts/types/account_test.go index 8f3bbc1126b..54a42759b26 100644 --- a/modules/apps/27-interchain-accounts/types/account_test.go +++ b/modules/apps/27-interchain-accounts/types/account_test.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/suite" - "github.com/cosmos/ibc-go/modules/apps/27-interchain-accounts/types" - ibctesting "github.com/cosmos/ibc-go/testing" + "github.com/cosmos/ibc-go/v2/modules/apps/27-interchain-accounts/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) var ( diff --git a/modules/apps/27-interchain-accounts/types/expected_keepers.go b/modules/apps/27-interchain-accounts/types/expected_keepers.go index 448a0b3fcaa..4a3aa86d55b 100644 --- a/modules/apps/27-interchain-accounts/types/expected_keepers.go +++ b/modules/apps/27-interchain-accounts/types/expected_keepers.go @@ -4,9 +4,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" - connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/modules/core/04-channel/types" - ibcexported "github.com/cosmos/ibc-go/modules/core/exported" + + connectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + ibcexported "github.com/cosmos/ibc-go/v2/modules/core/exported" ) type Router interface { diff --git a/modules/apps/27-interchain-accounts/types/genesis.pb.go b/modules/apps/27-interchain-accounts/types/genesis.pb.go index 9e32a1c8abc..44661c274c4 100644 --- a/modules/apps/27-interchain-accounts/types/genesis.pb.go +++ b/modules/apps/27-interchain-accounts/types/genesis.pb.go @@ -77,7 +77,7 @@ func init() { } var fileDescriptor_629b3ced0911516b = []byte{ - // 241 bytes of a gzipped FileDescriptorProto + // 244 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x32, 0xcd, 0x4c, 0x4a, 0xd6, 0x4f, 0x2c, 0x28, 0xc8, 0xc9, 0x4c, 0x4e, 0x2c, 0xc9, 0xcc, 0xcf, 0x2b, 0xd6, 0xcf, 0xcc, 0x2b, 0x49, 0x2d, 0x4a, 0xce, 0x48, 0xcc, 0xcc, 0x8b, 0x4f, 0x4c, 0x4e, 0xce, 0x2f, 0xcd, 0x2b, 0x29, @@ -87,13 +87,13 @@ var fileDescriptor_629b3ced0911516b = []byte{ 0xe3, 0x0e, 0x31, 0x2f, 0xb8, 0x24, 0xb1, 0x24, 0x55, 0x48, 0x9b, 0x8b, 0xbd, 0x20, 0xbf, 0xa8, 0x24, 0x3e, 0x33, 0x45, 0x82, 0x51, 0x81, 0x51, 0x83, 0xd3, 0x49, 0xe8, 0xd3, 0x3d, 0x79, 0xbe, 0xca, 0xc4, 0xdc, 0x1c, 0x2b, 0x25, 0xa8, 0x84, 0x52, 0x10, 0x1b, 0x88, 0xe5, 0x99, 0xe2, 0x14, - 0x73, 0xe2, 0x91, 0x1c, 0xe3, 0x85, 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, 0x31, 0x4e, 0x78, 0x2c, - 0xc7, 0x70, 0xe1, 0xb1, 0x1c, 0xc3, 0x8d, 0xc7, 0x72, 0x0c, 0x51, 0x4e, 0xe9, 0x99, 0x25, 0x19, + 0x7f, 0xe2, 0x91, 0x1c, 0xe3, 0x85, 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, 0x31, 0x4e, 0x78, 0x2c, + 0xc7, 0x70, 0xe1, 0xb1, 0x1c, 0xc3, 0x8d, 0xc7, 0x72, 0x0c, 0x51, 0xae, 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0xfa, 0xc9, 0xf9, 0xc5, 0xb9, 0xf9, 0xc5, 0xfa, 0x99, 0x49, - 0xc9, 0xba, 0xe9, 0xf9, 0xfa, 0xb9, 0xf9, 0x29, 0xa5, 0x39, 0xa9, 0xc5, 0x20, 0x9f, 0x16, 0xeb, - 0x1b, 0x99, 0xeb, 0x22, 0x5c, 0xab, 0x0b, 0xf7, 0x64, 0x49, 0x65, 0x41, 0x6a, 0x71, 0x12, 0x1b, - 0xd8, 0x85, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x89, 0x2b, 0x4e, 0x7c, 0x19, 0x01, 0x00, - 0x00, + 0xc9, 0xba, 0xe9, 0xf9, 0xfa, 0x65, 0x46, 0xfa, 0xb9, 0xf9, 0x29, 0xa5, 0x39, 0xa9, 0xc5, 0x20, + 0xcf, 0x16, 0xeb, 0x1b, 0x99, 0xeb, 0x22, 0x1c, 0xac, 0x0b, 0xf7, 0x67, 0x49, 0x65, 0x41, 0x6a, + 0x71, 0x12, 0x1b, 0xd8, 0x91, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0xdc, 0xe5, 0x36, 0xd4, + 0x1c, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/modules/apps/27-interchain-accounts/types/query.pb.go b/modules/apps/27-interchain-accounts/types/query.pb.go index 271ba3b4827..29557f53dca 100644 --- a/modules/apps/27-interchain-accounts/types/query.pb.go +++ b/modules/apps/27-interchain-accounts/types/query.pb.go @@ -124,29 +124,29 @@ func init() { } var fileDescriptor_72a16b57c3343764 = []byte{ - // 347 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x52, 0x3f, 0x4b, 0x3b, 0x31, - 0x18, 0xbe, 0x0c, 0xbf, 0x1f, 0x9a, 0xf1, 0xe8, 0x50, 0x0e, 0xb9, 0x4a, 0x51, 0x74, 0x69, 0x62, - 0x5b, 0x44, 0x10, 0x97, 0x76, 0xeb, 0xa0, 0x68, 0x47, 0x11, 0x8e, 0x5c, 0x2e, 0x5c, 0x03, 0x6d, - 0xde, 0x34, 0xc9, 0x15, 0xfa, 0x0d, 0x1c, 0xfd, 0x08, 0xfd, 0x1e, 0xce, 0x82, 0x63, 0x47, 0x47, - 0x69, 0x17, 0x3f, 0x86, 0xf4, 0xae, 0xd4, 0x82, 0x16, 0x6f, 0x70, 0x7b, 0xc9, 0xf3, 0x3e, 0x7f, - 0x78, 0x9f, 0xe0, 0xb6, 0x8c, 0x39, 0x65, 0x5a, 0x0f, 0x25, 0x67, 0x4e, 0x82, 0xb2, 0x54, 0x2a, - 0x27, 0x0c, 0x1f, 0x30, 0xa9, 0x22, 0xc6, 0x39, 0x64, 0xca, 0x59, 0x3a, 0x69, 0xd2, 0x71, 0x26, - 0xcc, 0x94, 0x68, 0x03, 0x0e, 0xfc, 0x13, 0x19, 0x73, 0xb2, 0x4d, 0x22, 0x3f, 0x90, 0xc8, 0xa4, - 0x19, 0x54, 0x52, 0x48, 0x21, 0xe7, 0xd0, 0xd5, 0x54, 0xd0, 0x83, 0x83, 0x14, 0x20, 0x1d, 0x0a, - 0xca, 0xb4, 0xa4, 0x4c, 0x29, 0x70, 0x6b, 0x91, 0x02, 0x3d, 0x2f, 0x9b, 0x68, 0x3d, 0x17, 0xb4, - 0x7a, 0x8c, 0x8f, 0xee, 0x56, 0x11, 0x7b, 0x9b, 0xe5, 0x4e, 0x81, 0x77, 0x92, 0xc4, 0x08, 0x6b, - 0xfb, 0x62, 0x9c, 0x09, 0xeb, 0xfc, 0x33, 0x5c, 0xc9, 0x9f, 0x85, 0xd1, 0xcc, 0xb8, 0x69, 0xa4, - 0xc1, 0xb8, 0x48, 0x26, 0x55, 0x74, 0x88, 0x4e, 0xf7, 0xfb, 0xfe, 0x36, 0x76, 0x0b, 0xc6, 0xf5, - 0x92, 0xcb, 0xbd, 0xc7, 0x59, 0xcd, 0xfb, 0x98, 0xd5, 0xbc, 0xba, 0xc0, 0xc7, 0xbf, 0x78, 0x58, - 0x0d, 0xca, 0x0a, 0xff, 0x0a, 0x07, 0xdf, 0x43, 0x47, 0xac, 0xd8, 0x5a, 0x5b, 0x55, 0xe5, 0x0e, - 0x95, 0xd6, 0x0b, 0xc2, 0xff, 0x72, 0x1f, 0xff, 0x19, 0xe1, 0xea, 0x2e, 0x33, 0xff, 0x9a, 0x94, - 0xac, 0x81, 0x94, 0x39, 0x4c, 0x70, 0xf3, 0x57, 0x72, 0xc5, 0x0d, 0xea, 0x5e, 0xf7, 0xe1, 0x75, - 0x11, 0xa2, 0xf9, 0x22, 0x44, 0xef, 0x8b, 0x10, 0x3d, 0x2d, 0x43, 0x6f, 0xbe, 0x0c, 0xbd, 0xb7, - 0x65, 0xe8, 0xdd, 0x77, 0x53, 0xe9, 0x06, 0x59, 0x4c, 0x38, 0x8c, 0x28, 0x07, 0x3b, 0x02, 0x4b, - 0x65, 0xcc, 0x1b, 0x29, 0xd0, 0x11, 0x24, 0xd9, 0x50, 0xd8, 0xd5, 0x07, 0xb0, 0xb4, 0x75, 0xd1, - 0xf8, 0x8a, 0xd0, 0xd8, 0x74, 0xef, 0xa6, 0x5a, 0xd8, 0xf8, 0x7f, 0xde, 0x7b, 0xfb, 0x33, 0x00, - 0x00, 0xff, 0xff, 0x2e, 0x9f, 0x3c, 0xd1, 0xc2, 0x02, 0x00, 0x00, + // 349 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x52, 0xbf, 0x4a, 0x03, 0x31, + 0x18, 0xbf, 0x0c, 0x8a, 0x66, 0x3c, 0x3a, 0x94, 0x43, 0xae, 0x52, 0x14, 0x5d, 0x9a, 0xd8, 0x16, + 0x11, 0xc4, 0xa5, 0x82, 0x43, 0x07, 0x45, 0x3b, 0xba, 0x1c, 0xb9, 0x5c, 0xb8, 0x06, 0xda, 0x7c, + 0x69, 0x92, 0x2b, 0xf4, 0x0d, 0x1c, 0x7d, 0x84, 0xbe, 0x87, 0xb3, 0xe0, 0xd8, 0xd1, 0x51, 0xda, + 0xc5, 0xc7, 0x90, 0xde, 0x95, 0x5a, 0xd0, 0xe2, 0x0d, 0x6e, 0x1f, 0xf9, 0x7d, 0xbf, 0x3f, 0x7c, + 0xbf, 0xe0, 0xb6, 0x8c, 0x39, 0x65, 0x5a, 0x0f, 0x24, 0x67, 0x4e, 0x82, 0xb2, 0x54, 0x2a, 0x27, + 0x0c, 0xef, 0x33, 0xa9, 0x22, 0xc6, 0x39, 0x64, 0xca, 0x59, 0x3a, 0x6e, 0xd2, 0x51, 0x26, 0xcc, + 0x84, 0x68, 0x03, 0x0e, 0xfc, 0x13, 0x19, 0x73, 0xb2, 0x49, 0x22, 0xbf, 0x90, 0xc8, 0xb8, 0x19, + 0x54, 0x52, 0x48, 0x21, 0xe7, 0xd0, 0xe5, 0x54, 0xd0, 0x83, 0x83, 0x14, 0x20, 0x1d, 0x08, 0xca, + 0xb4, 0xa4, 0x4c, 0x29, 0x70, 0x2b, 0x91, 0x02, 0x3d, 0x2f, 0x9b, 0x68, 0x35, 0x17, 0xb4, 0x7a, + 0x8c, 0x8f, 0x1e, 0x96, 0x11, 0xbb, 0xeb, 0xe5, 0x4e, 0x81, 0x77, 0x92, 0xc4, 0x08, 0x6b, 0x7b, + 0x62, 0x94, 0x09, 0xeb, 0xfc, 0x33, 0x5c, 0xc9, 0x9f, 0x85, 0xd1, 0xcc, 0xb8, 0x49, 0xa4, 0xc1, + 0xb8, 0x48, 0x26, 0x55, 0x74, 0x88, 0x4e, 0xf7, 0x7b, 0xfe, 0x26, 0x76, 0x0f, 0xc6, 0x75, 0x93, + 0xcb, 0xbd, 0xa7, 0x69, 0xcd, 0xfb, 0x9c, 0xd6, 0xbc, 0xba, 0xc0, 0xc7, 0x7f, 0x78, 0x58, 0x0d, + 0xca, 0x0a, 0xff, 0x0a, 0x07, 0x3f, 0x43, 0x47, 0xac, 0xd8, 0x5a, 0x59, 0x55, 0xe5, 0x16, 0x95, + 0xd6, 0x2b, 0xc2, 0x3b, 0xb9, 0x8f, 0xff, 0x82, 0x70, 0x75, 0x9b, 0x99, 0x7f, 0x4b, 0x4a, 0xd6, + 0x40, 0xca, 0x1c, 0x26, 0xb8, 0xfb, 0x2f, 0xb9, 0xe2, 0x06, 0x75, 0xef, 0x3a, 0x7a, 0x9b, 0x87, + 0x68, 0x36, 0x0f, 0xd1, 0xc7, 0x3c, 0x44, 0xcf, 0x8b, 0xd0, 0x9b, 0x2d, 0x42, 0xef, 0x7d, 0x11, + 0x7a, 0x8f, 0x37, 0xa9, 0x74, 0xfd, 0x2c, 0x26, 0x1c, 0x86, 0x94, 0x83, 0x1d, 0x82, 0xa5, 0x32, + 0xe6, 0x8d, 0x14, 0xe8, 0xb8, 0x45, 0x87, 0x90, 0x64, 0x03, 0x61, 0x97, 0x7f, 0xc0, 0xd2, 0xd6, + 0x45, 0xe3, 0x3b, 0x45, 0x63, 0x5d, 0xbf, 0x9b, 0x68, 0x61, 0xe3, 0xdd, 0xbc, 0xfa, 0xf6, 0x57, + 0x00, 0x00, 0x00, 0xff, 0xff, 0x38, 0xd5, 0xa3, 0x36, 0xc5, 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/modules/apps/27-interchain-accounts/types/types.pb.go b/modules/apps/27-interchain-accounts/types/types.pb.go index 62324b0be0a..6233fa0eb26 100644 --- a/modules/apps/27-interchain-accounts/types/types.pb.go +++ b/modules/apps/27-interchain-accounts/types/types.pb.go @@ -205,33 +205,33 @@ func init() { } var fileDescriptor_39bab93e18d89799 = []byte{ - // 405 bytes of a gzipped FileDescriptorProto + // 407 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x51, 0x41, 0x6b, 0xd4, 0x40, 0x18, 0x4d, 0x34, 0x48, 0x3b, 0x4a, 0xd1, 0xb0, 0x42, 0x8d, 0x10, 0x4b, 0x2e, 0x16, 0x21, 0x33, - 0x76, 0x2b, 0x08, 0x42, 0xc1, 0x4d, 0x1a, 0x21, 0x17, 0x59, 0x62, 0x0a, 0x55, 0x84, 0x30, 0x33, - 0x19, 0xd3, 0xc1, 0x24, 0x13, 0x3a, 0x93, 0xd5, 0xf9, 0x07, 0xe2, 0xc9, 0x3f, 0xe0, 0xc9, 0x3f, - 0xe3, 0x71, 0x8f, 0x9e, 0x44, 0x76, 0xff, 0x81, 0xbf, 0x40, 0x32, 0xc1, 0x5d, 0x0f, 0x1e, 0x7a, - 0x7b, 0x33, 0xdf, 0xf7, 0x1e, 0xef, 0x7b, 0x0f, 0x1c, 0x73, 0x42, 0x11, 0xee, 0xba, 0x9a, 0x53, - 0xac, 0xb8, 0x68, 0x25, 0xe2, 0xad, 0x62, 0x97, 0xf4, 0x02, 0xf3, 0xb6, 0xc0, 0x94, 0x8a, 0xbe, - 0x55, 0x12, 0x2d, 0x8e, 0x90, 0xd2, 0x1d, 0x93, 0xb0, 0xbb, 0x14, 0x4a, 0xb8, 0x0f, 0x39, 0xa1, - 0xf0, 0x5f, 0x12, 0xfc, 0x0f, 0x09, 0x2e, 0x8e, 0xbc, 0x7b, 0x95, 0x10, 0x55, 0xcd, 0x90, 0xa1, - 0x91, 0xfe, 0x1d, 0xc2, 0xad, 0x1e, 0x35, 0xbc, 0x49, 0x25, 0x2a, 0x61, 0x20, 0x1a, 0xd0, 0xf8, - 0x1b, 0x3c, 0x07, 0x3b, 0x69, 0x14, 0xe7, 0x1f, 0x33, 0xfc, 0xc1, 0x7d, 0x02, 0x00, 0x11, 0xa5, - 0x2e, 0x88, 0x56, 0x4c, 0xee, 0xdb, 0x07, 0xf6, 0xe1, 0xad, 0xe8, 0xee, 0xef, 0x9f, 0x0f, 0xee, - 0x68, 0xdc, 0xd4, 0xcf, 0x82, 0xed, 0x2c, 0xc8, 0x76, 0x87, 0x47, 0x64, 0xf0, 0x09, 0xd8, 0x35, - 0x0a, 0x91, 0x28, 0xb5, 0xfb, 0x18, 0xec, 0x34, 0x4c, 0x4a, 0x5c, 0x19, 0x81, 0xeb, 0x87, 0x37, - 0xa7, 0x13, 0x38, 0x5a, 0x82, 0x7f, 0x2d, 0xc1, 0x59, 0xab, 0xb3, 0xcd, 0x56, 0xd0, 0x80, 0x49, - 0x1a, 0xc5, 0xb3, 0xf1, 0x86, 0x39, 0xa6, 0xef, 0x99, 0x3a, 0xc5, 0x0a, 0xbb, 0x33, 0xe0, 0x0c, - 0x09, 0x18, 0x1b, 0x7b, 0xd3, 0x10, 0x5e, 0x31, 0x01, 0x98, 0xeb, 0x8e, 0x65, 0x86, 0xea, 0xba, - 0xc0, 0x29, 0xb1, 0xc2, 0xfb, 0xd7, 0x86, 0x4b, 0x32, 0x83, 0x1f, 0x9d, 0x00, 0x67, 0xd8, 0x70, - 0x11, 0xb8, 0x9f, 0xbf, 0x9e, 0x27, 0x45, 0x72, 0x9e, 0xc4, 0x67, 0x79, 0x52, 0xe4, 0xe7, 0xc5, - 0xd9, 0xcb, 0x57, 0xf3, 0x24, 0x4e, 0x5f, 0xa4, 0xc9, 0xe9, 0x6d, 0xcb, 0xdb, 0xfb, 0xfc, 0xf5, - 0x00, 0x6c, 0xa7, 0x9e, 0xf3, 0xe9, 0x9b, 0x6f, 0x45, 0x6f, 0xbf, 0xaf, 0x7c, 0x7b, 0xb9, 0xf2, - 0xed, 0x5f, 0x2b, 0xdf, 0xfe, 0xb2, 0xf6, 0xad, 0xe5, 0xda, 0xb7, 0x7e, 0xac, 0x7d, 0xeb, 0x4d, - 0x54, 0x71, 0x75, 0xd1, 0x13, 0x48, 0x45, 0x83, 0xa8, 0x90, 0x8d, 0x90, 0x88, 0x13, 0x1a, 0x56, - 0x02, 0x35, 0xa2, 0xec, 0x6b, 0x26, 0x87, 0xd2, 0x25, 0x9a, 0x3e, 0x0d, 0xb7, 0xc6, 0xc3, 0x4d, - 0xdf, 0xa6, 0x6c, 0x72, 0xc3, 0x64, 0x74, 0xfc, 0x27, 0x00, 0x00, 0xff, 0xff, 0x70, 0xa3, 0x00, - 0x15, 0x24, 0x02, 0x00, 0x00, + 0x36, 0x15, 0x04, 0xa1, 0xe0, 0x26, 0x8d, 0x90, 0x8b, 0x2c, 0x31, 0x85, 0xea, 0x25, 0xcc, 0x4c, + 0xc6, 0x74, 0x30, 0xc9, 0x84, 0xce, 0x64, 0x75, 0xfe, 0x81, 0x78, 0xf2, 0x0f, 0x78, 0xf2, 0xcf, + 0x78, 0xec, 0xd1, 0x93, 0xc8, 0xee, 0x3f, 0xf0, 0x17, 0x48, 0x26, 0xb8, 0xeb, 0xc1, 0x83, 0xb7, + 0x37, 0xf3, 0x7d, 0xef, 0xf1, 0xbe, 0xf7, 0xc0, 0x31, 0x27, 0x14, 0xe1, 0xbe, 0x6f, 0x38, 0xc5, + 0x8a, 0x8b, 0x4e, 0x22, 0xde, 0x29, 0x76, 0x49, 0x2f, 0x30, 0xef, 0x4a, 0x4c, 0xa9, 0x18, 0x3a, + 0x25, 0xd1, 0xf2, 0x08, 0x29, 0xdd, 0x33, 0x09, 0xfb, 0x4b, 0xa1, 0x84, 0xfb, 0x90, 0x13, 0x0a, + 0xff, 0x26, 0xc1, 0x7f, 0x90, 0xe0, 0xf2, 0xc8, 0xbb, 0x57, 0x0b, 0x51, 0x37, 0x0c, 0x19, 0x1a, + 0x19, 0xde, 0x22, 0xdc, 0xe9, 0x49, 0xc3, 0x9b, 0xd5, 0xa2, 0x16, 0x06, 0xa2, 0x11, 0x4d, 0xbf, + 0xc1, 0x73, 0xb0, 0x93, 0xc5, 0x49, 0xf1, 0x21, 0xc7, 0xef, 0xdd, 0x27, 0x00, 0x10, 0x51, 0xe9, + 0x92, 0x68, 0xc5, 0xe4, 0xbe, 0x7d, 0x60, 0x1f, 0xde, 0x8a, 0xef, 0xfe, 0xfa, 0xf1, 0xe0, 0x8e, + 0xc6, 0x6d, 0xf3, 0x2c, 0xd8, 0xce, 0x82, 0x7c, 0x77, 0x7c, 0xc4, 0x06, 0x9f, 0x80, 0x5d, 0xa3, + 0x10, 0x8b, 0x4a, 0xbb, 0x8f, 0xc1, 0x4e, 0xcb, 0xa4, 0xc4, 0xb5, 0x11, 0xb8, 0x7e, 0x78, 0x33, + 0x9a, 0xc1, 0xc9, 0x12, 0xfc, 0x63, 0x09, 0xce, 0x3b, 0x9d, 0x6f, 0xb6, 0x82, 0x16, 0xcc, 0xb2, + 0x38, 0x99, 0x4f, 0x37, 0x2c, 0x30, 0x7d, 0xc7, 0xd4, 0x29, 0x56, 0xd8, 0x9d, 0x03, 0x67, 0x4c, + 0xc0, 0xd8, 0xd8, 0x8b, 0x42, 0xf8, 0x9f, 0x09, 0xc0, 0x42, 0xf7, 0x2c, 0x37, 0x54, 0xd7, 0x05, + 0x4e, 0x85, 0x15, 0xde, 0xbf, 0x36, 0x5e, 0x92, 0x1b, 0xfc, 0xe8, 0x04, 0x38, 0xe3, 0x86, 0x8b, + 0xc0, 0xfd, 0xe2, 0xf5, 0x22, 0x2d, 0xd3, 0xf3, 0x34, 0x39, 0x2b, 0xd2, 0xb2, 0x38, 0x2f, 0xcf, + 0x5e, 0xbe, 0x5a, 0xa4, 0x49, 0xf6, 0x22, 0x4b, 0x4f, 0x6f, 0x5b, 0xde, 0xde, 0xa7, 0x2f, 0x07, + 0x60, 0x3b, 0xf5, 0x9c, 0x8f, 0x5f, 0x7d, 0x2b, 0x2e, 0xbf, 0xad, 0x7c, 0xfb, 0x6a, 0xe5, 0xdb, + 0x3f, 0x57, 0xbe, 0xfd, 0x79, 0xed, 0x5b, 0x57, 0x6b, 0xdf, 0xfa, 0xbe, 0xf6, 0xad, 0x37, 0x69, + 0xcd, 0xd5, 0xc5, 0x40, 0x20, 0x15, 0x2d, 0xa2, 0x42, 0xb6, 0x42, 0x22, 0x4e, 0x68, 0x58, 0x0b, + 0xb4, 0x8c, 0x50, 0x2b, 0xaa, 0xa1, 0x61, 0x72, 0xec, 0x5d, 0xa2, 0xe8, 0x69, 0xb8, 0xf5, 0x1e, + 0x6e, 0x2a, 0x37, 0x7d, 0x93, 0x1b, 0x26, 0xa6, 0xe3, 0xdf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x3e, + 0xd3, 0x1d, 0x0c, 0x27, 0x02, 0x00, 0x00, } func (m *IBCTxRaw) Marshal() (dAtA []byte, err error) { diff --git a/modules/apps/27-interchain-accounts/types/validate_test.go b/modules/apps/27-interchain-accounts/types/validate_test.go index aa1bb33c8ae..bca182a78b5 100644 --- a/modules/apps/27-interchain-accounts/types/validate_test.go +++ b/modules/apps/27-interchain-accounts/types/validate_test.go @@ -1,7 +1,7 @@ package types_test import ( - "github.com/cosmos/ibc-go/modules/apps/27-interchain-accounts/types" + "github.com/cosmos/ibc-go/v2/modules/apps/27-interchain-accounts/types" ) func (suite *TypesTestSuite) TestValidateVersion() { diff --git a/proto/ibc/applications/interchain_accounts/v1/account.proto b/proto/ibc/applications/interchain_accounts/v1/account.proto index b63aec16133..a94519cd6ac 100644 --- a/proto/ibc/applications/interchain_accounts/v1/account.proto +++ b/proto/ibc/applications/interchain_accounts/v1/account.proto @@ -5,7 +5,7 @@ import "cosmos_proto/cosmos.proto"; import "gogoproto/gogo.proto"; import "cosmos/auth/v1beta1/auth.proto"; -option go_package = "github.com/cosmos/ibc-go/modules/apps/27-interchain-accounts/types"; +option go_package = "github.com/cosmos/ibc-go/v2/modules/apps/27-interchain-accounts/types"; // An InterchainAccount is defined as a BaseAccount & the address of the account owner on the controller chain message InterchainAccount { diff --git a/proto/ibc/applications/interchain_accounts/v1/genesis.proto b/proto/ibc/applications/interchain_accounts/v1/genesis.proto index 3afb804eb69..001eeb00a6c 100644 --- a/proto/ibc/applications/interchain_accounts/v1/genesis.proto +++ b/proto/ibc/applications/interchain_accounts/v1/genesis.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package ibc.applications.interchain_accounts.v1; -option go_package = "github.com/cosmos/ibc-go/modules/apps/27-interchain-accounts/types"; +option go_package = "github.com/cosmos/ibc-go/v2/modules/apps/27-interchain-accounts/types"; import "gogoproto/gogo.proto"; diff --git a/proto/ibc/applications/interchain_accounts/v1/query.proto b/proto/ibc/applications/interchain_accounts/v1/query.proto index 96232982f09..160912b0610 100644 --- a/proto/ibc/applications/interchain_accounts/v1/query.proto +++ b/proto/ibc/applications/interchain_accounts/v1/query.proto @@ -5,7 +5,7 @@ import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "ibc/applications/interchain_accounts/v1/account.proto"; -option go_package = "github.com/cosmos/ibc-go/modules/apps/27-interchain-accounts/types"; +option go_package = "github.com/cosmos/ibc-go/v2/modules/apps/27-interchain-accounts/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/ibc/applications/interchain_accounts/v1/types.proto b/proto/ibc/applications/interchain_accounts/v1/types.proto index dc817a44963..c60b65bdd33 100644 --- a/proto/ibc/applications/interchain_accounts/v1/types.proto +++ b/proto/ibc/applications/interchain_accounts/v1/types.proto @@ -3,7 +3,7 @@ package ibc.applications.interchain_accounts.v1; import "google/protobuf/any.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/cosmos/ibc-go/modules/apps/27-interchain-accounts/types"; +option go_package = "github.com/cosmos/ibc-go/v2/modules/apps/27-interchain-accounts/types"; // Raw tx body message IBCTxRaw { diff --git a/testing/simapp/app.go b/testing/simapp/app.go index e5c30f3f11f..e5943e1a410 100644 --- a/testing/simapp/app.go +++ b/testing/simapp/app.go @@ -80,9 +80,9 @@ import ( upgradeclient "github.com/cosmos/cosmos-sdk/x/upgrade/client" upgradekeeper "github.com/cosmos/cosmos-sdk/x/upgrade/keeper" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - ica "github.com/cosmos/ibc-go/modules/v2/apps/27-interchain-accounts" - icakeeper "github.com/cosmos/ibc-go/modules/v2/apps/27-interchain-accounts/keeper" - icatypes "github.com/cosmos/ibc-go/modules/v2/apps/27-interchain-accounts/types" + ica "github.com/cosmos/ibc-go/v2/modules/apps/27-interchain-accounts" + icakeeper "github.com/cosmos/ibc-go/v2/modules/apps/27-interchain-accounts/keeper" + icatypes "github.com/cosmos/ibc-go/v2/modules/apps/27-interchain-accounts/types" transfer "github.com/cosmos/ibc-go/v2/modules/apps/transfer" ibctransferkeeper "github.com/cosmos/ibc-go/v2/modules/apps/transfer/keeper" ibctransfertypes "github.com/cosmos/ibc-go/v2/modules/apps/transfer/types" @@ -95,7 +95,6 @@ import ( ibckeeper "github.com/cosmos/ibc-go/v2/modules/core/keeper" ibcmock "github.com/cosmos/ibc-go/v2/testing/mock" - authz "github.com/cosmos/cosmos-sdk/x/authz" authzkeeper "github.com/cosmos/cosmos-sdk/x/authz/keeper" authzmodule "github.com/cosmos/cosmos-sdk/x/authz/module"