From 864815c18f1412f5f10ed02d27ca785badeb1a6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Colin=20Axn=C3=A9r?= <25233464+colin-axner@users.noreply.github.com> Date: Mon, 13 Sep 2021 15:23:28 +0200 Subject: [PATCH 1/4] bump go package to v2 --- go.mod | 2 +- modules/apps/transfer/client/cli/query.go | 2 +- modules/apps/transfer/client/cli/tx.go | 6 ++--- modules/apps/transfer/keeper/encoding.go | 2 +- modules/apps/transfer/keeper/genesis.go | 2 +- modules/apps/transfer/keeper/genesis_test.go | 2 +- modules/apps/transfer/keeper/grpc_query.go | 2 +- .../apps/transfer/keeper/grpc_query_test.go | 2 +- modules/apps/transfer/keeper/keeper.go | 4 ++-- modules/apps/transfer/keeper/keeper_test.go | 4 ++-- .../apps/transfer/keeper/mbt_relay_test.go | 8 +++---- modules/apps/transfer/keeper/msg_server.go | 2 +- modules/apps/transfer/keeper/params.go | 2 +- modules/apps/transfer/keeper/params_test.go | 2 +- modules/apps/transfer/keeper/relay.go | 10 ++++---- modules/apps/transfer/keeper/relay_test.go | 12 +++++----- modules/apps/transfer/module.go | 16 ++++++------- modules/apps/transfer/module_test.go | 8 +++---- modules/apps/transfer/simulation/decoder.go | 2 +- .../apps/transfer/simulation/decoder_test.go | 6 ++--- modules/apps/transfer/simulation/genesis.go | 2 +- .../apps/transfer/simulation/genesis_test.go | 4 ++-- modules/apps/transfer/simulation/params.go | 2 +- .../apps/transfer/simulation/params_test.go | 2 +- modules/apps/transfer/spec/01_concepts.md | 4 ++-- modules/apps/transfer/transfer_test.go | 8 +++---- .../apps/transfer/types/expected_keepers.go | 6 ++--- modules/apps/transfer/types/genesis.go | 2 +- modules/apps/transfer/types/genesis_test.go | 2 +- modules/apps/transfer/types/keys_test.go | 2 +- modules/apps/transfer/types/msgs.go | 4 ++-- modules/apps/transfer/types/msgs_test.go | 2 +- modules/apps/transfer/types/trace.go | 2 +- modules/apps/transfer/types/tx.pb.go | 2 +- modules/core/02-client/abci.go | 6 ++--- modules/core/02-client/abci_test.go | 12 +++++----- modules/core/02-client/client/cli/cli.go | 2 +- modules/core/02-client/client/cli/query.go | 6 ++--- modules/core/02-client/client/cli/tx.go | 4 ++-- .../core/02-client/client/proposal_handler.go | 2 +- modules/core/02-client/client/utils/utils.go | 12 +++++----- modules/core/02-client/genesis.go | 6 ++--- modules/core/02-client/keeper/client.go | 4 ++-- modules/core/02-client/keeper/client_test.go | 16 ++++++------- modules/core/02-client/keeper/encoding.go | 4 ++-- modules/core/02-client/keeper/grpc_query.go | 6 ++--- .../core/02-client/keeper/grpc_query_test.go | 10 ++++---- modules/core/02-client/keeper/keeper.go | 10 ++++---- modules/core/02-client/keeper/keeper_test.go | 18 +++++++------- modules/core/02-client/keeper/migrations.go | 2 +- modules/core/02-client/keeper/params.go | 2 +- modules/core/02-client/keeper/params_test.go | 2 +- modules/core/02-client/keeper/proposal.go | 4 ++-- .../core/02-client/keeper/proposal_test.go | 8 +++---- modules/core/02-client/legacy/v100/genesis.go | 8 +++---- .../02-client/legacy/v100/genesis_test.go | 16 ++++++------- .../core/02-client/legacy/v100/solomachine.go | 2 +- .../02-client/legacy/v100/solomachine.pb.go | 4 ++-- modules/core/02-client/legacy/v100/store.go | 12 +++++----- .../core/02-client/legacy/v100/store_test.go | 12 +++++----- modules/core/02-client/module.go | 4 ++-- modules/core/02-client/proposal_handler.go | 4 ++-- .../core/02-client/proposal_handler_test.go | 8 +++---- modules/core/02-client/simulation/decoder.go | 6 ++--- .../core/02-client/simulation/decoder_test.go | 10 ++++---- modules/core/02-client/simulation/genesis.go | 2 +- modules/core/02-client/types/client.go | 4 ++-- modules/core/02-client/types/client_test.go | 4 ++-- modules/core/02-client/types/codec.go | 2 +- modules/core/02-client/types/codec_test.go | 12 +++++----- modules/core/02-client/types/encoding.go | 2 +- modules/core/02-client/types/encoding_test.go | 4 ++-- modules/core/02-client/types/events.go | 2 +- modules/core/02-client/types/genesis.go | 4 ++-- modules/core/02-client/types/genesis_test.go | 16 ++++++------- modules/core/02-client/types/height.go | 2 +- modules/core/02-client/types/height_test.go | 2 +- modules/core/02-client/types/keys.go | 2 +- modules/core/02-client/types/keys_test.go | 2 +- modules/core/02-client/types/msgs.go | 4 ++-- modules/core/02-client/types/msgs_test.go | 12 +++++----- modules/core/02-client/types/params.go | 2 +- modules/core/02-client/types/params_test.go | 2 +- modules/core/02-client/types/proposal.go | 2 +- modules/core/02-client/types/proposal_test.go | 6 ++--- modules/core/02-client/types/query.go | 2 +- modules/core/03-connection/client/cli/cli.go | 2 +- .../core/03-connection/client/cli/query.go | 6 ++--- .../core/03-connection/client/utils/utils.go | 14 +++++------ modules/core/03-connection/genesis.go | 4 ++-- .../core/03-connection/keeper/grpc_query.go | 6 ++--- .../03-connection/keeper/grpc_query_test.go | 8 +++---- .../core/03-connection/keeper/handshake.go | 8 +++---- .../03-connection/keeper/handshake_test.go | 12 +++++----- modules/core/03-connection/keeper/keeper.go | 10 ++++---- .../core/03-connection/keeper/keeper_test.go | 4 ++-- modules/core/03-connection/keeper/params.go | 2 +- .../core/03-connection/keeper/params_test.go | 2 +- modules/core/03-connection/keeper/verify.go | 4 ++-- .../core/03-connection/keeper/verify_test.go | 16 ++++++------- modules/core/03-connection/module.go | 4 ++-- .../core/03-connection/simulation/decoder.go | 4 ++-- .../03-connection/simulation/decoder_test.go | 8 +++---- .../core/03-connection/simulation/genesis.go | 2 +- modules/core/03-connection/types/codec.go | 2 +- .../core/03-connection/types/connection.go | 6 ++--- .../core/03-connection/types/connection.pb.go | 2 +- .../03-connection/types/connection_test.go | 8 +++---- modules/core/03-connection/types/events.go | 2 +- .../03-connection/types/expected_keepers.go | 2 +- modules/core/03-connection/types/genesis.go | 2 +- .../core/03-connection/types/genesis_test.go | 6 ++--- modules/core/03-connection/types/keys.go | 2 +- modules/core/03-connection/types/keys_test.go | 2 +- modules/core/03-connection/types/msgs.go | 8 +++---- modules/core/03-connection/types/msgs_test.go | 12 +++++----- .../core/03-connection/types/params_test.go | 2 +- modules/core/03-connection/types/query.go | 4 ++-- modules/core/03-connection/types/query.pb.go | 2 +- modules/core/03-connection/types/tx.pb.go | 2 +- modules/core/03-connection/types/version.go | 2 +- .../core/03-connection/types/version_test.go | 6 ++--- modules/core/04-channel/client/cli/cli.go | 2 +- modules/core/04-channel/client/cli/query.go | 6 ++--- modules/core/04-channel/client/utils/utils.go | 12 +++++----- modules/core/04-channel/genesis.go | 4 ++-- modules/core/04-channel/keeper/events.go | 4 ++-- modules/core/04-channel/keeper/grpc_query.go | 8 +++---- .../core/04-channel/keeper/grpc_query_test.go | 10 ++++---- modules/core/04-channel/keeper/handshake.go | 10 ++++---- .../core/04-channel/keeper/handshake_test.go | 12 +++++----- modules/core/04-channel/keeper/keeper.go | 12 +++++----- modules/core/04-channel/keeper/keeper_test.go | 4 ++-- modules/core/04-channel/keeper/packet.go | 10 ++++---- modules/core/04-channel/keeper/packet_test.go | 16 ++++++------- modules/core/04-channel/keeper/timeout.go | 8 +++---- .../core/04-channel/keeper/timeout_test.go | 12 +++++----- modules/core/04-channel/module.go | 4 ++-- modules/core/04-channel/simulation/decoder.go | 4 ++-- .../04-channel/simulation/decoder_test.go | 8 +++---- modules/core/04-channel/simulation/genesis.go | 2 +- .../04-channel/types/acknowledgement_test.go | 2 +- modules/core/04-channel/types/channel.go | 4 ++-- modules/core/04-channel/types/channel.pb.go | 2 +- modules/core/04-channel/types/channel_test.go | 2 +- modules/core/04-channel/types/codec.go | 2 +- modules/core/04-channel/types/events.go | 2 +- .../core/04-channel/types/expected_keepers.go | 4 ++-- modules/core/04-channel/types/genesis.go | 2 +- modules/core/04-channel/types/genesis_test.go | 2 +- modules/core/04-channel/types/keys.go | 2 +- modules/core/04-channel/types/keys_test.go | 2 +- modules/core/04-channel/types/msgs.go | 6 ++--- modules/core/04-channel/types/msgs_test.go | 10 ++++---- modules/core/04-channel/types/packet.go | 6 ++--- modules/core/04-channel/types/packet_test.go | 4 ++-- modules/core/04-channel/types/query.go | 4 ++-- modules/core/04-channel/types/query.pb.go | 2 +- modules/core/04-channel/types/tx.pb.go | 2 +- modules/core/05-port/keeper/grpc_query.go | 4 ++-- .../core/05-port/keeper/grpc_query_test.go | 6 ++--- modules/core/05-port/keeper/keeper.go | 4 ++-- modules/core/05-port/keeper/keeper_test.go | 4 ++-- modules/core/05-port/module.go | 4 ++-- modules/core/05-port/types/module.go | 4 ++-- modules/core/05-port/types/query.pb.go | 2 +- modules/core/23-commitment/types/codec.go | 2 +- modules/core/23-commitment/types/merkle.go | 2 +- .../core/23-commitment/types/merkle_test.go | 2 +- .../core/23-commitment/types/utils_test.go | 2 +- modules/core/24-host/keys.go | 2 +- modules/core/24-host/parse_test.go | 4 ++-- modules/core/ante/ante.go | 6 ++--- modules/core/ante/ante_test.go | 10 ++++---- modules/core/client/cli/cli.go | 8 +++---- modules/core/client/query.go | 6 ++--- modules/core/genesis.go | 10 ++++---- modules/core/genesis_test.go | 22 ++++++++--------- modules/core/keeper/grpc_query.go | 8 +++---- modules/core/keeper/keeper.go | 16 ++++++------- modules/core/keeper/migrations.go | 2 +- modules/core/keeper/msg_server.go | 12 +++++----- modules/core/keeper/msg_server_test.go | 18 +++++++------- modules/core/legacy/v100/genesis.go | 10 ++++---- modules/core/legacy/v100/genesis_test.go | 18 +++++++------- modules/core/module.go | 20 ++++++++-------- modules/core/simulation/decoder.go | 10 ++++---- modules/core/simulation/decoder_test.go | 14 +++++------ modules/core/simulation/genesis.go | 16 ++++++------- modules/core/simulation/genesis_test.go | 6 ++--- modules/core/types/codec.go | 14 +++++------ modules/core/types/genesis.go | 6 ++--- modules/core/types/genesis.pb.go | 6 ++--- modules/core/types/query.go | 16 ++++++------- .../light-clients/06-solomachine/module.go | 2 +- .../06-solomachine/types/client_state.go | 8 +++---- .../06-solomachine/types/client_state_test.go | 16 ++++++------- .../06-solomachine/types/codec.go | 4 ++-- .../06-solomachine/types/codec_test.go | 10 ++++---- .../06-solomachine/types/consensus_state.go | 4 ++-- .../types/consensus_state_test.go | 6 ++--- .../06-solomachine/types/header.go | 4 ++-- .../06-solomachine/types/header_test.go | 6 ++--- .../06-solomachine/types/misbehaviour.go | 6 ++--- .../types/misbehaviour_handle.go | 4 ++-- .../types/misbehaviour_handle_test.go | 8 +++---- .../06-solomachine/types/misbehaviour_test.go | 6 ++--- .../06-solomachine/types/proof.go | 10 ++++---- .../06-solomachine/types/proof_test.go | 6 ++--- .../06-solomachine/types/proposal_handle.go | 4 ++-- .../types/proposal_handle_test.go | 8 +++---- .../06-solomachine/types/solomachine.go | 2 +- .../06-solomachine/types/solomachine.pb.go | 4 ++-- .../06-solomachine/types/solomachine_test.go | 8 +++---- .../06-solomachine/types/update.go | 4 ++-- .../06-solomachine/types/update_test.go | 8 +++---- modules/light-clients/07-tendermint/module.go | 2 +- .../07-tendermint/types/client_state.go | 14 +++++------ .../07-tendermint/types/client_state_test.go | 20 ++++++++-------- .../07-tendermint/types/codec.go | 2 +- .../07-tendermint/types/consensus_state.go | 6 ++--- .../types/consensus_state_test.go | 6 ++--- .../07-tendermint/types/genesis.go | 4 ++-- .../07-tendermint/types/genesis_test.go | 6 ++--- .../07-tendermint/types/header.go | 6 ++--- .../07-tendermint/types/header_test.go | 6 ++--- .../07-tendermint/types/misbehaviour.go | 6 ++--- .../types/misbehaviour_handle.go | 4 ++-- .../types/misbehaviour_handle_test.go | 12 +++++----- .../07-tendermint/types/misbehaviour_test.go | 10 ++++---- .../07-tendermint/types/proposal_handle.go | 4 ++-- .../types/proposal_handle_test.go | 8 +++---- .../07-tendermint/types/store.go | 6 ++--- .../07-tendermint/types/store_test.go | 14 +++++------ .../07-tendermint/types/tendermint.pb.go | 4 ++-- .../07-tendermint/types/tendermint_test.go | 10 ++++---- .../07-tendermint/types/update.go | 6 ++--- .../07-tendermint/types/update_test.go | 12 +++++----- .../07-tendermint/types/upgrade.go | 6 ++--- .../07-tendermint/types/upgrade_test.go | 10 ++++---- modules/light-clients/09-localhost/module.go | 2 +- .../09-localhost/types/client_state.go | 10 ++++---- .../09-localhost/types/client_state_test.go | 16 ++++++------- .../light-clients/09-localhost/types/codec.go | 2 +- .../09-localhost/types/localhost.pb.go | 2 +- .../09-localhost/types/localhost_test.go | 6 ++--- testing/README.md | 4 ++-- testing/app.go | 4 ++-- testing/chain.go | 16 ++++++------- testing/chain_test.go | 4 ++-- testing/config.go | 10 ++++---- testing/endpoint.go | 14 +++++------ testing/events.go | 6 ++--- testing/mock/mock.go | 8 +++---- testing/mock/privval_test.go | 2 +- testing/path.go | 2 +- testing/sdk_test.go | 6 ++--- testing/simapp/app.go | 24 +++++++++---------- testing/simapp/encoding.go | 2 +- testing/simapp/genesis_account_test.go | 2 +- testing/simapp/sim_bench_test.go | 2 +- testing/simapp/sim_test.go | 6 ++--- testing/simapp/simd/cmd/cmd_test.go | 4 ++-- testing/simapp/simd/cmd/genaccounts_test.go | 4 ++-- testing/simapp/simd/cmd/root.go | 4 ++-- testing/simapp/simd/main.go | 4 ++-- testing/simapp/state.go | 2 +- testing/simapp/test_helpers.go | 2 +- testing/simapp/utils.go | 2 +- testing/solomachine.go | 10 ++++---- testing/values.go | 12 +++++----- 271 files changed, 830 insertions(+), 830 deletions(-) diff --git a/go.mod b/go.mod index d812a9b8219..6d89f7912f2 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ go 1.15 -module github.com/cosmos/ibc-go +module github.com/cosmos/ibc-go/v2 replace github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1 diff --git a/modules/apps/transfer/client/cli/query.go b/modules/apps/transfer/client/cli/query.go index 3bf09c56b52..0e6188174dc 100644 --- a/modules/apps/transfer/client/cli/query.go +++ b/modules/apps/transfer/client/cli/query.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/version" - "github.com/cosmos/ibc-go/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v2/modules/apps/transfer/types" ) // GetCmdQueryDenomTrace defines the command to query a a denomination trace from a given hash. diff --git a/modules/apps/transfer/client/cli/tx.go b/modules/apps/transfer/client/cli/tx.go index a524fcebeaf..1e201bddb37 100644 --- a/modules/apps/transfer/client/cli/tx.go +++ b/modules/apps/transfer/client/cli/tx.go @@ -11,9 +11,9 @@ import ( "github.com/cosmos/cosmos-sdk/client/tx" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/version" - "github.com/cosmos/ibc-go/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - channelutils "github.com/cosmos/ibc-go/modules/core/04-channel/client/utils" + "github.com/cosmos/ibc-go/v2/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + channelutils "github.com/cosmos/ibc-go/v2/modules/core/04-channel/client/utils" ) const ( diff --git a/modules/apps/transfer/keeper/encoding.go b/modules/apps/transfer/keeper/encoding.go index 78403694df2..111d181a4b3 100644 --- a/modules/apps/transfer/keeper/encoding.go +++ b/modules/apps/transfer/keeper/encoding.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/cosmos/ibc-go/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v2/modules/apps/transfer/types" ) // UnmarshalDenomTrace attempts to decode and return an DenomTrace object from diff --git a/modules/apps/transfer/keeper/genesis.go b/modules/apps/transfer/keeper/genesis.go index 7050a2c5512..97de879e096 100644 --- a/modules/apps/transfer/keeper/genesis.go +++ b/modules/apps/transfer/keeper/genesis.go @@ -4,7 +4,7 @@ import ( "fmt" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v2/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 19e5dfe4a18..f82eb59d7b7 100644 --- a/modules/apps/transfer/keeper/genesis_test.go +++ b/modules/apps/transfer/keeper/genesis_test.go @@ -3,7 +3,7 @@ package keeper_test import ( "fmt" - "github.com/cosmos/ibc-go/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v2/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 10015f727f2..31629d817a9 100644 --- a/modules/apps/transfer/keeper/grpc_query.go +++ b/modules/apps/transfer/keeper/grpc_query.go @@ -11,7 +11,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/cosmos/cosmos-sdk/types/query" - "github.com/cosmos/ibc-go/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v2/modules/apps/transfer/types" ) var _ types.QueryServer = Keeper{} diff --git a/modules/apps/transfer/keeper/grpc_query_test.go b/modules/apps/transfer/keeper/grpc_query_test.go index d5ffe6920ee..4075f9e4b21 100644 --- a/modules/apps/transfer/keeper/grpc_query_test.go +++ b/modules/apps/transfer/keeper/grpc_query_test.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - "github.com/cosmos/ibc-go/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v2/modules/apps/transfer/types" ) func (suite *KeeperTestSuite) TestQueryDenomTrace() { diff --git a/modules/apps/transfer/keeper/keeper.go b/modules/apps/transfer/keeper/keeper.go index 1d505debdb9..f0533aa2e51 100644 --- a/modules/apps/transfer/keeper/keeper.go +++ b/modules/apps/transfer/keeper/keeper.go @@ -11,8 +11,8 @@ import ( capabilitykeeper "github.com/cosmos/cosmos-sdk/x/capability/keeper" capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/cosmos/ibc-go/modules/apps/transfer/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/apps/transfer/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" ) // 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 de3902df669..48dfe507ae0 100644 --- a/modules/apps/transfer/keeper/keeper_test.go +++ b/modules/apps/transfer/keeper/keeper_test.go @@ -8,8 +8,8 @@ import ( "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/modules/apps/transfer/types" - ibctesting "github.com/cosmos/ibc-go/testing" + "github.com/cosmos/ibc-go/v2/modules/apps/transfer/types" + ibctesting "github.com/cosmos/ibc-go/v2/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 31d6a3823a5..fb22f29dfc4 100644 --- a/modules/apps/transfer/keeper/mbt_relay_test.go +++ b/modules/apps/transfer/keeper/mbt_relay_test.go @@ -15,10 +15,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/cosmos/ibc-go/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/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/transfer/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/v2/testing" ) type TlaBalance struct { diff --git a/modules/apps/transfer/keeper/msg_server.go b/modules/apps/transfer/keeper/msg_server.go index 3fb536fa7f3..dbd455715af 100644 --- a/modules/apps/transfer/keeper/msg_server.go +++ b/modules/apps/transfer/keeper/msg_server.go @@ -4,7 +4,7 @@ import ( "context" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v2/modules/apps/transfer/types" ) var _ types.MsgServer = Keeper{} diff --git a/modules/apps/transfer/keeper/params.go b/modules/apps/transfer/keeper/params.go index c6686acfabc..02a76847185 100644 --- a/modules/apps/transfer/keeper/params.go +++ b/modules/apps/transfer/keeper/params.go @@ -2,7 +2,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v2/modules/apps/transfer/types" ) // GetSendEnabled retrieves the send enabled boolean from the paramstore diff --git a/modules/apps/transfer/keeper/params_test.go b/modules/apps/transfer/keeper/params_test.go index a5d78005836..2544242d908 100644 --- a/modules/apps/transfer/keeper/params_test.go +++ b/modules/apps/transfer/keeper/params_test.go @@ -1,6 +1,6 @@ package keeper_test -import "github.com/cosmos/ibc-go/modules/apps/transfer/types" +import "github.com/cosmos/ibc-go/v2/modules/apps/transfer/types" func (suite *KeeperTestSuite) TestParams() { expParams := types.DefaultParams() diff --git a/modules/apps/transfer/keeper/relay.go b/modules/apps/transfer/keeper/relay.go index 5f9090a082b..dbbf98a0c53 100644 --- a/modules/apps/transfer/keeper/relay.go +++ b/modules/apps/transfer/keeper/relay.go @@ -9,11 +9,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/cosmos/ibc-go/modules/apps/transfer/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" - coretypes "github.com/cosmos/ibc-go/modules/core/types" + "github.com/cosmos/ibc-go/v2/modules/apps/transfer/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" + coretypes "github.com/cosmos/ibc-go/v2/modules/core/types" ) // 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 02959303ab2..697059bf629 100644 --- a/modules/apps/transfer/keeper/relay_test.go +++ b/modules/apps/transfer/keeper/relay_test.go @@ -3,14 +3,14 @@ package keeper_test import ( "fmt" - "github.com/cosmos/ibc-go/testing/simapp" + "github.com/cosmos/ibc-go/v2/testing/simapp" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/modules/apps/transfer/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" - ibctesting "github.com/cosmos/ibc-go/testing" + "github.com/cosmos/ibc-go/v2/modules/apps/transfer/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" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) // test sending from chainA to chainB using both coin that orignate on diff --git a/modules/apps/transfer/module.go b/modules/apps/transfer/module.go index aa050055aa9..7af82060149 100644 --- a/modules/apps/transfer/module.go +++ b/modules/apps/transfer/module.go @@ -20,14 +20,14 @@ import ( "github.com/spf13/cobra" abci "github.com/tendermint/tendermint/abci/types" - "github.com/cosmos/ibc-go/modules/apps/transfer/client/cli" - "github.com/cosmos/ibc-go/modules/apps/transfer/keeper" - "github.com/cosmos/ibc-go/modules/apps/transfer/simulation" - "github.com/cosmos/ibc-go/modules/apps/transfer/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" - ibcexported "github.com/cosmos/ibc-go/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/apps/transfer/client/cli" + "github.com/cosmos/ibc-go/v2/modules/apps/transfer/keeper" + "github.com/cosmos/ibc-go/v2/modules/apps/transfer/simulation" + "github.com/cosmos/ibc-go/v2/modules/apps/transfer/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" + ibcexported "github.com/cosmos/ibc-go/v2/modules/core/exported" ) var ( diff --git a/modules/apps/transfer/module_test.go b/modules/apps/transfer/module_test.go index 63d610de84a..f12707ad43b 100644 --- a/modules/apps/transfer/module_test.go +++ b/modules/apps/transfer/module_test.go @@ -4,10 +4,10 @@ import ( "math" capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" - "github.com/cosmos/ibc-go/modules/apps/transfer/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/transfer/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 *TransferTestSuite) TestOnChanOpenInit() { diff --git a/modules/apps/transfer/simulation/decoder.go b/modules/apps/transfer/simulation/decoder.go index 882e9516755..771e00bc508 100644 --- a/modules/apps/transfer/simulation/decoder.go +++ b/modules/apps/transfer/simulation/decoder.go @@ -5,7 +5,7 @@ import ( "fmt" "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/cosmos/ibc-go/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v2/modules/apps/transfer/types" ) // TransferUnmarshaler defines the expected encoding store functions. diff --git a/modules/apps/transfer/simulation/decoder_test.go b/modules/apps/transfer/simulation/decoder_test.go index 08885a340a7..fbaddd02068 100644 --- a/modules/apps/transfer/simulation/decoder_test.go +++ b/modules/apps/transfer/simulation/decoder_test.go @@ -7,9 +7,9 @@ import ( "github.com/stretchr/testify/require" "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/cosmos/ibc-go/modules/apps/transfer/simulation" - "github.com/cosmos/ibc-go/modules/apps/transfer/types" - "github.com/cosmos/ibc-go/testing/simapp" + "github.com/cosmos/ibc-go/v2/modules/apps/transfer/simulation" + "github.com/cosmos/ibc-go/v2/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v2/testing/simapp" ) func TestDecodeStore(t *testing.T) { diff --git a/modules/apps/transfer/simulation/genesis.go b/modules/apps/transfer/simulation/genesis.go index b300e8919ad..357eabb8f53 100644 --- a/modules/apps/transfer/simulation/genesis.go +++ b/modules/apps/transfer/simulation/genesis.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/cosmos/ibc-go/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v2/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 c4bd61035ab..ff68cb4dac6 100644 --- a/modules/apps/transfer/simulation/genesis_test.go +++ b/modules/apps/transfer/simulation/genesis_test.go @@ -11,8 +11,8 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/cosmos/ibc-go/modules/apps/transfer/simulation" - "github.com/cosmos/ibc-go/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v2/modules/apps/transfer/simulation" + "github.com/cosmos/ibc-go/v2/modules/apps/transfer/types" ) // TestRandomizedGenState tests the normal scenario of applying RandomizedGenState. diff --git a/modules/apps/transfer/simulation/params.go b/modules/apps/transfer/simulation/params.go index 49437c5a2bc..95e855f3620 100644 --- a/modules/apps/transfer/simulation/params.go +++ b/modules/apps/transfer/simulation/params.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/simulation" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/cosmos/ibc-go/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v2/modules/apps/transfer/types" ) // ParamChanges defines the parameters that can be modified by param change proposals diff --git a/modules/apps/transfer/simulation/params_test.go b/modules/apps/transfer/simulation/params_test.go index 978c38e0b7e..d39faa29389 100644 --- a/modules/apps/transfer/simulation/params_test.go +++ b/modules/apps/transfer/simulation/params_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/modules/apps/transfer/simulation" + "github.com/cosmos/ibc-go/v2/modules/apps/transfer/simulation" ) func TestParamChanges(t *testing.T) { diff --git a/modules/apps/transfer/spec/01_concepts.md b/modules/apps/transfer/spec/01_concepts.md index 5b513d1f957..df65a00c569 100644 --- a/modules/apps/transfer/spec/01_concepts.md +++ b/modules/apps/transfer/spec/01_concepts.md @@ -31,7 +31,7 @@ acting as the "source zone". When the token is sent back to the chain it previou prefix is removed. This is a backwards movement in the token's timeline and the sender chain is acting as the "sink zone". -It is strongly recommended to read the full details of [ADR 001: Coin Source Tracing](https://github.com/cosmos/ibc-go/blob/main/docs/architecture/adr-001-coin-source-tracing.md) to understand the implications and context of the IBC token representations. +It is strongly recommended to read the full details of [ADR 001: Coin Source Tracing](https://github.com/cosmos/ibc-go/v2/blob/main/docs/architecture/adr-001-coin-source-tracing.md) to understand the implications and context of the IBC token representations. ### UX suggestions for clients @@ -96,7 +96,7 @@ The only viable alternative for clients (at the time of writing) to tokens with ## Locked Funds -In some [exceptional cases](https://github.com/cosmos/ibc-go/blob/main/docs/architecture/adr-026-ibc-client-recovery-mechanisms.md#exceptional-cases), a client state associated with a given channel cannot be updated. This causes that funds from fungible tokens in that channel will be permanently locked and thus can no longer be transferred. +In some [exceptional cases](https://github.com/cosmos/ibc-go/v2/blob/main/docs/architecture/adr-026-ibc-client-recovery-mechanisms.md#exceptional-cases), a client state associated with a given channel cannot be updated. This causes that funds from fungible tokens in that channel will be permanently locked and thus can no longer be transferred. To mitigate this, a client update governance proposal can be submitted to update the frozen client with a new valid header. Once the proposal passes the client state will be unfrozen and the funds diff --git a/modules/apps/transfer/transfer_test.go b/modules/apps/transfer/transfer_test.go index 948a6b2cf4b..58b33cbe647 100644 --- a/modules/apps/transfer/transfer_test.go +++ b/modules/apps/transfer/transfer_test.go @@ -6,10 +6,10 @@ import ( "github.com/stretchr/testify/suite" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/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/transfer/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/v2/testing" ) type TransferTestSuite struct { diff --git a/modules/apps/transfer/types/expected_keepers.go b/modules/apps/transfer/types/expected_keepers.go index d7881642c12..fd0f7df76c3 100644 --- a/modules/apps/transfer/types/expected_keepers.go +++ b/modules/apps/transfer/types/expected_keepers.go @@ -4,9 +4,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "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" ) // 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 1a17bc474ce..c480321b205 100644 --- a/modules/apps/transfer/types/genesis.go +++ b/modules/apps/transfer/types/genesis.go @@ -1,7 +1,7 @@ package types import ( - host "github.com/cosmos/ibc-go/modules/core/24-host" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" ) // NewGenesisState creates a new ibc-transfer GenesisState instance. diff --git a/modules/apps/transfer/types/genesis_test.go b/modules/apps/transfer/types/genesis_test.go index 23305ae1d07..d5d05daa1d4 100644 --- a/modules/apps/transfer/types/genesis_test.go +++ b/modules/apps/transfer/types/genesis_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v2/modules/apps/transfer/types" ) func TestValidateGenesis(t *testing.T) { diff --git a/modules/apps/transfer/types/keys_test.go b/modules/apps/transfer/types/keys_test.go index 54cf3f6c08f..720fae83a85 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/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v2/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 b45dca98afb..12cc8ab1574 100644 --- a/modules/apps/transfer/types/msgs.go +++ b/modules/apps/transfer/types/msgs.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" ) // msg types diff --git a/modules/apps/transfer/types/msgs_test.go b/modules/apps/transfer/types/msgs_test.go index fa5e9f96db5..48d15af349e 100644 --- a/modules/apps/transfer/types/msgs_test.go +++ b/modules/apps/transfer/types/msgs_test.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" ) // define constants used for testing diff --git a/modules/apps/transfer/types/trace.go b/modules/apps/transfer/types/trace.go index 8d1e4937365..1d692e503ce 100644 --- a/modules/apps/transfer/types/trace.go +++ b/modules/apps/transfer/types/trace.go @@ -12,7 +12,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - host "github.com/cosmos/ibc-go/modules/core/24-host" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" ) // ParseDenomTrace parses a string with the ibc prefix (denom trace) and the base denomination diff --git a/modules/apps/transfer/types/tx.pb.go b/modules/apps/transfer/types/tx.pb.go index b8b14d0d455..950016d39f0 100644 --- a/modules/apps/transfer/types/tx.pb.go +++ b/modules/apps/transfer/types/tx.pb.go @@ -7,7 +7,7 @@ import ( context "context" fmt "fmt" types "github.com/cosmos/cosmos-sdk/types" - types1 "github.com/cosmos/ibc-go/modules/core/02-client/types" + types1 "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" _ "github.com/gogo/protobuf/gogoproto" grpc1 "github.com/gogo/protobuf/grpc" proto "github.com/gogo/protobuf/proto" diff --git a/modules/core/02-client/abci.go b/modules/core/02-client/abci.go index 4e1068c2609..f45a925be3f 100644 --- a/modules/core/02-client/abci.go +++ b/modules/core/02-client/abci.go @@ -2,9 +2,9 @@ package client import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/modules/core/02-client/keeper" - "github.com/cosmos/ibc-go/modules/core/exported" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/keeper" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" ) // BeginBlocker updates an existing localhost client with the latest block height. diff --git a/modules/core/02-client/abci_test.go b/modules/core/02-client/abci_test.go index cad34f3b020..61115bef3d1 100644 --- a/modules/core/02-client/abci_test.go +++ b/modules/core/02-client/abci_test.go @@ -8,12 +8,12 @@ import ( tmproto "github.com/tendermint/tendermint/proto/tendermint/types" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - client "github.com/cosmos/ibc-go/modules/core/02-client" - "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/core/exported" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - localhosttypes "github.com/cosmos/ibc-go/modules/light-clients/09-localhost/types" - ibctesting "github.com/cosmos/ibc-go/testing" + client "github.com/cosmos/ibc-go/v2/modules/core/02-client" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + localhosttypes "github.com/cosmos/ibc-go/v2/modules/light-clients/09-localhost/types" + ibctesting "github.com/cosmos/ibc-go/v2/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 1b6572ebb75..83fdc7ddb2e 100644 --- a/modules/core/02-client/client/cli/cli.go +++ b/modules/core/02-client/client/cli/cli.go @@ -4,7 +4,7 @@ import ( "github.com/spf13/cobra" "github.com/cosmos/cosmos-sdk/client" - "github.com/cosmos/ibc-go/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/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 8633b92a469..6de4cf1a3f5 100644 --- a/modules/core/02-client/client/cli/query.go +++ b/modules/core/02-client/client/cli/query.go @@ -9,9 +9,9 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/version" - "github.com/cosmos/ibc-go/modules/core/02-client/client/utils" - "github.com/cosmos/ibc-go/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/client/utils" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" ) const ( diff --git a/modules/core/02-client/client/cli/tx.go b/modules/core/02-client/client/cli/tx.go index 1e6c21450f6..cbc71414e6f 100644 --- a/modules/core/02-client/client/cli/tx.go +++ b/modules/core/02-client/client/cli/tx.go @@ -17,8 +17,8 @@ import ( govcli "github.com/cosmos/cosmos-sdk/x/gov/client/cli" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) // NewCreateClientCmd defines the command to create a new IBC light client. diff --git a/modules/core/02-client/client/proposal_handler.go b/modules/core/02-client/client/proposal_handler.go index 8f773dd45c1..d0324155d04 100644 --- a/modules/core/02-client/client/proposal_handler.go +++ b/modules/core/02-client/client/proposal_handler.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/rest" govclient "github.com/cosmos/cosmos-sdk/x/gov/client" govrest "github.com/cosmos/cosmos-sdk/x/gov/client/rest" - "github.com/cosmos/ibc-go/modules/core/02-client/client/cli" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/client/cli" ) var ( diff --git a/modules/core/02-client/client/utils/utils.go b/modules/core/02-client/client/utils/utils.go index 7f68db68de9..d26c278a5c3 100644 --- a/modules/core/02-client/client/utils/utils.go +++ b/modules/core/02-client/client/utils/utils.go @@ -9,12 +9,12 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/cosmos/ibc-go/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" - ibcclient "github.com/cosmos/ibc-go/modules/core/client" - "github.com/cosmos/ibc-go/modules/core/exported" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + ibcclient "github.com/cosmos/ibc-go/v2/modules/core/client" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" ) // 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 df7db36af4e..5a332651408 100644 --- a/modules/core/02-client/genesis.go +++ b/modules/core/02-client/genesis.go @@ -4,9 +4,9 @@ import ( "fmt" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/modules/core/02-client/keeper" - "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/keeper" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/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 b16fa819c5b..4537432329d 100644 --- a/modules/core/02-client/keeper/client.go +++ b/modules/core/02-client/keeper/client.go @@ -8,8 +8,8 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) // CreateClient creates a new client state and populates it with a given consensus diff --git a/modules/core/02-client/keeper/client_test.go b/modules/core/02-client/keeper/client_test.go index f8719b38759..66c95f456a7 100644 --- a/modules/core/02-client/keeper/client_test.go +++ b/modules/core/02-client/keeper/client_test.go @@ -8,14 +8,14 @@ import ( tmtypes "github.com/tendermint/tendermint/types" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/cosmos/ibc-go/modules/core/02-client/types" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/modules/core/exported" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - localhosttypes "github.com/cosmos/ibc-go/modules/light-clients/09-localhost/types" - ibctesting "github.com/cosmos/ibc-go/testing" - ibctestingmock "github.com/cosmos/ibc-go/testing/mock" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + localhosttypes "github.com/cosmos/ibc-go/v2/modules/light-clients/09-localhost/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" + ibctestingmock "github.com/cosmos/ibc-go/v2/testing/mock" ) func (suite *KeeperTestSuite) TestCreateClient() { diff --git a/modules/core/02-client/keeper/encoding.go b/modules/core/02-client/keeper/encoding.go index cf1b3b110ad..dbdd838f830 100644 --- a/modules/core/02-client/keeper/encoding.go +++ b/modules/core/02-client/keeper/encoding.go @@ -1,8 +1,8 @@ package keeper import ( - "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) // UnmarshalClientState attempts to decode and return an ClientState object from diff --git a/modules/core/02-client/keeper/grpc_query.go b/modules/core/02-client/keeper/grpc_query.go index 4ebfadb5369..3909b34ddfc 100644 --- a/modules/core/02-client/keeper/grpc_query.go +++ b/modules/core/02-client/keeper/grpc_query.go @@ -14,9 +14,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/cosmos/cosmos-sdk/types/query" - "github.com/cosmos/ibc-go/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" - "github.com/cosmos/ibc-go/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) var _ types.QueryServer = Keeper{} diff --git a/modules/core/02-client/keeper/grpc_query_test.go b/modules/core/02-client/keeper/grpc_query_test.go index f066b05b822..6dc9cbfc5bc 100644 --- a/modules/core/02-client/keeper/grpc_query_test.go +++ b/modules/core/02-client/keeper/grpc_query_test.go @@ -10,11 +10,11 @@ import ( "github.com/cosmos/cosmos-sdk/types/query" "google.golang.org/grpc/metadata" - "github.com/cosmos/ibc-go/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/modules/core/exported" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - ibctesting "github.com/cosmos/ibc-go/testing" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) func (suite *KeeperTestSuite) TestQueryClientState() { diff --git a/modules/core/02-client/keeper/keeper.go b/modules/core/02-client/keeper/keeper.go index 2211216ae27..12d360e4053 100644 --- a/modules/core/02-client/keeper/keeper.go +++ b/modules/core/02-client/keeper/keeper.go @@ -14,11 +14,11 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/cosmos/ibc-go/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" - "github.com/cosmos/ibc-go/modules/core/exported" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" ) // 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 9d318eb7800..54df1c15013 100644 --- a/modules/core/02-client/keeper/keeper_test.go +++ b/modules/core/02-client/keeper/keeper_test.go @@ -15,15 +15,15 @@ import ( cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec" sdk "github.com/cosmos/cosmos-sdk/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/cosmos/ibc-go/modules/core/02-client/keeper" - "github.com/cosmos/ibc-go/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/modules/core/exported" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - localhosttypes "github.com/cosmos/ibc-go/modules/light-clients/09-localhost/types" - ibctesting "github.com/cosmos/ibc-go/testing" - ibctestingmock "github.com/cosmos/ibc-go/testing/mock" - "github.com/cosmos/ibc-go/testing/simapp" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/keeper" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + localhosttypes "github.com/cosmos/ibc-go/v2/modules/light-clients/09-localhost/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" + ibctestingmock "github.com/cosmos/ibc-go/v2/testing/mock" + "github.com/cosmos/ibc-go/v2/testing/simapp" ) const ( diff --git a/modules/core/02-client/keeper/migrations.go b/modules/core/02-client/keeper/migrations.go index 5f2088d6ccc..d79134fe5f7 100644 --- a/modules/core/02-client/keeper/migrations.go +++ b/modules/core/02-client/keeper/migrations.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - v100 "github.com/cosmos/ibc-go/modules/core/02-client/legacy/v100" + v100 "github.com/cosmos/ibc-go/v2/modules/core/02-client/legacy/v100" ) // Migrator is a struct for handling in-place store migrations. diff --git a/modules/core/02-client/keeper/params.go b/modules/core/02-client/keeper/params.go index 2addf95d0df..2fe9ebbd764 100644 --- a/modules/core/02-client/keeper/params.go +++ b/modules/core/02-client/keeper/params.go @@ -2,7 +2,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" ) // GetAllowedClients retrieves the allowed clients from the paramstore diff --git a/modules/core/02-client/keeper/params_test.go b/modules/core/02-client/keeper/params_test.go index cbcc2fea161..9c36f893baa 100644 --- a/modules/core/02-client/keeper/params_test.go +++ b/modules/core/02-client/keeper/params_test.go @@ -1,7 +1,7 @@ package keeper_test import ( - "github.com/cosmos/ibc-go/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" ) func (suite *KeeperTestSuite) TestParams() { diff --git a/modules/core/02-client/keeper/proposal.go b/modules/core/02-client/keeper/proposal.go index da2e93ba7eb..65c357fcfc2 100644 --- a/modules/core/02-client/keeper/proposal.go +++ b/modules/core/02-client/keeper/proposal.go @@ -6,8 +6,8 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) // ClientUpdateProposal will retrieve the subject and substitute client. diff --git a/modules/core/02-client/keeper/proposal_test.go b/modules/core/02-client/keeper/proposal_test.go index 8a4270653e9..a9062ea2ead 100644 --- a/modules/core/02-client/keeper/proposal_test.go +++ b/modules/core/02-client/keeper/proposal_test.go @@ -3,10 +3,10 @@ package keeper_test import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/core/exported" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - ibctesting "github.com/cosmos/ibc-go/testing" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) func (suite *KeeperTestSuite) TestClientUpdateProposal() { diff --git a/modules/core/02-client/legacy/v100/genesis.go b/modules/core/02-client/legacy/v100/genesis.go index 65aa4210e13..0f514c0e799 100644 --- a/modules/core/02-client/legacy/v100/genesis.go +++ b/modules/core/02-client/legacy/v100/genesis.go @@ -7,10 +7,10 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/cosmos/ibc-go/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" - "github.com/cosmos/ibc-go/modules/core/exported" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" ) // MigrateGenesis accepts exported v1.0.0 IBC client genesis file and migrates it to: diff --git a/modules/core/02-client/legacy/v100/genesis_test.go b/modules/core/02-client/legacy/v100/genesis_test.go index 0c3235c6582..109a97715ce 100644 --- a/modules/core/02-client/legacy/v100/genesis_test.go +++ b/modules/core/02-client/legacy/v100/genesis_test.go @@ -9,14 +9,14 @@ import ( "github.com/cosmos/cosmos-sdk/codec" codectypes "github.com/cosmos/cosmos-sdk/codec/types" - ibcclient "github.com/cosmos/ibc-go/modules/core/02-client" - v100 "github.com/cosmos/ibc-go/modules/core/02-client/legacy/v100" - "github.com/cosmos/ibc-go/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" - "github.com/cosmos/ibc-go/modules/core/exported" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - ibctesting "github.com/cosmos/ibc-go/testing" - "github.com/cosmos/ibc-go/testing/simapp" + ibcclient "github.com/cosmos/ibc-go/v2/modules/core/02-client" + v100 "github.com/cosmos/ibc-go/v2/modules/core/02-client/legacy/v100" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" + "github.com/cosmos/ibc-go/v2/testing/simapp" ) func (suite *LegacyTestSuite) TestMigrateGenesisSolomachine() { diff --git a/modules/core/02-client/legacy/v100/solomachine.go b/modules/core/02-client/legacy/v100/solomachine.go index 80b062faff1..b6c1142cab4 100644 --- a/modules/core/02-client/legacy/v100/solomachine.go +++ b/modules/core/02-client/legacy/v100/solomachine.go @@ -7,7 +7,7 @@ import ( cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) // NOTE: this is a mock implmentation for exported.ClientState. This implementation diff --git a/modules/core/02-client/legacy/v100/solomachine.pb.go b/modules/core/02-client/legacy/v100/solomachine.pb.go index c35edaf8b39..dd0449c6683 100644 --- a/modules/core/02-client/legacy/v100/solomachine.pb.go +++ b/modules/core/02-client/legacy/v100/solomachine.pb.go @@ -6,8 +6,8 @@ package v100 import ( fmt "fmt" types "github.com/cosmos/cosmos-sdk/codec/types" - types1 "github.com/cosmos/ibc-go/modules/core/03-connection/types" - types2 "github.com/cosmos/ibc-go/modules/core/04-channel/types" + types1 "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + types2 "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" io "io" diff --git a/modules/core/02-client/legacy/v100/store.go b/modules/core/02-client/legacy/v100/store.go index 842086f956b..c814b045f10 100644 --- a/modules/core/02-client/legacy/v100/store.go +++ b/modules/core/02-client/legacy/v100/store.go @@ -10,12 +10,12 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/cosmos/ibc-go/modules/core/02-client/types" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" - "github.com/cosmos/ibc-go/modules/core/exported" - smtypes "github.com/cosmos/ibc-go/modules/light-clients/06-solomachine/types" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + smtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/06-solomachine/types" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" ) // MigrateStore performs in-place store migrations from SDK v0.40 of the IBC module to v1.0.0 of ibc-go. diff --git a/modules/core/02-client/legacy/v100/store_test.go b/modules/core/02-client/legacy/v100/store_test.go index 1b9856da183..bbf5606288f 100644 --- a/modules/core/02-client/legacy/v100/store_test.go +++ b/modules/core/02-client/legacy/v100/store_test.go @@ -6,12 +6,12 @@ import ( "github.com/stretchr/testify/suite" - "github.com/cosmos/ibc-go/modules/core/02-client/legacy/v100" - "github.com/cosmos/ibc-go/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" - "github.com/cosmos/ibc-go/modules/core/exported" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - ibctesting "github.com/cosmos/ibc-go/testing" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/legacy/v100" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) type LegacyTestSuite struct { diff --git a/modules/core/02-client/module.go b/modules/core/02-client/module.go index 9e731ba8aa5..f44437ae5ef 100644 --- a/modules/core/02-client/module.go +++ b/modules/core/02-client/module.go @@ -4,8 +4,8 @@ import ( "github.com/gogo/protobuf/grpc" "github.com/spf13/cobra" - "github.com/cosmos/ibc-go/modules/core/02-client/client/cli" - "github.com/cosmos/ibc-go/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/client/cli" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" ) // Name returns the IBC client name diff --git a/modules/core/02-client/proposal_handler.go b/modules/core/02-client/proposal_handler.go index d35954588d0..10a0d19ee23 100644 --- a/modules/core/02-client/proposal_handler.go +++ b/modules/core/02-client/proposal_handler.go @@ -4,8 +4,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/cosmos/ibc-go/modules/core/02-client/keeper" - "github.com/cosmos/ibc-go/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/keeper" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" ) // NewClientProposalHandler defines the 02-client proposal handler diff --git a/modules/core/02-client/proposal_handler_test.go b/modules/core/02-client/proposal_handler_test.go index ea4eb31b260..1b6649552b1 100644 --- a/modules/core/02-client/proposal_handler_test.go +++ b/modules/core/02-client/proposal_handler_test.go @@ -4,10 +4,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" distributiontypes "github.com/cosmos/cosmos-sdk/x/distribution/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - client "github.com/cosmos/ibc-go/modules/core/02-client" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - ibctesting "github.com/cosmos/ibc-go/testing" + client "github.com/cosmos/ibc-go/v2/modules/core/02-client" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) func (suite *ClientTestSuite) TestNewClientUpdateProposalHandler() { diff --git a/modules/core/02-client/simulation/decoder.go b/modules/core/02-client/simulation/decoder.go index 2e4a78385b9..57e8652d966 100644 --- a/modules/core/02-client/simulation/decoder.go +++ b/modules/core/02-client/simulation/decoder.go @@ -5,9 +5,9 @@ import ( "fmt" "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/cosmos/ibc-go/modules/core/02-client/keeper" - host "github.com/cosmos/ibc-go/modules/core/24-host" - "github.com/cosmos/ibc-go/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/keeper" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) var _ ClientUnmarshaler = (*keeper.Keeper)(nil) diff --git a/modules/core/02-client/simulation/decoder_test.go b/modules/core/02-client/simulation/decoder_test.go index f1c0ca51459..bfb9280925d 100644 --- a/modules/core/02-client/simulation/decoder_test.go +++ b/modules/core/02-client/simulation/decoder_test.go @@ -8,11 +8,11 @@ import ( "github.com/stretchr/testify/require" "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/cosmos/ibc-go/modules/core/02-client/simulation" - "github.com/cosmos/ibc-go/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - "github.com/cosmos/ibc-go/testing/simapp" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/simulation" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + "github.com/cosmos/ibc-go/v2/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 c80b02ac5f4..65ce6375a9f 100644 --- a/modules/core/02-client/simulation/genesis.go +++ b/modules/core/02-client/simulation/genesis.go @@ -4,7 +4,7 @@ import ( "math/rand" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/cosmos/ibc-go/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/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 536b7d237b8..03906ba4e74 100644 --- a/modules/core/02-client/types/client.go +++ b/modules/core/02-client/types/client.go @@ -10,8 +10,8 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - host "github.com/cosmos/ibc-go/modules/core/24-host" - "github.com/cosmos/ibc-go/modules/core/exported" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/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 b5b9b73ca0e..7d558d2edcb 100644 --- a/modules/core/02-client/types/client_test.go +++ b/modules/core/02-client/types/client_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/modules/core/02-client/types" - ibctesting "github.com/cosmos/ibc-go/testing" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) func (suite *TypesTestSuite) TestMarshalConsensusStateWithHeight() { diff --git a/modules/core/02-client/types/codec.go b/modules/core/02-client/types/codec.go index dfc05c94d59..52ebc940fe7 100644 --- a/modules/core/02-client/types/codec.go +++ b/modules/core/02-client/types/codec.go @@ -8,7 +8,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/cosmos/cosmos-sdk/types/msgservice" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/cosmos/ibc-go/modules/core/exported" + "github.com/cosmos/ibc-go/v2/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 a0bfda608b5..ced8979d2eb 100644 --- a/modules/core/02-client/types/codec_test.go +++ b/modules/core/02-client/types/codec_test.go @@ -2,12 +2,12 @@ package types_test import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" - "github.com/cosmos/ibc-go/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/modules/core/exported" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - localhosttypes "github.com/cosmos/ibc-go/modules/light-clients/09-localhost/types" - ibctesting "github.com/cosmos/ibc-go/testing" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + localhosttypes "github.com/cosmos/ibc-go/v2/modules/light-clients/09-localhost/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) type caseAny struct { diff --git a/modules/core/02-client/types/encoding.go b/modules/core/02-client/types/encoding.go index c3ec255bc2a..342d6ee6776 100644 --- a/modules/core/02-client/types/encoding.go +++ b/modules/core/02-client/types/encoding.go @@ -4,7 +4,7 @@ import ( "fmt" "github.com/cosmos/cosmos-sdk/codec" - "github.com/cosmos/ibc-go/modules/core/exported" + "github.com/cosmos/ibc-go/v2/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 a528c792db6..9102da93a16 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/modules/core/02-client/types" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" ) func (suite *TypesTestSuite) TestMarshalHeader() { diff --git a/modules/core/02-client/types/events.go b/modules/core/02-client/types/events.go index 464ad4d426e..b0df80e4f34 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" - host "github.com/cosmos/ibc-go/modules/core/24-host" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" ) // IBC client events diff --git a/modules/core/02-client/types/genesis.go b/modules/core/02-client/types/genesis.go index 06ac6dad8c3..c366e2cafbe 100644 --- a/modules/core/02-client/types/genesis.go +++ b/modules/core/02-client/types/genesis.go @@ -5,8 +5,8 @@ import ( "sort" codectypes "github.com/cosmos/cosmos-sdk/codec/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" - "github.com/cosmos/ibc-go/modules/core/exported" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/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 ab2c479c6f1..55be9a745a0 100644 --- a/modules/core/02-client/types/genesis_test.go +++ b/modules/core/02-client/types/genesis_test.go @@ -5,14 +5,14 @@ import ( tmtypes "github.com/tendermint/tendermint/types" - client "github.com/cosmos/ibc-go/modules/core/02-client" - "github.com/cosmos/ibc-go/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/modules/core/exported" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - localhosttypes "github.com/cosmos/ibc-go/modules/light-clients/09-localhost/types" - ibctesting "github.com/cosmos/ibc-go/testing" - ibctestingmock "github.com/cosmos/ibc-go/testing/mock" + client "github.com/cosmos/ibc-go/v2/modules/core/02-client" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + localhosttypes "github.com/cosmos/ibc-go/v2/modules/light-clients/09-localhost/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" + ibctestingmock "github.com/cosmos/ibc-go/v2/testing/mock" ) const ( diff --git a/modules/core/02-client/types/height.go b/modules/core/02-client/types/height.go index 5f4d025b606..7b25a7458d7 100644 --- a/modules/core/02-client/types/height.go +++ b/modules/core/02-client/types/height.go @@ -9,7 +9,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/cosmos/ibc-go/modules/core/exported" + "github.com/cosmos/ibc-go/v2/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 145a897b8bc..08450f63ab7 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/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/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 b7f6ddf919c..043330a7616 100644 --- a/modules/core/02-client/types/keys.go +++ b/modules/core/02-client/types/keys.go @@ -7,7 +7,7 @@ import ( "strings" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - host "github.com/cosmos/ibc-go/modules/core/24-host" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" ) const ( diff --git a/modules/core/02-client/types/keys_test.go b/modules/core/02-client/types/keys_test.go index f3935454118..05ab05419ce 100644 --- a/modules/core/02-client/types/keys_test.go +++ b/modules/core/02-client/types/keys_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" ) // tests ParseClientIdentifier and IsValidClientID diff --git a/modules/core/02-client/types/msgs.go b/modules/core/02-client/types/msgs.go index e2ff1ca02b1..9eba4171b6c 100644 --- a/modules/core/02-client/types/msgs.go +++ b/modules/core/02-client/types/msgs.go @@ -4,8 +4,8 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - host "github.com/cosmos/ibc-go/modules/core/24-host" - "github.com/cosmos/ibc-go/modules/core/exported" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) // message types for the IBC client diff --git a/modules/core/02-client/types/msgs_test.go b/modules/core/02-client/types/msgs_test.go index 7efc07b42d1..aa2bbf48dfc 100644 --- a/modules/core/02-client/types/msgs_test.go +++ b/modules/core/02-client/types/msgs_test.go @@ -7,12 +7,12 @@ import ( "github.com/golang/protobuf/proto" "github.com/stretchr/testify/suite" - "github.com/cosmos/ibc-go/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/modules/core/exported" - solomachinetypes "github.com/cosmos/ibc-go/modules/light-clients/06-solomachine/types" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - ibctesting "github.com/cosmos/ibc-go/testing" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + solomachinetypes "github.com/cosmos/ibc-go/v2/modules/light-clients/06-solomachine/types" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) type TypesTestSuite struct { diff --git a/modules/core/02-client/types/params.go b/modules/core/02-client/types/params.go index 6460a3fcde5..f00509efeb8 100644 --- a/modules/core/02-client/types/params.go +++ b/modules/core/02-client/types/params.go @@ -5,7 +5,7 @@ import ( "strings" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/cosmos/ibc-go/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) var ( diff --git a/modules/core/02-client/types/params_test.go b/modules/core/02-client/types/params_test.go index 1f3d0571b36..85fd682909a 100644 --- a/modules/core/02-client/types/params_test.go +++ b/modules/core/02-client/types/params_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) func TestValidateParams(t *testing.T) { diff --git a/modules/core/02-client/types/proposal.go b/modules/core/02-client/types/proposal.go index bf5ac73e772..42623986dab 100644 --- a/modules/core/02-client/types/proposal.go +++ b/modules/core/02-client/types/proposal.go @@ -7,7 +7,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/cosmos/ibc-go/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) const ( diff --git a/modules/core/02-client/types/proposal_test.go b/modules/core/02-client/types/proposal_test.go index 334204fb581..fbf862a25fb 100644 --- a/modules/core/02-client/types/proposal_test.go +++ b/modules/core/02-client/types/proposal_test.go @@ -8,9 +8,9 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/cosmos/ibc-go/modules/core/02-client/types" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - ibctesting "github.com/cosmos/ibc-go/testing" + "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) func (suite *TypesTestSuite) TestValidateBasic() { diff --git a/modules/core/02-client/types/query.go b/modules/core/02-client/types/query.go index 5dc9d73df6f..add8c8cd6bb 100644 --- a/modules/core/02-client/types/query.go +++ b/modules/core/02-client/types/query.go @@ -2,7 +2,7 @@ package types import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" - "github.com/cosmos/ibc-go/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) var ( diff --git a/modules/core/03-connection/client/cli/cli.go b/modules/core/03-connection/client/cli/cli.go index 743ca49ebdb..7c532aa9ead 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/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v2/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 56cf597ce17..87062ca89f9 100644 --- a/modules/core/03-connection/client/cli/query.go +++ b/modules/core/03-connection/client/cli/query.go @@ -8,9 +8,9 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/version" - "github.com/cosmos/ibc-go/modules/core/03-connection/client/utils" - "github.com/cosmos/ibc-go/modules/core/03-connection/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/03-connection/client/utils" + "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" ) // 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 e4a108ad38a..637b835ebdb 100644 --- a/modules/core/03-connection/client/utils/utils.go +++ b/modules/core/03-connection/client/utils/utils.go @@ -10,13 +10,13 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/codec" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - clientutils "github.com/cosmos/ibc-go/modules/core/02-client/client/utils" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/core/03-connection/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" - ibcclient "github.com/cosmos/ibc-go/modules/core/client" - "github.com/cosmos/ibc-go/modules/core/exported" + clientutils "github.com/cosmos/ibc-go/v2/modules/core/02-client/client/utils" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + ibcclient "github.com/cosmos/ibc-go/v2/modules/core/client" + "github.com/cosmos/ibc-go/v2/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 d0f7f3721d0..4146427e72e 100644 --- a/modules/core/03-connection/genesis.go +++ b/modules/core/03-connection/genesis.go @@ -2,8 +2,8 @@ package connection import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/modules/core/03-connection/keeper" - "github.com/cosmos/ibc-go/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v2/modules/core/03-connection/keeper" + "github.com/cosmos/ibc-go/v2/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/grpc_query.go b/modules/core/03-connection/keeper/grpc_query.go index 244250f2576..0f0b56cee26 100644 --- a/modules/core/03-connection/keeper/grpc_query.go +++ b/modules/core/03-connection/keeper/grpc_query.go @@ -10,9 +10,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/cosmos/cosmos-sdk/types/query" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/core/03-connection/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" ) var _ types.QueryServer = Keeper{} diff --git a/modules/core/03-connection/keeper/grpc_query_test.go b/modules/core/03-connection/keeper/grpc_query_test.go index a8480dadda8..767cc6efc00 100644 --- a/modules/core/03-connection/keeper/grpc_query_test.go +++ b/modules/core/03-connection/keeper/grpc_query_test.go @@ -5,10 +5,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/core/03-connection/types" - "github.com/cosmos/ibc-go/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/testing" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) func (suite *KeeperTestSuite) TestQueryConnection() { diff --git a/modules/core/03-connection/keeper/handshake.go b/modules/core/03-connection/keeper/handshake.go index 50df67ed770..e3a8ac242f7 100644 --- a/modules/core/03-connection/keeper/handshake.go +++ b/modules/core/03-connection/keeper/handshake.go @@ -8,10 +8,10 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/core/03-connection/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v2/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 0fc12f3ebd7..dfcfb959fe6 100644 --- a/modules/core/03-connection/keeper/handshake_test.go +++ b/modules/core/03-connection/keeper/handshake_test.go @@ -3,12 +3,12 @@ package keeper_test import ( "time" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/core/03-connection/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" - "github.com/cosmos/ibc-go/modules/core/exported" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - ibctesting "github.com/cosmos/ibc-go/testing" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + ibctesting "github.com/cosmos/ibc-go/v2/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 3ce029168ac..b4325b7244f 100644 --- a/modules/core/03-connection/keeper/keeper.go +++ b/modules/core/03-connection/keeper/keeper.go @@ -7,11 +7,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/core/03-connection/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" - "github.com/cosmos/ibc-go/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/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 d2eb86f6bee..9482d47e8a8 100644 --- a/modules/core/03-connection/keeper/keeper_test.go +++ b/modules/core/03-connection/keeper/keeper_test.go @@ -6,8 +6,8 @@ import ( "github.com/stretchr/testify/suite" - "github.com/cosmos/ibc-go/modules/core/03-connection/types" - ibctesting "github.com/cosmos/ibc-go/testing" + "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) type KeeperTestSuite struct { diff --git a/modules/core/03-connection/keeper/params.go b/modules/core/03-connection/keeper/params.go index df057f9d093..2e52317fbca 100644 --- a/modules/core/03-connection/keeper/params.go +++ b/modules/core/03-connection/keeper/params.go @@ -2,7 +2,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" ) // GetMaxExpectedTimePerBlock retrieves the maximum expected time per block from the paramstore diff --git a/modules/core/03-connection/keeper/params_test.go b/modules/core/03-connection/keeper/params_test.go index 53ab160c9dc..a4848599b76 100644 --- a/modules/core/03-connection/keeper/params_test.go +++ b/modules/core/03-connection/keeper/params_test.go @@ -1,7 +1,7 @@ package keeper_test import ( - "github.com/cosmos/ibc-go/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" ) func (suite *KeeperTestSuite) TestParams() { diff --git a/modules/core/03-connection/keeper/verify.go b/modules/core/03-connection/keeper/verify.go index 510039740ee..f696b2cb1b4 100644 --- a/modules/core/03-connection/keeper/verify.go +++ b/modules/core/03-connection/keeper/verify.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) // VerifyClientState verifies a proof of a client state of the running machine diff --git a/modules/core/03-connection/keeper/verify_test.go b/modules/core/03-connection/keeper/verify_test.go index 620f4425e5f..6ef0cc78dca 100644 --- a/modules/core/03-connection/keeper/verify_test.go +++ b/modules/core/03-connection/keeper/verify_test.go @@ -4,14 +4,14 @@ import ( "fmt" "time" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/core/03-connection/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/modules/core/exported" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - ibctesting "github.com/cosmos/ibc-go/testing" - ibcmock "github.com/cosmos/ibc-go/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" + ibcmock "github.com/cosmos/ibc-go/v2/testing/mock" ) var defaultTimeoutHeight = clienttypes.NewHeight(0, 100000) diff --git a/modules/core/03-connection/module.go b/modules/core/03-connection/module.go index d4c344fa723..ffbbeac52f8 100644 --- a/modules/core/03-connection/module.go +++ b/modules/core/03-connection/module.go @@ -4,8 +4,8 @@ import ( "github.com/gogo/protobuf/grpc" "github.com/spf13/cobra" - "github.com/cosmos/ibc-go/modules/core/03-connection/client/cli" - "github.com/cosmos/ibc-go/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v2/modules/core/03-connection/client/cli" + "github.com/cosmos/ibc-go/v2/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 8b331cb50ae..09873008794 100644 --- a/modules/core/03-connection/simulation/decoder.go +++ b/modules/core/03-connection/simulation/decoder.go @@ -6,8 +6,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/cosmos/ibc-go/modules/core/03-connection/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + host "github.com/cosmos/ibc-go/v2/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 177f43a9d14..c5707c102e1 100644 --- a/modules/core/03-connection/simulation/decoder_test.go +++ b/modules/core/03-connection/simulation/decoder_test.go @@ -7,10 +7,10 @@ import ( "github.com/stretchr/testify/require" "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/cosmos/ibc-go/modules/core/03-connection/simulation" - "github.com/cosmos/ibc-go/modules/core/03-connection/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" - "github.com/cosmos/ibc-go/testing/simapp" + "github.com/cosmos/ibc-go/v2/modules/core/03-connection/simulation" + "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/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 e49132d93e6..12b8eeaf4e4 100644 --- a/modules/core/03-connection/simulation/genesis.go +++ b/modules/core/03-connection/simulation/genesis.go @@ -4,7 +4,7 @@ import ( "math/rand" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/cosmos/ibc-go/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" ) // GenConnectionGenesis returns the default connection genesis state. diff --git a/modules/core/03-connection/types/codec.go b/modules/core/03-connection/types/codec.go index cf98be87d75..90292d004f6 100644 --- a/modules/core/03-connection/types/codec.go +++ b/modules/core/03-connection/types/codec.go @@ -5,7 +5,7 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/msgservice" - "github.com/cosmos/ibc-go/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) // RegisterInterfaces register the ibc interfaces submodule implementations to protobuf diff --git a/modules/core/03-connection/types/connection.go b/modules/core/03-connection/types/connection.go index 4430e5d6b82..4bf613c3f99 100644 --- a/modules/core/03-connection/types/connection.go +++ b/modules/core/03-connection/types/connection.go @@ -2,9 +2,9 @@ package types import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" - "github.com/cosmos/ibc-go/modules/core/exported" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) var _ exported.ConnectionI = (*ConnectionEnd)(nil) diff --git a/modules/core/03-connection/types/connection.pb.go b/modules/core/03-connection/types/connection.pb.go index 6fbe5ba997f..72046a23d6a 100644 --- a/modules/core/03-connection/types/connection.pb.go +++ b/modules/core/03-connection/types/connection.pb.go @@ -5,7 +5,7 @@ package types import ( fmt "fmt" - types "github.com/cosmos/ibc-go/modules/core/23-commitment/types" + types "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" io "io" diff --git a/modules/core/03-connection/types/connection_test.go b/modules/core/03-connection/types/connection_test.go index bc343131e9d..54e6f4c49bf 100644 --- a/modules/core/03-connection/types/connection_test.go +++ b/modules/core/03-connection/types/connection_test.go @@ -5,10 +5,10 @@ import ( "github.com/stretchr/testify/require" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/core/03-connection/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - ibctesting "github.com/cosmos/ibc-go/testing" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) var ( diff --git a/modules/core/03-connection/types/events.go b/modules/core/03-connection/types/events.go index 94615c431ce..f4f92c3f8db 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" - host "github.com/cosmos/ibc-go/modules/core/24-host" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" ) // IBC connection events diff --git a/modules/core/03-connection/types/expected_keepers.go b/modules/core/03-connection/types/expected_keepers.go index 2199a3540a3..e378adbed2a 100644 --- a/modules/core/03-connection/types/expected_keepers.go +++ b/modules/core/03-connection/types/expected_keepers.go @@ -2,7 +2,7 @@ package types import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/modules/core/exported" + "github.com/cosmos/ibc-go/v2/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 313782184cd..d632af3b877 100644 --- a/modules/core/03-connection/types/genesis.go +++ b/modules/core/03-connection/types/genesis.go @@ -3,7 +3,7 @@ package types import ( "fmt" - host "github.com/cosmos/ibc-go/modules/core/24-host" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" ) // 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 9a64c86b499..8fa61bba4c6 100644 --- a/modules/core/03-connection/types/genesis_test.go +++ b/modules/core/03-connection/types/genesis_test.go @@ -5,9 +5,9 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/modules/core/03-connection/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - ibctesting "github.com/cosmos/ibc-go/testing" + "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + ibctesting "github.com/cosmos/ibc-go/v2/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 073ab8215d9..affe8527a12 100644 --- a/modules/core/03-connection/types/keys.go +++ b/modules/core/03-connection/types/keys.go @@ -5,7 +5,7 @@ import ( "regexp" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - host "github.com/cosmos/ibc-go/modules/core/24-host" + host "github.com/cosmos/ibc-go/v2/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 c4180385729..197e30573b2 100644 --- a/modules/core/03-connection/types/keys_test.go +++ b/modules/core/03-connection/types/keys_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" ) // tests ParseConnectionSequence and IsValidConnectionID diff --git a/modules/core/03-connection/types/msgs.go b/modules/core/03-connection/types/msgs.go index 7d6f88faac3..02b764ac461 100644 --- a/modules/core/03-connection/types/msgs.go +++ b/modules/core/03-connection/types/msgs.go @@ -4,10 +4,10 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" - "github.com/cosmos/ibc-go/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/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 57c123525fc..ec5e79efc9b 100644 --- a/modules/core/03-connection/types/msgs_test.go +++ b/modules/core/03-connection/types/msgs_test.go @@ -13,12 +13,12 @@ import ( "github.com/cosmos/cosmos-sdk/store/iavl" "github.com/cosmos/cosmos-sdk/store/rootmulti" storetypes "github.com/cosmos/cosmos-sdk/store/types" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/core/03-connection/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - ibctesting "github.com/cosmos/ibc-go/testing" - "github.com/cosmos/ibc-go/testing/simapp" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" + "github.com/cosmos/ibc-go/v2/testing/simapp" ) var ( diff --git a/modules/core/03-connection/types/params_test.go b/modules/core/03-connection/types/params_test.go index 0a04ed34a4b..cc5b3a024f2 100644 --- a/modules/core/03-connection/types/params_test.go +++ b/modules/core/03-connection/types/params_test.go @@ -3,7 +3,7 @@ package types_test import ( "testing" - "github.com/cosmos/ibc-go/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" "github.com/stretchr/testify/require" ) diff --git a/modules/core/03-connection/types/query.go b/modules/core/03-connection/types/query.go index 7677ebd1827..6853b80dae4 100644 --- a/modules/core/03-connection/types/query.go +++ b/modules/core/03-connection/types/query.go @@ -2,8 +2,8 @@ package types import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/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 32ad340b80f..eb064d9a6e2 100644 --- a/modules/core/03-connection/types/query.pb.go +++ b/modules/core/03-connection/types/query.pb.go @@ -8,7 +8,7 @@ import ( fmt "fmt" types1 "github.com/cosmos/cosmos-sdk/codec/types" query "github.com/cosmos/cosmos-sdk/types/query" - types "github.com/cosmos/ibc-go/modules/core/02-client/types" + types "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" _ "github.com/gogo/protobuf/gogoproto" grpc1 "github.com/gogo/protobuf/grpc" proto "github.com/gogo/protobuf/proto" diff --git a/modules/core/03-connection/types/tx.pb.go b/modules/core/03-connection/types/tx.pb.go index f544f50f23d..3c6b1d20996 100644 --- a/modules/core/03-connection/types/tx.pb.go +++ b/modules/core/03-connection/types/tx.pb.go @@ -7,7 +7,7 @@ import ( context "context" fmt "fmt" types "github.com/cosmos/cosmos-sdk/codec/types" - types1 "github.com/cosmos/ibc-go/modules/core/02-client/types" + types1 "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" _ "github.com/gogo/protobuf/gogoproto" grpc1 "github.com/gogo/protobuf/grpc" proto "github.com/gogo/protobuf/proto" diff --git a/modules/core/03-connection/types/version.go b/modules/core/03-connection/types/version.go index cf0d29dd0ee..347017ce5e8 100644 --- a/modules/core/03-connection/types/version.go +++ b/modules/core/03-connection/types/version.go @@ -4,7 +4,7 @@ import ( "strings" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/cosmos/ibc-go/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) var ( diff --git a/modules/core/03-connection/types/version_test.go b/modules/core/03-connection/types/version_test.go index d50d69291cc..d8cb122252b 100644 --- a/modules/core/03-connection/types/version_test.go +++ b/modules/core/03-connection/types/version_test.go @@ -5,9 +5,9 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/modules/core/03-connection/types" - "github.com/cosmos/ibc-go/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/testing" + "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v2/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 3335f379f35..24257f33da7 100644 --- a/modules/core/04-channel/client/cli/cli.go +++ b/modules/core/04-channel/client/cli/cli.go @@ -4,7 +4,7 @@ import ( "github.com/spf13/cobra" "github.com/cosmos/cosmos-sdk/client" - "github.com/cosmos/ibc-go/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v2/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 145cbd6560a..c8754c60d67 100644 --- a/modules/core/04-channel/client/cli/query.go +++ b/modules/core/04-channel/client/cli/query.go @@ -9,9 +9,9 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/version" - "github.com/cosmos/ibc-go/modules/core/04-channel/client/utils" - "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/core/04-channel/client/utils" + "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" ) const ( diff --git a/modules/core/04-channel/client/utils/utils.go b/modules/core/04-channel/client/utils/utils.go index ec70a8f629f..76b18898a62 100644 --- a/modules/core/04-channel/client/utils/utils.go +++ b/modules/core/04-channel/client/utils/utils.go @@ -7,12 +7,12 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/codec" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - clientutils "github.com/cosmos/ibc-go/modules/core/02-client/client/utils" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" - ibcclient "github.com/cosmos/ibc-go/modules/core/client" - "github.com/cosmos/ibc-go/modules/core/exported" + clientutils "github.com/cosmos/ibc-go/v2/modules/core/02-client/client/utils" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + ibcclient "github.com/cosmos/ibc-go/v2/modules/core/client" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) // QueryChannel returns a channel end. diff --git a/modules/core/04-channel/genesis.go b/modules/core/04-channel/genesis.go index 63d354ee3d5..648becbb8a9 100644 --- a/modules/core/04-channel/genesis.go +++ b/modules/core/04-channel/genesis.go @@ -2,8 +2,8 @@ package channel import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/modules/core/04-channel/keeper" - "github.com/cosmos/ibc-go/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v2/modules/core/04-channel/keeper" + "github.com/cosmos/ibc-go/v2/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/events.go b/modules/core/04-channel/keeper/events.go index bfdf925f2e6..e1726e53668 100644 --- a/modules/core/04-channel/keeper/events.go +++ b/modules/core/04-channel/keeper/events.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) // EmitSendPacketEvent emits an event with packet data along with other packet information for relayer diff --git a/modules/core/04-channel/keeper/grpc_query.go b/modules/core/04-channel/keeper/grpc_query.go index 150d839b5f8..64a281eaa8f 100644 --- a/modules/core/04-channel/keeper/grpc_query.go +++ b/modules/core/04-channel/keeper/grpc_query.go @@ -12,10 +12,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/cosmos/cosmos-sdk/types/query" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/types" - "github.com/cosmos/ibc-go/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" ) var _ types.QueryServer = (*Keeper)(nil) diff --git a/modules/core/04-channel/keeper/grpc_query_test.go b/modules/core/04-channel/keeper/grpc_query_test.go index d803ae8b135..9fdce2b14a1 100644 --- a/modules/core/04-channel/keeper/grpc_query_test.go +++ b/modules/core/04-channel/keeper/grpc_query_test.go @@ -5,11 +5,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/types" - "github.com/cosmos/ibc-go/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/testing" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) func (suite *KeeperTestSuite) TestQueryChannel() { diff --git a/modules/core/04-channel/keeper/handshake.go b/modules/core/04-channel/keeper/handshake.go index 5f9d70ad090..ef1cbd01fea 100644 --- a/modules/core/04-channel/keeper/handshake.go +++ b/modules/core/04-channel/keeper/handshake.go @@ -5,11 +5,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" - connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/types" - "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/modules/core/exported" + connectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + "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" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) // CounterpartyHops returns the connection hops of the counterparty channel. diff --git a/modules/core/04-channel/keeper/handshake_test.go b/modules/core/04-channel/keeper/handshake_test.go index 19535792833..c64077d7118 100644 --- a/modules/core/04-channel/keeper/handshake_test.go +++ b/modules/core/04-channel/keeper/handshake_test.go @@ -4,12 +4,12 @@ import ( "fmt" capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/types" - "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/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/testing" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) type testCase = struct { diff --git a/modules/core/04-channel/keeper/keeper.go b/modules/core/04-channel/keeper/keeper.go index 2250ef6e353..c5e07148c78 100644 --- a/modules/core/04-channel/keeper/keeper.go +++ b/modules/core/04-channel/keeper/keeper.go @@ -12,12 +12,12 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" capabilitykeeper "github.com/cosmos/cosmos-sdk/x/capability/keeper" capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/types" - "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/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + "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" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) // Keeper defines the IBC channel keeper diff --git a/modules/core/04-channel/keeper/keeper_test.go b/modules/core/04-channel/keeper/keeper_test.go index 74899f4abe9..a8b616d2a10 100644 --- a/modules/core/04-channel/keeper/keeper_test.go +++ b/modules/core/04-channel/keeper/keeper_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/suite" - "github.com/cosmos/ibc-go/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/testing" + "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) // KeeperTestSuite is a testing suite to test keeper functions. diff --git a/modules/core/04-channel/keeper/packet.go b/modules/core/04-channel/keeper/packet.go index 38b40e5b795..401b6c734c2 100644 --- a/modules/core/04-channel/keeper/packet.go +++ b/modules/core/04-channel/keeper/packet.go @@ -8,11 +8,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/types" - "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/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/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 9ef7798140d..a34d48b42df 100644 --- a/modules/core/04-channel/keeper/packet_test.go +++ b/modules/core/04-channel/keeper/packet_test.go @@ -7,14 +7,14 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/types" - "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/modules/core/exported" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - ibctesting "github.com/cosmos/ibc-go/testing" - ibcmock "github.com/cosmos/ibc-go/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" + ibcmock "github.com/cosmos/ibc-go/v2/testing/mock" ) var ( diff --git a/modules/core/04-channel/keeper/timeout.go b/modules/core/04-channel/keeper/timeout.go index 93fa9eca4fe..6b577bd2d5d 100644 --- a/modules/core/04-channel/keeper/timeout.go +++ b/modules/core/04-channel/keeper/timeout.go @@ -7,10 +7,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" - connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/types" - "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/modules/core/exported" + connectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/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 7cdb88cdc05..d54177d2b4d 100644 --- a/modules/core/04-channel/keeper/timeout_test.go +++ b/modules/core/04-channel/keeper/timeout_test.go @@ -7,12 +7,12 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/types" - "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/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/testing" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) // TestTimeoutPacket test the TimeoutPacket call on chainA by ensuring the timeout has passed diff --git a/modules/core/04-channel/module.go b/modules/core/04-channel/module.go index bb002607154..50c07cd07d1 100644 --- a/modules/core/04-channel/module.go +++ b/modules/core/04-channel/module.go @@ -4,8 +4,8 @@ import ( "github.com/gogo/protobuf/grpc" "github.com/spf13/cobra" - "github.com/cosmos/ibc-go/modules/core/04-channel/client/cli" - "github.com/cosmos/ibc-go/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v2/modules/core/04-channel/client/cli" + "github.com/cosmos/ibc-go/v2/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 59e56e965b4..01f829f1596 100644 --- a/modules/core/04-channel/simulation/decoder.go +++ b/modules/core/04-channel/simulation/decoder.go @@ -7,8 +7,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/kv" - "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/core/04-channel/types" + host "github.com/cosmos/ibc-go/v2/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 4beeb40aa89..2514d8ea2ae 100644 --- a/modules/core/04-channel/simulation/decoder_test.go +++ b/modules/core/04-channel/simulation/decoder_test.go @@ -8,10 +8,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/cosmos/ibc-go/modules/core/04-channel/simulation" - "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/testing/simapp" + "github.com/cosmos/ibc-go/v2/modules/core/04-channel/simulation" + "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/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 7e48f59b899..e0680ece96a 100644 --- a/modules/core/04-channel/simulation/genesis.go +++ b/modules/core/04-channel/simulation/genesis.go @@ -4,7 +4,7 @@ import ( "math/rand" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/cosmos/ibc-go/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v2/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 92d546a8164..a1c5fa86396 100644 --- a/modules/core/04-channel/types/acknowledgement_test.go +++ b/modules/core/04-channel/types/acknowledgement_test.go @@ -1,6 +1,6 @@ package types_test -import "github.com/cosmos/ibc-go/modules/core/04-channel/types" +import "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" // tests acknowledgement.ValidateBasic and acknowledgement.GetBytes func (suite TypesTestSuite) TestAcknowledgement() { diff --git a/modules/core/04-channel/types/channel.go b/modules/core/04-channel/types/channel.go index e1ee0be7e14..dcd3832b05a 100644 --- a/modules/core/04-channel/types/channel.go +++ b/modules/core/04-channel/types/channel.go @@ -2,8 +2,8 @@ package types import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - host "github.com/cosmos/ibc-go/modules/core/24-host" - "github.com/cosmos/ibc-go/modules/core/exported" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) var ( diff --git a/modules/core/04-channel/types/channel.pb.go b/modules/core/04-channel/types/channel.pb.go index 166d836c5ab..8d021e7c3ac 100644 --- a/modules/core/04-channel/types/channel.pb.go +++ b/modules/core/04-channel/types/channel.pb.go @@ -5,7 +5,7 @@ package types import ( fmt "fmt" - types "github.com/cosmos/ibc-go/modules/core/02-client/types" + types "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" io "io" diff --git a/modules/core/04-channel/types/channel_test.go b/modules/core/04-channel/types/channel_test.go index 14bd8a54219..f9b9e5a63fc 100644 --- a/modules/core/04-channel/types/channel_test.go +++ b/modules/core/04-channel/types/channel_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" ) func TestChannelValidateBasic(t *testing.T) { diff --git a/modules/core/04-channel/types/codec.go b/modules/core/04-channel/types/codec.go index 9c0ac65adcb..ebb09dc01f9 100644 --- a/modules/core/04-channel/types/codec.go +++ b/modules/core/04-channel/types/codec.go @@ -5,7 +5,7 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/msgservice" - "github.com/cosmos/ibc-go/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) // RegisterInterfaces register the ibc channel submodule interfaces to protobuf diff --git a/modules/core/04-channel/types/events.go b/modules/core/04-channel/types/events.go index 201fd26a0ed..81c1f38c9bb 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" - host "github.com/cosmos/ibc-go/modules/core/24-host" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" ) // IBC channel events diff --git a/modules/core/04-channel/types/expected_keepers.go b/modules/core/04-channel/types/expected_keepers.go index ec590cd5c39..3f2dfa54546 100644 --- a/modules/core/04-channel/types/expected_keepers.go +++ b/modules/core/04-channel/types/expected_keepers.go @@ -3,8 +3,8 @@ package types import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" - connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/types" - "github.com/cosmos/ibc-go/modules/core/exported" + connectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v2/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 e80f82b056d..c57847c1625 100644 --- a/modules/core/04-channel/types/genesis.go +++ b/modules/core/04-channel/types/genesis.go @@ -4,7 +4,7 @@ import ( "errors" "fmt" - host "github.com/cosmos/ibc-go/modules/core/24-host" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" ) // 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 35e20f1bc8b..869acf1135b 100644 --- a/modules/core/04-channel/types/genesis_test.go +++ b/modules/core/04-channel/types/genesis_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" ) const ( diff --git a/modules/core/04-channel/types/keys.go b/modules/core/04-channel/types/keys.go index 64ee6a225c7..0ad8f471913 100644 --- a/modules/core/04-channel/types/keys.go +++ b/modules/core/04-channel/types/keys.go @@ -5,7 +5,7 @@ import ( "regexp" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - host "github.com/cosmos/ibc-go/modules/core/24-host" + host "github.com/cosmos/ibc-go/v2/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 a89936d0f51..5c6a7d9fa16 100644 --- a/modules/core/04-channel/types/keys_test.go +++ b/modules/core/04-channel/types/keys_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" ) // tests ParseChannelSequence and IsValidChannelID diff --git a/modules/core/04-channel/types/msgs.go b/modules/core/04-channel/types/msgs.go index 784aa6f92b6..9d552d7950c 100644 --- a/modules/core/04-channel/types/msgs.go +++ b/modules/core/04-channel/types/msgs.go @@ -5,9 +5,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" ) var _ sdk.Msg = &MsgChannelOpenInit{} diff --git a/modules/core/04-channel/types/msgs_test.go b/modules/core/04-channel/types/msgs_test.go index 9606b9357c1..e82faa2541f 100644 --- a/modules/core/04-channel/types/msgs_test.go +++ b/modules/core/04-channel/types/msgs_test.go @@ -13,11 +13,11 @@ import ( "github.com/cosmos/cosmos-sdk/store/rootmulti" storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/modules/core/exported" - "github.com/cosmos/ibc-go/testing/simapp" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + "github.com/cosmos/ibc-go/v2/testing/simapp" ) const ( diff --git a/modules/core/04-channel/types/packet.go b/modules/core/04-channel/types/packet.go index 5e9c56e62d8..8e259ca1813 100644 --- a/modules/core/04-channel/types/packet.go +++ b/modules/core/04-channel/types/packet.go @@ -6,9 +6,9 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" - "github.com/cosmos/ibc-go/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) // CommitPacket returns the packet commitment bytes. The commitment consists of: diff --git a/modules/core/04-channel/types/packet_test.go b/modules/core/04-channel/types/packet_test.go index 17163ceeae1..47f8a302852 100644 --- a/modules/core/04-channel/types/packet_test.go +++ b/modules/core/04-channel/types/packet_test.go @@ -7,8 +7,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" codectypes "github.com/cosmos/cosmos-sdk/codec/types" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/core/04-channel/types" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" ) func TestCommitPacket(t *testing.T) { diff --git a/modules/core/04-channel/types/query.go b/modules/core/04-channel/types/query.go index 8bd65fd4dff..ceb4e3661b8 100644 --- a/modules/core/04-channel/types/query.go +++ b/modules/core/04-channel/types/query.go @@ -2,8 +2,8 @@ package types import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/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 281e790ba6b..8f311a2d031 100644 --- a/modules/core/04-channel/types/query.pb.go +++ b/modules/core/04-channel/types/query.pb.go @@ -8,7 +8,7 @@ import ( fmt "fmt" types1 "github.com/cosmos/cosmos-sdk/codec/types" query "github.com/cosmos/cosmos-sdk/types/query" - types "github.com/cosmos/ibc-go/modules/core/02-client/types" + types "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" _ "github.com/gogo/protobuf/gogoproto" grpc1 "github.com/gogo/protobuf/grpc" proto "github.com/gogo/protobuf/proto" diff --git a/modules/core/04-channel/types/tx.pb.go b/modules/core/04-channel/types/tx.pb.go index 00b9bc08691..4fca27c5903 100644 --- a/modules/core/04-channel/types/tx.pb.go +++ b/modules/core/04-channel/types/tx.pb.go @@ -6,7 +6,7 @@ package types import ( context "context" fmt "fmt" - types "github.com/cosmos/ibc-go/modules/core/02-client/types" + types "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" _ "github.com/gogo/protobuf/gogoproto" grpc1 "github.com/gogo/protobuf/grpc" proto "github.com/gogo/protobuf/proto" diff --git a/modules/core/05-port/keeper/grpc_query.go b/modules/core/05-port/keeper/grpc_query.go index a665b0cee75..ebf9f0f4460 100644 --- a/modules/core/05-port/keeper/grpc_query.go +++ b/modules/core/05-port/keeper/grpc_query.go @@ -8,8 +8,8 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "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/core/05-port/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" ) var _ types.QueryServer = (*Keeper)(nil) diff --git a/modules/core/05-port/keeper/grpc_query_test.go b/modules/core/05-port/keeper/grpc_query_test.go index 716727ece68..87e0caccbbb 100644 --- a/modules/core/05-port/keeper/grpc_query_test.go +++ b/modules/core/05-port/keeper/grpc_query_test.go @@ -5,9 +5,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - channeltypes "github.com/cosmos/ibc-go/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/modules/core/05-port/types" - "github.com/cosmos/ibc-go/testing/mock" + channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v2/modules/core/05-port/types" + "github.com/cosmos/ibc-go/v2/testing/mock" ) func (suite *KeeperTestSuite) TestAppVersion() { diff --git a/modules/core/05-port/keeper/keeper.go b/modules/core/05-port/keeper/keeper.go index dd5f17a24fe..d864e60456c 100644 --- a/modules/core/05-port/keeper/keeper.go +++ b/modules/core/05-port/keeper/keeper.go @@ -8,8 +8,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitykeeper "github.com/cosmos/cosmos-sdk/x/capability/keeper" capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" - "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/core/05-port/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" ) // 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 bdca5bef297..1bfc7428f19 100644 --- a/modules/core/05-port/keeper/keeper_test.go +++ b/modules/core/05-port/keeper/keeper_test.go @@ -8,8 +8,8 @@ import ( tmproto "github.com/tendermint/tendermint/proto/tendermint/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/modules/core/05-port/keeper" - "github.com/cosmos/ibc-go/testing/simapp" + "github.com/cosmos/ibc-go/v2/modules/core/05-port/keeper" + "github.com/cosmos/ibc-go/v2/testing/simapp" ) var ( diff --git a/modules/core/05-port/module.go b/modules/core/05-port/module.go index 7dfefb140e2..1609efe5762 100644 --- a/modules/core/05-port/module.go +++ b/modules/core/05-port/module.go @@ -4,8 +4,8 @@ import ( "github.com/gogo/protobuf/grpc" "github.com/spf13/cobra" - "github.com/cosmos/ibc-go/modules/core/05-port/types" - "github.com/cosmos/ibc-go/modules/core/client/cli" + "github.com/cosmos/ibc-go/v2/modules/core/05-port/types" + "github.com/cosmos/ibc-go/v2/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 d80ad851071..8e4bd092f67 100644 --- a/modules/core/05-port/types/module.go +++ b/modules/core/05-port/types/module.go @@ -4,8 +4,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" - channeltypes "github.com/cosmos/ibc-go/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/modules/core/exported" + channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) // IBCModule defines an interface that implements all the callbacks diff --git a/modules/core/05-port/types/query.pb.go b/modules/core/05-port/types/query.pb.go index 5c80d520815..b420a9de058 100644 --- a/modules/core/05-port/types/query.pb.go +++ b/modules/core/05-port/types/query.pb.go @@ -6,7 +6,7 @@ package types import ( context "context" fmt "fmt" - types "github.com/cosmos/ibc-go/modules/core/04-channel/types" + types "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" grpc1 "github.com/gogo/protobuf/grpc" proto "github.com/gogo/protobuf/proto" grpc "google.golang.org/grpc" diff --git a/modules/core/23-commitment/types/codec.go b/modules/core/23-commitment/types/codec.go index a8ebda9b019..5ef95233486 100644 --- a/modules/core/23-commitment/types/codec.go +++ b/modules/core/23-commitment/types/codec.go @@ -2,7 +2,7 @@ package types import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" - "github.com/cosmos/ibc-go/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) // RegisterInterfaces registers the commitment interfaces to protobuf Any. diff --git a/modules/core/23-commitment/types/merkle.go b/modules/core/23-commitment/types/merkle.go index 72b3de47b4f..d9a0f889d7f 100644 --- a/modules/core/23-commitment/types/merkle.go +++ b/modules/core/23-commitment/types/merkle.go @@ -10,7 +10,7 @@ import ( tmcrypto "github.com/tendermint/tendermint/proto/tendermint/crypto" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/cosmos/ibc-go/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) // var representing the proofspecs for a SDK chain diff --git a/modules/core/23-commitment/types/merkle_test.go b/modules/core/23-commitment/types/merkle_test.go index db2d58f860b..28724f11f7f 100644 --- a/modules/core/23-commitment/types/merkle_test.go +++ b/modules/core/23-commitment/types/merkle_test.go @@ -7,7 +7,7 @@ import ( "github.com/stretchr/testify/require" abci "github.com/tendermint/tendermint/abci/types" - "github.com/cosmos/ibc-go/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" ) 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 e06d17050e0..47ef8e99b65 100644 --- a/modules/core/23-commitment/types/utils_test.go +++ b/modules/core/23-commitment/types/utils_test.go @@ -7,7 +7,7 @@ import ( abci "github.com/tendermint/tendermint/abci/types" crypto "github.com/tendermint/tendermint/proto/tendermint/crypto" - "github.com/cosmos/ibc-go/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" ) func (suite *MerkleTestSuite) TestConvertProofs() { diff --git a/modules/core/24-host/keys.go b/modules/core/24-host/keys.go index ec07af5452f..481919ca2b2 100644 --- a/modules/core/24-host/keys.go +++ b/modules/core/24-host/keys.go @@ -3,7 +3,7 @@ package host import ( "fmt" - "github.com/cosmos/ibc-go/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) const ( diff --git a/modules/core/24-host/parse_test.go b/modules/core/24-host/parse_test.go index 1c7244cc3f0..25ff7334d68 100644 --- a/modules/core/24-host/parse_test.go +++ b/modules/core/24-host/parse_test.go @@ -6,8 +6,8 @@ import ( "github.com/stretchr/testify/require" - connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" + connectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" ) func TestParseIdentifier(t *testing.T) { diff --git a/modules/core/ante/ante.go b/modules/core/ante/ante.go index aa579027d7f..3eccfbc058a 100644 --- a/modules/core/ante/ante.go +++ b/modules/core/ante/ante.go @@ -2,9 +2,9 @@ package ante import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - channelkeeper "github.com/cosmos/ibc-go/modules/core/04-channel/keeper" - channeltypes "github.com/cosmos/ibc-go/modules/core/04-channel/types" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + channelkeeper "github.com/cosmos/ibc-go/v2/modules/core/04-channel/keeper" + channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" ) type AnteDecorator struct { diff --git a/modules/core/ante/ante_test.go b/modules/core/ante/ante_test.go index 0b997685285..e12f91082e7 100644 --- a/modules/core/ante/ante_test.go +++ b/modules/core/ante/ante_test.go @@ -4,11 +4,11 @@ import ( "testing" sdk "github.com/cosmos/cosmos-sdk/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/modules/core/ante" - ibctesting "github.com/cosmos/ibc-go/testing" - "github.com/cosmos/ibc-go/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v2/modules/core/ante" + ibctesting "github.com/cosmos/ibc-go/v2/testing" + "github.com/cosmos/ibc-go/v2/testing/mock" "github.com/stretchr/testify/suite" ) diff --git a/modules/core/client/cli/cli.go b/modules/core/client/cli/cli.go index 687806b1c15..2239a29593c 100644 --- a/modules/core/client/cli/cli.go +++ b/modules/core/client/cli/cli.go @@ -4,10 +4,10 @@ import ( "github.com/spf13/cobra" "github.com/cosmos/cosmos-sdk/client" - ibcclient "github.com/cosmos/ibc-go/modules/core/02-client" - connection "github.com/cosmos/ibc-go/modules/core/03-connection" - channel "github.com/cosmos/ibc-go/modules/core/04-channel" - host "github.com/cosmos/ibc-go/modules/core/24-host" + ibcclient "github.com/cosmos/ibc-go/v2/modules/core/02-client" + connection "github.com/cosmos/ibc-go/v2/modules/core/03-connection" + channel "github.com/cosmos/ibc-go/v2/modules/core/04-channel" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" ) // GetTxCmd returns the transaction commands for this module diff --git a/modules/core/client/query.go b/modules/core/client/query.go index 4b954189f11..2ba0faa657d 100644 --- a/modules/core/client/query.go +++ b/modules/core/client/query.go @@ -7,9 +7,9 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/codec" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" ) // QueryTendermintProof performs an ABCI query with the given key and returns diff --git a/modules/core/genesis.go b/modules/core/genesis.go index 71777eff498..c66704108f8 100644 --- a/modules/core/genesis.go +++ b/modules/core/genesis.go @@ -2,11 +2,11 @@ package ibc import ( sdk "github.com/cosmos/cosmos-sdk/types" - client "github.com/cosmos/ibc-go/modules/core/02-client" - connection "github.com/cosmos/ibc-go/modules/core/03-connection" - channel "github.com/cosmos/ibc-go/modules/core/04-channel" - "github.com/cosmos/ibc-go/modules/core/keeper" - "github.com/cosmos/ibc-go/modules/core/types" + client "github.com/cosmos/ibc-go/v2/modules/core/02-client" + connection "github.com/cosmos/ibc-go/v2/modules/core/03-connection" + channel "github.com/cosmos/ibc-go/v2/modules/core/04-channel" + "github.com/cosmos/ibc-go/v2/modules/core/keeper" + "github.com/cosmos/ibc-go/v2/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 5873440dc4b..7a562cffb93 100644 --- a/modules/core/genesis_test.go +++ b/modules/core/genesis_test.go @@ -8,17 +8,17 @@ import ( tmproto "github.com/tendermint/tendermint/proto/tendermint/types" "github.com/cosmos/cosmos-sdk/codec" - ibc "github.com/cosmos/ibc-go/modules/core" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/modules/core/exported" - "github.com/cosmos/ibc-go/modules/core/types" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - localhosttypes "github.com/cosmos/ibc-go/modules/light-clients/09-localhost/types" - ibctesting "github.com/cosmos/ibc-go/testing" - "github.com/cosmos/ibc-go/testing/simapp" + ibc "github.com/cosmos/ibc-go/v2/modules/core" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/core/types" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + localhosttypes "github.com/cosmos/ibc-go/v2/modules/light-clients/09-localhost/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" + "github.com/cosmos/ibc-go/v2/testing/simapp" ) const ( diff --git a/modules/core/keeper/grpc_query.go b/modules/core/keeper/grpc_query.go index 7d5e1336054..dac1e78cd11 100644 --- a/modules/core/keeper/grpc_query.go +++ b/modules/core/keeper/grpc_query.go @@ -3,10 +3,10 @@ package keeper import ( "context" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/modules/core/05-port/types" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/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" ) // ClientState implements the IBC QueryServer interface diff --git a/modules/core/keeper/keeper.go b/modules/core/keeper/keeper.go index b04e6ffe732..51e8bcd79d4 100644 --- a/modules/core/keeper/keeper.go +++ b/modules/core/keeper/keeper.go @@ -5,14 +5,14 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitykeeper "github.com/cosmos/cosmos-sdk/x/capability/keeper" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - clientkeeper "github.com/cosmos/ibc-go/modules/core/02-client/keeper" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - connectionkeeper "github.com/cosmos/ibc-go/modules/core/03-connection/keeper" - connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/types" - channelkeeper "github.com/cosmos/ibc-go/modules/core/04-channel/keeper" - portkeeper "github.com/cosmos/ibc-go/modules/core/05-port/keeper" - porttypes "github.com/cosmos/ibc-go/modules/core/05-port/types" - "github.com/cosmos/ibc-go/modules/core/types" + clientkeeper "github.com/cosmos/ibc-go/v2/modules/core/02-client/keeper" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + connectionkeeper "github.com/cosmos/ibc-go/v2/modules/core/03-connection/keeper" + connectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + channelkeeper "github.com/cosmos/ibc-go/v2/modules/core/04-channel/keeper" + portkeeper "github.com/cosmos/ibc-go/v2/modules/core/05-port/keeper" + porttypes "github.com/cosmos/ibc-go/v2/modules/core/05-port/types" + "github.com/cosmos/ibc-go/v2/modules/core/types" ) var _ types.QueryServer = (*Keeper)(nil) diff --git a/modules/core/keeper/migrations.go b/modules/core/keeper/migrations.go index c6691005bd3..34d8b454c2b 100644 --- a/modules/core/keeper/migrations.go +++ b/modules/core/keeper/migrations.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - clientkeeper "github.com/cosmos/ibc-go/modules/core/02-client/keeper" + clientkeeper "github.com/cosmos/ibc-go/v2/modules/core/02-client/keeper" ) // Migrator is a struct for handling in-place store migrations. diff --git a/modules/core/keeper/msg_server.go b/modules/core/keeper/msg_server.go index 69bde98b687..207a6f17fdc 100644 --- a/modules/core/keeper/msg_server.go +++ b/modules/core/keeper/msg_server.go @@ -8,12 +8,12 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/types" - "github.com/cosmos/ibc-go/modules/core/04-channel/types" - channeltypes "github.com/cosmos/ibc-go/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/modules/core/05-port/types" - coretypes "github.com/cosmos/ibc-go/modules/core/types" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v2/modules/core/04-channel/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" + coretypes "github.com/cosmos/ibc-go/v2/modules/core/types" ) var _ clienttypes.MsgServer = Keeper{} diff --git a/modules/core/keeper/msg_server_test.go b/modules/core/keeper/msg_server_test.go index b28dc263689..97eb44f7cb5 100644 --- a/modules/core/keeper/msg_server_test.go +++ b/modules/core/keeper/msg_server_test.go @@ -7,15 +7,15 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" - "github.com/cosmos/ibc-go/modules/core/exported" - "github.com/cosmos/ibc-go/modules/core/keeper" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - ibctesting "github.com/cosmos/ibc-go/testing" - ibcmock "github.com/cosmos/ibc-go/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/core/keeper" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" + ibcmock "github.com/cosmos/ibc-go/v2/testing/mock" ) const height = 10 diff --git a/modules/core/legacy/v100/genesis.go b/modules/core/legacy/v100/genesis.go index 42932613499..432d4010d82 100644 --- a/modules/core/legacy/v100/genesis.go +++ b/modules/core/legacy/v100/genesis.go @@ -6,11 +6,11 @@ import ( genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types" tmtypes "github.com/tendermint/tendermint/types" - clientv100 "github.com/cosmos/ibc-go/modules/core/02-client/legacy/v100" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" - "github.com/cosmos/ibc-go/modules/core/types" + clientv100 "github.com/cosmos/ibc-go/v2/modules/core/02-client/legacy/v100" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/types" ) // MigrateGenesis accepts exported v1.0.0 IBC client genesis file and migrates it to: diff --git a/modules/core/legacy/v100/genesis_test.go b/modules/core/legacy/v100/genesis_test.go index d4e53d9fba2..24df416d433 100644 --- a/modules/core/legacy/v100/genesis_test.go +++ b/modules/core/legacy/v100/genesis_test.go @@ -9,15 +9,15 @@ import ( "github.com/stretchr/testify/suite" tmtypes "github.com/tendermint/tendermint/types" - ibcclient "github.com/cosmos/ibc-go/modules/core/02-client" - clientv100 "github.com/cosmos/ibc-go/modules/core/02-client/legacy/v100" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" - "github.com/cosmos/ibc-go/modules/core/legacy/v100" - "github.com/cosmos/ibc-go/modules/core/types" - ibctesting "github.com/cosmos/ibc-go/testing" - "github.com/cosmos/ibc-go/testing/simapp" + ibcclient "github.com/cosmos/ibc-go/v2/modules/core/02-client" + clientv100 "github.com/cosmos/ibc-go/v2/modules/core/02-client/legacy/v100" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/legacy/v100" + "github.com/cosmos/ibc-go/v2/modules/core/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" + "github.com/cosmos/ibc-go/v2/testing/simapp" ) type LegacyTestSuite struct { diff --git a/modules/core/module.go b/modules/core/module.go index db7aaba3e33..7893f5d39f3 100644 --- a/modules/core/module.go +++ b/modules/core/module.go @@ -18,16 +18,16 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - ibcclient "github.com/cosmos/ibc-go/modules/core/02-client" - clientkeeper "github.com/cosmos/ibc-go/modules/core/02-client/keeper" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/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/modules/core/client/cli" - "github.com/cosmos/ibc-go/modules/core/keeper" - "github.com/cosmos/ibc-go/modules/core/simulation" - "github.com/cosmos/ibc-go/modules/core/types" + ibcclient "github.com/cosmos/ibc-go/v2/modules/core/02-client" + clientkeeper "github.com/cosmos/ibc-go/v2/modules/core/02-client/keeper" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/client/cli" + "github.com/cosmos/ibc-go/v2/modules/core/keeper" + "github.com/cosmos/ibc-go/v2/modules/core/simulation" + "github.com/cosmos/ibc-go/v2/modules/core/types" ) var ( diff --git a/modules/core/simulation/decoder.go b/modules/core/simulation/decoder.go index d553528e829..ac6a3eb2942 100644 --- a/modules/core/simulation/decoder.go +++ b/modules/core/simulation/decoder.go @@ -4,11 +4,11 @@ import ( "fmt" "github.com/cosmos/cosmos-sdk/types/kv" - clientsim "github.com/cosmos/ibc-go/modules/core/02-client/simulation" - connectionsim "github.com/cosmos/ibc-go/modules/core/03-connection/simulation" - channelsim "github.com/cosmos/ibc-go/modules/core/04-channel/simulation" - host "github.com/cosmos/ibc-go/modules/core/24-host" - "github.com/cosmos/ibc-go/modules/core/keeper" + clientsim "github.com/cosmos/ibc-go/v2/modules/core/02-client/simulation" + connectionsim "github.com/cosmos/ibc-go/v2/modules/core/03-connection/simulation" + channelsim "github.com/cosmos/ibc-go/v2/modules/core/04-channel/simulation" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/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 4a24a05c5e0..0ebe700b0b5 100644 --- a/modules/core/simulation/decoder_test.go +++ b/modules/core/simulation/decoder_test.go @@ -7,13 +7,13 @@ import ( "github.com/stretchr/testify/require" "github.com/cosmos/cosmos-sdk/types/kv" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/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/modules/core/simulation" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - "github.com/cosmos/ibc-go/testing/simapp" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/simulation" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + "github.com/cosmos/ibc-go/v2/testing/simapp" ) func TestDecodeStore(t *testing.T) { diff --git a/modules/core/simulation/genesis.go b/modules/core/simulation/genesis.go index d7f9d7322e4..fcb790f418d 100644 --- a/modules/core/simulation/genesis.go +++ b/modules/core/simulation/genesis.go @@ -8,14 +8,14 @@ import ( "math/rand" "github.com/cosmos/cosmos-sdk/types/module" - clientsims "github.com/cosmos/ibc-go/modules/core/02-client/simulation" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - connectionsims "github.com/cosmos/ibc-go/modules/core/03-connection/simulation" - connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/types" - channelsims "github.com/cosmos/ibc-go/modules/core/04-channel/simulation" - 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/modules/core/types" + clientsims "github.com/cosmos/ibc-go/v2/modules/core/02-client/simulation" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + connectionsims "github.com/cosmos/ibc-go/v2/modules/core/03-connection/simulation" + connectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + channelsims "github.com/cosmos/ibc-go/v2/modules/core/04-channel/simulation" + channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/types" ) // Simulation parameter constants diff --git a/modules/core/simulation/genesis_test.go b/modules/core/simulation/genesis_test.go index de7a9f34a1c..8f2b9f5bafc 100644 --- a/modules/core/simulation/genesis_test.go +++ b/modules/core/simulation/genesis_test.go @@ -11,9 +11,9 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - host "github.com/cosmos/ibc-go/modules/core/24-host" - "github.com/cosmos/ibc-go/modules/core/simulation" - "github.com/cosmos/ibc-go/modules/core/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/simulation" + "github.com/cosmos/ibc-go/v2/modules/core/types" ) // TestRandomizedGenState tests the normal scenario of applying RandomizedGenState. diff --git a/modules/core/types/codec.go b/modules/core/types/codec.go index 83aa034d35b..4c6c6eb0416 100644 --- a/modules/core/types/codec.go +++ b/modules/core/types/codec.go @@ -2,13 +2,13 @@ package types import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - solomachinetypes "github.com/cosmos/ibc-go/modules/light-clients/06-solomachine/types" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - localhosttypes "github.com/cosmos/ibc-go/modules/light-clients/09-localhost/types" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + solomachinetypes "github.com/cosmos/ibc-go/v2/modules/light-clients/06-solomachine/types" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + localhosttypes "github.com/cosmos/ibc-go/v2/modules/light-clients/09-localhost/types" ) // RegisterInterfaces registers x/ibc interfaces into protobuf Any. diff --git a/modules/core/types/genesis.go b/modules/core/types/genesis.go index 4694e75c181..8fada0ae961 100644 --- a/modules/core/types/genesis.go +++ b/modules/core/types/genesis.go @@ -2,9 +2,9 @@ package types import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/modules/core/04-channel/types" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" ) var _ codectypes.UnpackInterfacesMessage = GenesisState{} diff --git a/modules/core/types/genesis.pb.go b/modules/core/types/genesis.pb.go index a2601f850d8..7966953b188 100644 --- a/modules/core/types/genesis.pb.go +++ b/modules/core/types/genesis.pb.go @@ -5,9 +5,9 @@ package types import ( fmt "fmt" - types "github.com/cosmos/ibc-go/modules/core/02-client/types" - types1 "github.com/cosmos/ibc-go/modules/core/03-connection/types" - types2 "github.com/cosmos/ibc-go/modules/core/04-channel/types" + types "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + types1 "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + types2 "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" io "io" diff --git a/modules/core/types/query.go b/modules/core/types/query.go index f7559c8bf56..8bf6c92ad21 100644 --- a/modules/core/types/query.go +++ b/modules/core/types/query.go @@ -3,14 +3,14 @@ package types import ( "github.com/gogo/protobuf/grpc" - client "github.com/cosmos/ibc-go/modules/core/02-client" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - connection "github.com/cosmos/ibc-go/modules/core/03-connection" - connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/types" - channel "github.com/cosmos/ibc-go/modules/core/04-channel" - channeltypes "github.com/cosmos/ibc-go/modules/core/04-channel/types" - port "github.com/cosmos/ibc-go/modules/core/05-port" - porttypes "github.com/cosmos/ibc-go/modules/core/05-port/types" + client "github.com/cosmos/ibc-go/v2/modules/core/02-client" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + connection "github.com/cosmos/ibc-go/v2/modules/core/03-connection" + connectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + channel "github.com/cosmos/ibc-go/v2/modules/core/04-channel" + channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + port "github.com/cosmos/ibc-go/v2/modules/core/05-port" + porttypes "github.com/cosmos/ibc-go/v2/modules/core/05-port/types" ) // QueryServer defines the IBC interfaces that the gRPC query server must implement diff --git a/modules/light-clients/06-solomachine/module.go b/modules/light-clients/06-solomachine/module.go index facdf529047..6dbee1401a5 100644 --- a/modules/light-clients/06-solomachine/module.go +++ b/modules/light-clients/06-solomachine/module.go @@ -1,7 +1,7 @@ package solomachine import ( - "github.com/cosmos/ibc-go/modules/light-clients/06-solomachine/types" + "github.com/cosmos/ibc-go/v2/modules/light-clients/06-solomachine/types" ) // Name returns the solo machine client name. diff --git a/modules/light-clients/06-solomachine/types/client_state.go b/modules/light-clients/06-solomachine/types/client_state.go index b4fcf710cf7..6835f09ce50 100644 --- a/modules/light-clients/06-solomachine/types/client_state.go +++ b/modules/light-clients/06-solomachine/types/client_state.go @@ -10,10 +10,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/cosmos/cosmos-sdk/types/tx/signing" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" - "github.com/cosmos/ibc-go/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) var _ exported.ClientState = (*ClientState)(nil) diff --git a/modules/light-clients/06-solomachine/types/client_state_test.go b/modules/light-clients/06-solomachine/types/client_state_test.go index 34344622648..3d52cf5f488 100644 --- a/modules/light-clients/06-solomachine/types/client_state_test.go +++ b/modules/light-clients/06-solomachine/types/client_state_test.go @@ -1,14 +1,14 @@ package types_test import ( - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/modules/core/exported" - "github.com/cosmos/ibc-go/modules/light-clients/06-solomachine/types" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - ibctesting "github.com/cosmos/ibc-go/testing" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/light-clients/06-solomachine/types" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) const ( diff --git a/modules/light-clients/06-solomachine/types/codec.go b/modules/light-clients/06-solomachine/types/codec.go index 0b6910251d2..740e03e34e6 100644 --- a/modules/light-clients/06-solomachine/types/codec.go +++ b/modules/light-clients/06-solomachine/types/codec.go @@ -5,8 +5,8 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/cosmos/cosmos-sdk/types/tx/signing" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) // RegisterInterfaces register the ibc channel submodule interfaces to protobuf diff --git a/modules/light-clients/06-solomachine/types/codec_test.go b/modules/light-clients/06-solomachine/types/codec_test.go index e635cb8c65f..4a47045dc46 100644 --- a/modules/light-clients/06-solomachine/types/codec_test.go +++ b/modules/light-clients/06-solomachine/types/codec_test.go @@ -1,11 +1,11 @@ package types_test import ( - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/modules/light-clients/06-solomachine/types" - ibctesting "github.com/cosmos/ibc-go/testing" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v2/modules/light-clients/06-solomachine/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) func (suite SoloMachineTestSuite) TestUnmarshalDataByType() { diff --git a/modules/light-clients/06-solomachine/types/consensus_state.go b/modules/light-clients/06-solomachine/types/consensus_state.go index 31aaa084980..a1a24af0281 100644 --- a/modules/light-clients/06-solomachine/types/consensus_state.go +++ b/modules/light-clients/06-solomachine/types/consensus_state.go @@ -5,8 +5,8 @@ import ( cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) var _ exported.ConsensusState = &ConsensusState{} diff --git a/modules/light-clients/06-solomachine/types/consensus_state_test.go b/modules/light-clients/06-solomachine/types/consensus_state_test.go index ff801aa95b8..2a9fd37f581 100644 --- a/modules/light-clients/06-solomachine/types/consensus_state_test.go +++ b/modules/light-clients/06-solomachine/types/consensus_state_test.go @@ -1,9 +1,9 @@ package types_test import ( - "github.com/cosmos/ibc-go/modules/core/exported" - "github.com/cosmos/ibc-go/modules/light-clients/06-solomachine/types" - ibctesting "github.com/cosmos/ibc-go/testing" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/light-clients/06-solomachine/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) func (suite *SoloMachineTestSuite) TestConsensusState() { diff --git a/modules/light-clients/06-solomachine/types/header.go b/modules/light-clients/06-solomachine/types/header.go index 62a1eda15d1..a3c1f7cb79a 100644 --- a/modules/light-clients/06-solomachine/types/header.go +++ b/modules/light-clients/06-solomachine/types/header.go @@ -5,8 +5,8 @@ import ( cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) var _ exported.Header = &Header{} diff --git a/modules/light-clients/06-solomachine/types/header_test.go b/modules/light-clients/06-solomachine/types/header_test.go index c4391caebb0..ea951466f9b 100644 --- a/modules/light-clients/06-solomachine/types/header_test.go +++ b/modules/light-clients/06-solomachine/types/header_test.go @@ -1,9 +1,9 @@ package types_test import ( - "github.com/cosmos/ibc-go/modules/core/exported" - "github.com/cosmos/ibc-go/modules/light-clients/06-solomachine/types" - ibctesting "github.com/cosmos/ibc-go/testing" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/light-clients/06-solomachine/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) func (suite *SoloMachineTestSuite) TestHeaderValidateBasic() { diff --git a/modules/light-clients/06-solomachine/types/misbehaviour.go b/modules/light-clients/06-solomachine/types/misbehaviour.go index 9fea2fb1195..08843f2d37e 100644 --- a/modules/light-clients/06-solomachine/types/misbehaviour.go +++ b/modules/light-clients/06-solomachine/types/misbehaviour.go @@ -4,9 +4,9 @@ import ( "bytes" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" - "github.com/cosmos/ibc-go/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) var _ exported.Misbehaviour = &Misbehaviour{} diff --git a/modules/light-clients/06-solomachine/types/misbehaviour_handle.go b/modules/light-clients/06-solomachine/types/misbehaviour_handle.go index dd0188d3edf..1fef3c9978a 100644 --- a/modules/light-clients/06-solomachine/types/misbehaviour_handle.go +++ b/modules/light-clients/06-solomachine/types/misbehaviour_handle.go @@ -4,8 +4,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) // CheckMisbehaviourAndUpdateState determines whether or not the currently registered diff --git a/modules/light-clients/06-solomachine/types/misbehaviour_handle_test.go b/modules/light-clients/06-solomachine/types/misbehaviour_handle_test.go index b5945656f6c..e370ac392b3 100644 --- a/modules/light-clients/06-solomachine/types/misbehaviour_handle_test.go +++ b/modules/light-clients/06-solomachine/types/misbehaviour_handle_test.go @@ -1,10 +1,10 @@ package types_test import ( - "github.com/cosmos/ibc-go/modules/core/exported" - "github.com/cosmos/ibc-go/modules/light-clients/06-solomachine/types" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - ibctesting "github.com/cosmos/ibc-go/testing" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/light-clients/06-solomachine/types" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) func (suite *SoloMachineTestSuite) TestCheckMisbehaviourAndUpdateState() { diff --git a/modules/light-clients/06-solomachine/types/misbehaviour_test.go b/modules/light-clients/06-solomachine/types/misbehaviour_test.go index 77acd2c2071..2d4f155468f 100644 --- a/modules/light-clients/06-solomachine/types/misbehaviour_test.go +++ b/modules/light-clients/06-solomachine/types/misbehaviour_test.go @@ -1,9 +1,9 @@ package types_test import ( - "github.com/cosmos/ibc-go/modules/core/exported" - "github.com/cosmos/ibc-go/modules/light-clients/06-solomachine/types" - ibctesting "github.com/cosmos/ibc-go/testing" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/light-clients/06-solomachine/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) func (suite *SoloMachineTestSuite) TestMisbehaviour() { diff --git a/modules/light-clients/06-solomachine/types/proof.go b/modules/light-clients/06-solomachine/types/proof.go index 315195fbcd4..396ddd815ea 100644 --- a/modules/light-clients/06-solomachine/types/proof.go +++ b/modules/light-clients/06-solomachine/types/proof.go @@ -6,11 +6,11 @@ import ( "github.com/cosmos/cosmos-sdk/crypto/types/multisig" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/cosmos/cosmos-sdk/types/tx/signing" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) // VerifySignature verifies if the the provided public key generated the signature diff --git a/modules/light-clients/06-solomachine/types/proof_test.go b/modules/light-clients/06-solomachine/types/proof_test.go index 811929f1c5b..5f15ad93555 100644 --- a/modules/light-clients/06-solomachine/types/proof_test.go +++ b/modules/light-clients/06-solomachine/types/proof_test.go @@ -3,9 +3,9 @@ package types_test import ( cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" "github.com/cosmos/cosmos-sdk/types/tx/signing" - "github.com/cosmos/ibc-go/modules/light-clients/06-solomachine/types" - solomachinetypes "github.com/cosmos/ibc-go/modules/light-clients/06-solomachine/types" - ibctesting "github.com/cosmos/ibc-go/testing" + "github.com/cosmos/ibc-go/v2/modules/light-clients/06-solomachine/types" + solomachinetypes "github.com/cosmos/ibc-go/v2/modules/light-clients/06-solomachine/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) func (suite *SoloMachineTestSuite) TestVerifySignature() { diff --git a/modules/light-clients/06-solomachine/types/proposal_handle.go b/modules/light-clients/06-solomachine/types/proposal_handle.go index b4dab1e6b00..057c82ec2bf 100644 --- a/modules/light-clients/06-solomachine/types/proposal_handle.go +++ b/modules/light-clients/06-solomachine/types/proposal_handle.go @@ -6,8 +6,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) // CheckSubstituteAndUpdateState verifies that the subject is allowed to be updated by diff --git a/modules/light-clients/06-solomachine/types/proposal_handle_test.go b/modules/light-clients/06-solomachine/types/proposal_handle_test.go index 822a1c1032f..3956053d5c8 100644 --- a/modules/light-clients/06-solomachine/types/proposal_handle_test.go +++ b/modules/light-clients/06-solomachine/types/proposal_handle_test.go @@ -1,10 +1,10 @@ package types_test import ( - "github.com/cosmos/ibc-go/modules/core/exported" - "github.com/cosmos/ibc-go/modules/light-clients/06-solomachine/types" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - ibctesting "github.com/cosmos/ibc-go/testing" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/light-clients/06-solomachine/types" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) func (suite *SoloMachineTestSuite) TestCheckSubstituteAndUpdateState() { diff --git a/modules/light-clients/06-solomachine/types/solomachine.go b/modules/light-clients/06-solomachine/types/solomachine.go index d80b17b27af..2189a3af690 100644 --- a/modules/light-clients/06-solomachine/types/solomachine.go +++ b/modules/light-clients/06-solomachine/types/solomachine.go @@ -3,7 +3,7 @@ package types import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" - "github.com/cosmos/ibc-go/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) // Interface implementation checks. diff --git a/modules/light-clients/06-solomachine/types/solomachine.pb.go b/modules/light-clients/06-solomachine/types/solomachine.pb.go index aa050302c79..10cb66594f6 100644 --- a/modules/light-clients/06-solomachine/types/solomachine.pb.go +++ b/modules/light-clients/06-solomachine/types/solomachine.pb.go @@ -6,8 +6,8 @@ package types import ( fmt "fmt" types "github.com/cosmos/cosmos-sdk/codec/types" - types1 "github.com/cosmos/ibc-go/modules/core/03-connection/types" - types2 "github.com/cosmos/ibc-go/modules/core/04-channel/types" + types1 "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + types2 "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" io "io" diff --git a/modules/light-clients/06-solomachine/types/solomachine_test.go b/modules/light-clients/06-solomachine/types/solomachine_test.go index b6f7e81817a..5cd9c8aaae6 100644 --- a/modules/light-clients/06-solomachine/types/solomachine_test.go +++ b/modules/light-clients/06-solomachine/types/solomachine_test.go @@ -12,10 +12,10 @@ import ( cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" "github.com/cosmos/cosmos-sdk/testutil/testdata" sdk "github.com/cosmos/cosmos-sdk/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" - "github.com/cosmos/ibc-go/modules/core/exported" - "github.com/cosmos/ibc-go/modules/light-clients/06-solomachine/types" - ibctesting "github.com/cosmos/ibc-go/testing" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/light-clients/06-solomachine/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) type SoloMachineTestSuite struct { diff --git a/modules/light-clients/06-solomachine/types/update.go b/modules/light-clients/06-solomachine/types/update.go index 32d2788c01b..c4209c77143 100644 --- a/modules/light-clients/06-solomachine/types/update.go +++ b/modules/light-clients/06-solomachine/types/update.go @@ -4,8 +4,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) // CheckHeaderAndUpdateState checks if the provided header is valid and updates diff --git a/modules/light-clients/06-solomachine/types/update_test.go b/modules/light-clients/06-solomachine/types/update_test.go index ba605d15941..c07263af262 100644 --- a/modules/light-clients/06-solomachine/types/update_test.go +++ b/modules/light-clients/06-solomachine/types/update_test.go @@ -3,10 +3,10 @@ package types_test import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/modules/core/exported" - "github.com/cosmos/ibc-go/modules/light-clients/06-solomachine/types" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - ibctesting "github.com/cosmos/ibc-go/testing" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/light-clients/06-solomachine/types" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) func (suite *SoloMachineTestSuite) TestCheckHeaderAndUpdateState() { diff --git a/modules/light-clients/07-tendermint/module.go b/modules/light-clients/07-tendermint/module.go index 07a13a7a1a1..fd1feb5ffb2 100644 --- a/modules/light-clients/07-tendermint/module.go +++ b/modules/light-clients/07-tendermint/module.go @@ -1,7 +1,7 @@ package tendermint import ( - "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" + "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" ) // Name returns the IBC client name diff --git a/modules/light-clients/07-tendermint/types/client_state.go b/modules/light-clients/07-tendermint/types/client_state.go index 4faa37963e0..37b7f479233 100644 --- a/modules/light-clients/07-tendermint/types/client_state.go +++ b/modules/light-clients/07-tendermint/types/client_state.go @@ -11,12 +11,12 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" - "github.com/cosmos/ibc-go/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) var _ exported.ClientState = (*ClientState)(nil) @@ -105,7 +105,7 @@ func (cs ClientState) Validate() error { // If this occurs, the code here must account for potential difference // between the tendermint version being run by the counterparty chain // and the tendermint version used by this light client. - // https://github.com/cosmos/ibc-go/issues/177 + // https://github.com/cosmos/ibc-go/v2/issues/177 if len(cs.ChainId) > tmtypes.MaxChainIDLen { return sdkerrors.Wrapf(ErrInvalidChainID, "chainID is too long; got: %d, max: %d", len(cs.ChainId), tmtypes.MaxChainIDLen) } diff --git a/modules/light-clients/07-tendermint/types/client_state_test.go b/modules/light-clients/07-tendermint/types/client_state_test.go index d582af364a4..63ba6bc5896 100644 --- a/modules/light-clients/07-tendermint/types/client_state_test.go +++ b/modules/light-clients/07-tendermint/types/client_state_test.go @@ -5,14 +5,14 @@ import ( ics23 "github.com/confio/ics23/go" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" - "github.com/cosmos/ibc-go/modules/core/exported" - "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - ibctesting "github.com/cosmos/ibc-go/testing" - ibcmock "github.com/cosmos/ibc-go/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" + ibcmock "github.com/cosmos/ibc-go/v2/testing/mock" ) const ( @@ -95,7 +95,7 @@ func (suite *TendermintTestSuite) TestValidate() { { // NOTE: if this test fails, the code must account for the change in chainID length across tendermint versions! // Do not only fix the test, fix the code! - // https://github.com/cosmos/ibc-go/issues/177 + // https://github.com/cosmos/ibc-go/v2/issues/177 name: "valid chainID - chainID validation failed for chainID of length 50! ", clientState: types.NewClientState(fiftyCharChainID, types.DefaultTrustLevel, trustingPeriod, ubdPeriod, maxClockDrift, height, commitmenttypes.GetSDKSpecs(), upgradePath, false, false), expPass: true, @@ -103,7 +103,7 @@ func (suite *TendermintTestSuite) TestValidate() { { // NOTE: if this test fails, the code must account for the change in chainID length across tendermint versions! // Do not only fix the test, fix the code! - // https://github.com/cosmos/ibc-go/issues/177 + // https://github.com/cosmos/ibc-go/v2/issues/177 name: "invalid chainID - chainID validation did not fail for chainID of length 51! ", clientState: types.NewClientState(fiftyOneCharChainID, types.DefaultTrustLevel, trustingPeriod, ubdPeriod, maxClockDrift, height, commitmenttypes.GetSDKSpecs(), upgradePath, false, false), expPass: false, diff --git a/modules/light-clients/07-tendermint/types/codec.go b/modules/light-clients/07-tendermint/types/codec.go index 8b30076c25a..e4af4978fd7 100644 --- a/modules/light-clients/07-tendermint/types/codec.go +++ b/modules/light-clients/07-tendermint/types/codec.go @@ -2,7 +2,7 @@ package types import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" - "github.com/cosmos/ibc-go/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) // RegisterInterfaces registers the tendermint concrete client-related diff --git a/modules/light-clients/07-tendermint/types/consensus_state.go b/modules/light-clients/07-tendermint/types/consensus_state.go index 046d73ce84d..857bfe35c1b 100644 --- a/modules/light-clients/07-tendermint/types/consensus_state.go +++ b/modules/light-clients/07-tendermint/types/consensus_state.go @@ -7,9 +7,9 @@ import ( tmtypes "github.com/tendermint/tendermint/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) // SentinelRoot is used as a stand-in root value for the consensus state set at the upgrade height diff --git a/modules/light-clients/07-tendermint/types/consensus_state_test.go b/modules/light-clients/07-tendermint/types/consensus_state_test.go index b4964ef4060..6b89865345c 100644 --- a/modules/light-clients/07-tendermint/types/consensus_state_test.go +++ b/modules/light-clients/07-tendermint/types/consensus_state_test.go @@ -3,9 +3,9 @@ package types_test import ( "time" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/modules/core/exported" - "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" ) func (suite *TendermintTestSuite) TestConsensusStateValidateBasic() { diff --git a/modules/light-clients/07-tendermint/types/genesis.go b/modules/light-clients/07-tendermint/types/genesis.go index 644296734b4..f91cd370bdd 100644 --- a/modules/light-clients/07-tendermint/types/genesis.go +++ b/modules/light-clients/07-tendermint/types/genesis.go @@ -2,8 +2,8 @@ package types import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) // ExportMetadata exports all the consensus metadata in the client store so they can be included in clients genesis diff --git a/modules/light-clients/07-tendermint/types/genesis_test.go b/modules/light-clients/07-tendermint/types/genesis_test.go index 3a0038c0d47..503e9af3220 100644 --- a/modules/light-clients/07-tendermint/types/genesis_test.go +++ b/modules/light-clients/07-tendermint/types/genesis_test.go @@ -3,9 +3,9 @@ package types_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - ibctesting "github.com/cosmos/ibc-go/testing" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) // expected export ordering: diff --git a/modules/light-clients/07-tendermint/types/header.go b/modules/light-clients/07-tendermint/types/header.go index d3662bb72a8..5f081252cd4 100644 --- a/modules/light-clients/07-tendermint/types/header.go +++ b/modules/light-clients/07-tendermint/types/header.go @@ -7,9 +7,9 @@ import ( tmtypes "github.com/tendermint/tendermint/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) var _ exported.Header = &Header{} diff --git a/modules/light-clients/07-tendermint/types/header_test.go b/modules/light-clients/07-tendermint/types/header_test.go index 37a7082d62a..ba792c2136c 100644 --- a/modules/light-clients/07-tendermint/types/header_test.go +++ b/modules/light-clients/07-tendermint/types/header_test.go @@ -5,9 +5,9 @@ import ( tmprotocrypto "github.com/tendermint/tendermint/proto/tendermint/crypto" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/core/exported" - "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" ) func (suite *TendermintTestSuite) TestGetHeight() { diff --git a/modules/light-clients/07-tendermint/types/misbehaviour.go b/modules/light-clients/07-tendermint/types/misbehaviour.go index 6c82d9afd02..7fc159e1e85 100644 --- a/modules/light-clients/07-tendermint/types/misbehaviour.go +++ b/modules/light-clients/07-tendermint/types/misbehaviour.go @@ -7,9 +7,9 @@ import ( tmtypes "github.com/tendermint/tendermint/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" - "github.com/cosmos/ibc-go/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) var _ exported.Misbehaviour = &Misbehaviour{} diff --git a/modules/light-clients/07-tendermint/types/misbehaviour_handle.go b/modules/light-clients/07-tendermint/types/misbehaviour_handle.go index 286977491f8..2e77f18c55e 100644 --- a/modules/light-clients/07-tendermint/types/misbehaviour_handle.go +++ b/modules/light-clients/07-tendermint/types/misbehaviour_handle.go @@ -9,8 +9,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) // CheckMisbehaviourAndUpdateState determines whether or not two conflicting diff --git a/modules/light-clients/07-tendermint/types/misbehaviour_handle_test.go b/modules/light-clients/07-tendermint/types/misbehaviour_handle_test.go index a257a4b80c7..1dcbaa7a95e 100644 --- a/modules/light-clients/07-tendermint/types/misbehaviour_handle_test.go +++ b/modules/light-clients/07-tendermint/types/misbehaviour_handle_test.go @@ -7,12 +7,12 @@ import ( "github.com/tendermint/tendermint/crypto/tmhash" tmtypes "github.com/tendermint/tendermint/types" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/modules/core/exported" - "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - ibctesting "github.com/cosmos/ibc-go/testing" - ibctestingmock "github.com/cosmos/ibc-go/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" + ibctestingmock "github.com/cosmos/ibc-go/v2/testing/mock" ) func (suite *TendermintTestSuite) TestCheckMisbehaviourAndUpdateState() { diff --git a/modules/light-clients/07-tendermint/types/misbehaviour_test.go b/modules/light-clients/07-tendermint/types/misbehaviour_test.go index d3bb7bc626c..3738fa791b5 100644 --- a/modules/light-clients/07-tendermint/types/misbehaviour_test.go +++ b/modules/light-clients/07-tendermint/types/misbehaviour_test.go @@ -7,11 +7,11 @@ import ( tmproto "github.com/tendermint/tendermint/proto/tendermint/types" tmtypes "github.com/tendermint/tendermint/types" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/core/exported" - "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - ibctesting "github.com/cosmos/ibc-go/testing" - ibctestingmock "github.com/cosmos/ibc-go/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" + ibctestingmock "github.com/cosmos/ibc-go/v2/testing/mock" ) func (suite *TendermintTestSuite) TestMisbehaviour() { diff --git a/modules/light-clients/07-tendermint/types/proposal_handle.go b/modules/light-clients/07-tendermint/types/proposal_handle.go index 6364aa8ff88..0647d1d0592 100644 --- a/modules/light-clients/07-tendermint/types/proposal_handle.go +++ b/modules/light-clients/07-tendermint/types/proposal_handle.go @@ -6,8 +6,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) // CheckSubstituteAndUpdateState will try to update the client with the state of the diff --git a/modules/light-clients/07-tendermint/types/proposal_handle_test.go b/modules/light-clients/07-tendermint/types/proposal_handle_test.go index e4236424bf0..1549f8a5490 100644 --- a/modules/light-clients/07-tendermint/types/proposal_handle_test.go +++ b/modules/light-clients/07-tendermint/types/proposal_handle_test.go @@ -3,10 +3,10 @@ package types_test import ( "time" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/core/exported" - "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - ibctesting "github.com/cosmos/ibc-go/testing" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) var ( diff --git a/modules/light-clients/07-tendermint/types/store.go b/modules/light-clients/07-tendermint/types/store.go index dbb3fede83e..6ee21abfc28 100644 --- a/modules/light-clients/07-tendermint/types/store.go +++ b/modules/light-clients/07-tendermint/types/store.go @@ -9,9 +9,9 @@ import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" - "github.com/cosmos/ibc-go/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) /* diff --git a/modules/light-clients/07-tendermint/types/store_test.go b/modules/light-clients/07-tendermint/types/store_test.go index 9ba7823b3f5..6377b45db8b 100644 --- a/modules/light-clients/07-tendermint/types/store_test.go +++ b/modules/light-clients/07-tendermint/types/store_test.go @@ -4,13 +4,13 @@ import ( "math" "time" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" - "github.com/cosmos/ibc-go/modules/core/exported" - solomachinetypes "github.com/cosmos/ibc-go/modules/light-clients/06-solomachine/types" - "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - ibctesting "github.com/cosmos/ibc-go/testing" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + solomachinetypes "github.com/cosmos/ibc-go/v2/modules/light-clients/06-solomachine/types" + "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) func (suite *TendermintTestSuite) TestGetConsensusState() { diff --git a/modules/light-clients/07-tendermint/types/tendermint.pb.go b/modules/light-clients/07-tendermint/types/tendermint.pb.go index 9a0645a4462..b8327f2873d 100644 --- a/modules/light-clients/07-tendermint/types/tendermint.pb.go +++ b/modules/light-clients/07-tendermint/types/tendermint.pb.go @@ -6,8 +6,8 @@ package types import ( fmt "fmt" _go "github.com/confio/ics23/go" - types "github.com/cosmos/ibc-go/modules/core/02-client/types" - types1 "github.com/cosmos/ibc-go/modules/core/23-commitment/types" + types "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + types1 "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" diff --git a/modules/light-clients/07-tendermint/types/tendermint_test.go b/modules/light-clients/07-tendermint/types/tendermint_test.go index 071f6f6cca1..ffb011b4b23 100644 --- a/modules/light-clients/07-tendermint/types/tendermint_test.go +++ b/modules/light-clients/07-tendermint/types/tendermint_test.go @@ -11,11 +11,11 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - ibctesting "github.com/cosmos/ibc-go/testing" - ibctestingmock "github.com/cosmos/ibc-go/testing/mock" - "github.com/cosmos/ibc-go/testing/simapp" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" + ibctestingmock "github.com/cosmos/ibc-go/v2/testing/mock" + "github.com/cosmos/ibc-go/v2/testing/simapp" ) const ( diff --git a/modules/light-clients/07-tendermint/types/update.go b/modules/light-clients/07-tendermint/types/update.go index c2e6788fed1..4879809f907 100644 --- a/modules/light-clients/07-tendermint/types/update.go +++ b/modules/light-clients/07-tendermint/types/update.go @@ -11,9 +11,9 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) // CheckHeaderAndUpdateState checks if the provided header is valid, and if valid it will: diff --git a/modules/light-clients/07-tendermint/types/update_test.go b/modules/light-clients/07-tendermint/types/update_test.go index db074eee5d2..2893fe95384 100644 --- a/modules/light-clients/07-tendermint/types/update_test.go +++ b/modules/light-clients/07-tendermint/types/update_test.go @@ -6,12 +6,12 @@ import ( tmtypes "github.com/tendermint/tendermint/types" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/modules/core/exported" - types "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - ibctesting "github.com/cosmos/ibc-go/testing" - ibctestingmock "github.com/cosmos/ibc-go/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + types "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" + ibctestingmock "github.com/cosmos/ibc-go/v2/testing/mock" ) func (suite *TendermintTestSuite) TestCheckHeaderAndUpdateState() { diff --git a/modules/light-clients/07-tendermint/types/upgrade.go b/modules/light-clients/07-tendermint/types/upgrade.go index d3801d67882..73cc1360538 100644 --- a/modules/light-clients/07-tendermint/types/upgrade.go +++ b/modules/light-clients/07-tendermint/types/upgrade.go @@ -7,9 +7,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) // VerifyUpgradeAndUpdateState checks if the upgraded client has been committed by the current client diff --git a/modules/light-clients/07-tendermint/types/upgrade_test.go b/modules/light-clients/07-tendermint/types/upgrade_test.go index df974a806c5..9a89e8fafaf 100644 --- a/modules/light-clients/07-tendermint/types/upgrade_test.go +++ b/modules/light-clients/07-tendermint/types/upgrade_test.go @@ -3,11 +3,11 @@ package types_test import ( upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/modules/core/exported" - "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - ibctesting "github.com/cosmos/ibc-go/testing" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) var ( diff --git a/modules/light-clients/09-localhost/module.go b/modules/light-clients/09-localhost/module.go index 6e6fd317183..8bce94927f0 100644 --- a/modules/light-clients/09-localhost/module.go +++ b/modules/light-clients/09-localhost/module.go @@ -1,7 +1,7 @@ package localhost import ( - "github.com/cosmos/ibc-go/modules/light-clients/09-localhost/types" + "github.com/cosmos/ibc-go/v2/modules/light-clients/09-localhost/types" ) // Name returns the IBC client name diff --git a/modules/light-clients/09-localhost/types/client_state.go b/modules/light-clients/09-localhost/types/client_state.go index 4fe00390cc6..499f5f9389c 100644 --- a/modules/light-clients/09-localhost/types/client_state.go +++ b/modules/light-clients/09-localhost/types/client_state.go @@ -11,11 +11,11 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/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/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) var _ exported.ClientState = (*ClientState)(nil) diff --git a/modules/light-clients/09-localhost/types/client_state_test.go b/modules/light-clients/09-localhost/types/client_state_test.go index 46691a52391..0cb1b46e340 100644 --- a/modules/light-clients/09-localhost/types/client_state_test.go +++ b/modules/light-clients/09-localhost/types/client_state_test.go @@ -2,14 +2,14 @@ package types_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" - "github.com/cosmos/ibc-go/modules/core/exported" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - "github.com/cosmos/ibc-go/modules/light-clients/09-localhost/types" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + "github.com/cosmos/ibc-go/v2/modules/light-clients/09-localhost/types" ) const ( diff --git a/modules/light-clients/09-localhost/types/codec.go b/modules/light-clients/09-localhost/types/codec.go index d45e21c4fcf..5291369b28d 100644 --- a/modules/light-clients/09-localhost/types/codec.go +++ b/modules/light-clients/09-localhost/types/codec.go @@ -2,7 +2,7 @@ package types import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" - "github.com/cosmos/ibc-go/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) // RegisterInterfaces register the ibc interfaces submodule implementations to protobuf diff --git a/modules/light-clients/09-localhost/types/localhost.pb.go b/modules/light-clients/09-localhost/types/localhost.pb.go index bad8a41ff6e..54fe2733f7d 100644 --- a/modules/light-clients/09-localhost/types/localhost.pb.go +++ b/modules/light-clients/09-localhost/types/localhost.pb.go @@ -5,7 +5,7 @@ package types import ( fmt "fmt" - types "github.com/cosmos/ibc-go/modules/core/02-client/types" + types "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" io "io" diff --git a/modules/light-clients/09-localhost/types/localhost_test.go b/modules/light-clients/09-localhost/types/localhost_test.go index 4baa8f204a0..e0da290bd80 100644 --- a/modules/light-clients/09-localhost/types/localhost_test.go +++ b/modules/light-clients/09-localhost/types/localhost_test.go @@ -8,9 +8,9 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - "github.com/cosmos/ibc-go/modules/core/exported" - "github.com/cosmos/ibc-go/testing/simapp" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + "github.com/cosmos/ibc-go/v2/testing/simapp" ) const ( diff --git a/testing/README.md b/testing/README.md index 17023bfc2e4..1befdd04ee8 100644 --- a/testing/README.md +++ b/testing/README.md @@ -255,8 +255,8 @@ import ( "github.com/tendermint/tendermint/libs/log" dbm "github.com/tendermint/tm-db" - "github.com/cosmos/ibc-go/modules/apps/transfer/simapp" - ibctesting "github.com/cosmos/ibc-go/testing" + "github.com/cosmos/ibc-go/v2/modules/apps/transfer/simapp" + ibctesting "github.com/cosmos/ibc-go/v2/testing" ) func SetupTransferTestingApp() (ibctesting.TestingApp, map[string]json.RawMessage) { diff --git a/testing/app.go b/testing/app.go index f14178b9d53..6a2bb551e2f 100644 --- a/testing/app.go +++ b/testing/app.go @@ -23,8 +23,8 @@ import ( tmtypes "github.com/tendermint/tendermint/types" dbm "github.com/tendermint/tm-db" - "github.com/cosmos/ibc-go/modules/core/keeper" - "github.com/cosmos/ibc-go/testing/simapp" + "github.com/cosmos/ibc-go/v2/modules/core/keeper" + "github.com/cosmos/ibc-go/v2/testing/simapp" ) var DefaultTestingAppInit func() (TestingApp, map[string]json.RawMessage) = SetupTestingApp diff --git a/testing/chain.go b/testing/chain.go index e9b2a38241a..ac63935b8ef 100644 --- a/testing/chain.go +++ b/testing/chain.go @@ -26,14 +26,14 @@ import ( tmtypes "github.com/tendermint/tendermint/types" tmversion "github.com/tendermint/tendermint/version" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" - "github.com/cosmos/ibc-go/modules/core/exported" - "github.com/cosmos/ibc-go/modules/core/types" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - "github.com/cosmos/ibc-go/testing/mock" - "github.com/cosmos/ibc-go/testing/simapp" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + "github.com/cosmos/ibc-go/v2/modules/core/types" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + "github.com/cosmos/ibc-go/v2/testing/mock" + "github.com/cosmos/ibc-go/v2/testing/simapp" ) // TestChain is a testing struct that wraps a simapp with the last TM Header, the current ABCI diff --git a/testing/chain_test.go b/testing/chain_test.go index 5a30b0c6e80..d77d60dcd18 100644 --- a/testing/chain_test.go +++ b/testing/chain_test.go @@ -6,8 +6,8 @@ import ( "github.com/stretchr/testify/require" tmtypes "github.com/tendermint/tendermint/types" - ibctesting "github.com/cosmos/ibc-go/testing" - "github.com/cosmos/ibc-go/testing/mock" + ibctesting "github.com/cosmos/ibc-go/v2/testing" + "github.com/cosmos/ibc-go/v2/testing/mock" ) func TestCreateSortedSignerArray(t *testing.T) { diff --git a/testing/config.go b/testing/config.go index 7db94150cfb..35e1b608fa6 100644 --- a/testing/config.go +++ b/testing/config.go @@ -3,11 +3,11 @@ package ibctesting import ( "time" - connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/modules/core/exported" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - "github.com/cosmos/ibc-go/testing/mock" + connectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + "github.com/cosmos/ibc-go/v2/testing/mock" ) type ClientConfig interface { diff --git a/testing/endpoint.go b/testing/endpoint.go index bc03c5482e6..73dbc949da5 100644 --- a/testing/endpoint.go +++ b/testing/endpoint.go @@ -6,13 +6,13 @@ import ( // sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" - "github.com/cosmos/ibc-go/modules/core/exported" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" ) // Endpoint is a which represents a channel endpoint and its associated diff --git a/testing/events.go b/testing/events.go index b8eb2822a4d..eae742b5201 100644 --- a/testing/events.go +++ b/testing/events.go @@ -4,9 +4,9 @@ import ( "fmt" sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/modules/core/04-channel/types" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" ) // ParseClientIDFromEvents parses events emitted from a MsgCreateClient and returns the diff --git a/testing/mock/mock.go b/testing/mock/mock.go index 75de08c3d4b..8967f0aceb2 100644 --- a/testing/mock/mock.go +++ b/testing/mock/mock.go @@ -18,10 +18,10 @@ import ( "github.com/spf13/cobra" abci "github.com/tendermint/tendermint/abci/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/modules/core/exported" + 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" + "github.com/cosmos/ibc-go/v2/modules/core/exported" ) const ( diff --git a/testing/mock/privval_test.go b/testing/mock/privval_test.go index b076f544272..2d3c3abb14d 100644 --- a/testing/mock/privval_test.go +++ b/testing/mock/privval_test.go @@ -7,7 +7,7 @@ import ( tmproto "github.com/tendermint/tendermint/proto/tendermint/types" tmtypes "github.com/tendermint/tendermint/types" - "github.com/cosmos/ibc-go/testing/mock" + "github.com/cosmos/ibc-go/v2/testing/mock" ) const chainID = "testChain" diff --git a/testing/path.go b/testing/path.go index 7b6e06731fe..63e1e85da45 100644 --- a/testing/path.go +++ b/testing/path.go @@ -4,7 +4,7 @@ import ( "bytes" "fmt" - channeltypes "github.com/cosmos/ibc-go/modules/core/04-channel/types" + channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" ) // Path contains two endpoints representing two chains connected over IBC diff --git a/testing/sdk_test.go b/testing/sdk_test.go index 4d41e96dac9..71a21e2ede1 100644 --- a/testing/sdk_test.go +++ b/testing/sdk_test.go @@ -22,14 +22,14 @@ import ( authcli "github.com/cosmos/cosmos-sdk/x/auth/client/cli" authrest "github.com/cosmos/cosmos-sdk/x/auth/client/rest" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/cosmos/ibc-go/testing/simapp/params" + "github.com/cosmos/ibc-go/v2/testing/simapp/params" "github.com/spf13/cobra" "github.com/stretchr/testify/suite" tmrand "github.com/tendermint/tendermint/libs/rand" dbm "github.com/tendermint/tm-db" - ibcclientcli "github.com/cosmos/ibc-go/modules/core/02-client/client/cli" - "github.com/cosmos/ibc-go/testing/simapp" + ibcclientcli "github.com/cosmos/ibc-go/v2/modules/core/02-client/client/cli" + "github.com/cosmos/ibc-go/v2/testing/simapp" ) /* diff --git a/testing/simapp/app.go b/testing/simapp/app.go index 230ad71ae24..f16cbc112c3 100644 --- a/testing/simapp/app.go +++ b/testing/simapp/app.go @@ -42,7 +42,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/capability" capabilitykeeper "github.com/cosmos/cosmos-sdk/x/capability/keeper" capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" - simappparams "github.com/cosmos/ibc-go/testing/simapp/params" + simappparams "github.com/cosmos/ibc-go/v2/testing/simapp/params" "github.com/cosmos/cosmos-sdk/x/crisis" crisiskeeper "github.com/cosmos/cosmos-sdk/x/crisis/keeper" @@ -80,17 +80,17 @@ 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" - transfer "github.com/cosmos/ibc-go/modules/apps/transfer" - ibctransferkeeper "github.com/cosmos/ibc-go/modules/apps/transfer/keeper" - ibctransfertypes "github.com/cosmos/ibc-go/modules/apps/transfer/types" - ibc "github.com/cosmos/ibc-go/modules/core" - ibcclient "github.com/cosmos/ibc-go/modules/core/02-client" - ibcclientclient "github.com/cosmos/ibc-go/modules/core/02-client/client" - ibcclienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - porttypes "github.com/cosmos/ibc-go/modules/core/05-port/types" - ibchost "github.com/cosmos/ibc-go/modules/core/24-host" - ibckeeper "github.com/cosmos/ibc-go/modules/core/keeper" - ibcmock "github.com/cosmos/ibc-go/testing/mock" + 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" + ibc "github.com/cosmos/ibc-go/v2/modules/core" + ibcclient "github.com/cosmos/ibc-go/v2/modules/core/02-client" + ibcclientclient "github.com/cosmos/ibc-go/v2/modules/core/02-client/client" + ibcclienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + porttypes "github.com/cosmos/ibc-go/v2/modules/core/05-port/types" + ibchost "github.com/cosmos/ibc-go/v2/modules/core/24-host" + 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" diff --git a/testing/simapp/encoding.go b/testing/simapp/encoding.go index d94d5a8de76..90206105383 100644 --- a/testing/simapp/encoding.go +++ b/testing/simapp/encoding.go @@ -2,7 +2,7 @@ package simapp import ( "github.com/cosmos/cosmos-sdk/std" - simappparams "github.com/cosmos/ibc-go/testing/simapp/params" + simappparams "github.com/cosmos/ibc-go/v2/testing/simapp/params" ) // MakeTestEncodingConfig creates an EncodingConfig for testing. This function diff --git a/testing/simapp/genesis_account_test.go b/testing/simapp/genesis_account_test.go index a9d65ad7cb8..8f41703e4a4 100644 --- a/testing/simapp/genesis_account_test.go +++ b/testing/simapp/genesis_account_test.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/cosmos/ibc-go/testing/simapp" + "github.com/cosmos/ibc-go/v2/testing/simapp" "github.com/stretchr/testify/require" "github.com/tendermint/tendermint/crypto" diff --git a/testing/simapp/sim_bench_test.go b/testing/simapp/sim_bench_test.go index 3a422ecb8b3..7ea54e7b854 100644 --- a/testing/simapp/sim_bench_test.go +++ b/testing/simapp/sim_bench_test.go @@ -12,7 +12,7 @@ import ( ) // Profile with: -// /usr/local/go/bin/go test -benchmem -run=^$ github.com/cosmos/ibc-go/testing/simapp -bench ^BenchmarkFullAppSimulation$ -Commit=true -cpuprofile cpu.out +// /usr/local/go/bin/go test -benchmem -run=^$ github.com/cosmos/ibc-go/v2/testing/simapp -bench ^BenchmarkFullAppSimulation$ -Commit=true -cpuprofile cpu.out func BenchmarkFullAppSimulation(b *testing.B) { b.ReportAllocs() config, db, dir, logger, _, err := SetupSimulation("goleveldb-app-sim", "Simulation") diff --git a/testing/simapp/sim_test.go b/testing/simapp/sim_test.go index f37dffad742..7812dd470c6 100644 --- a/testing/simapp/sim_test.go +++ b/testing/simapp/sim_test.go @@ -29,9 +29,9 @@ import ( "github.com/cosmos/cosmos-sdk/x/simulation" slashingtypes "github.com/cosmos/cosmos-sdk/x/slashing/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - ibctransfertypes "github.com/cosmos/ibc-go/modules/apps/transfer/types" - ibchost "github.com/cosmos/ibc-go/modules/core/24-host" - "github.com/cosmos/ibc-go/testing/simapp/helpers" + ibctransfertypes "github.com/cosmos/ibc-go/v2/modules/apps/transfer/types" + ibchost "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/testing/simapp/helpers" ) // Get flags every time the simulator is run diff --git a/testing/simapp/simd/cmd/cmd_test.go b/testing/simapp/simd/cmd/cmd_test.go index 1ae137a62c7..3db9177380b 100644 --- a/testing/simapp/simd/cmd/cmd_test.go +++ b/testing/simapp/simd/cmd/cmd_test.go @@ -8,8 +8,8 @@ import ( svrcmd "github.com/cosmos/cosmos-sdk/server/cmd" "github.com/cosmos/cosmos-sdk/x/genutil/client/cli" - "github.com/cosmos/ibc-go/testing/simapp" - "github.com/cosmos/ibc-go/testing/simapp/simd/cmd" + "github.com/cosmos/ibc-go/v2/testing/simapp" + "github.com/cosmos/ibc-go/v2/testing/simapp/simd/cmd" ) func TestInitCmd(t *testing.T) { diff --git a/testing/simapp/simd/cmd/genaccounts_test.go b/testing/simapp/simd/cmd/genaccounts_test.go index cba1016b875..c63fb4baaef 100644 --- a/testing/simapp/simd/cmd/genaccounts_test.go +++ b/testing/simapp/simd/cmd/genaccounts_test.go @@ -16,8 +16,8 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" "github.com/cosmos/cosmos-sdk/x/genutil" genutiltest "github.com/cosmos/cosmos-sdk/x/genutil/client/testutil" - "github.com/cosmos/ibc-go/testing/simapp" - simcmd "github.com/cosmos/ibc-go/testing/simapp/simd/cmd" + "github.com/cosmos/ibc-go/v2/testing/simapp" + simcmd "github.com/cosmos/ibc-go/v2/testing/simapp/simd/cmd" ) var testMbm = module.NewBasicManager(genutil.AppModuleBasic{}) diff --git a/testing/simapp/simd/cmd/root.go b/testing/simapp/simd/cmd/root.go index b8b1f5a560d..f7541f713d7 100644 --- a/testing/simapp/simd/cmd/root.go +++ b/testing/simapp/simd/cmd/root.go @@ -30,8 +30,8 @@ import ( "github.com/tendermint/tendermint/libs/log" dbm "github.com/tendermint/tm-db" - "github.com/cosmos/ibc-go/testing/simapp" - "github.com/cosmos/ibc-go/testing/simapp/params" + "github.com/cosmos/ibc-go/v2/testing/simapp" + "github.com/cosmos/ibc-go/v2/testing/simapp/params" ) // NewRootCmd creates a new root command for simd. It is called once in the diff --git a/testing/simapp/simd/main.go b/testing/simapp/simd/main.go index a389f795fa5..80b0b50f774 100644 --- a/testing/simapp/simd/main.go +++ b/testing/simapp/simd/main.go @@ -5,8 +5,8 @@ import ( "github.com/cosmos/cosmos-sdk/server" svrcmd "github.com/cosmos/cosmos-sdk/server/cmd" - "github.com/cosmos/ibc-go/testing/simapp" - "github.com/cosmos/ibc-go/testing/simapp/simd/cmd" + "github.com/cosmos/ibc-go/v2/testing/simapp" + "github.com/cosmos/ibc-go/v2/testing/simapp/simd/cmd" ) func main() { diff --git a/testing/simapp/state.go b/testing/simapp/state.go index ebf1d301069..7dea332368a 100644 --- a/testing/simapp/state.go +++ b/testing/simapp/state.go @@ -19,7 +19,7 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - simappparams "github.com/cosmos/ibc-go/testing/simapp/params" + simappparams "github.com/cosmos/ibc-go/v2/testing/simapp/params" ) // AppStateFn returns the initial application state using a genesis or the simulation parameters. diff --git a/testing/simapp/test_helpers.go b/testing/simapp/test_helpers.go index 8d92dbdeb5b..0773465501c 100644 --- a/testing/simapp/test_helpers.go +++ b/testing/simapp/test_helpers.go @@ -25,7 +25,7 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" minttypes "github.com/cosmos/cosmos-sdk/x/mint/types" - "github.com/cosmos/ibc-go/testing/simapp/helpers" + "github.com/cosmos/ibc-go/v2/testing/simapp/helpers" ) // DefaultConsensusParams defines the default Tendermint consensus params used in diff --git a/testing/simapp/utils.go b/testing/simapp/utils.go index 8ee1a1f729e..7bfb087c9ff 100644 --- a/testing/simapp/utils.go +++ b/testing/simapp/utils.go @@ -13,7 +13,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/kv" "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/cosmos/ibc-go/testing/simapp/helpers" + "github.com/cosmos/ibc-go/v2/testing/simapp/helpers" ) // SetupSimulation creates the config, db (levelDB), temporary directory and logger for diff --git a/testing/solomachine.go b/testing/solomachine.go index 75d4b58b5ad..048ac4c8c33 100644 --- a/testing/solomachine.go +++ b/testing/solomachine.go @@ -12,11 +12,11 @@ import ( cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" "github.com/cosmos/cosmos-sdk/crypto/types/multisig" "github.com/cosmos/cosmos-sdk/types/tx/signing" - clienttypes "github.com/cosmos/ibc-go/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/modules/core/24-host" - "github.com/cosmos/ibc-go/modules/core/exported" - solomachinetypes "github.com/cosmos/ibc-go/modules/light-clients/06-solomachine/types" + clienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v2/modules/core/24-host" + "github.com/cosmos/ibc-go/v2/modules/core/exported" + solomachinetypes "github.com/cosmos/ibc-go/v2/modules/light-clients/06-solomachine/types" ) // Solomachine is a testing helper used to simulate a counterparty diff --git a/testing/values.go b/testing/values.go index 7a66b683826..9994040423e 100644 --- a/testing/values.go +++ b/testing/values.go @@ -10,12 +10,12 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - ibctransfertypes "github.com/cosmos/ibc-go/modules/apps/transfer/types" - connectiontypes "github.com/cosmos/ibc-go/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/modules/core/23-commitment/types" - ibctmtypes "github.com/cosmos/ibc-go/modules/light-clients/07-tendermint/types" - "github.com/cosmos/ibc-go/testing/mock" + ibctransfertypes "github.com/cosmos/ibc-go/v2/modules/apps/transfer/types" + connectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types" + ibctmtypes "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types" + "github.com/cosmos/ibc-go/v2/testing/mock" ) const ( From bddbc185d16b743aefff4996266d6a76a1a5a1f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Colin=20Axn=C3=A9r?= <25233464+colin-axner@users.noreply.github.com> Date: Mon, 13 Sep 2021 16:35:35 +0200 Subject: [PATCH 2/4] fix proto file generation --- modules/apps/transfer/types/genesis.pb.go | 12 +- modules/apps/transfer/types/packet.pb.go | 30 +-- modules/apps/transfer/types/query.pb.go | 70 +++---- modules/apps/transfer/types/transfer.pb.go | 40 ++-- modules/apps/transfer/types/tx.pb.go | 64 +++--- .../02-client/legacy/v100/solomachine.pb.go | 174 ++++++++-------- modules/core/02-client/types/client.pb.go | 90 ++++----- modules/core/02-client/types/genesis.pb.go | 66 +++--- modules/core/02-client/types/query.pb.go | 122 +++++------ modules/core/02-client/types/tx.pb.go | 78 ++++---- .../core/03-connection/types/connection.pb.go | 92 ++++----- .../core/03-connection/types/genesis.pb.go | 47 ++--- modules/core/03-connection/types/query.pb.go | 114 +++++------ modules/core/03-connection/types/tx.pb.go | 118 +++++------ modules/core/04-channel/types/channel.pb.go | 116 +++++------ modules/core/04-channel/types/genesis.pb.go | 66 +++--- modules/core/04-channel/types/query.pb.go | 189 +++++++++--------- modules/core/04-channel/types/tx.pb.go | 138 ++++++------- modules/core/05-port/types/query.pb.go | 50 ++--- .../core/23-commitment/types/commitment.pb.go | 42 ++-- modules/core/types/genesis.pb.go | 44 ++-- .../06-solomachine/types/solomachine.pb.go | 14 +- .../07-tendermint/types/tendermint.pb.go | 134 ++++++------- .../09-localhost/types/localhost.pb.go | 12 +- .../applications/transfer/v1/genesis.proto | 2 +- .../ibc/applications/transfer/v1/query.proto | 2 +- .../applications/transfer/v1/transfer.proto | 2 +- proto/ibc/applications/transfer/v1/tx.proto | 2 +- .../ibc/applications/transfer/v2/packet.proto | 2 +- proto/ibc/core/channel/v1/channel.proto | 2 +- proto/ibc/core/channel/v1/genesis.proto | 2 +- proto/ibc/core/channel/v1/query.proto | 2 +- proto/ibc/core/channel/v1/tx.proto | 2 +- proto/ibc/core/client/v1/client.proto | 2 +- proto/ibc/core/client/v1/genesis.proto | 2 +- proto/ibc/core/client/v1/query.proto | 2 +- proto/ibc/core/client/v1/tx.proto | 2 +- proto/ibc/core/commitment/v1/commitment.proto | 2 +- proto/ibc/core/connection/v1/connection.proto | 2 +- proto/ibc/core/connection/v1/genesis.proto | 2 +- proto/ibc/core/connection/v1/query.proto | 2 +- proto/ibc/core/connection/v1/tx.proto | 2 +- proto/ibc/core/port/v1/query.proto | 2 +- proto/ibc/core/types/v1/genesis.proto | 2 +- .../lightclients/localhost/v1/localhost.proto | 2 +- .../solomachine/v1/solomachine.proto | 2 +- .../solomachine/v2/solomachine.proto | 2 +- .../tendermint/v1/tendermint.proto | 2 +- scripts/protocgen.sh | 2 +- 49 files changed, 987 insertions(+), 985 deletions(-) diff --git a/modules/apps/transfer/types/genesis.pb.go b/modules/apps/transfer/types/genesis.pb.go index 94eb0108c5d..81d7b9fe1bd 100644 --- a/modules/apps/transfer/types/genesis.pb.go +++ b/modules/apps/transfer/types/genesis.pb.go @@ -93,10 +93,10 @@ func init() { } var fileDescriptor_a4f788affd5bea89 = []byte{ - // 323 bytes of a gzipped FileDescriptorProto + // 325 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x90, 0xc1, 0x4a, 0xf3, 0x40, 0x14, 0x85, 0x33, 0x7f, 0x7f, 0x22, 0xa6, 0xc5, 0x45, 0x74, 0x51, 0x8a, 0x24, 0x25, 0x28, 0x04, - 0x8b, 0x33, 0xb4, 0xba, 0x72, 0x19, 0x04, 0x71, 0x23, 0x52, 0x5d, 0xb9, 0x29, 0x93, 0xc9, 0x18, + 0x8b, 0x33, 0xb4, 0x2e, 0x04, 0x97, 0x41, 0x10, 0x77, 0x5a, 0x5d, 0xb9, 0x29, 0x93, 0xc9, 0x18, 0x07, 0x9a, 0xdc, 0x30, 0x77, 0x5a, 0xe8, 0x5b, 0xf8, 0x1c, 0x3e, 0x49, 0x97, 0x5d, 0xba, 0xaa, 0xd2, 0xbe, 0x41, 0x7d, 0x01, 0x49, 0x5a, 0x4b, 0x57, 0xdd, 0x1d, 0x66, 0xbe, 0x73, 0xce, 0xe5, 0x38, 0x17, 0x2a, 0x16, 0x8c, 0x17, 0xc5, 0x50, 0x09, 0x6e, 0x14, 0xe4, 0xc8, 0x8c, 0xe6, 0x39, @@ -109,12 +109,12 @@ var fileDescriptor_a4f788affd5bea89 = []byte{ 0x0b, 0xeb, 0xbd, 0x90, 0xee, 0xbb, 0x9a, 0xde, 0x96, 0x8e, 0xe7, 0xd2, 0x10, 0x9d, 0x4f, 0xe7, 0xbe, 0xb5, 0x9a, 0xfb, 0xc7, 0xeb, 0xfc, 0xdd, 0xac, 0xe0, 0xe3, 0xcb, 0xb7, 0x2b, 0x0a, 0xfb, 0xf5, 0x64, 0x6b, 0x41, 0x37, 0x72, 0xec, 0x82, 0x6b, 0x9e, 0x61, 0xb3, 0xd6, 0x26, 0x61, 0xbd, - 0x77, 0xb6, 0xbf, 0xed, 0xb1, 0x62, 0xa3, 0xff, 0x65, 0x53, 0x7f, 0xe3, 0x8c, 0x1e, 0xa6, 0x0b, + 0x77, 0xb6, 0xbf, 0xed, 0xa1, 0x62, 0xa3, 0xff, 0x65, 0x53, 0x7f, 0xe3, 0x8c, 0x1e, 0xa7, 0x0b, 0x8f, 0xcc, 0x16, 0x1e, 0xf9, 0x5e, 0x78, 0xe4, 0x7d, 0xe9, 0x59, 0xb3, 0xa5, 0x67, 0x7d, 0x2e, 0x3d, 0xeb, 0xe5, 0x3a, 0x55, 0xe6, 0x6d, 0x14, 0x53, 0x01, 0x19, 0x13, 0x80, 0x19, 0x20, 0x53, - 0xb1, 0xb8, 0x4c, 0x81, 0x65, 0x90, 0x8c, 0x86, 0x12, 0xcb, 0xbd, 0x77, 0x76, 0x36, 0x93, 0x42, - 0x62, 0x6c, 0x57, 0x63, 0x5e, 0xfd, 0x06, 0x00, 0x00, 0xff, 0xff, 0xb1, 0x5d, 0xce, 0xa9, 0xdb, - 0x01, 0x00, 0x00, + 0xb1, 0xb8, 0x4c, 0x81, 0x8d, 0x7b, 0x2c, 0x83, 0x64, 0x34, 0x94, 0x58, 0x4e, 0xbe, 0x33, 0xb5, + 0x99, 0x14, 0x12, 0x63, 0xbb, 0xda, 0xf3, 0xea, 0x37, 0x00, 0x00, 0xff, 0xff, 0x56, 0x0c, 0x81, + 0x27, 0xde, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/modules/apps/transfer/types/packet.pb.go b/modules/apps/transfer/types/packet.pb.go index 486545b551f..a814dc2faf1 100644 --- a/modules/apps/transfer/types/packet.pb.go +++ b/modules/apps/transfer/types/packet.pb.go @@ -106,22 +106,22 @@ func init() { } var fileDescriptor_653ca2ce9a5ca313 = []byte{ - // 239 bytes of a gzipped FileDescriptorProto + // 240 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x4c, 0x8f, 0xbf, 0x4a, 0xc5, 0x30, - 0x14, 0x87, 0x1b, 0xff, 0x5c, 0x34, 0x63, 0x11, 0x2d, 0x22, 0x41, 0x9c, 0x74, 0x30, 0x81, 0xab, - 0x4f, 0x20, 0xe2, 0x28, 0x22, 0x4e, 0x6e, 0x49, 0x7a, 0xac, 0xe1, 0x36, 0x39, 0x21, 0x49, 0x0b, - 0xe2, 0x4b, 0xf8, 0x58, 0x8e, 0x77, 0x74, 0x94, 0xf6, 0x45, 0xe4, 0xa6, 0x2a, 0x1d, 0xbf, 0xef, - 0xfc, 0xce, 0xf0, 0xd1, 0x0b, 0xa3, 0xb4, 0x90, 0xde, 0xb7, 0x46, 0xcb, 0x64, 0xd0, 0x45, 0x91, - 0x82, 0x74, 0xf1, 0x05, 0x82, 0xe8, 0x97, 0xc2, 0x4b, 0xbd, 0x82, 0xc4, 0x7d, 0xc0, 0x84, 0xe5, - 0x89, 0x51, 0x9a, 0xcf, 0xa7, 0xfc, 0x6f, 0xca, 0xfb, 0xe5, 0xd9, 0x3b, 0x3d, 0xba, 0xeb, 0x5c, - 0x63, 0x54, 0x0b, 0x4f, 0xb8, 0x02, 0xf7, 0x90, 0x5f, 0x6f, 0x65, 0x92, 0xe5, 0x01, 0xdd, 0xad, - 0xc1, 0xa1, 0xad, 0xc8, 0x29, 0x39, 0xdf, 0x7f, 0x9c, 0xa0, 0x3c, 0xa4, 0x0b, 0x69, 0xb1, 0x73, - 0xa9, 0xda, 0xca, 0xfa, 0x97, 0x36, 0x3e, 0x82, 0xab, 0x21, 0x54, 0xdb, 0x93, 0x9f, 0xa8, 0x3c, - 0xa6, 0x7b, 0x01, 0x34, 0x98, 0x1e, 0x42, 0xb5, 0x93, 0x2f, 0xff, 0x7c, 0x73, 0xff, 0x39, 0x30, - 0xb2, 0x1e, 0x18, 0xf9, 0x1e, 0x18, 0xf9, 0x18, 0x59, 0xb1, 0x1e, 0x59, 0xf1, 0x35, 0xb2, 0xe2, - 0xf9, 0xba, 0x31, 0xe9, 0xb5, 0x53, 0x5c, 0xa3, 0x15, 0x1a, 0xa3, 0xc5, 0x28, 0x8c, 0xd2, 0x97, - 0x0d, 0x0a, 0x8b, 0x75, 0xd7, 0x42, 0xdc, 0xc4, 0xcf, 0xa2, 0xd3, 0x9b, 0x87, 0xa8, 0x16, 0xb9, - 0xf8, 0xea, 0x27, 0x00, 0x00, 0xff, 0xff, 0x1f, 0x65, 0xe9, 0x98, 0x1e, 0x01, 0x00, 0x00, + 0x14, 0x87, 0x1b, 0xff, 0x5c, 0x34, 0x63, 0x11, 0x2d, 0x22, 0x41, 0x9c, 0x74, 0x30, 0x81, 0xeb, + 0xe0, 0x2e, 0xe2, 0xac, 0xe2, 0xe4, 0x96, 0xa4, 0xc7, 0x1a, 0x6e, 0x93, 0x13, 0x92, 0xb4, 0x20, + 0xbe, 0x84, 0x8f, 0xe5, 0x78, 0x47, 0x47, 0x69, 0x5f, 0x44, 0x9a, 0xaa, 0xdc, 0xf1, 0xfb, 0xce, + 0xef, 0x0c, 0x1f, 0xbd, 0x30, 0x4a, 0x0b, 0xe9, 0x7d, 0x6b, 0xb4, 0x4c, 0x06, 0x5d, 0x14, 0x29, + 0x48, 0x17, 0x5f, 0x20, 0x88, 0x7e, 0x29, 0xbc, 0xd4, 0x2b, 0x48, 0xdc, 0x07, 0x4c, 0x58, 0x9e, + 0x18, 0xa5, 0xf9, 0xe6, 0x94, 0xff, 0x4d, 0x79, 0xbf, 0x3c, 0x7b, 0xa7, 0x47, 0x77, 0x9d, 0x6b, + 0x8c, 0x6a, 0xe1, 0x09, 0x57, 0xe0, 0xee, 0xf3, 0xeb, 0xad, 0x4c, 0xb2, 0x3c, 0xa0, 0xbb, 0x35, + 0x38, 0xb4, 0x15, 0x39, 0x25, 0xe7, 0xfb, 0x8f, 0x33, 0x94, 0x87, 0x74, 0x21, 0x2d, 0x76, 0x2e, + 0x55, 0x5b, 0x59, 0xff, 0xd2, 0xe4, 0x23, 0xb8, 0x1a, 0x42, 0xb5, 0x3d, 0xfb, 0x99, 0xca, 0x63, + 0xba, 0x17, 0x40, 0x83, 0xe9, 0x21, 0x54, 0x3b, 0xf9, 0xf2, 0xcf, 0x37, 0x0f, 0x9f, 0x03, 0x23, + 0xeb, 0x81, 0x91, 0xef, 0x81, 0x91, 0x8f, 0x91, 0x15, 0xeb, 0x91, 0x15, 0x5f, 0x23, 0x2b, 0x9e, + 0xaf, 0x1b, 0x93, 0x5e, 0x3b, 0xc5, 0x35, 0x5a, 0xa1, 0x31, 0x5a, 0x8c, 0xc2, 0x28, 0x7d, 0xd9, + 0xe0, 0x94, 0x67, 0xb1, 0xee, 0x5a, 0x88, 0x53, 0xff, 0x46, 0x77, 0x7a, 0xf3, 0x10, 0xd5, 0x22, + 0x47, 0x5f, 0xfd, 0x04, 0x00, 0x00, 0xff, 0xff, 0x9d, 0x75, 0xf2, 0x46, 0x21, 0x01, 0x00, 0x00, } func (m *FungibleTokenPacketData) Marshal() (dAtA []byte, err error) { diff --git a/modules/apps/transfer/types/query.pb.go b/modules/apps/transfer/types/query.pb.go index 082172d2c1e..e6d575c1e49 100644 --- a/modules/apps/transfer/types/query.pb.go +++ b/modules/apps/transfer/types/query.pb.go @@ -324,41 +324,41 @@ func init() { } var fileDescriptor_a638e2800a01538c = []byte{ - // 529 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x54, 0x4f, 0x8b, 0xd3, 0x40, - 0x14, 0xef, 0xec, 0x6a, 0xc1, 0x57, 0xf1, 0x30, 0x2e, 0x5a, 0x42, 0xc9, 0x2e, 0xa1, 0x68, 0xdd, - 0xd5, 0x19, 0xb3, 0xae, 0x9e, 0x3c, 0x2d, 0xa2, 0x78, 0x91, 0xb5, 0x7a, 0xd2, 0x83, 0x4c, 0xd2, - 0x31, 0x0d, 0x34, 0x99, 0x6c, 0x26, 0x2d, 0x2c, 0xe2, 0xc5, 0x4f, 0x20, 0xec, 0x97, 0x10, 0xf1, - 0x43, 0x78, 0xdc, 0xe3, 0x82, 0x17, 0x4f, 0x2a, 0xad, 0xdf, 0xc1, 0xab, 0x64, 0x66, 0xb2, 0x4d, - 0xec, 0xd2, 0x9a, 0xdb, 0xf0, 0xf2, 0x7e, 0xef, 0xf7, 0xe7, 0x3d, 0x02, 0xbd, 0xd0, 0xf3, 0x29, - 0x4b, 0x92, 0x51, 0xe8, 0xb3, 0x2c, 0x14, 0xb1, 0xa4, 0x59, 0xca, 0x62, 0xf9, 0x96, 0xa7, 0x74, - 0xe2, 0xd2, 0xc3, 0x31, 0x4f, 0x8f, 0x48, 0x92, 0x8a, 0x4c, 0xe0, 0x4e, 0xe8, 0xf9, 0xa4, 0xdc, - 0x49, 0x8a, 0x4e, 0x32, 0x71, 0xad, 0x8d, 0x40, 0x04, 0x42, 0x35, 0xd2, 0xfc, 0xa5, 0x31, 0xd6, - 0xb6, 0x2f, 0x64, 0x24, 0x24, 0xf5, 0x98, 0xe4, 0x7a, 0x18, 0x9d, 0xb8, 0x1e, 0xcf, 0x98, 0x4b, - 0x13, 0x16, 0x84, 0xb1, 0x1a, 0x64, 0x7a, 0x77, 0x96, 0x2a, 0x39, 0xe3, 0xd2, 0xcd, 0x9d, 0x40, - 0x88, 0x60, 0xc4, 0x29, 0x4b, 0x42, 0xca, 0xe2, 0x58, 0x64, 0x46, 0x92, 0xfa, 0xea, 0xdc, 0x86, - 0x6b, 0xcf, 0x73, 0xb2, 0x47, 0x3c, 0x16, 0xd1, 0xcb, 0x94, 0xf9, 0xbc, 0xcf, 0x0f, 0xc7, 0x5c, - 0x66, 0x18, 0xc3, 0x85, 0x21, 0x93, 0xc3, 0x36, 0xda, 0x42, 0xbd, 0x4b, 0x7d, 0xf5, 0x76, 0x06, - 0x70, 0x7d, 0xa1, 0x5b, 0x26, 0x22, 0x96, 0x1c, 0x3f, 0x85, 0xd6, 0x20, 0xaf, 0xbe, 0xc9, 0xf2, - 0xb2, 0x42, 0xb5, 0x76, 0x7b, 0x64, 0x59, 0x12, 0xa4, 0x34, 0x06, 0x06, 0x67, 0x6f, 0x87, 0x2d, - 0xb0, 0xc8, 0x42, 0xd4, 0x63, 0x80, 0x79, 0x1a, 0x86, 0xe4, 0x06, 0xd1, 0xd1, 0x91, 0x3c, 0x3a, - 0xa2, 0xf7, 0x60, 0xa2, 0x23, 0x07, 0x2c, 0x28, 0x0c, 0xf5, 0x4b, 0x48, 0xe7, 0x2b, 0x82, 0xf6, - 0x22, 0x87, 0xb1, 0xf2, 0x1a, 0x2e, 0x97, 0xac, 0xc8, 0x36, 0xda, 0x5a, 0xaf, 0xe3, 0x65, 0xff, - 0xca, 0xc9, 0x8f, 0xcd, 0xc6, 0xe7, 0x9f, 0x9b, 0x4d, 0x33, 0xb7, 0x35, 0xf7, 0x26, 0xf1, 0x93, - 0x8a, 0x83, 0x35, 0xe5, 0xe0, 0xe6, 0x4a, 0x07, 0x5a, 0x59, 0xc5, 0xc2, 0x06, 0x60, 0xe5, 0xe0, - 0x80, 0xa5, 0x2c, 0x2a, 0x02, 0x72, 0x5e, 0xc0, 0xd5, 0x4a, 0xd5, 0x58, 0x7a, 0x08, 0xcd, 0x44, - 0x55, 0x4c, 0x66, 0xdd, 0xe5, 0x66, 0x0c, 0xda, 0x60, 0x76, 0xff, 0xac, 0xc3, 0x45, 0x35, 0x15, - 0x7f, 0x41, 0x00, 0x73, 0xa7, 0x78, 0x6f, 0xf9, 0x98, 0xf3, 0x2f, 0xcb, 0xba, 0x5f, 0x13, 0xa5, - 0x3d, 0x38, 0xee, 0x87, 0x6f, 0xbf, 0x8f, 0xd7, 0x76, 0xf0, 0x2d, 0x6a, 0xce, 0xbf, 0x7a, 0xf6, - 0xe5, 0x95, 0xd1, 0x77, 0xf9, 0xb9, 0xbe, 0xc7, 0x9f, 0x10, 0xb4, 0x4a, 0x1b, 0xc6, 0xf5, 0x98, - 0x8b, 0x50, 0xad, 0x07, 0x75, 0x61, 0x46, 0xf1, 0xb6, 0x52, 0xdc, 0xc5, 0xce, 0x6a, 0xc5, 0xf8, - 0x18, 0x41, 0x53, 0xc7, 0x8e, 0xef, 0xfe, 0x07, 0x5d, 0x65, 0xeb, 0x96, 0x5b, 0x03, 0x61, 0xb4, - 0x75, 0x95, 0x36, 0x1b, 0x77, 0xce, 0xd7, 0xa6, 0x37, 0xbf, 0xff, 0xec, 0x64, 0x6a, 0xa3, 0xd3, - 0xa9, 0x8d, 0x7e, 0x4d, 0x6d, 0xf4, 0x71, 0x66, 0x37, 0x4e, 0x67, 0x76, 0xe3, 0xfb, 0xcc, 0x6e, - 0xbc, 0xda, 0x0b, 0xc2, 0x6c, 0x38, 0xf6, 0x88, 0x2f, 0x22, 0x6a, 0x7e, 0x5d, 0xa1, 0xe7, 0xdf, - 0x09, 0x04, 0x8d, 0xc4, 0x60, 0x3c, 0xe2, 0xf2, 0x9f, 0x99, 0xd9, 0x51, 0xc2, 0xa5, 0xd7, 0x54, - 0x7f, 0x9d, 0x7b, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0xb9, 0x6f, 0xd8, 0x1c, 0x4c, 0x05, 0x00, - 0x00, + // 531 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x54, 0xcd, 0x6e, 0xd3, 0x40, + 0x10, 0xce, 0xb6, 0x10, 0x89, 0x09, 0xe2, 0xb0, 0x54, 0x10, 0x59, 0x91, 0x5b, 0x59, 0x11, 0x84, + 0x16, 0x76, 0x71, 0xf8, 0xbb, 0x70, 0xaa, 0x10, 0x88, 0x5b, 0x1b, 0x38, 0xc1, 0x01, 0xad, 0x9d, + 0xc5, 0xb1, 0x14, 0x7b, 0x5d, 0xaf, 0x13, 0xa9, 0x42, 0x5c, 0x78, 0x02, 0xa4, 0xbe, 0x04, 0x42, + 0x3c, 0x04, 0xc7, 0x1e, 0x2b, 0x71, 0xe1, 0x04, 0x28, 0xe1, 0x1d, 0xb8, 0x22, 0xef, 0xae, 0x1b, + 0x9b, 0x54, 0x29, 0xbe, 0xad, 0xc6, 0xf3, 0xcd, 0xf7, 0x33, 0x23, 0x43, 0x2f, 0xf4, 0x7c, 0xca, + 0x92, 0x64, 0x1c, 0xfa, 0x2c, 0x0b, 0x45, 0x2c, 0x69, 0x96, 0xb2, 0x58, 0xbe, 0xe5, 0x29, 0x9d, + 0xba, 0xf4, 0x60, 0xc2, 0xd3, 0x43, 0x92, 0xa4, 0x22, 0x13, 0xb8, 0x13, 0x7a, 0x3e, 0x29, 0x77, + 0x92, 0xa2, 0x93, 0x4c, 0x5d, 0x6b, 0x23, 0x10, 0x81, 0x50, 0x8d, 0x34, 0x7f, 0x69, 0x8c, 0xb5, + 0xed, 0x0b, 0x19, 0x09, 0x49, 0x3d, 0x26, 0xb9, 0x1e, 0x46, 0xa7, 0xae, 0xc7, 0x33, 0xe6, 0xd2, + 0x84, 0x05, 0x61, 0xac, 0x06, 0x99, 0xde, 0x9d, 0x95, 0x4a, 0x4e, 0xb9, 0x74, 0x73, 0x27, 0x10, + 0x22, 0x18, 0x73, 0xca, 0x92, 0x90, 0xb2, 0x38, 0x16, 0x99, 0x91, 0xa4, 0xbe, 0x3a, 0xb7, 0xe1, + 0xda, 0x7e, 0x4e, 0xf6, 0x84, 0xc7, 0x22, 0x7a, 0x99, 0x32, 0x9f, 0x0f, 0xf8, 0xc1, 0x84, 0xcb, + 0x0c, 0x63, 0xb8, 0x30, 0x62, 0x72, 0xd4, 0x46, 0x5b, 0xa8, 0x77, 0x69, 0xa0, 0xde, 0xce, 0x10, + 0xae, 0x2f, 0x75, 0xcb, 0x44, 0xc4, 0x92, 0xe3, 0xe7, 0xd0, 0x1a, 0xe6, 0xd5, 0x37, 0x59, 0x5e, + 0x56, 0xa8, 0x56, 0xbf, 0x47, 0x56, 0x25, 0x41, 0x4a, 0x63, 0x60, 0x78, 0xfa, 0x76, 0xd8, 0x12, + 0x8b, 0x2c, 0x44, 0x3d, 0x05, 0x58, 0xa4, 0x61, 0x48, 0x6e, 0x10, 0x1d, 0x1d, 0xc9, 0xa3, 0x23, + 0x7a, 0x0f, 0x26, 0x3a, 0xb2, 0xc7, 0x82, 0xc2, 0xd0, 0xa0, 0x84, 0x74, 0xbe, 0x22, 0x68, 0x2f, + 0x73, 0x18, 0x2b, 0xaf, 0xe1, 0x72, 0xc9, 0x8a, 0x6c, 0xa3, 0xad, 0xf5, 0x3a, 0x5e, 0x76, 0xaf, + 0x1c, 0xff, 0xd8, 0x6c, 0x7c, 0xfe, 0xb9, 0xd9, 0x34, 0x73, 0x5b, 0x0b, 0x6f, 0x12, 0x3f, 0xab, + 0x38, 0x58, 0x53, 0x0e, 0x6e, 0x9e, 0xeb, 0x40, 0x2b, 0xab, 0x58, 0xd8, 0x00, 0xac, 0x1c, 0xec, + 0xb1, 0x94, 0x45, 0x45, 0x40, 0xce, 0x0b, 0xb8, 0x5a, 0xa9, 0x1a, 0x4b, 0x8f, 0xa1, 0x99, 0xa8, + 0x8a, 0xc9, 0xac, 0xbb, 0xda, 0x8c, 0x41, 0x1b, 0x4c, 0xff, 0xcf, 0x3a, 0x5c, 0x54, 0x53, 0xf1, + 0x17, 0x04, 0xb0, 0x70, 0x8a, 0xef, 0xaf, 0x1e, 0x73, 0xf6, 0x65, 0x59, 0x0f, 0x6a, 0xa2, 0xb4, + 0x07, 0xc7, 0xfd, 0xf0, 0xed, 0xf7, 0xd1, 0xda, 0x0e, 0xbe, 0x45, 0xcd, 0xf9, 0x57, 0xcf, 0xbe, + 0xbc, 0x32, 0xfa, 0x2e, 0x3f, 0xd7, 0xf7, 0xf8, 0x13, 0x82, 0x56, 0x69, 0xc3, 0xb8, 0x1e, 0x73, + 0x11, 0xaa, 0xf5, 0xb0, 0x2e, 0xcc, 0x28, 0xde, 0x56, 0x8a, 0xbb, 0xd8, 0x39, 0x5f, 0x31, 0x3e, + 0x42, 0xd0, 0xd4, 0xb1, 0xe3, 0xbb, 0xff, 0x41, 0x57, 0xd9, 0xba, 0xe5, 0xd6, 0x40, 0x18, 0x6d, + 0x5d, 0xa5, 0xcd, 0xc6, 0x9d, 0xb3, 0xb5, 0xe9, 0xcd, 0xef, 0xee, 0x1f, 0xcf, 0x6c, 0x74, 0x32, + 0xb3, 0xd1, 0xaf, 0x99, 0x8d, 0x3e, 0xce, 0xed, 0xc6, 0xc9, 0xdc, 0x6e, 0x7c, 0x9f, 0xdb, 0x8d, + 0x57, 0x8f, 0x82, 0x30, 0x1b, 0x4d, 0x3c, 0xe2, 0x8b, 0x88, 0x9a, 0x5f, 0x57, 0xe8, 0xf9, 0x77, + 0x02, 0x41, 0xa7, 0x7d, 0x1a, 0x89, 0xe1, 0x64, 0xcc, 0xe5, 0x3f, 0x63, 0xb3, 0xc3, 0x84, 0x4b, + 0xaf, 0xa9, 0x7e, 0x3c, 0xf7, 0xfe, 0x06, 0x00, 0x00, 0xff, 0xff, 0x7b, 0xbc, 0x36, 0x30, 0x4f, + 0x05, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/modules/apps/transfer/types/transfer.pb.go b/modules/apps/transfer/types/transfer.pb.go index 95df2214710..981f6ec1e63 100644 --- a/modules/apps/transfer/types/transfer.pb.go +++ b/modules/apps/transfer/types/transfer.pb.go @@ -150,26 +150,26 @@ func init() { } var fileDescriptor_5041673e96e97901 = []byte{ - // 296 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x90, 0xc1, 0x4a, 0x03, 0x31, - 0x10, 0x86, 0x9b, 0x22, 0xc5, 0x46, 0x51, 0x88, 0xa2, 0xa5, 0x68, 0x2a, 0x7b, 0x12, 0xc4, 0x0d, - 0x45, 0x4f, 0xbd, 0x08, 0x55, 0xaf, 0x22, 0xc5, 0x93, 0x97, 0x92, 0x64, 0xc7, 0x6d, 0x60, 0xb3, - 0x59, 0x92, 0xb4, 0xd0, 0x47, 0xf0, 0xe6, 0x63, 0x79, 0xec, 0xd1, 0x53, 0x91, 0xf6, 0x0d, 0xfa, - 0x04, 0xb2, 0x69, 0x59, 0x16, 0x6f, 0xff, 0xcc, 0x7c, 0xdf, 0x1c, 0x7e, 0x7c, 0xa3, 0x84, 0x64, - 0xbc, 0x28, 0x32, 0x25, 0xb9, 0x57, 0x26, 0x77, 0xcc, 0x5b, 0x9e, 0xbb, 0x0f, 0xb0, 0x6c, 0xd6, - 0xaf, 0x72, 0x5c, 0x58, 0xe3, 0x0d, 0xb9, 0x50, 0x42, 0xc6, 0x75, 0x38, 0xae, 0x80, 0x59, 0xbf, - 0x7b, 0x9a, 0x9a, 0xd4, 0x04, 0x90, 0x95, 0x69, 0xeb, 0x44, 0x0f, 0x18, 0x3f, 0x41, 0x6e, 0xf4, - 0x9b, 0xe5, 0x12, 0x08, 0xc1, 0x7b, 0x05, 0xf7, 0x93, 0x0e, 0xba, 0x42, 0xd7, 0xed, 0x51, 0xc8, - 0xe4, 0x12, 0x63, 0xc1, 0x1d, 0x8c, 0x93, 0x12, 0xeb, 0x34, 0xc3, 0xa5, 0x5d, 0x6e, 0x82, 0x17, - 0x7d, 0x22, 0xdc, 0x7a, 0xe5, 0x96, 0x6b, 0x47, 0x06, 0xf8, 0xd0, 0x41, 0x9e, 0x8c, 0x21, 0xe7, - 0x22, 0x83, 0x24, 0x7c, 0xd9, 0x1f, 0x9e, 0x6f, 0x96, 0xbd, 0x93, 0x39, 0xd7, 0xd9, 0x20, 0xaa, - 0x5f, 0xa3, 0xd1, 0x41, 0x39, 0x3e, 0x6f, 0x27, 0xf2, 0x88, 0x8f, 0x2d, 0x48, 0x50, 0x33, 0xa8, - 0xf4, 0x66, 0xd0, 0xbb, 0x9b, 0x65, 0xef, 0x6c, 0xab, 0xff, 0x03, 0xa2, 0xd1, 0xd1, 0x6e, 0xb3, - 0x7b, 0x32, 0x7c, 0xf9, 0x5e, 0x51, 0xb4, 0x58, 0x51, 0xf4, 0xbb, 0xa2, 0xe8, 0x6b, 0x4d, 0x1b, - 0x8b, 0x35, 0x6d, 0xfc, 0xac, 0x69, 0xe3, 0xfd, 0x3e, 0x55, 0x7e, 0x32, 0x15, 0xb1, 0x34, 0x9a, - 0x49, 0xe3, 0xb4, 0x71, 0x4c, 0x09, 0x79, 0x9b, 0x1a, 0xa6, 0x4d, 0x32, 0xcd, 0xc0, 0x95, 0x25, - 0xd7, 0xca, 0xf5, 0xf3, 0x02, 0x9c, 0x68, 0x85, 0x8e, 0xee, 0xfe, 0x02, 0x00, 0x00, 0xff, 0xff, - 0xac, 0xa4, 0x13, 0xf0, 0x86, 0x01, 0x00, 0x00, + // 300 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x90, 0xc1, 0x4a, 0x2b, 0x31, + 0x14, 0x86, 0x9b, 0x72, 0x29, 0xb7, 0x51, 0x14, 0xa2, 0x68, 0x29, 0x9a, 0xca, 0xac, 0x04, 0x71, + 0x42, 0x75, 0x21, 0x74, 0x23, 0x54, 0xdd, 0x6b, 0x71, 0xe5, 0xa6, 0x24, 0x99, 0xe3, 0x34, 0x30, + 0x99, 0x0c, 0x49, 0x3a, 0xd0, 0x47, 0x70, 0xe7, 0x63, 0xb9, 0xec, 0xd2, 0x55, 0x91, 0xf6, 0x0d, + 0xfa, 0x04, 0x32, 0x69, 0x29, 0x83, 0xbb, 0xff, 0x9c, 0xf3, 0x7d, 0x67, 0xf1, 0xe3, 0x2b, 0x25, + 0x24, 0xe3, 0x45, 0x91, 0x29, 0xc9, 0xbd, 0x32, 0xb9, 0x63, 0xde, 0xf2, 0xdc, 0xbd, 0x83, 0x65, + 0x65, 0x7f, 0x97, 0xe3, 0xc2, 0x1a, 0x6f, 0xc8, 0x99, 0x12, 0x32, 0xae, 0xc3, 0xf1, 0x0e, 0x28, + 0xfb, 0xdd, 0xe3, 0xd4, 0xa4, 0x26, 0x80, 0xac, 0x4a, 0x1b, 0x27, 0xba, 0xc7, 0xf8, 0x11, 0x72, + 0xa3, 0x5f, 0x2d, 0x97, 0x40, 0x08, 0xfe, 0x57, 0x70, 0x3f, 0xe9, 0xa0, 0x0b, 0x74, 0xd9, 0x1e, + 0x85, 0x4c, 0xce, 0x31, 0x16, 0xdc, 0xc1, 0x38, 0xa9, 0xb0, 0x4e, 0x33, 0x5c, 0xda, 0xd5, 0x26, + 0x78, 0xd1, 0x07, 0xc2, 0xad, 0x67, 0x6e, 0xb9, 0x76, 0x64, 0x80, 0xf7, 0x1d, 0xe4, 0xc9, 0x18, + 0x72, 0x2e, 0x32, 0x48, 0xc2, 0x97, 0xff, 0xc3, 0xd3, 0xf5, 0xa2, 0x77, 0x34, 0xe3, 0x3a, 0x1b, + 0x44, 0xf5, 0x6b, 0x34, 0xda, 0xab, 0xc6, 0xa7, 0xcd, 0x44, 0x1e, 0xf0, 0xa1, 0x05, 0x09, 0xaa, + 0x84, 0x9d, 0xde, 0x0c, 0x7a, 0x77, 0xbd, 0xe8, 0x9d, 0x6c, 0xf4, 0x3f, 0x40, 0x34, 0x3a, 0xd8, + 0x6e, 0xb6, 0x4f, 0x86, 0x2f, 0x5f, 0x4b, 0x8a, 0xe6, 0x4b, 0x8a, 0x7e, 0x96, 0x14, 0x7d, 0xae, + 0x68, 0x63, 0xbe, 0xa2, 0x8d, 0xef, 0x15, 0x6d, 0xbc, 0xdd, 0xa5, 0xca, 0x4f, 0xa6, 0x22, 0x96, + 0x46, 0x33, 0x69, 0x9c, 0x36, 0x8e, 0x29, 0x21, 0xaf, 0x53, 0xc3, 0xca, 0x1b, 0xa6, 0x4d, 0x32, + 0xcd, 0xc0, 0x55, 0x3d, 0xd7, 0xfa, 0xf5, 0xb3, 0x02, 0x9c, 0x68, 0x85, 0x9a, 0x6e, 0x7f, 0x03, + 0x00, 0x00, 0xff, 0xff, 0xb1, 0xc8, 0x63, 0x0e, 0x89, 0x01, 0x00, 0x00, } func (m *DenomTrace) Marshal() (dAtA []byte, err error) { diff --git a/modules/apps/transfer/types/tx.pb.go b/modules/apps/transfer/types/tx.pb.go index 950016d39f0..37c26a1fb27 100644 --- a/modules/apps/transfer/types/tx.pb.go +++ b/modules/apps/transfer/types/tx.pb.go @@ -132,38 +132,38 @@ func init() { } var fileDescriptor_7401ed9bed2f8e09 = []byte{ - // 491 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x93, 0x31, 0x6f, 0xd3, 0x40, - 0x14, 0xc7, 0x6d, 0x92, 0x86, 0x70, 0x51, 0x2b, 0x30, 0xb4, 0x72, 0xa3, 0x62, 0x47, 0x96, 0x90, - 0xc2, 0xc0, 0x9d, 0x5c, 0x40, 0x48, 0x9d, 0x50, 0xba, 0xc0, 0x50, 0x84, 0xac, 0x4e, 0x2c, 0xc5, - 0xbe, 0x1e, 0xce, 0x89, 0xf8, 0x9e, 0x75, 0x77, 0x89, 0xe8, 0x37, 0x60, 0xe4, 0x23, 0x74, 0xe6, - 0x93, 0x74, 0xec, 0xc8, 0x14, 0xa1, 0x64, 0x61, 0xce, 0x27, 0x40, 0x67, 0x5f, 0x82, 0xb3, 0xa0, - 0x4e, 0xbe, 0xf7, 0xfe, 0xbf, 0x77, 0x7f, 0xbd, 0x7b, 0xcf, 0xe8, 0x19, 0xcf, 0x28, 0x49, 0xcb, - 0x72, 0xc2, 0x69, 0xaa, 0x39, 0x08, 0x45, 0xb4, 0x4c, 0x85, 0xfa, 0xc2, 0x24, 0x99, 0xc5, 0x44, - 0x7f, 0xc3, 0xa5, 0x04, 0x0d, 0xde, 0x11, 0xcf, 0x28, 0x6e, 0x62, 0x78, 0x8d, 0xe1, 0x59, 0xdc, - 0x7f, 0x92, 0x43, 0x0e, 0x15, 0x48, 0xcc, 0xa9, 0xae, 0xe9, 0x07, 0x14, 0x54, 0x01, 0x8a, 0x64, - 0xa9, 0x62, 0x64, 0x16, 0x67, 0x4c, 0xa7, 0x31, 0xa1, 0xc0, 0x85, 0xd5, 0x43, 0x63, 0x4d, 0x41, - 0x32, 0x42, 0x27, 0x9c, 0x09, 0x6d, 0x0c, 0xeb, 0x53, 0x0d, 0x44, 0x3f, 0x5b, 0xa8, 0x77, 0xa6, - 0xf2, 0x73, 0xeb, 0xe4, 0xbd, 0x41, 0x3d, 0x05, 0x53, 0x49, 0xd9, 0x45, 0x09, 0x52, 0xfb, 0xee, - 0xc0, 0x1d, 0x3e, 0x18, 0x1d, 0xac, 0xe6, 0xa1, 0x77, 0x95, 0x16, 0x93, 0x93, 0xa8, 0x21, 0x46, - 0x09, 0xaa, 0xa3, 0x8f, 0x20, 0xb5, 0xf7, 0x16, 0xed, 0x59, 0x8d, 0x8e, 0x53, 0x21, 0xd8, 0xc4, - 0xbf, 0x57, 0xd5, 0x1e, 0xae, 0xe6, 0xe1, 0xfe, 0x56, 0xad, 0xd5, 0xa3, 0x64, 0xb7, 0x4e, 0x9c, - 0xd6, 0xb1, 0xf7, 0x1a, 0xed, 0x68, 0xf8, 0xca, 0x84, 0xdf, 0x1a, 0xb8, 0xc3, 0xde, 0xf1, 0x21, - 0xae, 0x7b, 0xc3, 0xa6, 0x37, 0x6c, 0x7b, 0xc3, 0xa7, 0xc0, 0xc5, 0xa8, 0x7d, 0x33, 0x0f, 0x9d, - 0xa4, 0xa6, 0xbd, 0x03, 0xd4, 0x51, 0x4c, 0x5c, 0x32, 0xe9, 0xb7, 0x8d, 0x61, 0x62, 0x23, 0xaf, - 0x8f, 0xba, 0x92, 0x51, 0xc6, 0x67, 0x4c, 0xfa, 0x3b, 0x95, 0xb2, 0x89, 0xbd, 0xcf, 0x68, 0x4f, - 0xf3, 0x82, 0xc1, 0x54, 0x5f, 0x8c, 0x19, 0xcf, 0xc7, 0xda, 0xef, 0x54, 0x9e, 0x7d, 0x6c, 0x66, - 0x60, 0xde, 0x0b, 0xdb, 0x57, 0x9a, 0xc5, 0xf8, 0x5d, 0x45, 0x8c, 0x9e, 0x1a, 0xd3, 0x7f, 0xcd, - 0x6c, 0xd7, 0x47, 0xc9, 0xae, 0x4d, 0xd4, 0xb4, 0xf7, 0x1e, 0x3d, 0x5a, 0x13, 0xe6, 0xab, 0x74, - 0x5a, 0x94, 0xfe, 0xfd, 0x81, 0x3b, 0x6c, 0x8f, 0x8e, 0x56, 0xf3, 0xd0, 0xdf, 0xbe, 0x64, 0x83, - 0x44, 0xc9, 0x43, 0x9b, 0x3b, 0x5f, 0xa7, 0x4e, 0xba, 0xdf, 0xaf, 0x43, 0xe7, 0xcf, 0x75, 0xe8, - 0x44, 0xfb, 0xe8, 0x71, 0x63, 0x56, 0x09, 0x53, 0x25, 0x08, 0xc5, 0x8e, 0x01, 0xb5, 0xce, 0x54, - 0xee, 0x8d, 0x51, 0x77, 0x33, 0xc6, 0xe7, 0xf8, 0x7f, 0xcb, 0x84, 0x1b, 0xb7, 0xf4, 0xe3, 0x3b, - 0xa3, 0x6b, 0xc3, 0xd1, 0x87, 0x9b, 0x45, 0xe0, 0xde, 0x2e, 0x02, 0xf7, 0xf7, 0x22, 0x70, 0x7f, - 0x2c, 0x03, 0xe7, 0x76, 0x19, 0x38, 0xbf, 0x96, 0x81, 0xf3, 0xe9, 0x55, 0xce, 0xf5, 0x78, 0x9a, - 0x61, 0x0a, 0x05, 0xb1, 0xab, 0xc9, 0x33, 0xfa, 0x22, 0x07, 0x52, 0xc0, 0xe5, 0x74, 0xc2, 0x94, - 0xf9, 0x0f, 0x1a, 0xfb, 0xaf, 0xaf, 0x4a, 0xa6, 0xb2, 0x4e, 0xb5, 0x8b, 0x2f, 0xff, 0x06, 0x00, - 0x00, 0xff, 0xff, 0xc1, 0x18, 0x20, 0x80, 0x29, 0x03, 0x00, 0x00, + // 495 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x93, 0xc1, 0x6e, 0xd3, 0x4c, + 0x10, 0xc7, 0xed, 0x2f, 0x69, 0xbe, 0xb0, 0x51, 0x2b, 0x30, 0xb4, 0x72, 0xa3, 0x62, 0x47, 0x96, + 0x90, 0xc2, 0x81, 0x5d, 0x39, 0x08, 0x55, 0xea, 0x09, 0xa5, 0x17, 0x38, 0x54, 0x02, 0xab, 0x27, + 0x2e, 0xc5, 0xde, 0x2e, 0xce, 0x8a, 0x78, 0xc7, 0xda, 0xdd, 0x58, 0xf4, 0x0d, 0x38, 0xf2, 0x08, + 0x3d, 0xf3, 0x24, 0x3d, 0xf6, 0xc8, 0x29, 0x42, 0xc9, 0x85, 0x73, 0x9e, 0x00, 0xad, 0xbd, 0x09, + 0xc9, 0x05, 0x71, 0xb2, 0x67, 0xfe, 0xbf, 0xd9, 0xbf, 0x66, 0x67, 0x16, 0x3d, 0xe3, 0x19, 0x25, + 0x69, 0x59, 0x4e, 0x39, 0x4d, 0x35, 0x07, 0xa1, 0x88, 0x96, 0xa9, 0x50, 0x9f, 0x98, 0x24, 0x55, + 0x4c, 0xf4, 0x17, 0x5c, 0x4a, 0xd0, 0xe0, 0x9d, 0xf0, 0x8c, 0xe2, 0x6d, 0x0c, 0xaf, 0x31, 0x5c, + 0xc5, 0xfd, 0x27, 0x39, 0xe4, 0x50, 0x83, 0xc4, 0xfc, 0x35, 0x35, 0xfd, 0x80, 0x82, 0x2a, 0x40, + 0x91, 0x2c, 0x55, 0x8c, 0x54, 0x71, 0xc6, 0x74, 0x1a, 0x13, 0x0a, 0x5c, 0x58, 0x3d, 0x34, 0xd6, + 0x14, 0x24, 0x23, 0x74, 0xca, 0x99, 0xd0, 0xc6, 0xb0, 0xf9, 0x6b, 0x80, 0xe8, 0x7b, 0x0b, 0xf5, + 0x2e, 0x54, 0x7e, 0x69, 0x9d, 0xbc, 0x53, 0xd4, 0x53, 0x30, 0x93, 0x94, 0x5d, 0x95, 0x20, 0xb5, + 0xef, 0x0e, 0xdc, 0xe1, 0x83, 0xf1, 0xd1, 0x6a, 0x1e, 0x7a, 0x37, 0x69, 0x31, 0x3d, 0x8b, 0xb6, + 0xc4, 0x28, 0x41, 0x4d, 0xf4, 0x0e, 0xa4, 0xf6, 0x5e, 0xa3, 0x03, 0xab, 0xd1, 0x49, 0x2a, 0x04, + 0x9b, 0xfa, 0xff, 0xd5, 0xb5, 0xc7, 0xab, 0x79, 0x78, 0xb8, 0x53, 0x6b, 0xf5, 0x28, 0xd9, 0x6f, + 0x12, 0xe7, 0x4d, 0xec, 0xbd, 0x42, 0x7b, 0x1a, 0x3e, 0x33, 0xe1, 0xb7, 0x06, 0xee, 0xb0, 0x37, + 0x3a, 0xc6, 0x4d, 0x6f, 0xd8, 0xf4, 0x86, 0x6d, 0x6f, 0xf8, 0x1c, 0xb8, 0x18, 0xb7, 0xef, 0xe6, + 0xa1, 0x93, 0x34, 0xb4, 0x77, 0x84, 0x3a, 0x8a, 0x89, 0x6b, 0x26, 0xfd, 0xb6, 0x31, 0x4c, 0x6c, + 0xe4, 0xf5, 0x51, 0x57, 0x32, 0xca, 0x78, 0xc5, 0xa4, 0xbf, 0x57, 0x2b, 0x9b, 0xd8, 0xfb, 0x88, + 0x0e, 0x34, 0x2f, 0x18, 0xcc, 0xf4, 0xd5, 0x84, 0xf1, 0x7c, 0xa2, 0xfd, 0x4e, 0xed, 0xd9, 0xc7, + 0x66, 0x06, 0xe6, 0xbe, 0xb0, 0xbd, 0xa5, 0x2a, 0xc6, 0x6f, 0x6a, 0x62, 0xfc, 0xd4, 0x98, 0xfe, + 0x69, 0x66, 0xb7, 0x3e, 0x4a, 0xf6, 0x6d, 0xa2, 0xa1, 0xbd, 0xb7, 0xe8, 0xd1, 0x9a, 0x30, 0x5f, + 0xa5, 0xd3, 0xa2, 0xf4, 0xff, 0x1f, 0xb8, 0xc3, 0xf6, 0xf8, 0x64, 0x35, 0x0f, 0xfd, 0xdd, 0x43, + 0x36, 0x48, 0x94, 0x3c, 0xb4, 0xb9, 0xcb, 0x75, 0xea, 0xac, 0xfb, 0xf5, 0x36, 0x74, 0x7e, 0xdd, + 0x86, 0x4e, 0x74, 0x88, 0x1e, 0x6f, 0xcd, 0x2a, 0x61, 0xaa, 0x04, 0xa1, 0xd8, 0x08, 0x50, 0xeb, + 0x42, 0xe5, 0xde, 0x04, 0x75, 0x37, 0x63, 0x7c, 0x8e, 0xff, 0xb6, 0x4c, 0x78, 0xeb, 0x94, 0x7e, + 0xfc, 0xcf, 0xe8, 0xda, 0x70, 0xfc, 0xfe, 0x6e, 0x11, 0xb8, 0xf7, 0x8b, 0xc0, 0xfd, 0xb9, 0x08, + 0xdc, 0x6f, 0xcb, 0xc0, 0xb9, 0x5f, 0x06, 0xce, 0x8f, 0x65, 0xe0, 0x7c, 0x38, 0xcd, 0xb9, 0x9e, + 0xcc, 0x32, 0x4c, 0xa1, 0x20, 0x76, 0x35, 0x79, 0x46, 0x5f, 0xe4, 0x40, 0xaa, 0x11, 0x29, 0xe0, + 0x7a, 0x36, 0x65, 0xca, 0x3c, 0x85, 0xad, 0x27, 0xa0, 0x6f, 0x4a, 0xa6, 0xb2, 0x4e, 0xbd, 0x8e, + 0x2f, 0x7f, 0x07, 0x00, 0x00, 0xff, 0xff, 0x10, 0x10, 0xcc, 0xb9, 0x2c, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/modules/core/02-client/legacy/v100/solomachine.pb.go b/modules/core/02-client/legacy/v100/solomachine.pb.go index dd0449c6683..c954e62f7e6 100644 --- a/modules/core/02-client/legacy/v100/solomachine.pb.go +++ b/modules/core/02-client/legacy/v100/solomachine.pb.go @@ -823,93 +823,93 @@ func init() { } var fileDescriptor_6cc2ee18f7f86d4e = []byte{ - // 1368 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x57, 0xdf, 0x8e, 0xdb, 0x54, - 0x13, 0x5f, 0xa7, 0xe9, 0x76, 0x33, 0xd9, 0xee, 0xe6, 0x73, 0xd3, 0x36, 0xeb, 0x56, 0x89, 0x3f, - 0x7f, 0xfa, 0xca, 0x82, 0x68, 0xd2, 0x5d, 0x44, 0x85, 0x0a, 0x02, 0x1c, 0xc7, 0xd0, 0xb4, 0xbb, - 0xde, 0xe0, 0x38, 0x40, 0x2b, 0x24, 0xcb, 0x71, 0xce, 0x26, 0x56, 0x13, 0x9f, 0x10, 0x3b, 0x49, - 0x83, 0x84, 0x84, 0xb8, 0x2a, 0x11, 0x17, 0xbc, 0x40, 0x24, 0x04, 0xe2, 0x55, 0x80, 0xcb, 0x72, - 0xc7, 0x55, 0x40, 0xed, 0x1b, 0xe4, 0x09, 0x90, 0x7d, 0x4e, 0x62, 0x3b, 0xdb, 0xcd, 0x8a, 0x7f, - 0x77, 0xe7, 0xcc, 0xfc, 0xe6, 0x37, 0x73, 0x66, 0xc6, 0x73, 0x8e, 0x61, 0xcf, 0xaa, 0x9b, 0x85, - 0xb6, 0xd5, 0x6c, 0xb9, 0x66, 0xdb, 0x42, 0xb6, 0xeb, 0x14, 0x1c, 0xdc, 0xc6, 0x1d, 0xc3, 0x6c, - 0x59, 0x36, 0x2a, 0x0c, 0xf6, 0xc2, 0xdb, 0x7c, 0xb7, 0x87, 0x5d, 0xcc, 0xe6, 0xac, 0xba, 0x99, - 0x0f, 0x9b, 0xe4, 0xc3, 0x98, 0xc1, 0x1e, 0xf7, 0x92, 0xc7, 0x69, 0xe2, 0x1e, 0x2a, 0x98, 0xd8, - 0xb6, 0x91, 0xe9, 0x5a, 0xd8, 0xf6, 0xa8, 0x82, 0x1d, 0x61, 0xe2, 0xfe, 0x1b, 0x00, 0x5b, 0x86, - 0x6d, 0xa3, 0xb6, 0x8f, 0x22, 0x4b, 0x0a, 0x49, 0x37, 0x71, 0x13, 0xfb, 0xcb, 0x82, 0xb7, 0xa2, - 0xd2, 0x9d, 0x26, 0xc6, 0xcd, 0x36, 0x2a, 0xf8, 0xbb, 0x7a, 0xff, 0xb8, 0x60, 0xd8, 0x23, 0xa2, - 0x12, 0x7e, 0x89, 0x41, 0x52, 0xf2, 0xe3, 0xaa, 0xba, 0x86, 0x8b, 0x58, 0x0e, 0x36, 0x1c, 0xf4, - 0x69, 0x1f, 0xd9, 0x26, 0xca, 0x30, 0x3c, 0xb3, 0x1b, 0x57, 0x17, 0x7b, 0x56, 0x82, 0xed, 0xe3, - 0x1e, 0xfe, 0x0c, 0xd9, 0xfa, 0x02, 0x12, 0xf3, 0x20, 0x45, 0x6e, 0x36, 0xcd, 0x5d, 0x19, 0x19, - 0x9d, 0xf6, 0x1d, 0x61, 0x09, 0x20, 0xa8, 0x5b, 0x44, 0x52, 0x9d, 0x93, 0xb8, 0xb0, 0x6d, 0x62, - 0xdb, 0x41, 0xb6, 0xd3, 0x77, 0x74, 0xc7, 0xf3, 0x99, 0x39, 0xc7, 0x33, 0xbb, 0xc9, 0xfd, 0x42, - 0xfe, 0x8c, 0x44, 0xe5, 0xa5, 0xb9, 0x9d, 0x1f, 0x6a, 0xd8, 0xeb, 0x12, 0xa3, 0xa0, 0x6e, 0x99, - 0x11, 0x2c, 0x8b, 0xe0, 0x9a, 0xd1, 0x6e, 0xe3, 0xa1, 0xde, 0xef, 0x36, 0x0c, 0x17, 0xe9, 0xc6, - 0xb1, 0x8b, 0x7a, 0x7a, 0xb7, 0x87, 0xbb, 0xd8, 0x31, 0xda, 0x99, 0x38, 0xcf, 0xec, 0x6e, 0x14, - 0x6f, 0xcc, 0xa6, 0x39, 0x81, 0x10, 0xae, 0x00, 0x0b, 0x6a, 0xc6, 0xd7, 0xd6, 0x7c, 0xa5, 0xe8, - 0xe9, 0x2a, 0x54, 0x75, 0x27, 0xfe, 0xe4, 0xdb, 0xdc, 0x9a, 0xf0, 0x1d, 0x03, 0x5b, 0xd1, 0x58, - 0xd9, 0x7b, 0x00, 0xdd, 0x7e, 0xbd, 0x6d, 0x99, 0xfa, 0x23, 0x34, 0xf2, 0x13, 0x9b, 0xdc, 0x4f, - 0xe7, 0x49, 0x59, 0xf2, 0xf3, 0xb2, 0xe4, 0x45, 0x7b, 0x54, 0xbc, 0x3c, 0x9b, 0xe6, 0xfe, 0x43, - 0x82, 0x08, 0x2c, 0x04, 0x35, 0x41, 0x36, 0xf7, 0xd1, 0x88, 0xe5, 0x21, 0xd9, 0xb0, 0x06, 0xa8, - 0xe7, 0x58, 0xc7, 0x16, 0xea, 0xf9, 0x25, 0x48, 0xa8, 0x61, 0x11, 0x7b, 0x1d, 0x12, 0xae, 0xd5, - 0x41, 0x8e, 0x6b, 0x74, 0xba, 0x7e, 0x76, 0xe3, 0x6a, 0x20, 0xa0, 0x41, 0x7e, 0x19, 0x83, 0xf5, - 0xbb, 0xc8, 0x68, 0xa0, 0xde, 0xca, 0x9a, 0x47, 0xa8, 0x62, 0x4b, 0x54, 0x9e, 0xd6, 0xb1, 0x9a, - 0xb6, 0xe1, 0xf6, 0x7b, 0xa4, 0x8c, 0x9b, 0x6a, 0x20, 0x60, 0x6b, 0xb0, 0x65, 0xa3, 0xa1, 0x1e, - 0x3a, 0x78, 0x7c, 0xc5, 0xc1, 0x77, 0x66, 0xd3, 0xdc, 0x65, 0x72, 0xf0, 0xa8, 0x95, 0xa0, 0x6e, - 0xda, 0x68, 0x58, 0x59, 0x9c, 0x5f, 0x82, 0x6d, 0x0f, 0x10, 0xce, 0xc1, 0x79, 0x2f, 0x07, 0xe1, - 0x86, 0x58, 0x02, 0x08, 0xaa, 0x17, 0x49, 0x29, 0x10, 0xd0, 0x24, 0xfc, 0x14, 0x83, 0xcd, 0x43, - 0xcb, 0xa9, 0xa3, 0x96, 0x31, 0xb0, 0x70, 0xbf, 0xc7, 0xee, 0x41, 0x82, 0x34, 0x9f, 0x6e, 0x35, - 0xfc, 0x5c, 0x24, 0x8a, 0xe9, 0xd9, 0x34, 0x97, 0xa2, 0x6d, 0x36, 0x57, 0x09, 0xea, 0x06, 0x59, - 0x97, 0x1b, 0x91, 0xec, 0xc5, 0x96, 0xb2, 0xd7, 0x85, 0x8b, 0x8b, 0x74, 0xe8, 0xd8, 0x9e, 0xb7, - 0xfa, 0xde, 0x99, 0xad, 0x5e, 0x9d, 0x5b, 0x89, 0x76, 0xa3, 0x64, 0xb8, 0x46, 0x31, 0x33, 0x9b, - 0xe6, 0xd2, 0x24, 0x8a, 0x08, 0xa3, 0xa0, 0x6e, 0x2e, 0xf6, 0x47, 0xf6, 0x92, 0x47, 0x77, 0x88, - 0x69, 0xca, 0xff, 0x29, 0x8f, 0xee, 0x10, 0x87, 0x3d, 0x6a, 0x43, 0x4c, 0x33, 0xf9, 0x23, 0x03, - 0xa9, 0x65, 0x8a, 0x68, 0x7b, 0x30, 0xcb, 0xed, 0xf1, 0x09, 0x24, 0x1a, 0x86, 0x6b, 0xe8, 0xee, - 0xa8, 0x4b, 0x32, 0xb7, 0xb5, 0xff, 0xf2, 0x99, 0x61, 0x7a, 0xbc, 0xda, 0xa8, 0x8b, 0xc2, 0x65, - 0x59, 0xb0, 0x08, 0xea, 0x46, 0x83, 0xea, 0x59, 0x16, 0xe2, 0xde, 0x9a, 0x76, 0xa5, 0xbf, 0x8e, - 0x36, 0x73, 0xfc, 0xc5, 0xdf, 0xc5, 0x17, 0x0c, 0x64, 0xb4, 0xb9, 0x0c, 0x35, 0x16, 0x67, 0xf2, - 0x0f, 0xf4, 0x2e, 0x6c, 0x05, 0xb9, 0xf0, 0xe9, 0xfd, 0x53, 0x85, 0x7b, 0x37, 0xaa, 0x17, 0xd4, - 0xa0, 0x1c, 0xa5, 0x13, 0x21, 0xc4, 0x5e, 0x1c, 0xc2, 0x6f, 0x0c, 0x24, 0x3c, 0xbf, 0xc5, 0x91, - 0x8b, 0x9c, 0xbf, 0xf1, 0x75, 0x2e, 0x0d, 0x8a, 0x73, 0x27, 0x07, 0x45, 0xa4, 0x04, 0xf1, 0x7f, - 0xab, 0x04, 0xe7, 0x83, 0x12, 0xd0, 0x13, 0xfe, 0xc0, 0x00, 0x90, 0xe1, 0xe3, 0x27, 0xe5, 0x00, - 0x92, 0xf4, 0x93, 0x3f, 0x73, 0x3c, 0x5e, 0x99, 0x4d, 0x73, 0x6c, 0x64, 0x4a, 0xd0, 0xf9, 0x48, - 0x46, 0xc4, 0x29, 0xf3, 0x21, 0xf6, 0x17, 0xe7, 0xc3, 0xe7, 0xb0, 0x1d, 0xba, 0x1c, 0xfd, 0x58, - 0x59, 0x88, 0x77, 0x0d, 0xb7, 0x45, 0xdb, 0xd9, 0x5f, 0xb3, 0x15, 0xd8, 0xa4, 0xa3, 0x81, 0x5c, - 0x68, 0xb1, 0x15, 0x07, 0xb8, 0x3a, 0x9b, 0xe6, 0x2e, 0x45, 0xc6, 0x09, 0xbd, 0xb2, 0x92, 0x66, - 0xe0, 0x89, 0xba, 0xff, 0x8a, 0x01, 0x36, 0x7a, 0x91, 0x9c, 0x1a, 0xc2, 0x83, 0x93, 0xd7, 0xea, - 0xaa, 0x28, 0xfe, 0xc4, 0xdd, 0x49, 0x63, 0x19, 0xc0, 0x25, 0x69, 0xf1, 0x20, 0x59, 0x1d, 0x8b, - 0x0c, 0x10, 0xbc, 0x5d, 0x68, 0x18, 0xff, 0xf7, 0xdb, 0xca, 0x7b, 0xbc, 0xe4, 0x43, 0xef, 0x1a, - 0x72, 0xa9, 0xd3, 0x9d, 0x6c, 0x37, 0xd4, 0x90, 0x21, 0xf5, 0xdb, 0x80, 0x94, 0x44, 0x9e, 0x38, - 0xab, 0x9d, 0xde, 0x86, 0x0b, 0xf4, 0x29, 0x44, 0x3d, 0x5e, 0x0f, 0x79, 0xa4, 0x6f, 0x24, 0xcf, - 0x1d, 0x59, 0xaa, 0x73, 0x30, 0xf5, 0x72, 0x0f, 0xd2, 0x15, 0xc3, 0x7c, 0x84, 0x5c, 0x09, 0x77, - 0x3a, 0x96, 0xdb, 0x41, 0xb6, 0x7b, 0xaa, 0xa7, 0xac, 0x77, 0xbc, 0x39, 0xca, 0x77, 0xb6, 0xa9, - 0x86, 0x24, 0xc2, 0x03, 0xd8, 0x21, 0x5c, 0xa2, 0xf9, 0xc8, 0xc6, 0xc3, 0x36, 0x6a, 0x34, 0xd1, - 0x4a, 0xc2, 0x5d, 0xd8, 0x36, 0xa2, 0x50, 0xca, 0xba, 0x2c, 0x16, 0xf2, 0x90, 0x21, 0xd4, 0x2a, - 0x32, 0x91, 0xd5, 0x75, 0xc5, 0xba, 0xe3, 0xcd, 0x81, 0xd3, 0x98, 0x85, 0x16, 0xa4, 0x15, 0xf4, - 0xd8, 0x9d, 0x3f, 0xbe, 0x54, 0x64, 0x0e, 0x4e, 0x8d, 0xe2, 0x2d, 0xb8, 0x68, 0xa3, 0xc7, 0xae, - 0xf7, 0x74, 0xd3, 0x7b, 0xc8, 0x1c, 0xd0, 0xb7, 0x5d, 0xe8, 0x1a, 0x88, 0xa8, 0x05, 0x35, 0x69, - 0x13, 0x6a, 0x8f, 0xf5, 0x95, 0xaf, 0xe3, 0xb0, 0x31, 0x1f, 0x0c, 0xec, 0x1b, 0xf0, 0xbf, 0x92, - 0xa8, 0x89, 0xba, 0xf6, 0xa0, 0x22, 0xeb, 0x35, 0xa5, 0xac, 0x94, 0xb5, 0xb2, 0x78, 0x50, 0x7e, - 0x28, 0x97, 0xf4, 0x9a, 0x52, 0xad, 0xc8, 0x52, 0xf9, 0xbd, 0xb2, 0x5c, 0x4a, 0xad, 0x71, 0xdb, - 0xe3, 0x09, 0x9f, 0x0c, 0x89, 0xd8, 0x1b, 0x70, 0x25, 0xb0, 0x94, 0x0e, 0xca, 0xb2, 0xa2, 0xe9, - 0x55, 0x4d, 0xd4, 0xe4, 0x14, 0xc3, 0xc1, 0x78, 0xc2, 0xaf, 0x13, 0x19, 0xfb, 0x2a, 0xec, 0x84, - 0x70, 0x47, 0x4a, 0x55, 0x56, 0xaa, 0xb5, 0x2a, 0x85, 0xc6, 0xb8, 0x8b, 0xe3, 0x09, 0x9f, 0x58, - 0x88, 0xd9, 0x3c, 0x70, 0x11, 0xb4, 0x22, 0x4b, 0x5a, 0xf9, 0x48, 0xa1, 0xf0, 0x73, 0xdc, 0xd6, - 0x78, 0xc2, 0x43, 0x20, 0x67, 0x77, 0xe1, 0x6a, 0x08, 0x7f, 0x57, 0x54, 0x14, 0xf9, 0x80, 0x82, - 0xe3, 0x5c, 0x72, 0x3c, 0xe1, 0x2f, 0x50, 0x21, 0xfb, 0x3a, 0x5c, 0x0b, 0x90, 0x15, 0x51, 0xba, - 0x2f, 0x6b, 0xba, 0x74, 0x74, 0x78, 0x58, 0xd6, 0x0e, 0x65, 0x45, 0x4b, 0x9d, 0xe7, 0xd2, 0xe3, - 0x09, 0x9f, 0x22, 0x8a, 0x40, 0xce, 0xbe, 0x03, 0xfc, 0x09, 0x33, 0x51, 0xba, 0xaf, 0x1c, 0x7d, - 0x74, 0x20, 0x97, 0xde, 0x97, 0x7d, 0xdb, 0x75, 0x6e, 0x67, 0x3c, 0xe1, 0x2f, 0x13, 0xed, 0x92, - 0x92, 0x7d, 0xfb, 0x05, 0x04, 0xaa, 0x2c, 0xc9, 0xe5, 0x8a, 0xa6, 0x8b, 0xc5, 0xaa, 0xac, 0x48, - 0x72, 0xea, 0x02, 0x97, 0x19, 0x4f, 0xf8, 0x34, 0xd1, 0x52, 0x25, 0xd5, 0xb1, 0xb7, 0xe1, 0x7a, - 0x60, 0xaf, 0xc8, 0x1f, 0x6b, 0x7a, 0x55, 0xfe, 0xa0, 0xe6, 0xa9, 0x3c, 0x9a, 0x0f, 0x53, 0x1b, - 0x24, 0x70, 0x4f, 0x33, 0x57, 0x78, 0x72, 0x96, 0x87, 0x54, 0x60, 0x77, 0x57, 0x16, 0x4b, 0xb2, - 0x9a, 0x4a, 0x90, 0xca, 0x90, 0x1d, 0x17, 0x7f, 0xf2, 0x7d, 0x76, 0xad, 0x58, 0xfb, 0xf9, 0x59, - 0x96, 0x79, 0xfa, 0x2c, 0xcb, 0xfc, 0xfe, 0x2c, 0xcb, 0x7c, 0xf3, 0x3c, 0xbb, 0xf6, 0xf4, 0x79, - 0x76, 0xed, 0xd7, 0xe7, 0xd9, 0xb5, 0x87, 0x6f, 0x36, 0x2d, 0xb7, 0xd5, 0xaf, 0xe7, 0x4d, 0xdc, - 0x29, 0x98, 0xd8, 0xe9, 0x60, 0xa7, 0x60, 0xd5, 0xcd, 0x9b, 0x4d, 0x5c, 0xe8, 0xe0, 0x46, 0xbf, - 0x8d, 0x1c, 0xf2, 0x87, 0x73, 0x6b, 0xff, 0x26, 0x99, 0x87, 0x85, 0x36, 0x6a, 0x1a, 0xe6, 0xa8, - 0x30, 0xd8, 0xbb, 0x75, 0xab, 0xbe, 0xee, 0x0f, 0xb1, 0xd7, 0xfe, 0x08, 0x00, 0x00, 0xff, 0xff, - 0xef, 0x59, 0x70, 0x2d, 0x87, 0x0d, 0x00, 0x00, + // 1372 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x57, 0x5f, 0x8f, 0xdb, 0xd4, + 0x12, 0x5f, 0xa7, 0xe9, 0x76, 0x33, 0xd9, 0xee, 0xe6, 0xba, 0x69, 0x9b, 0x75, 0xab, 0xc4, 0xd7, + 0x57, 0xb7, 0x77, 0x2f, 0xa2, 0x71, 0x77, 0x11, 0x15, 0xaa, 0x50, 0xc1, 0x71, 0x0c, 0x4d, 0xbb, + 0xeb, 0x0d, 0x8e, 0x17, 0xda, 0x0a, 0xc9, 0x72, 0x9c, 0xb3, 0x59, 0xab, 0x89, 0x4f, 0x88, 0x9d, + 0xa4, 0x41, 0x42, 0x42, 0x3c, 0x95, 0x88, 0x07, 0xbe, 0x40, 0x24, 0x04, 0xe2, 0xab, 0x00, 0x8f, + 0xe5, 0x8d, 0xa7, 0x80, 0xda, 0x6f, 0x90, 0x4f, 0x80, 0xec, 0x73, 0x12, 0xdb, 0xd9, 0x6e, 0x56, + 0xfc, 0x7b, 0x3b, 0x67, 0xe6, 0x37, 0xbf, 0x99, 0x33, 0x33, 0x9e, 0x73, 0x0c, 0x3b, 0x76, 0xdd, + 0x12, 0x5b, 0x76, 0xf3, 0xd8, 0xb3, 0x5a, 0x36, 0x72, 0x3c, 0x57, 0x74, 0x71, 0x0b, 0xb7, 0x4d, + 0xeb, 0xd8, 0x76, 0x90, 0xd8, 0xdf, 0x89, 0x6e, 0x8b, 0x9d, 0x2e, 0xf6, 0x30, 0x5b, 0xb0, 0xeb, + 0x56, 0x31, 0x6a, 0x52, 0x8c, 0x62, 0xfa, 0x3b, 0xdc, 0xff, 0x7c, 0x4e, 0x0b, 0x77, 0x91, 0x68, + 0x61, 0xc7, 0x41, 0x96, 0x67, 0x63, 0xc7, 0xa7, 0x0a, 0x77, 0x84, 0x89, 0xfb, 0x77, 0x08, 0x3c, + 0x36, 0x1d, 0x07, 0xb5, 0x02, 0x14, 0x59, 0x52, 0x48, 0xb6, 0x89, 0x9b, 0x38, 0x58, 0x8a, 0xfe, + 0x8a, 0x4a, 0xb7, 0x9a, 0x18, 0x37, 0x5b, 0x48, 0x0c, 0x76, 0xf5, 0xde, 0x91, 0x68, 0x3a, 0x43, + 0xa2, 0x12, 0x7e, 0x4e, 0x40, 0x5a, 0x0e, 0xe2, 0xaa, 0x79, 0xa6, 0x87, 0x58, 0x0e, 0xd6, 0x5c, + 0xf4, 0x49, 0x0f, 0x39, 0x16, 0xca, 0x31, 0x3c, 0xb3, 0x9d, 0xd4, 0xe6, 0x7b, 0x56, 0x86, 0xcd, + 0xa3, 0x2e, 0xfe, 0x14, 0x39, 0xc6, 0x1c, 0x92, 0xf0, 0x21, 0x25, 0x6e, 0x3a, 0x29, 0x5c, 0x19, + 0x9a, 0xed, 0xd6, 0x1d, 0x61, 0x01, 0x20, 0x68, 0x1b, 0x44, 0x52, 0x9b, 0x91, 0x78, 0xb0, 0x69, + 0x61, 0xc7, 0x45, 0x8e, 0xdb, 0x73, 0x0d, 0xd7, 0xf7, 0x99, 0x3b, 0xc7, 0x33, 0xdb, 0xe9, 0x5d, + 0xb1, 0x78, 0x46, 0xa2, 0x8a, 0xf2, 0xcc, 0x2e, 0x08, 0x35, 0xea, 0x75, 0x81, 0x51, 0xd0, 0x36, + 0xac, 0x18, 0x96, 0x45, 0x70, 0xcd, 0x6c, 0xb5, 0xf0, 0xc0, 0xe8, 0x75, 0x1a, 0xa6, 0x87, 0x0c, + 0xf3, 0xc8, 0x43, 0x5d, 0xa3, 0xd3, 0xc5, 0x1d, 0xec, 0x9a, 0xad, 0x5c, 0x92, 0x67, 0xb6, 0xd7, + 0x4a, 0x37, 0xa6, 0x93, 0x82, 0x40, 0x08, 0x97, 0x80, 0x05, 0x2d, 0x17, 0x68, 0x0f, 0x03, 0xa5, + 0xe4, 0xeb, 0xaa, 0x54, 0x75, 0x27, 0xf9, 0xec, 0x9b, 0xc2, 0x8a, 0xf0, 0x2d, 0x03, 0x1b, 0xf1, + 0x58, 0xd9, 0xfb, 0x00, 0x9d, 0x5e, 0xbd, 0x65, 0x5b, 0xc6, 0x13, 0x34, 0x0c, 0x12, 0x9b, 0xde, + 0xcd, 0x16, 0x49, 0x59, 0x8a, 0xb3, 0xb2, 0x14, 0x25, 0x67, 0x58, 0xba, 0x3c, 0x9d, 0x14, 0xfe, + 0x45, 0x82, 0x08, 0x2d, 0x04, 0x2d, 0x45, 0x36, 0x0f, 0xd0, 0x90, 0xe5, 0x21, 0xdd, 0xb0, 0xfb, + 0xa8, 0xeb, 0xda, 0x47, 0x36, 0xea, 0x06, 0x25, 0x48, 0x69, 0x51, 0x11, 0x7b, 0x1d, 0x52, 0x9e, + 0xdd, 0x46, 0xae, 0x67, 0xb6, 0x3b, 0x41, 0x76, 0x93, 0x5a, 0x28, 0xa0, 0x41, 0x7e, 0x91, 0x80, + 0xd5, 0x7b, 0xc8, 0x6c, 0xa0, 0xee, 0xd2, 0x9a, 0xc7, 0xa8, 0x12, 0x0b, 0x54, 0xbe, 0xd6, 0xb5, + 0x9b, 0x8e, 0xe9, 0xf5, 0xba, 0xa4, 0x8c, 0xeb, 0x5a, 0x28, 0x60, 0x0f, 0x61, 0xc3, 0x41, 0x03, + 0x23, 0x72, 0xf0, 0xe4, 0x92, 0x83, 0x6f, 0x4d, 0x27, 0x85, 0xcb, 0xe4, 0xe0, 0x71, 0x2b, 0x41, + 0x5b, 0x77, 0xd0, 0xa0, 0x3a, 0x3f, 0xbf, 0x0c, 0x9b, 0x3e, 0x20, 0x9a, 0x83, 0xf3, 0x7e, 0x0e, + 0xa2, 0x0d, 0xb1, 0x00, 0x10, 0x34, 0x3f, 0x92, 0x72, 0x28, 0xa0, 0x49, 0xf8, 0x31, 0x01, 0xeb, + 0xfb, 0xb6, 0x5b, 0x47, 0xc7, 0x66, 0xdf, 0xc6, 0xbd, 0x2e, 0xbb, 0x03, 0x29, 0xd2, 0x7c, 0x86, + 0xdd, 0x08, 0x72, 0x91, 0x2a, 0x65, 0xa7, 0x93, 0x42, 0x86, 0xb6, 0xd9, 0x4c, 0x25, 0x68, 0x6b, + 0x64, 0x5d, 0x69, 0xc4, 0xb2, 0x97, 0x58, 0xc8, 0x5e, 0x07, 0x2e, 0xce, 0xd3, 0x61, 0x60, 0x67, + 0xd6, 0xea, 0x3b, 0x67, 0xb6, 0x7a, 0x6d, 0x66, 0x25, 0x39, 0x8d, 0xb2, 0xe9, 0x99, 0xa5, 0xdc, + 0x74, 0x52, 0xc8, 0x92, 0x28, 0x62, 0x8c, 0x82, 0xb6, 0x3e, 0xdf, 0x1f, 0x38, 0x0b, 0x1e, 0xbd, + 0x01, 0xa6, 0x29, 0xff, 0xbb, 0x3c, 0x7a, 0x03, 0x1c, 0xf5, 0xa8, 0x0f, 0x30, 0xcd, 0xe4, 0x0f, + 0x0c, 0x64, 0x16, 0x29, 0xe2, 0xed, 0xc1, 0x2c, 0xb6, 0xc7, 0xc7, 0x90, 0x6a, 0x98, 0x9e, 0x69, + 0x78, 0xc3, 0x0e, 0xc9, 0xdc, 0xc6, 0xee, 0xff, 0xcf, 0x0c, 0xd3, 0xe7, 0xd5, 0x87, 0x1d, 0x14, + 0x2d, 0xcb, 0x9c, 0x45, 0xd0, 0xd6, 0x1a, 0x54, 0xcf, 0xb2, 0x90, 0xf4, 0xd7, 0xb4, 0x2b, 0x83, + 0x75, 0xbc, 0x99, 0x93, 0xaf, 0xfe, 0x2e, 0x3e, 0x67, 0x20, 0xa7, 0xcf, 0x64, 0xa8, 0x31, 0x3f, + 0x53, 0x70, 0xa0, 0x77, 0x61, 0x23, 0xcc, 0x45, 0x40, 0x1f, 0x9c, 0x2a, 0xda, 0xbb, 0x71, 0xbd, + 0xa0, 0x85, 0xe5, 0x28, 0x9f, 0x08, 0x21, 0xf1, 0xea, 0x10, 0x7e, 0x65, 0x20, 0xe5, 0xfb, 0x2d, + 0x0d, 0x3d, 0xe4, 0xfe, 0x85, 0xaf, 0x73, 0x61, 0x50, 0x9c, 0x3b, 0x39, 0x28, 0x62, 0x25, 0x48, + 0xfe, 0x53, 0x25, 0x38, 0x1f, 0x96, 0x80, 0x9e, 0xf0, 0x7b, 0x06, 0x80, 0x0c, 0x9f, 0x20, 0x29, + 0x7b, 0x90, 0xa6, 0x9f, 0xfc, 0x99, 0xe3, 0xf1, 0xca, 0x74, 0x52, 0x60, 0x63, 0x53, 0x82, 0xce, + 0x47, 0x32, 0x22, 0x4e, 0x99, 0x0f, 0x89, 0x3f, 0x39, 0x1f, 0x3e, 0x83, 0xcd, 0xc8, 0xe5, 0x18, + 0xc4, 0xca, 0x42, 0xb2, 0x63, 0x7a, 0xc7, 0xb4, 0x9d, 0x83, 0x35, 0x5b, 0x85, 0x75, 0x3a, 0x1a, + 0xc8, 0x85, 0x96, 0x58, 0x72, 0x80, 0xab, 0xd3, 0x49, 0xe1, 0x52, 0x6c, 0x9c, 0xd0, 0x2b, 0x2b, + 0x6d, 0x85, 0x9e, 0xa8, 0xfb, 0x2f, 0x19, 0x60, 0xe3, 0x17, 0xc9, 0xa9, 0x21, 0x3c, 0x3a, 0x79, + 0xad, 0x2e, 0x8b, 0xe2, 0x0f, 0xdc, 0x9d, 0x34, 0x96, 0x3e, 0x5c, 0x92, 0xe7, 0x0f, 0x92, 0xe5, + 0xb1, 0x28, 0x00, 0xe1, 0xdb, 0x85, 0x86, 0xf1, 0xdf, 0xa0, 0xad, 0xfc, 0xc7, 0x4b, 0x31, 0xf2, + 0xae, 0x21, 0x97, 0x3a, 0xdd, 0x29, 0x4e, 0x43, 0x8b, 0x18, 0x52, 0xbf, 0x0d, 0xc8, 0xc8, 0xe4, + 0x89, 0xb3, 0xdc, 0xe9, 0x6d, 0xb8, 0x40, 0x9f, 0x42, 0xd4, 0xe3, 0xf5, 0x88, 0x47, 0xfa, 0x46, + 0xf2, 0xdd, 0x91, 0xa5, 0x36, 0x03, 0x53, 0x2f, 0xf7, 0x21, 0x5b, 0x35, 0xad, 0x27, 0xc8, 0x93, + 0x71, 0xbb, 0x6d, 0x7b, 0x6d, 0xe4, 0x78, 0xa7, 0x7a, 0xca, 0xfb, 0xc7, 0x9b, 0xa1, 0x02, 0x67, + 0xeb, 0x5a, 0x44, 0x22, 0x3c, 0x82, 0x2d, 0xc2, 0x25, 0x59, 0x4f, 0x1c, 0x3c, 0x68, 0xa1, 0x46, + 0x13, 0x2d, 0x25, 0xdc, 0x86, 0x4d, 0x33, 0x0e, 0xa5, 0xac, 0x8b, 0x62, 0xa1, 0x08, 0x39, 0x42, + 0xad, 0x21, 0x0b, 0xd9, 0x1d, 0x4f, 0xaa, 0xbb, 0xfe, 0x1c, 0x38, 0x8d, 0x59, 0x38, 0x86, 0xac, + 0x8a, 0x9e, 0x7a, 0xb3, 0xc7, 0x97, 0x86, 0xac, 0xfe, 0xa9, 0x51, 0xbc, 0x0d, 0x17, 0x1d, 0xf4, + 0xd4, 0xf3, 0x9f, 0x6e, 0x46, 0x17, 0x59, 0x7d, 0xfa, 0xb6, 0x8b, 0x5c, 0x03, 0x31, 0xb5, 0xa0, + 0xa5, 0x1d, 0x42, 0xed, 0xb3, 0xbe, 0xf6, 0x55, 0x12, 0xd6, 0x66, 0x83, 0x81, 0x7d, 0x0b, 0xfe, + 0x53, 0x96, 0x74, 0xc9, 0xd0, 0x1f, 0x55, 0x15, 0xe3, 0x50, 0xad, 0xa8, 0x15, 0xbd, 0x22, 0xed, + 0x55, 0x1e, 0x2b, 0x65, 0xe3, 0x50, 0xad, 0x55, 0x15, 0xb9, 0xf2, 0x5e, 0x45, 0x29, 0x67, 0x56, + 0xb8, 0xcd, 0xd1, 0x98, 0x4f, 0x47, 0x44, 0xec, 0x0d, 0xb8, 0x12, 0x5a, 0xca, 0x7b, 0x15, 0x45, + 0xd5, 0x8d, 0x9a, 0x2e, 0xe9, 0x4a, 0x86, 0xe1, 0x60, 0x34, 0xe6, 0x57, 0x89, 0x8c, 0x7d, 0x1d, + 0xb6, 0x22, 0xb8, 0x03, 0xb5, 0xa6, 0xa8, 0xb5, 0xc3, 0x1a, 0x85, 0x26, 0xb8, 0x8b, 0xa3, 0x31, + 0x9f, 0x9a, 0x8b, 0xd9, 0x22, 0x70, 0x31, 0xb4, 0xaa, 0xc8, 0x7a, 0xe5, 0x40, 0xa5, 0xf0, 0x73, + 0xdc, 0xc6, 0x68, 0xcc, 0x43, 0x28, 0x67, 0xb7, 0xe1, 0x6a, 0x04, 0x7f, 0x4f, 0x52, 0x55, 0x65, + 0x8f, 0x82, 0x93, 0x5c, 0x7a, 0x34, 0xe6, 0x2f, 0x50, 0x21, 0xfb, 0x26, 0x5c, 0x0b, 0x91, 0x55, + 0x49, 0x7e, 0xa0, 0xe8, 0x86, 0x7c, 0xb0, 0xbf, 0x5f, 0xd1, 0xf7, 0x15, 0x55, 0xcf, 0x9c, 0xe7, + 0xb2, 0xa3, 0x31, 0x9f, 0x21, 0x8a, 0x50, 0xce, 0xbe, 0x03, 0xfc, 0x09, 0x33, 0x49, 0x7e, 0xa0, + 0x1e, 0x7c, 0xb4, 0xa7, 0x94, 0xdf, 0x57, 0x02, 0xdb, 0x55, 0x6e, 0x6b, 0x34, 0xe6, 0x2f, 0x13, + 0xed, 0x82, 0x92, 0xbd, 0xfb, 0x0a, 0x02, 0x4d, 0x91, 0x95, 0x4a, 0x55, 0x37, 0xa4, 0x52, 0x4d, + 0x51, 0x65, 0x25, 0x73, 0x81, 0xcb, 0x8d, 0xc6, 0x7c, 0x96, 0x68, 0xa9, 0x92, 0xea, 0xd8, 0xdb, + 0x70, 0x3d, 0xb4, 0x57, 0x95, 0x87, 0xba, 0x51, 0x53, 0x3e, 0x38, 0xf4, 0x55, 0x3e, 0xcd, 0x87, + 0x99, 0x35, 0x12, 0xb8, 0xaf, 0x99, 0x29, 0x7c, 0x39, 0xcb, 0x43, 0x26, 0xb4, 0xbb, 0xa7, 0x48, + 0x65, 0x45, 0xcb, 0xa4, 0x48, 0x65, 0xc8, 0x8e, 0x4b, 0x3e, 0xfb, 0x2e, 0xbf, 0x52, 0x7a, 0xf8, + 0xd3, 0x8b, 0x3c, 0xf3, 0xfc, 0x45, 0x9e, 0xf9, 0xed, 0x45, 0x9e, 0xf9, 0xfa, 0x65, 0x7e, 0xe5, + 0xf9, 0xcb, 0xfc, 0xca, 0x2f, 0x2f, 0xf3, 0x2b, 0x8f, 0xef, 0x36, 0x6d, 0xef, 0xb8, 0x57, 0x2f, + 0x5a, 0xb8, 0x2d, 0x5a, 0xd8, 0x6d, 0x63, 0x57, 0xb4, 0xeb, 0xd6, 0xcd, 0x26, 0x16, 0xfb, 0xbb, + 0x62, 0x1b, 0x37, 0x7a, 0x2d, 0xe4, 0x92, 0x9f, 0x9c, 0x5b, 0xbb, 0x37, 0xc9, 0x48, 0x14, 0x5b, + 0xa8, 0x69, 0x5a, 0x43, 0xb1, 0xbf, 0x73, 0xeb, 0x56, 0x7d, 0x35, 0x98, 0x63, 0x6f, 0xfc, 0x1e, + 0x00, 0x00, 0xff, 0xff, 0x2a, 0x11, 0x77, 0x3a, 0x8a, 0x0d, 0x00, 0x00, } func (m *ClientState) Marshal() (dAtA []byte, err error) { diff --git a/modules/core/02-client/types/client.pb.go b/modules/core/02-client/types/client.pb.go index bb251b6ea80..1d92ef7c851 100644 --- a/modules/core/02-client/types/client.pb.go +++ b/modules/core/02-client/types/client.pb.go @@ -398,51 +398,51 @@ func init() { proto.RegisterFile("ibc/core/client/v1/client.proto", fileDescript var fileDescriptor_b6bc4c8185546947 = []byte{ // 710 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x54, 0x3f, 0x6f, 0xd3, 0x4c, - 0x1c, 0x8e, 0xdb, 0xbc, 0x51, 0x73, 0xa9, 0x9a, 0xbe, 0x6e, 0xf2, 0x36, 0xcd, 0x5b, 0xc5, 0xd1, - 0x89, 0x21, 0x03, 0xb5, 0x49, 0x10, 0x08, 0x65, 0x23, 0x59, 0xda, 0x01, 0x08, 0x46, 0x15, 0x88, - 0x25, 0xf2, 0x9f, 0xab, 0x73, 0x95, 0xe3, 0x8b, 0x7c, 0xe7, 0x40, 0xbe, 0x01, 0x23, 0x23, 0x03, - 0x43, 0x3f, 0x01, 0x9f, 0x82, 0xa1, 0x63, 0x47, 0x26, 0x0b, 0xb5, 0x0b, 0x2b, 0x5e, 0x59, 0x90, - 0xef, 0xce, 0x6d, 0x92, 0xb6, 0x08, 0xc1, 0x76, 0xf7, 0xdc, 0x73, 0xcf, 0xef, 0x79, 0x7e, 0xf6, - 0xef, 0x80, 0x86, 0x6d, 0xc7, 0x70, 0x48, 0x88, 0x0c, 0xc7, 0xc7, 0x28, 0x60, 0xc6, 0xb4, 0x2d, - 0x57, 0xfa, 0x24, 0x24, 0x8c, 0xa8, 0x2a, 0xb6, 0x1d, 0x3d, 0x25, 0xe8, 0x12, 0x9e, 0xb6, 0xeb, - 0x15, 0x8f, 0x78, 0x84, 0x1f, 0x1b, 0xe9, 0x4a, 0x30, 0xeb, 0x3b, 0x1e, 0x21, 0x9e, 0x8f, 0x0c, - 0xbe, 0xb3, 0xa3, 0x23, 0xc3, 0x0a, 0x66, 0xf2, 0xe8, 0x8e, 0x43, 0xe8, 0x98, 0x50, 0x23, 0x9a, - 0x78, 0xa1, 0xe5, 0x22, 0x63, 0xda, 0xb6, 0x11, 0xb3, 0xda, 0xd9, 0x5e, 0xb0, 0xe0, 0x47, 0x05, - 0x54, 0x0f, 0x5c, 0x14, 0x30, 0x7c, 0x84, 0x91, 0xdb, 0xe7, 0xe5, 0x5e, 0x30, 0x8b, 0x21, 0xb5, - 0x0d, 0x8a, 0xa2, 0xfa, 0x10, 0xbb, 0x35, 0xa5, 0xa9, 0xb4, 0x8a, 0xbd, 0x4a, 0x12, 0x6b, 0x9b, - 0x33, 0x6b, 0xec, 0x77, 0xe1, 0xe5, 0x11, 0x34, 0xd7, 0xc4, 0xfa, 0xc0, 0x55, 0x07, 0x60, 0x5d, - 0xe2, 0x34, 0x95, 0xa8, 0xad, 0x34, 0x95, 0x56, 0xa9, 0x53, 0xd1, 0x85, 0x49, 0x3d, 0x33, 0xa9, - 0x3f, 0x0e, 0x66, 0xbd, 0xed, 0x24, 0xd6, 0xb6, 0x16, 0xb4, 0xf8, 0x1d, 0x68, 0x96, 0x9c, 0x2b, - 0x13, 0xf0, 0x93, 0x02, 0x6a, 0x7d, 0x12, 0x50, 0x14, 0xd0, 0x88, 0x72, 0xe8, 0x25, 0x66, 0xa3, - 0x7d, 0x84, 0xbd, 0x11, 0x53, 0x1f, 0x81, 0xc2, 0x88, 0xaf, 0xb8, 0xbd, 0x52, 0xa7, 0xae, 0x5f, - 0xef, 0x9b, 0x2e, 0xb8, 0xbd, 0xfc, 0x69, 0xac, 0xe5, 0x4c, 0xc9, 0x57, 0x5f, 0x81, 0xb2, 0x93, - 0xa9, 0xfe, 0x86, 0xd7, 0x9d, 0x24, 0xd6, 0xaa, 0xa9, 0x57, 0xb8, 0x74, 0x0b, 0x9a, 0x1b, 0xce, - 0x82, 0x3b, 0xf8, 0x59, 0x01, 0x55, 0xd1, 0xc5, 0x45, 0xdb, 0xf4, 0x4f, 0xfa, 0xf9, 0x16, 0x6c, - 0x2e, 0x15, 0xa4, 0xb5, 0x95, 0xe6, 0x6a, 0xab, 0xd4, 0xb9, 0x7b, 0x53, 0xd4, 0xdb, 0x1a, 0xd5, - 0xd3, 0xd2, 0xf0, 0x49, 0xac, 0x6d, 0xcb, 0x5a, 0x4b, 0x9a, 0xd0, 0x2c, 0x2f, 0xa6, 0xa0, 0xf0, - 0xbb, 0x02, 0x2a, 0x22, 0xc6, 0xe1, 0xc4, 0xb5, 0x18, 0x1a, 0x84, 0x64, 0x42, 0xa8, 0xe5, 0xab, - 0x15, 0xf0, 0x0f, 0xc3, 0xcc, 0x47, 0x22, 0x81, 0x29, 0x36, 0x6a, 0x13, 0x94, 0x5c, 0x44, 0x9d, - 0x10, 0x4f, 0x18, 0x26, 0x01, 0xef, 0x65, 0xd1, 0x9c, 0x87, 0xd4, 0x7d, 0xf0, 0x2f, 0x8d, 0xec, - 0x63, 0xe4, 0xb0, 0xe1, 0x55, 0x17, 0x56, 0x79, 0x17, 0x76, 0x93, 0x58, 0xab, 0x09, 0x67, 0xd7, - 0x28, 0xd0, 0x2c, 0x4b, 0xac, 0x9f, 0x35, 0xe5, 0x39, 0xa8, 0xd0, 0xc8, 0xa6, 0x0c, 0xb3, 0x88, - 0xa1, 0x39, 0xb1, 0x3c, 0x17, 0xd3, 0x92, 0x58, 0xfb, 0xff, 0x52, 0xec, 0x1a, 0x0b, 0x9a, 0xea, - 0x15, 0x9c, 0x49, 0x76, 0xf3, 0xef, 0x4e, 0xb4, 0x1c, 0xfc, 0xa1, 0x80, 0xf2, 0xa1, 0x18, 0x8e, - 0xbf, 0x8e, 0xfb, 0x10, 0xe4, 0x27, 0xbe, 0x15, 0xf0, 0x84, 0xa5, 0xce, 0xae, 0x2e, 0x66, 0x51, - 0xcf, 0x66, 0x4f, 0xce, 0xa2, 0x3e, 0xf0, 0xad, 0x40, 0xfe, 0x9a, 0x9c, 0xaf, 0x1e, 0x83, 0xaa, - 0xe4, 0xb8, 0xc3, 0x85, 0x51, 0xca, 0xff, 0xe2, 0xf7, 0x6c, 0x26, 0xb1, 0xb6, 0x2b, 0x32, 0xdf, - 0x78, 0x19, 0x9a, 0x5b, 0x19, 0x3e, 0x37, 0xe0, 0xdd, 0xf5, 0x34, 0xf5, 0x87, 0x13, 0x2d, 0xf7, - 0xed, 0x44, 0x53, 0xd2, 0x87, 0xa0, 0x20, 0xe7, 0xaa, 0x0f, 0xca, 0x21, 0x9a, 0x62, 0x8a, 0x49, - 0x30, 0x0c, 0xa2, 0xb1, 0x8d, 0x42, 0x1e, 0x3f, 0xdf, 0xab, 0x27, 0xb1, 0xf6, 0x9f, 0x28, 0xb4, - 0x44, 0x80, 0xe6, 0x46, 0x86, 0x3c, 0xe5, 0xc0, 0x82, 0x88, 0x9c, 0xd2, 0x95, 0x5b, 0x45, 0x04, - 0x61, 0x4e, 0x44, 0x38, 0xe9, 0xae, 0x65, 0x16, 0xe1, 0x13, 0x50, 0x18, 0x58, 0xa1, 0x35, 0xa6, - 0xa9, 0xb0, 0xe5, 0xfb, 0xe4, 0xcd, 0x65, 0x48, 0x5a, 0x53, 0x9a, 0xab, 0xad, 0xe2, 0xbc, 0xf0, - 0x12, 0x01, 0x9a, 0x1b, 0x12, 0x11, 0xf9, 0x69, 0xef, 0xd9, 0xe9, 0x79, 0x43, 0x39, 0x3b, 0x6f, - 0x28, 0x5f, 0xcf, 0x1b, 0xca, 0xfb, 0x8b, 0x46, 0xee, 0xec, 0xa2, 0x91, 0xfb, 0x72, 0xd1, 0xc8, - 0xbd, 0x7e, 0xe0, 0x61, 0x36, 0x8a, 0x6c, 0xdd, 0x21, 0x63, 0x43, 0xbe, 0xa0, 0xd8, 0x76, 0xf6, - 0x3c, 0x62, 0x8c, 0x89, 0x1b, 0xf9, 0x88, 0x8a, 0x97, 0xfb, 0x5e, 0x67, 0x4f, 0x3e, 0xde, 0x6c, - 0x36, 0x41, 0xd4, 0x2e, 0xf0, 0x2f, 0x72, 0xff, 0x67, 0x00, 0x00, 0x00, 0xff, 0xff, 0x67, 0xcd, - 0xb5, 0xb7, 0xdc, 0x05, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x54, 0x3f, 0x6f, 0xd3, 0x4e, + 0x18, 0x8e, 0xdb, 0xfc, 0xa2, 0xe6, 0x52, 0x35, 0xfd, 0xb9, 0x09, 0x4d, 0x43, 0x15, 0x47, 0x27, + 0x86, 0x0c, 0xd4, 0x26, 0x41, 0x42, 0x55, 0x36, 0x92, 0xa5, 0x1d, 0x40, 0xc1, 0xa8, 0x02, 0xb1, + 0x44, 0xfe, 0x73, 0x75, 0xae, 0x72, 0x7c, 0x91, 0xef, 0x1c, 0xc8, 0x37, 0x60, 0x64, 0x64, 0x60, + 0xe8, 0x27, 0xe0, 0x53, 0x30, 0x74, 0xec, 0xc8, 0x64, 0xa1, 0x76, 0x61, 0xc5, 0x2b, 0x0b, 0xf2, + 0xdd, 0xb9, 0x4d, 0xd2, 0x16, 0x21, 0xd8, 0xee, 0x9e, 0x7b, 0xee, 0x79, 0x9f, 0xe7, 0xb5, 0xdf, + 0x03, 0x1a, 0xb6, 0x1d, 0xc3, 0x21, 0x21, 0x32, 0x1c, 0x1f, 0xa3, 0x80, 0x19, 0xd3, 0xb6, 0x5c, + 0xe9, 0x93, 0x90, 0x30, 0xa2, 0xaa, 0xd8, 0x76, 0xf4, 0x94, 0xa0, 0x4b, 0x78, 0xda, 0xae, 0x57, + 0x3c, 0xe2, 0x11, 0x7e, 0x6c, 0xa4, 0x2b, 0xc1, 0xac, 0xef, 0x78, 0x84, 0x78, 0x3e, 0x32, 0xf8, + 0xce, 0x8e, 0x8e, 0x0d, 0x2b, 0x98, 0xc9, 0xa3, 0x07, 0x0e, 0xa1, 0x63, 0x42, 0x8d, 0x68, 0xe2, + 0x85, 0x96, 0x8b, 0x8c, 0x69, 0xdb, 0x46, 0xcc, 0x6a, 0x67, 0x7b, 0xc1, 0x82, 0x9f, 0x14, 0x50, + 0x3d, 0x74, 0x51, 0xc0, 0xf0, 0x31, 0x46, 0x6e, 0x9f, 0x97, 0x7b, 0xc9, 0x2c, 0x86, 0xd4, 0x36, + 0x28, 0x8a, 0xea, 0x43, 0xec, 0xd6, 0x94, 0xa6, 0xd2, 0x2a, 0xf6, 0x2a, 0x49, 0xac, 0x6d, 0xce, + 0xac, 0xb1, 0xdf, 0x85, 0x57, 0x47, 0xd0, 0x5c, 0x13, 0xeb, 0x43, 0x57, 0x1d, 0x80, 0x75, 0x89, + 0xd3, 0x54, 0xa2, 0xb6, 0xd2, 0x54, 0x5a, 0xa5, 0x4e, 0x45, 0x17, 0x26, 0xf5, 0xcc, 0xa4, 0xfe, + 0x34, 0x98, 0xf5, 0xb6, 0x93, 0x58, 0xdb, 0x5a, 0xd0, 0xe2, 0x77, 0xa0, 0x59, 0x72, 0xae, 0x4d, + 0xc0, 0xcf, 0x0a, 0xa8, 0xf5, 0x49, 0x40, 0x51, 0x40, 0x23, 0xca, 0xa1, 0x57, 0x98, 0x8d, 0x0e, + 0x10, 0xf6, 0x46, 0x4c, 0xdd, 0x07, 0x85, 0x11, 0x5f, 0x71, 0x7b, 0xa5, 0x4e, 0x5d, 0xbf, 0xd9, + 0x37, 0x5d, 0x70, 0x7b, 0xf9, 0xb3, 0x58, 0xcb, 0x99, 0x92, 0xaf, 0xbe, 0x06, 0x65, 0x27, 0x53, + 0xfd, 0x03, 0xaf, 0x3b, 0x49, 0xac, 0x55, 0x53, 0xaf, 0x70, 0xe9, 0x16, 0x34, 0x37, 0x9c, 0x05, + 0x77, 0xf0, 0x8b, 0x02, 0xaa, 0xa2, 0x8b, 0x8b, 0xb6, 0xe9, 0xdf, 0xf4, 0xf3, 0x1d, 0xd8, 0x5c, + 0x2a, 0x48, 0x6b, 0x2b, 0xcd, 0xd5, 0x56, 0xa9, 0xf3, 0xf0, 0xb6, 0xa8, 0x77, 0x35, 0xaa, 0xa7, + 0xa5, 0xe1, 0x93, 0x58, 0xdb, 0x96, 0xb5, 0x96, 0x34, 0xa1, 0x59, 0x5e, 0x4c, 0x41, 0xe1, 0x0f, + 0x05, 0x54, 0x44, 0x8c, 0xa3, 0x89, 0x6b, 0x31, 0x34, 0x08, 0xc9, 0x84, 0x50, 0xcb, 0x57, 0x2b, + 0xe0, 0x3f, 0x86, 0x99, 0x8f, 0x44, 0x02, 0x53, 0x6c, 0xd4, 0x26, 0x28, 0xb9, 0x88, 0x3a, 0x21, + 0x9e, 0x30, 0x4c, 0x02, 0xde, 0xcb, 0xa2, 0x39, 0x0f, 0xa9, 0x07, 0xe0, 0x7f, 0x1a, 0xd9, 0x27, + 0xc8, 0x61, 0xc3, 0xeb, 0x2e, 0xac, 0xf2, 0x2e, 0xec, 0x26, 0xb1, 0x56, 0x13, 0xce, 0x6e, 0x50, + 0xa0, 0x59, 0x96, 0x58, 0x3f, 0x6b, 0xca, 0x0b, 0x50, 0xa1, 0x91, 0x4d, 0x19, 0x66, 0x11, 0x43, + 0x73, 0x62, 0x79, 0x2e, 0xa6, 0x25, 0xb1, 0x76, 0xff, 0x4a, 0xec, 0x06, 0x0b, 0x9a, 0xea, 0x35, + 0x9c, 0x49, 0x76, 0xf3, 0xef, 0x4f, 0xb5, 0x1c, 0xfc, 0xa9, 0x80, 0xf2, 0x91, 0x18, 0x8e, 0x7f, + 0x8e, 0xfb, 0x04, 0xe4, 0x27, 0xbe, 0x15, 0xf0, 0x84, 0xa5, 0xce, 0xae, 0x2e, 0x66, 0x51, 0xcf, + 0x66, 0x4f, 0xce, 0xa2, 0x3e, 0xf0, 0xad, 0x40, 0xfe, 0x9a, 0x9c, 0xaf, 0x9e, 0x80, 0xaa, 0xe4, + 0xb8, 0xc3, 0x85, 0x51, 0xca, 0xff, 0xe6, 0xf7, 0x6c, 0x26, 0xb1, 0xb6, 0x2b, 0x32, 0xdf, 0x7a, + 0x19, 0x9a, 0x5b, 0x19, 0x3e, 0x37, 0xe0, 0xdd, 0xf5, 0x34, 0xf5, 0xc7, 0x53, 0x2d, 0xf7, 0xfd, + 0x54, 0x53, 0xd2, 0x87, 0xa0, 0x20, 0xe7, 0xaa, 0x0f, 0xca, 0x21, 0x9a, 0x62, 0x8a, 0x49, 0x30, + 0x0c, 0xa2, 0xb1, 0x8d, 0x42, 0x1e, 0x3f, 0xdf, 0xab, 0x27, 0xb1, 0x76, 0x4f, 0x14, 0x5a, 0x22, + 0x40, 0x73, 0x23, 0x43, 0x9e, 0x73, 0x60, 0x41, 0x44, 0x4e, 0xe9, 0xca, 0x9d, 0x22, 0x82, 0x30, + 0x27, 0x22, 0x9c, 0x74, 0xd7, 0x32, 0x8b, 0xf0, 0x19, 0x28, 0x0c, 0xac, 0xd0, 0x1a, 0xd3, 0x54, + 0xd8, 0xf2, 0x7d, 0xf2, 0xf6, 0x2a, 0x24, 0xad, 0x29, 0xcd, 0xd5, 0x56, 0x71, 0x5e, 0x78, 0x89, + 0x00, 0xcd, 0x0d, 0x89, 0x88, 0xfc, 0xb4, 0x67, 0x9e, 0x5d, 0x34, 0x94, 0xf3, 0x8b, 0x86, 0xf2, + 0xed, 0xa2, 0xa1, 0x7c, 0xb8, 0x6c, 0xe4, 0xce, 0x2f, 0x1b, 0xb9, 0xaf, 0x97, 0x8d, 0xdc, 0x9b, + 0x7d, 0x0f, 0xb3, 0x51, 0x64, 0xeb, 0x0e, 0x19, 0x1b, 0xf2, 0x05, 0xc5, 0xb6, 0xb3, 0xe7, 0x11, + 0x63, 0xda, 0x31, 0xc6, 0xc4, 0x8d, 0x7c, 0x44, 0xc5, 0xe3, 0xfd, 0xa8, 0xb3, 0x27, 0xdf, 0x6f, + 0x36, 0x9b, 0x20, 0x6a, 0x17, 0xf8, 0x47, 0x79, 0xfc, 0x2b, 0x00, 0x00, 0xff, 0xff, 0x96, 0x22, + 0x8e, 0x4c, 0xdf, 0x05, 0x00, 0x00, } func (this *UpgradeProposal) Equal(that interface{}) bool { diff --git a/modules/core/02-client/types/genesis.pb.go b/modules/core/02-client/types/genesis.pb.go index c428a524676..893045bfbbf 100644 --- a/modules/core/02-client/types/genesis.pb.go +++ b/modules/core/02-client/types/genesis.pb.go @@ -218,41 +218,41 @@ func init() { func init() { proto.RegisterFile("ibc/core/client/v1/genesis.proto", fileDescriptor_bcd0c0f1f2e6a91a) } var fileDescriptor_bcd0c0f1f2e6a91a = []byte{ - // 537 bytes of a gzipped FileDescriptorProto + // 539 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x53, 0x41, 0x6e, 0xd3, 0x40, 0x14, 0xcd, 0x34, 0x69, 0x68, 0xa7, 0x15, 0x0d, 0xa3, 0xa8, 0x98, 0x54, 0xb2, 0x2d, 0xb3, 0x09, - 0x8b, 0xd8, 0x24, 0x08, 0x09, 0x65, 0x83, 0xe4, 0x4a, 0xa0, 0x4a, 0x20, 0xc0, 0xec, 0xd8, 0x58, - 0x93, 0xf1, 0x90, 0x8e, 0xb0, 0x3d, 0x21, 0x33, 0x89, 0xc8, 0x0d, 0x58, 0x22, 0x4e, 0xc0, 0x9a, - 0x33, 0x70, 0x80, 0x2e, 0xbb, 0xec, 0x2a, 0xa0, 0xe4, 0x06, 0x39, 0x01, 0xf2, 0xcc, 0x98, 0xb6, - 0x69, 0xca, 0xee, 0xe7, 0xf9, 0xbd, 0xf7, 0x9f, 0xde, 0xcf, 0x40, 0x97, 0x0d, 0x48, 0x40, 0xf8, - 0x98, 0x06, 0x24, 0x65, 0x34, 0x97, 0xc1, 0xb4, 0x1b, 0x0c, 0x69, 0x4e, 0x05, 0x13, 0xfe, 0x68, - 0xcc, 0x25, 0x47, 0x88, 0x0d, 0x88, 0x5f, 0x30, 0x7c, 0xcd, 0xf0, 0xa7, 0xdd, 0x96, 0xb3, 0x41, - 0x65, 0xbe, 0x2a, 0x51, 0xab, 0x39, 0xe4, 0x43, 0xae, 0xc6, 0xa0, 0x98, 0x34, 0xea, 0x5d, 0xd4, - 0xe0, 0xfe, 0x4b, 0x6d, 0xfe, 0x5e, 0x62, 0x49, 0x11, 0x81, 0x77, 0xb4, 0x4c, 0x58, 0xc0, 0xad, - 0xb6, 0xf7, 0x7a, 0x8f, 0xfc, 0x9b, 0xdb, 0xfc, 0x93, 0x84, 0xe6, 0x92, 0x7d, 0x64, 0x34, 0x39, - 0x56, 0x98, 0xd2, 0x86, 0xf6, 0xd9, 0xdc, 0xa9, 0xfc, 0xfc, 0xed, 0x1c, 0x6e, 0xfc, 0x2c, 0xa2, - 0xd2, 0x19, 0x7d, 0x07, 0xf0, 0x9e, 0x99, 0x63, 0xc2, 0x73, 0x41, 0x73, 0x31, 0x11, 0xd6, 0xd6, - 0xed, 0xfb, 0xb4, 0xcd, 0x71, 0x49, 0xd5, 0x7e, 0x61, 0xbf, 0xd8, 0xb7, 0x9a, 0x3b, 0xd6, 0x0c, - 0x67, 0x69, 0xdf, 0xbb, 0xe1, 0xe8, 0x15, 0x59, 0xb4, 0x54, 0xac, 0x69, 0xa3, 0x06, 0x59, 0xc3, - 0xd1, 0x0c, 0x96, 0x58, 0x9c, 0x51, 0x89, 0x13, 0x2c, 0xb1, 0x55, 0x55, 0x91, 0x3a, 0xff, 0xaf, - 0xc0, 0xf4, 0xf7, 0xda, 0x88, 0x42, 0xc7, 0xc4, 0xba, 0x7f, 0x3d, 0x56, 0x69, 0xea, 0x45, 0x07, - 0x06, 0x2a, 0x15, 0xe8, 0x19, 0xac, 0x8f, 0xf0, 0x18, 0x67, 0xc2, 0xaa, 0xb9, 0xa0, 0xbd, 0xd7, - 0x6b, 0x6d, 0x5a, 0xf8, 0x56, 0x31, 0xc2, 0x5a, 0xe1, 0x1e, 0x19, 0x3e, 0x7a, 0x01, 0x1b, 0x64, - 0x4c, 0xb1, 0xa4, 0x71, 0xca, 0x09, 0x4e, 0x4f, 0xb9, 0x90, 0xd6, 0xb6, 0x0b, 0xda, 0x3b, 0xe1, - 0xd1, 0x95, 0x04, 0x6b, 0x8c, 0x22, 0x81, 0x82, 0x5e, 0x95, 0x08, 0x7a, 0x07, 0x9b, 0x39, 0xfd, - 0x22, 0x63, 0xbd, 0x2e, 0x16, 0xf4, 0xf3, 0x84, 0xe6, 0x84, 0x5a, 0x75, 0x17, 0xb4, 0x6b, 0xa1, - 0xb3, 0x9a, 0x3b, 0x47, 0xda, 0x6b, 0x13, 0xcb, 0x8b, 0x50, 0x01, 0x9b, 0x5b, 0x97, 0xe0, 0x73, - 0x78, 0xb0, 0xd6, 0x0c, 0x6a, 0xc0, 0xea, 0x27, 0x3a, 0xb3, 0x80, 0x0b, 0xda, 0xfb, 0x51, 0x31, - 0xa2, 0x26, 0xdc, 0x9e, 0xe2, 0x74, 0x42, 0xad, 0x2d, 0x85, 0xe9, 0x1f, 0xfd, 0xda, 0xd7, 0x1f, - 0x4e, 0xc5, 0xfb, 0x05, 0xe0, 0x83, 0x5b, 0x5b, 0x46, 0x5d, 0xb8, 0x6b, 0x62, 0xb0, 0x44, 0x39, - 0xee, 0x86, 0xcd, 0xd5, 0xdc, 0x69, 0x5c, 0x2d, 0x3d, 0x66, 0x89, 0x17, 0xed, 0xe8, 0xf9, 0x24, - 0x41, 0x29, 0x34, 0xcd, 0x5f, 0x1e, 0x58, 0xff, 0xe7, 0x1e, 0x6e, 0xea, 0x7b, 0xfd, 0xac, 0xb6, - 0x39, 0xeb, 0xe1, 0xb5, 0x0d, 0x97, 0x57, 0xbd, 0xab, 0x91, 0x7f, 0xfc, 0x37, 0x67, 0x0b, 0x1b, - 0x9c, 0x2f, 0x6c, 0xf0, 0x67, 0x61, 0x83, 0x6f, 0x4b, 0xbb, 0x72, 0xbe, 0xb4, 0x2b, 0x17, 0x4b, - 0xbb, 0xf2, 0xe1, 0xe9, 0x90, 0xc9, 0xd3, 0xc9, 0xc0, 0x27, 0x3c, 0x0b, 0x08, 0x17, 0x19, 0x17, - 0x01, 0x1b, 0x90, 0xce, 0x90, 0x07, 0x19, 0x4f, 0x26, 0x29, 0x15, 0xfa, 0x21, 0x3f, 0xee, 0x75, - 0xcc, 0x5b, 0x96, 0xb3, 0x11, 0x15, 0x83, 0xba, 0x7a, 0xb2, 0x4f, 0xfe, 0x06, 0x00, 0x00, 0xff, - 0xff, 0xf5, 0x0e, 0x89, 0x7e, 0x21, 0x04, 0x00, 0x00, + 0x8b, 0xd8, 0x24, 0x6c, 0xaa, 0x6c, 0x90, 0x5c, 0x09, 0x54, 0x09, 0x24, 0x30, 0x3b, 0x36, 0xd6, + 0x64, 0x3c, 0xa4, 0x23, 0x6c, 0x4f, 0xc8, 0x4c, 0x22, 0x72, 0x03, 0x96, 0x88, 0x13, 0xb0, 0xe6, + 0x0c, 0x1c, 0xa0, 0xcb, 0x2e, 0xbb, 0x0a, 0x28, 0xb9, 0x41, 0x4e, 0x80, 0x3c, 0x33, 0xa6, 0x6d, + 0x9a, 0x76, 0xf7, 0xf3, 0xfc, 0xde, 0xfb, 0x4f, 0xef, 0x67, 0xa0, 0xcb, 0x06, 0x24, 0x20, 0x7c, + 0x4c, 0x03, 0x92, 0x32, 0x9a, 0xcb, 0x60, 0xda, 0x0d, 0x86, 0x34, 0xa7, 0x82, 0x09, 0x7f, 0x34, + 0xe6, 0x92, 0x23, 0xc4, 0x06, 0xc4, 0x2f, 0x18, 0xbe, 0x66, 0xf8, 0xd3, 0x6e, 0xcb, 0xd9, 0xa0, + 0x32, 0x5f, 0x95, 0xa8, 0xd5, 0x1c, 0xf2, 0x21, 0x57, 0x63, 0x50, 0x4c, 0x1a, 0xf5, 0x2e, 0x6b, + 0x70, 0xff, 0xb5, 0x36, 0xff, 0x20, 0xb1, 0xa4, 0x88, 0xc0, 0x07, 0x5a, 0x26, 0x2c, 0xe0, 0x56, + 0xdb, 0x7b, 0xbd, 0x67, 0xfe, 0xed, 0x6d, 0xfe, 0x69, 0x42, 0x73, 0xc9, 0x3e, 0x31, 0x9a, 0x9c, + 0x28, 0x4c, 0x69, 0x43, 0xfb, 0x7c, 0xee, 0x54, 0x7e, 0xfd, 0x71, 0x0e, 0x37, 0x7e, 0x16, 0x51, + 0xe9, 0x8c, 0x7e, 0x00, 0xf8, 0xc8, 0xcc, 0x31, 0xe1, 0xb9, 0xa0, 0xb9, 0x98, 0x08, 0x6b, 0xeb, + 0xee, 0x7d, 0xda, 0xe6, 0xa4, 0xa4, 0x6a, 0xbf, 0xb0, 0x5f, 0xec, 0x5b, 0xcd, 0x1d, 0x6b, 0x86, + 0xb3, 0xb4, 0xef, 0xdd, 0x72, 0xf4, 0x8a, 0x2c, 0x5a, 0x2a, 0xd6, 0xb4, 0x51, 0x83, 0xac, 0xe1, + 0x68, 0x06, 0x4b, 0x2c, 0xce, 0xa8, 0xc4, 0x09, 0x96, 0xd8, 0xaa, 0xaa, 0x48, 0x9d, 0xfb, 0x2b, + 0x30, 0xfd, 0xbd, 0x35, 0xa2, 0xd0, 0x31, 0xb1, 0x1e, 0xdf, 0x8c, 0x55, 0x9a, 0x7a, 0xd1, 0x81, + 0x81, 0x4a, 0x05, 0x3a, 0x86, 0xf5, 0x11, 0x1e, 0xe3, 0x4c, 0x58, 0x35, 0x17, 0xb4, 0xf7, 0x7a, + 0xad, 0x4d, 0x0b, 0xdf, 0x29, 0x46, 0x58, 0x2b, 0xdc, 0x23, 0xc3, 0x47, 0xaf, 0x60, 0x83, 0x8c, + 0x29, 0x96, 0x34, 0x4e, 0x39, 0xc1, 0xe9, 0x19, 0x17, 0xd2, 0xda, 0x76, 0x41, 0x7b, 0x27, 0x3c, + 0xba, 0x96, 0x60, 0x8d, 0x51, 0x24, 0x50, 0xd0, 0x9b, 0x12, 0x41, 0xef, 0x61, 0x33, 0xa7, 0x5f, + 0x65, 0xac, 0xd7, 0xc5, 0x82, 0x7e, 0x99, 0xd0, 0x9c, 0x50, 0xab, 0xee, 0x82, 0x76, 0x2d, 0x74, + 0x56, 0x73, 0xe7, 0x48, 0x7b, 0x6d, 0x62, 0x79, 0x11, 0x2a, 0x60, 0x73, 0xeb, 0x12, 0x7c, 0x09, + 0x0f, 0xd6, 0x9a, 0x41, 0x0d, 0x58, 0xfd, 0x4c, 0x67, 0x16, 0x70, 0x41, 0x7b, 0x3f, 0x2a, 0x46, + 0xd4, 0x84, 0xdb, 0x53, 0x9c, 0x4e, 0xa8, 0xb5, 0xa5, 0x30, 0xfd, 0xa3, 0x5f, 0xfb, 0xf6, 0xd3, + 0xa9, 0x78, 0xbf, 0x01, 0x7c, 0x72, 0x67, 0xcb, 0xa8, 0x0b, 0x77, 0x4d, 0x0c, 0x96, 0x28, 0xc7, + 0xdd, 0xb0, 0xb9, 0x9a, 0x3b, 0x8d, 0xeb, 0xa5, 0xc7, 0x2c, 0xf1, 0xa2, 0x1d, 0x3d, 0x9f, 0x26, + 0x28, 0x85, 0xa6, 0xf9, 0xab, 0x03, 0xeb, 0xff, 0xdc, 0xd3, 0x4d, 0x7d, 0xaf, 0x9f, 0xd5, 0x36, + 0x67, 0x3d, 0xbc, 0xb1, 0xe1, 0xea, 0xaa, 0x0f, 0x35, 0xf2, 0x9f, 0x1f, 0x9d, 0x2f, 0x6c, 0x70, + 0xb1, 0xb0, 0xc1, 0xdf, 0x85, 0x0d, 0xbe, 0x2f, 0xed, 0xca, 0xc5, 0xd2, 0xae, 0x5c, 0x2e, 0xed, + 0xca, 0xc7, 0xe3, 0x21, 0x93, 0x67, 0x93, 0x81, 0x4f, 0x78, 0x16, 0x10, 0x2e, 0x32, 0x2e, 0x02, + 0x36, 0x20, 0x9d, 0x21, 0x0f, 0xa6, 0xbd, 0x20, 0xe3, 0xc9, 0x24, 0xa5, 0x42, 0xbf, 0xe5, 0xe7, + 0xbd, 0x8e, 0x79, 0xce, 0x72, 0x36, 0xa2, 0x62, 0x50, 0x57, 0xaf, 0xf6, 0xc5, 0xbf, 0x00, 0x00, + 0x00, 0xff, 0xff, 0xcb, 0xb6, 0xa1, 0x7d, 0x24, 0x04, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/modules/core/02-client/types/query.pb.go b/modules/core/02-client/types/query.pb.go index 0e62431265a..168844fe1d0 100644 --- a/modules/core/02-client/types/query.pb.go +++ b/modules/core/02-client/types/query.pb.go @@ -870,69 +870,69 @@ func init() { func init() { proto.RegisterFile("ibc/core/client/v1/query.proto", fileDescriptor_dc42cdfd1d52d76e) } var fileDescriptor_dc42cdfd1d52d76e = []byte{ - // 981 bytes of a gzipped FileDescriptorProto + // 983 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x57, 0xcd, 0x6f, 0x1b, 0x45, 0x14, 0xcf, 0xa4, 0x69, 0xd4, 0x3e, 0xbb, 0x09, 0x9a, 0xa6, 0xa9, 0xbb, 0x2d, 0x8e, 0xbb, 0x41, - 0x34, 0x2d, 0xc9, 0x4e, 0xe2, 0xd0, 0x86, 0x0b, 0x07, 0x52, 0xa9, 0xb4, 0x97, 0xb6, 0x2c, 0x42, - 0x48, 0x48, 0x28, 0xda, 0x5d, 0x4f, 0x36, 0x2b, 0xd9, 0x3b, 0xae, 0x67, 0x27, 0x52, 0x54, 0xe5, - 0x40, 0x8f, 0x9c, 0x90, 0x90, 0xb8, 0x22, 0x71, 0xe4, 0x50, 0x71, 0x40, 0xe2, 0xca, 0x09, 0xf5, - 0x58, 0x09, 0x0e, 0x9c, 0x08, 0x4a, 0xf8, 0x43, 0x90, 0x67, 0x66, 0xe3, 0x9d, 0x78, 0x8c, 0xd7, - 0x08, 0x6e, 0x3b, 0xef, 0xf3, 0xf7, 0x3e, 0xe6, 0x37, 0x5a, 0xa8, 0x27, 0x61, 0x44, 0x22, 0xd6, - 0xa3, 0x24, 0x6a, 0x27, 0x34, 0xcd, 0xc8, 0xfe, 0x06, 0x79, 0x26, 0x68, 0xef, 0xc0, 0xeb, 0xf6, - 0x58, 0xc6, 0x30, 0x4e, 0xc2, 0xc8, 0xeb, 0xeb, 0x3d, 0xa5, 0xf7, 0xf6, 0x37, 0x9c, 0x3b, 0x11, - 0xe3, 0x1d, 0xc6, 0x49, 0x18, 0x70, 0xaa, 0x8c, 0xc9, 0xfe, 0x46, 0x48, 0xb3, 0x60, 0x83, 0x74, - 0x83, 0x38, 0x49, 0x83, 0x2c, 0x61, 0xa9, 0xf2, 0x77, 0x96, 0x2c, 0xf1, 0x75, 0x24, 0x65, 0x70, - 0x2d, 0x66, 0x2c, 0x6e, 0x53, 0x22, 0x4f, 0xa1, 0xd8, 0x25, 0x41, 0xaa, 0x73, 0x3b, 0x37, 0xb4, - 0x2a, 0xe8, 0x26, 0x24, 0x48, 0x53, 0x96, 0xc9, 0xc0, 0x5c, 0x6b, 0x17, 0x62, 0x16, 0x33, 0xf9, - 0x49, 0xfa, 0x5f, 0x4a, 0xea, 0xde, 0x83, 0xab, 0x1f, 0xf5, 0x11, 0xdd, 0x97, 0x39, 0x3e, 0xce, - 0x82, 0x8c, 0xfa, 0xf4, 0x99, 0xa0, 0x3c, 0xc3, 0xd7, 0xe1, 0xa2, 0xca, 0xbc, 0x93, 0xb4, 0x6a, - 0xa8, 0x81, 0x56, 0x2e, 0xfa, 0x17, 0x94, 0xe0, 0x51, 0xcb, 0x7d, 0x89, 0xa0, 0x36, 0xec, 0xc8, - 0xbb, 0x2c, 0xe5, 0x14, 0x6f, 0x41, 0x55, 0x7b, 0xf2, 0xbe, 0x5c, 0x3a, 0x57, 0x9a, 0x0b, 0x9e, - 0xc2, 0xe7, 0xe5, 0xd0, 0xbd, 0x0f, 0xd2, 0x03, 0xbf, 0x12, 0x0d, 0x02, 0xe0, 0x05, 0x38, 0xdf, - 0xed, 0x31, 0xb6, 0x5b, 0x9b, 0x6e, 0xa0, 0x95, 0xaa, 0xaf, 0x0e, 0xf8, 0x3e, 0x54, 0xe5, 0xc7, - 0xce, 0x1e, 0x4d, 0xe2, 0xbd, 0xac, 0x76, 0x4e, 0x86, 0x73, 0xbc, 0xe1, 0x56, 0x7b, 0x0f, 0xa5, - 0xc5, 0xf6, 0xcc, 0xab, 0x3f, 0x96, 0xa6, 0xfc, 0x8a, 0xf4, 0x52, 0x22, 0x37, 0x1c, 0xc6, 0xcb, - 0xf3, 0x4a, 0x1f, 0x00, 0x0c, 0x06, 0xa1, 0xd1, 0xbe, 0xed, 0xa9, 0xa9, 0x79, 0xfd, 0xa9, 0x79, - 0x6a, 0xc4, 0x7a, 0x6a, 0xde, 0xd3, 0x20, 0xce, 0xbb, 0xe4, 0x17, 0x3c, 0xdd, 0xdf, 0x10, 0x5c, - 0xb3, 0x24, 0xd1, 0x5d, 0x49, 0xe1, 0x52, 0xb1, 0x2b, 0xbc, 0x86, 0x1a, 0xe7, 0x56, 0x2a, 0xcd, - 0xdb, 0xb6, 0x3a, 0x1e, 0xb5, 0x68, 0x9a, 0x25, 0xbb, 0x09, 0x6d, 0x15, 0x42, 0x6d, 0xd7, 0xfb, - 0x65, 0x7d, 0x7f, 0xb4, 0xb4, 0x68, 0x55, 0x73, 0xbf, 0x5a, 0xe8, 0x25, 0xc7, 0x1f, 0x1a, 0x55, - 0x4d, 0xcb, 0xaa, 0x6e, 0x8d, 0xad, 0x4a, 0x81, 0x35, 0xca, 0xfa, 0x01, 0x81, 0xa3, 0xca, 0xea, - 0xab, 0x52, 0x2e, 0x78, 0xe9, 0x3d, 0xc1, 0xb7, 0x60, 0xbe, 0x47, 0xf7, 0x13, 0x9e, 0xb0, 0x74, - 0x27, 0x15, 0x9d, 0x90, 0xf6, 0x24, 0x92, 0x19, 0x7f, 0x2e, 0x17, 0x3f, 0x96, 0x52, 0xc3, 0xb0, - 0x30, 0xe7, 0x82, 0xa1, 0x1a, 0x24, 0x5e, 0x86, 0x4b, 0xed, 0x7e, 0x7d, 0x59, 0x6e, 0x36, 0xd3, - 0x40, 0x2b, 0x17, 0xfc, 0xaa, 0x12, 0xea, 0x69, 0xff, 0x84, 0xe0, 0xba, 0x15, 0xb2, 0x9e, 0xc5, - 0xfb, 0x30, 0x1f, 0xe5, 0x9a, 0x12, 0x4b, 0x3a, 0x17, 0x19, 0x61, 0xfe, 0xcf, 0x3d, 0x7d, 0x61, - 0x47, 0xce, 0x4b, 0x75, 0xfb, 0x81, 0x65, 0xe4, 0xff, 0x66, 0x91, 0x7f, 0x41, 0x70, 0xc3, 0x0e, - 0x42, 0xf7, 0xef, 0x73, 0x78, 0xe3, 0x4c, 0xff, 0xf2, 0x75, 0x5e, 0xb5, 0x95, 0x6b, 0x86, 0xf9, - 0x34, 0xc9, 0xf6, 0x8c, 0x06, 0xcc, 0x9b, 0xed, 0xfd, 0x0f, 0x57, 0x77, 0x6b, 0xe8, 0xd6, 0x8b, - 0x52, 0x9d, 0x74, 0x37, 0x87, 0x6e, 0xb2, 0x18, 0x54, 0xbf, 0x08, 0xb3, 0x5c, 0x4a, 0xb4, 0x9b, - 0x3e, 0xb9, 0x8e, 0x91, 0xed, 0x69, 0xd0, 0x0b, 0x3a, 0x79, 0x36, 0xf7, 0x89, 0x11, 0x30, 0xd7, - 0xe9, 0x80, 0x4d, 0x98, 0xed, 0x4a, 0x89, 0xde, 0x42, 0xeb, 0xce, 0x68, 0x1f, 0x6d, 0xe9, 0xde, - 0x84, 0x25, 0x19, 0xf0, 0x93, 0x6e, 0xdc, 0x0b, 0x5a, 0x06, 0x13, 0xe4, 0x39, 0xdb, 0xd0, 0x18, - 0x6d, 0xa2, 0x53, 0x3f, 0x84, 0x2b, 0x42, 0xab, 0x77, 0x4a, 0x93, 0xf6, 0x65, 0x31, 0x1c, 0xd1, - 0x7d, 0x0b, 0x5c, 0x33, 0x9b, 0x8d, 0x2d, 0x5c, 0x01, 0xcb, 0xff, 0x68, 0xa5, 0x61, 0x3d, 0x86, - 0xda, 0x00, 0xd6, 0x04, 0x37, 0x75, 0x51, 0x58, 0xe3, 0x36, 0xbf, 0xa8, 0xc0, 0x79, 0x99, 0x17, - 0x7f, 0x8b, 0xa0, 0x52, 0x80, 0x8d, 0xdf, 0xb1, 0xf5, 0x7a, 0xc4, 0x9b, 0xe8, 0xac, 0x96, 0x33, - 0x56, 0x45, 0xb8, 0x77, 0x5f, 0xfc, 0xfa, 0xd7, 0xd7, 0xd3, 0x04, 0xaf, 0x91, 0x91, 0xaf, 0xba, - 0xbe, 0x3c, 0xe4, 0xf9, 0xe9, 0x2a, 0x1e, 0xe2, 0x6f, 0x10, 0x54, 0x8b, 0xbc, 0x8e, 0x4b, 0x65, - 0xcd, 0x37, 0xcd, 0x59, 0x2b, 0x69, 0xad, 0x41, 0xde, 0x96, 0x20, 0x97, 0xf1, 0xcd, 0xb1, 0x20, - 0xf1, 0x11, 0x82, 0x39, 0xb3, 0xaf, 0xd8, 0x1b, 0x9d, 0xcc, 0x36, 0x7e, 0x87, 0x94, 0xb6, 0xd7, - 0xf0, 0xda, 0x12, 0xde, 0x2e, 0x6e, 0x59, 0xe1, 0x9d, 0xe1, 0xa0, 0x62, 0x1b, 0x49, 0xfe, 0x6e, - 0x90, 0xe7, 0x67, 0x5e, 0xa0, 0x43, 0xa2, 0x08, 0xba, 0xa0, 0x50, 0x82, 0x43, 0xfc, 0x12, 0xc1, - 0xfc, 0x19, 0xce, 0xc3, 0x65, 0x21, 0x9f, 0x0e, 0x60, 0xbd, 0xbc, 0x83, 0x2e, 0xf2, 0x3d, 0x59, - 0x64, 0x13, 0xaf, 0x4f, 0x5a, 0x24, 0xfe, 0xce, 0xd8, 0x15, 0x51, 0x6e, 0x57, 0xc4, 0x44, 0xbb, - 0x32, 0x20, 0xbe, 0xd2, 0x0b, 0x2d, 0x4c, 0x90, 0x5f, 0x9e, 0x82, 0x54, 0x1c, 0x36, 0x16, 0xa4, - 0x41, 0x9d, 0x63, 0x41, 0x9a, 0x64, 0xea, 0xbe, 0x29, 0x41, 0x5e, 0xc5, 0x57, 0x14, 0xc8, 0x53, - 0x7c, 0x8a, 0x37, 0xf1, 0x8f, 0x08, 0x2e, 0x5b, 0x08, 0x11, 0x6f, 0x8e, 0xcc, 0x32, 0x9a, 0x61, - 0x9d, 0x77, 0x27, 0x73, 0xd2, 0x08, 0x9b, 0x12, 0xe1, 0x2a, 0xbe, 0x63, 0x6b, 0xa3, 0x95, 0x8d, - 0x39, 0xfe, 0x19, 0xc1, 0xa2, 0x9d, 0x33, 0xf1, 0xbd, 0xf1, 0x20, 0xac, 0x77, 0x71, 0x6b, 0x62, - 0xbf, 0x32, 0x6b, 0x30, 0x8a, 0xb6, 0xf9, 0xf6, 0x93, 0x57, 0xc7, 0x75, 0xf4, 0xfa, 0xb8, 0x8e, - 0xfe, 0x3c, 0xae, 0xa3, 0xaf, 0x4e, 0xea, 0x53, 0xaf, 0x4f, 0xea, 0x53, 0xbf, 0x9f, 0xd4, 0xa7, - 0x3e, 0xbb, 0x1b, 0x27, 0xd9, 0x9e, 0x08, 0xbd, 0x88, 0x75, 0x88, 0xfe, 0x59, 0x4a, 0xc2, 0x68, - 0x2d, 0x66, 0xa4, 0xc3, 0x5a, 0xa2, 0x4d, 0xb9, 0x4a, 0xb2, 0xde, 0x5c, 0xd3, 0x79, 0xb2, 0x83, - 0x2e, 0xe5, 0xe1, 0xac, 0xa4, 0xfe, 0xcd, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0x50, 0xa9, 0x40, - 0x56, 0x95, 0x0d, 0x00, 0x00, + 0x34, 0x2d, 0xc9, 0x4e, 0xe2, 0x40, 0xd3, 0x0b, 0x07, 0x52, 0xa9, 0xb4, 0x97, 0x52, 0x16, 0x21, + 0x24, 0x24, 0x14, 0xed, 0xae, 0x27, 0x9b, 0x95, 0xec, 0x1d, 0xd7, 0xb3, 0x6b, 0x29, 0xaa, 0x72, + 0xa0, 0x47, 0x4e, 0x48, 0x48, 0x5c, 0x91, 0x38, 0x72, 0xa8, 0x38, 0x20, 0x71, 0xe5, 0x84, 0x7a, + 0xac, 0x04, 0x07, 0x4e, 0x04, 0x25, 0xfc, 0x21, 0x68, 0x67, 0x66, 0xe3, 0x1d, 0x7b, 0x8c, 0xd7, + 0x88, 0xde, 0x76, 0xde, 0xe7, 0xef, 0x7d, 0xcc, 0x6f, 0xb4, 0x50, 0x8f, 0xfc, 0x80, 0x04, 0xac, + 0x47, 0x49, 0xd0, 0x8e, 0x68, 0x9c, 0x90, 0xfe, 0x16, 0x79, 0x9a, 0xd2, 0xde, 0xa1, 0xd3, 0xed, + 0xb1, 0x84, 0x61, 0x1c, 0xf9, 0x81, 0x93, 0xe9, 0x1d, 0xa9, 0x77, 0xfa, 0x5b, 0xd6, 0x9d, 0x80, + 0xf1, 0x0e, 0xe3, 0xc4, 0xf7, 0x38, 0x95, 0xc6, 0xa4, 0xbf, 0xe5, 0xd3, 0xc4, 0xdb, 0x22, 0x5d, + 0x2f, 0x8c, 0x62, 0x2f, 0x89, 0x58, 0x2c, 0xfd, 0xad, 0x15, 0x43, 0x7c, 0x15, 0x49, 0x1a, 0x5c, + 0x0b, 0x19, 0x0b, 0xdb, 0x94, 0x88, 0x93, 0x9f, 0xee, 0x13, 0x2f, 0x56, 0xb9, 0xad, 0x1b, 0x4a, + 0xe5, 0x75, 0x23, 0xe2, 0xc5, 0x31, 0x4b, 0x44, 0x60, 0xae, 0xb4, 0x4b, 0x21, 0x0b, 0x99, 0xf8, + 0x24, 0xd9, 0x97, 0x94, 0xda, 0x77, 0xe1, 0xea, 0xc7, 0x19, 0xa2, 0xfb, 0x22, 0xc7, 0x27, 0x89, + 0x97, 0x50, 0x97, 0x3e, 0x4d, 0x29, 0x4f, 0xf0, 0x75, 0xb8, 0x28, 0x33, 0xef, 0x45, 0xad, 0x1a, + 0x6a, 0xa0, 0xb5, 0x8b, 0xee, 0x05, 0x29, 0x78, 0xd4, 0xb2, 0x5f, 0x20, 0xa8, 0x8d, 0x3a, 0xf2, + 0x2e, 0x8b, 0x39, 0xc5, 0x3b, 0x50, 0x55, 0x9e, 0x3c, 0x93, 0x0b, 0xe7, 0x4a, 0x73, 0xc9, 0x91, + 0xf8, 0x9c, 0x1c, 0xba, 0xf3, 0x41, 0x7c, 0xe8, 0x56, 0x82, 0x41, 0x00, 0xbc, 0x04, 0xe7, 0xbb, + 0x3d, 0xc6, 0xf6, 0x6b, 0xb3, 0x0d, 0xb4, 0x56, 0x75, 0xe5, 0x01, 0xdf, 0x87, 0xaa, 0xf8, 0xd8, + 0x3b, 0xa0, 0x51, 0x78, 0x90, 0xd4, 0xce, 0x89, 0x70, 0x96, 0x33, 0xda, 0x6a, 0xe7, 0xa1, 0xb0, + 0xd8, 0x9d, 0x7b, 0xf9, 0xe7, 0xca, 0x8c, 0x5b, 0x11, 0x5e, 0x52, 0x64, 0xfb, 0xa3, 0x78, 0x79, + 0x5e, 0xe9, 0x03, 0x80, 0xc1, 0x20, 0x14, 0xda, 0xb7, 0x1d, 0x39, 0x35, 0x27, 0x9b, 0x9a, 0x23, + 0x47, 0xac, 0xa6, 0xe6, 0x3c, 0xf1, 0xc2, 0xbc, 0x4b, 0x6e, 0xc1, 0xd3, 0xfe, 0x1d, 0xc1, 0x35, + 0x43, 0x12, 0xd5, 0x95, 0x18, 0x2e, 0x15, 0xbb, 0xc2, 0x6b, 0xa8, 0x71, 0x6e, 0xad, 0xd2, 0xbc, + 0x6d, 0xaa, 0xe3, 0x51, 0x8b, 0xc6, 0x49, 0xb4, 0x1f, 0xd1, 0x56, 0x21, 0xd4, 0x6e, 0x3d, 0x2b, + 0xeb, 0x87, 0xe3, 0x95, 0x65, 0xa3, 0x9a, 0xbb, 0xd5, 0x42, 0x2f, 0x39, 0xfe, 0x50, 0xab, 0x6a, + 0x56, 0x54, 0x75, 0x6b, 0x62, 0x55, 0x12, 0xac, 0x56, 0xd6, 0x8f, 0x08, 0x2c, 0x59, 0x56, 0xa6, + 0x8a, 0x79, 0xca, 0x4b, 0xef, 0x09, 0xbe, 0x05, 0x8b, 0x3d, 0xda, 0x8f, 0x78, 0xc4, 0xe2, 0xbd, + 0x38, 0xed, 0xf8, 0xb4, 0x27, 0x90, 0xcc, 0xb9, 0x0b, 0xb9, 0xf8, 0xb1, 0x90, 0x6a, 0x86, 0x85, + 0x39, 0x17, 0x0c, 0xe5, 0x20, 0xf1, 0x2a, 0x5c, 0x6a, 0x67, 0xf5, 0x25, 0xb9, 0xd9, 0x5c, 0x03, + 0xad, 0x5d, 0x70, 0xab, 0x52, 0xa8, 0xa6, 0xfd, 0x33, 0x82, 0xeb, 0x46, 0xc8, 0x6a, 0x16, 0xef, + 0xc3, 0x62, 0x90, 0x6b, 0x4a, 0x2c, 0xe9, 0x42, 0xa0, 0x85, 0x79, 0x9d, 0x7b, 0xfa, 0xdc, 0x8c, + 0x9c, 0x97, 0xea, 0xf6, 0x03, 0xc3, 0xc8, 0xff, 0xcb, 0x22, 0xff, 0x8a, 0xe0, 0x86, 0x19, 0x84, + 0xea, 0xdf, 0x17, 0xf0, 0xc6, 0x50, 0xff, 0xf2, 0x75, 0x5e, 0x37, 0x95, 0xab, 0x87, 0xf9, 0x2c, + 0x4a, 0x0e, 0xb4, 0x06, 0x2c, 0xea, 0xed, 0xfd, 0x1f, 0x57, 0x77, 0x67, 0xe4, 0xd6, 0xa7, 0xa5, + 0x3a, 0x69, 0x6f, 0x8f, 0xdc, 0xe4, 0x74, 0x50, 0xfd, 0x32, 0xcc, 0x73, 0x21, 0x51, 0x6e, 0xea, + 0x64, 0x5b, 0x5a, 0xb6, 0x27, 0x5e, 0xcf, 0xeb, 0xe4, 0xd9, 0xec, 0x8f, 0xb4, 0x80, 0xb9, 0x4e, + 0x05, 0x6c, 0xc2, 0x7c, 0x57, 0x48, 0xd4, 0x16, 0x1a, 0x77, 0x46, 0xf9, 0x28, 0x4b, 0xfb, 0x26, + 0xac, 0x88, 0x80, 0x9f, 0x76, 0xc3, 0x9e, 0xd7, 0xd2, 0x98, 0x20, 0xcf, 0xd9, 0x86, 0xc6, 0x78, + 0x13, 0x95, 0xfa, 0x21, 0x5c, 0x49, 0x95, 0x7a, 0xaf, 0x34, 0x69, 0x5f, 0x4e, 0x47, 0x23, 0xda, + 0x6f, 0x81, 0xad, 0x67, 0x33, 0xb1, 0x85, 0x9d, 0xc2, 0xea, 0xbf, 0x5a, 0x29, 0x58, 0x8f, 0xa1, + 0x36, 0x80, 0x35, 0xc5, 0x4d, 0x5d, 0x4e, 0x8d, 0x71, 0x9b, 0x5f, 0x56, 0xe0, 0xbc, 0xc8, 0x8b, + 0xbf, 0x43, 0x50, 0x29, 0xc0, 0xc6, 0xef, 0x98, 0x7a, 0x3d, 0xe6, 0x4d, 0xb4, 0xd6, 0xcb, 0x19, + 0xcb, 0x22, 0xec, 0xf7, 0x9e, 0xff, 0xf6, 0xf7, 0x37, 0xb3, 0x04, 0x6f, 0x90, 0xb1, 0xaf, 0xba, + 0xba, 0x3c, 0xe4, 0xd9, 0xd9, 0x2a, 0x1e, 0xe1, 0x6f, 0x11, 0x54, 0x8b, 0xbc, 0x8e, 0x4b, 0x65, + 0xcd, 0x37, 0xcd, 0xda, 0x28, 0x69, 0xad, 0x40, 0xde, 0x16, 0x20, 0x57, 0xf1, 0xcd, 0x89, 0x20, + 0xf1, 0x31, 0x82, 0x05, 0xbd, 0xaf, 0xd8, 0x19, 0x9f, 0xcc, 0x34, 0x7e, 0x8b, 0x94, 0xb6, 0x57, + 0xf0, 0xda, 0x02, 0xde, 0x3e, 0x6e, 0x19, 0xe1, 0x0d, 0x71, 0x50, 0xb1, 0x8d, 0x24, 0x7f, 0x37, + 0xc8, 0xb3, 0xa1, 0x17, 0xe8, 0x88, 0x48, 0x82, 0x2e, 0x28, 0xa4, 0xe0, 0x08, 0xbf, 0x40, 0xb0, + 0x38, 0xc4, 0x79, 0xb8, 0x2c, 0xe4, 0xb3, 0x01, 0x6c, 0x96, 0x77, 0x50, 0x45, 0xde, 0x13, 0x45, + 0x36, 0xf1, 0xe6, 0xb4, 0x45, 0xe2, 0xef, 0xb5, 0x5d, 0x49, 0xcb, 0xed, 0x4a, 0x3a, 0xd5, 0xae, + 0x0c, 0x88, 0xaf, 0xf4, 0x42, 0xa7, 0x3a, 0xc8, 0xaf, 0xce, 0x40, 0x4a, 0x0e, 0x9b, 0x08, 0x52, + 0xa3, 0xce, 0x89, 0x20, 0x75, 0x32, 0xb5, 0xdf, 0x14, 0x20, 0xaf, 0xe2, 0x2b, 0x12, 0xe4, 0x19, + 0x3e, 0xc9, 0x9b, 0xf8, 0x27, 0x04, 0x97, 0x0d, 0x84, 0x88, 0xb7, 0xc7, 0x66, 0x19, 0xcf, 0xb0, + 0xd6, 0xbb, 0xd3, 0x39, 0x29, 0x84, 0x4d, 0x81, 0x70, 0x1d, 0xdf, 0x31, 0xb5, 0xd1, 0xc8, 0xc6, + 0x1c, 0xff, 0x82, 0x60, 0xd9, 0xcc, 0x99, 0xf8, 0xee, 0x64, 0x10, 0xc6, 0xbb, 0xb8, 0x33, 0xb5, + 0x5f, 0x99, 0x35, 0x18, 0x47, 0xdb, 0x7c, 0xd7, 0x7d, 0x79, 0x52, 0x47, 0xaf, 0x4e, 0xea, 0xe8, + 0xaf, 0x93, 0x3a, 0xfa, 0xfa, 0xb4, 0x3e, 0xf3, 0xea, 0xb4, 0x3e, 0xf3, 0xc7, 0x69, 0x7d, 0xe6, + 0xf3, 0x7b, 0x61, 0x94, 0x1c, 0xa4, 0xbe, 0x13, 0xb0, 0x0e, 0x51, 0x3f, 0x4b, 0x91, 0x1f, 0x6c, + 0x84, 0x8c, 0xf4, 0x9b, 0xa4, 0xc3, 0x5a, 0x69, 0x9b, 0x72, 0x99, 0x67, 0xb3, 0xb9, 0xa1, 0x52, + 0x25, 0x87, 0x5d, 0xca, 0xfd, 0x79, 0xc1, 0xfe, 0xdb, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0x52, + 0x79, 0xec, 0xa1, 0x98, 0x0d, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/modules/core/02-client/types/tx.pb.go b/modules/core/02-client/types/tx.pb.go index e19d4e633ae..6e287a4cbd9 100644 --- a/modules/core/02-client/types/tx.pb.go +++ b/modules/core/02-client/types/tx.pb.go @@ -375,45 +375,45 @@ func init() { func init() { proto.RegisterFile("ibc/core/client/v1/tx.proto", fileDescriptor_cb5dc4651eb49a04) } var fileDescriptor_cb5dc4651eb49a04 = []byte{ - // 606 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x55, 0x3f, 0x6f, 0xd3, 0x4e, - 0x18, 0x8e, 0x9b, 0xdf, 0x2f, 0x6a, 0xae, 0x81, 0x56, 0x26, 0xb4, 0xa9, 0xab, 0xda, 0x91, 0xe9, - 0x10, 0x44, 0xeb, 0x23, 0x41, 0x48, 0xa8, 0x1b, 0xe9, 0xc4, 0x10, 0x01, 0xae, 0x18, 0x60, 0x09, - 0xfe, 0x73, 0xbd, 0x9c, 0x88, 0x7d, 0x91, 0xcf, 0x8e, 0xc8, 0x37, 0x60, 0x64, 0xe0, 0x03, 0x54, - 0x0c, 0x7c, 0x16, 0xc6, 0x0e, 0x0c, 0x4c, 0x51, 0x95, 0x2c, 0xcc, 0xf9, 0x04, 0x28, 0x3e, 0x27, - 0xc4, 0xae, 0x1d, 0x59, 0xfc, 0xd9, 0x7c, 0x7e, 0x9f, 0x7b, 0x9e, 0xf7, 0xf1, 0xf3, 0x9e, 0x0f, - 0x1c, 0x10, 0xd3, 0x82, 0x16, 0xf5, 0x10, 0xb4, 0xfa, 0x04, 0xb9, 0x3e, 0x1c, 0x36, 0xa1, 0xff, - 0x5e, 0x1b, 0x78, 0xd4, 0xa7, 0xa2, 0x48, 0x4c, 0x4b, 0x9b, 0x17, 0x35, 0x5e, 0xd4, 0x86, 0x4d, - 0xa9, 0x8a, 0x29, 0xa6, 0x61, 0x19, 0xce, 0x9f, 0x38, 0x52, 0xda, 0xc7, 0x94, 0xe2, 0x3e, 0x82, - 0xe1, 0xca, 0x0c, 0x2e, 0xa0, 0xe1, 0x8e, 0xa2, 0x92, 0x92, 0xa2, 0x10, 0xd1, 0x85, 0x00, 0xf5, - 0x5a, 0x00, 0xdb, 0x1d, 0x86, 0xcf, 0x3c, 0x64, 0xf8, 0xe8, 0x2c, 0xac, 0x88, 0x2f, 0x40, 0x85, - 0x63, 0xba, 0xcc, 0x37, 0x7c, 0x54, 0x13, 0xea, 0x42, 0x63, 0xab, 0x55, 0xd5, 0xb8, 0x8c, 0xb6, - 0x90, 0xd1, 0x9e, 0xba, 0xa3, 0xf6, 0xde, 0x6c, 0xac, 0xdc, 0x19, 0x19, 0x4e, 0xff, 0x54, 0x5d, - 0xdd, 0xa3, 0xea, 0x5b, 0x7c, 0x79, 0x3e, 0x5f, 0x89, 0xaf, 0xc1, 0xb6, 0x45, 0x5d, 0x86, 0x5c, - 0x16, 0xb0, 0x88, 0x74, 0x63, 0x0d, 0xa9, 0x34, 0x1b, 0x2b, 0xbb, 0x11, 0x69, 0x7c, 0x9b, 0xaa, - 0xdf, 0x5e, 0xbe, 0xe1, 0xd4, 0xbb, 0xa0, 0xc4, 0x08, 0x76, 0x91, 0x57, 0x2b, 0xd6, 0x85, 0x46, - 0x59, 0x8f, 0x56, 0xa7, 0x9b, 0x1f, 0x2e, 0x95, 0xc2, 0x8f, 0x4b, 0xa5, 0xa0, 0xee, 0x83, 0xbd, - 0x84, 0x43, 0x1d, 0xb1, 0xc1, 0x9c, 0x45, 0xfd, 0xc4, 0xdd, 0xbf, 0x1a, 0xd8, 0xbf, 0xdc, 0x37, - 0x41, 0x39, 0x72, 0x42, 0xec, 0xd0, 0x7a, 0xb9, 0x5d, 0x9d, 0x8d, 0x95, 0x9d, 0x98, 0x49, 0x62, - 0xab, 0xfa, 0x26, 0x7f, 0x7e, 0x66, 0x8b, 0xc7, 0xa0, 0xd4, 0x43, 0x86, 0x8d, 0xbc, 0x75, 0xae, - 0xf4, 0x08, 0x93, 0xbb, 0xe3, 0xd5, 0xae, 0x96, 0x1d, 0x7f, 0x2b, 0x82, 0x9d, 0xb0, 0x86, 0x3d, - 0xc3, 0xfe, 0x83, 0x96, 0x93, 0x19, 0x6f, 0xfc, 0x8b, 0x8c, 0x8b, 0x7f, 0x29, 0xe3, 0x97, 0xa0, - 0x3a, 0xf0, 0x28, 0xbd, 0xe8, 0x06, 0xdc, 0x76, 0x97, 0xeb, 0xd6, 0xfe, 0xab, 0x0b, 0x8d, 0x4a, - 0x5b, 0x99, 0x8d, 0x95, 0x03, 0xce, 0x94, 0x86, 0x52, 0x75, 0x31, 0x7c, 0x1d, 0xff, 0x64, 0xef, - 0xc0, 0x61, 0x02, 0x9c, 0xe8, 0xfd, 0xff, 0x90, 0xbb, 0x31, 0x1b, 0x2b, 0x47, 0xa9, 0xdc, 0xc9, - 0x9e, 0xa5, 0x98, 0x48, 0xd6, 0x8c, 0x96, 0x32, 0x12, 0x97, 0x40, 0x2d, 0x99, 0xea, 0x32, 0xf2, - 0x2f, 0x02, 0xb8, 0xdb, 0x61, 0xf8, 0x3c, 0x30, 0x1d, 0xe2, 0x77, 0x08, 0x33, 0x51, 0xcf, 0x18, - 0x12, 0x1a, 0x78, 0xbf, 0x93, 0xfb, 0x13, 0x50, 0x71, 0x56, 0x28, 0xd6, 0x0e, 0x6c, 0x0c, 0x99, - 0x63, 0x6c, 0x15, 0x70, 0x98, 0xda, 0xe7, 0xc2, 0x49, 0xeb, 0x73, 0x11, 0x14, 0x3b, 0x0c, 0x8b, - 0x6f, 0x41, 0x25, 0xf6, 0xc3, 0xb9, 0xa7, 0xdd, 0xfc, 0xd7, 0x69, 0x89, 0x33, 0x2b, 0x3d, 0xc8, - 0x01, 0x5a, 0x28, 0xcd, 0x15, 0x62, 0x87, 0x3a, 0x4b, 0x61, 0x15, 0x94, 0xa9, 0x90, 0x76, 0x10, - 0x45, 0x0b, 0xdc, 0x8a, 0x4f, 0xd4, 0x51, 0xe6, 0xee, 0x15, 0x94, 0x74, 0x9c, 0x07, 0xb5, 0x14, - 0xf1, 0x80, 0x98, 0x12, 0xfb, 0xfd, 0x0c, 0x8e, 0x9b, 0x50, 0xa9, 0x99, 0x1b, 0xba, 0xd0, 0x6c, - 0x3f, 0xff, 0x3a, 0x91, 0x85, 0xab, 0x89, 0x2c, 0x5c, 0x4f, 0x64, 0xe1, 0xe3, 0x54, 0x2e, 0x5c, - 0x4d, 0xe5, 0xc2, 0xf7, 0xa9, 0x5c, 0x78, 0xf3, 0x18, 0x13, 0xbf, 0x17, 0x98, 0x9a, 0x45, 0x1d, - 0x68, 0x51, 0xe6, 0x50, 0x06, 0x89, 0x69, 0x9d, 0x60, 0x0a, 0x1d, 0x6a, 0x07, 0x7d, 0xc4, 0xf8, - 0x4d, 0xf3, 0xb0, 0x75, 0x12, 0x5d, 0x36, 0xfe, 0x68, 0x80, 0x98, 0x59, 0x0a, 0x87, 0xea, 0xd1, - 0xcf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x9c, 0xf3, 0x53, 0xbe, 0xee, 0x06, 0x00, 0x00, + // 605 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x55, 0x3f, 0x6f, 0xd3, 0x40, + 0x1c, 0x8d, 0x1b, 0x88, 0x9a, 0x6b, 0xa0, 0x95, 0x09, 0x6d, 0xea, 0xaa, 0x76, 0x64, 0x3a, 0x04, + 0xd1, 0xfa, 0x48, 0x58, 0xaa, 0x6e, 0xa4, 0x13, 0x43, 0x24, 0x70, 0xc5, 0x00, 0x4b, 0xf0, 0x9f, + 0xeb, 0xe5, 0x44, 0xec, 0x8b, 0x7c, 0x76, 0x44, 0xbe, 0x01, 0x23, 0x03, 0x1f, 0xa0, 0x62, 0xe0, + 0xb3, 0x30, 0x76, 0x60, 0x60, 0x8a, 0xaa, 0x64, 0x61, 0xce, 0x27, 0x40, 0xf1, 0x39, 0x21, 0x76, + 0xed, 0xc8, 0xe2, 0xcf, 0xe6, 0xf3, 0xef, 0xdd, 0x7b, 0xbf, 0xe7, 0xf7, 0x3b, 0x1f, 0x38, 0x20, + 0xa6, 0x05, 0x2d, 0xea, 0x21, 0x68, 0xf5, 0x09, 0x72, 0x7d, 0x38, 0x6c, 0x42, 0xff, 0x83, 0x36, + 0xf0, 0xa8, 0x4f, 0x45, 0x91, 0x98, 0x96, 0x36, 0x2f, 0x6a, 0xbc, 0xa8, 0x0d, 0x9b, 0x52, 0x15, + 0x53, 0x4c, 0xc3, 0x32, 0x9c, 0x3f, 0x71, 0xa4, 0xb4, 0x8f, 0x29, 0xc5, 0x7d, 0x04, 0xc3, 0x95, + 0x19, 0x5c, 0x42, 0xc3, 0x1d, 0x45, 0x25, 0x25, 0x45, 0x21, 0xa2, 0x0b, 0x01, 0xea, 0x8d, 0x00, + 0xb6, 0x3b, 0x0c, 0x9f, 0x7b, 0xc8, 0xf0, 0xd1, 0x79, 0x58, 0x11, 0x5f, 0x82, 0x0a, 0xc7, 0x74, + 0x99, 0x6f, 0xf8, 0xa8, 0x26, 0xd4, 0x85, 0xc6, 0x56, 0xab, 0xaa, 0x71, 0x19, 0x6d, 0x21, 0xa3, + 0x3d, 0x77, 0x47, 0xed, 0xbd, 0xd9, 0x58, 0x79, 0x30, 0x32, 0x9c, 0xfe, 0x99, 0xba, 0xba, 0x47, + 0xd5, 0xb7, 0xf8, 0xf2, 0x62, 0xbe, 0x12, 0xdf, 0x80, 0x6d, 0x8b, 0xba, 0x0c, 0xb9, 0x2c, 0x60, + 0x11, 0xe9, 0xc6, 0x1a, 0x52, 0x69, 0x36, 0x56, 0x76, 0x23, 0xd2, 0xf8, 0x36, 0x55, 0xbf, 0xbf, + 0x7c, 0xc3, 0xa9, 0x77, 0x41, 0x89, 0x11, 0xec, 0x22, 0xaf, 0x56, 0xac, 0x0b, 0x8d, 0xb2, 0x1e, + 0xad, 0xce, 0x36, 0x3f, 0x5e, 0x29, 0x85, 0x9f, 0x57, 0x4a, 0x41, 0xdd, 0x07, 0x7b, 0x09, 0x87, + 0x3a, 0x62, 0x83, 0x39, 0x8b, 0xfa, 0x99, 0xbb, 0x7f, 0x3d, 0xb0, 0x7f, 0xbb, 0x6f, 0x82, 0x72, + 0xe4, 0x84, 0xd8, 0xa1, 0xf5, 0x72, 0xbb, 0x3a, 0x1b, 0x2b, 0x3b, 0x31, 0x93, 0xc4, 0x56, 0xf5, + 0x4d, 0xfe, 0xfc, 0xc2, 0x16, 0x8f, 0x41, 0xa9, 0x87, 0x0c, 0x1b, 0x79, 0xeb, 0x5c, 0xe9, 0x11, + 0x26, 0x77, 0xc7, 0xab, 0x5d, 0x2d, 0x3b, 0xfe, 0x5e, 0x04, 0x3b, 0x61, 0x0d, 0x7b, 0x86, 0xfd, + 0x17, 0x2d, 0x27, 0x33, 0xde, 0xf8, 0x1f, 0x19, 0x17, 0xff, 0x51, 0xc6, 0xaf, 0x40, 0x75, 0xe0, + 0x51, 0x7a, 0xd9, 0x0d, 0xb8, 0xed, 0x2e, 0xd7, 0xad, 0xdd, 0xa9, 0x0b, 0x8d, 0x4a, 0x5b, 0x99, + 0x8d, 0x95, 0x03, 0xce, 0x94, 0x86, 0x52, 0x75, 0x31, 0x7c, 0x1d, 0xff, 0x64, 0xef, 0xc1, 0x61, + 0x02, 0x9c, 0xe8, 0xfd, 0x6e, 0xc8, 0xdd, 0x98, 0x8d, 0x95, 0xa3, 0x54, 0xee, 0x64, 0xcf, 0x52, + 0x4c, 0x24, 0x6b, 0x46, 0x4b, 0x19, 0x89, 0x4b, 0xa0, 0x96, 0x4c, 0x75, 0x19, 0xf9, 0x57, 0x01, + 0x3c, 0xec, 0x30, 0x7c, 0x11, 0x98, 0x0e, 0xf1, 0x3b, 0x84, 0x99, 0xa8, 0x67, 0x0c, 0x09, 0x0d, + 0xbc, 0x3f, 0xc9, 0xfd, 0x14, 0x54, 0x9c, 0x15, 0x8a, 0xb5, 0x03, 0x1b, 0x43, 0xe6, 0x18, 0x5b, + 0x05, 0x1c, 0xa6, 0xf6, 0xb9, 0x70, 0xd2, 0xfa, 0x52, 0x04, 0xc5, 0x0e, 0xc3, 0xe2, 0x3b, 0x50, + 0x89, 0xfd, 0x70, 0x1e, 0x69, 0xb7, 0xff, 0x75, 0x5a, 0xe2, 0xcc, 0x4a, 0x4f, 0x72, 0x80, 0x16, + 0x4a, 0x73, 0x85, 0xd8, 0xa1, 0xce, 0x52, 0x58, 0x05, 0x65, 0x2a, 0xa4, 0x1d, 0x44, 0xd1, 0x02, + 0xf7, 0xe2, 0x13, 0x75, 0x94, 0xb9, 0x7b, 0x05, 0x25, 0x1d, 0xe7, 0x41, 0x2d, 0x45, 0x3c, 0x20, + 0xa6, 0xc4, 0xfe, 0x38, 0x83, 0xe3, 0x36, 0x54, 0x6a, 0xe6, 0x86, 0x2e, 0x34, 0xdb, 0xfa, 0xb7, + 0x89, 0x2c, 0x5c, 0x4f, 0x64, 0xe1, 0x66, 0x22, 0x0b, 0x9f, 0xa6, 0x72, 0xe1, 0x7a, 0x2a, 0x17, + 0x7e, 0x4c, 0xe5, 0xc2, 0xdb, 0x53, 0x4c, 0xfc, 0x5e, 0x60, 0x6a, 0x16, 0x75, 0xa0, 0x45, 0x99, + 0x43, 0x19, 0x24, 0xa6, 0x75, 0x82, 0x29, 0x1c, 0xb6, 0xa0, 0x43, 0xed, 0xa0, 0x8f, 0x18, 0xbf, + 0x6c, 0x9e, 0xb6, 0x4e, 0xa2, 0xfb, 0xc6, 0x1f, 0x0d, 0x10, 0x33, 0x4b, 0xe1, 0x5c, 0x3d, 0xfb, + 0x15, 0x00, 0x00, 0xff, 0xff, 0x9e, 0xe2, 0xb3, 0xfd, 0xf1, 0x06, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/modules/core/03-connection/types/connection.pb.go b/modules/core/03-connection/types/connection.pb.go index 72046a23d6a..6ac54a6d8da 100644 --- a/modules/core/03-connection/types/connection.pb.go +++ b/modules/core/03-connection/types/connection.pb.go @@ -418,52 +418,52 @@ func init() { } var fileDescriptor_90572467c054e43a = []byte{ - // 717 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x55, 0x5f, 0x6b, 0xda, 0x5c, - 0x18, 0x37, 0x31, 0x5a, 0x3d, 0xd6, 0xf7, 0xf5, 0x3d, 0xaf, 0xbc, 0x0d, 0xbe, 0x34, 0x09, 0xd9, - 0xd8, 0x64, 0x50, 0x9d, 0x2d, 0x0c, 0xd6, 0xb1, 0x8b, 0x6a, 0x1d, 0x84, 0x6d, 0x4e, 0xa2, 0x1d, - 0xac, 0x37, 0x12, 0x93, 0x53, 0x7b, 0xa8, 0xc9, 0x91, 0xe4, 0x28, 0xfa, 0x0d, 0x4a, 0xaf, 0x76, - 0xbb, 0x8b, 0xc2, 0x60, 0xdf, 0x65, 0x94, 0x5d, 0xf5, 0x72, 0x57, 0x32, 0xda, 0xdb, 0x5d, 0xf9, - 0x09, 0x46, 0x72, 0xa2, 0xa6, 0x65, 0x1d, 0xb4, 0xdb, 0xdd, 0xf3, 0xe4, 0xf7, 0xc7, 0xe7, 0xf9, - 0xf9, 0x18, 0xc1, 0x43, 0xdc, 0x35, 0xcb, 0x26, 0x71, 0x51, 0xd9, 0x24, 0x8e, 0x83, 0x4c, 0x8a, - 0x89, 0x53, 0x1e, 0x55, 0x22, 0x5d, 0x69, 0xe0, 0x12, 0x4a, 0xe0, 0x7f, 0xb8, 0x6b, 0x96, 0x7c, - 0x62, 0x29, 0x02, 0x8d, 0x2a, 0x85, 0x7c, 0x8f, 0xf4, 0x48, 0x40, 0x29, 0xfb, 0x15, 0x63, 0x17, - 0xa2, 0xb6, 0xb6, 0x8d, 0xa9, 0x8d, 0x1c, 0xca, 0x6c, 0xe7, 0x1d, 0x23, 0xaa, 0x9f, 0x79, 0x90, - 0xad, 0x2d, 0x0c, 0xeb, 0x8e, 0x05, 0x2b, 0x20, 0x6d, 0xf6, 0x31, 0x72, 0x68, 0x07, 0x5b, 0x22, - 0xa7, 0x70, 0xc5, 0x74, 0x35, 0x3f, 0x9b, 0xca, 0xb9, 0x89, 0x61, 0xf7, 0xb7, 0xd5, 0x05, 0xa4, - 0xea, 0x29, 0x56, 0x6b, 0x16, 0x7c, 0x06, 0x52, 0x23, 0xe4, 0x7a, 0x98, 0x38, 0x9e, 0xc8, 0x2b, - 0xf1, 0x62, 0x66, 0x53, 0x2e, 0xfd, 0x7c, 0xdc, 0xd2, 0x5b, 0xc6, 0xd3, 0x17, 0x02, 0xb8, 0x05, - 0x12, 0x1e, 0x35, 0x28, 0x12, 0xe3, 0x0a, 0x57, 0xfc, 0x6b, 0x73, 0xfd, 0x26, 0x65, 0xcb, 0x27, - 0xe9, 0x8c, 0x0b, 0x1b, 0x60, 0xd5, 0x24, 0x43, 0x87, 0x22, 0x77, 0x60, 0xb8, 0x74, 0x22, 0x0a, - 0x0a, 0x57, 0xcc, 0x6c, 0xde, 0xbf, 0x49, 0x5b, 0x8b, 0x70, 0xab, 0xc2, 0xd9, 0x54, 0x8e, 0xe9, - 0x57, 0xf4, 0x70, 0x1b, 0xac, 0x5a, 0xa8, 0x6f, 0x4c, 0x3a, 0x03, 0xe4, 0x62, 0x62, 0x89, 0x09, - 0x85, 0x2b, 0x0a, 0xd5, 0xb5, 0xd9, 0x54, 0xfe, 0x97, 0xed, 0x1d, 0x45, 0x55, 0x3d, 0x13, 0xb4, - 0xcd, 0xa0, 0xdb, 0x16, 0x8e, 0x3f, 0xca, 0x31, 0xf5, 0x3b, 0x0f, 0xf2, 0x9a, 0x85, 0x1c, 0x8a, - 0x0f, 0x30, 0xb2, 0x96, 0x91, 0xc2, 0x75, 0xc0, 0x2f, 0x82, 0xcc, 0xce, 0xa6, 0x72, 0x9a, 0x19, - 0xfa, 0x09, 0xf2, 0xf8, 0x5a, 0xdc, 0xfc, 0xad, 0xe3, 0x8e, 0xdf, 0x39, 0x6e, 0xe1, 0x37, 0xe2, - 0x4e, 0xfc, 0xe1, 0xb8, 0x93, 0xb7, 0x8e, 0xfb, 0x0b, 0x07, 0x56, 0xa3, 0x1f, 0x73, 0x97, 0xb3, - 0x7d, 0x0e, 0xb2, 0xcb, 0xb9, 0x97, 0xf1, 0x8b, 0xb3, 0xa9, 0x9c, 0x0f, 0x65, 0x51, 0x58, 0xf5, - 0x97, 0x98, 0xf7, 0x9a, 0x05, 0xab, 0x20, 0x39, 0x70, 0xd1, 0x01, 0x1e, 0x07, 0x97, 0x7b, 0x2d, - 0x8e, 0xc5, 0xcf, 0x6c, 0x54, 0x29, 0xbd, 0x46, 0xee, 0x51, 0x1f, 0x35, 0x03, 0x6e, 0x18, 0x47, - 0xa8, 0x0c, 0x97, 0xb9, 0x07, 0x32, 0xb5, 0x60, 0xa8, 0xa6, 0x41, 0x0f, 0x3d, 0x98, 0x07, 0x89, - 0x81, 0x5f, 0x88, 0x9c, 0x12, 0x2f, 0xa6, 0x75, 0xd6, 0xa8, 0xfb, 0xe0, 0xef, 0xe5, 0x55, 0x31, - 0xe2, 0x1d, 0x76, 0x5e, 0x78, 0xf3, 0x51, 0xef, 0x97, 0x60, 0x25, 0xbc, 0x14, 0x28, 0x01, 0x80, - 0xe7, 0x67, 0xec, 0x32, 0x53, 0x3d, 0xf2, 0x04, 0x16, 0x40, 0xea, 0x00, 0x19, 0x74, 0xe8, 0xa2, - 0xb9, 0xc7, 0xa2, 0x0f, 0xb7, 0x71, 0x40, 0xb2, 0x69, 0xb8, 0x86, 0xed, 0x41, 0x0b, 0xfc, 0x6f, - 0x1b, 0xe3, 0x0e, 0x1a, 0x0f, 0x90, 0x49, 0x91, 0xd5, 0xa1, 0xd8, 0x46, 0xfe, 0x97, 0xda, 0xe9, - 0xf6, 0x89, 0x79, 0x14, 0x98, 0x0b, 0xd5, 0x07, 0xb3, 0xa9, 0xac, 0xb2, 0x89, 0x7f, 0x41, 0x56, - 0xf5, 0x35, 0xdb, 0x18, 0xd7, 0x43, 0xb0, 0x8d, 0x6d, 0xd4, 0x44, 0x6e, 0xd5, 0x47, 0x1e, 0x7d, - 0xe0, 0x40, 0x22, 0xb8, 0x56, 0xf8, 0x04, 0xc8, 0xad, 0xf6, 0x4e, 0xbb, 0xde, 0xd9, 0x6b, 0x68, - 0x0d, 0xad, 0xad, 0xed, 0xbc, 0xd2, 0xf6, 0xeb, 0xbb, 0x9d, 0xbd, 0x46, 0xab, 0x59, 0xaf, 0x69, - 0x2f, 0xb4, 0xfa, 0x6e, 0x2e, 0x56, 0xf8, 0xe7, 0xe4, 0x54, 0xc9, 0x5e, 0x21, 0x40, 0x11, 0x00, - 0xa6, 0xf3, 0x1f, 0xe6, 0xb8, 0x42, 0xea, 0xe4, 0x54, 0x11, 0xfc, 0x1a, 0x4a, 0x20, 0xcb, 0x90, - 0xb6, 0xfe, 0xee, 0x4d, 0xb3, 0xde, 0xc8, 0xf1, 0x85, 0xcc, 0xc9, 0xa9, 0xb2, 0x12, 0xb6, 0x4b, - 0x65, 0x00, 0xc6, 0x99, 0xd2, 0xaf, 0x0b, 0xc2, 0xf1, 0x27, 0x29, 0x56, 0x6d, 0x9d, 0x5d, 0x48, - 0xdc, 0xf9, 0x85, 0xc4, 0x7d, 0xbb, 0x90, 0xb8, 0xf7, 0x97, 0x52, 0xec, 0xfc, 0x52, 0x8a, 0x7d, - 0xbd, 0x94, 0x62, 0xfb, 0x4f, 0x7b, 0x98, 0x1e, 0x0e, 0xbb, 0xfe, 0xa9, 0x94, 0x4d, 0xe2, 0xd9, - 0xc4, 0x2b, 0xe3, 0xae, 0xb9, 0xd1, 0x23, 0x65, 0x9b, 0x58, 0xc3, 0x3e, 0xf2, 0xd8, 0xeb, 0xfb, - 0xf1, 0xd6, 0x46, 0xe4, 0x8f, 0x81, 0x4e, 0x06, 0xc8, 0xeb, 0x26, 0x83, 0x57, 0xf7, 0xd6, 0x8f, - 0x00, 0x00, 0x00, 0xff, 0xff, 0xb4, 0x83, 0x45, 0x2b, 0x3c, 0x06, 0x00, 0x00, + // 716 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x55, 0x4f, 0x6f, 0xd2, 0x60, + 0x18, 0xa7, 0xa5, 0x30, 0x78, 0x19, 0x8a, 0x95, 0xb8, 0x06, 0xb3, 0xb6, 0xa9, 0x46, 0x89, 0xc9, + 0xa8, 0xb0, 0xc4, 0xc3, 0xd4, 0xc3, 0x60, 0x98, 0x34, 0x2a, 0x92, 0x8e, 0x2d, 0x71, 0x17, 0x52, + 0xda, 0x77, 0xec, 0xcd, 0x68, 0x5f, 0xd2, 0xbe, 0x10, 0xf8, 0x06, 0xcb, 0x4e, 0x5e, 0x3d, 0x2c, + 0x31, 0xf1, 0xbb, 0x98, 0xc5, 0xd3, 0x8e, 0x9e, 0x88, 0xd9, 0xae, 0x9e, 0xf8, 0x04, 0xa6, 0x7d, + 0x0b, 0x74, 0x8b, 0x33, 0xd9, 0xf4, 0xf6, 0x3c, 0xfd, 0xfd, 0xe1, 0x79, 0x7e, 0x3c, 0x14, 0xf0, + 0x14, 0x75, 0x4c, 0xd5, 0xc4, 0x2e, 0x54, 0x4d, 0xec, 0x38, 0xd0, 0x24, 0x08, 0x3b, 0xea, 0xb0, + 0x1c, 0xe9, 0x4a, 0x7d, 0x17, 0x13, 0xcc, 0x3f, 0x40, 0x1d, 0xb3, 0xe4, 0x13, 0x4b, 0x11, 0x68, + 0x58, 0x2e, 0xe4, 0xbb, 0xb8, 0x8b, 0x03, 0x8a, 0xea, 0x57, 0x94, 0x5d, 0x88, 0xda, 0xda, 0x36, + 0x22, 0x36, 0x74, 0x08, 0xb5, 0x9d, 0x75, 0x94, 0xa8, 0x7c, 0x63, 0x41, 0xb6, 0x36, 0x37, 0xac, + 0x3b, 0x16, 0x5f, 0x06, 0x69, 0xb3, 0x87, 0xa0, 0x43, 0xda, 0xc8, 0x12, 0x18, 0x99, 0x29, 0xa6, + 0xab, 0xf9, 0xe9, 0x44, 0xca, 0x8d, 0x0d, 0xbb, 0xb7, 0xa1, 0xcc, 0x21, 0x45, 0x4f, 0xd1, 0x5a, + 0xb3, 0xf8, 0x97, 0x20, 0x35, 0x84, 0xae, 0x87, 0xb0, 0xe3, 0x09, 0xac, 0x1c, 0x2f, 0x66, 0x2a, + 0x52, 0xe9, 0xcf, 0xe3, 0x96, 0x76, 0x29, 0x4f, 0x9f, 0x0b, 0xf8, 0x75, 0x90, 0xf0, 0x88, 0x41, + 0xa0, 0x10, 0x97, 0x99, 0xe2, 0x9d, 0xca, 0xea, 0x75, 0xca, 0x6d, 0x9f, 0xa4, 0x53, 0x2e, 0xdf, + 0x00, 0xcb, 0x26, 0x1e, 0x38, 0x04, 0xba, 0x7d, 0xc3, 0x25, 0x63, 0x81, 0x93, 0x99, 0x62, 0xa6, + 0xf2, 0xf8, 0x3a, 0x6d, 0x2d, 0xc2, 0xad, 0x72, 0xa7, 0x13, 0x29, 0xa6, 0x5f, 0xd2, 0xf3, 0x1b, + 0x60, 0xd9, 0x82, 0x3d, 0x63, 0xdc, 0xee, 0x43, 0x17, 0x61, 0x4b, 0x48, 0xc8, 0x4c, 0x91, 0xab, + 0xae, 0x4c, 0x27, 0xd2, 0x7d, 0xba, 0x77, 0x14, 0x55, 0xf4, 0x4c, 0xd0, 0x36, 0x83, 0x6e, 0x83, + 0x3b, 0xfa, 0x22, 0xc5, 0x94, 0x5f, 0x2c, 0xc8, 0x6b, 0x16, 0x74, 0x08, 0xda, 0x47, 0xd0, 0x5a, + 0x44, 0xca, 0xaf, 0x02, 0x76, 0x1e, 0x64, 0x76, 0x3a, 0x91, 0xd2, 0xd4, 0xd0, 0x4f, 0x90, 0x45, + 0x57, 0xe2, 0x66, 0x6f, 0x1c, 0x77, 0xfc, 0xd6, 0x71, 0x73, 0xff, 0x10, 0x77, 0xe2, 0x3f, 0xc7, + 0x9d, 0xbc, 0x71, 0xdc, 0xdf, 0x19, 0xb0, 0x1c, 0xfd, 0x98, 0xdb, 0x9c, 0xed, 0x6b, 0x90, 0x5d, + 0xcc, 0xbd, 0x88, 0x5f, 0x98, 0x4e, 0xa4, 0x7c, 0x28, 0x8b, 0xc2, 0x8a, 0xbf, 0xc4, 0xac, 0xd7, + 0x2c, 0xbe, 0x0a, 0x92, 0x7d, 0x17, 0xee, 0xa3, 0x51, 0x70, 0xb9, 0x57, 0xe2, 0x98, 0xff, 0xcc, + 0x86, 0xe5, 0xd2, 0x7b, 0xe8, 0x1e, 0xf6, 0x60, 0x33, 0xe0, 0x86, 0x71, 0x84, 0xca, 0x70, 0x99, + 0x47, 0x20, 0x53, 0x0b, 0x86, 0x6a, 0x1a, 0xe4, 0xc0, 0xe3, 0xf3, 0x20, 0xd1, 0xf7, 0x0b, 0x81, + 0x91, 0xe3, 0xc5, 0xb4, 0x4e, 0x1b, 0x65, 0x0f, 0xdc, 0x5d, 0x5c, 0x15, 0x25, 0xde, 0x62, 0xe7, + 0xb9, 0x37, 0x1b, 0xf5, 0x7e, 0x0b, 0x96, 0xc2, 0x4b, 0xe1, 0x45, 0x00, 0xd0, 0xec, 0x8c, 0x5d, + 0x6a, 0xaa, 0x47, 0x9e, 0xf0, 0x05, 0x90, 0xda, 0x87, 0x06, 0x19, 0xb8, 0x70, 0xe6, 0x31, 0xef, + 0xc3, 0x6d, 0x1c, 0x90, 0x6c, 0x1a, 0xae, 0x61, 0x7b, 0xbc, 0x05, 0x1e, 0xda, 0xc6, 0xa8, 0x0d, + 0x47, 0x7d, 0x68, 0x12, 0x68, 0xb5, 0x09, 0xb2, 0xa1, 0xff, 0xa5, 0xb6, 0x3b, 0x3d, 0x6c, 0x1e, + 0x06, 0xe6, 0x5c, 0xf5, 0xc9, 0x74, 0x22, 0x29, 0x74, 0xe2, 0xbf, 0x90, 0x15, 0x7d, 0xc5, 0x36, + 0x46, 0xf5, 0x10, 0x6c, 0x21, 0x1b, 0x36, 0xa1, 0x5b, 0xf5, 0x91, 0x67, 0x9f, 0x19, 0x90, 0x08, + 0xae, 0x95, 0x7f, 0x01, 0xa4, 0xed, 0xd6, 0x66, 0xab, 0xde, 0xde, 0x69, 0x68, 0x0d, 0xad, 0xa5, + 0x6d, 0xbe, 0xd3, 0xf6, 0xea, 0x5b, 0xed, 0x9d, 0xc6, 0x76, 0xb3, 0x5e, 0xd3, 0xde, 0x68, 0xf5, + 0xad, 0x5c, 0xac, 0x70, 0xef, 0xf8, 0x44, 0xce, 0x5e, 0x22, 0xf0, 0x02, 0x00, 0x54, 0xe7, 0x3f, + 0xcc, 0x31, 0x85, 0xd4, 0xf1, 0x89, 0xcc, 0xf9, 0x35, 0x2f, 0x82, 0x2c, 0x45, 0x5a, 0xfa, 0xc7, + 0x0f, 0xcd, 0x7a, 0x23, 0xc7, 0x16, 0x32, 0xc7, 0x27, 0xf2, 0x52, 0xd8, 0x2e, 0x94, 0x01, 0x18, + 0xa7, 0x4a, 0xbf, 0x2e, 0x70, 0x47, 0x5f, 0xc5, 0x58, 0x75, 0xf7, 0xf4, 0x5c, 0x64, 0xce, 0xce, + 0x45, 0xe6, 0xe7, 0xb9, 0xc8, 0x7c, 0xba, 0x10, 0x63, 0x67, 0x17, 0x62, 0xec, 0xc7, 0x85, 0x18, + 0xdb, 0x7b, 0xd5, 0x45, 0xe4, 0x60, 0xd0, 0xf1, 0x4f, 0x45, 0x35, 0xb1, 0x67, 0x63, 0x4f, 0x45, + 0x1d, 0x73, 0xad, 0x8b, 0xd5, 0x61, 0x45, 0xb5, 0xb1, 0x35, 0xe8, 0x41, 0x8f, 0xbe, 0xc1, 0x9f, + 0xaf, 0xaf, 0x45, 0xfe, 0x1b, 0xc8, 0xb8, 0x0f, 0xbd, 0x4e, 0x32, 0x78, 0x7b, 0xaf, 0xff, 0x0e, + 0x00, 0x00, 0xff, 0xff, 0x1a, 0x3a, 0xc8, 0x14, 0x3f, 0x06, 0x00, 0x00, } func (m *ConnectionEnd) Marshal() (dAtA []byte, err error) { diff --git a/modules/core/03-connection/types/genesis.pb.go b/modules/core/03-connection/types/genesis.pb.go index 2efa4395200..549e00faa98 100644 --- a/modules/core/03-connection/types/genesis.pb.go +++ b/modules/core/03-connection/types/genesis.pb.go @@ -102,29 +102,30 @@ func init() { } var fileDescriptor_1879d34bc6ac3cd7 = []byte{ - // 352 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x91, 0xb1, 0x4e, 0xc2, 0x40, - 0x18, 0xc7, 0x5b, 0x21, 0x0c, 0xc5, 0xa9, 0x51, 0x6c, 0x18, 0xae, 0xa4, 0x1a, 0x61, 0x90, 0x3b, - 0x81, 0x49, 0xe3, 0x54, 0x07, 0xe3, 0x46, 0xc0, 0xc9, 0xc4, 0x90, 0xf6, 0xf8, 0x2c, 0x97, 0xd0, - 0xbb, 0xca, 0x1d, 0x44, 0x9e, 0xc0, 0xc1, 0xc5, 0xc7, 0x62, 0x64, 0x74, 0x22, 0x06, 0xde, 0x80, - 0x27, 0x30, 0x6d, 0x89, 0x45, 0x63, 0xb7, 0xe6, 0xfb, 0x7e, 0xff, 0xdf, 0x3f, 0xbd, 0xcf, 0x38, - 0x63, 0x3e, 0x25, 0x54, 0x4c, 0x80, 0x50, 0xc1, 0x39, 0x50, 0xc5, 0x04, 0x27, 0xb3, 0x16, 0x09, - 0x80, 0x83, 0x64, 0x12, 0x47, 0x13, 0xa1, 0x84, 0x59, 0x61, 0x3e, 0xc5, 0x31, 0x85, 0x33, 0x0a, - 0xcf, 0x5a, 0xd5, 0xa3, 0x40, 0x04, 0x22, 0x41, 0x48, 0xfc, 0x95, 0xd2, 0xd5, 0x7a, 0x8e, 0x73, - 0x2f, 0x9b, 0x80, 0xce, 0x7b, 0xc1, 0x38, 0xbc, 0x4b, 0x8b, 0xfa, 0xca, 0x53, 0x60, 0x3e, 0x18, - 0xe5, 0x0c, 0x92, 0x96, 0x5e, 0x2b, 0x34, 0xca, 0xed, 0x0b, 0xfc, 0x7f, 0x3b, 0xbe, 0x1f, 0x02, - 0x57, 0xec, 0x99, 0xc1, 0xf0, 0xf6, 0x67, 0xee, 0x16, 0x17, 0x2b, 0x5b, 0xeb, 0xed, 0x6b, 0xcc, - 0x37, 0xdd, 0x38, 0xa1, 0x63, 0x06, 0x5c, 0x0d, 0xb2, 0xf1, 0x20, 0xf2, 0xd4, 0x48, 0x5a, 0x07, - 0x49, 0x45, 0x3d, 0xaf, 0x22, 0x13, 0x77, 0x63, 0xdc, 0x3d, 0x8f, 0xed, 0xdb, 0x95, 0x8d, 0xe6, - 0x5e, 0x38, 0xbe, 0x76, 0x72, 0xac, 0x4e, 0xef, 0x38, 0xdd, 0xfc, 0x89, 0x9b, 0x4f, 0x86, 0xc5, - 0xe1, 0xf5, 0x57, 0x40, 0xc2, 0xcb, 0x14, 0x38, 0x05, 0xab, 0x50, 0xd3, 0x1b, 0x45, 0xf7, 0x74, - 0xbb, 0xb2, 0xed, 0x54, 0x9e, 0x47, 0x3a, 0xbd, 0x4a, 0xbc, 0xca, 0xdc, 0xfd, 0xdd, 0xc2, 0xbc, - 0x31, 0x4a, 0x91, 0x37, 0xf1, 0x42, 0x69, 0x15, 0x6b, 0x7a, 0xa3, 0xdc, 0x46, 0x79, 0xbf, 0xd5, - 0x4d, 0xa8, 0xdd, 0x5b, 0xed, 0x32, 0x6e, 0x7f, 0xb1, 0x46, 0xfa, 0x72, 0x8d, 0xf4, 0xaf, 0x35, - 0xd2, 0x3f, 0x36, 0x48, 0x5b, 0x6e, 0x90, 0xf6, 0xb9, 0x41, 0xda, 0xe3, 0x55, 0xc0, 0xd4, 0x68, - 0xea, 0x63, 0x2a, 0x42, 0x42, 0x85, 0x0c, 0x85, 0x24, 0xcc, 0xa7, 0xcd, 0x40, 0x90, 0x50, 0x0c, - 0xa7, 0x63, 0x90, 0xe9, 0xb5, 0x2f, 0x3b, 0xcd, 0xbd, 0x83, 0xab, 0x79, 0x04, 0xd2, 0x2f, 0x25, - 0x97, 0xee, 0x7c, 0x07, 0x00, 0x00, 0xff, 0xff, 0x5a, 0x52, 0xa6, 0xc4, 0x68, 0x02, 0x00, 0x00, + // 356 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x91, 0x31, 0x4f, 0xf2, 0x40, + 0x18, 0xc7, 0xdb, 0x17, 0xc2, 0x50, 0xde, 0xa9, 0x51, 0x6c, 0x18, 0xae, 0xa4, 0x1a, 0x61, 0x90, + 0x3b, 0x81, 0xcd, 0x30, 0xd5, 0xc1, 0xb8, 0x11, 0x30, 0x0e, 0x26, 0x86, 0xb4, 0xc7, 0x63, 0xb9, + 0x84, 0xde, 0x55, 0xee, 0x20, 0xf2, 0x09, 0x1c, 0x5c, 0xfc, 0x58, 0x8c, 0x8c, 0x4e, 0xc4, 0xc0, + 0x37, 0xe0, 0x13, 0x98, 0xb6, 0xc4, 0xa2, 0xb1, 0x5b, 0xf3, 0x3c, 0xbf, 0xff, 0xef, 0x9f, 0xde, + 0x63, 0x9c, 0x31, 0x9f, 0x12, 0x2a, 0xa6, 0x40, 0xa8, 0xe0, 0x1c, 0xa8, 0x62, 0x82, 0x93, 0x79, + 0x8b, 0x04, 0xc0, 0x41, 0x32, 0x89, 0xa3, 0xa9, 0x50, 0xc2, 0xac, 0x30, 0x9f, 0xe2, 0x98, 0xc2, + 0x19, 0x85, 0xe7, 0xad, 0xea, 0x51, 0x20, 0x02, 0x91, 0x20, 0x24, 0xfe, 0x4a, 0xe9, 0x6a, 0x3d, + 0xc7, 0x79, 0x90, 0x4d, 0x40, 0xe7, 0xad, 0x60, 0xfc, 0xbf, 0x49, 0x8b, 0x06, 0xca, 0x53, 0x60, + 0xde, 0x19, 0xe5, 0x0c, 0x92, 0x96, 0x5e, 0x2b, 0x34, 0xca, 0xed, 0x0b, 0xfc, 0x77, 0x3b, 0xbe, + 0x1d, 0x01, 0x57, 0xec, 0x89, 0xc1, 0xe8, 0xfa, 0x7b, 0xee, 0x16, 0x97, 0x6b, 0x5b, 0xeb, 0x1f, + 0x6a, 0xcc, 0x57, 0xdd, 0x38, 0xa1, 0x13, 0x06, 0x5c, 0x0d, 0xb3, 0xf1, 0x30, 0xf2, 0xd4, 0x58, + 0x5a, 0xff, 0x92, 0x8a, 0x7a, 0x5e, 0x45, 0x26, 0xee, 0xc5, 0xb8, 0x7b, 0x1e, 0xdb, 0x77, 0x6b, + 0x1b, 0x2d, 0xbc, 0x70, 0x72, 0xe5, 0xe4, 0x58, 0x9d, 0xfe, 0x71, 0xba, 0xf9, 0x15, 0x37, 0x1f, + 0x0d, 0x8b, 0xc3, 0xcb, 0x8f, 0x80, 0x84, 0xe7, 0x19, 0x70, 0x0a, 0x56, 0xa1, 0xa6, 0x37, 0x8a, + 0xee, 0xe9, 0x6e, 0x6d, 0xdb, 0xa9, 0x3c, 0x8f, 0x74, 0xfa, 0x95, 0x78, 0x95, 0xb9, 0x07, 0xfb, + 0x85, 0xd9, 0x35, 0x4a, 0x91, 0x37, 0xf5, 0x42, 0x69, 0x15, 0x6b, 0x7a, 0xa3, 0xdc, 0x46, 0x79, + 0xbf, 0xd5, 0x4b, 0xa8, 0xfd, 0x5b, 0xed, 0x33, 0xee, 0xfd, 0x72, 0x83, 0xf4, 0xd5, 0x06, 0xe9, + 0x9f, 0x1b, 0xa4, 0xbf, 0x6f, 0x91, 0xb6, 0xda, 0x22, 0xed, 0x63, 0x8b, 0xb4, 0x87, 0x6e, 0xc0, + 0xd4, 0x78, 0xe6, 0x63, 0x2a, 0x42, 0x42, 0x85, 0x0c, 0x85, 0x24, 0xcc, 0xa7, 0xcd, 0x40, 0x90, + 0x79, 0x9b, 0x84, 0x62, 0x34, 0x9b, 0x80, 0x4c, 0x0f, 0x7e, 0xd9, 0x69, 0x1e, 0xdc, 0x5c, 0x2d, + 0x22, 0x90, 0x7e, 0x29, 0x39, 0x76, 0xe7, 0x2b, 0x00, 0x00, 0xff, 0xff, 0xc3, 0x80, 0x94, 0x16, + 0x6b, 0x02, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/modules/core/03-connection/types/query.pb.go b/modules/core/03-connection/types/query.pb.go index eb064d9a6e2..280618ade16 100644 --- a/modules/core/03-connection/types/query.pb.go +++ b/modules/core/03-connection/types/query.pb.go @@ -635,63 +635,63 @@ func init() { } var fileDescriptor_cd8d529f8c7cd06b = []byte{ - // 892 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0x41, 0x6f, 0x1b, 0x45, - 0x14, 0xf6, 0x38, 0x69, 0xd5, 0x8c, 0x43, 0x0b, 0x23, 0xb7, 0x35, 0x0b, 0x38, 0x61, 0x4b, 0x48, - 0x0a, 0x74, 0xa6, 0x4e, 0xd4, 0xaa, 0x2d, 0x31, 0x02, 0x47, 0x81, 0xe4, 0x12, 0x85, 0xcd, 0x8d, - 0x4b, 0xb4, 0xbb, 0x9e, 0xac, 0x57, 0xb2, 0x77, 0x1c, 0xcf, 0xda, 0xc8, 0x8a, 0x2c, 0x24, 0xfe, - 0x00, 0x48, 0x5c, 0xb8, 0x70, 0xe5, 0xc0, 0x1f, 0xe0, 0xc0, 0x8d, 0x53, 0x8e, 0x91, 0xb8, 0xe4, - 0x14, 0x21, 0x87, 0x2b, 0x17, 0x7e, 0x01, 0xda, 0x99, 0x71, 0x76, 0xd6, 0x5e, 0x27, 0x8e, 0xd5, - 0xdc, 0x36, 0x6f, 0xde, 0x9b, 0xf7, 0x7d, 0xdf, 0x7b, 0xf3, 0x39, 0xd0, 0xf4, 0x1d, 0x97, 0xb8, - 0xac, 0x45, 0x89, 0xcb, 0x82, 0x80, 0xba, 0xa1, 0xcf, 0x02, 0xd2, 0x29, 0x91, 0xc3, 0x36, 0x6d, - 0x75, 0x71, 0xb3, 0xc5, 0x42, 0x86, 0x1e, 0xf8, 0x8e, 0x8b, 0xa3, 0x1c, 0x1c, 0xe7, 0xe0, 0x4e, - 0xc9, 0xc8, 0x7b, 0xcc, 0x63, 0x22, 0x85, 0x44, 0x5f, 0x32, 0xdb, 0xf8, 0xc8, 0x65, 0xbc, 0xc1, - 0x38, 0x71, 0x6c, 0x4e, 0xe5, 0x35, 0xa4, 0x53, 0x72, 0x68, 0x68, 0x97, 0x48, 0xd3, 0xf6, 0xfc, - 0xc0, 0x16, 0xe5, 0x32, 0x77, 0x21, 0xee, 0x5e, 0xf7, 0x69, 0x10, 0x46, 0x9d, 0xe5, 0x97, 0x4a, - 0x58, 0x1e, 0x03, 0x4f, 0x03, 0x22, 0x13, 0xdf, 0xf5, 0x18, 0xf3, 0xea, 0x94, 0xd8, 0x4d, 0x9f, - 0xd8, 0x41, 0xc0, 0x42, 0xd1, 0x86, 0xab, 0xd3, 0xb7, 0xd5, 0xa9, 0xf8, 0xcb, 0x69, 0x1f, 0x10, - 0x3b, 0x50, 0xe4, 0xcc, 0x32, 0x7c, 0xf0, 0x75, 0x04, 0x72, 0xe3, 0xe2, 0x46, 0x8b, 0x1e, 0xb6, - 0x29, 0x0f, 0xd1, 0x23, 0xf8, 0x46, 0xdc, 0x66, 0xdf, 0xaf, 0x16, 0xc0, 0x22, 0x58, 0x99, 0xb3, - 0xe6, 0xe3, 0xe0, 0x76, 0xd5, 0xfc, 0x03, 0xc0, 0x87, 0x23, 0xf5, 0xbc, 0xc9, 0x02, 0x4e, 0xd1, - 0x26, 0x84, 0x71, 0xae, 0xa8, 0xce, 0xad, 0x2e, 0xe1, 0x74, 0x31, 0x71, 0x5c, 0xbf, 0x19, 0x54, - 0x2d, 0xad, 0x10, 0xe5, 0xe1, 0xad, 0x66, 0x8b, 0xb1, 0x83, 0x42, 0x76, 0x11, 0xac, 0xcc, 0x5b, - 0xf2, 0x0f, 0xb4, 0x01, 0xe7, 0xc5, 0xc7, 0x7e, 0x8d, 0xfa, 0x5e, 0x2d, 0x2c, 0xcc, 0x88, 0xeb, - 0x0d, 0xed, 0x7a, 0xa9, 0x63, 0xa7, 0x84, 0xb7, 0x44, 0x46, 0x65, 0xf6, 0xf8, 0x6c, 0x21, 0x63, - 0xe5, 0x44, 0x95, 0x0c, 0x99, 0xf6, 0x08, 0x78, 0x3e, 0x60, 0xff, 0x25, 0x84, 0xf1, 0xb8, 0x14, - 0xf8, 0x0f, 0xb1, 0x9c, 0x2d, 0x8e, 0x66, 0x8b, 0xe5, 0x8a, 0xa8, 0xd9, 0xe2, 0x5d, 0xdb, 0xa3, - 0xaa, 0xd6, 0xd2, 0x2a, 0xcd, 0x7f, 0x01, 0x2c, 0x8c, 0xf6, 0x50, 0x0a, 0xed, 0xc0, 0x5c, 0x4c, - 0x94, 0x17, 0xc0, 0xe2, 0xcc, 0x4a, 0x6e, 0xf5, 0x93, 0x71, 0x12, 0x6d, 0x57, 0x69, 0x10, 0xfa, - 0x07, 0x3e, 0xad, 0x6a, 0x62, 0xeb, 0x17, 0xa0, 0xaf, 0x12, 0xa0, 0xb3, 0x02, 0xf4, 0xf2, 0x95, - 0xa0, 0x25, 0x18, 0x1d, 0x35, 0x7a, 0x01, 0x6f, 0x5f, 0x53, 0x57, 0x95, 0x6f, 0xae, 0xc3, 0xf7, - 0x24, 0x5d, 0x91, 0x96, 0x22, 0xec, 0x3b, 0x70, 0x4e, 0x5e, 0x11, 0xaf, 0xd4, 0x1d, 0x19, 0xd8, - 0xae, 0x9a, 0xbf, 0x02, 0x58, 0x1c, 0x57, 0xae, 0x34, 0x7b, 0x0c, 0xdf, 0xd4, 0xd6, 0xb2, 0x69, - 0x87, 0x35, 0x29, 0xdc, 0x9c, 0x75, 0x2f, 0x8e, 0xef, 0x46, 0xe1, 0x9b, 0xdc, 0x1c, 0x07, 0xbe, - 0x3f, 0x34, 0x55, 0x89, 0x78, 0x2f, 0xb4, 0xc3, 0xc1, 0x1e, 0xa0, 0x72, 0xea, 0x0b, 0xaa, 0x14, - 0xfe, 0x3b, 0x5b, 0xc8, 0x77, 0xed, 0x46, 0xfd, 0x95, 0x99, 0x38, 0x36, 0x87, 0xde, 0x56, 0x1f, - 0x40, 0xf3, 0xb2, 0x26, 0x4a, 0x10, 0x1b, 0x3e, 0xf4, 0x2f, 0x36, 0x63, 0x5f, 0x69, 0xcb, 0xa3, - 0x14, 0xb5, 0xb6, 0x8f, 0xd3, 0xa8, 0x69, 0xcb, 0xa4, 0xdd, 0x79, 0xdf, 0x4f, 0x0b, 0xdf, 0xa4, - 0x90, 0xbf, 0x03, 0xf8, 0xc1, 0x30, 0xc9, 0x88, 0x56, 0xc0, 0xdb, 0xfc, 0x35, 0x8a, 0x89, 0x96, - 0xe1, 0xbd, 0x16, 0xed, 0xf8, 0x3c, 0x3a, 0x0d, 0xda, 0x0d, 0x87, 0xb6, 0x04, 0x99, 0x59, 0xeb, - 0xee, 0x20, 0xbc, 0x23, 0xa2, 0x89, 0x44, 0x8d, 0x98, 0x96, 0xa8, 0x90, 0x9f, 0x01, 0xb8, 0x74, - 0x05, 0x72, 0x35, 0xa1, 0x32, 0x8c, 0x56, 0x53, 0x9e, 0x24, 0x26, 0x93, 0xc7, 0xd2, 0x98, 0xf1, - 0xc0, 0x98, 0xf1, 0x17, 0x41, 0xd7, 0xba, 0xeb, 0x26, 0xae, 0x49, 0xbe, 0x98, 0x6c, 0xf2, 0xc5, - 0xc4, 0xa3, 0x99, 0xb9, 0x6c, 0x34, 0xb3, 0x53, 0x8c, 0x66, 0xf5, 0x87, 0x3b, 0xf0, 0x96, 0x20, - 0x88, 0x7e, 0x03, 0x10, 0xc6, 0x2c, 0x11, 0x1e, 0xe7, 0x50, 0xe9, 0xbf, 0x24, 0x06, 0x99, 0x38, - 0x5f, 0x0a, 0x66, 0x7e, 0xfa, 0xfd, 0x5f, 0xff, 0xfc, 0x94, 0x7d, 0x86, 0xd6, 0xc8, 0x95, 0xbf, - 0x7f, 0x9c, 0x1c, 0x25, 0xe6, 0xde, 0x43, 0xbf, 0x00, 0x98, 0xd3, 0x8c, 0x03, 0x4d, 0xda, 0x7d, - 0xe0, 0x50, 0xc6, 0xd3, 0xc9, 0x0b, 0x14, 0xde, 0x8f, 0x05, 0xde, 0x25, 0xf4, 0x68, 0x02, 0xbc, - 0xe8, 0x4f, 0x00, 0xdf, 0x1a, 0xb1, 0x37, 0xf4, 0xec, 0xf2, 0xa6, 0x63, 0xdc, 0xd4, 0x78, 0x7e, - 0xdd, 0x32, 0x85, 0xf8, 0x33, 0x81, 0xf8, 0x05, 0x7a, 0x3e, 0x16, 0xb1, 0xdc, 0xb8, 0xa4, 0xd0, - 0x83, 0x2d, 0xec, 0xa1, 0x53, 0x00, 0xef, 0xa7, 0xda, 0x12, 0x7a, 0x39, 0xa1, 0x7a, 0xa3, 0x7e, - 0x69, 0xbc, 0x9a, 0xa6, 0x54, 0x11, 0xda, 0x12, 0x84, 0x2a, 0xe8, 0xf3, 0x29, 0x56, 0x86, 0xe8, - 0xa6, 0x89, 0x7e, 0xce, 0xc2, 0xc2, 0xb8, 0x27, 0x8d, 0xd6, 0x27, 0x85, 0x98, 0xe6, 0x61, 0x46, - 0x79, 0xca, 0x6a, 0xc5, 0xf1, 0x3b, 0xc1, 0xb1, 0x8b, 0xbe, 0x9d, 0x8a, 0x63, 0xd2, 0x81, 0xc8, - 0xc0, 0xcd, 0xc8, 0xd1, 0x90, 0x2f, 0xf6, 0x88, 0x34, 0x0d, 0xed, 0x40, 0x06, 0x7a, 0x95, 0xbd, - 0xe3, 0x7e, 0x11, 0x9c, 0xf4, 0x8b, 0xe0, 0xef, 0x7e, 0x11, 0xfc, 0x78, 0x5e, 0xcc, 0x9c, 0x9c, - 0x17, 0x33, 0xa7, 0xe7, 0xc5, 0xcc, 0x37, 0x2f, 0x3d, 0x3f, 0xac, 0xb5, 0x1d, 0xec, 0xb2, 0x06, - 0x51, 0xff, 0x00, 0xfb, 0x8e, 0xfb, 0xc4, 0x63, 0xa4, 0xc1, 0xaa, 0xed, 0x3a, 0xe5, 0x12, 0xee, - 0xd3, 0xb5, 0x27, 0x1a, 0xe2, 0xb0, 0xdb, 0xa4, 0xdc, 0xb9, 0x2d, 0xcc, 0x6f, 0xed, 0xff, 0x00, - 0x00, 0x00, 0xff, 0xff, 0xc7, 0x37, 0x60, 0x53, 0x8b, 0x0b, 0x00, 0x00, + // 895 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0x31, 0x6f, 0x23, 0x45, + 0x14, 0xf6, 0x38, 0xb9, 0xd3, 0x65, 0x1c, 0xee, 0x60, 0xe4, 0xbb, 0x33, 0x0b, 0x38, 0x61, 0x8f, + 0x90, 0x1c, 0x70, 0x33, 0x67, 0x47, 0x77, 0x3a, 0x8e, 0x18, 0x81, 0xa3, 0x40, 0xd2, 0x44, 0x61, + 0x91, 0x28, 0x68, 0xa2, 0xdd, 0xf5, 0x64, 0xbd, 0x92, 0xbd, 0xe3, 0x78, 0xd6, 0x46, 0x56, 0x64, + 0x21, 0xf1, 0x07, 0x40, 0xa2, 0xa1, 0xa1, 0xa5, 0xe0, 0x0f, 0x50, 0xd0, 0x51, 0xa5, 0x8c, 0x44, + 0x93, 0x2a, 0x42, 0x0e, 0x2d, 0x0d, 0xbf, 0x00, 0xed, 0xcc, 0x38, 0x3b, 0x6b, 0xaf, 0x13, 0xc7, + 0x22, 0xdd, 0xe6, 0xcd, 0x7b, 0xf3, 0xbe, 0xef, 0x7b, 0x6f, 0x3e, 0x07, 0x9a, 0xbe, 0xe3, 0x12, + 0x97, 0xb5, 0x29, 0x71, 0x59, 0x10, 0x50, 0x37, 0xf4, 0x59, 0x40, 0xba, 0x25, 0x72, 0xd8, 0xa1, + 0xed, 0x1e, 0x6e, 0xb5, 0x59, 0xc8, 0xd0, 0x03, 0xdf, 0x71, 0x71, 0x94, 0x83, 0xe3, 0x1c, 0xdc, + 0x2d, 0x19, 0x79, 0x8f, 0x79, 0x4c, 0xa4, 0x90, 0xe8, 0x4b, 0x66, 0x1b, 0xef, 0xb9, 0x8c, 0x37, + 0x19, 0x27, 0x8e, 0xcd, 0xa9, 0xbc, 0x86, 0x74, 0x4b, 0x0e, 0x0d, 0xed, 0x12, 0x69, 0xd9, 0x9e, + 0x1f, 0xd8, 0xa2, 0x5c, 0xe6, 0x2e, 0xc5, 0xdd, 0x1b, 0x3e, 0x0d, 0xc2, 0xa8, 0xb3, 0xfc, 0x52, + 0x09, 0xab, 0x13, 0xe0, 0x69, 0x40, 0x64, 0xe2, 0x9b, 0x1e, 0x63, 0x5e, 0x83, 0x12, 0xbb, 0xe5, + 0x13, 0x3b, 0x08, 0x58, 0x28, 0xda, 0x70, 0x75, 0xfa, 0xba, 0x3a, 0x15, 0x7f, 0x39, 0x9d, 0x03, + 0x62, 0x07, 0x8a, 0x9c, 0x59, 0x81, 0x0f, 0xbe, 0x88, 0x40, 0x6e, 0x5e, 0xdc, 0x68, 0xd1, 0xc3, + 0x0e, 0xe5, 0x21, 0x7a, 0x04, 0x5f, 0x89, 0xdb, 0xec, 0xfb, 0xb5, 0x02, 0x58, 0x06, 0x6b, 0x0b, + 0xd6, 0x62, 0x1c, 0xdc, 0xa9, 0x99, 0xbf, 0x03, 0xf8, 0x70, 0xac, 0x9e, 0xb7, 0x58, 0xc0, 0x29, + 0xda, 0x82, 0x30, 0xce, 0x15, 0xd5, 0xb9, 0xf2, 0x0a, 0x4e, 0x17, 0x13, 0xc7, 0xf5, 0x5b, 0x41, + 0xcd, 0xd2, 0x0a, 0x51, 0x1e, 0xde, 0x6a, 0xb5, 0x19, 0x3b, 0x28, 0x64, 0x97, 0xc1, 0xda, 0xa2, + 0x25, 0xff, 0x40, 0x9b, 0x70, 0x51, 0x7c, 0xec, 0xd7, 0xa9, 0xef, 0xd5, 0xc3, 0xc2, 0x9c, 0xb8, + 0xde, 0xd0, 0xae, 0x97, 0x3a, 0x76, 0x4b, 0x78, 0x5b, 0x64, 0x54, 0xe7, 0x8f, 0xcf, 0x96, 0x32, + 0x56, 0x4e, 0x54, 0xc9, 0x90, 0x69, 0x8f, 0x81, 0xe7, 0x43, 0xf6, 0x9f, 0x41, 0x18, 0x8f, 0x4b, + 0x81, 0x7f, 0x17, 0xcb, 0xd9, 0xe2, 0x68, 0xb6, 0x58, 0xae, 0x88, 0x9a, 0x2d, 0xde, 0xb3, 0x3d, + 0xaa, 0x6a, 0x2d, 0xad, 0xd2, 0xfc, 0x07, 0xc0, 0xc2, 0x78, 0x0f, 0xa5, 0xd0, 0x2e, 0xcc, 0xc5, + 0x44, 0x79, 0x01, 0x2c, 0xcf, 0xad, 0xe5, 0xca, 0x1f, 0x4c, 0x92, 0x68, 0xa7, 0x46, 0x83, 0xd0, + 0x3f, 0xf0, 0x69, 0x4d, 0x13, 0x5b, 0xbf, 0x00, 0x7d, 0x9e, 0x00, 0x9d, 0x15, 0xa0, 0x57, 0xaf, + 0x04, 0x2d, 0xc1, 0xe8, 0xa8, 0xd1, 0x0b, 0x78, 0xfb, 0x9a, 0xba, 0xaa, 0x7c, 0x73, 0x03, 0xbe, + 0x25, 0xe9, 0x8a, 0xb4, 0x14, 0x61, 0xdf, 0x80, 0x0b, 0xf2, 0x8a, 0x78, 0xa5, 0xee, 0xc8, 0xc0, + 0x4e, 0xcd, 0xfc, 0x05, 0xc0, 0xe2, 0xa4, 0x72, 0xa5, 0xd9, 0x63, 0xf8, 0xaa, 0xb6, 0x96, 0x2d, + 0x3b, 0xac, 0x4b, 0xe1, 0x16, 0xac, 0x7b, 0x71, 0x7c, 0x2f, 0x0a, 0xdf, 0xe4, 0xe6, 0x38, 0xf0, + 0xed, 0x91, 0xa9, 0x4a, 0xc4, 0x5f, 0x86, 0x76, 0x38, 0xdc, 0x03, 0x54, 0x49, 0x7d, 0x41, 0xd5, + 0xc2, 0xbf, 0x67, 0x4b, 0xf9, 0x9e, 0xdd, 0x6c, 0xbc, 0x34, 0x13, 0xc7, 0xe6, 0xc8, 0xdb, 0x1a, + 0x00, 0x68, 0x5e, 0xd6, 0x44, 0x09, 0x62, 0xc3, 0x87, 0xfe, 0xc5, 0x66, 0xec, 0x2b, 0x6d, 0x79, + 0x94, 0xa2, 0xd6, 0xf6, 0x71, 0x1a, 0x35, 0x6d, 0x99, 0xb4, 0x3b, 0xef, 0xfb, 0x69, 0xe1, 0x9b, + 0x14, 0xf2, 0x37, 0x00, 0xdf, 0x19, 0x25, 0x19, 0xd1, 0x0a, 0x78, 0x87, 0xff, 0x8f, 0x62, 0xa2, + 0x55, 0x78, 0xaf, 0x4d, 0xbb, 0x3e, 0x8f, 0x4e, 0x83, 0x4e, 0xd3, 0xa1, 0x6d, 0x41, 0x66, 0xde, + 0xba, 0x3b, 0x0c, 0xef, 0x8a, 0x68, 0x22, 0x51, 0x23, 0xa6, 0x25, 0x2a, 0xe4, 0x67, 0x00, 0xae, + 0x5c, 0x81, 0x5c, 0x4d, 0xa8, 0x02, 0xa3, 0xd5, 0x94, 0x27, 0x89, 0xc9, 0xe4, 0xb1, 0x34, 0x66, + 0x3c, 0x34, 0x66, 0xfc, 0x69, 0xd0, 0xb3, 0xee, 0xba, 0x89, 0x6b, 0x92, 0x2f, 0x26, 0x9b, 0x7c, + 0x31, 0xf1, 0x68, 0xe6, 0x2e, 0x1b, 0xcd, 0xfc, 0x0c, 0xa3, 0x29, 0x7f, 0x7f, 0x07, 0xde, 0x12, + 0x04, 0xd1, 0xaf, 0x00, 0xc2, 0x98, 0x25, 0xc2, 0x93, 0x1c, 0x2a, 0xfd, 0x97, 0xc4, 0x20, 0x53, + 0xe7, 0x4b, 0xc1, 0xcc, 0x8f, 0xbe, 0xfb, 0xf3, 0xef, 0x1f, 0xb3, 0xcf, 0xd0, 0x3a, 0xb9, 0xf2, + 0xf7, 0x8f, 0x93, 0xa3, 0xc4, 0xdc, 0xfb, 0xe8, 0x67, 0x00, 0x73, 0x9a, 0x71, 0xa0, 0x69, 0xbb, + 0x0f, 0x1d, 0xca, 0x78, 0x3a, 0x7d, 0x81, 0xc2, 0xfb, 0xbe, 0xc0, 0xbb, 0x82, 0x1e, 0x4d, 0x81, + 0x17, 0xfd, 0x01, 0xe0, 0x6b, 0x63, 0xf6, 0x86, 0x9e, 0x5d, 0xde, 0x74, 0x82, 0x9b, 0x1a, 0xcf, + 0xaf, 0x5b, 0xa6, 0x10, 0x7f, 0x2c, 0x10, 0xbf, 0x40, 0xcf, 0x27, 0x22, 0x96, 0x1b, 0x97, 0x14, + 0x7a, 0xb8, 0x85, 0x7d, 0x74, 0x0a, 0xe0, 0xfd, 0x54, 0x5b, 0x42, 0x1f, 0x4e, 0xa9, 0xde, 0xb8, + 0x5f, 0x1a, 0x2f, 0x67, 0x29, 0x55, 0x84, 0xb6, 0x05, 0xa1, 0x2a, 0xfa, 0x64, 0x86, 0x95, 0x21, + 0xba, 0x69, 0xa2, 0x9f, 0xb2, 0xb0, 0x30, 0xe9, 0x49, 0xa3, 0x8d, 0x69, 0x21, 0xa6, 0x79, 0x98, + 0x51, 0x99, 0xb1, 0x5a, 0x71, 0xfc, 0x56, 0x70, 0xec, 0xa1, 0x6f, 0x66, 0xe2, 0x98, 0x74, 0x20, + 0x32, 0x74, 0x33, 0x72, 0x34, 0xe2, 0x8b, 0x7d, 0x22, 0x4d, 0x43, 0x3b, 0x90, 0x81, 0x7e, 0xf5, + 0xab, 0xe3, 0x41, 0x11, 0x9c, 0x0c, 0x8a, 0xe0, 0xaf, 0x41, 0x11, 0xfc, 0x70, 0x5e, 0xcc, 0x9c, + 0x9c, 0x17, 0x33, 0xa7, 0xe7, 0xc5, 0xcc, 0xd7, 0x1b, 0x9e, 0x1f, 0xd6, 0x3b, 0x0e, 0x76, 0x59, + 0x93, 0xa8, 0x7f, 0x80, 0x7d, 0xc7, 0x7d, 0xe2, 0x31, 0xd2, 0x2d, 0x93, 0x26, 0xab, 0x75, 0x1a, + 0x94, 0x4b, 0xc4, 0x4f, 0xd7, 0x9f, 0x68, 0xa0, 0xc3, 0x5e, 0x8b, 0x72, 0xe7, 0xb6, 0xf0, 0xbf, + 0xf5, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0x90, 0x53, 0xd2, 0x89, 0x8e, 0x0b, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/modules/core/03-connection/types/tx.pb.go b/modules/core/03-connection/types/tx.pb.go index 3c6b1d20996..709d8c0d81e 100644 --- a/modules/core/03-connection/types/tx.pb.go +++ b/modules/core/03-connection/types/tx.pb.go @@ -388,65 +388,65 @@ func init() { func init() { proto.RegisterFile("ibc/core/connection/v1/tx.proto", fileDescriptor_5d00fde5fc97399e) } var fileDescriptor_5d00fde5fc97399e = []byte{ - // 925 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0x31, 0x6f, 0xdb, 0x46, - 0x14, 0x16, 0x2d, 0xd9, 0x96, 0x4e, 0x6a, 0x93, 0x5c, 0x65, 0x9b, 0x55, 0x13, 0x51, 0x21, 0x5a, - 0xd4, 0x43, 0x4d, 0x46, 0x49, 0x0a, 0x34, 0x06, 0x3a, 0x58, 0x5a, 0xea, 0x21, 0x6d, 0xc0, 0x04, - 0x2d, 0x90, 0x45, 0x90, 0x4e, 0x67, 0xfa, 0x20, 0x89, 0x47, 0xf0, 0x28, 0xb5, 0xec, 0xda, 0xa5, - 0xe8, 0xd4, 0xa5, 0x7b, 0xfe, 0x43, 0xff, 0x44, 0x46, 0x8f, 0x9d, 0x88, 0xd6, 0x5e, 0x3a, 0x73, - 0xeb, 0x56, 0xf0, 0x8e, 0xa4, 0x4e, 0x32, 0x85, 0x5a, 0x95, 0xb3, 0xdd, 0xbb, 0xf7, 0xbd, 0xf7, - 0xee, 0xde, 0xfb, 0xbe, 0xc3, 0x01, 0x8d, 0x0c, 0x90, 0x89, 0xa8, 0x87, 0x4d, 0x44, 0x1d, 0x07, - 0x23, 0x9f, 0x50, 0xc7, 0x9c, 0xb5, 0x4d, 0xff, 0x07, 0xc3, 0xf5, 0xa8, 0x4f, 0xe1, 0x3e, 0x19, - 0x20, 0x23, 0x06, 0x18, 0x73, 0x80, 0x31, 0x6b, 0x37, 0xea, 0x36, 0xb5, 0x29, 0x87, 0x98, 0xf1, - 0x4a, 0xa0, 0x1b, 0x1f, 0xda, 0x94, 0xda, 0x63, 0x6c, 0x72, 0x6b, 0x30, 0x3d, 0x33, 0xfb, 0x4e, - 0x90, 0xb8, 0xa4, 0x4a, 0x63, 0x82, 0x1d, 0x3f, 0xae, 0x22, 0x56, 0x09, 0xe0, 0xd3, 0x15, 0x47, - 0x91, 0xea, 0x72, 0xa0, 0xfe, 0xfb, 0x16, 0xd8, 0x7b, 0xce, 0xec, 0x6e, 0xb6, 0xff, 0x8d, 0x8b, - 0x9d, 0x53, 0x87, 0xf8, 0xb0, 0x0d, 0x2a, 0x22, 0x65, 0x8f, 0x0c, 0x55, 0xa5, 0xa5, 0x1c, 0x56, - 0x3a, 0xf5, 0x28, 0xd4, 0xee, 0x06, 0xfd, 0xc9, 0xf8, 0x58, 0xcf, 0x5c, 0xba, 0x55, 0x16, 0xeb, - 0xd3, 0x21, 0xfc, 0x1a, 0xd4, 0x10, 0x9d, 0x3a, 0x3e, 0xf6, 0xdc, 0xbe, 0xe7, 0x07, 0xea, 0x56, - 0x4b, 0x39, 0xac, 0x3e, 0xfe, 0xd8, 0xc8, 0xbf, 0xb6, 0xd1, 0x95, 0xb0, 0x9d, 0xd2, 0xdb, 0x50, - 0x2b, 0x58, 0x0b, 0xf1, 0xf0, 0x19, 0xd8, 0x9d, 0x61, 0x8f, 0x11, 0xea, 0xa8, 0x45, 0x9e, 0x4a, - 0x5b, 0x95, 0xea, 0x5b, 0x01, 0xb3, 0x52, 0x3c, 0x3c, 0x06, 0xb5, 0x21, 0x1e, 0xf7, 0x83, 0x9e, - 0x8b, 0x3d, 0x42, 0x87, 0x6a, 0xa9, 0xa5, 0x1c, 0x96, 0x3a, 0x07, 0x51, 0xa8, 0x7d, 0x20, 0x2e, - 0x20, 0x7b, 0x75, 0xab, 0xca, 0xcd, 0x17, 0xdc, 0x82, 0xfb, 0x60, 0x87, 0x11, 0xdb, 0xc1, 0x9e, - 0xba, 0x1d, 0x5f, 0xdb, 0x4a, 0xac, 0xe3, 0xf2, 0xcf, 0x6f, 0xb4, 0xc2, 0xdf, 0x6f, 0xb4, 0x82, - 0xae, 0x81, 0x07, 0xb9, 0x4d, 0xb3, 0x30, 0x73, 0xa9, 0xc3, 0xb0, 0xfe, 0xdb, 0x2e, 0xa8, 0x5f, - 0x43, 0xbc, 0xf2, 0x82, 0xff, 0xd3, 0xd5, 0xef, 0xc0, 0xbe, 0xeb, 0xe1, 0x19, 0xa1, 0x53, 0xd6, - 0x9b, 0xdf, 0x3a, 0x8e, 0xdf, 0xe2, 0xf1, 0x0f, 0xa3, 0x50, 0x7b, 0x20, 0xe2, 0xf3, 0x71, 0xba, - 0x55, 0x4f, 0x1d, 0xf3, 0x03, 0x9d, 0x0e, 0xe1, 0x0b, 0x50, 0x4b, 0x0a, 0x32, 0xbf, 0xef, 0xe3, - 0xa4, 0xc7, 0x75, 0x43, 0xf0, 0xce, 0x48, 0x79, 0x67, 0x9c, 0x38, 0x81, 0xdc, 0x39, 0x39, 0x46, - 0xb7, 0xaa, 0xc2, 0x7c, 0x19, 0x5b, 0xd7, 0x08, 0x50, 0xda, 0x90, 0x00, 0xcb, 0x53, 0xdc, 0x5e, - 0x63, 0x8a, 0x33, 0xb0, 0x27, 0xe7, 0xea, 0x25, 0xcc, 0x60, 0xea, 0x4e, 0xab, 0x78, 0x03, 0x2a, - 0x75, 0x5a, 0x51, 0xa8, 0xdd, 0x4f, 0x6e, 0x9c, 0x97, 0x47, 0xb7, 0xea, 0xf2, 0x7e, 0x12, 0xc6, - 0xe0, 0x6b, 0x50, 0x73, 0x3d, 0x4a, 0xcf, 0x7a, 0xe7, 0x98, 0xd8, 0xe7, 0xbe, 0xba, 0xcb, 0x7b, - 0xd0, 0x90, 0xca, 0x09, 0xa1, 0xce, 0xda, 0xc6, 0x57, 0x1c, 0xd1, 0xf9, 0x28, 0xbe, 0xf9, 0xfc, - 0x4e, 0x72, 0xb4, 0x6e, 0x55, 0xb9, 0x29, 0x90, 0xf0, 0x29, 0x00, 0xc2, 0x4b, 0x1c, 0xe2, 0xab, - 0xe5, 0x96, 0x72, 0x58, 0xeb, 0xec, 0x45, 0xa1, 0x76, 0x4f, 0x8e, 0x8c, 0x7d, 0xba, 0x55, 0xe1, - 0x06, 0x57, 0xf2, 0x71, 0x7a, 0x22, 0x51, 0x59, 0xad, 0xf0, 0xb8, 0x83, 0xe5, 0x8a, 0xc2, 0x9b, - 0x56, 0xec, 0x72, 0x0b, 0x76, 0xc1, 0x9d, 0xc4, 0x1b, 0xf3, 0xda, 0x61, 0x53, 0xa6, 0x02, 0x1e, - 0xde, 0x88, 0x42, 0x6d, 0x7f, 0x21, 0x3c, 0x05, 0xe8, 0xd6, 0xfb, 0x22, 0x43, 0xba, 0x01, 0xcf, - 0xc0, 0xdd, 0xcc, 0x9b, 0xb6, 0xa5, 0xfa, 0x9f, 0x6d, 0xd1, 0x92, 0xb6, 0x1c, 0xa4, 0x43, 0x58, - 0xcc, 0xa0, 0x5b, 0x77, 0xb2, 0xad, 0xa4, 0x3d, 0x73, 0xe1, 0xd6, 0x56, 0x08, 0xb7, 0x09, 0xee, - 0xe7, 0xc9, 0x32, 0xd3, 0xed, 0x5f, 0xdb, 0x39, 0xba, 0x3d, 0x41, 0x23, 0xf8, 0x25, 0x78, 0x6f, - 0x51, 0x7b, 0x42, 0xbb, 0x6a, 0x14, 0x6a, 0xf5, 0xec, 0x7c, 0xb2, 0xe4, 0x6a, 0x48, 0x96, 0x1a, - 0x02, 0x8d, 0x05, 0x12, 0xe5, 0xe9, 0xf8, 0x93, 0x28, 0xd4, 0x1e, 0xe6, 0x10, 0x6e, 0x29, 0xb1, - 0x2a, 0x3b, 0x17, 0xf4, 0xbc, 0xc1, 0x73, 0xb9, 0xfc, 0x14, 0x94, 0x36, 0x7e, 0x0a, 0x96, 0x65, - 0xb0, 0x7d, 0x8b, 0x32, 0x68, 0x03, 0xc1, 0xee, 0x9e, 0xef, 0x05, 0xea, 0x0e, 0xa7, 0xa3, 0xf4, - 0x88, 0x66, 0x2e, 0xdd, 0x2a, 0xf3, 0x75, 0xfc, 0xee, 0x2e, 0x6b, 0x60, 0x77, 0x33, 0x0d, 0x94, - 0x6f, 0x45, 0x03, 0x95, 0x77, 0xaa, 0x01, 0xb0, 0x86, 0x06, 0x4e, 0xd0, 0x28, 0xd3, 0xc0, 0x2f, - 0x5b, 0x40, 0xbd, 0x06, 0xe8, 0x52, 0xe7, 0x8c, 0x78, 0x93, 0x4d, 0x75, 0x90, 0x4d, 0xae, 0x8f, - 0x46, 0x9c, 0xf6, 0x39, 0x93, 0xeb, 0xa3, 0x51, 0x3a, 0xb9, 0x58, 0x79, 0xcb, 0x44, 0x2a, 0xde, - 0x22, 0x91, 0xe6, 0xcd, 0x2a, 0xad, 0x68, 0x96, 0x0e, 0x5a, 0xab, 0x7a, 0x91, 0x36, 0xec, 0xf1, - 0x3f, 0x45, 0x50, 0x7c, 0xce, 0x6c, 0xf8, 0x23, 0x80, 0x39, 0xff, 0xa8, 0xa3, 0x55, 0x22, 0xcc, - 0xfd, 0x41, 0x34, 0x3e, 0x5f, 0x0b, 0x9e, 0x9e, 0x01, 0x7e, 0x0f, 0xee, 0x5d, 0xff, 0x6c, 0x7c, - 0x76, 0xe3, 0x5c, 0xaf, 0xbc, 0xa0, 0xf1, 0x74, 0x1d, 0xf4, 0xea, 0xc2, 0xf1, 0xcc, 0x6e, 0x5e, - 0xf8, 0x04, 0x8d, 0xd6, 0x28, 0x2c, 0xd1, 0x14, 0xfe, 0xa4, 0x80, 0xbd, 0x7c, 0x8e, 0x3e, 0xba, - 0x71, 0xbe, 0x24, 0xa2, 0xf1, 0xc5, 0xba, 0x11, 0xe9, 0x29, 0x3a, 0x2f, 0xdf, 0x5e, 0x36, 0x95, - 0x8b, 0xcb, 0xa6, 0xf2, 0xe7, 0x65, 0x53, 0xf9, 0xf5, 0xaa, 0x59, 0xb8, 0xb8, 0x6a, 0x16, 0xfe, - 0xb8, 0x6a, 0x16, 0x5e, 0x3f, 0xb3, 0x89, 0x7f, 0x3e, 0x1d, 0x18, 0x88, 0x4e, 0x4c, 0x44, 0xd9, - 0x84, 0x32, 0x93, 0x0c, 0xd0, 0x91, 0x4d, 0xcd, 0x09, 0x1d, 0x4e, 0xc7, 0x98, 0x89, 0xff, 0xf9, - 0xa3, 0x27, 0x47, 0xd2, 0x17, 0xdd, 0x0f, 0x5c, 0xcc, 0x06, 0x3b, 0xfc, 0xbd, 0x7d, 0xf2, 0x6f, - 0x00, 0x00, 0x00, 0xff, 0xff, 0xcc, 0x63, 0x63, 0xc9, 0x51, 0x0c, 0x00, 0x00, + // 927 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0x31, 0x73, 0xe3, 0x44, + 0x14, 0xb6, 0x62, 0x27, 0xb1, 0xd7, 0x86, 0xbb, 0x5b, 0x9c, 0x44, 0x98, 0x3b, 0xcb, 0xa7, 0x81, + 0x21, 0x05, 0x91, 0xce, 0xb9, 0x63, 0x06, 0x32, 0x50, 0xc4, 0x6e, 0x48, 0x71, 0x70, 0x23, 0x6e, + 0x8e, 0x99, 0x6b, 0x3c, 0xf6, 0x7a, 0xa3, 0xec, 0xd8, 0xd6, 0x6a, 0xb4, 0xb2, 0x41, 0xb4, 0x34, + 0x0c, 0x15, 0x0d, 0xfd, 0xfd, 0x07, 0xfe, 0xc4, 0x95, 0x57, 0x52, 0x69, 0x20, 0x69, 0xa8, 0xd5, + 0xd1, 0x31, 0xda, 0x95, 0xe4, 0xb5, 0x23, 0x0f, 0x31, 0xce, 0x75, 0xfb, 0xf6, 0x7d, 0xef, 0xbd, + 0xdd, 0xf7, 0xbe, 0x6f, 0x67, 0x81, 0x46, 0x06, 0xc8, 0x44, 0xd4, 0xc3, 0x26, 0xa2, 0x8e, 0x83, + 0x91, 0x4f, 0xa8, 0x63, 0xce, 0xda, 0xa6, 0xff, 0x83, 0xe1, 0x7a, 0xd4, 0xa7, 0x70, 0x9f, 0x0c, + 0x90, 0x11, 0x03, 0x8c, 0x39, 0xc0, 0x98, 0xb5, 0x1b, 0x75, 0x9b, 0xda, 0x94, 0x43, 0xcc, 0x78, + 0x25, 0xd0, 0x8d, 0xf7, 0x6d, 0x4a, 0xed, 0x31, 0x36, 0xb9, 0x35, 0x98, 0x9e, 0x9b, 0x7d, 0x27, + 0x48, 0x5c, 0x52, 0xa5, 0x31, 0xc1, 0x8e, 0x1f, 0x57, 0x11, 0xab, 0x04, 0xf0, 0xf1, 0x8a, 0xa3, + 0x48, 0x75, 0x39, 0x50, 0xff, 0x7d, 0x0b, 0xec, 0x3d, 0x65, 0x76, 0x37, 0xdb, 0xff, 0xc6, 0xc5, + 0xce, 0x99, 0x43, 0x7c, 0xd8, 0x06, 0x15, 0x91, 0xb2, 0x47, 0x86, 0xaa, 0xd2, 0x52, 0x0e, 0x2b, + 0x9d, 0x7a, 0x14, 0x6a, 0x77, 0x83, 0xfe, 0x64, 0x7c, 0xa2, 0x67, 0x2e, 0xdd, 0x2a, 0x8b, 0xf5, + 0xd9, 0x10, 0x7e, 0x0d, 0x6a, 0x88, 0x4e, 0x1d, 0x1f, 0x7b, 0x6e, 0xdf, 0xf3, 0x03, 0x75, 0xab, + 0xa5, 0x1c, 0x56, 0x8f, 0x3f, 0x34, 0xf2, 0xaf, 0x6d, 0x74, 0x25, 0x6c, 0xa7, 0xf4, 0x3a, 0xd4, + 0x0a, 0xd6, 0x42, 0x3c, 0xfc, 0x1c, 0xec, 0xce, 0xb0, 0xc7, 0x08, 0x75, 0xd4, 0x22, 0x4f, 0xa5, + 0xad, 0x4a, 0xf5, 0x42, 0xc0, 0xac, 0x14, 0x0f, 0x4f, 0x40, 0x6d, 0x88, 0xc7, 0xfd, 0xa0, 0xe7, + 0x62, 0x8f, 0xd0, 0xa1, 0x5a, 0x6a, 0x29, 0x87, 0xa5, 0xce, 0x41, 0x14, 0x6a, 0xef, 0x89, 0x0b, + 0xc8, 0x5e, 0xdd, 0xaa, 0x72, 0xf3, 0x19, 0xb7, 0xe0, 0x3e, 0xd8, 0x61, 0xc4, 0x76, 0xb0, 0xa7, + 0x6e, 0xc7, 0xd7, 0xb6, 0x12, 0xeb, 0xa4, 0xfc, 0xf3, 0x2b, 0xad, 0xf0, 0xf7, 0x2b, 0xad, 0xa0, + 0x6b, 0xe0, 0x41, 0x6e, 0xd3, 0x2c, 0xcc, 0x5c, 0xea, 0x30, 0xac, 0xff, 0xb6, 0x0b, 0xea, 0xd7, + 0x10, 0xcf, 0xbd, 0xe0, 0xff, 0x74, 0xf5, 0x3b, 0xb0, 0xef, 0x7a, 0x78, 0x46, 0xe8, 0x94, 0xf5, + 0xe6, 0xb7, 0x8e, 0xe3, 0xb7, 0x78, 0xfc, 0xc3, 0x28, 0xd4, 0x1e, 0x88, 0xf8, 0x7c, 0x9c, 0x6e, + 0xd5, 0x53, 0xc7, 0xfc, 0x40, 0x67, 0x43, 0xf8, 0x0c, 0xd4, 0x92, 0x82, 0xcc, 0xef, 0xfb, 0x38, + 0xe9, 0x71, 0xdd, 0x10, 0xbc, 0x33, 0x52, 0xde, 0x19, 0xa7, 0x4e, 0x20, 0x77, 0x4e, 0x8e, 0xd1, + 0xad, 0xaa, 0x30, 0xbf, 0x8d, 0xad, 0x6b, 0x04, 0x28, 0x6d, 0x48, 0x80, 0xe5, 0x29, 0x6e, 0xaf, + 0x31, 0xc5, 0x19, 0xd8, 0x93, 0x73, 0xf5, 0x12, 0x66, 0x30, 0x75, 0xa7, 0x55, 0xbc, 0x01, 0x95, + 0x3a, 0xad, 0x28, 0xd4, 0xee, 0x27, 0x37, 0xce, 0xcb, 0xa3, 0x5b, 0x75, 0x79, 0x3f, 0x09, 0x63, + 0xf0, 0x25, 0xa8, 0xb9, 0x1e, 0xa5, 0xe7, 0xbd, 0x0b, 0x4c, 0xec, 0x0b, 0x5f, 0xdd, 0xe5, 0x3d, + 0x68, 0x48, 0xe5, 0x84, 0x50, 0x67, 0x6d, 0xe3, 0x2b, 0x8e, 0xe8, 0x7c, 0x10, 0xdf, 0x7c, 0x7e, + 0x27, 0x39, 0x5a, 0xb7, 0xaa, 0xdc, 0x14, 0x48, 0xf8, 0x04, 0x00, 0xe1, 0x25, 0x0e, 0xf1, 0xd5, + 0x72, 0x4b, 0x39, 0xac, 0x75, 0xf6, 0xa2, 0x50, 0xbb, 0x27, 0x47, 0xc6, 0x3e, 0xdd, 0xaa, 0x70, + 0x83, 0x2b, 0xf9, 0x24, 0x3d, 0x91, 0xa8, 0xac, 0x56, 0x78, 0xdc, 0xc1, 0x72, 0x45, 0xe1, 0x4d, + 0x2b, 0x76, 0xb9, 0x05, 0xbb, 0xe0, 0x4e, 0xe2, 0x8d, 0x79, 0xed, 0xb0, 0x29, 0x53, 0x01, 0x0f, + 0x6f, 0x44, 0xa1, 0xb6, 0xbf, 0x10, 0x9e, 0x02, 0x74, 0xeb, 0x5d, 0x91, 0x21, 0xdd, 0x80, 0xe7, + 0xe0, 0x6e, 0xe6, 0x4d, 0xdb, 0x52, 0xfd, 0xcf, 0xb6, 0x68, 0x49, 0x5b, 0x0e, 0xd2, 0x21, 0x2c, + 0x66, 0xd0, 0xad, 0x3b, 0xd9, 0x56, 0xd2, 0x9e, 0xb9, 0x70, 0x6b, 0x2b, 0x84, 0xdb, 0x04, 0xf7, + 0xf3, 0x64, 0x99, 0xe9, 0xf6, 0xaf, 0xed, 0x1c, 0xdd, 0x9e, 0xa2, 0x11, 0xfc, 0x12, 0xbc, 0xb3, + 0xa8, 0x3d, 0xa1, 0x5d, 0x35, 0x0a, 0xb5, 0x7a, 0x76, 0x3e, 0x59, 0x72, 0x35, 0x24, 0x4b, 0x0d, + 0x81, 0xc6, 0x02, 0x89, 0xf2, 0x74, 0xfc, 0x51, 0x14, 0x6a, 0x0f, 0x73, 0x08, 0xb7, 0x94, 0x58, + 0x95, 0x9d, 0x0b, 0x7a, 0xde, 0xe0, 0xb9, 0x5c, 0x7e, 0x0a, 0x4a, 0x1b, 0x3f, 0x05, 0xcb, 0x32, + 0xd8, 0xbe, 0x45, 0x19, 0xb4, 0x81, 0x60, 0x77, 0xcf, 0xf7, 0x02, 0x75, 0x87, 0xd3, 0x51, 0x7a, + 0x44, 0x33, 0x97, 0x6e, 0x95, 0xf9, 0x3a, 0x7e, 0x77, 0x97, 0x35, 0xb0, 0xbb, 0x99, 0x06, 0xca, + 0xb7, 0xa2, 0x81, 0xca, 0x5b, 0xd5, 0x00, 0x58, 0x43, 0x03, 0xa7, 0x68, 0x94, 0x69, 0xe0, 0x97, + 0x2d, 0xa0, 0x5e, 0x03, 0x74, 0xa9, 0x73, 0x4e, 0xbc, 0xc9, 0xa6, 0x3a, 0xc8, 0x26, 0xd7, 0x47, + 0x23, 0x4e, 0xfb, 0x9c, 0xc9, 0xf5, 0xd1, 0x28, 0x9d, 0x5c, 0xac, 0xbc, 0x65, 0x22, 0x15, 0x6f, + 0x91, 0x48, 0xf3, 0x66, 0x95, 0x56, 0x34, 0x4b, 0x07, 0xad, 0x55, 0xbd, 0x48, 0x1b, 0x76, 0xfc, + 0x4f, 0x11, 0x14, 0x9f, 0x32, 0x1b, 0xfe, 0x08, 0x60, 0xce, 0x3f, 0xea, 0x68, 0x95, 0x08, 0x73, + 0x7f, 0x10, 0x8d, 0x4f, 0xd7, 0x82, 0xa7, 0x67, 0x80, 0xdf, 0x83, 0x7b, 0xd7, 0x3f, 0x1b, 0x9f, + 0xdc, 0x38, 0xd7, 0x73, 0x2f, 0x68, 0x3c, 0x59, 0x07, 0xbd, 0xba, 0x70, 0x3c, 0xb3, 0x9b, 0x17, + 0x3e, 0x45, 0xa3, 0x35, 0x0a, 0x4b, 0x34, 0x85, 0x3f, 0x29, 0x60, 0x2f, 0x9f, 0xa3, 0x8f, 0x6e, + 0x9c, 0x2f, 0x89, 0x68, 0x7c, 0xb6, 0x6e, 0x44, 0x7a, 0x8a, 0xce, 0x8b, 0xd7, 0x97, 0x4d, 0xe5, + 0xcd, 0x65, 0x53, 0xf9, 0xf3, 0xb2, 0xa9, 0xfc, 0x7a, 0xd5, 0x2c, 0xbc, 0xb9, 0x6a, 0x16, 0xfe, + 0xb8, 0x6a, 0x16, 0x5e, 0x7e, 0x61, 0x13, 0xff, 0x62, 0x3a, 0x30, 0x10, 0x9d, 0x98, 0x88, 0xb2, + 0x09, 0x65, 0x26, 0x19, 0xa0, 0x23, 0x9b, 0x9a, 0xb3, 0x63, 0x73, 0x42, 0x87, 0xd3, 0x31, 0x66, + 0xe2, 0x8b, 0xfe, 0xe8, 0xf1, 0x91, 0xf4, 0x4b, 0xf7, 0x03, 0x17, 0xb3, 0xc1, 0x0e, 0x7f, 0x72, + 0x1f, 0xff, 0x1b, 0x00, 0x00, 0xff, 0xff, 0x01, 0x75, 0x59, 0xc2, 0x54, 0x0c, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/modules/core/04-channel/types/channel.pb.go b/modules/core/04-channel/types/channel.pb.go index 8d021e7c3ac..5bc0bab0a92 100644 --- a/modules/core/04-channel/types/channel.pb.go +++ b/modules/core/04-channel/types/channel.pb.go @@ -455,64 +455,64 @@ func init() { func init() { proto.RegisterFile("ibc/core/channel/v1/channel.proto", fileDescriptor_c3a07336710636a0) } var fileDescriptor_c3a07336710636a0 = []byte{ - // 908 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x55, 0xcd, 0x8e, 0xda, 0x56, - 0x14, 0xc6, 0x60, 0xfe, 0x0e, 0x03, 0xc3, 0xdc, 0x34, 0xc4, 0x75, 0x13, 0x4c, 0xac, 0x2e, 0x46, - 0xa9, 0x02, 0x99, 0x34, 0x4a, 0xa5, 0xac, 0x3a, 0xfc, 0x44, 0x63, 0x35, 0x02, 0x64, 0x98, 0x45, - 0xb3, 0xa1, 0x60, 0xdf, 0x82, 0x15, 0xf0, 0xa5, 0xf6, 0x65, 0x46, 0xf3, 0x06, 0x11, 0xab, 0xbe, - 0x00, 0x52, 0xa5, 0xaa, 0x7d, 0x85, 0xbe, 0x42, 0x96, 0x59, 0x76, 0x65, 0x55, 0x33, 0x8b, 0xee, - 0x79, 0x81, 0x56, 0xbe, 0xf7, 0x9a, 0x9f, 0x49, 0x94, 0x65, 0x57, 0x5d, 0x71, 0xcf, 0xf7, 0x7d, - 0xe7, 0xc7, 0xe7, 0x1c, 0xee, 0x85, 0x87, 0xce, 0xc8, 0xaa, 0x59, 0xc4, 0xc3, 0x35, 0x6b, 0x32, - 0x74, 0x5d, 0x3c, 0xad, 0x5d, 0x9c, 0x44, 0xc7, 0xea, 0xdc, 0x23, 0x94, 0xa0, 0x3b, 0xce, 0xc8, - 0xaa, 0x86, 0x92, 0x6a, 0x84, 0x5f, 0x9c, 0xa8, 0x9f, 0x8d, 0xc9, 0x98, 0x30, 0xbe, 0x16, 0x9e, - 0xb8, 0x54, 0xd5, 0xb6, 0xd1, 0xa6, 0x0e, 0x76, 0x29, 0x0b, 0xc6, 0x4e, 0x5c, 0xa0, 0xff, 0x16, - 0x87, 0x74, 0x83, 0x47, 0x41, 0x4f, 0x20, 0xe9, 0xd3, 0x21, 0xc5, 0x8a, 0x54, 0x91, 0x8e, 0x0b, - 0x4f, 0xd5, 0xea, 0x47, 0xf2, 0x54, 0x7b, 0xa1, 0xc2, 0xe4, 0x42, 0xf4, 0x1c, 0x32, 0xc4, 0xb3, - 0xb1, 0xe7, 0xb8, 0x63, 0x25, 0xfe, 0x09, 0xa7, 0x4e, 0x28, 0x32, 0x37, 0x5a, 0xf4, 0x1d, 0x1c, - 0x58, 0x64, 0xe1, 0x52, 0xec, 0xcd, 0x87, 0x1e, 0xbd, 0x52, 0x12, 0x15, 0xe9, 0x38, 0xf7, 0xf4, - 0xe1, 0x47, 0x7d, 0x1b, 0x3b, 0xc2, 0xba, 0xfc, 0x2e, 0xd0, 0x62, 0xe6, 0x9e, 0x33, 0x6a, 0xc0, - 0xa1, 0x45, 0x5c, 0x17, 0x5b, 0xd4, 0x21, 0xee, 0x60, 0x42, 0xe6, 0xbe, 0x22, 0x57, 0x12, 0xc7, - 0xd9, 0xba, 0xba, 0x0e, 0xb4, 0xd2, 0xd5, 0x70, 0x36, 0x7d, 0xa1, 0xdf, 0x12, 0xe8, 0x66, 0x61, - 0x8b, 0x9c, 0x91, 0xb9, 0x8f, 0x14, 0x48, 0x5f, 0x60, 0xcf, 0x77, 0x88, 0xab, 0x24, 0x2b, 0xd2, - 0x71, 0xd6, 0x8c, 0xcc, 0x17, 0xf2, 0xdb, 0x5f, 0xb4, 0x98, 0xfe, 0x77, 0x1c, 0x8e, 0x0c, 0x1b, - 0xbb, 0xd4, 0xf9, 0xd1, 0xc1, 0xf6, 0xff, 0x1d, 0xfb, 0x44, 0xc7, 0xd0, 0x3d, 0x48, 0xcf, 0x89, - 0x47, 0x07, 0x8e, 0xad, 0xa4, 0x18, 0x93, 0x0a, 0x4d, 0xc3, 0x46, 0x0f, 0x00, 0x44, 0x99, 0x21, - 0x97, 0x66, 0x5c, 0x56, 0x20, 0x86, 0x2d, 0x3a, 0x7d, 0x09, 0x07, 0xbb, 0x1f, 0x80, 0xbe, 0xda, - 0x46, 0x0b, 0xbb, 0x9c, 0xad, 0xa3, 0x75, 0xa0, 0x15, 0x78, 0x91, 0x82, 0xd0, 0x37, 0x19, 0x9e, - 0xed, 0x65, 0x88, 0x33, 0xfd, 0xdd, 0x75, 0xa0, 0x1d, 0x89, 0x8f, 0xda, 0x70, 0xfa, 0x87, 0x89, - 0xff, 0x49, 0x40, 0xaa, 0x3b, 0xb4, 0xde, 0x60, 0x8a, 0x54, 0xc8, 0xf8, 0xf8, 0xa7, 0x05, 0x76, - 0x2d, 0x3e, 0x5a, 0xd9, 0xdc, 0xd8, 0xe8, 0x1b, 0xc8, 0xf9, 0x64, 0xe1, 0x59, 0x78, 0x10, 0xe6, - 0x14, 0x39, 0x4a, 0xeb, 0x40, 0x43, 0x3c, 0xc7, 0x0e, 0xa9, 0x9b, 0xc0, 0xad, 0x2e, 0xf1, 0x28, - 0xfa, 0x16, 0x0a, 0x82, 0x13, 0x99, 0xd9, 0x10, 0xb3, 0xf5, 0xcf, 0xd7, 0x81, 0x76, 0x77, 0xcf, - 0x57, 0xf0, 0xba, 0x99, 0xe7, 0x40, 0xb4, 0x6e, 0x2f, 0xa1, 0x68, 0x63, 0x9f, 0x3a, 0xee, 0x90, - 0xcd, 0x85, 0xe5, 0x97, 0x59, 0x8c, 0x2f, 0xd6, 0x81, 0x76, 0x8f, 0xc7, 0xb8, 0xad, 0xd0, 0xcd, - 0xc3, 0x1d, 0x88, 0x55, 0xd2, 0x81, 0x3b, 0xbb, 0xaa, 0xa8, 0x1c, 0x36, 0xc6, 0x7a, 0x79, 0x1d, - 0x68, 0xea, 0x87, 0xa1, 0x36, 0x35, 0xa1, 0x1d, 0x34, 0x2a, 0x0c, 0x81, 0x6c, 0x0f, 0xe9, 0x90, - 0x8d, 0xfb, 0xc0, 0x64, 0x67, 0xf4, 0x03, 0x14, 0xa8, 0x33, 0xc3, 0x64, 0x41, 0x07, 0x13, 0xec, - 0x8c, 0x27, 0x94, 0x0d, 0x3c, 0xb7, 0xb7, 0xef, 0xfc, 0x26, 0xba, 0x38, 0xa9, 0x9e, 0x31, 0x45, - 0xfd, 0x41, 0xb8, 0xac, 0xdb, 0x76, 0xec, 0xfb, 0xeb, 0x66, 0x5e, 0x00, 0x5c, 0x8d, 0x0c, 0x38, - 0x8a, 0x14, 0xe1, 0xaf, 0x4f, 0x87, 0xb3, 0xb9, 0x92, 0x09, 0xc7, 0x55, 0xbf, 0xbf, 0x0e, 0x34, - 0x65, 0x3f, 0xc8, 0x46, 0xa2, 0x9b, 0x45, 0x81, 0xf5, 0x23, 0x48, 0x6c, 0xc0, 0xef, 0x12, 0xe4, - 0xf8, 0x06, 0xb0, 0xff, 0xec, 0x7f, 0xb0, 0x7a, 0x7b, 0x9b, 0x96, 0xb8, 0xb5, 0x69, 0x51, 0x57, - 0xe5, 0x6d, 0x57, 0x45, 0xa1, 0x1d, 0x38, 0x3c, 0xb5, 0xde, 0xb8, 0xe4, 0x72, 0x8a, 0xed, 0x31, - 0x9e, 0x61, 0x97, 0x22, 0x05, 0x52, 0x1e, 0xf6, 0x17, 0x53, 0xaa, 0xdc, 0x0d, 0xe5, 0x67, 0x31, - 0x53, 0xd8, 0xa8, 0x04, 0x49, 0xec, 0x79, 0xc4, 0x53, 0x4a, 0x61, 0x4d, 0x67, 0x31, 0x93, 0x9b, - 0x75, 0x80, 0x8c, 0x87, 0xfd, 0x39, 0x71, 0x7d, 0xfc, 0xe8, 0x0f, 0x09, 0x92, 0x3d, 0x71, 0x41, - 0x69, 0xbd, 0xfe, 0x69, 0xbf, 0x35, 0x38, 0x6f, 0x1b, 0x6d, 0xa3, 0x6f, 0x9c, 0xbe, 0x32, 0x5e, - 0xb7, 0x9a, 0x83, 0xf3, 0x76, 0xaf, 0xdb, 0x6a, 0x18, 0x2f, 0x8d, 0x56, 0xb3, 0x18, 0x53, 0x8f, - 0x96, 0xab, 0x4a, 0x7e, 0x4f, 0x80, 0x14, 0x00, 0xee, 0x17, 0x82, 0x45, 0x49, 0xcd, 0x2c, 0x57, - 0x15, 0x39, 0x3c, 0xa3, 0x32, 0xe4, 0x39, 0xd3, 0x37, 0xbf, 0xef, 0x74, 0x5b, 0xed, 0x62, 0x5c, - 0xcd, 0x2d, 0x57, 0x95, 0xb4, 0x30, 0xb7, 0x9e, 0x8c, 0x4c, 0x70, 0x4f, 0xc6, 0xdc, 0x87, 0x03, - 0xce, 0x34, 0x5e, 0x75, 0x7a, 0xad, 0x66, 0x51, 0x56, 0x61, 0xb9, 0xaa, 0xa4, 0xb8, 0xa5, 0xca, - 0x6f, 0x7f, 0x2d, 0xc7, 0x1e, 0x5d, 0x42, 0x92, 0xdd, 0x95, 0xe8, 0x4b, 0x28, 0x75, 0xcc, 0x66, - 0xcb, 0x1c, 0xb4, 0x3b, 0xed, 0xd6, 0xad, 0x7a, 0x59, 0xc8, 0x10, 0x47, 0x3a, 0x1c, 0x72, 0xd5, - 0x79, 0x9b, 0xfd, 0xb6, 0x9a, 0x45, 0x49, 0xcd, 0x2f, 0x57, 0x95, 0xec, 0x06, 0x08, 0x0b, 0xe6, - 0x9a, 0x48, 0x21, 0x0a, 0x16, 0x26, 0x4f, 0x5c, 0xef, 0xbe, 0xbb, 0x2e, 0x4b, 0xef, 0xaf, 0xcb, - 0xd2, 0x5f, 0xd7, 0x65, 0xe9, 0xe7, 0x9b, 0x72, 0xec, 0xfd, 0x4d, 0x39, 0xf6, 0xe7, 0x4d, 0x39, - 0xf6, 0xfa, 0xf9, 0xd8, 0xa1, 0x93, 0xc5, 0xa8, 0x6a, 0x91, 0x59, 0xcd, 0x22, 0xfe, 0x8c, 0xf8, - 0x35, 0x67, 0x64, 0x3d, 0x1e, 0x93, 0xda, 0x8c, 0xd8, 0x8b, 0x29, 0xf6, 0xf9, 0x8b, 0xfc, 0xe4, - 0xd9, 0xe3, 0xe8, 0x89, 0xa7, 0x57, 0x73, 0xec, 0x8f, 0x52, 0xec, 0x49, 0xfe, 0xfa, 0xdf, 0x00, - 0x00, 0x00, 0xff, 0xff, 0xf8, 0x7f, 0x8d, 0x61, 0x03, 0x08, 0x00, 0x00, + // 911 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x55, 0xcb, 0x6e, 0xdb, 0x46, + 0x14, 0x15, 0x2d, 0xea, 0x75, 0x65, 0xc9, 0xf2, 0xa4, 0x56, 0x58, 0x36, 0x11, 0x15, 0xa2, 0x0b, + 0x23, 0x45, 0xa4, 0xd8, 0x0d, 0x5a, 0x34, 0xab, 0x5a, 0x8f, 0xc0, 0x44, 0x03, 0xc9, 0xa0, 0xe4, + 0x45, 0xb3, 0x51, 0x25, 0x72, 0x2a, 0x11, 0x91, 0x38, 0x2a, 0x39, 0x92, 0xe1, 0x3f, 0x08, 0xb4, + 0xea, 0x0f, 0x08, 0x28, 0x50, 0xb4, 0xbf, 0xd0, 0x5f, 0xc8, 0x32, 0xcb, 0xae, 0x88, 0xc2, 0x5e, + 0x74, 0xaf, 0x1f, 0x68, 0xc1, 0x99, 0xa1, 0x1e, 0x4e, 0x90, 0x65, 0x57, 0x5d, 0x69, 0xee, 0x39, + 0xe7, 0x3e, 0x78, 0xef, 0xd5, 0x0c, 0x3c, 0x72, 0x06, 0x56, 0xd5, 0x22, 0x1e, 0xae, 0x5a, 0xa3, + 0xbe, 0xeb, 0xe2, 0x71, 0x75, 0x7e, 0x12, 0x1d, 0x2b, 0x53, 0x8f, 0x50, 0x82, 0xee, 0x39, 0x03, + 0xab, 0x12, 0x4a, 0x2a, 0x11, 0x3e, 0x3f, 0x51, 0x3f, 0x19, 0x92, 0x21, 0x61, 0x7c, 0x35, 0x3c, + 0x71, 0xa9, 0xaa, 0x6d, 0xa2, 0x8d, 0x1d, 0xec, 0x52, 0x16, 0x8c, 0x9d, 0xb8, 0x40, 0xff, 0x6d, + 0x0f, 0x52, 0x75, 0x1e, 0x05, 0x3d, 0x85, 0x84, 0x4f, 0xfb, 0x14, 0x2b, 0x52, 0x59, 0x3a, 0xce, + 0x9f, 0xaa, 0x95, 0x0f, 0xe4, 0xa9, 0x74, 0x42, 0x85, 0xc9, 0x85, 0xe8, 0x2b, 0x48, 0x13, 0xcf, + 0xc6, 0x9e, 0xe3, 0x0e, 0x95, 0xbd, 0x8f, 0x38, 0xb5, 0x43, 0x91, 0xb9, 0xd6, 0xa2, 0xef, 0x60, + 0xdf, 0x22, 0x33, 0x97, 0x62, 0x6f, 0xda, 0xf7, 0xe8, 0xb5, 0x12, 0x2f, 0x4b, 0xc7, 0xd9, 0xd3, + 0x47, 0x1f, 0xf4, 0xad, 0x6f, 0x09, 0x6b, 0xf2, 0xdb, 0x40, 0x8b, 0x99, 0x3b, 0xce, 0xa8, 0x0e, + 0x07, 0x16, 0x71, 0x5d, 0x6c, 0x51, 0x87, 0xb8, 0xbd, 0x11, 0x99, 0xfa, 0x8a, 0x5c, 0x8e, 0x1f, + 0x67, 0x6a, 0xea, 0x2a, 0xd0, 0x8a, 0xd7, 0xfd, 0xc9, 0xf8, 0xb9, 0x7e, 0x47, 0xa0, 0x9b, 0xf9, + 0x0d, 0x72, 0x4e, 0xa6, 0x3e, 0x52, 0x20, 0x35, 0xc7, 0x9e, 0xef, 0x10, 0x57, 0x49, 0x94, 0xa5, + 0xe3, 0x8c, 0x19, 0x99, 0xcf, 0xe5, 0x37, 0xbf, 0x68, 0x31, 0xfd, 0xef, 0x3d, 0x38, 0x34, 0x6c, + 0xec, 0x52, 0xe7, 0x47, 0x07, 0xdb, 0xff, 0x77, 0xec, 0x23, 0x1d, 0x43, 0xf7, 0x21, 0x35, 0x25, + 0x1e, 0xed, 0x39, 0xb6, 0x92, 0x64, 0x4c, 0x32, 0x34, 0x0d, 0x1b, 0x3d, 0x04, 0x10, 0x65, 0x86, + 0x5c, 0x8a, 0x71, 0x19, 0x81, 0x18, 0xb6, 0xe8, 0xf4, 0x15, 0xec, 0x6f, 0x7f, 0x00, 0xfa, 0x62, + 0x13, 0x2d, 0xec, 0x72, 0xa6, 0x86, 0x56, 0x81, 0x96, 0xe7, 0x45, 0x0a, 0x42, 0x5f, 0x67, 0x78, + 0xb6, 0x93, 0x61, 0x8f, 0xe9, 0x8f, 0x56, 0x81, 0x76, 0x28, 0x3e, 0x6a, 0xcd, 0xe9, 0xef, 0x27, + 0xfe, 0x27, 0x0e, 0xc9, 0x8b, 0xbe, 0xf5, 0x1a, 0x53, 0xa4, 0x42, 0xda, 0xc7, 0x3f, 0xcd, 0xb0, + 0x6b, 0xf1, 0xd1, 0xca, 0xe6, 0xda, 0x46, 0x5f, 0x43, 0xd6, 0x27, 0x33, 0xcf, 0xc2, 0xbd, 0x30, + 0xa7, 0xc8, 0x51, 0x5c, 0x05, 0x1a, 0xe2, 0x39, 0xb6, 0x48, 0xdd, 0x04, 0x6e, 0x5d, 0x10, 0x8f, + 0xa2, 0x6f, 0x21, 0x2f, 0x38, 0x91, 0x99, 0x0d, 0x31, 0x53, 0xfb, 0x74, 0x15, 0x68, 0x47, 0x3b, + 0xbe, 0x82, 0xd7, 0xcd, 0x1c, 0x07, 0xa2, 0x75, 0x7b, 0x01, 0x05, 0x1b, 0xfb, 0xd4, 0x71, 0xfb, + 0x6c, 0x2e, 0x2c, 0xbf, 0xcc, 0x62, 0x7c, 0xb6, 0x0a, 0xb4, 0xfb, 0x3c, 0xc6, 0x5d, 0x85, 0x6e, + 0x1e, 0x6c, 0x41, 0xac, 0x92, 0x36, 0xdc, 0xdb, 0x56, 0x45, 0xe5, 0xb0, 0x31, 0xd6, 0x4a, 0xab, + 0x40, 0x53, 0xdf, 0x0f, 0xb5, 0xae, 0x09, 0x6d, 0xa1, 0x51, 0x61, 0x08, 0x64, 0xbb, 0x4f, 0xfb, + 0x6c, 0xdc, 0xfb, 0x26, 0x3b, 0xa3, 0x1f, 0x20, 0x4f, 0x9d, 0x09, 0x26, 0x33, 0xda, 0x1b, 0x61, + 0x67, 0x38, 0xa2, 0x6c, 0xe0, 0xd9, 0x9d, 0x7d, 0xe7, 0x37, 0xd1, 0xfc, 0xa4, 0x72, 0xce, 0x14, + 0xb5, 0x87, 0xe1, 0xb2, 0x6e, 0xda, 0xb1, 0xeb, 0xaf, 0x9b, 0x39, 0x01, 0x70, 0x35, 0x32, 0xe0, + 0x30, 0x52, 0x84, 0xbf, 0x3e, 0xed, 0x4f, 0xa6, 0x4a, 0x3a, 0x1c, 0x57, 0xed, 0xc1, 0x2a, 0xd0, + 0x94, 0xdd, 0x20, 0x6b, 0x89, 0x6e, 0x16, 0x04, 0xd6, 0x8d, 0x20, 0xb1, 0x01, 0xbf, 0x4b, 0x90, + 0xe5, 0x1b, 0xc0, 0xfe, 0xb3, 0xff, 0xc1, 0xea, 0xed, 0x6c, 0x5a, 0xfc, 0xce, 0xa6, 0x45, 0x5d, + 0x95, 0x37, 0x5d, 0x15, 0x85, 0xb6, 0xe1, 0xe0, 0xcc, 0x7a, 0xed, 0x92, 0xab, 0x31, 0xb6, 0x87, + 0x78, 0x82, 0x5d, 0x8a, 0x14, 0x48, 0x7a, 0xd8, 0x9f, 0x8d, 0xa9, 0x72, 0x14, 0xca, 0xcf, 0x63, + 0xa6, 0xb0, 0x51, 0x11, 0x12, 0xd8, 0xf3, 0x88, 0xa7, 0x14, 0xc3, 0x9a, 0xce, 0x63, 0x26, 0x37, + 0x6b, 0x00, 0x69, 0x0f, 0xfb, 0x53, 0xe2, 0xfa, 0xf8, 0xf1, 0x1f, 0x12, 0x24, 0x3a, 0xe2, 0x82, + 0xd2, 0x3a, 0xdd, 0xb3, 0x6e, 0xb3, 0x77, 0xd9, 0x32, 0x5a, 0x46, 0xd7, 0x38, 0x7b, 0x69, 0xbc, + 0x6a, 0x36, 0x7a, 0x97, 0xad, 0xce, 0x45, 0xb3, 0x6e, 0xbc, 0x30, 0x9a, 0x8d, 0x42, 0x4c, 0x3d, + 0x5c, 0x2c, 0xcb, 0xb9, 0x1d, 0x01, 0x52, 0x00, 0xb8, 0x5f, 0x08, 0x16, 0x24, 0x35, 0xbd, 0x58, + 0x96, 0xe5, 0xf0, 0x8c, 0x4a, 0x90, 0xe3, 0x4c, 0xd7, 0xfc, 0xbe, 0x7d, 0xd1, 0x6c, 0x15, 0xf6, + 0xd4, 0xec, 0x62, 0x59, 0x4e, 0x09, 0x73, 0xe3, 0xc9, 0xc8, 0x38, 0xf7, 0x64, 0xcc, 0x03, 0xd8, + 0xe7, 0x4c, 0xfd, 0x65, 0xbb, 0xd3, 0x6c, 0x14, 0x64, 0x15, 0x16, 0xcb, 0x72, 0x92, 0x5b, 0xaa, + 0xfc, 0xe6, 0xd7, 0x52, 0xec, 0xf1, 0x15, 0x24, 0xd8, 0x5d, 0x89, 0x3e, 0x87, 0x62, 0xdb, 0x6c, + 0x34, 0xcd, 0x5e, 0xab, 0xdd, 0x6a, 0xde, 0xa9, 0x97, 0x85, 0x0c, 0x71, 0xa4, 0xc3, 0x01, 0x57, + 0x5d, 0xb6, 0xd8, 0x6f, 0xb3, 0x51, 0x90, 0xd4, 0xdc, 0x62, 0x59, 0xce, 0xac, 0x81, 0xb0, 0x60, + 0xae, 0x89, 0x14, 0xa2, 0x60, 0x61, 0xf2, 0xc4, 0xb5, 0xce, 0xdb, 0x9b, 0x92, 0xf4, 0xee, 0xa6, + 0x24, 0xfd, 0x75, 0x53, 0x92, 0x7e, 0xbe, 0x2d, 0xc5, 0xde, 0xdd, 0x96, 0x62, 0x7f, 0xde, 0x96, + 0x62, 0xaf, 0xbe, 0x19, 0x3a, 0x74, 0x34, 0x1b, 0x54, 0x2c, 0x32, 0xa9, 0x5a, 0xc4, 0x9f, 0x10, + 0xbf, 0xea, 0x0c, 0xac, 0x27, 0x43, 0x52, 0x9d, 0x9f, 0x56, 0x27, 0xc4, 0x9e, 0x8d, 0xb1, 0xcf, + 0x1f, 0xe5, 0xa7, 0xcf, 0x9e, 0x44, 0xaf, 0x3c, 0xbd, 0x9e, 0x62, 0x7f, 0x90, 0x64, 0xaf, 0xf2, + 0x97, 0xff, 0x06, 0x00, 0x00, 0xff, 0xff, 0x01, 0x3a, 0xb8, 0xab, 0x06, 0x08, 0x00, 0x00, } func (m *Channel) Marshal() (dAtA []byte, err error) { diff --git a/modules/core/04-channel/types/genesis.pb.go b/modules/core/04-channel/types/genesis.pb.go index c5b2e8a5c2c..e4f1d216efa 100644 --- a/modules/core/04-channel/types/genesis.pb.go +++ b/modules/core/04-channel/types/genesis.pb.go @@ -195,39 +195,39 @@ func init() { func init() { proto.RegisterFile("ibc/core/channel/v1/genesis.proto", fileDescriptor_cb06ec201f452595) } var fileDescriptor_cb06ec201f452595 = []byte{ - // 505 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x93, 0x4f, 0x6f, 0xd3, 0x4c, - 0x10, 0x87, 0xe3, 0x26, 0x4d, 0xd3, 0x6d, 0x13, 0xbd, 0xdd, 0x36, 0x92, 0xdf, 0xa8, 0xd8, 0xc6, - 0x48, 0x28, 0x12, 0xaa, 0x4d, 0xa1, 0xe2, 0xc0, 0xd1, 0x1c, 0x20, 0xb7, 0x6a, 0xe1, 0x84, 0x84, - 0x22, 0x7b, 0x3d, 0x75, 0x57, 0x89, 0xbd, 0xc1, 0xbb, 0x09, 0xf4, 0x53, 0xc0, 0xc7, 0xea, 0xb1, - 0x47, 0x4e, 0x16, 0x4a, 0xbe, 0x41, 0x8e, 0x9c, 0x90, 0xff, 0x26, 0x51, 0x23, 0x44, 0xb9, 0x79, - 0x67, 0x7e, 0xf3, 0x3c, 0x73, 0xf0, 0xa0, 0xc7, 0xcc, 0xa3, 0x36, 0xe5, 0x31, 0xd8, 0xf4, 0xda, - 0x8d, 0x22, 0x18, 0xdb, 0xb3, 0x73, 0x3b, 0x80, 0x08, 0x04, 0x13, 0xd6, 0x24, 0xe6, 0x92, 0xe3, - 0x63, 0xe6, 0x51, 0x2b, 0x8d, 0x58, 0x45, 0xc4, 0x9a, 0x9d, 0xf7, 0x4e, 0x02, 0x1e, 0xf0, 0xac, - 0x6f, 0xa7, 0x5f, 0x79, 0xb4, 0xb7, 0x95, 0x56, 0x4e, 0x65, 0x11, 0x73, 0xb1, 0x8b, 0x0e, 0xdf, - 0xe6, 0xfc, 0xf7, 0xd2, 0x95, 0x80, 0x3f, 0xa1, 0x56, 0x91, 0x10, 0xaa, 0x62, 0xd4, 0xfb, 0x07, - 0x2f, 0x9e, 0x5a, 0x5b, 0x8c, 0xd6, 0xc0, 0x87, 0x48, 0xb2, 0x2b, 0x06, 0xfe, 0x9b, 0xbc, 0xe8, - 0xfc, 0x7f, 0x9b, 0xe8, 0xb5, 0x5f, 0x89, 0x7e, 0x74, 0xaf, 0x45, 0x2a, 0x24, 0x26, 0xe8, 0x3f, - 0x97, 0x8e, 0x22, 0xfe, 0x65, 0x0c, 0x7e, 0x00, 0x21, 0x44, 0x52, 0xa8, 0x3b, 0x99, 0xc6, 0xd8, - 0xaa, 0xb9, 0x74, 0xe9, 0x08, 0x64, 0xb6, 0x9a, 0xd3, 0x48, 0x05, 0xe4, 0xde, 0x3c, 0x7e, 0x87, - 0x0e, 0x28, 0x0f, 0x43, 0x26, 0x73, 0x5c, 0xfd, 0x41, 0xb8, 0xf5, 0x51, 0xec, 0xa0, 0x56, 0x0c, - 0x14, 0xd8, 0x44, 0x0a, 0xb5, 0xf1, 0x20, 0x4c, 0x35, 0x87, 0x19, 0xea, 0x08, 0x88, 0xfc, 0xa1, - 0x80, 0xcf, 0x53, 0x88, 0x28, 0x08, 0x75, 0x37, 0x23, 0x3d, 0xf9, 0x13, 0xa9, 0xc8, 0x3a, 0x8f, - 0x52, 0xd8, 0x32, 0xd1, 0xbb, 0x37, 0x6e, 0x38, 0x7e, 0x6d, 0x6e, 0x82, 0x4c, 0xd2, 0x4e, 0x0b, - 0x65, 0x38, 0x53, 0xc5, 0x40, 0x67, 0x6b, 0xaa, 0xe6, 0x3f, 0xab, 0x36, 0x41, 0x26, 0x69, 0xa7, - 0x85, 0x95, 0xea, 0x0a, 0xb5, 0x5d, 0x3a, 0x5a, 0x33, 0xed, 0xfd, 0xbd, 0xe9, 0xb4, 0x30, 0x9d, - 0xe4, 0xa6, 0x0d, 0x8e, 0x49, 0x0e, 0x5d, 0x3a, 0x5a, 0x79, 0x3e, 0xa0, 0x6e, 0x04, 0x5f, 0xe5, - 0xb0, 0xa0, 0x55, 0x41, 0xb5, 0x65, 0x28, 0xfd, 0x86, 0x63, 0x2c, 0x13, 0xfd, 0x34, 0xc7, 0x6c, - 0x8d, 0x99, 0xe4, 0x38, 0xad, 0x17, 0xff, 0x5d, 0x89, 0x35, 0xbf, 0x29, 0xa8, 0xb3, 0xb9, 0x14, - 0x7e, 0x86, 0xf6, 0x26, 0x3c, 0x96, 0x43, 0xe6, 0xab, 0x8a, 0xa1, 0xf4, 0xf7, 0x1d, 0xbc, 0x4c, - 0xf4, 0x4e, 0x8e, 0x2e, 0x1a, 0x26, 0x69, 0xa6, 0x5f, 0x03, 0x1f, 0x5f, 0x20, 0x54, 0x9a, 0x98, - 0xaf, 0xee, 0x64, 0xf9, 0xee, 0x32, 0xd1, 0x8f, 0xf2, 0xfc, 0xaa, 0x67, 0x92, 0xfd, 0xe2, 0x31, - 0xf0, 0x71, 0x0f, 0xb5, 0xaa, 0xf5, 0xeb, 0xe9, 0xfa, 0xa4, 0x7a, 0x3b, 0x97, 0xb7, 0x73, 0x4d, - 0xb9, 0x9b, 0x6b, 0xca, 0xcf, 0xb9, 0xa6, 0x7c, 0x5f, 0x68, 0xb5, 0xbb, 0x85, 0x56, 0xfb, 0xb1, - 0xd0, 0x6a, 0x1f, 0x5f, 0x05, 0x4c, 0x5e, 0x4f, 0x3d, 0x8b, 0xf2, 0xd0, 0xa6, 0x5c, 0x84, 0x5c, - 0xd8, 0xcc, 0xa3, 0x67, 0x01, 0xb7, 0x43, 0xee, 0x4f, 0xc7, 0x20, 0xf2, 0x8b, 0x7e, 0x7e, 0x71, - 0x56, 0x1e, 0xb5, 0xbc, 0x99, 0x80, 0xf0, 0x9a, 0xd9, 0x41, 0xbf, 0xfc, 0x1d, 0x00, 0x00, 0xff, - 0xff, 0x14, 0xd3, 0x45, 0x43, 0x43, 0x04, 0x00, 0x00, + // 506 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x93, 0xcf, 0x6e, 0xd3, 0x40, + 0x10, 0x87, 0xe3, 0x36, 0x4d, 0xd3, 0x6d, 0x13, 0xd1, 0x6d, 0x23, 0x99, 0xa8, 0xd8, 0xc6, 0x48, + 0x28, 0x12, 0xaa, 0x4d, 0x4b, 0x2f, 0x70, 0x34, 0x07, 0xc8, 0x0d, 0x6d, 0x39, 0x21, 0xa1, 0xc8, + 0x5e, 0x4f, 0xdd, 0x55, 0x62, 0x6f, 0xf0, 0x6e, 0x02, 0x7d, 0x0a, 0x78, 0xac, 0x1e, 0x7b, 0xe4, + 0x64, 0xa1, 0xe4, 0x0d, 0x72, 0xe4, 0x84, 0xfc, 0x37, 0x89, 0x1a, 0x21, 0xca, 0xcd, 0x3b, 0xf3, + 0x9b, 0xef, 0x9b, 0x83, 0x07, 0x3d, 0x65, 0x1e, 0xb5, 0x29, 0x8f, 0xc1, 0xa6, 0xd7, 0x6e, 0x14, + 0xc1, 0xc8, 0x9e, 0x9e, 0xd9, 0x01, 0x44, 0x20, 0x98, 0xb0, 0xc6, 0x31, 0x97, 0x1c, 0x1f, 0x31, + 0x8f, 0x5a, 0x69, 0xc4, 0x2a, 0x22, 0xd6, 0xf4, 0xac, 0x7b, 0x1c, 0xf0, 0x80, 0x67, 0x7d, 0x3b, + 0xfd, 0xca, 0xa3, 0xdd, 0x8d, 0xb4, 0x72, 0x2a, 0x8b, 0x98, 0xf3, 0x1d, 0x74, 0xf0, 0x2e, 0xe7, + 0x5f, 0x4a, 0x57, 0x02, 0xfe, 0x8c, 0x9a, 0x45, 0x42, 0xa8, 0x8a, 0xb1, 0xdd, 0xdb, 0x3f, 0x7f, + 0x6e, 0x6d, 0x30, 0x5a, 0x7d, 0x1f, 0x22, 0xc9, 0xae, 0x18, 0xf8, 0x6f, 0xf3, 0xa2, 0xf3, 0xf8, + 0x36, 0xd1, 0x6b, 0xbf, 0x13, 0xfd, 0xf0, 0x5e, 0x8b, 0x54, 0x48, 0x4c, 0xd0, 0x23, 0x97, 0x0e, + 0x23, 0xfe, 0x75, 0x04, 0x7e, 0x00, 0x21, 0x44, 0x52, 0xa8, 0x5b, 0x99, 0xc6, 0xd8, 0xa8, 0xf9, + 0xe0, 0xd2, 0x21, 0xc8, 0x6c, 0x35, 0xa7, 0x9e, 0x0a, 0xc8, 0xbd, 0x79, 0xfc, 0x1e, 0xed, 0x53, + 0x1e, 0x86, 0x4c, 0xe6, 0xb8, 0xed, 0x07, 0xe1, 0x56, 0x47, 0xb1, 0x83, 0x9a, 0x31, 0x50, 0x60, + 0x63, 0x29, 0xd4, 0xfa, 0x83, 0x30, 0xd5, 0x1c, 0x66, 0xa8, 0x2d, 0x20, 0xf2, 0x07, 0x02, 0xbe, + 0x4c, 0x20, 0xa2, 0x20, 0xd4, 0x9d, 0x8c, 0xf4, 0xec, 0x6f, 0xa4, 0x22, 0xeb, 0x3c, 0x49, 0x61, + 0x8b, 0x44, 0xef, 0xdc, 0xb8, 0xe1, 0xe8, 0x8d, 0xb9, 0x0e, 0x32, 0x49, 0x2b, 0x2d, 0x94, 0xe1, + 0x4c, 0x15, 0x03, 0x9d, 0xae, 0xa8, 0x1a, 0xff, 0xad, 0x5a, 0x07, 0x99, 0xa4, 0x95, 0x16, 0x96, + 0xaa, 0x2b, 0xd4, 0x72, 0xe9, 0x70, 0xc5, 0xb4, 0xfb, 0xef, 0xa6, 0x93, 0xc2, 0x74, 0x9c, 0x9b, + 0xd6, 0x38, 0x26, 0x39, 0x70, 0xe9, 0x70, 0xe9, 0xf9, 0x88, 0x3a, 0x11, 0x7c, 0x93, 0x83, 0x82, + 0x56, 0x05, 0xd5, 0xa6, 0xa1, 0xf4, 0xea, 0x8e, 0xb1, 0x48, 0xf4, 0x93, 0x1c, 0xb3, 0x31, 0x66, + 0x92, 0xa3, 0xb4, 0x5e, 0xfc, 0x77, 0x25, 0xd6, 0xfc, 0xae, 0xa0, 0xf6, 0xfa, 0x52, 0xf8, 0x05, + 0xda, 0x1d, 0xf3, 0x58, 0x0e, 0x98, 0xaf, 0x2a, 0x86, 0xd2, 0xdb, 0x73, 0xf0, 0x22, 0xd1, 0xdb, + 0x39, 0xba, 0x68, 0x98, 0xa4, 0x91, 0x7e, 0xf5, 0x7d, 0x7c, 0x81, 0x50, 0x69, 0x62, 0xbe, 0xba, + 0x95, 0xe5, 0x3b, 0x8b, 0x44, 0x3f, 0xcc, 0xf3, 0xcb, 0x9e, 0x49, 0xf6, 0x8a, 0x47, 0xdf, 0xc7, + 0x5d, 0xd4, 0xac, 0xd6, 0xdf, 0x4e, 0xd7, 0x27, 0xd5, 0xdb, 0xb9, 0xbc, 0x9d, 0x69, 0xca, 0xdd, + 0x4c, 0x53, 0x7e, 0xcd, 0x34, 0xe5, 0xc7, 0x5c, 0xab, 0xdd, 0xcd, 0xb5, 0xda, 0xcf, 0xb9, 0x56, + 0xfb, 0xf4, 0x3a, 0x60, 0xf2, 0x7a, 0xe2, 0x59, 0x94, 0x87, 0x36, 0xe5, 0x22, 0xe4, 0xc2, 0x66, + 0x1e, 0x3d, 0x0d, 0xb8, 0x3d, 0x3d, 0xb7, 0x43, 0xee, 0x4f, 0x46, 0x20, 0xf2, 0xa3, 0x7e, 0x79, + 0x71, 0x5a, 0xde, 0xb5, 0xbc, 0x19, 0x83, 0xf0, 0x1a, 0xd9, 0x4d, 0xbf, 0xfa, 0x13, 0x00, 0x00, + 0xff, 0xff, 0x80, 0xaa, 0x4d, 0x9c, 0x46, 0x04, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/modules/core/04-channel/types/query.pb.go b/modules/core/04-channel/types/query.pb.go index 8f311a2d031..65eabb70767 100644 --- a/modules/core/04-channel/types/query.pb.go +++ b/modules/core/04-channel/types/query.pb.go @@ -1708,100 +1708,101 @@ func init() { func init() { proto.RegisterFile("ibc/core/channel/v1/query.proto", fileDescriptor_1034a1e9abc4cca1) } var fileDescriptor_1034a1e9abc4cca1 = []byte{ - // 1486 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x59, 0xcf, 0x6f, 0xd4, 0x46, - 0x14, 0xce, 0x6c, 0x16, 0x48, 0x1e, 0x94, 0x1f, 0x93, 0x04, 0x82, 0x09, 0x9b, 0xb0, 0x55, 0x4b, - 0x40, 0xc2, 0x43, 0x02, 0x4d, 0x51, 0xd5, 0x22, 0x91, 0x48, 0x85, 0x54, 0x05, 0x82, 0x29, 0x2a, - 0x20, 0xb5, 0x5b, 0xaf, 0x77, 0xd8, 0x58, 0xc9, 0xda, 0x66, 0xed, 0x5d, 0x40, 0xe9, 0x56, 0x55, - 0x0f, 0x14, 0xa9, 0x97, 0xaa, 0x1c, 0x2a, 0xf5, 0x52, 0xa9, 0x37, 0x0e, 0x3d, 0xf4, 0x2f, 0xe8, - 0x95, 0x5b, 0x91, 0xe8, 0xa1, 0x12, 0x12, 0xad, 0x08, 0x12, 0xbd, 0xf6, 0xd2, 0x73, 0xe5, 0xf9, - 0xe1, 0xb5, 0x77, 0x6d, 0x27, 0x9b, 0xcd, 0x4a, 0x51, 0x6f, 0xf6, 0x78, 0xde, 0x9b, 0xef, 0xfb, - 0xde, 0xbc, 0x97, 0xf7, 0x36, 0x30, 0x6e, 0x16, 0x0d, 0x62, 0xd8, 0x55, 0x4a, 0x8c, 0x45, 0xdd, - 0xb2, 0xe8, 0x32, 0xa9, 0x4f, 0x91, 0xdb, 0x35, 0x5a, 0xbd, 0xa7, 0x3a, 0x55, 0xdb, 0xb3, 0xf1, - 0x90, 0x59, 0x34, 0x54, 0x7f, 0x83, 0x2a, 0x36, 0xa8, 0xf5, 0x29, 0x25, 0x64, 0xb5, 0x6c, 0x52, - 0xcb, 0xf3, 0x8d, 0xf8, 0x13, 0xb7, 0x52, 0x8e, 0x1b, 0xb6, 0x5b, 0xb1, 0x5d, 0x52, 0xd4, 0x5d, - 0xca, 0xdd, 0x91, 0xfa, 0x54, 0x91, 0x7a, 0xfa, 0x14, 0x71, 0xf4, 0xb2, 0x69, 0xe9, 0x9e, 0x69, - 0x5b, 0x62, 0xef, 0x91, 0x38, 0x08, 0xf2, 0x30, 0xbe, 0x65, 0xac, 0x6c, 0xdb, 0xe5, 0x65, 0x4a, - 0x74, 0xc7, 0x24, 0xba, 0x65, 0xd9, 0x1e, 0xb3, 0x77, 0xc5, 0xd7, 0x83, 0xe2, 0x2b, 0x7b, 0x2b, - 0xd6, 0x6e, 0x11, 0xdd, 0x12, 0xe8, 0x95, 0xe1, 0xb2, 0x5d, 0xb6, 0xd9, 0x23, 0xf1, 0x9f, 0xf8, - 0x6a, 0xfe, 0x22, 0x0c, 0x5d, 0xf1, 0x31, 0xcd, 0xf1, 0x43, 0x34, 0x7a, 0xbb, 0x46, 0x5d, 0x0f, - 0x1f, 0x80, 0x1d, 0x8e, 0x5d, 0xf5, 0x0a, 0x66, 0x69, 0x14, 0x4d, 0xa0, 0xc9, 0x41, 0x6d, 0xbb, - 0xff, 0x3a, 0x5f, 0xc2, 0x87, 0x01, 0x04, 0x1e, 0xff, 0x5b, 0x86, 0x7d, 0x1b, 0x14, 0x2b, 0xf3, - 0xa5, 0xfc, 0x23, 0x04, 0xc3, 0x51, 0x7f, 0xae, 0x63, 0x5b, 0x2e, 0xc5, 0x33, 0xb0, 0x43, 0xec, - 0x62, 0x0e, 0x77, 0x4e, 0x8f, 0xa9, 0x31, 0x6a, 0xaa, 0xd2, 0x4c, 0x6e, 0xc6, 0xc3, 0xb0, 0xcd, - 0xa9, 0xda, 0xf6, 0x2d, 0x76, 0xd4, 0x2e, 0x8d, 0xbf, 0xe0, 0x39, 0xd8, 0xc5, 0x1e, 0x0a, 0x8b, - 0xd4, 0x2c, 0x2f, 0x7a, 0xa3, 0xfd, 0xcc, 0xa5, 0x12, 0x72, 0xc9, 0x23, 0x50, 0x9f, 0x52, 0x2f, - 0xb0, 0x1d, 0xb3, 0xd9, 0xc7, 0xcf, 0xc7, 0xfb, 0xb4, 0x9d, 0xcc, 0x8a, 0x2f, 0xe5, 0x3f, 0x8d, - 0x42, 0x75, 0x25, 0xf7, 0xf7, 0x01, 0x9a, 0x81, 0x11, 0x68, 0xdf, 0x54, 0x79, 0x14, 0x55, 0x3f, - 0x8a, 0x2a, 0xbf, 0x14, 0x22, 0x8a, 0xea, 0x82, 0x5e, 0xa6, 0xc2, 0x56, 0x0b, 0x59, 0xe6, 0x9f, - 0x23, 0x18, 0x69, 0x39, 0x40, 0x88, 0x31, 0x0b, 0x03, 0x82, 0x9f, 0x3b, 0x8a, 0x26, 0xfa, 0x99, - 0xff, 0x38, 0x35, 0xe6, 0x4b, 0xd4, 0xf2, 0xcc, 0x5b, 0x26, 0x2d, 0x49, 0x5d, 0x02, 0x3b, 0x7c, - 0x3e, 0x82, 0x32, 0xc3, 0x50, 0x1e, 0x5d, 0x13, 0x25, 0x07, 0x10, 0x86, 0x89, 0xcf, 0xc0, 0xf6, - 0x0e, 0x55, 0x14, 0xfb, 0xf3, 0x0f, 0x10, 0xe4, 0x38, 0x41, 0xdb, 0xb2, 0xa8, 0xe1, 0x7b, 0x6b, - 0xd5, 0x32, 0x07, 0x60, 0x04, 0x1f, 0xc5, 0x55, 0x0a, 0xad, 0xb4, 0x68, 0x9d, 0xd9, 0xb0, 0xd6, - 0x7f, 0x23, 0x18, 0x4f, 0x84, 0xf2, 0xff, 0x52, 0xfd, 0xba, 0x14, 0x9d, 0x63, 0x9a, 0x63, 0xbb, - 0xaf, 0x7a, 0xba, 0x47, 0xbb, 0x4d, 0xde, 0x3f, 0x03, 0x11, 0x63, 0x5c, 0x0b, 0x11, 0x75, 0x38, - 0x60, 0x06, 0xfa, 0x14, 0x38, 0xd4, 0x82, 0xeb, 0x6f, 0x11, 0x99, 0x72, 0x2c, 0x8e, 0x48, 0x48, - 0xd2, 0x90, 0xcf, 0x11, 0x33, 0x6e, 0xb9, 0x97, 0x29, 0xff, 0x33, 0x82, 0x23, 0x11, 0x86, 0x3e, - 0x27, 0xcb, 0xad, 0xb9, 0x9b, 0xa1, 0x1f, 0x3e, 0x0a, 0x7b, 0xaa, 0xb4, 0x6e, 0xba, 0xa6, 0x6d, - 0x15, 0xac, 0x5a, 0xa5, 0x48, 0xab, 0x0c, 0x65, 0x56, 0xdb, 0x2d, 0x97, 0x2f, 0xb1, 0xd5, 0xc8, - 0x46, 0x41, 0x27, 0x1b, 0xdd, 0x28, 0xf0, 0x3e, 0x43, 0x90, 0x4f, 0xc3, 0x2b, 0x82, 0xf2, 0x1e, - 0xec, 0x31, 0xe4, 0x97, 0x48, 0x30, 0x86, 0x55, 0xfe, 0xf7, 0x40, 0x95, 0x7f, 0x0f, 0xd4, 0x73, - 0xd6, 0x3d, 0x6d, 0xb7, 0x11, 0x71, 0x83, 0x0f, 0xc1, 0xa0, 0x08, 0x64, 0xc0, 0x6a, 0x80, 0x2f, - 0xcc, 0x97, 0x9a, 0xd1, 0xe8, 0x4f, 0x8b, 0x46, 0x76, 0x23, 0xd1, 0xa8, 0xc2, 0x18, 0x23, 0xb7, - 0xa0, 0x1b, 0x4b, 0xd4, 0x9b, 0xb3, 0x2b, 0x15, 0xd3, 0xab, 0x50, 0xcb, 0xeb, 0x36, 0x0e, 0x0a, - 0x0c, 0xb8, 0xbe, 0x0b, 0xcb, 0xa0, 0x22, 0x00, 0xc1, 0x7b, 0xfe, 0x07, 0x04, 0x87, 0x13, 0x0e, - 0x15, 0x62, 0xb2, 0x92, 0x25, 0x57, 0xd9, 0xc1, 0xbb, 0xb4, 0xd0, 0x4a, 0x2f, 0xaf, 0xe7, 0x8f, - 0x49, 0xe0, 0xdc, 0x6e, 0x25, 0x89, 0xd6, 0xd9, 0xfe, 0x0d, 0xd7, 0xd9, 0x57, 0xb2, 0xe4, 0xc7, - 0x20, 0x0c, 0xca, 0xec, 0xce, 0xa6, 0x5a, 0xb2, 0xd2, 0x4e, 0xc4, 0x56, 0x5a, 0xee, 0x84, 0xdf, - 0xe5, 0xb0, 0xd1, 0x56, 0x28, 0xb3, 0x36, 0x1c, 0x0c, 0x11, 0xd5, 0xa8, 0x41, 0x4d, 0xa7, 0xa7, - 0x37, 0xf3, 0x21, 0x02, 0x25, 0xee, 0x44, 0x21, 0xab, 0x02, 0x03, 0x55, 0x7f, 0xa9, 0x4e, 0xb9, - 0xdf, 0x01, 0x2d, 0x78, 0xef, 0x65, 0x8e, 0xde, 0x11, 0x05, 0x93, 0x83, 0x3a, 0x67, 0x2c, 0x59, - 0xf6, 0x9d, 0x65, 0x5a, 0x2a, 0xd3, 0x5e, 0x27, 0xea, 0x23, 0x59, 0xfa, 0x12, 0x4e, 0x16, 0xb2, - 0x4c, 0xc2, 0x1e, 0x3d, 0xfa, 0x49, 0xa4, 0x6c, 0xeb, 0x72, 0x2f, 0xf3, 0xf6, 0x65, 0x2a, 0xd6, - 0xad, 0x92, 0xbc, 0xf8, 0x2c, 0x1c, 0x72, 0x18, 0xc0, 0x42, 0x33, 0xd7, 0x0a, 0x52, 0x70, 0x77, - 0x34, 0x3b, 0xd1, 0x3f, 0x99, 0xd5, 0x0e, 0x3a, 0x2d, 0x99, 0x7d, 0x55, 0x6e, 0xc8, 0xff, 0x8b, - 0xe0, 0xf5, 0x54, 0x9a, 0x22, 0x26, 0x1f, 0xc2, 0xde, 0x16, 0xf1, 0xd7, 0x5f, 0x06, 0xda, 0x2c, - 0xb7, 0x42, 0x2d, 0xf8, 0x5e, 0xd6, 0xe5, 0x6b, 0x96, 0xcc, 0x39, 0x8e, 0xb9, 0xeb, 0xd0, 0xae, - 0x11, 0x92, 0xfe, 0xb5, 0x42, 0x72, 0x57, 0x94, 0xe3, 0x18, 0x60, 0x22, 0x18, 0x63, 0x30, 0xd8, - 0xf4, 0x87, 0x98, 0xbf, 0xe6, 0x42, 0x48, 0x93, 0x4c, 0x87, 0x9a, 0xdc, 0x97, 0xe5, 0xaa, 0x79, - 0xf4, 0x39, 0x63, 0xa9, 0x6b, 0x41, 0x4e, 0xc2, 0xb0, 0x10, 0x44, 0x37, 0x96, 0xda, 0x94, 0xc0, - 0x8e, 0xbc, 0x79, 0x4d, 0x09, 0x6a, 0x70, 0x28, 0x16, 0x47, 0x8f, 0xf9, 0xdf, 0x10, 0xbd, 0xf2, - 0x25, 0x7a, 0x37, 0x88, 0x87, 0xc6, 0x01, 0x74, 0xdb, 0x87, 0xff, 0x82, 0x60, 0x22, 0xd9, 0xb7, - 0xe0, 0x35, 0x0d, 0x23, 0x16, 0xbd, 0xdb, 0xbc, 0x2c, 0x05, 0xc1, 0x9e, 0x1d, 0x95, 0xd5, 0x86, - 0xac, 0x76, 0xdb, 0x1e, 0x96, 0xc0, 0xe9, 0x6f, 0xf6, 0xc3, 0x36, 0x86, 0x19, 0xff, 0x84, 0x60, - 0x87, 0x68, 0x57, 0xf1, 0x64, 0x6c, 0xbe, 0xc7, 0xfc, 0xe0, 0xa0, 0x1c, 0x5b, 0xc7, 0x4e, 0xce, - 0x3c, 0x3f, 0xfb, 0xd5, 0xd3, 0x97, 0x0f, 0x33, 0xef, 0xe2, 0x77, 0x48, 0xca, 0xaf, 0x25, 0x2e, - 0x59, 0x69, 0x4a, 0xdc, 0x20, 0xbe, 0xf0, 0x2e, 0x59, 0x11, 0xe1, 0x68, 0xe0, 0x07, 0x08, 0x06, - 0xe4, 0x80, 0x88, 0xd7, 0x3e, 0x5b, 0x5e, 0x6b, 0xe5, 0xf8, 0x7a, 0xb6, 0x0a, 0x9c, 0x6f, 0x30, - 0x9c, 0xe3, 0xf8, 0x70, 0x2a, 0x4e, 0xfc, 0x2b, 0x02, 0xdc, 0x3e, 0xb5, 0xe2, 0x53, 0x29, 0x27, - 0x25, 0x8d, 0xdb, 0xca, 0xe9, 0xce, 0x8c, 0x04, 0xd0, 0xb3, 0x0c, 0xe8, 0x19, 0x3c, 0x13, 0x0f, - 0x34, 0x30, 0xf4, 0x35, 0x0d, 0x5e, 0x1a, 0x4d, 0x06, 0x4f, 0x7c, 0x06, 0x6d, 0x23, 0x63, 0x2a, - 0x83, 0xa4, 0xd9, 0x35, 0x95, 0x41, 0xe2, 0x54, 0x9a, 0xbf, 0xcc, 0x18, 0xcc, 0xe3, 0xf3, 0x1b, - 0xbf, 0x12, 0x24, 0x3c, 0xcb, 0xe2, 0xef, 0x32, 0x30, 0x12, 0x3b, 0x73, 0xe1, 0x99, 0xb5, 0x01, - 0xc6, 0x0d, 0x95, 0xca, 0xdb, 0x1d, 0xdb, 0x09, 0x6e, 0x5f, 0x23, 0x46, 0xee, 0x4b, 0x84, 0xbf, - 0xe8, 0x86, 0x5d, 0x74, 0x3e, 0x24, 0x72, 0xd0, 0x24, 0x2b, 0x2d, 0x23, 0x6b, 0x83, 0xf0, 0x32, - 0x10, 0xfa, 0xc0, 0x17, 0x1a, 0xf8, 0x19, 0x82, 0xbd, 0xad, 0x7d, 0x3f, 0x9e, 0x4a, 0xe6, 0x95, - 0x30, 0xd7, 0x29, 0xd3, 0x9d, 0x98, 0x08, 0x15, 0x3e, 0x63, 0x22, 0xdc, 0xc4, 0xd7, 0xbb, 0xd0, - 0xa0, 0xed, 0x2f, 0xad, 0x4b, 0x56, 0x64, 0xf9, 0x6c, 0xe0, 0xa7, 0x08, 0xf6, 0xb5, 0x4d, 0x35, - 0xb8, 0x03, 0xac, 0x41, 0x16, 0x9e, 0xea, 0xc8, 0x46, 0x10, 0xbc, 0xc6, 0x08, 0x5e, 0xc6, 0x17, - 0x37, 0x95, 0x20, 0xfe, 0x0d, 0xc1, 0x6b, 0x91, 0x81, 0x02, 0xab, 0x6b, 0xa1, 0x8b, 0xce, 0x3a, - 0x0a, 0x59, 0xf7, 0x7e, 0xc1, 0xe4, 0x13, 0xc6, 0xe4, 0x63, 0x7c, 0xad, 0x7b, 0x26, 0x55, 0xee, - 0x3a, 0x12, 0xa7, 0x55, 0x04, 0x23, 0xb1, 0x0d, 0x68, 0x5a, 0x6a, 0xa6, 0x8d, 0x2f, 0x69, 0xa9, - 0x99, 0x3a, 0x7c, 0xe4, 0x6f, 0x30, 0xa6, 0x57, 0xf1, 0x95, 0xee, 0x99, 0xea, 0xc6, 0x52, 0x84, - 0xe5, 0x2b, 0x04, 0xfb, 0xe3, 0xdb, 0x6c, 0xdc, 0x29, 0xdc, 0xe0, 0x5e, 0x9e, 0xe9, 0xdc, 0x50, - 0x10, 0xbd, 0xc9, 0x88, 0x7e, 0x84, 0xb5, 0x4d, 0x21, 0x1a, 0xa5, 0x73, 0x3f, 0x03, 0xfb, 0xda, - 0xda, 0xd7, 0xb4, 0xbc, 0x4b, 0x6a, 0xc2, 0xd3, 0xf2, 0x2e, 0xb1, 0x3f, 0xde, 0xa4, 0xf2, 0x1a, - 0x57, 0x5a, 0x52, 0x1a, 0xfb, 0x06, 0xa9, 0x05, 0x80, 0x0a, 0x8e, 0xa0, 0xfc, 0x0f, 0x82, 0xdd, - 0xd1, 0x26, 0x16, 0x93, 0xf5, 0x30, 0x0a, 0xb5, 0xdd, 0xca, 0xc9, 0xf5, 0x1b, 0x08, 0xfe, 0x9f, - 0x33, 0xfa, 0x75, 0xec, 0xf5, 0x86, 0x7d, 0xa4, 0x8b, 0x8f, 0xd0, 0xf6, 0x6f, 0x3c, 0xfe, 0x1d, - 0xc1, 0x50, 0x4c, 0x97, 0x8b, 0x53, 0xda, 0x80, 0xe4, 0x86, 0x5b, 0x79, 0xab, 0x43, 0x2b, 0x21, - 0xc1, 0x02, 0x93, 0xe0, 0x03, 0x7c, 0xa1, 0x0b, 0x09, 0x22, 0xbd, 0xf8, 0xec, 0xc2, 0xe3, 0x17, - 0x39, 0xf4, 0xe4, 0x45, 0x0e, 0xfd, 0xf5, 0x22, 0x87, 0xbe, 0x5d, 0xcd, 0xf5, 0x3d, 0x59, 0xcd, - 0xf5, 0xfd, 0xb1, 0x9a, 0xeb, 0xbb, 0x39, 0x53, 0x36, 0xbd, 0xc5, 0x5a, 0x51, 0x35, 0xec, 0x0a, - 0x11, 0xff, 0x18, 0x34, 0x8b, 0xc6, 0x89, 0xb2, 0x4d, 0x2a, 0x76, 0xa9, 0xb6, 0x4c, 0x5d, 0x7e, - 0xfe, 0xc9, 0xd3, 0x27, 0x24, 0x04, 0xef, 0x9e, 0x43, 0xdd, 0xe2, 0x76, 0xf6, 0x0b, 0xee, 0xa9, - 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0x53, 0x37, 0x2a, 0x8c, 0xa5, 0x1c, 0x00, 0x00, + // 1490 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x59, 0xcf, 0x6f, 0x13, 0xc7, + 0x17, 0xcf, 0x38, 0x06, 0x92, 0x07, 0x5f, 0x7e, 0x4c, 0x12, 0x08, 0x4b, 0x70, 0x82, 0xbf, 0x6a, + 0x09, 0x48, 0xec, 0x90, 0x40, 0x29, 0xad, 0x5a, 0x24, 0x12, 0xa9, 0x90, 0xaa, 0xfc, 0xda, 0x14, + 0x15, 0x90, 0x5a, 0x77, 0xbd, 0x1e, 0x9c, 0x55, 0xe2, 0xdd, 0xc5, 0xbb, 0x36, 0xa0, 0xd4, 0x55, + 0xd5, 0x03, 0x45, 0xea, 0xa5, 0x2a, 0x87, 0x4a, 0xbd, 0x54, 0xea, 0x8d, 0x43, 0x0f, 0xfd, 0x0b, + 0x7a, 0xe5, 0x56, 0x24, 0x7a, 0xa8, 0x84, 0x44, 0x2b, 0x82, 0x44, 0xaf, 0xbd, 0xf4, 0x5c, 0xed, + 0xfc, 0x58, 0xef, 0xda, 0xbb, 0x1b, 0x3b, 0x8e, 0x25, 0xd4, 0xdb, 0xee, 0xec, 0xbc, 0x37, 0x9f, + 0xcf, 0xe7, 0xcd, 0x7b, 0x79, 0xcf, 0x81, 0x49, 0xb3, 0x68, 0x10, 0xc3, 0xae, 0x52, 0x62, 0x2c, + 0xe9, 0x96, 0x45, 0x57, 0x48, 0x7d, 0x86, 0xdc, 0xaa, 0xd1, 0xea, 0x5d, 0xd5, 0xa9, 0xda, 0x9e, + 0x8d, 0x47, 0xcc, 0xa2, 0xa1, 0xfa, 0x1b, 0x54, 0xb1, 0x41, 0xad, 0xcf, 0x28, 0x21, 0xab, 0x15, + 0x93, 0x5a, 0x9e, 0x6f, 0xc4, 0x9f, 0xb8, 0x95, 0x72, 0xd4, 0xb0, 0xdd, 0x8a, 0xed, 0x92, 0xa2, + 0xee, 0x52, 0xee, 0x8e, 0xd4, 0x67, 0x8a, 0xd4, 0xd3, 0x67, 0x88, 0xa3, 0x97, 0x4d, 0x4b, 0xf7, + 0x4c, 0xdb, 0x12, 0x7b, 0x0f, 0xc5, 0x41, 0x90, 0x87, 0xf1, 0x2d, 0x13, 0x65, 0xdb, 0x2e, 0xaf, + 0x50, 0xa2, 0x3b, 0x26, 0xd1, 0x2d, 0xcb, 0xf6, 0x98, 0xbd, 0x2b, 0xbe, 0xee, 0x17, 0x5f, 0xd9, + 0x5b, 0xb1, 0x76, 0x93, 0xe8, 0x96, 0x40, 0xaf, 0x8c, 0x96, 0xed, 0xb2, 0xcd, 0x1e, 0x89, 0xff, + 0xc4, 0x57, 0xf3, 0x17, 0x60, 0xe4, 0x8a, 0x8f, 0x69, 0x9e, 0x1f, 0xa2, 0xd1, 0x5b, 0x35, 0xea, + 0x7a, 0x78, 0x1f, 0x6c, 0x73, 0xec, 0xaa, 0x57, 0x30, 0x4b, 0xe3, 0x68, 0x0a, 0x4d, 0x0f, 0x6b, + 0x5b, 0xfd, 0xd7, 0x85, 0x12, 0x3e, 0x08, 0x20, 0xf0, 0xf8, 0xdf, 0x32, 0xec, 0xdb, 0xb0, 0x58, + 0x59, 0x28, 0xe5, 0x1f, 0x22, 0x18, 0x8d, 0xfa, 0x73, 0x1d, 0xdb, 0x72, 0x29, 0x3e, 0x05, 0xdb, + 0xc4, 0x2e, 0xe6, 0x70, 0xfb, 0xec, 0x84, 0x1a, 0xa3, 0xa6, 0x2a, 0xcd, 0xe4, 0x66, 0x3c, 0x0a, + 0x5b, 0x9c, 0xaa, 0x6d, 0xdf, 0x64, 0x47, 0xed, 0xd0, 0xf8, 0x0b, 0x9e, 0x87, 0x1d, 0xec, 0xa1, + 0xb0, 0x44, 0xcd, 0xf2, 0x92, 0x37, 0x3e, 0xc8, 0x5c, 0x2a, 0x21, 0x97, 0x3c, 0x02, 0xf5, 0x19, + 0xf5, 0x3c, 0xdb, 0x31, 0x97, 0x7d, 0xf4, 0x6c, 0x72, 0x40, 0xdb, 0xce, 0xac, 0xf8, 0x52, 0xfe, + 0x93, 0x28, 0x54, 0x57, 0x72, 0x7f, 0x0f, 0xa0, 0x19, 0x18, 0x81, 0xf6, 0x75, 0x95, 0x47, 0x51, + 0xf5, 0xa3, 0xa8, 0xf2, 0x4b, 0x21, 0xa2, 0xa8, 0x5e, 0xd6, 0xcb, 0x54, 0xd8, 0x6a, 0x21, 0xcb, + 0xfc, 0x33, 0x04, 0x63, 0x2d, 0x07, 0x08, 0x31, 0xe6, 0x60, 0x48, 0xf0, 0x73, 0xc7, 0xd1, 0xd4, + 0x20, 0xf3, 0x1f, 0xa7, 0xc6, 0x42, 0x89, 0x5a, 0x9e, 0x79, 0xd3, 0xa4, 0x25, 0xa9, 0x4b, 0x60, + 0x87, 0xcf, 0x45, 0x50, 0x66, 0x18, 0xca, 0xc3, 0xeb, 0xa2, 0xe4, 0x00, 0xc2, 0x30, 0xf1, 0x69, + 0xd8, 0xda, 0xa5, 0x8a, 0x62, 0x7f, 0xfe, 0x3e, 0x82, 0x1c, 0x27, 0x68, 0x5b, 0x16, 0x35, 0x7c, + 0x6f, 0xad, 0x5a, 0xe6, 0x00, 0x8c, 0xe0, 0xa3, 0xb8, 0x4a, 0xa1, 0x95, 0x16, 0xad, 0x33, 0x1b, + 0xd6, 0xfa, 0x2f, 0x04, 0x93, 0x89, 0x50, 0xfe, 0x5b, 0xaa, 0x5f, 0x93, 0xa2, 0x73, 0x4c, 0xf3, + 0x6c, 0xf7, 0xa2, 0xa7, 0x7b, 0xb4, 0xd7, 0xe4, 0xfd, 0x23, 0x10, 0x31, 0xc6, 0xb5, 0x10, 0x51, + 0x87, 0x7d, 0x66, 0xa0, 0x4f, 0x81, 0x43, 0x2d, 0xb8, 0xfe, 0x16, 0x91, 0x29, 0x47, 0xe2, 0x88, + 0x84, 0x24, 0x0d, 0xf9, 0x1c, 0x33, 0xe3, 0x96, 0xfb, 0x99, 0xf2, 0x3f, 0x21, 0x38, 0x14, 0x61, + 0xe8, 0x73, 0xb2, 0xdc, 0x9a, 0xbb, 0x19, 0xfa, 0xe1, 0xc3, 0xb0, 0xab, 0x4a, 0xeb, 0xa6, 0x6b, + 0xda, 0x56, 0xc1, 0xaa, 0x55, 0x8a, 0xb4, 0xca, 0x50, 0x66, 0xb5, 0x9d, 0x72, 0xf9, 0x22, 0x5b, + 0x8d, 0x6c, 0x14, 0x74, 0xb2, 0xd1, 0x8d, 0x02, 0xef, 0x53, 0x04, 0xf9, 0x34, 0xbc, 0x22, 0x28, + 0xef, 0xc2, 0x2e, 0x43, 0x7e, 0x89, 0x04, 0x63, 0x54, 0xe5, 0x7f, 0x0f, 0x54, 0xf9, 0xf7, 0x40, + 0x3d, 0x6b, 0xdd, 0xd5, 0x76, 0x1a, 0x11, 0x37, 0xf8, 0x00, 0x0c, 0x8b, 0x40, 0x06, 0xac, 0x86, + 0xf8, 0xc2, 0x42, 0xa9, 0x19, 0x8d, 0xc1, 0xb4, 0x68, 0x64, 0x37, 0x12, 0x8d, 0x2a, 0x4c, 0x30, + 0x72, 0x97, 0x75, 0x63, 0x99, 0x7a, 0xf3, 0x76, 0xa5, 0x62, 0x7a, 0x15, 0x6a, 0x79, 0xbd, 0xc6, + 0x41, 0x81, 0x21, 0xd7, 0x77, 0x61, 0x19, 0x54, 0x04, 0x20, 0x78, 0xcf, 0x7f, 0x8f, 0xe0, 0x60, + 0xc2, 0xa1, 0x42, 0x4c, 0x56, 0xb2, 0xe4, 0x2a, 0x3b, 0x78, 0x87, 0x16, 0x5a, 0xe9, 0xe7, 0xf5, + 0xfc, 0x21, 0x09, 0x9c, 0xdb, 0xab, 0x24, 0xd1, 0x3a, 0x3b, 0xb8, 0xe1, 0x3a, 0xfb, 0x52, 0x96, + 0xfc, 0x18, 0x84, 0x41, 0x99, 0xdd, 0xde, 0x54, 0x4b, 0x56, 0xda, 0xa9, 0xd8, 0x4a, 0xcb, 0x9d, + 0xf0, 0xbb, 0x1c, 0x36, 0x7a, 0x15, 0xca, 0xac, 0x0d, 0xfb, 0x43, 0x44, 0x35, 0x6a, 0x50, 0xd3, + 0xe9, 0xeb, 0xcd, 0x7c, 0x80, 0x40, 0x89, 0x3b, 0x51, 0xc8, 0xaa, 0xc0, 0x50, 0xd5, 0x5f, 0xaa, + 0x53, 0xee, 0x77, 0x48, 0x0b, 0xde, 0xfb, 0x99, 0xa3, 0xb7, 0x45, 0xc1, 0xe4, 0xa0, 0xce, 0x1a, + 0xcb, 0x96, 0x7d, 0x7b, 0x85, 0x96, 0xca, 0xb4, 0xdf, 0x89, 0xfa, 0x50, 0x96, 0xbe, 0x84, 0x93, + 0x85, 0x2c, 0xd3, 0xb0, 0x4b, 0x8f, 0x7e, 0x12, 0x29, 0xdb, 0xba, 0xdc, 0xcf, 0xbc, 0x7d, 0x91, + 0x8a, 0xf5, 0x55, 0x49, 0x5e, 0x7c, 0x06, 0x0e, 0x38, 0x0c, 0x60, 0xa1, 0x99, 0x6b, 0x05, 0x29, + 0xb8, 0x3b, 0x9e, 0x9d, 0x1a, 0x9c, 0xce, 0x6a, 0xfb, 0x9d, 0x96, 0xcc, 0x5e, 0x94, 0x1b, 0xf2, + 0xff, 0x20, 0xf8, 0x7f, 0x2a, 0x4d, 0x11, 0x93, 0x0f, 0x60, 0x77, 0x8b, 0xf8, 0x9d, 0x97, 0x81, + 0x36, 0xcb, 0x57, 0xa1, 0x16, 0x7c, 0x27, 0xeb, 0xf2, 0x55, 0x4b, 0xe6, 0x1c, 0xc7, 0xdc, 0x73, + 0x68, 0xd7, 0x09, 0xc9, 0xe0, 0x7a, 0x21, 0xb9, 0x23, 0xca, 0x71, 0x0c, 0x30, 0x11, 0x8c, 0x09, + 0x18, 0x6e, 0xfa, 0x43, 0xcc, 0x5f, 0x73, 0x21, 0xa4, 0x49, 0xa6, 0x4b, 0x4d, 0xee, 0xc9, 0x72, + 0xd5, 0x3c, 0xfa, 0xac, 0xb1, 0xdc, 0xb3, 0x20, 0xc7, 0x61, 0x54, 0x08, 0xa2, 0x1b, 0xcb, 0x6d, + 0x4a, 0x60, 0x47, 0xde, 0xbc, 0xa6, 0x04, 0x35, 0x38, 0x10, 0x8b, 0xa3, 0xcf, 0xfc, 0xaf, 0x8b, + 0x5e, 0xf9, 0x22, 0xbd, 0x13, 0xc4, 0x43, 0xe3, 0x00, 0x7a, 0xed, 0xc3, 0x7f, 0x46, 0x30, 0x95, + 0xec, 0x5b, 0xf0, 0x9a, 0x85, 0x31, 0x8b, 0xde, 0x69, 0x5e, 0x96, 0x82, 0x60, 0xcf, 0x8e, 0xca, + 0x6a, 0x23, 0x56, 0xbb, 0x6d, 0x1f, 0x4b, 0xe0, 0xec, 0xd7, 0x7b, 0x61, 0x0b, 0xc3, 0x8c, 0x7f, + 0x44, 0xb0, 0x4d, 0xb4, 0xab, 0x78, 0x3a, 0x36, 0xdf, 0x63, 0x7e, 0x70, 0x50, 0x8e, 0x74, 0xb0, + 0x93, 0x33, 0xcf, 0xcf, 0x7d, 0xf9, 0xe4, 0xc5, 0x83, 0xcc, 0x3b, 0xf8, 0x6d, 0x92, 0xf2, 0x6b, + 0x89, 0x4b, 0x56, 0x9b, 0x12, 0x37, 0x88, 0x2f, 0xbc, 0x4b, 0x56, 0x45, 0x38, 0x1a, 0xf8, 0x3e, + 0x82, 0x21, 0x39, 0x20, 0xe2, 0xf5, 0xcf, 0x96, 0xd7, 0x5a, 0x39, 0xda, 0xc9, 0x56, 0x81, 0xf3, + 0x35, 0x86, 0x73, 0x12, 0x1f, 0x4c, 0xc5, 0x89, 0x7f, 0x41, 0x80, 0xdb, 0xa7, 0x56, 0x7c, 0x22, + 0xe5, 0xa4, 0xa4, 0x71, 0x5b, 0x39, 0xd9, 0x9d, 0x91, 0x00, 0x7a, 0x86, 0x01, 0x3d, 0x8d, 0x4f, + 0xc5, 0x03, 0x0d, 0x0c, 0x7d, 0x4d, 0x83, 0x97, 0x46, 0x93, 0xc1, 0x63, 0x9f, 0x41, 0xdb, 0xc8, + 0x98, 0xca, 0x20, 0x69, 0x76, 0x4d, 0x65, 0x90, 0x38, 0x95, 0xe6, 0x2f, 0x31, 0x06, 0x0b, 0xf8, + 0xdc, 0xc6, 0xaf, 0x04, 0x09, 0xcf, 0xb2, 0xf8, 0xdb, 0x0c, 0x8c, 0xc5, 0xce, 0x5c, 0xf8, 0xd4, + 0xfa, 0x00, 0xe3, 0x86, 0x4a, 0xe5, 0xcd, 0xae, 0xed, 0x04, 0xb7, 0xaf, 0x10, 0x23, 0xf7, 0x05, + 0xc2, 0x9f, 0xf7, 0xc2, 0x2e, 0x3a, 0x1f, 0x12, 0x39, 0x68, 0x92, 0xd5, 0x96, 0x91, 0xb5, 0x41, + 0x78, 0x19, 0x08, 0x7d, 0xe0, 0x0b, 0x0d, 0xfc, 0x14, 0xc1, 0xee, 0xd6, 0xbe, 0x1f, 0xcf, 0x24, + 0xf3, 0x4a, 0x98, 0xeb, 0x94, 0xd9, 0x6e, 0x4c, 0x84, 0x0a, 0x9f, 0x32, 0x11, 0x6e, 0xe0, 0x6b, + 0x3d, 0x68, 0xd0, 0xf6, 0x97, 0xd6, 0x25, 0xab, 0xb2, 0x7c, 0x36, 0xf0, 0x13, 0x04, 0x7b, 0xda, + 0xa6, 0x1a, 0xdc, 0x05, 0xd6, 0x20, 0x0b, 0x4f, 0x74, 0x65, 0x23, 0x08, 0x5e, 0x65, 0x04, 0x2f, + 0xe1, 0x0b, 0x9b, 0x4a, 0x10, 0xff, 0x8a, 0xe0, 0x7f, 0x91, 0x81, 0x02, 0xab, 0xeb, 0xa1, 0x8b, + 0xce, 0x3a, 0x0a, 0xe9, 0x78, 0xbf, 0x60, 0xf2, 0x31, 0x63, 0xf2, 0x11, 0xbe, 0xda, 0x3b, 0x93, + 0x2a, 0x77, 0x1d, 0x89, 0xd3, 0x1a, 0x82, 0xb1, 0xd8, 0x06, 0x34, 0x2d, 0x35, 0xd3, 0xc6, 0x97, + 0xb4, 0xd4, 0x4c, 0x1d, 0x3e, 0xf2, 0xd7, 0x19, 0xd3, 0x45, 0x7c, 0xa5, 0x77, 0xa6, 0xba, 0xb1, + 0x1c, 0x61, 0xf9, 0x12, 0xc1, 0xde, 0xf8, 0x36, 0x1b, 0x77, 0x0b, 0x37, 0xb8, 0x97, 0xa7, 0xbb, + 0x37, 0x14, 0x44, 0x6f, 0x30, 0xa2, 0x1f, 0x62, 0x6d, 0x53, 0x88, 0x46, 0xe9, 0xdc, 0xcb, 0xc0, + 0x9e, 0xb6, 0xf6, 0x35, 0x2d, 0xef, 0x92, 0x9a, 0xf0, 0xb4, 0xbc, 0x4b, 0xec, 0x8f, 0x37, 0xa9, + 0xbc, 0xc6, 0x95, 0x96, 0x94, 0xc6, 0xbe, 0x41, 0x6a, 0x01, 0xa0, 0x82, 0x23, 0x28, 0xff, 0x8d, + 0x60, 0x67, 0xb4, 0x89, 0xc5, 0xa4, 0x13, 0x46, 0xa1, 0xb6, 0x5b, 0x39, 0xde, 0xb9, 0x81, 0xe0, + 0xff, 0x19, 0xa3, 0x5f, 0xc7, 0x5e, 0x7f, 0xd8, 0x47, 0xba, 0xf8, 0x08, 0x6d, 0xff, 0xc6, 0xe3, + 0xdf, 0x10, 0x8c, 0xc4, 0x74, 0xb9, 0x38, 0xa5, 0x0d, 0x48, 0x6e, 0xb8, 0x95, 0x37, 0xba, 0xb4, + 0x12, 0x12, 0x5c, 0x66, 0x12, 0xbc, 0x8f, 0xcf, 0xf7, 0x20, 0x41, 0xa4, 0x17, 0x9f, 0x5b, 0x7c, + 0xf4, 0x3c, 0x87, 0x1e, 0x3f, 0xcf, 0xa1, 0x3f, 0x9f, 0xe7, 0xd0, 0x37, 0x6b, 0xb9, 0x81, 0xc7, + 0x6b, 0xb9, 0x81, 0xdf, 0xd7, 0x72, 0x03, 0x37, 0xde, 0x2a, 0x9b, 0xde, 0x52, 0xad, 0xa8, 0x1a, + 0x76, 0x85, 0x88, 0x7f, 0x0c, 0x9a, 0x45, 0xe3, 0x58, 0xd9, 0x26, 0xf5, 0x59, 0x52, 0xb1, 0x4b, + 0xb5, 0x15, 0xea, 0x72, 0x08, 0xc7, 0x4f, 0x1e, 0x93, 0x28, 0xbc, 0xbb, 0x0e, 0x75, 0x8b, 0x5b, + 0xd9, 0x8f, 0xb8, 0x27, 0xfe, 0x0d, 0x00, 0x00, 0xff, 0xff, 0x2b, 0x7b, 0x87, 0x0e, 0xa8, 0x1c, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/modules/core/04-channel/types/tx.pb.go b/modules/core/04-channel/types/tx.pb.go index 4fca27c5903..41d25516508 100644 --- a/modules/core/04-channel/types/tx.pb.go +++ b/modules/core/04-channel/types/tx.pb.go @@ -855,78 +855,78 @@ func init() { func init() { proto.RegisterFile("ibc/core/channel/v1/tx.proto", fileDescriptor_bc4637e0ac3fc7b7) } var fileDescriptor_bc4637e0ac3fc7b7 = []byte{ - // 1124 bytes of a gzipped FileDescriptorProto + // 1126 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0xcd, 0x6e, 0xdb, 0x46, - 0x10, 0xd6, 0x8f, 0x23, 0xdb, 0x63, 0x37, 0xb6, 0x29, 0xff, 0x28, 0x94, 0x2d, 0xba, 0x3c, 0x24, - 0x42, 0x8a, 0x48, 0xb1, 0x63, 0xb4, 0x68, 0xd0, 0x8b, 0x64, 0xa0, 0x68, 0x50, 0xb8, 0x09, 0x18, + 0x10, 0xd6, 0x8f, 0x2d, 0xdb, 0x63, 0x37, 0xb6, 0x29, 0xff, 0x28, 0x94, 0x2d, 0xba, 0x3c, 0x24, + 0x42, 0x8a, 0x88, 0xb1, 0x62, 0xa0, 0x48, 0xd0, 0x8b, 0x64, 0xa0, 0x68, 0x50, 0xb8, 0x29, 0x68, 0xb7, 0x07, 0xa3, 0x80, 0x20, 0xad, 0x36, 0x14, 0x21, 0x89, 0xab, 0x92, 0x94, 0x12, 0xbd, 0x41, 0x8f, 0x39, 0xf7, 0x94, 0x9e, 0x7b, 0x48, 0x1f, 0x23, 0xc7, 0x9c, 0xda, 0xa2, 0x07, 0xa2, 0xb0, - 0x2f, 0x3d, 0xf3, 0x09, 0x0a, 0xee, 0x2e, 0x29, 0x4a, 0x22, 0x2b, 0x2a, 0xa9, 0xdc, 0xdc, 0x96, - 0x33, 0xdf, 0xce, 0xce, 0x7e, 0xdf, 0x70, 0x76, 0x49, 0xd8, 0xd7, 0x1a, 0xa8, 0x8c, 0x88, 0x81, - 0xcb, 0xa8, 0x55, 0xd7, 0x75, 0xdc, 0x29, 0x0f, 0x8e, 0xca, 0xd6, 0x8b, 0x52, 0xcf, 0x20, 0x16, - 0x11, 0xb2, 0x5a, 0x03, 0x95, 0x5c, 0x6f, 0x89, 0x7b, 0x4b, 0x83, 0x23, 0x71, 0x5b, 0x25, 0x2a, - 0xa1, 0xfe, 0xb2, 0x3b, 0x62, 0x50, 0x51, 0x1a, 0x05, 0xea, 0x68, 0x58, 0xb7, 0xdc, 0x38, 0x6c, - 0xc4, 0x01, 0x1f, 0x87, 0xad, 0xe4, 0x85, 0xa5, 0x10, 0xf9, 0xe7, 0x24, 0x08, 0x67, 0xa6, 0x7a, - 0xca, 0x8c, 0x8f, 0x7b, 0x58, 0x7f, 0xa4, 0x6b, 0x96, 0xf0, 0x09, 0x2c, 0xf7, 0x88, 0x61, 0xd5, - 0xb4, 0x66, 0x2e, 0x79, 0x98, 0x2c, 0xae, 0x56, 0x05, 0xc7, 0x96, 0x6e, 0x0e, 0xeb, 0xdd, 0xce, - 0x43, 0x99, 0x3b, 0x64, 0x25, 0xe3, 0x8e, 0x1e, 0x35, 0x85, 0x2f, 0x60, 0x99, 0x07, 0xcd, 0xa5, - 0x0e, 0x93, 0xc5, 0xb5, 0xe3, 0xfd, 0x52, 0xc8, 0x26, 0x4a, 0x7c, 0x8d, 0xea, 0xd2, 0x1b, 0x5b, - 0x4a, 0x28, 0xde, 0x14, 0x61, 0x17, 0x32, 0xa6, 0xa6, 0xea, 0xd8, 0xc8, 0xa5, 0xdd, 0x95, 0x14, - 0xfe, 0xf4, 0x70, 0xe5, 0xc7, 0x57, 0x52, 0xe2, 0xef, 0x57, 0x52, 0x42, 0xde, 0x07, 0x71, 0x3a, - 0x45, 0x05, 0x9b, 0x3d, 0xa2, 0x9b, 0x58, 0xfe, 0x2d, 0x0d, 0x5b, 0xe3, 0xee, 0x73, 0x63, 0x38, - 0xdf, 0x06, 0xbe, 0x81, 0x6c, 0xcf, 0xc0, 0x03, 0x8d, 0xf4, 0xcd, 0x1a, 0x4f, 0xcb, 0x9d, 0x98, - 0xa2, 0x13, 0x0b, 0x8e, 0x2d, 0x89, 0x7c, 0xe2, 0x34, 0x48, 0x56, 0xb6, 0x3c, 0x2b, 0xcf, 0x60, - 0x9c, 0x90, 0xf4, 0xfc, 0x84, 0x28, 0xb0, 0x8d, 0x48, 0x5f, 0xb7, 0xb0, 0xd1, 0xab, 0x1b, 0xd6, - 0xb0, 0x36, 0xc0, 0x86, 0xa9, 0x11, 0x3d, 0xb7, 0x44, 0xd3, 0x91, 0x1c, 0x5b, 0xca, 0xb3, 0x74, - 0xc2, 0x50, 0xb2, 0x92, 0x0d, 0x9a, 0xbf, 0x63, 0x56, 0xe1, 0x04, 0xa0, 0x67, 0x10, 0xf2, 0xac, - 0xa6, 0xe9, 0x9a, 0x95, 0xbb, 0x71, 0x98, 0x2c, 0xae, 0x57, 0x77, 0x1c, 0x5b, 0xda, 0xf2, 0x36, - 0xe6, 0xf9, 0x64, 0x65, 0x95, 0x3e, 0xd0, 0x2a, 0xb8, 0x80, 0x75, 0xe6, 0x69, 0x61, 0x4d, 0x6d, - 0x59, 0xb9, 0x0c, 0xdd, 0x8c, 0x18, 0xd8, 0x0c, 0xab, 0xb6, 0xc1, 0x51, 0xe9, 0x2b, 0x8a, 0xa8, - 0xe6, 0xdd, 0xad, 0x38, 0xb6, 0x94, 0x0d, 0xc6, 0x65, 0xb3, 0x65, 0x65, 0x8d, 0x3e, 0x32, 0x64, - 0x40, 0xf6, 0xe5, 0x08, 0xd9, 0xf3, 0x70, 0x6b, 0x4a, 0x57, 0x5f, 0xf5, 0xdf, 0xa7, 0x54, 0xaf, - 0xa0, 0xf6, 0x7c, 0xaa, 0x9f, 0x00, 0x4c, 0x89, 0x1d, 0xe0, 0x24, 0xa8, 0xf1, 0x2a, 0xf2, 0xb5, - 0xbd, 0x80, 0xbd, 0x31, 0xde, 0x03, 0x21, 0x68, 0xfd, 0x56, 0x65, 0xc7, 0x96, 0x0a, 0x21, 0x02, - 0x05, 0xe3, 0xed, 0x04, 0x3d, 0xa3, 0xba, 0x59, 0x84, 0xf2, 0x47, 0xc0, 0x04, 0xad, 0x59, 0xc6, - 0x90, 0x0b, 0xbf, 0xed, 0xd8, 0xd2, 0x66, 0x50, 0x20, 0xcb, 0x18, 0xca, 0xca, 0x0a, 0x1d, 0xbb, - 0xef, 0xce, 0x07, 0x26, 0x7b, 0x05, 0xb5, 0x7d, 0xd9, 0x7f, 0x49, 0xc1, 0xce, 0xb8, 0xf7, 0x94, - 0xe8, 0xcf, 0x34, 0xa3, 0x7b, 0x1d, 0xd2, 0xfb, 0x54, 0xd6, 0x51, 0x9b, 0x8a, 0x1d, 0x42, 0x65, - 0x1d, 0xb5, 0x3d, 0x2a, 0xdd, 0x82, 0x9c, 0xa4, 0x72, 0x69, 0x21, 0x54, 0xde, 0x88, 0xa0, 0x52, - 0x82, 0x83, 0x50, 0xb2, 0x7c, 0x3a, 0x7f, 0x4a, 0x42, 0x76, 0x84, 0x38, 0xed, 0x10, 0x13, 0xcf, - 0xdf, 0xfe, 0xdf, 0x8d, 0xcc, 0xd9, 0x6d, 0xff, 0x00, 0xf2, 0x21, 0xb9, 0xf9, 0xb9, 0xbf, 0x4e, - 0xc1, 0xee, 0x84, 0xff, 0x1a, 0x6b, 0x61, 0xbc, 0xa1, 0xa6, 0xdf, 0xb1, 0xa1, 0x5e, 0x6f, 0x39, - 0x1c, 0x42, 0x21, 0x9c, 0x30, 0x9f, 0xd3, 0x97, 0x29, 0xf8, 0xe8, 0xcc, 0x54, 0x15, 0x8c, 0x06, - 0x4f, 0xea, 0xa8, 0x8d, 0x2d, 0xe1, 0x73, 0xc8, 0xf4, 0xe8, 0x88, 0x32, 0xb9, 0x76, 0x9c, 0x0f, - 0x3d, 0xc9, 0x18, 0x98, 0x1f, 0x64, 0x7c, 0x82, 0xf0, 0x25, 0x6c, 0xb2, 0x74, 0x11, 0xe9, 0x76, - 0x35, 0xab, 0x8b, 0x75, 0x8b, 0xd2, 0xbb, 0x5e, 0xcd, 0x3b, 0xb6, 0xb4, 0x17, 0xdc, 0xd0, 0x08, - 0x21, 0x2b, 0x1b, 0xd4, 0x74, 0xea, 0x5b, 0xa6, 0x48, 0x4b, 0x2f, 0x84, 0xb4, 0xa5, 0x08, 0xd2, - 0xf6, 0x68, 0xc3, 0x19, 0x31, 0xe2, 0x73, 0xf5, 0x67, 0x0a, 0xe0, 0xcc, 0x54, 0xcf, 0xb5, 0x2e, - 0x26, 0xfd, 0xff, 0x86, 0xa8, 0xbe, 0x6e, 0x60, 0x84, 0xb5, 0x01, 0x6e, 0x46, 0x11, 0x35, 0x42, - 0x78, 0x44, 0x7d, 0xeb, 0x5b, 0x16, 0x4a, 0xd4, 0xd7, 0x20, 0xe8, 0xf8, 0x85, 0x55, 0x33, 0xf1, - 0x0f, 0x7d, 0xac, 0x23, 0x5c, 0x33, 0x30, 0x1a, 0x50, 0xd2, 0x96, 0xaa, 0x07, 0x8e, 0x2d, 0xdd, - 0x62, 0x11, 0xa6, 0x31, 0xb2, 0xb2, 0xe9, 0x1a, 0x9f, 0x72, 0x9b, 0x4b, 0x64, 0x8c, 0x52, 0xdd, - 0xa6, 0xb7, 0x52, 0xce, 0xed, 0xa8, 0x5d, 0xb1, 0x43, 0x9f, 0x9b, 0x1f, 0xeb, 0xb4, 0x86, 0x3f, - 0x04, 0xe6, 0x3f, 0x83, 0x35, 0x5e, 0xc8, 0x6e, 0x46, 0xbc, 0x1d, 0xec, 0x3a, 0xb6, 0x24, 0x8c, - 0x55, 0xb9, 0xeb, 0x94, 0x15, 0xd6, 0x38, 0x58, 0xee, 0x8b, 0x6c, 0x08, 0xe1, 0x92, 0xdd, 0x78, - 0x5f, 0xc9, 0x32, 0xff, 0x7a, 0x6e, 0x8f, 0x6b, 0xe3, 0x2b, 0xf7, 0x6b, 0x8a, 0x0a, 0x5a, 0x41, - 0x6d, 0x9d, 0x3c, 0xef, 0xe0, 0xa6, 0x8a, 0xe9, 0xab, 0xfd, 0x1e, 0xd2, 0x15, 0x61, 0xa3, 0x3e, - 0x1e, 0x8d, 0x29, 0xa7, 0x4c, 0x9a, 0x47, 0xe2, 0xb8, 0x13, 0x9b, 0x51, 0xe2, 0x50, 0xa7, 0x27, - 0x4e, 0xc5, 0x7d, 0xf8, 0x9f, 0xbb, 0x35, 0xfb, 0xea, 0x99, 0x60, 0xcc, 0x23, 0xf4, 0xf8, 0xf5, - 0x0a, 0xa4, 0xcf, 0x4c, 0x55, 0x68, 0xc3, 0xc6, 0xe4, 0xb7, 0xdb, 0x9d, 0x50, 0x12, 0xa7, 0xbf, - 0xa0, 0xc4, 0x72, 0x4c, 0xa0, 0xb7, 0xa8, 0xd0, 0x82, 0x9b, 0x13, 0x9f, 0x59, 0xb7, 0x63, 0x84, - 0x38, 0x37, 0x86, 0x62, 0x29, 0x1e, 0x2e, 0x62, 0x25, 0xf7, 0x26, 0x15, 0x67, 0xa5, 0x0a, 0x6a, - 0xc7, 0x5a, 0x29, 0x70, 0xa3, 0x14, 0x2c, 0x10, 0x42, 0x6e, 0x93, 0x77, 0x63, 0x44, 0xe1, 0x58, - 0xf1, 0x38, 0x3e, 0xd6, 0x5f, 0x55, 0x87, 0xcd, 0xa9, 0x4b, 0x57, 0x71, 0x46, 0x1c, 0x1f, 0x29, - 0xde, 0x8f, 0x8b, 0xf4, 0xd7, 0x7b, 0x0e, 0xd9, 0xd0, 0x8b, 0x52, 0x9c, 0x40, 0xde, 0x3e, 0x1f, - 0xcc, 0x01, 0xf6, 0x17, 0xfe, 0x1e, 0x20, 0x70, 0x9b, 0x90, 0xa3, 0x42, 0x8c, 0x30, 0xe2, 0xdd, - 0xd9, 0x18, 0x3f, 0xfa, 0x53, 0x58, 0xf6, 0xce, 0x5f, 0x29, 0x6a, 0x1a, 0x07, 0x88, 0x77, 0x66, - 0x00, 0x82, 0xb5, 0x37, 0x71, 0xc2, 0xdc, 0x9e, 0x31, 0x95, 0xe3, 0xa2, 0x6b, 0x2f, 0xbc, 0x2b, - 0xba, 0x2f, 0xef, 0x64, 0x47, 0x8c, 0xcc, 0x72, 0x02, 0x18, 0xfd, 0xf2, 0x46, 0x74, 0x8c, 0xea, - 0x93, 0x37, 0x97, 0x85, 0xe4, 0xdb, 0xcb, 0x42, 0xf2, 0xaf, 0xcb, 0x42, 0xf2, 0xe5, 0x55, 0x21, - 0xf1, 0xf6, 0xaa, 0x90, 0xf8, 0xe3, 0xaa, 0x90, 0xb8, 0xf8, 0x54, 0xd5, 0xac, 0x56, 0xbf, 0x51, - 0x42, 0xa4, 0x5b, 0x46, 0xc4, 0xec, 0x12, 0xb3, 0xac, 0x35, 0xd0, 0x3d, 0x95, 0x94, 0xbb, 0xa4, - 0xd9, 0xef, 0x60, 0x93, 0xfd, 0x43, 0xba, 0x7f, 0x72, 0xcf, 0xfb, 0x8d, 0x64, 0x0d, 0x7b, 0xd8, - 0x6c, 0x64, 0xe8, 0x2f, 0xa4, 0x07, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0x40, 0xf7, 0xc0, 0x94, - 0xd1, 0x12, 0x00, 0x00, + 0x2f, 0x3d, 0xf3, 0x09, 0x0a, 0x2e, 0x97, 0x14, 0x25, 0x91, 0x15, 0x95, 0x54, 0x4e, 0x6e, 0xcb, + 0x99, 0x6f, 0x67, 0x67, 0xbf, 0x6f, 0x38, 0xbb, 0x24, 0x1c, 0xa8, 0x0d, 0x24, 0x21, 0xa2, 0x63, + 0x09, 0xb5, 0xea, 0x9a, 0x86, 0x3b, 0xd2, 0xe0, 0x58, 0x32, 0x5f, 0x94, 0x7a, 0x3a, 0x31, 0x09, + 0x97, 0x55, 0x1b, 0xa8, 0xe4, 0x78, 0x4b, 0xcc, 0x5b, 0x1a, 0x1c, 0xf3, 0x3b, 0x0a, 0x51, 0x08, + 0xf5, 0x4b, 0xce, 0xc8, 0x85, 0xf2, 0xc2, 0x28, 0x50, 0x47, 0xc5, 0x9a, 0xe9, 0xc4, 0x71, 0x47, + 0x0c, 0xf0, 0x69, 0xd8, 0x4a, 0x5e, 0x58, 0x0a, 0x11, 0x7f, 0x49, 0x02, 0x77, 0x66, 0x28, 0xa7, + 0xae, 0xf1, 0x69, 0x0f, 0x6b, 0x4f, 0x34, 0xd5, 0xe4, 0x3e, 0x83, 0x95, 0x1e, 0xd1, 0xcd, 0x9a, + 0xda, 0xcc, 0x25, 0x8f, 0x92, 0xc5, 0xb5, 0x2a, 0x67, 0x5b, 0xc2, 0xad, 0x61, 0xbd, 0xdb, 0x79, + 0x2c, 0x32, 0x87, 0x28, 0x67, 0x9c, 0xd1, 0x93, 0x26, 0xf7, 0x05, 0xac, 0xb0, 0xa0, 0xb9, 0xd4, + 0x51, 0xb2, 0xb8, 0x5e, 0x3e, 0x28, 0x85, 0x6c, 0xa2, 0xc4, 0xd6, 0xa8, 0x2e, 0xbd, 0xb1, 0x84, + 0x84, 0xec, 0x4d, 0xe1, 0xf6, 0x20, 0x63, 0xa8, 0x8a, 0x86, 0xf5, 0x5c, 0xda, 0x59, 0x49, 0x66, + 0x4f, 0x8f, 0x57, 0x7f, 0x7a, 0x25, 0x24, 0xfe, 0x79, 0x25, 0x24, 0xc4, 0x03, 0xe0, 0xa7, 0x53, + 0x94, 0xb1, 0xd1, 0x23, 0x9a, 0x81, 0xc5, 0xdf, 0xd3, 0xb0, 0x3d, 0xee, 0xbe, 0xd0, 0x87, 0xf3, + 0x6d, 0xe0, 0x1b, 0xc8, 0xf6, 0x74, 0x3c, 0x50, 0x49, 0xdf, 0xa8, 0xb1, 0xb4, 0x9c, 0x89, 0x29, + 0x3a, 0xb1, 0x60, 0x5b, 0x02, 0xcf, 0x26, 0x4e, 0x83, 0x44, 0x79, 0xdb, 0xb3, 0xb2, 0x0c, 0xc6, + 0x09, 0x49, 0xcf, 0x4f, 0x88, 0x0c, 0x3b, 0x88, 0xf4, 0x35, 0x13, 0xeb, 0xbd, 0xba, 0x6e, 0x0e, + 0x6b, 0x03, 0xac, 0x1b, 0x2a, 0xd1, 0x72, 0x4b, 0x34, 0x1d, 0xc1, 0xb6, 0x84, 0xbc, 0x9b, 0x4e, + 0x18, 0x4a, 0x94, 0xb3, 0x41, 0xf3, 0xf7, 0xae, 0x95, 0x3b, 0x01, 0xe8, 0xe9, 0x84, 0x3c, 0xab, + 0xa9, 0x9a, 0x6a, 0xe6, 0x96, 0x8f, 0x92, 0xc5, 0x8d, 0xea, 0xae, 0x6d, 0x09, 0xdb, 0xde, 0xc6, + 0x3c, 0x9f, 0x28, 0xaf, 0xd1, 0x07, 0x5a, 0x05, 0x97, 0xb0, 0xe1, 0x7a, 0x5a, 0x58, 0x55, 0x5a, + 0x66, 0x2e, 0x43, 0x37, 0xc3, 0x07, 0x36, 0xe3, 0x56, 0xdb, 0xe0, 0xb8, 0xf4, 0x15, 0x45, 0x54, + 0xf3, 0xce, 0x56, 0x6c, 0x4b, 0xc8, 0x06, 0xe3, 0xba, 0xb3, 0x45, 0x79, 0x9d, 0x3e, 0xba, 0xc8, + 0x80, 0xec, 0x2b, 0x11, 0xb2, 0xe7, 0xe1, 0xf6, 0x94, 0xae, 0xbe, 0xea, 0x7f, 0x4c, 0xa9, 0x5e, + 0x41, 0xed, 0xf9, 0x54, 0x3f, 0x01, 0x98, 0x12, 0x3b, 0xc0, 0x49, 0x50, 0xe3, 0x35, 0xe4, 0x6b, + 0x7b, 0x09, 0xfb, 0x63, 0xbc, 0x07, 0x42, 0xd0, 0xfa, 0xad, 0x8a, 0xb6, 0x25, 0x14, 0x42, 0x04, + 0x0a, 0xc6, 0xdb, 0x0d, 0x7a, 0x46, 0x75, 0xb3, 0x08, 0xe5, 0x8f, 0xc1, 0x15, 0xb4, 0x66, 0xea, + 0x43, 0x26, 0xfc, 0x8e, 0x6d, 0x09, 0x5b, 0x41, 0x81, 0x4c, 0x7d, 0x28, 0xca, 0xab, 0x74, 0xec, + 0xbc, 0x3b, 0x1f, 0x99, 0xec, 0x15, 0xd4, 0xf6, 0x65, 0xff, 0x35, 0x05, 0xbb, 0xe3, 0xde, 0x53, + 0xa2, 0x3d, 0x53, 0xf5, 0xee, 0x4d, 0x48, 0xef, 0x53, 0x59, 0x47, 0x6d, 0x2a, 0x76, 0x08, 0x95, + 0x75, 0xd4, 0xf6, 0xa8, 0x74, 0x0a, 0x72, 0x92, 0xca, 0xa5, 0x85, 0x50, 0xb9, 0x1c, 0x41, 0xa5, + 0x00, 0x87, 0xa1, 0x64, 0xf9, 0x74, 0xfe, 0x9c, 0x84, 0xec, 0x08, 0x71, 0xda, 0x21, 0x06, 0x9e, + 0xbf, 0xfd, 0xbf, 0x1b, 0x99, 0xb3, 0xdb, 0xfe, 0x21, 0xe4, 0x43, 0x72, 0xf3, 0x73, 0x7f, 0x9d, + 0x82, 0xbd, 0x09, 0xff, 0x0d, 0xd6, 0xc2, 0x78, 0x43, 0x4d, 0xbf, 0x63, 0x43, 0xbd, 0xd9, 0x72, + 0x38, 0x82, 0x42, 0x38, 0x61, 0x3e, 0xa7, 0x2f, 0x53, 0xf0, 0xc9, 0x99, 0xa1, 0xc8, 0x18, 0x0d, + 0xbe, 0xad, 0xa3, 0x36, 0x36, 0xb9, 0x47, 0x90, 0xe9, 0xd1, 0x11, 0x65, 0x72, 0xbd, 0x9c, 0x0f, + 0x3d, 0xc9, 0x5c, 0x30, 0x3b, 0xc8, 0xd8, 0x04, 0xee, 0x4b, 0xd8, 0x72, 0xd3, 0x45, 0xa4, 0xdb, + 0x55, 0xcd, 0x2e, 0xd6, 0x4c, 0x4a, 0xef, 0x46, 0x35, 0x6f, 0x5b, 0xc2, 0x7e, 0x70, 0x43, 0x23, + 0x84, 0x28, 0x6f, 0x52, 0xd3, 0xa9, 0x6f, 0x99, 0x22, 0x2d, 0xbd, 0x10, 0xd2, 0x96, 0x22, 0x48, + 0xdb, 0xa7, 0x0d, 0x67, 0xc4, 0x88, 0xcf, 0xd5, 0x5f, 0x29, 0x80, 0x33, 0x43, 0xb9, 0x50, 0xbb, + 0x98, 0xf4, 0xff, 0x1f, 0xa2, 0xfa, 0x9a, 0x8e, 0x11, 0x56, 0x07, 0xb8, 0x19, 0x45, 0xd4, 0x08, + 0xe1, 0x11, 0xf5, 0x9d, 0x6f, 0x59, 0x28, 0x51, 0x5f, 0x03, 0xa7, 0xe1, 0x17, 0x66, 0xcd, 0xc0, + 0x3f, 0xf6, 0xb1, 0x86, 0x70, 0x4d, 0xc7, 0x68, 0x40, 0x49, 0x5b, 0xaa, 0x1e, 0xda, 0x96, 0x70, + 0xdb, 0x8d, 0x30, 0x8d, 0x11, 0xe5, 0x2d, 0xc7, 0x78, 0xce, 0x6c, 0x0e, 0x91, 0x31, 0x4a, 0x75, + 0x87, 0xde, 0x4a, 0x19, 0xb7, 0xa3, 0x76, 0xe5, 0x1e, 0xfa, 0xcc, 0xfc, 0x54, 0xa3, 0x35, 0xfc, + 0x31, 0x30, 0xff, 0x39, 0xac, 0xb3, 0x42, 0x76, 0x32, 0x62, 0xed, 0x60, 0xcf, 0xb6, 0x04, 0x6e, + 0xac, 0xca, 0x1d, 0xa7, 0x28, 0xbb, 0x8d, 0xc3, 0xcd, 0x7d, 0x91, 0x0d, 0x21, 0x5c, 0xb2, 0xe5, + 0xf7, 0x95, 0x2c, 0xf3, 0x9f, 0xe7, 0xf6, 0xb8, 0x36, 0xbe, 0x72, 0xbf, 0xa5, 0xa8, 0xa0, 0x15, + 0xd4, 0xd6, 0xc8, 0xf3, 0x0e, 0x6e, 0x2a, 0x98, 0xbe, 0xda, 0xef, 0x21, 0x5d, 0x11, 0x36, 0xeb, + 0xe3, 0xd1, 0x5c, 0xe5, 0xe4, 0x49, 0xf3, 0x48, 0x1c, 0x67, 0x62, 0x33, 0x4a, 0x1c, 0xea, 0xf4, + 0xc4, 0xa9, 0x38, 0x0f, 0x1f, 0xb8, 0x5b, 0xbb, 0x5f, 0x3d, 0x13, 0x8c, 0x79, 0x84, 0x96, 0x5f, + 0xaf, 0x42, 0xfa, 0xcc, 0x50, 0xb8, 0x36, 0x6c, 0x4e, 0x7e, 0xbb, 0xdd, 0x0d, 0x25, 0x71, 0xfa, + 0x0b, 0x8a, 0x97, 0x62, 0x02, 0xbd, 0x45, 0xb9, 0x16, 0xdc, 0x9a, 0xf8, 0xcc, 0xba, 0x13, 0x23, + 0xc4, 0x85, 0x3e, 0xe4, 0x4b, 0xf1, 0x70, 0x11, 0x2b, 0x39, 0x37, 0xa9, 0x38, 0x2b, 0x55, 0x50, + 0x3b, 0xd6, 0x4a, 0x81, 0x1b, 0x25, 0x67, 0x02, 0x17, 0x72, 0x9b, 0xbc, 0x17, 0x23, 0x0a, 0xc3, + 0xf2, 0xe5, 0xf8, 0x58, 0x7f, 0x55, 0x0d, 0xb6, 0xa6, 0x2e, 0x5d, 0xc5, 0x19, 0x71, 0x7c, 0x24, + 0xff, 0x20, 0x2e, 0xd2, 0x5f, 0xef, 0x39, 0x64, 0x43, 0x2f, 0x4a, 0x71, 0x02, 0x79, 0xfb, 0x7c, + 0x38, 0x07, 0xd8, 0x5f, 0xf8, 0x07, 0x80, 0xc0, 0x6d, 0x42, 0x8c, 0x0a, 0x31, 0xc2, 0xf0, 0xf7, + 0x66, 0x63, 0xfc, 0xe8, 0xe7, 0xb0, 0xe2, 0x9d, 0xbf, 0x42, 0xd4, 0x34, 0x06, 0xe0, 0xef, 0xce, + 0x00, 0x04, 0x6b, 0x6f, 0xe2, 0x84, 0xb9, 0x33, 0x63, 0x2a, 0xc3, 0x45, 0xd7, 0x5e, 0x78, 0x57, + 0x74, 0x5e, 0xde, 0xc9, 0x8e, 0x18, 0x99, 0xe5, 0x04, 0x30, 0xfa, 0xe5, 0x8d, 0xe8, 0x18, 0xd5, + 0xf3, 0x37, 0x57, 0x85, 0xe4, 0xdb, 0xab, 0x42, 0xf2, 0xef, 0xab, 0x42, 0xf2, 0xe5, 0x75, 0x21, + 0xf1, 0xf6, 0xba, 0x90, 0xf8, 0xf3, 0xba, 0x90, 0xb8, 0x7c, 0xa4, 0xa8, 0x66, 0xab, 0xdf, 0x28, + 0x21, 0xd2, 0x95, 0x10, 0x31, 0xba, 0xc4, 0x90, 0xd4, 0x06, 0xba, 0xaf, 0x10, 0x69, 0x50, 0x96, + 0xba, 0xa4, 0xd9, 0xef, 0x60, 0xc3, 0xfd, 0x8d, 0xf4, 0xe0, 0xe4, 0xbe, 0xf7, 0x27, 0xc9, 0x1c, + 0xf6, 0xb0, 0xd1, 0xc8, 0xd0, 0xbf, 0x48, 0x0f, 0xff, 0x0d, 0x00, 0x00, 0xff, 0xff, 0x32, 0xba, + 0xc2, 0x9b, 0xd4, 0x12, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/modules/core/05-port/types/query.pb.go b/modules/core/05-port/types/query.pb.go index b420a9de058..75e71c0de13 100644 --- a/modules/core/05-port/types/query.pb.go +++ b/modules/core/05-port/types/query.pb.go @@ -173,31 +173,31 @@ func init() { func init() { proto.RegisterFile("ibc/core/port/v1/query.proto", fileDescriptor_9a256596009a8334) } var fileDescriptor_9a256596009a8334 = []byte{ - // 371 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x52, 0x3f, 0x8f, 0xda, 0x30, - 0x14, 0x4f, 0x68, 0x81, 0xd6, 0xa5, 0x2d, 0xf2, 0x50, 0x22, 0x54, 0x45, 0x40, 0x97, 0x30, 0xe0, - 0x14, 0x50, 0xbb, 0xb7, 0x55, 0x07, 0xa4, 0x56, 0x55, 0x33, 0x74, 0xe8, 0x82, 0x88, 0x63, 0x81, - 0x25, 0xf0, 0x33, 0xb6, 0x13, 0x89, 0xed, 0x3e, 0xc2, 0x7d, 0xac, 0x1b, 0x19, 0x6f, 0x3c, 0xc1, - 0x17, 0x39, 0x39, 0x21, 0x70, 0x7f, 0x38, 0xe9, 0x36, 0xbf, 0xf7, 0xfb, 0xa3, 0xdf, 0x7b, 0x7e, - 0xe8, 0x23, 0x8f, 0x69, 0x48, 0x41, 0xb1, 0x50, 0x82, 0x32, 0x61, 0x36, 0x0c, 0xd7, 0x29, 0x53, - 0x1b, 0x22, 0x15, 0x18, 0xc0, 0x4d, 0x1e, 0x53, 0x62, 0x51, 0x62, 0x51, 0x92, 0x0d, 0xdb, 0xdd, - 0x23, 0x9f, 0x2e, 0x66, 0x42, 0xb0, 0xa5, 0x95, 0x1c, 0x9e, 0x85, 0xa8, 0x77, 0x51, 0x41, 0x1f, - 0xfe, 0x5a, 0x93, 0x6f, 0x52, 0xfe, 0x63, 0x4a, 0x73, 0x10, 0x11, 0x5b, 0xa7, 0x4c, 0x1b, 0xdc, - 0x42, 0x75, 0x6b, 0x34, 0xe5, 0x89, 0xe7, 0x76, 0xdc, 0xe0, 0x75, 0x54, 0xb3, 0xe5, 0x24, 0xc1, - 0x9f, 0xd0, 0x5b, 0x0a, 0x42, 0x30, 0x6a, 0x38, 0x08, 0x0b, 0x57, 0x72, 0xb8, 0x71, 0x6a, 0x4e, - 0x12, 0xfc, 0x15, 0xbd, 0x02, 0x95, 0x30, 0xc5, 0xc5, 0xdc, 0x7b, 0xd1, 0x71, 0x83, 0x77, 0xa3, - 0x36, 0x39, 0x06, 0x2c, 0x33, 0x64, 0x43, 0xf2, 0xc7, 0x92, 0xa2, 0x23, 0x17, 0xff, 0x44, 0x0d, - 0x0a, 0xa9, 0x30, 0x4c, 0xc9, 0x99, 0x32, 0x1b, 0xef, 0x65, 0xc7, 0x0d, 0xde, 0x8c, 0xba, 0x67, - 0xb5, 0x3f, 0xee, 0x10, 0xa3, 0x7b, 0x32, 0xdc, 0x47, 0x4d, 0xa9, 0x40, 0x82, 0x66, 0xc9, 0x34, - 0x2b, 0xe6, 0xf2, 0xaa, 0x79, 0xcc, 0xf7, 0x65, 0xff, 0x30, 0x6e, 0xef, 0x17, 0x6a, 0x3d, 0xda, - 0x80, 0x96, 0x20, 0x34, 0x7b, 0x7a, 0x05, 0x1e, 0xaa, 0x97, 0xae, 0xc5, 0xf0, 0x65, 0x39, 0x5a, - 0xa2, 0x6a, 0xee, 0x86, 0x29, 0x42, 0x27, 0x47, 0x1c, 0x90, 0x87, 0xbf, 0x43, 0xce, 0xaf, 0xbd, - 0xdd, 0x7f, 0x06, 0xb3, 0x88, 0xd7, 0x73, 0xbe, 0xff, 0xbe, 0xda, 0xf9, 0xee, 0x76, 0xe7, 0xbb, - 0x37, 0x3b, 0xdf, 0xbd, 0xdc, 0xfb, 0xce, 0x76, 0xef, 0x3b, 0xd7, 0x7b, 0xdf, 0xf9, 0x3f, 0x9e, - 0x73, 0xb3, 0x48, 0x63, 0x42, 0x61, 0x15, 0x52, 0xd0, 0x2b, 0xd0, 0x21, 0x8f, 0xe9, 0x60, 0x0e, - 0xe1, 0x0a, 0x92, 0x74, 0xc9, 0x74, 0x71, 0x18, 0x9f, 0xbf, 0x0c, 0xf2, 0x5b, 0x32, 0x1b, 0xc9, - 0x74, 0x5c, 0xcb, 0x8f, 0x62, 0x7c, 0x1b, 0x00, 0x00, 0xff, 0xff, 0x19, 0xf0, 0xfb, 0x67, 0x69, - 0x02, 0x00, 0x00, + // 370 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x52, 0x4f, 0x0f, 0xd2, 0x30, + 0x14, 0xdf, 0x50, 0x40, 0x2b, 0x2a, 0xe9, 0x41, 0x16, 0x62, 0x16, 0xc0, 0xcb, 0x38, 0xd0, 0xca, + 0x8c, 0xdc, 0xd5, 0x78, 0x20, 0x31, 0x51, 0x77, 0xf0, 0xe0, 0x85, 0xb0, 0xae, 0x81, 0x26, 0xd0, + 0x57, 0xda, 0x6e, 0x09, 0x37, 0x3f, 0x82, 0x1f, 0xcb, 0x23, 0x47, 0x8f, 0x06, 0xbe, 0x88, 0xe9, + 0xc6, 0xc0, 0x3f, 0x98, 0x78, 0xeb, 0x7b, 0xbf, 0x3f, 0xf9, 0xbd, 0xd7, 0x87, 0x9e, 0x8a, 0x94, + 0x51, 0x06, 0x9a, 0x53, 0x05, 0xda, 0xd2, 0x62, 0x4a, 0x77, 0x39, 0xd7, 0x7b, 0xa2, 0x34, 0x58, + 0xc0, 0x5d, 0x91, 0x32, 0xe2, 0x50, 0xe2, 0x50, 0x52, 0x4c, 0xfb, 0xc3, 0x0b, 0x9f, 0xad, 0x97, + 0x52, 0xf2, 0x8d, 0x93, 0x9c, 0x9f, 0x95, 0x68, 0xf4, 0xa5, 0x81, 0x9e, 0x7c, 0x74, 0x26, 0xaf, + 0x94, 0xfa, 0xc4, 0xb5, 0x11, 0x20, 0x13, 0xbe, 0xcb, 0xb9, 0xb1, 0xb8, 0x87, 0xda, 0xce, 0x68, + 0x21, 0xb2, 0xc0, 0x1f, 0xf8, 0xd1, 0xfd, 0xa4, 0xe5, 0xca, 0x79, 0x86, 0x9f, 0xa1, 0x87, 0x0c, + 0xa4, 0xe4, 0xcc, 0x0a, 0x90, 0x0e, 0x6e, 0x94, 0x70, 0xe7, 0xda, 0x9c, 0x67, 0x78, 0x86, 0xee, + 0x81, 0xce, 0xb8, 0x16, 0x72, 0x15, 0xdc, 0x19, 0xf8, 0xd1, 0xa3, 0xb8, 0x4f, 0x2e, 0x01, 0xeb, + 0x0c, 0xc5, 0x94, 0xbc, 0x77, 0xa4, 0xe4, 0xc2, 0xc5, 0x6f, 0x51, 0x87, 0x41, 0x2e, 0x2d, 0xd7, + 0x6a, 0xa9, 0xed, 0x3e, 0xb8, 0x3b, 0xf0, 0xa3, 0x07, 0xf1, 0xf0, 0xa6, 0xf6, 0xcd, 0x2f, 0xc4, + 0xe4, 0x37, 0x19, 0x1e, 0xa3, 0xae, 0xd2, 0xa0, 0xc0, 0xf0, 0x6c, 0x51, 0x54, 0x73, 0x05, 0xcd, + 0x32, 0xe6, 0xe3, 0xba, 0x7f, 0x1e, 0x77, 0xf4, 0x0e, 0xf5, 0xfe, 0xda, 0x80, 0x51, 0x20, 0x0d, + 0xff, 0xf7, 0x0a, 0x02, 0xd4, 0xae, 0x5d, 0xab, 0xe1, 0xeb, 0x32, 0xde, 0xa0, 0x66, 0xe9, 0x86, + 0x19, 0x42, 0x57, 0x47, 0x1c, 0x91, 0x3f, 0x7f, 0x87, 0xdc, 0x5e, 0x7b, 0x7f, 0xfc, 0x1f, 0xcc, + 0x2a, 0xde, 0xc8, 0x7b, 0xfd, 0xe1, 0xdb, 0x31, 0xf4, 0x0f, 0xc7, 0xd0, 0xff, 0x71, 0x0c, 0xfd, + 0xaf, 0xa7, 0xd0, 0x3b, 0x9c, 0x42, 0xef, 0xfb, 0x29, 0xf4, 0x3e, 0xcf, 0x56, 0xc2, 0xae, 0xf3, + 0x94, 0x30, 0xd8, 0x52, 0x06, 0x66, 0x0b, 0x86, 0x8a, 0x94, 0x4d, 0x56, 0x40, 0x8b, 0x98, 0x6e, + 0x21, 0xcb, 0x37, 0xdc, 0x54, 0xb7, 0xf1, 0xfc, 0xe5, 0xa4, 0x3c, 0x27, 0xbb, 0x57, 0xdc, 0xa4, + 0xad, 0xf2, 0x2e, 0x5e, 0xfc, 0x0c, 0x00, 0x00, 0xff, 0xff, 0x8c, 0xe3, 0x0f, 0x88, 0x6c, 0x02, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/modules/core/23-commitment/types/commitment.pb.go b/modules/core/23-commitment/types/commitment.pb.go index 7d94a5c9908..1de44609bf2 100644 --- a/modules/core/23-commitment/types/commitment.pb.go +++ b/modules/core/23-commitment/types/commitment.pb.go @@ -217,29 +217,29 @@ func init() { } var fileDescriptor_7921d88972a41469 = []byte{ - // 337 bytes of a gzipped FileDescriptorProto + // 340 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x4c, 0x91, 0xbf, 0x4e, 0xeb, 0x30, 0x14, 0xc6, 0x13, 0xdd, 0xaa, 0x97, 0xba, 0x95, 0x10, 0x29, 0x54, 0xa8, 0x43, 0x8a, 0x32, 0x40, - 0x97, 0xda, 0x6a, 0xcb, 0x42, 0x25, 0x96, 0xc0, 0x8a, 0x54, 0x85, 0x8d, 0x05, 0x25, 0xc6, 0x49, - 0xac, 0x36, 0x3d, 0x51, 0xec, 0x56, 0xe4, 0x0d, 0x18, 0x19, 0x19, 0x79, 0x1c, 0xc6, 0x8e, 0x4c, - 0x15, 0x6a, 0xde, 0xa0, 0x4f, 0x80, 0x62, 0x53, 0xc8, 0x76, 0x8e, 0xcf, 0xef, 0xfc, 0xf1, 0xf7, - 0xa1, 0x0b, 0x1e, 0x50, 0x42, 0x21, 0x63, 0x84, 0x42, 0x92, 0x70, 0x99, 0xb0, 0x85, 0x24, 0xab, - 0x61, 0x25, 0xc3, 0x69, 0x06, 0x12, 0xac, 0x0e, 0x0f, 0x28, 0x2e, 0x41, 0x5c, 0x29, 0xad, 0x86, - 0xdd, 0xe3, 0x08, 0x22, 0x50, 0x08, 0x29, 0x23, 0x4d, 0x77, 0xdb, 0x14, 0x16, 0x21, 0x07, 0x92, - 0x66, 0x00, 0xa1, 0xd0, 0x8f, 0xce, 0x39, 0x42, 0x77, 0x2c, 0x9b, 0xcd, 0x99, 0x07, 0x20, 0x2d, - 0x0b, 0xd5, 0x62, 0x5f, 0xc4, 0xa7, 0xe6, 0x99, 0xd9, 0x6f, 0x79, 0x2a, 0x9e, 0xd4, 0x5e, 0xde, - 0x7b, 0x86, 0x73, 0x8b, 0x5a, 0x9a, 0x9b, 0x66, 0x2c, 0xe4, 0xcf, 0xd6, 0x25, 0x42, 0x33, 0x96, - 0x3f, 0xa6, 0x2a, 0xd3, 0xbc, 0x7b, 0xb2, 0xdb, 0xf4, 0x8e, 0x72, 0x3f, 0x99, 0x4f, 0x9c, 0xbf, - 0x9a, 0xe3, 0x35, 0x66, 0x2c, 0xd7, 0x5d, 0x8e, 0xbb, 0xdf, 0x36, 0xf5, 0x65, 0x6c, 0x61, 0x74, - 0xa0, 0x38, 0x5f, 0x96, 0x1b, 0xff, 0xf5, 0x1b, 0x6e, 0x7b, 0xb7, 0xe9, 0x1d, 0x56, 0x26, 0xf8, - 0x32, 0x76, 0xbc, 0xff, 0x65, 0xbf, 0x2f, 0xe3, 0x49, 0xed, 0xad, 0xbc, 0xe4, 0x1a, 0x35, 0xf7, - 0x97, 0x00, 0x84, 0x16, 0x46, 0x75, 0xfd, 0x21, 0x35, 0xa2, 0x39, 0xea, 0x60, 0x4e, 0xc5, 0x68, - 0x8c, 0x6f, 0x7e, 0x15, 0x51, 0x9c, 0xf7, 0x43, 0xb9, 0xf7, 0x1f, 0x5b, 0xdb, 0x5c, 0x6f, 0x6d, - 0xf3, 0x6b, 0x6b, 0x9b, 0xaf, 0x85, 0x6d, 0xac, 0x0b, 0xdb, 0xf8, 0x2c, 0x6c, 0xe3, 0xe1, 0x2a, - 0xe2, 0x32, 0x5e, 0x06, 0xa5, 0x96, 0x84, 0x82, 0x48, 0x40, 0x10, 0x1e, 0xd0, 0x41, 0x04, 0x24, - 0x81, 0xa7, 0xe5, 0x9c, 0x09, 0xed, 0xc9, 0x68, 0x3c, 0xa8, 0xd8, 0x22, 0xf3, 0x94, 0x89, 0xa0, - 0xae, 0xc4, 0x1c, 0x7f, 0x07, 0x00, 0x00, 0xff, 0xff, 0x20, 0xd2, 0x3b, 0x32, 0xba, 0x01, 0x00, - 0x00, + 0x97, 0xda, 0x6a, 0xca, 0x54, 0xc1, 0x12, 0x58, 0x91, 0xaa, 0x0c, 0x0c, 0x2c, 0x28, 0x31, 0x4e, + 0x62, 0xb5, 0xe9, 0x89, 0x62, 0xb7, 0x22, 0x6f, 0xc0, 0xc8, 0xc8, 0xc8, 0xe3, 0x30, 0x76, 0x64, + 0xaa, 0x50, 0xfb, 0x06, 0x7d, 0x02, 0x14, 0x9b, 0x42, 0xb6, 0x73, 0x7c, 0x7e, 0xe7, 0x8f, 0xbf, + 0x0f, 0x5d, 0xf0, 0x90, 0x12, 0x0a, 0x39, 0x23, 0x14, 0xd2, 0x94, 0xcb, 0x94, 0xcd, 0x25, 0x59, + 0x0e, 0x2b, 0x19, 0xce, 0x72, 0x90, 0x60, 0x75, 0x78, 0x48, 0x71, 0x09, 0xe2, 0x4a, 0x69, 0x39, + 0xec, 0x1e, 0xc7, 0x10, 0x83, 0x42, 0x48, 0x19, 0x69, 0xba, 0xdb, 0xa6, 0x30, 0x8f, 0x38, 0x90, + 0x2c, 0x07, 0x88, 0x84, 0x7e, 0x74, 0xce, 0x11, 0xba, 0x63, 0xf9, 0x74, 0xc6, 0x7c, 0x00, 0x69, + 0x59, 0xa8, 0x96, 0x04, 0x22, 0x39, 0x35, 0xcf, 0xcc, 0x7e, 0xcb, 0x57, 0xf1, 0xb8, 0xf6, 0xf2, + 0xde, 0x33, 0x9c, 0x5b, 0xd4, 0xd2, 0xdc, 0x24, 0x67, 0x11, 0x7f, 0xb6, 0x2e, 0x11, 0x9a, 0xb2, + 0xe2, 0x31, 0x53, 0x99, 0xe6, 0xbd, 0x93, 0xdd, 0xba, 0x77, 0x54, 0x04, 0xe9, 0x6c, 0xec, 0xfc, + 0xd5, 0x1c, 0xbf, 0x31, 0x65, 0x85, 0xee, 0x72, 0xbc, 0xfd, 0xb6, 0x49, 0x20, 0x13, 0x0b, 0xa3, + 0x03, 0xc5, 0x05, 0xb2, 0xdc, 0xf8, 0xaf, 0xdf, 0xf0, 0xda, 0xbb, 0x75, 0xef, 0xb0, 0x32, 0x21, + 0x90, 0x89, 0xe3, 0xff, 0x2f, 0xfb, 0x03, 0x99, 0x8c, 0x6b, 0x6f, 0xe5, 0x25, 0xd7, 0xa8, 0xb9, + 0xbf, 0x04, 0x20, 0xb2, 0x30, 0xaa, 0xeb, 0x0f, 0xa9, 0x11, 0x4d, 0xb7, 0x83, 0x39, 0x15, 0xee, + 0x08, 0xdf, 0xfc, 0x2a, 0xa2, 0x38, 0xff, 0x87, 0xf2, 0xee, 0x3f, 0x36, 0xb6, 0xb9, 0xda, 0xd8, + 0xe6, 0xd7, 0xc6, 0x36, 0x5f, 0xb7, 0xb6, 0xb1, 0xda, 0xda, 0xc6, 0xe7, 0xd6, 0x36, 0x1e, 0xae, + 0x62, 0x2e, 0x93, 0x45, 0x58, 0x6a, 0x49, 0x28, 0x88, 0x14, 0x04, 0xe1, 0x21, 0x1d, 0xc4, 0x40, + 0x96, 0x2e, 0x49, 0xe1, 0x69, 0x31, 0x63, 0x42, 0xdb, 0xe2, 0x8e, 0x06, 0x15, 0x67, 0x64, 0x91, + 0x31, 0x11, 0xd6, 0x95, 0x9e, 0xa3, 0xef, 0x00, 0x00, 0x00, 0xff, 0xff, 0x19, 0x22, 0x81, 0x31, + 0xbd, 0x01, 0x00, 0x00, } func (m *MerkleRoot) Marshal() (dAtA []byte, err error) { diff --git a/modules/core/types/genesis.pb.go b/modules/core/types/genesis.pb.go index 7966953b188..25f90b0c507 100644 --- a/modules/core/types/genesis.pb.go +++ b/modules/core/types/genesis.pb.go @@ -97,28 +97,28 @@ func init() { func init() { proto.RegisterFile("ibc/core/types/v1/genesis.proto", fileDescriptor_b9a49c5663e6fc59) } var fileDescriptor_b9a49c5663e6fc59 = []byte{ - // 322 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x64, 0x92, 0xc1, 0x4a, 0xeb, 0x40, - 0x14, 0x86, 0x93, 0x5e, 0xb8, 0x8b, 0xa8, 0x95, 0x06, 0x15, 0x2d, 0x38, 0x6d, 0x43, 0x17, 0x82, - 0x38, 0x43, 0x75, 0xe7, 0xb2, 0x20, 0xee, 0xe3, 0xce, 0x8d, 0x24, 0xe3, 0x98, 0x8e, 0x24, 0x73, - 0x4a, 0x67, 0x1a, 0xe8, 0x5b, 0xf8, 0x58, 0x5d, 0x76, 0x29, 0x2e, 0x8a, 0x24, 0x6f, 0xe0, 0x13, - 0x48, 0x33, 0x63, 0x92, 0x32, 0xbb, 0xf0, 0x9f, 0xef, 0xfc, 0xdf, 0x21, 0x89, 0x37, 0xe0, 0x31, - 0x25, 0x14, 0x16, 0x8c, 0xa8, 0xd5, 0x9c, 0x49, 0x92, 0x4f, 0x48, 0xc2, 0x04, 0x93, 0x5c, 0xe2, - 0xf9, 0x02, 0x14, 0xf8, 0x3d, 0x1e, 0x53, 0xbc, 0x03, 0x70, 0x05, 0xe0, 0x7c, 0xd2, 0x3f, 0x49, - 0x20, 0x81, 0x6a, 0x4a, 0x76, 0x4f, 0x1a, 0xec, 0x0f, 0xeb, 0x26, 0x9a, 0x72, 0x26, 0x94, 0x55, - 0xd5, 0x1f, 0x37, 0x04, 0x08, 0xc1, 0xa8, 0xe2, 0x20, 0x6c, 0x6a, 0xd4, 0x50, 0xb3, 0x48, 0x08, - 0x96, 0x5a, 0x48, 0xf0, 0xd5, 0xf1, 0x0e, 0x1f, 0x75, 0xf2, 0xa4, 0x22, 0xc5, 0xfc, 0x37, 0xaf, - 0xab, 0xa5, 0x2f, 0x06, 0x3c, 0x77, 0x87, 0xee, 0xd5, 0xc1, 0xed, 0x10, 0xd7, 0xd7, 0xeb, 0x39, - 0xce, 0x27, 0xb8, 0xbd, 0x39, 0xbd, 0x5c, 0x6f, 0x07, 0xce, 0xcf, 0x76, 0x70, 0xba, 0x8a, 0xb2, - 0xf4, 0x3e, 0xd8, 0x6f, 0x09, 0xc2, 0x23, 0x1d, 0x98, 0x15, 0x3f, 0xf7, 0xfc, 0xe6, 0xf4, 0xda, - 0xd5, 0xa9, 0x5c, 0xe3, 0x96, 0xab, 0x66, 0x2c, 0xdf, 0xc8, 0xf8, 0x2e, 0x8c, 0xcf, 0x6a, 0x0b, - 0xc2, 0x5e, 0x13, 0xfe, 0x79, 0xdf, 0xbd, 0x63, 0xf3, 0x32, 0x6a, 0xe9, 0xbf, 0x4a, 0x3a, 0x6a, - 0x49, 0x35, 0x60, 0x19, 0x91, 0x31, 0x9e, 0x19, 0xe3, 0x7e, 0x4f, 0x10, 0x76, 0x4d, 0x62, 0x96, - 0xa6, 0x0f, 0xeb, 0x02, 0xb9, 0x9b, 0x02, 0xb9, 0xdf, 0x05, 0x72, 0x3f, 0x4a, 0xe4, 0x6c, 0x4a, - 0xe4, 0x7c, 0x96, 0xc8, 0x79, 0xbe, 0x4e, 0xb8, 0x9a, 0x2d, 0x63, 0x4c, 0x21, 0x23, 0x14, 0x64, - 0x06, 0x92, 0xf0, 0x98, 0xde, 0x24, 0x40, 0x32, 0x78, 0x5d, 0xa6, 0x4c, 0xb6, 0x7e, 0xa4, 0xf8, - 0x7f, 0xf5, 0xa9, 0xee, 0x7e, 0x03, 0x00, 0x00, 0xff, 0xff, 0x98, 0x8f, 0xc1, 0x09, 0x61, 0x02, - 0x00, 0x00, + // 323 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x64, 0x92, 0xb1, 0x4e, 0xeb, 0x30, + 0x14, 0x86, 0x93, 0x5e, 0xe9, 0x0e, 0x01, 0x8a, 0x1a, 0x01, 0x82, 0x4a, 0xb8, 0x6d, 0xd4, 0x81, + 0x05, 0x5b, 0x2d, 0x1b, 0x63, 0x17, 0x98, 0xc3, 0xc6, 0x82, 0x12, 0x63, 0x52, 0xa3, 0xc4, 0xa7, + 0xaa, 0xdd, 0x48, 0x7d, 0x0b, 0x1e, 0xab, 0x63, 0x47, 0xc4, 0x50, 0xa1, 0xe4, 0x0d, 0x78, 0x02, + 0xd4, 0xd8, 0x24, 0xa9, 0xbc, 0x45, 0xff, 0xf9, 0xce, 0xff, 0x1d, 0x25, 0xf1, 0x06, 0x3c, 0xa6, + 0x84, 0xc2, 0x92, 0x11, 0xb5, 0x5e, 0x30, 0x49, 0xf2, 0x09, 0x49, 0x98, 0x60, 0x92, 0x4b, 0xbc, + 0x58, 0x82, 0x02, 0xbf, 0xc7, 0x63, 0x8a, 0xf7, 0x00, 0xae, 0x00, 0x9c, 0x4f, 0xfa, 0x67, 0x09, + 0x24, 0x50, 0x4d, 0xc9, 0xfe, 0x49, 0x83, 0xfd, 0x61, 0xdd, 0x44, 0x53, 0xce, 0x84, 0xb2, 0xaa, + 0xfa, 0xe3, 0x86, 0x00, 0x21, 0x18, 0x55, 0x1c, 0x84, 0x4d, 0x8d, 0x1a, 0x6a, 0x1e, 0x09, 0xc1, + 0x52, 0x0b, 0x09, 0xbe, 0x3a, 0xde, 0xf1, 0x83, 0x4e, 0x9e, 0x54, 0xa4, 0x98, 0xff, 0xe6, 0x75, + 0xb5, 0xf4, 0xc5, 0x80, 0x97, 0xee, 0xd0, 0xbd, 0x39, 0x9a, 0x0e, 0x71, 0x7d, 0xbd, 0x9e, 0xe3, + 0x7c, 0x82, 0xdb, 0x9b, 0xb3, 0xeb, 0xcd, 0x6e, 0xe0, 0xfc, 0xec, 0x06, 0xe7, 0xeb, 0x28, 0x4b, + 0xef, 0x83, 0xc3, 0x96, 0x20, 0x3c, 0xd1, 0x81, 0x59, 0xf1, 0x73, 0xcf, 0x6f, 0x4e, 0xaf, 0x5d, + 0x9d, 0xca, 0x35, 0x6e, 0xb9, 0x6a, 0xc6, 0xf2, 0x8d, 0x8c, 0xef, 0xca, 0xf8, 0xac, 0xb6, 0x20, + 0xec, 0x35, 0xe1, 0x9f, 0xf7, 0xdd, 0x3b, 0x35, 0x2f, 0xa3, 0x96, 0xfe, 0xab, 0xa4, 0xa3, 0x96, + 0x54, 0x03, 0x96, 0x11, 0x19, 0xe3, 0x85, 0x31, 0x1e, 0xf6, 0x04, 0x61, 0xd7, 0x24, 0x66, 0x69, + 0xf6, 0xb8, 0x29, 0x90, 0xbb, 0x2d, 0x90, 0xfb, 0x5d, 0x20, 0xf7, 0xa3, 0x44, 0xce, 0xb6, 0x44, + 0xce, 0x67, 0x89, 0x9c, 0x67, 0x9c, 0x70, 0x35, 0x5f, 0xc5, 0x98, 0x42, 0x46, 0x28, 0xc8, 0x0c, + 0x24, 0xe1, 0x31, 0xbd, 0x4d, 0x80, 0xe4, 0x53, 0x92, 0xc1, 0xeb, 0x2a, 0x65, 0xb2, 0xf5, 0x2f, + 0xc5, 0xff, 0xab, 0xaf, 0x75, 0xf7, 0x1b, 0x00, 0x00, 0xff, 0xff, 0x9c, 0xb0, 0xe8, 0x1c, 0x64, + 0x02, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/modules/light-clients/06-solomachine/types/solomachine.pb.go b/modules/light-clients/06-solomachine/types/solomachine.pb.go index 10cb66594f6..a712da4358c 100644 --- a/modules/light-clients/06-solomachine/types/solomachine.pb.go +++ b/modules/light-clients/06-solomachine/types/solomachine.pb.go @@ -823,11 +823,11 @@ func init() { } var fileDescriptor_141333b361aae010 = []byte{ - // 1370 bytes of a gzipped FileDescriptorProto + // 1372 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x57, 0x5f, 0x8f, 0xdb, 0xd4, 0x12, 0x5f, 0xa7, 0xe9, 0x36, 0x99, 0x6c, 0x77, 0x73, 0xdd, 0xb4, 0xcd, 0xba, 0x55, 0xe2, 0xeb, 0xab, 0xdb, 0xbb, 0x17, 0xd1, 0x84, 0x5d, 0x44, 0x85, 0x2a, 0x04, 0x38, 0x8e, 0x4b, 0xd3, 0xee, - 0x7a, 0x83, 0xe3, 0x05, 0x5a, 0x81, 0x2c, 0xc7, 0x39, 0x9b, 0x58, 0x4d, 0x7c, 0xd2, 0xd8, 0x49, + 0x7a, 0x83, 0xe3, 0x05, 0x5a, 0x21, 0x19, 0xc7, 0x39, 0x9b, 0x58, 0x4d, 0x7c, 0xd2, 0xd8, 0x49, 0x1a, 0x24, 0x24, 0xc4, 0x53, 0x89, 0x78, 0xe0, 0x0b, 0x44, 0x42, 0x20, 0x3e, 0x07, 0x6f, 0xc0, 0x63, 0x1f, 0x79, 0x0a, 0xa8, 0xfd, 0x06, 0xf9, 0x04, 0xc8, 0x3e, 0x27, 0xb1, 0x9d, 0xed, 0x66, 0xc5, 0xbf, 0xb7, 0x73, 0xe6, 0x37, 0xf3, 0x9b, 0x39, 0x33, 0xe3, 0x39, 0xc7, 0xb0, 0x6b, 0xd5, @@ -905,11 +905,11 @@ var fileDescriptor_141333b361aae010 = []byte{ 0xd1, 0x7c, 0x90, 0x4e, 0x90, 0xc0, 0x3d, 0x64, 0x0e, 0x78, 0x72, 0x96, 0x87, 0x74, 0x60, 0x77, 0x57, 0x16, 0xcb, 0xb2, 0x9a, 0x4e, 0x92, 0xca, 0x90, 0x1d, 0x17, 0x7f, 0xfa, 0x5d, 0x6e, 0xad, 0xf4, 0xc9, 0xcf, 0xcf, 0x73, 0xcc, 0xb3, 0xe7, 0x39, 0xe6, 0xb7, 0xe7, 0x39, 0xe6, 0xeb, 0x17, - 0xb9, 0xb5, 0x67, 0x2f, 0x72, 0x6b, 0xbf, 0xbc, 0xc8, 0xad, 0x3d, 0x94, 0x9a, 0x96, 0xdb, 0xea, - 0xd7, 0x0b, 0x26, 0xee, 0x14, 0x4d, 0xec, 0x74, 0xb0, 0x53, 0xb4, 0xea, 0xe6, 0xcd, 0x26, 0x2e, - 0x76, 0x70, 0xa3, 0xdf, 0x46, 0x0e, 0xf9, 0x99, 0xba, 0x39, 0xff, 0x9b, 0x7a, 0xed, 0xd6, 0xcd, - 0xf0, 0x0f, 0x95, 0x77, 0xc7, 0x38, 0xf5, 0x75, 0x7f, 0x98, 0xbd, 0xfe, 0x7b, 0x00, 0x00, 0x00, - 0xff, 0xff, 0x44, 0x0b, 0xc7, 0x37, 0x7d, 0x0d, 0x00, 0x00, + 0xb9, 0xb5, 0x67, 0x2f, 0x72, 0x6b, 0xbf, 0xbc, 0xc8, 0xad, 0x3d, 0xbc, 0xd3, 0xb4, 0xdc, 0x56, + 0xbf, 0x5e, 0x30, 0x71, 0xa7, 0x68, 0x62, 0xa7, 0x83, 0x9d, 0xa2, 0x55, 0x37, 0x6f, 0x36, 0xb1, + 0xf7, 0xaf, 0xd4, 0xc1, 0x8d, 0x7e, 0x1b, 0x39, 0xe4, 0x7f, 0xea, 0xe6, 0xfc, 0x87, 0xea, 0xb5, + 0x5b, 0x37, 0xc3, 0xff, 0x54, 0xde, 0x35, 0xe3, 0xd4, 0xd7, 0xfd, 0x79, 0xf6, 0xfa, 0xef, 0x01, + 0x00, 0x00, 0xff, 0xff, 0x50, 0x28, 0xa0, 0x92, 0x80, 0x0d, 0x00, 0x00, } func (m *ClientState) Marshal() (dAtA []byte, err error) { diff --git a/modules/light-clients/07-tendermint/types/tendermint.pb.go b/modules/light-clients/07-tendermint/types/tendermint.pb.go index b8327f2873d..6c977c1385e 100644 --- a/modules/light-clients/07-tendermint/types/tendermint.pb.go +++ b/modules/light-clients/07-tendermint/types/tendermint.pb.go @@ -324,75 +324,75 @@ func init() { } var fileDescriptor_c6d6cf2b288949be = []byte{ - // 1084 bytes of a gzipped FileDescriptorProto + // 1087 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x56, 0xcf, 0x6f, 0xe3, 0xc4, 0x17, 0x6f, 0xda, 0x7e, 0xb7, 0xc9, 0x24, 0xdd, 0xf6, 0xeb, 0x2d, 0xdd, 0xb4, 0x74, 0xe3, 0xc8, - 0xa0, 0x25, 0x42, 0xaa, 0x4d, 0xb2, 0x48, 0x48, 0x15, 0x17, 0xdc, 0x05, 0xb5, 0x88, 0x95, 0x2a, - 0x97, 0x1f, 0x12, 0x02, 0x99, 0x89, 0x3d, 0x49, 0x46, 0x6b, 0x7b, 0x8c, 0x67, 0x12, 0x5a, 0xfe, - 0x02, 0x38, 0x20, 0xed, 0x11, 0x71, 0xe2, 0xc0, 0x1f, 0xb3, 0xc7, 0x1e, 0x39, 0x19, 0xd4, 0x5e, - 0x38, 0xe7, 0xc8, 0x09, 0xcd, 0x0f, 0xdb, 0xd3, 0x6c, 0x97, 0x6a, 0xb9, 0x44, 0xf3, 0xde, 0xfb, - 0xbc, 0xcf, 0x27, 0xf3, 0xe6, 0xcd, 0x1b, 0x03, 0x07, 0x0f, 0x03, 0x27, 0xc2, 0xe3, 0x09, 0x0b, - 0x22, 0x8c, 0x12, 0x46, 0x1d, 0x86, 0x92, 0x10, 0x65, 0x31, 0x4e, 0x98, 0x33, 0xeb, 0x6b, 0x96, - 0x9d, 0x66, 0x84, 0x11, 0xa3, 0x83, 0x87, 0x81, 0xad, 0x27, 0xd8, 0x1a, 0x64, 0xd6, 0xdf, 0xed, - 0x6a, 0xf9, 0xec, 0x3c, 0x45, 0xd4, 0x99, 0xc1, 0x08, 0x87, 0x90, 0x91, 0x4c, 0x32, 0xec, 0xee, - 0xbd, 0x80, 0x10, 0xbf, 0x2a, 0x7a, 0x2f, 0x20, 0xc9, 0x08, 0x13, 0x27, 0xcd, 0x08, 0x19, 0x15, - 0xce, 0xce, 0x98, 0x90, 0x71, 0x84, 0x1c, 0x61, 0x0d, 0xa7, 0x23, 0x27, 0x9c, 0x66, 0x90, 0x61, - 0x92, 0xa8, 0xb8, 0xb9, 0x18, 0x67, 0x38, 0x46, 0x94, 0xc1, 0x38, 0x2d, 0x00, 0x7c, 0x9b, 0x01, - 0xc9, 0x90, 0x23, 0xff, 0x35, 0xdf, 0x9a, 0x5c, 0x29, 0xc0, 0x5b, 0x15, 0x80, 0xc4, 0x31, 0x66, - 0x71, 0x01, 0x2a, 0x2d, 0x05, 0xdc, 0x1a, 0x93, 0x31, 0x11, 0x4b, 0x87, 0xaf, 0xa4, 0xd7, 0xfa, - 0x6b, 0x0d, 0x34, 0x0f, 0x05, 0xdf, 0x29, 0x83, 0x0c, 0x19, 0x3b, 0xa0, 0x1e, 0x4c, 0x20, 0x4e, - 0x7c, 0x1c, 0xb6, 0x6b, 0xdd, 0x5a, 0xaf, 0xe1, 0xad, 0x09, 0xfb, 0x38, 0x34, 0x10, 0x68, 0xb2, - 0x6c, 0x4a, 0x99, 0x1f, 0xa1, 0x19, 0x8a, 0xda, 0xcb, 0xdd, 0x5a, 0xaf, 0x39, 0xe8, 0xd9, 0xff, - 0x5e, 0x56, 0xfb, 0xa3, 0x0c, 0x06, 0x7c, 0xc3, 0xee, 0xee, 0xf3, 0xdc, 0x5c, 0x9a, 0xe7, 0xa6, - 0x71, 0x0e, 0xe3, 0xe8, 0xc0, 0xd2, 0xa8, 0x2c, 0x0f, 0x08, 0xeb, 0x13, 0x6e, 0x18, 0x23, 0xb0, - 0x21, 0x2c, 0x9c, 0x8c, 0xfd, 0x14, 0x65, 0x98, 0x84, 0xed, 0x15, 0x21, 0xb5, 0x63, 0xcb, 0x62, - 0xd9, 0x45, 0xb1, 0xec, 0xc7, 0xaa, 0x98, 0xae, 0xa5, 0xb8, 0xb7, 0x35, 0xee, 0x2a, 0xdf, 0xfa, - 0xf9, 0x0f, 0xb3, 0xe6, 0xdd, 0x2d, 0xbc, 0x27, 0xc2, 0x69, 0x60, 0xb0, 0x39, 0x4d, 0x86, 0x24, - 0x09, 0x35, 0xa1, 0xd5, 0xdb, 0x84, 0xde, 0x50, 0x42, 0xf7, 0xa5, 0xd0, 0x22, 0x81, 0x54, 0xda, - 0x28, 0xdd, 0x4a, 0x0a, 0x81, 0x8d, 0x18, 0x9e, 0xf9, 0x41, 0x44, 0x82, 0xa7, 0x7e, 0x98, 0xe1, - 0x11, 0x6b, 0xff, 0xef, 0x15, 0xb7, 0xb4, 0x90, 0x2f, 0x85, 0xd6, 0x63, 0x78, 0x76, 0xc8, 0x9d, - 0x8f, 0xb9, 0xcf, 0xf8, 0x1a, 0xac, 0x8f, 0x32, 0xf2, 0x3d, 0x4a, 0xfc, 0x09, 0xe2, 0x07, 0xd2, - 0xbe, 0x23, 0x44, 0x76, 0xc5, 0x11, 0xf1, 0x16, 0xb1, 0x55, 0xe7, 0xcc, 0xfa, 0xf6, 0x91, 0x40, - 0xb8, 0x7b, 0x4a, 0x65, 0x4b, 0xaa, 0x5c, 0x4b, 0xb7, 0xbc, 0x96, 0xb4, 0x25, 0x96, 0xd3, 0x47, - 0x90, 0x21, 0xca, 0x0a, 0xfa, 0xb5, 0x57, 0xa5, 0xbf, 0x96, 0x6e, 0x79, 0x2d, 0x69, 0x2b, 0xfa, - 0x63, 0xd0, 0x14, 0x57, 0xc7, 0xa7, 0x29, 0x0a, 0x68, 0xbb, 0xde, 0x5d, 0xe9, 0x35, 0x07, 0x9b, - 0x36, 0x0e, 0xe8, 0xe0, 0x91, 0x7d, 0xc2, 0x23, 0xa7, 0x29, 0x0a, 0xdc, 0xed, 0xaa, 0x85, 0x34, - 0xb8, 0xe5, 0x81, 0xb4, 0x80, 0x50, 0xe3, 0x00, 0xb4, 0xa6, 0xe9, 0x38, 0x83, 0x21, 0xf2, 0x53, - 0xc8, 0x26, 0xed, 0x46, 0x77, 0xa5, 0xd7, 0x70, 0xef, 0xcf, 0x73, 0xf3, 0x9e, 0x3a, 0x37, 0x2d, - 0x6a, 0x79, 0x4d, 0x65, 0x9e, 0x40, 0x36, 0x31, 0x7c, 0xb0, 0x03, 0xa3, 0x88, 0x7c, 0xe7, 0x4f, - 0xd3, 0x10, 0x32, 0xe4, 0xc3, 0x11, 0x43, 0x99, 0x8f, 0xce, 0x52, 0x9c, 0x9d, 0xb7, 0x41, 0xb7, - 0xd6, 0xab, 0xbb, 0x6f, 0xce, 0x73, 0xb3, 0x2b, 0x89, 0x5e, 0x0a, 0xb5, 0xbc, 0x6d, 0x11, 0xfb, - 0x4c, 0x84, 0x3e, 0xe0, 0x91, 0x0f, 0x45, 0xc0, 0xf8, 0x16, 0x98, 0x37, 0x64, 0xc5, 0x98, 0x0e, - 0xd1, 0x04, 0xce, 0x30, 0x99, 0x66, 0xed, 0xa6, 0x90, 0x79, 0x7b, 0x9e, 0x9b, 0x0f, 0x5f, 0x2a, - 0xa3, 0x27, 0x58, 0xde, 0xde, 0xa2, 0xd8, 0x13, 0x2d, 0x7c, 0xb0, 0xfa, 0xc3, 0xaf, 0xe6, 0x92, - 0xf5, 0xdb, 0x32, 0xb8, 0x7b, 0x48, 0x12, 0x8a, 0x12, 0x3a, 0xa5, 0xf2, 0xb6, 0xbb, 0xa0, 0x51, - 0x0e, 0x1c, 0x71, 0xdd, 0xf9, 0x71, 0x2e, 0xb6, 0xe4, 0xa7, 0x05, 0xc2, 0xad, 0xf3, 0xe3, 0x7c, - 0xc6, 0x3b, 0xaf, 0x4a, 0x33, 0xde, 0x07, 0xab, 0x19, 0x21, 0x4c, 0xcd, 0x03, 0x4b, 0xeb, 0x86, - 0x6a, 0x02, 0xcd, 0xfa, 0xf6, 0x13, 0x94, 0x3d, 0x8d, 0x90, 0x47, 0x08, 0x73, 0x57, 0x39, 0x8d, - 0x27, 0xb2, 0x8c, 0x1f, 0x6b, 0x60, 0x2b, 0x41, 0x67, 0xcc, 0x2f, 0x87, 0x2d, 0xf5, 0x27, 0x90, - 0x4e, 0xc4, 0x9d, 0x6f, 0xb9, 0x5f, 0xcc, 0x73, 0xf3, 0x75, 0x59, 0x83, 0x9b, 0x50, 0xd6, 0xdf, - 0xb9, 0xf9, 0xee, 0x18, 0xb3, 0xc9, 0x74, 0xc8, 0xe5, 0xf4, 0x27, 0x40, 0x5b, 0x46, 0x78, 0x48, - 0x9d, 0xe1, 0x39, 0x43, 0xd4, 0x3e, 0x42, 0x67, 0x2e, 0x5f, 0x78, 0x06, 0xa7, 0xfb, 0xbc, 0x64, - 0x3b, 0x82, 0x74, 0xa2, 0xca, 0xf4, 0xd3, 0x32, 0x68, 0xe9, 0xd5, 0x33, 0xfa, 0xa0, 0x21, 0x1b, - 0xbb, 0x9c, 0x89, 0xee, 0xd6, 0x3c, 0x37, 0x37, 0xe5, 0xdf, 0x2a, 0x43, 0x96, 0x57, 0x97, 0xeb, - 0xe3, 0xd0, 0x80, 0xa0, 0x3e, 0x41, 0x30, 0x44, 0x99, 0xdf, 0x57, 0x75, 0x79, 0x78, 0xdb, 0x9c, - 0x3c, 0x12, 0x78, 0xb7, 0x73, 0x99, 0x9b, 0x6b, 0x72, 0xdd, 0x9f, 0xe7, 0xe6, 0x86, 0x14, 0x29, - 0xc8, 0x2c, 0x6f, 0x4d, 0x2e, 0xfb, 0x9a, 0xc4, 0x40, 0xcd, 0xc7, 0xff, 0x20, 0x31, 0x78, 0x41, - 0x62, 0x50, 0x4a, 0x0c, 0x54, 0x3d, 0x7e, 0x59, 0x01, 0x77, 0x24, 0xda, 0x80, 0x60, 0x9d, 0xe2, - 0x71, 0x82, 0x42, 0x5f, 0x42, 0x54, 0xcb, 0x74, 0x74, 0x1d, 0xf9, 0x24, 0x9e, 0x0a, 0x98, 0x12, - 0xdc, 0xbb, 0xc8, 0xcd, 0x5a, 0x35, 0x05, 0xae, 0x51, 0x58, 0x5e, 0x8b, 0x6a, 0x58, 0x3e, 0x64, - 0xca, 0x33, 0xf6, 0x29, 0x2a, 0xda, 0xea, 0x06, 0x89, 0xf2, 0xf0, 0x4e, 0x11, 0x73, 0xdb, 0x15, - 0xfd, 0xb5, 0x74, 0xcb, 0x6b, 0xcd, 0x34, 0x9c, 0xf1, 0x0d, 0x90, 0xcf, 0x80, 0xd0, 0x17, 0x43, - 0x6c, 0xe5, 0xd6, 0x21, 0xf6, 0x40, 0x0d, 0xb1, 0xd7, 0xb4, 0xc7, 0xa5, 0xcc, 0xb7, 0xbc, 0x75, - 0xe5, 0x50, 0x63, 0x2c, 0x02, 0x46, 0x81, 0xa8, 0x9a, 0x55, 0x3d, 0x2c, 0xb7, 0xed, 0xe2, 0xc1, - 0x3c, 0x37, 0x77, 0xae, 0xab, 0x54, 0x1c, 0x96, 0xf7, 0x7f, 0xe5, 0xac, 0xda, 0xd6, 0xfa, 0x18, - 0xd4, 0x8b, 0x07, 0xd6, 0xd8, 0x03, 0x8d, 0x64, 0x1a, 0xa3, 0x8c, 0x47, 0xc4, 0xc9, 0xac, 0x7a, - 0x95, 0xc3, 0xe8, 0x82, 0x66, 0x88, 0x12, 0x12, 0xe3, 0x44, 0xc4, 0x97, 0x45, 0x5c, 0x77, 0xb9, - 0x5f, 0x3d, 0xbf, 0xec, 0xd4, 0x2e, 0x2e, 0x3b, 0xb5, 0x3f, 0x2f, 0x3b, 0xb5, 0x67, 0x57, 0x9d, - 0xa5, 0x8b, 0xab, 0xce, 0xd2, 0xef, 0x57, 0x9d, 0xa5, 0x2f, 0x5d, 0xed, 0x8a, 0x05, 0x84, 0xc6, - 0x84, 0xf2, 0xaf, 0xaf, 0xfd, 0x31, 0x71, 0x62, 0x12, 0x4e, 0x23, 0x44, 0xe5, 0x87, 0xd8, 0x7e, - 0xf1, 0x25, 0xf6, 0xce, 0x7b, 0xfb, 0x8b, 0x9f, 0x4a, 0xc3, 0x3b, 0x62, 0x9e, 0x3c, 0xfa, 0x27, - 0x00, 0x00, 0xff, 0xff, 0x37, 0x53, 0x91, 0x3d, 0xb8, 0x09, 0x00, 0x00, + 0xa0, 0x25, 0x42, 0xaa, 0x4d, 0xb2, 0x48, 0x48, 0x15, 0x17, 0xdc, 0x5d, 0xd4, 0x22, 0x56, 0xaa, + 0x5c, 0x7e, 0x48, 0x48, 0xc8, 0x4c, 0xec, 0x49, 0x32, 0x5a, 0xdb, 0x63, 0x3c, 0x93, 0xd0, 0xf2, + 0x17, 0xc0, 0x01, 0x69, 0x8f, 0x88, 0x13, 0x07, 0xfe, 0x98, 0x3d, 0xf6, 0xc8, 0xc9, 0xa0, 0xf6, + 0xc2, 0x39, 0x47, 0x4e, 0x68, 0x7e, 0xd8, 0x9e, 0x66, 0xbb, 0x54, 0xcb, 0x25, 0x9a, 0xf7, 0xde, + 0xe7, 0x7d, 0x3e, 0x99, 0x37, 0x6f, 0xde, 0x18, 0x38, 0x78, 0x18, 0x38, 0x11, 0x1e, 0x4f, 0x58, + 0x10, 0x61, 0x94, 0x30, 0xea, 0x30, 0x94, 0x84, 0x28, 0x8b, 0x71, 0xc2, 0x9c, 0x59, 0x5f, 0xb3, + 0xec, 0x34, 0x23, 0x8c, 0x18, 0x1d, 0x3c, 0x0c, 0x6c, 0x3d, 0xc1, 0xd6, 0x20, 0xb3, 0xfe, 0x6e, + 0x57, 0xcb, 0x67, 0xe7, 0x29, 0xa2, 0xce, 0x0c, 0x46, 0x38, 0x84, 0x8c, 0x64, 0x92, 0x61, 0x77, + 0xef, 0x25, 0x84, 0xf8, 0x55, 0xd1, 0x7b, 0x01, 0x49, 0x46, 0x98, 0x38, 0x69, 0x46, 0xc8, 0xa8, + 0x70, 0x76, 0xc6, 0x84, 0x8c, 0x23, 0xe4, 0x08, 0x6b, 0x38, 0x1d, 0x39, 0xe1, 0x34, 0x83, 0x0c, + 0x93, 0x44, 0xc5, 0xcd, 0xc5, 0x38, 0xc3, 0x31, 0xa2, 0x0c, 0xc6, 0x69, 0x01, 0xe0, 0xdb, 0x0c, + 0x48, 0x86, 0x1c, 0xf9, 0xaf, 0xf9, 0xd6, 0xe4, 0x4a, 0x01, 0xde, 0xa9, 0x00, 0x24, 0x8e, 0x31, + 0x8b, 0x0b, 0x50, 0x69, 0x29, 0xe0, 0xd6, 0x98, 0x8c, 0x89, 0x58, 0x3a, 0x7c, 0x25, 0xbd, 0xd6, + 0x5f, 0x6b, 0xa0, 0x79, 0x28, 0xf8, 0x4e, 0x19, 0x64, 0xc8, 0xd8, 0x01, 0xf5, 0x60, 0x02, 0x71, + 0xe2, 0xe3, 0xb0, 0x5d, 0xeb, 0xd6, 0x7a, 0x0d, 0x6f, 0x4d, 0xd8, 0xc7, 0xa1, 0x81, 0x40, 0x93, + 0x65, 0x53, 0xca, 0xfc, 0x08, 0xcd, 0x50, 0xd4, 0x5e, 0xee, 0xd6, 0x7a, 0xcd, 0x41, 0xcf, 0xfe, + 0xf7, 0xb2, 0xda, 0x1f, 0x67, 0x30, 0xe0, 0x1b, 0x76, 0x77, 0x5f, 0xe4, 0xe6, 0xd2, 0x3c, 0x37, + 0x8d, 0x73, 0x18, 0x47, 0x07, 0x96, 0x46, 0x65, 0x79, 0x40, 0x58, 0x9f, 0x72, 0xc3, 0x18, 0x81, + 0x0d, 0x61, 0xe1, 0x64, 0xec, 0xa7, 0x28, 0xc3, 0x24, 0x6c, 0xaf, 0x08, 0xa9, 0x1d, 0x5b, 0x16, + 0xcb, 0x2e, 0x8a, 0x65, 0x3f, 0x56, 0xc5, 0x74, 0x2d, 0xc5, 0xbd, 0xad, 0x71, 0x57, 0xf9, 0xd6, + 0xcf, 0x7f, 0x98, 0x35, 0xef, 0x6e, 0xe1, 0x3d, 0x11, 0x4e, 0x03, 0x83, 0xcd, 0x69, 0x32, 0x24, + 0x49, 0xa8, 0x09, 0xad, 0xde, 0x26, 0xf4, 0x96, 0x12, 0xba, 0x2f, 0x85, 0x16, 0x09, 0xa4, 0xd2, + 0x46, 0xe9, 0x56, 0x52, 0x08, 0x6c, 0xc4, 0xf0, 0xcc, 0x0f, 0x22, 0x12, 0x3c, 0xf3, 0xc3, 0x0c, + 0x8f, 0x58, 0xfb, 0x7f, 0xaf, 0xb9, 0xa5, 0x85, 0x7c, 0x29, 0xb4, 0x1e, 0xc3, 0xb3, 0x43, 0xee, + 0x7c, 0xcc, 0x7d, 0xc6, 0xd7, 0x60, 0x7d, 0x94, 0x91, 0xef, 0x51, 0xe2, 0x4f, 0x10, 0x3f, 0x90, + 0xf6, 0x1d, 0x21, 0xb2, 0x2b, 0x8e, 0x88, 0xb7, 0x88, 0xad, 0x3a, 0x67, 0xd6, 0xb7, 0x8f, 0x04, + 0xc2, 0xdd, 0x53, 0x2a, 0x5b, 0x52, 0xe5, 0x5a, 0xba, 0xe5, 0xb5, 0xa4, 0x2d, 0xb1, 0x9c, 0x3e, + 0x82, 0x0c, 0x51, 0x56, 0xd0, 0xaf, 0xbd, 0x2e, 0xfd, 0xb5, 0x74, 0xcb, 0x6b, 0x49, 0x5b, 0xd1, + 0x1f, 0x83, 0xa6, 0xb8, 0x3a, 0x3e, 0x4d, 0x51, 0x40, 0xdb, 0xf5, 0xee, 0x4a, 0xaf, 0x39, 0xd8, + 0xb4, 0x71, 0x40, 0x07, 0x8f, 0xec, 0x13, 0x1e, 0x39, 0x4d, 0x51, 0xe0, 0x6e, 0x57, 0x2d, 0xa4, + 0xc1, 0x2d, 0x0f, 0xa4, 0x05, 0x84, 0x1a, 0x07, 0xa0, 0x35, 0x4d, 0xc7, 0x19, 0x0c, 0x91, 0x9f, + 0x42, 0x36, 0x69, 0x37, 0xba, 0x2b, 0xbd, 0x86, 0x7b, 0x7f, 0x9e, 0x9b, 0xf7, 0xd4, 0xb9, 0x69, + 0x51, 0xcb, 0x6b, 0x2a, 0xf3, 0x04, 0xb2, 0x89, 0xe1, 0x83, 0x1d, 0x18, 0x45, 0xe4, 0x3b, 0x7f, + 0x9a, 0x86, 0x90, 0x21, 0x1f, 0x8e, 0x18, 0xca, 0x7c, 0x74, 0x96, 0xe2, 0xec, 0xbc, 0x0d, 0xba, + 0xb5, 0x5e, 0xdd, 0x7d, 0x7b, 0x9e, 0x9b, 0x5d, 0x49, 0xf4, 0x4a, 0xa8, 0xe5, 0x6d, 0x8b, 0xd8, + 0xe7, 0x22, 0xf4, 0x11, 0x8f, 0x3c, 0x11, 0x01, 0xe3, 0x5b, 0x60, 0xde, 0x90, 0x15, 0x63, 0x3a, + 0x44, 0x13, 0x38, 0xc3, 0x64, 0x9a, 0xb5, 0x9b, 0x42, 0xe6, 0xdd, 0x79, 0x6e, 0x3e, 0x7c, 0xa5, + 0x8c, 0x9e, 0x60, 0x79, 0x7b, 0x8b, 0x62, 0x4f, 0xb5, 0xf0, 0xc1, 0xea, 0x0f, 0xbf, 0x9a, 0x4b, + 0xd6, 0x6f, 0xcb, 0xe0, 0xee, 0x21, 0x49, 0x28, 0x4a, 0xe8, 0x94, 0xca, 0xdb, 0xee, 0x82, 0x46, + 0x39, 0x70, 0xc4, 0x75, 0xe7, 0xc7, 0xb9, 0xd8, 0x92, 0x9f, 0x15, 0x08, 0xb7, 0xce, 0x8f, 0xf3, + 0x39, 0xef, 0xbc, 0x2a, 0xcd, 0xf8, 0x10, 0xac, 0x66, 0x84, 0x30, 0x35, 0x0f, 0x2c, 0xad, 0x1b, + 0xaa, 0x09, 0x34, 0xeb, 0xdb, 0x4f, 0x51, 0xf6, 0x2c, 0x42, 0x1e, 0x21, 0xcc, 0x5d, 0xe5, 0x34, + 0x9e, 0xc8, 0x32, 0x7e, 0xac, 0x81, 0xad, 0x04, 0x9d, 0x31, 0xbf, 0x1c, 0xb6, 0xd4, 0x9f, 0x40, + 0x3a, 0x11, 0x77, 0xbe, 0xe5, 0x7e, 0x39, 0xcf, 0xcd, 0x37, 0x65, 0x0d, 0x6e, 0x42, 0x59, 0x7f, + 0xe7, 0xe6, 0xfb, 0x63, 0xcc, 0x26, 0xd3, 0x21, 0x97, 0xd3, 0x9f, 0x00, 0x6d, 0x19, 0xe1, 0x21, + 0x75, 0x86, 0xe7, 0x0c, 0x51, 0xfb, 0x08, 0x9d, 0xb9, 0x7c, 0xe1, 0x19, 0x9c, 0xee, 0x8b, 0x92, + 0xed, 0x08, 0xd2, 0x89, 0x2a, 0xd3, 0x4f, 0xcb, 0xa0, 0xa5, 0x57, 0xcf, 0xe8, 0x83, 0x86, 0x6c, + 0xec, 0x72, 0x26, 0xba, 0x5b, 0xf3, 0xdc, 0xdc, 0x94, 0x7f, 0xab, 0x0c, 0x59, 0x5e, 0x5d, 0xae, + 0x8f, 0x43, 0x03, 0x82, 0xfa, 0x04, 0xc1, 0x10, 0x65, 0x7e, 0x5f, 0xd5, 0xe5, 0xe1, 0x6d, 0x73, + 0xf2, 0x48, 0xe0, 0xdd, 0xce, 0x65, 0x6e, 0xae, 0xc9, 0x75, 0x7f, 0x9e, 0x9b, 0x1b, 0x52, 0xa4, + 0x20, 0xb3, 0xbc, 0x35, 0xb9, 0xec, 0x6b, 0x12, 0x03, 0x35, 0x1f, 0xff, 0x83, 0xc4, 0xe0, 0x25, + 0x89, 0x41, 0x29, 0x31, 0x50, 0xf5, 0xf8, 0x65, 0x05, 0xdc, 0x91, 0x68, 0x03, 0x82, 0x75, 0x8a, + 0xc7, 0x09, 0x0a, 0x7d, 0x09, 0x51, 0x2d, 0xd3, 0xd1, 0x75, 0xe4, 0x93, 0x78, 0x2a, 0x60, 0x4a, + 0x70, 0xef, 0x22, 0x37, 0x6b, 0xd5, 0x14, 0xb8, 0x46, 0x61, 0x79, 0x2d, 0xaa, 0x61, 0xf9, 0x90, + 0x29, 0xcf, 0xd8, 0xa7, 0xa8, 0x68, 0xab, 0x1b, 0x24, 0xca, 0xc3, 0x3b, 0x45, 0xcc, 0x6d, 0x57, + 0xf4, 0xd7, 0xd2, 0x2d, 0xaf, 0x35, 0xd3, 0x70, 0xc6, 0x37, 0x40, 0x3e, 0x03, 0x42, 0x5f, 0x0c, + 0xb1, 0x95, 0x5b, 0x87, 0xd8, 0x03, 0x35, 0xc4, 0xde, 0xd0, 0x1e, 0x97, 0x32, 0xdf, 0xf2, 0xd6, + 0x95, 0x43, 0x8d, 0xb1, 0x08, 0x18, 0x05, 0xa2, 0x6a, 0x56, 0xf5, 0xb0, 0xdc, 0xb6, 0x8b, 0x07, + 0xf3, 0xdc, 0xdc, 0xb9, 0xae, 0x52, 0x71, 0x58, 0xde, 0xff, 0x95, 0xb3, 0x6a, 0x5b, 0xeb, 0x13, + 0x50, 0x2f, 0x1e, 0x58, 0x63, 0x0f, 0x34, 0x92, 0x69, 0x8c, 0x32, 0x1e, 0x11, 0x27, 0xb3, 0xea, + 0x55, 0x0e, 0xa3, 0x0b, 0x9a, 0x21, 0x4a, 0x48, 0x8c, 0x13, 0x11, 0x5f, 0x16, 0x71, 0xdd, 0xe5, + 0xfa, 0x2f, 0x2e, 0x3b, 0xb5, 0x8b, 0xcb, 0x4e, 0xed, 0xcf, 0xcb, 0x4e, 0xed, 0xf9, 0x55, 0x67, + 0xe9, 0xe2, 0xaa, 0xb3, 0xf4, 0xfb, 0x55, 0x67, 0xe9, 0xab, 0x27, 0xda, 0x15, 0x0b, 0x08, 0x8d, + 0x09, 0xe5, 0x5f, 0x5f, 0xfb, 0x63, 0xe2, 0xcc, 0x06, 0x4e, 0x4c, 0xc2, 0x69, 0x84, 0xa8, 0xfc, + 0x16, 0xdb, 0x2f, 0x3e, 0xc6, 0xde, 0xfb, 0x60, 0x7f, 0xf1, 0x6b, 0x69, 0x78, 0x47, 0x8c, 0x94, + 0x47, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0x64, 0x03, 0x6e, 0x58, 0xbb, 0x09, 0x00, 0x00, } func (m *ClientState) Marshal() (dAtA []byte, err error) { diff --git a/modules/light-clients/09-localhost/types/localhost.pb.go b/modules/light-clients/09-localhost/types/localhost.pb.go index 54fe2733f7d..f375074abb2 100644 --- a/modules/light-clients/09-localhost/types/localhost.pb.go +++ b/modules/light-clients/09-localhost/types/localhost.pb.go @@ -75,7 +75,7 @@ func init() { } var fileDescriptor_acd9f5b22d41bf6d = []byte{ - // 285 bytes of a gzipped FileDescriptorProto + // 288 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0xcd, 0x4c, 0x4a, 0xd6, 0xcf, 0xc9, 0x4c, 0xcf, 0x28, 0x49, 0xce, 0xc9, 0x4c, 0xcd, 0x2b, 0x29, 0xd6, 0xcf, 0xc9, 0x4f, 0x4e, 0xcc, 0xc9, 0xc8, 0x2f, 0x2e, 0xd1, 0x2f, 0x33, 0x44, 0x70, 0xf4, 0x0a, 0x8a, 0xf2, 0x4b, @@ -87,13 +87,13 @@ var fileDescriptor_acd9f5b22d41bf6d = []byte{ 0x95, 0x89, 0xb9, 0x39, 0x56, 0x4a, 0x30, 0x19, 0xa5, 0x20, 0x76, 0x30, 0xd3, 0x33, 0x45, 0xc8, 0x82, 0x8b, 0x2d, 0x23, 0x15, 0xe4, 0x26, 0x09, 0x26, 0x05, 0x46, 0x0d, 0x6e, 0x23, 0x29, 0x3d, 0x90, 0x2b, 0x41, 0x16, 0xea, 0x41, 0xad, 0x29, 0x33, 0xd4, 0xf3, 0x00, 0xab, 0x70, 0x62, 0x39, - 0x71, 0x4f, 0x9e, 0x21, 0x08, 0xaa, 0xde, 0x8a, 0xa5, 0x63, 0x81, 0x3c, 0x83, 0x53, 0xf4, 0x89, + 0x71, 0x4f, 0x9e, 0x21, 0x08, 0xaa, 0xde, 0x8a, 0xa5, 0x63, 0x81, 0x3c, 0x83, 0x53, 0xdc, 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, 0x24, 0xc7, 0x38, 0xe1, 0xb1, 0x1c, 0xc3, - 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0x39, 0xa6, 0x67, 0x96, 0x64, 0x94, 0x26, + 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0xb9, 0xa4, 0x67, 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0x27, 0xe7, 0x17, 0xe7, 0xe6, 0x17, 0xeb, 0x67, 0x26, 0x25, 0xeb, - 0xa6, 0xe7, 0xeb, 0xe7, 0xe6, 0xa7, 0x94, 0xe6, 0xa4, 0x16, 0x43, 0x82, 0x4e, 0x17, 0x16, 0x76, - 0x06, 0x96, 0xba, 0x88, 0xe0, 0x2b, 0xa9, 0x2c, 0x48, 0x2d, 0x4e, 0x62, 0x03, 0x7b, 0xd1, 0x18, - 0x10, 0x00, 0x00, 0xff, 0xff, 0xee, 0xdf, 0xcc, 0xab, 0x69, 0x01, 0x00, 0x00, + 0xa6, 0xe7, 0xeb, 0x97, 0x19, 0xe9, 0xe7, 0xe6, 0xa7, 0x94, 0xe6, 0xa4, 0x16, 0x43, 0x42, 0x4f, + 0x17, 0x16, 0x7c, 0x06, 0x96, 0xba, 0x88, 0x10, 0x2c, 0xa9, 0x2c, 0x48, 0x2d, 0x4e, 0x62, 0x03, + 0xfb, 0xd2, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0x20, 0xa6, 0x5b, 0x3b, 0x6c, 0x01, 0x00, 0x00, } func (m *ClientState) Marshal() (dAtA []byte, err error) { diff --git a/proto/ibc/applications/transfer/v1/genesis.proto b/proto/ibc/applications/transfer/v1/genesis.proto index 9c6b78ac7b1..73d9fdddf95 100644 --- a/proto/ibc/applications/transfer/v1/genesis.proto +++ b/proto/ibc/applications/transfer/v1/genesis.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.transfer.v1; -option go_package = "github.com/cosmos/ibc-go/modules/apps/transfer/types"; +option go_package = "github.com/cosmos/ibc-go/v2/modules/apps/transfer/types"; import "ibc/applications/transfer/v1/transfer.proto"; import "gogoproto/gogo.proto"; diff --git a/proto/ibc/applications/transfer/v1/query.proto b/proto/ibc/applications/transfer/v1/query.proto index cd428413ebf..f2faa87b837 100644 --- a/proto/ibc/applications/transfer/v1/query.proto +++ b/proto/ibc/applications/transfer/v1/query.proto @@ -7,7 +7,7 @@ import "cosmos/base/query/v1beta1/pagination.proto"; import "ibc/applications/transfer/v1/transfer.proto"; import "google/api/annotations.proto"; -option go_package = "github.com/cosmos/ibc-go/modules/apps/transfer/types"; +option go_package = "github.com/cosmos/ibc-go/v2/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 69c0486c088..909ac3c1440 100644 --- a/proto/ibc/applications/transfer/v1/transfer.proto +++ b/proto/ibc/applications/transfer/v1/transfer.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.transfer.v1; -option go_package = "github.com/cosmos/ibc-go/modules/apps/transfer/types"; +option go_package = "github.com/cosmos/ibc-go/v2/modules/apps/transfer/types"; import "gogoproto/gogo.proto"; diff --git a/proto/ibc/applications/transfer/v1/tx.proto b/proto/ibc/applications/transfer/v1/tx.proto index eb56b4702c8..d185ac8640a 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/modules/apps/transfer/types"; +option go_package = "github.com/cosmos/ibc-go/v2/modules/apps/transfer/types"; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; diff --git a/proto/ibc/applications/transfer/v2/packet.proto b/proto/ibc/applications/transfer/v2/packet.proto index d7caa354106..fbd0f0462ce 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/modules/apps/transfer/types"; +option go_package = "github.com/cosmos/ibc-go/v2/modules/apps/transfer/types"; // FungibleTokenPacketData defines a struct for the packet payload // See FungibleTokenPacketData spec: diff --git a/proto/ibc/core/channel/v1/channel.proto b/proto/ibc/core/channel/v1/channel.proto index edb39d04b59..ae95a77bad4 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/modules/core/04-channel/types"; +option go_package = "github.com/cosmos/ibc-go/v2/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 75bf1fdb02a..38b57ed6c34 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/modules/core/04-channel/types"; +option go_package = "github.com/cosmos/ibc-go/v2/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 9690e24edfc..212cb645a95 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/modules/core/04-channel/types"; +option go_package = "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types"; import "ibc/core/client/v1/client.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; diff --git a/proto/ibc/core/channel/v1/tx.proto b/proto/ibc/core/channel/v1/tx.proto index 59af0d3f240..dab45080ff3 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/modules/core/04-channel/types"; +option go_package = "github.com/cosmos/ibc-go/v2/modules/core/04-channel/types"; import "gogoproto/gogo.proto"; import "ibc/core/client/v1/client.proto"; diff --git a/proto/ibc/core/client/v1/client.proto b/proto/ibc/core/client/v1/client.proto index 88a6c343adb..07337702017 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/modules/core/02-client/types"; +option go_package = "github.com/cosmos/ibc-go/v2/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 30592cf725f..6668f2cad6e 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/modules/core/02-client/types"; +option go_package = "github.com/cosmos/ibc-go/v2/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 36a5135702d..b6f8eb47445 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/modules/core/02-client/types"; +option go_package = "github.com/cosmos/ibc-go/v2/modules/core/02-client/types"; import "cosmos/base/query/v1beta1/pagination.proto"; import "ibc/core/client/v1/client.proto"; diff --git a/proto/ibc/core/client/v1/tx.proto b/proto/ibc/core/client/v1/tx.proto index 35386adb8a8..5671d733c33 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/modules/core/02-client/types"; +option go_package = "github.com/cosmos/ibc-go/v2/modules/core/02-client/types"; import "gogoproto/gogo.proto"; import "google/protobuf/any.proto"; diff --git a/proto/ibc/core/commitment/v1/commitment.proto b/proto/ibc/core/commitment/v1/commitment.proto index 47d8239422c..b460b9a1e4d 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/modules/core/23-commitment/types"; +option go_package = "github.com/cosmos/ibc-go/v2/modules/core/23-commitment/types"; import "gogoproto/gogo.proto"; import "confio/proofs.proto"; diff --git a/proto/ibc/core/connection/v1/connection.proto b/proto/ibc/core/connection/v1/connection.proto index 72c0ff7daa0..9aa829b984c 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/modules/core/03-connection/types"; +option go_package = "github.com/cosmos/ibc-go/v2/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 64f2e026aca..ec5be64285e 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/modules/core/03-connection/types"; +option go_package = "github.com/cosmos/ibc-go/v2/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 ca90e0eeb4f..d668c3d28da 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/modules/core/03-connection/types"; +option go_package = "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types"; import "gogoproto/gogo.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; diff --git a/proto/ibc/core/connection/v1/tx.proto b/proto/ibc/core/connection/v1/tx.proto index 6318f9fd251..9d4e577e21b 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/modules/core/03-connection/types"; +option go_package = "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types"; import "gogoproto/gogo.proto"; import "google/protobuf/any.proto"; diff --git a/proto/ibc/core/port/v1/query.proto b/proto/ibc/core/port/v1/query.proto index ed61b14e3af..3c7fb7cb908 100644 --- a/proto/ibc/core/port/v1/query.proto +++ b/proto/ibc/core/port/v1/query.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.core.port.v1; -option go_package = "github.com/cosmos/ibc-go/modules/core/05-port/types"; +option go_package = "github.com/cosmos/ibc-go/v2/modules/core/05-port/types"; import "ibc/core/channel/v1/channel.proto"; diff --git a/proto/ibc/core/types/v1/genesis.proto b/proto/ibc/core/types/v1/genesis.proto index 2451da3233a..e39f6cdbba8 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/modules/core/types"; +option go_package = "github.com/cosmos/ibc-go/v2/modules/core/types"; import "gogoproto/gogo.proto"; import "ibc/core/client/v1/genesis.proto"; diff --git a/proto/ibc/lightclients/localhost/v1/localhost.proto b/proto/ibc/lightclients/localhost/v1/localhost.proto index 77e17bc3276..4fe05b78570 100644 --- a/proto/ibc/lightclients/localhost/v1/localhost.proto +++ b/proto/ibc/lightclients/localhost/v1/localhost.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.lightclients.localhost.v1; -option go_package = "github.com/cosmos/ibc-go/modules/light-clients/09-localhost/types"; +option go_package = "github.com/cosmos/ibc-go/v2/modules/light-clients/09-localhost/types"; import "gogoproto/gogo.proto"; import "ibc/core/client/v1/client.proto"; diff --git a/proto/ibc/lightclients/solomachine/v1/solomachine.proto b/proto/ibc/lightclients/solomachine/v1/solomachine.proto index 4ba0da259a7..b9b8a3a2afe 100644 --- a/proto/ibc/lightclients/solomachine/v1/solomachine.proto +++ b/proto/ibc/lightclients/solomachine/v1/solomachine.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.lightclients.solomachine.v1; -option go_package = "github.com/cosmos/ibc-go/modules/core/02-client/legacy/v100"; +option go_package = "github.com/cosmos/ibc-go/v2/modules/core/02-client/legacy/v100"; import "ibc/core/connection/v1/connection.proto"; import "ibc/core/channel/v1/channel.proto"; diff --git a/proto/ibc/lightclients/solomachine/v2/solomachine.proto b/proto/ibc/lightclients/solomachine/v2/solomachine.proto index fdb659f60c6..0c8c638c132 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/modules/light-clients/06-solomachine/types"; +option go_package = "github.com/cosmos/ibc-go/v2/modules/light-clients/06-solomachine/types"; import "ibc/core/connection/v1/connection.proto"; import "ibc/core/channel/v1/channel.proto"; diff --git a/proto/ibc/lightclients/tendermint/v1/tendermint.proto b/proto/ibc/lightclients/tendermint/v1/tendermint.proto index 17a6cce40cc..54e229b28df 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/modules/light-clients/07-tendermint/types"; +option go_package = "github.com/cosmos/ibc-go/v2/modules/light-clients/07-tendermint/types"; import "tendermint/types/validator.proto"; import "tendermint/types/types.proto"; diff --git a/scripts/protocgen.sh b/scripts/protocgen.sh index 1c22cdda784..929d7a2d821 100755 --- a/scripts/protocgen.sh +++ b/scripts/protocgen.sh @@ -36,5 +36,5 @@ go mod tidy # move proto files to the right places -cp -r github.com/cosmos/ibc-go/* ./ +cp -r github.com/cosmos/ibc-go/v2/modules/* modules/ rm -rf github.com From 0e80401800b04a3d685e9470f084b48d1a19d8ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Colin=20Axn=C3=A9r?= <25233464+colin-axner@users.noreply.github.com> Date: Mon, 13 Sep 2021 16:39:41 +0200 Subject: [PATCH 3/4] fix links --- modules/apps/transfer/spec/01_concepts.md | 4 ++-- modules/light-clients/07-tendermint/types/client_state.go | 2 +- .../light-clients/07-tendermint/types/client_state_test.go | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/apps/transfer/spec/01_concepts.md b/modules/apps/transfer/spec/01_concepts.md index df65a00c569..5b513d1f957 100644 --- a/modules/apps/transfer/spec/01_concepts.md +++ b/modules/apps/transfer/spec/01_concepts.md @@ -31,7 +31,7 @@ acting as the "source zone". When the token is sent back to the chain it previou prefix is removed. This is a backwards movement in the token's timeline and the sender chain is acting as the "sink zone". -It is strongly recommended to read the full details of [ADR 001: Coin Source Tracing](https://github.com/cosmos/ibc-go/v2/blob/main/docs/architecture/adr-001-coin-source-tracing.md) to understand the implications and context of the IBC token representations. +It is strongly recommended to read the full details of [ADR 001: Coin Source Tracing](https://github.com/cosmos/ibc-go/blob/main/docs/architecture/adr-001-coin-source-tracing.md) to understand the implications and context of the IBC token representations. ### UX suggestions for clients @@ -96,7 +96,7 @@ The only viable alternative for clients (at the time of writing) to tokens with ## Locked Funds -In some [exceptional cases](https://github.com/cosmos/ibc-go/v2/blob/main/docs/architecture/adr-026-ibc-client-recovery-mechanisms.md#exceptional-cases), a client state associated with a given channel cannot be updated. This causes that funds from fungible tokens in that channel will be permanently locked and thus can no longer be transferred. +In some [exceptional cases](https://github.com/cosmos/ibc-go/blob/main/docs/architecture/adr-026-ibc-client-recovery-mechanisms.md#exceptional-cases), a client state associated with a given channel cannot be updated. This causes that funds from fungible tokens in that channel will be permanently locked and thus can no longer be transferred. To mitigate this, a client update governance proposal can be submitted to update the frozen client with a new valid header. Once the proposal passes the client state will be unfrozen and the funds diff --git a/modules/light-clients/07-tendermint/types/client_state.go b/modules/light-clients/07-tendermint/types/client_state.go index 37b7f479233..2448d2859bb 100644 --- a/modules/light-clients/07-tendermint/types/client_state.go +++ b/modules/light-clients/07-tendermint/types/client_state.go @@ -105,7 +105,7 @@ func (cs ClientState) Validate() error { // If this occurs, the code here must account for potential difference // between the tendermint version being run by the counterparty chain // and the tendermint version used by this light client. - // https://github.com/cosmos/ibc-go/v2/issues/177 + // https://github.com/cosmos/ibc-go/issues/177 if len(cs.ChainId) > tmtypes.MaxChainIDLen { return sdkerrors.Wrapf(ErrInvalidChainID, "chainID is too long; got: %d, max: %d", len(cs.ChainId), tmtypes.MaxChainIDLen) } diff --git a/modules/light-clients/07-tendermint/types/client_state_test.go b/modules/light-clients/07-tendermint/types/client_state_test.go index 63ba6bc5896..7a3f185370b 100644 --- a/modules/light-clients/07-tendermint/types/client_state_test.go +++ b/modules/light-clients/07-tendermint/types/client_state_test.go @@ -95,7 +95,7 @@ func (suite *TendermintTestSuite) TestValidate() { { // NOTE: if this test fails, the code must account for the change in chainID length across tendermint versions! // Do not only fix the test, fix the code! - // https://github.com/cosmos/ibc-go/v2/issues/177 + // https://github.com/cosmos/ibc-go/issues/177 name: "valid chainID - chainID validation failed for chainID of length 50! ", clientState: types.NewClientState(fiftyCharChainID, types.DefaultTrustLevel, trustingPeriod, ubdPeriod, maxClockDrift, height, commitmenttypes.GetSDKSpecs(), upgradePath, false, false), expPass: true, @@ -103,7 +103,7 @@ func (suite *TendermintTestSuite) TestValidate() { { // NOTE: if this test fails, the code must account for the change in chainID length across tendermint versions! // Do not only fix the test, fix the code! - // https://github.com/cosmos/ibc-go/v2/issues/177 + // https://github.com/cosmos/ibc-go/issues/177 name: "invalid chainID - chainID validation did not fail for chainID of length 51! ", clientState: types.NewClientState(fiftyOneCharChainID, types.DefaultTrustLevel, trustingPeriod, ubdPeriod, maxClockDrift, height, commitmenttypes.GetSDKSpecs(), upgradePath, false, false), expPass: false, From cd50e81f4f3ff9d6ffac60ec28a192e6450bd3f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Colin=20Axn=C3=A9r?= <25233464+colin-axner@users.noreply.github.com> Date: Mon, 13 Sep 2021 16:42:06 +0200 Subject: [PATCH 4/4] future proof script --- scripts/protocgen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/protocgen.sh b/scripts/protocgen.sh index 929d7a2d821..1015709e861 100755 --- a/scripts/protocgen.sh +++ b/scripts/protocgen.sh @@ -36,5 +36,5 @@ go mod tidy # move proto files to the right places -cp -r github.com/cosmos/ibc-go/v2/modules/* modules/ +cp -r github.com/cosmos/ibc-go/v*/modules/* modules/ rm -rf github.com