From 5ca37ef6e56a98683cf2b3b1570619dc9b322977 Mon Sep 17 00:00:00 2001 From: Damian Nolan Date: Wed, 6 Sep 2023 17:24:49 +0200 Subject: [PATCH] chore: bump module path to v8 (#4590) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * bumps for e2e and main package go.mod * update sdk and its deps * update module paths (e2e will be fixed after merging this pr) * chore: use v8 suffix in testing readme * fix: conflicts in e2e go.sum * deps: use latest interchaintest fork commit, comment out intertx e2e code * chore: bump interchaintest in e2e * comment out intertx types * delete intertx test files for e2e runs --------- Co-authored-by: Jacob Gadikian Co-authored-by: Colin Axnér <25233464+colin-axner@users.noreply.github.com> --- e2e/go.mod | 63 +-- e2e/go.sum | 136 +----- e2e/relayer/relayer.go | 6 +- e2e/tests/core/02-client/client_test.go | 16 +- .../core/03-connection/connection_test.go | 10 +- e2e/tests/interchain_accounts/base_test.go | 16 +- e2e/tests/interchain_accounts/gov_test.go | 12 +- e2e/tests/interchain_accounts/groups_test.go | 12 +- .../interchain_accounts/incentivized_test.go | 14 +- .../intertx_incentivized_test.go | 354 --------------- e2e/tests/interchain_accounts/intertx_test.go | 222 --------- .../interchain_accounts/localhost_test.go | 20 +- e2e/tests/interchain_accounts/params_test.go | 10 +- e2e/tests/transfer/authz_test.go | 6 +- e2e/tests/transfer/base_test.go | 8 +- e2e/tests/transfer/incentivized_test.go | 10 +- e2e/tests/transfer/localhost_test.go | 14 +- e2e/tests/upgrades/genesis_test.go | 6 +- e2e/tests/upgrades/upgrade_test.go | 421 +++++++++--------- e2e/testsuite/codec.go | 28 +- e2e/testsuite/grpc_query.go | 64 +-- e2e/testsuite/testconfig.go | 4 +- e2e/testsuite/testsuite.go | 14 +- e2e/testsuite/tx.go | 14 +- e2e/testvalues/values.go | 4 +- go.mod | 2 +- internal/collections/collections_test.go | 2 +- .../27-interchain-accounts/client/cli/cli.go | 4 +- .../controller/client/cli/query.go | 2 +- .../controller/client/cli/tx.go | 4 +- .../controller/ibc_middleware.go | 18 +- .../controller/ibc_middleware_test.go | 18 +- .../controller/keeper/account.go | 10 +- .../controller/keeper/account_test.go | 8 +- .../controller/keeper/events.go | 4 +- .../controller/keeper/export_test.go | 2 +- .../controller/keeper/genesis.go | 4 +- .../controller/keeper/genesis_test.go | 10 +- .../controller/keeper/grpc_query.go | 4 +- .../controller/keeper/grpc_query_test.go | 4 +- .../controller/keeper/handshake.go | 4 +- .../controller/keeper/handshake_test.go | 8 +- .../controller/keeper/keeper.go | 14 +- .../controller/keeper/keeper_test.go | 12 +- .../controller/keeper/migrations.go | 6 +- .../controller/keeper/migrations_test.go | 10 +- .../controller/keeper/msg_server.go | 6 +- .../controller/keeper/msg_server_test.go | 12 +- .../controller/keeper/relay.go | 8 +- .../controller/keeper/relay_test.go | 8 +- .../controller/migrations/v6/migrations.go | 4 +- .../migrations/v6/migrations_test.go | 14 +- .../controller/types/controller.pb.go | 26 +- .../controller/types/msgs.go | 6 +- .../controller/types/msgs_test.go | 10 +- .../controller/types/query.pb.go | 52 +-- .../controller/types/tx.pb.go | 76 ++-- .../genesis/types/genesis.go | 8 +- .../genesis/types/genesis.pb.go | 80 ++-- .../genesis/types/genesis_test.go | 10 +- .../host/client/cli/query.go | 8 +- .../host/client/cli/tx.go | 4 +- .../host/client/cli/tx_test.go | 2 +- .../27-interchain-accounts/host/ibc_module.go | 12 +- .../host/ibc_module_test.go | 16 +- .../host/keeper/account.go | 2 +- .../host/keeper/events.go | 4 +- .../host/keeper/export_test.go | 4 +- .../host/keeper/genesis.go | 6 +- .../host/keeper/genesis_test.go | 10 +- .../host/keeper/grpc_query.go | 2 +- .../host/keeper/grpc_query_test.go | 2 +- .../host/keeper/handshake.go | 6 +- .../host/keeper/handshake_test.go | 10 +- .../host/keeper/keeper.go | 14 +- .../host/keeper/keeper_test.go | 16 +- .../host/keeper/migrations.go | 2 +- .../host/keeper/migrations_test.go | 4 +- .../host/keeper/msg_server.go | 4 +- .../host/keeper/msg_server_test.go | 4 +- .../host/keeper/relay.go | 8 +- .../host/keeper/relay_test.go | 10 +- .../host/types/host.pb.go | 34 +- .../27-interchain-accounts/host/types/msgs.go | 2 +- .../host/types/msgs_test.go | 4 +- .../host/types/params_test.go | 2 +- .../host/types/query.pb.go | 42 +- .../host/types/tx.pb.go | 4 +- modules/apps/27-interchain-accounts/module.go | 22 +- .../27-interchain-accounts/module_test.go | 12 +- .../simulation/decoder.go | 2 +- .../simulation/decoder_test.go | 6 +- .../simulation/genesis.go | 8 +- .../simulation/genesis_test.go | 6 +- .../types/account.pb.go | 4 +- .../types/account_test.go | 4 +- .../types/codec_test.go | 2 +- .../types/expected_keepers.go | 4 +- .../27-interchain-accounts/types/keys_test.go | 4 +- .../27-interchain-accounts/types/metadata.go | 4 +- .../types/metadata.pb.go | 24 +- .../types/metadata_test.go | 4 +- .../27-interchain-accounts/types/packet.go | 2 +- .../27-interchain-accounts/types/packet.pb.go | 50 +-- .../types/packet_test.go | 4 +- .../27-interchain-accounts/types/port_test.go | 4 +- modules/apps/29-fee/client/cli/query.go | 4 +- modules/apps/29-fee/client/cli/tx.go | 4 +- modules/apps/29-fee/fee_test.go | 10 +- modules/apps/29-fee/ibc_middleware.go | 12 +- modules/apps/29-fee/ibc_middleware_test.go | 20 +- modules/apps/29-fee/ica_test.go | 12 +- modules/apps/29-fee/keeper/escrow.go | 4 +- modules/apps/29-fee/keeper/escrow_test.go | 8 +- modules/apps/29-fee/keeper/events.go | 4 +- modules/apps/29-fee/keeper/events_test.go | 12 +- modules/apps/29-fee/keeper/export_test.go | 2 +- modules/apps/29-fee/keeper/genesis.go | 2 +- modules/apps/29-fee/keeper/genesis_test.go | 6 +- modules/apps/29-fee/keeper/grpc_query.go | 2 +- modules/apps/29-fee/keeper/grpc_query_test.go | 6 +- modules/apps/29-fee/keeper/keeper.go | 8 +- modules/apps/29-fee/keeper/keeper_test.go | 12 +- modules/apps/29-fee/keeper/msg_server.go | 6 +- modules/apps/29-fee/keeper/msg_server_test.go | 12 +- modules/apps/29-fee/keeper/relay.go | 8 +- modules/apps/29-fee/keeper/relay_test.go | 10 +- modules/apps/29-fee/module.go | 6 +- modules/apps/29-fee/transfer_test.go | 8 +- modules/apps/29-fee/types/ack.pb.go | 34 +- modules/apps/29-fee/types/expected_keepers.go | 2 +- modules/apps/29-fee/types/fee.go | 4 +- modules/apps/29-fee/types/fee.pb.go | 6 +- modules/apps/29-fee/types/fee_test.go | 2 +- modules/apps/29-fee/types/genesis.go | 4 +- modules/apps/29-fee/types/genesis.pb.go | 8 +- modules/apps/29-fee/types/genesis_test.go | 6 +- modules/apps/29-fee/types/keys.go | 4 +- modules/apps/29-fee/types/keys_test.go | 6 +- modules/apps/29-fee/types/metadata.pb.go | 6 +- modules/apps/29-fee/types/metadata_test.go | 4 +- modules/apps/29-fee/types/msgs.go | 6 +- modules/apps/29-fee/types/msgs_test.go | 6 +- modules/apps/29-fee/types/query.pb.go | 162 +++---- modules/apps/29-fee/types/tx.pb.go | 6 +- modules/apps/callbacks/callbacks_test.go | 14 +- modules/apps/callbacks/export_test.go | 2 +- modules/apps/callbacks/fee_transfer_test.go | 4 +- modules/apps/callbacks/go.mod | 4 +- modules/apps/callbacks/ibc_middleware.go | 8 +- modules/apps/callbacks/ibc_middleware_test.go | 20 +- modules/apps/callbacks/ica_test.go | 8 +- .../callbacks/testing/simapp/ante_handler.go | 4 +- modules/apps/callbacks/testing/simapp/app.go | 50 +-- .../testing/simapp/contract_keeper.go | 8 +- modules/apps/callbacks/transfer_test.go | 6 +- modules/apps/callbacks/types/callbacks.go | 4 +- .../apps/callbacks/types/callbacks_test.go | 10 +- modules/apps/callbacks/types/events_test.go | 6 +- .../apps/callbacks/types/expected_keepers.go | 6 +- modules/apps/callbacks/types/export_test.go | 2 +- modules/apps/callbacks/types/types_test.go | 2 +- modules/apps/transfer/client/cli/query.go | 2 +- modules/apps/transfer/client/cli/tx.go | 10 +- modules/apps/transfer/ibc_module.go | 14 +- modules/apps/transfer/ibc_module_test.go | 10 +- modules/apps/transfer/keeper/encoding.go | 2 +- modules/apps/transfer/keeper/export_test.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 | 4 +- modules/apps/transfer/keeper/invariants.go | 2 +- .../apps/transfer/keeper/invariants_test.go | 6 +- modules/apps/transfer/keeper/keeper.go | 8 +- modules/apps/transfer/keeper/keeper_test.go | 6 +- .../apps/transfer/keeper/mbt_relay_test.go | 10 +- modules/apps/transfer/keeper/migrations.go | 2 +- .../apps/transfer/keeper/migrations_test.go | 6 +- modules/apps/transfer/keeper/msg_server.go | 4 +- .../apps/transfer/keeper/msg_server_test.go | 4 +- modules/apps/transfer/keeper/relay.go | 12 +- modules/apps/transfer/keeper/relay_test.go | 8 +- modules/apps/transfer/module.go | 10 +- 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/transfer_test.go | 6 +- modules/apps/transfer/types/authz.pb.go | 48 +- modules/apps/transfer/types/codec_test.go | 2 +- .../apps/transfer/types/expected_keepers.go | 6 +- modules/apps/transfer/types/genesis.go | 2 +- modules/apps/transfer/types/genesis.pb.go | 46 +- modules/apps/transfer/types/genesis_test.go | 2 +- modules/apps/transfer/types/keys_test.go | 2 +- modules/apps/transfer/types/msgs.go | 6 +- modules/apps/transfer/types/msgs_test.go | 6 +- modules/apps/transfer/types/packet.go | 4 +- modules/apps/transfer/types/packet.pb.go | 26 +- modules/apps/transfer/types/packet_test.go | 2 +- modules/apps/transfer/types/query.pb.go | 102 ++--- modules/apps/transfer/types/trace.go | 4 +- modules/apps/transfer/types/trace_test.go | 2 +- modules/apps/transfer/types/transfer.pb.go | 28 +- .../transfer/types/transfer_authorization.go | 6 +- .../types/transfer_authorization_test.go | 6 +- modules/apps/transfer/types/tx.pb.go | 78 ++-- modules/apps/transfer/types/types_test.go | 4 +- modules/core/02-client/abci.go | 6 +- modules/core/02-client/abci_test.go | 8 +- 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 | 14 +- modules/core/02-client/keeper/encoding.go | 4 +- modules/core/02-client/keeper/events.go | 4 +- modules/core/02-client/keeper/grpc_query.go | 6 +- .../core/02-client/keeper/grpc_query_test.go | 8 +- modules/core/02-client/keeper/keeper.go | 14 +- modules/core/02-client/keeper/keeper_test.go | 20 +- modules/core/02-client/keeper/migrations.go | 4 +- .../core/02-client/keeper/migrations_test.go | 6 +- modules/core/02-client/keeper/proposal.go | 4 +- .../core/02-client/keeper/proposal_test.go | 8 +- .../migrations/v7/expected_keepers.go | 2 +- .../core/02-client/migrations/v7/genesis.go | 4 +- .../02-client/migrations/v7/genesis_test.go | 12 +- .../02-client/migrations/v7/localhost_test.go | 6 +- .../02-client/migrations/v7/solomachine.go | 2 +- .../02-client/migrations/v7/solomachine.pb.go | 162 +++---- modules/core/02-client/migrations/v7/store.go | 12 +- .../02-client/migrations/v7/store_test.go | 10 +- modules/core/02-client/module.go | 4 +- modules/core/02-client/proposal_handler.go | 6 +- .../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.pb.go | 82 ++-- modules/core/02-client/types/client_test.go | 4 +- modules/core/02-client/types/codec.go | 4 +- modules/core/02-client/types/codec_test.go | 10 +- 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.pb.go | 56 +-- modules/core/02-client/types/genesis_test.go | 16 +- modules/core/02-client/types/height.go | 4 +- modules/core/02-client/types/height_test.go | 2 +- modules/core/02-client/types/keys.go | 4 +- modules/core/02-client/types/keys_test.go | 2 +- modules/core/02-client/types/msgs.go | 6 +- modules/core/02-client/types/msgs_test.go | 10 +- modules/core/02-client/types/params.go | 4 +- 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/02-client/types/query.pb.go | 4 +- modules/core/02-client/types/tx.pb.go | 83 ++-- 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 +- modules/core/03-connection/keeper/events.go | 2 +- .../core/03-connection/keeper/grpc_query.go | 6 +- .../03-connection/keeper/grpc_query_test.go | 8 +- .../core/03-connection/keeper/handshake.go | 10 +- .../03-connection/keeper/handshake_test.go | 12 +- modules/core/03-connection/keeper/keeper.go | 10 +- .../core/03-connection/keeper/keeper_test.go | 8 +- .../core/03-connection/keeper/migrations.go | 4 +- .../03-connection/keeper/migrations_test.go | 6 +- modules/core/03-connection/keeper/verify.go | 14 +- .../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 | 8 +- .../core/03-connection/types/connection.pb.go | 8 +- .../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.pb.go | 38 +- .../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 | 10 +- modules/core/03-connection/types/msgs_test.go | 14 +- .../core/03-connection/types/params_test.go | 2 +- modules/core/03-connection/types/query.go | 4 +- modules/core/03-connection/types/query.pb.go | 112 ++--- modules/core/03-connection/types/tx.pb.go | 116 ++--- modules/core/03-connection/types/version.go | 2 +- .../core/03-connection/types/version_test.go | 4 +- 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 | 14 +- 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 | 12 +- .../core/04-channel/keeper/handshake_test.go | 12 +- modules/core/04-channel/keeper/keeper.go | 12 +- modules/core/04-channel/keeper/keeper_test.go | 8 +- modules/core/04-channel/keeper/packet.go | 10 +- modules/core/04-channel/keeper/packet_test.go | 18 +- 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 | 4 +- modules/core/04-channel/types/channel.go | 4 +- modules/core/04-channel/types/channel.pb.go | 108 ++--- 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.pb.go | 54 +-- 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 | 8 +- modules/core/04-channel/types/msgs_test.go | 8 +- 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 | 198 ++++---- modules/core/04-channel/types/tx.pb.go | 20 +- modules/core/05-port/keeper/keeper.go | 6 +- modules/core/05-port/keeper/keeper_test.go | 4 +- modules/core/05-port/module.go | 4 +- modules/core/05-port/types/module.go | 6 +- modules/core/23-commitment/types/codec.go | 2 +- .../core/23-commitment/types/commitment.pb.go | 38 +- 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 | 6 +- modules/core/ante/ante.go | 6 +- modules/core/ante/ante_test.go | 12 +- modules/core/client/cli/cli.go | 8 +- modules/core/client/query.go | 6 +- modules/core/errors/errors.go | 2 +- modules/core/genesis.go | 10 +- modules/core/genesis_test.go | 20 +- modules/core/keeper/grpc_query.go | 6 +- modules/core/keeper/keeper.go | 16 +- modules/core/keeper/keeper_test.go | 8 +- modules/core/keeper/migrations.go | 2 +- modules/core/keeper/msg_server.go | 12 +- modules/core/keeper/msg_server_test.go | 20 +- modules/core/migrations/v7/genesis.go | 6 +- modules/core/migrations/v7/genesis_test.go | 16 +- modules/core/module.go | 22 +- 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 | 10 +- modules/core/types/genesis.go | 6 +- modules/core/types/genesis.pb.go | 12 +- modules/core/types/query.go | 12 +- .../06-solomachine/client_state.go | 10 +- .../06-solomachine/client_state_test.go | 18 +- modules/light-clients/06-solomachine/codec.go | 2 +- .../06-solomachine/consensus_state.go | 4 +- .../06-solomachine/consensus_state_test.go | 6 +- .../light-clients/06-solomachine/header.go | 4 +- .../06-solomachine/header_test.go | 6 +- .../06-solomachine/misbehaviour.go | 4 +- .../06-solomachine/misbehaviour_handle.go | 4 +- .../06-solomachine/misbehaviour_test.go | 6 +- .../06-solomachine/proof_test.go | 2 +- .../06-solomachine/proposal_handle.go | 4 +- .../06-solomachine/proposal_handle_test.go | 12 +- .../06-solomachine/solomachine.pb.go | 4 +- .../06-solomachine/solomachine_test.go | 16 +- .../light-clients/06-solomachine/update.go | 4 +- .../06-solomachine/update_test.go | 12 +- .../07-tendermint/client_state.go | 8 +- .../07-tendermint/client_state_test.go | 18 +- modules/light-clients/07-tendermint/codec.go | 2 +- .../07-tendermint/consensus_state.go | 6 +- .../07-tendermint/consensus_state_test.go | 6 +- .../light-clients/07-tendermint/genesis.go | 4 +- .../07-tendermint/genesis_test.go | 6 +- modules/light-clients/07-tendermint/header.go | 6 +- .../07-tendermint/header_test.go | 6 +- .../migrations/expected_keepers.go | 2 +- .../07-tendermint/migrations/migrations.go | 6 +- .../migrations/migrations_test.go | 12 +- .../07-tendermint/misbehaviour.go | 6 +- .../07-tendermint/misbehaviour_handle.go | 4 +- .../07-tendermint/misbehaviour_handle_test.go | 12 +- .../07-tendermint/misbehaviour_test.go | 10 +- .../07-tendermint/proposal_handle.go | 4 +- .../07-tendermint/proposal_handle_test.go | 8 +- modules/light-clients/07-tendermint/store.go | 6 +- .../light-clients/07-tendermint/store_test.go | 14 +- .../07-tendermint/tendermint.pb.go | 118 ++--- .../07-tendermint/tendermint_test.go | 10 +- modules/light-clients/07-tendermint/update.go | 8 +- .../07-tendermint/update_test.go | 14 +- .../light-clients/07-tendermint/upgrade.go | 8 +- .../07-tendermint/upgrade_test.go | 10 +- .../09-localhost/client_state.go | 10 +- .../09-localhost/client_state_test.go | 20 +- modules/light-clients/09-localhost/codec.go | 2 +- .../09-localhost/localhost.pb.go | 6 +- .../09-localhost/localhost_test.go | 2 +- proto/ibc/applications/fee/v1/ack.proto | 2 +- proto/ibc/applications/fee/v1/fee.proto | 2 +- proto/ibc/applications/fee/v1/genesis.proto | 2 +- proto/ibc/applications/fee/v1/metadata.proto | 2 +- proto/ibc/applications/fee/v1/query.proto | 2 +- proto/ibc/applications/fee/v1/tx.proto | 2 +- .../controller/v1/controller.proto | 2 +- .../controller/v1/query.proto | 2 +- .../controller/v1/tx.proto | 2 +- .../genesis/v1/genesis.proto | 2 +- .../interchain_accounts/host/v1/host.proto | 2 +- .../interchain_accounts/host/v1/query.proto | 2 +- .../interchain_accounts/host/v1/tx.proto | 2 +- .../interchain_accounts/v1/account.proto | 2 +- .../interchain_accounts/v1/metadata.proto | 2 +- .../interchain_accounts/v1/packet.proto | 2 +- .../ibc/applications/transfer/v1/authz.proto | 2 +- .../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/types/v1/genesis.proto | 2 +- .../lightclients/localhost/v2/localhost.proto | 2 +- .../solomachine/v2/solomachine.proto | 2 +- .../solomachine/v3/solomachine.proto | 2 +- .../tendermint/v1/tendermint.proto | 2 +- testing/README.md | 4 +- testing/app.go | 6 +- testing/chain.go | 14 +- testing/chain_test.go | 2 +- testing/config.go | 10 +- testing/endpoint.go | 14 +- testing/events.go | 8 +- testing/mock/ibc_app.go | 4 +- testing/mock/ibc_module.go | 8 +- testing/mock/ibc_module_test.go | 6 +- testing/mock/mock.go | 8 +- testing/mock/privval_test.go | 2 +- testing/path.go | 4 +- testing/simapp/ante.go | 4 +- testing/simapp/app.go | 50 +-- testing/simapp/simd/cmd/cmd_test.go | 4 +- testing/simapp/simd/cmd/root.go | 4 +- testing/simapp/simd/main.go | 4 +- testing/simapp/upgrades.go | 6 +- testing/simapp/upgrades/upgrades.go | 8 +- testing/solomachine.go | 18 +- testing/values.go | 12 +- 488 files changed, 2826 insertions(+), 3533 deletions(-) delete mode 100644 e2e/tests/interchain_accounts/intertx_incentivized_test.go delete mode 100644 e2e/tests/interchain_accounts/intertx_test.go diff --git a/e2e/go.mod b/e2e/go.mod index 0b74a64ed80..312c4184e92 100644 --- a/e2e/go.mod +++ b/e2e/go.mod @@ -9,10 +9,9 @@ require ( github.com/cometbft/cometbft v0.38.0-rc3 github.com/cosmos/cosmos-sdk v0.50.0-rc.0.0.20230905141004-6a9777fff287 github.com/cosmos/gogoproto v1.4.11 - github.com/cosmos/ibc-go/v7 v7.3.0 - github.com/cosmos/interchain-accounts v0.5.1 - github.com/docker/docker v24.0.5+incompatible - github.com/strangelove-ventures/interchaintest/v7 v7.0.0-20230817191535-cc35cd35adbc + github.com/cosmos/ibc-go/v8 v8.0.0-20230906115913-46ee5f92e1af + github.com/docker/docker v24.0.6+incompatible + github.com/strangelove-ventures/interchaintest/v8 v8.0.0-20230817191535-cc35cd35adbc github.com/stretchr/testify v1.8.4 go.uber.org/zap v1.25.0 golang.org/x/mod v0.12.0 @@ -61,14 +60,8 @@ require ( github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect github.com/99designs/keyring v1.2.2 // indirect github.com/BurntSushi/toml v1.3.2 // indirect - github.com/ChainSafe/go-schnorrkel v1.0.0 // indirect - github.com/ChainSafe/go-schnorrkel/1 v0.0.0-00010101000000-000000000000 // indirect - github.com/ComposableFi/go-subkey/v2 v2.0.0-tm03420 // indirect github.com/DataDog/zstd v1.5.5 // indirect - github.com/FactomProject/basen v0.0.0-20150613233007-fe3947df716e // indirect - github.com/FactomProject/btcutilecc v0.0.0-20130527213604-d3a63a5752ec // indirect github.com/Microsoft/go-winio v0.6.0 // indirect - github.com/StirlingMarketingGroup/go-namecase v1.0.0 // indirect github.com/avast/retry-go/v4 v4.5.0 // indirect github.com/benbjohnson/clock v1.3.0 // indirect github.com/beorn7/perks v1.0.1 // indirect @@ -97,10 +90,6 @@ require ( github.com/cosmos/ledger-cosmos-go v0.13.0 // indirect github.com/danieljoos/wincred v1.1.2 // indirect github.com/davecgh/go-spew v1.1.1 // indirect - github.com/deckarep/golang-set v1.8.0 // indirect - github.com/decred/base58 v1.0.4 // indirect - github.com/decred/dcrd/crypto/blake256 v1.0.1 // indirect - github.com/decred/dcrd/dcrec/secp256k1/v2 v2.0.1 // indirect github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f // indirect github.com/dgraph-io/badger/v2 v2.2007.4 // indirect @@ -112,7 +101,6 @@ require ( github.com/dustin/go-humanize v1.0.1 // indirect github.com/dvsekhvalnov/jose2go v1.5.0 // indirect github.com/emicklei/dot v1.5.0 // indirect - github.com/ethereum/go-ethereum v1.11.2 // indirect github.com/fatih/color v1.15.0 // indirect github.com/felixge/httpsnoop v1.0.3 // indirect github.com/fsnotify/fsnotify v1.6.0 // indirect @@ -121,7 +109,6 @@ require ( github.com/go-kit/log v0.2.1 // indirect github.com/go-logfmt/logfmt v0.6.0 // indirect github.com/go-playground/validator/v10 v10.14.0 // indirect - github.com/go-stack/stack v1.8.1 // indirect github.com/gobwas/httphead v0.1.0 // indirect github.com/gobwas/pool v0.2.1 // indirect github.com/goccy/go-json v0.10.2 // indirect @@ -142,8 +129,6 @@ require ( github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c // indirect - github.com/gtank/merlin v0.1.1 // indirect - github.com/gtank/ristretto255 v0.1.2 // indirect github.com/hashicorp/go-hclog v1.5.0 // indirect github.com/hashicorp/go-immutable-radix v1.3.1 // indirect github.com/hashicorp/go-metrics v0.5.1 // indirect @@ -158,45 +143,31 @@ require ( github.com/icza/dyno v0.0.0-20220812133438-f0b6f8a18845 // indirect github.com/improbable-eng/grpc-web v0.15.0 // indirect github.com/inconshreveable/mousetrap v1.1.0 // indirect - github.com/ipfs/go-cid v0.4.1 // indirect github.com/jmhodges/levigo v1.0.0 // indirect github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect github.com/klauspost/compress v1.16.7 // indirect - github.com/klauspost/cpuid/v2 v2.2.4 // indirect github.com/kr/pretty v0.3.1 // indirect github.com/kr/text v0.2.0 // indirect github.com/lib/pq v1.10.7 // indirect github.com/libp2p/go-buffer-pool v0.1.0 // indirect - github.com/libp2p/go-libp2p v0.27.8 // indirect github.com/linxGnu/grocksdb v1.8.0 // indirect github.com/magiconair/properties v1.8.7 // indirect github.com/manifoldco/promptui v0.9.0 // indirect github.com/mattn/go-colorable v0.1.13 // indirect github.com/mattn/go-isatty v0.0.19 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect - github.com/mimoo/StrobeGo v0.0.0-20220103164710-9a04d6ca976b // indirect github.com/minio/highwayhash v1.0.2 // indirect - github.com/minio/sha256-simd v1.0.0 // indirect - github.com/misko9/go-substrate-rpc-client/v4 v4.0.0-20230413215336-5bd2aea337ae // indirect github.com/mitchellh/go-testing-interface v1.14.1 // indirect github.com/mitchellh/mapstructure v1.5.0 // indirect - github.com/mr-tron/base58 v1.2.0 // indirect github.com/mtibben/percent v0.2.1 // indirect - github.com/multiformats/go-base32 v0.1.0 // indirect - github.com/multiformats/go-base36 v0.2.0 // indirect - github.com/multiformats/go-multiaddr v0.9.0 // indirect - github.com/multiformats/go-multibase v0.2.0 // indirect - github.com/multiformats/go-multicodec v0.8.1 // indirect - github.com/multiformats/go-multihash v0.2.1 // indirect - github.com/multiformats/go-varint v0.0.7 // indirect github.com/oasisprotocol/curve25519-voi v0.0.0-20230110094441-db37f07504ce // indirect github.com/oklog/run v1.1.0 // indirect + github.com/onsi/ginkgo v1.16.5 // indirect github.com/opencontainers/go-digest v1.0.0 // indirect github.com/opencontainers/image-spec v1.1.0-rc2 // indirect github.com/pelletier/go-toml v1.9.5 // indirect - github.com/pelletier/go-toml/v2 v2.0.9 // indirect + github.com/pelletier/go-toml/v2 v2.1.0 // indirect github.com/petermattis/goid v0.0.0-20230518223814-80aa455d8761 // indirect - github.com/pierrec/xxHash v0.1.5 // indirect github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.16.0 // indirect @@ -209,7 +180,6 @@ require ( github.com/rs/cors v1.8.3 // indirect github.com/rs/zerolog v1.30.0 // indirect github.com/sasha-s/go-deadlock v0.3.1 // indirect - github.com/spaolacci/murmur3 v1.1.0 // indirect github.com/spf13/afero v1.9.5 // indirect github.com/spf13/cast v1.5.1 // indirect github.com/spf13/cobra v1.7.0 // indirect @@ -220,31 +190,26 @@ require ( github.com/syndtr/goleveldb v1.0.1-0.20220721030215-126854af5e6d // indirect github.com/tendermint/go-amino v0.16.0 // indirect github.com/tidwall/btree v1.6.0 // indirect - github.com/tklauser/go-sysconf v0.3.11 // indirect - github.com/tyler-smith/go-bip32 v1.0.0 // indirect - github.com/tyler-smith/go-bip39 v1.1.0 // indirect github.com/ugorji/go/codec v1.2.11 // indirect github.com/zondax/hid v0.9.1 // indirect github.com/zondax/ledger-go v0.14.1 // indirect go.etcd.io/bbolt v1.3.7 // indirect go.uber.org/multierr v1.11.0 // indirect - golang.org/x/crypto v0.12.0 // indirect + golang.org/x/crypto v0.13.0 // indirect golang.org/x/exp v0.0.0-20230817173708-d852ddb80c63 // indirect - golang.org/x/net v0.14.0 // indirect + golang.org/x/net v0.15.0 // indirect golang.org/x/sync v0.3.0 // indirect - golang.org/x/sys v0.11.0 // indirect - golang.org/x/term v0.11.0 // indirect - golang.org/x/text v0.12.0 // indirect - golang.org/x/tools v0.12.1-0.20230815132531-74c255bcf846 // indirect + golang.org/x/sys v0.12.0 // indirect + golang.org/x/term v0.12.0 // indirect + golang.org/x/text v0.13.0 // indirect + golang.org/x/tools v0.13.0 // indirect google.golang.org/genproto v0.0.0-20230803162519-f966b187b2e5 // indirect google.golang.org/genproto/googleapis/api v0.0.0-20230726155614-23370e0ffb3e // indirect google.golang.org/genproto/googleapis/rpc v0.0.0-20230815205213-6bfd019c3878 // indirect google.golang.org/protobuf v1.31.0 // indirect gopkg.in/ini.v1 v1.67.0 // indirect - gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce // indirect gopkg.in/yaml.v3 v3.0.1 // indirect gotest.tools/v3 v3.5.0 // indirect - lukechampine.com/blake3 v1.1.7 // indirect lukechampine.com/uint128 v1.2.0 // indirect modernc.org/cc/v3 v3.40.0 // indirect modernc.org/ccgo/v3 v3.16.13 // indirect @@ -268,10 +233,12 @@ replace ( ) // uncomment to use the local version of ibc-go, you will need to run `go mod tidy` in e2e directory. -replace github.com/cosmos/ibc-go/v7 => ../ +replace github.com/cosmos/ibc-go/v8 => ../ replace github.com/syndtr/goleveldb => github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 replace github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1 -replace github.com/strangelove-ventures/interchaintest/v7 => github.com/notional-labs/interchaintest/v7 v7.0.0-20230831143727-c9539fd05629 +//replace github.com/strangelove-ventures/interchaintest/v8 => github.com/notional-labs/interchaintest/v8 v8.0.0-20230905211440-c2dc240d2221 + +replace github.com/strangelove-ventures/interchaintest/v8 => github.com/colin-axner/interchaintest/v8 v8.0.0-20230906142353-5d89200aad4a diff --git a/e2e/go.sum b/e2e/go.sum index 83212684da5..89f9f849563 100644 --- a/e2e/go.sum +++ b/e2e/go.sum @@ -228,19 +228,9 @@ github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03 github.com/BurntSushi/toml v1.3.2 h1:o7IhLm0Msx3BaB+n3Ag7L8EVlByGnpq14C4YWiu/gL8= github.com/BurntSushi/toml v1.3.2/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= -github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d h1:nalkkPQcITbvhmL4+C4cKA87NW0tfm3Kl9VXRoPywFg= -github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d/go.mod h1:URdX5+vg25ts3aCh8H5IFZybJYKWhJHYMTnf+ULtoC4= -github.com/ChainSafe/go-schnorrkel v1.0.0 h1:3aDA67lAykLaG1y3AOjs88dMxC88PgUuHRrLeDnvGIM= -github.com/ChainSafe/go-schnorrkel v1.0.0/go.mod h1:dpzHYVxLZcp8pjlV+O+UR8K0Hp/z7vcchBSbMBEhCw4= -github.com/ComposableFi/go-subkey/v2 v2.0.0-tm03420 h1:oknQF/iIhf5lVjbwjsVDzDByupRhga8nhA3NAmwyHDA= -github.com/ComposableFi/go-subkey/v2 v2.0.0-tm03420/go.mod h1:KYkiMX5AbOlXXYfxkrYPrRPV6EbVUALTQh5ptUOJzu8= github.com/DataDog/datadog-go v3.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ= github.com/DataDog/zstd v1.5.5 h1:oWf5W7GtOLgp6bciQYDmhHHjdhYkALu6S/5Ni9ZgSvQ= github.com/DataDog/zstd v1.5.5/go.mod h1:g4AWEaM3yOg3HYfnJ3YIawPnVdXJh9QME85blwSAmyw= -github.com/FactomProject/basen v0.0.0-20150613233007-fe3947df716e h1:ahyvB3q25YnZWly5Gq1ekg6jcmWaGj/vG/MhF4aisoc= -github.com/FactomProject/basen v0.0.0-20150613233007-fe3947df716e/go.mod h1:kGUqhHd//musdITWjFvNTHn90WG9bMLBEPQZ17Cmlpw= -github.com/FactomProject/btcutilecc v0.0.0-20130527213604-d3a63a5752ec h1:1Qb69mGp/UtRPn422BH4/Y4Q3SLUrD9KHuDkm8iodFc= -github.com/FactomProject/btcutilecc v0.0.0-20130527213604-d3a63a5752ec/go.mod h1:CD8UlnlLDiqb36L110uqiP2iSflVjx9g/3U9hCI4q2U= github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible/go.mod h1:r7JcOSlj0wfOMncg0iLm8Leh48TZaKVeNIfJntJ2wa0= github.com/Microsoft/go-winio v0.6.0 h1:slsWYD/zyx7lCXoZVlvQrj0hPTM1HI4+v1sIda2yDvg= github.com/Microsoft/go-winio v0.6.0/go.mod h1:cTAf44im0RAYeL23bpB+fzCyDH2MJiz2BO69KH/soAE= @@ -250,10 +240,6 @@ github.com/OneOfOne/xxhash v1.2.2 h1:KMrpdQIwFcEqXDklaen+P1axHaj9BSKzvpUUfnHldSE github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= github.com/Shopify/sarama v1.19.0/go.mod h1:FVkBWblsNy7DGZRfXLU0O9RCGt5g3g3yEuWXgklEdEo= github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI= -github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6 h1:fLjPD/aNc3UIOA6tDi6QXUemppXK3P9BI7mr2hd6gx8= -github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6/go.mod h1:3eOhrUMpNV+6aFIbp5/iudMxNCF27Vw2OZgy4xEx0Fg= -github.com/StirlingMarketingGroup/go-namecase v1.0.0 h1:2CzaNtCzc4iNHirR+5ru9OzGg8rQp860gqLBFqRI02Y= -github.com/StirlingMarketingGroup/go-namecase v1.0.0/go.mod h1:ZsoSKcafcAzuBx+sndbxHu/RjDcDTrEdT4UvhniHfio= github.com/VividCortex/gohistogram v1.0.0 h1:6+hBz+qvs0JOrrNhhmR7lFxo5sINxBCGXrdtl/UvroE= github.com/VividCortex/gohistogram v1.0.0/go.mod h1:Pf5mBqqDxYaXu3hDrrU+w6nw50o/4+TcAqDqk/vUH7g= github.com/adlio/schema v1.3.3 h1:oBJn8I02PyTB466pZO1UZEn1TV5XLlifBSyMrmHl/1I= @@ -300,8 +286,6 @@ github.com/btcsuite/btcd/btcutil v1.1.3 h1:xfbtw8lwpp0G6NwSHb+UE67ryTFHJAiNuipus github.com/btcsuite/btcd/btcutil v1.1.3/go.mod h1:UR7dsSJzJUfMmFiiLlIrMq1lS9jh9EdCV7FStZSnpi0= github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1 h1:q0rUy8C/TYNBQS1+CGKw68tLOFYSNEs0TFnxxnS9+4U= github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1/go.mod h1:7SFka0XMvUgj3hfZtydOrQY2mwhPclbT2snogU7SQQc= -github.com/btcsuite/btcutil v1.0.3-0.20201208143702-a53e38424cce h1:YtWJF7RHm2pYCvA5t0RPmAaLUhREsKuKd+SLhxFbFeQ= -github.com/btcsuite/btcutil v1.0.3-0.20201208143702-a53e38424cce/go.mod h1:0DVlHczLPewLcPGEIeUEzfOJhqGPQ0mJJRDBtD307+o= github.com/bufbuild/protocompile v0.6.0 h1:Uu7WiSQ6Yj9DbkdnOe7U4mNKp58y9WDMKDn28/ZlunY= github.com/bufbuild/protocompile v0.6.0/go.mod h1:YNP35qEYoYGme7QMtz5SBCoN4kL4g12jTtjuzRNdjpE= github.com/casbin/casbin/v2 v2.1.2/go.mod h1:YcPU1XXisHhLzuxH9coDNf2FbKpjGlbCg3n9yuLkIJQ= @@ -330,8 +314,6 @@ github.com/circonus-labs/circonus-gometrics v2.3.1+incompatible/go.mod h1:nmEj6D github.com/circonus-labs/circonusllhist v0.1.3/go.mod h1:kMXHVDlOchFAehlya5ePtbp5jckzBHf4XRpQvBOLI+I= github.com/clbanning/x2j v0.0.0-20191024224557-825249438eec/go.mod h1:jMjuTZXRI4dUb/I5gc9Hdhagfvm9+RyrPryS/auMzxE= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= -github.com/cmars/basen v0.0.0-20150613233007-fe3947df716e h1:0XBUw73chJ1VYSsfvcPvVT7auykAJce9FpRr10L6Qhw= -github.com/cmars/basen v0.0.0-20150613233007-fe3947df716e/go.mod h1:P13beTBKr5Q18lJe1rIoLUqjM+CB1zYrRg44ZqGuQSA= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= @@ -357,6 +339,8 @@ github.com/cockroachdb/redact v1.1.5/go.mod h1:BVNblN9mBWFyMyqK1k3AAiSxhvhfK2oOZ github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06 h1:zuQyyAKVxetITBuuhv3BI9cMrmStnpT18zmgmTxunpo= github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06/go.mod h1:7nc4anLGjupUW/PeY5qiNYsdNXj7zopG+eqsS7To5IQ= github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd/go.mod h1:sE/e/2PUdi/liOCUjSTXgM1o87ZssimdTWN964YiIeI= +github.com/colin-axner/interchaintest/v8 v8.0.0-20230906142353-5d89200aad4a h1:rWxVtMsp/X9FVOzIvLCrJ8FWzuAGwpI7jwh51Pgt5Lc= +github.com/colin-axner/interchaintest/v8 v8.0.0-20230906142353-5d89200aad4a/go.mod h1:aXLHcZ5Tv0R5/LynEsE86bc4UwuHl5TZpzGSLqo79AE= github.com/cometbft/cometbft v0.38.0-rc3 h1:Ly3eVPWoFu0y68PmZwLljucPdEBtfigZtqm+OV1W6dE= github.com/cometbft/cometbft v0.38.0-rc3/go.mod h1:5Jz0Z8YsHSf0ZaAqGvi/ifioSdVFPtEGrm8Y9T/993k= github.com/cometbft/cometbft-db v0.8.0 h1:vUMDaH3ApkX8m0KZvOFFy9b5DZHBAjsnEuo9AKVZpjo= @@ -377,7 +361,6 @@ github.com/cosmos/cosmos-proto v1.0.0-beta.3 h1:VitvZ1lPORTVxkmF2fAp3IiA61xVwArQ github.com/cosmos/cosmos-proto v1.0.0-beta.3/go.mod h1:t8IASdLaAq+bbHbjq4p960BvcTqtwuAxid3b/2rOD6I= github.com/cosmos/cosmos-sdk v0.50.0-rc.0.0.20230905141004-6a9777fff287 h1:8KqZgZEGzPjqAL66YDOzAVFiDrLQA4Sr8RsoesV3Ymk= github.com/cosmos/cosmos-sdk v0.50.0-rc.0.0.20230905141004-6a9777fff287/go.mod h1:olbHxcVB4zWwnF+oNPbKIoEIO5HgHndzKUqdpuu4s34= -github.com/cosmos/go-bip39 v0.0.0-20180819234021-555e2067c45d/go.mod h1:tSxLoYXyBmiFeKpvmq4dzayMdCjCnu8uqmCysIGBT2Y= github.com/cosmos/go-bip39 v1.0.0 h1:pcomnQdrdH22njcAatO0yWojsUnCO3y2tNoV1cb6hHY= github.com/cosmos/go-bip39 v1.0.0/go.mod h1:RNJv0H/pOIVgxw6KS7QeX2a0Uo0aKUlfhZ4xuwvCdJw= github.com/cosmos/gogogateway v1.2.0 h1:Ae/OivNhp8DqBi/sh2A8a1D0y638GpL3tkmLQAiKxTE= @@ -391,8 +374,6 @@ github.com/cosmos/ibc-go/modules/capability v1.0.0-rc5 h1:OwYsRIM2gwe3ifuvi2sriE github.com/cosmos/ibc-go/modules/capability v1.0.0-rc5/go.mod h1:YriReKrNl7ZKBW6FSmgV7v4BhrN84tm672YjU0Y2C2I= github.com/cosmos/ics23/go v0.10.0 h1:iXqLLgp2Lp+EdpIuwXTYIQU+AiHj9mOC2X9ab++bZDM= github.com/cosmos/ics23/go v0.10.0/go.mod h1:ZfJSmng/TBNTBkFemHHHj5YY7VAU/MBU980F4VU1NG0= -github.com/cosmos/interchain-accounts v0.5.1 h1:J5ZaYsMc2u4DekKXbDPzv8nu4YD/RSmT0F8dmN7G1oM= -github.com/cosmos/interchain-accounts v0.5.1/go.mod h1:JB3gKbX8geQhxEIrBQtpDco0cyKMUDpVhugb78e5z6U= github.com/cosmos/ledger-cosmos-go v0.13.0 h1:ex0CvCxToSR7j5WjrghPu2Bu9sSXKikjnVvUryNnx4s= github.com/cosmos/ledger-cosmos-go v0.13.0/go.mod h1:ZcqYgnfNJ6lAXe4HPtWgarNEY+B74i+2/8MhZw4ziiI= github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE= @@ -405,19 +386,8 @@ github.com/danieljoos/wincred v1.1.2/go.mod h1:GijpziifJoIBfYh+S7BbkdUTU4LfM+QnG github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/deckarep/golang-set v1.8.0 h1:sk9/l/KqpunDwP7pSjUg0keiOOLEnOBHzykLrsPppp4= -github.com/deckarep/golang-set v1.8.0/go.mod h1:5nI87KwE7wgsBU1F4GKAw2Qod7p5kyS383rP6+o6qqo= -github.com/deckarep/golang-set/v2 v2.1.0 h1:g47V4Or+DUdzbs8FxCCmgb6VYd+ptPAngjM6dtGktsI= -github.com/deckarep/golang-set/v2 v2.1.0/go.mod h1:VAky9rY/yGXJOLEDv3OMci+7wtDpOF4IN+y82NBOac4= -github.com/decred/base58 v1.0.4 h1:QJC6B0E0rXOPA8U/kw2rP+qiRJsUaE2Er+pYb3siUeA= -github.com/decred/base58 v1.0.4/go.mod h1:jJswKPEdvpFpvf7dsDvFZyLT22xZ9lWqEByX38oGd9E= -github.com/decred/dcrd/chaincfg/chainhash v1.0.2 h1:rt5Vlq/jM3ZawwiacWjPa+smINyLRN07EO0cNBV6DGU= -github.com/decred/dcrd/chaincfg/chainhash v1.0.2/go.mod h1:BpbrGgrPTr3YJYRN3Bm+D9NuaFd+zGyNeIKgrhCXK60= -github.com/decred/dcrd/crypto/blake256 v1.0.0/go.mod h1:sQl2p6Y26YV+ZOcSTP6thNdn47hh8kt6rqSlvmrXFAc= github.com/decred/dcrd/crypto/blake256 v1.0.1 h1:7PltbUIQB7u/FfZ39+DGa/ShuMyJ5ilcvdfma9wOH6Y= github.com/decred/dcrd/crypto/blake256 v1.0.1/go.mod h1:2OfgNZ5wDpcsFmHmCK5gZTPcCXqlm2ArzUIkw9czNJo= -github.com/decred/dcrd/dcrec/secp256k1/v2 v2.0.1 h1:18HurQ6DfHeNvwIjvOmrgr44bPdtVaQAe/WWwHg9goM= -github.com/decred/dcrd/dcrec/secp256k1/v2 v2.0.1/go.mod h1:XmyzkaXBy7ZvHdrTAlXAjpog8qKSAWa3ze7yqzWmgmc= github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 h1:8UrgZ3GkP4i/CLijOJx79Yu+etlyjdBU4sfcs2WYQMs= github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0/go.mod h1:v57UDF4pDQJcEfFUCRop3lJL149eHGSe9Jvczhzjo/0= github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f h1:U5y3Y5UE0w7amNe7Z5G/twsBW0KEalRQXZzf8ufSh9I= @@ -433,8 +403,8 @@ github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 h1:fAjc9m62+UWV/WA github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13/go.mod h1:SqUrOPUnsFjfmXRMNPybcSiG0BgUW2AuFH8PAnS2iTw= github.com/docker/distribution v2.8.2+incompatible h1:T3de5rq0dB1j30rp0sA2rER+m322EBzniBPB6ZIzuh8= github.com/docker/distribution v2.8.2+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w= -github.com/docker/docker v24.0.5+incompatible h1:WmgcE4fxyI6EEXxBRxsHnZXrO1pQ3smi0k/jho4HLeY= -github.com/docker/docker v24.0.5+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= +github.com/docker/docker v24.0.6+incompatible h1:hceabKCtUgDqPu+qm0NgsaXf28Ljf4/pWFL7xjWWDgE= +github.com/docker/docker v24.0.6+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= github.com/docker/go-connections v0.4.0 h1:El9xVISelRB7BuFusrZozjnkIM5YnzCViNKohAFqRJQ= github.com/docker/go-connections v0.4.0/go.mod h1:Gbd7IOopHjR8Iph03tsViu4nIes5XhDvyHbTtUxmeec= github.com/docker/go-units v0.5.0 h1:69rxXcBk27SvSaaxTtLh/8llcHD8vYHT7WSdRZ/jvr4= @@ -462,8 +432,6 @@ github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0/go.m github.com/envoyproxy/go-control-plane v0.9.10-0.20210907150352-cf90f659a021/go.mod h1:AFq3mo9L8Lqqiid3OhADV3RfLJnjiw63cSpi+fDTRC0= github.com/envoyproxy/go-control-plane v0.10.2-0.20220325020618-49ff273808a1/go.mod h1:KJwIaB5Mv44NWtYuAOFCVOjcI94vtpEz2JU/D2v6IjE= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= -github.com/ethereum/go-ethereum v1.11.2 h1:z/luyejbevDCAMUUiu0rc80dxJxOnpoG58k5o0tSawc= -github.com/ethereum/go-ethereum v1.11.2/go.mod h1:DuefStAgaxoaYGLR0FueVcVbehmn5n9QUcVrMCuOvuc= github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= github.com/fatih/color v1.13.0/go.mod h1:kLAiJbzzSOZDVNGyDpeOxJ47H46qBXwg5ILebYFFOfk= github.com/fatih/color v1.15.0 h1:kOqh6YHBtK8aywxGerMG2Eq3H6Qgoqeo13Bk2Mv/nBs= @@ -509,8 +477,6 @@ github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A= github.com/go-logfmt/logfmt v0.6.0 h1:wGYYu3uicYdqXVgoYbvnkrPVXkuLM1p1ifugDMEdRi4= github.com/go-logfmt/logfmt v0.6.0/go.mod h1:WYhtIu8zTZfxdn5+rREduYbwxfcBr/Vr6KEVveWlfTs= -github.com/go-ole/go-ole v1.2.6 h1:/Fpf6oFPoeFik9ty7siob0G6Ke8QvQEuVcuChpwXzpY= -github.com/go-ole/go-ole v1.2.6/go.mod h1:pprOEPIfldk/42T2oK7lQ4v4JSDwmV0As9GaiUsvbm0= github.com/go-playground/assert/v2 v2.0.1/go.mod h1:VDjEfimB/XKnb+ZQfWdccd7VUvScMdVu0Titje2rxJ4= github.com/go-playground/locales v0.13.0/go.mod h1:taPMhCMXrRLJO55olJkUXHZBHCxTMfnGwq/HNwmWNS8= github.com/go-playground/locales v0.14.1 h1:EWaQ/wswjilfKLTECiXz7Rh+3BjFhfDFKv/oXslEjJA= @@ -523,8 +489,7 @@ github.com/go-playground/validator/v10 v10.14.0 h1:vgvQWe3XCz3gIeFDm/HnTIbj6UGmg github.com/go-playground/validator/v10 v10.14.0/go.mod h1:9iXMNT7sEkjXb0I+enO7QXmzG6QCsPWY4zveKFVRSyU= github.com/go-sql-driver/mysql v1.4.0/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= -github.com/go-stack/stack v1.8.1 h1:ntEHSVwIt7PNXNpgPmVfMrNhLtgjlmnZha2kOpuRiDw= -github.com/go-stack/stack v1.8.1/go.mod h1:dcoOX6HbPZSZptuspn9bctJ+N/CnF5gGygcUP3XYfe4= +github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0/go.mod h1:fyg7847qk6SyHyPtNmDHnmrv/HOrqktSC+C9fM+CJOE= github.com/gobwas/httphead v0.0.0-20180130184737-2c6c146eadee/go.mod h1:L0fX3K22YWvt/FAX9NnzrNzcI4wNYi9Yku4O0LKYflo= github.com/gobwas/httphead v0.1.0 h1:exrUm0f4YX0L7EBwZHuCF4GDp8aJfVeBrlLQrs6NqWU= github.com/gobwas/httphead v0.1.0/go.mod h1:O/RXo79gxV8G+RqlR/otEwx4Q36zl9rqC5u12GKvMCM= @@ -683,11 +648,6 @@ github.com/grpc-ecosystem/grpc-gateway v1.16.0 h1:gmcG1KaJ57LophUzW0Hy8NmPhnMZb4 github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c h1:6rhixN/i8ZofjG1Y75iExal34USq5p+wiN1tpie8IrU= github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c/go.mod h1:NMPJylDgVpX0MLRlPy15sqSwOFv/U1GZ2m21JhFfek0= -github.com/gtank/merlin v0.1.1-0.20191105220539-8318aed1a79f/go.mod h1:T86dnYJhcGOh5BjZFCJWTDeTK7XW8uE+E21Cy/bIQ+s= -github.com/gtank/merlin v0.1.1 h1:eQ90iG7K9pOhtereWsmyRJ6RAwcP4tHTDBHXNg+u5is= -github.com/gtank/merlin v0.1.1/go.mod h1:T86dnYJhcGOh5BjZFCJWTDeTK7XW8uE+E21Cy/bIQ+s= -github.com/gtank/ristretto255 v0.1.2 h1:JEqUCPA1NvLq5DwYtuzigd7ss8fwbYay9fi4/5uMzcc= -github.com/gtank/ristretto255 v0.1.2/go.mod h1:Ph5OpO6c7xKUGROZfWVLiJf9icMDwUeIvY4OmlYW69o= github.com/hashicorp/consul/api v1.3.0/go.mod h1:MmDNSzIMUjNpY/mQ398R4bk2FnqQLoPndWW5VkKPlCE= github.com/hashicorp/consul/sdk v0.3.0/go.mod h1:VKf9jXwCTEY1QZP2MOLRhb5i/I/ssyNV1vwHyQBF0x8= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= @@ -754,8 +714,6 @@ github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANyt github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8= github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= github.com/influxdata/influxdb1-client v0.0.0-20191209144304-8bf82d3c094d/go.mod h1:qj24IKcXYK6Iy9ceXlo3Tc+vtHo9lIhSX5JddghvEPo= -github.com/ipfs/go-cid v0.4.1 h1:A/T3qGvxi4kpKWWcPC/PgbvDA2bjVLO7n4UeVwnbs/s= -github.com/ipfs/go-cid v0.4.1/go.mod h1:uQHwDeX4c6CtyrFwdqyhpNcxVewur1M7l7fNU7LKwZk= github.com/jhump/protoreflect v1.15.2 h1:7YppbATX94jEt9KLAc5hICx4h6Yt3SaavhQRsIUEHP0= github.com/jhump/protoreflect v1.15.2/go.mod h1:4ORHmSBmlCW8fh3xHmJMGyul1zNqZK4Elxc8qKP+p1k= github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= @@ -789,10 +747,6 @@ github.com/klauspost/compress v1.12.3/go.mod h1:8dP1Hq4DHOhN9w426knH3Rhby4rFm6D8 github.com/klauspost/compress v1.15.11/go.mod h1:QPwzmACJjUTFsnSHH934V6woptycfrDDJnH7hvFVbGM= github.com/klauspost/compress v1.16.7 h1:2mk3MPGNzKyxErAw8YaohYh69+pa4sIQSC0fPGCFR9I= github.com/klauspost/compress v1.16.7/go.mod h1:ntbaceVETuRiXiv4DpjP66DpAtAGkEQskQzEyD//IeE= -github.com/klauspost/cpuid/v2 v2.0.4/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= -github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= -github.com/klauspost/cpuid/v2 v2.2.4 h1:acbojRNwl3o09bUq+yDCtZFc1aiwaAAxtcn8YkZXnvk= -github.com/klauspost/cpuid/v2 v2.2.4/go.mod h1:RVVoqg1df56z8g3pUjL/3lE5UfnlrJX8tyFgg4nqhuY= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= @@ -811,8 +765,6 @@ github.com/lib/pq v1.10.7 h1:p7ZhMD+KsSRozJr34udlUrhboJwWAgCg34+/ZZNvZZw= github.com/lib/pq v1.10.7/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= github.com/libp2p/go-buffer-pool v0.1.0 h1:oK4mSFcQz7cTQIfqbe4MIj9gLW+mnanjyFtc6cdF0Y8= github.com/libp2p/go-buffer-pool v0.1.0/go.mod h1:N+vh8gMqimBzdKkSMVuydVDq+UV5QTWy5HSiZacSbPg= -github.com/libp2p/go-libp2p v0.27.8 h1:IX5x/4yKwyPQeVS2AXHZ3J4YATM9oHBGH1gBc23jBAI= -github.com/libp2p/go-libp2p v0.27.8/go.mod h1:eCFFtd0s5i/EVKR7+5Ki8bM7qwkNW3TPTTSSW9sz8NE= github.com/lightstep/lightstep-tracer-common/golang/gogo v0.0.0-20190605223551-bc2310a04743/go.mod h1:qklhhLq1aX+mtWk9cPHPzaBjWImj5ULL6C7HFJtXQMM= github.com/lightstep/lightstep-tracer-go v0.18.1/go.mod h1:jlF1pusYV4pidLvZ+XD0UBX0ZE6WURAspgAczcDHrL4= github.com/linxGnu/grocksdb v1.8.0 h1:H4L/LhP7GOMf1j17oQAElHgVlbEje2h14A8Tz9cM2BE= @@ -843,15 +795,8 @@ github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5 github.com/matttproud/golang_protobuf_extensions v1.0.4 h1:mmDVorXM7PCGKw94cs5zkfA9PSy5pEvNWRP0ET0TIVo= github.com/matttproud/golang_protobuf_extensions v1.0.4/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= github.com/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg= -github.com/mimoo/StrobeGo v0.0.0-20181016162300-f8f6d4d2b643/go.mod h1:43+3pMjjKimDBf5Kr4ZFNGbLql1zKkbImw+fZbw3geM= -github.com/mimoo/StrobeGo v0.0.0-20220103164710-9a04d6ca976b h1:QrHweqAtyJ9EwCaGHBu1fghwxIPiopAHV06JlXrMHjk= -github.com/mimoo/StrobeGo v0.0.0-20220103164710-9a04d6ca976b/go.mod h1:xxLb2ip6sSUts3g1irPVHyk/DGslwQsNOo9I7smJfNU= github.com/minio/highwayhash v1.0.2 h1:Aak5U0nElisjDCfPSG79Tgzkn2gl66NxOMspRrKnA/g= github.com/minio/highwayhash v1.0.2/go.mod h1:BQskDq+xkJ12lmlUUi7U0M5Swg3EWR+dLTk+kldvVxY= -github.com/minio/sha256-simd v1.0.0 h1:v1ta+49hkWZyvaKwrQB8elexRqm6Y0aMLjCNsrYxo6g= -github.com/minio/sha256-simd v1.0.0/go.mod h1:OuYzVNI5vcoYIAmbIvHPl3N3jUzVedXbKy5RFepssQM= -github.com/misko9/go-substrate-rpc-client/v4 v4.0.0-20230413215336-5bd2aea337ae h1:ZYbJh4TLwfSuSQe6DT/1982SfNNBcmvzrX5FycfSrmo= -github.com/misko9/go-substrate-rpc-client/v4 v4.0.0-20230413215336-5bd2aea337ae/go.mod h1:XexEkZgpnQ3sqUYz84DFoVUcDake6G/tYHrwdbdERhM= github.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceTlRvqc= github.com/mitchellh/go-homedir v1.0.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= github.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y= @@ -876,24 +821,8 @@ github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9G github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= github.com/morikuni/aec v1.0.0 h1:nP9CBfwrvYnBRgY6qfDQkygYDmYwOilePFkwzv4dU8A= github.com/morikuni/aec v1.0.0/go.mod h1:BbKIizmSmc5MMPqRYbxO4ZU0S0+P200+tUnFx7PXmsc= -github.com/mr-tron/base58 v1.2.0 h1:T/HDJBh4ZCPbU39/+c3rRvE0uKBQlU27+QI8LJ4t64o= -github.com/mr-tron/base58 v1.2.0/go.mod h1:BinMc/sQntlIE1frQmRFPUoPA1Zkr8VRgBdjWI2mNwc= github.com/mtibben/percent v0.2.1 h1:5gssi8Nqo8QU/r2pynCm+hBQHpkB/uNK7BJCFogWdzs= github.com/mtibben/percent v0.2.1/go.mod h1:KG9uO+SZkUp+VkRHsCdYQV3XSZrrSpR3O9ibNBTZrns= -github.com/multiformats/go-base32 v0.1.0 h1:pVx9xoSPqEIQG8o+UbAe7DNi51oej1NtK+aGkbLYxPE= -github.com/multiformats/go-base32 v0.1.0/go.mod h1:Kj3tFY6zNr+ABYMqeUNeGvkIC/UYgtWibDcT0rExnbI= -github.com/multiformats/go-base36 v0.2.0 h1:lFsAbNOGeKtuKozrtBsAkSVhv1p9D0/qedU9rQyccr0= -github.com/multiformats/go-base36 v0.2.0/go.mod h1:qvnKE++v+2MWCfePClUEjE78Z7P2a1UV0xHgWc0hkp4= -github.com/multiformats/go-multiaddr v0.9.0 h1:3h4V1LHIk5w4hJHekMKWALPXErDfz/sggzwC/NcqbDQ= -github.com/multiformats/go-multiaddr v0.9.0/go.mod h1:mI67Lb1EeTOYb8GQfL/7wpIZwc46ElrvzhYnoJOmTT0= -github.com/multiformats/go-multibase v0.2.0 h1:isdYCVLvksgWlMW9OZRYJEa9pZETFivncJHmHnnd87g= -github.com/multiformats/go-multibase v0.2.0/go.mod h1:bFBZX4lKCA/2lyOFSAoKH5SS6oPyjtnzK/XTFDPkNuk= -github.com/multiformats/go-multicodec v0.8.1 h1:ycepHwavHafh3grIbR1jIXnKCsFm0fqsfEOsJ8NtKE8= -github.com/multiformats/go-multicodec v0.8.1/go.mod h1:L3QTQvMIaVBkXOXXtVmYE+LI16i14xuaojr/H7Ai54k= -github.com/multiformats/go-multihash v0.2.1 h1:aem8ZT0VA2nCHHk7bPJ1BjUbHNciqZC/d16Vve9l108= -github.com/multiformats/go-multihash v0.2.1/go.mod h1:WxoMcYG85AZVQUyRyo9s4wULvW5qrI9vb2Lt6evduFc= -github.com/multiformats/go-varint v0.0.7 h1:sWSGR+f/eu5ABZA2ZpYKBILXTTs9JWpdEM/nEGOHFS8= -github.com/multiformats/go-varint v0.0.7/go.mod h1:r8PUYw/fD/SjBCiKOoDlGF6QawOELpZAu9eioSos/OU= github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f h1:KUppIJq7/+SVif2QVs3tOP0zanoHgBEVAwHxUSIzRqU= github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= @@ -906,8 +835,6 @@ github.com/nats-io/nkeys v0.1.0/go.mod h1:xpnFELMwJABBLVhffcfd1MZx6VsNRFpEugbxzi github.com/nats-io/nkeys v0.1.3/go.mod h1:xpnFELMwJABBLVhffcfd1MZx6VsNRFpEugbxziKVo7w= github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= -github.com/notional-labs/interchaintest/v7 v7.0.0-20230831143727-c9539fd05629 h1:SK5ocs5U5Hip/JyX/cF2k+SP3NEBy1HKiv+JAwKp0gg= -github.com/notional-labs/interchaintest/v7 v7.0.0-20230831143727-c9539fd05629/go.mod h1:5vnJ/UcQjSmFEDt4iglmCcftSn0votAA7+V7ZlwuUU8= github.com/nxadm/tail v1.4.4/go.mod h1:kenIhsEOeOJmVchQTgglprH7qJGnHDVpk1VPCcaMI8A= github.com/nxadm/tail v1.4.8 h1:nPr65rt6Y5JFSKQO7qToXr7pePgD6Gwiw05lkbyAQTE= github.com/nxadm/tail v1.4.8/go.mod h1:+ncqLTQzXmGhMZNUePPaPqPvBxHAIsmXswZKocGu+AU= @@ -954,16 +881,14 @@ github.com/pborman/uuid v1.2.0/go.mod h1:X/NO0urCmaxf9VXbdlT7C2Yzkj2IKimNn4k+gtP github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= github.com/pelletier/go-toml v1.9.5 h1:4yBQzkHv+7BHq2PQUZF3Mx0IYxG7LsP222s7Agd3ve8= github.com/pelletier/go-toml v1.9.5/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c= -github.com/pelletier/go-toml/v2 v2.0.9 h1:uH2qQXheeefCCkuBBSLi7jCiSmj3VRh2+Goq2N7Xxu0= -github.com/pelletier/go-toml/v2 v2.0.9/go.mod h1:tJU2Z3ZkXwnxa4DPO899bsyIoywizdUvyaeZurnPPDc= +github.com/pelletier/go-toml/v2 v2.1.0 h1:FnwAJ4oYMvbT/34k9zzHuZNrhlz48GB3/s6at6/MHO4= +github.com/pelletier/go-toml/v2 v2.1.0/go.mod h1:tJU2Z3ZkXwnxa4DPO899bsyIoywizdUvyaeZurnPPDc= github.com/performancecopilot/speed v3.0.0+incompatible/go.mod h1:/CLtqpZ5gBg1M9iaPbIdPPGyKcA8hKdoy6hAWba7Yac= github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5/go.mod h1:jvVRKCrJTQWu0XVbaOlby/2lO20uSCHEMzzplHXte1o= github.com/petermattis/goid v0.0.0-20230518223814-80aa455d8761 h1:W04oB3d0J01W5jgYRGKsV8LCM6g9EkCvPkZcmFuy0OE= github.com/petermattis/goid v0.0.0-20230518223814-80aa455d8761/go.mod h1:pxMtw7cyUw6B2bRH0ZBANSPg+AoSud1I1iyJHI69jH4= github.com/pierrec/lz4 v1.0.2-0.20190131084431-473cd7ce01a1/go.mod h1:3/3N9NVKO0jef7pBehbT1qWhCMrIgbYNnFAZCqQ5LRc= github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= -github.com/pierrec/xxHash v0.1.5 h1:n/jBpwTHiER4xYvK3/CdPVnLDPchj8eTJFFLUb4QHBo= -github.com/pierrec/xxHash v0.1.5/go.mod h1:w2waW5Zoa/Wc4Yqe0wgrIYAGKqRMf7czn2HNKXmuL+I= github.com/pingcap/errors v0.11.4 h1:lFuQV/oaUMGcD2tqt+01ROSmJs75VG1ToEOkZIZ4nE4= github.com/pingcap/errors v0.11.4/go.mod h1:Oi8TUi2kEtXXLMJk9l1cGmz20kV3TaQ0usTwv5KuLY8= github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA= @@ -1036,8 +961,6 @@ github.com/samuel/go-zookeeper v0.0.0-20190923202752-2cc03de413da/go.mod h1:gi+0 github.com/sasha-s/go-deadlock v0.3.1 h1:sqv7fDNShgjcaxkO0JNcOAlr8B9+cV5Ey/OB71efZx0= github.com/sasha-s/go-deadlock v0.3.1/go.mod h1:F73l+cr82YSh10GxyRI6qZiCgK64VaZjwesgfQ1/iLM= github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc= -github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible h1:Bn1aCHHRnjv4Bl16T8rcaFjYSrGrIZvpiGO6P3Q4GpU= -github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible/go.mod h1:5b4v6he4MtMOwMlS0TUMTu2PcXUg8+E1lC7eC3UO/RA= github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= @@ -1080,7 +1003,6 @@ github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+ github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= github.com/stretchr/objx v0.5.0 h1:1zr/of2m5FGMsad5YfcqgdqdWrIhu+EBEJRhR1U7z/c= github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= -github.com/stretchr/testify v1.1.5-0.20170601210322-f6abca593680/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= @@ -1101,16 +1023,8 @@ github.com/tendermint/go-amino v0.16.0 h1:GyhmgQKvqF82e2oZeuMSp9JTN0N09emoSZlb2l github.com/tendermint/go-amino v0.16.0/go.mod h1:TQU0M1i/ImAo+tYpZi73AU3V/dKeCoMC9Sphe2ZwGME= github.com/tidwall/btree v1.6.0 h1:LDZfKfQIBHGHWSwckhXI0RPSXzlo+KYdjK7FWSqOzzg= github.com/tidwall/btree v1.6.0/go.mod h1:twD9XRA5jj9VUQGELzDO4HPQTNJsoWWfYEL+EUQ2cKY= -github.com/tklauser/go-sysconf v0.3.11 h1:89WgdJhk5SNwJfu+GKyYveZ4IaJ7xAkecBo+KdJV0CM= -github.com/tklauser/go-sysconf v0.3.11/go.mod h1:GqXfhXY3kiPa0nAXPDIQIWzJbMCB7AmcWpGR8lSZfqI= -github.com/tklauser/numcpus v0.6.0 h1:kebhY2Qt+3U6RNK7UqpYNA+tJ23IBEGKkB7JQBfDYms= -github.com/tklauser/numcpus v0.6.0/go.mod h1:FEZLMke0lhOUG6w2JadTzp0a+Nl8PF/GFkQ5UVIcaL4= github.com/tmc/grpc-websocket-proxy v0.0.0-20170815181823-89b8d40f7ca8/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= github.com/tv42/httpunix v0.0.0-20150427012821-b75d8614f926/go.mod h1:9ESjWnEqriFuLhtthL60Sar/7RFoluCcXsuvEwTV5KM= -github.com/tyler-smith/go-bip32 v1.0.0 h1:sDR9juArbUgX+bO/iblgZnMPeWY1KZMUC2AFUJdv5KE= -github.com/tyler-smith/go-bip32 v1.0.0/go.mod h1:onot+eHknzV4BVPwrzqY5OoVpyCvnwD7lMawL5aQupE= -github.com/tyler-smith/go-bip39 v1.1.0 h1:5eUemwrMargf3BSLRRCalXT93Ns6pQJIjYQN2nyfOP8= -github.com/tyler-smith/go-bip39 v1.1.0/go.mod h1:gUYDtqQw1JS3ZJ8UWVcGTGqqr6YIN3CWg+kkNaLt55U= github.com/ugorji/go v1.1.7/go.mod h1:kZn38zHttfInRq0xu/PH0az30d+z6vm202qpg1oXVMw= github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8/go.mod h1:VFNgLljTbGfSG7qAOspJ7OScBnGdDN/yBr0sguwnwf0= github.com/ugorji/go/codec v1.1.7/go.mod h1:Ax+UKWsSmolVDwsd+7N3ZtXu+yMGCf907BLYF3GoBXY= @@ -1167,7 +1081,6 @@ go.uber.org/zap v1.13.0/go.mod h1:zwrFLgMcdUuIBviXEYEH1YKNaOBnKXsx2IPda5bBwHM= go.uber.org/zap v1.18.1/go.mod h1:xg/QME4nWcxGxrpdeYfq7UvYrLh66cuVKdrbD1XF/NI= go.uber.org/zap v1.25.0 h1:4Hvk6GtkucQ790dqmj7l1eEnRdKm3k3ZUrUMS2d5+5c= go.uber.org/zap v1.25.0/go.mod h1:JIAUzQIH94IC4fOJQm7gMmBJP5k7wQfdcnYdPoEXJYk= -golang.org/x/crypto v0.0.0-20170613210332-850760c427c5/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20181029021203-45a5f77698d3/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= @@ -1176,15 +1089,14 @@ golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8U golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20191206172530-e9b2fee46413/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200728195943-123391ffb6de/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.0.0-20220314234659-1baeb1ce4c0b/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= -golang.org/x/crypto v0.12.0 h1:tFM/ta59kqch6LlvYnPa0yx5a83cL2nHflFhYKvv9Yk= -golang.org/x/crypto v0.12.0/go.mod h1:NF0Gs7EO5K4qLn+Ylc+fih8BSTeIjAP05siRnAh98yw= +golang.org/x/crypto v0.13.0 h1:mvySKfSWJ+UKUii46M40LOvyWfN0s2U+46/jDd0e6Ck= +golang.org/x/crypto v0.13.0/go.mod h1:y6Z2r+Rw4iayiXXAIxJIDAJ1zMW4yaTpebo8fPOliYc= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= @@ -1287,8 +1199,8 @@ golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug golang.org/x/net v0.0.0-20220909164309-bea034e7d591/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= golang.org/x/net v0.0.0-20221014081412-f15817d10f9b/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= golang.org/x/net v0.1.0/go.mod h1:Cx3nUiGt4eDBEyega/BKRp+/AlGL8hYe7U9odMt2Cco= -golang.org/x/net v0.14.0 h1:BONx9s002vGdD9umnlX1Po8vOZmrgH34qlHcD1MfK14= -golang.org/x/net v0.14.0/go.mod h1:PpSgVXXLK0OxS0F31C1/tv6XNguvCrnXIDrFMspZIUI= +golang.org/x/net v0.15.0 h1:ugBLEUaxABaB5AJqW9enI0ACdci2RUd4eP51NTBvuJ8= +golang.org/x/net v0.15.0/go.mod h1:idbUs1IY1+zTqbi8yxTbhexhEEk5ur9LInksu6HrEpk= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -1386,6 +1298,7 @@ golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210112080510-489259a85091/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210225134936-a50acf3fe073/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -1424,22 +1337,20 @@ golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.0.0-20220610221304-9f5ed59c137d/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220615213510-4f61da869c0c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220624220833-87e55d714810/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220704084225-05e143d24a9e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220908164124-27713097b956/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20221010170243-090e33056c14/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.11.0 h1:eG7RXZHdqOJ1i+0lgLgCpSXAp6M3LYlAo6osgSi0xOM= -golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.12.0 h1:CM0HF96J0hcLAwsHPJZjfdNzs0gftsLfgKt57wWHJ0o= +golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.1.0/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= -golang.org/x/term v0.11.0 h1:F9tnn/DA/Im8nCwm+fX+1/eBwi4qFjRT++MhtVC4ZX0= -golang.org/x/term v0.11.0/go.mod h1:zC9APTIj3jG3FdV/Ons+XE1riIZXG4aZ4GTHiPZJPIU= +golang.org/x/term v0.12.0 h1:/ZfYdc3zq+q02Rv9vGqTeSItdzZTSNDmfTi0mBAuidU= +golang.org/x/term v0.12.0/go.mod h1:owVbMEjm3cBLCHdkQu9b1opXd4ETQWc3BhuQGKgXgvU= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -1451,8 +1362,8 @@ golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ= golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= -golang.org/x/text v0.12.0 h1:k+n5B8goJNdU7hSvEtMUz3d1Q6D/XW4COJSJR6fN0mc= -golang.org/x/text v0.12.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= +golang.org/x/text v0.13.0 h1:ablQoSUd0tRdKxZewP80B+BaqeKJuVhuRxj/dkrun3k= +golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= @@ -1510,6 +1421,7 @@ golang.org/x/tools v0.0.0-20200904185747-39188db58858/go.mod h1:Cj7w3i3Rnn0Xh82u golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20201201161351-ac6f37ff4c2a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20201208233053-a543418bbed2/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20201224043029-2b0845dc783e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20210108195828-e2f9c7f1fc8e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= @@ -1520,8 +1432,8 @@ golang.org/x/tools v0.1.3/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.4/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= -golang.org/x/tools v0.12.1-0.20230815132531-74c255bcf846 h1:Vve/L0v7CXXuxUmaMGIEK/dEeq7uiqb5qBgQrZzIE7E= -golang.org/x/tools v0.12.1-0.20230815132531-74c255bcf846/go.mod h1:Sc0INKfu04TlqNoRA1hgpFZbhYXHPr4V5DzpSBTPqQM= +golang.org/x/tools v0.13.0 h1:Iey4qkscZuv0VvIt8E0neZjtPVQFSc870HQ448QgEmQ= +golang.org/x/tools v0.13.0/go.mod h1:HvlwmtVNQAhOuCjW7xxvovg8wbNq7LwfXh/k7wXUl58= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= @@ -1781,8 +1693,6 @@ gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMy gopkg.in/gcfg.v1 v1.2.3/go.mod h1:yesOnuUOFQAhST5vPY4nbZsb/huCgGGXlipJsBn0b3o= gopkg.in/ini.v1 v1.67.0 h1:Dgnx+6+nfE+IfzjUEISNeydPJh9AXNNsWbGP9KzCsOA= gopkg.in/ini.v1 v1.67.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= -gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce h1:+JknDZhAj8YMt7GC73Ei8pv4MzjDUNPHgQWJdtMAaDU= -gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce/go.mod h1:5AcXVHNjg+BDxry382+8OKon8SEWiKktQR07RKPsv1c= gopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo= gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ= gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= @@ -1811,10 +1721,6 @@ honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWh honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= -launchpad.net/gocheck v0.0.0-20140225173054-000000000087 h1:Izowp2XBH6Ya6rv+hqbceQyw/gSGoXfH/UPoTGduL54= -launchpad.net/gocheck v0.0.0-20140225173054-000000000087/go.mod h1:hj7XX3B/0A+80Vse0e+BUHsHMTEhd0O4cpUHr/e/BUM= -lukechampine.com/blake3 v1.1.7 h1:GgRMhmdsuK8+ii6UZFDL8Nb+VyMwadAgcJyfYHxG6n0= -lukechampine.com/blake3 v1.1.7/go.mod h1:tkKEOtDkNtklkXtLNEOGNq5tcV90tJiA1vAA12R78LA= lukechampine.com/uint128 v1.2.0 h1:mBi/5l91vocEN8otkC5bDLhi2KdCticRiwbdB0O+rjI= lukechampine.com/uint128 v1.2.0/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= modernc.org/cc/v3 v3.40.0 h1:P3g79IUS/93SYhtoeaHW+kRCIrYaxJ27MFPv+7kaTOw= diff --git a/e2e/relayer/relayer.go b/e2e/relayer/relayer.go index 4abfc860e21..306f6c0632d 100644 --- a/e2e/relayer/relayer.go +++ b/e2e/relayer/relayer.go @@ -5,9 +5,9 @@ import ( "testing" dockerclient "github.com/docker/docker/client" - "github.com/strangelove-ventures/interchaintest/v7" - "github.com/strangelove-ventures/interchaintest/v7/ibc" - "github.com/strangelove-ventures/interchaintest/v7/relayer" + "github.com/strangelove-ventures/interchaintest/v8" + "github.com/strangelove-ventures/interchaintest/v8/ibc" + "github.com/strangelove-ventures/interchaintest/v8/relayer" "go.uber.org/zap" ) diff --git a/e2e/tests/core/02-client/client_test.go b/e2e/tests/core/02-client/client_test.go index 911b22c912e..e31237e5ff4 100644 --- a/e2e/tests/core/02-client/client_test.go +++ b/e2e/tests/core/02-client/client_test.go @@ -9,9 +9,9 @@ import ( "testing" "time" - "github.com/strangelove-ventures/interchaintest/v7/chain/cosmos" - "github.com/strangelove-ventures/interchaintest/v7/ibc" - test "github.com/strangelove-ventures/interchaintest/v7/testutil" + "github.com/strangelove-ventures/interchaintest/v8/chain/cosmos" + "github.com/strangelove-ventures/interchaintest/v8/ibc" + test "github.com/strangelove-ventures/interchaintest/v8/testutil" testifysuite "github.com/stretchr/testify/suite" "github.com/cosmos/cosmos-sdk/client/grpc/cmtservice" @@ -30,11 +30,11 @@ import ( "github.com/cosmos/ibc-go/e2e/dockerutil" "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testvalues" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v7/testing" - ibcmock "github.com/cosmos/ibc-go/v7/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v8/testing" + ibcmock "github.com/cosmos/ibc-go/v8/testing/mock" ) const ( diff --git a/e2e/tests/core/03-connection/connection_test.go b/e2e/tests/core/03-connection/connection_test.go index 151e7b27e9d..20fee4e830b 100644 --- a/e2e/tests/core/03-connection/connection_test.go +++ b/e2e/tests/core/03-connection/connection_test.go @@ -8,8 +8,8 @@ import ( "testing" "time" - "github.com/strangelove-ventures/interchaintest/v7/ibc" - test "github.com/strangelove-ventures/interchaintest/v7/testutil" + "github.com/strangelove-ventures/interchaintest/v8/ibc" + test "github.com/strangelove-ventures/interchaintest/v8/testutil" testifysuite "github.com/stretchr/testify/suite" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" @@ -17,9 +17,9 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testvalues" - connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func TestConnectionTestSuite(t *testing.T) { diff --git a/e2e/tests/interchain_accounts/base_test.go b/e2e/tests/interchain_accounts/base_test.go index 74b503c586a..89e885db025 100644 --- a/e2e/tests/interchain_accounts/base_test.go +++ b/e2e/tests/interchain_accounts/base_test.go @@ -6,10 +6,10 @@ import ( "time" "github.com/cosmos/gogoproto/proto" - "github.com/strangelove-ventures/interchaintest/v7" - "github.com/strangelove-ventures/interchaintest/v7/chain/cosmos" - "github.com/strangelove-ventures/interchaintest/v7/ibc" - test "github.com/strangelove-ventures/interchaintest/v7/testutil" + "github.com/strangelove-ventures/interchaintest/v8" + "github.com/strangelove-ventures/interchaintest/v8/chain/cosmos" + "github.com/strangelove-ventures/interchaintest/v8/ibc" + test "github.com/strangelove-ventures/interchaintest/v8/testutil" testifysuite "github.com/stretchr/testify/suite" sdkmath "cosmossdk.io/math" @@ -19,10 +19,10 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testvalues" - controllertypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + controllertypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func TestInterchainAccountsTestSuite(t *testing.T) { diff --git a/e2e/tests/interchain_accounts/gov_test.go b/e2e/tests/interchain_accounts/gov_test.go index 353286e3ca1..1213c2f49c0 100644 --- a/e2e/tests/interchain_accounts/gov_test.go +++ b/e2e/tests/interchain_accounts/gov_test.go @@ -6,9 +6,9 @@ import ( "time" "github.com/cosmos/gogoproto/proto" - "github.com/strangelove-ventures/interchaintest/v7" - "github.com/strangelove-ventures/interchaintest/v7/ibc" - test "github.com/strangelove-ventures/interchaintest/v7/testutil" + "github.com/strangelove-ventures/interchaintest/v8" + "github.com/strangelove-ventures/interchaintest/v8/ibc" + test "github.com/strangelove-ventures/interchaintest/v8/testutil" testifysuite "github.com/stretchr/testify/suite" sdkmath "cosmossdk.io/math" @@ -19,9 +19,9 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testvalues" - controllertypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + controllertypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func TestInterchainAccountsGovTestSuite(t *testing.T) { diff --git a/e2e/tests/interchain_accounts/groups_test.go b/e2e/tests/interchain_accounts/groups_test.go index b2b15788bd1..b7710f69f7f 100644 --- a/e2e/tests/interchain_accounts/groups_test.go +++ b/e2e/tests/interchain_accounts/groups_test.go @@ -6,9 +6,9 @@ import ( "time" "github.com/cosmos/gogoproto/proto" - interchaintest "github.com/strangelove-ventures/interchaintest/v7" - "github.com/strangelove-ventures/interchaintest/v7/ibc" - test "github.com/strangelove-ventures/interchaintest/v7/testutil" + interchaintest "github.com/strangelove-ventures/interchaintest/v8" + "github.com/strangelove-ventures/interchaintest/v8/ibc" + test "github.com/strangelove-ventures/interchaintest/v8/testutil" testifysuite "github.com/stretchr/testify/suite" sdkmath "cosmossdk.io/math" @@ -19,9 +19,9 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testvalues" - controllertypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + controllertypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) const ( diff --git a/e2e/tests/interchain_accounts/incentivized_test.go b/e2e/tests/interchain_accounts/incentivized_test.go index 22ecd49817d..e7025dfd088 100644 --- a/e2e/tests/interchain_accounts/incentivized_test.go +++ b/e2e/tests/interchain_accounts/incentivized_test.go @@ -6,9 +6,9 @@ import ( "time" "github.com/cosmos/gogoproto/proto" - interchaintest "github.com/strangelove-ventures/interchaintest/v7" - "github.com/strangelove-ventures/interchaintest/v7/ibc" - test "github.com/strangelove-ventures/interchaintest/v7/testutil" + interchaintest "github.com/strangelove-ventures/interchaintest/v8" + "github.com/strangelove-ventures/interchaintest/v8/ibc" + test "github.com/strangelove-ventures/interchaintest/v8/testutil" testifysuite "github.com/stretchr/testify/suite" sdkmath "cosmossdk.io/math" @@ -18,10 +18,10 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testvalues" - controllertypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - feetypes "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + controllertypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + feetypes "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func TestIncentivizedInterchainAccountsTestSuite(t *testing.T) { diff --git a/e2e/tests/interchain_accounts/intertx_incentivized_test.go b/e2e/tests/interchain_accounts/intertx_incentivized_test.go deleted file mode 100644 index 0a8ae734da4..00000000000 --- a/e2e/tests/interchain_accounts/intertx_incentivized_test.go +++ /dev/null @@ -1,354 +0,0 @@ -package interchainaccounts - -import ( - "context" - "testing" - - intertxtypes "github.com/cosmos/interchain-accounts/x/inter-tx/types" - "github.com/strangelove-ventures/interchaintest/v7" - "github.com/strangelove-ventures/interchaintest/v7/ibc" - test "github.com/strangelove-ventures/interchaintest/v7/testutil" - testifysuite "github.com/stretchr/testify/suite" - - sdkmath "cosmossdk.io/math" - - sdk "github.com/cosmos/cosmos-sdk/types" - banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - - "github.com/cosmos/ibc-go/e2e/testvalues" - feetypes "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" -) - -func TestIncentivizedInterTxTestSuite(t *testing.T) { - testifysuite.Run(t, new(IncentivizedInterTxTestSuite)) -} - -type IncentivizedInterTxTestSuite struct { - InterTxTestSuite -} - -func (s *IncentivizedInterTxTestSuite) TestMsgSubmitTx_SuccessfulBankSend_Incentivized() { - t := s.T() - ctx := context.TODO() - - // setup relayers and connection-0 between two chains - // channel-0 is a transfer channel but it will not be used in this test case - relayer, _ := s.SetupChainsRelayerAndChannel(ctx) - chainA, chainB := s.GetChains() - - var ( - chainADenom = chainA.Config().Denom - interchainAcc = "" - testFee = testvalues.DefaultFee(chainADenom) - ) - - t.Run("relayer wallets recovered", func(t *testing.T) { - err := s.RecoverRelayerWallets(ctx, relayer) - s.Require().NoError(err) - }) - - chainARelayerWallet, chainBRelayerWallet, err := s.GetRelayerWallets(relayer) - t.Run("relayer wallets fetched", func(t *testing.T) { - s.Require().NoError(err) - }) - - s.Require().NoError(test.WaitForBlocks(ctx, 5, chainA, chainB), "failed to wait for blocks") - - chainARelayerUser, chainBRelayerUser := s.GetRelayerUsers(ctx) - relayerAStartingBalance, err := s.GetChainANativeBalance(ctx, chainARelayerUser) - s.Require().NoError(err) - t.Logf("relayer A user starting with balance: %d", relayerAStartingBalance) - - controllerAccount := s.CreateUserOnChainA(ctx, testvalues.StartingTokenAmount) - chainBAccount := s.CreateUserOnChainB(ctx, testvalues.StartingTokenAmount) - - t.Run("register interchain account", func(t *testing.T) { - version := "" // allow app to handle the version as appropriate. - msgRegisterAccount := intertxtypes.NewMsgRegisterAccount(controllerAccount.FormattedAddress(), ibctesting.FirstConnectionID, version) - txResp := s.BroadcastMessages(ctx, chainA, controllerAccount, msgRegisterAccount) - s.AssertTxSuccess(txResp) - }) - - t.Run("start relayer", func(t *testing.T) { - s.StartRelayer(relayer) - }) - - var channelOutput ibc.ChannelOutput - t.Run("verify interchain account", func(t *testing.T) { - var err error - interchainAcc, err = s.QueryInterchainAccountLegacy(ctx, chainA, controllerAccount.FormattedAddress(), ibctesting.FirstConnectionID) - s.Require().NoError(err) - s.Require().NotZero(len(interchainAcc)) - - channels, err := relayer.GetChannels(ctx, s.GetRelayerExecReporter(), chainA.Config().ChainID) - s.Require().NoError(err) - s.Require().Equal(len(channels), 2) - - // interchain accounts channel at index: 0 - channelOutput = channels[0] - }) - - t.Run("execute interchain account bank send through controller", func(t *testing.T) { - t.Run("fund interchain account wallet on host chainB", func(t *testing.T) { - // fund the interchain account so it has some $$ to send - err := chainB.SendFunds(ctx, interchaintest.FaucetAccountKeyName, ibc.WalletAmount{ - Address: interchainAcc, - Amount: sdkmath.NewInt(testvalues.StartingTokenAmount), - Denom: chainB.Config().Denom, - }) - s.Require().NoError(err) - }) - - t.Run("register counterparty payee", func(t *testing.T) { - resp := s.RegisterCounterPartyPayee(ctx, chainB, chainBRelayerUser, channelOutput.Counterparty.PortID, channelOutput.Counterparty.ChannelID, chainBRelayerWallet.FormattedAddress(), chainARelayerWallet.FormattedAddress()) - s.AssertTxSuccess(resp) - }) - - t.Run("verify counterparty payee", func(t *testing.T) { - address, err := s.QueryCounterPartyPayee(ctx, chainB, chainBRelayerWallet.FormattedAddress(), channelOutput.Counterparty.ChannelID) - s.Require().NoError(err) - s.Require().Equal(chainARelayerWallet.FormattedAddress(), address) - }) - - t.Run("no incentivized packets", func(t *testing.T) { - packets, err := s.QueryIncentivizedPacketsForChannel(ctx, chainA, channelOutput.PortID, channelOutput.ChannelID) - s.Require().NoError(err) - s.Require().Empty(packets) - }) - - t.Run("stop relayer", func(t *testing.T) { - s.StopRelayer(ctx, relayer) - }) - - t.Run("broadcast incentivized MsgSubmitTx", func(t *testing.T) { - msgPayPacketFee := &feetypes.MsgPayPacketFee{ - Fee: testvalues.DefaultFee(chainADenom), - SourcePortId: channelOutput.PortID, - SourceChannelId: channelOutput.ChannelID, - Signer: controllerAccount.FormattedAddress(), - } - - msgSend := &banktypes.MsgSend{ - FromAddress: interchainAcc, - ToAddress: chainBAccount.FormattedAddress(), - Amount: sdk.NewCoins(testvalues.DefaultTransferAmount(chainB.Config().Denom)), - } - - msgSubmitTx, err := intertxtypes.NewMsgSubmitTx(msgSend, ibctesting.FirstConnectionID, controllerAccount.FormattedAddress()) - s.Require().NoError(err) - - resp := s.BroadcastMessages(ctx, chainA, controllerAccount, msgPayPacketFee, msgSubmitTx) - s.AssertTxSuccess(resp) - - s.Require().NoError(test.WaitForBlocks(ctx, 1, chainA, chainB)) - }) - - t.Run("there should be incentivized packets", func(t *testing.T) { - packets, err := s.QueryIncentivizedPacketsForChannel(ctx, chainA, channelOutput.PortID, channelOutput.ChannelID) - s.Require().NoError(err) - s.Require().Len(packets, 1) - actualFee := packets[0].PacketFees[0].Fee - - s.Require().True(actualFee.RecvFee.Equal(testFee.RecvFee)) - s.Require().True(actualFee.AckFee.Equal(testFee.AckFee)) - s.Require().True(actualFee.TimeoutFee.Equal(testFee.TimeoutFee)) - }) - - t.Run("start relayer", func(t *testing.T) { - s.StartRelayer(relayer) - }) - - t.Run("packets are relayed", func(t *testing.T) { - packets, err := s.QueryIncentivizedPacketsForChannel(ctx, chainA, channelOutput.PortID, channelOutput.ChannelID) - s.Require().NoError(err) - s.Require().Empty(packets) - }) - - t.Run("verify interchain account sent tokens", func(t *testing.T) { - balance, err := chainB.GetBalance(ctx, chainBAccount.FormattedAddress(), chainB.Config().Denom) - s.Require().NoError(err) - - _, err = chainB.GetBalance(ctx, interchainAcc, chainB.Config().Denom) - s.Require().NoError(err) - - expected := testvalues.IBCTransferAmount + testvalues.StartingTokenAmount - s.Require().Equal(expected, balance) - }) - - t.Run("timeout fee is refunded", func(t *testing.T) { - actualBalance, err := s.GetChainANativeBalance(ctx, controllerAccount) - s.Require().NoError(err) - - expected := testvalues.StartingTokenAmount - testFee.AckFee.AmountOf(chainADenom).Int64() - testFee.RecvFee.AmountOf(chainADenom).Int64() - s.Require().Equal(expected, actualBalance) - }) - - t.Run("relayerA is paid ack and recv fee", func(t *testing.T) { - actualBalance, err := s.GetChainANativeBalance(ctx, chainARelayerUser) - s.Require().NoError(err) - - expected := relayerAStartingBalance + testFee.AckFee.AmountOf(chainADenom).Int64() + testFee.RecvFee.AmountOf(chainADenom).Int64() - s.Require().Equal(expected, actualBalance) - }) - }) -} - -func (s *IncentivizedInterTxTestSuite) TestMsgSubmitTx_FailedBankSend_Incentivized() { - t := s.T() - ctx := context.TODO() - - // setup relayers and connection-0 between two chains - // channel-0 is a transfer channel but it will not be used in this test case - relayer, _ := s.SetupChainsRelayerAndChannel(ctx) - chainA, chainB := s.GetChains() - - var ( - chainADenom = chainA.Config().Denom - interchainAcc = "" - testFee = testvalues.DefaultFee(chainADenom) - ) - - t.Run("relayer wallets recovered", func(t *testing.T) { - err := s.RecoverRelayerWallets(ctx, relayer) - s.Require().NoError(err) - }) - - chainARelayerWallet, chainBRelayerWallet, err := s.GetRelayerWallets(relayer) - t.Run("relayer wallets fetched", func(t *testing.T) { - s.Require().NoError(err) - }) - - s.Require().NoError(test.WaitForBlocks(ctx, 5, chainA, chainB), "failed to wait for blocks") - - chainARelayerUser, chainBRelayerUser := s.GetRelayerUsers(ctx) - relayerAStartingBalance, err := s.GetChainANativeBalance(ctx, chainARelayerUser) - s.Require().NoError(err) - t.Logf("relayer A user starting with balance: %d", relayerAStartingBalance) - - controllerAccount := s.CreateUserOnChainA(ctx, testvalues.StartingTokenAmount) - chainBAccount := s.CreateUserOnChainB(ctx, testvalues.StartingTokenAmount) - - t.Run("register interchain account", func(t *testing.T) { - version := "" // allow app to handle the version as appropriate. - msgRegisterAccount := intertxtypes.NewMsgRegisterAccount(controllerAccount.FormattedAddress(), ibctesting.FirstConnectionID, version) - txResp := s.BroadcastMessages(ctx, chainA, controllerAccount, msgRegisterAccount) - s.AssertTxSuccess(txResp) - }) - - t.Run("start relayer", func(t *testing.T) { - s.StartRelayer(relayer) - }) - - var channelOutput ibc.ChannelOutput - t.Run("verify interchain account", func(t *testing.T) { - var err error - interchainAcc, err = s.QueryInterchainAccountLegacy(ctx, chainA, controllerAccount.FormattedAddress(), ibctesting.FirstConnectionID) - s.Require().NoError(err) - s.Require().NotZero(len(interchainAcc)) - - channels, err := relayer.GetChannels(ctx, s.GetRelayerExecReporter(), chainA.Config().ChainID) - s.Require().NoError(err) - s.Require().Equal(len(channels), 2) - - // interchain accounts channel at index: 0 - channelOutput = channels[0] - - s.Require().NoError(test.WaitForBlocks(ctx, 2, chainA, chainB)) - }) - - t.Run("execute interchain account bank send through controller", func(t *testing.T) { - t.Run("register counterparty payee", func(t *testing.T) { - resp := s.RegisterCounterPartyPayee(ctx, chainB, chainBRelayerUser, channelOutput.Counterparty.PortID, channelOutput.Counterparty.ChannelID, chainBRelayerWallet.FormattedAddress(), chainARelayerWallet.FormattedAddress()) - s.AssertTxSuccess(resp) - }) - - t.Run("verify counterparty payee", func(t *testing.T) { - address, err := s.QueryCounterPartyPayee(ctx, chainB, chainBRelayerWallet.FormattedAddress(), channelOutput.Counterparty.ChannelID) - s.Require().NoError(err) - s.Require().Equal(chainARelayerWallet.FormattedAddress(), address) - }) - - t.Run("no incentivized packets", func(t *testing.T) { - packets, err := s.QueryIncentivizedPacketsForChannel(ctx, chainA, channelOutput.PortID, channelOutput.ChannelID) - s.Require().NoError(err) - s.Require().Empty(packets) - }) - - t.Run("stop relayer", func(t *testing.T) { - err := relayer.StopRelayer(ctx, s.GetRelayerExecReporter()) - s.Require().NoError(err) - }) - - t.Run("broadcast incentivized MsgSubmitTx", func(t *testing.T) { - msgPayPacketFee := &feetypes.MsgPayPacketFee{ - Fee: testvalues.DefaultFee(chainADenom), - SourcePortId: channelOutput.PortID, - SourceChannelId: channelOutput.ChannelID, - Signer: controllerAccount.FormattedAddress(), - } - - msgSend := &banktypes.MsgSend{ - FromAddress: interchainAcc, - ToAddress: chainBAccount.FormattedAddress(), - Amount: sdk.NewCoins(testvalues.DefaultTransferAmount(chainB.Config().Denom)), - } - - msgSubmitTx, err := intertxtypes.NewMsgSubmitTx(msgSend, ibctesting.FirstConnectionID, controllerAccount.FormattedAddress()) - s.Require().NoError(err) - - resp := s.BroadcastMessages(ctx, chainA, controllerAccount, msgPayPacketFee, msgSubmitTx) - s.AssertTxSuccess(resp) - - s.Require().NoError(test.WaitForBlocks(ctx, 1, chainA, chainB)) - }) - - t.Run("there should be incentivized packets", func(t *testing.T) { - packets, err := s.QueryIncentivizedPacketsForChannel(ctx, chainA, channelOutput.PortID, channelOutput.ChannelID) - s.Require().NoError(err) - s.Require().Len(packets, 1) - actualFee := packets[0].PacketFees[0].Fee - - s.Require().True(actualFee.RecvFee.Equal(testFee.RecvFee)) - s.Require().True(actualFee.AckFee.Equal(testFee.AckFee)) - s.Require().True(actualFee.TimeoutFee.Equal(testFee.TimeoutFee)) - }) - - t.Run("start relayer", func(t *testing.T) { - s.StartRelayer(relayer) - }) - - t.Run("packets are relayed", func(t *testing.T) { - packets, err := s.QueryIncentivizedPacketsForChannel(ctx, chainA, channelOutput.PortID, channelOutput.ChannelID) - s.Require().NoError(err) - s.Require().Empty(packets) - }) - - t.Run("verify interchain account did not send tokens", func(t *testing.T) { - balance, err := chainB.GetBalance(ctx, chainBAccount.FormattedAddress(), chainB.Config().Denom) - s.Require().NoError(err) - - _, err = chainB.GetBalance(ctx, interchainAcc, chainB.Config().Denom) - s.Require().NoError(err) - - expected := testvalues.StartingTokenAmount - s.Require().Equal(expected, balance, "tokens should not have been sent as interchain account was not funded") - }) - - t.Run("timeout fee is refunded", func(t *testing.T) { - actualBalance, err := s.GetChainANativeBalance(ctx, controllerAccount) - s.Require().NoError(err) - - expected := testvalues.StartingTokenAmount - testFee.AckFee.AmountOf(chainADenom).Int64() - testFee.RecvFee.AmountOf(chainADenom).Int64() - s.Require().Equal(expected, actualBalance) - }) - - t.Run("relayerA is paid ack and recv fee", func(t *testing.T) { - actualBalance, err := s.GetChainANativeBalance(ctx, chainARelayerUser) - s.Require().NoError(err) - - expected := relayerAStartingBalance + testFee.AckFee.AmountOf(chainADenom).Int64() + testFee.RecvFee.AmountOf(chainADenom).Int64() - s.Require().Equal(expected, actualBalance) - }) - }) -} diff --git a/e2e/tests/interchain_accounts/intertx_test.go b/e2e/tests/interchain_accounts/intertx_test.go deleted file mode 100644 index e9c7b8cb343..00000000000 --- a/e2e/tests/interchain_accounts/intertx_test.go +++ /dev/null @@ -1,222 +0,0 @@ -package interchainaccounts - -import ( - "context" - "testing" - - intertxtypes "github.com/cosmos/interchain-accounts/x/inter-tx/types" - "github.com/strangelove-ventures/interchaintest/v7" - "github.com/strangelove-ventures/interchaintest/v7/chain/cosmos" - "github.com/strangelove-ventures/interchaintest/v7/ibc" - test "github.com/strangelove-ventures/interchaintest/v7/testutil" - testifysuite "github.com/stretchr/testify/suite" - - sdkmath "cosmossdk.io/math" - - sdk "github.com/cosmos/cosmos-sdk/types" - banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - - "github.com/cosmos/ibc-go/e2e/semverutil" - "github.com/cosmos/ibc-go/e2e/testsuite" - "github.com/cosmos/ibc-go/e2e/testvalues" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" -) - -func TestInterTxTestSuite(t *testing.T) { - testifysuite.Run(t, new(InterTxTestSuite)) -} - -type InterTxTestSuite struct { - testsuite.E2ETestSuite -} - -// getICAVersion returns the version which should be used in the MsgRegisterAccount broadcast from the -// controller chain. -func getICAVersion(chainAVersion, chainBVersion string) string { - chainBIsGreaterThanOrEqualToChainA := semverutil.GTE(chainBVersion, chainAVersion) - if chainBIsGreaterThanOrEqualToChainA { - // allow version to be specified by the controller chain - return "" - } - // explicitly set the version string because the host chain might not yet support incentivized channels. - return icatypes.NewDefaultMetadataString(ibctesting.FirstConnectionID, ibctesting.FirstConnectionID) -} - -// RegisterInterchainAccount will attempt to register an interchain account on the counterparty chain. -func (s *InterTxTestSuite) RegisterInterchainAccount(ctx context.Context, chain *cosmos.CosmosChain, user ibc.Wallet, msgRegisterAccount *intertxtypes.MsgRegisterAccount) { - txResp := s.BroadcastMessages(ctx, chain, user, msgRegisterAccount) - s.AssertTxSuccess(txResp) -} - -func (s *InterTxTestSuite) TestMsgSubmitTx_SuccessfulTransfer() { - t := s.T() - ctx := context.TODO() - - // setup relayers and connection-0 between two chains - // channel-0 is a transfer channel but it will not be used in this test case - relayer, _ := s.SetupChainsRelayerAndChannel(ctx) - chainA, chainB := s.GetChains() - - // setup 2 accounts: controller account on chain A, a second chain B account. - // host account will be created when the ICA is registered - controllerAccount := s.CreateUserOnChainA(ctx, testvalues.StartingTokenAmount) - chainBAccount := s.CreateUserOnChainB(ctx, testvalues.StartingTokenAmount) - var hostAccount string - - t.Run("register interchain account", func(t *testing.T) { - version := getICAVersion(testsuite.GetChainATag(), testsuite.GetChainBTag()) - msgRegisterAccount := intertxtypes.NewMsgRegisterAccount(controllerAccount.FormattedAddress(), ibctesting.FirstConnectionID, version) - s.RegisterInterchainAccount(ctx, chainA, controllerAccount, msgRegisterAccount) - }) - - t.Run("start relayer", func(t *testing.T) { - s.StartRelayer(relayer) - }) - - t.Run("verify interchain account", func(t *testing.T) { - var err error - hostAccount, err = s.QueryInterchainAccountLegacy(ctx, chainA, controllerAccount.FormattedAddress(), ibctesting.FirstConnectionID) - s.Require().NoError(err) - s.Require().NotZero(len(hostAccount)) - - channels, err := relayer.GetChannels(ctx, s.GetRelayerExecReporter(), chainA.Config().ChainID) - s.Require().NoError(err) - s.Require().Equal(len(channels), 2) - }) - - t.Run("interchain account executes a bank transfer on behalf of the corresponding owner account", func(t *testing.T) { - t.Run("fund interchain account wallet", func(t *testing.T) { - // fund the host account account so it has some $$ to send - err := chainB.SendFunds(ctx, interchaintest.FaucetAccountKeyName, ibc.WalletAmount{ - Address: hostAccount, - Amount: sdkmath.NewInt(testvalues.StartingTokenAmount), - Denom: chainB.Config().Denom, - }) - s.Require().NoError(err) - }) - - t.Run("broadcast MsgSubmitTx", func(t *testing.T) { - // assemble bank transfer message from host account to user account on host chain - msgSend := &banktypes.MsgSend{ - FromAddress: hostAccount, - ToAddress: chainBAccount.FormattedAddress(), - Amount: sdk.NewCoins(testvalues.DefaultTransferAmount(chainB.Config().Denom)), - } - - // assemble submitMessage tx for intertx - msgSubmitTx, err := intertxtypes.NewMsgSubmitTx( - msgSend, - ibctesting.FirstConnectionID, - controllerAccount.FormattedAddress(), - ) - s.Require().NoError(err) - - // broadcast submitMessage tx from controller account on chain A - // this message should trigger the sending of an ICA packet over channel-1 (channel created between controller and host) - // this ICA packet contains the assembled bank transfer message from above, which will be executed by the host account on the host chain. - resp := s.BroadcastMessages( - ctx, - chainA, - controllerAccount, - msgSubmitTx, - ) - - s.AssertTxSuccess(resp) - - s.Require().NoError(test.WaitForBlocks(ctx, 10, chainA, chainB)) - }) - - t.Run("verify tokens transferred", func(t *testing.T) { - balance, err := chainB.GetBalance(ctx, chainBAccount.FormattedAddress(), chainB.Config().Denom) - s.Require().NoError(err) - - _, err = chainB.GetBalance(ctx, hostAccount, chainB.Config().Denom) - s.Require().NoError(err) - - expected := testvalues.IBCTransferAmount + testvalues.StartingTokenAmount - s.Require().Equal(expected, balance) - }) - }) -} - -func (s *InterTxTestSuite) TestMsgSubmitTx_FailedTransfer_InsufficientFunds() { - t := s.T() - ctx := context.TODO() - - // setup relayers and connection-0 between two chains - // channel-0 is a transfer channel but it will not be used in this test case - relayer, _ := s.SetupChainsRelayerAndChannel(ctx) - chainA, chainB := s.GetChains() - - // setup 2 accounts: controller account on chain A, a second chain B account. - // host account will be created when the ICA is registered - controllerAccount := s.CreateUserOnChainA(ctx, testvalues.StartingTokenAmount) - chainBAccount := s.CreateUserOnChainB(ctx, testvalues.StartingTokenAmount) - var hostAccount string - - t.Run("register interchain account", func(t *testing.T) { - version := getICAVersion(testsuite.GetChainATag(), testsuite.GetChainBTag()) - msgRegisterAccount := intertxtypes.NewMsgRegisterAccount(controllerAccount.FormattedAddress(), ibctesting.FirstConnectionID, version) - s.RegisterInterchainAccount(ctx, chainA, controllerAccount, msgRegisterAccount) - }) - - t.Run("start relayer", func(t *testing.T) { - s.StartRelayer(relayer) - }) - - t.Run("verify interchain account", func(t *testing.T) { - var err error - hostAccount, err = s.QueryInterchainAccountLegacy(ctx, chainA, controllerAccount.FormattedAddress(), ibctesting.FirstConnectionID) - s.Require().NoError(err) - s.Require().NotZero(len(hostAccount)) - - channels, err := relayer.GetChannels(ctx, s.GetRelayerExecReporter(), chainA.Config().ChainID) - s.Require().NoError(err) - s.Require().Equal(len(channels), 2) - }) - - t.Run("fail to execute bank transfer over ICA", func(t *testing.T) { - t.Run("verify empty host wallet", func(t *testing.T) { - hostAccountBalance, err := chainB.GetBalance(ctx, hostAccount, chainB.Config().Denom) - s.Require().NoError(err) - s.Require().Zero(hostAccountBalance) - }) - - t.Run("broadcast MsgSubmitTx", func(t *testing.T) { - // assemble bank transfer message from host account to user account on host chain - transferMsg := &banktypes.MsgSend{ - FromAddress: hostAccount, - ToAddress: chainBAccount.FormattedAddress(), - Amount: sdk.NewCoins(testvalues.DefaultTransferAmount(chainB.Config().Denom)), - } - - // assemble submitMessage tx for intertx - submitMsg, err := intertxtypes.NewMsgSubmitTx( - transferMsg, - ibctesting.FirstConnectionID, - controllerAccount.FormattedAddress(), - ) - s.Require().NoError(err) - - // broadcast submitMessage tx from controller account on chain A - // this message should trigger the sending of an ICA packet over channel-1 (channel created between controller and host) - // this ICA packet contains the assembled bank transfer message from above, which will be executed by the host account on the host chain. - resp := s.BroadcastMessages( - ctx, - chainA, - controllerAccount, - submitMsg, - ) - s.AssertTxSuccess(resp) - }) - - t.Run("verify balance is the same", func(t *testing.T) { - balance, err := chainB.GetBalance(ctx, chainBAccount.FormattedAddress(), chainB.Config().Denom) - s.Require().NoError(err) - - expected := testvalues.StartingTokenAmount - s.Require().Equal(expected, balance) - }) - }) -} diff --git a/e2e/tests/interchain_accounts/localhost_test.go b/e2e/tests/interchain_accounts/localhost_test.go index efffe6b0976..dbf80bd8f7d 100644 --- a/e2e/tests/interchain_accounts/localhost_test.go +++ b/e2e/tests/interchain_accounts/localhost_test.go @@ -6,9 +6,9 @@ import ( "time" "github.com/cosmos/gogoproto/proto" - "github.com/strangelove-ventures/interchaintest/v7" - "github.com/strangelove-ventures/interchaintest/v7/ibc" - test "github.com/strangelove-ventures/interchaintest/v7/testutil" + "github.com/strangelove-ventures/interchaintest/v8" + "github.com/strangelove-ventures/interchaintest/v8/ibc" + test "github.com/strangelove-ventures/interchaintest/v8/testutil" testifysuite "github.com/stretchr/testify/suite" sdkmath "cosmossdk.io/math" @@ -18,13 +18,13 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testvalues" - controllertypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - localhost "github.com/cosmos/ibc-go/v7/modules/light-clients/09-localhost" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + controllertypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + localhost "github.com/cosmos/ibc-go/v8/modules/light-clients/09-localhost" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func TestInterchainAccountsLocalhostTestSuite(t *testing.T) { diff --git a/e2e/tests/interchain_accounts/params_test.go b/e2e/tests/interchain_accounts/params_test.go index 41c621bc1ab..43c976ce0dd 100644 --- a/e2e/tests/interchain_accounts/params_test.go +++ b/e2e/tests/interchain_accounts/params_test.go @@ -4,7 +4,7 @@ import ( "context" "testing" - "github.com/strangelove-ventures/interchaintest/v7/ibc" + "github.com/strangelove-ventures/interchaintest/v8/ibc" testifysuite "github.com/stretchr/testify/suite" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" @@ -12,10 +12,10 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testvalues" - controllertypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - hosttypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + controllertypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + hosttypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func TestInterchainAccountsParamsTestSuite(t *testing.T) { diff --git a/e2e/tests/transfer/authz_test.go b/e2e/tests/transfer/authz_test.go index cc66a35e35f..d9533035329 100644 --- a/e2e/tests/transfer/authz_test.go +++ b/e2e/tests/transfer/authz_test.go @@ -4,7 +4,7 @@ import ( "context" "testing" - test "github.com/strangelove-ventures/interchaintest/v7/testutil" + test "github.com/strangelove-ventures/interchaintest/v8/testutil" testifysuite "github.com/stretchr/testify/suite" sdkmath "cosmossdk.io/math" @@ -16,8 +16,8 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testvalues" - transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" + transfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" ) func TestAuthzTransferTestSuite(t *testing.T) { diff --git a/e2e/tests/transfer/base_test.go b/e2e/tests/transfer/base_test.go index 681af677130..124abbb230a 100644 --- a/e2e/tests/transfer/base_test.go +++ b/e2e/tests/transfer/base_test.go @@ -5,8 +5,8 @@ import ( "testing" "time" - "github.com/strangelove-ventures/interchaintest/v7/ibc" - test "github.com/strangelove-ventures/interchaintest/v7/testutil" + "github.com/strangelove-ventures/interchaintest/v8/ibc" + test "github.com/strangelove-ventures/interchaintest/v8/testutil" testifysuite "github.com/stretchr/testify/suite" sdkmath "cosmossdk.io/math" @@ -17,8 +17,8 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testvalues" - transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + transfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func TestTransferTestSuite(t *testing.T) { diff --git a/e2e/tests/transfer/incentivized_test.go b/e2e/tests/transfer/incentivized_test.go index c52aa1ed47d..3ff5779df88 100644 --- a/e2e/tests/transfer/incentivized_test.go +++ b/e2e/tests/transfer/incentivized_test.go @@ -5,8 +5,8 @@ import ( "testing" "time" - "github.com/strangelove-ventures/interchaintest/v7/ibc" - test "github.com/strangelove-ventures/interchaintest/v7/testutil" + "github.com/strangelove-ventures/interchaintest/v8/ibc" + test "github.com/strangelove-ventures/interchaintest/v8/testutil" testifysuite "github.com/stretchr/testify/suite" sdkmath "cosmossdk.io/math" @@ -14,9 +14,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/ibc-go/e2e/testvalues" - feetypes "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" - transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + feetypes "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + transfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" ) type IncentivizedTransferTestSuite struct { diff --git a/e2e/tests/transfer/localhost_test.go b/e2e/tests/transfer/localhost_test.go index cc15bb57a6d..240f3321583 100644 --- a/e2e/tests/transfer/localhost_test.go +++ b/e2e/tests/transfer/localhost_test.go @@ -4,17 +4,17 @@ import ( "context" "testing" - test "github.com/strangelove-ventures/interchaintest/v7/testutil" + test "github.com/strangelove-ventures/interchaintest/v8/testutil" testifysuite "github.com/stretchr/testify/suite" "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testvalues" - transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - localhost "github.com/cosmos/ibc-go/v7/modules/light-clients/09-localhost" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + transfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + localhost "github.com/cosmos/ibc-go/v8/modules/light-clients/09-localhost" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func TestTransferLocalhostTestSuite(t *testing.T) { diff --git a/e2e/tests/upgrades/genesis_test.go b/e2e/tests/upgrades/genesis_test.go index 13a127c6c4c..7f1e4d457d3 100644 --- a/e2e/tests/upgrades/genesis_test.go +++ b/e2e/tests/upgrades/genesis_test.go @@ -6,9 +6,9 @@ import ( "testing" "time" - cosmos "github.com/strangelove-ventures/interchaintest/v7/chain/cosmos" - "github.com/strangelove-ventures/interchaintest/v7/ibc" - test "github.com/strangelove-ventures/interchaintest/v7/testutil" + cosmos "github.com/strangelove-ventures/interchaintest/v8/chain/cosmos" + "github.com/strangelove-ventures/interchaintest/v8/ibc" + test "github.com/strangelove-ventures/interchaintest/v8/testutil" "github.com/stretchr/testify/suite" "go.uber.org/zap" diff --git a/e2e/tests/upgrades/upgrade_test.go b/e2e/tests/upgrades/upgrade_test.go index e4a2bd59ce4..ad209e76d71 100644 --- a/e2e/tests/upgrades/upgrade_test.go +++ b/e2e/tests/upgrades/upgrade_test.go @@ -7,29 +7,26 @@ import ( "time" "github.com/cosmos/gogoproto/proto" - intertxtypes "github.com/cosmos/interchain-accounts/x/inter-tx/types" - interchaintest "github.com/strangelove-ventures/interchaintest/v7" - "github.com/strangelove-ventures/interchaintest/v7/chain/cosmos" - "github.com/strangelove-ventures/interchaintest/v7/ibc" - test "github.com/strangelove-ventures/interchaintest/v7/testutil" + // intertxtypes "github.com/cosmos/interchain-accounts/x/inter-tx/types" + interchaintest "github.com/strangelove-ventures/interchaintest/v8" + "github.com/strangelove-ventures/interchaintest/v8/chain/cosmos" + "github.com/strangelove-ventures/interchaintest/v8/ibc" + test "github.com/strangelove-ventures/interchaintest/v8/testutil" testifysuite "github.com/stretchr/testify/suite" sdkmath "cosmossdk.io/math" upgradetypes "cosmossdk.io/x/upgrade/types" sdk "github.com/cosmos/cosmos-sdk/types" - banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testvalues" - controllertypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - v7migrations "github.com/cosmos/ibc-go/v7/modules/core/02-client/migrations/v7" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - solomachine "github.com/cosmos/ibc-go/v7/modules/light-clients/06-solomachine" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + v7migrations "github.com/cosmos/ibc-go/v8/modules/core/02-client/migrations/v7" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v8/modules/light-clients/06-solomachine" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) const ( @@ -251,200 +248,200 @@ func (s *UpgradeTestSuite) TestChainUpgrade() { }) } -func (s *UpgradeTestSuite) TestV5ToV6ChainUpgrade() { - t := s.T() - testCfg := testsuite.LoadConfig() - - ctx := context.Background() - relayer, _ := s.SetupChainsRelayerAndChannel(ctx) - chainA, chainB := s.GetChains() - - // create separate user specifically for the upgrade proposal to more easily verify starting - // and end balances of the chainA users. - chainAUpgradeProposalWallet := s.CreateUserOnChainA(ctx, testvalues.StartingTokenAmount) - - s.Require().NoError(test.WaitForBlocks(ctx, 1, chainA, chainB), "failed to wait for blocks") - - // setup 2 accounts: controller account on chain A, a second chain B account. - // host account will be created when the ICA is registered - controllerAccount := s.CreateUserOnChainA(ctx, testvalues.StartingTokenAmount) - chainBAccount := s.CreateUserOnChainB(ctx, testvalues.StartingTokenAmount) - var hostAccount string - - t.Run("register interchain account", func(t *testing.T) { - // explicitly set the version string because intertx with ibfc-go v5 does not support incentivized channels. - version := icatypes.NewDefaultMetadataString(ibctesting.FirstConnectionID, ibctesting.FirstConnectionID) - msgRegisterAccount := intertxtypes.NewMsgRegisterAccount(controllerAccount.FormattedAddress(), ibctesting.FirstConnectionID, version) - s.RegisterInterchainAccount(ctx, chainA, controllerAccount, msgRegisterAccount) - }) - - t.Run("start relayer", func(t *testing.T) { - s.StartRelayer(relayer) - }) - - t.Run("verify interchain account", func(t *testing.T) { - var err error - hostAccount, err = s.QueryInterchainAccount(ctx, chainA, controllerAccount.FormattedAddress(), ibctesting.FirstConnectionID) - s.Require().NoError(err) - s.Require().NotZero(len(hostAccount)) - - channels, err := relayer.GetChannels(ctx, s.GetRelayerExecReporter(), chainA.Config().ChainID) - s.Require().NoError(err) - s.Require().Equal(len(channels), 2) - }) - - t.Run("interchain account executes a bank transfer on behalf of the corresponding owner account", func(t *testing.T) { - t.Run("fund interchain account wallet", func(t *testing.T) { - // fund the host account, so it has some $$ to send - err := chainB.SendFunds(ctx, interchaintest.FaucetAccountKeyName, ibc.WalletAmount{ - Address: hostAccount, - Amount: sdkmath.NewInt(testvalues.StartingTokenAmount), - Denom: chainB.Config().Denom, - }) - s.Require().NoError(err) - }) - - t.Run("broadcast MsgSubmitTx (legacy)", func(t *testing.T) { - // assemble bank transfer message from host account to user account on host chain - msgSend := &banktypes.MsgSend{ - FromAddress: hostAccount, - ToAddress: chainBAccount.FormattedAddress(), - Amount: sdk.NewCoins(testvalues.DefaultTransferAmount(chainB.Config().Denom)), - } - - // assemble submitMessage tx for intertx - msgSubmitTx, err := intertxtypes.NewMsgSubmitTx( - msgSend, - ibctesting.FirstConnectionID, - controllerAccount.FormattedAddress(), - ) - s.Require().NoError(err) - - // broadcast submitMessage tx from controller account on chain A - // this message should trigger the sending of an ICA packet over channel-1 (channel created between controller and host) - // this ICA packet contains the assembled bank transfer message from above, which will be executed by the host account on the host chain. - resp := s.BroadcastMessages( - ctx, - chainA, - controllerAccount, - msgSubmitTx, - ) - - s.AssertTxSuccess(resp) - - s.Require().NoError(test.WaitForBlocks(ctx, 10, chainA, chainB)) - }) - - t.Run("verify tokens transferred", func(t *testing.T) { - balance, err := chainB.GetBalance(ctx, chainBAccount.FormattedAddress(), chainB.Config().Denom) - s.Require().NoError(err) - - _, err = chainB.GetBalance(ctx, hostAccount, chainB.Config().Denom) - s.Require().NoError(err) - - expected := testvalues.IBCTransferAmount + testvalues.StartingTokenAmount - s.Require().Equal(expected, balance) - }) - }) - - s.Require().NoError(test.WaitForBlocks(ctx, 5, chainA, chainB), "failed to wait for blocks") - - t.Run("upgrade chainA", func(t *testing.T) { - s.UpgradeChain(ctx, chainA, chainAUpgradeProposalWallet, testCfg.UpgradeConfig.PlanName, testCfg.ChainConfigs[0].Tag, testCfg.UpgradeConfig.Tag) - }) - - t.Run("restart relayer", func(t *testing.T) { - s.StopRelayer(ctx, relayer) - s.StartRelayer(relayer) - }) - - t.Run("broadcast MsgSubmitTx (legacy)", func(t *testing.T) { - // assemble bank transfer message from host account to user account on host chain - msgSend := &banktypes.MsgSend{ - FromAddress: hostAccount, - ToAddress: chainBAccount.FormattedAddress(), - Amount: sdk.NewCoins(testvalues.DefaultTransferAmount(chainB.Config().Denom)), - } - - // assemble submitMessage tx for intertx - msgSubmitTx, err := intertxtypes.NewMsgSubmitTx( - msgSend, - ibctesting.FirstConnectionID, - controllerAccount.FormattedAddress(), - ) - s.Require().NoError(err) - - // broadcast submitMessage tx from controller account on chain A - // this message should trigger the sending of an ICA packet over channel-1 (channel created between controller and host) - // this ICA packet contains the assembled bank transfer message from above, which will be executed by the host account on the host chain. - resp := s.BroadcastMessages( - ctx, - chainA, - controllerAccount, - msgSubmitTx, - ) - - s.AssertTxSuccess(resp) - - s.Require().NoError(test.WaitForBlocks(ctx, 10, chainA, chainB)) - }) - - t.Run("verify tokens transferred", func(t *testing.T) { - balance, err := chainB.GetBalance(ctx, chainBAccount.FormattedAddress(), chainB.Config().Denom) - s.Require().NoError(err) - - _, err = chainB.GetBalance(ctx, hostAccount, chainB.Config().Denom) - s.Require().NoError(err) - - expected := (testvalues.IBCTransferAmount * 2) + testvalues.StartingTokenAmount - s.Require().Equal(expected, balance) - }) - - t.Run("broadcast MsgSendTx (MsgServer)", func(t *testing.T) { - // assemble bank transfer message from host account to user account on host chain - msgSend := &banktypes.MsgSend{ - FromAddress: hostAccount, - ToAddress: chainBAccount.FormattedAddress(), - Amount: sdk.NewCoins(testvalues.DefaultTransferAmount(chainB.Config().Denom)), - } - - data, err := icatypes.SerializeCosmosTx(testsuite.Codec(), []proto.Message{msgSend}, icatypes.EncodingProtobuf) - s.Require().NoError(err) - - icaPacketData := icatypes.InterchainAccountPacketData{ - Type: icatypes.EXECUTE_TX, - Data: data, - } - - relativeTimeoutTimestamp := uint64(time.Hour.Nanoseconds()) - msgSendTx := controllertypes.NewMsgSendTx(controllerAccount.FormattedAddress(), ibctesting.FirstConnectionID, relativeTimeoutTimestamp, icaPacketData) - - // broadcast MsgSendTx tx from controller account on chain A - // this message should trigger the sending of an ICA packet over channel-1 (channel created between controller and host) - // this ICA packet contains the assembled bank transfer message from above, which will be executed by the host account on the host chain. - resp := s.BroadcastMessages( - ctx, - chainA, - controllerAccount, - msgSendTx, - ) - - s.AssertTxSuccess(resp) - - s.Require().NoError(test.WaitForBlocks(ctx, 10, chainA, chainB)) - }) - - t.Run("verify tokens transferred", func(t *testing.T) { - balance, err := chainB.GetBalance(ctx, chainBAccount.FormattedAddress(), chainB.Config().Denom) - s.Require().NoError(err) - - _, err = chainB.GetBalance(ctx, hostAccount, chainB.Config().Denom) - s.Require().NoError(err) - - expected := (testvalues.IBCTransferAmount * 3) + testvalues.StartingTokenAmount - s.Require().Equal(expected, balance) - }) -} +// func (s *UpgradeTestSuite) TestV5ToV6ChainUpgrade() { +// t := s.T() +// testCfg := testsuite.LoadConfig() + +// ctx := context.Background() +// relayer, _ := s.SetupChainsRelayerAndChannel(ctx) +// chainA, chainB := s.GetChains() + +// // create separate user specifically for the upgrade proposal to more easily verify starting +// // and end balances of the chainA users. +// chainAUpgradeProposalWallet := s.CreateUserOnChainA(ctx, testvalues.StartingTokenAmount) + +// s.Require().NoError(test.WaitForBlocks(ctx, 1, chainA, chainB), "failed to wait for blocks") + +// // setup 2 accounts: controller account on chain A, a second chain B account. +// // host account will be created when the ICA is registered +// controllerAccount := s.CreateUserOnChainA(ctx, testvalues.StartingTokenAmount) +// chainBAccount := s.CreateUserOnChainB(ctx, testvalues.StartingTokenAmount) +// var hostAccount string + +// t.Run("register interchain account", func(t *testing.T) { +// // explicitly set the version string because intertx with ibfc-go v5 does not support incentivized channels. +// version := icatypes.NewDefaultMetadataString(ibctesting.FirstConnectionID, ibctesting.FirstConnectionID) +// msgRegisterAccount := intertxtypes.NewMsgRegisterAccount(controllerAccount.FormattedAddress(), ibctesting.FirstConnectionID, version) +// s.RegisterInterchainAccount(ctx, chainA, controllerAccount, msgRegisterAccount) +// }) + +// t.Run("start relayer", func(t *testing.T) { +// s.StartRelayer(relayer) +// }) + +// t.Run("verify interchain account", func(t *testing.T) { +// var err error +// hostAccount, err = s.QueryInterchainAccount(ctx, chainA, controllerAccount.FormattedAddress(), ibctesting.FirstConnectionID) +// s.Require().NoError(err) +// s.Require().NotZero(len(hostAccount)) + +// channels, err := relayer.GetChannels(ctx, s.GetRelayerExecReporter(), chainA.Config().ChainID) +// s.Require().NoError(err) +// s.Require().Equal(len(channels), 2) +// }) + +// t.Run("interchain account executes a bank transfer on behalf of the corresponding owner account", func(t *testing.T) { +// t.Run("fund interchain account wallet", func(t *testing.T) { +// // fund the host account, so it has some $$ to send +// err := chainB.SendFunds(ctx, interchaintest.FaucetAccountKeyName, ibc.WalletAmount{ +// Address: hostAccount, +// Amount: sdkmath.NewInt(testvalues.StartingTokenAmount), +// Denom: chainB.Config().Denom, +// }) +// s.Require().NoError(err) +// }) + +// t.Run("broadcast MsgSubmitTx (legacy)", func(t *testing.T) { +// // assemble bank transfer message from host account to user account on host chain +// msgSend := &banktypes.MsgSend{ +// FromAddress: hostAccount, +// ToAddress: chainBAccount.FormattedAddress(), +// Amount: sdk.NewCoins(testvalues.DefaultTransferAmount(chainB.Config().Denom)), +// } + +// // assemble submitMessage tx for intertx +// msgSubmitTx, err := intertxtypes.NewMsgSubmitTx( +// msgSend, +// ibctesting.FirstConnectionID, +// controllerAccount.FormattedAddress(), +// ) +// s.Require().NoError(err) + +// // broadcast submitMessage tx from controller account on chain A +// // this message should trigger the sending of an ICA packet over channel-1 (channel created between controller and host) +// // this ICA packet contains the assembled bank transfer message from above, which will be executed by the host account on the host chain. +// resp := s.BroadcastMessages( +// ctx, +// chainA, +// controllerAccount, +// msgSubmitTx, +// ) + +// s.AssertTxSuccess(resp) + +// s.Require().NoError(test.WaitForBlocks(ctx, 10, chainA, chainB)) +// }) + +// t.Run("verify tokens transferred", func(t *testing.T) { +// balance, err := chainB.GetBalance(ctx, chainBAccount.FormattedAddress(), chainB.Config().Denom) +// s.Require().NoError(err) + +// _, err = chainB.GetBalance(ctx, hostAccount, chainB.Config().Denom) +// s.Require().NoError(err) + +// expected := testvalues.IBCTransferAmount + testvalues.StartingTokenAmount +// s.Require().Equal(expected, balance) +// }) +// }) + +// s.Require().NoError(test.WaitForBlocks(ctx, 5, chainA, chainB), "failed to wait for blocks") + +// t.Run("upgrade chainA", func(t *testing.T) { +// s.UpgradeChain(ctx, chainA, chainAUpgradeProposalWallet, testCfg.UpgradeConfig.PlanName, testCfg.ChainConfigs[0].Tag, testCfg.UpgradeConfig.Tag) +// }) + +// t.Run("restart relayer", func(t *testing.T) { +// s.StopRelayer(ctx, relayer) +// s.StartRelayer(relayer) +// }) + +// t.Run("broadcast MsgSubmitTx (legacy)", func(t *testing.T) { +// // assemble bank transfer message from host account to user account on host chain +// msgSend := &banktypes.MsgSend{ +// FromAddress: hostAccount, +// ToAddress: chainBAccount.FormattedAddress(), +// Amount: sdk.NewCoins(testvalues.DefaultTransferAmount(chainB.Config().Denom)), +// } + +// // assemble submitMessage tx for intertx +// msgSubmitTx, err := intertxtypes.NewMsgSubmitTx( +// msgSend, +// ibctesting.FirstConnectionID, +// controllerAccount.FormattedAddress(), +// ) +// s.Require().NoError(err) + +// // broadcast submitMessage tx from controller account on chain A +// // this message should trigger the sending of an ICA packet over channel-1 (channel created between controller and host) +// // this ICA packet contains the assembled bank transfer message from above, which will be executed by the host account on the host chain. +// resp := s.BroadcastMessages( +// ctx, +// chainA, +// controllerAccount, +// msgSubmitTx, +// ) + +// s.AssertTxSuccess(resp) + +// s.Require().NoError(test.WaitForBlocks(ctx, 10, chainA, chainB)) +// }) + +// t.Run("verify tokens transferred", func(t *testing.T) { +// balance, err := chainB.GetBalance(ctx, chainBAccount.FormattedAddress(), chainB.Config().Denom) +// s.Require().NoError(err) + +// _, err = chainB.GetBalance(ctx, hostAccount, chainB.Config().Denom) +// s.Require().NoError(err) + +// expected := (testvalues.IBCTransferAmount * 2) + testvalues.StartingTokenAmount +// s.Require().Equal(expected, balance) +// }) + +// t.Run("broadcast MsgSendTx (MsgServer)", func(t *testing.T) { +// // assemble bank transfer message from host account to user account on host chain +// msgSend := &banktypes.MsgSend{ +// FromAddress: hostAccount, +// ToAddress: chainBAccount.FormattedAddress(), +// Amount: sdk.NewCoins(testvalues.DefaultTransferAmount(chainB.Config().Denom)), +// } + +// data, err := icatypes.SerializeCosmosTx(testsuite.Codec(), []proto.Message{msgSend}, icatypes.EncodingProtobuf) +// s.Require().NoError(err) + +// icaPacketData := icatypes.InterchainAccountPacketData{ +// Type: icatypes.EXECUTE_TX, +// Data: data, +// } + +// relativeTimeoutTimestamp := uint64(time.Hour.Nanoseconds()) +// msgSendTx := controllertypes.NewMsgSendTx(controllerAccount.FormattedAddress(), ibctesting.FirstConnectionID, relativeTimeoutTimestamp, icaPacketData) + +// // broadcast MsgSendTx tx from controller account on chain A +// // this message should trigger the sending of an ICA packet over channel-1 (channel created between controller and host) +// // this ICA packet contains the assembled bank transfer message from above, which will be executed by the host account on the host chain. +// resp := s.BroadcastMessages( +// ctx, +// chainA, +// controllerAccount, +// msgSendTx, +// ) + +// s.AssertTxSuccess(resp) + +// s.Require().NoError(test.WaitForBlocks(ctx, 10, chainA, chainB)) +// }) + +// t.Run("verify tokens transferred", func(t *testing.T) { +// balance, err := chainB.GetBalance(ctx, chainBAccount.FormattedAddress(), chainB.Config().Denom) +// s.Require().NoError(err) + +// _, err = chainB.GetBalance(ctx, hostAccount, chainB.Config().Denom) +// s.Require().NoError(err) + +// expected := (testvalues.IBCTransferAmount * 3) + testvalues.StartingTokenAmount +// s.Require().Equal(expected, balance) +// }) +// } // TestV6ToV7ChainUpgrade will test that an upgrade from a v6 ibc-go binary to a v7 ibc-go binary is successful // and that the automatic migrations associated with the 02-client module are performed. Namely that the solo machine @@ -674,10 +671,10 @@ func (s *UpgradeTestSuite) TestV7ToV7_1ChainUpgrade() { } // RegisterInterchainAccount will attempt to register an interchain account on the counterparty chain. -func (s *UpgradeTestSuite) RegisterInterchainAccount(ctx context.Context, chain *cosmos.CosmosChain, user ibc.Wallet, msgRegisterAccount *intertxtypes.MsgRegisterAccount) { - txResp := s.BroadcastMessages(ctx, chain, user, msgRegisterAccount) - s.AssertTxSuccess(txResp) -} +// func (s *UpgradeTestSuite) RegisterInterchainAccount(ctx context.Context, chain *cosmos.CosmosChain, user ibc.Wallet, msgRegisterAccount *intertxtypes.MsgRegisterAccount) { +// txResp := s.BroadcastMessages(ctx, chain, user, msgRegisterAccount) +// s.AssertTxSuccess(txResp) +// } // ClientState queries the current ClientState by clientID func (s *UpgradeTestSuite) ClientState(ctx context.Context, chain ibc.Chain, clientID string) (*clienttypes.QueryClientStateResponse, error) { diff --git a/e2e/testsuite/codec.go b/e2e/testsuite/codec.go index 526198d2ae5..490434d0bcb 100644 --- a/e2e/testsuite/codec.go +++ b/e2e/testsuite/codec.go @@ -4,7 +4,7 @@ import ( "encoding/hex" "fmt" - intertxtypes "github.com/cosmos/interchain-accounts/x/inter-tx/types" + // intertxtypes "github.com/cosmos/interchain-accounts/x/inter-tx/types" upgradetypes "cosmossdk.io/x/upgrade/types" @@ -20,18 +20,18 @@ import ( grouptypes "github.com/cosmos/cosmos-sdk/x/group" proposaltypes "github.com/cosmos/cosmos-sdk/x/params/types/proposal" - icacontrollertypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - icahosttypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" - feetypes "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" - transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - v7migrations "github.com/cosmos/ibc-go/v7/modules/core/02-client/migrations/v7" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - solomachine "github.com/cosmos/ibc-go/v7/modules/light-clients/06-solomachine" - ibctmtypes "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - localhost "github.com/cosmos/ibc-go/v7/modules/light-clients/09-localhost" - simappparams "github.com/cosmos/ibc-go/v7/testing/simapp/params" + icacontrollertypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + icahosttypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" + feetypes "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + transfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + v7migrations "github.com/cosmos/ibc-go/v8/modules/core/02-client/migrations/v7" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + solomachine "github.com/cosmos/ibc-go/v8/modules/light-clients/06-solomachine" + ibctmtypes "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + localhost "github.com/cosmos/ibc-go/v8/modules/light-clients/09-localhost" + simappparams "github.com/cosmos/ibc-go/v8/testing/simapp/params" ) // Codec returns the global E2E protobuf codec. @@ -64,7 +64,7 @@ func codecAndEncodingConfig() (*codec.ProtoCodec, simappparams.EncodingConfig) { icacontrollertypes.RegisterInterfaces(cfg.InterfaceRegistry) icahosttypes.RegisterInterfaces(cfg.InterfaceRegistry) feetypes.RegisterInterfaces(cfg.InterfaceRegistry) - intertxtypes.RegisterInterfaces(cfg.InterfaceRegistry) + // intertxtypes.RegisterInterfaces(cfg.InterfaceRegistry) solomachine.RegisterInterfaces(cfg.InterfaceRegistry) v7migrations.RegisterInterfaces(cfg.InterfaceRegistry) transfertypes.RegisterInterfaces(cfg.InterfaceRegistry) diff --git a/e2e/testsuite/grpc_query.go b/e2e/testsuite/grpc_query.go index 03155feb408..6353154831f 100644 --- a/e2e/testsuite/grpc_query.go +++ b/e2e/testsuite/grpc_query.go @@ -6,9 +6,9 @@ import ( "sort" "time" - intertxtypes "github.com/cosmos/interchain-accounts/x/inter-tx/types" - "github.com/strangelove-ventures/interchaintest/v7/chain/cosmos" - "github.com/strangelove-ventures/interchaintest/v7/ibc" + // intertxtypes "github.com/cosmos/interchain-accounts/x/inter-tx/types" + "github.com/strangelove-ventures/interchaintest/v8/chain/cosmos" + "github.com/strangelove-ventures/interchaintest/v8/ibc" "google.golang.org/grpc" "google.golang.org/grpc/credentials/insecure" @@ -21,14 +21,14 @@ import ( grouptypes "github.com/cosmos/cosmos-sdk/x/group" paramsproposaltypes "github.com/cosmos/cosmos-sdk/x/params/types/proposal" - controllertypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - hosttypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" - feetypes "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" - transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" + controllertypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + hosttypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" + feetypes "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + transfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // GRPCClients holds a reference to any GRPC clients that are needed by the tests. @@ -42,7 +42,7 @@ type GRPCClients struct { FeeQueryClient feetypes.QueryClient ICAControllerQueryClient controllertypes.QueryClient ICAHostQueryClient hosttypes.QueryClient - InterTxQueryClient intertxtypes.QueryClient + // InterTxQueryClient intertxtypes.QueryClient // SDK query clients GovQueryClient govtypesv1beta1.QueryClient @@ -82,14 +82,14 @@ func (s *E2ETestSuite) InitGRPCClients(chain *cosmos.CosmosChain) { FeeQueryClient: feetypes.NewQueryClient(grpcConn), ICAControllerQueryClient: controllertypes.NewQueryClient(grpcConn), ICAHostQueryClient: hosttypes.NewQueryClient(grpcConn), - InterTxQueryClient: intertxtypes.NewQueryClient(grpcConn), - GovQueryClient: govtypesv1beta1.NewQueryClient(grpcConn), - GovQueryClientV1: govtypesv1.NewQueryClient(grpcConn), - GroupsQueryClient: grouptypes.NewQueryClient(grpcConn), - ParamsQueryClient: paramsproposaltypes.NewQueryClient(grpcConn), - AuthQueryClient: authtypes.NewQueryClient(grpcConn), - AuthZQueryClient: authz.NewQueryClient(grpcConn), - ConsensusServiceClient: cmtservice.NewServiceClient(grpcConn), + // InterTxQueryClient: intertxtypes.NewQueryClient(grpcConn), + GovQueryClient: govtypesv1beta1.NewQueryClient(grpcConn), + GovQueryClientV1: govtypesv1.NewQueryClient(grpcConn), + GroupsQueryClient: grouptypes.NewQueryClient(grpcConn), + ParamsQueryClient: paramsproposaltypes.NewQueryClient(grpcConn), + AuthQueryClient: authtypes.NewQueryClient(grpcConn), + AuthZQueryClient: authz.NewQueryClient(grpcConn), + ConsensusServiceClient: cmtservice.NewServiceClient(grpcConn), } } @@ -200,18 +200,18 @@ func (s *E2ETestSuite) QueryInterchainAccount(ctx context.Context, chain ibc.Cha } // QueryInterchainAccountLegacy queries the interchain account for the given owner and connectionID using the intertx module. -func (s *E2ETestSuite) QueryInterchainAccountLegacy(ctx context.Context, chain ibc.Chain, owner, connectionID string) (string, error) { - queryClient := s.GetChainGRCPClients(chain).InterTxQueryClient - res, err := queryClient.InterchainAccount(ctx, &intertxtypes.QueryInterchainAccountRequest{ - Owner: owner, - ConnectionId: connectionID, - }) - if err != nil { - return "", err - } - - return res.InterchainAccountAddress, nil -} +// func (s *E2ETestSuite) QueryInterchainAccountLegacy(ctx context.Context, chain ibc.Chain, owner, connectionID string) (string, error) { +// queryClient := s.GetChainGRCPClients(chain).InterTxQueryClient +// res, err := queryClient.InterchainAccount(ctx, &intertxtypes.QueryInterchainAccountRequest{ +// Owner: owner, +// ConnectionId: connectionID, +// }) +// if err != nil { +// return "", err +// } + +// return res.InterchainAccountAddress, nil +// } // QueryIncentivizedPacketsForChannel queries the incentivized packets on the specified channel. func (s *E2ETestSuite) QueryIncentivizedPacketsForChannel( diff --git a/e2e/testsuite/testconfig.go b/e2e/testsuite/testconfig.go index b60328d65a9..7b4155e1ca3 100644 --- a/e2e/testsuite/testconfig.go +++ b/e2e/testsuite/testconfig.go @@ -7,8 +7,8 @@ import ( "path" "strings" - "github.com/strangelove-ventures/interchaintest/v7/ibc" - interchaintestutil "github.com/strangelove-ventures/interchaintest/v7/testutil" + "github.com/strangelove-ventures/interchaintest/v8/ibc" + interchaintestutil "github.com/strangelove-ventures/interchaintest/v8/testutil" "gopkg.in/yaml.v2" "github.com/cosmos/cosmos-sdk/codec" diff --git a/e2e/testsuite/testsuite.go b/e2e/testsuite/testsuite.go index b158d002977..19a809e9f32 100644 --- a/e2e/testsuite/testsuite.go +++ b/e2e/testsuite/testsuite.go @@ -6,19 +6,19 @@ import ( "strings" dockerclient "github.com/docker/docker/client" - interchaintest "github.com/strangelove-ventures/interchaintest/v7" - "github.com/strangelove-ventures/interchaintest/v7/chain/cosmos" - "github.com/strangelove-ventures/interchaintest/v7/ibc" - "github.com/strangelove-ventures/interchaintest/v7/testreporter" - test "github.com/strangelove-ventures/interchaintest/v7/testutil" + interchaintest "github.com/strangelove-ventures/interchaintest/v8" + "github.com/strangelove-ventures/interchaintest/v8/chain/cosmos" + "github.com/strangelove-ventures/interchaintest/v8/ibc" + "github.com/strangelove-ventures/interchaintest/v8/testreporter" + test "github.com/strangelove-ventures/interchaintest/v8/testutil" testifysuite "github.com/stretchr/testify/suite" "go.uber.org/zap" "go.uber.org/zap/zaptest" "github.com/cosmos/ibc-go/e2e/relayer" "github.com/cosmos/ibc-go/e2e/testsuite/diagnostics" - transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + transfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" ) const ( diff --git a/e2e/testsuite/tx.go b/e2e/testsuite/tx.go index ef53c62f525..4e717b241c3 100644 --- a/e2e/testsuite/tx.go +++ b/e2e/testsuite/tx.go @@ -7,9 +7,9 @@ import ( "strings" "time" - "github.com/strangelove-ventures/interchaintest/v7/chain/cosmos" - "github.com/strangelove-ventures/interchaintest/v7/ibc" - test "github.com/strangelove-ventures/interchaintest/v7/testutil" + "github.com/strangelove-ventures/interchaintest/v8/chain/cosmos" + "github.com/strangelove-ventures/interchaintest/v8/ibc" + test "github.com/strangelove-ventures/interchaintest/v8/testutil" errorsmod "cosmossdk.io/errors" @@ -23,10 +23,10 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite/sanitize" "github.com/cosmos/ibc-go/e2e/testvalues" - feetypes "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" - transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + feetypes "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + transfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" ) // BroadcastMessages broadcasts the provided messages to the given chain and signs them on behalf of the provided user. diff --git a/e2e/testvalues/values.go b/e2e/testvalues/values.go index 24913b0c8b0..8122828015c 100644 --- a/e2e/testvalues/values.go +++ b/e2e/testvalues/values.go @@ -4,14 +4,14 @@ import ( "fmt" "time" - "github.com/strangelove-ventures/interchaintest/v7/ibc" + "github.com/strangelove-ventures/interchaintest/v8/ibc" sdkmath "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/ibc-go/e2e/semverutil" - feetypes "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" + feetypes "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" ) const ( diff --git a/go.mod b/go.mod index 1524eb92a5c..28818082cd0 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ go 1.21 -module github.com/cosmos/ibc-go/v7 +module github.com/cosmos/ibc-go/v8 require ( cosmossdk.io/api v0.7.0 diff --git a/internal/collections/collections_test.go b/internal/collections/collections_test.go index 9fb3664c372..184de69d84e 100644 --- a/internal/collections/collections_test.go +++ b/internal/collections/collections_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/v7/internal/collections" + "github.com/cosmos/ibc-go/v8/internal/collections" ) func TestContainsString(t *testing.T) { diff --git a/modules/apps/27-interchain-accounts/client/cli/cli.go b/modules/apps/27-interchain-accounts/client/cli/cli.go index e36c3c8bd80..003b5311839 100644 --- a/modules/apps/27-interchain-accounts/client/cli/cli.go +++ b/modules/apps/27-interchain-accounts/client/cli/cli.go @@ -3,8 +3,8 @@ package cli import ( "github.com/spf13/cobra" - controllercli "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/client/cli" - hostcli "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/client/cli" + controllercli "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/client/cli" + hostcli "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/client/cli" ) // GetQueryCmd returns the query commands for the interchain-accounts submodule diff --git a/modules/apps/27-interchain-accounts/controller/client/cli/query.go b/modules/apps/27-interchain-accounts/controller/client/cli/query.go index 4a18fcd05fa..6b751c78ea8 100644 --- a/modules/apps/27-interchain-accounts/controller/client/cli/query.go +++ b/modules/apps/27-interchain-accounts/controller/client/cli/query.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/version" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" ) // GetCmdQueryInterchainAccount returns the command handler for the controller submodule parameter querying. diff --git a/modules/apps/27-interchain-accounts/controller/client/cli/tx.go b/modules/apps/27-interchain-accounts/controller/client/cli/tx.go index fe287dee6ec..39f46d22533 100644 --- a/modules/apps/27-interchain-accounts/controller/client/cli/tx.go +++ b/modules/apps/27-interchain-accounts/controller/client/cli/tx.go @@ -12,8 +12,8 @@ import ( "github.com/cosmos/cosmos-sdk/client/tx" "github.com/cosmos/cosmos-sdk/codec" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" ) const ( diff --git a/modules/apps/27-interchain-accounts/controller/ibc_middleware.go b/modules/apps/27-interchain-accounts/controller/ibc_middleware.go index 5bfc6ca16c9..bf6f047bbef 100644 --- a/modules/apps/27-interchain-accounts/controller/ibc_middleware.go +++ b/modules/apps/27-interchain-accounts/controller/ibc_middleware.go @@ -6,15 +6,15 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/keeper" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/keeper" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v8/modules/core/05-port/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" ) var ( diff --git a/modules/apps/27-interchain-accounts/controller/ibc_middleware_test.go b/modules/apps/27-interchain-accounts/controller/ibc_middleware_test.go index f7478786046..44529049826 100644 --- a/modules/apps/27-interchain-accounts/controller/ibc_middleware_test.go +++ b/modules/apps/27-interchain-accounts/controller/ibc_middleware_test.go @@ -9,15 +9,15 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller" - controllerkeeper "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/keeper" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller" + controllerkeeper "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/keeper" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v8/modules/core/05-port/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) var ( diff --git a/modules/apps/27-interchain-accounts/controller/keeper/account.go b/modules/apps/27-interchain-accounts/controller/keeper/account.go index 9ce0f5211a6..ae52a975e58 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/account.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/account.go @@ -6,11 +6,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/cosmos/ibc-go/v7/internal/logging" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" + "github.com/cosmos/ibc-go/v8/internal/logging" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" ) // RegisterInterchainAccount is the entry point to registering an interchain account: diff --git a/modules/apps/27-interchain-accounts/controller/keeper/account_test.go b/modules/apps/27-interchain-accounts/controller/keeper/account_test.go index 5498b3c593a..6f529c6eea8 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/account_test.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/account_test.go @@ -1,10 +1,10 @@ package keeper_test import ( - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (suite *KeeperTestSuite) TestRegisterInterchainAccount() { diff --git a/modules/apps/27-interchain-accounts/controller/keeper/events.go b/modules/apps/27-interchain-accounts/controller/keeper/events.go index d712409785a..afcc8b5598a 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/events.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/events.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // EmitAcknowledgementEvent emits an event signalling a successful or failed acknowledgement and including the error diff --git a/modules/apps/27-interchain-accounts/controller/keeper/export_test.go b/modules/apps/27-interchain-accounts/controller/keeper/export_test.go index 3600380f0a8..382dde7a805 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/export_test.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/export_test.go @@ -4,7 +4,7 @@ package keeper This file is to allow for unexported functions and fields to be accessible to the testing package. */ -import porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" +import porttypes "github.com/cosmos/ibc-go/v8/modules/core/05-port/types" // GetICS4Wrapper is a getter for the keeper's ICS4Wrapper. func (k *Keeper) GetICS4Wrapper() porttypes.ICS4Wrapper { diff --git a/modules/apps/27-interchain-accounts/controller/keeper/genesis.go b/modules/apps/27-interchain-accounts/controller/keeper/genesis.go index 1f35f4c0b7d..f41155e8ca6 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/genesis.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/genesis.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - genesistypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/genesis/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" + genesistypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/genesis/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" ) // InitGenesis initializes the interchain accounts controller application state from a provided genesis state diff --git a/modules/apps/27-interchain-accounts/controller/keeper/genesis_test.go b/modules/apps/27-interchain-accounts/controller/keeper/genesis_test.go index a44ea5dc3d9..c6670745765 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/genesis_test.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/genesis_test.go @@ -1,11 +1,11 @@ package keeper_test import ( - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/keeper" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - genesistypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/genesis/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/keeper" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + genesistypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/genesis/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (suite *KeeperTestSuite) TestInitGenesis() { diff --git a/modules/apps/27-interchain-accounts/controller/keeper/grpc_query.go b/modules/apps/27-interchain-accounts/controller/keeper/grpc_query.go index 2b983546c61..51c4b83a34f 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/grpc_query.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/grpc_query.go @@ -8,8 +8,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" ) var _ types.QueryServer = (*Keeper)(nil) diff --git a/modules/apps/27-interchain-accounts/controller/keeper/grpc_query_test.go b/modules/apps/27-interchain-accounts/controller/keeper/grpc_query_test.go index 7c9255d5301..e11cae837c7 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/grpc_query_test.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/grpc_query_test.go @@ -1,8 +1,8 @@ package keeper_test import ( - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (suite *KeeperTestSuite) TestQueryInterchainAccount() { diff --git a/modules/apps/27-interchain-accounts/controller/keeper/handshake.go b/modules/apps/27-interchain-accounts/controller/keeper/handshake.go index 3fff058df99..ea87c19bf40 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/handshake.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/handshake.go @@ -9,8 +9,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" ) // OnChanOpenInit performs basic validation of channel initialization. diff --git a/modules/apps/27-interchain-accounts/controller/keeper/handshake_test.go b/modules/apps/27-interchain-accounts/controller/keeper/handshake_test.go index 1f3929154f7..0b849c06fe9 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/handshake_test.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/handshake_test.go @@ -2,10 +2,10 @@ package keeper_test import ( capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (suite *KeeperTestSuite) TestOnChanOpenInit() { diff --git a/modules/apps/27-interchain-accounts/controller/keeper/keeper.go b/modules/apps/27-interchain-accounts/controller/keeper/keeper.go index d329ccf50db..88d93cf6af7 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/keeper.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/keeper.go @@ -14,13 +14,13 @@ import ( paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - genesistypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/genesis/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + genesistypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/genesis/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v8/modules/core/05-port/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // Keeper defines the IBC interchain accounts controller keeper diff --git a/modules/apps/27-interchain-accounts/controller/keeper/keeper_test.go b/modules/apps/27-interchain-accounts/controller/keeper/keeper_test.go index b46ba39e2f2..22e01d1a697 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/keeper_test.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/keeper_test.go @@ -8,12 +8,12 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - genesistypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/genesis/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - channelkeeper "github.com/cosmos/ibc-go/v7/modules/core/04-channel/keeper" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + genesistypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/genesis/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + channelkeeper "github.com/cosmos/ibc-go/v8/modules/core/04-channel/keeper" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) var ( diff --git a/modules/apps/27-interchain-accounts/controller/keeper/migrations.go b/modules/apps/27-interchain-accounts/controller/keeper/migrations.go index 896bd3575cb..705d93cb4b4 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/migrations.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/migrations.go @@ -8,9 +8,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - controllertypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" + controllertypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" ) // Migrator is a struct for handling in-place store migrations. diff --git a/modules/apps/27-interchain-accounts/controller/keeper/migrations_test.go b/modules/apps/27-interchain-accounts/controller/keeper/migrations_test.go index ecbdad2b34d..a966f17cad0 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/migrations_test.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/migrations_test.go @@ -3,11 +3,11 @@ package keeper_test import ( "fmt" - icacontrollerkeeper "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/keeper" - icacontrollertypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + icacontrollerkeeper "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/keeper" + icacontrollertypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (suite *KeeperTestSuite) TestAssertChannelCapabilityMigrations() { diff --git a/modules/apps/27-interchain-accounts/controller/keeper/msg_server.go b/modules/apps/27-interchain-accounts/controller/keeper/msg_server.go index 30608f8355a..86355cac4f9 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/msg_server.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/msg_server.go @@ -7,9 +7,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" ) var _ types.MsgServer = (*msgServer)(nil) diff --git a/modules/apps/27-interchain-accounts/controller/keeper/msg_server_test.go b/modules/apps/27-interchain-accounts/controller/keeper/msg_server_test.go index 3d0d7d84c42..dfc8c4a3dbc 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/msg_server_test.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/msg_server_test.go @@ -10,12 +10,12 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/keeper" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/keeper" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (suite *KeeperTestSuite) TestRegisterInterchainAccount_MsgServer() { diff --git a/modules/apps/27-interchain-accounts/controller/keeper/relay.go b/modules/apps/27-interchain-accounts/controller/keeper/relay.go index 651af21966d..54fce59e4fe 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/relay.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/relay.go @@ -6,10 +6,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" ) // SendTx takes pre-built packet data containing messages to be executed on the host chain from an authentication module and attempts to send the packet. diff --git a/modules/apps/27-interchain-accounts/controller/keeper/relay_test.go b/modules/apps/27-interchain-accounts/controller/keeper/relay_test.go index 856cda7fdfe..53515409bbe 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/relay_test.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/relay_test.go @@ -8,10 +8,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (suite *KeeperTestSuite) TestSendTx() { diff --git a/modules/apps/27-interchain-accounts/controller/migrations/v6/migrations.go b/modules/apps/27-interchain-accounts/controller/migrations/v6/migrations.go index 3bddce0d07c..793bb2adbda 100644 --- a/modules/apps/27-interchain-accounts/controller/migrations/v6/migrations.go +++ b/modules/apps/27-interchain-accounts/controller/migrations/v6/migrations.go @@ -9,8 +9,8 @@ import ( capabilitykeeper "github.com/cosmos/ibc-go/modules/capability/keeper" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - controllertypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" + controllertypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // MigrateICS27ChannelCapability performs a search on a prefix store using the provided store key and module name. diff --git a/modules/apps/27-interchain-accounts/controller/migrations/v6/migrations_test.go b/modules/apps/27-interchain-accounts/controller/migrations/v6/migrations_test.go index 5c6ce64e154..cb63db4ecd4 100644 --- a/modules/apps/27-interchain-accounts/controller/migrations/v6/migrations_test.go +++ b/modules/apps/27-interchain-accounts/controller/migrations/v6/migrations_test.go @@ -8,13 +8,13 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - v6 "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/migrations/v6" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - ibctesting "github.com/cosmos/ibc-go/v7/testing" - ibcmock "github.com/cosmos/ibc-go/v7/testing/mock" + v6 "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/migrations/v6" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + ibctesting "github.com/cosmos/ibc-go/v8/testing" + ibcmock "github.com/cosmos/ibc-go/v8/testing/mock" ) type MigrationsTestSuite struct { diff --git a/modules/apps/27-interchain-accounts/controller/types/controller.pb.go b/modules/apps/27-interchain-accounts/controller/types/controller.pb.go index addbb2ec125..94df640fc46 100644 --- a/modules/apps/27-interchain-accounts/controller/types/controller.pb.go +++ b/modules/apps/27-interchain-accounts/controller/types/controller.pb.go @@ -80,19 +80,19 @@ func init() { var fileDescriptor_177fd0fec5eb3400 = []byte{ // 220 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x8f, 0xb1, 0x4e, 0xc3, 0x30, - 0x10, 0x86, 0xe3, 0xa5, 0x42, 0xd9, 0xc8, 0xc4, 0x64, 0x21, 0x26, 0x96, 0xf8, 0xd4, 0x32, 0x64, - 0x07, 0xb1, 0x57, 0x8c, 0x2c, 0x95, 0x7d, 0xb5, 0xda, 0x43, 0x8e, 0x2f, 0xf2, 0x39, 0x91, 0x78, - 0x0b, 0x1e, 0x8b, 0xb1, 0x23, 0x23, 0x4a, 0x5e, 0x04, 0x01, 0x43, 0x32, 0x64, 0x3c, 0x7d, 0xba, - 0x4f, 0xff, 0x57, 0x3e, 0x91, 0x43, 0xb0, 0x5d, 0x17, 0x08, 0x6d, 0x26, 0x8e, 0x02, 0x14, 0xb3, - 0x4f, 0x78, 0xb6, 0x14, 0x0f, 0x16, 0x91, 0xfb, 0x98, 0x05, 0x90, 0x63, 0x4e, 0x1c, 0x82, 0x4f, - 0x30, 0x6c, 0x17, 0x97, 0xe9, 0x12, 0x67, 0xae, 0x76, 0xe4, 0xd0, 0x2c, 0x25, 0x66, 0x45, 0x62, - 0x16, 0x6f, 0xc3, 0xf6, 0xae, 0x29, 0x37, 0x7b, 0x9b, 0x6c, 0x2b, 0x55, 0x5d, 0x56, 0x33, 0x3a, - 0xf8, 0x68, 0x5d, 0xf0, 0xc7, 0x1b, 0x75, 0xab, 0xee, 0xaf, 0x5e, 0xae, 0x67, 0xf2, 0xfc, 0x0f, - 0x1e, 0xdf, 0x3e, 0x47, 0xad, 0x2e, 0xa3, 0x56, 0xdf, 0xa3, 0x56, 0x1f, 0x93, 0x2e, 0x2e, 0x93, - 0x2e, 0xbe, 0x26, 0x5d, 0xbc, 0xee, 0x4f, 0x94, 0xcf, 0xbd, 0x33, 0xc8, 0x2d, 0x20, 0x4b, 0xcb, - 0x02, 0xe4, 0xb0, 0x3e, 0x31, 0x0c, 0x0d, 0xb4, 0x7c, 0xec, 0x83, 0x97, 0xdf, 0x56, 0x81, 0x5d, - 0x53, 0xcf, 0x0b, 0xeb, 0xb5, 0xcc, 0xfc, 0xde, 0x79, 0x71, 0x9b, 0xbf, 0xbe, 0x87, 0x9f, 0x00, - 0x00, 0x00, 0xff, 0xff, 0xe8, 0xe6, 0x80, 0x41, 0x26, 0x01, 0x00, 0x00, + 0x10, 0x86, 0xe3, 0xa5, 0x42, 0xd9, 0xc8, 0xc4, 0x64, 0x21, 0x26, 0x96, 0xf8, 0xd4, 0x32, 0x94, + 0x19, 0xc4, 0x5e, 0x31, 0xb2, 0x54, 0xf6, 0xd5, 0x6a, 0x0f, 0x39, 0xbe, 0xc8, 0xe7, 0x44, 0xe2, + 0x2d, 0x78, 0x2c, 0xc6, 0x8e, 0x8c, 0x28, 0x79, 0x11, 0x04, 0x1d, 0x92, 0x21, 0xe3, 0xe9, 0xd3, + 0x7d, 0xfa, 0xbf, 0xf2, 0x99, 0x1c, 0x82, 0x6d, 0xdb, 0x40, 0x68, 0x33, 0x71, 0x14, 0xa0, 0x98, + 0x7d, 0xc2, 0x93, 0xa5, 0xb8, 0xb7, 0x88, 0xdc, 0xc5, 0x2c, 0x80, 0x1c, 0x73, 0xe2, 0x10, 0x7c, + 0x82, 0x7e, 0x3d, 0xbb, 0x4c, 0x9b, 0x38, 0x73, 0xb5, 0x21, 0x87, 0x66, 0x2e, 0x31, 0x0b, 0x12, + 0x33, 0x7b, 0xeb, 0xd7, 0x77, 0xdb, 0x72, 0xb5, 0xb3, 0xc9, 0x36, 0x52, 0xd5, 0x65, 0x35, 0xa1, + 0xbd, 0x8f, 0xd6, 0x05, 0x7f, 0xb8, 0x51, 0xb7, 0xea, 0xfe, 0xea, 0xf5, 0x7a, 0x22, 0x2f, 0x17, + 0xf0, 0xf4, 0xfe, 0x35, 0x68, 0x75, 0x1e, 0xb4, 0xfa, 0x19, 0xb4, 0xfa, 0x1c, 0x75, 0x71, 0x1e, + 0x75, 0xf1, 0x3d, 0xea, 0xe2, 0x6d, 0x77, 0xa4, 0x7c, 0xea, 0x9c, 0x41, 0x6e, 0x00, 0x59, 0x1a, + 0x16, 0x20, 0x87, 0xf5, 0x91, 0xa1, 0x7f, 0x84, 0x86, 0x0f, 0x5d, 0xf0, 0xf2, 0xd7, 0x2a, 0xb0, + 0xd9, 0xd6, 0xd3, 0xc2, 0x7a, 0x29, 0x33, 0x7f, 0xb4, 0x5e, 0xdc, 0xea, 0xbf, 0xef, 0xe1, 0x37, + 0x00, 0x00, 0xff, 0xff, 0x7d, 0x5b, 0xa9, 0x45, 0x26, 0x01, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/modules/apps/27-interchain-accounts/controller/types/msgs.go b/modules/apps/27-interchain-accounts/controller/types/msgs.go index cfd397b9c1a..254173b8431 100644 --- a/modules/apps/27-interchain-accounts/controller/types/msgs.go +++ b/modules/apps/27-interchain-accounts/controller/types/msgs.go @@ -7,9 +7,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" ) var ( diff --git a/modules/apps/27-interchain-accounts/controller/types/msgs_test.go b/modules/apps/27-interchain-accounts/controller/types/msgs_test.go index 2d81763f870..37ca92b9b96 100644 --- a/modules/apps/27-interchain-accounts/controller/types/msgs_test.go +++ b/modules/apps/27-interchain-accounts/controller/types/msgs_test.go @@ -10,11 +10,11 @@ import ( moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - ica "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - feetypes "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + ica "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + feetypes "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func TestMsgRegisterInterchainAccountValidateBasic(t *testing.T) { diff --git a/modules/apps/27-interchain-accounts/controller/types/query.pb.go b/modules/apps/27-interchain-accounts/controller/types/query.pb.go index 3b4863f19d5..f36978215fb 100644 --- a/modules/apps/27-interchain-accounts/controller/types/query.pb.go +++ b/modules/apps/27-interchain-accounts/controller/types/query.pb.go @@ -224,32 +224,32 @@ var fileDescriptor_df0d8b259d72854e = []byte{ // 439 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x93, 0x41, 0x8b, 0xd4, 0x30, 0x14, 0xc7, 0xa7, 0x23, 0x3b, 0x62, 0xd4, 0x83, 0x71, 0x0f, 0x43, 0xd1, 0x22, 0xf5, 0xe2, 0x65, - 0x12, 0xb6, 0x0a, 0x0b, 0x73, 0x10, 0x54, 0x50, 0xf6, 0xb6, 0xdb, 0x83, 0xc8, 0x1e, 0x5c, 0xd2, - 0x34, 0x74, 0x23, 0x6d, 0x5e, 0x37, 0x49, 0x47, 0x96, 0x65, 0x2f, 0x7e, 0x02, 0xc1, 0x9b, 0x9f, - 0xc8, 0xe3, 0x82, 0x08, 0x1e, 0x65, 0xc6, 0x8f, 0xe1, 0x41, 0x26, 0x8d, 0x76, 0x06, 0x47, 0x71, - 0x46, 0x4f, 0x25, 0x2f, 0xbc, 0xdf, 0xff, 0xbd, 0xff, 0x3f, 0x45, 0x0f, 0x65, 0xc6, 0x29, 0xab, - 0xeb, 0x52, 0x72, 0x66, 0x25, 0x28, 0x43, 0xa5, 0xb2, 0x42, 0xf3, 0x63, 0x26, 0xd5, 0x11, 0xe3, - 0x1c, 0x1a, 0x65, 0x0d, 0xe5, 0xa0, 0xac, 0x86, 0xb2, 0x14, 0x9a, 0x4e, 0x76, 0xe8, 0x49, 0x23, - 0xf4, 0x29, 0xa9, 0x35, 0x58, 0xc0, 0x89, 0xcc, 0x38, 0x59, 0xec, 0x27, 0x2b, 0xfa, 0x49, 0xd7, - 0x4f, 0x26, 0x3b, 0xe1, 0x93, 0x0d, 0x34, 0x17, 0x08, 0x4e, 0x38, 0xbc, 0x55, 0x00, 0x14, 0xa5, - 0xa0, 0xac, 0x96, 0x94, 0x29, 0x05, 0xd6, 0xcb, 0xbb, 0xdb, 0xf8, 0x10, 0xdd, 0x3e, 0x98, 0x4f, - 0xb9, 0xf7, 0x13, 0xfc, 0xa8, 0xe5, 0xa6, 0xe2, 0xa4, 0x11, 0xc6, 0xe2, 0x6d, 0xb4, 0x05, 0xaf, - 0x95, 0xd0, 0xc3, 0xe0, 0x4e, 0x70, 0xef, 0x4a, 0xda, 0x1e, 0xf0, 0x5d, 0x74, 0x9d, 0x83, 0x52, - 0x82, 0xcf, 0x59, 0x47, 0x32, 0x1f, 0xf6, 0xdd, 0xed, 0xb5, 0xae, 0xb8, 0x97, 0xc7, 0x63, 0x14, - 0xfd, 0x8e, 0x6d, 0x6a, 0x50, 0x46, 0xe0, 0x21, 0xba, 0xcc, 0xf2, 0x5c, 0x0b, 0x63, 0x3c, 0xfe, - 0xc7, 0x31, 0xde, 0x46, 0xd8, 0xf5, 0xee, 0x33, 0xcd, 0x2a, 0xe3, 0x87, 0x89, 0x25, 0xba, 0xb9, - 0x54, 0xf5, 0x98, 0x14, 0x0d, 0x6a, 0x57, 0x71, 0x94, 0xab, 0xc9, 0x98, 0xac, 0x6f, 0x36, 0xf1, - 0x4c, 0x4f, 0x4a, 0xbe, 0x5d, 0x42, 0x5b, 0x4e, 0x0b, 0xbf, 0xef, 0xa3, 0x1b, 0xbf, 0xac, 0x80, - 0x0f, 0x36, 0xd1, 0xf8, 0xa3, 0xd5, 0x61, 0xfa, 0x3f, 0x91, 0xad, 0x35, 0xf1, 0xcb, 0x37, 0x1f, - 0xbf, 0xbe, 0xeb, 0xbf, 0xc0, 0xcf, 0xa9, 0x7f, 0x4b, 0x7f, 0xf3, 0x86, 0x5c, 0xc6, 0x86, 0x9e, - 0xb9, 0xef, 0x39, 0xed, 0x42, 0x35, 0xf4, 0x6c, 0x29, 0xf6, 0x73, 0xfc, 0x29, 0x40, 0x83, 0xd6, - 0x39, 0xfc, 0x74, 0xe3, 0xf1, 0x97, 0x42, 0x0e, 0x9f, 0xfd, 0x33, 0xc7, 0xef, 0x3e, 0x76, 0xbb, - 0x3f, 0xc0, 0xc9, 0x3a, 0xbb, 0xb7, 0xf1, 0x3f, 0x7e, 0xf5, 0x61, 0x1a, 0x05, 0x17, 0xd3, 0x28, - 0xf8, 0x32, 0x8d, 0x82, 0xb7, 0xb3, 0xa8, 0x77, 0x31, 0x8b, 0x7a, 0x9f, 0x67, 0x51, 0xef, 0x70, - 0xbf, 0x90, 0xf6, 0xb8, 0xc9, 0x08, 0x87, 0x8a, 0x72, 0x30, 0x15, 0x98, 0x39, 0x7e, 0x54, 0x00, - 0x9d, 0xec, 0xd2, 0x0a, 0xf2, 0xa6, 0x14, 0xa6, 0x15, 0x4b, 0x76, 0x47, 0x9d, 0xde, 0x68, 0x95, - 0x9e, 0x3d, 0xad, 0x85, 0xc9, 0x06, 0xee, 0x57, 0xbc, 0xff, 0x3d, 0x00, 0x00, 0xff, 0xff, 0x3b, - 0xeb, 0xe1, 0x31, 0x63, 0x04, 0x00, 0x00, + 0x12, 0xb6, 0x0a, 0xca, 0x1c, 0x04, 0x15, 0x94, 0xbd, 0xed, 0xf6, 0x20, 0xb2, 0x07, 0x97, 0x34, + 0x0d, 0xdd, 0x48, 0x9b, 0xd7, 0x4d, 0xd2, 0x91, 0x65, 0xd9, 0x8b, 0x9f, 0x40, 0xf0, 0xe6, 0x27, + 0xf2, 0xb8, 0x20, 0x82, 0x47, 0x99, 0xf1, 0x63, 0x78, 0x90, 0x49, 0xa3, 0x9d, 0xc1, 0x51, 0x9c, + 0xd1, 0x53, 0xc9, 0x0b, 0xef, 0xf7, 0x7f, 0xef, 0xff, 0x4f, 0xd1, 0x43, 0x99, 0x71, 0xca, 0xea, + 0xba, 0x94, 0x9c, 0x59, 0x09, 0xca, 0x50, 0xa9, 0xac, 0xd0, 0xfc, 0x88, 0x49, 0x75, 0xc8, 0x38, + 0x87, 0x46, 0x59, 0x43, 0x39, 0x28, 0xab, 0xa1, 0x2c, 0x85, 0xa6, 0x93, 0x1d, 0x7a, 0xdc, 0x08, + 0x7d, 0x42, 0x6a, 0x0d, 0x16, 0x70, 0x22, 0x33, 0x4e, 0x16, 0xfb, 0xc9, 0x8a, 0x7e, 0xd2, 0xf5, + 0x93, 0xc9, 0x4e, 0xf8, 0x64, 0x03, 0xcd, 0x05, 0x82, 0x13, 0x0e, 0x6f, 0x14, 0x00, 0x45, 0x29, + 0x28, 0xab, 0x25, 0x65, 0x4a, 0x81, 0xf5, 0xf2, 0xee, 0x36, 0x3e, 0x40, 0x37, 0xf7, 0xe7, 0x53, + 0xee, 0xfe, 0x04, 0x3f, 0x6a, 0xb9, 0xa9, 0x38, 0x6e, 0x84, 0xb1, 0x78, 0x1b, 0x6d, 0xc1, 0x6b, + 0x25, 0xf4, 0x30, 0xb8, 0x15, 0xdc, 0xb9, 0x94, 0xb6, 0x07, 0x7c, 0x1b, 0x5d, 0xe5, 0xa0, 0x94, + 0xe0, 0x73, 0xd6, 0xa1, 0xcc, 0x87, 0x7d, 0x77, 0x7b, 0xa5, 0x2b, 0xee, 0xe6, 0xf1, 0x18, 0x45, + 0xbf, 0x63, 0x9b, 0x1a, 0x94, 0x11, 0x78, 0x88, 0x2e, 0xb2, 0x3c, 0xd7, 0xc2, 0x18, 0x8f, 0xff, + 0x71, 0x8c, 0xb7, 0x11, 0x76, 0xbd, 0x7b, 0x4c, 0xb3, 0xca, 0xf8, 0x61, 0x62, 0x89, 0xae, 0x2f, + 0x55, 0x3d, 0x26, 0x45, 0x83, 0xda, 0x55, 0x1c, 0xe5, 0x72, 0x32, 0x26, 0xeb, 0x9b, 0x4d, 0x3c, + 0xd3, 0x93, 0x92, 0x6f, 0x17, 0xd0, 0x96, 0xd3, 0xc2, 0xef, 0xfb, 0xe8, 0xda, 0x2f, 0x2b, 0xe0, + 0xfd, 0x4d, 0x34, 0xfe, 0x68, 0x75, 0x98, 0xfe, 0x4f, 0x64, 0x6b, 0x4d, 0xfc, 0xf2, 0xcd, 0xc7, + 0xaf, 0xef, 0xfa, 0x2f, 0xf0, 0x73, 0xea, 0xdf, 0xd2, 0xdf, 0xbc, 0x21, 0x97, 0xb1, 0xa1, 0xa7, + 0xee, 0x7b, 0x46, 0xbb, 0x50, 0x0d, 0x3d, 0x5d, 0x8a, 0xfd, 0x0c, 0x7f, 0x0a, 0xd0, 0xa0, 0x75, + 0x0e, 0x3f, 0xdd, 0x78, 0xfc, 0xa5, 0x90, 0xc3, 0x67, 0xff, 0xcc, 0xf1, 0xbb, 0x8f, 0xdd, 0xee, + 0xf7, 0x70, 0xb2, 0xce, 0xee, 0x6d, 0xfc, 0x8f, 0x5f, 0x7d, 0x98, 0x46, 0xc1, 0xf9, 0x34, 0x0a, + 0xbe, 0x4c, 0xa3, 0xe0, 0xed, 0x2c, 0xea, 0x9d, 0xcf, 0xa2, 0xde, 0xe7, 0x59, 0xd4, 0x3b, 0xd8, + 0x2b, 0xa4, 0x3d, 0x6a, 0x32, 0xc2, 0xa1, 0xa2, 0x1c, 0x4c, 0x05, 0x66, 0x8e, 0x1f, 0x15, 0x40, + 0x27, 0x0f, 0x68, 0x05, 0x79, 0x53, 0x0a, 0xd3, 0x8a, 0x25, 0xf7, 0x47, 0x9d, 0xde, 0x68, 0x95, + 0x9e, 0x3d, 0xa9, 0x85, 0xc9, 0x06, 0xee, 0x57, 0xbc, 0xfb, 0x3d, 0x00, 0x00, 0xff, 0xff, 0xae, + 0x56, 0xc8, 0x35, 0x63, 0x04, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/modules/apps/27-interchain-accounts/controller/types/tx.pb.go b/modules/apps/27-interchain-accounts/controller/types/tx.pb.go index 93a15cb34cf..09c8fc11c89 100644 --- a/modules/apps/27-interchain-accounts/controller/types/tx.pb.go +++ b/modules/apps/27-interchain-accounts/controller/types/tx.pb.go @@ -10,7 +10,7 @@ import ( _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" - types "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" + types "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" @@ -287,43 +287,43 @@ var fileDescriptor_7def041328c84a30 = []byte{ // 626 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x54, 0x4f, 0x4f, 0x13, 0x4f, 0x18, 0xee, 0xfc, 0x58, 0xca, 0x8f, 0x01, 0x45, 0x37, 0x44, 0xca, 0x46, 0x17, 0x52, 0x3d, 0x20, - 0x09, 0x3b, 0x69, 0xd5, 0x90, 0xd4, 0x78, 0x10, 0xf0, 0xd0, 0x98, 0x26, 0xcd, 0x8a, 0x09, 0xf1, - 0xd2, 0x4c, 0x67, 0x27, 0xc3, 0xc8, 0xee, 0xcc, 0xba, 0x33, 0x5d, 0xf1, 0x66, 0xf4, 0x62, 0x3c, - 0x18, 0x0f, 0x7e, 0x00, 0x3e, 0x02, 0xdf, 0x42, 0x8e, 0x1c, 0x3d, 0x19, 0x03, 0x07, 0x6e, 0x7e, - 0x06, 0xb3, 0x7f, 0xba, 0x45, 0x41, 0x82, 0x85, 0x5b, 0xdf, 0xf7, 0xed, 0xf3, 0xbc, 0xcf, 0xf3, - 0xce, 0xbb, 0x2f, 0x7c, 0xc8, 0xbb, 0x04, 0xe1, 0x30, 0xf4, 0x39, 0xc1, 0x9a, 0x4b, 0xa1, 0x10, - 0x17, 0x9a, 0x46, 0x64, 0x13, 0x73, 0xd1, 0xc1, 0x84, 0xc8, 0x9e, 0xd0, 0x0a, 0x11, 0x29, 0x74, - 0x24, 0x7d, 0x9f, 0x46, 0x28, 0xae, 0x21, 0xbd, 0xed, 0x84, 0x91, 0xd4, 0xd2, 0xac, 0xf3, 0x2e, - 0x71, 0x8e, 0x83, 0x9d, 0x53, 0xc0, 0xce, 0x00, 0xec, 0xc4, 0x35, 0x6b, 0x9a, 0x49, 0x26, 0x53, - 0x38, 0x4a, 0x7e, 0x65, 0x4c, 0xd6, 0xfd, 0x73, 0xc9, 0x88, 0x6b, 0x28, 0xc4, 0x64, 0x8b, 0xea, - 0x1c, 0xb5, 0x3a, 0x84, 0xf8, 0x63, 0x6a, 0x32, 0x92, 0x19, 0x22, 0x55, 0x20, 0x15, 0x0a, 0x14, - 0x4b, 0xea, 0x81, 0x62, 0x59, 0xa1, 0xfa, 0x1e, 0xc0, 0x9b, 0x2d, 0xc5, 0x5c, 0xca, 0xb8, 0xd2, - 0x34, 0x6a, 0x16, 0xd4, 0x8f, 0x33, 0x66, 0x73, 0x1a, 0x8e, 0xca, 0xd7, 0x82, 0x46, 0x15, 0x30, - 0x0f, 0x16, 0xc6, 0xdd, 0x2c, 0x30, 0x6f, 0xc3, 0x2b, 0x44, 0x0a, 0x41, 0x49, 0xa2, 0xa8, 0xc3, - 0xbd, 0xca, 0x7f, 0x69, 0x75, 0x72, 0x90, 0x6c, 0x7a, 0x66, 0x05, 0x8e, 0xc5, 0x34, 0x52, 0x5c, - 0x8a, 0xca, 0x48, 0x5a, 0xee, 0x87, 0x8d, 0xab, 0x1f, 0x76, 0xe6, 0x4a, 0xef, 0x8e, 0x76, 0x17, - 0x33, 0xba, 0xaa, 0x07, 0xef, 0x9c, 0x25, 0xc2, 0xa5, 0x2a, 0x94, 0x42, 0x51, 0xf3, 0x16, 0x84, - 0x64, 0x13, 0x0b, 0x41, 0xfd, 0xa4, 0x67, 0xa6, 0x68, 0x3c, 0xcf, 0x34, 0x3d, 0x73, 0x06, 0x8e, - 0x85, 0x32, 0xd2, 0x03, 0x3d, 0xe5, 0x24, 0x6c, 0x7a, 0x0d, 0x23, 0xe9, 0x57, 0xfd, 0x09, 0xe0, - 0x78, 0x4b, 0xb1, 0x67, 0x54, 0x78, 0xeb, 0xdb, 0x17, 0x31, 0xb6, 0x05, 0x27, 0xb2, 0x27, 0xea, - 0x78, 0x58, 0xe3, 0xd4, 0xdc, 0x44, 0x7d, 0xcd, 0x39, 0xd7, 0xa2, 0xc4, 0x35, 0xe7, 0x84, 0xbf, - 0x76, 0x4a, 0xb6, 0x86, 0x35, 0x5e, 0x31, 0xf6, 0xbe, 0xcf, 0x95, 0x5c, 0x18, 0x16, 0x19, 0xf3, - 0x2e, 0xbc, 0x16, 0x51, 0x1f, 0x6b, 0x1e, 0xd3, 0x8e, 0xe6, 0x01, 0x95, 0x3d, 0x5d, 0x31, 0xe6, - 0xc1, 0x82, 0xe1, 0x4e, 0xf5, 0xf3, 0xeb, 0x59, 0xfa, 0xc4, 0x58, 0x1f, 0xc0, 0xeb, 0x85, 0xdf, - 0x62, 0x86, 0x16, 0xfc, 0x5f, 0xd1, 0x57, 0x3d, 0x2a, 0x08, 0x4d, 0xad, 0x1b, 0x6e, 0x11, 0xe7, - 0x73, 0xfa, 0x02, 0xe0, 0x54, 0x4b, 0xb1, 0xe7, 0xa1, 0x87, 0x35, 0x6d, 0xe3, 0x08, 0x07, 0xca, - 0xbc, 0x01, 0xcb, 0x8a, 0xb3, 0xc1, 0xb8, 0xf2, 0xc8, 0xdc, 0x80, 0xe5, 0x30, 0xfd, 0x47, 0x3a, - 0xa8, 0x89, 0x7a, 0xc3, 0xf9, 0xf7, 0xcf, 0xc5, 0xc9, 0x7a, 0xe4, 0xde, 0x73, 0xbe, 0xc6, 0x54, - 0xdf, 0x4c, 0xde, 0xaa, 0x3a, 0x0b, 0x67, 0xfe, 0x50, 0xd5, 0xf7, 0x54, 0xff, 0x68, 0xc0, 0x91, - 0x96, 0x62, 0xe6, 0x57, 0x00, 0x67, 0xff, 0xbe, 0xca, 0xed, 0x61, 0xb4, 0x9d, 0xb5, 0x97, 0xd6, - 0xc6, 0x65, 0x33, 0x16, 0xaf, 0xf4, 0x09, 0xc0, 0x72, 0xbe, 0xa8, 0x8f, 0x86, 0x6c, 0x92, 0xc1, - 0xad, 0x27, 0x17, 0x82, 0x17, 0x82, 0x76, 0x00, 0x9c, 0xfc, 0x6d, 0x23, 0x56, 0x87, 0xe4, 0x3d, - 0x4e, 0x62, 0x3d, 0xbd, 0x04, 0x92, 0xbe, 0x44, 0x6b, 0xf4, 0xed, 0xd1, 0xee, 0x22, 0x58, 0x79, - 0xb9, 0x77, 0x60, 0x83, 0xfd, 0x03, 0x1b, 0xfc, 0x38, 0xb0, 0xc1, 0xe7, 0x43, 0xbb, 0xb4, 0x7f, - 0x68, 0x97, 0xbe, 0x1d, 0xda, 0xa5, 0x17, 0x6d, 0xc6, 0xf5, 0x66, 0xaf, 0xeb, 0x10, 0x19, 0xa0, - 0xfc, 0x20, 0xf2, 0x2e, 0x59, 0x62, 0x12, 0xc5, 0xcb, 0x28, 0x90, 0x5e, 0xcf, 0xa7, 0x2a, 0x39, - 0xb5, 0x0a, 0xd5, 0x97, 0x97, 0x06, 0x3a, 0x96, 0x4e, 0xbb, 0xb2, 0xfa, 0x4d, 0x48, 0x55, 0xb7, - 0x9c, 0x5e, 0xd1, 0x7b, 0xbf, 0x02, 0x00, 0x00, 0xff, 0xff, 0x34, 0x2d, 0x99, 0xbd, 0x62, 0x06, + 0x09, 0x3b, 0x69, 0xd5, 0x68, 0x6a, 0x3c, 0x08, 0x78, 0x68, 0x4c, 0x93, 0x66, 0xc5, 0x84, 0x78, + 0x69, 0xa6, 0xb3, 0x93, 0x61, 0x64, 0x77, 0x66, 0xdd, 0x99, 0xae, 0x78, 0x33, 0x7a, 0x31, 0x1e, + 0x8c, 0x07, 0x3f, 0x00, 0x1f, 0x81, 0x6f, 0x21, 0x47, 0x8e, 0x9e, 0x8c, 0x81, 0x03, 0x37, 0x3f, + 0x83, 0xd9, 0x3f, 0xdd, 0xa2, 0x20, 0xc1, 0xc2, 0xad, 0xef, 0xfb, 0xf6, 0x79, 0xde, 0xe7, 0x79, + 0xe7, 0xdd, 0x17, 0x3e, 0xe4, 0x5d, 0x82, 0x70, 0x18, 0xfa, 0x9c, 0x60, 0xcd, 0xa5, 0x50, 0x88, + 0x0b, 0x4d, 0x23, 0xb2, 0x81, 0xb9, 0xe8, 0x60, 0x42, 0x64, 0x4f, 0x68, 0x85, 0x88, 0x14, 0x3a, + 0x92, 0xbe, 0x4f, 0x23, 0x14, 0xd7, 0x90, 0xde, 0x72, 0xc2, 0x48, 0x6a, 0x69, 0xd6, 0x79, 0x97, + 0x38, 0x47, 0xc1, 0xce, 0x09, 0x60, 0x67, 0x00, 0x76, 0xe2, 0x9a, 0x35, 0xcd, 0x24, 0x93, 0x29, + 0x1c, 0x25, 0xbf, 0x32, 0x26, 0xeb, 0xee, 0x99, 0x64, 0xc4, 0x35, 0x14, 0x62, 0xb2, 0x49, 0x75, + 0x8e, 0x5a, 0x19, 0x42, 0xfc, 0x11, 0x35, 0x19, 0xc9, 0x0c, 0x91, 0x2a, 0x90, 0x0a, 0x05, 0x8a, + 0x25, 0xf5, 0x40, 0xb1, 0xac, 0x50, 0x7d, 0x0f, 0xe0, 0xf5, 0x96, 0x62, 0x2e, 0x65, 0x5c, 0x69, + 0x1a, 0x35, 0x0b, 0xea, 0xc7, 0x19, 0xb3, 0x39, 0x0d, 0x47, 0xe5, 0x6b, 0x41, 0xa3, 0x0a, 0x98, + 0x07, 0x0b, 0xe3, 0x6e, 0x16, 0x98, 0x37, 0xe1, 0x25, 0x22, 0x85, 0xa0, 0x24, 0x51, 0xd4, 0xe1, + 0x5e, 0xe5, 0xbf, 0xb4, 0x3a, 0x39, 0x48, 0x36, 0x3d, 0xb3, 0x02, 0xc7, 0x62, 0x1a, 0x29, 0x2e, + 0x45, 0x65, 0x24, 0x2d, 0xf7, 0xc3, 0xc6, 0xe5, 0x0f, 0xdb, 0x73, 0xa5, 0x77, 0x87, 0x3b, 0x8b, + 0x19, 0x5d, 0xd5, 0x83, 0xb7, 0x4e, 0x13, 0xe1, 0x52, 0x15, 0x4a, 0xa1, 0xa8, 0x79, 0x03, 0x42, + 0xb2, 0x81, 0x85, 0xa0, 0x7e, 0xd2, 0x33, 0x53, 0x34, 0x9e, 0x67, 0x9a, 0x9e, 0x39, 0x03, 0xc7, + 0x42, 0x19, 0xe9, 0x81, 0x9e, 0x72, 0x12, 0x36, 0xbd, 0x86, 0x91, 0xf4, 0xab, 0xfe, 0x04, 0x70, + 0xbc, 0xa5, 0xd8, 0x33, 0x2a, 0xbc, 0xb5, 0xad, 0xf3, 0x18, 0xdb, 0x84, 0x13, 0xd9, 0x13, 0x75, + 0x3c, 0xac, 0x71, 0x6a, 0x6e, 0xa2, 0xbe, 0xea, 0x9c, 0x69, 0x51, 0xe2, 0x9a, 0x73, 0xcc, 0x5f, + 0x3b, 0x25, 0x5b, 0xc5, 0x1a, 0x2f, 0x1b, 0xbb, 0xdf, 0xe7, 0x4a, 0x2e, 0x0c, 0x8b, 0x8c, 0x79, + 0x1b, 0x5e, 0x89, 0xa8, 0x8f, 0x35, 0x8f, 0x69, 0x47, 0xf3, 0x80, 0xca, 0x9e, 0xae, 0x18, 0xf3, + 0x60, 0xc1, 0x70, 0xa7, 0xfa, 0xf9, 0xb5, 0x2c, 0x7d, 0x6c, 0xac, 0xf7, 0xe0, 0xd5, 0xc2, 0x6f, + 0x31, 0x43, 0x0b, 0xfe, 0xaf, 0xe8, 0xab, 0x1e, 0x15, 0x84, 0xa6, 0xd6, 0x0d, 0xb7, 0x88, 0xf3, + 0x39, 0x7d, 0x01, 0x70, 0xaa, 0xa5, 0xd8, 0xf3, 0xd0, 0xc3, 0x9a, 0xb6, 0x71, 0x84, 0x03, 0x65, + 0x5e, 0x83, 0x65, 0xc5, 0xd9, 0x60, 0x5c, 0x79, 0x64, 0xae, 0xc3, 0x72, 0x98, 0xfe, 0x23, 0x1d, + 0xd4, 0x44, 0xbd, 0xe1, 0xfc, 0xfb, 0xe7, 0xe2, 0x64, 0x3d, 0x72, 0xef, 0x39, 0x5f, 0x63, 0xaa, + 0x6f, 0x26, 0x6f, 0x55, 0x9d, 0x85, 0x33, 0x7f, 0xa8, 0xea, 0x7b, 0xaa, 0x7f, 0x34, 0xe0, 0x48, + 0x4b, 0x31, 0xf3, 0x2b, 0x80, 0xb3, 0x7f, 0x5f, 0xe5, 0xf6, 0x30, 0xda, 0x4e, 0xdb, 0x4b, 0x6b, + 0xfd, 0xa2, 0x19, 0x8b, 0x57, 0xfa, 0x04, 0x60, 0x39, 0x5f, 0xd4, 0x47, 0x43, 0x36, 0xc9, 0xe0, + 0xd6, 0x93, 0x73, 0xc1, 0x0b, 0x41, 0xdb, 0x00, 0x4e, 0xfe, 0xb6, 0x11, 0x2b, 0x43, 0xf2, 0x1e, + 0x25, 0xb1, 0x9e, 0x5e, 0x00, 0x49, 0x5f, 0xa2, 0x35, 0xfa, 0xf6, 0x70, 0x67, 0x11, 0x2c, 0xbf, + 0xdc, 0xdd, 0xb7, 0xc1, 0xde, 0xbe, 0x0d, 0x7e, 0xec, 0xdb, 0xe0, 0xf3, 0x81, 0x5d, 0xda, 0x3b, + 0xb0, 0x4b, 0xdf, 0x0e, 0xec, 0xd2, 0x8b, 0x36, 0xe3, 0x7a, 0xa3, 0xd7, 0x75, 0x88, 0x0c, 0x50, + 0x7e, 0x10, 0x79, 0x97, 0x2c, 0x31, 0x89, 0xe2, 0x07, 0x28, 0x90, 0x5e, 0xcf, 0xa7, 0x2a, 0x39, + 0xb5, 0x0a, 0xd5, 0xef, 0x2f, 0x0d, 0x74, 0x2c, 0x9d, 0x74, 0x65, 0xf5, 0x9b, 0x90, 0xaa, 0x6e, + 0x39, 0xbd, 0xa2, 0x77, 0x7e, 0x05, 0x00, 0x00, 0xff, 0xff, 0xa1, 0x90, 0xb0, 0xb9, 0x62, 0x06, 0x00, 0x00, } diff --git a/modules/apps/27-interchain-accounts/genesis/types/genesis.go b/modules/apps/27-interchain-accounts/genesis/types/genesis.go index 879942968a1..c76db855973 100644 --- a/modules/apps/27-interchain-accounts/genesis/types/genesis.go +++ b/modules/apps/27-interchain-accounts/genesis/types/genesis.go @@ -1,10 +1,10 @@ package types import ( - controllertypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - hosttypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" + controllertypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + hosttypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" ) // DefaultGenesis creates and returns the interchain accounts GenesisState diff --git a/modules/apps/27-interchain-accounts/genesis/types/genesis.pb.go b/modules/apps/27-interchain-accounts/genesis/types/genesis.pb.go index ddfc654e631..ebc2413e4f0 100644 --- a/modules/apps/27-interchain-accounts/genesis/types/genesis.pb.go +++ b/modules/apps/27-interchain-accounts/genesis/types/genesis.pb.go @@ -7,8 +7,8 @@ import ( fmt "fmt" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" - types "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - types1 "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" + types "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + types1 "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" io "io" math "math" math_bits "math/bits" @@ -360,44 +360,44 @@ func init() { } var fileDescriptor_d4aa48c8e29a1947 = []byte{ - // 591 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x95, 0x4f, 0x8b, 0xd3, 0x4e, - 0x18, 0xc7, 0x9b, 0xb4, 0xbf, 0xfe, 0xec, 0xec, 0x1f, 0x97, 0xd9, 0x75, 0x0d, 0x2b, 0xc6, 0x52, - 0x0f, 0xf6, 0xd2, 0x84, 0x56, 0xa1, 0x20, 0x28, 0x74, 0x8b, 0xac, 0x05, 0x17, 0x24, 0x5e, 0xc4, - 0x4b, 0x98, 0x4e, 0x86, 0x74, 0x20, 0xc9, 0x84, 0x3c, 0xd3, 0x8a, 0x67, 0x05, 0x8f, 0xfa, 0x12, - 0x7c, 0x39, 0x7b, 0xdc, 0xa3, 0x27, 0x91, 0xf6, 0x05, 0xf8, 0x0a, 0x04, 0x99, 0x49, 0xb6, 0xad, - 0xb5, 0x4a, 0x8b, 0x47, 0x4f, 0x99, 0x79, 0xbe, 0x79, 0xbe, 0xcf, 0x27, 0xcf, 0x93, 0x64, 0xd0, - 0x23, 0x3e, 0xa4, 0x2e, 0x49, 0xd3, 0x88, 0x53, 0x22, 0xb9, 0x48, 0xc0, 0xe5, 0x89, 0x64, 0x19, - 0x1d, 0x11, 0x9e, 0xf8, 0x84, 0x52, 0x31, 0x4e, 0x24, 0xb8, 0x21, 0x4b, 0x18, 0x70, 0x70, 0x27, - 0xed, 0xab, 0xa5, 0x93, 0x66, 0x42, 0x0a, 0xec, 0xf2, 0x21, 0x75, 0x96, 0xd3, 0x9d, 0x35, 0xe9, - 0xce, 0x55, 0xce, 0xa4, 0x7d, 0x72, 0x14, 0x8a, 0x50, 0xe8, 0x5c, 0x57, 0xad, 0x72, 0x9b, 0x93, - 0xfe, 0x46, 0x14, 0x54, 0x24, 0x32, 0x13, 0x51, 0xc4, 0x32, 0x05, 0xb2, 0xd8, 0x15, 0x26, 0xdd, - 0x8d, 0x4c, 0x46, 0x02, 0xa4, 0x4a, 0x57, 0xd7, 0x3c, 0xb1, 0xf1, 0xc1, 0x44, 0xbb, 0x67, 0x39, - 0xe2, 0x0b, 0x49, 0x24, 0xc3, 0xef, 0x0d, 0x64, 0x2d, 0xec, 0xfd, 0x02, 0xdf, 0x07, 0x25, 0x5a, - 0x46, 0xdd, 0x68, 0xee, 0x74, 0xce, 0x9c, 0x2d, 0x9f, 0xdc, 0xe9, 0xcf, 0x0d, 0x97, 0x6b, 0x9d, - 0x56, 0x2e, 0xbe, 0xdc, 0x29, 0x79, 0xc7, 0x74, 0xad, 0x8a, 0xc7, 0x08, 0x2b, 0xd0, 0x15, 0x04, - 0x53, 0x23, 0xf4, 0xb6, 0x46, 0x78, 0x2a, 0x40, 0xae, 0x29, 0x7e, 0x30, 0x5a, 0x89, 0x37, 0xbe, - 0x9b, 0xe8, 0x78, 0x3d, 0x2f, 0x8e, 0xd1, 0x75, 0x42, 0x25, 0x9f, 0x30, 0x9f, 0x8e, 0x48, 0x92, - 0xb0, 0x08, 0x2c, 0xa3, 0x5e, 0x6e, 0xee, 0x74, 0x1e, 0x6f, 0x8d, 0xd3, 0xd3, 0x3e, 0xfd, 0xdc, - 0xa6, 0x60, 0xd9, 0x27, 0xcb, 0x41, 0xc0, 0x6f, 0x0d, 0x74, 0xb8, 0xc6, 0xc6, 0x32, 0x75, 0xcd, - 0x67, 0x5b, 0xd7, 0xf4, 0x58, 0xc8, 0x41, 0xb2, 0x8c, 0x05, 0x83, 0xf9, 0x8d, 0xbd, 0xfc, 0xbe, - 0x82, 0x00, 0xf3, 0x55, 0x01, 0xf0, 0x11, 0xfa, 0x2f, 0x15, 0x99, 0x04, 0xab, 0x5c, 0x2f, 0x37, - 0x6b, 0x5e, 0xbe, 0xc1, 0x2f, 0x51, 0x35, 0x25, 0x19, 0x89, 0xc1, 0xaa, 0xe8, 0x81, 0x3c, 0xdc, - 0x8c, 0x66, 0xe9, 0xc5, 0x9d, 0xb4, 0x9d, 0xe7, 0xda, 0xa1, 0xa8, 0x5d, 0xf8, 0x35, 0xbe, 0x99, - 0xe8, 0x60, 0x75, 0x58, 0xff, 0x66, 0xe7, 0x31, 0xaa, 0xa8, 0x66, 0x5b, 0xe5, 0xba, 0xd1, 0xac, - 0x79, 0x7a, 0x8d, 0xbd, 0x95, 0xbe, 0x3f, 0xd8, 0x8c, 0x45, 0x7f, 0xf1, 0xbf, 0xeb, 0xf8, 0x27, - 0x03, 0xed, 0xfd, 0xd4, 0x15, 0x7c, 0x17, 0xed, 0x51, 0x91, 0x24, 0x8c, 0x2a, 0x47, 0x9f, 0x07, - 0xfa, 0xc3, 0xaf, 0x79, 0xbb, 0x8b, 0xe0, 0x20, 0xc0, 0x37, 0xd1, 0xff, 0x0a, 0x49, 0xc9, 0xa6, - 0x96, 0xab, 0x6a, 0x3b, 0x08, 0xf0, 0x6d, 0x84, 0x8a, 0x29, 0x29, 0x2d, 0xa7, 0xaf, 0x15, 0x91, - 0x41, 0x80, 0x3b, 0xe8, 0x06, 0x07, 0x3f, 0xe6, 0x41, 0x10, 0xb1, 0xd7, 0x24, 0x63, 0x3e, 0x4b, - 0xc8, 0x30, 0x62, 0x81, 0x7e, 0xa2, 0x6b, 0xde, 0x21, 0x87, 0xf3, 0xb9, 0xf6, 0x24, 0x97, 0x1a, - 0xef, 0x0c, 0x74, 0xeb, 0x0f, 0x4d, 0xfc, 0x4b, 0xe0, 0x7b, 0xea, 0xed, 0xd2, 0x46, 0x3e, 0x09, - 0x82, 0x8c, 0x01, 0x14, 0xd4, 0xfb, 0x45, 0xb8, 0x97, 0x47, 0x4f, 0xc3, 0x8b, 0xa9, 0x6d, 0x5c, - 0x4e, 0x6d, 0xe3, 0xeb, 0xd4, 0x36, 0x3e, 0xce, 0xec, 0xd2, 0xe5, 0xcc, 0x2e, 0x7d, 0x9e, 0xd9, - 0xa5, 0x57, 0xe7, 0x21, 0x97, 0xa3, 0xf1, 0xd0, 0xa1, 0x22, 0x76, 0xa9, 0x80, 0x58, 0x80, 0x3a, - 0x1e, 0x5a, 0xa1, 0x70, 0x27, 0x5d, 0x37, 0x16, 0xc1, 0x38, 0x62, 0xa0, 0x7e, 0xd0, 0xe0, 0x76, - 0xba, 0xad, 0xc5, 0x84, 0x5a, 0xbf, 0x1c, 0x33, 0xf2, 0x4d, 0xca, 0x60, 0x58, 0xd5, 0x7f, 0xe7, - 0xfb, 0x3f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x56, 0x6b, 0x4d, 0x28, 0xa3, 0x06, 0x00, 0x00, + // 590 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x95, 0xcf, 0x8b, 0xd3, 0x40, + 0x14, 0xc7, 0x9b, 0xb4, 0x56, 0x3b, 0xfb, 0xc3, 0x65, 0x76, 0x5d, 0xc3, 0x8a, 0xb1, 0xd4, 0x83, + 0xbd, 0x34, 0xa1, 0x55, 0x58, 0x11, 0x14, 0xba, 0x45, 0xd6, 0x82, 0x0b, 0x12, 0x2f, 0xe2, 0x25, + 0x4c, 0x27, 0x43, 0x3a, 0x90, 0x64, 0x42, 0xde, 0xb4, 0xe2, 0x59, 0xc1, 0xa3, 0xfe, 0x09, 0xfe, + 0x39, 0x7b, 0xdc, 0xa3, 0x27, 0x91, 0xf6, 0x0f, 0xf0, 0x2f, 0x10, 0x64, 0x26, 0xd9, 0xb6, 0xd6, + 0x2a, 0x2d, 0x1e, 0x3d, 0x65, 0xe6, 0x7d, 0xf3, 0xbe, 0xef, 0x93, 0xf7, 0x92, 0x0c, 0x7a, 0xcc, + 0x07, 0xd4, 0x25, 0x69, 0x1a, 0x71, 0x4a, 0x24, 0x17, 0x09, 0xb8, 0x3c, 0x91, 0x2c, 0xa3, 0x43, + 0xc2, 0x13, 0x9f, 0x50, 0x2a, 0x46, 0x89, 0x04, 0x37, 0x64, 0x09, 0x03, 0x0e, 0xee, 0xb8, 0x7d, + 0xb9, 0x74, 0xd2, 0x4c, 0x48, 0x81, 0x5d, 0x3e, 0xa0, 0xce, 0x62, 0xba, 0xb3, 0x22, 0xdd, 0xb9, + 0xcc, 0x19, 0xb7, 0x8f, 0x0e, 0x42, 0x11, 0x0a, 0x9d, 0xeb, 0xaa, 0x55, 0x6e, 0x73, 0xd4, 0x5b, + 0x8b, 0x82, 0x8a, 0x44, 0x66, 0x22, 0x8a, 0x58, 0xa6, 0x40, 0xe6, 0xbb, 0xc2, 0xe4, 0x78, 0x2d, + 0x93, 0xa1, 0x00, 0xa9, 0xd2, 0xd5, 0x35, 0x4f, 0x6c, 0x7c, 0x34, 0xd1, 0xf6, 0x69, 0x8e, 0xf8, + 0x52, 0x12, 0xc9, 0xf0, 0x07, 0x03, 0x59, 0x73, 0x7b, 0xbf, 0xc0, 0xf7, 0x41, 0x89, 0x96, 0x51, + 0x37, 0x9a, 0x5b, 0x9d, 0x53, 0x67, 0xc3, 0x27, 0x77, 0x7a, 0x33, 0xc3, 0xc5, 0x5a, 0x27, 0x95, + 0xf3, 0xaf, 0x77, 0x4a, 0xde, 0x21, 0x5d, 0xa9, 0xe2, 0x11, 0xc2, 0x0a, 0x74, 0x09, 0xc1, 0xd4, + 0x08, 0xdd, 0x8d, 0x11, 0x9e, 0x09, 0x90, 0x2b, 0x8a, 0xef, 0x0d, 0x97, 0xe2, 0x8d, 0x1f, 0x26, + 0x3a, 0x5c, 0xcd, 0x8b, 0x63, 0x74, 0x9d, 0x50, 0xc9, 0xc7, 0xcc, 0xa7, 0x43, 0x92, 0x24, 0x2c, + 0x02, 0xcb, 0xa8, 0x97, 0x9b, 0x5b, 0x9d, 0x27, 0x1b, 0xe3, 0x74, 0xb5, 0x4f, 0x2f, 0xb7, 0x29, + 0x58, 0x76, 0xc9, 0x62, 0x10, 0xf0, 0x3b, 0x03, 0xed, 0xaf, 0xb0, 0xb1, 0x4c, 0x5d, 0xf3, 0xf9, + 0xc6, 0x35, 0x3d, 0x16, 0x72, 0x90, 0x2c, 0x63, 0x41, 0x7f, 0x76, 0x63, 0x37, 0xbf, 0xaf, 0x20, + 0xc0, 0x7c, 0x59, 0x00, 0x7c, 0x80, 0xae, 0xa4, 0x22, 0x93, 0x60, 0x95, 0xeb, 0xe5, 0x66, 0xcd, + 0xcb, 0x37, 0xf8, 0x15, 0xaa, 0xa6, 0x24, 0x23, 0x31, 0x58, 0x15, 0x3d, 0x90, 0x47, 0xeb, 0xd1, + 0x2c, 0xbc, 0xb8, 0xe3, 0xb6, 0xf3, 0x42, 0x3b, 0x14, 0xb5, 0x0b, 0xbf, 0xc6, 0x77, 0x13, 0xed, + 0x2d, 0x0f, 0xeb, 0xff, 0xec, 0x3c, 0x46, 0x15, 0xd5, 0x6c, 0xab, 0x5c, 0x37, 0x9a, 0x35, 0x4f, + 0xaf, 0xb1, 0xb7, 0xd4, 0xf7, 0x07, 0xeb, 0xb1, 0xe8, 0x2f, 0xfe, 0x4f, 0x1d, 0xff, 0x6c, 0xa0, + 0x9d, 0x5f, 0xba, 0x82, 0xef, 0xa2, 0x1d, 0x2a, 0x92, 0x84, 0x51, 0xe5, 0xe8, 0xf3, 0x40, 0x7f, + 0xf8, 0x35, 0x6f, 0x7b, 0x1e, 0xec, 0x07, 0xf8, 0x26, 0xba, 0xaa, 0x90, 0x94, 0x6c, 0x6a, 0xb9, + 0xaa, 0xb6, 0xfd, 0x00, 0xdf, 0x46, 0xa8, 0x98, 0x92, 0xd2, 0x72, 0xfa, 0x5a, 0x11, 0xe9, 0x07, + 0xb8, 0x83, 0x6e, 0x70, 0xf0, 0x63, 0x1e, 0x04, 0x11, 0x7b, 0x43, 0x32, 0xe6, 0xb3, 0x84, 0x0c, + 0x22, 0x16, 0xe8, 0x27, 0xba, 0xe6, 0xed, 0x73, 0x38, 0x9b, 0x69, 0x4f, 0x73, 0xa9, 0xf1, 0xde, + 0x40, 0xb7, 0xfe, 0xd2, 0xc4, 0x7f, 0x04, 0xbe, 0xa7, 0xde, 0x2e, 0x6d, 0xe4, 0x93, 0x20, 0xc8, + 0x18, 0x40, 0x41, 0xbd, 0x5b, 0x84, 0xbb, 0x79, 0xf4, 0x24, 0x3c, 0x9f, 0xd8, 0xc6, 0xc5, 0xc4, + 0x36, 0xbe, 0x4d, 0x6c, 0xe3, 0xd3, 0xd4, 0x2e, 0x5d, 0x4c, 0xed, 0xd2, 0x97, 0xa9, 0x5d, 0x7a, + 0x7d, 0x16, 0x72, 0x39, 0x1c, 0x0d, 0x1c, 0x2a, 0x62, 0x97, 0x0a, 0x88, 0x05, 0xa8, 0xe3, 0xa1, + 0x15, 0x0a, 0x77, 0xfc, 0xd0, 0x8d, 0x45, 0x30, 0x8a, 0x18, 0xa8, 0x1f, 0x34, 0xb8, 0x9d, 0xe3, + 0xd6, 0x7c, 0x42, 0xad, 0xdf, 0x8e, 0x19, 0xf9, 0x36, 0x65, 0x30, 0xa8, 0xea, 0xbf, 0xf3, 0xfd, + 0x9f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xca, 0x57, 0x5a, 0x11, 0xa3, 0x06, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/modules/apps/27-interchain-accounts/genesis/types/genesis_test.go b/modules/apps/27-interchain-accounts/genesis/types/genesis_test.go index 0f258eb6216..731e9443999 100644 --- a/modules/apps/27-interchain-accounts/genesis/types/genesis_test.go +++ b/modules/apps/27-interchain-accounts/genesis/types/genesis_test.go @@ -5,11 +5,11 @@ import ( testifysuite "github.com/stretchr/testify/suite" - controllertypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - genesistypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/genesis/types" - hosttypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + controllertypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + genesistypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/genesis/types" + hosttypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) var ( diff --git a/modules/apps/27-interchain-accounts/host/client/cli/query.go b/modules/apps/27-interchain-accounts/host/client/cli/query.go index 50e5d6884c9..dab8a3e1466 100644 --- a/modules/apps/27-interchain-accounts/host/client/cli/query.go +++ b/modules/apps/27-interchain-accounts/host/client/cli/query.go @@ -15,10 +15,10 @@ import ( abci "github.com/cometbft/cometbft/abci/types" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" ) // GetCmdParams returns the command handler for the host submodule parameter querying. diff --git a/modules/apps/27-interchain-accounts/host/client/cli/tx.go b/modules/apps/27-interchain-accounts/host/client/cli/tx.go index da9c24c7537..76a7f198bc8 100644 --- a/modules/apps/27-interchain-accounts/host/client/cli/tx.go +++ b/modules/apps/27-interchain-accounts/host/client/cli/tx.go @@ -12,8 +12,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/version" - "github.com/cosmos/ibc-go/v7/internal/collections" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" + "github.com/cosmos/ibc-go/v8/internal/collections" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" ) const ( diff --git a/modules/apps/27-interchain-accounts/host/client/cli/tx_test.go b/modules/apps/27-interchain-accounts/host/client/cli/tx_test.go index 9d31ceb3884..501e1b878d9 100644 --- a/modules/apps/27-interchain-accounts/host/client/cli/tx_test.go +++ b/modules/apps/27-interchain-accounts/host/client/cli/tx_test.go @@ -12,7 +12,7 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" ) const msgDelegateMessage = `{ diff --git a/modules/apps/27-interchain-accounts/host/ibc_module.go b/modules/apps/27-interchain-accounts/host/ibc_module.go index 6efd8c47cb8..7270ed4f768 100644 --- a/modules/apps/27-interchain-accounts/host/ibc_module.go +++ b/modules/apps/27-interchain-accounts/host/ibc_module.go @@ -8,12 +8,12 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/keeper" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/keeper" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // IBCModule implements the ICS26 interface for interchain accounts host chains diff --git a/modules/apps/27-interchain-accounts/host/ibc_module_test.go b/modules/apps/27-interchain-accounts/host/ibc_module_test.go index 05f9c7d520f..48c85deb215 100644 --- a/modules/apps/27-interchain-accounts/host/ibc_module_test.go +++ b/modules/apps/27-interchain-accounts/host/ibc_module_test.go @@ -14,14 +14,14 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - feetypes "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + feetypes "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) var ( diff --git a/modules/apps/27-interchain-accounts/host/keeper/account.go b/modules/apps/27-interchain-accounts/host/keeper/account.go index e7fd35fb236..de06c88c8e9 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/account.go +++ b/modules/apps/27-interchain-accounts/host/keeper/account.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" ) // createInterchainAccount creates a new interchain account. An address is generated using the host connectionID, the controller portID, diff --git a/modules/apps/27-interchain-accounts/host/keeper/events.go b/modules/apps/27-interchain-accounts/host/keeper/events.go index 6c320ace6c0..3bfe7759670 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/events.go +++ b/modules/apps/27-interchain-accounts/host/keeper/events.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // EmitAcknowledgementEvent emits an event signalling a successful or failed acknowledgement and including the error diff --git a/modules/apps/27-interchain-accounts/host/keeper/export_test.go b/modules/apps/27-interchain-accounts/host/keeper/export_test.go index 100e5203076..2cd4338dde2 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/export_test.go +++ b/modules/apps/27-interchain-accounts/host/keeper/export_test.go @@ -7,8 +7,8 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + porttypes "github.com/cosmos/ibc-go/v8/modules/core/05-port/types" ) // GetICS4Wrapper is a getter for the keeper's ICS4Wrapper. diff --git a/modules/apps/27-interchain-accounts/host/keeper/genesis.go b/modules/apps/27-interchain-accounts/host/keeper/genesis.go index eaa4c4462ed..86e3f3c3c01 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/genesis.go +++ b/modules/apps/27-interchain-accounts/host/keeper/genesis.go @@ -5,9 +5,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - genesistypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/genesis/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" + genesistypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/genesis/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" ) // InitGenesis initializes the interchain accounts host application state from a provided genesis state diff --git a/modules/apps/27-interchain-accounts/host/keeper/genesis_test.go b/modules/apps/27-interchain-accounts/host/keeper/genesis_test.go index 3a24e8555dd..3ef7d2b9402 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/genesis_test.go +++ b/modules/apps/27-interchain-accounts/host/keeper/genesis_test.go @@ -1,11 +1,11 @@ package keeper_test import ( - genesistypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/genesis/types" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/keeper" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + genesistypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/genesis/types" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/keeper" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (suite *KeeperTestSuite) TestInitGenesis() { diff --git a/modules/apps/27-interchain-accounts/host/keeper/grpc_query.go b/modules/apps/27-interchain-accounts/host/keeper/grpc_query.go index 41dc2c2e9f0..2444450e1a5 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/grpc_query.go +++ b/modules/apps/27-interchain-accounts/host/keeper/grpc_query.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" ) var _ types.QueryServer = (*Keeper)(nil) diff --git a/modules/apps/27-interchain-accounts/host/keeper/grpc_query_test.go b/modules/apps/27-interchain-accounts/host/keeper/grpc_query_test.go index adf21d65e5b..d1dc4c911d6 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/grpc_query_test.go +++ b/modules/apps/27-interchain-accounts/host/keeper/grpc_query_test.go @@ -1,7 +1,7 @@ package keeper_test import ( - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" ) func (suite *KeeperTestSuite) TestQueryParams() { diff --git a/modules/apps/27-interchain-accounts/host/keeper/handshake.go b/modules/apps/27-interchain-accounts/host/keeper/handshake.go index 7b4f2254235..6e21866c18f 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/handshake.go +++ b/modules/apps/27-interchain-accounts/host/keeper/handshake.go @@ -8,9 +8,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" ) // OnChanOpenTry performs basic validation of the ICA channel diff --git a/modules/apps/27-interchain-accounts/host/keeper/handshake_test.go b/modules/apps/27-interchain-accounts/host/keeper/handshake_test.go index 1f83ace93ba..3074faf9b8e 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/handshake_test.go +++ b/modules/apps/27-interchain-accounts/host/keeper/handshake_test.go @@ -6,11 +6,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - hosttypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + hosttypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) // open and close channel is a helper function for TestOnChanOpenTry for reopening accounts diff --git a/modules/apps/27-interchain-accounts/host/keeper/keeper.go b/modules/apps/27-interchain-accounts/host/keeper/keeper.go index 94b1c9daed4..d2361fc577f 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/keeper.go +++ b/modules/apps/27-interchain-accounts/host/keeper/keeper.go @@ -13,13 +13,13 @@ import ( paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - genesistypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/genesis/types" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + genesistypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/genesis/types" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + porttypes "github.com/cosmos/ibc-go/v8/modules/core/05-port/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // Keeper defines the IBC interchain accounts host keeper diff --git a/modules/apps/27-interchain-accounts/host/keeper/keeper_test.go b/modules/apps/27-interchain-accounts/host/keeper/keeper_test.go index cb03e1371e3..0c44b0f10d4 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/keeper_test.go +++ b/modules/apps/27-interchain-accounts/host/keeper/keeper_test.go @@ -6,14 +6,14 @@ import ( testifysuite "github.com/stretchr/testify/suite" - genesistypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/genesis/types" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - ibcfeekeeper "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/keeper" - channelkeeper "github.com/cosmos/ibc-go/v7/modules/core/04-channel/keeper" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + genesistypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/genesis/types" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + ibcfeekeeper "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/keeper" + channelkeeper "github.com/cosmos/ibc-go/v8/modules/core/04-channel/keeper" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) var ( diff --git a/modules/apps/27-interchain-accounts/host/keeper/migrations.go b/modules/apps/27-interchain-accounts/host/keeper/migrations.go index d1d5a129e3d..894018606c7 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/migrations.go +++ b/modules/apps/27-interchain-accounts/host/keeper/migrations.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" ) // Migrator is a struct for handling in-place state migrations. diff --git a/modules/apps/27-interchain-accounts/host/keeper/migrations_test.go b/modules/apps/27-interchain-accounts/host/keeper/migrations_test.go index 2b73ecdd87b..bf1bf101123 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/migrations_test.go +++ b/modules/apps/27-interchain-accounts/host/keeper/migrations_test.go @@ -3,8 +3,8 @@ package keeper_test import ( "fmt" - icahostkeeper "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/keeper" - icahosttypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" + icahostkeeper "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/keeper" + icahosttypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" ) func (suite *KeeperTestSuite) TestMigratorMigrateParams() { diff --git a/modules/apps/27-interchain-accounts/host/keeper/msg_server.go b/modules/apps/27-interchain-accounts/host/keeper/msg_server.go index 809a10e1cf5..c71dba65576 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/msg_server.go +++ b/modules/apps/27-interchain-accounts/host/keeper/msg_server.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" ) var _ types.MsgServer = (*msgServer)(nil) diff --git a/modules/apps/27-interchain-accounts/host/keeper/msg_server_test.go b/modules/apps/27-interchain-accounts/host/keeper/msg_server_test.go index 15ccf0c5e07..4cc47f781d2 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/msg_server_test.go +++ b/modules/apps/27-interchain-accounts/host/keeper/msg_server_test.go @@ -1,8 +1,8 @@ package keeper_test import ( - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/keeper" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/keeper" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" ) func (suite *KeeperTestSuite) TestUpdateParams() { diff --git a/modules/apps/27-interchain-accounts/host/keeper/relay.go b/modules/apps/27-interchain-accounts/host/keeper/relay.go index c14ea7a951b..1447bae4f50 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/relay.go +++ b/modules/apps/27-interchain-accounts/host/keeper/relay.go @@ -8,10 +8,10 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" ) // OnRecvPacket handles a given interchain accounts packet on a destination host chain. diff --git a/modules/apps/27-interchain-accounts/host/keeper/relay_test.go b/modules/apps/27-interchain-accounts/host/keeper/relay_test.go index aa50d48b2c7..3b12a0c5f5e 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/relay_test.go +++ b/modules/apps/27-interchain-accounts/host/keeper/relay_test.go @@ -16,11 +16,11 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + transfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (suite *KeeperTestSuite) TestOnRecvPacket() { diff --git a/modules/apps/27-interchain-accounts/host/types/host.pb.go b/modules/apps/27-interchain-accounts/host/types/host.pb.go index 7d233d3aa4c..77db265b6b5 100644 --- a/modules/apps/27-interchain-accounts/host/types/host.pb.go +++ b/modules/apps/27-interchain-accounts/host/types/host.pb.go @@ -87,23 +87,23 @@ func init() { } var fileDescriptor_48e202774f13d08e = []byte{ - // 245 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0xcf, 0xbf, 0x4a, 0xc5, 0x30, - 0x14, 0xc7, 0xf1, 0x46, 0xe1, 0xa2, 0xf5, 0xcf, 0xd0, 0xe9, 0x4e, 0xe1, 0x2a, 0x08, 0x77, 0xb0, - 0x09, 0x57, 0x87, 0xee, 0x82, 0x8b, 0x20, 0x48, 0x47, 0x97, 0x92, 0xa4, 0xa1, 0x0d, 0x24, 0x39, - 0xa5, 0x27, 0xad, 0xf8, 0x16, 0x3e, 0x96, 0x63, 0x47, 0x47, 0x69, 0x5f, 0x44, 0x5a, 0x05, 0x15, - 0xee, 0x74, 0xe0, 0x03, 0x3f, 0x38, 0xdf, 0x38, 0x33, 0x52, 0x71, 0xd1, 0x34, 0xd6, 0x28, 0x11, - 0x0c, 0x78, 0xe4, 0xc6, 0x07, 0xdd, 0xaa, 0x5a, 0x18, 0x5f, 0x08, 0xa5, 0xa0, 0xf3, 0x01, 0x79, - 0x0d, 0x18, 0x78, 0xbf, 0x5b, 0x2e, 0x6b, 0x5a, 0x08, 0x90, 0x5c, 0x1b, 0xa9, 0xd8, 0xdf, 0x21, - 0xdb, 0x33, 0x64, 0xcb, 0xa0, 0xdf, 0x5d, 0xe6, 0xf1, 0xea, 0x49, 0xb4, 0xc2, 0x61, 0x72, 0x11, - 0x9f, 0xce, 0x58, 0x68, 0x2f, 0xa4, 0xd5, 0xe5, 0x9a, 0x6c, 0xc8, 0xf6, 0x28, 0x3f, 0x99, 0xed, - 0xfe, 0x9b, 0x92, 0xab, 0xf8, 0x5c, 0x58, 0x0b, 0x2f, 0x85, 0xd3, 0x88, 0xa2, 0xd2, 0xb8, 0x3e, - 0xd8, 0x1c, 0x6e, 0x8f, 0xf3, 0xb3, 0x45, 0x1f, 0x7f, 0xf0, 0xae, 0x7c, 0x1f, 0x29, 0x19, 0x46, - 0x4a, 0x3e, 0x47, 0x4a, 0xde, 0x26, 0x1a, 0x0d, 0x13, 0x8d, 0x3e, 0x26, 0x1a, 0x3d, 0x3f, 0x54, - 0x26, 0xd4, 0x9d, 0x64, 0x0a, 0x1c, 0x57, 0x80, 0x0e, 0x90, 0x1b, 0xa9, 0xd2, 0x0a, 0x78, 0x9f, - 0x71, 0x07, 0x65, 0x67, 0x35, 0xce, 0xd1, 0xc8, 0x6f, 0xb2, 0xf4, 0xf7, 0xed, 0xf4, 0x7f, 0x6f, - 0x78, 0x6d, 0x34, 0xca, 0xd5, 0x92, 0x7b, 0xfb, 0x15, 0x00, 0x00, 0xff, 0xff, 0xcc, 0xb5, 0x3b, - 0x6b, 0x29, 0x01, 0x00, 0x00, + // 246 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0xcf, 0xbf, 0x4a, 0xc4, 0x40, + 0x10, 0xc7, 0xf1, 0x44, 0xe1, 0xd0, 0xf8, 0xa7, 0x48, 0x75, 0xd5, 0x72, 0x0a, 0xc2, 0x15, 0x66, + 0x97, 0xd3, 0xe2, 0xac, 0x05, 0x1b, 0x41, 0x90, 0x94, 0x36, 0x61, 0x77, 0xb2, 0x24, 0x0b, 0xbb, + 0x3b, 0x21, 0xb3, 0x89, 0xf8, 0x16, 0x3e, 0x96, 0xe5, 0x95, 0x96, 0x92, 0xbc, 0x88, 0x24, 0x0a, + 0x2a, 0x58, 0x0d, 0x7c, 0xe0, 0x07, 0xf3, 0x4d, 0xb6, 0x46, 0x81, 0x90, 0x4d, 0x63, 0x0d, 0xc8, + 0x60, 0xd0, 0x93, 0x30, 0x3e, 0xe8, 0x16, 0x6a, 0x69, 0x7c, 0x21, 0x01, 0xb0, 0xf3, 0x81, 0x44, + 0x8d, 0x14, 0x44, 0xbf, 0x99, 0x2f, 0x6f, 0x5a, 0x0c, 0x98, 0x5e, 0x1a, 0x05, 0xfc, 0xf7, 0x90, + 0xff, 0x33, 0xe4, 0xf3, 0xa0, 0xdf, 0x9c, 0xe7, 0xc9, 0xe2, 0x51, 0xb6, 0xd2, 0x51, 0x7a, 0x96, + 0x1c, 0x4f, 0x58, 0x68, 0x2f, 0x95, 0xd5, 0xe5, 0x32, 0x5e, 0xc5, 0xeb, 0x83, 0xfc, 0x68, 0xb2, + 0xbb, 0x2f, 0x4a, 0x2f, 0x92, 0x53, 0x69, 0x2d, 0x3e, 0x17, 0x4e, 0x13, 0xc9, 0x4a, 0xd3, 0x72, + 0x6f, 0xb5, 0xbf, 0x3e, 0xcc, 0x4f, 0x66, 0x7d, 0xf8, 0xc6, 0xdb, 0xf2, 0x6d, 0x60, 0xf1, 0x6e, + 0x60, 0xf1, 0xc7, 0xc0, 0xe2, 0xd7, 0x91, 0x45, 0xbb, 0x91, 0x45, 0xef, 0x23, 0x8b, 0x9e, 0xee, + 0x2b, 0x13, 0xea, 0x4e, 0x71, 0x40, 0x27, 0x00, 0xc9, 0x21, 0x09, 0xa3, 0x20, 0xab, 0x50, 0xf4, + 0x37, 0xc2, 0x61, 0xd9, 0x59, 0x4d, 0x53, 0x34, 0x89, 0xab, 0x6d, 0xf6, 0xf3, 0x76, 0xf6, 0xb7, + 0x37, 0xbc, 0x34, 0x9a, 0xd4, 0x62, 0xce, 0xbd, 0xfe, 0x0c, 0x00, 0x00, 0xff, 0xff, 0x51, 0x50, + 0x78, 0xd7, 0x29, 0x01, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/modules/apps/27-interchain-accounts/host/types/msgs.go b/modules/apps/27-interchain-accounts/host/types/msgs.go index 0fe46895841..49da2a09469 100644 --- a/modules/apps/27-interchain-accounts/host/types/msgs.go +++ b/modules/apps/27-interchain-accounts/host/types/msgs.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" ) var _ sdk.Msg = (*MsgUpdateParams)(nil) diff --git a/modules/apps/27-interchain-accounts/host/types/msgs_test.go b/modules/apps/27-interchain-accounts/host/types/msgs_test.go index db0da5d0c66..a5660ce4e71 100644 --- a/modules/apps/27-interchain-accounts/host/types/msgs_test.go +++ b/modules/apps/27-interchain-accounts/host/types/msgs_test.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func TestMsgUpdateParamsValidateBasic(t *testing.T) { diff --git a/modules/apps/27-interchain-accounts/host/types/params_test.go b/modules/apps/27-interchain-accounts/host/types/params_test.go index 81bb547f473..33b0ff77c43 100644 --- a/modules/apps/27-interchain-accounts/host/types/params_test.go +++ b/modules/apps/27-interchain-accounts/host/types/params_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" ) func TestValidateParams(t *testing.T) { diff --git a/modules/apps/27-interchain-accounts/host/types/query.pb.go b/modules/apps/27-interchain-accounts/host/types/query.pb.go index e1019e8c1f6..b53620bd2e8 100644 --- a/modules/apps/27-interchain-accounts/host/types/query.pb.go +++ b/modules/apps/27-interchain-accounts/host/types/query.pb.go @@ -121,27 +121,27 @@ func init() { } var fileDescriptor_e6b7e23fc90c353a = []byte{ - // 310 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x91, 0x31, 0x4b, 0x03, 0x31, - 0x14, 0xc7, 0x1b, 0xc1, 0x0e, 0x71, 0x8b, 0x0e, 0x52, 0x24, 0x48, 0x27, 0x87, 0x36, 0xa1, 0xb5, - 0x50, 0x47, 0x75, 0x14, 0x07, 0x75, 0x74, 0x91, 0x5c, 0x1a, 0xae, 0x81, 0x5e, 0x5e, 0x7a, 0xc9, - 0x1d, 0x74, 0xf5, 0x13, 0x08, 0x7e, 0x24, 0x17, 0x17, 0xa1, 0xe0, 0xe2, 0x28, 0x77, 0x7e, 0x10, - 0xb9, 0xdc, 0x81, 0x16, 0x45, 0x38, 0x5c, 0x5f, 0xf8, 0xfd, 0xfe, 0xef, 0xff, 0x82, 0x4f, 0x74, - 0x24, 0xb9, 0xb0, 0x76, 0xa1, 0xa5, 0xf0, 0x1a, 0x8c, 0xe3, 0xda, 0x78, 0x95, 0xca, 0xb9, 0xd0, - 0xe6, 0x4e, 0x48, 0x09, 0x99, 0xf1, 0x8e, 0xcf, 0xc1, 0x79, 0x9e, 0x8f, 0xf8, 0x32, 0x53, 0xe9, - 0x8a, 0xd9, 0x14, 0x3c, 0x90, 0x81, 0x8e, 0x24, 0xfb, 0x4e, 0xb2, 0x5f, 0x48, 0x56, 0x91, 0x2c, - 0x1f, 0xf5, 0x0e, 0x62, 0x80, 0x78, 0xa1, 0xb8, 0xb0, 0x9a, 0x0b, 0x63, 0xc0, 0x37, 0x4c, 0x70, - 0xf5, 0xa6, 0xad, 0xb6, 0x08, 0xce, 0x00, 0xf6, 0xf7, 0x30, 0xb9, 0xae, 0x76, 0xba, 0x12, 0xa9, - 0x48, 0xdc, 0x8d, 0x5a, 0x66, 0xca, 0xf9, 0xbe, 0xc4, 0xbb, 0x1b, 0x53, 0x67, 0xc1, 0x38, 0x45, - 0x2e, 0x71, 0xd7, 0x86, 0xc9, 0x3e, 0x3a, 0x44, 0x47, 0x3b, 0xe3, 0x09, 0x6b, 0x53, 0x81, 0x35, - 0xb6, 0xc6, 0x31, 0x7e, 0x41, 0x78, 0x3b, 0xa4, 0x90, 0x27, 0x84, 0xbb, 0xf5, 0x23, 0x39, 0x6d, - 0xa7, 0xfc, 0xb9, 0x7b, 0xef, 0xec, 0x1f, 0x86, 0xba, 0x67, 0x7f, 0x72, 0xff, 0xfa, 0xf1, 0xb8, - 0xc5, 0xc8, 0x80, 0x37, 0x67, 0xfd, 0xfb, 0x9c, 0x75, 0x9f, 0xf3, 0xd9, 0x73, 0x41, 0xd1, 0xba, - 0xa0, 0xe8, 0xbd, 0xa0, 0xe8, 0xa1, 0xa4, 0x9d, 0x75, 0x49, 0x3b, 0x6f, 0x25, 0xed, 0xdc, 0x5e, - 0xc4, 0xda, 0xcf, 0xb3, 0x88, 0x49, 0x48, 0xb8, 0x04, 0x97, 0x80, 0xab, 0xc4, 0xc3, 0x18, 0x78, - 0x3e, 0xe5, 0x09, 0xcc, 0xb2, 0x85, 0x72, 0x75, 0xcc, 0x78, 0x3a, 0xfc, 0x4a, 0x1a, 0x6e, 0x26, - 0xf9, 0x95, 0x55, 0x2e, 0xea, 0x86, 0x7f, 0x3b, 0xfe, 0x0c, 0x00, 0x00, 0xff, 0xff, 0x21, 0xba, - 0xc4, 0xc0, 0x78, 0x02, 0x00, 0x00, + // 312 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x91, 0x31, 0x4b, 0x33, 0x31, + 0x18, 0xc7, 0x9b, 0x17, 0xde, 0x0e, 0x71, 0x8b, 0x0e, 0x52, 0x24, 0x48, 0x27, 0x87, 0x36, 0xa1, + 0xb5, 0xd0, 0x8e, 0xea, 0x28, 0x0e, 0xea, 0xe8, 0x22, 0xb9, 0x34, 0x5c, 0x03, 0xbd, 0x3c, 0xe9, + 0x25, 0x77, 0xd0, 0xd5, 0x4f, 0x20, 0xf8, 0x91, 0x5c, 0x5c, 0x84, 0x82, 0x8b, 0xa3, 0xdc, 0xf9, + 0x41, 0xe4, 0x72, 0x07, 0x5a, 0x14, 0xe1, 0x70, 0x7d, 0xc2, 0xef, 0xf7, 0x7f, 0xfe, 0x4f, 0xf0, + 0x4c, 0x47, 0x92, 0x0b, 0x6b, 0x97, 0x5a, 0x0a, 0xaf, 0xc1, 0x38, 0xae, 0x8d, 0x57, 0xa9, 0x5c, + 0x08, 0x6d, 0x6e, 0x85, 0x94, 0x90, 0x19, 0xef, 0xf8, 0x02, 0x9c, 0xe7, 0xf9, 0x88, 0xaf, 0x32, + 0x95, 0xae, 0x99, 0x4d, 0xc1, 0x03, 0x19, 0xe8, 0x48, 0xb2, 0xaf, 0x24, 0xfb, 0x81, 0x64, 0x15, + 0xc9, 0xf2, 0x51, 0xef, 0x20, 0x06, 0x88, 0x97, 0x8a, 0x0b, 0xab, 0xb9, 0x30, 0x06, 0x7c, 0xc3, + 0x04, 0x57, 0x6f, 0xda, 0x6a, 0x8b, 0xe0, 0x0c, 0x60, 0x7f, 0x0f, 0x93, 0xab, 0x6a, 0xa7, 0x4b, + 0x91, 0x8a, 0xc4, 0x5d, 0xab, 0x55, 0xa6, 0x9c, 0xef, 0x4b, 0xbc, 0xbb, 0x35, 0x75, 0x16, 0x8c, + 0x53, 0xe4, 0x02, 0x77, 0x6d, 0x98, 0xec, 0xa3, 0x43, 0x74, 0xb4, 0x33, 0x9e, 0xb0, 0x36, 0x15, + 0x58, 0x63, 0x6b, 0x1c, 0xe3, 0x67, 0x84, 0xff, 0x87, 0x14, 0xf2, 0x88, 0x70, 0xb7, 0x7e, 0x24, + 0x27, 0xed, 0x94, 0xdf, 0x77, 0xef, 0x9d, 0xfe, 0xc1, 0x50, 0xf7, 0xec, 0x4f, 0xee, 0x5e, 0xde, + 0x1f, 0xfe, 0x31, 0x32, 0xe0, 0xcd, 0x59, 0x7f, 0x3f, 0x67, 0xdd, 0xe7, 0x6c, 0xfe, 0x54, 0x50, + 0xb4, 0x29, 0x28, 0x7a, 0x2b, 0x28, 0xba, 0x2f, 0x69, 0x67, 0x53, 0xd2, 0xce, 0x6b, 0x49, 0x3b, + 0x37, 0xe7, 0xb1, 0xf6, 0x8b, 0x2c, 0x62, 0x12, 0x12, 0x2e, 0xc1, 0x25, 0xe0, 0x2a, 0xf1, 0x30, + 0x06, 0x9e, 0xcf, 0x78, 0x02, 0xf3, 0x6c, 0xa9, 0x5c, 0x1d, 0x33, 0x9e, 0x0e, 0x3f, 0x93, 0x86, + 0xdb, 0x49, 0x7e, 0x6d, 0x95, 0x8b, 0xba, 0xe1, 0xdf, 0x8e, 0x3f, 0x02, 0x00, 0x00, 0xff, 0xff, + 0xbc, 0x5f, 0x87, 0x7c, 0x78, 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/modules/apps/27-interchain-accounts/host/types/tx.pb.go b/modules/apps/27-interchain-accounts/host/types/tx.pb.go index 781b7d20926..acbb5c8aa60 100644 --- a/modules/apps/27-interchain-accounts/host/types/tx.pb.go +++ b/modules/apps/27-interchain-accounts/host/types/tx.pb.go @@ -139,9 +139,9 @@ var fileDescriptor_fa437afde7f1e7ae = []byte{ 0x72, 0xe2, 0x91, 0x1c, 0xe3, 0x85, 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, 0x31, 0x4e, 0x78, 0x2c, 0xc7, 0x70, 0xe1, 0xb1, 0x1c, 0xc3, 0x8d, 0xc7, 0x72, 0x0c, 0x51, 0x5e, 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0xfa, 0xd0, 0x88, 0xcc, 0x4c, 0x4a, 0xd6, 0x4d, 0xcf, 0xd7, - 0x2f, 0x33, 0xd7, 0xcf, 0xcd, 0x4f, 0x29, 0xcd, 0x49, 0x2d, 0x06, 0x45, 0x62, 0xb1, 0xbe, 0x91, + 0x2f, 0xb3, 0xd0, 0xcf, 0xcd, 0x4f, 0x29, 0xcd, 0x49, 0x2d, 0x06, 0x45, 0x62, 0xb1, 0xbe, 0x91, 0xb9, 0x2e, 0xc2, 0x05, 0xba, 0xa8, 0xf1, 0x57, 0x52, 0x59, 0x90, 0x5a, 0x9c, 0xc4, 0x06, 0x8e, - 0x3e, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0xeb, 0x47, 0xd5, 0x82, 0x8d, 0x02, 0x00, 0x00, + 0x3e, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0x76, 0xa2, 0x96, 0x3e, 0x8d, 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/modules/apps/27-interchain-accounts/module.go b/modules/apps/27-interchain-accounts/module.go index 91d7706701c..5d02007f402 100644 --- a/modules/apps/27-interchain-accounts/module.go +++ b/modules/apps/27-interchain-accounts/module.go @@ -19,17 +19,17 @@ import ( abci "github.com/cometbft/cometbft/abci/types" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/client/cli" - controllerkeeper "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/keeper" - controllertypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - genesistypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/genesis/types" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host" - hostkeeper "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/keeper" - hosttypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/simulation" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" - ibchost "github.com/cosmos/ibc-go/v7/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/client/cli" + controllerkeeper "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/keeper" + controllertypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + genesistypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/genesis/types" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host" + hostkeeper "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/keeper" + hosttypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/simulation" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + porttypes "github.com/cosmos/ibc-go/v8/modules/core/05-port/types" + ibchost "github.com/cosmos/ibc-go/v8/modules/core/24-host" ) var ( diff --git a/modules/apps/27-interchain-accounts/module_test.go b/modules/apps/27-interchain-accounts/module_test.go index 5719e70e5c5..0ca5f0f55b9 100644 --- a/modules/apps/27-interchain-accounts/module_test.go +++ b/modules/apps/27-interchain-accounts/module_test.go @@ -11,12 +11,12 @@ import ( "github.com/cosmos/cosmos-sdk/baseapp" simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims" - ica "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts" - controllertypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - hosttypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" - "github.com/cosmos/ibc-go/v7/testing/simapp" + ica "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts" + controllertypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + hosttypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" + "github.com/cosmos/ibc-go/v8/testing/simapp" ) type InterchainAccountsTestSuite struct { diff --git a/modules/apps/27-interchain-accounts/simulation/decoder.go b/modules/apps/27-interchain-accounts/simulation/decoder.go index b0ceaaf1de3..e6cb57a15f2 100644 --- a/modules/apps/27-interchain-accounts/simulation/decoder.go +++ b/modules/apps/27-interchain-accounts/simulation/decoder.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" ) // NewDecodeStore returns a decoder function closure that unmarshals the KVPair's diff --git a/modules/apps/27-interchain-accounts/simulation/decoder_test.go b/modules/apps/27-interchain-accounts/simulation/decoder_test.go index ae54a74c00c..0f78f66df5b 100644 --- a/modules/apps/27-interchain-accounts/simulation/decoder_test.go +++ b/modules/apps/27-interchain-accounts/simulation/decoder_test.go @@ -8,9 +8,9 @@ import ( "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/simulation" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/simulation" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func TestDecodeStore(t *testing.T) { diff --git a/modules/apps/27-interchain-accounts/simulation/genesis.go b/modules/apps/27-interchain-accounts/simulation/genesis.go index 953216b3da5..32c4702f152 100644 --- a/modules/apps/27-interchain-accounts/simulation/genesis.go +++ b/modules/apps/27-interchain-accounts/simulation/genesis.go @@ -7,10 +7,10 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" - controllertypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - genesistypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/genesis/types" - hosttypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" + controllertypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + genesistypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/genesis/types" + hosttypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" ) // RandomEnabled randomized controller or host enabled param with 75% prob of being true. diff --git a/modules/apps/27-interchain-accounts/simulation/genesis_test.go b/modules/apps/27-interchain-accounts/simulation/genesis_test.go index 5072865e22c..90c933326a6 100644 --- a/modules/apps/27-interchain-accounts/simulation/genesis_test.go +++ b/modules/apps/27-interchain-accounts/simulation/genesis_test.go @@ -15,9 +15,9 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - genesistypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/genesis/types" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/simulation" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" + genesistypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/genesis/types" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/simulation" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" ) // TestRandomizedGenState tests the normal scenario of applying RandomizedGenState. diff --git a/modules/apps/27-interchain-accounts/types/account.pb.go b/modules/apps/27-interchain-accounts/types/account.pb.go index 0e5745799e8..7451c75cdc8 100644 --- a/modules/apps/27-interchain-accounts/types/account.pb.go +++ b/modules/apps/27-interchain-accounts/types/account.pb.go @@ -90,9 +90,9 @@ var fileDescriptor_5561bd92625bf7da = []byte{ 0xf1, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x84, 0xc7, 0x72, 0x0c, 0x17, 0x1e, 0xcb, 0x31, 0xdc, 0x78, 0x2c, 0xc7, 0x10, 0xe5, 0x9a, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0x0b, 0x0d, 0x36, 0xfd, 0xcc, 0xa4, 0x64, 0xdd, 0xf4, 0x7c, - 0xfd, 0x32, 0x73, 0xfd, 0xdc, 0xfc, 0x94, 0xd2, 0x9c, 0xd4, 0x62, 0x50, 0xc4, 0x15, 0xeb, 0x1b, + 0xfd, 0x32, 0x0b, 0xfd, 0xdc, 0xfc, 0x94, 0xd2, 0x9c, 0xd4, 0x62, 0x50, 0xc4, 0x15, 0xeb, 0x1b, 0x99, 0xeb, 0x22, 0x2c, 0xd4, 0x85, 0xc7, 0x59, 0x49, 0x65, 0x41, 0x6a, 0x71, 0x12, 0x1b, 0x38, - 0xd4, 0x8c, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0xd5, 0xd6, 0xd0, 0x9d, 0xe8, 0x01, 0x00, 0x00, + 0xd4, 0x8c, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x32, 0x85, 0xb9, 0x61, 0xe8, 0x01, 0x00, 0x00, } func (m *InterchainAccount) Marshal() (dAtA []byte, err error) { diff --git a/modules/apps/27-interchain-accounts/types/account_test.go b/modules/apps/27-interchain-accounts/types/account_test.go index 69ba9dfcdfe..a8851a3d443 100644 --- a/modules/apps/27-interchain-accounts/types/account_test.go +++ b/modules/apps/27-interchain-accounts/types/account_test.go @@ -11,8 +11,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) var ( diff --git a/modules/apps/27-interchain-accounts/types/codec_test.go b/modules/apps/27-interchain-accounts/types/codec_test.go index 885f77b5a9f..6e0ad22b1e7 100644 --- a/modules/apps/27-interchain-accounts/types/codec_test.go +++ b/modules/apps/27-interchain-accounts/types/codec_test.go @@ -12,7 +12,7 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" ) // mockSdkMsg defines a mock struct, used for testing codec error scenarios diff --git a/modules/apps/27-interchain-accounts/types/expected_keepers.go b/modules/apps/27-interchain-accounts/types/expected_keepers.go index eee2b1142ab..3f8d542e891 100644 --- a/modules/apps/27-interchain-accounts/types/expected_keepers.go +++ b/modules/apps/27-interchain-accounts/types/expected_keepers.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // AccountKeeper defines the expected account keeper diff --git a/modules/apps/27-interchain-accounts/types/keys_test.go b/modules/apps/27-interchain-accounts/types/keys_test.go index d9255850dea..7b80c699aa0 100644 --- a/modules/apps/27-interchain-accounts/types/keys_test.go +++ b/modules/apps/27-interchain-accounts/types/keys_test.go @@ -3,8 +3,8 @@ package types_test import ( fmt "fmt" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (suite *TypesTestSuite) TestKeyActiveChannel() { diff --git a/modules/apps/27-interchain-accounts/types/metadata.go b/modules/apps/27-interchain-accounts/types/metadata.go index d8167e0ab59..1314ce087a0 100644 --- a/modules/apps/27-interchain-accounts/types/metadata.go +++ b/modules/apps/27-interchain-accounts/types/metadata.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/internal/collections" - connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v8/internal/collections" + connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" ) const ( diff --git a/modules/apps/27-interchain-accounts/types/metadata.pb.go b/modules/apps/27-interchain-accounts/types/metadata.pb.go index 6299045a6d0..ac3f37b0cf9 100644 --- a/modules/apps/27-interchain-accounts/types/metadata.pb.go +++ b/modules/apps/27-interchain-accounts/types/metadata.pb.go @@ -127,23 +127,23 @@ var fileDescriptor_c29c32e397d1f21e = []byte{ // 303 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x90, 0xbd, 0x4e, 0xc3, 0x30, 0x14, 0x85, 0x1b, 0x7e, 0xda, 0xe2, 0x09, 0x79, 0x00, 0x8b, 0x21, 0x42, 0x2c, 0x30, 0xd0, 0x58, - 0x05, 0x89, 0x32, 0x83, 0x18, 0x18, 0x58, 0x10, 0x13, 0x4b, 0xe4, 0x5c, 0x5b, 0xad, 0xa5, 0xc4, + 0x05, 0x09, 0x3a, 0x83, 0x18, 0x18, 0x58, 0x10, 0x13, 0x4b, 0xe4, 0x5c, 0x5b, 0xad, 0xa5, 0xc4, 0x37, 0xb2, 0x6f, 0xa3, 0xf6, 0x2d, 0x78, 0x2c, 0xc6, 0x8e, 0x48, 0x2c, 0xa8, 0x7d, 0x11, 0x94, 0x50, 0x52, 0x40, 0x8c, 0x47, 0xdf, 0xf9, 0xec, 0xab, 0xc3, 0xae, 0x6c, 0x06, 0x52, 0x95, 0x65, 0x6e, 0x41, 0x91, 0x45, 0x17, 0xa4, 0x75, 0x64, 0x3c, 0x4c, 0x94, 0x75, 0xa9, 0x02, 0xc0, 0xa9, 0xa3, 0x20, 0xab, 0xa1, 0x2c, 0x0c, 0x29, 0xad, 0x48, 0x25, 0xa5, 0x47, 0x42, 0x7e, 0x6a, 0x33, 0x48, 0x7e, 0x7a, 0xc9, 0x3f, 0x5e, 0x52, 0x0d, 0x4f, 0xde, 0x23, 0xd6, 0x7f, 0x58, 0xbb, 0x5c, - 0xb0, 0x5e, 0x65, 0x7c, 0xb0, 0xe8, 0x44, 0x74, 0x1c, 0x9d, 0xed, 0x3d, 0x7e, 0x47, 0x7e, 0xcd, - 0x04, 0xa0, 0x23, 0x8f, 0x79, 0x6e, 0x7c, 0x0a, 0xe8, 0x9c, 0x81, 0xfa, 0xdd, 0xd4, 0x6a, 0xb1, - 0xd5, 0x54, 0x0f, 0x36, 0xfc, 0xb6, 0xc5, 0xf7, 0x9a, 0x9f, 0x33, 0x3e, 0xc1, 0x40, 0x7f, 0x9c, - 0xed, 0xc6, 0xd9, 0xaf, 0xc9, 0xaf, 0xb6, 0x60, 0x3d, 0xa5, 0xb5, 0x37, 0x21, 0x88, 0x9d, 0xaf, - 0x0b, 0xd6, 0x91, 0x1f, 0xb1, 0xbe, 0x71, 0x80, 0xda, 0xba, 0xb1, 0xd8, 0x6d, 0x50, 0x9b, 0xf9, - 0x21, 0xeb, 0xd1, 0x2c, 0xa5, 0x79, 0x69, 0x44, 0xb7, 0x41, 0x5d, 0x9a, 0x3d, 0xcd, 0x4b, 0x73, - 0x93, 0xbe, 0x2e, 0xe3, 0x68, 0xb1, 0x8c, 0xa3, 0x8f, 0x65, 0x1c, 0xbd, 0xac, 0xe2, 0xce, 0x62, - 0x15, 0x77, 0xde, 0x56, 0x71, 0xe7, 0xf9, 0x6e, 0x6c, 0x69, 0x32, 0xcd, 0x12, 0xc0, 0x42, 0x02, - 0x86, 0x02, 0x83, 0xb4, 0x19, 0x0c, 0xc6, 0x28, 0xab, 0x91, 0x2c, 0x50, 0x4f, 0x73, 0x13, 0xea, - 0xe1, 0x83, 0xbc, 0x18, 0x0d, 0x36, 0xdb, 0x0d, 0xda, 0xcd, 0xeb, 0xdf, 0x42, 0xd6, 0x6d, 0xe6, - 0xbe, 0xfc, 0x0c, 0x00, 0x00, 0xff, 0xff, 0x8a, 0xd1, 0xb2, 0xc5, 0xa8, 0x01, 0x00, 0x00, + 0xb0, 0x5e, 0x65, 0x7c, 0xb0, 0xe8, 0x44, 0x74, 0x1c, 0x9d, 0xed, 0x3d, 0x7e, 0x47, 0x3e, 0x62, + 0x02, 0xd0, 0x91, 0xc7, 0x3c, 0x37, 0x3e, 0x05, 0x74, 0xce, 0x40, 0xfd, 0x6e, 0x6a, 0xb5, 0xd8, + 0x6a, 0xaa, 0x07, 0x1b, 0x7e, 0xdb, 0xe2, 0x7b, 0xcd, 0xcf, 0x19, 0x9f, 0x60, 0xa0, 0x3f, 0xce, + 0x76, 0xe3, 0xec, 0xd7, 0xe4, 0x57, 0x5b, 0xb0, 0x9e, 0xd2, 0xda, 0x9b, 0x10, 0xc4, 0xce, 0xd7, + 0x05, 0xeb, 0xc8, 0x8f, 0x58, 0xdf, 0x38, 0x40, 0x6d, 0xdd, 0x58, 0xec, 0x36, 0xa8, 0xcd, 0xfc, + 0x90, 0xf5, 0x68, 0x96, 0xd2, 0xbc, 0x34, 0xa2, 0xdb, 0xa0, 0x2e, 0xcd, 0x9e, 0xe6, 0xa5, 0xb9, + 0x49, 0x5f, 0x97, 0x71, 0xb4, 0x58, 0xc6, 0xd1, 0xc7, 0x32, 0x8e, 0x5e, 0x56, 0x71, 0x67, 0xb1, + 0x8a, 0x3b, 0x6f, 0xab, 0xb8, 0xf3, 0x7c, 0x37, 0xb6, 0x34, 0x99, 0x66, 0x09, 0x60, 0x21, 0x01, + 0x43, 0x81, 0x41, 0xda, 0x0c, 0x06, 0x63, 0x94, 0xd5, 0x48, 0x16, 0xa8, 0xa7, 0xb9, 0x09, 0xf5, + 0xf0, 0x41, 0x5e, 0x5c, 0x0f, 0x36, 0xdb, 0x0d, 0xda, 0xcd, 0xeb, 0xdf, 0x42, 0xd6, 0x6d, 0xe6, + 0xbe, 0xfc, 0x0c, 0x00, 0x00, 0xff, 0xff, 0x6d, 0x82, 0xdb, 0x39, 0xa8, 0x01, 0x00, 0x00, } func (m *Metadata) Marshal() (dAtA []byte, err error) { diff --git a/modules/apps/27-interchain-accounts/types/metadata_test.go b/modules/apps/27-interchain-accounts/types/metadata_test.go index 04ef4342e9f..9dde7d78a3f 100644 --- a/modules/apps/27-interchain-accounts/types/metadata_test.go +++ b/modules/apps/27-interchain-accounts/types/metadata_test.go @@ -1,8 +1,8 @@ package types_test import ( - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) // use TestVersion as metadata being compared against diff --git a/modules/apps/27-interchain-accounts/types/packet.go b/modules/apps/27-interchain-accounts/types/packet.go index f4e0efc9958..524e2ebc44a 100644 --- a/modules/apps/27-interchain-accounts/types/packet.go +++ b/modules/apps/27-interchain-accounts/types/packet.go @@ -10,7 +10,7 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" ) var ( diff --git a/modules/apps/27-interchain-accounts/types/packet.pb.go b/modules/apps/27-interchain-accounts/types/packet.pb.go index 5a63e07f1eb..38185aff87a 100644 --- a/modules/apps/27-interchain-accounts/types/packet.pb.go +++ b/modules/apps/27-interchain-accounts/types/packet.pb.go @@ -171,31 +171,31 @@ func init() { var fileDescriptor_89a080d7401cd393 = []byte{ // 393 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x51, 0x41, 0x8b, 0xd3, 0x40, - 0x18, 0xcd, 0xb8, 0x41, 0xd6, 0x59, 0xd9, 0x2d, 0x61, 0x0f, 0x31, 0x42, 0x08, 0x2b, 0x62, 0x10, - 0x32, 0xe3, 0x56, 0xa1, 0x17, 0x2f, 0xb5, 0x8d, 0xd0, 0x8b, 0x94, 0x98, 0x42, 0xf5, 0x12, 0x26, - 0xd3, 0x31, 0x1d, 0x6c, 0x32, 0xa1, 0x33, 0x29, 0xe6, 0x1f, 0x94, 0x9e, 0xfc, 0x03, 0x3d, 0xf9, - 0x67, 0x3c, 0xf6, 0xe8, 0x51, 0xda, 0x3f, 0x22, 0x99, 0x60, 0xdb, 0x83, 0x07, 0x6f, 0x8f, 0xc7, - 0xf7, 0xde, 0xf7, 0xbd, 0xef, 0xc1, 0x37, 0x3c, 0xa5, 0x98, 0x94, 0xe5, 0x82, 0x53, 0xa2, 0xb8, - 0x28, 0x24, 0xe6, 0x85, 0x62, 0x4b, 0x3a, 0x27, 0xbc, 0x48, 0x08, 0xa5, 0xa2, 0x2a, 0x94, 0xc4, - 0xab, 0x7b, 0x5c, 0x12, 0xfa, 0x95, 0x29, 0x54, 0x2e, 0x85, 0x12, 0xd6, 0x0b, 0x9e, 0x52, 0x74, - 0xae, 0x42, 0xff, 0x50, 0xa1, 0xd5, 0xbd, 0xf3, 0x24, 0x13, 0x22, 0x5b, 0x30, 0xac, 0x65, 0x69, - 0xf5, 0x05, 0x93, 0xa2, 0x6e, 0x3d, 0x9c, 0xdb, 0x4c, 0x64, 0x42, 0x43, 0xdc, 0xa0, 0x96, 0xbd, - 0x5b, 0x03, 0xf8, 0x74, 0x74, 0xf4, 0xea, 0xb7, 0x56, 0x63, 0xbd, 0x7b, 0x48, 0x14, 0xb1, 0xfa, - 0xd0, 0x54, 0x75, 0xc9, 0x6c, 0xe0, 0x01, 0xff, 0xba, 0x1b, 0xa0, 0xff, 0x3c, 0x04, 0xc5, 0x75, - 0xc9, 0x22, 0x2d, 0xb5, 0x2c, 0x68, 0xce, 0x88, 0x22, 0xf6, 0x03, 0x0f, 0xf8, 0x8f, 0x23, 0x8d, - 0x1b, 0x2e, 0x67, 0xb9, 0xb0, 0x2f, 0x3c, 0xe0, 0x3f, 0x8a, 0x34, 0xbe, 0x7b, 0x0b, 0x2f, 0x07, - 0x42, 0xe6, 0x42, 0xc6, 0xdf, 0xac, 0x57, 0xf0, 0x32, 0x67, 0x52, 0x92, 0x8c, 0x49, 0x1b, 0x78, - 0x17, 0xfe, 0x55, 0xf7, 0x16, 0xb5, 0xd1, 0xd0, 0xdf, 0x68, 0xa8, 0x5f, 0xd4, 0xd1, 0x71, 0xea, - 0xe5, 0x14, 0x9a, 0xcd, 0x4e, 0xeb, 0x39, 0xec, 0xc4, 0x9f, 0xc6, 0x61, 0x32, 0xf9, 0xf0, 0x71, - 0x1c, 0x0e, 0x46, 0xef, 0x47, 0xe1, 0xb0, 0x63, 0x38, 0x37, 0x9b, 0xad, 0x77, 0x75, 0x46, 0x59, - 0xcf, 0xe0, 0x8d, 0x1e, 0x0b, 0xa7, 0xe1, 0x60, 0x12, 0x87, 0x49, 0x3c, 0xed, 0x00, 0xe7, 0x7a, - 0xb3, 0xf5, 0xe0, 0x89, 0x71, 0xcc, 0xf5, 0x0f, 0xd7, 0x78, 0x97, 0xfc, 0xdc, 0xbb, 0x60, 0xb7, - 0x77, 0xc1, 0xef, 0xbd, 0x0b, 0xbe, 0x1f, 0x5c, 0x63, 0x77, 0x70, 0x8d, 0x5f, 0x07, 0xd7, 0xf8, - 0x1c, 0x66, 0x5c, 0xcd, 0xab, 0x14, 0x51, 0x91, 0x63, 0xaa, 0x4f, 0xc7, 0x3c, 0xa5, 0x41, 0x26, - 0xf0, 0xaa, 0x87, 0x73, 0x31, 0xab, 0x16, 0x4c, 0x36, 0x65, 0x4b, 0xdc, 0xed, 0x05, 0xa7, 0x47, - 0x05, 0xc7, 0x9e, 0x9b, 0xff, 0xc8, 0xf4, 0xa1, 0x8e, 0xf4, 0xfa, 0x4f, 0x00, 0x00, 0x00, 0xff, - 0xff, 0x13, 0xe7, 0x27, 0x58, 0x1c, 0x02, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x51, 0xc1, 0xaa, 0xd3, 0x40, + 0x14, 0xcd, 0xf8, 0x82, 0x3c, 0xe7, 0xc9, 0x7b, 0x25, 0xbc, 0x45, 0x8c, 0x10, 0xc2, 0x13, 0x31, + 0x08, 0x99, 0xb1, 0x55, 0xd0, 0x85, 0x9b, 0xda, 0x46, 0xe8, 0x46, 0x4a, 0x4c, 0xa1, 0xba, 0x09, + 0x93, 0xe9, 0x98, 0x0e, 0x36, 0x99, 0xd0, 0x99, 0x14, 0xf3, 0x07, 0xa5, 0x2b, 0x7f, 0xa0, 0x2b, + 0x7f, 0xc6, 0x65, 0x97, 0x2e, 0xa5, 0xfd, 0x11, 0xc9, 0x04, 0xdb, 0x2e, 0x5c, 0xb8, 0x3b, 0x1c, + 0xee, 0x39, 0xf7, 0x9e, 0x7b, 0xe0, 0x2b, 0x9e, 0x52, 0x4c, 0xca, 0x72, 0xc1, 0x29, 0x51, 0x5c, + 0x14, 0x12, 0xf3, 0x42, 0xb1, 0x25, 0x9d, 0x13, 0x5e, 0x24, 0x84, 0x52, 0x51, 0x15, 0x4a, 0xe2, + 0x55, 0x17, 0x97, 0x84, 0x7e, 0x65, 0x0a, 0x95, 0x4b, 0xa1, 0x84, 0xf5, 0x8c, 0xa7, 0x14, 0x9d, + 0xab, 0xd0, 0x3f, 0x54, 0x68, 0xd5, 0x75, 0x1e, 0x65, 0x42, 0x64, 0x0b, 0x86, 0xb5, 0x2c, 0xad, + 0xbe, 0x60, 0x52, 0xd4, 0xad, 0x87, 0x73, 0x9b, 0x89, 0x4c, 0x68, 0x88, 0x1b, 0xd4, 0xb2, 0x77, + 0x6b, 0x00, 0x1f, 0x8f, 0x8e, 0x5e, 0xfd, 0xd6, 0x6a, 0xac, 0x77, 0x0f, 0x89, 0x22, 0x56, 0x1f, + 0x9a, 0xaa, 0x2e, 0x99, 0x0d, 0x3c, 0xe0, 0x5f, 0xf7, 0x02, 0xf4, 0x9f, 0x87, 0xa0, 0xb8, 0x2e, + 0x59, 0xa4, 0xa5, 0x96, 0x05, 0xcd, 0x19, 0x51, 0xc4, 0xbe, 0xe7, 0x01, 0xff, 0x61, 0xa4, 0x71, + 0xc3, 0xe5, 0x2c, 0x17, 0xf6, 0x85, 0x07, 0xfc, 0x07, 0x91, 0xc6, 0x77, 0x6f, 0xe1, 0xe5, 0x40, + 0xc8, 0x5c, 0xc8, 0xf8, 0x9b, 0xf5, 0x02, 0x5e, 0xe6, 0x4c, 0x4a, 0x92, 0x31, 0x69, 0x03, 0xef, + 0xc2, 0xbf, 0xea, 0xdd, 0xa2, 0x36, 0x1a, 0xfa, 0x1b, 0x0d, 0xf5, 0x8b, 0x3a, 0x3a, 0x4e, 0x3d, + 0x9f, 0x42, 0xb3, 0xd9, 0x69, 0x3d, 0x85, 0x9d, 0xf8, 0xd3, 0x38, 0x4c, 0x26, 0x1f, 0x3e, 0x8e, + 0xc3, 0xc1, 0xe8, 0xfd, 0x28, 0x1c, 0x76, 0x0c, 0xe7, 0x66, 0xb3, 0xf5, 0xae, 0xce, 0x28, 0xeb, + 0x09, 0xbc, 0xd1, 0x63, 0xe1, 0x34, 0x1c, 0x4c, 0xe2, 0x30, 0x89, 0xa7, 0x1d, 0xe0, 0x5c, 0x6f, + 0xb6, 0x1e, 0x3c, 0x31, 0x8e, 0xb9, 0xfe, 0xe1, 0x1a, 0xef, 0x92, 0x9f, 0x7b, 0x17, 0xec, 0xf6, + 0x2e, 0xf8, 0xbd, 0x77, 0xc1, 0xf7, 0x83, 0x6b, 0xec, 0x0e, 0xae, 0xf1, 0xeb, 0xe0, 0x1a, 0x9f, + 0xc3, 0x8c, 0xab, 0x79, 0x95, 0x22, 0x2a, 0x72, 0x4c, 0xf5, 0xe9, 0x98, 0xa7, 0x34, 0xc8, 0x04, + 0x5e, 0xbd, 0xc1, 0xb9, 0x98, 0x55, 0x0b, 0x26, 0x9b, 0xb2, 0x25, 0xee, 0xbd, 0x0e, 0x4e, 0x8f, + 0x0a, 0x8e, 0x3d, 0x37, 0xff, 0x91, 0xe9, 0x7d, 0x1d, 0xe9, 0xe5, 0x9f, 0x00, 0x00, 0x00, 0xff, + 0xff, 0xf4, 0xb4, 0x4e, 0xa4, 0x1c, 0x02, 0x00, 0x00, } func (m *InterchainAccountPacketData) Marshal() (dAtA []byte, err error) { diff --git a/modules/apps/27-interchain-accounts/types/packet_test.go b/modules/apps/27-interchain-accounts/types/packet_test.go index 6708ff2adaf..59356f50f1b 100644 --- a/modules/apps/27-interchain-accounts/types/packet_test.go +++ b/modules/apps/27-interchain-accounts/types/packet_test.go @@ -3,8 +3,8 @@ package types_test import ( "fmt" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) var largeMemo = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum" diff --git a/modules/apps/27-interchain-accounts/types/port_test.go b/modules/apps/27-interchain-accounts/types/port_test.go index 0a64d517db9..3b4aef8931a 100644 --- a/modules/apps/27-interchain-accounts/types/port_test.go +++ b/modules/apps/27-interchain-accounts/types/port_test.go @@ -3,8 +3,8 @@ package types_test import ( "fmt" - "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (suite *TypesTestSuite) TestNewControllerPortID() { diff --git a/modules/apps/29-fee/client/cli/query.go b/modules/apps/29-fee/client/cli/query.go index e836ac113fe..1cc66343dfa 100644 --- a/modules/apps/29-fee/client/cli/query.go +++ b/modules/apps/29-fee/client/cli/query.go @@ -11,8 +11,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/version" - "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" ) // GetCmdIncentivizedPacket returns the unrelayed incentivized packet for a given packetID diff --git a/modules/apps/29-fee/client/cli/tx.go b/modules/apps/29-fee/client/cli/tx.go index 21ffae00f9a..13852918ae1 100644 --- a/modules/apps/29-fee/client/cli/tx.go +++ b/modules/apps/29-fee/client/cli/tx.go @@ -13,8 +13,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/version" - "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" ) const ( diff --git a/modules/apps/29-fee/fee_test.go b/modules/apps/29-fee/fee_test.go index 390bfd4e571..cc52cb6f2b2 100644 --- a/modules/apps/29-fee/fee_test.go +++ b/modules/apps/29-fee/fee_test.go @@ -5,11 +5,11 @@ import ( testifysuite "github.com/stretchr/testify/suite" - "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" - ibcmock "github.com/cosmos/ibc-go/v7/testing/mock" + "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" + ibcmock "github.com/cosmos/ibc-go/v8/testing/mock" ) type FeeTestSuite struct { diff --git a/modules/apps/29-fee/ibc_middleware.go b/modules/apps/29-fee/ibc_middleware.go index 62d73a27f27..fa97ae7423f 100644 --- a/modules/apps/29-fee/ibc_middleware.go +++ b/modules/apps/29-fee/ibc_middleware.go @@ -8,12 +8,12 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/keeper" - "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/keeper" + "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v8/modules/core/05-port/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) var ( diff --git a/modules/apps/29-fee/ibc_middleware_test.go b/modules/apps/29-fee/ibc_middleware_test.go index 48fbf673ea1..941bce02dd4 100644 --- a/modules/apps/29-fee/ibc_middleware_test.go +++ b/modules/apps/29-fee/ibc_middleware_test.go @@ -9,16 +9,16 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - ibcfee "github.com/cosmos/ibc-go/v7/modules/apps/29-fee" - feekeeper "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/keeper" - "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" - transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/v7/testing" - ibcmock "github.com/cosmos/ibc-go/v7/testing/mock" + ibcfee "github.com/cosmos/ibc-go/v8/modules/apps/29-fee" + feekeeper "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/keeper" + "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + transfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v8/modules/core/05-port/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v8/testing" + ibcmock "github.com/cosmos/ibc-go/v8/testing/mock" ) var ( diff --git a/modules/apps/29-fee/ica_test.go b/modules/apps/29-fee/ica_test.go index a767ad32997..530ffa2f631 100644 --- a/modules/apps/29-fee/ica_test.go +++ b/modules/apps/29-fee/ica_test.go @@ -9,12 +9,12 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - icahosttypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + icahosttypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) var ( diff --git a/modules/apps/29-fee/keeper/escrow.go b/modules/apps/29-fee/keeper/escrow.go index 9f9310272cd..59a1a607a74 100644 --- a/modules/apps/29-fee/keeper/escrow.go +++ b/modules/apps/29-fee/keeper/escrow.go @@ -8,8 +8,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" ) // escrowPacketFee sends the packet fee to the 29-fee module account to hold in escrow diff --git a/modules/apps/29-fee/keeper/escrow_test.go b/modules/apps/29-fee/keeper/escrow_test.go index fee65c5af9c..928238163e0 100644 --- a/modules/apps/29-fee/keeper/escrow_test.go +++ b/modules/apps/29-fee/keeper/escrow_test.go @@ -7,10 +7,10 @@ import ( "github.com/cometbft/cometbft/crypto/secp256k1" - "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" - transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/v7/testing/mock" + "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + transfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v8/testing/mock" ) func (suite *KeeperTestSuite) TestDistributeFee() { diff --git a/modules/apps/29-fee/keeper/events.go b/modules/apps/29-fee/keeper/events.go index e367482649e..e173538337a 100644 --- a/modules/apps/29-fee/keeper/events.go +++ b/modules/apps/29-fee/keeper/events.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" ) // emitIncentivizedPacketEvent emits an event containing information on the total amount of fees incentivizing diff --git a/modules/apps/29-fee/keeper/events_test.go b/modules/apps/29-fee/keeper/events_test.go index 11df4ee1782..a3b5a87e414 100644 --- a/modules/apps/29-fee/keeper/events_test.go +++ b/modules/apps/29-fee/keeper/events_test.go @@ -7,12 +7,12 @@ import ( abcitypes "github.com/cometbft/cometbft/abci/types" - "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" - transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + transfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (suite *KeeperTestSuite) TestIncentivizePacketEvent() { diff --git a/modules/apps/29-fee/keeper/export_test.go b/modules/apps/29-fee/keeper/export_test.go index 3600380f0a8..382dde7a805 100644 --- a/modules/apps/29-fee/keeper/export_test.go +++ b/modules/apps/29-fee/keeper/export_test.go @@ -4,7 +4,7 @@ package keeper This file is to allow for unexported functions and fields to be accessible to the testing package. */ -import porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" +import porttypes "github.com/cosmos/ibc-go/v8/modules/core/05-port/types" // GetICS4Wrapper is a getter for the keeper's ICS4Wrapper. func (k *Keeper) GetICS4Wrapper() porttypes.ICS4Wrapper { diff --git a/modules/apps/29-fee/keeper/genesis.go b/modules/apps/29-fee/keeper/genesis.go index 256b444e006..cf2657f344b 100644 --- a/modules/apps/29-fee/keeper/genesis.go +++ b/modules/apps/29-fee/keeper/genesis.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" + "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" ) // InitGenesis initializes the fee middleware application state from a provided genesis state diff --git a/modules/apps/29-fee/keeper/genesis_test.go b/modules/apps/29-fee/keeper/genesis_test.go index b2359fc17b0..60eba99b595 100644 --- a/modules/apps/29-fee/keeper/genesis_test.go +++ b/modules/apps/29-fee/keeper/genesis_test.go @@ -1,9 +1,9 @@ package keeper_test import ( - "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (suite *KeeperTestSuite) TestInitGenesis() { diff --git a/modules/apps/29-fee/keeper/grpc_query.go b/modules/apps/29-fee/keeper/grpc_query.go index 297d72efc1e..32fabd9e835 100644 --- a/modules/apps/29-fee/keeper/grpc_query.go +++ b/modules/apps/29-fee/keeper/grpc_query.go @@ -12,7 +12,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" + "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" ) var _ types.QueryServer = (*Keeper)(nil) diff --git a/modules/apps/29-fee/keeper/grpc_query_test.go b/modules/apps/29-fee/keeper/grpc_query_test.go index 1d60a9395cd..c8fb680ba63 100644 --- a/modules/apps/29-fee/keeper/grpc_query_test.go +++ b/modules/apps/29-fee/keeper/grpc_query_test.go @@ -10,9 +10,9 @@ import ( "github.com/cometbft/cometbft/crypto/secp256k1" - "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (suite *KeeperTestSuite) TestQueryIncentivizedPackets() { diff --git a/modules/apps/29-fee/keeper/keeper.go b/modules/apps/29-fee/keeper/keeper.go index 328a3839be1..c8be8a96295 100644 --- a/modules/apps/29-fee/keeper/keeper.go +++ b/modules/apps/29-fee/keeper/keeper.go @@ -8,10 +8,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v8/modules/core/05-port/types" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // Middleware must implement types.ChannelKeeper and types.PortKeeper expected interfaces diff --git a/modules/apps/29-fee/keeper/keeper_test.go b/modules/apps/29-fee/keeper/keeper_test.go index 9cf73d3ffba..235daf52035 100644 --- a/modules/apps/29-fee/keeper/keeper_test.go +++ b/modules/apps/29-fee/keeper/keeper_test.go @@ -10,12 +10,12 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/keeper" - "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" - channelkeeper "github.com/cosmos/ibc-go/v7/modules/core/04-channel/keeper" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" - ibcmock "github.com/cosmos/ibc-go/v7/testing/mock" + "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/keeper" + "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + channelkeeper "github.com/cosmos/ibc-go/v8/modules/core/04-channel/keeper" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" + ibcmock "github.com/cosmos/ibc-go/v8/testing/mock" ) var ( diff --git a/modules/apps/29-fee/keeper/msg_server.go b/modules/apps/29-fee/keeper/msg_server.go index 12dd50506cf..6c6d9b810f4 100644 --- a/modules/apps/29-fee/keeper/msg_server.go +++ b/modules/apps/29-fee/keeper/msg_server.go @@ -7,9 +7,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" + "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" ) var _ types.MsgServer = (*Keeper)(nil) diff --git a/modules/apps/29-fee/keeper/msg_server_test.go b/modules/apps/29-fee/keeper/msg_server_test.go index fa7c7c1f347..dd4a0e4e7a2 100644 --- a/modules/apps/29-fee/keeper/msg_server_test.go +++ b/modules/apps/29-fee/keeper/msg_server_test.go @@ -6,12 +6,12 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" - transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" - ibcmock "github.com/cosmos/ibc-go/v7/testing/mock" + "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + transfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" + ibcmock "github.com/cosmos/ibc-go/v8/testing/mock" ) func (suite *KeeperTestSuite) TestRegisterPayee() { diff --git a/modules/apps/29-fee/keeper/relay.go b/modules/apps/29-fee/keeper/relay.go index c5d928b3483..d069045c919 100644 --- a/modules/apps/29-fee/keeper/relay.go +++ b/modules/apps/29-fee/keeper/relay.go @@ -8,10 +8,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // SendPacket wraps the ICS4Wrapper SendPacket function diff --git a/modules/apps/29-fee/keeper/relay_test.go b/modules/apps/29-fee/keeper/relay_test.go index f4aa8b6b7bd..14b69cd8da5 100644 --- a/modules/apps/29-fee/keeper/relay_test.go +++ b/modules/apps/29-fee/keeper/relay_test.go @@ -1,11 +1,11 @@ package keeper_test import ( - "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" - ibcmock "github.com/cosmos/ibc-go/v7/testing/mock" + "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" + ibcmock "github.com/cosmos/ibc-go/v8/testing/mock" ) func (suite *KeeperTestSuite) TestWriteAcknowledgementAsync() { diff --git a/modules/apps/29-fee/module.go b/modules/apps/29-fee/module.go index 9639430817e..9006f4713d1 100644 --- a/modules/apps/29-fee/module.go +++ b/modules/apps/29-fee/module.go @@ -19,9 +19,9 @@ import ( abci "github.com/cometbft/cometbft/abci/types" - "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/client/cli" - "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/keeper" - "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" + "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/client/cli" + "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/keeper" + "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" ) var ( diff --git a/modules/apps/29-fee/transfer_test.go b/modules/apps/29-fee/transfer_test.go index 0cdc934daf7..287a5cad1b8 100644 --- a/modules/apps/29-fee/transfer_test.go +++ b/modules/apps/29-fee/transfer_test.go @@ -3,10 +3,10 @@ package fee_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" - transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + transfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) // Integration test to ensure ics29 works with ics20 diff --git a/modules/apps/29-fee/types/ack.pb.go b/modules/apps/29-fee/types/ack.pb.go index c078e868113..4cc5d8df63e 100644 --- a/modules/apps/29-fee/types/ack.pb.go +++ b/modules/apps/29-fee/types/ack.pb.go @@ -93,25 +93,25 @@ func init() { func init() { proto.RegisterFile("ibc/applications/fee/v1/ack.proto", fileDescriptor_ab2834946fb65ea4) } var fileDescriptor_ab2834946fb65ea4 = []byte{ - // 283 bytes of a gzipped FileDescriptorProto + // 284 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0xd0, 0xcb, 0x4a, 0xf4, 0x30, 0x18, 0xc6, 0xf1, 0xe6, 0xfb, 0x40, 0xb4, 0xb8, 0xaa, 0x87, 0x19, 0x10, 0x42, 0x75, 0xd5, 0xcd, - 0x34, 0x8c, 0x47, 0x5c, 0xd6, 0x9d, 0x2b, 0xa1, 0xee, 0xdc, 0x94, 0x34, 0x79, 0x5b, 0xc3, 0xb4, - 0x49, 0x48, 0xd2, 0x0e, 0xf5, 0x2a, 0xbc, 0x20, 0x2f, 0xc0, 0xe5, 0x2c, 0x5d, 0x4a, 0x7b, 0x23, - 0x52, 0x2b, 0x78, 0xd8, 0xe6, 0x97, 0x87, 0x17, 0xfe, 0xfe, 0xb1, 0xc8, 0x19, 0xa1, 0x5a, 0x57, - 0x82, 0x51, 0x27, 0x94, 0xb4, 0xa4, 0x00, 0x20, 0xed, 0x92, 0x50, 0xb6, 0x8a, 0xb5, 0x51, 0x4e, - 0x05, 0x33, 0x91, 0xb3, 0xf8, 0xe7, 0x97, 0xb8, 0x00, 0x88, 0xdb, 0xe5, 0xc9, 0x0b, 0xf2, 0x8f, - 0x6e, 0x25, 0x03, 0xe9, 0x44, 0x2b, 0x9e, 0x80, 0x27, 0x6c, 0x25, 0xd5, 0xba, 0x02, 0x5e, 0x42, - 0x0d, 0xd2, 0x05, 0xc4, 0xdf, 0xa3, 0x5a, 0x67, 0xf4, 0xf7, 0xf3, 0x1c, 0x85, 0x28, 0xda, 0x4d, - 0x03, 0xaa, 0xf5, 0xdf, 0xc1, 0xa5, 0x3f, 0x2b, 0x94, 0x59, 0x53, 0xc3, 0x33, 0x03, 0x15, 0xed, - 0xc0, 0x64, 0x94, 0x73, 0x03, 0xd6, 0xce, 0xff, 0x85, 0x28, 0xda, 0x49, 0x0f, 0xbe, 0x38, 0x9d, - 0x34, 0x99, 0x30, 0x38, 0xf7, 0x0f, 0x1b, 0xc9, 0xc1, 0x54, 0x9d, 0x90, 0x65, 0x36, 0xde, 0xb4, - 0x0d, 0x63, 0xe3, 0xec, 0x7f, 0x88, 0xa2, 0xed, 0x74, 0xff, 0x5b, 0x13, 0xad, 0xef, 0x27, 0xbb, - 0xb9, 0x7b, 0xed, 0x31, 0xda, 0xf4, 0x18, 0xbd, 0xf7, 0x18, 0x3d, 0x0f, 0xd8, 0xdb, 0x0c, 0xd8, - 0x7b, 0x1b, 0xb0, 0xf7, 0x70, 0x51, 0x0a, 0xf7, 0xd8, 0xe4, 0x31, 0x53, 0x35, 0x61, 0xca, 0xd6, - 0xca, 0x12, 0x91, 0xb3, 0x45, 0xa9, 0x48, 0x7b, 0x45, 0x6a, 0xc5, 0x9b, 0x0a, 0xec, 0x18, 0xcd, - 0x92, 0xd3, 0xeb, 0xc5, 0xd8, 0xcb, 0x75, 0x1a, 0x6c, 0xbe, 0xf5, 0xd9, 0xeb, 0xec, 0x23, 0x00, - 0x00, 0xff, 0xff, 0xfc, 0x47, 0xb1, 0xa5, 0x54, 0x01, 0x00, 0x00, + 0x34, 0x8c, 0x27, 0x74, 0x59, 0x77, 0xae, 0x84, 0xba, 0x73, 0x53, 0xd2, 0xe4, 0x6d, 0x0d, 0xd3, + 0x26, 0x21, 0x49, 0x3b, 0xd4, 0xab, 0xf0, 0x82, 0xbc, 0x00, 0x97, 0xb3, 0x74, 0x29, 0xed, 0x8d, + 0x48, 0xad, 0xe0, 0x61, 0x9b, 0x5f, 0x1e, 0x5e, 0xf8, 0xfb, 0xc7, 0x22, 0x67, 0x84, 0x6a, 0x5d, + 0x09, 0x46, 0x9d, 0x50, 0xd2, 0x92, 0x02, 0x80, 0xb4, 0x4b, 0x42, 0xd9, 0x2a, 0xd6, 0x46, 0x39, + 0x15, 0xcc, 0x44, 0xce, 0xe2, 0x9f, 0x5f, 0xe2, 0x02, 0x20, 0x6e, 0x97, 0x27, 0x2f, 0xc8, 0x3f, + 0xba, 0x95, 0x0c, 0xa4, 0x13, 0xad, 0x78, 0x02, 0x9e, 0xb0, 0x95, 0x54, 0xeb, 0x0a, 0x78, 0x09, + 0x35, 0x48, 0x17, 0x10, 0x7f, 0x8f, 0x6a, 0x9d, 0xd1, 0xdf, 0xcf, 0x73, 0x14, 0xa2, 0x68, 0x37, + 0x0d, 0xa8, 0xd6, 0x7f, 0x07, 0x97, 0xfe, 0xac, 0x50, 0x66, 0x4d, 0x0d, 0xcf, 0x0c, 0x54, 0xb4, + 0x03, 0x93, 0x51, 0xce, 0x0d, 0x58, 0x3b, 0xff, 0x17, 0xa2, 0x68, 0x27, 0x3d, 0xf8, 0xe2, 0x74, + 0xd2, 0x64, 0xc2, 0xe0, 0xdc, 0x3f, 0x6c, 0x24, 0x07, 0x53, 0x75, 0x42, 0x96, 0xd9, 0x78, 0xd3, + 0x36, 0x8c, 0x8d, 0xb3, 0xff, 0x21, 0x8a, 0xb6, 0xd3, 0xfd, 0x6f, 0x4d, 0xb4, 0xbe, 0x9f, 0xec, + 0xe6, 0xee, 0xb5, 0xc7, 0x68, 0xd3, 0x63, 0xf4, 0xde, 0x63, 0xf4, 0x3c, 0x60, 0x6f, 0x33, 0x60, + 0xef, 0x6d, 0xc0, 0xde, 0xc3, 0x45, 0x29, 0xdc, 0x63, 0x93, 0xc7, 0x4c, 0xd5, 0x84, 0x29, 0x5b, + 0x2b, 0x4b, 0x44, 0xce, 0x16, 0xa5, 0x22, 0xed, 0x15, 0xa9, 0x15, 0x6f, 0x2a, 0xb0, 0x63, 0x34, + 0x4b, 0x4e, 0xaf, 0x17, 0x63, 0x2f, 0xd7, 0x69, 0xb0, 0xf9, 0xd6, 0x67, 0xaf, 0xb3, 0x8f, 0x00, + 0x00, 0x00, 0xff, 0xff, 0x42, 0x8b, 0xbd, 0x6c, 0x54, 0x01, 0x00, 0x00, } func (m *IncentivizedAcknowledgement) Marshal() (dAtA []byte, err error) { diff --git a/modules/apps/29-fee/types/expected_keepers.go b/modules/apps/29-fee/types/expected_keepers.go index 830a542431b..3b1105af7f4 100644 --- a/modules/apps/29-fee/types/expected_keepers.go +++ b/modules/apps/29-fee/types/expected_keepers.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" ) // AccountKeeper defines the contract required for account APIs. diff --git a/modules/apps/29-fee/types/fee.go b/modules/apps/29-fee/types/fee.go index 103a8a47046..a34715db08e 100644 --- a/modules/apps/29-fee/types/fee.go +++ b/modules/apps/29-fee/types/fee.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" ) // NewPacketFee creates and returns a new PacketFee struct including the incentivization fees, refund address and relayers diff --git a/modules/apps/29-fee/types/fee.pb.go b/modules/apps/29-fee/types/fee.pb.go index c678c1c867f..7bdce36e9a3 100644 --- a/modules/apps/29-fee/types/fee.pb.go +++ b/modules/apps/29-fee/types/fee.pb.go @@ -10,7 +10,7 @@ import ( _ "github.com/cosmos/cosmos-sdk/types/msgservice" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" - types1 "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + types1 "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" io "io" math "math" math_bits "math/bits" @@ -269,7 +269,7 @@ var fileDescriptor_cb3319f1af2a53e5 = []byte{ // 490 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x93, 0x31, 0x6f, 0xd3, 0x40, 0x14, 0xc7, 0xe3, 0x04, 0xb5, 0xcd, 0x45, 0x30, 0x98, 0x4a, 0x2d, 0x11, 0xb8, 0xc5, 0x12, 0x52, - 0x84, 0x94, 0x3b, 0x12, 0x40, 0x08, 0x26, 0x08, 0x52, 0xa4, 0x4c, 0xa0, 0x2c, 0x48, 0x2c, 0xd5, + 0x84, 0x94, 0x3b, 0x12, 0x40, 0x02, 0x26, 0x08, 0x52, 0xa4, 0x4c, 0xa0, 0x2c, 0x48, 0x2c, 0xd5, 0xf9, 0xee, 0xd9, 0x3d, 0xc5, 0xf6, 0x59, 0x3e, 0x27, 0x52, 0x57, 0x3e, 0x01, 0x2b, 0x33, 0x1b, 0x13, 0x5f, 0x81, 0xad, 0x63, 0x47, 0x26, 0x40, 0xc9, 0xc0, 0xd7, 0x40, 0xef, 0x7c, 0x58, 0x55, 0x51, 0x17, 0x94, 0xc9, 0xf7, 0xee, 0xee, 0xfd, 0x7f, 0x7f, 0xbf, 0x77, 0x8f, 0xdc, 0x57, 0x91, @@ -297,7 +297,7 @@ var fileDescriptor_cb3319f1af2a53e5 = []byte{ 0xc0, 0xfb, 0xb8, 0x09, 0x5a, 0x17, 0x9b, 0xa0, 0xf5, 0x7d, 0x13, 0xb4, 0xde, 0x3f, 0xfd, 0xb7, 0xd5, 0x2a, 0x12, 0xc3, 0x44, 0xb3, 0xd5, 0x33, 0x96, 0x69, 0xb9, 0x4c, 0xc1, 0xe0, 0x18, 0x1b, 0x36, 0x7e, 0x3e, 0xc4, 0x09, 0xb6, 0xdd, 0x8f, 0x76, 0xec, 0xd8, 0x3c, 0xfe, 0x13, 0x00, 0x00, - 0xff, 0xff, 0xb0, 0x8c, 0x0d, 0x3d, 0xe6, 0x03, 0x00, 0x00, + 0xff, 0xff, 0x0e, 0x40, 0x01, 0xf4, 0xe6, 0x03, 0x00, 0x00, } func (m *Fee) Marshal() (dAtA []byte, err error) { diff --git a/modules/apps/29-fee/types/fee_test.go b/modules/apps/29-fee/types/fee_test.go index a17b42693b5..99e45da8709 100644 --- a/modules/apps/29-fee/types/fee_test.go +++ b/modules/apps/29-fee/types/fee_test.go @@ -11,7 +11,7 @@ import ( "github.com/cometbft/cometbft/crypto/secp256k1" - "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" + "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" ) var ( diff --git a/modules/apps/29-fee/types/genesis.go b/modules/apps/29-fee/types/genesis.go index b6d2143e28a..483be709fd8 100644 --- a/modules/apps/29-fee/types/genesis.go +++ b/modules/apps/29-fee/types/genesis.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" ) // NewGenesisState creates a 29-fee GenesisState instance. diff --git a/modules/apps/29-fee/types/genesis.pb.go b/modules/apps/29-fee/types/genesis.pb.go index caca0e2d681..5a2ec0dd8fb 100644 --- a/modules/apps/29-fee/types/genesis.pb.go +++ b/modules/apps/29-fee/types/genesis.pb.go @@ -7,7 +7,7 @@ import ( fmt "fmt" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" - types "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + types "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" io "io" math "math" math_bits "math/bits" @@ -361,7 +361,7 @@ var fileDescriptor_7191992e856dff95 = []byte{ // 550 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54, 0xcf, 0x6f, 0xd3, 0x30, 0x14, 0x6e, 0xf6, 0x93, 0x7a, 0x88, 0xae, 0x56, 0xd1, 0xa2, 0xc1, 0xc2, 0xa8, 0x84, 0x54, 0x21, - 0x35, 0x51, 0x0b, 0x08, 0x71, 0x03, 0x26, 0x86, 0x2a, 0x0e, 0x4c, 0xe5, 0x06, 0x48, 0x21, 0xb1, + 0x35, 0x51, 0x0b, 0x48, 0x70, 0x03, 0x26, 0x86, 0x2a, 0x0e, 0x4c, 0xe5, 0x06, 0x48, 0x21, 0xb1, 0x5f, 0x32, 0x8b, 0x36, 0x8e, 0x6c, 0xb7, 0xa8, 0x37, 0x2e, 0xdc, 0xe1, 0xbf, 0xda, 0x71, 0x47, 0x4e, 0x08, 0xb5, 0xff, 0x08, 0xb2, 0xe3, 0x8c, 0xae, 0x23, 0x08, 0x71, 0xf3, 0x7b, 0xef, 0xfb, 0xde, 0x67, 0x7f, 0x4f, 0xcf, 0xe8, 0x1e, 0x8b, 0x49, 0x10, 0xe5, 0xf9, 0x88, 0x91, 0x48, 0x31, @@ -392,8 +392,8 @@ var fileDescriptor_7191992e856dff95 = []byte{ 0xaf, 0x0b, 0xaf, 0x76, 0xbe, 0xf0, 0x6a, 0xdf, 0x17, 0x5e, 0xed, 0xed, 0xa3, 0x94, 0xa9, 0xd3, 0x49, 0xec, 0x13, 0x3e, 0x0e, 0x08, 0x97, 0x63, 0x2e, 0x03, 0x16, 0x93, 0x6e, 0xca, 0x83, 0xe9, 0xe3, 0x60, 0xcc, 0xe9, 0x64, 0x04, 0x52, 0xff, 0x1f, 0x32, 0xe8, 0x3f, 0xe9, 0xea, 0xaf, 0x43, - 0xcd, 0x72, 0x90, 0xf1, 0x96, 0xf9, 0x17, 0x1e, 0xfc, 0x0a, 0x00, 0x00, 0xff, 0xff, 0x34, 0xa0, - 0xbc, 0xd7, 0xb5, 0x04, 0x00, 0x00, + 0xcd, 0x72, 0x90, 0xf1, 0x96, 0xf9, 0x17, 0x1e, 0xfc, 0x0a, 0x00, 0x00, 0xff, 0xff, 0x8a, 0x6c, + 0xb0, 0x1e, 0xb5, 0x04, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/modules/apps/29-fee/types/genesis_test.go b/modules/apps/29-fee/types/genesis_test.go index 082efe4dd3e..8741de1c90a 100644 --- a/modules/apps/29-fee/types/genesis_test.go +++ b/modules/apps/29-fee/types/genesis_test.go @@ -9,9 +9,9 @@ import ( "github.com/cometbft/cometbft/crypto/secp256k1" - "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func TestValidateDefaultGenesis(t *testing.T) { diff --git a/modules/apps/29-fee/types/keys.go b/modules/apps/29-fee/types/keys.go index 33e9a1ba7b2..6a967d4cd7b 100644 --- a/modules/apps/29-fee/types/keys.go +++ b/modules/apps/29-fee/types/keys.go @@ -7,8 +7,8 @@ import ( errorsmod "cosmossdk.io/errors" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" ) const ( diff --git a/modules/apps/29-fee/types/keys_test.go b/modules/apps/29-fee/types/keys_test.go index d9965c4bf98..7c74ea62860 100644 --- a/modules/apps/29-fee/types/keys_test.go +++ b/modules/apps/29-fee/types/keys_test.go @@ -6,9 +6,9 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) var validPacketID = channeltypes.NewPacketID(ibctesting.MockFeePort, ibctesting.FirstChannelID, 1) diff --git a/modules/apps/29-fee/types/metadata.pb.go b/modules/apps/29-fee/types/metadata.pb.go index 8e7e4eda257..d5a8f1ef4c1 100644 --- a/modules/apps/29-fee/types/metadata.pb.go +++ b/modules/apps/29-fee/types/metadata.pb.go @@ -98,10 +98,10 @@ var fileDescriptor_03d0f000eda681ce = []byte{ 0x2c, 0x28, 0x80, 0x2a, 0x70, 0xf2, 0x3f, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xd3, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0xfd, 0xe4, 0xfc, 0xe2, - 0xdc, 0xfc, 0x62, 0xfd, 0xcc, 0xa4, 0x64, 0xdd, 0xf4, 0x7c, 0xfd, 0x32, 0x73, 0xfd, 0xdc, 0xfc, + 0xdc, 0xfc, 0x62, 0xfd, 0xcc, 0xa4, 0x64, 0xdd, 0xf4, 0x7c, 0xfd, 0x32, 0x0b, 0xfd, 0xdc, 0xfc, 0x94, 0xd2, 0x9c, 0xd4, 0x62, 0x90, 0x47, 0x8a, 0xf5, 0x8d, 0x2c, 0x75, 0x41, 0x7e, 0x28, 0xa9, - 0x2c, 0x48, 0x2d, 0x4e, 0x62, 0x03, 0x3b, 0xdf, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0x46, 0xa6, - 0x80, 0x8c, 0xe8, 0x00, 0x00, 0x00, + 0x2c, 0x48, 0x2d, 0x4e, 0x62, 0x03, 0x3b, 0xdf, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0xf8, 0x6a, + 0x8c, 0x45, 0xe8, 0x00, 0x00, 0x00, } func (m *Metadata) Marshal() (dAtA []byte, err error) { diff --git a/modules/apps/29-fee/types/metadata_test.go b/modules/apps/29-fee/types/metadata_test.go index 2261cc3efbd..ff0e96236ee 100644 --- a/modules/apps/29-fee/types/metadata_test.go +++ b/modules/apps/29-fee/types/metadata_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" - ibcmock "github.com/cosmos/ibc-go/v7/testing/mock" + "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + ibcmock "github.com/cosmos/ibc-go/v8/testing/mock" ) func TestMetadataFromVersion(t *testing.T) { diff --git a/modules/apps/29-fee/types/msgs.go b/modules/apps/29-fee/types/msgs.go index d76358af5ff..57690173269 100644 --- a/modules/apps/29-fee/types/msgs.go +++ b/modules/apps/29-fee/types/msgs.go @@ -8,9 +8,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" legacytx "github.com/cosmos/cosmos-sdk/x/auth/migrations/legacytx" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" ) // msg types diff --git a/modules/apps/29-fee/types/msgs_test.go b/modules/apps/29-fee/types/msgs_test.go index fee8c236522..adee3def072 100644 --- a/modules/apps/29-fee/types/msgs_test.go +++ b/modules/apps/29-fee/types/msgs_test.go @@ -9,9 +9,9 @@ import ( "github.com/cometbft/cometbft/crypto/secp256k1" - "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func TestMsgRegisterPayeeValidation(t *testing.T) { diff --git a/modules/apps/29-fee/types/query.pb.go b/modules/apps/29-fee/types/query.pb.go index ee4d344a336..02a958cc5b6 100644 --- a/modules/apps/29-fee/types/query.pb.go +++ b/modules/apps/29-fee/types/query.pb.go @@ -12,7 +12,7 @@ import ( _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" - types "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + types "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" @@ -1096,86 +1096,86 @@ func init() { } var fileDescriptor_0638a8a78ca2503c = []byte{ - // 1251 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x58, 0xdf, 0x6e, 0xdc, 0xc4, - 0x17, 0xce, 0x6c, 0xd3, 0x26, 0x39, 0x49, 0xa5, 0x5f, 0x26, 0x91, 0x9a, 0x5a, 0xc9, 0x26, 0x75, - 0x7f, 0xa5, 0x21, 0x68, 0x6d, 0xb2, 0x55, 0x49, 0x73, 0x05, 0x49, 0x20, 0x25, 0x50, 0x68, 0x58, - 0x22, 0x81, 0x10, 0x68, 0xeb, 0xb5, 0x67, 0x1d, 0x2b, 0x1b, 0x8f, 0x6b, 0x7b, 0x57, 0xa4, 0x21, - 0xfc, 0x2f, 0x20, 0x81, 0x54, 0x24, 0x9e, 0x02, 0x24, 0x1e, 0x80, 0x37, 0xe8, 0x55, 0x15, 0xa9, - 0x17, 0x20, 0x2e, 0x00, 0x25, 0x88, 0x67, 0xe0, 0x02, 0x24, 0xe4, 0x99, 0xf1, 0xae, 0x37, 0xb6, - 0xf7, 0x4f, 0xd8, 0x84, 0xab, 0xd8, 0x33, 0x73, 0xce, 0xf9, 0xbe, 0x6f, 0xc6, 0x73, 0xbe, 0x0d, - 0x5c, 0xb6, 0x4a, 0xba, 0xaa, 0x39, 0x4e, 0xc5, 0xd2, 0x35, 0xdf, 0xa2, 0xb6, 0xa7, 0x96, 0x09, - 0x51, 0x6b, 0xf3, 0xea, 0xdd, 0x2a, 0x71, 0x77, 0x14, 0xc7, 0xa5, 0x3e, 0xc5, 0x17, 0xac, 0x92, - 0xae, 0x44, 0x17, 0x29, 0x65, 0x42, 0x94, 0xda, 0xbc, 0x34, 0x6e, 0x52, 0x93, 0xb2, 0x35, 0x6a, - 0xf0, 0xc4, 0x97, 0x4b, 0x93, 0x26, 0xa5, 0x66, 0x85, 0xa8, 0x9a, 0x63, 0xa9, 0x9a, 0x6d, 0x53, - 0x5f, 0x04, 0xf1, 0xd9, 0xac, 0x4e, 0xbd, 0x6d, 0xea, 0xa9, 0x25, 0xcd, 0x0b, 0x0a, 0x95, 0x88, - 0xaf, 0xcd, 0xab, 0x3a, 0xb5, 0x6c, 0x31, 0x3f, 0x17, 0x9d, 0x67, 0x28, 0xea, 0xab, 0x1c, 0xcd, - 0xb4, 0x6c, 0x96, 0x4c, 0xac, 0xbd, 0x94, 0x86, 0x3e, 0xc0, 0xc7, 0x97, 0x5c, 0x49, 0x5b, 0x62, - 0x12, 0x9b, 0x78, 0x96, 0x17, 0xcd, 0xa4, 0x53, 0x97, 0xa8, 0xfa, 0xa6, 0x66, 0xdb, 0xa4, 0x12, - 0x2c, 0x11, 0x8f, 0x7c, 0x89, 0xfc, 0x15, 0x82, 0xe9, 0xd7, 0x02, 0x3c, 0x6b, 0xb6, 0x4e, 0x6c, - 0xdf, 0xaa, 0x59, 0xf7, 0x88, 0xb1, 0xae, 0xe9, 0x5b, 0xc4, 0xf7, 0x0a, 0xe4, 0x6e, 0x95, 0x78, - 0x3e, 0x5e, 0x05, 0x68, 0x80, 0x9c, 0x40, 0x33, 0x68, 0x76, 0x38, 0xff, 0x84, 0xc2, 0x19, 0x29, - 0x01, 0x23, 0x85, 0xeb, 0x2a, 0x18, 0x29, 0xeb, 0x9a, 0x49, 0x44, 0x6c, 0x21, 0x12, 0x89, 0x2f, - 0xc1, 0x08, 0x5b, 0x58, 0xdc, 0x24, 0x96, 0xb9, 0xe9, 0x4f, 0x64, 0x66, 0xd0, 0x6c, 0x7f, 0x61, - 0x98, 0x8d, 0xbd, 0xc8, 0x86, 0xe4, 0xc7, 0x08, 0x66, 0xd2, 0xe1, 0x78, 0x0e, 0xb5, 0x3d, 0x82, - 0xcb, 0x30, 0x6e, 0x45, 0xa6, 0x8b, 0x0e, 0x9f, 0x9f, 0x40, 0x33, 0x67, 0x66, 0x87, 0xf3, 0x39, - 0x25, 0x65, 0x63, 0x95, 0x35, 0x23, 0x88, 0x29, 0x5b, 0x61, 0xc6, 0x55, 0x42, 0xbc, 0xe5, 0xfe, - 0x87, 0xbf, 0x4c, 0xf7, 0x15, 0xc6, 0xac, 0x78, 0x3d, 0x7c, 0xb3, 0x89, 0x77, 0x86, 0xf1, 0xbe, - 0xda, 0x96, 0x37, 0x07, 0x19, 0x25, 0x2e, 0xdf, 0x47, 0x90, 0x4d, 0x61, 0x15, 0x6a, 0xfc, 0x1c, - 0x0c, 0x71, 0x1a, 0x45, 0xcb, 0x10, 0x12, 0x4f, 0x31, 0x22, 0xc1, 0xf6, 0x29, 0xe1, 0x9e, 0xd5, - 0x82, 0x22, 0xc1, 0xaa, 0x35, 0x43, 0x00, 0x1f, 0x74, 0xc4, 0x7b, 0x27, 0xea, 0x7e, 0x9e, 0xbe, - 0xd9, 0x75, 0x71, 0x0d, 0x18, 0x4b, 0x10, 0x57, 0x40, 0x3a, 0x96, 0xb6, 0x38, 0xae, 0xad, 0xfc, - 0x08, 0xc1, 0x93, 0x69, 0xfb, 0xbc, 0x4a, 0xdd, 0x15, 0xce, 0xb7, 0xd7, 0x07, 0xf0, 0x02, 0x0c, - 0x38, 0xd4, 0x65, 0x12, 0x07, 0xea, 0x0c, 0x15, 0xce, 0x05, 0xaf, 0x6b, 0x06, 0x9e, 0x02, 0x10, - 0x12, 0x07, 0x73, 0x67, 0xd8, 0xdc, 0x90, 0x18, 0x49, 0x90, 0xb6, 0x3f, 0x2e, 0xed, 0x8f, 0x08, - 0xe6, 0x3a, 0x21, 0x24, 0x54, 0xbe, 0xd3, 0xc3, 0x23, 0x7c, 0xc2, 0x87, 0xf7, 0x1d, 0xb8, 0xc8, - 0x88, 0x6d, 0x50, 0x5f, 0xab, 0x14, 0x88, 0x5e, 0x63, 0x35, 0x7b, 0x75, 0x6c, 0xe5, 0xcf, 0x10, - 0x48, 0x49, 0xf9, 0x85, 0x50, 0x9b, 0x30, 0xe4, 0x12, 0xbd, 0x56, 0x2c, 0x13, 0x12, 0xaa, 0x73, - 0xb1, 0x89, 0x45, 0x88, 0x7f, 0x85, 0x5a, 0xf6, 0xf2, 0xd3, 0x41, 0xf2, 0xef, 0x7e, 0x9d, 0x9e, - 0x35, 0x2d, 0x7f, 0xb3, 0x5a, 0x52, 0x74, 0xba, 0xad, 0x8a, 0x9b, 0x97, 0xff, 0xc9, 0x79, 0xc6, - 0x96, 0xea, 0xef, 0x38, 0xc4, 0x63, 0x01, 0x5e, 0x61, 0xd0, 0x15, 0x15, 0xe5, 0xb7, 0x61, 0xa2, - 0x81, 0x63, 0x49, 0xdf, 0xea, 0x2d, 0xcd, 0x4f, 0x50, 0x54, 0xc6, 0x7a, 0xfa, 0xfa, 0x8d, 0x36, - 0xa8, 0xe9, 0x5b, 0x27, 0x46, 0x72, 0x40, 0xe3, 0xf5, 0xe4, 0x3b, 0x30, 0xd9, 0x00, 0xb1, 0x61, - 0x6d, 0x13, 0x5a, 0xf5, 0x7b, 0xcb, 0xf3, 0x01, 0x82, 0xa9, 0x94, 0x12, 0x82, 0xab, 0x0d, 0x23, - 0x3e, 0x1f, 0x3e, 0x31, 0xbe, 0xc3, 0x7e, 0xa3, 0xae, 0x7c, 0x0b, 0x46, 0x19, 0xa0, 0x75, 0x6d, - 0x87, 0x84, 0xb7, 0xc2, 0x91, 0x0f, 0x1e, 0x1d, 0xfd, 0xe0, 0x27, 0x60, 0xc0, 0x25, 0x15, 0x6d, - 0x87, 0xb8, 0xe2, 0xa2, 0x08, 0x5f, 0xe5, 0x45, 0xc0, 0xd1, 0x6c, 0x82, 0xd3, 0x65, 0x38, 0xef, - 0x04, 0x03, 0x45, 0xcd, 0x30, 0x5c, 0xe2, 0x79, 0x22, 0xe3, 0x08, 0x1b, 0x5c, 0xe2, 0x63, 0xf2, - 0x9b, 0x42, 0x99, 0x15, 0x5a, 0xb5, 0x7d, 0xe2, 0x3a, 0x9a, 0xeb, 0xf7, 0x08, 0xd4, 0x6d, 0xd1, - 0x5e, 0x12, 0x32, 0x0b, 0x80, 0x39, 0xc0, 0x7a, 0x64, 0xb2, 0xc8, 0x80, 0x89, 0x12, 0xa3, 0xfa, - 0xd1, 0x30, 0xf9, 0xcb, 0xb0, 0x61, 0xad, 0x12, 0xf2, 0x82, 0xad, 0x95, 0x2a, 0xc4, 0x10, 0x37, - 0xd8, 0x7f, 0x61, 0x0a, 0x1e, 0x85, 0x6d, 0x2b, 0x09, 0x8d, 0x20, 0x58, 0x82, 0xf1, 0x32, 0x21, - 0x45, 0xc2, 0xa7, 0x8b, 0x42, 0xb5, 0xf0, 0x74, 0xcd, 0xa5, 0x5e, 0xa8, 0xb1, 0x94, 0x61, 0xd3, - 0x2a, 0xc7, 0x6a, 0xf5, 0xee, 0x4a, 0x7d, 0x43, 0x9c, 0x84, 0x58, 0xf1, 0x50, 0xdc, 0x48, 0xa3, - 0x42, 0x2d, 0x1a, 0x55, 0xe6, 0xc8, 0x11, 0x91, 0x97, 0xd2, 0xb6, 0xad, 0xae, 0xd3, 0x34, 0x0c, - 0x47, 0x74, 0x62, 0xd9, 0x07, 0x0b, 0xd0, 0x20, 0x9b, 0xff, 0x63, 0x14, 0xce, 0xb2, 0x1c, 0xf8, - 0x07, 0x04, 0x63, 0x09, 0xdd, 0x0c, 0xdf, 0x48, 0x15, 0xb3, 0x8d, 0x91, 0x94, 0x16, 0x8f, 0x11, - 0xc9, 0x71, 0xcb, 0xb9, 0x8f, 0x1f, 0xff, 0xfe, 0x4d, 0xe6, 0x2a, 0xbe, 0xa2, 0x0a, 0xeb, 0x5b, - 0xb7, 0xbc, 0x49, 0x7d, 0x14, 0x3f, 0xc8, 0x00, 0x8e, 0xa7, 0xc3, 0x0b, 0xdd, 0x02, 0x08, 0x91, - 0xdf, 0xe8, 0x3e, 0x50, 0x00, 0xbf, 0x8f, 0x18, 0xf2, 0x0f, 0xf0, 0x5e, 0x0c, 0x79, 0x78, 0x48, - 0xd5, 0xdd, 0xfa, 0xa5, 0xab, 0x34, 0x76, 0x77, 0x4f, 0x0d, 0xf6, 0xbc, 0x69, 0x52, 0x9c, 0x89, - 0x3d, 0xd5, 0x0b, 0x60, 0xd9, 0x3a, 0x69, 0x9a, 0x0d, 0x07, 0xf7, 0x92, 0x24, 0xc1, 0x7f, 0x23, - 0x98, 0x6a, 0xe9, 0x4d, 0xf0, 0x72, 0xd7, 0xbb, 0x13, 0x73, 0x6a, 0xd2, 0xca, 0xbf, 0xca, 0x21, - 0x24, 0x7b, 0x9d, 0x29, 0xf6, 0x0a, 0x7e, 0xb9, 0x85, 0x62, 0x49, 0x3a, 0x85, 0xea, 0x24, 0x9e, - 0x88, 0xbf, 0x10, 0x9c, 0x6f, 0xb2, 0x18, 0x38, 0xdf, 0x1a, 0x6b, 0x92, 0xdf, 0x91, 0xae, 0x75, - 0x15, 0x23, 0xf8, 0x7c, 0xc4, 0x8f, 0xc0, 0x2e, 0xde, 0x39, 0xbd, 0x23, 0xe0, 0x07, 0x48, 0x8a, - 0x75, 0xeb, 0x84, 0xff, 0x44, 0x30, 0x12, 0xb5, 0x1e, 0x78, 0xbe, 0x03, 0x26, 0xcd, 0x2e, 0x48, - 0xca, 0x77, 0x13, 0x22, 0xb8, 0x7f, 0xc8, 0xb9, 0xdf, 0xc3, 0xef, 0x9e, 0x36, 0xf7, 0xd0, 0x50, - 0xe1, 0x2f, 0x32, 0xf0, 0xbf, 0xa3, 0x6e, 0x04, 0x5f, 0xef, 0x80, 0x4b, 0xdc, 0x20, 0x49, 0xcf, - 0x74, 0x1b, 0x26, 0x64, 0xf8, 0x94, 0xcb, 0xf0, 0x3e, 0x7e, 0xef, 0xb4, 0x65, 0x88, 0x7a, 0x2d, - 0xfc, 0x2d, 0x82, 0xb3, 0xac, 0xc3, 0xe3, 0xb9, 0xd6, 0x44, 0xa2, 0xbe, 0x44, 0x7a, 0xaa, 0xa3, - 0xb5, 0x82, 0xe9, 0x4d, 0x46, 0x74, 0x09, 0x3f, 0xdb, 0xe1, 0xc7, 0x2b, 0x3c, 0x8c, 0xa7, 0xee, - 0x8a, 0xa7, 0x3d, 0x95, 0x99, 0x13, 0xfc, 0x33, 0x82, 0xd1, 0x98, 0xa1, 0xc1, 0x6d, 0x36, 0x20, - 0xcd, 0x5b, 0x49, 0x0b, 0x5d, 0xc7, 0x09, 0x3e, 0x1b, 0x8c, 0xcf, 0xab, 0xf8, 0xd6, 0xf1, 0xf9, - 0xc4, 0x9d, 0x17, 0xfe, 0x1e, 0x01, 0x8e, 0xbb, 0x99, 0x76, 0xfd, 0x29, 0xd5, 0x8d, 0xb5, 0xeb, - 0x4f, 0xe9, 0xc6, 0x49, 0xfe, 0x3f, 0xe3, 0x97, 0xc5, 0x93, 0x31, 0x7e, 0x11, 0x9f, 0x80, 0xf7, - 0x11, 0x8c, 0xc6, 0x92, 0xb4, 0xdb, 0x8c, 0x34, 0x7b, 0x23, 0x2d, 0x74, 0x1d, 0x27, 0xc0, 0xbe, - 0xc4, 0xc0, 0x3e, 0x8f, 0x97, 0x8f, 0xd9, 0x19, 0x22, 0x94, 0x96, 0x6f, 0x3f, 0x3c, 0xc8, 0xa2, - 0xfd, 0x83, 0x2c, 0xfa, 0xed, 0x20, 0x8b, 0xbe, 0x3e, 0xcc, 0xf6, 0xed, 0x1f, 0x66, 0xfb, 0x7e, - 0x3a, 0xcc, 0xf6, 0xbd, 0x75, 0x3d, 0xfe, 0x43, 0xc3, 0x2a, 0xe9, 0x39, 0x93, 0xaa, 0xb5, 0x05, - 0x75, 0x9b, 0x1a, 0xd5, 0x0a, 0xf1, 0x78, 0xf1, 0xfc, 0x62, 0x2e, 0xa8, 0xcf, 0x7e, 0x7b, 0x94, - 0xce, 0xb1, 0xff, 0xa8, 0x5d, 0xfb, 0x27, 0x00, 0x00, 0xff, 0xff, 0x61, 0x2e, 0xac, 0x94, 0x7e, - 0x14, 0x00, 0x00, + // 1250 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x58, 0x6f, 0x4f, 0x1c, 0x45, + 0x18, 0x67, 0xae, 0xb4, 0xc0, 0x03, 0x4d, 0x64, 0x20, 0x29, 0xdd, 0xc0, 0x41, 0xb7, 0xd6, 0x22, + 0xe6, 0x76, 0xe5, 0x9a, 0x0a, 0xbc, 0x52, 0x40, 0xa9, 0x68, 0xb5, 0x78, 0x92, 0x68, 0x8c, 0xe6, + 0xba, 0xb7, 0x3b, 0xb7, 0x6c, 0x38, 0x76, 0xb6, 0xbb, 0x7b, 0x17, 0x29, 0xe2, 0xff, 0xaa, 0x89, + 0x26, 0x35, 0xf1, 0x53, 0x68, 0xe2, 0x07, 0xf0, 0x1b, 0xf4, 0x55, 0x43, 0xd2, 0x17, 0x1a, 0x5f, + 0xa8, 0x01, 0xe3, 0x67, 0xf0, 0x85, 0x26, 0x66, 0x67, 0x66, 0xef, 0xf6, 0xd8, 0x5d, 0xee, 0x0e, + 0x0f, 0xfa, 0x8a, 0xdd, 0x99, 0x79, 0x9e, 0xe7, 0xf7, 0xfb, 0xcd, 0xec, 0x3c, 0xbf, 0x03, 0x2e, + 0x5b, 0x25, 0x5d, 0xd5, 0x1c, 0xa7, 0x62, 0xe9, 0x9a, 0x6f, 0x51, 0xdb, 0x53, 0xcb, 0x84, 0xa8, + 0xb5, 0x59, 0xf5, 0x4e, 0x95, 0xb8, 0xdb, 0x8a, 0xe3, 0x52, 0x9f, 0xe2, 0x0b, 0x56, 0x49, 0x57, + 0xa2, 0x8b, 0x94, 0x32, 0x21, 0x4a, 0x6d, 0x56, 0x1a, 0x35, 0xa9, 0x49, 0xd9, 0x1a, 0x35, 0x78, + 0xe2, 0xcb, 0xa5, 0x71, 0x93, 0x52, 0xb3, 0x42, 0x54, 0xcd, 0xb1, 0x54, 0xcd, 0xb6, 0xa9, 0x2f, + 0x82, 0xf8, 0x6c, 0x56, 0xa7, 0xde, 0x16, 0xf5, 0xd4, 0x92, 0xe6, 0x05, 0x85, 0x4a, 0xc4, 0xd7, + 0x66, 0x55, 0x9d, 0x5a, 0xb6, 0x98, 0x9f, 0x89, 0xce, 0x33, 0x14, 0xf5, 0x55, 0x8e, 0x66, 0x5a, + 0x36, 0x4b, 0x26, 0xd6, 0x5e, 0x4a, 0x43, 0x1f, 0xe0, 0xe3, 0x4b, 0xae, 0xa4, 0x2d, 0x31, 0x89, + 0x4d, 0x3c, 0xcb, 0x8b, 0x66, 0xd2, 0xa9, 0x4b, 0x54, 0x7d, 0x43, 0xb3, 0x6d, 0x52, 0x09, 0x96, + 0x88, 0x47, 0xbe, 0x44, 0xfe, 0x06, 0xc1, 0xe4, 0x1b, 0x01, 0x9e, 0x55, 0x5b, 0x27, 0xb6, 0x6f, + 0xd5, 0xac, 0xbb, 0xc4, 0x58, 0xd3, 0xf4, 0x4d, 0xe2, 0x7b, 0x05, 0x72, 0xa7, 0x4a, 0x3c, 0x1f, + 0xaf, 0x00, 0x34, 0x40, 0x8e, 0xa1, 0x29, 0x34, 0x3d, 0x98, 0x7f, 0x4a, 0xe1, 0x8c, 0x94, 0x80, + 0x91, 0xc2, 0x75, 0x15, 0x8c, 0x94, 0x35, 0xcd, 0x24, 0x22, 0xb6, 0x10, 0x89, 0xc4, 0x97, 0x60, + 0x88, 0x2d, 0x2c, 0x6e, 0x10, 0xcb, 0xdc, 0xf0, 0xc7, 0x32, 0x53, 0x68, 0xba, 0xb7, 0x30, 0xc8, + 0xc6, 0x5e, 0x66, 0x43, 0xf2, 0x23, 0x04, 0x53, 0xe9, 0x70, 0x3c, 0x87, 0xda, 0x1e, 0xc1, 0x65, + 0x18, 0xb5, 0x22, 0xd3, 0x45, 0x87, 0xcf, 0x8f, 0xa1, 0xa9, 0x33, 0xd3, 0x83, 0xf9, 0x9c, 0x92, + 0xb2, 0xb1, 0xca, 0xaa, 0x11, 0xc4, 0x94, 0xad, 0x30, 0xe3, 0x0a, 0x21, 0xde, 0x52, 0xef, 0x83, + 0xdf, 0x26, 0x7b, 0x0a, 0x23, 0x56, 0xbc, 0x1e, 0xbe, 0xd1, 0xc4, 0x3b, 0xc3, 0x78, 0x5f, 0x6d, + 0xc9, 0x9b, 0x83, 0x8c, 0x12, 0x97, 0xef, 0x21, 0xc8, 0xa6, 0xb0, 0x0a, 0x35, 0x7e, 0x01, 0x06, + 0x38, 0x8d, 0xa2, 0x65, 0x08, 0x89, 0x27, 0x18, 0x91, 0x60, 0xfb, 0x94, 0x70, 0xcf, 0x6a, 0x41, + 0x91, 0x60, 0xd5, 0xaa, 0x21, 0x80, 0xf7, 0x3b, 0xe2, 0xbd, 0x1d, 0x75, 0xbf, 0x4c, 0xdf, 0xec, + 0xba, 0xb8, 0x06, 0x8c, 0x24, 0x88, 0x2b, 0x20, 0x1d, 0x4b, 0x5b, 0x1c, 0xd7, 0x56, 0x7e, 0x88, + 0xe0, 0xe9, 0xb4, 0x7d, 0x5e, 0xa1, 0xee, 0x32, 0xe7, 0xdb, 0xed, 0x03, 0x78, 0x01, 0xfa, 0x1c, + 0xea, 0x32, 0x89, 0x03, 0x75, 0x06, 0x0a, 0xe7, 0x82, 0xd7, 0x55, 0x03, 0x4f, 0x00, 0x08, 0x89, + 0x83, 0xb9, 0x33, 0x6c, 0x6e, 0x40, 0x8c, 0x24, 0x48, 0xdb, 0x1b, 0x97, 0xf6, 0x67, 0x04, 0x33, + 0xed, 0x10, 0x12, 0x2a, 0xdf, 0xee, 0xe2, 0x11, 0x3e, 0xe1, 0xc3, 0xfb, 0x1e, 0x5c, 0x64, 0xc4, + 0xd6, 0xa9, 0xaf, 0x55, 0x0a, 0x44, 0xaf, 0xb1, 0x9a, 0xdd, 0x3a, 0xb6, 0xf2, 0x17, 0x08, 0xa4, + 0xa4, 0xfc, 0x42, 0xa8, 0x0d, 0x18, 0x70, 0x89, 0x5e, 0x2b, 0x96, 0x09, 0x09, 0xd5, 0xb9, 0xd8, + 0xc4, 0x22, 0xc4, 0xbf, 0x4c, 0x2d, 0x7b, 0xe9, 0xd9, 0x20, 0xf9, 0x0f, 0xbf, 0x4f, 0x4e, 0x9b, + 0x96, 0xbf, 0x51, 0x2d, 0x29, 0x3a, 0xdd, 0x52, 0xc5, 0xcd, 0xcb, 0xff, 0xe4, 0x3c, 0x63, 0x53, + 0xf5, 0xb7, 0x1d, 0xe2, 0xb1, 0x00, 0xaf, 0xd0, 0xef, 0x8a, 0x8a, 0xf2, 0xbb, 0x30, 0xd6, 0xc0, + 0xb1, 0xa8, 0x6f, 0x76, 0x97, 0xe6, 0x67, 0x28, 0x2a, 0x63, 0x3d, 0x7d, 0xfd, 0x46, 0xeb, 0xd7, + 0xf4, 0xcd, 0x13, 0x23, 0xd9, 0xa7, 0xf1, 0x7a, 0xf2, 0x6d, 0x18, 0x6f, 0x80, 0x58, 0xb7, 0xb6, + 0x08, 0xad, 0xfa, 0xdd, 0xe5, 0x79, 0x1f, 0xc1, 0x44, 0x4a, 0x09, 0xc1, 0xd5, 0x86, 0x21, 0x9f, + 0x0f, 0x9f, 0x18, 0xdf, 0x41, 0xbf, 0x51, 0x57, 0xbe, 0x09, 0xc3, 0x0c, 0xd0, 0x9a, 0xb6, 0x4d, + 0xc2, 0x5b, 0xe1, 0xd0, 0x07, 0x8f, 0x0e, 0x7f, 0xf0, 0x63, 0xd0, 0xe7, 0x92, 0x8a, 0xb6, 0x4d, + 0x5c, 0x71, 0x51, 0x84, 0xaf, 0xf2, 0x02, 0xe0, 0x68, 0x36, 0xc1, 0xe9, 0x32, 0x9c, 0x77, 0x82, + 0x81, 0xa2, 0x66, 0x18, 0x2e, 0xf1, 0x3c, 0x91, 0x71, 0x88, 0x0d, 0x2e, 0xf2, 0x31, 0xf9, 0x6d, + 0xa1, 0xcc, 0x32, 0xad, 0xda, 0x3e, 0x71, 0x1d, 0xcd, 0xf5, 0xbb, 0x04, 0xea, 0x96, 0x68, 0x2f, + 0x09, 0x99, 0x05, 0xc0, 0x1c, 0x60, 0x3d, 0x32, 0x59, 0x64, 0xc0, 0x44, 0x89, 0x61, 0xfd, 0x70, + 0x98, 0xfc, 0x75, 0xd8, 0xb0, 0x56, 0x08, 0x79, 0xc9, 0xd6, 0x4a, 0x15, 0x62, 0x88, 0x1b, 0xec, + 0x71, 0x98, 0x82, 0x87, 0x61, 0xdb, 0x4a, 0x42, 0x23, 0x08, 0x96, 0x60, 0xb4, 0x4c, 0x48, 0x91, + 0xf0, 0xe9, 0xa2, 0x50, 0x2d, 0x3c, 0x5d, 0x33, 0xa9, 0x17, 0x6a, 0x2c, 0x65, 0xd8, 0xb4, 0xca, + 0xb1, 0x5a, 0xdd, 0xbb, 0x52, 0xdf, 0x12, 0x27, 0x21, 0x56, 0x3c, 0x14, 0x37, 0xd2, 0xa8, 0xd0, + 0x11, 0x8d, 0x2a, 0x73, 0xe8, 0x88, 0xc8, 0x8b, 0x69, 0xdb, 0x56, 0xd7, 0x69, 0x12, 0x06, 0x23, + 0x3a, 0xb1, 0xec, 0xfd, 0x05, 0x68, 0x90, 0xcd, 0xff, 0x35, 0x0c, 0x67, 0x59, 0x0e, 0xfc, 0x13, + 0x82, 0x91, 0x84, 0x6e, 0x86, 0xe7, 0x53, 0xc5, 0x6c, 0x61, 0x24, 0xa5, 0x85, 0x63, 0x44, 0x72, + 0xdc, 0x72, 0xee, 0xd3, 0x47, 0x7f, 0x7e, 0x97, 0xb9, 0x8a, 0xaf, 0xa8, 0xc2, 0xfa, 0xd6, 0x2d, + 0x6f, 0x52, 0x1f, 0xc5, 0xf7, 0x33, 0x80, 0xe3, 0xe9, 0xf0, 0x5c, 0xa7, 0x00, 0x42, 0xe4, 0xf3, + 0x9d, 0x07, 0x0a, 0xe0, 0xf7, 0x10, 0x43, 0xfe, 0x11, 0xde, 0x8d, 0x21, 0x0f, 0x0f, 0xa9, 0xba, + 0x53, 0xbf, 0x74, 0x95, 0xc6, 0xee, 0xee, 0xaa, 0xc1, 0x9e, 0x37, 0x4d, 0x8a, 0x33, 0xb1, 0xab, + 0x7a, 0x01, 0x2c, 0x5b, 0x27, 0x4d, 0xb3, 0xe1, 0xe0, 0x6e, 0x92, 0x24, 0xf8, 0x5f, 0x04, 0x13, + 0x47, 0x7a, 0x13, 0xbc, 0xd4, 0xf1, 0xee, 0xc4, 0x9c, 0x9a, 0xb4, 0xfc, 0xbf, 0x72, 0x08, 0xc9, + 0xde, 0x64, 0x8a, 0xbd, 0x86, 0x5f, 0x3d, 0x42, 0xb1, 0x24, 0x9d, 0x42, 0x75, 0x12, 0x4f, 0xc4, + 0x3f, 0x08, 0xce, 0x37, 0x59, 0x0c, 0x9c, 0x3f, 0x1a, 0x6b, 0x92, 0xdf, 0x91, 0xae, 0x75, 0x14, + 0x23, 0xf8, 0x7c, 0xc2, 0x8f, 0xc0, 0x0e, 0xde, 0x3e, 0xbd, 0x23, 0xe0, 0x07, 0x48, 0x8a, 0x75, + 0xeb, 0x84, 0xff, 0x46, 0x30, 0x14, 0xb5, 0x1e, 0x78, 0xb6, 0x0d, 0x26, 0xcd, 0x2e, 0x48, 0xca, + 0x77, 0x12, 0x22, 0xb8, 0x7f, 0xcc, 0xb9, 0xdf, 0xc5, 0xef, 0x9f, 0x36, 0xf7, 0xd0, 0x50, 0xe1, + 0xaf, 0x32, 0xf0, 0xc4, 0x61, 0x37, 0x82, 0xaf, 0xb7, 0xc1, 0x25, 0x6e, 0x90, 0xa4, 0xe7, 0x3a, + 0x0d, 0x13, 0x32, 0x7c, 0xce, 0x65, 0xf8, 0x10, 0x7f, 0x70, 0xda, 0x32, 0x44, 0xbd, 0x16, 0xfe, + 0x1e, 0xc1, 0x59, 0xd6, 0xe1, 0xf1, 0xcc, 0xd1, 0x44, 0xa2, 0xbe, 0x44, 0x7a, 0xa6, 0xad, 0xb5, + 0x82, 0xe9, 0x0d, 0x46, 0x74, 0x11, 0x3f, 0xdf, 0xe6, 0xc7, 0x2b, 0x3c, 0x8c, 0xa7, 0xee, 0x88, + 0xa7, 0x5d, 0x95, 0x99, 0x13, 0xfc, 0x2b, 0x82, 0xe1, 0x98, 0xa1, 0xc1, 0x2d, 0x36, 0x20, 0xcd, + 0x5b, 0x49, 0x73, 0x1d, 0xc7, 0x09, 0x3e, 0xeb, 0x8c, 0xcf, 0xeb, 0xf8, 0xe6, 0xf1, 0xf9, 0xc4, + 0x9d, 0x17, 0xfe, 0x11, 0x01, 0x8e, 0xbb, 0x99, 0x56, 0xfd, 0x29, 0xd5, 0x8d, 0xb5, 0xea, 0x4f, + 0xe9, 0xc6, 0x49, 0x7e, 0x92, 0xf1, 0xcb, 0xe2, 0xf1, 0x18, 0xbf, 0x88, 0x4f, 0xc0, 0x7b, 0x08, + 0x86, 0x63, 0x49, 0x5a, 0x6d, 0x46, 0x9a, 0xbd, 0x91, 0xe6, 0x3a, 0x8e, 0x13, 0x60, 0x5f, 0x61, + 0x60, 0x5f, 0xc4, 0x4b, 0xc7, 0xec, 0x0c, 0x11, 0x4a, 0x4b, 0xb7, 0x1e, 0xec, 0x67, 0xd1, 0xde, + 0x7e, 0x16, 0xfd, 0xb1, 0x9f, 0x45, 0xdf, 0x1e, 0x64, 0x7b, 0xf6, 0x0e, 0xb2, 0x3d, 0xbf, 0x1c, + 0x64, 0x7b, 0xde, 0xb9, 0x1e, 0xff, 0xa1, 0x61, 0x95, 0xf4, 0x9c, 0x49, 0xd5, 0xda, 0xbc, 0xba, + 0x45, 0x8d, 0x6a, 0x85, 0x78, 0xbc, 0x78, 0x7e, 0x21, 0x17, 0xd4, 0x67, 0xbf, 0x3d, 0x4a, 0xe7, + 0xd8, 0x7f, 0xd4, 0xae, 0xfd, 0x17, 0x00, 0x00, 0xff, 0xff, 0xdf, 0xe2, 0xa0, 0x5d, 0x7e, 0x14, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/modules/apps/29-fee/types/tx.pb.go b/modules/apps/29-fee/types/tx.pb.go index 356f00e7491..32cd5b37849 100644 --- a/modules/apps/29-fee/types/tx.pb.go +++ b/modules/apps/29-fee/types/tx.pb.go @@ -10,7 +10,7 @@ import ( _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" - types "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + types "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" @@ -376,7 +376,7 @@ var fileDescriptor_05c93128649f1b96 = []byte{ // 649 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x54, 0x4d, 0x6f, 0xd3, 0x40, 0x10, 0x8d, 0x9b, 0x7e, 0x65, 0x5a, 0x68, 0xbb, 0x54, 0x24, 0xb5, 0x5a, 0xb7, 0x58, 0x15, 0x2a, - 0x95, 0x62, 0x93, 0x40, 0x85, 0xa8, 0x84, 0x04, 0xad, 0x54, 0xd4, 0x43, 0x45, 0x94, 0x23, 0x97, + 0x95, 0x62, 0x93, 0x40, 0x25, 0xa8, 0x84, 0x04, 0xad, 0x54, 0xd4, 0x43, 0x45, 0x94, 0x23, 0x97, 0xca, 0xd9, 0x4c, 0x5d, 0x43, 0xec, 0xb5, 0xbc, 0x4e, 0x84, 0x6f, 0x88, 0x13, 0x07, 0x0e, 0xf0, 0x0f, 0xf8, 0x09, 0xe5, 0xc2, 0x6f, 0xe8, 0xb1, 0x47, 0x4e, 0x15, 0x6a, 0x0f, 0xfd, 0x07, 0x9c, 0xd1, 0xda, 0x6b, 0xcb, 0x4d, 0x48, 0x15, 0x90, 0xb8, 0x65, 0xf6, 0xbd, 0x7d, 0x33, 0xef, 0x65, @@ -414,7 +414,7 @@ var fileDescriptor_05c93128649f1b96 = []byte{ 0x96, 0xed, 0x84, 0xc7, 0xdd, 0x96, 0x41, 0x99, 0x6b, 0xca, 0x27, 0xd9, 0x69, 0xd1, 0xaa, 0xcd, 0xcc, 0xde, 0x13, 0xd3, 0x65, 0xed, 0x6e, 0x07, 0xb9, 0x78, 0xed, 0xb9, 0x59, 0x7f, 0x5a, 0x15, 0x0f, 0x7d, 0x18, 0xf9, 0xc8, 0x5b, 0x93, 0xf1, 0x63, 0xfd, 0xe8, 0x77, 0x00, 0x00, 0x00, 0xff, - 0xff, 0x35, 0x34, 0x60, 0x80, 0x5e, 0x06, 0x00, 0x00, + 0xff, 0x8b, 0xf8, 0x6c, 0x49, 0x5e, 0x06, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/modules/apps/callbacks/callbacks_test.go b/modules/apps/callbacks/callbacks_test.go index a7088240b40..5696a68429e 100644 --- a/modules/apps/callbacks/callbacks_test.go +++ b/modules/apps/callbacks/callbacks_test.go @@ -19,13 +19,13 @@ import ( simapp "github.com/cosmos/ibc-go/modules/apps/callbacks/testing/simapp" "github.com/cosmos/ibc-go/modules/apps/callbacks/types" - icacontrollertypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - feetypes "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" - transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" - ibcmock "github.com/cosmos/ibc-go/v7/testing/mock" + icacontrollertypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + feetypes "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + transfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + porttypes "github.com/cosmos/ibc-go/v8/modules/core/05-port/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" + ibcmock "github.com/cosmos/ibc-go/v8/testing/mock" ) const maxCallbackGas = uint64(1000000) diff --git a/modules/apps/callbacks/export_test.go b/modules/apps/callbacks/export_test.go index 653d5ccddcc..50faa347641 100644 --- a/modules/apps/callbacks/export_test.go +++ b/modules/apps/callbacks/export_test.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/ibc-go/modules/apps/callbacks/types" - porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" + porttypes "github.com/cosmos/ibc-go/v8/modules/core/05-port/types" ) // ProcessCallback is a wrapper around processCallback to allow the function to be directly called in tests. diff --git a/modules/apps/callbacks/fee_transfer_test.go b/modules/apps/callbacks/fee_transfer_test.go index cb73830e4d8..ee22326f6af 100644 --- a/modules/apps/callbacks/fee_transfer_test.go +++ b/modules/apps/callbacks/fee_transfer_test.go @@ -9,8 +9,8 @@ import ( "github.com/cosmos/ibc-go/modules/apps/callbacks/testing/simapp" "github.com/cosmos/ibc-go/modules/apps/callbacks/types" - feetypes "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + feetypes "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) var ( diff --git a/modules/apps/callbacks/go.mod b/modules/apps/callbacks/go.mod index 86150169d8e..a8b1cb06c34 100644 --- a/modules/apps/callbacks/go.mod +++ b/modules/apps/callbacks/go.mod @@ -4,7 +4,7 @@ go 1.21 toolchain go1.21.0 -replace github.com/cosmos/ibc-go/v7 => ../../../ +replace github.com/cosmos/ibc-go/v8 => ../../../ replace github.com/syndtr/goleveldb => github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 @@ -27,7 +27,7 @@ require ( github.com/cosmos/cosmos-sdk v0.50.0-rc.0.0.20230905141004-6a9777fff287 github.com/cosmos/gogoproto v1.4.11 github.com/cosmos/ibc-go/modules/capability v1.0.0-rc5 - github.com/cosmos/ibc-go/v7 v7.3.0 + github.com/cosmos/ibc-go/v8 v8.0.0 github.com/spf13/cast v1.5.1 github.com/spf13/cobra v1.7.0 github.com/spf13/viper v1.16.0 diff --git a/modules/apps/callbacks/ibc_middleware.go b/modules/apps/callbacks/ibc_middleware.go index 24d17a99370..8a562743473 100644 --- a/modules/apps/callbacks/ibc_middleware.go +++ b/modules/apps/callbacks/ibc_middleware.go @@ -9,10 +9,10 @@ import ( "github.com/cosmos/ibc-go/modules/apps/callbacks/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v8/modules/core/05-port/types" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" ) var ( diff --git a/modules/apps/callbacks/ibc_middleware_test.go b/modules/apps/callbacks/ibc_middleware_test.go index 8577aa4f6d2..705beb2a706 100644 --- a/modules/apps/callbacks/ibc_middleware_test.go +++ b/modules/apps/callbacks/ibc_middleware_test.go @@ -11,16 +11,16 @@ import ( ibccallbacks "github.com/cosmos/ibc-go/modules/apps/callbacks" "github.com/cosmos/ibc-go/modules/apps/callbacks/testing/simapp" "github.com/cosmos/ibc-go/modules/apps/callbacks/types" - icacontrollertypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - channelkeeper "github.com/cosmos/ibc-go/v7/modules/core/04-channel/keeper" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/v7/testing" - ibcmock "github.com/cosmos/ibc-go/v7/testing/mock" + icacontrollertypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + transfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + channelkeeper "github.com/cosmos/ibc-go/v8/modules/core/04-channel/keeper" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v8/modules/core/05-port/types" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v8/testing" + ibcmock "github.com/cosmos/ibc-go/v8/testing/mock" ) func (s *CallbacksTestSuite) TestNewIBCMiddleware() { diff --git a/modules/apps/callbacks/ica_test.go b/modules/apps/callbacks/ica_test.go index 0a6ea55788e..4612dba0d3d 100644 --- a/modules/apps/callbacks/ica_test.go +++ b/modules/apps/callbacks/ica_test.go @@ -13,10 +13,10 @@ import ( "github.com/cosmos/ibc-go/modules/apps/callbacks/testing/simapp" "github.com/cosmos/ibc-go/modules/apps/callbacks/types" - icacontrollertypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - icahosttypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + icacontrollertypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + icahosttypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (s *CallbacksTestSuite) TestICACallbacks() { diff --git a/modules/apps/callbacks/testing/simapp/ante_handler.go b/modules/apps/callbacks/testing/simapp/ante_handler.go index 96e79c3474c..c64ad04d6ea 100644 --- a/modules/apps/callbacks/testing/simapp/ante_handler.go +++ b/modules/apps/callbacks/testing/simapp/ante_handler.go @@ -8,8 +8,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/x/auth/ante" - ibcante "github.com/cosmos/ibc-go/v7/modules/core/ante" - "github.com/cosmos/ibc-go/v7/modules/core/keeper" + ibcante "github.com/cosmos/ibc-go/v8/modules/core/ante" + "github.com/cosmos/ibc-go/v8/modules/core/keeper" ) // HandlerOptions are the options required for constructing a default SDK AnteHandler. diff --git a/modules/apps/callbacks/testing/simapp/app.go b/modules/apps/callbacks/testing/simapp/app.go index 6a14ed61818..2a9c98b1bd5 100644 --- a/modules/apps/callbacks/testing/simapp/app.go +++ b/modules/apps/callbacks/testing/simapp/app.go @@ -107,31 +107,31 @@ import ( "github.com/cosmos/ibc-go/modules/capability" capabilitykeeper "github.com/cosmos/ibc-go/modules/capability/keeper" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - ica "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts" - icacontroller "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller" - icacontrollerkeeper "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/keeper" - icacontrollertypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - icahost "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host" - icahostkeeper "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/keeper" - icahosttypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - ibcfee "github.com/cosmos/ibc-go/v7/modules/apps/29-fee" - ibcfeekeeper "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/keeper" - ibcfeetypes "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" - transfer "github.com/cosmos/ibc-go/v7/modules/apps/transfer" - ibctransferkeeper "github.com/cosmos/ibc-go/v7/modules/apps/transfer/keeper" - ibctransfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - ibc "github.com/cosmos/ibc-go/v7/modules/core" - ibcclient "github.com/cosmos/ibc-go/v7/modules/core/02-client" - ibcclientclient "github.com/cosmos/ibc-go/v7/modules/core/02-client/client" - ibcclienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibckeeper "github.com/cosmos/ibc-go/v7/modules/core/keeper" - solomachine "github.com/cosmos/ibc-go/v7/modules/light-clients/06-solomachine" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - ibcmock "github.com/cosmos/ibc-go/v7/testing/mock" - ibctestingtypes "github.com/cosmos/ibc-go/v7/testing/types" + ica "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts" + icacontroller "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller" + icacontrollerkeeper "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/keeper" + icacontrollertypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + icahost "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host" + icahostkeeper "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/keeper" + icahosttypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + ibcfee "github.com/cosmos/ibc-go/v8/modules/apps/29-fee" + ibcfeekeeper "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/keeper" + ibcfeetypes "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + transfer "github.com/cosmos/ibc-go/v8/modules/apps/transfer" + ibctransferkeeper "github.com/cosmos/ibc-go/v8/modules/apps/transfer/keeper" + ibctransfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + ibc "github.com/cosmos/ibc-go/v8/modules/core" + ibcclient "github.com/cosmos/ibc-go/v8/modules/core/02-client" + ibcclientclient "github.com/cosmos/ibc-go/v8/modules/core/02-client/client" + ibcclienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + porttypes "github.com/cosmos/ibc-go/v8/modules/core/05-port/types" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibckeeper "github.com/cosmos/ibc-go/v8/modules/core/keeper" + solomachine "github.com/cosmos/ibc-go/v8/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + ibcmock "github.com/cosmos/ibc-go/v8/testing/mock" + ibctestingtypes "github.com/cosmos/ibc-go/v8/testing/types" ) const appName = "SimApp" diff --git a/modules/apps/callbacks/testing/simapp/contract_keeper.go b/modules/apps/callbacks/testing/simapp/contract_keeper.go index 589219d5950..170efa09da6 100644 --- a/modules/apps/callbacks/testing/simapp/contract_keeper.go +++ b/modules/apps/callbacks/testing/simapp/contract_keeper.go @@ -8,10 +8,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" callbacktypes "github.com/cosmos/ibc-go/modules/apps/callbacks/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibcmock "github.com/cosmos/ibc-go/v7/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibcmock "github.com/cosmos/ibc-go/v8/testing/mock" ) // MockKeeper implements callbacktypes.ContractKeeper diff --git a/modules/apps/callbacks/transfer_test.go b/modules/apps/callbacks/transfer_test.go index 83627779177..2f5a1e832bd 100644 --- a/modules/apps/callbacks/transfer_test.go +++ b/modules/apps/callbacks/transfer_test.go @@ -9,9 +9,9 @@ import ( "github.com/cosmos/ibc-go/modules/apps/callbacks/testing/simapp" "github.com/cosmos/ibc-go/modules/apps/callbacks/types" - transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + transfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (s *CallbacksTestSuite) TestTransferCallbacks() { diff --git a/modules/apps/callbacks/types/callbacks.go b/modules/apps/callbacks/types/callbacks.go index 7d18259af29..03c4128fb31 100644 --- a/modules/apps/callbacks/types/callbacks.go +++ b/modules/apps/callbacks/types/callbacks.go @@ -6,8 +6,8 @@ import ( errorsmod "cosmossdk.io/errors" - porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" + porttypes "github.com/cosmos/ibc-go/v8/modules/core/05-port/types" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" ) /* diff --git a/modules/apps/callbacks/types/callbacks_test.go b/modules/apps/callbacks/types/callbacks_test.go index 7faac7f9a23..80df864a708 100644 --- a/modules/apps/callbacks/types/callbacks_test.go +++ b/modules/apps/callbacks/types/callbacks_test.go @@ -8,11 +8,11 @@ import ( "github.com/cometbft/cometbft/crypto/secp256k1" "github.com/cosmos/ibc-go/modules/apps/callbacks/types" - transfer "github.com/cosmos/ibc-go/v7/modules/apps/transfer" - transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" - ibcmock "github.com/cosmos/ibc-go/v7/testing/mock" + transfer "github.com/cosmos/ibc-go/v8/modules/apps/transfer" + transfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + porttypes "github.com/cosmos/ibc-go/v8/modules/core/05-port/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" + ibcmock "github.com/cosmos/ibc-go/v8/testing/mock" ) func (s *CallbacksTypesTestSuite) TestGetCallbackData() { diff --git a/modules/apps/callbacks/types/events_test.go b/modules/apps/callbacks/types/events_test.go index d8fb37d8b5a..17cd920e211 100644 --- a/modules/apps/callbacks/types/events_test.go +++ b/modules/apps/callbacks/types/events_test.go @@ -4,9 +4,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/ibc-go/modules/apps/callbacks/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (s *CallbacksTypesTestSuite) TestEvents() { diff --git a/modules/apps/callbacks/types/expected_keepers.go b/modules/apps/callbacks/types/expected_keepers.go index ba168602dbe..ff6be8906ec 100644 --- a/modules/apps/callbacks/types/expected_keepers.go +++ b/modules/apps/callbacks/types/expected_keepers.go @@ -3,9 +3,9 @@ package types import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // ContractKeeper defines the entry points exposed to the VM module which invokes a smart contract diff --git a/modules/apps/callbacks/types/export_test.go b/modules/apps/callbacks/types/export_test.go index b87550dd34a..5ba59bed4ca 100644 --- a/modules/apps/callbacks/types/export_test.go +++ b/modules/apps/callbacks/types/export_test.go @@ -1,7 +1,7 @@ package types import ( - porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" + porttypes "github.com/cosmos/ibc-go/v8/modules/core/05-port/types" ) /* diff --git a/modules/apps/callbacks/types/types_test.go b/modules/apps/callbacks/types/types_test.go index ef21db59989..7bb61f95162 100644 --- a/modules/apps/callbacks/types/types_test.go +++ b/modules/apps/callbacks/types/types_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/suite" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) // CallbacksTestSuite defines the needed instances and methods to test callbacks diff --git a/modules/apps/transfer/client/cli/query.go b/modules/apps/transfer/client/cli/query.go index c81e6ee921d..7aebe004b3b 100644 --- a/modules/apps/transfer/client/cli/query.go +++ b/modules/apps/transfer/client/cli/query.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/version" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" ) // GetCmdQueryDenomTrace defines the command to query a a denomination trace from a given trace hash or ibc denom. diff --git a/modules/apps/transfer/client/cli/tx.go b/modules/apps/transfer/client/cli/tx.go index acd80760f88..7f2e0dc9852 100644 --- a/modules/apps/transfer/client/cli/tx.go +++ b/modules/apps/transfer/client/cli/tx.go @@ -14,11 +14,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/version" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - clientutils "github.com/cosmos/ibc-go/v7/modules/core/02-client/client/utils" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - channelutils "github.com/cosmos/ibc-go/v7/modules/core/04-channel/client/utils" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + clientutils "github.com/cosmos/ibc-go/v8/modules/core/02-client/client/utils" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + channelutils "github.com/cosmos/ibc-go/v8/modules/core/04-channel/client/utils" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) const ( diff --git a/modules/apps/transfer/ibc_module.go b/modules/apps/transfer/ibc_module.go index da807cef434..db1fc0d5b0a 100644 --- a/modules/apps/transfer/ibc_module.go +++ b/modules/apps/transfer/ibc_module.go @@ -10,13 +10,13 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/keeper" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/keeper" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v8/modules/core/05-port/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" ) var ( diff --git a/modules/apps/transfer/ibc_module_test.go b/modules/apps/transfer/ibc_module_test.go index d8e532632a4..7f3b8666f35 100644 --- a/modules/apps/transfer/ibc_module_test.go +++ b/modules/apps/transfer/ibc_module_test.go @@ -7,11 +7,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (suite *TransferTestSuite) TestOnChanOpenInit() { diff --git a/modules/apps/transfer/keeper/encoding.go b/modules/apps/transfer/keeper/encoding.go index 32f52bd651a..5ba0723878d 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/v7/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" ) // UnmarshalDenomTrace attempts to decode and return an DenomTrace object from diff --git a/modules/apps/transfer/keeper/export_test.go b/modules/apps/transfer/keeper/export_test.go index 3600380f0a8..382dde7a805 100644 --- a/modules/apps/transfer/keeper/export_test.go +++ b/modules/apps/transfer/keeper/export_test.go @@ -4,7 +4,7 @@ package keeper This file is to allow for unexported functions and fields to be accessible to the testing package. */ -import porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" +import porttypes "github.com/cosmos/ibc-go/v8/modules/core/05-port/types" // GetICS4Wrapper is a getter for the keeper's ICS4Wrapper. func (k *Keeper) GetICS4Wrapper() porttypes.ICS4Wrapper { diff --git a/modules/apps/transfer/keeper/genesis.go b/modules/apps/transfer/keeper/genesis.go index 02b29d32ca1..f534ef1d9bc 100644 --- a/modules/apps/transfer/keeper/genesis.go +++ b/modules/apps/transfer/keeper/genesis.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v8/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 b2e42d367ba..0bee69a2bf9 100644 --- a/modules/apps/transfer/keeper/genesis_test.go +++ b/modules/apps/transfer/keeper/genesis_test.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v8/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 bd40c9da6da..a05c445627d 100644 --- a/modules/apps/transfer/keeper/grpc_query.go +++ b/modules/apps/transfer/keeper/grpc_query.go @@ -14,7 +14,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" ) var _ types.QueryServer = (*Keeper)(nil) diff --git a/modules/apps/transfer/keeper/grpc_query_test.go b/modules/apps/transfer/keeper/grpc_query_test.go index e7f600e2e69..7cf2b3bc203 100644 --- a/modules/apps/transfer/keeper/grpc_query_test.go +++ b/modules/apps/transfer/keeper/grpc_query_test.go @@ -8,8 +8,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (suite *KeeperTestSuite) TestQueryDenomTrace() { diff --git a/modules/apps/transfer/keeper/invariants.go b/modules/apps/transfer/keeper/invariants.go index 93e5aa36259..ff0d9be72c2 100644 --- a/modules/apps/transfer/keeper/invariants.go +++ b/modules/apps/transfer/keeper/invariants.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" ) // RegisterInvariants registers all transfer invariants diff --git a/modules/apps/transfer/keeper/invariants_test.go b/modules/apps/transfer/keeper/invariants_test.go index 61d087e8cfc..0da8d0372d1 100644 --- a/modules/apps/transfer/keeper/invariants_test.go +++ b/modules/apps/transfer/keeper/invariants_test.go @@ -5,9 +5,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/keeper" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/keeper" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (suite *KeeperTestSuite) TestTotalEscrowPerDenomInvariant() { diff --git a/modules/apps/transfer/keeper/keeper.go b/modules/apps/transfer/keeper/keeper.go index 5fe27ac9e28..cbfb33df7c6 100644 --- a/modules/apps/transfer/keeper/keeper.go +++ b/modules/apps/transfer/keeper/keeper.go @@ -16,10 +16,10 @@ import ( tmbytes "github.com/cometbft/cometbft/libs/bytes" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + porttypes "github.com/cosmos/ibc-go/v8/modules/core/05-port/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // Keeper defines the IBC fungible transfer keeper diff --git a/modules/apps/transfer/keeper/keeper_test.go b/modules/apps/transfer/keeper/keeper_test.go index 95041ff4bdf..56afd3fcbd5 100644 --- a/modules/apps/transfer/keeper/keeper_test.go +++ b/modules/apps/transfer/keeper/keeper_test.go @@ -13,9 +13,9 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - channelkeeper "github.com/cosmos/ibc-go/v7/modules/core/04-channel/keeper" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + channelkeeper "github.com/cosmos/ibc-go/v8/modules/core/04-channel/keeper" + ibctesting "github.com/cosmos/ibc-go/v8/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 1b091350a86..dc67080e928 100644 --- a/modules/apps/transfer/keeper/mbt_relay_test.go +++ b/modules/apps/transfer/keeper/mbt_relay_test.go @@ -18,11 +18,11 @@ import ( "github.com/cometbft/cometbft/crypto" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) type TlaBalance struct { diff --git a/modules/apps/transfer/keeper/migrations.go b/modules/apps/transfer/keeper/migrations.go index e966135cd04..113798d9fc8 100644 --- a/modules/apps/transfer/keeper/migrations.go +++ b/modules/apps/transfer/keeper/migrations.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" ) // Migrator is a struct for handling in-place store migrations. diff --git a/modules/apps/transfer/keeper/migrations_test.go b/modules/apps/transfer/keeper/migrations_test.go index dc7f74bf52d..2f308f994d1 100644 --- a/modules/apps/transfer/keeper/migrations_test.go +++ b/modules/apps/transfer/keeper/migrations_test.go @@ -8,9 +8,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktestutil "github.com/cosmos/cosmos-sdk/x/bank/testutil" - transferkeeper "github.com/cosmos/ibc-go/v7/modules/apps/transfer/keeper" - transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + transferkeeper "github.com/cosmos/ibc-go/v8/modules/apps/transfer/keeper" + transfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (suite *KeeperTestSuite) TestMigratorMigrateParams() { diff --git a/modules/apps/transfer/keeper/msg_server.go b/modules/apps/transfer/keeper/msg_server.go index ed3d0969586..c5171573226 100644 --- a/modules/apps/transfer/keeper/msg_server.go +++ b/modules/apps/transfer/keeper/msg_server.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" ) var _ types.MsgServer = (*Keeper)(nil) diff --git a/modules/apps/transfer/keeper/msg_server_test.go b/modules/apps/transfer/keeper/msg_server_test.go index dc1e0481d1e..7606bbdc727 100644 --- a/modules/apps/transfer/keeper/msg_server_test.go +++ b/modules/apps/transfer/keeper/msg_server_test.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) // TestMsgTransfer tests Transfer rpc handler diff --git a/modules/apps/transfer/keeper/relay.go b/modules/apps/transfer/keeper/relay.go index 19e0b7eeaa8..b86e802adbd 100644 --- a/modules/apps/transfer/keeper/relay.go +++ b/modules/apps/transfer/keeper/relay.go @@ -12,12 +12,12 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" - coretypes "github.com/cosmos/ibc-go/v7/modules/core/types" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + coretypes "github.com/cosmos/ibc-go/v8/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 05e3a620f02..620ee5aad0b 100644 --- a/modules/apps/transfer/keeper/relay_test.go +++ b/modules/apps/transfer/keeper/relay_test.go @@ -8,10 +8,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktestutil "github.com/cosmos/cosmos-sdk/x/bank/testutil" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v8/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 52c54edfb3c..b905830083d 100644 --- a/modules/apps/transfer/module.go +++ b/modules/apps/transfer/module.go @@ -19,11 +19,11 @@ import ( abci "github.com/cometbft/cometbft/abci/types" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/client/cli" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/keeper" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/simulation" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/client/cli" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/keeper" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/simulation" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + porttypes "github.com/cosmos/ibc-go/v8/modules/core/05-port/types" ) var ( diff --git a/modules/apps/transfer/simulation/decoder.go b/modules/apps/transfer/simulation/decoder.go index ea67c509e3d..f371ea3da4d 100644 --- a/modules/apps/transfer/simulation/decoder.go +++ b/modules/apps/transfer/simulation/decoder.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v8/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 941d25c2f77..3d273e2c7dc 100644 --- a/modules/apps/transfer/simulation/decoder_test.go +++ b/modules/apps/transfer/simulation/decoder_test.go @@ -8,9 +8,9 @@ import ( "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/simulation" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - "github.com/cosmos/ibc-go/v7/testing/simapp" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/simulation" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v8/testing/simapp" ) func TestDecodeStore(t *testing.T) { diff --git a/modules/apps/transfer/simulation/genesis.go b/modules/apps/transfer/simulation/genesis.go index d91d2cb8c28..fded62be9a2 100644 --- a/modules/apps/transfer/simulation/genesis.go +++ b/modules/apps/transfer/simulation/genesis.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v8/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 1aae1278e56..7d56fedd8c0 100644 --- a/modules/apps/transfer/simulation/genesis_test.go +++ b/modules/apps/transfer/simulation/genesis_test.go @@ -15,8 +15,8 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/simulation" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/simulation" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" ) // TestRandomizedGenState tests the normal scenario of applying RandomizedGenState. diff --git a/modules/apps/transfer/transfer_test.go b/modules/apps/transfer/transfer_test.go index a5232b9e702..647a1b83665 100644 --- a/modules/apps/transfer/transfer_test.go +++ b/modules/apps/transfer/transfer_test.go @@ -9,9 +9,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) type TransferTestSuite struct { diff --git a/modules/apps/transfer/types/authz.pb.go b/modules/apps/transfer/types/authz.pb.go index f5bee61bd43..e05cdc401e7 100644 --- a/modules/apps/transfer/types/authz.pb.go +++ b/modules/apps/transfer/types/authz.pb.go @@ -159,30 +159,30 @@ var fileDescriptor_b1a28b55d17325aa = []byte{ // 408 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x52, 0x3d, 0x8f, 0xd4, 0x30, 0x10, 0x5d, 0xb3, 0x27, 0xa4, 0x75, 0x04, 0x45, 0x04, 0x52, 0xee, 0x04, 0xd9, 0xd5, 0x4a, 0xa0, - 0x34, 0x6b, 0x13, 0x28, 0x4e, 0xa2, 0xbb, 0xbd, 0xf6, 0x8a, 0x23, 0xa2, 0xa2, 0x89, 0x1c, 0xaf, - 0x49, 0x2c, 0x9c, 0x4c, 0x14, 0x3b, 0x41, 0xdc, 0xaf, 0x80, 0xbf, 0x41, 0xcd, 0x8f, 0x38, 0x51, - 0x5d, 0x49, 0xc5, 0xc7, 0xee, 0x1f, 0x41, 0xb1, 0xbd, 0xb0, 0x08, 0xe9, 0xaa, 0x24, 0x2f, 0x6f, - 0x66, 0xde, 0x7b, 0x33, 0x38, 0x91, 0x05, 0xa7, 0xac, 0x6d, 0x95, 0xe4, 0xcc, 0x48, 0x68, 0x34, - 0x35, 0x1d, 0x6b, 0xf4, 0x5b, 0xd1, 0xd1, 0x21, 0xa5, 0xac, 0x37, 0xd5, 0x15, 0x69, 0x3b, 0x30, - 0x10, 0x3e, 0x92, 0x05, 0x27, 0x87, 0x4c, 0xb2, 0x67, 0x92, 0x21, 0x3d, 0x39, 0xe6, 0xa0, 0x6b, - 0xd0, 0xb9, 0xe5, 0x52, 0xf7, 0xe1, 0x0a, 0x4f, 0x1e, 0x94, 0x50, 0x82, 0xc3, 0xc7, 0x37, 0x8f, - 0xc6, 0x8e, 0x43, 0x0b, 0xa6, 0x05, 0x1d, 0xd2, 0x42, 0x18, 0x96, 0x52, 0x0e, 0xb2, 0x71, 0xff, - 0x97, 0xbf, 0x10, 0xc6, 0x67, 0x4a, 0x81, 0x1b, 0x16, 0xce, 0x71, 0xa0, 0xa1, 0xef, 0xb8, 0xc8, - 0x5b, 0xe8, 0x4c, 0x84, 0x16, 0x28, 0x99, 0x65, 0xd8, 0x41, 0x97, 0xd0, 0x99, 0xf0, 0x09, 0xbe, - 0xef, 0x09, 0xbc, 0x62, 0x4d, 0x23, 0x54, 0x74, 0xc7, 0x72, 0xee, 0x39, 0xf4, 0xdc, 0x81, 0xa1, - 0xc2, 0x81, 0x6e, 0x45, 0xb3, 0xc9, 0x95, 0xac, 0xa5, 0x89, 0xa6, 0x8b, 0x69, 0x12, 0x3c, 0x3f, - 0x26, 0x5e, 0xf0, 0x28, 0x86, 0x78, 0x31, 0xe4, 0x1c, 0x64, 0xb3, 0x7e, 0x76, 0xfd, 0x7d, 0x3e, - 0xf9, 0xfc, 0x63, 0x9e, 0x94, 0xd2, 0x54, 0x7d, 0x41, 0x38, 0xd4, 0xde, 0x9d, 0x7f, 0xac, 0xf4, - 0xe6, 0x1d, 0x35, 0x1f, 0x5a, 0xa1, 0x6d, 0x81, 0xce, 0xb0, 0xed, 0x7f, 0x31, 0xb6, 0x0f, 0x1f, - 0x63, 0xcc, 0x94, 0x82, 0xf7, 0xb9, 0x92, 0xda, 0x44, 0x47, 0x8b, 0x69, 0x32, 0xcb, 0x66, 0x16, - 0xb9, 0x90, 0xda, 0x2c, 0x3f, 0x21, 0xfc, 0xf0, 0xb5, 0x0f, 0xf1, 0xac, 0x37, 0x15, 0x74, 0xf2, - 0xca, 0xd9, 0xbd, 0xc4, 0x01, 0xfb, 0x63, 0x5e, 0x47, 0xc8, 0xca, 0x4c, 0xc8, 0x6d, 0x2b, 0x20, - 0x7f, 0xd3, 0x5a, 0x1f, 0x8d, 0xaa, 0xb3, 0xc3, 0x16, 0x2f, 0x9f, 0x7e, 0xfd, 0xb2, 0x5a, 0x7a, - 0x9b, 0x6e, 0xad, 0x7b, 0x9f, 0xff, 0x4c, 0x5e, 0xbf, 0xba, 0xde, 0xc6, 0xe8, 0x66, 0x1b, 0xa3, - 0x9f, 0xdb, 0x18, 0x7d, 0xdc, 0xc5, 0x93, 0x9b, 0x5d, 0x3c, 0xf9, 0xb6, 0x8b, 0x27, 0x6f, 0x4e, - 0xff, 0x8f, 0x40, 0x16, 0x7c, 0x55, 0x02, 0x1d, 0x4e, 0x69, 0x0d, 0x9b, 0x5e, 0x09, 0x3d, 0x9e, - 0xd2, 0xc1, 0x09, 0xd9, 0x5c, 0x8a, 0xbb, 0x76, 0xa3, 0x2f, 0x7e, 0x07, 0x00, 0x00, 0xff, 0xff, - 0x1b, 0xbb, 0x65, 0x15, 0x6c, 0x02, 0x00, 0x00, + 0x34, 0x6b, 0x13, 0x28, 0x40, 0x74, 0xb7, 0xd7, 0x5e, 0x71, 0x44, 0x54, 0x34, 0x91, 0xe3, 0x35, + 0x89, 0x85, 0x93, 0x89, 0x62, 0x27, 0x88, 0xfb, 0x15, 0xf0, 0x37, 0xa8, 0xf9, 0x11, 0x27, 0xaa, + 0x2b, 0xa9, 0xf8, 0xd8, 0xfd, 0x23, 0x28, 0xb6, 0x17, 0x16, 0x21, 0x5d, 0x95, 0xe4, 0xe5, 0xcd, + 0xcc, 0x7b, 0x6f, 0x06, 0x27, 0xb2, 0xe0, 0x94, 0xb5, 0xad, 0x92, 0x9c, 0x19, 0x09, 0x8d, 0xa6, + 0xa6, 0x63, 0x8d, 0x7e, 0x2b, 0x3a, 0x3a, 0xa4, 0x94, 0xf5, 0xa6, 0xba, 0x24, 0x6d, 0x07, 0x06, + 0xc2, 0x07, 0xb2, 0xe0, 0xe4, 0x90, 0x49, 0xf6, 0x4c, 0x32, 0xa4, 0x27, 0xc7, 0x1c, 0x74, 0x0d, + 0x3a, 0xb7, 0x5c, 0xea, 0x3e, 0x5c, 0xe1, 0xc9, 0xbd, 0x12, 0x4a, 0x70, 0xf8, 0xf8, 0xe6, 0xd1, + 0xd8, 0x71, 0x68, 0xc1, 0xb4, 0xa0, 0x43, 0x5a, 0x08, 0xc3, 0x52, 0xca, 0x41, 0x36, 0xee, 0xff, + 0xf2, 0x17, 0xc2, 0xf8, 0x54, 0x29, 0x70, 0xc3, 0xc2, 0x39, 0x0e, 0x34, 0xf4, 0x1d, 0x17, 0x79, + 0x0b, 0x9d, 0x89, 0xd0, 0x02, 0x25, 0xb3, 0x0c, 0x3b, 0xe8, 0x02, 0x3a, 0x13, 0x3e, 0xc2, 0x77, + 0x3d, 0x81, 0x57, 0xac, 0x69, 0x84, 0x8a, 0x6e, 0x59, 0xce, 0x1d, 0x87, 0x9e, 0x39, 0x30, 0x54, + 0x38, 0xd0, 0xad, 0x68, 0x36, 0xb9, 0x92, 0xb5, 0x34, 0xd1, 0x74, 0x31, 0x4d, 0x82, 0xa7, 0xc7, + 0xc4, 0x0b, 0x1e, 0xc5, 0x10, 0x2f, 0x86, 0x9c, 0x81, 0x6c, 0xd6, 0x4f, 0xae, 0xbe, 0xcf, 0x27, + 0x9f, 0x7f, 0xcc, 0x93, 0x52, 0x9a, 0xaa, 0x2f, 0x08, 0x87, 0xda, 0xbb, 0xf3, 0x8f, 0x95, 0xde, + 0xbc, 0xa3, 0xe6, 0x43, 0x2b, 0xb4, 0x2d, 0xd0, 0x19, 0xb6, 0xfd, 0xcf, 0xc7, 0xf6, 0xe1, 0x43, + 0x8c, 0x99, 0x52, 0xf0, 0x3e, 0x57, 0x52, 0x9b, 0xe8, 0x68, 0x31, 0x4d, 0x66, 0xd9, 0xcc, 0x22, + 0xe7, 0x52, 0x9b, 0xe5, 0x27, 0x84, 0xef, 0xbf, 0xf6, 0x21, 0x9e, 0xf6, 0xa6, 0x82, 0x4e, 0x5e, + 0x3a, 0xbb, 0x17, 0x38, 0x60, 0x7f, 0xcc, 0xeb, 0x08, 0x59, 0x99, 0x09, 0xb9, 0x69, 0x05, 0xe4, + 0x6f, 0x5a, 0xeb, 0xa3, 0x51, 0x75, 0x76, 0xd8, 0xe2, 0xe5, 0xe3, 0xaf, 0x5f, 0x56, 0x4b, 0x6f, + 0xd3, 0xad, 0x75, 0xef, 0xf3, 0x9f, 0xc9, 0xeb, 0x57, 0x57, 0xdb, 0x18, 0x5d, 0x6f, 0x63, 0xf4, + 0x73, 0x1b, 0xa3, 0x8f, 0xbb, 0x78, 0x72, 0xbd, 0x8b, 0x27, 0xdf, 0x76, 0xf1, 0xe4, 0xcd, 0xf3, + 0xff, 0x23, 0x90, 0x05, 0x5f, 0x95, 0x40, 0x87, 0x17, 0xb4, 0x86, 0x4d, 0xaf, 0x84, 0x1e, 0x4f, + 0xe9, 0xe0, 0x84, 0x6c, 0x2e, 0xc5, 0x6d, 0xbb, 0xd1, 0x67, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, + 0xba, 0x7f, 0xf1, 0xfd, 0x6c, 0x02, 0x00, 0x00, } func (m *Allocation) Marshal() (dAtA []byte, err error) { diff --git a/modules/apps/transfer/types/codec_test.go b/modules/apps/transfer/types/codec_test.go index 05620ede27a..591f1748094 100644 --- a/modules/apps/transfer/types/codec_test.go +++ b/modules/apps/transfer/types/codec_test.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" ) // TestMustMarshalProtoJSON tests that the memo field is only emitted (marshalled) if it is populated diff --git a/modules/apps/transfer/types/expected_keepers.go b/modules/apps/transfer/types/expected_keepers.go index db029dba534..8f9cde9cbb4 100644 --- a/modules/apps/transfer/types/expected_keepers.go +++ b/modules/apps/transfer/types/expected_keepers.go @@ -6,9 +6,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" + connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + ibcexported "github.com/cosmos/ibc-go/v8/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 ea96a59ea61..b04cd61aeaf 100644 --- a/modules/apps/transfer/types/genesis.go +++ b/modules/apps/transfer/types/genesis.go @@ -3,7 +3,7 @@ package types import ( sdk "github.com/cosmos/cosmos-sdk/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" ) // NewGenesisState creates a new ibc-transfer GenesisState instance. diff --git a/modules/apps/transfer/types/genesis.pb.go b/modules/apps/transfer/types/genesis.pb.go index be82e834cd0..bae224a8222 100644 --- a/modules/apps/transfer/types/genesis.pb.go +++ b/modules/apps/transfer/types/genesis.pb.go @@ -105,31 +105,31 @@ func init() { } var fileDescriptor_a4f788affd5bea89 = []byte{ - // 377 bytes of a gzipped FileDescriptorProto + // 378 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x51, 0xb1, 0x8e, 0xd3, 0x40, 0x10, 0xb5, 0x93, 0xc8, 0x08, 0x27, 0xa4, 0xb0, 0x90, 0x30, 0x11, 0x72, 0x22, 0x44, 0x61, 0x81, - 0xb2, 0x8b, 0x43, 0x91, 0xde, 0x80, 0x10, 0x1d, 0x18, 0x2a, 0x28, 0xa2, 0xf5, 0x7a, 0x31, 0x2b, - 0x62, 0x8f, 0xb5, 0xb3, 0x31, 0xe2, 0x2f, 0xf8, 0x8e, 0xfb, 0x86, 0xfb, 0x80, 0x94, 0x29, 0xaf, - 0xba, 0x3b, 0x25, 0x3f, 0x72, 0xf2, 0xda, 0x17, 0x45, 0x3a, 0x29, 0x95, 0x67, 0x3c, 0xef, 0xbd, - 0x99, 0x7d, 0xcf, 0x7d, 0x2d, 0x53, 0x4e, 0x59, 0x55, 0xad, 0x25, 0x67, 0x5a, 0x42, 0x89, 0x54, - 0x2b, 0x56, 0xe2, 0x2f, 0xa1, 0x68, 0x1d, 0xd1, 0x5c, 0x94, 0x02, 0x25, 0x92, 0x4a, 0x81, 0x06, - 0xef, 0x85, 0x4c, 0x39, 0x39, 0xc5, 0x92, 0x7b, 0x2c, 0xa9, 0xa3, 0xc9, 0x9b, 0xb3, 0x4a, 0x47, - 0xa4, 0x91, 0x9a, 0x04, 0x1c, 0xb0, 0x00, 0xa4, 0x29, 0x43, 0x41, 0xeb, 0x28, 0x15, 0x9a, 0x45, - 0x94, 0x83, 0x2c, 0xbb, 0xf9, 0xd3, 0x1c, 0x72, 0x30, 0x25, 0x6d, 0xaa, 0xf6, 0xef, 0xcb, 0xcb, - 0x9e, 0x3b, 0xfa, 0xd4, 0x9e, 0xf4, 0x4d, 0x33, 0x2d, 0xbc, 0x67, 0xee, 0xa3, 0x0a, 0x94, 0x5e, - 0xc9, 0xcc, 0xb7, 0x67, 0x76, 0xf8, 0x38, 0x71, 0x9a, 0xf6, 0x73, 0xe6, 0xfd, 0x74, 0x47, 0x99, - 0x28, 0xa1, 0x58, 0x69, 0xc5, 0xb8, 0x40, 0xbf, 0x37, 0xeb, 0x87, 0xc3, 0x45, 0x48, 0xce, 0xbd, - 0x80, 0x7c, 0x68, 0x18, 0xdf, 0x1b, 0x42, 0x3c, 0xde, 0x5e, 0x4f, 0xad, 0x8b, 0x9b, 0xa9, 0x63, - 0x5a, 0x4c, 0x86, 0xd9, 0x71, 0x86, 0x5e, 0xec, 0x3a, 0x15, 0x53, 0xac, 0x40, 0xbf, 0x3f, 0xb3, - 0xc3, 0xe1, 0xe2, 0xd5, 0x79, 0xd9, 0x2f, 0x06, 0x1b, 0x0f, 0x1a, 0xc9, 0xa4, 0x63, 0x7a, 0xca, - 0x1d, 0x6b, 0xd0, 0x6c, 0xbd, 0x12, 0xc8, 0x15, 0xfc, 0x15, 0x99, 0x3f, 0x30, 0x27, 0x3e, 0x27, - 0xad, 0x33, 0xa4, 0x71, 0x86, 0x74, 0xce, 0x90, 0xf7, 0x20, 0xcb, 0xf8, 0x6d, 0x77, 0x53, 0x98, - 0x4b, 0xfd, 0x7b, 0x93, 0x12, 0x0e, 0x05, 0xed, 0x6c, 0x6c, 0x3f, 0x73, 0xcc, 0xfe, 0x50, 0xfd, - 0xaf, 0x12, 0x68, 0x08, 0x98, 0x3c, 0x31, 0x2b, 0x3e, 0x76, 0x1b, 0xe2, 0xaf, 0xdb, 0x7d, 0x60, - 0xef, 0xf6, 0x81, 0x7d, 0xbb, 0x0f, 0xec, 0xff, 0x87, 0xc0, 0xda, 0x1d, 0x02, 0xeb, 0xea, 0x10, - 0x58, 0x3f, 0x96, 0x0f, 0x25, 0x65, 0xca, 0xe7, 0x39, 0xd0, 0x7a, 0x49, 0x0b, 0xc8, 0x36, 0x6b, - 0x81, 0x4d, 0xb6, 0x27, 0x99, 0x9a, 0x3d, 0xa9, 0x63, 0x82, 0x79, 0x77, 0x17, 0x00, 0x00, 0xff, - 0xff, 0x5f, 0x34, 0x4a, 0xbc, 0x47, 0x02, 0x00, 0x00, + 0xb2, 0x8b, 0x43, 0x01, 0xb5, 0x01, 0x21, 0x3a, 0x30, 0x54, 0x50, 0x44, 0xeb, 0xf5, 0x62, 0x56, + 0xc4, 0x1e, 0x6b, 0x67, 0x63, 0x74, 0x7f, 0x71, 0xdf, 0x71, 0xdf, 0x70, 0x1f, 0x90, 0x32, 0xe5, + 0x55, 0x77, 0xa7, 0xe4, 0x47, 0x4e, 0x5e, 0xfb, 0xa2, 0x48, 0x27, 0xa5, 0xf2, 0x8c, 0xe7, 0xbd, + 0x37, 0xb3, 0xef, 0xb9, 0xaf, 0x65, 0xca, 0x29, 0xab, 0xaa, 0x95, 0xe4, 0x4c, 0x4b, 0x28, 0x91, + 0x6a, 0xc5, 0x4a, 0xfc, 0x23, 0x14, 0xad, 0x23, 0x9a, 0x8b, 0x52, 0xa0, 0x44, 0x52, 0x29, 0xd0, + 0xe0, 0xbd, 0x90, 0x29, 0x27, 0xc7, 0x58, 0x72, 0x8f, 0x25, 0x75, 0x34, 0x79, 0x73, 0x52, 0xe9, + 0x80, 0x34, 0x52, 0x93, 0x80, 0x03, 0x16, 0x80, 0x34, 0x65, 0x28, 0x68, 0x1d, 0xa5, 0x42, 0xb3, + 0x88, 0x72, 0x90, 0x65, 0x37, 0x7f, 0x9a, 0x43, 0x0e, 0xa6, 0xa4, 0x4d, 0xd5, 0xfe, 0x7d, 0x79, + 0xd9, 0x73, 0x47, 0x5f, 0xda, 0x93, 0x7e, 0x68, 0xa6, 0x85, 0xf7, 0xcc, 0x7d, 0x54, 0x81, 0xd2, + 0x4b, 0x99, 0xf9, 0xf6, 0xcc, 0x0e, 0x1f, 0x27, 0x4e, 0xd3, 0x7e, 0xcd, 0xbc, 0xdf, 0xee, 0x28, + 0x13, 0x25, 0x14, 0x4b, 0xad, 0x18, 0x17, 0xe8, 0xf7, 0x66, 0xfd, 0x70, 0xb8, 0x08, 0xc9, 0xa9, + 0x17, 0x90, 0x4f, 0x0d, 0xe3, 0x67, 0x43, 0x88, 0xc7, 0x9b, 0xeb, 0xa9, 0x75, 0x71, 0x33, 0x75, + 0x4c, 0x8b, 0xc9, 0x30, 0x3b, 0xcc, 0xd0, 0x8b, 0x5d, 0xa7, 0x62, 0x8a, 0x15, 0xe8, 0xf7, 0x67, + 0x76, 0x38, 0x5c, 0xbc, 0x3a, 0x2d, 0xfb, 0xcd, 0x60, 0xe3, 0x41, 0x23, 0x99, 0x74, 0x4c, 0x4f, + 0xb9, 0x63, 0x0d, 0x9a, 0xad, 0x96, 0x02, 0xb9, 0x82, 0xff, 0x22, 0xf3, 0x07, 0xe6, 0xc4, 0xe7, + 0xa4, 0x75, 0x86, 0x34, 0xce, 0x90, 0xce, 0x19, 0xf2, 0x11, 0x64, 0x19, 0xbf, 0xed, 0x6e, 0x0a, + 0x73, 0xa9, 0xff, 0xae, 0x53, 0xc2, 0xa1, 0xa0, 0x9d, 0x8d, 0xed, 0x67, 0x8e, 0xd9, 0x3f, 0xaa, + 0xcf, 0x2a, 0x81, 0x86, 0x80, 0xc9, 0x13, 0xb3, 0xe2, 0x73, 0xb7, 0x21, 0xfe, 0xbe, 0xd9, 0x05, + 0xf6, 0x76, 0x17, 0xd8, 0xb7, 0xbb, 0xc0, 0x3e, 0xdf, 0x07, 0xd6, 0x76, 0x1f, 0x58, 0x57, 0xfb, + 0xc0, 0xfa, 0xf5, 0xfe, 0xa1, 0xa4, 0x4c, 0xf9, 0x3c, 0x07, 0x5a, 0x7f, 0xa0, 0x05, 0x64, 0xeb, + 0x95, 0xc0, 0x26, 0xdb, 0xa3, 0x4c, 0xcd, 0x9e, 0xd4, 0x31, 0xc1, 0xbc, 0xbb, 0x0b, 0x00, 0x00, + 0xff, 0xff, 0xfe, 0xf0, 0xde, 0x54, 0x47, 0x02, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/modules/apps/transfer/types/genesis_test.go b/modules/apps/transfer/types/genesis_test.go index 415ba2b9b27..25ffcf83aaa 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/v7/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v8/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 e19765ed57c..e4f72d79f6d 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/v7/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v8/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 cd51a33e696..35c68b50379 100644 --- a/modules/apps/transfer/types/msgs.go +++ b/modules/apps/transfer/types/msgs.go @@ -8,9 +8,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" legacytx "github.com/cosmos/cosmos-sdk/x/auth/migrations/legacytx" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" ) // msg types diff --git a/modules/apps/transfer/types/msgs_test.go b/modules/apps/transfer/types/msgs_test.go index 2004645a9f4..47f7d28a91e 100644 --- a/modules/apps/transfer/types/msgs_test.go +++ b/modules/apps/transfer/types/msgs_test.go @@ -11,9 +11,9 @@ import ( "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) // define constants used for testing diff --git a/modules/apps/transfer/types/packet.go b/modules/apps/transfer/types/packet.go index ec543dd75f9..548c4626797 100644 --- a/modules/apps/transfer/types/packet.go +++ b/modules/apps/transfer/types/packet.go @@ -10,8 +10,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" ) var ( diff --git a/modules/apps/transfer/types/packet.pb.go b/modules/apps/transfer/types/packet.pb.go index 574e4880453..5b0c659e69c 100644 --- a/modules/apps/transfer/types/packet.pb.go +++ b/modules/apps/transfer/types/packet.pb.go @@ -118,20 +118,20 @@ var fileDescriptor_653ca2ce9a5ca313 = []byte{ // 254 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x4c, 0x90, 0xb1, 0x4a, 0x34, 0x31, 0x14, 0x46, 0x27, 0xff, 0xbf, 0xbb, 0x68, 0xca, 0x20, 0x3a, 0x88, 0x04, 0xb1, 0xd2, 0xc2, 0x09, - 0xac, 0xc5, 0xf6, 0x22, 0xd6, 0x2a, 0x56, 0x76, 0x49, 0xe6, 0x3a, 0x86, 0x9d, 0xe4, 0x86, 0x24, + 0xac, 0x85, 0xd6, 0x22, 0xd6, 0x2a, 0x56, 0x76, 0x49, 0xe6, 0x3a, 0x86, 0x9d, 0xe4, 0x86, 0x24, 0x33, 0xe0, 0x53, 0xe8, 0x63, 0x59, 0x6e, 0x69, 0x29, 0x33, 0x2f, 0x22, 0x9b, 0x51, 0xd9, 0x2e, - 0xe7, 0xe4, 0xbb, 0xcd, 0xa1, 0x17, 0x46, 0x69, 0x21, 0xbd, 0x6f, 0x8d, 0x96, 0xc9, 0xa0, 0x8b, - 0x22, 0x05, 0xe9, 0xe2, 0x33, 0x04, 0xd1, 0x2f, 0x85, 0x97, 0x7a, 0x0d, 0xa9, 0xf2, 0x01, 0x13, - 0xb2, 0x13, 0xa3, 0x74, 0xb5, 0x3b, 0xad, 0x7e, 0xa7, 0x55, 0xbf, 0x3c, 0x7b, 0x23, 0xf4, 0xe8, - 0xb6, 0x73, 0x8d, 0x51, 0x2d, 0x3c, 0xe2, 0x1a, 0xdc, 0x5d, 0xbe, 0xbd, 0x91, 0x49, 0xb2, 0x03, - 0x3a, 0xaf, 0xc1, 0xa1, 0x2d, 0xc9, 0x29, 0x39, 0xdf, 0x7f, 0x98, 0x80, 0x1d, 0xd2, 0x85, 0xb4, - 0xd8, 0xb9, 0x54, 0xfe, 0xcb, 0xfa, 0x87, 0xb6, 0x3e, 0x82, 0xab, 0x21, 0x94, 0xff, 0x27, 0x3f, - 0x11, 0x3b, 0xa6, 0x7b, 0x01, 0x34, 0x98, 0x1e, 0x42, 0x39, 0xcb, 0x3f, 0x7f, 0xcc, 0x18, 0x9d, - 0x59, 0xb0, 0x58, 0xce, 0xb3, 0xcf, 0xef, 0xeb, 0xfb, 0x8f, 0x81, 0x93, 0xcd, 0xc0, 0xc9, 0xd7, - 0xc0, 0xc9, 0xfb, 0xc8, 0x8b, 0xcd, 0xc8, 0x8b, 0xcf, 0x91, 0x17, 0x4f, 0xab, 0xc6, 0xa4, 0x97, - 0x4e, 0x55, 0x1a, 0xad, 0xd0, 0x18, 0x2d, 0x46, 0x61, 0x94, 0xbe, 0x6c, 0x50, 0xf4, 0x2b, 0x61, - 0xb1, 0xee, 0x5a, 0x88, 0xdb, 0x28, 0x3b, 0x31, 0xd2, 0xab, 0x87, 0xa8, 0x16, 0xb9, 0xc4, 0xd5, - 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0x32, 0xf9, 0x52, 0xde, 0x36, 0x01, 0x00, 0x00, + 0xe7, 0xe4, 0xbb, 0xcd, 0xa1, 0x67, 0x46, 0x69, 0x21, 0xbd, 0x6f, 0x8d, 0x96, 0xc9, 0xa0, 0x8b, + 0x22, 0x05, 0xe9, 0xe2, 0x33, 0x04, 0xd1, 0x2f, 0x85, 0x97, 0x7a, 0x05, 0xa9, 0xf2, 0x01, 0x13, + 0xb2, 0x23, 0xa3, 0x74, 0xb5, 0x3d, 0xad, 0x7e, 0xa7, 0x55, 0xbf, 0x3c, 0x79, 0x23, 0xf4, 0xe0, + 0xb6, 0x73, 0x8d, 0x51, 0x2d, 0x3c, 0xe2, 0x0a, 0xdc, 0x5d, 0xbe, 0xbd, 0x91, 0x49, 0xb2, 0x3d, + 0x3a, 0xaf, 0xc1, 0xa1, 0x2d, 0xc9, 0x31, 0x39, 0xdd, 0x7d, 0x98, 0x80, 0xed, 0xd3, 0x85, 0xb4, + 0xd8, 0xb9, 0x54, 0xfe, 0xcb, 0xfa, 0x87, 0x36, 0x3e, 0x82, 0xab, 0x21, 0x94, 0xff, 0x27, 0x3f, + 0x11, 0x3b, 0xa4, 0x3b, 0x01, 0x34, 0x98, 0x1e, 0x42, 0x39, 0xcb, 0x3f, 0x7f, 0xcc, 0x18, 0x9d, + 0x59, 0xb0, 0x58, 0xce, 0xb3, 0xcf, 0xef, 0xeb, 0xfb, 0x8f, 0x81, 0x93, 0xf5, 0xc0, 0xc9, 0xd7, + 0xc0, 0xc9, 0xfb, 0xc8, 0x8b, 0xf5, 0xc8, 0x8b, 0xcf, 0x91, 0x17, 0x4f, 0x97, 0x8d, 0x49, 0x2f, + 0x9d, 0xaa, 0x34, 0x5a, 0xa1, 0x31, 0x5a, 0x8c, 0xc2, 0x28, 0x7d, 0xde, 0xa0, 0xe8, 0xaf, 0x84, + 0xc5, 0xba, 0x6b, 0x21, 0x6e, 0xa2, 0x6c, 0xc5, 0x48, 0xaf, 0x1e, 0xa2, 0x5a, 0xe4, 0x12, 0x17, + 0xdf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x93, 0x3d, 0xc6, 0x36, 0x36, 0x01, 0x00, 0x00, } func (m *FungibleTokenPacketData) Marshal() (dAtA []byte, err error) { diff --git a/modules/apps/transfer/types/packet_test.go b/modules/apps/transfer/types/packet_test.go index fa10f64e5ba..480452b783a 100644 --- a/modules/apps/transfer/types/packet_test.go +++ b/modules/apps/transfer/types/packet_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" ) const ( diff --git a/modules/apps/transfer/types/query.pb.go b/modules/apps/transfer/types/query.pb.go index b7a3904461e..e7e3343b0b4 100644 --- a/modules/apps/transfer/types/query.pb.go +++ b/modules/apps/transfer/types/query.pb.go @@ -616,59 +616,59 @@ func init() { } var fileDescriptor_a638e2800a01538c = []byte{ - // 830 bytes of a gzipped FileDescriptorProto + // 829 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x56, 0x4f, 0x4f, 0xe3, 0x46, 0x14, 0x8f, 0x29, 0xa4, 0xcd, 0x4b, 0xe1, 0x30, 0xd0, 0x02, 0x16, 0x35, 0xc8, 0xa2, 0x2d, 0x4a, - 0xc1, 0xd3, 0x40, 0x20, 0x3d, 0x40, 0xa5, 0x42, 0x4b, 0x4b, 0xd5, 0x03, 0x04, 0x4e, 0xe5, 0x10, - 0x4d, 0xec, 0xa9, 0x63, 0x29, 0xf1, 0x18, 0x8f, 0x93, 0x0a, 0x45, 0x5c, 0xfa, 0x09, 0x2a, 0xf1, - 0x25, 0x56, 0x2b, 0xad, 0xf6, 0x2b, 0xec, 0x91, 0x23, 0xda, 0x95, 0x56, 0x9c, 0x76, 0x57, 0xb0, - 0x1f, 0x64, 0xe5, 0xf1, 0x38, 0xb1, 0x97, 0x10, 0x92, 0x3d, 0xc5, 0x33, 0xef, 0xdf, 0xef, 0xf7, - 0x7e, 0xf3, 0x9e, 0x02, 0x2b, 0x4e, 0xcd, 0xc4, 0xc4, 0xf3, 0x1a, 0x8e, 0x49, 0x02, 0x87, 0xb9, - 0x1c, 0x07, 0x3e, 0x71, 0xf9, 0x3f, 0xd4, 0xc7, 0xed, 0x22, 0x3e, 0x6b, 0x51, 0xff, 0xdc, 0xf0, - 0x7c, 0x16, 0x30, 0xb4, 0xe0, 0xd4, 0x4c, 0x23, 0xe9, 0x69, 0xc4, 0x9e, 0x46, 0xbb, 0xa8, 0xce, - 0xd8, 0xcc, 0x66, 0xc2, 0x11, 0x87, 0x5f, 0x51, 0x8c, 0xaa, 0x99, 0x8c, 0x37, 0x19, 0xc7, 0x35, - 0xc2, 0x29, 0x6e, 0x17, 0x6b, 0x34, 0x20, 0x45, 0x6c, 0x32, 0xc7, 0x95, 0xf6, 0x42, 0xd2, 0x2e, - 0x8a, 0x75, 0xbd, 0x3c, 0x62, 0x3b, 0xae, 0x28, 0x24, 0x7d, 0x7f, 0x18, 0x88, 0xb4, 0x8b, 0x25, - 0x72, 0x5e, 0xb0, 0x19, 0xb3, 0x1b, 0x14, 0x13, 0xcf, 0xc1, 0xc4, 0x75, 0x59, 0x20, 0x21, 0x0b, - 0xab, 0xbe, 0x0a, 0x5f, 0x1f, 0x85, 0xc5, 0x7e, 0xa5, 0x2e, 0x6b, 0x9e, 0xf8, 0xc4, 0xa4, 0x15, - 0x7a, 0xd6, 0xa2, 0x3c, 0x40, 0x08, 0xc6, 0xeb, 0x84, 0xd7, 0xe7, 0x94, 0x25, 0x65, 0x25, 0x57, - 0x11, 0xdf, 0xba, 0x05, 0xb3, 0xf7, 0xbc, 0xb9, 0xc7, 0x5c, 0x4e, 0xd1, 0x01, 0xe4, 0xad, 0xf0, - 0xb6, 0x1a, 0x84, 0xd7, 0x22, 0x2a, 0xbf, 0xbe, 0x62, 0x0c, 0xea, 0x94, 0x91, 0x48, 0x03, 0x56, - 0xf7, 0x5b, 0x27, 0xf7, 0xaa, 0xf0, 0x18, 0xd4, 0x3e, 0x40, 0xaf, 0x1b, 0xb2, 0xc8, 0x77, 0x46, - 0xd4, 0x3a, 0x23, 0x6c, 0x9d, 0x11, 0xe9, 0x24, 0x5b, 0x67, 0x1c, 0x12, 0x3b, 0x26, 0x54, 0x49, - 0x44, 0xea, 0x2f, 0x14, 0x98, 0xbb, 0x5f, 0x43, 0x52, 0x39, 0x85, 0x2f, 0x13, 0x54, 0xf8, 0x9c, - 0xb2, 0xf4, 0xd9, 0x28, 0x5c, 0x76, 0xa7, 0xae, 0xde, 0x2c, 0x66, 0x9e, 0xbe, 0x5d, 0xcc, 0xca, - 0xbc, 0xf9, 0x1e, 0x37, 0x8e, 0x7e, 0x4f, 0x31, 0x18, 0x13, 0x0c, 0xbe, 0x7f, 0x94, 0x41, 0x84, - 0x2c, 0x45, 0x61, 0x06, 0x90, 0x60, 0x70, 0x48, 0x7c, 0xd2, 0x8c, 0x1b, 0xa4, 0x1f, 0xc3, 0x74, - 0xea, 0x56, 0x52, 0xda, 0x86, 0xac, 0x27, 0x6e, 0x64, 0xcf, 0x96, 0x07, 0x93, 0x91, 0xd1, 0x32, - 0x46, 0x5f, 0x83, 0xaf, 0x7a, 0xcd, 0xfa, 0x83, 0xf0, 0x7a, 0x2c, 0xc7, 0x0c, 0x4c, 0xf4, 0xe4, - 0xce, 0x55, 0xa2, 0x43, 0xfa, 0x4d, 0x45, 0xee, 0x12, 0x46, 0xbf, 0x37, 0x75, 0x0c, 0xf3, 0xc2, - 0xfb, 0x37, 0x6e, 0xfa, 0xec, 0xdf, 0x5f, 0x2c, 0xcb, 0xa7, 0xbc, 0xab, 0xf7, 0x2c, 0x7c, 0xee, - 0x31, 0x3f, 0xa8, 0x3a, 0x96, 0x8c, 0xc9, 0x86, 0xc7, 0x03, 0x0b, 0x7d, 0x03, 0x60, 0xd6, 0x89, - 0xeb, 0xd2, 0x46, 0x68, 0x1b, 0x13, 0xb6, 0x9c, 0xbc, 0x39, 0xb0, 0xf4, 0x3d, 0x50, 0xfb, 0x25, - 0x95, 0x30, 0xbe, 0x85, 0x29, 0x2a, 0x0c, 0x55, 0x12, 0x59, 0x64, 0xf2, 0x49, 0x9a, 0x74, 0xd7, - 0xcb, 0xb0, 0x28, 0x92, 0x9c, 0xb0, 0x80, 0x34, 0xa2, 0x4c, 0xfb, 0xcc, 0x17, 0xac, 0x12, 0x0d, - 0x10, 0xe2, 0xc6, 0x0d, 0x10, 0x07, 0xfd, 0x14, 0x96, 0x1e, 0x0e, 0x94, 0x18, 0xca, 0x90, 0x25, - 0x4d, 0xd6, 0x72, 0x03, 0xa9, 0xc8, 0x7c, 0xea, 0x0d, 0xc4, 0xea, 0xef, 0x31, 0xc7, 0xdd, 0x1d, - 0x0f, 0xdf, 0x53, 0x45, 0xba, 0xaf, 0xdf, 0x7c, 0x01, 0x13, 0x22, 0x3b, 0x7a, 0xae, 0x00, 0xf4, - 0x9e, 0x1d, 0x2a, 0x0d, 0xd6, 0xb4, 0xff, 0x98, 0xab, 0x9b, 0x23, 0x46, 0x45, 0xf0, 0xf5, 0xd2, - 0x7f, 0xaf, 0xde, 0x5f, 0x8e, 0x19, 0x68, 0x15, 0xcb, 0x5d, 0x94, 0xde, 0x41, 0xc9, 0xf9, 0xc1, - 0x9d, 0x50, 0xe7, 0x9d, 0x42, 0xe1, 0x02, 0x3d, 0x51, 0x20, 0x9f, 0x98, 0x38, 0x34, 0x5a, 0xf1, - 0xf8, 0x55, 0xa8, 0x5b, 0xa3, 0x86, 0x49, 0xd0, 0x05, 0x01, 0x7a, 0x19, 0xe9, 0x8f, 0x83, 0x46, - 0x97, 0x0a, 0x64, 0xa3, 0x31, 0x40, 0x3f, 0x0e, 0x51, 0x2e, 0x35, 0x85, 0x6a, 0x71, 0x84, 0x08, - 0x89, 0x6d, 0x59, 0x60, 0xd3, 0xd0, 0x42, 0x7f, 0x6c, 0xd1, 0x24, 0xa2, 0x67, 0x0a, 0xe4, 0xba, - 0x63, 0x85, 0x36, 0x86, 0xed, 0x43, 0x62, 0x66, 0xd5, 0xd2, 0x68, 0x41, 0x12, 0xde, 0xa6, 0x80, - 0x87, 0xd1, 0xda, 0xa0, 0xd6, 0x85, 0x3a, 0x87, 0x7a, 0x8b, 0x16, 0x0a, 0xc1, 0x5f, 0x2b, 0x30, - 0x99, 0x9a, 0x41, 0x54, 0x1e, 0xa2, 0x7c, 0xbf, 0x55, 0xa0, 0xfe, 0x34, 0x7a, 0xa0, 0xc4, 0x5e, - 0x11, 0xd8, 0xff, 0x42, 0x7f, 0xf6, 0xc7, 0x2e, 0xb7, 0x06, 0xc7, 0x9d, 0xde, 0x46, 0xb9, 0xc0, - 0xe1, 0x9e, 0xe1, 0xb8, 0x23, 0xb7, 0xcf, 0x05, 0x4e, 0x2f, 0x0c, 0xf4, 0x52, 0x81, 0xe9, 0x3e, - 0xe3, 0x8d, 0x76, 0x86, 0x40, 0xf9, 0xf0, 0x3e, 0x51, 0x7f, 0xfe, 0xd4, 0x70, 0x49, 0x75, 0x5b, - 0x50, 0xdd, 0x42, 0xa5, 0x01, 0x32, 0x71, 0xdc, 0x11, 0xbf, 0xa1, 0x40, 0x38, 0x08, 0x93, 0x55, - 0x23, 0x72, 0xbb, 0x47, 0x57, 0xb7, 0x9a, 0x72, 0x7d, 0xab, 0x29, 0xef, 0x6e, 0x35, 0xe5, 0xff, - 0x3b, 0x2d, 0x73, 0x7d, 0xa7, 0x65, 0x6e, 0xee, 0xb4, 0xcc, 0xdf, 0x65, 0xdb, 0x09, 0xea, 0xad, - 0x9a, 0x61, 0xb2, 0x26, 0x96, 0x7f, 0x54, 0x9c, 0x9a, 0xb9, 0x66, 0x33, 0xdc, 0x2e, 0xe3, 0x26, - 0xb3, 0x5a, 0x0d, 0xca, 0x3f, 0x2a, 0x17, 0x9c, 0x7b, 0x94, 0xd7, 0xb2, 0xe2, 0x6f, 0xc6, 0xc6, - 0x87, 0x00, 0x00, 0x00, 0xff, 0xff, 0xd9, 0x35, 0xa9, 0x75, 0x5d, 0x09, 0x00, 0x00, + 0xc1, 0xd3, 0x40, 0x20, 0x1c, 0xa0, 0x52, 0xa1, 0xa5, 0xa5, 0xea, 0x01, 0x02, 0xa7, 0x72, 0x88, + 0x26, 0xf6, 0xd4, 0xb1, 0x94, 0x78, 0x8c, 0xc7, 0x49, 0x85, 0x22, 0x2e, 0xfd, 0x04, 0x95, 0xf8, + 0x12, 0x55, 0xa5, 0x6a, 0xbf, 0xc2, 0x1e, 0x39, 0xa2, 0x5d, 0x69, 0xc5, 0x69, 0x77, 0x05, 0xfb, + 0x41, 0x56, 0x1e, 0x8f, 0x13, 0x7b, 0x09, 0x21, 0xd9, 0x53, 0x3c, 0xf3, 0xfe, 0xfd, 0x7e, 0xef, + 0x37, 0xef, 0x29, 0xb0, 0xe2, 0xd4, 0x4c, 0x4c, 0x3c, 0xaf, 0xe1, 0x98, 0x24, 0x70, 0x98, 0xcb, + 0x71, 0xe0, 0x13, 0x97, 0xff, 0x49, 0x7d, 0xdc, 0x2e, 0xe2, 0xf3, 0x16, 0xf5, 0x2f, 0x0c, 0xcf, + 0x67, 0x01, 0x43, 0x0b, 0x4e, 0xcd, 0x34, 0x92, 0x9e, 0x46, 0xec, 0x69, 0xb4, 0x8b, 0xea, 0x8c, + 0xcd, 0x6c, 0x26, 0x1c, 0x71, 0xf8, 0x15, 0xc5, 0xa8, 0x9a, 0xc9, 0x78, 0x93, 0x71, 0x5c, 0x23, + 0x9c, 0xe2, 0x76, 0xb1, 0x46, 0x03, 0x52, 0xc4, 0x26, 0x73, 0x5c, 0x69, 0x2f, 0x24, 0xed, 0xa2, + 0x58, 0xd7, 0xcb, 0x23, 0xb6, 0xe3, 0x8a, 0x42, 0xd2, 0xf7, 0xbb, 0x81, 0x48, 0xbb, 0x58, 0x22, + 0xe7, 0x05, 0x9b, 0x31, 0xbb, 0x41, 0x31, 0xf1, 0x1c, 0x4c, 0x5c, 0x97, 0x05, 0x12, 0xb2, 0xb0, + 0xea, 0xab, 0xf0, 0xe5, 0x71, 0x58, 0xec, 0x27, 0xea, 0xb2, 0xe6, 0xa9, 0x4f, 0x4c, 0x5a, 0xa1, + 0xe7, 0x2d, 0xca, 0x03, 0x84, 0x60, 0xbc, 0x4e, 0x78, 0x7d, 0x4e, 0x59, 0x52, 0x56, 0x72, 0x15, + 0xf1, 0xad, 0x5b, 0x30, 0xfb, 0xc0, 0x9b, 0x7b, 0xcc, 0xe5, 0x14, 0x1d, 0x42, 0xde, 0x0a, 0x6f, + 0xab, 0x41, 0x78, 0x2d, 0xa2, 0xf2, 0xeb, 0x2b, 0xc6, 0xa0, 0x4e, 0x19, 0x89, 0x34, 0x60, 0x75, + 0xbf, 0x75, 0xf2, 0xa0, 0x0a, 0x8f, 0x41, 0x1d, 0x00, 0xf4, 0xba, 0x21, 0x8b, 0x7c, 0x63, 0x44, + 0xad, 0x33, 0xc2, 0xd6, 0x19, 0x91, 0x4e, 0xb2, 0x75, 0xc6, 0x11, 0xb1, 0x63, 0x42, 0x95, 0x44, + 0xa4, 0xfe, 0x5c, 0x81, 0xb9, 0x87, 0x35, 0x24, 0x95, 0x33, 0xf8, 0x3c, 0x41, 0x85, 0xcf, 0x29, + 0x4b, 0x9f, 0x8c, 0xc2, 0x65, 0x6f, 0xea, 0xfa, 0xf5, 0x62, 0xe6, 0xbf, 0x37, 0x8b, 0x59, 0x99, + 0x37, 0xdf, 0xe3, 0xc6, 0xd1, 0x2f, 0x29, 0x06, 0x63, 0x82, 0xc1, 0xb7, 0x4f, 0x32, 0x88, 0x90, + 0xa5, 0x28, 0xcc, 0x00, 0x12, 0x0c, 0x8e, 0x88, 0x4f, 0x9a, 0x71, 0x83, 0xf4, 0x13, 0x98, 0x4e, + 0xdd, 0x4a, 0x4a, 0x3b, 0x90, 0xf5, 0xc4, 0x8d, 0xec, 0xd9, 0xf2, 0x60, 0x32, 0x32, 0x5a, 0xc6, + 0xe8, 0x6b, 0xf0, 0x45, 0xaf, 0x59, 0xbf, 0x12, 0x5e, 0x8f, 0xe5, 0x98, 0x81, 0x89, 0x9e, 0xdc, + 0xb9, 0x4a, 0x74, 0x48, 0xbf, 0xa9, 0xc8, 0x5d, 0xc2, 0xe8, 0xf7, 0xa6, 0x4e, 0x60, 0x5e, 0x78, + 0xff, 0xcc, 0x4d, 0x9f, 0xfd, 0xf5, 0xa3, 0x65, 0xf9, 0x94, 0x77, 0xf5, 0x9e, 0x85, 0x4f, 0x3d, + 0xe6, 0x07, 0x55, 0xc7, 0x92, 0x31, 0xd9, 0xf0, 0x78, 0x68, 0xa1, 0xaf, 0x00, 0xcc, 0x3a, 0x71, + 0x5d, 0xda, 0x08, 0x6d, 0x63, 0xc2, 0x96, 0x93, 0x37, 0x87, 0x96, 0xbe, 0x0f, 0x6a, 0xbf, 0xa4, + 0x12, 0xc6, 0xd7, 0x30, 0x45, 0x85, 0xa1, 0x4a, 0x22, 0x8b, 0x4c, 0x3e, 0x49, 0x93, 0xee, 0x7a, + 0x19, 0x16, 0x45, 0x92, 0x53, 0x16, 0x90, 0x46, 0x94, 0xe9, 0x80, 0xf9, 0x82, 0x55, 0xa2, 0x01, + 0x42, 0xdc, 0xb8, 0x01, 0xe2, 0xa0, 0x9f, 0xc1, 0xd2, 0xe3, 0x81, 0x12, 0x43, 0x19, 0xb2, 0xa4, + 0xc9, 0x5a, 0x6e, 0x20, 0x15, 0x99, 0x4f, 0xbd, 0x81, 0x58, 0xfd, 0x7d, 0xe6, 0xb8, 0x7b, 0xe3, + 0xe1, 0x7b, 0xaa, 0x48, 0xf7, 0xf5, 0xdb, 0xcf, 0x60, 0x42, 0x64, 0x47, 0xcf, 0x14, 0x80, 0xde, + 0xb3, 0x43, 0xa5, 0xc1, 0x9a, 0xf6, 0x1f, 0x73, 0x75, 0x73, 0xc4, 0xa8, 0x08, 0xbe, 0x5e, 0xfa, + 0xfb, 0xe5, 0xbb, 0xab, 0x31, 0x03, 0xad, 0x62, 0xb9, 0x8b, 0xd2, 0x3b, 0x28, 0x39, 0x3f, 0xb8, + 0x13, 0xea, 0xbc, 0x5b, 0x28, 0x5c, 0xa2, 0x7f, 0x15, 0xc8, 0x27, 0x26, 0x0e, 0x8d, 0x56, 0x3c, + 0x7e, 0x15, 0xea, 0xd6, 0xa8, 0x61, 0x12, 0x74, 0x41, 0x80, 0x5e, 0x46, 0xfa, 0xd3, 0xa0, 0xd1, + 0x95, 0x02, 0xd9, 0x68, 0x0c, 0xd0, 0xf7, 0x43, 0x94, 0x4b, 0x4d, 0xa1, 0x5a, 0x1c, 0x21, 0x42, + 0x62, 0x5b, 0x16, 0xd8, 0x34, 0xb4, 0xd0, 0x1f, 0x5b, 0x34, 0x89, 0xe8, 0x7f, 0x05, 0x72, 0xdd, + 0xb1, 0x42, 0x1b, 0xc3, 0xf6, 0x21, 0x31, 0xb3, 0x6a, 0x69, 0xb4, 0x20, 0x09, 0x6f, 0x53, 0xc0, + 0xc3, 0x68, 0x6d, 0x50, 0xeb, 0x42, 0x9d, 0x43, 0xbd, 0x45, 0x0b, 0x85, 0xe0, 0xaf, 0x14, 0x98, + 0x4c, 0xcd, 0x20, 0x2a, 0x0f, 0x51, 0xbe, 0xdf, 0x2a, 0x50, 0xb7, 0x47, 0x0f, 0x94, 0xd8, 0x2b, + 0x02, 0xfb, 0xef, 0xe8, 0xb7, 0xfe, 0xd8, 0xe5, 0xd6, 0xe0, 0xb8, 0xd3, 0xdb, 0x28, 0x97, 0x38, + 0xdc, 0x33, 0x1c, 0x77, 0xe4, 0xf6, 0xb9, 0xc4, 0xe9, 0x85, 0x81, 0x5e, 0x28, 0x30, 0xdd, 0x67, + 0xbc, 0xd1, 0xee, 0x10, 0x28, 0x1f, 0xdf, 0x27, 0xea, 0x0f, 0x1f, 0x1b, 0x2e, 0xa9, 0xee, 0x08, + 0xaa, 0x5b, 0xa8, 0x34, 0x40, 0x26, 0x8e, 0x3b, 0xe2, 0x37, 0x14, 0x08, 0x07, 0x61, 0xb2, 0x6a, + 0x44, 0x6e, 0xef, 0xf8, 0xfa, 0x4e, 0x53, 0x6e, 0xee, 0x34, 0xe5, 0xed, 0x9d, 0xa6, 0xfc, 0x73, + 0xaf, 0x65, 0x6e, 0xee, 0xb5, 0xcc, 0xed, 0xbd, 0x96, 0xf9, 0xa3, 0x6c, 0x3b, 0x41, 0xbd, 0x55, + 0x33, 0x4c, 0xd6, 0xc4, 0xf2, 0x8f, 0x8a, 0x53, 0x33, 0xd7, 0x6c, 0x86, 0xdb, 0xdb, 0xb8, 0xc9, + 0xac, 0x56, 0x83, 0xf2, 0x0f, 0xca, 0x05, 0x17, 0x1e, 0xe5, 0xb5, 0xac, 0xf8, 0x9b, 0xb1, 0xf1, + 0x3e, 0x00, 0x00, 0xff, 0xff, 0x78, 0xf1, 0x3d, 0x9d, 0x5d, 0x09, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/modules/apps/transfer/types/trace.go b/modules/apps/transfer/types/trace.go index d9151f93faa..221b190e040 100644 --- a/modules/apps/transfer/types/trace.go +++ b/modules/apps/transfer/types/trace.go @@ -14,8 +14,8 @@ import ( tmbytes "github.com/cometbft/cometbft/libs/bytes" tmtypes "github.com/cometbft/cometbft/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v8/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/trace_test.go b/modules/apps/transfer/types/trace_test.go index 21e9892a2c3..c4a9e5e5f68 100644 --- a/modules/apps/transfer/types/trace_test.go +++ b/modules/apps/transfer/types/trace_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" ) func TestParseDenomTrace(t *testing.T) { diff --git a/modules/apps/transfer/types/transfer.pb.go b/modules/apps/transfer/types/transfer.pb.go index 56811dbc867..99bfa07a587 100644 --- a/modules/apps/transfer/types/transfer.pb.go +++ b/modules/apps/transfer/types/transfer.pb.go @@ -152,20 +152,20 @@ var fileDescriptor_5041673e96e97901 = []byte{ // 256 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x4c, 0x90, 0x3f, 0x4b, 0x03, 0x31, 0x18, 0x87, 0x9b, 0x22, 0xc5, 0x46, 0x51, 0xc8, 0xd4, 0x41, 0x83, 0x76, 0x51, 0x10, 0x2f, 0x14, - 0x87, 0x8e, 0x82, 0xe8, 0xae, 0xa5, 0x93, 0x4b, 0x49, 0x72, 0xaf, 0x6d, 0xe0, 0xf2, 0x87, 0xbc, - 0xe9, 0x81, 0xdf, 0xc2, 0x8f, 0xe5, 0xd8, 0xd1, 0x51, 0xee, 0xbe, 0x88, 0x5c, 0x2c, 0x47, 0xb7, - 0x1f, 0x4f, 0x9e, 0xbc, 0xc3, 0x43, 0xef, 0x8c, 0xd2, 0x42, 0x86, 0x50, 0x19, 0x2d, 0x93, 0xf1, - 0x0e, 0x45, 0x8a, 0xd2, 0xe1, 0x07, 0x44, 0x51, 0xcf, 0xfa, 0x5d, 0x84, 0xe8, 0x93, 0x67, 0x17, - 0x46, 0xe9, 0xe2, 0x50, 0x2e, 0x7a, 0xa1, 0x9e, 0x4d, 0x1f, 0x29, 0x7d, 0x06, 0xe7, 0xed, 0x32, - 0x4a, 0x0d, 0x8c, 0xd1, 0xa3, 0x20, 0xd3, 0x66, 0x42, 0xae, 0xc8, 0xed, 0x78, 0x91, 0x37, 0xbb, - 0xa4, 0x54, 0x49, 0x84, 0x55, 0xd9, 0x69, 0x93, 0x61, 0x7e, 0x19, 0x77, 0x24, 0xff, 0x9b, 0x2e, - 0xe9, 0xe8, 0x55, 0x46, 0x69, 0x91, 0x5d, 0xd3, 0x53, 0x04, 0x57, 0xae, 0xc0, 0x49, 0x55, 0x41, - 0x99, 0x8f, 0x1c, 0x2f, 0x4e, 0x3a, 0xf6, 0xf2, 0x8f, 0xd8, 0x0d, 0x3d, 0x8f, 0xa0, 0xc1, 0xd4, - 0xd0, 0x5b, 0xc3, 0x6c, 0x9d, 0xed, 0xf1, 0x5e, 0x7c, 0x7a, 0xfb, 0x6e, 0x38, 0xd9, 0x35, 0x9c, - 0xfc, 0x36, 0x9c, 0x7c, 0xb5, 0x7c, 0xb0, 0x6b, 0xf9, 0xe0, 0xa7, 0xe5, 0x83, 0xf7, 0xf9, 0xda, - 0xa4, 0xcd, 0x56, 0x15, 0xda, 0x5b, 0xa1, 0x3d, 0x5a, 0x8f, 0xc2, 0x28, 0x7d, 0xbf, 0xf6, 0xa2, - 0x9e, 0x0b, 0xeb, 0xcb, 0x6d, 0x05, 0xd8, 0xb5, 0x39, 0x68, 0x92, 0x3e, 0x03, 0xa0, 0x1a, 0xe5, - 0x1c, 0x0f, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x85, 0xfd, 0x75, 0xb7, 0x3d, 0x01, 0x00, 0x00, + 0x07, 0xdd, 0x04, 0xd1, 0x5d, 0x4b, 0x27, 0x97, 0x92, 0xe4, 0x5e, 0xdb, 0xc0, 0xe5, 0x0f, 0x79, + 0xd3, 0x03, 0xbf, 0x85, 0x1f, 0xcb, 0xb1, 0xa3, 0xa3, 0xdc, 0x7d, 0x11, 0xb9, 0x58, 0x8e, 0x6e, + 0x3f, 0x9e, 0x3c, 0x79, 0x87, 0x87, 0xde, 0x18, 0xa5, 0x85, 0x0c, 0xa1, 0x32, 0x5a, 0x26, 0xe3, + 0x1d, 0x8a, 0x14, 0xa5, 0xc3, 0x0f, 0x88, 0xa2, 0x9e, 0xf5, 0xbb, 0x08, 0xd1, 0x27, 0xcf, 0xce, + 0x8c, 0xd2, 0xc5, 0xbe, 0x5c, 0xf4, 0x42, 0x3d, 0x9b, 0x3e, 0x52, 0xfa, 0x0c, 0xce, 0xdb, 0x45, + 0x94, 0x1a, 0x18, 0xa3, 0x07, 0x41, 0xa6, 0xf5, 0x84, 0x5c, 0x90, 0xeb, 0xf1, 0x3c, 0x6f, 0x76, + 0x4e, 0xa9, 0x92, 0x08, 0xcb, 0xb2, 0xd3, 0x26, 0xc3, 0xfc, 0x32, 0xee, 0x48, 0xfe, 0x37, 0x5d, + 0xd0, 0xd1, 0xab, 0x8c, 0xd2, 0x22, 0xbb, 0xa4, 0xc7, 0x08, 0xae, 0x5c, 0x82, 0x93, 0xaa, 0x82, + 0x32, 0x1f, 0x39, 0x9c, 0x1f, 0x75, 0xec, 0xe5, 0x1f, 0xb1, 0x2b, 0x7a, 0x1a, 0x41, 0x83, 0xa9, + 0xa1, 0xb7, 0x86, 0xd9, 0x3a, 0xd9, 0xe1, 0x9d, 0xf8, 0xf4, 0xf6, 0xdd, 0x70, 0xb2, 0x6d, 0x38, + 0xf9, 0x6d, 0x38, 0xf9, 0x6a, 0xf9, 0x60, 0xdb, 0xf2, 0xc1, 0x4f, 0xcb, 0x07, 0xef, 0xf7, 0x2b, + 0x93, 0xd6, 0x1b, 0x55, 0x68, 0x6f, 0x85, 0xf6, 0x68, 0x3d, 0x0a, 0xa3, 0xf4, 0xed, 0xca, 0x8b, + 0xfa, 0x41, 0x58, 0x5f, 0x6e, 0x2a, 0xc0, 0xae, 0xcd, 0x5e, 0x93, 0xf4, 0x19, 0x00, 0xd5, 0x28, + 0xe7, 0xb8, 0xfb, 0x0b, 0x00, 0x00, 0xff, 0xff, 0x24, 0x39, 0xe1, 0x5f, 0x3d, 0x01, 0x00, 0x00, } func (m *DenomTrace) Marshal() (dAtA []byte, err error) { diff --git a/modules/apps/transfer/types/transfer_authorization.go b/modules/apps/transfer/types/transfer_authorization.go index bd45d7b29a9..82f40621efd 100644 --- a/modules/apps/transfer/types/transfer_authorization.go +++ b/modules/apps/transfer/types/transfer_authorization.go @@ -12,9 +12,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/x/authz" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" ) var _ authz.Authorization = (*TransferAuthorization)(nil) diff --git a/modules/apps/transfer/types/transfer_authorization_test.go b/modules/apps/transfer/types/transfer_authorization_test.go index a282fc2d81f..3cdb6dc831b 100644 --- a/modules/apps/transfer/types/transfer_authorization_test.go +++ b/modules/apps/transfer/types/transfer_authorization_test.go @@ -6,9 +6,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authz "github.com/cosmos/cosmos-sdk/x/authz" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" - "github.com/cosmos/ibc-go/v7/testing/mock" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" + "github.com/cosmos/ibc-go/v8/testing/mock" ) func (suite *TypesTestSuite) TestTransferAuthorizationAccept() { diff --git a/modules/apps/transfer/types/tx.pb.go b/modules/apps/transfer/types/tx.pb.go index c1e0e40ad54..2e5777434e8 100644 --- a/modules/apps/transfer/types/tx.pb.go +++ b/modules/apps/transfer/types/tx.pb.go @@ -11,7 +11,7 @@ import ( _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" - types1 "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + types1 "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" @@ -220,44 +220,44 @@ func init() { } var fileDescriptor_7401ed9bed2f8e09 = []byte{ - // 583 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x53, 0x41, 0x4f, 0xd4, 0x4e, - 0x14, 0xdf, 0x42, 0xd9, 0x3f, 0xff, 0x59, 0x01, 0x1d, 0x8d, 0x94, 0xc6, 0x74, 0xc9, 0x46, 0x12, - 0x84, 0x30, 0x93, 0x62, 0x08, 0x09, 0x47, 0x38, 0xe8, 0x85, 0x04, 0x37, 0x78, 0xf1, 0x42, 0xda, - 0xe1, 0xd9, 0x9d, 0xb8, 0x9d, 0xa9, 0x33, 0xb3, 0x8d, 0x5e, 0x8c, 0xf1, 0xe4, 0xd1, 0x8f, 0xe0, - 0x47, 0xe0, 0x63, 0x70, 0xe4, 0x68, 0x62, 0x62, 0x0c, 0x1c, 0xb8, 0xf8, 0x21, 0x4c, 0xa7, 0xd3, - 0x4d, 0xf5, 0x80, 0x7a, 0xea, 0xcc, 0x7b, 0xbf, 0xf7, 0x7b, 0xbf, 0xf7, 0x9b, 0x3e, 0xb4, 0xc6, - 0x53, 0x46, 0x93, 0xa2, 0x18, 0x73, 0x96, 0x18, 0x2e, 0x85, 0xa6, 0x46, 0x25, 0x42, 0xbf, 0x04, - 0x45, 0xcb, 0x98, 0x9a, 0x37, 0xa4, 0x50, 0xd2, 0x48, 0xfc, 0x80, 0xa7, 0x8c, 0xb4, 0x61, 0xa4, - 0x81, 0x91, 0x32, 0x0e, 0xef, 0x65, 0x32, 0x93, 0x16, 0x48, 0xab, 0x53, 0x5d, 0x13, 0x2e, 0x33, - 0xa9, 0x73, 0xa9, 0x69, 0xae, 0xb3, 0x8a, 0x2b, 0xd7, 0x99, 0x4b, 0x44, 0x2e, 0x91, 0x26, 0x1a, - 0x68, 0x19, 0xa7, 0x60, 0x92, 0x98, 0x32, 0xc9, 0x85, 0xcb, 0xf7, 0x2b, 0x4d, 0x4c, 0x2a, 0xa0, - 0x6c, 0xcc, 0x41, 0x98, 0xaa, 0xba, 0x3e, 0x39, 0xc0, 0xe6, 0xcd, 0xa2, 0x1b, 0x65, 0x16, 0x3c, - 0xf8, 0x3a, 0x83, 0x7a, 0x87, 0x3a, 0x3b, 0x76, 0x51, 0xdc, 0x47, 0x3d, 0x2d, 0x27, 0x8a, 0xc1, - 0x49, 0x21, 0x95, 0x09, 0xbc, 0x55, 0x6f, 0xfd, 0xff, 0x21, 0xaa, 0x43, 0x47, 0x52, 0x19, 0xbc, - 0x86, 0x16, 0x1d, 0x80, 0x8d, 0x12, 0x21, 0x60, 0x1c, 0xcc, 0x58, 0xcc, 0x42, 0x1d, 0x3d, 0xa8, - 0x83, 0x78, 0x07, 0xcd, 0x19, 0xf9, 0x0a, 0x44, 0x30, 0xbb, 0xea, 0xad, 0xf7, 0xb6, 0x57, 0x48, - 0x3d, 0x15, 0xa9, 0xa6, 0x22, 0x6e, 0x2a, 0x72, 0x20, 0xb9, 0xd8, 0xf7, 0xcf, 0xbf, 0xf5, 0x3b, - 0xc3, 0x1a, 0x8d, 0xef, 0xa3, 0xae, 0x06, 0x71, 0x0a, 0x2a, 0xf0, 0x2d, 0xab, 0xbb, 0xe1, 0x10, - 0xcd, 0x2b, 0x60, 0xc0, 0x4b, 0x50, 0xc1, 0x9c, 0xcd, 0x4c, 0xef, 0xf8, 0x09, 0x5a, 0x34, 0x3c, - 0x07, 0x39, 0x31, 0x27, 0x23, 0xe0, 0xd9, 0xc8, 0x04, 0x5d, 0xdb, 0x33, 0x24, 0xd5, 0xb3, 0x54, - 0x4e, 0x11, 0xe7, 0x4f, 0x19, 0x93, 0xa7, 0x16, 0xe1, 0x9a, 0x2e, 0xb8, 0xba, 0x3a, 0x88, 0x37, - 0xd1, 0x9d, 0x86, 0xa8, 0xfa, 0x6a, 0x93, 0xe4, 0x45, 0xf0, 0xdf, 0xaa, 0xb7, 0xee, 0x0f, 0x6f, - 0xbb, 0xc4, 0x71, 0x13, 0xc7, 0x18, 0xf9, 0x39, 0xe4, 0x32, 0x98, 0xb7, 0x6a, 0xec, 0x79, 0x6f, - 0xe9, 0xe3, 0xe7, 0x7e, 0xe7, 0xc3, 0xf5, 0xd9, 0x86, 0x93, 0x3d, 0xd8, 0x45, 0x77, 0x5b, 0xe6, - 0x0e, 0x41, 0x17, 0x52, 0x68, 0xa8, 0xa6, 0xd1, 0xf0, 0x7a, 0x02, 0x82, 0x81, 0x75, 0xd8, 0x1f, - 0x4e, 0xef, 0x7b, 0x7e, 0xc5, 0x31, 0x78, 0x87, 0x96, 0x0e, 0x75, 0xf6, 0xbc, 0x38, 0x4d, 0x0c, - 0x1c, 0x25, 0x2a, 0xc9, 0xb5, 0xb5, 0x86, 0x67, 0x02, 0x94, 0x7b, 0x14, 0x77, 0xc3, 0xfb, 0xa8, - 0x5b, 0x58, 0x84, 0x7d, 0x88, 0xde, 0xf6, 0x43, 0x72, 0xd3, 0xdf, 0x48, 0x6a, 0x36, 0x67, 0x80, - 0xab, 0x6c, 0x0b, 0xb7, 0xa4, 0x83, 0x15, 0xb4, 0xfc, 0x5b, 0xff, 0x46, 0xfc, 0xf6, 0x0f, 0x0f, - 0xcd, 0x1e, 0xea, 0x0c, 0x8f, 0xd0, 0xfc, 0xf4, 0xaf, 0x79, 0x74, 0x73, 0xcf, 0x96, 0x07, 0x61, - 0xfc, 0xd7, 0xd0, 0xa9, 0x5d, 0x06, 0xdd, 0xfa, 0xc5, 0x89, 0xad, 0x3f, 0x52, 0xb4, 0xe1, 0xe1, - 0xce, 0x3f, 0xc1, 0x9b, 0xae, 0xe1, 0xdc, 0xfb, 0xeb, 0xb3, 0x0d, 0x6f, 0xff, 0xd9, 0xf9, 0x65, - 0xe4, 0x5d, 0x5c, 0x46, 0xde, 0xf7, 0xcb, 0xc8, 0xfb, 0x74, 0x15, 0x75, 0x2e, 0xae, 0xa2, 0xce, - 0x97, 0xab, 0xa8, 0xf3, 0x62, 0x37, 0xe3, 0x66, 0x34, 0x49, 0x09, 0x93, 0x39, 0x75, 0x3b, 0xcb, - 0x53, 0xb6, 0x95, 0x49, 0x5a, 0xee, 0xd2, 0x5c, 0x9e, 0x4e, 0xc6, 0xa0, 0xab, 0x3d, 0x6c, 0xed, - 0x9f, 0x79, 0x5b, 0x80, 0x4e, 0xbb, 0x76, 0xf5, 0x1e, 0xff, 0x0c, 0x00, 0x00, 0xff, 0xff, 0x31, - 0x59, 0x33, 0x3e, 0x5e, 0x04, 0x00, 0x00, + // 582 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x53, 0x41, 0x4f, 0xd4, 0x40, + 0x14, 0xde, 0xc2, 0xb2, 0xe2, 0xac, 0x80, 0x8e, 0x46, 0x4a, 0x63, 0xba, 0x64, 0x23, 0x09, 0x42, + 0x98, 0x49, 0x31, 0x04, 0xc3, 0x11, 0x0e, 0x7a, 0x21, 0xc1, 0x0d, 0x5e, 0xbc, 0x90, 0x76, 0x78, + 0x76, 0x27, 0x6e, 0x67, 0xea, 0xcc, 0x6c, 0xa3, 0x17, 0x63, 0x3c, 0x79, 0xf4, 0x27, 0xf8, 0x13, + 0xf8, 0x19, 0x1c, 0x39, 0x9a, 0x98, 0x18, 0x03, 0x07, 0x2e, 0xfe, 0x08, 0xd3, 0xe9, 0x74, 0x53, + 0x3d, 0xac, 0x7a, 0xea, 0xcc, 0x7b, 0xdf, 0xfb, 0xde, 0xf7, 0xbe, 0xe9, 0x43, 0x6b, 0x3c, 0x61, + 0x34, 0xce, 0xf3, 0x11, 0x67, 0xb1, 0xe1, 0x52, 0x68, 0x6a, 0x54, 0x2c, 0xf4, 0x2b, 0x50, 0xb4, + 0x88, 0xa8, 0x79, 0x4b, 0x72, 0x25, 0x8d, 0xc4, 0x0f, 0x78, 0xc2, 0x48, 0x13, 0x46, 0x6a, 0x18, + 0x29, 0xa2, 0xe0, 0x5e, 0x2a, 0x53, 0x69, 0x81, 0xb4, 0x3c, 0x55, 0x35, 0xc1, 0x32, 0x93, 0x3a, + 0x93, 0x9a, 0x66, 0x3a, 0x2d, 0xb9, 0x32, 0x9d, 0xba, 0x44, 0xe8, 0x12, 0x49, 0xac, 0x81, 0x16, + 0x51, 0x02, 0x26, 0x8e, 0x28, 0x93, 0x5c, 0xb8, 0x7c, 0xaf, 0xd4, 0xc4, 0xa4, 0x02, 0xca, 0x46, + 0x1c, 0x84, 0x29, 0xab, 0xab, 0x93, 0x03, 0x6c, 0x4e, 0x17, 0x5d, 0x2b, 0xb3, 0xe0, 0xfe, 0xb7, + 0x19, 0xd4, 0x3d, 0xd4, 0xe9, 0xb1, 0x8b, 0xe2, 0x1e, 0xea, 0x6a, 0x39, 0x56, 0x0c, 0x4e, 0x72, + 0xa9, 0x8c, 0xef, 0xad, 0x7a, 0xeb, 0x37, 0x07, 0xa8, 0x0a, 0x1d, 0x49, 0x65, 0xf0, 0x1a, 0x5a, + 0x74, 0x00, 0x36, 0x8c, 0x85, 0x80, 0x91, 0x3f, 0x63, 0x31, 0x0b, 0x55, 0xf4, 0xa0, 0x0a, 0xe2, + 0x1d, 0x34, 0x67, 0xe4, 0x6b, 0x10, 0xfe, 0xec, 0xaa, 0xb7, 0xde, 0xdd, 0x5e, 0x21, 0xd5, 0x54, + 0xa4, 0x9c, 0x8a, 0xb8, 0xa9, 0xc8, 0x81, 0xe4, 0x62, 0xbf, 0x7d, 0xfe, 0xbd, 0xd7, 0x1a, 0x54, + 0x68, 0x7c, 0x1f, 0x75, 0x34, 0x88, 0x53, 0x50, 0x7e, 0xdb, 0xb2, 0xba, 0x1b, 0x0e, 0xd0, 0xbc, + 0x02, 0x06, 0xbc, 0x00, 0xe5, 0xcf, 0xd9, 0xcc, 0xe4, 0x8e, 0x9f, 0xa2, 0x45, 0xc3, 0x33, 0x90, + 0x63, 0x73, 0x32, 0x04, 0x9e, 0x0e, 0x8d, 0xdf, 0xb1, 0x3d, 0x03, 0x52, 0x3e, 0x4b, 0xe9, 0x14, + 0x71, 0xfe, 0x14, 0x11, 0x79, 0x66, 0x11, 0xae, 0xe9, 0x82, 0xab, 0xab, 0x82, 0x78, 0x13, 0xdd, + 0xa9, 0x89, 0xca, 0xaf, 0x36, 0x71, 0x96, 0xfb, 0x37, 0x56, 0xbd, 0xf5, 0xf6, 0xe0, 0xb6, 0x4b, + 0x1c, 0xd7, 0x71, 0x8c, 0x51, 0x3b, 0x83, 0x4c, 0xfa, 0xf3, 0x56, 0x8d, 0x3d, 0xef, 0x2d, 0x7d, + 0xfa, 0xd2, 0x6b, 0x7d, 0xbc, 0x3e, 0xdb, 0x70, 0xb2, 0xfb, 0xbb, 0xe8, 0x6e, 0xc3, 0xdc, 0x01, + 0xe8, 0x5c, 0x0a, 0x0d, 0xe5, 0x34, 0x1a, 0xde, 0x8c, 0x41, 0x30, 0xb0, 0x0e, 0xb7, 0x07, 0x93, + 0xfb, 0x5e, 0xbb, 0xe4, 0xe8, 0xbf, 0x47, 0x4b, 0x87, 0x3a, 0x7d, 0x91, 0x9f, 0xc6, 0x06, 0x8e, + 0x62, 0x15, 0x67, 0xda, 0x5a, 0xc3, 0x53, 0x01, 0xca, 0x3d, 0x8a, 0xbb, 0xe1, 0x7d, 0xd4, 0xc9, + 0x2d, 0xc2, 0x3e, 0x44, 0x77, 0xfb, 0x21, 0x99, 0xf6, 0x37, 0x92, 0x8a, 0xcd, 0x19, 0xe0, 0x2a, + 0x9b, 0xc2, 0x2d, 0x69, 0x7f, 0x05, 0x2d, 0xff, 0xd1, 0xbf, 0x16, 0xbf, 0xfd, 0xd3, 0x43, 0xb3, + 0x87, 0x3a, 0xc5, 0x43, 0x34, 0x3f, 0xf9, 0x6b, 0x1e, 0x4d, 0xef, 0xd9, 0xf0, 0x20, 0x88, 0xfe, + 0x19, 0x3a, 0xb1, 0xcb, 0xa0, 0x5b, 0xbf, 0x39, 0xb1, 0xf5, 0x57, 0x8a, 0x26, 0x3c, 0xd8, 0xf9, + 0x2f, 0x78, 0xdd, 0x35, 0x98, 0xfb, 0x70, 0x7d, 0xb6, 0xe1, 0xed, 0x3f, 0x3f, 0xbf, 0x0c, 0xbd, + 0x8b, 0xcb, 0xd0, 0xfb, 0x71, 0x19, 0x7a, 0x9f, 0xaf, 0xc2, 0xd6, 0xc5, 0x55, 0xd8, 0xfa, 0x7a, + 0x15, 0xb6, 0x5e, 0xee, 0xa6, 0xdc, 0x0c, 0xc7, 0x09, 0x61, 0x32, 0xa3, 0x6e, 0x67, 0x79, 0xc2, + 0xb6, 0x52, 0x49, 0x8b, 0x27, 0x34, 0x93, 0xa7, 0xe3, 0x11, 0xe8, 0x72, 0x0f, 0x1b, 0xfb, 0x67, + 0xde, 0xe5, 0xa0, 0x93, 0x8e, 0x5d, 0xbd, 0xc7, 0xbf, 0x02, 0x00, 0x00, 0xff, 0xff, 0x90, 0x9d, + 0xa7, 0xd6, 0x5e, 0x04, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/modules/apps/transfer/types/types_test.go b/modules/apps/transfer/types/types_test.go index d17bf91bf49..b90723d8187 100644 --- a/modules/apps/transfer/types/types_test.go +++ b/modules/apps/transfer/types/types_test.go @@ -5,8 +5,8 @@ import ( testifysuite "github.com/stretchr/testify/suite" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) type TypesTestSuite struct { diff --git a/modules/core/02-client/abci.go b/modules/core/02-client/abci.go index 6297a431a38..90673bc209c 100644 --- a/modules/core/02-client/abci.go +++ b/modules/core/02-client/abci.go @@ -3,9 +3,9 @@ package client import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/core/02-client/keeper" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" + "github.com/cosmos/ibc-go/v8/modules/core/02-client/keeper" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" ) // BeginBlocker is used to perform IBC client upgrades diff --git a/modules/core/02-client/abci_test.go b/modules/core/02-client/abci_test.go index 788856683c4..a77f0a31ffd 100644 --- a/modules/core/02-client/abci_test.go +++ b/modules/core/02-client/abci_test.go @@ -12,10 +12,10 @@ import ( tmproto "github.com/cometbft/cometbft/proto/tendermint/types" - client "github.com/cosmos/ibc-go/v7/modules/core/02-client" - "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + client "github.com/cosmos/ibc-go/v8/modules/core/02-client" + "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v8/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 fd5b4b95338..bef25b878da 100644 --- a/modules/core/02-client/client/cli/cli.go +++ b/modules/core/02-client/client/cli/cli.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" - "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/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 692e5517522..5fdd3611984 100644 --- a/modules/core/02-client/client/cli/query.go +++ b/modules/core/02-client/client/cli/query.go @@ -10,9 +10,9 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/version" - "github.com/cosmos/ibc-go/v7/modules/core/02-client/client/utils" - "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/core/02-client/client/utils" + "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" ) const ( diff --git a/modules/core/02-client/client/cli/tx.go b/modules/core/02-client/client/cli/tx.go index 9260c1ac8cf..7960285fccf 100644 --- a/modules/core/02-client/client/cli/tx.go +++ b/modules/core/02-client/client/cli/tx.go @@ -18,8 +18,8 @@ import ( govcli "github.com/cosmos/cosmos-sdk/x/gov/client/cli" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" - "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/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 9a540f4da3b..21e549e1cd2 100644 --- a/modules/core/02-client/client/proposal_handler.go +++ b/modules/core/02-client/client/proposal_handler.go @@ -3,7 +3,7 @@ package client import ( govclient "github.com/cosmos/cosmos-sdk/x/gov/client" - "github.com/cosmos/ibc-go/v7/modules/core/02-client/client/cli" + "github.com/cosmos/ibc-go/v8/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 5caf7679712..8b8cd8ceb74 100644 --- a/modules/core/02-client/client/utils/utils.go +++ b/modules/core/02-client/client/utils/utils.go @@ -10,12 +10,12 @@ import ( tmtypes "github.com/cometbft/cometbft/types" - "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - ibcclient "github.com/cosmos/ibc-go/v7/modules/core/client" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" + "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + ibcclient "github.com/cosmos/ibc-go/v8/modules/core/client" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" ) // QueryClientState returns a client state. If prove is true, it performs an ABCI store query diff --git a/modules/core/02-client/genesis.go b/modules/core/02-client/genesis.go index 1e391d9daea..37fe651cb5d 100644 --- a/modules/core/02-client/genesis.go +++ b/modules/core/02-client/genesis.go @@ -5,9 +5,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/core/02-client/keeper" - "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/core/02-client/keeper" + "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/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 496d335f367..f2f621fae2a 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" - "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // CreateClient generates a new client identifier and isolated prefix store for the provided client state. diff --git a/modules/core/02-client/keeper/client_test.go b/modules/core/02-client/keeper/client_test.go index 76a39a59c92..5d75c415b3a 100644 --- a/modules/core/02-client/keeper/client_test.go +++ b/modules/core/02-client/keeper/client_test.go @@ -7,13 +7,13 @@ import ( upgradetypes "cosmossdk.io/x/upgrade/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - solomachine "github.com/cosmos/ibc-go/v7/modules/light-clients/06-solomachine" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - localhost "github.com/cosmos/ibc-go/v7/modules/light-clients/09-localhost" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v8/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + localhost "github.com/cosmos/ibc-go/v8/modules/light-clients/09-localhost" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (suite *KeeperTestSuite) TestCreateClient() { diff --git a/modules/core/02-client/keeper/encoding.go b/modules/core/02-client/keeper/encoding.go index 0b9e2a307b3..63191d8a3d8 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/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // UnmarshalClientState attempts to decode and return an ClientState object from diff --git a/modules/core/02-client/keeper/events.go b/modules/core/02-client/keeper/events.go index 5a87d83930f..b855517fdbc 100644 --- a/modules/core/02-client/keeper/events.go +++ b/modules/core/02-client/keeper/events.go @@ -11,8 +11,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // emitCreateClientEvent emits a create client event diff --git a/modules/core/02-client/keeper/grpc_query.go b/modules/core/02-client/keeper/grpc_query.go index 9258c773e0f..12daed284c7 100644 --- a/modules/core/02-client/keeper/grpc_query.go +++ b/modules/core/02-client/keeper/grpc_query.go @@ -16,9 +16,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) var _ types.QueryServer = (*Keeper)(nil) diff --git a/modules/core/02-client/keeper/grpc_query_test.go b/modules/core/02-client/keeper/grpc_query_test.go index f578f6d76a2..c736b54d042 100644 --- a/modules/core/02-client/keeper/grpc_query_test.go +++ b/modules/core/02-client/keeper/grpc_query_test.go @@ -6,10 +6,10 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" "github.com/cosmos/cosmos-sdk/types/query" - "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (suite *KeeperTestSuite) TestQueryClientState() { diff --git a/modules/core/02-client/keeper/keeper.go b/modules/core/02-client/keeper/keeper.go index 83ac95a1015..32ffa35db04 100644 --- a/modules/core/02-client/keeper/keeper.go +++ b/modules/core/02-client/keeper/keeper.go @@ -17,13 +17,13 @@ import ( "github.com/cometbft/cometbft/light" - "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - localhost "github.com/cosmos/ibc-go/v7/modules/light-clients/09-localhost" + "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + localhost "github.com/cosmos/ibc-go/v8/modules/light-clients/09-localhost" ) // Keeper represents a type that grants read and write permissions to any client diff --git a/modules/core/02-client/keeper/keeper_test.go b/modules/core/02-client/keeper/keeper_test.go index a32aad3dbcc..b000ee79650 100644 --- a/modules/core/02-client/keeper/keeper_test.go +++ b/modules/core/02-client/keeper/keeper_test.go @@ -17,16 +17,16 @@ import ( tmbytes "github.com/cometbft/cometbft/libs/bytes" tmtypes "github.com/cometbft/cometbft/types" - "github.com/cosmos/ibc-go/v7/modules/core/02-client/keeper" - "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - solomachine "github.com/cosmos/ibc-go/v7/modules/light-clients/06-solomachine" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - localhost "github.com/cosmos/ibc-go/v7/modules/light-clients/09-localhost" - ibctesting "github.com/cosmos/ibc-go/v7/testing" - ibctestingmock "github.com/cosmos/ibc-go/v7/testing/mock" - "github.com/cosmos/ibc-go/v7/testing/simapp" + "github.com/cosmos/ibc-go/v8/modules/core/02-client/keeper" + "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v8/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + localhost "github.com/cosmos/ibc-go/v8/modules/light-clients/09-localhost" + ibctesting "github.com/cosmos/ibc-go/v8/testing" + ibctestingmock "github.com/cosmos/ibc-go/v8/testing/mock" + "github.com/cosmos/ibc-go/v8/testing/simapp" ) const ( diff --git a/modules/core/02-client/keeper/migrations.go b/modules/core/02-client/keeper/migrations.go index 19ff9d48d85..b41f7024556 100644 --- a/modules/core/02-client/keeper/migrations.go +++ b/modules/core/02-client/keeper/migrations.go @@ -3,8 +3,8 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - v7 "github.com/cosmos/ibc-go/v7/modules/core/02-client/migrations/v7" - "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + v7 "github.com/cosmos/ibc-go/v8/modules/core/02-client/migrations/v7" + "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" ) // Migrator is a struct for handling in-place store migrations. diff --git a/modules/core/02-client/keeper/migrations_test.go b/modules/core/02-client/keeper/migrations_test.go index 0967478017f..7bdd26b8a12 100644 --- a/modules/core/02-client/keeper/migrations_test.go +++ b/modules/core/02-client/keeper/migrations_test.go @@ -1,9 +1,9 @@ package keeper_test import ( - "github.com/cosmos/ibc-go/v7/modules/core/02-client/keeper" - "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/core/02-client/keeper" + "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // TestMigrateParams tests the migration for the client params diff --git a/modules/core/02-client/keeper/proposal.go b/modules/core/02-client/keeper/proposal.go index 4cfdf1cec19..a8748542d1e 100644 --- a/modules/core/02-client/keeper/proposal.go +++ b/modules/core/02-client/keeper/proposal.go @@ -8,8 +8,8 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/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 a400034622e..5e5a44e068d 100644 --- a/modules/core/02-client/keeper/proposal_test.go +++ b/modules/core/02-client/keeper/proposal_test.go @@ -5,10 +5,10 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" - "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (suite *KeeperTestSuite) TestClientUpdateProposal() { diff --git a/modules/core/02-client/migrations/v7/expected_keepers.go b/modules/core/02-client/migrations/v7/expected_keepers.go index 26b13cff021..4a73d42d20f 100644 --- a/modules/core/02-client/migrations/v7/expected_keepers.go +++ b/modules/core/02-client/migrations/v7/expected_keepers.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // ClientKeeper expected IBC client keeper diff --git a/modules/core/02-client/migrations/v7/genesis.go b/modules/core/02-client/migrations/v7/genesis.go index 13eec1df18f..230ccad4c61 100644 --- a/modules/core/02-client/migrations/v7/genesis.go +++ b/modules/core/02-client/migrations/v7/genesis.go @@ -5,8 +5,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // MigrateGenesis accepts an exported IBC client genesis file and migrates it to: diff --git a/modules/core/02-client/migrations/v7/genesis_test.go b/modules/core/02-client/migrations/v7/genesis_test.go index 711d3fce94d..8fc8b5f23f2 100644 --- a/modules/core/02-client/migrations/v7/genesis_test.go +++ b/modules/core/02-client/migrations/v7/genesis_test.go @@ -6,12 +6,12 @@ import ( "github.com/cosmos/cosmos-sdk/codec" codectypes "github.com/cosmos/cosmos-sdk/codec/types" - ibcclient "github.com/cosmos/ibc-go/v7/modules/core/02-client" - v7 "github.com/cosmos/ibc-go/v7/modules/core/02-client/migrations/v7" - "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + ibcclient "github.com/cosmos/ibc-go/v8/modules/core/02-client" + v7 "github.com/cosmos/ibc-go/v8/modules/core/02-client/migrations/v7" + "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (suite *MigrationsV7TestSuite) TestMigrateGenesisSolomachine() { diff --git a/modules/core/02-client/migrations/v7/localhost_test.go b/modules/core/02-client/migrations/v7/localhost_test.go index fc09523a94c..57b604b09cd 100644 --- a/modules/core/02-client/migrations/v7/localhost_test.go +++ b/modules/core/02-client/migrations/v7/localhost_test.go @@ -1,9 +1,9 @@ package v7_test import ( - v7 "github.com/cosmos/ibc-go/v7/modules/core/02-client/migrations/v7" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + v7 "github.com/cosmos/ibc-go/v8/modules/core/02-client/migrations/v7" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) func (suite *MigrationsV7TestSuite) TestMigrateLocalhostClient() { diff --git a/modules/core/02-client/migrations/v7/solomachine.go b/modules/core/02-client/migrations/v7/solomachine.go index 6c8315fda2f..4b9b1a82fa6 100644 --- a/modules/core/02-client/migrations/v7/solomachine.go +++ b/modules/core/02-client/migrations/v7/solomachine.go @@ -8,7 +8,7 @@ import ( cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // NOTE: this is a mock implmentation for exported.ClientState. This implementation diff --git a/modules/core/02-client/migrations/v7/solomachine.pb.go b/modules/core/02-client/migrations/v7/solomachine.pb.go index e579505f3e6..ae3eedd4ae8 100644 --- a/modules/core/02-client/migrations/v7/solomachine.pb.go +++ b/modules/core/02-client/migrations/v7/solomachine.pb.go @@ -8,8 +8,8 @@ import ( types "github.com/cosmos/cosmos-sdk/codec/types" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" - types1 "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - types2 "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + types1 "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + types2 "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" io "io" math "math" math_bits "math/bits" @@ -823,85 +823,85 @@ func init() { } var fileDescriptor_141333b361aae010 = []byte{ - // 1237 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x56, 0x51, 0x6f, 0xdb, 0x54, - 0x14, 0xae, 0xb3, 0xac, 0x4b, 0x4e, 0xba, 0x36, 0x32, 0x05, 0x52, 0x6f, 0xca, 0x4c, 0xd1, 0x58, - 0x41, 0xcc, 0xa6, 0x1d, 0x6c, 0x68, 0xd2, 0x00, 0xcf, 0xf1, 0x58, 0x58, 0xeb, 0x06, 0xc7, 0x1d, - 0xdb, 0x5e, 0x2c, 0xc7, 0xbe, 0x4d, 0xad, 0x25, 0xbe, 0x99, 0x7d, 0x93, 0x2e, 0xfc, 0x82, 0x29, - 0xf0, 0xc0, 0x1f, 0x88, 0x84, 0xc4, 0x1f, 0xe0, 0x67, 0x80, 0x78, 0xd9, 0x23, 0x8f, 0x68, 0x13, - 0x3f, 0x03, 0x09, 0xf9, 0xde, 0x9b, 0xd8, 0x49, 0xd7, 0xf4, 0x61, 0x6f, 0xf7, 0x9e, 0xf3, 0x9d, - 0xef, 0x3b, 0xe7, 0x5c, 0x9f, 0x7b, 0x0d, 0xdb, 0x41, 0xcb, 0x53, 0x3b, 0x41, 0xfb, 0x88, 0x78, - 0x9d, 0x00, 0x85, 0x24, 0x56, 0x63, 0xdc, 0xc1, 0x5d, 0xd7, 0x3b, 0x0a, 0x42, 0xa4, 0x0e, 0x76, - 0xb2, 0x5b, 0xa5, 0x17, 0x61, 0x82, 0xc5, 0x2b, 0x41, 0xcb, 0x53, 0xb2, 0x21, 0x4a, 0x16, 0x33, - 0xd8, 0x91, 0xae, 0x25, 0x9c, 0x1e, 0x8e, 0x90, 0xea, 0xe1, 0x30, 0x44, 0x1e, 0x09, 0x70, 0xa8, - 0x0e, 0xb6, 0x33, 0x3b, 0xc6, 0x24, 0x7d, 0x90, 0x02, 0x8f, 0xdc, 0x30, 0x44, 0x1d, 0x8a, 0x62, - 0x4b, 0x0e, 0x59, 0x6f, 0xe3, 0x36, 0xa6, 0x4b, 0x35, 0x59, 0x71, 0xeb, 0x46, 0x1b, 0xe3, 0x76, - 0x07, 0xa9, 0x74, 0xd7, 0xea, 0x1f, 0xaa, 0x6e, 0x38, 0x64, 0xae, 0xcd, 0x7f, 0x05, 0x28, 0xe9, - 0x34, 0xaf, 0x26, 0x71, 0x09, 0x12, 0x25, 0x28, 0xc4, 0xe8, 0x59, 0x1f, 0x85, 0x1e, 0xaa, 0x08, - 0xb2, 0xb0, 0x95, 0xb7, 0xa6, 0x7b, 0xf1, 0x12, 0x14, 0x83, 0xd8, 0x39, 0x8c, 0xf0, 0x8f, 0x28, - 0xac, 0xe4, 0x64, 0x61, 0xab, 0x60, 0x15, 0x82, 0xf8, 0x1e, 0xdd, 0x8b, 0x8f, 0x60, 0xcd, 0xc3, - 0x61, 0x8c, 0xc2, 0xb8, 0x1f, 0x3b, 0x71, 0xc2, 0x55, 0x39, 0x27, 0x0b, 0x5b, 0xa5, 0x1d, 0x55, - 0x39, 0xa3, 0x01, 0x8a, 0x3e, 0x89, 0xa3, 0x29, 0x58, 0xab, 0xde, 0xcc, 0x5e, 0xbc, 0x03, 0x97, - 0xdc, 0x4e, 0x07, 0x1f, 0x3b, 0xfd, 0x9e, 0xef, 0x12, 0xe4, 0xb8, 0x87, 0x04, 0x45, 0x4e, 0x2f, - 0xc2, 0x3d, 0x1c, 0xbb, 0x9d, 0x4a, 0x9e, 0x26, 0x52, 0xa1, 0x90, 0x03, 0x8a, 0xd0, 0x12, 0x40, - 0x83, 0xfb, 0x6f, 0xe7, 0x5f, 0xfc, 0x7a, 0x65, 0x69, 0xf3, 0x27, 0x01, 0x56, 0x67, 0x75, 0xc4, - 0x1b, 0x00, 0xbd, 0x7e, 0xab, 0x13, 0x78, 0xce, 0x53, 0x34, 0xa4, 0xc5, 0x96, 0x76, 0xd6, 0x15, - 0xd6, 0x2a, 0x65, 0xd2, 0x2a, 0x45, 0x0b, 0x87, 0x56, 0x91, 0xe1, 0x1e, 0xa0, 0xa1, 0x28, 0x43, - 0xc9, 0x0f, 0x06, 0x28, 0x8a, 0x83, 0xc3, 0x00, 0x45, 0xb4, 0x0b, 0x45, 0x2b, 0x6b, 0x12, 0x2f, - 0x43, 0x91, 0x04, 0x5d, 0x14, 0x13, 0xb7, 0xdb, 0xa3, 0x2d, 0xc8, 0x5b, 0xa9, 0x81, 0x67, 0xf3, - 0x97, 0x00, 0xcb, 0xf7, 0x91, 0xeb, 0xa3, 0x68, 0x61, 0xc3, 0x67, 0xa8, 0x72, 0x73, 0x54, 0x89, - 0x37, 0x0e, 0xda, 0xa1, 0x4b, 0xfa, 0x11, 0xeb, 0xf5, 0x8a, 0x95, 0x1a, 0xc4, 0xdb, 0xb0, 0x1a, - 0xa2, 0x63, 0x27, 0x53, 0x61, 0x7e, 0x41, 0x85, 0x2b, 0x21, 0x3a, 0x6e, 0x4c, 0x8b, 0xbc, 0x06, - 0x6b, 0x49, 0x6c, 0xb6, 0xd0, 0xf3, 0xb4, 0xd0, 0x84, 0xb2, 0x96, 0x5a, 0x79, 0x35, 0xff, 0x09, - 0xb0, 0xb2, 0x17, 0xc4, 0x2d, 0x74, 0xe4, 0x0e, 0x02, 0xdc, 0x8f, 0x92, 0x0f, 0x85, 0x1d, 0xb5, - 0x13, 0xf8, 0xb4, 0xa8, 0xa2, 0x55, 0x60, 0x86, 0xba, 0x3f, 0x53, 0x70, 0x6e, 0xae, 0xe0, 0x87, - 0x70, 0x71, 0x5a, 0x81, 0x83, 0xc3, 0xc9, 0x27, 0xb4, 0x7d, 0xe6, 0x27, 0xd4, 0x9c, 0x44, 0x69, - 0xa1, 0x5f, 0x73, 0x89, 0x6b, 0xad, 0x4c, 0x79, 0xf6, 0xc3, 0x39, 0x5e, 0x72, 0x8c, 0x79, 0x2f, - 0xde, 0x8a, 0xd7, 0x3e, 0xc6, 0xbc, 0xfe, 0xdf, 0x05, 0x28, 0xcf, 0x03, 0x67, 0x4f, 0x47, 0x98, - 0x3f, 0x9d, 0x7b, 0x50, 0xf4, 0x5d, 0xe2, 0x3a, 0x64, 0xd8, 0x63, 0x5d, 0x58, 0xdd, 0xf9, 0xf8, - 0xcc, 0x64, 0x12, 0x5e, 0x7b, 0xd8, 0x43, 0x56, 0xc1, 0xe7, 0x2b, 0x51, 0x84, 0x7c, 0xb2, 0xe6, - 0xc7, 0x4f, 0xd7, 0xb3, 0x5f, 0x4d, 0xfe, 0xcd, 0x1f, 0x20, 0x82, 0x8a, 0x3d, 0x31, 0x21, 0x7f, - 0x9a, 0x3c, 0xcd, 0xfc, 0x2a, 0xac, 0xa6, 0xcd, 0xa2, 0xec, 0x2c, 0xfd, 0xb4, 0x85, 0xb5, 0x13, - 0x32, 0xb9, 0x37, 0xcb, 0xfc, 0x29, 0x40, 0x31, 0x21, 0xbf, 0x3b, 0x24, 0x28, 0x7e, 0x8b, 0x4f, - 0x7d, 0x6e, 0xea, 0xce, 0x9d, 0x9c, 0xba, 0x99, 0x86, 0xe6, 0xdf, 0xbe, 0xa1, 0xe7, 0xd3, 0x86, - 0xf2, 0x5a, 0x9e, 0x01, 0xb0, 0x91, 0xa5, 0xd5, 0x7f, 0x0e, 0x25, 0x3e, 0x5e, 0x67, 0xdf, 0x1e, - 0x6c, 0xb6, 0x4e, 0x19, 0xac, 0xdc, 0x82, 0xc1, 0xf2, 0x61, 0x2d, 0x73, 0x37, 0x53, 0x5d, 0x11, - 0xf2, 0x3d, 0x97, 0x1c, 0xf1, 0x23, 0xa1, 0x6b, 0xf1, 0x16, 0xac, 0xf0, 0x71, 0x63, 0xf7, 0x6e, - 0x6e, 0x41, 0x32, 0x25, 0x2f, 0x25, 0xe4, 0x2a, 0x5d, 0x10, 0x67, 0x6f, 0xc6, 0x53, 0x85, 0xee, - 0x9c, 0xbc, 0xe3, 0x17, 0x69, 0xcd, 0x5d, 0xe4, 0x5c, 0x6e, 0x00, 0xef, 0xe8, 0xd3, 0x97, 0x6d, - 0xb1, 0x9e, 0x01, 0x90, 0x3e, 0x82, 0x5c, 0xea, 0x2a, 0x3d, 0xd5, 0xe4, 0x15, 0x54, 0x32, 0x0f, - 0xe4, 0x60, 0x5b, 0x49, 0x49, 0x8d, 0xd0, 0xb7, 0x32, 0x81, 0xd3, 0x66, 0x96, 0x75, 0xf6, 0x56, - 0x2e, 0x16, 0xbd, 0x09, 0x17, 0xf8, 0x9b, 0xca, 0x15, 0x2f, 0x67, 0x14, 0xf9, 0x63, 0x9b, 0xc8, - 0xb1, 0xa5, 0x35, 0x01, 0x73, 0x95, 0xef, 0x60, 0xbd, 0xe1, 0x7a, 0x4f, 0x11, 0xd1, 0x71, 0xb7, - 0x1b, 0x90, 0x2e, 0x0a, 0xc9, 0xa9, 0x4a, 0xd5, 0xa4, 0xbc, 0x09, 0x8a, 0x8a, 0xad, 0x58, 0x19, - 0xcb, 0xe6, 0x63, 0xd8, 0x60, 0x5c, 0x9a, 0xf7, 0x34, 0xc4, 0xc7, 0x1d, 0xe4, 0xb7, 0xd1, 0x42, - 0xc2, 0x2d, 0x58, 0x73, 0x67, 0xa1, 0x9c, 0x75, 0xde, 0xbc, 0xa9, 0x40, 0x85, 0x51, 0x5b, 0xc8, - 0x43, 0x41, 0x8f, 0x68, 0xad, 0x38, 0x19, 0xc3, 0xd3, 0x98, 0x37, 0x4d, 0x58, 0x37, 0xd1, 0x73, - 0xd2, 0xe4, 0xe3, 0x6a, 0x21, 0x6f, 0x70, 0x6a, 0x16, 0x9b, 0x70, 0x31, 0x44, 0xcf, 0x89, 0x13, - 0xa3, 0x67, 0x4e, 0x84, 0xbc, 0x01, 0x1f, 0xe7, 0x52, 0xc8, 0x08, 0x92, 0xd8, 0x4f, 0x7e, 0xce, - 0x43, 0x61, 0x32, 0x7d, 0xe2, 0x97, 0xf0, 0x61, 0x4d, 0xb3, 0x35, 0xc7, 0x7e, 0xdc, 0x30, 0x9c, - 0x03, 0xb3, 0x6e, 0xd6, 0xed, 0xba, 0xb6, 0x5b, 0x7f, 0x62, 0xd4, 0x9c, 0x03, 0xb3, 0xd9, 0x30, - 0xf4, 0xfa, 0xbd, 0xba, 0x51, 0x2b, 0x2f, 0x49, 0x6b, 0xa3, 0xb1, 0x5c, 0xca, 0x98, 0xc4, 0x8f, - 0xe0, 0xbd, 0x34, 0x52, 0xdf, 0xad, 0x1b, 0xa6, 0xed, 0x34, 0x6d, 0xcd, 0x36, 0xca, 0x82, 0x04, - 0xa3, 0xb1, 0xbc, 0xcc, 0x6c, 0xe2, 0xa7, 0xb0, 0x91, 0xc1, 0xed, 0x9b, 0x4d, 0xc3, 0x6c, 0x1e, - 0x34, 0x39, 0x34, 0x27, 0x5d, 0x1c, 0x8d, 0xe5, 0xe2, 0xd4, 0x2c, 0x2a, 0x20, 0xcd, 0xa0, 0x4d, - 0x43, 0xb7, 0xeb, 0xfb, 0x26, 0x87, 0x9f, 0x93, 0x56, 0x47, 0x63, 0x19, 0x52, 0xbb, 0xb8, 0x05, - 0xef, 0x67, 0xf0, 0xf7, 0x35, 0xd3, 0x34, 0x76, 0x39, 0x38, 0x2f, 0x95, 0x46, 0x63, 0xf9, 0x02, - 0x37, 0x8a, 0x5f, 0xc0, 0xa5, 0x14, 0xd9, 0xd0, 0xf4, 0x07, 0x86, 0xed, 0xe8, 0xfb, 0x7b, 0x7b, - 0x75, 0x7b, 0xcf, 0x30, 0xed, 0xf2, 0x79, 0x69, 0x7d, 0x34, 0x96, 0xcb, 0xcc, 0x91, 0xda, 0xc5, - 0xaf, 0x41, 0x3e, 0x11, 0xa6, 0xe9, 0x0f, 0xcc, 0xfd, 0x1f, 0x76, 0x8d, 0xda, 0xb7, 0x06, 0x8d, - 0x5d, 0x96, 0x36, 0x46, 0x63, 0xf9, 0x5d, 0xe6, 0x9d, 0x73, 0x8a, 0x5f, 0xbd, 0x81, 0xc0, 0x32, - 0x74, 0xa3, 0xde, 0xb0, 0x1d, 0xed, 0x6e, 0xd3, 0x30, 0x75, 0xa3, 0x7c, 0x41, 0xaa, 0x8c, 0xc6, - 0xf2, 0x3a, 0xf3, 0x72, 0x27, 0xf7, 0x89, 0x37, 0xe1, 0x72, 0x1a, 0x6f, 0x1a, 0x8f, 0x6c, 0xa7, - 0x69, 0x7c, 0x7f, 0x90, 0xb8, 0x12, 0x9a, 0x87, 0xe5, 0x02, 0x4b, 0x3c, 0xf1, 0x4c, 0x1c, 0x89, - 0x5d, 0x94, 0xa1, 0x9c, 0xc6, 0xdd, 0x37, 0xb4, 0x9a, 0x61, 0x95, 0x8b, 0xec, 0x64, 0xd8, 0x4e, - 0xca, 0xbf, 0xf8, 0xad, 0xba, 0x74, 0xf7, 0xc9, 0x1f, 0xaf, 0xaa, 0xc2, 0xcb, 0x57, 0x55, 0xe1, - 0x9f, 0x57, 0x55, 0xe1, 0x97, 0xd7, 0xd5, 0xa5, 0x97, 0xaf, 0xab, 0x4b, 0x7f, 0xbf, 0xae, 0x2e, - 0x3d, 0xf9, 0xa6, 0x1d, 0x90, 0xa3, 0x7e, 0x4b, 0xf1, 0x70, 0x57, 0xf5, 0x70, 0xdc, 0xc5, 0xb1, - 0x1a, 0xb4, 0xbc, 0xeb, 0x6d, 0xac, 0x0e, 0x6e, 0xa9, 0x5d, 0xec, 0xf7, 0x3b, 0x28, 0x66, 0xff, - 0xc4, 0x9f, 0xed, 0x5c, 0x67, 0x77, 0x9b, 0xda, 0x0d, 0xda, 0x91, 0x9b, 0x4c, 0x7e, 0xac, 0x0e, - 0x6e, 0xb5, 0x96, 0xe9, 0x9d, 0x74, 0xe3, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0x5f, 0x4f, 0xdc, - 0xef, 0xbb, 0x0b, 0x00, 0x00, + // 1238 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x56, 0xc1, 0x6e, 0xdb, 0x46, + 0x13, 0x36, 0x15, 0xc5, 0x91, 0x46, 0x8e, 0x2d, 0xf0, 0xf7, 0xdf, 0xca, 0x4c, 0xa0, 0xb0, 0x2e, + 0xd2, 0xb8, 0x45, 0x43, 0xd6, 0x4e, 0x9b, 0x04, 0x01, 0xd2, 0x96, 0xa1, 0x98, 0x46, 0x8d, 0x4d, + 0xab, 0x14, 0x9d, 0x26, 0xb9, 0x10, 0x14, 0xb9, 0x96, 0x89, 0x48, 0x5c, 0x85, 0x5c, 0xc9, 0x51, + 0x9f, 0x20, 0x50, 0x7b, 0xe8, 0x0b, 0x08, 0x28, 0xd0, 0x17, 0xe8, 0x63, 0xb4, 0xe8, 0x25, 0xc7, + 0x1e, 0x8b, 0x04, 0x7d, 0x8c, 0x02, 0x05, 0x77, 0x57, 0x22, 0x25, 0xc7, 0xf2, 0x21, 0xb7, 0xdd, + 0x99, 0x6f, 0xbe, 0x6f, 0x66, 0x96, 0xb3, 0x4b, 0xd8, 0x0e, 0x5a, 0x9e, 0xda, 0x09, 0xda, 0x47, + 0xc4, 0xeb, 0x04, 0x28, 0x24, 0xb1, 0x1a, 0xe3, 0x0e, 0xee, 0xba, 0xde, 0x51, 0x10, 0x22, 0x75, + 0xb0, 0x93, 0xdd, 0x2a, 0xbd, 0x08, 0x13, 0x2c, 0x5e, 0x09, 0x5a, 0x9e, 0x92, 0x0d, 0x51, 0xb2, + 0x98, 0xc1, 0x8e, 0x74, 0x2d, 0xe1, 0xf4, 0x70, 0x84, 0x54, 0x0f, 0x87, 0x21, 0xf2, 0x48, 0x80, + 0x43, 0x75, 0xb0, 0x9d, 0xd9, 0x31, 0x26, 0xe9, 0x83, 0x14, 0x78, 0xe4, 0x86, 0x21, 0xea, 0x50, + 0x14, 0x5b, 0x72, 0xc8, 0x7a, 0x1b, 0xb7, 0x31, 0x5d, 0xaa, 0xc9, 0x8a, 0x5b, 0x37, 0xda, 0x18, + 0xb7, 0x3b, 0x48, 0xa5, 0xbb, 0x56, 0xff, 0x50, 0x75, 0xc3, 0x21, 0x73, 0x6d, 0xfe, 0x23, 0x40, + 0x49, 0xa7, 0x79, 0x35, 0x89, 0x4b, 0x90, 0x28, 0x41, 0x21, 0x46, 0xcf, 0xfb, 0x28, 0xf4, 0x50, + 0x45, 0x90, 0x85, 0xad, 0xbc, 0x35, 0xdd, 0x8b, 0x97, 0xa0, 0x18, 0xc4, 0xce, 0x61, 0x84, 0x7f, + 0x40, 0x61, 0x25, 0x27, 0x0b, 0x5b, 0x05, 0xab, 0x10, 0xc4, 0xf7, 0xe9, 0x5e, 0x7c, 0x0c, 0x6b, + 0x1e, 0x0e, 0x63, 0x14, 0xc6, 0xfd, 0xd8, 0x89, 0x13, 0xae, 0xca, 0x39, 0x59, 0xd8, 0x2a, 0xed, + 0xa8, 0xca, 0x19, 0x0d, 0x50, 0xf4, 0x49, 0x1c, 0x4d, 0xc1, 0x5a, 0xf5, 0x66, 0xf6, 0xe2, 0x5d, + 0xb8, 0xe4, 0x76, 0x3a, 0xf8, 0xd8, 0xe9, 0xf7, 0x7c, 0x97, 0x20, 0xc7, 0x3d, 0x24, 0x28, 0x72, + 0x7a, 0x11, 0xee, 0xe1, 0xd8, 0xed, 0x54, 0xf2, 0x34, 0x91, 0x0a, 0x85, 0x1c, 0x50, 0x84, 0x96, + 0x00, 0x1a, 0xdc, 0x7f, 0x27, 0xff, 0xf2, 0x97, 0x2b, 0x4b, 0x9b, 0x3f, 0x0a, 0xb0, 0x3a, 0xab, + 0x23, 0xde, 0x00, 0xe8, 0xf5, 0x5b, 0x9d, 0xc0, 0x73, 0x9e, 0xa1, 0x21, 0x2d, 0xb6, 0xb4, 0xb3, + 0xae, 0xb0, 0x56, 0x29, 0x93, 0x56, 0x29, 0x5a, 0x38, 0xb4, 0x8a, 0x0c, 0xf7, 0x10, 0x0d, 0x45, + 0x19, 0x4a, 0x7e, 0x30, 0x40, 0x51, 0x1c, 0x1c, 0x06, 0x28, 0xa2, 0x5d, 0x28, 0x5a, 0x59, 0x93, + 0x78, 0x19, 0x8a, 0x24, 0xe8, 0xa2, 0x98, 0xb8, 0xdd, 0x1e, 0x6d, 0x41, 0xde, 0x4a, 0x0d, 0x3c, + 0x9b, 0x3f, 0x05, 0x58, 0x7e, 0x80, 0x5c, 0x1f, 0x45, 0x0b, 0x1b, 0x3e, 0x43, 0x95, 0x9b, 0xa3, + 0x4a, 0xbc, 0x71, 0xd0, 0x0e, 0x5d, 0xd2, 0x8f, 0x58, 0xaf, 0x57, 0xac, 0xd4, 0x20, 0xde, 0x81, + 0xd5, 0x10, 0x1d, 0x3b, 0x99, 0x0a, 0xf3, 0x0b, 0x2a, 0x5c, 0x09, 0xd1, 0x71, 0x63, 0x5a, 0xe4, + 0x35, 0x58, 0x4b, 0x62, 0xb3, 0x85, 0x9e, 0xa7, 0x85, 0x26, 0x94, 0xb5, 0xd4, 0xca, 0xab, 0xf9, + 0x57, 0x80, 0x95, 0xbd, 0x20, 0x6e, 0xa1, 0x23, 0x77, 0x10, 0xe0, 0x7e, 0x94, 0x7c, 0x28, 0xec, + 0xa8, 0x9d, 0xc0, 0xa7, 0x45, 0x15, 0xad, 0x02, 0x33, 0xd4, 0xfd, 0x99, 0x82, 0x73, 0x73, 0x05, + 0x3f, 0x82, 0x8b, 0xd3, 0x0a, 0x1c, 0x1c, 0x4e, 0x3e, 0xa1, 0xed, 0x33, 0x3f, 0xa1, 0xe6, 0x24, + 0x4a, 0x0b, 0xfd, 0x9a, 0x4b, 0x5c, 0x6b, 0x65, 0xca, 0xb3, 0x1f, 0xce, 0xf1, 0x92, 0x63, 0xcc, + 0x7b, 0xf1, 0x4e, 0xbc, 0xf6, 0x31, 0xe6, 0xf5, 0xff, 0x26, 0x40, 0x79, 0x1e, 0x38, 0x7b, 0x3a, + 0xc2, 0xfc, 0xe9, 0xdc, 0x87, 0xa2, 0xef, 0x12, 0xd7, 0x21, 0xc3, 0x1e, 0xeb, 0xc2, 0xea, 0xce, + 0xc7, 0x67, 0x26, 0x93, 0xf0, 0xda, 0xc3, 0x1e, 0xb2, 0x0a, 0x3e, 0x5f, 0x89, 0x22, 0xe4, 0x93, + 0x35, 0x3f, 0x7e, 0xba, 0x9e, 0xfd, 0x6a, 0xf2, 0x6f, 0xff, 0x00, 0x11, 0x54, 0xec, 0x89, 0x09, + 0xf9, 0xd3, 0xe4, 0x69, 0xe6, 0x57, 0x61, 0x35, 0x6d, 0x16, 0x65, 0x67, 0xe9, 0xa7, 0x2d, 0xac, + 0x9d, 0x90, 0xc9, 0xbd, 0x5d, 0xe6, 0x0f, 0x01, 0x8a, 0x09, 0xf9, 0xbd, 0x21, 0x41, 0xf1, 0x3b, + 0x7c, 0xea, 0x73, 0x53, 0x77, 0xee, 0xe4, 0xd4, 0xcd, 0x34, 0x34, 0xff, 0xee, 0x0d, 0x3d, 0x9f, + 0x36, 0x94, 0xd7, 0xf2, 0x1c, 0x80, 0x8d, 0x2c, 0xad, 0xfe, 0x73, 0x28, 0xf1, 0xf1, 0x3a, 0xfb, + 0xf6, 0x60, 0xb3, 0x75, 0xca, 0x60, 0xe5, 0x16, 0x0c, 0x96, 0x0f, 0x6b, 0x99, 0xbb, 0x99, 0xea, + 0x8a, 0x90, 0xef, 0xb9, 0xe4, 0x88, 0x1f, 0x09, 0x5d, 0x8b, 0xb7, 0x60, 0x85, 0x8f, 0x1b, 0xbb, + 0x77, 0x73, 0x0b, 0x92, 0x29, 0x79, 0x29, 0x21, 0x57, 0xe9, 0x82, 0x38, 0x7b, 0x33, 0x9e, 0x2a, + 0x74, 0xf7, 0xe4, 0x1d, 0xbf, 0x48, 0x6b, 0xee, 0x22, 0xe7, 0x72, 0x03, 0xf8, 0x9f, 0x3e, 0x7d, + 0xd9, 0x16, 0xeb, 0x19, 0x00, 0xe9, 0x23, 0xc8, 0xa5, 0xae, 0xd2, 0x53, 0x4d, 0x5e, 0x41, 0x25, + 0xf3, 0x40, 0x0e, 0xb6, 0x95, 0x94, 0xd4, 0x08, 0x7d, 0x2b, 0x13, 0x38, 0x6d, 0x66, 0x59, 0x67, + 0x6f, 0xe5, 0x62, 0xd1, 0x9b, 0x70, 0x81, 0xbf, 0xa9, 0x5c, 0xf1, 0x72, 0x46, 0x91, 0x3f, 0xb6, + 0x89, 0x1c, 0x5b, 0x5a, 0x13, 0x30, 0x57, 0xf9, 0x16, 0xd6, 0x1b, 0xae, 0xf7, 0x0c, 0x11, 0x1d, + 0x77, 0xbb, 0x01, 0xe9, 0xa2, 0x90, 0x9c, 0xaa, 0x54, 0x4d, 0xca, 0x9b, 0xa0, 0xa8, 0xd8, 0x8a, + 0x95, 0xb1, 0x6c, 0x3e, 0x81, 0x0d, 0xc6, 0xa5, 0x79, 0xcf, 0x42, 0x7c, 0xdc, 0x41, 0x7e, 0x1b, + 0x2d, 0x24, 0xdc, 0x82, 0x35, 0x77, 0x16, 0xca, 0x59, 0xe7, 0xcd, 0x9b, 0x0a, 0x54, 0x18, 0xb5, + 0x85, 0x3c, 0x14, 0xf4, 0x88, 0xd6, 0x8a, 0x93, 0x31, 0x3c, 0x8d, 0x79, 0xd3, 0x84, 0x75, 0x13, + 0xbd, 0x20, 0x4d, 0x3e, 0xae, 0x16, 0xf2, 0x06, 0xa7, 0x66, 0xb1, 0x09, 0x17, 0x43, 0xf4, 0x82, + 0x38, 0x31, 0x7a, 0xee, 0x44, 0xc8, 0x1b, 0xf0, 0x71, 0x2e, 0x85, 0x8c, 0x20, 0x89, 0xfd, 0xe4, + 0xa7, 0x3c, 0x14, 0x26, 0xd3, 0x27, 0xde, 0x86, 0x0f, 0x6b, 0x9a, 0xad, 0x39, 0xf6, 0x93, 0x86, + 0xe1, 0x1c, 0x98, 0x75, 0xb3, 0x6e, 0xd7, 0xb5, 0xdd, 0xfa, 0x53, 0xa3, 0xe6, 0x1c, 0x98, 0xcd, + 0x86, 0xa1, 0xd7, 0xef, 0xd7, 0x8d, 0x5a, 0x79, 0x49, 0x5a, 0x1b, 0x8d, 0xe5, 0x52, 0xc6, 0x24, + 0x7e, 0x04, 0xef, 0xa5, 0x91, 0xfa, 0x6e, 0xdd, 0x30, 0x6d, 0xa7, 0x69, 0x6b, 0xb6, 0x51, 0x16, + 0x24, 0x18, 0x8d, 0xe5, 0x65, 0x66, 0x13, 0x3f, 0x85, 0x8d, 0x0c, 0x6e, 0xdf, 0x6c, 0x1a, 0x66, + 0xf3, 0xa0, 0xc9, 0xa1, 0x39, 0xe9, 0xe2, 0x68, 0x2c, 0x17, 0xa7, 0x66, 0x51, 0x01, 0x69, 0x06, + 0x6d, 0x1a, 0xba, 0x5d, 0xdf, 0x37, 0x39, 0xfc, 0x9c, 0xb4, 0x3a, 0x1a, 0xcb, 0x90, 0xda, 0xc5, + 0x2d, 0x78, 0x3f, 0x83, 0x7f, 0xa0, 0x99, 0xa6, 0xb1, 0xcb, 0xc1, 0x79, 0xa9, 0x34, 0x1a, 0xcb, + 0x17, 0xb8, 0x51, 0xfc, 0x02, 0x2e, 0xa5, 0xc8, 0x86, 0xa6, 0x3f, 0x34, 0x6c, 0x47, 0xdf, 0xdf, + 0xdb, 0xab, 0xdb, 0x7b, 0x86, 0x69, 0x97, 0xcf, 0x4b, 0xeb, 0xa3, 0xb1, 0x5c, 0x66, 0x8e, 0xd4, + 0x2e, 0x7e, 0x05, 0xf2, 0x89, 0x30, 0x4d, 0x7f, 0x68, 0xee, 0x7f, 0xbf, 0x6b, 0xd4, 0xbe, 0x31, + 0x68, 0xec, 0xb2, 0xb4, 0x31, 0x1a, 0xcb, 0xff, 0x67, 0xde, 0x39, 0xa7, 0xf8, 0xe5, 0x5b, 0x08, + 0x2c, 0x43, 0x37, 0xea, 0x0d, 0xdb, 0xd1, 0xee, 0x35, 0x0d, 0x53, 0x37, 0xca, 0x17, 0xa4, 0xca, + 0x68, 0x2c, 0xaf, 0x33, 0x2f, 0x77, 0x72, 0x9f, 0x78, 0x13, 0x2e, 0xa7, 0xf1, 0xa6, 0xf1, 0xd8, + 0x76, 0x9a, 0xc6, 0x77, 0x07, 0x89, 0x2b, 0xa1, 0x79, 0x54, 0x2e, 0xb0, 0xc4, 0x13, 0xcf, 0xc4, + 0x91, 0xd8, 0x45, 0x19, 0xca, 0x69, 0xdc, 0x03, 0x43, 0xab, 0x19, 0x56, 0xb9, 0xc8, 0x4e, 0x86, + 0xed, 0xa4, 0xfc, 0xcb, 0x5f, 0xab, 0x4b, 0xf7, 0x9e, 0xfe, 0xfe, 0xba, 0x2a, 0xbc, 0x7a, 0x5d, + 0x15, 0xfe, 0x7e, 0x5d, 0x15, 0x7e, 0x7e, 0x53, 0x5d, 0x7a, 0xf5, 0xa6, 0xba, 0xf4, 0xd7, 0x9b, + 0xea, 0xd2, 0xd3, 0xaf, 0xdb, 0x01, 0x39, 0xea, 0xb7, 0x14, 0x0f, 0x77, 0x55, 0x0f, 0xc7, 0x5d, + 0x1c, 0xab, 0x41, 0xcb, 0xbb, 0xde, 0xc6, 0xea, 0xe0, 0xb6, 0xda, 0xc5, 0x7e, 0xbf, 0x83, 0x62, + 0xf6, 0x4f, 0xfc, 0xd9, 0xce, 0x75, 0x76, 0xb7, 0xa9, 0xdd, 0xa0, 0x1d, 0xb9, 0xc9, 0xe4, 0xc7, + 0xea, 0xe0, 0x56, 0x6b, 0x99, 0xde, 0x49, 0x37, 0xfe, 0x0b, 0x00, 0x00, 0xff, 0xff, 0xfd, 0x5b, + 0x7f, 0x03, 0xbb, 0x0b, 0x00, 0x00, } func (m *ClientState) Marshal() (dAtA []byte, err error) { diff --git a/modules/core/02-client/migrations/v7/store.go b/modules/core/02-client/migrations/v7/store.go index 2b817e5aa52..dc68d14b336 100644 --- a/modules/core/02-client/migrations/v7/store.go +++ b/modules/core/02-client/migrations/v7/store.go @@ -10,12 +10,12 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - solomachine "github.com/cosmos/ibc-go/v7/modules/light-clients/06-solomachine" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v8/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" ) // Localhost is the client type for a localhost client. It is also used as the clientID diff --git a/modules/core/02-client/migrations/v7/store_test.go b/modules/core/02-client/migrations/v7/store_test.go index 981888ac01d..bb4898190da 100644 --- a/modules/core/02-client/migrations/v7/store_test.go +++ b/modules/core/02-client/migrations/v7/store_test.go @@ -8,11 +8,11 @@ import ( "github.com/cosmos/cosmos-sdk/codec" - v7 "github.com/cosmos/ibc-go/v7/modules/core/02-client/migrations/v7" - "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + v7 "github.com/cosmos/ibc-go/v8/modules/core/02-client/migrations/v7" + "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) // numCreations is the number of clients/consensus states created for diff --git a/modules/core/02-client/module.go b/modules/core/02-client/module.go index a9690dcd374..1d0039156b3 100644 --- a/modules/core/02-client/module.go +++ b/modules/core/02-client/module.go @@ -4,8 +4,8 @@ import ( "github.com/cosmos/gogoproto/grpc" "github.com/spf13/cobra" - "github.com/cosmos/ibc-go/v7/modules/core/02-client/client/cli" - "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/modules/core/02-client/client/cli" + "github.com/cosmos/ibc-go/v8/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 af6393c7f96..2b08d47144e 100644 --- a/modules/core/02-client/proposal_handler.go +++ b/modules/core/02-client/proposal_handler.go @@ -6,9 +6,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" - "github.com/cosmos/ibc-go/v7/modules/core/02-client/keeper" - "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" + "github.com/cosmos/ibc-go/v8/modules/core/02-client/keeper" + "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" ) // 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 b96ee2a05fb..79e34ceaa85 100644 --- a/modules/core/02-client/proposal_handler_test.go +++ b/modules/core/02-client/proposal_handler_test.go @@ -7,10 +7,10 @@ import ( distributiontypes "github.com/cosmos/cosmos-sdk/x/distribution/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" - client "github.com/cosmos/ibc-go/v7/modules/core/02-client" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + client "github.com/cosmos/ibc-go/v8/modules/core/02-client" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (suite *ClientTestSuite) TestNewClientUpdateProposalHandler() { diff --git a/modules/core/02-client/simulation/decoder.go b/modules/core/02-client/simulation/decoder.go index 6861dc09c30..0fd8baeb12b 100644 --- a/modules/core/02-client/simulation/decoder.go +++ b/modules/core/02-client/simulation/decoder.go @@ -6,9 +6,9 @@ import ( "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/cosmos/ibc-go/v7/modules/core/02-client/keeper" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/core/02-client/keeper" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/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 bcad1a54da3..f84e12b9325 100644 --- a/modules/core/02-client/simulation/decoder_test.go +++ b/modules/core/02-client/simulation/decoder_test.go @@ -9,11 +9,11 @@ import ( "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/cosmos/ibc-go/v7/modules/core/02-client/simulation" - "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - "github.com/cosmos/ibc-go/v7/testing/simapp" + "github.com/cosmos/ibc-go/v8/modules/core/02-client/simulation" + "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + "github.com/cosmos/ibc-go/v8/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 161efd74fcf..00acae17a03 100644 --- a/modules/core/02-client/simulation/genesis.go +++ b/modules/core/02-client/simulation/genesis.go @@ -5,7 +5,7 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/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 8fc6b63ee98..31da1a54e70 100644 --- a/modules/core/02-client/types/client.go +++ b/modules/core/02-client/types/client.go @@ -12,8 +12,8 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) var ( diff --git a/modules/core/02-client/types/client.pb.go b/modules/core/02-client/types/client.pb.go index 33a4efb5ea1..94f4ea8e5a5 100644 --- a/modules/core/02-client/types/client.pb.go +++ b/modules/core/02-client/types/client.pb.go @@ -400,47 +400,47 @@ func init() { func init() { proto.RegisterFile("ibc/core/client/v1/client.proto", fileDescriptor_b6bc4c8185546947) } var fileDescriptor_b6bc4c8185546947 = []byte{ - // 633 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x54, 0x4f, 0x6b, 0xd4, 0x40, - 0x14, 0x4f, 0xda, 0x75, 0xe9, 0x4e, 0xa4, 0xab, 0x71, 0x0b, 0xeb, 0x2a, 0xd9, 0x25, 0x08, 0x2e, - 0xc5, 0x26, 0xdd, 0x15, 0x6c, 0x29, 0x78, 0xb0, 0xbd, 0xb4, 0x17, 0x29, 0x91, 0x22, 0x08, 0xb2, - 0x24, 0x93, 0x69, 0x76, 0x24, 0x99, 0x09, 0x99, 0x49, 0xa4, 0xdf, 0xc0, 0xa3, 0xe0, 0xc5, 0x63, - 0x3f, 0x84, 0x1f, 0xa2, 0x78, 0xea, 0xd1, 0x93, 0xc8, 0xee, 0xc5, 0x6f, 0xe0, 0x55, 0x32, 0x33, - 0x71, 0x37, 0xfe, 0xa9, 0x82, 0xb7, 0x79, 0xef, 0xfd, 0xe6, 0xbd, 0xdf, 0xef, 0xf1, 0x9b, 0x01, - 0x7d, 0x1c, 0x40, 0x17, 0xd2, 0x0c, 0xb9, 0x30, 0xc6, 0x88, 0x70, 0xb7, 0x18, 0xa9, 0x93, 0x93, - 0x66, 0x94, 0x53, 0xd3, 0xc4, 0x01, 0x74, 0x4a, 0x80, 0xa3, 0xd2, 0xc5, 0xa8, 0xd7, 0x89, 0x68, - 0x44, 0x45, 0xd9, 0x2d, 0x4f, 0x12, 0xd9, 0xbb, 0x1d, 0x51, 0x1a, 0xc5, 0xc8, 0x15, 0x51, 0x90, - 0x9f, 0xba, 0x3e, 0x39, 0x53, 0xa5, 0x7b, 0x90, 0xb2, 0x84, 0x32, 0x37, 0x4f, 0xa3, 0xcc, 0x0f, - 0x91, 0x5b, 0x8c, 0x02, 0xc4, 0xfd, 0x51, 0x15, 0x57, 0x0d, 0x24, 0x6a, 0x22, 0x3b, 0xcb, 0x40, - 0x96, 0xec, 0x04, 0x6c, 0x1c, 0x85, 0x88, 0x70, 0x7c, 0x8a, 0x51, 0x78, 0x20, 0x88, 0x3c, 0xe3, - 0x3e, 0x47, 0xe6, 0x1d, 0xd0, 0x92, 0xbc, 0x26, 0x38, 0xec, 0xea, 0x03, 0x7d, 0xd8, 0xf2, 0xd6, - 0x64, 0xe2, 0x28, 0x34, 0x77, 0xc0, 0x75, 0x55, 0x64, 0x25, 0xb8, 0xbb, 0x32, 0xd0, 0x87, 0xc6, - 0xb8, 0xe3, 0x48, 0xa2, 0x4e, 0x45, 0xd4, 0x79, 0x42, 0xce, 0x3c, 0x03, 0x2e, 0xba, 0xda, 0xef, - 0x74, 0xd0, 0x3d, 0xa0, 0x84, 0x21, 0xc2, 0x72, 0x26, 0x52, 0xcf, 0x31, 0x9f, 0x1e, 0x22, 0x1c, - 0x4d, 0xb9, 0xb9, 0x0b, 0x9a, 0x53, 0x71, 0x12, 0xf3, 0x8c, 0x71, 0xcf, 0xf9, 0x75, 0x45, 0x8e, - 0xc4, 0xee, 0x37, 0x2e, 0x3e, 0xf7, 0x35, 0x4f, 0xe1, 0xcd, 0xc7, 0xa0, 0x0d, 0xab, 0xae, 0xff, - 0x40, 0x69, 0x1d, 0xd6, 0x28, 0x94, 0xac, 0x36, 0xa4, 0xf6, 0x3a, 0x37, 0x76, 0xf5, 0x16, 0x5e, - 0x82, 0x1b, 0x3f, 0x4d, 0x65, 0xdd, 0x95, 0xc1, 0xea, 0xd0, 0x18, 0x3f, 0xf8, 0x1d, 0xf3, 0x3f, - 0xe9, 0x56, 0x5a, 0xda, 0x75, 0x52, 0xcc, 0xbe, 0xd4, 0x41, 0x47, 0xb2, 0x3a, 0x49, 0x43, 0x9f, - 0xa3, 0xe3, 0x8c, 0xa6, 0x94, 0xf9, 0xb1, 0xd9, 0x01, 0xd7, 0x38, 0xe6, 0x31, 0x52, 0x84, 0x64, - 0x60, 0x0e, 0x80, 0x11, 0x22, 0x06, 0x33, 0x9c, 0x72, 0x4c, 0x89, 0xd0, 0xdf, 0xf2, 0x96, 0x53, - 0xe6, 0x26, 0xb8, 0xc9, 0xf2, 0xe0, 0x15, 0x82, 0x7c, 0xb2, 0x10, 0xb5, 0x2a, 0x70, 0x6d, 0x55, - 0x38, 0xa8, 0xb4, 0x6d, 0x83, 0x0e, 0xcb, 0x03, 0xc6, 0x31, 0xcf, 0x39, 0x5a, 0x82, 0x37, 0x04, - 0xdc, 0x5c, 0xd4, 0xaa, 0x1b, 0x7b, 0xf6, 0x9b, 0xf3, 0xbe, 0xf6, 0xf1, 0xc3, 0x56, 0x4f, 0xf9, - 0x2b, 0xa2, 0x85, 0xa3, 0xec, 0x58, 0x4a, 0xe7, 0x88, 0x70, 0xfb, 0x9b, 0x0e, 0xda, 0x27, 0xd2, - 0x9a, 0xff, 0xad, 0xe6, 0x11, 0x68, 0xa4, 0xb1, 0x4f, 0x84, 0x00, 0x63, 0x7c, 0xd7, 0x51, 0x63, - 0x2b, 0xe7, 0x57, 0xa3, 0x8f, 0x63, 0x9f, 0xa8, 0x0d, 0x0b, 0xbc, 0x79, 0x08, 0x36, 0x14, 0x26, - 0x9c, 0xd4, 0x4c, 0xdc, 0xb8, 0xc2, 0x31, 0xb7, 0xaa, 0x2b, 0x4b, 0x4f, 0x64, 0x6f, 0xb3, 0x54, - 0xfc, 0xfe, 0xbc, 0xaf, 0x7d, 0x3d, 0xef, 0xeb, 0x7f, 0x51, 0x1e, 0x82, 0xa6, 0x72, 0xf9, 0x7d, - 0xd0, 0xce, 0x50, 0x81, 0x19, 0xa6, 0x64, 0x42, 0xf2, 0x24, 0x40, 0x99, 0x50, 0xde, 0xf0, 0xd6, - 0xab, 0xf4, 0x53, 0x91, 0xad, 0x01, 0xd5, 0xbb, 0x58, 0xa9, 0x03, 0x65, 0xc7, 0xbd, 0xb5, 0x8a, - 0x87, 0x3d, 0x02, 0xcd, 0x63, 0x3f, 0xf3, 0x13, 0x56, 0x5e, 0xf6, 0xe3, 0x98, 0xbe, 0xfe, 0x21, - 0x92, 0x75, 0xf5, 0xc1, 0xea, 0xb0, 0xe5, 0xad, 0xab, 0xb4, 0x14, 0xc2, 0xf6, 0xbd, 0x8b, 0x99, - 0xa5, 0x5f, 0xce, 0x2c, 0xfd, 0xcb, 0xcc, 0xd2, 0xdf, 0xce, 0x2d, 0xed, 0x72, 0x6e, 0x69, 0x9f, - 0xe6, 0x96, 0xf6, 0x62, 0x37, 0xc2, 0x7c, 0x9a, 0x07, 0x0e, 0xa4, 0x89, 0xfa, 0x33, 0x5c, 0x1c, - 0xc0, 0xad, 0x88, 0xba, 0xc5, 0x8e, 0x9b, 0xd0, 0x30, 0x8f, 0x11, 0x93, 0x3f, 0xdc, 0xf6, 0x78, - 0x4b, 0x7d, 0x72, 0xfc, 0x2c, 0x45, 0x2c, 0x68, 0x8a, 0xdd, 0x3d, 0xfc, 0x1e, 0x00, 0x00, 0xff, - 0xff, 0x80, 0xfe, 0x7c, 0xd0, 0x04, 0x05, 0x00, 0x00, + // 635 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x54, 0x4f, 0x6b, 0xd4, 0x4e, + 0x18, 0x4e, 0xda, 0xfd, 0x2d, 0xdd, 0xc9, 0x8f, 0xae, 0xc6, 0x2d, 0xac, 0xab, 0x64, 0x97, 0x20, + 0xb8, 0x14, 0x9b, 0x74, 0x57, 0xd0, 0x52, 0xf0, 0x60, 0x7b, 0x69, 0x2f, 0x52, 0x22, 0x45, 0x10, + 0x64, 0x49, 0x26, 0xd3, 0xec, 0x48, 0x32, 0x13, 0x32, 0x93, 0x48, 0xbf, 0x81, 0x47, 0xc1, 0x8b, + 0xc7, 0x7e, 0x08, 0x3f, 0x44, 0xf1, 0xb4, 0x47, 0x4f, 0x22, 0xbb, 0x17, 0xbf, 0x81, 0x57, 0xc9, + 0xcc, 0xc4, 0xdd, 0xf8, 0xa7, 0x0a, 0xde, 0xe6, 0x7d, 0xdf, 0x67, 0xde, 0xf7, 0x79, 0x5e, 0x9e, + 0x19, 0xd0, 0xc7, 0x01, 0x74, 0x21, 0xcd, 0x90, 0x0b, 0x63, 0x8c, 0x08, 0x77, 0x8b, 0x91, 0x3a, + 0x39, 0x69, 0x46, 0x39, 0x35, 0x4d, 0x1c, 0x40, 0xa7, 0x04, 0x38, 0x2a, 0x5d, 0x8c, 0x7a, 0x9d, + 0x88, 0x46, 0x54, 0x94, 0xdd, 0xf2, 0x24, 0x91, 0xbd, 0x9b, 0x11, 0xa5, 0x51, 0x8c, 0x5c, 0x11, + 0x05, 0xf9, 0x99, 0xeb, 0x93, 0x73, 0x55, 0xba, 0x03, 0x29, 0x4b, 0x28, 0x73, 0xf3, 0x34, 0xca, + 0xfc, 0x10, 0xb9, 0xc5, 0x28, 0x40, 0xdc, 0x1f, 0x55, 0x71, 0xd5, 0x40, 0xa2, 0x26, 0xb2, 0xb3, + 0x0c, 0x64, 0xc9, 0x4e, 0xc0, 0xd6, 0x71, 0x88, 0x08, 0xc7, 0x67, 0x18, 0x85, 0x87, 0x82, 0xc8, + 0x53, 0xee, 0x73, 0x64, 0xde, 0x02, 0x2d, 0xc9, 0x6b, 0x82, 0xc3, 0xae, 0x3e, 0xd0, 0x87, 0x2d, + 0x6f, 0x43, 0x26, 0x8e, 0x43, 0xf3, 0x21, 0xf8, 0x5f, 0x15, 0x59, 0x09, 0xee, 0xae, 0x0d, 0xf4, + 0xa1, 0x31, 0xee, 0x38, 0x92, 0xa8, 0x53, 0x11, 0x75, 0x1e, 0x93, 0x73, 0xcf, 0x80, 0xcb, 0xae, + 0xf6, 0x5b, 0x1d, 0x74, 0x0f, 0x29, 0x61, 0x88, 0xb0, 0x9c, 0x89, 0xd4, 0x33, 0xcc, 0xa7, 0x47, + 0x08, 0x47, 0x53, 0x6e, 0xee, 0x81, 0xe6, 0x54, 0x9c, 0xc4, 0x3c, 0x63, 0xdc, 0x73, 0x7e, 0x5e, + 0x91, 0x23, 0xb1, 0x07, 0x8d, 0xcb, 0x4f, 0x7d, 0xcd, 0x53, 0x78, 0xf3, 0x11, 0x68, 0xc3, 0xaa, + 0xeb, 0x5f, 0x50, 0xda, 0x84, 0x35, 0x0a, 0x25, 0xab, 0x2d, 0xa9, 0xbd, 0xce, 0x8d, 0x5d, 0xbd, + 0x85, 0x17, 0xe0, 0xda, 0x0f, 0x53, 0x59, 0x77, 0x6d, 0xb0, 0x3e, 0x34, 0xc6, 0xf7, 0x7e, 0xc5, + 0xfc, 0x77, 0xba, 0x95, 0x96, 0x76, 0x9d, 0x14, 0xb3, 0x67, 0x3a, 0xe8, 0x48, 0x56, 0xa7, 0x69, + 0xe8, 0x73, 0x74, 0x92, 0xd1, 0x94, 0x32, 0x3f, 0x36, 0x3b, 0xe0, 0x3f, 0x8e, 0x79, 0x8c, 0x14, + 0x21, 0x19, 0x98, 0x03, 0x60, 0x84, 0x88, 0xc1, 0x0c, 0xa7, 0x1c, 0x53, 0x22, 0xf4, 0xb7, 0xbc, + 0xd5, 0x94, 0xb9, 0x0d, 0xae, 0xb3, 0x3c, 0x78, 0x89, 0x20, 0x9f, 0x2c, 0x45, 0xad, 0x0b, 0x5c, + 0x5b, 0x15, 0x0e, 0x2b, 0x6d, 0xbb, 0xa0, 0xc3, 0xf2, 0x80, 0x71, 0xcc, 0x73, 0x8e, 0x56, 0xe0, + 0x0d, 0x01, 0x37, 0x97, 0xb5, 0xea, 0xc6, 0xbe, 0xfd, 0xfa, 0xa2, 0xaf, 0x7d, 0x78, 0xbf, 0xd3, + 0x53, 0xfe, 0x8a, 0x68, 0xe1, 0x28, 0x3b, 0x96, 0xd2, 0x39, 0x22, 0xdc, 0xfe, 0xaa, 0x83, 0xf6, + 0xa9, 0xb4, 0xe6, 0x3f, 0xab, 0x79, 0x00, 0x1a, 0x69, 0xec, 0x13, 0x21, 0xc0, 0x18, 0xdf, 0x76, + 0xd4, 0xd8, 0xca, 0xf9, 0xd5, 0xe8, 0x93, 0xd8, 0x27, 0x6a, 0xc3, 0x02, 0x6f, 0x1e, 0x81, 0x2d, + 0x85, 0x09, 0x27, 0x35, 0x13, 0x37, 0xae, 0x70, 0xcc, 0x8d, 0xea, 0xca, 0xca, 0x13, 0xd9, 0xdf, + 0x2e, 0x15, 0xbf, 0xbb, 0xe8, 0x6b, 0x5f, 0x2e, 0xfa, 0xfa, 0x1f, 0x94, 0x87, 0xa0, 0xa9, 0x5c, + 0x7e, 0x17, 0xb4, 0x33, 0x54, 0x60, 0x86, 0x29, 0x99, 0x90, 0x3c, 0x09, 0x50, 0x26, 0x94, 0x37, + 0xbc, 0xcd, 0x2a, 0xfd, 0x44, 0x64, 0x6b, 0x40, 0xf5, 0x2e, 0xd6, 0xea, 0x40, 0xd9, 0x71, 0x7f, + 0xa3, 0xe2, 0x61, 0x8f, 0x40, 0xf3, 0xc4, 0xcf, 0xfc, 0x84, 0x95, 0x97, 0xfd, 0x38, 0xa6, 0xaf, + 0xbe, 0x8b, 0x64, 0x5d, 0x7d, 0xb0, 0x3e, 0x6c, 0x79, 0x9b, 0x2a, 0x2d, 0x85, 0xb0, 0x03, 0xef, + 0x72, 0x6e, 0xe9, 0xb3, 0xb9, 0xa5, 0x7f, 0x9e, 0x5b, 0xfa, 0x9b, 0x85, 0xa5, 0xcd, 0x16, 0x96, + 0xf6, 0x71, 0x61, 0x69, 0xcf, 0xf7, 0x22, 0xcc, 0xa7, 0x79, 0xe0, 0x40, 0x9a, 0xa8, 0x3f, 0xc3, + 0xc5, 0x01, 0xdc, 0x89, 0xa8, 0x5b, 0xec, 0xb9, 0x09, 0x0d, 0xf3, 0x18, 0x31, 0xf9, 0xc3, 0xed, + 0x8e, 0x77, 0xd4, 0x27, 0xc7, 0xcf, 0x53, 0xc4, 0x82, 0xa6, 0xd8, 0xdd, 0xfd, 0x6f, 0x01, 0x00, + 0x00, 0xff, 0xff, 0x3a, 0xf9, 0x45, 0x71, 0x04, 0x05, 0x00, 0x00, } func (this *UpgradeProposal) Equal(that interface{}) bool { diff --git a/modules/core/02-client/types/client_test.go b/modules/core/02-client/types/client_test.go index ecdfd1a31e3..ac240f37576 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/v7/modules/core/02-client/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (suite *TypesTestSuite) TestMarshalConsensusStateWithHeight() { diff --git a/modules/core/02-client/types/codec.go b/modules/core/02-client/types/codec.go index c71caaede98..a0a9b8fd176 100644 --- a/modules/core/02-client/types/codec.go +++ b/modules/core/02-client/types/codec.go @@ -10,8 +10,8 @@ import ( "github.com/cosmos/cosmos-sdk/types/msgservice" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + "github.com/cosmos/ibc-go/v8/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 28e22b04e0d..89e5b6c34df 100644 --- a/modules/core/02-client/types/codec_test.go +++ b/modules/core/02-client/types/codec_test.go @@ -3,11 +3,11 @@ package types_test import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" - "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) type caseAny struct { diff --git a/modules/core/02-client/types/encoding.go b/modules/core/02-client/types/encoding.go index 63a544ec85a..def2ef2a8f2 100644 --- a/modules/core/02-client/types/encoding.go +++ b/modules/core/02-client/types/encoding.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/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 4611d4cf945..9c52764cf32 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/v7/modules/core/02-client/types" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" + "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" ) func (suite *TypesTestSuite) TestMarshalHeader() { diff --git a/modules/core/02-client/types/events.go b/modules/core/02-client/types/events.go index 9671cf9dcb9..9fbf7fbb052 100644 --- a/modules/core/02-client/types/events.go +++ b/modules/core/02-client/types/events.go @@ -3,7 +3,7 @@ package types import ( "fmt" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // IBC client events diff --git a/modules/core/02-client/types/genesis.go b/modules/core/02-client/types/genesis.go index e5ed584ee75..de0ec27d9ee 100644 --- a/modules/core/02-client/types/genesis.go +++ b/modules/core/02-client/types/genesis.go @@ -6,8 +6,8 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) var ( diff --git a/modules/core/02-client/types/genesis.pb.go b/modules/core/02-client/types/genesis.pb.go index 6bd2855990e..96c97088173 100644 --- a/modules/core/02-client/types/genesis.pb.go +++ b/modules/core/02-client/types/genesis.pb.go @@ -223,34 +223,34 @@ var fileDescriptor_bcd0c0f1f2e6a91a = []byte{ // 479 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x53, 0x31, 0x6f, 0xd3, 0x40, 0x18, 0xf5, 0x25, 0x69, 0x68, 0xaf, 0x15, 0x09, 0xa7, 0x08, 0x99, 0x20, 0x39, 0x56, 0x58, 0xcc, - 0x10, 0xbb, 0x0d, 0x03, 0x15, 0x0b, 0x52, 0x3a, 0xa0, 0x4a, 0x20, 0x21, 0xb3, 0x31, 0x60, 0xd9, - 0xe7, 0x0f, 0xd7, 0xc2, 0xf6, 0x85, 0xdc, 0xd9, 0xa2, 0xff, 0x80, 0x81, 0x81, 0x9f, 0xc0, 0xcc, - 0x2f, 0xe9, 0xd8, 0x91, 0x09, 0x50, 0x22, 0xf1, 0x3b, 0x90, 0xef, 0xce, 0x54, 0x0a, 0x4e, 0xb7, - 0x2f, 0xef, 0xbd, 0xef, 0xbd, 0xdc, 0xb3, 0x3e, 0x6c, 0xa7, 0x11, 0xf5, 0x28, 0x5b, 0x81, 0x47, - 0xb3, 0x14, 0x0a, 0xe1, 0x55, 0x27, 0x5e, 0x02, 0x05, 0xf0, 0x94, 0xbb, 0xcb, 0x15, 0x13, 0x8c, - 0x90, 0x34, 0xa2, 0x6e, 0xad, 0x70, 0x95, 0xc2, 0xad, 0x4e, 0xc6, 0x93, 0x96, 0x2d, 0xcd, 0xca, - 0xa5, 0xf1, 0x28, 0x61, 0x09, 0x93, 0xa3, 0x57, 0x4f, 0x0a, 0x9d, 0xfe, 0xe9, 0xe2, 0xa3, 0x17, - 0xca, 0xfc, 0x8d, 0x08, 0x05, 0x10, 0x8a, 0xef, 0xa8, 0x35, 0x6e, 0x22, 0xbb, 0xeb, 0x1c, 0xce, - 0x1f, 0xbb, 0xff, 0xa7, 0xb9, 0xe7, 0x31, 0x14, 0x22, 0x7d, 0x9f, 0x42, 0x7c, 0x26, 0x31, 0xb9, - 0xbb, 0xb0, 0xae, 0x7e, 0x4e, 0x8c, 0xef, 0xbf, 0x26, 0xf7, 0x5b, 0x69, 0xee, 0x37, 0xce, 0xa4, - 0xc2, 0xf7, 0xf4, 0x18, 0x50, 0x56, 0x70, 0x28, 0x78, 0xc9, 0xcd, 0xce, 0xee, 0x38, 0xe5, 0x72, - 0xd6, 0x48, 0x95, 0xdd, 0x4d, 0x9c, 0xa2, 0xf9, 0x16, 0xef, 0x0f, 0xe9, 0x16, 0x4e, 0xde, 0xe1, - 0x06, 0x0b, 0x72, 0x10, 0x61, 0x1c, 0x8a, 0xd0, 0xec, 0xca, 0xd8, 0xd9, 0xed, 0xaf, 0xd4, 0x15, - 0xbd, 0xd2, 0x4b, 0x8b, 0x5e, 0x1d, 0xed, 0x0f, 0xb4, 0x59, 0x03, 0x93, 0x53, 0xdc, 0x5f, 0x86, - 0xab, 0x30, 0xe7, 0x66, 0xcf, 0x46, 0xce, 0xe1, 0x7c, 0xdc, 0xe6, 0xfa, 0x5a, 0x2a, 0xb4, 0x85, - 0xd6, 0x93, 0x19, 0x1e, 0xd2, 0x15, 0x84, 0x02, 0x82, 0x8c, 0xd1, 0x30, 0xbb, 0x60, 0x5c, 0x98, - 0x7b, 0x36, 0x72, 0xf6, 0x17, 0x1d, 0x13, 0xf9, 0x03, 0xc5, 0xbd, 0x6c, 0x28, 0x72, 0x8c, 0x47, - 0x05, 0x7c, 0x12, 0x81, 0x72, 0x0d, 0x38, 0x7c, 0x2c, 0xa1, 0xa0, 0x60, 0xf6, 0x6d, 0xe4, 0xf4, - 0x7c, 0x52, 0x73, 0xba, 0x79, 0xcd, 0x4c, 0x9f, 0xe3, 0xc1, 0xd6, 0x23, 0xc8, 0x10, 0x77, 0x3f, - 0xc0, 0xa5, 0x89, 0x6c, 0xe4, 0x1c, 0xf9, 0xf5, 0x48, 0x46, 0x78, 0xaf, 0x0a, 0xb3, 0x12, 0xcc, - 0x8e, 0xc4, 0xd4, 0x8f, 0x67, 0xbd, 0xcf, 0xdf, 0x26, 0xc6, 0xf4, 0x0b, 0xc2, 0x0f, 0x76, 0x16, - 0x42, 0x1e, 0xe2, 0x03, 0xfd, 0x5f, 0xd2, 0x58, 0x3a, 0x1e, 0xf8, 0xfb, 0x0a, 0x38, 0x8f, 0x89, - 0x8f, 0x75, 0x53, 0x37, 0xad, 0xab, 0x8f, 0xfd, 0xa8, 0xad, 0x9f, 0xf6, 0xae, 0xef, 0x2a, 0xc1, - 0x3f, 0xd4, 0xbf, 0x5a, 0x5b, 0xe8, 0x7a, 0x6d, 0xa1, 0xdf, 0x6b, 0x0b, 0x7d, 0xdd, 0x58, 0xc6, - 0xf5, 0xc6, 0x32, 0x7e, 0x6c, 0x2c, 0xe3, 0xed, 0x69, 0x92, 0x8a, 0x8b, 0x32, 0x72, 0x29, 0xcb, - 0x3d, 0xca, 0x78, 0xce, 0xb8, 0x97, 0x46, 0x74, 0x96, 0x30, 0xaf, 0x7a, 0xea, 0xe5, 0x2c, 0x2e, - 0x33, 0xe0, 0xea, 0x52, 0x8e, 0xe7, 0x33, 0x7d, 0x2c, 0xe2, 0x72, 0x09, 0x3c, 0xea, 0xcb, 0x9b, - 0x78, 0xf2, 0x37, 0x00, 0x00, 0xff, 0xff, 0x7f, 0x84, 0xb7, 0x9b, 0x82, 0x03, 0x00, 0x00, + 0x10, 0xbb, 0x0d, 0x4b, 0xc4, 0x82, 0x94, 0x0e, 0xa8, 0x12, 0x48, 0xc8, 0x6c, 0x0c, 0x58, 0xf6, + 0xf9, 0xc3, 0xb5, 0xb0, 0x7d, 0x21, 0x77, 0xb6, 0xe8, 0x3f, 0x60, 0x60, 0xe0, 0x27, 0x30, 0xf3, + 0x4b, 0x3a, 0x76, 0x64, 0x02, 0x94, 0x48, 0xfc, 0x0e, 0xe4, 0xbb, 0x33, 0x95, 0x82, 0xc3, 0xf6, + 0xe5, 0xbd, 0xf7, 0xbd, 0x97, 0x7b, 0xd6, 0x87, 0xed, 0x34, 0xa2, 0x1e, 0x65, 0x6b, 0xf0, 0x68, + 0x96, 0x42, 0x21, 0xbc, 0xea, 0xcc, 0x4b, 0xa0, 0x00, 0x9e, 0x72, 0x77, 0xb5, 0x66, 0x82, 0x11, + 0x92, 0x46, 0xd4, 0xad, 0x15, 0xae, 0x52, 0xb8, 0xd5, 0xd9, 0x78, 0xd2, 0xb2, 0xa5, 0x59, 0xb9, + 0x34, 0x1e, 0x25, 0x2c, 0x61, 0x72, 0xf4, 0xea, 0x49, 0xa1, 0xd3, 0xdf, 0x5d, 0x7c, 0xf2, 0x5c, + 0x99, 0xbf, 0x16, 0xa1, 0x00, 0x42, 0xf1, 0x1d, 0xb5, 0xc6, 0x4d, 0x64, 0x77, 0x9d, 0xe3, 0xf9, + 0x63, 0xf7, 0xdf, 0x34, 0xf7, 0x22, 0x86, 0x42, 0xa4, 0xef, 0x52, 0x88, 0xcf, 0x25, 0x26, 0x77, + 0x97, 0xd6, 0xf5, 0x8f, 0x89, 0xf1, 0xed, 0xe7, 0xe4, 0x7e, 0x2b, 0xcd, 0xfd, 0xc6, 0x99, 0x54, + 0xf8, 0x9e, 0x1e, 0x03, 0xca, 0x0a, 0x0e, 0x05, 0x2f, 0xb9, 0xd9, 0xd9, 0x1f, 0xa7, 0x5c, 0xce, + 0x1b, 0xa9, 0xb2, 0xbb, 0x8d, 0x53, 0x34, 0xdf, 0xe1, 0xfd, 0x21, 0xdd, 0xc1, 0xc9, 0x5b, 0xdc, + 0x60, 0x41, 0x0e, 0x22, 0x8c, 0x43, 0x11, 0x9a, 0x5d, 0x19, 0x3b, 0xfb, 0xff, 0x2b, 0x75, 0x45, + 0x2f, 0xf5, 0xd2, 0xb2, 0x57, 0x47, 0xfb, 0x03, 0x6d, 0xd6, 0xc0, 0x64, 0x81, 0xfb, 0xab, 0x70, + 0x1d, 0xe6, 0xdc, 0xec, 0xd9, 0xc8, 0x39, 0x9e, 0x8f, 0xdb, 0x5c, 0x5f, 0x49, 0x85, 0xb6, 0xd0, + 0x7a, 0x32, 0xc3, 0x43, 0xba, 0x86, 0x50, 0x40, 0x90, 0x31, 0x1a, 0x66, 0x97, 0x8c, 0x0b, 0xf3, + 0xc0, 0x46, 0xce, 0xe1, 0xb2, 0x63, 0x22, 0x7f, 0xa0, 0xb8, 0x17, 0x0d, 0x45, 0x4e, 0xf1, 0xa8, + 0x80, 0x8f, 0x22, 0x50, 0xae, 0x01, 0x87, 0x0f, 0x25, 0x14, 0x14, 0xcc, 0xbe, 0x8d, 0x9c, 0x9e, + 0x4f, 0x6a, 0x4e, 0x37, 0xaf, 0x99, 0xe9, 0x33, 0x3c, 0xd8, 0x79, 0x04, 0x19, 0xe2, 0xee, 0x7b, + 0xb8, 0x32, 0x91, 0x8d, 0x9c, 0x13, 0xbf, 0x1e, 0xc9, 0x08, 0x1f, 0x54, 0x61, 0x56, 0x82, 0xd9, + 0x91, 0x98, 0xfa, 0xf1, 0xb4, 0xf7, 0xe9, 0xeb, 0xc4, 0x98, 0x7e, 0x46, 0xf8, 0xc1, 0xde, 0x42, + 0xc8, 0x43, 0x7c, 0xa4, 0xff, 0x4b, 0x1a, 0x4b, 0xc7, 0x23, 0xff, 0x50, 0x01, 0x17, 0x31, 0xf1, + 0xb1, 0x6e, 0xea, 0xb6, 0x75, 0xf5, 0xb1, 0x1f, 0xb5, 0xf5, 0xd3, 0xde, 0xf5, 0x5d, 0x25, 0xf8, + 0x8b, 0xfa, 0xd7, 0x1b, 0x0b, 0xdd, 0x6c, 0x2c, 0xf4, 0x6b, 0x63, 0xa1, 0x2f, 0x5b, 0xcb, 0xb8, + 0xd9, 0x5a, 0xc6, 0xf7, 0xad, 0x65, 0xbc, 0x59, 0x24, 0xa9, 0xb8, 0x2c, 0x23, 0x97, 0xb2, 0xdc, + 0xa3, 0x8c, 0xe7, 0x8c, 0x7b, 0x69, 0x44, 0x67, 0x09, 0xf3, 0xaa, 0x85, 0x97, 0xb3, 0xb8, 0xcc, + 0x80, 0xab, 0x4b, 0x39, 0x9d, 0xcf, 0xf4, 0xb1, 0x88, 0xab, 0x15, 0xf0, 0xa8, 0x2f, 0x6f, 0xe2, + 0xc9, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xc5, 0x83, 0x8e, 0x3a, 0x82, 0x03, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/modules/core/02-client/types/genesis_test.go b/modules/core/02-client/types/genesis_test.go index 70ca89a5463..c98d0a1d99c 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/cometbft/cometbft/types" - client "github.com/cosmos/ibc-go/v7/modules/core/02-client" - "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - solomachine "github.com/cosmos/ibc-go/v7/modules/light-clients/06-solomachine" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v7/testing" - ibctestingmock "github.com/cosmos/ibc-go/v7/testing/mock" + client "github.com/cosmos/ibc-go/v8/modules/core/02-client" + "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v8/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v8/testing" + ibctestingmock "github.com/cosmos/ibc-go/v8/testing/mock" ) const ( diff --git a/modules/core/02-client/types/height.go b/modules/core/02-client/types/height.go index 94e9f4acd6f..104f6020fe1 100644 --- a/modules/core/02-client/types/height.go +++ b/modules/core/02-client/types/height.go @@ -11,8 +11,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + "github.com/cosmos/ibc-go/v8/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 fa4ae59700a..dafbf755d41 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/v7/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/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 b30832c5e74..86b132c5195 100644 --- a/modules/core/02-client/types/keys.go +++ b/modules/core/02-client/types/keys.go @@ -8,8 +8,8 @@ import ( errorsmod "cosmossdk.io/errors" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) const ( diff --git a/modules/core/02-client/types/keys_test.go b/modules/core/02-client/types/keys_test.go index 93c295df627..e5550b484a9 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/v7/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/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 56fef082573..95cf016c10a 100644 --- a/modules/core/02-client/types/msgs.go +++ b/modules/core/02-client/types/msgs.go @@ -6,9 +6,9 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) var ( diff --git a/modules/core/02-client/types/msgs_test.go b/modules/core/02-client/types/msgs_test.go index fae00318003..eda16a705e0 100644 --- a/modules/core/02-client/types/msgs_test.go +++ b/modules/core/02-client/types/msgs_test.go @@ -10,11 +10,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - solomachine "github.com/cosmos/ibc-go/v7/modules/light-clients/06-solomachine" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + solomachine "github.com/cosmos/ibc-go/v8/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) type TypesTestSuite struct { diff --git a/modules/core/02-client/types/params.go b/modules/core/02-client/types/params.go index e413586601b..1279cc4c0a3 100644 --- a/modules/core/02-client/types/params.go +++ b/modules/core/02-client/types/params.go @@ -4,8 +4,8 @@ import ( "fmt" "strings" - "github.com/cosmos/ibc-go/v7/internal/collections" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/internal/collections" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // DefaultAllowedClients are the default clients for the AllowedClients parameter. diff --git a/modules/core/02-client/types/params_test.go b/modules/core/02-client/types/params_test.go index d88400eee40..767e4adf495 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/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) func TestIsAllowedClient(t *testing.T) { diff --git a/modules/core/02-client/types/proposal.go b/modules/core/02-client/types/proposal.go index 2392a01d7a5..929eff8feb0 100644 --- a/modules/core/02-client/types/proposal.go +++ b/modules/core/02-client/types/proposal.go @@ -10,7 +10,7 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/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 268c03fa9be..73904b37f2e 100644 --- a/modules/core/02-client/types/proposal_test.go +++ b/modules/core/02-client/types/proposal_test.go @@ -9,9 +9,9 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" - "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (suite *TypesTestSuite) TestValidateBasic() { diff --git a/modules/core/02-client/types/query.go b/modules/core/02-client/types/query.go index 4d4ac0af9b7..734ae1d92ad 100644 --- a/modules/core/02-client/types/query.go +++ b/modules/core/02-client/types/query.go @@ -3,7 +3,7 @@ package types import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) var ( diff --git a/modules/core/02-client/types/query.pb.go b/modules/core/02-client/types/query.pb.go index 727629ff673..aa4c78d8056 100644 --- a/modules/core/02-client/types/query.pb.go +++ b/modules/core/02-client/types/query.pb.go @@ -1048,9 +1048,9 @@ var fileDescriptor_dc42cdfd1d52d76e = []byte{ 0xb7, 0xec, 0x8c, 0xed, 0x97, 0x67, 0x16, 0x86, 0x9d, 0x21, 0xbe, 0x67, 0x9f, 0x9c, 0x96, 0xd1, 0xf3, 0xd3, 0x32, 0xfa, 0xfb, 0xb4, 0x8c, 0xbe, 0x3a, 0x2b, 0x4f, 0x3c, 0x3f, 0x2b, 0x4f, 0xfc, 0x79, 0x56, 0x9e, 0xf8, 0x6c, 0xd7, 0x0f, 0xa2, 0xc3, 0xd8, 0xb5, 0x3c, 0xd6, 0x20, 0xea, 0x1f, - 0x75, 0xe0, 0x7a, 0xeb, 0x3e, 0x23, 0xed, 0x1d, 0xd2, 0x60, 0xb5, 0xb8, 0x4e, 0xb9, 0xcc, 0xb3, + 0x75, 0xe0, 0x7a, 0xeb, 0x3e, 0x23, 0xed, 0x5d, 0xd2, 0x60, 0xb5, 0xb8, 0x4e, 0xb9, 0xcc, 0xb3, 0x51, 0x5d, 0x57, 0xa9, 0xa2, 0xa3, 0x26, 0xe5, 0xee, 0xb4, 0xb8, 0x66, 0x5b, 0xff, 0x06, 0x00, - 0x00, 0xff, 0xff, 0xd5, 0xf9, 0x22, 0x36, 0xbd, 0x0f, 0x00, 0x00, + 0x00, 0xff, 0xff, 0x6f, 0xfe, 0x1b, 0x97, 0xbd, 0x0f, 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 fcfd62bb821..fba1e65a080 100644 --- a/modules/core/02-client/types/tx.pb.go +++ b/modules/core/02-client/types/tx.pb.go @@ -461,48 +461,47 @@ func init() { func init() { proto.RegisterFile("ibc/core/client/v1/tx.proto", fileDescriptor_cb5dc4651eb49a04) } var fileDescriptor_cb5dc4651eb49a04 = []byte{ - // 641 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x95, 0x3f, 0x6f, 0xd3, 0x5c, - 0x14, 0xc6, 0x73, 0xfb, 0x27, 0x7a, 0x73, 0x9b, 0x36, 0x2f, 0x56, 0xa0, 0xa9, 0xab, 0x3a, 0x51, - 0x60, 0x08, 0x85, 0xda, 0x4d, 0x18, 0x1a, 0x81, 0x18, 0xda, 0x4e, 0x0c, 0x91, 0x90, 0x2b, 0x16, - 0x96, 0x60, 0x3b, 0x37, 0xb7, 0x96, 0x62, 0x5f, 0xcb, 0xd7, 0x8e, 0xc8, 0x86, 0x98, 0x18, 0x41, - 0x62, 0x61, 0xe3, 0x23, 0x54, 0x7c, 0x07, 0xa4, 0x8e, 0x1d, 0x99, 0x10, 0x4a, 0x86, 0x7e, 0x0d, - 0x64, 0xdf, 0x1b, 0x63, 0xbb, 0xb1, 0x49, 0xc5, 0x66, 0xfb, 0xfc, 0xce, 0x79, 0x9e, 0x73, 0x7c, - 0xae, 0x0d, 0x77, 0x4d, 0xdd, 0x50, 0x0c, 0xe2, 0x22, 0xc5, 0x18, 0x99, 0xc8, 0xf6, 0x94, 0x71, - 0x5b, 0xf1, 0xde, 0xca, 0x8e, 0x4b, 0x3c, 0x22, 0x08, 0xa6, 0x6e, 0xc8, 0x41, 0x50, 0x66, 0x41, - 0x79, 0xdc, 0x16, 0xb7, 0x0d, 0x42, 0x2d, 0x42, 0x15, 0x8b, 0xe2, 0x80, 0xb5, 0x28, 0x66, 0xb0, - 0x58, 0xc5, 0x04, 0x93, 0xf0, 0x52, 0x09, 0xae, 0xf8, 0xd3, 0x1d, 0x4c, 0x08, 0x1e, 0x21, 0x25, - 0xbc, 0xd3, 0xfd, 0xa1, 0xa2, 0xd9, 0x13, 0x1e, 0xaa, 0x2f, 0x90, 0xe6, 0x3a, 0x21, 0xd0, 0xfc, - 0x06, 0x60, 0xa5, 0x47, 0xf1, 0xa9, 0x8b, 0x34, 0x0f, 0x9d, 0x86, 0x11, 0xe1, 0x08, 0x96, 0x19, - 0xd3, 0xa7, 0x9e, 0xe6, 0xa1, 0x1a, 0x68, 0x80, 0xd6, 0x46, 0xa7, 0x2a, 0x33, 0x19, 0x79, 0x2e, - 0x23, 0x1f, 0xdb, 0x13, 0x75, 0x83, 0x91, 0x67, 0x01, 0x28, 0x3c, 0x87, 0x15, 0x83, 0xd8, 0x14, - 0xd9, 0xd4, 0xa7, 0x3c, 0x77, 0x25, 0x27, 0x77, 0x2b, 0x82, 0x59, 0xfa, 0x3d, 0x58, 0xa4, 0x26, - 0xb6, 0x91, 0x5b, 0x5b, 0x6d, 0x80, 0x56, 0x49, 0xe5, 0x77, 0x4f, 0x2b, 0x1f, 0xbe, 0xd6, 0x0b, - 0xef, 0xaf, 0x2f, 0xf6, 0xf9, 0x83, 0xe6, 0x0e, 0xdc, 0x4e, 0x79, 0x56, 0x11, 0x75, 0x82, 0x62, - 0xcd, 0xcf, 0xac, 0x9f, 0x57, 0xce, 0xe0, 0x4f, 0x3f, 0xbb, 0xb0, 0xc4, 0xfb, 0x31, 0x07, 0x61, - 0x33, 0x25, 0xf5, 0x3f, 0xf6, 0xe0, 0xc5, 0x40, 0x78, 0x06, 0xb7, 0x78, 0xd0, 0x42, 0x94, 0x6a, - 0x38, 0xdf, 0xf2, 0x26, 0x63, 0x7b, 0x0c, 0xbd, 0xad, 0xe3, 0xb8, 0xab, 0xc8, 0xf1, 0xf7, 0x15, - 0xf8, 0x7f, 0x18, 0xc3, 0xae, 0x36, 0x58, 0xca, 0x72, 0xfa, 0xfd, 0xac, 0xfc, 0xc3, 0xfb, 0x59, - 0xbd, 0xc5, 0xfb, 0x39, 0x84, 0x55, 0xc7, 0x25, 0x64, 0xd8, 0xf7, 0x99, 0xd7, 0x3e, 0xab, 0x5d, - 0x5b, 0x6b, 0x80, 0x56, 0x59, 0x15, 0xc2, 0x58, 0xb2, 0x8d, 0x63, 0xb8, 0x97, 0xca, 0x48, 0xc9, - 0xaf, 0x87, 0xa9, 0x62, 0x22, 0x35, 0x6b, 0x29, 0x8a, 0xf9, 0x23, 0x16, 0x61, 0x2d, 0x3d, 0xc6, - 0x68, 0xc6, 0x5f, 0x00, 0xbc, 0xdb, 0xa3, 0xf8, 0xcc, 0xd7, 0x2d, 0xd3, 0xeb, 0x99, 0x54, 0x47, - 0xe7, 0xda, 0xd8, 0x24, 0xbe, 0x9b, 0x3f, 0xe8, 0x2e, 0x2c, 0x5b, 0x31, 0x38, 0x77, 0xd0, 0x09, - 0x32, 0x73, 0x31, 0xee, 0xa4, 0x5c, 0xd7, 0x40, 0xb3, 0x0e, 0xf7, 0x16, 0x5a, 0x8b, 0xcc, 0x7b, - 0xb1, 0x8d, 0x7e, 0xa9, 0xb9, 0x9a, 0x45, 0x63, 0xe5, 0x41, 0xbc, 0xbc, 0xd0, 0x85, 0x45, 0x27, - 0x24, 0xb8, 0x55, 0x51, 0xbe, 0xf9, 0x75, 0x91, 0x59, 0x8d, 0x93, 0xb5, 0xcb, 0x9f, 0xf5, 0x82, - 0xca, 0xf9, 0xfc, 0x8d, 0x65, 0x19, 0x73, 0x43, 0x9d, 0x4f, 0x6b, 0x70, 0xb5, 0x47, 0xb1, 0xf0, - 0x06, 0x96, 0x13, 0xdf, 0x8d, 0xfb, 0x8b, 0xd4, 0x52, 0x07, 0x55, 0x7c, 0xb4, 0x04, 0x34, 0x57, - 0x0a, 0x14, 0x12, 0x27, 0x39, 0x4b, 0x21, 0x0e, 0x65, 0x2a, 0x2c, 0x3a, 0x7d, 0x82, 0x01, 0x37, - 0x93, 0x2b, 0xfb, 0x20, 0x33, 0x3b, 0x46, 0x89, 0x8f, 0x97, 0xa1, 0x22, 0x11, 0x17, 0x0a, 0x0b, - 0x56, 0xef, 0x61, 0x46, 0x8d, 0x9b, 0xa8, 0xd8, 0x5e, 0x1a, 0x8d, 0x34, 0x87, 0x50, 0x88, 0x37, - 0xcc, 0x17, 0x27, 0x7f, 0x80, 0x0c, 0xfa, 0xcb, 0x00, 0x93, 0xcb, 0x20, 0xae, 0xbf, 0xbb, 0xbe, - 0xd8, 0x07, 0x27, 0xea, 0xe5, 0x54, 0x02, 0x57, 0x53, 0x09, 0xfc, 0x9a, 0x4a, 0xe0, 0xe3, 0x4c, - 0x2a, 0x5c, 0xcd, 0xa4, 0xc2, 0x8f, 0x99, 0x54, 0x78, 0xdd, 0xc5, 0xa6, 0x77, 0xee, 0xeb, 0xb2, - 0x41, 0x2c, 0x85, 0xff, 0xd7, 0x4c, 0xdd, 0x38, 0xc0, 0x44, 0x19, 0x1f, 0x29, 0x16, 0x19, 0xf8, - 0x23, 0x44, 0xd9, 0x2f, 0xea, 0xb0, 0x73, 0xc0, 0xff, 0x52, 0xde, 0xc4, 0x41, 0x54, 0x2f, 0x86, - 0x07, 0xec, 0xc9, 0xef, 0x00, 0x00, 0x00, 0xff, 0xff, 0x5e, 0x3b, 0xe1, 0x4e, 0x40, 0x07, 0x00, - 0x00, + // 639 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x95, 0xbf, 0x6f, 0xd3, 0x40, + 0x14, 0xc7, 0x73, 0xfd, 0x11, 0x91, 0x6b, 0xda, 0x80, 0x15, 0x68, 0xea, 0xaa, 0x4e, 0x14, 0x18, + 0x42, 0xa1, 0x76, 0x13, 0x06, 0x22, 0x10, 0x43, 0xdb, 0x89, 0x21, 0x12, 0x72, 0xc5, 0xc2, 0x12, + 0x6c, 0xe7, 0x72, 0xb5, 0x14, 0xfb, 0x2c, 0x9f, 0x1d, 0x91, 0x0d, 0x31, 0x31, 0x82, 0xc4, 0xc2, + 0xc6, 0x9f, 0x50, 0xf1, 0x3f, 0x20, 0x75, 0xec, 0xc8, 0x84, 0x50, 0x32, 0xf4, 0xdf, 0x40, 0xf6, + 0x5d, 0x8c, 0xed, 0xc6, 0x26, 0x15, 0x9b, 0xed, 0xf7, 0x79, 0xef, 0xfb, 0x7d, 0xcf, 0xef, 0x6c, + 0xb8, 0x6b, 0xea, 0x86, 0x62, 0x10, 0x17, 0x29, 0xc6, 0xc8, 0x44, 0xb6, 0xa7, 0x8c, 0xdb, 0x8a, + 0xf7, 0x4e, 0x76, 0x5c, 0xe2, 0x11, 0x41, 0x30, 0x75, 0x43, 0x0e, 0x82, 0x32, 0x0b, 0xca, 0xe3, + 0xb6, 0xb8, 0x6d, 0x10, 0x6a, 0x11, 0xaa, 0x58, 0x14, 0x07, 0xac, 0x45, 0x31, 0x83, 0xc5, 0x2a, + 0x26, 0x98, 0x84, 0x97, 0x4a, 0x70, 0xc5, 0x9f, 0xee, 0x60, 0x42, 0xf0, 0x08, 0x29, 0xe1, 0x9d, + 0xee, 0x0f, 0x15, 0xcd, 0x9e, 0xf0, 0x50, 0x7d, 0x81, 0x34, 0xd7, 0x09, 0x81, 0xe6, 0x77, 0x00, + 0x2b, 0x3d, 0x8a, 0x4f, 0x5c, 0xa4, 0x79, 0xe8, 0x24, 0x8c, 0x08, 0x4f, 0x61, 0x99, 0x31, 0x7d, + 0xea, 0x69, 0x1e, 0xaa, 0x81, 0x06, 0x68, 0x6d, 0x74, 0xaa, 0x32, 0x93, 0x91, 0xe7, 0x32, 0xf2, + 0x91, 0x3d, 0x51, 0x37, 0x18, 0x79, 0x1a, 0x80, 0xc2, 0x0b, 0x58, 0x31, 0x88, 0x4d, 0x91, 0x4d, + 0x7d, 0xca, 0x73, 0x57, 0x72, 0x72, 0xb7, 0x22, 0x98, 0xa5, 0xdf, 0x83, 0x45, 0x6a, 0x62, 0x1b, + 0xb9, 0xb5, 0xd5, 0x06, 0x68, 0x95, 0x54, 0x7e, 0xf7, 0xac, 0xf2, 0xf1, 0x5b, 0xbd, 0xf0, 0xe1, + 0xea, 0x7c, 0x9f, 0x3f, 0x68, 0xee, 0xc0, 0xed, 0x94, 0x67, 0x15, 0x51, 0x27, 0x28, 0xd6, 0xfc, + 0xc2, 0xfa, 0x79, 0xed, 0x0c, 0xfe, 0xf6, 0xb3, 0x0b, 0x4b, 0xbc, 0x1f, 0x73, 0x10, 0x36, 0x53, + 0x52, 0x6f, 0xb1, 0x07, 0x2f, 0x07, 0xc2, 0x73, 0xb8, 0xc5, 0x83, 0x16, 0xa2, 0x54, 0xc3, 0xf9, + 0x96, 0x37, 0x19, 0xdb, 0x63, 0xe8, 0x4d, 0x1d, 0xc7, 0x5d, 0x45, 0x8e, 0x7f, 0xac, 0xc0, 0xdb, + 0x61, 0x0c, 0xbb, 0xda, 0x60, 0x29, 0xcb, 0xe9, 0xf7, 0xb3, 0xf2, 0x1f, 0xef, 0x67, 0xf5, 0x06, + 0xef, 0xe7, 0x10, 0x56, 0x1d, 0x97, 0x90, 0x61, 0xdf, 0x67, 0x5e, 0xfb, 0xac, 0x76, 0x6d, 0xad, + 0x01, 0x5a, 0x65, 0x55, 0x08, 0x63, 0xc9, 0x36, 0x8e, 0xe0, 0x5e, 0x2a, 0x23, 0x25, 0xbf, 0x1e, + 0xa6, 0x8a, 0x89, 0xd4, 0xac, 0xa5, 0x28, 0xe6, 0x8f, 0x58, 0x84, 0xb5, 0xf4, 0x18, 0xa3, 0x19, + 0x7f, 0x05, 0xf0, 0x6e, 0x8f, 0xe2, 0x53, 0x5f, 0xb7, 0x4c, 0xaf, 0x67, 0x52, 0x1d, 0x9d, 0x69, + 0x63, 0x93, 0xf8, 0x6e, 0xfe, 0xa0, 0xbb, 0xb0, 0x6c, 0xc5, 0xe0, 0xdc, 0x41, 0x27, 0xc8, 0xcc, + 0xc5, 0xb8, 0x93, 0x72, 0x5d, 0x03, 0xcd, 0x3a, 0xdc, 0x5b, 0x68, 0x2d, 0x32, 0xef, 0xc5, 0x36, + 0xfa, 0x95, 0xe6, 0x6a, 0x16, 0x8d, 0x95, 0x07, 0xf1, 0xf2, 0x42, 0x17, 0x16, 0x9d, 0x90, 0xe0, + 0x56, 0x45, 0xf9, 0xfa, 0xd7, 0x45, 0x66, 0x35, 0x8e, 0xd7, 0x2e, 0x7e, 0xd5, 0x0b, 0x2a, 0xe7, + 0xf3, 0x37, 0x96, 0x65, 0xcc, 0x0d, 0x75, 0x3e, 0xaf, 0xc1, 0xd5, 0x1e, 0xc5, 0xc2, 0x5b, 0x58, + 0x4e, 0x7c, 0x37, 0xee, 0x2f, 0x52, 0x4b, 0x1d, 0x54, 0xf1, 0xd1, 0x12, 0xd0, 0x5c, 0x29, 0x50, + 0x48, 0x9c, 0xe4, 0x2c, 0x85, 0x38, 0x94, 0xa9, 0xb0, 0xe8, 0xf4, 0x09, 0x06, 0xdc, 0x4c, 0xae, + 0xec, 0x83, 0xcc, 0xec, 0x18, 0x25, 0x3e, 0x5e, 0x86, 0x8a, 0x44, 0x5c, 0x28, 0x2c, 0x58, 0xbd, + 0x87, 0x19, 0x35, 0xae, 0xa3, 0x62, 0x7b, 0x69, 0x34, 0xd2, 0x1c, 0x42, 0x21, 0xde, 0x30, 0x5f, + 0x9c, 0xfc, 0x01, 0x32, 0xe8, 0x1f, 0x03, 0x4c, 0x2e, 0x83, 0xb8, 0xfe, 0xfe, 0xea, 0x7c, 0x1f, + 0x1c, 0xab, 0x17, 0x53, 0x09, 0x5c, 0x4e, 0x25, 0xf0, 0x7b, 0x2a, 0x81, 0x4f, 0x33, 0xa9, 0x70, + 0x39, 0x93, 0x0a, 0x3f, 0x67, 0x52, 0xe1, 0x4d, 0x17, 0x9b, 0xde, 0x99, 0xaf, 0xcb, 0x06, 0xb1, + 0x14, 0xfe, 0x5f, 0x33, 0x75, 0xe3, 0x00, 0x13, 0x65, 0xdc, 0x55, 0x2c, 0x32, 0xf0, 0x47, 0x88, + 0xb2, 0x5f, 0xd4, 0x61, 0xe7, 0x80, 0xff, 0xa5, 0xbc, 0x89, 0x83, 0xa8, 0x5e, 0x0c, 0x0f, 0xd8, + 0x93, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xe4, 0x3c, 0xd8, 0xef, 0x40, 0x07, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/modules/core/03-connection/client/cli/cli.go b/modules/core/03-connection/client/cli/cli.go index aba7df4d967..c7012fb2d0b 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/v7/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v8/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 9fe3250208f..78a672dbfca 100644 --- a/modules/core/03-connection/client/cli/query.go +++ b/modules/core/03-connection/client/cli/query.go @@ -9,9 +9,9 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/version" - "github.com/cosmos/ibc-go/v7/modules/core/03-connection/client/utils" - "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/core/03-connection/client/utils" + "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // GetCmdQueryConnections defines the command to query all the connection ends diff --git a/modules/core/03-connection/client/utils/utils.go b/modules/core/03-connection/client/utils/utils.go index 729ad18783d..d5d4a6e4e06 100644 --- a/modules/core/03-connection/client/utils/utils.go +++ b/modules/core/03-connection/client/utils/utils.go @@ -11,13 +11,13 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/codec" - clientutils "github.com/cosmos/ibc-go/v7/modules/core/02-client/client/utils" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - ibcclient "github.com/cosmos/ibc-go/v7/modules/core/client" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + clientutils "github.com/cosmos/ibc-go/v8/modules/core/02-client/client/utils" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + ibcclient "github.com/cosmos/ibc-go/v8/modules/core/client" + "github.com/cosmos/ibc-go/v8/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 df8fb28945e..fd315407664 100644 --- a/modules/core/03-connection/genesis.go +++ b/modules/core/03-connection/genesis.go @@ -3,8 +3,8 @@ package connection import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/core/03-connection/keeper" - "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v8/modules/core/03-connection/keeper" + "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" ) // InitGenesis initializes the ibc connection submodule's state from a provided genesis diff --git a/modules/core/03-connection/keeper/events.go b/modules/core/03-connection/keeper/events.go index 2ed0507fdf1..14fe7f83ec1 100644 --- a/modules/core/03-connection/keeper/events.go +++ b/modules/core/03-connection/keeper/events.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" ) // emitConnectionOpenInitEvent emits a connection open init event diff --git a/modules/core/03-connection/keeper/grpc_query.go b/modules/core/03-connection/keeper/grpc_query.go index f6871bf4ab3..1c9d7aef311 100644 --- a/modules/core/03-connection/keeper/grpc_query.go +++ b/modules/core/03-connection/keeper/grpc_query.go @@ -12,9 +12,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" ) var _ types.QueryServer = (*Keeper)(nil) diff --git a/modules/core/03-connection/keeper/grpc_query_test.go b/modules/core/03-connection/keeper/grpc_query_test.go index 1245b511be8..3a89c071e54 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 ( "github.com/cosmos/cosmos-sdk/types/query" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (suite *KeeperTestSuite) TestQueryConnection() { diff --git a/modules/core/03-connection/keeper/handshake.go b/modules/core/03-connection/keeper/handshake.go index 60267beff36..e83ea803c9f 100644 --- a/modules/core/03-connection/keeper/handshake.go +++ b/modules/core/03-connection/keeper/handshake.go @@ -6,11 +6,11 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + "github.com/cosmos/ibc-go/v8/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 c67d5c9bf31..eaaa0ab3125 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/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v8/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 f892455cf60..e56de3558ef 100644 --- a/modules/core/03-connection/keeper/keeper.go +++ b/modules/core/03-connection/keeper/keeper.go @@ -9,11 +9,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/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 375ba0eb658..090d8cf26ea 100644 --- a/modules/core/03-connection/keeper/keeper_test.go +++ b/modules/core/03-connection/keeper/keeper_test.go @@ -6,10 +6,10 @@ import ( testifysuite "github.com/stretchr/testify/suite" - "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) type KeeperTestSuite struct { diff --git a/modules/core/03-connection/keeper/migrations.go b/modules/core/03-connection/keeper/migrations.go index 00e7b793ca7..528bc86c9d7 100644 --- a/modules/core/03-connection/keeper/migrations.go +++ b/modules/core/03-connection/keeper/migrations.go @@ -3,8 +3,8 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - connectionv7 "github.com/cosmos/ibc-go/v7/modules/core/03-connection/migrations/v7" - "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" + connectionv7 "github.com/cosmos/ibc-go/v8/modules/core/03-connection/migrations/v7" + "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" ) // Migrator is a struct for handling in-place store migrations. diff --git a/modules/core/03-connection/keeper/migrations_test.go b/modules/core/03-connection/keeper/migrations_test.go index d3d87361668..ee1db7e6c20 100644 --- a/modules/core/03-connection/keeper/migrations_test.go +++ b/modules/core/03-connection/keeper/migrations_test.go @@ -1,9 +1,9 @@ package keeper_test import ( - "github.com/cosmos/ibc-go/v7/modules/core/03-connection/keeper" - "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/core/03-connection/keeper" + "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // TestMigrateParams tests that the params for the connection are properly migrated diff --git a/modules/core/03-connection/keeper/verify.go b/modules/core/03-connection/keeper/verify.go index 3e96d58f157..bee3d460903 100644 --- a/modules/core/03-connection/keeper/verify.go +++ b/modules/core/03-connection/keeper/verify.go @@ -8,13 +8,13 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + "github.com/cosmos/ibc-go/v8/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 12600e8d9c3..52977dd08e9 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/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v7/testing" - ibcmock "github.com/cosmos/ibc-go/v7/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v8/testing" + ibcmock "github.com/cosmos/ibc-go/v8/testing/mock" ) var defaultTimeoutHeight = clienttypes.NewHeight(1, 100000) diff --git a/modules/core/03-connection/module.go b/modules/core/03-connection/module.go index cded57fb4af..2df00b9653d 100644 --- a/modules/core/03-connection/module.go +++ b/modules/core/03-connection/module.go @@ -4,8 +4,8 @@ import ( "github.com/cosmos/gogoproto/grpc" "github.com/spf13/cobra" - "github.com/cosmos/ibc-go/v7/modules/core/03-connection/client/cli" - "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v8/modules/core/03-connection/client/cli" + "github.com/cosmos/ibc-go/v8/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 8fdf6c389e3..993a13f7a44 100644 --- a/modules/core/03-connection/simulation/decoder.go +++ b/modules/core/03-connection/simulation/decoder.go @@ -7,8 +7,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + host "github.com/cosmos/ibc-go/v8/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 0a80a8edf34..a949e12ec2c 100644 --- a/modules/core/03-connection/simulation/decoder_test.go +++ b/modules/core/03-connection/simulation/decoder_test.go @@ -8,10 +8,10 @@ import ( "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/cosmos/ibc-go/v7/modules/core/03-connection/simulation" - "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/testing/simapp" + "github.com/cosmos/ibc-go/v8/modules/core/03-connection/simulation" + "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/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 5ffc3d4e522..04f39b426e9 100644 --- a/modules/core/03-connection/simulation/genesis.go +++ b/modules/core/03-connection/simulation/genesis.go @@ -5,7 +5,7 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v8/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 4deebb33401..e551228ca5e 100644 --- a/modules/core/03-connection/types/codec.go +++ b/modules/core/03-connection/types/codec.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/msgservice" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/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 e202d5b2c45..d9c1a554437 100644 --- a/modules/core/03-connection/types/connection.go +++ b/modules/core/03-connection/types/connection.go @@ -3,10 +3,10 @@ package types import ( errorsmod "cosmossdk.io/errors" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + "github.com/cosmos/ibc-go/v8/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 2d557b9389d..1bd203f3a5e 100644 --- a/modules/core/03-connection/types/connection.pb.go +++ b/modules/core/03-connection/types/connection.pb.go @@ -7,7 +7,7 @@ import ( fmt "fmt" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" - types "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" + types "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" io "io" math "math" math_bits "math/bits" @@ -421,7 +421,7 @@ var fileDescriptor_90572467c054e43a = []byte{ // 661 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x54, 0x5d, 0x4b, 0xdb, 0x50, 0x18, 0x4e, 0xd2, 0xb4, 0xd6, 0xd3, 0xd6, 0xb9, 0x83, 0x6c, 0x21, 0xb2, 0x34, 0xd3, 0xc1, 0xca, - 0xc0, 0x66, 0x2a, 0x6c, 0xb0, 0x79, 0x63, 0x6b, 0x84, 0xb0, 0xad, 0x0b, 0xb1, 0x0a, 0xf3, 0x26, + 0xc0, 0x66, 0x2a, 0x8c, 0xb1, 0x79, 0x63, 0x6b, 0x84, 0xb0, 0xad, 0x0b, 0xb1, 0x0a, 0xf3, 0x26, 0xa4, 0xc9, 0xb1, 0x1e, 0x6c, 0x72, 0x42, 0x72, 0x5a, 0xea, 0x3f, 0x10, 0xaf, 0x76, 0x37, 0x36, 0x10, 0x06, 0xbb, 0xdf, 0xef, 0xf0, 0xd2, 0xcb, 0x5d, 0x8d, 0xa1, 0x7f, 0x64, 0xe4, 0xc3, 0x26, 0xca, 0xec, 0xc5, 0xb6, 0xbb, 0xf7, 0xe3, 0x79, 0x9e, 0xbc, 0x79, 0xde, 0x97, 0x03, 0x9e, 0xe2, @@ -459,8 +459,8 @@ var fileDescriptor_90572467c054e43a = []byte{ 0xaf, 0x24, 0xe6, 0xe2, 0x4a, 0x62, 0x7e, 0x5c, 0x49, 0xcc, 0xfe, 0x46, 0x1f, 0xd3, 0xc3, 0x61, 0x2f, 0x5a, 0xb6, 0x62, 0x93, 0xd0, 0x25, 0xa1, 0x82, 0x7b, 0xf6, 0x4a, 0x9f, 0x28, 0xa3, 0x97, 0x8a, 0x4b, 0x9c, 0xe1, 0x00, 0x85, 0xc9, 0x33, 0xf7, 0x7c, 0x7d, 0x25, 0xf7, 0x80, 0xd2, 0x63, - 0x1f, 0x85, 0xbd, 0x52, 0xfc, 0xc4, 0xad, 0xff, 0x0e, 0x00, 0x00, 0xff, 0xff, 0x16, 0x1e, 0x46, - 0x70, 0x64, 0x05, 0x00, 0x00, + 0x1f, 0x85, 0xbd, 0x52, 0xfc, 0xc4, 0xad, 0xff, 0x0e, 0x00, 0x00, 0xff, 0xff, 0xa9, 0xb8, 0x93, + 0xa8, 0x64, 0x05, 0x00, 0x00, } func (m *ConnectionEnd) Marshal() (dAtA []byte, err error) { diff --git a/modules/core/03-connection/types/connection_test.go b/modules/core/03-connection/types/connection_test.go index 56daca299b8..7400e3ab323 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/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) var ( diff --git a/modules/core/03-connection/types/events.go b/modules/core/03-connection/types/events.go index 64e40853d21..3f8a6eebb18 100644 --- a/modules/core/03-connection/types/events.go +++ b/modules/core/03-connection/types/events.go @@ -3,7 +3,7 @@ package types import ( "fmt" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // IBC connection events diff --git a/modules/core/03-connection/types/expected_keepers.go b/modules/core/03-connection/types/expected_keepers.go index dd4af1f548b..b470bf6520f 100644 --- a/modules/core/03-connection/types/expected_keepers.go +++ b/modules/core/03-connection/types/expected_keepers.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/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 b1c5e4c0015..c273f82e363 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/v7/modules/core/24-host" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" ) // NewConnectionPaths creates a ConnectionPaths instance. diff --git a/modules/core/03-connection/types/genesis.pb.go b/modules/core/03-connection/types/genesis.pb.go index a3514c7c0cc..390527a623d 100644 --- a/modules/core/03-connection/types/genesis.pb.go +++ b/modules/core/03-connection/types/genesis.pb.go @@ -105,25 +105,25 @@ var fileDescriptor_1879d34bc6ac3cd7 = []byte{ // 328 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x91, 0xbf, 0x4e, 0x32, 0x41, 0x14, 0xc5, 0x77, 0x81, 0x50, 0x0c, 0x5f, 0xb5, 0xf9, 0xc4, 0x0d, 0xc5, 0x48, 0x8c, 0x09, 0x14, - 0x32, 0x23, 0x50, 0x68, 0x41, 0x85, 0x85, 0xb1, 0x23, 0x60, 0x2c, 0x6c, 0xc8, 0xee, 0x70, 0x5d, - 0x26, 0x61, 0xe7, 0xae, 0xcc, 0x40, 0xf4, 0x2d, 0x7c, 0x27, 0x1b, 0x4a, 0x4a, 0x2b, 0x63, 0xe0, - 0x45, 0xcc, 0xfe, 0x89, 0x8b, 0xc6, 0xed, 0x26, 0x73, 0x7e, 0xe7, 0x9c, 0x9b, 0x1c, 0x72, 0x26, - 0x7d, 0xc1, 0x05, 0x2e, 0x81, 0x0b, 0x54, 0x0a, 0x84, 0x91, 0xa8, 0xf8, 0xba, 0xcb, 0x03, 0x50, - 0xa0, 0xa5, 0x66, 0xd1, 0x12, 0x0d, 0x3a, 0x75, 0xe9, 0x0b, 0x16, 0x53, 0x2c, 0xa7, 0xd8, 0xba, - 0xdb, 0xf8, 0x1f, 0x60, 0x80, 0x09, 0xc2, 0xe3, 0x57, 0x4a, 0x37, 0x5a, 0x05, 0x99, 0x07, 0xde, - 0x04, 0x3c, 0x7d, 0x2b, 0x91, 0x7f, 0x37, 0x69, 0xd1, 0xc4, 0x78, 0x06, 0x9c, 0x3b, 0x52, 0xcb, - 0x21, 0xed, 0xda, 0xcd, 0x72, 0xbb, 0xd6, 0x3b, 0x67, 0x7f, 0xb7, 0xb3, 0xdb, 0x19, 0x28, 0x23, - 0x1f, 0x25, 0xcc, 0xae, 0xbf, 0xff, 0x87, 0x95, 0xcd, 0xc7, 0x89, 0x35, 0x3e, 0x8c, 0x71, 0x80, - 0x1c, 0x8b, 0x85, 0x04, 0x65, 0xa6, 0xf9, 0xef, 0x34, 0xf2, 0xcc, 0x5c, 0xbb, 0xa5, 0xa4, 0xa1, - 0x55, 0xd4, 0x90, 0xe7, 0x8e, 0x62, 0x3c, 0x0b, 0x3f, 0x4a, 0xd3, 0x7e, 0x89, 0xce, 0x15, 0x71, - 0x15, 0x3c, 0xff, 0x28, 0xd1, 0xf0, 0xb4, 0x02, 0x25, 0xc0, 0x2d, 0x37, 0xed, 0x76, 0x65, 0x5c, - 0x8f, 0xf5, 0xdc, 0x36, 0xc9, 0x54, 0x67, 0x40, 0xaa, 0x91, 0xb7, 0xf4, 0x42, 0xed, 0x56, 0x9a, - 0x76, 0xbb, 0xd6, 0xa3, 0x45, 0xf7, 0x8c, 0x12, 0x2a, 0x3b, 0x23, 0xf3, 0x0c, 0xef, 0x37, 0x3b, - 0x6a, 0x6f, 0x77, 0xd4, 0xfe, 0xdc, 0x51, 0xfb, 0x75, 0x4f, 0xad, 0xed, 0x9e, 0x5a, 0xef, 0x7b, - 0x6a, 0x3d, 0x0c, 0x02, 0x69, 0xe6, 0x2b, 0x9f, 0x09, 0x0c, 0xb9, 0x40, 0x1d, 0xa2, 0xe6, 0xd2, - 0x17, 0x9d, 0x00, 0xf9, 0xfa, 0x92, 0x87, 0x38, 0x5b, 0x2d, 0x40, 0xa7, 0x43, 0x5d, 0xf4, 0x3b, - 0x07, 0x5b, 0x99, 0x97, 0x08, 0xb4, 0x5f, 0x4d, 0x46, 0xea, 0x7f, 0x05, 0x00, 0x00, 0xff, 0xff, - 0x2e, 0xe5, 0xed, 0xd8, 0x23, 0x02, 0x00, 0x00, + 0x32, 0x23, 0xd0, 0x50, 0x50, 0x61, 0x61, 0xec, 0x08, 0x18, 0x0b, 0x1b, 0xb2, 0x3b, 0x5c, 0x97, + 0x49, 0xd8, 0xb9, 0x2b, 0x33, 0x10, 0x7d, 0x0b, 0xdf, 0xc9, 0x86, 0x92, 0xd2, 0xca, 0x18, 0x78, + 0x11, 0xb3, 0x7f, 0xe2, 0xa2, 0x71, 0xbb, 0xc9, 0x9c, 0xdf, 0x39, 0xe7, 0x26, 0x87, 0x5c, 0x48, + 0x5f, 0x70, 0x81, 0x2b, 0xe0, 0x02, 0x95, 0x02, 0x61, 0x24, 0x2a, 0xbe, 0xe9, 0xf2, 0x00, 0x14, + 0x68, 0xa9, 0x59, 0xb4, 0x42, 0x83, 0x4e, 0x5d, 0xfa, 0x82, 0xc5, 0x14, 0xcb, 0x29, 0xb6, 0xe9, + 0x36, 0xfe, 0x07, 0x18, 0x60, 0x82, 0xf0, 0xf8, 0x95, 0xd2, 0x8d, 0x56, 0x41, 0xe6, 0x91, 0x37, + 0x01, 0xcf, 0xdf, 0x4a, 0xe4, 0xdf, 0x4d, 0x5a, 0x34, 0x35, 0x9e, 0x01, 0xe7, 0x8e, 0xd4, 0x72, + 0x48, 0xbb, 0x76, 0xb3, 0xdc, 0xae, 0xf5, 0x2e, 0xd9, 0xdf, 0xed, 0xec, 0x76, 0x0e, 0xca, 0xc8, + 0x47, 0x09, 0xf3, 0xeb, 0xef, 0xff, 0x51, 0x65, 0xfb, 0x71, 0x66, 0x4d, 0x8e, 0x63, 0x1c, 0x20, + 0xa7, 0x62, 0x29, 0x41, 0x99, 0x59, 0xfe, 0x3b, 0x8b, 0x3c, 0xb3, 0xd0, 0x6e, 0x29, 0x69, 0x68, + 0x15, 0x35, 0xe4, 0xb9, 0xe3, 0x18, 0xcf, 0xc2, 0x4f, 0xd2, 0xb4, 0x5f, 0xa2, 0x33, 0x20, 0xae, + 0x82, 0xe7, 0x1f, 0x25, 0x1a, 0x9e, 0xd6, 0xa0, 0x04, 0xb8, 0xe5, 0xa6, 0xdd, 0xae, 0x4c, 0xea, + 0xb1, 0x9e, 0xdb, 0xa6, 0x99, 0xea, 0x0c, 0x49, 0x35, 0xf2, 0x56, 0x5e, 0xa8, 0xdd, 0x4a, 0xd3, + 0x6e, 0xd7, 0x7a, 0xb4, 0xe8, 0x9e, 0x71, 0x42, 0x65, 0x67, 0x64, 0x9e, 0xd1, 0xfd, 0x76, 0x4f, + 0xed, 0xdd, 0x9e, 0xda, 0x9f, 0x7b, 0x6a, 0xbf, 0x1e, 0xa8, 0xb5, 0x3b, 0x50, 0xeb, 0xfd, 0x40, + 0xad, 0x87, 0x61, 0x20, 0xcd, 0x62, 0xed, 0x33, 0x81, 0x21, 0x17, 0xa8, 0x43, 0xd4, 0x5c, 0xfa, + 0xa2, 0x13, 0x20, 0xdf, 0x0c, 0x78, 0x88, 0xf3, 0xf5, 0x12, 0x74, 0x3a, 0xd4, 0x55, 0xbf, 0x73, + 0xb4, 0x95, 0x79, 0x89, 0x40, 0xfb, 0xd5, 0x64, 0xa4, 0xfe, 0x57, 0x00, 0x00, 0x00, 0xff, 0xff, + 0x91, 0x43, 0x38, 0x00, 0x23, 0x02, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/modules/core/03-connection/types/genesis_test.go b/modules/core/03-connection/types/genesis_test.go index 0b513cfdace..6e5a0ce1170 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/v7/modules/core/03-connection/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + ibctesting "github.com/cosmos/ibc-go/v8/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 cad76caf4ad..0d3017135d2 100644 --- a/modules/core/03-connection/types/keys.go +++ b/modules/core/03-connection/types/keys.go @@ -6,7 +6,7 @@ import ( errorsmod "cosmossdk.io/errors" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" + host "github.com/cosmos/ibc-go/v8/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 2185ebc462c..9daf816fbda 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/v7/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v8/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 05bf802b906..01233a20cf3 100644 --- a/modules/core/03-connection/types/msgs.go +++ b/modules/core/03-connection/types/msgs.go @@ -6,11 +6,11 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + "github.com/cosmos/ibc-go/v8/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 ecb10b4b7c3..6ded23088f1 100644 --- a/modules/core/03-connection/types/msgs_test.go +++ b/modules/core/03-connection/types/msgs_test.go @@ -17,13 +17,13 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v7/testing" - "github.com/cosmos/ibc-go/v7/testing/simapp" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v8/testing" + "github.com/cosmos/ibc-go/v8/testing/simapp" ) var ( diff --git a/modules/core/03-connection/types/params_test.go b/modules/core/03-connection/types/params_test.go index 8afc407d723..a8f8e5f1374 100644 --- a/modules/core/03-connection/types/params_test.go +++ b/modules/core/03-connection/types/params_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" ) func TestValidateParams(t *testing.T) { diff --git a/modules/core/03-connection/types/query.go b/modules/core/03-connection/types/query.go index 44983f9711c..166b06f2bdb 100644 --- a/modules/core/03-connection/types/query.go +++ b/modules/core/03-connection/types/query.go @@ -3,8 +3,8 @@ package types import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/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 ca9d60fad74..054dbbb57a4 100644 --- a/modules/core/03-connection/types/query.pb.go +++ b/modules/core/03-connection/types/query.pb.go @@ -11,7 +11,7 @@ import ( _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" - types "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + types "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" @@ -720,66 +720,66 @@ func init() { } var fileDescriptor_cd8d529f8c7cd06b = []byte{ - // 935 bytes of a gzipped FileDescriptorProto + // 934 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0x41, 0x6f, 0xdc, 0x44, 0x14, 0xce, 0x6c, 0xd2, 0x88, 0xbc, 0x0d, 0x6d, 0x19, 0xa5, 0xed, 0x62, 0x8a, 0x1b, 0x5c, 0xd2, - 0xa4, 0x40, 0x67, 0xba, 0x09, 0x09, 0x05, 0x12, 0x04, 0xa9, 0x0a, 0xc9, 0xa5, 0x0a, 0x46, 0x02, - 0x89, 0x4b, 0x64, 0x7b, 0x27, 0x8e, 0xa5, 0xac, 0x67, 0xbb, 0xe3, 0x5d, 0x14, 0x55, 0x11, 0x12, - 0xbf, 0x00, 0x89, 0x0b, 0x97, 0x5e, 0x41, 0xe2, 0x1f, 0x20, 0x6e, 0x9c, 0x7a, 0xac, 0xc4, 0xa5, - 0xa7, 0x0a, 0x25, 0x5c, 0xf9, 0x0f, 0x95, 0x67, 0xc6, 0xf5, 0x78, 0x77, 0x9d, 0xec, 0xae, 0x94, + 0xa4, 0x40, 0x67, 0xba, 0x09, 0x89, 0x02, 0x24, 0x08, 0x52, 0x15, 0x92, 0x4b, 0x15, 0x8c, 0x04, + 0x12, 0x97, 0xc8, 0xf6, 0x4e, 0x1c, 0x4b, 0x59, 0xcf, 0x76, 0xc7, 0xbb, 0x28, 0xaa, 0x22, 0x24, + 0x7e, 0x01, 0x12, 0x17, 0x2e, 0xbd, 0x82, 0xc4, 0x3f, 0x40, 0xdc, 0x38, 0xf5, 0x58, 0x89, 0x4b, + 0x4f, 0x15, 0x4a, 0xb8, 0xf2, 0x1f, 0x90, 0x67, 0xc6, 0xf5, 0x78, 0x77, 0x9d, 0xec, 0xae, 0x94, 0x9b, 0xf7, 0xcd, 0x7b, 0x6f, 0xbe, 0xef, 0x7b, 0xcf, 0x9f, 0x17, 0x9c, 0xc8, 0x0f, 0x68, 0xc0, - 0xdb, 0x8c, 0x06, 0x3c, 0x8e, 0x59, 0x90, 0x44, 0x3c, 0xa6, 0xdd, 0x3a, 0x7d, 0xd4, 0x61, 0xed, - 0x43, 0xd2, 0x6a, 0xf3, 0x84, 0xe3, 0xab, 0x91, 0x1f, 0x90, 0x34, 0x87, 0xe4, 0x39, 0xa4, 0x5b, + 0xdb, 0x8c, 0x06, 0x3c, 0x8e, 0x59, 0x90, 0x44, 0x3c, 0xa6, 0xdd, 0x3a, 0x7d, 0xdc, 0x61, 0xed, + 0x23, 0xd2, 0x6a, 0xf3, 0x84, 0xe3, 0xeb, 0x91, 0x1f, 0x90, 0x34, 0x87, 0xe4, 0x39, 0xa4, 0x5b, 0xb7, 0xe6, 0x42, 0x1e, 0x72, 0x99, 0x42, 0xd3, 0x27, 0x95, 0x6d, 0xbd, 0x17, 0x70, 0xd1, 0xe4, 0x82, 0xfa, 0x9e, 0x60, 0xaa, 0x0d, 0xed, 0xd6, 0x7d, 0x96, 0x78, 0x75, 0xda, 0xf2, 0xc2, 0x28, - 0xf6, 0x64, 0xb9, 0xca, 0xbd, 0x91, 0xdf, 0x7e, 0x10, 0xb1, 0x38, 0x49, 0x6f, 0x56, 0x4f, 0x3a, - 0x61, 0xb1, 0x04, 0x9e, 0x01, 0x44, 0x25, 0x5e, 0x0f, 0x39, 0x0f, 0x0f, 0x18, 0xf5, 0x5a, 0x11, - 0xf5, 0xe2, 0x98, 0x27, 0xf2, 0x1a, 0xa1, 0x4f, 0xdf, 0xd4, 0xa7, 0xf2, 0x97, 0xdf, 0xd9, 0xa3, - 0x5e, 0xac, 0xc9, 0x39, 0x1b, 0x70, 0xf5, 0xeb, 0x14, 0xe4, 0xfd, 0x57, 0x1d, 0x5d, 0xf6, 0xa8, - 0xc3, 0x44, 0x82, 0x6f, 0xc2, 0xeb, 0xf9, 0x35, 0xbb, 0x51, 0xa3, 0x86, 0xe6, 0xd1, 0xd2, 0x8c, - 0x3b, 0x9b, 0x07, 0xb7, 0x1b, 0xce, 0x5f, 0x08, 0xae, 0xf5, 0xd5, 0x8b, 0x16, 0x8f, 0x05, 0xc3, - 0x0f, 0x00, 0xf2, 0x5c, 0x59, 0x5d, 0x5d, 0x5e, 0x20, 0x83, 0xc5, 0x24, 0x79, 0xfd, 0x83, 0xb8, - 0xe1, 0x1a, 0x85, 0x78, 0x0e, 0x2e, 0xb4, 0xda, 0x9c, 0xef, 0xd5, 0x2a, 0xf3, 0x68, 0x69, 0xd6, - 0x55, 0x3f, 0xf0, 0x7d, 0x98, 0x95, 0x0f, 0xbb, 0xfb, 0x2c, 0x0a, 0xf7, 0x93, 0xda, 0xa4, 0x6c, - 0x6f, 0x19, 0xed, 0x95, 0x8e, 0xdd, 0x3a, 0xd9, 0x92, 0x19, 0x9b, 0x53, 0x4f, 0x5f, 0xdc, 0x98, - 0x70, 0xab, 0xb2, 0x4a, 0x85, 0x1c, 0xaf, 0x0f, 0xbc, 0xc8, 0xd8, 0x7f, 0x09, 0x90, 0x8f, 0x4b, - 0x83, 0xbf, 0x45, 0xd4, 0x6c, 0x49, 0x3a, 0x5b, 0xa2, 0x56, 0x44, 0xcf, 0x96, 0xec, 0x78, 0x21, - 0xd3, 0xb5, 0xae, 0x51, 0xe9, 0xfc, 0x8f, 0xa0, 0xd6, 0x7f, 0x87, 0x56, 0xe8, 0x21, 0x54, 0x73, - 0xa2, 0xa2, 0x86, 0xe6, 0x27, 0x97, 0xaa, 0xcb, 0x1f, 0x94, 0x49, 0xb4, 0xdd, 0x60, 0x71, 0x12, - 0xed, 0x45, 0xac, 0x61, 0x88, 0x6d, 0x36, 0xc0, 0x5f, 0x15, 0x40, 0x57, 0x24, 0xe8, 0xc5, 0x33, - 0x41, 0x2b, 0x30, 0x26, 0x6a, 0x7c, 0x0f, 0xa6, 0x47, 0xd4, 0x55, 0xe7, 0x3b, 0xeb, 0xf0, 0xb6, - 0xa2, 0x2b, 0xd3, 0x06, 0x08, 0xfb, 0x16, 0xcc, 0xa8, 0x16, 0xf9, 0x4a, 0xbd, 0xa6, 0x02, 0xdb, - 0x0d, 0xe7, 0x37, 0x04, 0x76, 0x59, 0xb9, 0xd6, 0xec, 0x36, 0x5c, 0x36, 0xd6, 0xb2, 0xe5, 0x25, - 0xfb, 0x4a, 0xb8, 0x19, 0xf7, 0x52, 0x1e, 0xdf, 0x49, 0xc3, 0xe7, 0xb9, 0x39, 0x5b, 0xf0, 0x4e, - 0xcf, 0x54, 0x15, 0xe2, 0x6f, 0x12, 0x2f, 0x61, 0x23, 0xbd, 0x41, 0xc7, 0x08, 0x9c, 0xd3, 0x5a, - 0x69, 0xda, 0x1e, 0x5c, 0x8b, 0x5e, 0xcd, 0x7f, 0x57, 0x2b, 0x28, 0xd2, 0x14, 0xbd, 0x9c, 0xb7, - 0x07, 0x11, 0x30, 0x56, 0xc6, 0xe8, 0x79, 0x25, 0x1a, 0x14, 0x3e, 0x4f, 0xb9, 0x9e, 0x20, 0x78, - 0xb7, 0x97, 0x64, 0x4a, 0x2b, 0x16, 0x1d, 0x31, 0xb2, 0x64, 0x78, 0x11, 0x2e, 0xb5, 0x59, 0x37, - 0x12, 0x69, 0x4a, 0xdc, 0x69, 0xfa, 0xac, 0x2d, 0x21, 0x4f, 0xb9, 0x17, 0xb3, 0xf0, 0x43, 0x19, - 0x2d, 0x24, 0x1a, 0xf0, 0x8d, 0x44, 0x8d, 0xef, 0x05, 0x82, 0x85, 0x33, 0xf0, 0xe9, 0x39, 0x6c, - 0x40, 0xba, 0x66, 0xea, 0xa4, 0xa0, 0xff, 0x1c, 0x51, 0x26, 0x4b, 0x32, 0x93, 0x25, 0x5f, 0xc4, - 0x87, 0xee, 0xc5, 0xa0, 0xd0, 0xa6, 0xb8, 0xfd, 0x95, 0xe2, 0xf6, 0xe7, 0x03, 0x98, 0x3c, 0x6d, - 0x00, 0x53, 0xe3, 0x0c, 0xc0, 0x86, 0xeb, 0x3d, 0xfc, 0x76, 0xbc, 0xb6, 0xd7, 0xcc, 0xde, 0x4a, - 0xe7, 0xbb, 0xec, 0xb5, 0xed, 0x3b, 0xd7, 0xbc, 0xd7, 0x60, 0xba, 0x25, 0x23, 0x9a, 0xae, 0x5d, - 0xe6, 0x52, 0xba, 0x4e, 0x67, 0x2f, 0xff, 0x39, 0x03, 0x17, 0x64, 0x67, 0xfc, 0x07, 0x02, 0xc8, - 0xdb, 0x63, 0x52, 0xd6, 0x60, 0xf0, 0xe7, 0xc8, 0xa2, 0x43, 0xe7, 0x2b, 0xc4, 0xce, 0xa7, 0x3f, - 0xfd, 0xf3, 0xdf, 0x2f, 0x95, 0x55, 0xbc, 0x42, 0xcf, 0xfc, 0x88, 0x0a, 0xfa, 0xb8, 0xb0, 0x75, - 0x47, 0xf8, 0x09, 0x82, 0xaa, 0xe1, 0x3e, 0x78, 0xd8, 0xdb, 0x33, 0x41, 0xad, 0xbb, 0xc3, 0x17, - 0x68, 0xbc, 0xef, 0x4b, 0xbc, 0x0b, 0xf8, 0xe6, 0x10, 0x78, 0xf1, 0xdf, 0x08, 0xde, 0xe8, 0xf3, - 0x48, 0xbc, 0x7a, 0xfa, 0xa5, 0x25, 0x96, 0x6c, 0xad, 0x8d, 0x5a, 0xa6, 0x11, 0x7f, 0x26, 0x11, - 0xdf, 0xc3, 0x6b, 0xa5, 0x88, 0xd5, 0xaa, 0x17, 0x85, 0xce, 0xd6, 0xff, 0x08, 0x3f, 0x47, 0x70, - 0x65, 0xa0, 0xeb, 0xe1, 0x8f, 0x87, 0x54, 0xaf, 0xdf, 0x74, 0xad, 0x4f, 0xc6, 0x29, 0xd5, 0x84, - 0xb6, 0x24, 0xa1, 0x4d, 0xfc, 0xf9, 0x18, 0x2b, 0x43, 0x4d, 0x4f, 0xc6, 0xbf, 0x56, 0xa0, 0x56, - 0xe6, 0x25, 0x78, 0x7d, 0x58, 0x88, 0x83, 0x2c, 0xd2, 0xda, 0x18, 0xb3, 0x5a, 0x73, 0xfc, 0x51, - 0x72, 0x3c, 0xc4, 0x3f, 0x8c, 0xc5, 0xb1, 0x68, 0x7d, 0x34, 0xb3, 0x51, 0xfa, 0xb8, 0xc7, 0x90, - 0x8f, 0xa8, 0x72, 0x2b, 0xe3, 0x40, 0x05, 0x8e, 0xf0, 0xef, 0x08, 0x2e, 0xf7, 0xda, 0x0c, 0xfe, - 0x70, 0x48, 0x52, 0x05, 0xd7, 0xb2, 0x56, 0x47, 0xac, 0xd2, 0x12, 0xdc, 0x92, 0x12, 0xcc, 0x63, - 0xbb, 0x4c, 0x02, 0xe5, 0x5d, 0x9b, 0xdf, 0x3e, 0x3d, 0xb6, 0xd1, 0xb3, 0x63, 0x1b, 0xfd, 0x7b, - 0x6c, 0xa3, 0x9f, 0x4f, 0xec, 0x89, 0x67, 0x27, 0xf6, 0xc4, 0xf3, 0x13, 0x7b, 0xe2, 0xfb, 0xf5, - 0x30, 0x4a, 0xf6, 0x3b, 0x3e, 0x09, 0x78, 0x93, 0xea, 0xff, 0xfb, 0x91, 0x1f, 0xdc, 0x09, 0x39, - 0xed, 0x7e, 0x44, 0x9b, 0xbc, 0xd1, 0x39, 0x60, 0x42, 0x35, 0xbe, 0xbb, 0x72, 0xc7, 0xe8, 0x9d, - 0x1c, 0xb6, 0x98, 0xf0, 0xa7, 0xe5, 0x27, 0x62, 0xe5, 0x65, 0x00, 0x00, 0x00, 0xff, 0xff, 0xf9, - 0x35, 0x5d, 0x16, 0x7d, 0x0c, 0x00, 0x00, + 0xf6, 0x64, 0xb9, 0xca, 0xbd, 0x95, 0xdf, 0x7e, 0x18, 0xb1, 0x38, 0x49, 0x6f, 0x56, 0x4f, 0x3a, + 0x61, 0xb1, 0x04, 0x9e, 0x01, 0x44, 0x25, 0xde, 0x0c, 0x39, 0x0f, 0x0f, 0x19, 0xf5, 0x5a, 0x11, + 0xf5, 0xe2, 0x98, 0x27, 0xf2, 0x1a, 0xa1, 0x4f, 0xdf, 0xd4, 0xa7, 0xf2, 0x97, 0xdf, 0xd9, 0xa7, + 0x5e, 0xac, 0xc9, 0x39, 0x9b, 0x70, 0xfd, 0xab, 0x14, 0xe4, 0x83, 0x57, 0x1d, 0x5d, 0xf6, 0xb8, + 0xc3, 0x44, 0x82, 0x6f, 0xc3, 0xeb, 0xf9, 0x35, 0x7b, 0x51, 0xa3, 0x86, 0xe6, 0xd1, 0xd2, 0x8c, + 0x3b, 0x9b, 0x07, 0x77, 0x1a, 0xce, 0x9f, 0x08, 0x6e, 0xf4, 0xd5, 0x8b, 0x16, 0x8f, 0x05, 0xc3, + 0x0f, 0x01, 0xf2, 0x5c, 0x59, 0x5d, 0x5d, 0x5e, 0x20, 0x83, 0xc5, 0x24, 0x79, 0xfd, 0xc3, 0xb8, + 0xe1, 0x1a, 0x85, 0x78, 0x0e, 0x2e, 0xb5, 0xda, 0x9c, 0xef, 0xd7, 0x2a, 0xf3, 0x68, 0x69, 0xd6, + 0x55, 0x3f, 0xf0, 0x03, 0x98, 0x95, 0x0f, 0x7b, 0x07, 0x2c, 0x0a, 0x0f, 0x92, 0xda, 0xa4, 0x6c, + 0x6f, 0x19, 0xed, 0x95, 0x8e, 0xdd, 0x3a, 0xd9, 0x96, 0x19, 0x5b, 0x53, 0xcf, 0x5e, 0xde, 0x9a, + 0x70, 0xab, 0xb2, 0x4a, 0x85, 0x1c, 0xaf, 0x0f, 0xbc, 0xc8, 0xd8, 0x7f, 0x01, 0x90, 0x8f, 0x4b, + 0x83, 0xbf, 0x43, 0xd4, 0x6c, 0x49, 0x3a, 0x5b, 0xa2, 0x56, 0x44, 0xcf, 0x96, 0xec, 0x7a, 0x21, + 0xd3, 0xb5, 0xae, 0x51, 0xe9, 0xfc, 0x87, 0xa0, 0xd6, 0x7f, 0x87, 0x56, 0xe8, 0x11, 0x54, 0x73, + 0xa2, 0xa2, 0x86, 0xe6, 0x27, 0x97, 0xaa, 0xcb, 0x1f, 0x94, 0x49, 0xb4, 0xd3, 0x60, 0x71, 0x12, + 0xed, 0x47, 0xac, 0x61, 0x88, 0x6d, 0x36, 0xc0, 0x5f, 0x16, 0x40, 0x57, 0x24, 0xe8, 0xc5, 0x73, + 0x41, 0x2b, 0x30, 0x26, 0x6a, 0xbc, 0x0e, 0xd3, 0x23, 0xea, 0xaa, 0xf3, 0x9d, 0x0d, 0x78, 0x5b, + 0xd1, 0x95, 0x69, 0x03, 0x84, 0x7d, 0x0b, 0x66, 0x54, 0x8b, 0x7c, 0xa5, 0x5e, 0x53, 0x81, 0x9d, + 0x86, 0xf3, 0x2b, 0x02, 0xbb, 0xac, 0x5c, 0x6b, 0x76, 0x17, 0xae, 0x1a, 0x6b, 0xd9, 0xf2, 0x92, + 0x03, 0x25, 0xdc, 0x8c, 0x7b, 0x25, 0x8f, 0xef, 0xa6, 0xe1, 0x8b, 0xdc, 0x9c, 0x6d, 0x78, 0xa7, + 0x67, 0xaa, 0x0a, 0xf1, 0xd7, 0x89, 0x97, 0xb0, 0x91, 0xde, 0xa0, 0x13, 0x04, 0xce, 0x59, 0xad, + 0x34, 0x6d, 0x0f, 0x6e, 0x44, 0xaf, 0xe6, 0xbf, 0xa7, 0x15, 0x14, 0x69, 0x8a, 0x5e, 0xce, 0xbb, + 0x83, 0x08, 0x18, 0x2b, 0x63, 0xf4, 0xbc, 0x16, 0x0d, 0x0a, 0x5f, 0xa4, 0x5c, 0x4f, 0x11, 0xbc, + 0xdb, 0x4b, 0x32, 0xa5, 0x15, 0x8b, 0x8e, 0x18, 0x59, 0x32, 0xbc, 0x08, 0x57, 0xda, 0xac, 0x1b, + 0x89, 0x34, 0x25, 0xee, 0x34, 0x7d, 0xd6, 0x96, 0x90, 0xa7, 0xdc, 0xcb, 0x59, 0xf8, 0x91, 0x8c, + 0x16, 0x12, 0x0d, 0xf8, 0x46, 0xa2, 0xc6, 0xf7, 0x12, 0xc1, 0xc2, 0x39, 0xf8, 0xf4, 0x1c, 0x36, + 0x21, 0x5d, 0x33, 0x75, 0x52, 0xd0, 0x7f, 0x8e, 0x28, 0x93, 0x25, 0x99, 0xc9, 0x92, 0xcf, 0xe3, + 0x23, 0xf7, 0x72, 0x50, 0x68, 0x53, 0xdc, 0xfe, 0x4a, 0x71, 0xfb, 0xf3, 0x01, 0x4c, 0x9e, 0x35, + 0x80, 0xa9, 0x71, 0x06, 0x60, 0xc3, 0xcd, 0x1e, 0x7e, 0xbb, 0x5e, 0xdb, 0x6b, 0x66, 0x6f, 0xa5, + 0xf3, 0x6d, 0xf6, 0xda, 0xf6, 0x9d, 0x6b, 0xde, 0x6b, 0x30, 0xdd, 0x92, 0x11, 0x4d, 0xd7, 0x2e, + 0x73, 0x29, 0x5d, 0xa7, 0xb3, 0x97, 0xff, 0x98, 0x81, 0x4b, 0xb2, 0x33, 0xfe, 0x1d, 0x01, 0xe4, + 0xed, 0x31, 0x29, 0x6b, 0x30, 0xf8, 0x73, 0x64, 0xd1, 0xa1, 0xf3, 0x15, 0x62, 0xe7, 0x93, 0x1f, + 0xff, 0xfe, 0xf7, 0xe7, 0xca, 0x2a, 0x5e, 0xa1, 0xe7, 0x7e, 0x44, 0x05, 0x7d, 0x52, 0xd8, 0xba, + 0x63, 0xfc, 0x14, 0x41, 0xd5, 0x70, 0x1f, 0x3c, 0xec, 0xed, 0x99, 0xa0, 0xd6, 0xfd, 0xe1, 0x0b, + 0x34, 0xde, 0xf7, 0x25, 0xde, 0x05, 0x7c, 0x7b, 0x08, 0xbc, 0xf8, 0x2f, 0x04, 0x6f, 0xf4, 0x79, + 0x24, 0x5e, 0x3d, 0xfb, 0xd2, 0x12, 0x4b, 0xb6, 0xd6, 0x46, 0x2d, 0xd3, 0x88, 0x3f, 0x95, 0x88, + 0xd7, 0xf1, 0x5a, 0x29, 0x62, 0xb5, 0xea, 0x45, 0xa1, 0xb3, 0xf5, 0x3f, 0xc6, 0x2f, 0x10, 0x5c, + 0x1b, 0xe8, 0x7a, 0xf8, 0xa3, 0x21, 0xd5, 0xeb, 0x37, 0x5d, 0xeb, 0xe3, 0x71, 0x4a, 0x35, 0xa1, + 0x6d, 0x49, 0x68, 0x0b, 0x7f, 0x36, 0xc6, 0xca, 0x50, 0xd3, 0x93, 0xf1, 0x2f, 0x15, 0xa8, 0x95, + 0x79, 0x09, 0xde, 0x18, 0x16, 0xe2, 0x20, 0x8b, 0xb4, 0x36, 0xc7, 0xac, 0xd6, 0x1c, 0x7f, 0x90, + 0x1c, 0x8f, 0xf0, 0xf7, 0x63, 0x71, 0x2c, 0x5a, 0x1f, 0xcd, 0x6c, 0x94, 0x3e, 0xe9, 0x31, 0xe4, + 0x63, 0xaa, 0xdc, 0xca, 0x38, 0x50, 0x81, 0x63, 0xfc, 0x1b, 0x82, 0xab, 0xbd, 0x36, 0x83, 0x3f, + 0x1c, 0x92, 0x54, 0xc1, 0xb5, 0xac, 0xd5, 0x11, 0xab, 0xb4, 0x04, 0x77, 0xa4, 0x04, 0xf3, 0xd8, + 0x2e, 0x93, 0x40, 0x79, 0xd7, 0xd6, 0x37, 0xcf, 0x4e, 0x6c, 0xf4, 0xfc, 0xc4, 0x46, 0xff, 0x9c, + 0xd8, 0xe8, 0xa7, 0x53, 0x7b, 0xe2, 0xf9, 0xa9, 0x3d, 0xf1, 0xe2, 0xd4, 0x9e, 0xf8, 0x6e, 0x23, + 0x8c, 0x92, 0x83, 0x8e, 0x4f, 0x02, 0xde, 0xa4, 0xfa, 0xff, 0x7e, 0xe4, 0x07, 0xf7, 0x42, 0x4e, + 0xbb, 0xeb, 0xb4, 0xc9, 0x1b, 0x9d, 0x43, 0x26, 0x54, 0xe3, 0xfb, 0x2b, 0xf7, 0x8c, 0xde, 0xc9, + 0x51, 0x8b, 0x09, 0x7f, 0x5a, 0x7e, 0x22, 0x56, 0xfe, 0x0f, 0x00, 0x00, 0xff, 0xff, 0x46, 0x93, + 0x88, 0xce, 0x7d, 0x0c, 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 d9fb4381a62..6995dd78a79 100644 --- a/modules/core/03-connection/types/tx.pb.go +++ b/modules/core/03-connection/types/tx.pb.go @@ -11,7 +11,7 @@ import ( _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" - types1 "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + types1 "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" @@ -474,65 +474,65 @@ func init() { func init() { proto.RegisterFile("ibc/core/connection/v1/tx.proto", fileDescriptor_5d00fde5fc97399e) } var fileDescriptor_5d00fde5fc97399e = []byte{ - // 928 bytes of a gzipped FileDescriptorProto + // 927 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x96, 0x41, 0x6f, 0xe3, 0x44, 0x14, 0xc7, 0xe3, 0xd6, 0x49, 0x9b, 0x97, 0x2c, 0x85, 0x51, 0xda, 0x7a, 0xbd, 0xac, 0x93, 0x2d, - 0x48, 0xad, 0x56, 0xd4, 0xde, 0xee, 0x82, 0x76, 0x81, 0x5e, 0xda, 0x5c, 0xa8, 0x50, 0x61, 0x65, - 0xca, 0x1e, 0xb8, 0x44, 0x89, 0x33, 0x75, 0x47, 0x6d, 0x3c, 0x96, 0xc7, 0x09, 0x6b, 0x4e, 0x08, - 0x2e, 0x48, 0x5c, 0xf8, 0x08, 0x7c, 0x84, 0xfd, 0x18, 0x2b, 0x0e, 0x68, 0xc5, 0x89, 0x13, 0x42, - 0xed, 0x61, 0xbf, 0x00, 0x1f, 0x00, 0x79, 0x66, 0xec, 0x38, 0x89, 0x53, 0x39, 0xdb, 0xbd, 0x25, - 0xcf, 0xff, 0xf7, 0xe6, 0x3f, 0xef, 0xfd, 0xc6, 0x1e, 0x68, 0x92, 0x9e, 0x63, 0x39, 0x34, 0xc0, - 0x96, 0x43, 0x3d, 0x0f, 0x3b, 0x21, 0xa1, 0x9e, 0x35, 0xda, 0xb3, 0xc2, 0xe7, 0xa6, 0x1f, 0xd0, - 0x90, 0xa2, 0x0d, 0xd2, 0x73, 0xcc, 0x58, 0x60, 0x8e, 0x05, 0xe6, 0x68, 0x4f, 0x6f, 0xb8, 0xd4, - 0xa5, 0x5c, 0x62, 0xc5, 0xbf, 0x84, 0x5a, 0xdf, 0x74, 0x28, 0x1b, 0x50, 0x66, 0x0d, 0x98, 0x1b, - 0x57, 0x19, 0x30, 0x57, 0x3e, 0xb8, 0xed, 0x52, 0xea, 0x5e, 0x60, 0x8b, 0xff, 0xeb, 0x0d, 0x4f, - 0xad, 0xae, 0x17, 0xc9, 0x47, 0x19, 0x0b, 0x17, 0x04, 0x7b, 0x61, 0x9c, 0x28, 0x7e, 0x49, 0xc1, - 0xf6, 0x1c, 0x8f, 0x19, 0x43, 0x5c, 0xb8, 0xf5, 0xeb, 0x12, 0xac, 0x1f, 0x33, 0xb7, 0x9d, 0xc6, - 0xbf, 0xf6, 0xb1, 0x77, 0xe4, 0x91, 0x10, 0xdd, 0x81, 0xaa, 0x28, 0xd9, 0x21, 0x7d, 0x4d, 0x69, - 0x29, 0x3b, 0x55, 0x7b, 0x55, 0x04, 0x8e, 0xfa, 0xe8, 0x2b, 0xa8, 0x3b, 0x74, 0xe8, 0x85, 0x38, - 0xf0, 0xbb, 0x41, 0x18, 0x69, 0x4b, 0x2d, 0x65, 0xa7, 0xf6, 0xf0, 0x43, 0x33, 0x7f, 0xe7, 0x66, - 0x3b, 0xa3, 0x3d, 0x54, 0x5f, 0xfe, 0xd3, 0x2c, 0xd9, 0x13, 0xf9, 0xe8, 0x53, 0x58, 0x19, 0xe1, - 0x80, 0x11, 0xea, 0x69, 0xcb, 0xbc, 0x54, 0x73, 0x5e, 0xa9, 0x67, 0x42, 0x66, 0x27, 0x7a, 0x74, - 0x0f, 0xea, 0x7d, 0x7c, 0xd1, 0x8d, 0x3a, 0x3e, 0x0e, 0x08, 0xed, 0x6b, 0x6a, 0x4b, 0xd9, 0x51, - 0xed, 0x1a, 0x8f, 0x3d, 0xe5, 0x21, 0xb4, 0x01, 0x15, 0x46, 0x5c, 0x0f, 0x07, 0x5a, 0x99, 0xef, - 0x43, 0xfe, 0xfb, 0x6c, 0xed, 0x97, 0xdf, 0x9b, 0xa5, 0x9f, 0x5e, 0xbf, 0xb8, 0x2f, 0x03, 0x5b, - 0x4d, 0xb8, 0x9b, 0xdb, 0x0c, 0x1b, 0x33, 0x9f, 0x7a, 0x0c, 0x6f, 0xfd, 0x55, 0x86, 0xc6, 0x8c, - 0xe2, 0x24, 0x88, 0xae, 0xef, 0xd6, 0x13, 0xd8, 0xf0, 0x03, 0x3c, 0x22, 0x74, 0xc8, 0x3a, 0xe3, - 0xdd, 0xc4, 0xca, 0xb8, 0x6f, 0xd5, 0xc3, 0x25, 0x4d, 0xb1, 0x1b, 0x89, 0x62, 0x5c, 0xfb, 0xa8, - 0x8f, 0x1e, 0x43, 0x5d, 0x96, 0x65, 0x61, 0x37, 0xc4, 0xb2, 0x39, 0x0d, 0x53, 0xa0, 0x61, 0x26, - 0x68, 0x98, 0x07, 0x5e, 0x64, 0xd7, 0x84, 0xf2, 0x9b, 0x58, 0x38, 0x33, 0x20, 0xf5, 0x86, 0x03, - 0x9a, 0xee, 0x72, 0x79, 0xb6, 0xcb, 0x27, 0xb0, 0x9e, 0x4d, 0xe9, 0xc8, 0x01, 0x31, 0xad, 0xd2, - 0x5a, 0x2e, 0x32, 0xd1, 0x46, 0x36, 0x5b, 0x06, 0x19, 0x6a, 0x43, 0xdd, 0x0f, 0x28, 0x3d, 0xed, - 0x9c, 0x61, 0xe2, 0x9e, 0x85, 0xda, 0x0a, 0xdf, 0x88, 0x9e, 0x29, 0x26, 0xb8, 0x1f, 0xed, 0x99, - 0x5f, 0x70, 0x85, 0xb4, 0x5f, 0xe3, 0x59, 0x22, 0x84, 0xee, 0x02, 0x88, 0x22, 0xc4, 0x23, 0xa1, - 0xb6, 0xda, 0x52, 0x76, 0xea, 0x76, 0x95, 0x47, 0x38, 0xea, 0xf7, 0x92, 0x35, 0x44, 0x2d, 0xad, - 0xca, 0x05, 0xa2, 0x42, 0x9b, 0x87, 0xd0, 0x36, 0xac, 0x49, 0x49, 0xcc, 0x81, 0xc7, 0x86, 0x4c, - 0x03, 0xae, 0x7a, 0x47, 0xa8, 0x92, 0x28, 0xfa, 0x12, 0xde, 0x4d, 0x25, 0x89, 0xe7, 0x5a, 0x41, - 0xcf, 0x6b, 0x69, 0xa6, 0xf4, 0x3d, 0x06, 0xb7, 0x9e, 0x05, 0x17, 0x7d, 0x0e, 0xfa, 0x19, 0x65, - 0xe1, 0xd8, 0x8c, 0xc0, 0xa3, 0xc3, 0xbd, 0x68, 0xb7, 0xb8, 0xb1, 0xcd, 0x58, 0x91, 0xfa, 0xe2, - 0x54, 0x3c, 0x8d, 0x1f, 0xcf, 0x52, 0x6f, 0xc0, 0xfb, 0x79, 0x4c, 0xa7, 0xd0, 0xff, 0xa9, 0xe6, - 0x40, 0x7f, 0xe0, 0x9c, 0xa3, 0x0f, 0xe0, 0xd6, 0x24, 0xce, 0x02, 0xfc, 0xba, 0x93, 0x45, 0x78, - 0x1f, 0xf4, 0x09, 0x2c, 0x72, 0x0e, 0x80, 0xad, 0x65, 0x15, 0x13, 0x07, 0xe0, 0x06, 0x2f, 0x86, - 0xe9, 0xb3, 0xa3, 0x16, 0x3d, 0x3b, 0xd3, 0xc8, 0x95, 0xdf, 0x04, 0xb9, 0x3b, 0x20, 0x00, 0xeb, - 0x84, 0x41, 0xa4, 0x55, 0xf8, 0x44, 0x56, 0x79, 0x20, 0x7e, 0x5b, 0x4c, 0x03, 0xb7, 0x52, 0x08, - 0xb8, 0xd5, 0xc2, 0xc0, 0x55, 0x6f, 0x0e, 0x1c, 0x2c, 0x00, 0x5c, 0xed, 0x2d, 0x00, 0x77, 0xe0, - 0x9c, 0xa7, 0xc0, 0xfd, 0xa1, 0x80, 0x36, 0x23, 0x68, 0x53, 0xef, 0x94, 0x04, 0x83, 0x62, 0xd0, - 0xa5, 0xdd, 0xef, 0x3a, 0xe7, 0x9c, 0xb1, 0xa4, 0xfb, 0x31, 0xb6, 0xd3, 0xf3, 0x5d, 0x7e, 0x93, - 0xf9, 0x8e, 0x3b, 0xa5, 0x5e, 0xff, 0x4d, 0xd9, 0x82, 0xd6, 0xbc, 0xbd, 0xa4, 0x1b, 0x7e, 0x0e, - 0x6b, 0xc7, 0xcc, 0xfd, 0xd6, 0xef, 0xc7, 0x3d, 0xeb, 0x06, 0xdd, 0x01, 0xcb, 0xd4, 0x57, 0x26, - 0x26, 0xb1, 0x0f, 0x15, 0x9f, 0x2b, 0xe4, 0x37, 0xd7, 0x98, 0x77, 0x1e, 0x44, 0x1d, 0x69, 0x5d, - 0xe6, 0xcc, 0xba, 0xbb, 0x0d, 0x9b, 0x53, 0x2b, 0x27, 0xa6, 0x1e, 0xfe, 0xa7, 0xc2, 0xf2, 0x31, - 0x73, 0xd1, 0x0f, 0x80, 0x72, 0xae, 0x07, 0xbb, 0xf3, 0xd6, 0xcd, 0xfd, 0x80, 0xea, 0x9f, 0x2c, - 0x24, 0x4f, 0x3c, 0xa0, 0xef, 0xe1, 0xbd, 0xd9, 0x6f, 0xed, 0x47, 0x85, 0x6b, 0x9d, 0x04, 0x91, - 0xfe, 0xf1, 0x22, 0xea, 0xf9, 0x0b, 0xc7, 0xe0, 0x14, 0x5f, 0xf8, 0xc0, 0x39, 0x5f, 0x60, 0xe1, - 0x0c, 0xfb, 0xe8, 0x67, 0x05, 0xd6, 0xf3, 0xc1, 0x7f, 0x50, 0xb8, 0x9e, 0xcc, 0xd0, 0x9f, 0x2c, - 0x9a, 0x91, 0xba, 0x08, 0x60, 0x43, 0x30, 0x31, 0x96, 0x49, 0x2e, 0xb7, 0xaf, 0xa9, 0x99, 0xc5, - 0x48, 0xb7, 0x0a, 0x0a, 0x93, 0x35, 0xf5, 0xf2, 0x8f, 0xaf, 0x5f, 0xdc, 0x57, 0x0e, 0x9f, 0xbd, - 0xbc, 0x34, 0x94, 0x57, 0x97, 0x86, 0xf2, 0xef, 0xa5, 0xa1, 0xfc, 0x76, 0x65, 0x94, 0x5e, 0x5d, - 0x19, 0xa5, 0xbf, 0xaf, 0x8c, 0xd2, 0x77, 0xfb, 0x2e, 0x09, 0xcf, 0x86, 0x3d, 0xd3, 0xa1, 0x03, - 0x4b, 0x5e, 0x9a, 0x49, 0xcf, 0xd9, 0x75, 0xa9, 0x35, 0x7a, 0x6c, 0x0d, 0x68, 0x7f, 0x78, 0x81, - 0x99, 0xb8, 0xf4, 0x3e, 0x78, 0xb4, 0x9b, 0xb9, 0xf7, 0x86, 0x91, 0x8f, 0x59, 0xaf, 0xc2, 0x5f, - 0xf8, 0x8f, 0xfe, 0x0f, 0x00, 0x00, 0xff, 0xff, 0x2d, 0x47, 0x10, 0x9f, 0xbf, 0x0b, 0x00, 0x00, + 0x48, 0xad, 0x56, 0xd4, 0xde, 0xee, 0x82, 0x28, 0xd0, 0x4b, 0x9b, 0x0b, 0x15, 0x2a, 0xac, 0x4c, + 0xd9, 0x03, 0x97, 0x28, 0x71, 0xa6, 0xee, 0xa8, 0x8d, 0xc7, 0xf2, 0x38, 0x61, 0xcd, 0x09, 0xc1, + 0x05, 0x89, 0x0b, 0x1f, 0x81, 0x8f, 0xb0, 0x1f, 0x63, 0xc5, 0x01, 0xad, 0x38, 0x71, 0x42, 0xa8, + 0x3d, 0xec, 0x17, 0xe0, 0x03, 0x20, 0xcf, 0x8c, 0x1d, 0x27, 0x71, 0x2a, 0x67, 0xcb, 0x2d, 0x79, + 0xfe, 0xbf, 0x37, 0xff, 0x79, 0xef, 0x37, 0xf6, 0x40, 0x93, 0xf4, 0x1c, 0xcb, 0xa1, 0x01, 0xb6, + 0x1c, 0xea, 0x79, 0xd8, 0x09, 0x09, 0xf5, 0xac, 0xd1, 0x9e, 0x15, 0x3e, 0x37, 0xfd, 0x80, 0x86, + 0x14, 0x6d, 0x90, 0x9e, 0x63, 0xc6, 0x02, 0x73, 0x2c, 0x30, 0x47, 0x7b, 0x7a, 0xc3, 0xa5, 0x2e, + 0xe5, 0x12, 0x2b, 0xfe, 0x25, 0xd4, 0xfa, 0xa6, 0x43, 0xd9, 0x80, 0x32, 0x6b, 0xc0, 0xdc, 0xb8, + 0xca, 0x80, 0xb9, 0xf2, 0xc1, 0x5d, 0x97, 0x52, 0xf7, 0x12, 0x5b, 0xfc, 0x5f, 0x6f, 0x78, 0x66, + 0x75, 0xbd, 0x48, 0x3e, 0xca, 0x58, 0xb8, 0x24, 0xd8, 0x0b, 0xe3, 0x44, 0xf1, 0x4b, 0x0a, 0xb6, + 0xe7, 0x78, 0xcc, 0x18, 0xe2, 0xc2, 0xad, 0x5f, 0x96, 0x60, 0xfd, 0x84, 0xb9, 0xed, 0x34, 0xfe, + 0x95, 0x8f, 0xbd, 0x63, 0x8f, 0x84, 0xe8, 0x1e, 0x54, 0x45, 0xc9, 0x0e, 0xe9, 0x6b, 0x4a, 0x4b, + 0xd9, 0xa9, 0xda, 0xab, 0x22, 0x70, 0xdc, 0x47, 0x5f, 0x42, 0xdd, 0xa1, 0x43, 0x2f, 0xc4, 0x81, + 0xdf, 0x0d, 0xc2, 0x48, 0x5b, 0x6a, 0x29, 0x3b, 0xb5, 0xc7, 0xef, 0x9b, 0xf9, 0x3b, 0x37, 0xdb, + 0x19, 0xed, 0x91, 0xfa, 0xf2, 0xef, 0x66, 0xc9, 0x9e, 0xc8, 0x47, 0x9f, 0xc0, 0xca, 0x08, 0x07, + 0x8c, 0x50, 0x4f, 0x5b, 0xe6, 0xa5, 0x9a, 0xf3, 0x4a, 0x3d, 0x13, 0x32, 0x3b, 0xd1, 0xa3, 0x07, + 0x50, 0xef, 0xe3, 0xcb, 0x6e, 0xd4, 0xf1, 0x71, 0x40, 0x68, 0x5f, 0x53, 0x5b, 0xca, 0x8e, 0x6a, + 0xd7, 0x78, 0xec, 0x29, 0x0f, 0xa1, 0x0d, 0xa8, 0x30, 0xe2, 0x7a, 0x38, 0xd0, 0xca, 0x7c, 0x1f, + 0xf2, 0xdf, 0xa7, 0x6b, 0x3f, 0xff, 0xd6, 0x2c, 0xfd, 0xf8, 0xfa, 0xc5, 0x43, 0x19, 0xd8, 0x6a, + 0xc2, 0xfd, 0xdc, 0x66, 0xd8, 0x98, 0xf9, 0xd4, 0x63, 0x78, 0xeb, 0xcf, 0x32, 0x34, 0x66, 0x14, + 0xa7, 0x41, 0x74, 0x73, 0xb7, 0xf6, 0x61, 0xc3, 0x0f, 0xf0, 0x88, 0xd0, 0x21, 0xeb, 0x8c, 0x77, + 0x13, 0x2b, 0xe3, 0xbe, 0x55, 0x8f, 0x96, 0x34, 0xc5, 0x6e, 0x24, 0x8a, 0x71, 0xed, 0xe3, 0x3e, + 0xfa, 0x18, 0xea, 0xb2, 0x2c, 0x0b, 0xbb, 0x21, 0x96, 0xcd, 0x69, 0x98, 0x02, 0x0d, 0x33, 0x41, + 0xc3, 0x3c, 0xf4, 0x22, 0xbb, 0x26, 0x94, 0x5f, 0xc7, 0xc2, 0x99, 0x01, 0xa9, 0xb7, 0x1c, 0xd0, + 0x74, 0x97, 0xcb, 0xb3, 0x5d, 0x3e, 0x85, 0xf5, 0x6c, 0x4a, 0x47, 0x0e, 0x88, 0x69, 0x95, 0xd6, + 0x72, 0x91, 0x89, 0x36, 0xb2, 0xd9, 0x32, 0xc8, 0x50, 0x1b, 0xea, 0x7e, 0x40, 0xe9, 0x59, 0xe7, + 0x1c, 0x13, 0xf7, 0x3c, 0xd4, 0x56, 0xf8, 0x46, 0xf4, 0x4c, 0x31, 0xc1, 0xfd, 0x68, 0xcf, 0xfc, + 0x9c, 0x2b, 0xa4, 0xfd, 0x1a, 0xcf, 0x12, 0x21, 0x74, 0x1f, 0x40, 0x14, 0x21, 0x1e, 0x09, 0xb5, + 0xd5, 0x96, 0xb2, 0x53, 0xb7, 0xab, 0x3c, 0xc2, 0x51, 0x7f, 0x90, 0xac, 0x21, 0x6a, 0x69, 0x55, + 0x2e, 0x10, 0x15, 0xda, 0x3c, 0x84, 0xb6, 0x61, 0x4d, 0x4a, 0x62, 0x0e, 0x3c, 0x36, 0x64, 0x1a, + 0x70, 0xd5, 0x5b, 0x42, 0x95, 0x44, 0xd1, 0x17, 0xf0, 0x76, 0x2a, 0x49, 0x3c, 0xd7, 0x0a, 0x7a, + 0x5e, 0x4b, 0x33, 0xa5, 0xef, 0x31, 0xb8, 0xf5, 0x2c, 0xb8, 0xe8, 0x33, 0xd0, 0xcf, 0x29, 0x0b, + 0xc7, 0x66, 0x04, 0x1e, 0x1d, 0xee, 0x45, 0xbb, 0xc3, 0x8d, 0x6d, 0xc6, 0x8a, 0xd4, 0x17, 0xa7, + 0xe2, 0x69, 0xfc, 0x78, 0x96, 0x7a, 0x03, 0xde, 0xcd, 0x63, 0x3a, 0x85, 0xfe, 0x0f, 0x35, 0x07, + 0xfa, 0x43, 0xe7, 0x02, 0xbd, 0x07, 0x77, 0x26, 0x71, 0x16, 0xe0, 0xd7, 0x9d, 0x2c, 0xc2, 0x07, + 0xa0, 0x4f, 0x60, 0x91, 0x73, 0x00, 0x6c, 0x2d, 0xab, 0x98, 0x38, 0x00, 0xb7, 0x78, 0x31, 0x4c, + 0x9f, 0x1d, 0xb5, 0xe8, 0xd9, 0x99, 0x46, 0xae, 0xfc, 0x26, 0xc8, 0xdd, 0x03, 0x01, 0x58, 0x27, + 0x0c, 0x22, 0xad, 0xc2, 0x27, 0xb2, 0xca, 0x03, 0xf1, 0xdb, 0x62, 0x1a, 0xb8, 0x95, 0x42, 0xc0, + 0xad, 0x16, 0x06, 0xae, 0x7a, 0x7b, 0xe0, 0x60, 0x01, 0xe0, 0x6a, 0xff, 0x03, 0x70, 0x87, 0xce, + 0x45, 0x0a, 0xdc, 0xef, 0x0a, 0x68, 0x33, 0x82, 0x36, 0xf5, 0xce, 0x48, 0x30, 0x28, 0x06, 0x5d, + 0xda, 0xfd, 0xae, 0x73, 0xc1, 0x19, 0x4b, 0xba, 0x1f, 0x63, 0x3b, 0x3d, 0xdf, 0xe5, 0x37, 0x99, + 0xef, 0xb8, 0x53, 0xea, 0xcd, 0xdf, 0x94, 0x2d, 0x68, 0xcd, 0xdb, 0x4b, 0xba, 0xe1, 0xe7, 0xb0, + 0x76, 0xc2, 0xdc, 0x6f, 0xfc, 0x7e, 0xdc, 0xb3, 0x6e, 0xd0, 0x1d, 0xb0, 0x4c, 0x7d, 0x65, 0x62, + 0x12, 0x07, 0x50, 0xf1, 0xb9, 0x42, 0x7e, 0x73, 0x8d, 0x79, 0xe7, 0x41, 0xd4, 0x91, 0xd6, 0x65, + 0xce, 0xac, 0xbb, 0xbb, 0xb0, 0x39, 0xb5, 0x72, 0x62, 0xea, 0xf1, 0xbf, 0x2a, 0x2c, 0x9f, 0x30, + 0x17, 0x7d, 0x0f, 0x28, 0xe7, 0x7a, 0xb0, 0x3b, 0x6f, 0xdd, 0xdc, 0x0f, 0xa8, 0xfe, 0xd1, 0x42, + 0xf2, 0xc4, 0x03, 0xfa, 0x0e, 0xde, 0x99, 0xfd, 0xd6, 0x7e, 0x50, 0xb8, 0xd6, 0x69, 0x10, 0xe9, + 0x1f, 0x2e, 0xa2, 0x9e, 0xbf, 0x70, 0x0c, 0x4e, 0xf1, 0x85, 0x0f, 0x9d, 0x8b, 0x05, 0x16, 0xce, + 0xb0, 0x8f, 0x7e, 0x52, 0x60, 0x3d, 0x1f, 0xfc, 0x47, 0x85, 0xeb, 0xc9, 0x0c, 0x7d, 0x7f, 0xd1, + 0x8c, 0xd4, 0x45, 0x00, 0x1b, 0x82, 0x89, 0xb1, 0x4c, 0x72, 0xb9, 0x7d, 0x43, 0xcd, 0x2c, 0x46, + 0xba, 0x55, 0x50, 0x98, 0xac, 0xa9, 0x97, 0x7f, 0x78, 0xfd, 0xe2, 0xa1, 0x72, 0xf4, 0xec, 0xe5, + 0x95, 0xa1, 0xbc, 0xba, 0x32, 0x94, 0x7f, 0xae, 0x0c, 0xe5, 0xd7, 0x6b, 0xa3, 0xf4, 0xea, 0xda, + 0x28, 0xfd, 0x75, 0x6d, 0x94, 0xbe, 0x3d, 0x70, 0x49, 0x78, 0x3e, 0xec, 0x99, 0x0e, 0x1d, 0x58, + 0xf2, 0xd2, 0x4c, 0x7a, 0xce, 0xae, 0x4b, 0xad, 0xd1, 0xbe, 0x35, 0xa0, 0xfd, 0xe1, 0x25, 0x66, + 0xe2, 0xd2, 0xfb, 0xe8, 0xc9, 0x6e, 0xe6, 0xde, 0x1b, 0x46, 0x3e, 0x66, 0xbd, 0x0a, 0x7f, 0xe1, + 0x3f, 0xf9, 0x2f, 0x00, 0x00, 0xff, 0xff, 0x92, 0xe1, 0xc5, 0x47, 0xbf, 0x0b, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/modules/core/03-connection/types/version.go b/modules/core/03-connection/types/version.go index 393a36bbc30..9ece332016d 100644 --- a/modules/core/03-connection/types/version.go +++ b/modules/core/03-connection/types/version.go @@ -5,7 +5,7 @@ import ( errorsmod "cosmossdk.io/errors" - "github.com/cosmos/ibc-go/v7/internal/collections" + "github.com/cosmos/ibc-go/v8/internal/collections" ) var ( diff --git a/modules/core/03-connection/types/version_test.go b/modules/core/03-connection/types/version_test.go index 9830781ddaf..319c4d653ef 100644 --- a/modules/core/03-connection/types/version_test.go +++ b/modules/core/03-connection/types/version_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + ibctesting "github.com/cosmos/ibc-go/v8/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 b4d777d4b18..0a2ed6313a7 100644 --- a/modules/core/04-channel/client/cli/cli.go +++ b/modules/core/04-channel/client/cli/cli.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" - "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v8/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 1d51ef59a41..f255e620ab1 100644 --- a/modules/core/04-channel/client/cli/query.go +++ b/modules/core/04-channel/client/cli/query.go @@ -10,9 +10,9 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/version" - "github.com/cosmos/ibc-go/v7/modules/core/04-channel/client/utils" - "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/core/04-channel/client/utils" + "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" ) const ( diff --git a/modules/core/04-channel/client/utils/utils.go b/modules/core/04-channel/client/utils/utils.go index 980a261640e..6fd5a1b1cfc 100644 --- a/modules/core/04-channel/client/utils/utils.go +++ b/modules/core/04-channel/client/utils/utils.go @@ -9,13 +9,13 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/codec" - clientutils "github.com/cosmos/ibc-go/v7/modules/core/02-client/client/utils" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - ibcclient "github.com/cosmos/ibc-go/v7/modules/core/client" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + clientutils "github.com/cosmos/ibc-go/v8/modules/core/02-client/client/utils" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + ibcclient "github.com/cosmos/ibc-go/v8/modules/core/client" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + "github.com/cosmos/ibc-go/v8/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 91bd5b31767..48680d962cd 100644 --- a/modules/core/04-channel/genesis.go +++ b/modules/core/04-channel/genesis.go @@ -3,8 +3,8 @@ package channel import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/core/04-channel/keeper" - "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v8/modules/core/04-channel/keeper" + "github.com/cosmos/ibc-go/v8/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 5cb39ab6dab..3d86db32d9f 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/v7/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // emitChannelOpenInitEvent emits a channel open init event diff --git a/modules/core/04-channel/keeper/grpc_query.go b/modules/core/04-channel/keeper/grpc_query.go index b8b94653271..171c88d435f 100644 --- a/modules/core/04-channel/keeper/grpc_query.go +++ b/modules/core/04-channel/keeper/grpc_query.go @@ -14,10 +14,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v8/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 30b98379ca7..725b6d1655a 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 ( "github.com/cosmos/cosmos-sdk/types/query" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) const doesnotexist = "doesnotexist" diff --git a/modules/core/04-channel/keeper/handshake.go b/modules/core/04-channel/keeper/handshake.go index 61ab05407c1..6e48f7048f3 100644 --- a/modules/core/04-channel/keeper/handshake.go +++ b/modules/core/04-channel/keeper/handshake.go @@ -9,12 +9,12 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v8/modules/core/05-port/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // ChanOpenInit is called by a module to initiate a channel opening handshake with diff --git a/modules/core/04-channel/keeper/handshake_test.go b/modules/core/04-channel/keeper/handshake_test.go index 3b0c8057edc..c775e7e6297 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/ibc-go/modules/capability/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) type testCase = struct { diff --git a/modules/core/04-channel/keeper/keeper.go b/modules/core/04-channel/keeper/keeper.go index 6622ab43bb2..1373f8ce73c 100644 --- a/modules/core/04-channel/keeper/keeper.go +++ b/modules/core/04-channel/keeper/keeper.go @@ -14,12 +14,12 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v8/modules/core/05-port/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) var _ porttypes.ICS4Wrapper = (*Keeper)(nil) diff --git a/modules/core/04-channel/keeper/keeper_test.go b/modules/core/04-channel/keeper/keeper_test.go index 835e9da87c0..94917b92d00 100644 --- a/modules/core/04-channel/keeper/keeper_test.go +++ b/modules/core/04-channel/keeper/keeper_test.go @@ -6,10 +6,10 @@ import ( testifysuite "github.com/stretchr/testify/suite" - transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" - ibcmock "github.com/cosmos/ibc-go/v7/testing/mock" + transfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" + ibcmock "github.com/cosmos/ibc-go/v8/testing/mock" ) // 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 a01fc36abef..28fdbe7a13e 100644 --- a/modules/core/04-channel/keeper/packet.go +++ b/modules/core/04-channel/keeper/packet.go @@ -10,11 +10,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/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 ec73aa4db4a..bd361cb2466 100644 --- a/modules/core/04-channel/keeper/packet_test.go +++ b/modules/core/04-channel/keeper/packet_test.go @@ -4,15 +4,15 @@ import ( "fmt" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v7/testing" - ibcmock "github.com/cosmos/ibc-go/v7/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v8/testing" + ibcmock "github.com/cosmos/ibc-go/v8/testing/mock" ) var ( diff --git a/modules/core/04-channel/keeper/timeout.go b/modules/core/04-channel/keeper/timeout.go index 88e940d8381..a3334d2fcdd 100644 --- a/modules/core/04-channel/keeper/timeout.go +++ b/modules/core/04-channel/keeper/timeout.go @@ -9,10 +9,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/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 3f834f4674b..adaf237cf42 100644 --- a/modules/core/04-channel/keeper/timeout_test.go +++ b/modules/core/04-channel/keeper/timeout_test.go @@ -7,12 +7,12 @@ import ( errorsmod "cosmossdk.io/errors" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v8/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 5cc0f93b648..938a7f10a3e 100644 --- a/modules/core/04-channel/module.go +++ b/modules/core/04-channel/module.go @@ -4,8 +4,8 @@ import ( "github.com/cosmos/gogoproto/grpc" "github.com/spf13/cobra" - "github.com/cosmos/ibc-go/v7/modules/core/04-channel/client/cli" - "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v8/modules/core/04-channel/client/cli" + "github.com/cosmos/ibc-go/v8/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 7a66bc5b0c0..adbfc6c621d 100644 --- a/modules/core/04-channel/simulation/decoder.go +++ b/modules/core/04-channel/simulation/decoder.go @@ -8,8 +8,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v8/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 19ee81f6ce1..bfb54b6b1e6 100644 --- a/modules/core/04-channel/simulation/decoder_test.go +++ b/modules/core/04-channel/simulation/decoder_test.go @@ -9,10 +9,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/cosmos/ibc-go/v7/modules/core/04-channel/simulation" - "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/testing/simapp" + "github.com/cosmos/ibc-go/v8/modules/core/04-channel/simulation" + "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/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 8d30c5eb601..900380ac984 100644 --- a/modules/core/04-channel/simulation/genesis.go +++ b/modules/core/04-channel/simulation/genesis.go @@ -5,7 +5,7 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v8/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 5c7d281eabf..71234065321 100644 --- a/modules/core/04-channel/types/acknowledgement_test.go +++ b/modules/core/04-channel/types/acknowledgement_test.go @@ -10,8 +10,8 @@ import ( abcitypes "github.com/cometbft/cometbft/abci/types" tmstate "github.com/cometbft/cometbft/state" - "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" + "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" ) const ( diff --git a/modules/core/04-channel/types/channel.go b/modules/core/04-channel/types/channel.go index 1ba7b78c4f6..d288a2a8842 100644 --- a/modules/core/04-channel/types/channel.go +++ b/modules/core/04-channel/types/channel.go @@ -3,8 +3,8 @@ package types import ( errorsmod "cosmossdk.io/errors" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/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 614871502c8..4e6c985b8db 100644 --- a/modules/core/04-channel/types/channel.pb.go +++ b/modules/core/04-channel/types/channel.pb.go @@ -7,7 +7,7 @@ import ( fmt "fmt" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" - types "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + types "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" io "io" math "math" math_bits "math/bits" @@ -560,59 +560,59 @@ func init() { proto.RegisterFile("ibc/core/channel/v1/channel.proto", fileDescri var fileDescriptor_c3a07336710636a0 = []byte{ // 842 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x55, 0xcd, 0x6e, 0xe3, 0x54, - 0x14, 0xb6, 0x53, 0xe7, 0xef, 0xa4, 0x69, 0xd3, 0x3b, 0x50, 0x2c, 0x6b, 0x70, 0x3c, 0x15, 0x88, - 0x30, 0x68, 0xe2, 0xe9, 0x80, 0xf8, 0xdb, 0xb5, 0x89, 0x21, 0x16, 0x55, 0x12, 0x39, 0xe9, 0x82, - 0xd9, 0x44, 0x8e, 0x7d, 0x49, 0xac, 0x49, 0x7c, 0x8d, 0x7d, 0x93, 0xd1, 0x88, 0x17, 0x18, 0xb2, - 0xe2, 0x05, 0x22, 0x21, 0xf1, 0x10, 0xbc, 0xc2, 0x48, 0x6c, 0x66, 0x39, 0x2b, 0x84, 0xda, 0x17, - 0x41, 0xbe, 0xf7, 0xba, 0x49, 0x46, 0x55, 0x85, 0x90, 0x58, 0xb1, 0xca, 0x3d, 0xdf, 0xf9, 0xce, - 0x77, 0x8e, 0xbf, 0xe3, 0xf8, 0xc2, 0x83, 0x60, 0xec, 0x99, 0x1e, 0x89, 0xb1, 0xe9, 0x4d, 0xdd, - 0x30, 0xc4, 0x33, 0x73, 0x79, 0x9a, 0x1d, 0x9b, 0x51, 0x4c, 0x28, 0x41, 0xf7, 0x82, 0xb1, 0xd7, - 0x4c, 0x29, 0xcd, 0x0c, 0x5f, 0x9e, 0x6a, 0xef, 0x4c, 0xc8, 0x84, 0xb0, 0xbc, 0x99, 0x9e, 0x38, - 0x55, 0xab, 0x6f, 0xd4, 0x66, 0x01, 0x0e, 0x29, 0x13, 0x63, 0x27, 0x4e, 0x38, 0xf9, 0x39, 0x07, - 0xc5, 0x16, 0x57, 0x41, 0x8f, 0x21, 0x9f, 0x50, 0x97, 0x62, 0x55, 0x36, 0xe4, 0xc6, 0xc1, 0x13, - 0xad, 0x79, 0x4b, 0x9f, 0xe6, 0x20, 0x65, 0x38, 0x9c, 0x88, 0x3e, 0x87, 0x12, 0x89, 0x7d, 0x1c, - 0x07, 0xe1, 0x44, 0xcd, 0xdd, 0x51, 0xd4, 0x4b, 0x49, 0xce, 0x0d, 0x17, 0x7d, 0x07, 0xfb, 0x1e, - 0x59, 0x84, 0x14, 0xc7, 0x91, 0x1b, 0xd3, 0x17, 0xea, 0x9e, 0x21, 0x37, 0x2a, 0x4f, 0x1e, 0xdc, - 0x5a, 0xdb, 0xda, 0x22, 0x9e, 0x2b, 0xaf, 0xfe, 0xac, 0x4b, 0xce, 0x4e, 0x31, 0xfa, 0x08, 0x0e, - 0x3d, 0x12, 0x86, 0xd8, 0xa3, 0x01, 0x09, 0x47, 0x53, 0x12, 0x25, 0xaa, 0x62, 0xec, 0x35, 0xca, - 0xce, 0xc1, 0x06, 0xee, 0x90, 0x28, 0x41, 0x2a, 0x14, 0x97, 0x38, 0x4e, 0x02, 0x12, 0xaa, 0x79, - 0x43, 0x6e, 0x94, 0x9d, 0x2c, 0xfc, 0x5a, 0x79, 0xf9, 0x6b, 0x5d, 0x3a, 0xf9, 0x23, 0x07, 0x47, - 0xb6, 0x8f, 0x43, 0x1a, 0xfc, 0x10, 0x60, 0xff, 0x7f, 0xef, 0x0a, 0x7a, 0x0f, 0x8a, 0x11, 0x89, - 0xe9, 0x28, 0xf0, 0xd5, 0x02, 0xcb, 0x14, 0xd2, 0xd0, 0xf6, 0xd1, 0xfb, 0x00, 0x62, 0x94, 0x34, - 0x57, 0x64, 0xb9, 0xb2, 0x40, 0x6c, 0x5f, 0xb8, 0x79, 0x01, 0xfb, 0xdb, 0x43, 0x6e, 0xab, 0xc9, - 0x77, 0xa8, 0xe5, 0x6e, 0x57, 0x7b, 0x93, 0x83, 0x42, 0xdf, 0xf5, 0x9e, 0x61, 0x8a, 0x34, 0x28, - 0x25, 0xf8, 0xc7, 0x05, 0x0e, 0x3d, 0xbe, 0x13, 0xc5, 0xb9, 0x89, 0x51, 0x1d, 0x2a, 0x09, 0x59, - 0xc4, 0x1e, 0x1e, 0xa5, 0xe2, 0x42, 0x0c, 0x38, 0xd4, 0x27, 0x31, 0x45, 0x1f, 0xc2, 0x81, 0x20, - 0x88, 0x0e, 0xcc, 0xe5, 0xb2, 0x53, 0xe5, 0x68, 0xb6, 0xf4, 0x8f, 0xa1, 0xe6, 0xe3, 0x84, 0x06, - 0xa1, 0xcb, 0xec, 0x63, 0x62, 0x0a, 0x23, 0x1e, 0x6e, 0xe1, 0x4c, 0xd1, 0x84, 0x7b, 0xdb, 0xd4, - 0x4c, 0x96, 0x7b, 0x89, 0xb6, 0x52, 0x99, 0x36, 0x02, 0xc5, 0x77, 0xa9, 0xcb, 0x3c, 0xdd, 0x77, - 0xd8, 0x19, 0x7d, 0x0b, 0x07, 0x34, 0x98, 0x63, 0xb2, 0xa0, 0xa3, 0x29, 0x0e, 0x26, 0x53, 0xca, - 0x5c, 0xad, 0xec, 0xbc, 0x38, 0xfc, 0x6f, 0xbb, 0x3c, 0x6d, 0x76, 0x18, 0x43, 0x6c, 0xbd, 0x2a, - 0xea, 0x38, 0x88, 0x3e, 0x81, 0xa3, 0x4c, 0x28, 0xfd, 0x4d, 0xa8, 0x3b, 0x8f, 0xd4, 0x12, 0x73, - 0xa9, 0x26, 0x12, 0xc3, 0x0c, 0x17, 0xd6, 0xfe, 0x04, 0x15, 0xee, 0x2c, 0x7b, 0x89, 0xff, 0xed, - 0x9e, 0x76, 0xd6, 0xb2, 0xf7, 0xd6, 0x5a, 0xb2, 0x47, 0x56, 0x36, 0x8f, 0x2c, 0x9a, 0xfb, 0x50, - 0xe2, 0xcd, 0x6d, 0xff, 0xbf, 0xe8, 0x2c, 0xba, 0xf4, 0xe0, 0xf0, 0xcc, 0x7b, 0x16, 0x92, 0xe7, - 0x33, 0xec, 0x4f, 0xf0, 0x1c, 0x87, 0x14, 0xa9, 0x50, 0x88, 0x71, 0xb2, 0x98, 0x51, 0xf5, 0xdd, - 0x74, 0xa8, 0x8e, 0xe4, 0x88, 0x18, 0x1d, 0x43, 0x1e, 0xc7, 0x31, 0x89, 0xd5, 0xe3, 0xb4, 0x51, - 0x47, 0x72, 0x78, 0x78, 0x0e, 0x50, 0x8a, 0x71, 0x12, 0x91, 0x30, 0xc1, 0x27, 0x2e, 0x14, 0x87, - 0xdc, 0x4d, 0xf4, 0x25, 0x14, 0xc4, 0xca, 0xe4, 0x7f, 0xb8, 0x32, 0xc1, 0x47, 0xf7, 0xa1, 0xbc, - 0xd9, 0x51, 0x8e, 0x0d, 0xbe, 0x01, 0x1e, 0xfe, 0x2e, 0x43, 0x7e, 0x20, 0xbe, 0x27, 0xf5, 0xc1, - 0xf0, 0x6c, 0x68, 0x8d, 0x2e, 0xbb, 0x76, 0xd7, 0x1e, 0xda, 0x67, 0x17, 0xf6, 0x53, 0xab, 0x3d, - 0xba, 0xec, 0x0e, 0xfa, 0x56, 0xcb, 0xfe, 0xc6, 0xb6, 0xda, 0x35, 0x49, 0x3b, 0x5a, 0xad, 0x8d, - 0xea, 0x0e, 0x01, 0xa9, 0x00, 0xbc, 0x2e, 0x05, 0x6b, 0xb2, 0x56, 0x5a, 0xad, 0x0d, 0x25, 0x3d, - 0x23, 0x1d, 0xaa, 0x3c, 0x33, 0x74, 0xbe, 0xef, 0xf5, 0xad, 0x6e, 0x2d, 0xa7, 0x55, 0x56, 0x6b, - 0xa3, 0x28, 0xc2, 0x4d, 0x25, 0x4b, 0xee, 0xf1, 0x4a, 0x96, 0xb9, 0x0f, 0xfb, 0x3c, 0xd3, 0xba, - 0xe8, 0x0d, 0xac, 0x76, 0x4d, 0xd1, 0x60, 0xb5, 0x36, 0x0a, 0x3c, 0xd2, 0x94, 0x97, 0xbf, 0xe9, - 0xd2, 0xc3, 0xe7, 0x90, 0x67, 0x9f, 0x36, 0xf4, 0x01, 0x1c, 0xf7, 0x9c, 0xb6, 0xe5, 0x8c, 0xba, - 0xbd, 0xae, 0xf5, 0xd6, 0xbc, 0x4c, 0x32, 0xc5, 0xd1, 0x09, 0x1c, 0x72, 0xd6, 0x65, 0x97, 0xfd, - 0x5a, 0xed, 0x9a, 0xac, 0x55, 0x57, 0x6b, 0xa3, 0x7c, 0x03, 0xa4, 0x03, 0x73, 0x4e, 0xc6, 0x10, - 0x03, 0x8b, 0x90, 0x37, 0x3e, 0x1f, 0xbc, 0xba, 0xd2, 0xe5, 0xd7, 0x57, 0xba, 0xfc, 0xd7, 0x95, - 0x2e, 0xff, 0x72, 0xad, 0x4b, 0xaf, 0xaf, 0x75, 0xe9, 0xcd, 0xb5, 0x2e, 0x3d, 0xfd, 0x6a, 0x12, - 0xd0, 0xe9, 0x62, 0xdc, 0xf4, 0xc8, 0xdc, 0xf4, 0x48, 0x32, 0x27, 0x89, 0x19, 0x8c, 0xbd, 0x47, - 0x13, 0x62, 0x2e, 0xbf, 0x30, 0xe7, 0xc4, 0x5f, 0xcc, 0x70, 0xc2, 0xef, 0xc9, 0xc7, 0x9f, 0x3d, - 0xca, 0x2e, 0x5e, 0xfa, 0x22, 0xc2, 0xc9, 0xb8, 0xc0, 0x2e, 0xca, 0x4f, 0xff, 0x0e, 0x00, 0x00, - 0xff, 0xff, 0x80, 0x43, 0x1c, 0x54, 0x99, 0x07, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x55, 0xcd, 0x8e, 0xdb, 0x54, + 0x14, 0xb6, 0x33, 0xce, 0xdf, 0xc9, 0x64, 0x26, 0x73, 0x0b, 0x83, 0x65, 0x15, 0xc7, 0x1d, 0x81, + 0x08, 0x45, 0x8d, 0x3b, 0x05, 0xa1, 0xc2, 0x6e, 0x26, 0x31, 0xc4, 0x62, 0x94, 0x44, 0x4e, 0x66, + 0x41, 0x37, 0x91, 0x63, 0x5f, 0x12, 0xab, 0x89, 0xaf, 0xb1, 0x6f, 0x52, 0x55, 0xbc, 0x40, 0xc9, + 0x8a, 0x17, 0x88, 0x84, 0xc4, 0x43, 0xf0, 0x0a, 0x95, 0xd8, 0x74, 0xd9, 0x15, 0x42, 0x33, 0x2f, + 0x82, 0x7c, 0xef, 0xf5, 0x24, 0xa9, 0x46, 0x23, 0x84, 0xc4, 0x8a, 0x55, 0xee, 0xf9, 0xce, 0x77, + 0xbe, 0x73, 0xfc, 0x1d, 0xc7, 0x17, 0x1e, 0x04, 0x63, 0xcf, 0xf4, 0x48, 0x8c, 0x4d, 0x6f, 0xea, + 0x86, 0x21, 0x9e, 0x99, 0xcb, 0xd3, 0xec, 0xd8, 0x8c, 0x62, 0x42, 0x09, 0xba, 0x17, 0x8c, 0xbd, + 0x66, 0x4a, 0x69, 0x66, 0xf8, 0xf2, 0x54, 0x7b, 0x6f, 0x42, 0x26, 0x84, 0xe5, 0xcd, 0xf4, 0xc4, + 0xa9, 0x5a, 0x7d, 0xa3, 0x36, 0x0b, 0x70, 0x48, 0x99, 0x18, 0x3b, 0x71, 0xc2, 0xc9, 0xcf, 0x39, + 0x28, 0xb6, 0xb8, 0x0a, 0x7a, 0x0c, 0xf9, 0x84, 0xba, 0x14, 0xab, 0xb2, 0x21, 0x37, 0x0e, 0x9e, + 0x68, 0xcd, 0x5b, 0xfa, 0x34, 0x07, 0x29, 0xc3, 0xe1, 0x44, 0xf4, 0x25, 0x94, 0x48, 0xec, 0xe3, + 0x38, 0x08, 0x27, 0x6a, 0xee, 0x8e, 0xa2, 0x5e, 0x4a, 0x72, 0x6e, 0xb8, 0xe8, 0x3b, 0xd8, 0xf7, + 0xc8, 0x22, 0xa4, 0x38, 0x8e, 0xdc, 0x98, 0xbe, 0x54, 0xf7, 0x0c, 0xb9, 0x51, 0x79, 0xf2, 0xe0, + 0xd6, 0xda, 0xd6, 0x16, 0xf1, 0x5c, 0x79, 0xfd, 0x67, 0x5d, 0x72, 0x76, 0x8a, 0xd1, 0x27, 0x70, + 0xe8, 0x91, 0x30, 0xc4, 0x1e, 0x0d, 0x48, 0x38, 0x9a, 0x92, 0x28, 0x51, 0x15, 0x63, 0xaf, 0x51, + 0x76, 0x0e, 0x36, 0x70, 0x87, 0x44, 0x09, 0x52, 0xa1, 0xb8, 0xc4, 0x71, 0x12, 0x90, 0x50, 0xcd, + 0x1b, 0x72, 0xa3, 0xec, 0x64, 0xe1, 0xd7, 0xca, 0xab, 0x5f, 0xeb, 0xd2, 0xc9, 0x1f, 0x39, 0x38, + 0xb2, 0x7d, 0x1c, 0xd2, 0xe0, 0x87, 0x00, 0xfb, 0xff, 0x7b, 0x57, 0xd0, 0x07, 0x50, 0x8c, 0x48, + 0x4c, 0x47, 0x81, 0xaf, 0x16, 0x58, 0xa6, 0x90, 0x86, 0xb6, 0x8f, 0x3e, 0x04, 0x10, 0xa3, 0xa4, + 0xb9, 0x22, 0xcb, 0x95, 0x05, 0x62, 0xfb, 0xc2, 0xcd, 0x0b, 0xd8, 0xdf, 0x1e, 0x72, 0x5b, 0x4d, + 0xbe, 0x43, 0x2d, 0x77, 0xbb, 0xda, 0xdb, 0x1c, 0x14, 0xfa, 0xae, 0xf7, 0x1c, 0x53, 0xa4, 0x41, + 0x29, 0xc1, 0x3f, 0x2e, 0x70, 0xe8, 0xf1, 0x9d, 0x28, 0xce, 0x4d, 0x8c, 0xea, 0x50, 0x49, 0xc8, + 0x22, 0xf6, 0xf0, 0x28, 0x15, 0x17, 0x62, 0xc0, 0xa1, 0x3e, 0x89, 0x29, 0xfa, 0x18, 0x0e, 0x04, + 0x41, 0x74, 0x60, 0x2e, 0x97, 0x9d, 0x2a, 0x47, 0xb3, 0xa5, 0x7f, 0x0a, 0x35, 0x1f, 0x27, 0x34, + 0x08, 0x5d, 0x66, 0x1f, 0x13, 0x53, 0x18, 0xf1, 0x70, 0x0b, 0x67, 0x8a, 0x26, 0xdc, 0xdb, 0xa6, + 0x66, 0xb2, 0xdc, 0x4b, 0xb4, 0x95, 0xca, 0xb4, 0x11, 0x28, 0xbe, 0x4b, 0x5d, 0xe6, 0xe9, 0xbe, + 0xc3, 0xce, 0xe8, 0x5b, 0x38, 0xa0, 0xc1, 0x1c, 0x93, 0x05, 0x1d, 0x4d, 0x71, 0x30, 0x99, 0x52, + 0xe6, 0x6a, 0x65, 0xe7, 0xc5, 0xe1, 0x7f, 0xdb, 0xe5, 0x69, 0xb3, 0xc3, 0x18, 0x62, 0xeb, 0x55, + 0x51, 0xc7, 0x41, 0xf4, 0x19, 0x1c, 0x65, 0x42, 0xe9, 0x6f, 0x42, 0xdd, 0x79, 0xa4, 0x96, 0x98, + 0x4b, 0x35, 0x91, 0x18, 0x66, 0xb8, 0xb0, 0xf6, 0x27, 0xa8, 0x70, 0x67, 0xd9, 0x4b, 0xfc, 0x6f, + 0xf7, 0xb4, 0xb3, 0x96, 0xbd, 0x77, 0xd6, 0x92, 0x3d, 0xb2, 0xb2, 0x79, 0x64, 0xd1, 0xdc, 0x87, + 0x12, 0x6f, 0x6e, 0xfb, 0xff, 0x45, 0x67, 0xd1, 0xa5, 0x07, 0x87, 0x67, 0xde, 0xf3, 0x90, 0xbc, + 0x98, 0x61, 0x7f, 0x82, 0xe7, 0x38, 0xa4, 0x48, 0x85, 0x42, 0x8c, 0x93, 0xc5, 0x8c, 0xaa, 0xef, + 0xa7, 0x43, 0x75, 0x24, 0x47, 0xc4, 0xe8, 0x18, 0xf2, 0x38, 0x8e, 0x49, 0xac, 0x1e, 0xa7, 0x8d, + 0x3a, 0x92, 0xc3, 0xc3, 0x73, 0x80, 0x52, 0x8c, 0x93, 0x88, 0x84, 0x09, 0x3e, 0x71, 0xa1, 0x38, + 0xe4, 0x6e, 0xa2, 0xa7, 0x50, 0x10, 0x2b, 0x93, 0xff, 0xe1, 0xca, 0x04, 0x1f, 0xdd, 0x87, 0xf2, + 0x66, 0x47, 0x39, 0x36, 0xf8, 0x06, 0x78, 0xf8, 0xbb, 0x0c, 0xf9, 0x81, 0xf8, 0x9e, 0xd4, 0x07, + 0xc3, 0xb3, 0xa1, 0x35, 0xba, 0xec, 0xda, 0x5d, 0x7b, 0x68, 0x9f, 0x5d, 0xd8, 0xcf, 0xac, 0xf6, + 0xe8, 0xb2, 0x3b, 0xe8, 0x5b, 0x2d, 0xfb, 0x1b, 0xdb, 0x6a, 0xd7, 0x24, 0xed, 0x68, 0xb5, 0x36, + 0xaa, 0x3b, 0x04, 0xa4, 0x02, 0xf0, 0xba, 0x14, 0xac, 0xc9, 0x5a, 0x69, 0xb5, 0x36, 0x94, 0xf4, + 0x8c, 0x74, 0xa8, 0xf2, 0xcc, 0xd0, 0xf9, 0xbe, 0xd7, 0xb7, 0xba, 0xb5, 0x9c, 0x56, 0x59, 0xad, + 0x8d, 0xa2, 0x08, 0x37, 0x95, 0x2c, 0xb9, 0xc7, 0x2b, 0x59, 0xe6, 0x3e, 0xec, 0xf3, 0x4c, 0xeb, + 0xa2, 0x37, 0xb0, 0xda, 0x35, 0x45, 0x83, 0xd5, 0xda, 0x28, 0xf0, 0x48, 0x53, 0x5e, 0xfd, 0xa6, + 0x4b, 0x0f, 0x5f, 0x40, 0x9e, 0x7d, 0xda, 0xd0, 0x47, 0x70, 0xdc, 0x73, 0xda, 0x96, 0x33, 0xea, + 0xf6, 0xba, 0xd6, 0x3b, 0xf3, 0x32, 0xc9, 0x14, 0x47, 0x27, 0x70, 0xc8, 0x59, 0x97, 0x5d, 0xf6, + 0x6b, 0xb5, 0x6b, 0xb2, 0x56, 0x5d, 0xad, 0x8d, 0xf2, 0x0d, 0x90, 0x0e, 0xcc, 0x39, 0x19, 0x43, + 0x0c, 0x2c, 0x42, 0xde, 0xf8, 0x7c, 0xf0, 0xfa, 0x4a, 0x97, 0xdf, 0x5c, 0xe9, 0xf2, 0x5f, 0x57, + 0xba, 0xfc, 0xcb, 0xb5, 0x2e, 0xbd, 0xb9, 0xd6, 0xa5, 0xb7, 0xd7, 0xba, 0xf4, 0xec, 0xab, 0x49, + 0x40, 0xa7, 0x8b, 0x71, 0xd3, 0x23, 0x73, 0xd3, 0x23, 0xc9, 0x9c, 0x24, 0x66, 0x30, 0xf6, 0x1e, + 0x4d, 0x88, 0xb9, 0x7c, 0x6a, 0xce, 0x89, 0xbf, 0x98, 0xe1, 0x84, 0xdf, 0x93, 0x8f, 0xbf, 0x78, + 0x94, 0x5d, 0xbc, 0xf4, 0x65, 0x84, 0x93, 0x71, 0x81, 0x5d, 0x94, 0x9f, 0xff, 0x1d, 0x00, 0x00, + 0xff, 0xff, 0x15, 0x20, 0x09, 0x7f, 0x99, 0x07, 0x00, 0x00, } func (m *Channel) Marshal() (dAtA []byte, err error) { diff --git a/modules/core/04-channel/types/channel_test.go b/modules/core/04-channel/types/channel_test.go index 0817af7fc81..d35ec13a519 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/v7/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v8/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 17d7dc99d38..86f2f495d19 100644 --- a/modules/core/04-channel/types/codec.go +++ b/modules/core/04-channel/types/codec.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/msgservice" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/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 43edb134eb2..3d4738626e2 100644 --- a/modules/core/04-channel/types/events.go +++ b/modules/core/04-channel/types/events.go @@ -3,7 +3,7 @@ package types import ( "fmt" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // IBC channel events diff --git a/modules/core/04-channel/types/expected_keepers.go b/modules/core/04-channel/types/expected_keepers.go index a35481bfe3f..b1e3aae98d3 100644 --- a/modules/core/04-channel/types/expected_keepers.go +++ b/modules/core/04-channel/types/expected_keepers.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v8/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 372fdcd4633..fd85574d554 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/v7/modules/core/24-host" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" ) // NewPacketState creates a new PacketState instance. diff --git a/modules/core/04-channel/types/genesis.pb.go b/modules/core/04-channel/types/genesis.pb.go index 00ea52c8a9b..0ed3da2e528 100644 --- a/modules/core/04-channel/types/genesis.pb.go +++ b/modules/core/04-channel/types/genesis.pb.go @@ -195,35 +195,35 @@ func init() { func init() { proto.RegisterFile("ibc/core/channel/v1/genesis.proto", fileDescriptor_cb06ec201f452595) } var fileDescriptor_cb06ec201f452595 = []byte{ - // 447 bytes of a gzipped FileDescriptorProto + // 446 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0xd3, 0x4d, 0x6f, 0xd3, 0x30, 0x18, 0x07, 0xf0, 0x66, 0x2d, 0x5d, 0xe7, 0xbd, 0x08, 0x3c, 0x10, 0xa1, 0x12, 0x59, 0x19, 0x12, - 0xea, 0x65, 0x31, 0x1b, 0x48, 0x88, 0x6b, 0x38, 0x40, 0x2f, 0x68, 0xca, 0x6e, 0x48, 0xa8, 0x4a, - 0xec, 0x87, 0xcc, 0x4a, 0x63, 0x87, 0xd8, 0x0d, 0xf0, 0x2d, 0xf8, 0x58, 0x3b, 0xee, 0xc8, 0x69, - 0x42, 0xed, 0x87, 0x40, 0xe2, 0x84, 0xe2, 0xbc, 0xac, 0xa8, 0xd5, 0xa4, 0xdc, 0x6a, 0x3f, 0xcf, - 0xff, 0xf7, 0xef, 0x21, 0x46, 0xcf, 0x78, 0x48, 0x09, 0x95, 0x19, 0x10, 0x7a, 0x19, 0x08, 0x01, - 0x33, 0x92, 0x9f, 0x92, 0x08, 0x04, 0x28, 0xae, 0xdc, 0x34, 0x93, 0x5a, 0xe2, 0x43, 0x1e, 0x52, - 0xb7, 0x58, 0x71, 0xab, 0x15, 0x37, 0x3f, 0x1d, 0x3e, 0x8c, 0x64, 0x24, 0xcd, 0x9c, 0x14, 0xbf, - 0xca, 0xd5, 0xe1, 0x46, 0xad, 0x4e, 0x99, 0x95, 0xe3, 0x3f, 0x3d, 0xb4, 0xf7, 0xbe, 0xf4, 0x2f, - 0x74, 0xa0, 0x01, 0x7f, 0x46, 0x83, 0x6a, 0x43, 0xd9, 0xd6, 0xa8, 0x3b, 0xde, 0x3d, 0x7b, 0xe1, - 0x6e, 0x68, 0x74, 0x27, 0x0c, 0x84, 0xe6, 0x5f, 0x38, 0xb0, 0x77, 0xe5, 0xa5, 0xf7, 0xe4, 0xea, - 0xe6, 0xa8, 0xf3, 0xf7, 0xe6, 0xe8, 0xc1, 0xda, 0xc8, 0x6f, 0x48, 0xec, 0xa3, 0xfb, 0x01, 0x8d, - 0x85, 0xfc, 0x36, 0x03, 0x16, 0x41, 0x02, 0x42, 0x2b, 0x7b, 0xcb, 0xd4, 0x8c, 0x36, 0xd6, 0x9c, - 0x07, 0x34, 0x06, 0x6d, 0xfe, 0x9a, 0xd7, 0x2b, 0x0a, 0xfc, 0xb5, 0x3c, 0xfe, 0x80, 0x76, 0xa9, - 0x4c, 0x12, 0xae, 0x4b, 0xae, 0xdb, 0x8a, 0x5b, 0x8d, 0x62, 0x0f, 0x0d, 0x32, 0xa0, 0xc0, 0x53, - 0xad, 0xec, 0x5e, 0x2b, 0xa6, 0xc9, 0xe1, 0x73, 0x74, 0xa0, 0x40, 0xb0, 0xa9, 0x82, 0xaf, 0x73, - 0x10, 0x14, 0x94, 0x7d, 0xcf, 0x48, 0xcf, 0xef, 0x92, 0xaa, 0xdd, 0x0a, 0xdb, 0x2f, 0x80, 0xfa, - 0xce, 0x88, 0x19, 0xd0, 0x7c, 0x45, 0xec, 0xb7, 0x16, 0x0b, 0xe0, 0x56, 0xfc, 0x88, 0xf6, 0x03, - 0x1a, 0xaf, 0x80, 0xdb, 0x6d, 0xc1, 0xbd, 0x80, 0xc6, 0xb7, 0xde, 0x19, 0x7a, 0x24, 0xe0, 0xbb, - 0x9e, 0x56, 0xa9, 0x06, 0xb6, 0x07, 0x23, 0x6b, 0xdc, 0xf3, 0x0f, 0x8b, 0x61, 0xf5, 0x2d, 0xd4, - 0xa1, 0x63, 0x86, 0x0e, 0xfe, 0x97, 0xf1, 0x63, 0xb4, 0x9d, 0xca, 0x4c, 0x4f, 0x39, 0xb3, 0xad, - 0x91, 0x35, 0xde, 0xf1, 0xfb, 0xc5, 0x71, 0xc2, 0xf0, 0x53, 0x84, 0x6a, 0x99, 0x33, 0x7b, 0xcb, - 0xcc, 0x76, 0xaa, 0x9b, 0x09, 0xc3, 0x43, 0x34, 0x68, 0x0a, 0xbb, 0xa6, 0xb0, 0x39, 0x7b, 0x17, - 0x57, 0x0b, 0xc7, 0xba, 0x5e, 0x38, 0xd6, 0xef, 0x85, 0x63, 0xfd, 0x5c, 0x3a, 0x9d, 0xeb, 0xa5, - 0xd3, 0xf9, 0xb5, 0x74, 0x3a, 0x9f, 0xde, 0x46, 0x5c, 0x5f, 0xce, 0x43, 0x97, 0xca, 0x84, 0x50, - 0xa9, 0x12, 0xa9, 0x08, 0x0f, 0xe9, 0x49, 0x24, 0x49, 0xfe, 0x86, 0x24, 0x92, 0xcd, 0x67, 0xa0, - 0xca, 0xc7, 0xf3, 0xf2, 0xf5, 0x49, 0xfd, 0x7e, 0xf4, 0x8f, 0x14, 0x54, 0xd8, 0x37, 0x6f, 0xe7, - 0xd5, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x5b, 0x3b, 0xcc, 0xcc, 0xae, 0x03, 0x00, 0x00, + 0xea, 0x65, 0x31, 0x1b, 0x1c, 0xe0, 0x1a, 0x0e, 0xd0, 0x0b, 0x9a, 0xb2, 0x1b, 0x12, 0xaa, 0x12, + 0xfb, 0x21, 0xb3, 0xd2, 0xd8, 0x21, 0x76, 0x03, 0x7c, 0x0b, 0x3e, 0xd6, 0x8e, 0x3b, 0x72, 0x9a, + 0x50, 0xfb, 0x21, 0x90, 0x38, 0xa1, 0x38, 0x2f, 0x2b, 0x6a, 0x35, 0x29, 0xb7, 0xda, 0xcf, 0xf3, + 0xff, 0xfd, 0x7b, 0x88, 0xd1, 0x33, 0x1e, 0x52, 0x42, 0x65, 0x06, 0x84, 0x5e, 0x06, 0x42, 0xc0, + 0x8c, 0xe4, 0xa7, 0x24, 0x02, 0x01, 0x8a, 0x2b, 0x37, 0xcd, 0xa4, 0x96, 0xf8, 0x90, 0x87, 0xd4, + 0x2d, 0x56, 0xdc, 0x6a, 0xc5, 0xcd, 0x4f, 0x87, 0x0f, 0x23, 0x19, 0x49, 0x33, 0x27, 0xc5, 0xaf, + 0x72, 0x75, 0xb8, 0x51, 0xab, 0x53, 0x66, 0xe5, 0xf8, 0x4f, 0x0f, 0xed, 0xbd, 0x2f, 0xfd, 0x0b, + 0x1d, 0x68, 0xc0, 0x9f, 0xd1, 0xa0, 0xda, 0x50, 0xb6, 0x35, 0xea, 0x8e, 0x77, 0xcf, 0x5e, 0xb8, + 0x1b, 0x1a, 0xdd, 0x09, 0x03, 0xa1, 0xf9, 0x17, 0x0e, 0xec, 0x5d, 0x79, 0xe9, 0x3d, 0xb9, 0xba, + 0x39, 0xea, 0xfc, 0xbd, 0x39, 0x7a, 0xb0, 0x36, 0xf2, 0x1b, 0x12, 0xfb, 0xe8, 0x7e, 0x40, 0x63, + 0x21, 0xbf, 0xcd, 0x80, 0x45, 0x90, 0x80, 0xd0, 0xca, 0xde, 0x32, 0x35, 0xa3, 0x8d, 0x35, 0xe7, + 0x01, 0x8d, 0x41, 0x9b, 0xbf, 0xe6, 0xf5, 0x8a, 0x02, 0x7f, 0x2d, 0x8f, 0x3f, 0xa0, 0x5d, 0x2a, + 0x93, 0x84, 0xeb, 0x92, 0xeb, 0xb6, 0xe2, 0x56, 0xa3, 0xd8, 0x43, 0x83, 0x0c, 0x28, 0xf0, 0x54, + 0x2b, 0xbb, 0xd7, 0x8a, 0x69, 0x72, 0xf8, 0x1c, 0x1d, 0x28, 0x10, 0x6c, 0xaa, 0xe0, 0xeb, 0x1c, + 0x04, 0x05, 0x65, 0xdf, 0x33, 0xd2, 0xf3, 0xbb, 0xa4, 0x6a, 0xb7, 0xc2, 0xf6, 0x0b, 0xa0, 0xbe, + 0x33, 0x62, 0x06, 0x34, 0x5f, 0x11, 0xfb, 0xad, 0xc5, 0x02, 0xb8, 0x15, 0x3f, 0xa2, 0xfd, 0x80, + 0xc6, 0x2b, 0xe0, 0x76, 0x5b, 0x70, 0x2f, 0xa0, 0xf1, 0xad, 0x77, 0x86, 0x1e, 0x09, 0xf8, 0xae, + 0xa7, 0x55, 0xaa, 0x81, 0xed, 0xc1, 0xc8, 0x1a, 0xf7, 0xfc, 0xc3, 0x62, 0x58, 0x7d, 0x0b, 0x75, + 0xe8, 0x98, 0xa1, 0x83, 0xff, 0x65, 0xfc, 0x18, 0x6d, 0xa7, 0x32, 0xd3, 0x53, 0xce, 0x6c, 0x6b, + 0x64, 0x8d, 0x77, 0xfc, 0x7e, 0x71, 0x9c, 0x30, 0xfc, 0x14, 0xa1, 0x5a, 0xe6, 0xcc, 0xde, 0x32, + 0xb3, 0x9d, 0xea, 0x66, 0xc2, 0xf0, 0x10, 0x0d, 0x9a, 0xc2, 0xae, 0x29, 0x6c, 0xce, 0xde, 0xc5, + 0xd5, 0xc2, 0xb1, 0xae, 0x17, 0x8e, 0xf5, 0x7b, 0xe1, 0x58, 0x3f, 0x97, 0x4e, 0xe7, 0x7a, 0xe9, + 0x74, 0x7e, 0x2d, 0x9d, 0xce, 0xa7, 0xb7, 0x11, 0xd7, 0x97, 0xf3, 0xd0, 0xa5, 0x32, 0x21, 0x54, + 0xaa, 0x44, 0x2a, 0xc2, 0x43, 0x7a, 0x12, 0x49, 0x92, 0xbf, 0x21, 0x89, 0x64, 0xf3, 0x19, 0xa8, + 0xf2, 0xf1, 0xbc, 0x7c, 0x7d, 0x52, 0xbf, 0x1f, 0xfd, 0x23, 0x05, 0x15, 0xf6, 0xcd, 0xdb, 0x79, + 0xf5, 0x2f, 0x00, 0x00, 0xff, 0xff, 0xce, 0x58, 0xd9, 0xe7, 0xae, 0x03, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/modules/core/04-channel/types/genesis_test.go b/modules/core/04-channel/types/genesis_test.go index 10fd5248a59..973f06b6b0c 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/v7/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v8/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 d961abe3dc0..bc9e88afdea 100644 --- a/modules/core/04-channel/types/keys.go +++ b/modules/core/04-channel/types/keys.go @@ -6,7 +6,7 @@ import ( errorsmod "cosmossdk.io/errors" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" + host "github.com/cosmos/ibc-go/v8/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 72bd91b5613..04ccddb34f1 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/v7/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v8/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 a7afc17c71c..fed5f4123b2 100644 --- a/modules/core/04-channel/types/msgs.go +++ b/modules/core/04-channel/types/msgs.go @@ -7,10 +7,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" ) var ( diff --git a/modules/core/04-channel/types/msgs_test.go b/modules/core/04-channel/types/msgs_test.go index b63ed20b3f4..8570ad59065 100644 --- a/modules/core/04-channel/types/msgs_test.go +++ b/modules/core/04-channel/types/msgs_test.go @@ -15,10 +15,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/v7/testing/simapp" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v8/testing/simapp" ) const ( diff --git a/modules/core/04-channel/types/packet.go b/modules/core/04-channel/types/packet.go index 26006f1fd20..a39ffe06692 100644 --- a/modules/core/04-channel/types/packet.go +++ b/modules/core/04-channel/types/packet.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/v7/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/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 a33c6fb75bd..f83c06c1ec2 100644 --- a/modules/core/04-channel/types/packet_test.go +++ b/modules/core/04-channel/types/packet_test.go @@ -8,8 +8,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" codectypes "github.com/cosmos/cosmos-sdk/codec/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/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 335d564ef5c..81b0cb58307 100644 --- a/modules/core/04-channel/types/query.go +++ b/modules/core/04-channel/types/query.go @@ -3,8 +3,8 @@ package types import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/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 f47cfb1c0f5..8ca3338c254 100644 --- a/modules/core/04-channel/types/query.pb.go +++ b/modules/core/04-channel/types/query.pb.go @@ -11,7 +11,7 @@ import ( _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" - types "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + types "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" @@ -1831,104 +1831,104 @@ func init() { func init() { proto.RegisterFile("ibc/core/channel/v1/query.proto", fileDescriptor_1034a1e9abc4cca1) } var fileDescriptor_1034a1e9abc4cca1 = []byte{ - // 1548 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, 0x08, 0x93, 0xe4, 0x4b, 0x58, 0x82, 0x13, 0x5c, 0xb5, - 0x04, 0x54, 0x76, 0x48, 0xa0, 0x40, 0xab, 0x16, 0x89, 0x44, 0x2a, 0xa4, 0x2a, 0xbf, 0x36, 0xa5, - 0x05, 0xa4, 0xd6, 0x5d, 0xaf, 0x07, 0x67, 0x95, 0x78, 0xd7, 0x78, 0xd7, 0x06, 0x94, 0xba, 0xaa, - 0x7a, 0xa0, 0x1c, 0xab, 0x72, 0xa8, 0xd4, 0x4b, 0xa5, 0x9e, 0xca, 0xa1, 0x87, 0xfe, 0x05, 0xbd, - 0x72, 0x2b, 0x12, 0x3d, 0x54, 0x42, 0xa2, 0x15, 0x41, 0xa2, 0xd7, 0x5e, 0x7a, 0xae, 0x76, 0x7e, - 0xac, 0x77, 0xed, 0xdd, 0x4d, 0x9c, 0x8d, 0x25, 0xd4, 0x9b, 0x77, 0x66, 0xde, 0x9b, 0xcf, 0xe7, - 0xf3, 0xe6, 0xbd, 0x9d, 0xb7, 0x86, 0x09, 0xb3, 0x68, 0x10, 0xc3, 0xae, 0x51, 0x62, 0x2c, 0xea, - 0x96, 0x45, 0x97, 0x49, 0x63, 0x9a, 0xdc, 0xac, 0xd3, 0xda, 0x1d, 0xb5, 0x5a, 0xb3, 0x5d, 0x1b, - 0x0f, 0x9b, 0x45, 0x43, 0xf5, 0x16, 0xa8, 0x62, 0x81, 0xda, 0x98, 0x56, 0x02, 0x56, 0xcb, 0x26, - 0xb5, 0x5c, 0xcf, 0x88, 0xff, 0xe2, 0x56, 0xca, 0x61, 0xc3, 0x76, 0x2a, 0xb6, 0x43, 0x8a, 0xba, - 0x43, 0xb9, 0x3b, 0xd2, 0x98, 0x2e, 0x52, 0x57, 0x9f, 0x26, 0x55, 0xbd, 0x6c, 0x5a, 0xba, 0x6b, - 0xda, 0x96, 0x58, 0x7b, 0x20, 0x0a, 0x82, 0xdc, 0x8c, 0x2f, 0x19, 0x2f, 0xdb, 0x76, 0x79, 0x99, - 0x12, 0xbd, 0x6a, 0x12, 0xdd, 0xb2, 0x6c, 0x97, 0xd9, 0x3b, 0x62, 0x76, 0xaf, 0x98, 0x65, 0x4f, - 0xc5, 0xfa, 0x0d, 0xa2, 0x5b, 0x02, 0xbd, 0x32, 0x52, 0xb6, 0xcb, 0x36, 0xfb, 0x49, 0xbc, 0x5f, - 0x7c, 0x34, 0x7f, 0x1e, 0x86, 0x2f, 0x7b, 0x98, 0xe6, 0xf8, 0x26, 0x1a, 0xbd, 0x59, 0xa7, 0x8e, - 0x8b, 0xf7, 0xc0, 0xb6, 0xaa, 0x5d, 0x73, 0x0b, 0x66, 0x69, 0x0c, 0x4d, 0xa2, 0xa9, 0x41, 0x6d, - 0xab, 0xf7, 0x38, 0x5f, 0xc2, 0xfb, 0x01, 0x04, 0x1e, 0x6f, 0x2e, 0xc3, 0xe6, 0x06, 0xc5, 0xc8, - 0x7c, 0x29, 0xff, 0x00, 0xc1, 0x48, 0xd8, 0x9f, 0x53, 0xb5, 0x2d, 0x87, 0xe2, 0x13, 0xb0, 0x4d, - 0xac, 0x62, 0x0e, 0xb7, 0xcf, 0x8c, 0xab, 0x11, 0x6a, 0xaa, 0xd2, 0x4c, 0x2e, 0xc6, 0x23, 0xb0, - 0xa5, 0x5a, 0xb3, 0xed, 0x1b, 0x6c, 0xab, 0x1d, 0x1a, 0x7f, 0xc0, 0x73, 0xb0, 0x83, 0xfd, 0x28, - 0x2c, 0x52, 0xb3, 0xbc, 0xe8, 0x8e, 0xf5, 0x33, 0x97, 0x4a, 0xc0, 0x25, 0x8f, 0x40, 0x63, 0x5a, - 0x3d, 0xc7, 0x56, 0xcc, 0x66, 0x1f, 0x3e, 0x9d, 0xe8, 0xd3, 0xb6, 0x33, 0x2b, 0x3e, 0x94, 0xff, - 0x24, 0x0c, 0xd5, 0x91, 0xdc, 0xdf, 0x05, 0x68, 0x05, 0x46, 0xa0, 0x7d, 0x4d, 0xe5, 0x51, 0x54, - 0xbd, 0x28, 0xaa, 0xfc, 0x50, 0x88, 0x28, 0xaa, 0x97, 0xf4, 0x32, 0x15, 0xb6, 0x5a, 0xc0, 0x32, - 0xff, 0x14, 0xc1, 0x68, 0xdb, 0x06, 0x42, 0x8c, 0x59, 0x18, 0x10, 0xfc, 0x9c, 0x31, 0x34, 0xd9, - 0xcf, 0xfc, 0x47, 0xa9, 0x31, 0x5f, 0xa2, 0x96, 0x6b, 0xde, 0x30, 0x69, 0x49, 0xea, 0xe2, 0xdb, - 0xe1, 0xb3, 0x21, 0x94, 0x19, 0x86, 0xf2, 0xe0, 0x9a, 0x28, 0x39, 0x80, 0x20, 0x4c, 0x7c, 0x0a, - 0xb6, 0x76, 0xa9, 0xa2, 0x58, 0x9f, 0xbf, 0x87, 0x20, 0xc7, 0x09, 0xda, 0x96, 0x45, 0x0d, 0xcf, - 0x5b, 0xbb, 0x96, 0x39, 0x00, 0xc3, 0x9f, 0x14, 0x47, 0x29, 0x30, 0xd2, 0xa6, 0x75, 0x66, 0xc3, - 0x5a, 0xff, 0x85, 0x60, 0x22, 0x16, 0xca, 0x7f, 0x4b, 0xf5, 0xab, 0x52, 0x74, 0x8e, 0x69, 0x8e, - 0xad, 0x5e, 0x70, 0x75, 0x97, 0xa6, 0x4d, 0xde, 0x3f, 0x7c, 0x11, 0x23, 0x5c, 0x0b, 0x11, 0x75, - 0xd8, 0x63, 0xfa, 0xfa, 0x14, 0x38, 0xd4, 0x82, 0xe3, 0x2d, 0x11, 0x99, 0x72, 0x28, 0x8a, 0x48, - 0x40, 0xd2, 0x80, 0xcf, 0x51, 0x33, 0x6a, 0xb8, 0x97, 0x29, 0xff, 0x13, 0x82, 0x03, 0x21, 0x86, - 0x1e, 0x27, 0xcb, 0xa9, 0x3b, 0x9b, 0xa1, 0x1f, 0x3e, 0x08, 0xbb, 0x6a, 0xb4, 0x61, 0x3a, 0xa6, - 0x6d, 0x15, 0xac, 0x7a, 0xa5, 0x48, 0x6b, 0x0c, 0x65, 0x56, 0xdb, 0x29, 0x87, 0x2f, 0xb0, 0xd1, - 0xd0, 0x42, 0x41, 0x27, 0x1b, 0x5e, 0x28, 0xf0, 0x3e, 0x41, 0x90, 0x4f, 0xc2, 0x2b, 0x82, 0xf2, - 0x0e, 0xec, 0x32, 0xe4, 0x4c, 0x28, 0x18, 0x23, 0x2a, 0x7f, 0x1f, 0xa8, 0xf2, 0x7d, 0xa0, 0x9e, - 0xb1, 0xee, 0x68, 0x3b, 0x8d, 0x90, 0x1b, 0xbc, 0x0f, 0x06, 0x45, 0x20, 0x7d, 0x56, 0x03, 0x7c, - 0x60, 0xbe, 0xd4, 0x8a, 0x46, 0x7f, 0x52, 0x34, 0xb2, 0x1b, 0x89, 0x46, 0x0d, 0xc6, 0x19, 0xb9, - 0x4b, 0xba, 0xb1, 0x44, 0xdd, 0x39, 0xbb, 0x52, 0x31, 0xdd, 0x0a, 0xb5, 0xdc, 0xb4, 0x71, 0x50, - 0x60, 0xc0, 0xf1, 0x5c, 0x58, 0x06, 0x15, 0x01, 0xf0, 0x9f, 0xf3, 0xdf, 0x21, 0xd8, 0x1f, 0xb3, - 0xa9, 0x10, 0x93, 0x95, 0x2c, 0x39, 0xca, 0x36, 0xde, 0xa1, 0x05, 0x46, 0x7a, 0x79, 0x3c, 0xbf, - 0x8f, 0x03, 0xe7, 0xa4, 0x95, 0x24, 0x5c, 0x67, 0xfb, 0x37, 0x5c, 0x67, 0x5f, 0xc8, 0x92, 0x1f, - 0x81, 0xd0, 0x2f, 0xb3, 0xdb, 0x5b, 0x6a, 0xc9, 0x4a, 0x3b, 0x19, 0x59, 0x69, 0xb9, 0x13, 0x7e, - 0x96, 0x83, 0x46, 0x2f, 0x43, 0x99, 0xb5, 0x61, 0x6f, 0x80, 0xa8, 0x46, 0x0d, 0x6a, 0x56, 0x7b, - 0x7a, 0x32, 0xef, 0x23, 0x50, 0xa2, 0x76, 0x14, 0xb2, 0x2a, 0x30, 0x50, 0xf3, 0x86, 0x1a, 0x94, - 0xfb, 0x1d, 0xd0, 0xfc, 0xe7, 0x5e, 0xe6, 0xe8, 0x2d, 0x51, 0x30, 0x39, 0xa8, 0x33, 0xc6, 0x92, - 0x65, 0xdf, 0x5a, 0xa6, 0xa5, 0x32, 0xed, 0x75, 0xa2, 0x3e, 0x90, 0xa5, 0x2f, 0x66, 0x67, 0x21, - 0xcb, 0x14, 0xec, 0xd2, 0xc3, 0x53, 0x22, 0x65, 0xdb, 0x87, 0x7b, 0x99, 0xb7, 0xcf, 0x13, 0xb1, - 0xbe, 0x2c, 0xc9, 0x8b, 0x4f, 0xc3, 0xbe, 0x2a, 0x03, 0x58, 0x68, 0xe5, 0x5a, 0x41, 0x0a, 0xee, - 0x8c, 0x65, 0x27, 0xfb, 0xa7, 0xb2, 0xda, 0xde, 0x6a, 0x5b, 0x66, 0x2f, 0xc8, 0x05, 0xf9, 0x7f, - 0x10, 0xbc, 0x92, 0x48, 0x53, 0xc4, 0xe4, 0x7d, 0x18, 0x6a, 0x13, 0x7f, 0xfd, 0x65, 0xa0, 0xc3, - 0xf2, 0x65, 0xa8, 0x05, 0xdf, 0xca, 0xba, 0x7c, 0xc5, 0x92, 0x39, 0xc7, 0x31, 0xa7, 0x0e, 0xed, - 0x1a, 0x21, 0xe9, 0x5f, 0x2b, 0x24, 0xb7, 0x45, 0x39, 0x8e, 0x00, 0x26, 0x82, 0x31, 0x0e, 0x83, - 0x2d, 0x7f, 0x88, 0xf9, 0x6b, 0x0d, 0x04, 0x34, 0xc9, 0x74, 0xa9, 0xc9, 0x5d, 0x59, 0xae, 0x5a, - 0x5b, 0x9f, 0x31, 0x96, 0x52, 0x0b, 0x72, 0x14, 0x46, 0x84, 0x20, 0xba, 0xb1, 0xd4, 0xa1, 0x04, - 0xae, 0xca, 0x93, 0xd7, 0x92, 0xa0, 0x0e, 0xfb, 0x22, 0x71, 0xf4, 0x98, 0xff, 0x35, 0x71, 0x57, - 0xbe, 0x40, 0x6f, 0xfb, 0xf1, 0xd0, 0x38, 0x80, 0xb4, 0xf7, 0xf0, 0x9f, 0x11, 0x4c, 0xc6, 0xfb, - 0x16, 0xbc, 0x66, 0x60, 0xd4, 0xa2, 0xb7, 0x5b, 0x87, 0xa5, 0x20, 0xd8, 0xb3, 0xad, 0xb2, 0xda, - 0xb0, 0xd5, 0x69, 0xdb, 0xcb, 0x12, 0xf8, 0xa1, 0xb8, 0xcb, 0x05, 0x21, 0x2f, 0x50, 0xab, 0x94, - 0x56, 0x8b, 0x1f, 0x65, 0xea, 0x75, 0x3a, 0x16, 0x42, 0xbc, 0x0e, 0x38, 0x2c, 0x84, 0x43, 0xad, - 0x92, 0x50, 0x61, 0xc8, 0x6a, 0xb3, 0xea, 0xa1, 0x04, 0x33, 0x4f, 0xf7, 0xc0, 0x16, 0x06, 0x15, - 0xff, 0x80, 0x60, 0x9b, 0xb8, 0xb1, 0xe3, 0xa9, 0xc8, 0x92, 0x17, 0xf1, 0xcd, 0x45, 0x39, 0xb4, - 0x8e, 0x95, 0x9c, 0x73, 0x7e, 0xf6, 0xcb, 0xc7, 0xcf, 0xef, 0x67, 0xde, 0xc6, 0x6f, 0x91, 0x84, - 0x0f, 0x46, 0x0e, 0x59, 0x69, 0x29, 0xdb, 0x24, 0x9e, 0xde, 0x0e, 0x59, 0x11, 0x51, 0x68, 0xe2, - 0x7b, 0x08, 0x06, 0x64, 0x8f, 0x8c, 0xd7, 0xde, 0x5b, 0x66, 0xb6, 0x72, 0x78, 0x3d, 0x4b, 0x05, - 0xce, 0x57, 0x19, 0xce, 0x09, 0xbc, 0x3f, 0x11, 0x27, 0xfe, 0x05, 0x01, 0xee, 0x6c, 0xdc, 0xf1, - 0xb1, 0x84, 0x9d, 0xe2, 0xbe, 0x38, 0x28, 0xc7, 0xbb, 0x33, 0x12, 0x40, 0x4f, 0x33, 0xa0, 0xa7, - 0xf0, 0x89, 0x68, 0xa0, 0xbe, 0xa1, 0xa7, 0xa9, 0xff, 0xd0, 0x6c, 0x31, 0x78, 0xe4, 0x31, 0xe8, - 0xe8, 0x9a, 0x13, 0x19, 0xc4, 0xb5, 0xef, 0x89, 0x0c, 0x62, 0x1b, 0xf3, 0xfc, 0x45, 0xc6, 0x60, - 0x1e, 0x9f, 0xdd, 0xf8, 0x91, 0x20, 0xc1, 0x76, 0x1e, 0x7f, 0x93, 0x81, 0xd1, 0xc8, 0xb6, 0x13, - 0x9f, 0x58, 0x1b, 0x60, 0x54, 0x5f, 0xad, 0x9c, 0xec, 0xda, 0x4e, 0x70, 0xfb, 0x0a, 0x31, 0x72, - 0x5f, 0x20, 0xfc, 0x79, 0x1a, 0x76, 0xe1, 0x16, 0x99, 0xc8, 0x5e, 0x9b, 0xac, 0xb4, 0x75, 0xed, - 0x4d, 0xc2, 0xcb, 0x40, 0x60, 0x82, 0x0f, 0x34, 0xf1, 0x13, 0x04, 0x43, 0xed, 0xad, 0x0f, 0x9e, - 0x8e, 0xe7, 0x15, 0xd3, 0xda, 0x2a, 0x33, 0xdd, 0x98, 0x08, 0x15, 0x3e, 0x65, 0x22, 0x5c, 0xc7, - 0x57, 0x53, 0x68, 0xd0, 0x71, 0xd9, 0x70, 0xc8, 0x8a, 0x2c, 0x9c, 0x4d, 0xfc, 0x18, 0xc1, 0xee, - 0x8e, 0xc6, 0x0e, 0x77, 0x81, 0xd5, 0xcf, 0xc2, 0x63, 0x5d, 0xd9, 0x08, 0x82, 0x57, 0x18, 0xc1, - 0x8b, 0xf8, 0xfc, 0xa6, 0x12, 0xc4, 0xbf, 0x22, 0xf8, 0x5f, 0xa8, 0xa7, 0xc2, 0xea, 0x5a, 0xe8, - 0xc2, 0xed, 0x9e, 0x42, 0xd6, 0xbd, 0x5e, 0x30, 0xf9, 0x98, 0x31, 0xf9, 0x08, 0x5f, 0x49, 0xcf, - 0xa4, 0xc6, 0x5d, 0x87, 0xe2, 0xb4, 0x8a, 0x60, 0x34, 0xf2, 0x0e, 0x9e, 0x94, 0x9a, 0x49, 0x1d, - 0x5c, 0x52, 0x6a, 0x26, 0xf6, 0x5f, 0xf9, 0x6b, 0x8c, 0xe9, 0x02, 0xbe, 0x9c, 0x9e, 0xa9, 0x6e, - 0x2c, 0x85, 0x58, 0xbe, 0x40, 0xf0, 0xff, 0xe8, 0x4e, 0x03, 0x77, 0x0b, 0xd7, 0x3f, 0x97, 0xa7, - 0xba, 0x37, 0x14, 0x44, 0xaf, 0x33, 0xa2, 0x1f, 0x60, 0x6d, 0x53, 0x88, 0x86, 0xe9, 0xdc, 0xcd, - 0xc0, 0xee, 0x8e, 0x1b, 0x7c, 0x52, 0xde, 0xc5, 0xf5, 0x21, 0x49, 0x79, 0x17, 0xdb, 0x22, 0x6c, - 0x52, 0x79, 0x8d, 0x2a, 0x2d, 0x09, 0xbd, 0x4d, 0x93, 0xd4, 0x7d, 0x40, 0x85, 0xaa, 0xa0, 0xfc, - 0x37, 0x82, 0x9d, 0xe1, 0x7b, 0x3c, 0x26, 0xeb, 0x61, 0x14, 0xe8, 0x3c, 0x94, 0xa3, 0xeb, 0x37, - 0x10, 0xfc, 0x3f, 0x63, 0xf4, 0x1b, 0xd8, 0xed, 0x0d, 0xfb, 0x50, 0x23, 0x13, 0xa2, 0xed, 0x9d, - 0x78, 0xfc, 0x1b, 0x82, 0xe1, 0x88, 0x8b, 0x3e, 0x4e, 0xb8, 0x06, 0xc4, 0xf7, 0x1c, 0xca, 0x1b, - 0x5d, 0x5a, 0x09, 0x09, 0x2e, 0x31, 0x09, 0xde, 0xc3, 0xe7, 0x52, 0x48, 0x10, 0xba, 0x85, 0x7b, - 0x37, 0xa2, 0xa1, 0xf6, 0x3b, 0x7b, 0xd2, 0x9b, 0x32, 0xa6, 0x71, 0x48, 0x7a, 0x53, 0xc6, 0xb5, - 0x04, 0x9b, 0xf2, 0x22, 0xe9, 0xec, 0x29, 0x66, 0x17, 0x1e, 0x3e, 0xcb, 0xa1, 0x47, 0xcf, 0x72, - 0xe8, 0xcf, 0x67, 0x39, 0xf4, 0xf5, 0x6a, 0xae, 0xef, 0xd1, 0x6a, 0xae, 0xef, 0xf7, 0xd5, 0x5c, - 0xdf, 0xf5, 0x37, 0xcb, 0xa6, 0xbb, 0x58, 0x2f, 0xaa, 0x86, 0x5d, 0x21, 0xe2, 0xef, 0x5e, 0xb3, - 0x68, 0x1c, 0x29, 0xdb, 0xa4, 0x71, 0x92, 0x54, 0xec, 0x52, 0x7d, 0x99, 0x3a, 0x1c, 0xc7, 0xd1, - 0xe3, 0x47, 0x24, 0x14, 0xf7, 0x4e, 0x95, 0x3a, 0xc5, 0xad, 0xec, 0xd3, 0xfc, 0xb1, 0x7f, 0x03, - 0x00, 0x00, 0xff, 0xff, 0x6f, 0x02, 0xd9, 0x0b, 0x7e, 0x1e, 0x00, 0x00, + // 1547 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x59, 0xcf, 0x6f, 0x13, 0x47, + 0x14, 0xce, 0x38, 0x06, 0x92, 0x07, 0x85, 0x30, 0x49, 0x4a, 0x58, 0x82, 0x13, 0x5c, 0xb5, 0x04, + 0x54, 0x76, 0x48, 0xa0, 0x34, 0xad, 0x5a, 0x24, 0x12, 0xa9, 0x90, 0xaa, 0xfc, 0xda, 0x94, 0x16, + 0x90, 0x5a, 0x77, 0xbd, 0x1e, 0x9c, 0x55, 0xe2, 0x5d, 0xe3, 0x5d, 0x1b, 0x50, 0xea, 0xaa, 0xea, + 0x81, 0x72, 0xac, 0xca, 0xa1, 0x52, 0x2f, 0x95, 0x7a, 0x2a, 0x87, 0x1e, 0xfa, 0x17, 0xf4, 0xca, + 0xad, 0x48, 0xf4, 0x50, 0x09, 0x89, 0x56, 0x04, 0x89, 0x5e, 0x7b, 0xe9, 0xb9, 0xda, 0xf9, 0xb1, + 0xde, 0xb5, 0x77, 0x37, 0x76, 0x1c, 0x4b, 0x51, 0x6f, 0xde, 0x99, 0x79, 0x6f, 0xbe, 0xef, 0x7b, + 0xf3, 0xde, 0xce, 0x5b, 0xc3, 0x84, 0x99, 0x37, 0x88, 0x61, 0x57, 0x28, 0x31, 0x96, 0x74, 0xcb, + 0xa2, 0x2b, 0xa4, 0x36, 0x4d, 0x6e, 0x56, 0x69, 0xe5, 0x8e, 0x5a, 0xae, 0xd8, 0xae, 0x8d, 0x87, + 0xcd, 0xbc, 0xa1, 0x7a, 0x0b, 0x54, 0xb1, 0x40, 0xad, 0x4d, 0x2b, 0x01, 0xab, 0x15, 0x93, 0x5a, + 0xae, 0x67, 0xc4, 0x7f, 0x71, 0x2b, 0xe5, 0xa8, 0x61, 0x3b, 0x25, 0xdb, 0x21, 0x79, 0xdd, 0xa1, + 0xdc, 0x1d, 0xa9, 0x4d, 0xe7, 0xa9, 0xab, 0x4f, 0x93, 0xb2, 0x5e, 0x34, 0x2d, 0xdd, 0x35, 0x6d, + 0x4b, 0xac, 0x3d, 0x14, 0x05, 0x41, 0x6e, 0xc6, 0x97, 0x8c, 0x17, 0x6d, 0xbb, 0xb8, 0x42, 0x89, + 0x5e, 0x36, 0x89, 0x6e, 0x59, 0xb6, 0xcb, 0xec, 0x1d, 0x31, 0xbb, 0x5f, 0xcc, 0xb2, 0xa7, 0x7c, + 0xf5, 0x06, 0xd1, 0x2d, 0x81, 0x5e, 0x19, 0x29, 0xda, 0x45, 0x9b, 0xfd, 0x24, 0xde, 0x2f, 0x3e, + 0x9a, 0x3d, 0x0f, 0xc3, 0x97, 0x3d, 0x4c, 0xf3, 0x7c, 0x13, 0x8d, 0xde, 0xac, 0x52, 0xc7, 0xc5, + 0xfb, 0x60, 0x47, 0xd9, 0xae, 0xb8, 0x39, 0xb3, 0x30, 0x86, 0x26, 0xd1, 0xd4, 0xa0, 0xb6, 0xdd, + 0x7b, 0x5c, 0x28, 0xe0, 0x83, 0x00, 0x02, 0x8f, 0x37, 0x97, 0x62, 0x73, 0x83, 0x62, 0x64, 0xa1, + 0x90, 0x7d, 0x80, 0x60, 0x24, 0xec, 0xcf, 0x29, 0xdb, 0x96, 0x43, 0xf1, 0x29, 0xd8, 0x21, 0x56, + 0x31, 0x87, 0x3b, 0x67, 0xc6, 0xd5, 0x08, 0x35, 0x55, 0x69, 0x26, 0x17, 0xe3, 0x11, 0xd8, 0x56, + 0xae, 0xd8, 0xf6, 0x0d, 0xb6, 0xd5, 0x2e, 0x8d, 0x3f, 0xe0, 0x79, 0xd8, 0xc5, 0x7e, 0xe4, 0x96, + 0xa8, 0x59, 0x5c, 0x72, 0xc7, 0xfa, 0x99, 0x4b, 0x25, 0xe0, 0x92, 0x47, 0xa0, 0x36, 0xad, 0x9e, + 0x63, 0x2b, 0xe6, 0xd2, 0x0f, 0x9f, 0x4e, 0xf4, 0x69, 0x3b, 0x99, 0x15, 0x1f, 0xca, 0x7e, 0x1a, + 0x86, 0xea, 0x48, 0xee, 0xef, 0x01, 0x34, 0x02, 0x23, 0xd0, 0xbe, 0xa6, 0xf2, 0x28, 0xaa, 0x5e, + 0x14, 0x55, 0x7e, 0x28, 0x44, 0x14, 0xd5, 0x4b, 0x7a, 0x91, 0x0a, 0x5b, 0x2d, 0x60, 0x99, 0x7d, + 0x8a, 0x60, 0xb4, 0x69, 0x03, 0x21, 0xc6, 0x1c, 0x0c, 0x08, 0x7e, 0xce, 0x18, 0x9a, 0xec, 0x67, + 0xfe, 0xa3, 0xd4, 0x58, 0x28, 0x50, 0xcb, 0x35, 0x6f, 0x98, 0xb4, 0x20, 0x75, 0xf1, 0xed, 0xf0, + 0xd9, 0x10, 0xca, 0x14, 0x43, 0x79, 0x78, 0x5d, 0x94, 0x1c, 0x40, 0x10, 0x26, 0x9e, 0x85, 0xed, + 0x1d, 0xaa, 0x28, 0xd6, 0x67, 0xef, 0x21, 0xc8, 0x70, 0x82, 0xb6, 0x65, 0x51, 0xc3, 0xf3, 0xd6, + 0xac, 0x65, 0x06, 0xc0, 0xf0, 0x27, 0xc5, 0x51, 0x0a, 0x8c, 0x34, 0x69, 0x9d, 0xda, 0xb0, 0xd6, + 0x7f, 0x23, 0x98, 0x88, 0x85, 0xf2, 0xff, 0x52, 0xfd, 0xaa, 0x14, 0x9d, 0x63, 0x9a, 0x67, 0xab, + 0x17, 0x5d, 0xdd, 0xa5, 0xdd, 0x26, 0xef, 0x9f, 0xbe, 0x88, 0x11, 0xae, 0x85, 0x88, 0x3a, 0xec, + 0x33, 0x7d, 0x7d, 0x72, 0x1c, 0x6a, 0xce, 0xf1, 0x96, 0x88, 0x4c, 0x39, 0x12, 0x45, 0x24, 0x20, + 0x69, 0xc0, 0xe7, 0xa8, 0x19, 0x35, 0xdc, 0xcb, 0x94, 0xff, 0x19, 0xc1, 0xa1, 0x10, 0x43, 0x8f, + 0x93, 0xe5, 0x54, 0x9d, 0xcd, 0xd0, 0x0f, 0x1f, 0x86, 0x3d, 0x15, 0x5a, 0x33, 0x1d, 0xd3, 0xb6, + 0x72, 0x56, 0xb5, 0x94, 0xa7, 0x15, 0x86, 0x32, 0xad, 0xed, 0x96, 0xc3, 0x17, 0xd8, 0x68, 0x68, + 0xa1, 0xa0, 0x93, 0x0e, 0x2f, 0x14, 0x78, 0x9f, 0x20, 0xc8, 0x26, 0xe1, 0x15, 0x41, 0x79, 0x17, + 0xf6, 0x18, 0x72, 0x26, 0x14, 0x8c, 0x11, 0x95, 0xbf, 0x0f, 0x54, 0xf9, 0x3e, 0x50, 0xcf, 0x58, + 0x77, 0xb4, 0xdd, 0x46, 0xc8, 0x0d, 0x3e, 0x00, 0x83, 0x22, 0x90, 0x3e, 0xab, 0x01, 0x3e, 0xb0, + 0x50, 0x68, 0x44, 0xa3, 0x3f, 0x29, 0x1a, 0xe9, 0x8d, 0x44, 0xa3, 0x02, 0xe3, 0x8c, 0xdc, 0x25, + 0xdd, 0x58, 0xa6, 0xee, 0xbc, 0x5d, 0x2a, 0x99, 0x6e, 0x89, 0x5a, 0x6e, 0xb7, 0x71, 0x50, 0x60, + 0xc0, 0xf1, 0x5c, 0x58, 0x06, 0x15, 0x01, 0xf0, 0x9f, 0xb3, 0xdf, 0x23, 0x38, 0x18, 0xb3, 0xa9, + 0x10, 0x93, 0x95, 0x2c, 0x39, 0xca, 0x36, 0xde, 0xa5, 0x05, 0x46, 0x7a, 0x79, 0x3c, 0x7f, 0x88, + 0x03, 0xe7, 0x74, 0x2b, 0x49, 0xb8, 0xce, 0xf6, 0x6f, 0xb8, 0xce, 0xbe, 0x90, 0x25, 0x3f, 0x02, + 0xa1, 0x5f, 0x66, 0x77, 0x36, 0xd4, 0x92, 0x95, 0x76, 0x32, 0xb2, 0xd2, 0x72, 0x27, 0xfc, 0x2c, + 0x07, 0x8d, 0xb6, 0x42, 0x99, 0xb5, 0x61, 0x7f, 0x80, 0xa8, 0x46, 0x0d, 0x6a, 0x96, 0x7b, 0x7a, + 0x32, 0xef, 0x23, 0x50, 0xa2, 0x76, 0x14, 0xb2, 0x2a, 0x30, 0x50, 0xf1, 0x86, 0x6a, 0x94, 0xfb, + 0x1d, 0xd0, 0xfc, 0xe7, 0x5e, 0xe6, 0xe8, 0x2d, 0x51, 0x30, 0x39, 0xa8, 0x33, 0xc6, 0xb2, 0x65, + 0xdf, 0x5a, 0xa1, 0x85, 0x22, 0xed, 0x75, 0xa2, 0x3e, 0x90, 0xa5, 0x2f, 0x66, 0x67, 0x21, 0xcb, + 0x14, 0xec, 0xd1, 0xc3, 0x53, 0x22, 0x65, 0x9b, 0x87, 0x7b, 0x99, 0xb7, 0xcf, 0x13, 0xb1, 0x6e, + 0x95, 0xe4, 0xc5, 0xa7, 0xe1, 0x40, 0x99, 0x01, 0xcc, 0x35, 0x72, 0x2d, 0x27, 0x05, 0x77, 0xc6, + 0xd2, 0x93, 0xfd, 0x53, 0x69, 0x6d, 0x7f, 0xb9, 0x29, 0xb3, 0x17, 0xe5, 0x82, 0xec, 0xbf, 0x08, + 0x5e, 0x49, 0xa4, 0x29, 0x62, 0xf2, 0x01, 0x0c, 0x35, 0x89, 0xdf, 0x7e, 0x19, 0x68, 0xb1, 0xdc, + 0x0a, 0xb5, 0xe0, 0x3b, 0x59, 0x97, 0xaf, 0x58, 0x32, 0xe7, 0x38, 0xe6, 0xae, 0x43, 0xbb, 0x4e, + 0x48, 0xfa, 0xd7, 0x0b, 0xc9, 0x6d, 0x51, 0x8e, 0x23, 0x80, 0x89, 0x60, 0x8c, 0xc3, 0x60, 0xc3, + 0x1f, 0x62, 0xfe, 0x1a, 0x03, 0x01, 0x4d, 0x52, 0x1d, 0x6a, 0x72, 0x57, 0x96, 0xab, 0xc6, 0xd6, + 0x67, 0x8c, 0xe5, 0xae, 0x05, 0x39, 0x0e, 0x23, 0x42, 0x10, 0xdd, 0x58, 0x6e, 0x51, 0x02, 0x97, + 0xe5, 0xc9, 0x6b, 0x48, 0x50, 0x85, 0x03, 0x91, 0x38, 0x7a, 0xcc, 0xff, 0x9a, 0xb8, 0x2b, 0x5f, + 0xa0, 0xb7, 0xfd, 0x78, 0x68, 0x1c, 0x40, 0xb7, 0xf7, 0xf0, 0x5f, 0x10, 0x4c, 0xc6, 0xfb, 0x16, + 0xbc, 0x66, 0x60, 0xd4, 0xa2, 0xb7, 0x1b, 0x87, 0x25, 0x27, 0xd8, 0xb3, 0xad, 0xd2, 0xda, 0xb0, + 0xd5, 0x6a, 0xdb, 0xcb, 0x12, 0xf8, 0x91, 0xb8, 0xcb, 0x05, 0x21, 0x2f, 0x52, 0xab, 0xd0, 0xad, + 0x16, 0x3f, 0xc9, 0xd4, 0x6b, 0x75, 0x2c, 0x84, 0x78, 0x1d, 0x70, 0x58, 0x08, 0x87, 0x5a, 0x05, + 0xa1, 0xc2, 0x90, 0xd5, 0x64, 0xd5, 0x43, 0x09, 0x66, 0x9e, 0xee, 0x83, 0x6d, 0x0c, 0x2a, 0xfe, + 0x11, 0xc1, 0x0e, 0x71, 0x63, 0xc7, 0x53, 0x91, 0x25, 0x2f, 0xe2, 0x9b, 0x8b, 0x72, 0xa4, 0x8d, + 0x95, 0x9c, 0x73, 0x76, 0xee, 0xab, 0xc7, 0xcf, 0xef, 0xa7, 0xde, 0xc1, 0x6f, 0x93, 0x84, 0x0f, + 0x46, 0x0e, 0x59, 0x6d, 0x28, 0x5b, 0x27, 0x9e, 0xde, 0x0e, 0x59, 0x15, 0x51, 0xa8, 0xe3, 0x7b, + 0x08, 0x06, 0x64, 0x8f, 0x8c, 0xd7, 0xdf, 0x5b, 0x66, 0xb6, 0x72, 0xb4, 0x9d, 0xa5, 0x02, 0xe7, + 0xab, 0x0c, 0xe7, 0x04, 0x3e, 0x98, 0x88, 0x13, 0xff, 0x8a, 0x00, 0xb7, 0x36, 0xee, 0xf8, 0x44, + 0xc2, 0x4e, 0x71, 0x5f, 0x1c, 0x94, 0x93, 0x9d, 0x19, 0x09, 0xa0, 0xa7, 0x19, 0xd0, 0x59, 0x7c, + 0x2a, 0x1a, 0xa8, 0x6f, 0xe8, 0x69, 0xea, 0x3f, 0xd4, 0x1b, 0x0c, 0x1e, 0x79, 0x0c, 0x5a, 0xba, + 0xe6, 0x44, 0x06, 0x71, 0xed, 0x7b, 0x22, 0x83, 0xd8, 0xc6, 0x3c, 0x7b, 0x91, 0x31, 0x58, 0xc0, + 0x67, 0x37, 0x7e, 0x24, 0x48, 0xb0, 0x9d, 0xc7, 0xdf, 0xa6, 0x60, 0x34, 0xb2, 0xed, 0xc4, 0xa7, + 0xd6, 0x07, 0x18, 0xd5, 0x57, 0x2b, 0x6f, 0x76, 0x6c, 0x27, 0xb8, 0x7d, 0x8d, 0x18, 0xb9, 0x2f, + 0x11, 0xfe, 0xa2, 0x1b, 0x76, 0xe1, 0x16, 0x99, 0xc8, 0x5e, 0x9b, 0xac, 0x36, 0x75, 0xed, 0x75, + 0xc2, 0xcb, 0x40, 0x60, 0x82, 0x0f, 0xd4, 0xf1, 0x13, 0x04, 0x43, 0xcd, 0xad, 0x0f, 0x9e, 0x8e, + 0xe7, 0x15, 0xd3, 0xda, 0x2a, 0x33, 0x9d, 0x98, 0x08, 0x15, 0x3e, 0x63, 0x22, 0x5c, 0xc7, 0x57, + 0xbb, 0xd0, 0xa0, 0xe5, 0xb2, 0xe1, 0x90, 0x55, 0x59, 0x38, 0xeb, 0xf8, 0x31, 0x82, 0xbd, 0x2d, + 0x8d, 0x1d, 0xee, 0x00, 0xab, 0x9f, 0x85, 0x27, 0x3a, 0xb2, 0x11, 0x04, 0xaf, 0x30, 0x82, 0x17, + 0xf1, 0xf9, 0x4d, 0x25, 0x88, 0x7f, 0x43, 0xf0, 0x52, 0xa8, 0xa7, 0xc2, 0xea, 0x7a, 0xe8, 0xc2, + 0xed, 0x9e, 0x42, 0xda, 0x5e, 0x2f, 0x98, 0x7c, 0xc2, 0x98, 0x7c, 0x8c, 0xaf, 0x74, 0xcf, 0xa4, + 0xc2, 0x5d, 0x87, 0xe2, 0xb4, 0x86, 0x60, 0x34, 0xf2, 0x0e, 0x9e, 0x94, 0x9a, 0x49, 0x1d, 0x5c, + 0x52, 0x6a, 0x26, 0xf6, 0x5f, 0xd9, 0x6b, 0x8c, 0xe9, 0x22, 0xbe, 0xdc, 0x3d, 0x53, 0xdd, 0x58, + 0x0e, 0xb1, 0x7c, 0x81, 0xe0, 0xe5, 0xe8, 0x4e, 0x03, 0x77, 0x0a, 0xd7, 0x3f, 0x97, 0xb3, 0x9d, + 0x1b, 0x0a, 0xa2, 0xd7, 0x19, 0xd1, 0x0f, 0xb1, 0xb6, 0x29, 0x44, 0xc3, 0x74, 0xee, 0xa6, 0x60, + 0x6f, 0xcb, 0x0d, 0x3e, 0x29, 0xef, 0xe2, 0xfa, 0x90, 0xa4, 0xbc, 0x8b, 0x6d, 0x11, 0x36, 0xa9, + 0xbc, 0x46, 0x95, 0x96, 0x84, 0xde, 0xa6, 0x4e, 0xaa, 0x3e, 0xa0, 0x5c, 0x59, 0x50, 0xfe, 0x07, + 0xc1, 0xee, 0xf0, 0x3d, 0x1e, 0x93, 0x76, 0x18, 0x05, 0x3a, 0x0f, 0xe5, 0x78, 0xfb, 0x06, 0x82, + 0xff, 0xe7, 0x8c, 0x7e, 0x0d, 0xbb, 0xbd, 0x61, 0x1f, 0x6a, 0x64, 0x42, 0xb4, 0xbd, 0x13, 0x8f, + 0x7f, 0x47, 0x30, 0x1c, 0x71, 0xd1, 0xc7, 0x09, 0xd7, 0x80, 0xf8, 0x9e, 0x43, 0x79, 0xa3, 0x43, + 0x2b, 0x21, 0xc1, 0x25, 0x26, 0xc1, 0xfb, 0xf8, 0x5c, 0x17, 0x12, 0x84, 0x6e, 0xe1, 0xde, 0x8d, + 0x68, 0xa8, 0xf9, 0xce, 0x9e, 0xf4, 0xa6, 0x8c, 0x69, 0x1c, 0x92, 0xde, 0x94, 0x71, 0x2d, 0xc1, + 0xa6, 0xbc, 0x48, 0x5a, 0x7b, 0x8a, 0xb9, 0xc5, 0x87, 0xcf, 0x32, 0xe8, 0xd1, 0xb3, 0x0c, 0xfa, + 0xeb, 0x59, 0x06, 0x7d, 0xb3, 0x96, 0xe9, 0x7b, 0xb4, 0x96, 0xe9, 0xfb, 0x63, 0x2d, 0xd3, 0x77, + 0xfd, 0xad, 0xa2, 0xe9, 0x2e, 0x55, 0xf3, 0xaa, 0x61, 0x97, 0x88, 0xf8, 0xbb, 0xd7, 0xcc, 0x1b, + 0xc7, 0x8a, 0x36, 0xa9, 0xcd, 0x92, 0x92, 0x5d, 0xa8, 0xae, 0x50, 0x87, 0xe3, 0x38, 0x7e, 0xf2, + 0x98, 0x84, 0xe2, 0xde, 0x29, 0x53, 0x27, 0xbf, 0x9d, 0x7d, 0x9a, 0x3f, 0xf1, 0x5f, 0x00, 0x00, + 0x00, 0xff, 0xff, 0xfa, 0x61, 0xcc, 0x20, 0x7e, 0x1e, 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 74ea4e61fd8..bd9cd757eb6 100644 --- a/modules/core/04-channel/types/tx.pb.go +++ b/modules/core/04-channel/types/tx.pb.go @@ -10,7 +10,7 @@ import ( _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" - types "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + types "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" @@ -899,13 +899,13 @@ func init() { proto.RegisterFile("ibc/core/channel/v1/tx.proto", fileDescriptor_ var fileDescriptor_bc4637e0ac3fc7b7 = []byte{ // 1191 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x58, 0xbd, 0x6f, 0xdb, 0x46, - 0x14, 0x17, 0x65, 0x59, 0xb2, 0x9f, 0xdc, 0x48, 0xa1, 0x93, 0x58, 0xa1, 0x6d, 0x49, 0xf5, 0x10, - 0xbb, 0x6e, 0x2d, 0xc5, 0x4a, 0x3f, 0x90, 0xa0, 0x40, 0x61, 0xab, 0x2a, 0x6a, 0xa0, 0xfe, 0x00, - 0x25, 0x17, 0x68, 0x52, 0x54, 0xb0, 0xa8, 0x0b, 0x4d, 0x48, 0xe2, 0xa9, 0x24, 0xa5, 0x44, 0x5b, - 0xd1, 0xc9, 0xf0, 0x50, 0x74, 0xe8, 0x6a, 0xa0, 0x40, 0xa7, 0x6e, 0x99, 0xb2, 0x77, 0xcb, 0x98, - 0xb1, 0x28, 0xd0, 0xa0, 0xb0, 0x87, 0xfc, 0x1b, 0x05, 0xef, 0x8e, 0x14, 0x45, 0x91, 0x12, 0x13, - 0x2b, 0xde, 0xc8, 0xf7, 0x7e, 0xf7, 0x3e, 0x7e, 0xbf, 0xe3, 0xe3, 0x91, 0xb0, 0xa4, 0xd4, 0xa4, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x58, 0xbf, 0x6f, 0xdb, 0x46, + 0x14, 0x16, 0x65, 0x59, 0xb2, 0x9f, 0xdc, 0x48, 0xa1, 0x93, 0x58, 0xa1, 0x6d, 0x49, 0xf5, 0x10, + 0xbb, 0x6e, 0x2d, 0xc5, 0x4a, 0x5b, 0x34, 0x41, 0x81, 0xc2, 0x56, 0x55, 0xd4, 0x40, 0xfd, 0x03, + 0x94, 0x5c, 0xa0, 0x49, 0x51, 0xc1, 0xa2, 0x2e, 0x34, 0x21, 0x89, 0xa7, 0x92, 0x94, 0x12, 0x6d, + 0x45, 0x27, 0xc3, 0x43, 0xd1, 0xa1, 0xab, 0x81, 0x02, 0x9d, 0xba, 0x65, 0xca, 0xde, 0x2d, 0x63, + 0xc6, 0xa2, 0x40, 0x83, 0xc2, 0x1e, 0xf2, 0x6f, 0x14, 0xbc, 0x3b, 0x52, 0x14, 0x45, 0x4a, 0x4c, + 0xac, 0x78, 0x23, 0xdf, 0xfb, 0xee, 0xfd, 0xf8, 0xbe, 0xe3, 0xe3, 0x91, 0xb0, 0xa4, 0xd4, 0xa4, 0xbc, 0x84, 0x35, 0x94, 0x97, 0x8e, 0x8f, 0x54, 0x15, 0x35, 0xf3, 0xdd, 0xcd, 0xbc, 0xf1, 0x34, 0xd7, 0xd6, 0xb0, 0x81, 0xf9, 0x79, 0xa5, 0x26, 0xe5, 0x4c, 0x6f, 0x8e, 0x79, 0x73, 0xdd, 0x4d, 0xe1, 0x86, 0x8c, 0x65, 0x4c, 0xfc, 0x79, 0xf3, 0x8a, 0x42, 0x85, 0x4c, 0x3f, 0x50, 0x53, 0x41, @@ -972,8 +972,8 @@ var fileDescriptor_bc4637e0ac3fc7b7 = []byte{ 0x48, 0x87, 0x5e, 0x5e, 0xa4, 0x43, 0x7f, 0x5f, 0xa4, 0x43, 0x0f, 0xef, 0xcb, 0x8a, 0x71, 0xdc, 0xa9, 0xe5, 0x24, 0xdc, 0xca, 0xb3, 0x9f, 0x31, 0x4a, 0x4d, 0xda, 0x90, 0x71, 0xbe, 0xfb, 0x59, 0xbe, 0x85, 0xeb, 0x9d, 0x26, 0xd2, 0xe9, 0x4f, 0x9c, 0xbb, 0x1f, 0x6f, 0x58, 0xff, 0x71, 0x8c, - 0x5e, 0x1b, 0xe9, 0xb5, 0x28, 0xf9, 0x55, 0x73, 0xef, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0x18, - 0xc3, 0x02, 0x4e, 0x52, 0x12, 0x00, 0x00, + 0x5e, 0x1b, 0xe9, 0xb5, 0x28, 0xf9, 0x55, 0x73, 0xef, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0x8d, + 0xa0, 0x17, 0x65, 0x52, 0x12, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/modules/core/05-port/keeper/keeper.go b/modules/core/05-port/keeper/keeper.go index f290f99fed9..37e357e4023 100644 --- a/modules/core/05-port/keeper/keeper.go +++ b/modules/core/05-port/keeper/keeper.go @@ -8,9 +8,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/core/05-port/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // Keeper defines the IBC connection keeper diff --git a/modules/core/05-port/keeper/keeper_test.go b/modules/core/05-port/keeper/keeper_test.go index 578348efa84..48438d6f3c2 100644 --- a/modules/core/05-port/keeper/keeper_test.go +++ b/modules/core/05-port/keeper/keeper_test.go @@ -8,8 +8,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/core/05-port/keeper" - "github.com/cosmos/ibc-go/v7/testing/simapp" + "github.com/cosmos/ibc-go/v8/modules/core/05-port/keeper" + "github.com/cosmos/ibc-go/v8/testing/simapp" ) var ( diff --git a/modules/core/05-port/module.go b/modules/core/05-port/module.go index 9c07da041c2..3f31528d9ff 100644 --- a/modules/core/05-port/module.go +++ b/modules/core/05-port/module.go @@ -3,8 +3,8 @@ package port import ( "github.com/spf13/cobra" - "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" - "github.com/cosmos/ibc-go/v7/modules/core/client/cli" + "github.com/cosmos/ibc-go/v8/modules/core/05-port/types" + "github.com/cosmos/ibc-go/v8/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 a8306f73064..a72ff9658ec 100644 --- a/modules/core/05-port/types/module.go +++ b/modules/core/05-port/types/module.go @@ -4,9 +4,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // IBCModule defines an interface that implements all the callbacks diff --git a/modules/core/23-commitment/types/codec.go b/modules/core/23-commitment/types/codec.go index 3ccf9164d60..c08d7519389 100644 --- a/modules/core/23-commitment/types/codec.go +++ b/modules/core/23-commitment/types/codec.go @@ -3,7 +3,7 @@ package types import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // RegisterInterfaces registers the commitment interfaces to protobuf Any. diff --git a/modules/core/23-commitment/types/commitment.pb.go b/modules/core/23-commitment/types/commitment.pb.go index 06bb149a828..29f883de776 100644 --- a/modules/core/23-commitment/types/commitment.pb.go +++ b/modules/core/23-commitment/types/commitment.pb.go @@ -217,27 +217,27 @@ func init() { } var fileDescriptor_7921d88972a41469 = []byte{ - // 316 bytes of a gzipped FileDescriptorProto + // 315 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x4c, 0x91, 0x31, 0x4f, 0xc3, 0x30, 0x10, 0x85, 0x13, 0x51, 0x15, 0xea, 0x76, 0xb2, 0x10, 0x82, 0x0a, 0x4c, 0xd5, 0x01, 0xba, 0xc4, - 0x56, 0xdb, 0x01, 0x54, 0x31, 0xc1, 0xc0, 0x84, 0x54, 0x65, 0x60, 0x60, 0x41, 0x89, 0x71, 0x13, - 0xab, 0x0d, 0x17, 0xc5, 0x6e, 0x44, 0xff, 0x01, 0x23, 0x23, 0x23, 0x3f, 0x87, 0xb1, 0x23, 0x23, - 0x6a, 0xff, 0x08, 0xb2, 0xdd, 0xa0, 0x6c, 0x77, 0x7a, 0x9f, 0x9f, 0xfc, 0xde, 0xa1, 0x4b, 0x19, - 0x73, 0xc6, 0xa1, 0x10, 0x8c, 0x43, 0x96, 0x49, 0x9d, 0x89, 0x57, 0xcd, 0xca, 0x61, 0x6d, 0xa3, - 0x79, 0x01, 0x1a, 0xf0, 0x91, 0x8c, 0x39, 0x35, 0x20, 0xad, 0x49, 0xe5, 0xb0, 0x7b, 0x98, 0x40, - 0x02, 0x16, 0x61, 0x66, 0x72, 0x74, 0xf7, 0x94, 0x83, 0xca, 0x40, 0x31, 0xc9, 0xd5, 0x68, 0x6c, - 0xfc, 0xf2, 0x02, 0x60, 0xa6, 0x9c, 0xda, 0xbf, 0x40, 0xe8, 0x41, 0x14, 0xf3, 0x85, 0x08, 0x01, - 0x34, 0xc6, 0xa8, 0x91, 0x46, 0x2a, 0x3d, 0xf6, 0x7b, 0xfe, 0xa0, 0x13, 0xda, 0x79, 0xd2, 0x78, - 0xff, 0x3a, 0xf7, 0xfa, 0x01, 0xea, 0x38, 0x6e, 0x5a, 0x88, 0x99, 0x7c, 0xc3, 0x67, 0x08, 0xcd, - 0xc5, 0xea, 0x39, 0xb7, 0xdb, 0x8e, 0x6f, 0xcd, 0xc5, 0xca, 0xc9, 0xfd, 0xa0, 0xb2, 0x9d, 0x46, - 0x3a, 0xc5, 0x27, 0xe8, 0xc0, 0xc2, 0x91, 0x36, 0xd6, 0x7b, 0x83, 0x56, 0xb8, 0x6f, 0xd0, 0x48, - 0xa7, 0x93, 0xc6, 0xa7, 0x71, 0xbf, 0x47, 0xed, 0xca, 0x1d, 0x60, 0x86, 0xaf, 0x51, 0xd3, 0x7d, - 0xd2, 0xd2, 0xed, 0x51, 0x8f, 0xba, 0x0c, 0xd4, 0x66, 0xa0, 0xe5, 0x90, 0xde, 0xfd, 0x07, 0xb7, - 0x2f, 0xc2, 0x1d, 0x7f, 0xfb, 0xf8, 0xbd, 0x21, 0xfe, 0x7a, 0x43, 0xfc, 0xdf, 0x0d, 0xf1, 0x3f, - 0xb6, 0xc4, 0x5b, 0x6f, 0x89, 0xf7, 0xb3, 0x25, 0xde, 0xd3, 0x4d, 0x22, 0x75, 0xba, 0x8c, 0x4d, - 0x65, 0xac, 0x6a, 0x24, 0xe6, 0x41, 0x02, 0xac, 0xbc, 0x62, 0x19, 0xbc, 0x2c, 0x17, 0x42, 0xb9, - 0xf6, 0x47, 0xe3, 0xa0, 0x76, 0x00, 0xbd, 0xca, 0x85, 0x8a, 0x9b, 0xb6, 0xad, 0xf1, 0x5f, 0x00, - 0x00, 0x00, 0xff, 0xff, 0x74, 0x07, 0xaf, 0xf3, 0xa4, 0x01, 0x00, 0x00, + 0x56, 0xdb, 0xa5, 0xaa, 0x98, 0x60, 0x60, 0x42, 0xaa, 0x32, 0x30, 0xb0, 0xa0, 0xc4, 0xb8, 0x89, + 0xd5, 0x86, 0x8b, 0x62, 0x37, 0xa2, 0xff, 0x80, 0x91, 0x91, 0x91, 0x9f, 0xc3, 0xd8, 0x91, 0x11, + 0xb5, 0x7f, 0x04, 0xd9, 0x6e, 0x50, 0xb6, 0x3b, 0xbd, 0xcf, 0x4f, 0x7e, 0xef, 0xd0, 0xb5, 0x8c, + 0x39, 0xe3, 0x50, 0x08, 0xc6, 0x21, 0xcb, 0xa4, 0xce, 0xc4, 0xab, 0x66, 0xe5, 0xb0, 0xb6, 0xd1, + 0xbc, 0x00, 0x0d, 0xf8, 0x44, 0xc6, 0x9c, 0x1a, 0x90, 0xd6, 0xa4, 0x72, 0xd8, 0x3d, 0x4e, 0x20, + 0x01, 0x8b, 0x30, 0x33, 0x39, 0xba, 0x7b, 0xce, 0x41, 0x65, 0xa0, 0x98, 0xe4, 0x6a, 0x34, 0x36, + 0x7e, 0x79, 0x01, 0x30, 0x57, 0x4e, 0xed, 0x5f, 0x21, 0xf4, 0x20, 0x8a, 0xc5, 0x52, 0x84, 0x00, + 0x1a, 0x63, 0xd4, 0x48, 0x23, 0x95, 0x9e, 0xfa, 0x3d, 0x7f, 0xd0, 0x09, 0xed, 0x3c, 0x6d, 0xbc, + 0x7f, 0x5d, 0x7a, 0xfd, 0x00, 0x75, 0x1c, 0x37, 0x2b, 0xc4, 0x5c, 0xbe, 0xe1, 0x0b, 0x84, 0x16, + 0x62, 0xfd, 0x9c, 0xdb, 0x6d, 0xcf, 0xb7, 0x16, 0x62, 0xed, 0xe4, 0x7e, 0x50, 0xd9, 0xce, 0x22, + 0x9d, 0xe2, 0x33, 0x74, 0x64, 0xe1, 0x48, 0x1b, 0xeb, 0x83, 0x41, 0x2b, 0x3c, 0x34, 0x68, 0xa4, + 0xd3, 0x69, 0xe3, 0xd3, 0xb8, 0xdf, 0xa3, 0x76, 0xe5, 0x0e, 0x30, 0xc7, 0x13, 0xd4, 0x74, 0x9f, + 0xb4, 0x74, 0x7b, 0xd4, 0xa3, 0x2e, 0x03, 0xb5, 0x19, 0x68, 0x39, 0xa4, 0x77, 0xff, 0xc1, 0xed, + 0x8b, 0x70, 0xcf, 0xdf, 0x3e, 0x7e, 0x6f, 0x89, 0xbf, 0xd9, 0x12, 0xff, 0x77, 0x4b, 0xfc, 0x8f, + 0x1d, 0xf1, 0x36, 0x3b, 0xe2, 0xfd, 0xec, 0x88, 0xf7, 0x74, 0x93, 0x48, 0x9d, 0xae, 0x62, 0x53, + 0x19, 0xab, 0x1a, 0x89, 0x79, 0x90, 0x00, 0x2b, 0x27, 0x2c, 0x83, 0x97, 0xd5, 0x52, 0x28, 0xd7, + 0xfe, 0x68, 0x1c, 0xd4, 0x0e, 0xa0, 0xd7, 0xb9, 0x50, 0x71, 0xd3, 0xb6, 0x35, 0xfe, 0x0b, 0x00, + 0x00, 0xff, 0xff, 0xcb, 0xa1, 0x7a, 0x2b, 0xa4, 0x01, 0x00, 0x00, } func (m *MerkleRoot) Marshal() (dAtA []byte, err error) { diff --git a/modules/core/23-commitment/types/merkle.go b/modules/core/23-commitment/types/merkle.go index 4367a27ccfe..9c00e176f73 100644 --- a/modules/core/23-commitment/types/merkle.go +++ b/modules/core/23-commitment/types/merkle.go @@ -12,7 +12,7 @@ import ( tmcrypto "github.com/cometbft/cometbft/proto/tendermint/crypto" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/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 0cbc8ac153f..9b15c3218b8 100644 --- a/modules/core/23-commitment/types/merkle_test.go +++ b/modules/core/23-commitment/types/merkle_test.go @@ -8,7 +8,7 @@ import ( storetypes "cosmossdk.io/store/types" - "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v8/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 86811e61220..ab7ff41b67a 100644 --- a/modules/core/23-commitment/types/utils_test.go +++ b/modules/core/23-commitment/types/utils_test.go @@ -9,7 +9,7 @@ import ( crypto "github.com/cometbft/cometbft/proto/tendermint/crypto" - "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v8/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 c19f861213f..9e018f8f0d8 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/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // KVStore key prefixes for IBC diff --git a/modules/core/24-host/parse_test.go b/modules/core/24-host/parse_test.go index 18c3ab2e832..817ad117030 100644 --- a/modules/core/24-host/parse_test.go +++ b/modules/core/24-host/parse_test.go @@ -7,9 +7,9 @@ import ( "github.com/stretchr/testify/require" - connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func TestParseIdentifier(t *testing.T) { diff --git a/modules/core/ante/ante.go b/modules/core/ante/ante.go index e2b6e548d09..a64a5f0146a 100644 --- a/modules/core/ante/ante.go +++ b/modules/core/ante/ante.go @@ -3,9 +3,9 @@ package ante import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/v7/modules/core/keeper" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v8/modules/core/keeper" ) type RedundantRelayDecorator struct { diff --git a/modules/core/ante/ante_test.go b/modules/core/ante/ante_test.go index 649390d30f5..1b9a8c15c64 100644 --- a/modules/core/ante/ante_test.go +++ b/modules/core/ante/ante_test.go @@ -8,12 +8,12 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/ante" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/ante" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) type AnteTestSuite struct { diff --git a/modules/core/client/cli/cli.go b/modules/core/client/cli/cli.go index 08871519579..12a6587738b 100644 --- a/modules/core/client/cli/cli.go +++ b/modules/core/client/cli/cli.go @@ -5,10 +5,10 @@ import ( "github.com/cosmos/cosmos-sdk/client" - ibcclient "github.com/cosmos/ibc-go/v7/modules/core/02-client" - connection "github.com/cosmos/ibc-go/v7/modules/core/03-connection" - channel "github.com/cosmos/ibc-go/v7/modules/core/04-channel" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" + ibcclient "github.com/cosmos/ibc-go/v8/modules/core/02-client" + connection "github.com/cosmos/ibc-go/v8/modules/core/03-connection" + channel "github.com/cosmos/ibc-go/v8/modules/core/04-channel" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // GetTxCmd returns the transaction commands for this module diff --git a/modules/core/client/query.go b/modules/core/client/query.go index 57e06d56c3c..1fa677fc34f 100644 --- a/modules/core/client/query.go +++ b/modules/core/client/query.go @@ -8,9 +8,9 @@ import ( abci "github.com/cometbft/cometbft/abci/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // QueryTendermintProof performs an ABCI query with the given key and returns diff --git a/modules/core/errors/errors.go b/modules/core/errors/errors.go index 79b96856a87..30dd983151a 100644 --- a/modules/core/errors/errors.go +++ b/modules/core/errors/errors.go @@ -3,7 +3,7 @@ package errors import ( errorsmod "cosmossdk.io/errors" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) const codespace = exported.ModuleName diff --git a/modules/core/genesis.go b/modules/core/genesis.go index 42661193665..3eaada47208 100644 --- a/modules/core/genesis.go +++ b/modules/core/genesis.go @@ -3,11 +3,11 @@ package ibc import ( sdk "github.com/cosmos/cosmos-sdk/types" - client "github.com/cosmos/ibc-go/v7/modules/core/02-client" - connection "github.com/cosmos/ibc-go/v7/modules/core/03-connection" - channel "github.com/cosmos/ibc-go/v7/modules/core/04-channel" - "github.com/cosmos/ibc-go/v7/modules/core/keeper" - "github.com/cosmos/ibc-go/v7/modules/core/types" + client "github.com/cosmos/ibc-go/v8/modules/core/02-client" + connection "github.com/cosmos/ibc-go/v8/modules/core/03-connection" + channel "github.com/cosmos/ibc-go/v8/modules/core/04-channel" + "github.com/cosmos/ibc-go/v8/modules/core/keeper" + "github.com/cosmos/ibc-go/v8/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 e18b49fb013..d801119ab24 100644 --- a/modules/core/genesis_test.go +++ b/modules/core/genesis_test.go @@ -8,16 +8,16 @@ import ( "github.com/cosmos/cosmos-sdk/codec" - ibc "github.com/cosmos/ibc-go/v7/modules/core" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - "github.com/cosmos/ibc-go/v7/modules/core/types" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v7/testing" - "github.com/cosmos/ibc-go/v7/testing/simapp" + ibc "github.com/cosmos/ibc-go/v8/modules/core" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/core/types" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v8/testing" + "github.com/cosmos/ibc-go/v8/testing/simapp" ) const ( diff --git a/modules/core/keeper/grpc_query.go b/modules/core/keeper/grpc_query.go index 0a7f7f7ee28..bfdce2c6015 100644 --- a/modules/core/keeper/grpc_query.go +++ b/modules/core/keeper/grpc_query.go @@ -3,9 +3,9 @@ package keeper import ( "context" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" ) // ClientState implements the IBC QueryServer interface diff --git a/modules/core/keeper/keeper.go b/modules/core/keeper/keeper.go index 43700187a5a..040d0a3ffed 100644 --- a/modules/core/keeper/keeper.go +++ b/modules/core/keeper/keeper.go @@ -10,14 +10,14 @@ import ( paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" capabilitykeeper "github.com/cosmos/ibc-go/modules/capability/keeper" - clientkeeper "github.com/cosmos/ibc-go/v7/modules/core/02-client/keeper" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - connectionkeeper "github.com/cosmos/ibc-go/v7/modules/core/03-connection/keeper" - connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - channelkeeper "github.com/cosmos/ibc-go/v7/modules/core/04-channel/keeper" - portkeeper "github.com/cosmos/ibc-go/v7/modules/core/05-port/keeper" - porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" - "github.com/cosmos/ibc-go/v7/modules/core/types" + clientkeeper "github.com/cosmos/ibc-go/v8/modules/core/02-client/keeper" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + connectionkeeper "github.com/cosmos/ibc-go/v8/modules/core/03-connection/keeper" + connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + channelkeeper "github.com/cosmos/ibc-go/v8/modules/core/04-channel/keeper" + portkeeper "github.com/cosmos/ibc-go/v8/modules/core/05-port/keeper" + porttypes "github.com/cosmos/ibc-go/v8/modules/core/05-port/types" + "github.com/cosmos/ibc-go/v8/modules/core/types" ) var _ types.QueryServer = (*Keeper)(nil) diff --git a/modules/core/keeper/keeper_test.go b/modules/core/keeper/keeper_test.go index 7f8e6e8af01..58e8167fb1c 100644 --- a/modules/core/keeper/keeper_test.go +++ b/modules/core/keeper/keeper_test.go @@ -13,10 +13,10 @@ import ( stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" capabilitykeeper "github.com/cosmos/ibc-go/modules/capability/keeper" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibckeeper "github.com/cosmos/ibc-go/v7/modules/core/keeper" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibckeeper "github.com/cosmos/ibc-go/v8/modules/core/keeper" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) type KeeperTestSuite struct { diff --git a/modules/core/keeper/migrations.go b/modules/core/keeper/migrations.go index ed7b42d59b0..9afaddcb3c7 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/v7/modules/core/02-client/keeper" + clientkeeper "github.com/cosmos/ibc-go/v8/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 ce344c9b038..ab4a5874000 100644 --- a/modules/core/keeper/msg_server.go +++ b/modules/core/keeper/msg_server.go @@ -10,12 +10,12 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" - coretypes "github.com/cosmos/ibc-go/v7/modules/core/types" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v8/modules/core/05-port/types" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + coretypes "github.com/cosmos/ibc-go/v8/modules/core/types" ) var ( diff --git a/modules/core/keeper/msg_server_test.go b/modules/core/keeper/msg_server_test.go index d53a2d7fa30..2be0075097b 100644 --- a/modules/core/keeper/msg_server_test.go +++ b/modules/core/keeper/msg_server_test.go @@ -3,16 +3,16 @@ package keeper_test import ( upgradetypes "cosmossdk.io/x/upgrade/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - "github.com/cosmos/ibc-go/v7/modules/core/keeper" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v7/testing" - ibcmock "github.com/cosmos/ibc-go/v7/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/core/keeper" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v8/testing" + ibcmock "github.com/cosmos/ibc-go/v8/testing/mock" ) var ( diff --git a/modules/core/migrations/v7/genesis.go b/modules/core/migrations/v7/genesis.go index 8647c4c77a7..581f28558fa 100644 --- a/modules/core/migrations/v7/genesis.go +++ b/modules/core/migrations/v7/genesis.go @@ -4,9 +4,9 @@ import ( "github.com/cosmos/cosmos-sdk/codec" genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types" - clientv7 "github.com/cosmos/ibc-go/v7/modules/core/02-client/migrations/v7" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" - "github.com/cosmos/ibc-go/v7/modules/core/types" + clientv7 "github.com/cosmos/ibc-go/v8/modules/core/02-client/migrations/v7" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/core/types" ) // MigrateGenesis accepts an exported IBC client genesis file and migrates it to: diff --git a/modules/core/migrations/v7/genesis_test.go b/modules/core/migrations/v7/genesis_test.go index 77111b2b705..73d8dc8e916 100644 --- a/modules/core/migrations/v7/genesis_test.go +++ b/modules/core/migrations/v7/genesis_test.go @@ -9,14 +9,14 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types" - ibcclient "github.com/cosmos/ibc-go/v7/modules/core/02-client" - clientv7 "github.com/cosmos/ibc-go/v7/modules/core/02-client/migrations/v7" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" - v7 "github.com/cosmos/ibc-go/v7/modules/core/migrations/v7" - "github.com/cosmos/ibc-go/v7/modules/core/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + ibcclient "github.com/cosmos/ibc-go/v8/modules/core/02-client" + clientv7 "github.com/cosmos/ibc-go/v8/modules/core/02-client/migrations/v7" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" + v7 "github.com/cosmos/ibc-go/v8/modules/core/migrations/v7" + "github.com/cosmos/ibc-go/v8/modules/core/types" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) type MigrationsV7TestSuite struct { diff --git a/modules/core/module.go b/modules/core/module.go index 9d1fb7010d8..65d59272829 100644 --- a/modules/core/module.go +++ b/modules/core/module.go @@ -19,17 +19,17 @@ import ( abci "github.com/cometbft/cometbft/abci/types" - ibcclient "github.com/cosmos/ibc-go/v7/modules/core/02-client" - clientkeeper "github.com/cosmos/ibc-go/v7/modules/core/02-client/keeper" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - connectionkeeper "github.com/cosmos/ibc-go/v7/modules/core/03-connection/keeper" - connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/v7/modules/core/client/cli" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - "github.com/cosmos/ibc-go/v7/modules/core/keeper" - "github.com/cosmos/ibc-go/v7/modules/core/simulation" - "github.com/cosmos/ibc-go/v7/modules/core/types" + ibcclient "github.com/cosmos/ibc-go/v8/modules/core/02-client" + clientkeeper "github.com/cosmos/ibc-go/v8/modules/core/02-client/keeper" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + connectionkeeper "github.com/cosmos/ibc-go/v8/modules/core/03-connection/keeper" + connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v8/modules/core/client/cli" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/core/keeper" + "github.com/cosmos/ibc-go/v8/modules/core/simulation" + "github.com/cosmos/ibc-go/v8/modules/core/types" ) var ( diff --git a/modules/core/simulation/decoder.go b/modules/core/simulation/decoder.go index 1ed5bf72ad8..4f707df0836 100644 --- a/modules/core/simulation/decoder.go +++ b/modules/core/simulation/decoder.go @@ -5,11 +5,11 @@ import ( "github.com/cosmos/cosmos-sdk/types/kv" - clientsim "github.com/cosmos/ibc-go/v7/modules/core/02-client/simulation" - connectionsim "github.com/cosmos/ibc-go/v7/modules/core/03-connection/simulation" - channelsim "github.com/cosmos/ibc-go/v7/modules/core/04-channel/simulation" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" - "github.com/cosmos/ibc-go/v7/modules/core/keeper" + clientsim "github.com/cosmos/ibc-go/v8/modules/core/02-client/simulation" + connectionsim "github.com/cosmos/ibc-go/v8/modules/core/03-connection/simulation" + channelsim "github.com/cosmos/ibc-go/v8/modules/core/04-channel/simulation" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v8/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 899eaaed271..438b69577e9 100644 --- a/modules/core/simulation/decoder_test.go +++ b/modules/core/simulation/decoder_test.go @@ -8,13 +8,13 @@ import ( "github.com/cosmos/cosmos-sdk/types/kv" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/simulation" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - "github.com/cosmos/ibc-go/v7/testing/simapp" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/simulation" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + "github.com/cosmos/ibc-go/v8/testing/simapp" ) func TestDecodeStore(t *testing.T) { diff --git a/modules/core/simulation/genesis.go b/modules/core/simulation/genesis.go index 524614d9610..0c2fb93b3da 100644 --- a/modules/core/simulation/genesis.go +++ b/modules/core/simulation/genesis.go @@ -9,14 +9,14 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" - clientsims "github.com/cosmos/ibc-go/v7/modules/core/02-client/simulation" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - connectionsims "github.com/cosmos/ibc-go/v7/modules/core/03-connection/simulation" - connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - channelsims "github.com/cosmos/ibc-go/v7/modules/core/04-channel/simulation" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" - "github.com/cosmos/ibc-go/v7/modules/core/types" + clientsims "github.com/cosmos/ibc-go/v8/modules/core/02-client/simulation" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + connectionsims "github.com/cosmos/ibc-go/v8/modules/core/03-connection/simulation" + connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + channelsims "github.com/cosmos/ibc-go/v8/modules/core/04-channel/simulation" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/core/types" ) // Simulation parameter constants diff --git a/modules/core/simulation/genesis_test.go b/modules/core/simulation/genesis_test.go index bc589d016eb..3a22600bbf2 100644 --- a/modules/core/simulation/genesis_test.go +++ b/modules/core/simulation/genesis_test.go @@ -15,9 +15,9 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" - "github.com/cosmos/ibc-go/v7/modules/core/simulation" - "github.com/cosmos/ibc-go/v7/modules/core/types" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/core/simulation" + "github.com/cosmos/ibc-go/v8/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 e2c67424026..57b4018adb8 100644 --- a/modules/core/types/codec.go +++ b/modules/core/types/codec.go @@ -3,11 +3,11 @@ package types import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - localhost "github.com/cosmos/ibc-go/v7/modules/light-clients/09-localhost" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + localhost "github.com/cosmos/ibc-go/v8/modules/light-clients/09-localhost" ) // RegisterInterfaces registers ibc types against interfaces using the global InterfaceRegistry. diff --git a/modules/core/types/genesis.go b/modules/core/types/genesis.go index 728269402b5..df8c396777e 100644 --- a/modules/core/types/genesis.go +++ b/modules/core/types/genesis.go @@ -3,9 +3,9 @@ package types import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" ) var _ codectypes.UnpackInterfacesMessage = (*GenesisState)(nil) diff --git a/modules/core/types/genesis.pb.go b/modules/core/types/genesis.pb.go index 6e7ea86d410..72bd25426e2 100644 --- a/modules/core/types/genesis.pb.go +++ b/modules/core/types/genesis.pb.go @@ -7,9 +7,9 @@ import ( fmt "fmt" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" - types "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - types1 "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - types2 "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + types "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + types1 "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + types2 "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" io "io" math "math" math_bits "math/bits" @@ -100,7 +100,7 @@ var fileDescriptor_b9a49c5663e6fc59 = []byte{ // 293 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x91, 0xb1, 0x4e, 0xeb, 0x30, 0x14, 0x40, 0x93, 0xbe, 0x27, 0x86, 0x00, 0x45, 0x8d, 0x18, 0x50, 0x06, 0x37, 0x45, 0x1d, 0x58, - 0xb0, 0x15, 0x18, 0xd8, 0xbb, 0xc0, 0x82, 0x84, 0x60, 0x82, 0x05, 0x35, 0xc6, 0x72, 0x2d, 0x25, + 0xb0, 0x15, 0x58, 0x98, 0xbb, 0xc0, 0x82, 0x84, 0x60, 0x82, 0x05, 0x35, 0xc6, 0x72, 0x2d, 0x25, 0xbe, 0x55, 0xed, 0x46, 0xe2, 0x17, 0x98, 0xf8, 0xac, 0x8e, 0x1d, 0x99, 0x10, 0x4a, 0x7e, 0x04, 0xd5, 0x36, 0x4e, 0xa4, 0xa8, 0x5b, 0x94, 0x73, 0x7c, 0x7c, 0x6d, 0x47, 0x63, 0x91, 0x53, 0x42, 0x61, 0xc5, 0x88, 0x7e, 0x5f, 0x32, 0x45, 0xaa, 0x8c, 0x70, 0x26, 0x99, 0x12, 0x0a, 0x2f, 0x57, @@ -115,8 +115,8 @@ var fileDescriptor_b9a49c5663e6fc59 = []byte{ 0xec, 0xd0, 0xec, 0x6e, 0x53, 0xa3, 0x70, 0x5b, 0xa3, 0xf0, 0xa7, 0x46, 0xe1, 0x67, 0x83, 0x82, 0x6d, 0x83, 0x82, 0xaf, 0x06, 0x05, 0x2f, 0x98, 0x0b, 0xbd, 0x58, 0xe7, 0x98, 0x42, 0x49, 0x28, 0xa8, 0x12, 0x14, 0x11, 0x39, 0xbd, 0xe4, 0x40, 0xaa, 0x1b, 0x52, 0xc2, 0xdb, 0xba, 0x60, 0xaa, - 0xf3, 0xf6, 0xf9, 0x81, 0xb9, 0xdd, 0xeb, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xc3, 0xc7, 0x25, - 0x5b, 0x14, 0x02, 0x00, 0x00, + 0xf3, 0xf6, 0xf9, 0x81, 0xb9, 0xdd, 0xeb, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x78, 0xdc, 0x83, + 0x52, 0x14, 0x02, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/modules/core/types/query.go b/modules/core/types/query.go index c79190a84c6..c6872ae461a 100644 --- a/modules/core/types/query.go +++ b/modules/core/types/query.go @@ -3,12 +3,12 @@ package types import ( "github.com/cosmos/gogoproto/grpc" - client "github.com/cosmos/ibc-go/v7/modules/core/02-client" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - connection "github.com/cosmos/ibc-go/v7/modules/core/03-connection" - connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - channel "github.com/cosmos/ibc-go/v7/modules/core/04-channel" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + client "github.com/cosmos/ibc-go/v8/modules/core/02-client" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + connection "github.com/cosmos/ibc-go/v8/modules/core/03-connection" + connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + channel "github.com/cosmos/ibc-go/v8/modules/core/04-channel" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" ) // QueryServer defines the IBC interfaces that the gRPC query server must implement diff --git a/modules/light-clients/06-solomachine/client_state.go b/modules/light-clients/06-solomachine/client_state.go index 334188542f6..34e439607cd 100644 --- a/modules/light-clients/06-solomachine/client_state.go +++ b/modules/light-clients/06-solomachine/client_state.go @@ -11,11 +11,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/tx/signing" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) var _ exported.ClientState = (*ClientState)(nil) diff --git a/modules/light-clients/06-solomachine/client_state_test.go b/modules/light-clients/06-solomachine/client_state_test.go index 418c8c6f9c8..549d8f9f7e1 100644 --- a/modules/light-clients/06-solomachine/client_state_test.go +++ b/modules/light-clients/06-solomachine/client_state_test.go @@ -5,15 +5,15 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - solomachine "github.com/cosmos/ibc-go/v7/modules/light-clients/06-solomachine" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v7/testing" - ibcmock "github.com/cosmos/ibc-go/v7/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v8/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v8/testing" + ibcmock "github.com/cosmos/ibc-go/v8/testing/mock" ) const ( diff --git a/modules/light-clients/06-solomachine/codec.go b/modules/light-clients/06-solomachine/codec.go index 2050df17d31..9ab20713eeb 100644 --- a/modules/light-clients/06-solomachine/codec.go +++ b/modules/light-clients/06-solomachine/codec.go @@ -7,7 +7,7 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" "github.com/cosmos/cosmos-sdk/types/tx/signing" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // RegisterInterfaces register the ibc channel submodule interfaces to protobuf diff --git a/modules/light-clients/06-solomachine/consensus_state.go b/modules/light-clients/06-solomachine/consensus_state.go index 3394311ab96..a9da6439d1e 100644 --- a/modules/light-clients/06-solomachine/consensus_state.go +++ b/modules/light-clients/06-solomachine/consensus_state.go @@ -7,8 +7,8 @@ import ( cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) var _ exported.ConsensusState = (*ConsensusState)(nil) diff --git a/modules/light-clients/06-solomachine/consensus_state_test.go b/modules/light-clients/06-solomachine/consensus_state_test.go index 4585ae533de..73beba815e9 100644 --- a/modules/light-clients/06-solomachine/consensus_state_test.go +++ b/modules/light-clients/06-solomachine/consensus_state_test.go @@ -1,9 +1,9 @@ package solomachine_test import ( - "github.com/cosmos/ibc-go/v7/modules/core/exported" - solomachine "github.com/cosmos/ibc-go/v7/modules/light-clients/06-solomachine" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v8/modules/light-clients/06-solomachine" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (suite *SoloMachineTestSuite) TestConsensusState() { diff --git a/modules/light-clients/06-solomachine/header.go b/modules/light-clients/06-solomachine/header.go index 38c59ba7054..d8843116aed 100644 --- a/modules/light-clients/06-solomachine/header.go +++ b/modules/light-clients/06-solomachine/header.go @@ -7,8 +7,8 @@ import ( cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // SentinelHeaderPath defines a placeholder path value used for headers in solomachine client updates diff --git a/modules/light-clients/06-solomachine/header_test.go b/modules/light-clients/06-solomachine/header_test.go index d0e8e31b29a..ebb868c5df5 100644 --- a/modules/light-clients/06-solomachine/header_test.go +++ b/modules/light-clients/06-solomachine/header_test.go @@ -1,9 +1,9 @@ package solomachine_test import ( - "github.com/cosmos/ibc-go/v7/modules/core/exported" - solomachine "github.com/cosmos/ibc-go/v7/modules/light-clients/06-solomachine" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v8/modules/light-clients/06-solomachine" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (suite *SoloMachineTestSuite) TestHeaderValidateBasic() { diff --git a/modules/light-clients/06-solomachine/misbehaviour.go b/modules/light-clients/06-solomachine/misbehaviour.go index becc6ca1e2f..542967998fa 100644 --- a/modules/light-clients/06-solomachine/misbehaviour.go +++ b/modules/light-clients/06-solomachine/misbehaviour.go @@ -5,8 +5,8 @@ import ( errorsmod "cosmossdk.io/errors" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) var _ exported.ClientMessage = (*Misbehaviour)(nil) diff --git a/modules/light-clients/06-solomachine/misbehaviour_handle.go b/modules/light-clients/06-solomachine/misbehaviour_handle.go index 9eb700ccbe0..ac63a43d6f3 100644 --- a/modules/light-clients/06-solomachine/misbehaviour_handle.go +++ b/modules/light-clients/06-solomachine/misbehaviour_handle.go @@ -7,8 +7,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // CheckForMisbehaviour returns true for type Misbehaviour (passed VerifyClientMessage check), otherwise returns false diff --git a/modules/light-clients/06-solomachine/misbehaviour_test.go b/modules/light-clients/06-solomachine/misbehaviour_test.go index 0ac774a6ea5..5fa0dd8a210 100644 --- a/modules/light-clients/06-solomachine/misbehaviour_test.go +++ b/modules/light-clients/06-solomachine/misbehaviour_test.go @@ -1,9 +1,9 @@ package solomachine_test import ( - "github.com/cosmos/ibc-go/v7/modules/core/exported" - solomachine "github.com/cosmos/ibc-go/v7/modules/light-clients/06-solomachine" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v8/modules/light-clients/06-solomachine" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (suite *SoloMachineTestSuite) TestMisbehaviour() { diff --git a/modules/light-clients/06-solomachine/proof_test.go b/modules/light-clients/06-solomachine/proof_test.go index 25702a19c84..69d033b99ed 100644 --- a/modules/light-clients/06-solomachine/proof_test.go +++ b/modules/light-clients/06-solomachine/proof_test.go @@ -4,7 +4,7 @@ import ( cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" "github.com/cosmos/cosmos-sdk/types/tx/signing" - solomachine "github.com/cosmos/ibc-go/v7/modules/light-clients/06-solomachine" + solomachine "github.com/cosmos/ibc-go/v8/modules/light-clients/06-solomachine" ) func (suite *SoloMachineTestSuite) TestVerifySignature() { diff --git a/modules/light-clients/06-solomachine/proposal_handle.go b/modules/light-clients/06-solomachine/proposal_handle.go index a8bbe6761a4..4c76f40334a 100644 --- a/modules/light-clients/06-solomachine/proposal_handle.go +++ b/modules/light-clients/06-solomachine/proposal_handle.go @@ -9,8 +9,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // CheckSubstituteAndUpdateState verifies that the subject is allowed to be updated by diff --git a/modules/light-clients/06-solomachine/proposal_handle_test.go b/modules/light-clients/06-solomachine/proposal_handle_test.go index 22a3c0d624a..35109d66a41 100644 --- a/modules/light-clients/06-solomachine/proposal_handle_test.go +++ b/modules/light-clients/06-solomachine/proposal_handle_test.go @@ -1,12 +1,12 @@ package solomachine_test import ( - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - solomachine "github.com/cosmos/ibc-go/v7/modules/light-clients/06-solomachine" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v8/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (suite *SoloMachineTestSuite) TestCheckSubstituteAndUpdateState() { diff --git a/modules/light-clients/06-solomachine/solomachine.pb.go b/modules/light-clients/06-solomachine/solomachine.pb.go index 91b84289abe..db11bb15bae 100644 --- a/modules/light-clients/06-solomachine/solomachine.pb.go +++ b/modules/light-clients/06-solomachine/solomachine.pb.go @@ -384,7 +384,7 @@ var fileDescriptor_264187157b9220a4 = []byte{ // 619 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x54, 0xcf, 0x6e, 0xd3, 0x4e, 0x10, 0xce, 0xb6, 0xfe, 0x55, 0xcd, 0x3a, 0xbf, 0x14, 0x59, 0x3d, 0x84, 0x82, 0xdc, 0xa8, 0x12, - 0xa2, 0x97, 0xd8, 0x34, 0x41, 0x20, 0x95, 0x53, 0xdb, 0x08, 0x21, 0x01, 0x02, 0xb9, 0x15, 0x42, + 0xa2, 0x97, 0xd8, 0x34, 0x41, 0x08, 0x95, 0x53, 0xdb, 0x08, 0x21, 0x01, 0x02, 0xb9, 0x15, 0x42, 0x5c, 0xa2, 0xb5, 0xbd, 0x71, 0x56, 0xd8, 0xbb, 0xa9, 0x77, 0x9d, 0x28, 0x88, 0x07, 0x40, 0xe2, 0xc2, 0x85, 0x3b, 0x27, 0xae, 0xbc, 0x06, 0xc7, 0x1e, 0x39, 0x56, 0xc9, 0x8b, 0x20, 0xaf, 0xed, 0xd8, 0x71, 0xd3, 0xe4, 0xc0, 0x6d, 0x66, 0x3c, 0xf3, 0xed, 0xf7, 0xcd, 0x1f, 0xc3, 0x23, 0x62, @@ -420,7 +420,7 @@ var fileDescriptor_264187157b9220a4 = []byte{ 0x95, 0x47, 0xc4, 0x20, 0xb2, 0x0d, 0x87, 0x05, 0xa6, 0xc3, 0x78, 0xc0, 0xb8, 0x49, 0x6c, 0xa7, 0xe5, 0x31, 0x73, 0xf4, 0xd4, 0x0c, 0x98, 0x1b, 0xf9, 0x98, 0x27, 0xbf, 0xde, 0x56, 0xf6, 0xef, 0x7d, 0xf4, 0xa4, 0x55, 0xd8, 0xb9, 0x67, 0x05, 0xdb, 0xde, 0x92, 0x7c, 0x3b, 0x7f, 0x03, 0x00, - 0x00, 0xff, 0xff, 0x7a, 0x66, 0xd4, 0xda, 0xb1, 0x05, 0x00, 0x00, + 0x00, 0xff, 0xff, 0x99, 0x38, 0x5b, 0xce, 0xb1, 0x05, 0x00, 0x00, } func (m *ClientState) Marshal() (dAtA []byte, err error) { diff --git a/modules/light-clients/06-solomachine/solomachine_test.go b/modules/light-clients/06-solomachine/solomachine_test.go index fe974f8f585..a14da421a1b 100644 --- a/modules/light-clients/06-solomachine/solomachine_test.go +++ b/modules/light-clients/06-solomachine/solomachine_test.go @@ -14,14 +14,14 @@ import ( "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" "github.com/cosmos/cosmos-sdk/testutil/testdata" - transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - solomachine "github.com/cosmos/ibc-go/v7/modules/light-clients/06-solomachine" - ibctesting "github.com/cosmos/ibc-go/v7/testing" - "github.com/cosmos/ibc-go/v7/testing/mock" + transfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v8/modules/light-clients/06-solomachine" + ibctesting "github.com/cosmos/ibc-go/v8/testing" + "github.com/cosmos/ibc-go/v8/testing/mock" ) var channelIDSolomachine = "channel-on-solomachine" // channelID generated on solo machine side diff --git a/modules/light-clients/06-solomachine/update.go b/modules/light-clients/06-solomachine/update.go index 366856e852b..d013031ba48 100644 --- a/modules/light-clients/06-solomachine/update.go +++ b/modules/light-clients/06-solomachine/update.go @@ -9,8 +9,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // VerifyClientMessage introspects the provided ClientMessage and checks its validity diff --git a/modules/light-clients/06-solomachine/update_test.go b/modules/light-clients/06-solomachine/update_test.go index 923237b0d06..78220c606a1 100644 --- a/modules/light-clients/06-solomachine/update_test.go +++ b/modules/light-clients/06-solomachine/update_test.go @@ -4,12 +4,12 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - solomachine "github.com/cosmos/ibc-go/v7/modules/light-clients/06-solomachine" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v8/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (suite *SoloMachineTestSuite) TestVerifyClientMessageHeader() { diff --git a/modules/light-clients/07-tendermint/client_state.go b/modules/light-clients/07-tendermint/client_state.go index 93c009b975f..47a3eb8e4bc 100644 --- a/modules/light-clients/07-tendermint/client_state.go +++ b/modules/light-clients/07-tendermint/client_state.go @@ -15,10 +15,10 @@ import ( "github.com/cometbft/cometbft/light" tmtypes "github.com/cometbft/cometbft/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) var _ exported.ClientState = (*ClientState)(nil) diff --git a/modules/light-clients/07-tendermint/client_state_test.go b/modules/light-clients/07-tendermint/client_state_test.go index 0eee6512d0c..2f233117ee1 100644 --- a/modules/light-clients/07-tendermint/client_state_test.go +++ b/modules/light-clients/07-tendermint/client_state_test.go @@ -7,15 +7,15 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v7/testing" - ibcmock "github.com/cosmos/ibc-go/v7/testing/mock" + transfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v8/testing" + ibcmock "github.com/cosmos/ibc-go/v8/testing/mock" ) const ( diff --git a/modules/light-clients/07-tendermint/codec.go b/modules/light-clients/07-tendermint/codec.go index 09f093ab9d7..af75f9f881b 100644 --- a/modules/light-clients/07-tendermint/codec.go +++ b/modules/light-clients/07-tendermint/codec.go @@ -3,7 +3,7 @@ package tendermint import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // RegisterInterfaces registers the tendermint concrete client-related diff --git a/modules/light-clients/07-tendermint/consensus_state.go b/modules/light-clients/07-tendermint/consensus_state.go index b52fec596f9..e494d295727 100644 --- a/modules/light-clients/07-tendermint/consensus_state.go +++ b/modules/light-clients/07-tendermint/consensus_state.go @@ -8,9 +8,9 @@ import ( tmbytes "github.com/cometbft/cometbft/libs/bytes" tmtypes "github.com/cometbft/cometbft/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) var _ exported.ConsensusState = (*ConsensusState)(nil) diff --git a/modules/light-clients/07-tendermint/consensus_state_test.go b/modules/light-clients/07-tendermint/consensus_state_test.go index 853217dd9cc..6518bc8c686 100644 --- a/modules/light-clients/07-tendermint/consensus_state_test.go +++ b/modules/light-clients/07-tendermint/consensus_state_test.go @@ -3,9 +3,9 @@ package tendermint_test import ( "time" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" ) func (suite *TendermintTestSuite) TestConsensusStateValidateBasic() { diff --git a/modules/light-clients/07-tendermint/genesis.go b/modules/light-clients/07-tendermint/genesis.go index 45ddea672bd..62e8660fef3 100644 --- a/modules/light-clients/07-tendermint/genesis.go +++ b/modules/light-clients/07-tendermint/genesis.go @@ -3,8 +3,8 @@ package tendermint import ( storetypes "cosmossdk.io/store/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/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/genesis_test.go b/modules/light-clients/07-tendermint/genesis_test.go index 26033f6bfa7..b422698a7fc 100644 --- a/modules/light-clients/07-tendermint/genesis_test.go +++ b/modules/light-clients/07-tendermint/genesis_test.go @@ -3,9 +3,9 @@ package tendermint_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) // expected export ordering: diff --git a/modules/light-clients/07-tendermint/header.go b/modules/light-clients/07-tendermint/header.go index caa81e7493c..5ad78882aab 100644 --- a/modules/light-clients/07-tendermint/header.go +++ b/modules/light-clients/07-tendermint/header.go @@ -8,9 +8,9 @@ import ( tmtypes "github.com/cometbft/cometbft/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) var _ exported.ClientMessage = (*Header)(nil) diff --git a/modules/light-clients/07-tendermint/header_test.go b/modules/light-clients/07-tendermint/header_test.go index 1a1769927e9..c473ff7998d 100644 --- a/modules/light-clients/07-tendermint/header_test.go +++ b/modules/light-clients/07-tendermint/header_test.go @@ -5,9 +5,9 @@ import ( tmprotocrypto "github.com/cometbft/cometbft/proto/tendermint/crypto" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" ) func (suite *TendermintTestSuite) TestGetHeight() { diff --git a/modules/light-clients/07-tendermint/migrations/expected_keepers.go b/modules/light-clients/07-tendermint/migrations/expected_keepers.go index a90b381b76b..a28b2673e7e 100644 --- a/modules/light-clients/07-tendermint/migrations/expected_keepers.go +++ b/modules/light-clients/07-tendermint/migrations/expected_keepers.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // ClientKeeper expected account IBC client keeper diff --git a/modules/light-clients/07-tendermint/migrations/migrations.go b/modules/light-clients/07-tendermint/migrations/migrations.go index bcb1deebeb1..7eb6e91b1f2 100644 --- a/modules/light-clients/07-tendermint/migrations/migrations.go +++ b/modules/light-clients/07-tendermint/migrations/migrations.go @@ -6,9 +6,9 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" ) // PruneExpiredConsensusStates prunes all expired tendermint consensus states. This function diff --git a/modules/light-clients/07-tendermint/migrations/migrations_test.go b/modules/light-clients/07-tendermint/migrations/migrations_test.go index 906aa1f0932..f54b1551bb4 100644 --- a/modules/light-clients/07-tendermint/migrations/migrations_test.go +++ b/modules/light-clients/07-tendermint/migrations/migrations_test.go @@ -6,12 +6,12 @@ import ( testifysuite "github.com/stretchr/testify/suite" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - ibctmmigrations "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint/migrations" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + ibctmmigrations "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint/migrations" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) type MigrationsTestSuite struct { diff --git a/modules/light-clients/07-tendermint/misbehaviour.go b/modules/light-clients/07-tendermint/misbehaviour.go index de6c97d191a..fc002fc9bff 100644 --- a/modules/light-clients/07-tendermint/misbehaviour.go +++ b/modules/light-clients/07-tendermint/misbehaviour.go @@ -8,9 +8,9 @@ import ( tmproto "github.com/cometbft/cometbft/proto/tendermint/types" tmtypes "github.com/cometbft/cometbft/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) var _ exported.ClientMessage = (*Misbehaviour)(nil) diff --git a/modules/light-clients/07-tendermint/misbehaviour_handle.go b/modules/light-clients/07-tendermint/misbehaviour_handle.go index 542afc0ee82..013efd908e5 100644 --- a/modules/light-clients/07-tendermint/misbehaviour_handle.go +++ b/modules/light-clients/07-tendermint/misbehaviour_handle.go @@ -13,8 +13,8 @@ import ( tmtypes "github.com/cometbft/cometbft/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // CheckForMisbehaviour detects duplicate height misbehaviour and BFT time violation misbehaviour diff --git a/modules/light-clients/07-tendermint/misbehaviour_handle_test.go b/modules/light-clients/07-tendermint/misbehaviour_handle_test.go index 0f77f6c3cbf..0f01eaeefcc 100644 --- a/modules/light-clients/07-tendermint/misbehaviour_handle_test.go +++ b/modules/light-clients/07-tendermint/misbehaviour_handle_test.go @@ -7,12 +7,12 @@ import ( tmtypes "github.com/cometbft/cometbft/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - solomachine "github.com/cosmos/ibc-go/v7/modules/light-clients/06-solomachine" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v7/testing" - ibctestingmock "github.com/cosmos/ibc-go/v7/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v8/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v8/testing" + ibctestingmock "github.com/cosmos/ibc-go/v8/testing/mock" ) func (suite *TendermintTestSuite) TestVerifyMisbehaviour() { diff --git a/modules/light-clients/07-tendermint/misbehaviour_test.go b/modules/light-clients/07-tendermint/misbehaviour_test.go index 1cbde65f390..20c0f2c9502 100644 --- a/modules/light-clients/07-tendermint/misbehaviour_test.go +++ b/modules/light-clients/07-tendermint/misbehaviour_test.go @@ -7,11 +7,11 @@ import ( tmproto "github.com/cometbft/cometbft/proto/tendermint/types" tmtypes "github.com/cometbft/cometbft/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v7/testing" - ibctestingmock "github.com/cosmos/ibc-go/v7/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v8/testing" + ibctestingmock "github.com/cosmos/ibc-go/v8/testing/mock" ) func (suite *TendermintTestSuite) TestMisbehaviour() { diff --git a/modules/light-clients/07-tendermint/proposal_handle.go b/modules/light-clients/07-tendermint/proposal_handle.go index bb0117d97e6..b2fabeac68e 100644 --- a/modules/light-clients/07-tendermint/proposal_handle.go +++ b/modules/light-clients/07-tendermint/proposal_handle.go @@ -10,8 +10,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // CheckSubstituteAndUpdateState will try to update the client with the state of the diff --git a/modules/light-clients/07-tendermint/proposal_handle_test.go b/modules/light-clients/07-tendermint/proposal_handle_test.go index e6c3ef7d906..7f7ad06d346 100644 --- a/modules/light-clients/07-tendermint/proposal_handle_test.go +++ b/modules/light-clients/07-tendermint/proposal_handle_test.go @@ -3,10 +3,10 @@ package tendermint_test import ( "time" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) var frozenHeight = clienttypes.NewHeight(0, 1) diff --git a/modules/light-clients/07-tendermint/store.go b/modules/light-clients/07-tendermint/store.go index 8117890965e..d1978fe6034 100644 --- a/modules/light-clients/07-tendermint/store.go +++ b/modules/light-clients/07-tendermint/store.go @@ -11,9 +11,9 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) /* diff --git a/modules/light-clients/07-tendermint/store_test.go b/modules/light-clients/07-tendermint/store_test.go index b970a6469ae..2248fc15005 100644 --- a/modules/light-clients/07-tendermint/store_test.go +++ b/modules/light-clients/07-tendermint/store_test.go @@ -4,13 +4,13 @@ import ( "math" "time" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - solomachine "github.com/cosmos/ibc-go/v7/modules/light-clients/06-solomachine" - tendermint "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v8/modules/light-clients/06-solomachine" + tendermint "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (suite *TendermintTestSuite) TestGetConsensusState() { diff --git a/modules/light-clients/07-tendermint/tendermint.pb.go b/modules/light-clients/07-tendermint/tendermint.pb.go index e88522af74f..16afd1764e0 100644 --- a/modules/light-clients/07-tendermint/tendermint.pb.go +++ b/modules/light-clients/07-tendermint/tendermint.pb.go @@ -10,8 +10,8 @@ import ( _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" github_com_cosmos_gogoproto_types "github.com/cosmos/gogoproto/types" - types "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - types1 "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" + types "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + types1 "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" _go "github.com/cosmos/ics23/go" _ "google.golang.org/protobuf/types/known/durationpb" _ "google.golang.org/protobuf/types/known/timestamppb" @@ -326,63 +326,63 @@ var fileDescriptor_c6d6cf2b288949be = []byte{ // 943 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x95, 0x4f, 0x6f, 0xe3, 0xc4, 0x1b, 0xc7, 0xe3, 0x34, 0xdb, 0x26, 0x93, 0x64, 0xfb, 0xfb, 0x8d, 0x56, 0xc8, 0xad, 0xaa, 0x24, - 0xf4, 0x00, 0xb9, 0xd4, 0xde, 0x64, 0x91, 0x56, 0x62, 0xe1, 0x40, 0xba, 0x0b, 0xed, 0xb2, 0x85, - 0xca, 0x05, 0x0e, 0x5c, 0xac, 0xb1, 0x3d, 0xb1, 0x47, 0x6b, 0x7b, 0xac, 0x99, 0x71, 0x48, 0x39, - 0x71, 0xe4, 0xb8, 0x47, 0x8e, 0xbc, 0x04, 0x5e, 0xc6, 0x1e, 0x7b, 0x41, 0xe2, 0x54, 0x50, 0xfa, - 0x2e, 0x38, 0xa1, 0xf9, 0xe3, 0xc4, 0x94, 0x15, 0x5b, 0x71, 0x89, 0x9e, 0x99, 0xe7, 0xfb, 0x7c, - 0x32, 0xf3, 0xfc, 0x19, 0x03, 0x97, 0x04, 0xa1, 0x9b, 0x92, 0x38, 0x11, 0x61, 0x4a, 0x70, 0x2e, - 0xb8, 0x2b, 0x70, 0x1e, 0x61, 0x96, 0x91, 0x5c, 0xb8, 0x8b, 0x49, 0x6d, 0xe5, 0x14, 0x8c, 0x0a, - 0x0a, 0x07, 0x24, 0x08, 0x9d, 0x7a, 0x80, 0x53, 0x93, 0x2c, 0x26, 0xfb, 0xa3, 0x5a, 0xbc, 0xb8, - 0x2c, 0x30, 0x77, 0x17, 0x28, 0x25, 0x11, 0x12, 0x94, 0x69, 0xc2, 0xfe, 0xc1, 0x3f, 0x14, 0xea, - 0xb7, 0xf2, 0x86, 0x94, 0x67, 0x94, 0xbb, 0x24, 0xe4, 0xd3, 0x47, 0xf2, 0x04, 0x05, 0xa3, 0x74, - 0x5e, 0x79, 0x07, 0x31, 0xa5, 0x71, 0x8a, 0x5d, 0xb5, 0x0a, 0xca, 0xb9, 0x1b, 0x95, 0x0c, 0x09, - 0x42, 0x73, 0xe3, 0x1f, 0xde, 0xf6, 0x0b, 0x92, 0x61, 0x2e, 0x50, 0x56, 0x54, 0x02, 0x79, 0xdf, - 0x90, 0x32, 0xec, 0xea, 0xe3, 0xcb, 0x7f, 0xd0, 0x96, 0x11, 0xbc, 0xbf, 0x11, 0xd0, 0x2c, 0x23, - 0x22, 0xab, 0x44, 0xeb, 0x95, 0x11, 0x3e, 0x88, 0x69, 0x4c, 0x95, 0xe9, 0x4a, 0x4b, 0xef, 0x1e, - 0xae, 0xee, 0x81, 0xee, 0xb1, 0xe2, 0x5d, 0x08, 0x24, 0x30, 0xdc, 0x03, 0xed, 0x30, 0x41, 0x24, - 0xf7, 0x49, 0x64, 0x5b, 0x23, 0x6b, 0xdc, 0xf1, 0x76, 0xd4, 0xfa, 0x34, 0x82, 0x5f, 0x82, 0xae, - 0x60, 0x25, 0x17, 0x7e, 0x8a, 0x17, 0x38, 0xb5, 0x9b, 0x23, 0x6b, 0xdc, 0x9d, 0x8e, 0x9d, 0x7f, - 0xcf, 0xaf, 0xf3, 0x29, 0x43, 0xa1, 0xbc, 0xf0, 0xac, 0xf5, 0xfa, 0x7a, 0xd8, 0xf0, 0x80, 0x42, - 0xbc, 0x90, 0x04, 0xf8, 0x02, 0xec, 0xaa, 0x15, 0xc9, 0x63, 0xbf, 0xc0, 0x8c, 0xd0, 0xc8, 0xde, - 0x52, 0xd0, 0x3d, 0x47, 0xa7, 0xc5, 0xa9, 0xd2, 0xe2, 0x3c, 0x35, 0x69, 0x9b, 0xb5, 0x25, 0xe5, - 0xa7, 0xdf, 0x87, 0x96, 0x77, 0xbf, 0x8a, 0x3d, 0x57, 0xa1, 0xf0, 0x0b, 0xf0, 0xbf, 0x32, 0x0f, - 0x68, 0x1e, 0xd5, 0x70, 0xad, 0xbb, 0xe3, 0x76, 0xd7, 0xc1, 0x86, 0xf7, 0x39, 0xd8, 0xcd, 0xd0, - 0xd2, 0x0f, 0x53, 0x1a, 0xbe, 0xf4, 0x23, 0x46, 0xe6, 0xc2, 0xbe, 0x77, 0x77, 0x5c, 0x3f, 0x43, - 0xcb, 0x63, 0x19, 0xfa, 0x54, 0x46, 0xc2, 0x67, 0xa0, 0x3f, 0x67, 0xf4, 0x7b, 0x9c, 0xfb, 0x09, - 0x96, 0xb9, 0xb2, 0xb7, 0x15, 0x6a, 0x5f, 0x65, 0x4f, 0x56, 0xcf, 0x31, 0x45, 0x5d, 0x4c, 0x9c, - 0x13, 0xa5, 0x30, 0xf9, 0xea, 0xe9, 0x30, 0xbd, 0x27, 0x31, 0x29, 0x12, 0x98, 0x8b, 0x0a, 0xb3, - 0x73, 0x57, 0x8c, 0x0e, 0x33, 0x98, 0x27, 0xa0, 0xab, 0xba, 0xd4, 0xe7, 0x05, 0x0e, 0xb9, 0xdd, - 0x1e, 0x6d, 0x29, 0x88, 0xee, 0x64, 0x47, 0x75, 0xb2, 0x24, 0x9c, 0x4b, 0xcd, 0x45, 0x81, 0x43, - 0x0f, 0x14, 0x95, 0xc9, 0xe1, 0xbb, 0xa0, 0x57, 0x16, 0x31, 0x43, 0x11, 0xf6, 0x0b, 0x24, 0x12, - 0xbb, 0x33, 0xda, 0x1a, 0x77, 0xbc, 0xae, 0xd9, 0x3b, 0x47, 0x22, 0x81, 0x1f, 0x83, 0x3d, 0x94, - 0xa6, 0xf4, 0x3b, 0xbf, 0x2c, 0x22, 0x24, 0xb0, 0x8f, 0xe6, 0x02, 0x33, 0x1f, 0x2f, 0x0b, 0xc2, - 0x2e, 0x6d, 0x30, 0xb2, 0xc6, 0xed, 0x59, 0xd3, 0xb6, 0xbc, 0x77, 0x94, 0xe8, 0x6b, 0xa5, 0xf9, - 0x44, 0x4a, 0x9e, 0x29, 0x05, 0x3c, 0x05, 0xc3, 0x37, 0x84, 0x67, 0x84, 0x07, 0x38, 0x41, 0x0b, - 0x42, 0x4b, 0x66, 0x77, 0xd7, 0x90, 0x83, 0xdb, 0x90, 0xb3, 0x9a, 0xee, 0xc3, 0xd6, 0x8f, 0x3f, - 0x0f, 0x1b, 0x87, 0x3f, 0x34, 0xc1, 0xfd, 0x63, 0x9a, 0x73, 0x9c, 0xf3, 0x92, 0xeb, 0x3e, 0x9f, - 0x81, 0xce, 0x7a, 0xd4, 0x54, 0xa3, 0xcb, 0x04, 0xdc, 0xae, 0xeb, 0x57, 0x95, 0x42, 0x17, 0xf6, - 0x95, 0x2c, 0xec, 0x26, 0x0c, 0x7e, 0x04, 0x5a, 0x8c, 0x52, 0x61, 0x26, 0xe1, 0xb0, 0x56, 0x84, - 0xcd, 0xec, 0x2d, 0x26, 0xce, 0x19, 0x66, 0x2f, 0x53, 0xec, 0x51, 0x5a, 0x15, 0x43, 0x45, 0xc1, - 0x39, 0x78, 0x90, 0xe3, 0xa5, 0xf0, 0xd7, 0xcf, 0x0d, 0xf7, 0x13, 0xc4, 0x13, 0x35, 0x02, 0xbd, - 0xd9, 0x07, 0x7f, 0x5e, 0x0f, 0x1f, 0xc6, 0x44, 0x24, 0x65, 0x20, 0x71, 0x72, 0x9c, 0xb1, 0x08, - 0xe6, 0x62, 0x63, 0xa4, 0x24, 0xe0, 0x6e, 0x70, 0x29, 0x30, 0x77, 0x4e, 0xf0, 0x72, 0x26, 0x0d, - 0x0f, 0x4a, 0xe2, 0x37, 0x6b, 0xe0, 0x09, 0xe2, 0x89, 0x49, 0xc1, 0xaf, 0x16, 0xe8, 0xd5, 0x33, - 0x03, 0x87, 0xa0, 0xa3, 0x7b, 0x65, 0x3d, 0xe9, 0x2a, 0x9d, 0x6d, 0xbd, 0x79, 0x2a, 0xe7, 0xa9, - 0x9d, 0x60, 0x14, 0x61, 0xe6, 0x4f, 0xcc, 0x0d, 0xdf, 0x7b, 0xdb, 0xac, 0x9f, 0x28, 0xfd, 0xac, - 0xbb, 0xba, 0x1e, 0xee, 0x68, 0x7b, 0xe2, 0xed, 0x68, 0xc8, 0xa4, 0xc6, 0x9b, 0x9a, 0x31, 0xff, - 0x0f, 0xbc, 0x69, 0xc5, 0x9b, 0x9a, 0x7b, 0xfd, 0xd2, 0x04, 0xdb, 0xda, 0x05, 0x4f, 0x41, 0x9f, - 0x93, 0x38, 0xc7, 0x91, 0xaf, 0x25, 0xa6, 0xac, 0x83, 0x3a, 0x54, 0xbf, 0xdc, 0x17, 0x4a, 0x66, - 0xe8, 0xad, 0xab, 0xeb, 0xa1, 0xe5, 0xf5, 0x78, 0x6d, 0x0f, 0x1e, 0x83, 0xfe, 0xba, 0x2c, 0x3e, - 0xc7, 0x55, 0x89, 0xdf, 0x80, 0x5a, 0x27, 0xfb, 0x02, 0x0b, 0xaf, 0xb7, 0xa8, 0xad, 0xe0, 0x67, - 0x40, 0x3f, 0x51, 0xea, 0x40, 0x6a, 0x5a, 0xb7, 0xee, 0x38, 0xad, 0x7d, 0x13, 0x67, 0xc6, 0xf5, - 0x0c, 0xc0, 0x0a, 0xb4, 0x69, 0x16, 0xf3, 0xb6, 0xbd, 0xed, 0x48, 0xff, 0x37, 0x91, 0x9b, 0xa6, - 0x38, 0x7c, 0x0e, 0xda, 0xd5, 0xa3, 0x0c, 0x0f, 0x40, 0x27, 0x2f, 0x33, 0xcc, 0xa4, 0x47, 0xe5, - 0xab, 0xe5, 0x6d, 0x36, 0xe0, 0x08, 0x74, 0x23, 0x9c, 0xd3, 0x8c, 0xe4, 0xca, 0xdf, 0x54, 0xfe, - 0xfa, 0xd6, 0x2c, 0x7a, 0xbd, 0x1a, 0x58, 0x57, 0xab, 0x81, 0xf5, 0xc7, 0x6a, 0x60, 0xbd, 0xba, - 0x19, 0x34, 0xae, 0x6e, 0x06, 0x8d, 0xdf, 0x6e, 0x06, 0x8d, 0x6f, 0x9f, 0xff, 0xad, 0x79, 0xf5, - 0x27, 0x32, 0x08, 0x8f, 0x62, 0xea, 0x2e, 0x1e, 0xbb, 0x19, 0x8d, 0xca, 0x14, 0x73, 0xfd, 0x21, - 0x3f, 0xaa, 0xbe, 0xe4, 0x0f, 0x1f, 0x1f, 0x6d, 0x2e, 0xf3, 0x64, 0x63, 0x06, 0xdb, 0x6a, 0x22, - 0x1f, 0xfd, 0x15, 0x00, 0x00, 0xff, 0xff, 0x87, 0x33, 0x96, 0x16, 0xfd, 0x07, 0x00, 0x00, + 0xf4, 0x00, 0xb9, 0xd4, 0xde, 0x64, 0x91, 0x40, 0x2c, 0x1c, 0x48, 0x77, 0xa1, 0x5d, 0xb6, 0x50, + 0xb9, 0xc0, 0x81, 0x8b, 0x35, 0xb6, 0x27, 0xf6, 0x68, 0x6d, 0x8f, 0x35, 0x33, 0x0e, 0x29, 0x27, + 0x8e, 0x1c, 0xf7, 0xc8, 0x91, 0x97, 0xc0, 0xcb, 0xd8, 0x63, 0x2f, 0x48, 0x9c, 0x0a, 0x4a, 0xdf, + 0x05, 0x27, 0x34, 0x7f, 0x9c, 0x98, 0xb2, 0x62, 0x2b, 0x2e, 0xd1, 0x33, 0xf3, 0x7c, 0x9f, 0x4f, + 0x66, 0x9e, 0x3f, 0x63, 0xe0, 0x92, 0x20, 0x74, 0x53, 0x12, 0x27, 0x22, 0x4c, 0x09, 0xce, 0x05, + 0x77, 0x05, 0xce, 0x23, 0xcc, 0x32, 0x92, 0x0b, 0x77, 0x31, 0xa9, 0xad, 0x9c, 0x82, 0x51, 0x41, + 0xe1, 0x80, 0x04, 0xa1, 0x53, 0x0f, 0x70, 0x6a, 0x92, 0xc5, 0x64, 0x7f, 0x54, 0x8b, 0x17, 0x97, + 0x05, 0xe6, 0xee, 0x02, 0xa5, 0x24, 0x42, 0x82, 0x32, 0x4d, 0xd8, 0x3f, 0xf8, 0x87, 0x42, 0xfd, + 0x56, 0xde, 0x90, 0xf2, 0x8c, 0x72, 0x97, 0x84, 0x7c, 0xfa, 0x48, 0x9e, 0xa0, 0x60, 0x94, 0xce, + 0x2b, 0xef, 0x20, 0xa6, 0x34, 0x4e, 0xb1, 0xab, 0x56, 0x41, 0x39, 0x77, 0xa3, 0x92, 0x21, 0x41, + 0x68, 0x6e, 0xfc, 0xc3, 0xdb, 0x7e, 0x41, 0x32, 0xcc, 0x05, 0xca, 0x8a, 0x4a, 0x20, 0xef, 0x1b, + 0x52, 0x86, 0x5d, 0x7d, 0x7c, 0xf9, 0x0f, 0xda, 0x32, 0x82, 0x77, 0x37, 0x02, 0x9a, 0x65, 0x44, + 0x64, 0x95, 0x68, 0xbd, 0x32, 0xc2, 0x07, 0x31, 0x8d, 0xa9, 0x32, 0x5d, 0x69, 0xe9, 0xdd, 0xc3, + 0xd5, 0x3d, 0xd0, 0x3d, 0x56, 0xbc, 0x0b, 0x81, 0x04, 0x86, 0x7b, 0xa0, 0x1d, 0x26, 0x88, 0xe4, + 0x3e, 0x89, 0x6c, 0x6b, 0x64, 0x8d, 0x3b, 0xde, 0x8e, 0x5a, 0x9f, 0x46, 0xf0, 0x4b, 0xd0, 0x15, + 0xac, 0xe4, 0xc2, 0x4f, 0xf1, 0x02, 0xa7, 0x76, 0x73, 0x64, 0x8d, 0xbb, 0xd3, 0xb1, 0xf3, 0xef, + 0xf9, 0x75, 0x3e, 0x65, 0x28, 0x94, 0x17, 0x9e, 0xb5, 0x5e, 0x5d, 0x0f, 0x1b, 0x1e, 0x50, 0x88, + 0xe7, 0x92, 0x00, 0x9f, 0x83, 0x5d, 0xb5, 0x22, 0x79, 0xec, 0x17, 0x98, 0x11, 0x1a, 0xd9, 0x5b, + 0x0a, 0xba, 0xe7, 0xe8, 0xb4, 0x38, 0x55, 0x5a, 0x9c, 0x27, 0x26, 0x6d, 0xb3, 0xb6, 0xa4, 0xfc, + 0xf4, 0xfb, 0xd0, 0xf2, 0xee, 0x57, 0xb1, 0xe7, 0x2a, 0x14, 0x7e, 0x01, 0xfe, 0x57, 0xe6, 0x01, + 0xcd, 0xa3, 0x1a, 0xae, 0x75, 0x77, 0xdc, 0xee, 0x3a, 0xd8, 0xf0, 0x3e, 0x07, 0xbb, 0x19, 0x5a, + 0xfa, 0x61, 0x4a, 0xc3, 0x17, 0x7e, 0xc4, 0xc8, 0x5c, 0xd8, 0xf7, 0xee, 0x8e, 0xeb, 0x67, 0x68, + 0x79, 0x2c, 0x43, 0x9f, 0xc8, 0x48, 0xf8, 0x14, 0xf4, 0xe7, 0x8c, 0x7e, 0x8f, 0x73, 0x3f, 0xc1, + 0x32, 0x57, 0xf6, 0xb6, 0x42, 0xed, 0xab, 0xec, 0xc9, 0xea, 0x39, 0xa6, 0xa8, 0x8b, 0x89, 0x73, + 0xa2, 0x14, 0x26, 0x5f, 0x3d, 0x1d, 0xa6, 0xf7, 0x24, 0x26, 0x45, 0x02, 0x73, 0x51, 0x61, 0x76, + 0xee, 0x8a, 0xd1, 0x61, 0x06, 0xf3, 0x18, 0x74, 0x55, 0x97, 0xfa, 0xbc, 0xc0, 0x21, 0xb7, 0xdb, + 0xa3, 0x2d, 0x05, 0xd1, 0x9d, 0xec, 0xa8, 0x4e, 0x96, 0x84, 0x73, 0xa9, 0xb9, 0x28, 0x70, 0xe8, + 0x81, 0xa2, 0x32, 0x39, 0x7c, 0x1b, 0xf4, 0xca, 0x22, 0x66, 0x28, 0xc2, 0x7e, 0x81, 0x44, 0x62, + 0x77, 0x46, 0x5b, 0xe3, 0x8e, 0xd7, 0x35, 0x7b, 0xe7, 0x48, 0x24, 0xf0, 0x63, 0xb0, 0x87, 0xd2, + 0x94, 0x7e, 0xe7, 0x97, 0x45, 0x84, 0x04, 0xf6, 0xd1, 0x5c, 0x60, 0xe6, 0xe3, 0x65, 0x41, 0xd8, + 0xa5, 0x0d, 0x46, 0xd6, 0xb8, 0x3d, 0x6b, 0xda, 0x96, 0xf7, 0x96, 0x12, 0x7d, 0xad, 0x34, 0x9f, + 0x48, 0xc9, 0x53, 0xa5, 0x80, 0xa7, 0x60, 0xf8, 0x9a, 0xf0, 0x8c, 0xf0, 0x00, 0x27, 0x68, 0x41, + 0x68, 0xc9, 0xec, 0xee, 0x1a, 0x72, 0x70, 0x1b, 0x72, 0x56, 0xd3, 0x7d, 0xd8, 0xfa, 0xf1, 0xe7, + 0x61, 0xe3, 0xf0, 0x87, 0x26, 0xb8, 0x7f, 0x4c, 0x73, 0x8e, 0x73, 0x5e, 0x72, 0xdd, 0xe7, 0x33, + 0xd0, 0x59, 0x8f, 0x9a, 0x6a, 0x74, 0x99, 0x80, 0xdb, 0x75, 0xfd, 0xaa, 0x52, 0xe8, 0xc2, 0xbe, + 0x94, 0x85, 0xdd, 0x84, 0xc1, 0x8f, 0x40, 0x8b, 0x51, 0x2a, 0xcc, 0x24, 0x1c, 0xd6, 0x8a, 0xb0, + 0x99, 0xbd, 0xc5, 0xc4, 0x39, 0xc3, 0xec, 0x45, 0x8a, 0x3d, 0x4a, 0xab, 0x62, 0xa8, 0x28, 0x38, + 0x07, 0x0f, 0x72, 0xbc, 0x14, 0xfe, 0xfa, 0xb9, 0xe1, 0x7e, 0x82, 0x78, 0xa2, 0x46, 0xa0, 0x37, + 0x7b, 0xef, 0xcf, 0xeb, 0xe1, 0xc3, 0x98, 0x88, 0xa4, 0x0c, 0x24, 0x4e, 0x8e, 0x33, 0x16, 0xc1, + 0x5c, 0x6c, 0x8c, 0x94, 0x04, 0xdc, 0x0d, 0x2e, 0x05, 0xe6, 0xce, 0x09, 0x5e, 0xce, 0xa4, 0xe1, + 0x41, 0x49, 0xfc, 0x66, 0x0d, 0x3c, 0x41, 0x3c, 0x31, 0x29, 0xf8, 0xd5, 0x02, 0xbd, 0x7a, 0x66, + 0xe0, 0x10, 0x74, 0x74, 0xaf, 0xac, 0x27, 0x5d, 0xa5, 0xb3, 0xad, 0x37, 0x4f, 0xe5, 0x3c, 0xb5, + 0x13, 0x8c, 0x22, 0xcc, 0xfc, 0x89, 0xb9, 0xe1, 0x3b, 0x6f, 0x9a, 0xf5, 0x13, 0xa5, 0x9f, 0x75, + 0x57, 0xd7, 0xc3, 0x1d, 0x6d, 0x4f, 0xbc, 0x1d, 0x0d, 0x99, 0xd4, 0x78, 0x53, 0x33, 0xe6, 0xff, + 0x81, 0x37, 0xad, 0x78, 0x53, 0x73, 0xaf, 0x5f, 0x9a, 0x60, 0x5b, 0xbb, 0xe0, 0x29, 0xe8, 0x73, + 0x12, 0xe7, 0x38, 0xf2, 0xb5, 0xc4, 0x94, 0x75, 0x50, 0x87, 0xea, 0x97, 0xfb, 0x42, 0xc9, 0x0c, + 0xbd, 0x75, 0x75, 0x3d, 0xb4, 0xbc, 0x1e, 0xaf, 0xed, 0xc1, 0x63, 0xd0, 0x5f, 0x97, 0xc5, 0xe7, + 0xb8, 0x2a, 0xf1, 0x6b, 0x50, 0xeb, 0x64, 0x5f, 0x60, 0xe1, 0xf5, 0x16, 0xb5, 0x15, 0xfc, 0x0c, + 0xe8, 0x27, 0x4a, 0x1d, 0x48, 0x4d, 0xeb, 0xd6, 0x1d, 0xa7, 0xb5, 0x6f, 0xe2, 0xcc, 0xb8, 0x9e, + 0x01, 0x58, 0x81, 0x36, 0xcd, 0x62, 0xde, 0xb6, 0x37, 0x1d, 0xe9, 0xff, 0x26, 0x72, 0xd3, 0x14, + 0x87, 0xcf, 0x40, 0xbb, 0x7a, 0x94, 0xe1, 0x01, 0xe8, 0xe4, 0x65, 0x86, 0x99, 0xf4, 0xa8, 0x7c, + 0xb5, 0xbc, 0xcd, 0x06, 0x1c, 0x81, 0x6e, 0x84, 0x73, 0x9a, 0x91, 0x5c, 0xf9, 0x9b, 0xca, 0x5f, + 0xdf, 0x9a, 0x45, 0xaf, 0x56, 0x03, 0xeb, 0x6a, 0x35, 0xb0, 0xfe, 0x58, 0x0d, 0xac, 0x97, 0x37, + 0x83, 0xc6, 0xd5, 0xcd, 0xa0, 0xf1, 0xdb, 0xcd, 0xa0, 0xf1, 0xed, 0xb3, 0xbf, 0x35, 0xaf, 0xfe, + 0x44, 0x06, 0xe1, 0x51, 0x4c, 0xdd, 0xc5, 0x07, 0x6e, 0x46, 0xa3, 0x32, 0xc5, 0x5c, 0x7f, 0xc8, + 0x8f, 0xaa, 0x2f, 0xf9, 0xc3, 0xf7, 0x8f, 0x36, 0x97, 0x79, 0xbc, 0x31, 0x83, 0x6d, 0x35, 0x91, + 0x8f, 0xfe, 0x0a, 0x00, 0x00, 0xff, 0xff, 0x1a, 0xd6, 0xd5, 0xaa, 0xfd, 0x07, 0x00, 0x00, } func (m *ClientState) Marshal() (dAtA []byte, err error) { diff --git a/modules/light-clients/07-tendermint/tendermint_test.go b/modules/light-clients/07-tendermint/tendermint_test.go index 6f424b3398a..73354be0461 100644 --- a/modules/light-clients/07-tendermint/tendermint_test.go +++ b/modules/light-clients/07-tendermint/tendermint_test.go @@ -12,11 +12,11 @@ import ( tmbytes "github.com/cometbft/cometbft/libs/bytes" tmtypes "github.com/cometbft/cometbft/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v7/testing" - ibctestingmock "github.com/cosmos/ibc-go/v7/testing/mock" - "github.com/cosmos/ibc-go/v7/testing/simapp" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v8/testing" + ibctestingmock "github.com/cosmos/ibc-go/v8/testing/mock" + "github.com/cosmos/ibc-go/v8/testing/simapp" ) const ( diff --git a/modules/light-clients/07-tendermint/update.go b/modules/light-clients/07-tendermint/update.go index 55cc8a31b38..c884b4bfba9 100644 --- a/modules/light-clients/07-tendermint/update.go +++ b/modules/light-clients/07-tendermint/update.go @@ -13,10 +13,10 @@ import ( "github.com/cometbft/cometbft/light" tmtypes "github.com/cometbft/cometbft/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // VerifyClientMessage checks if the clientMessage is of type Header or Misbehaviour and verifies the message diff --git a/modules/light-clients/07-tendermint/update_test.go b/modules/light-clients/07-tendermint/update_test.go index 63c2982519f..13f067a5c98 100644 --- a/modules/light-clients/07-tendermint/update_test.go +++ b/modules/light-clients/07-tendermint/update_test.go @@ -7,13 +7,13 @@ import ( tmtypes "github.com/cometbft/cometbft/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v7/testing" - ibctestingmock "github.com/cosmos/ibc-go/v7/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v8/testing" + ibctestingmock "github.com/cosmos/ibc-go/v8/testing/mock" ) func (suite *TendermintTestSuite) TestVerifyHeader() { diff --git a/modules/light-clients/07-tendermint/upgrade.go b/modules/light-clients/07-tendermint/upgrade.go index a70af47867b..a3159459816 100644 --- a/modules/light-clients/07-tendermint/upgrade.go +++ b/modules/light-clients/07-tendermint/upgrade.go @@ -10,10 +10,10 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // VerifyUpgradeAndUpdateState checks if the upgraded client has been committed by the current client diff --git a/modules/light-clients/07-tendermint/upgrade_test.go b/modules/light-clients/07-tendermint/upgrade_test.go index 189ee62b9bd..290380e54fa 100644 --- a/modules/light-clients/07-tendermint/upgrade_test.go +++ b/modules/light-clients/07-tendermint/upgrade_test.go @@ -3,11 +3,11 @@ package tendermint_test import ( upgradetypes "cosmossdk.io/x/upgrade/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func (suite *TendermintTestSuite) TestVerifyUpgrade() { diff --git a/modules/light-clients/09-localhost/client_state.go b/modules/light-clients/09-localhost/client_state.go index 5b7274aed13..89c9b4a8c28 100644 --- a/modules/light-clients/09-localhost/client_state.go +++ b/modules/light-clients/09-localhost/client_state.go @@ -9,11 +9,11 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v7/modules/core/errors" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) var _ exported.ClientState = (*ClientState)(nil) diff --git a/modules/light-clients/09-localhost/client_state_test.go b/modules/light-clients/09-localhost/client_state_test.go index f241c400d85..78825cb1d12 100644 --- a/modules/light-clients/09-localhost/client_state_test.go +++ b/modules/light-clients/09-localhost/client_state_test.go @@ -3,16 +3,16 @@ package localhost_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - localhost "github.com/cosmos/ibc-go/v7/modules/light-clients/09-localhost" - ibctesting "github.com/cosmos/ibc-go/v7/testing" - "github.com/cosmos/ibc-go/v7/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + localhost "github.com/cosmos/ibc-go/v8/modules/light-clients/09-localhost" + ibctesting "github.com/cosmos/ibc-go/v8/testing" + "github.com/cosmos/ibc-go/v8/testing/mock" ) func (suite *LocalhostTestSuite) TestStatus() { diff --git a/modules/light-clients/09-localhost/codec.go b/modules/light-clients/09-localhost/codec.go index 04803e7df19..89d4e6980c1 100644 --- a/modules/light-clients/09-localhost/codec.go +++ b/modules/light-clients/09-localhost/codec.go @@ -3,7 +3,7 @@ package localhost import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // RegisterInterfaces registers the tendermint concrete client-related diff --git a/modules/light-clients/09-localhost/localhost.pb.go b/modules/light-clients/09-localhost/localhost.pb.go index 09303d4f1b2..61c3999c56d 100644 --- a/modules/light-clients/09-localhost/localhost.pb.go +++ b/modules/light-clients/09-localhost/localhost.pb.go @@ -7,7 +7,7 @@ import ( fmt "fmt" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" - types "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + types "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" io "io" math "math" math_bits "math/bits" @@ -86,9 +86,9 @@ var fileDescriptor_60e51cfed1fd7859 = []byte{ 0x9c, 0x92, 0x4e, 0x3c, 0x92, 0x63, 0xbc, 0xf0, 0x48, 0x8e, 0xf1, 0xc1, 0x23, 0x39, 0xc6, 0x09, 0x8f, 0xe5, 0x18, 0x2e, 0x3c, 0x96, 0x63, 0xb8, 0xf1, 0x58, 0x8e, 0x21, 0xca, 0x23, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x57, 0x3f, 0x39, 0xbf, 0x38, 0x37, 0xbf, 0x58, 0x3f, - 0x33, 0x29, 0x59, 0x37, 0x3d, 0x5f, 0xbf, 0xcc, 0x5c, 0x3f, 0x37, 0x3f, 0xa5, 0x34, 0x27, 0xb5, + 0x33, 0x29, 0x59, 0x37, 0x3d, 0x5f, 0xbf, 0xcc, 0x42, 0x3f, 0x37, 0x3f, 0xa5, 0x34, 0x27, 0xb5, 0x18, 0x12, 0x34, 0xba, 0xb0, 0xb0, 0x31, 0xb0, 0xd4, 0x85, 0xfb, 0xd7, 0x1a, 0xce, 0x4a, 0x62, - 0x03, 0x7b, 0xc3, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0x1e, 0xed, 0x07, 0xba, 0x4d, 0x01, 0x00, + 0x03, 0x7b, 0xc3, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0xac, 0xfc, 0x52, 0xb3, 0x4d, 0x01, 0x00, 0x00, } diff --git a/modules/light-clients/09-localhost/localhost_test.go b/modules/light-clients/09-localhost/localhost_test.go index 555337f1cef..c12c4546cd8 100644 --- a/modules/light-clients/09-localhost/localhost_test.go +++ b/modules/light-clients/09-localhost/localhost_test.go @@ -5,7 +5,7 @@ import ( testifysuite "github.com/stretchr/testify/suite" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) type LocalhostTestSuite struct { diff --git a/proto/ibc/applications/fee/v1/ack.proto b/proto/ibc/applications/fee/v1/ack.proto index 53519a2bb82..2f3746d2cb7 100644 --- a/proto/ibc/applications/fee/v1/ack.proto +++ b/proto/ibc/applications/fee/v1/ack.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.fee.v1; -option go_package = "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types"; +option go_package = "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types"; // IncentivizedAcknowledgement is the acknowledgement format to be used by applications wrapped in the fee middleware message IncentivizedAcknowledgement { diff --git a/proto/ibc/applications/fee/v1/fee.proto b/proto/ibc/applications/fee/v1/fee.proto index 7d451c0c6e8..bf9f892340c 100644 --- a/proto/ibc/applications/fee/v1/fee.proto +++ b/proto/ibc/applications/fee/v1/fee.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.fee.v1; -option go_package = "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types"; +option go_package = "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types"; import "cosmos/base/v1beta1/coin.proto"; import "gogoproto/gogo.proto"; diff --git a/proto/ibc/applications/fee/v1/genesis.proto b/proto/ibc/applications/fee/v1/genesis.proto index 59e3c5d6e12..e48ceb53549 100644 --- a/proto/ibc/applications/fee/v1/genesis.proto +++ b/proto/ibc/applications/fee/v1/genesis.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.fee.v1; -option go_package = "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types"; +option go_package = "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types"; import "gogoproto/gogo.proto"; import "ibc/applications/fee/v1/fee.proto"; diff --git a/proto/ibc/applications/fee/v1/metadata.proto b/proto/ibc/applications/fee/v1/metadata.proto index f505034c879..1e82e7c2505 100644 --- a/proto/ibc/applications/fee/v1/metadata.proto +++ b/proto/ibc/applications/fee/v1/metadata.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.fee.v1; -option go_package = "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types"; +option go_package = "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types"; // Metadata defines the ICS29 channel specific metadata encoded into the channel version bytestring // See ICS004: https://github.com/cosmos/ibc/tree/master/spec/core/ics-004-channel-and-packet-semantics#Versioning diff --git a/proto/ibc/applications/fee/v1/query.proto b/proto/ibc/applications/fee/v1/query.proto index faa40f9230e..726370ee03f 100644 --- a/proto/ibc/applications/fee/v1/query.proto +++ b/proto/ibc/applications/fee/v1/query.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.fee.v1; -option go_package = "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types"; +option go_package = "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types"; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; diff --git a/proto/ibc/applications/fee/v1/tx.proto b/proto/ibc/applications/fee/v1/tx.proto index 3b72b8aa599..b80034e30cc 100644 --- a/proto/ibc/applications/fee/v1/tx.proto +++ b/proto/ibc/applications/fee/v1/tx.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.fee.v1; -option go_package = "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types"; +option go_package = "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types"; import "gogoproto/gogo.proto"; import "ibc/applications/fee/v1/fee.proto"; diff --git a/proto/ibc/applications/interchain_accounts/controller/v1/controller.proto b/proto/ibc/applications/interchain_accounts/controller/v1/controller.proto index d32d69fe2b4..2e6bbe1a138 100644 --- a/proto/ibc/applications/interchain_accounts/controller/v1/controller.proto +++ b/proto/ibc/applications/interchain_accounts/controller/v1/controller.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.interchain_accounts.controller.v1; -option go_package = "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types"; +option go_package = "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types"; // Params defines the set of on-chain interchain accounts parameters. // The following parameters may be used to disable the controller submodule. diff --git a/proto/ibc/applications/interchain_accounts/controller/v1/query.proto b/proto/ibc/applications/interchain_accounts/controller/v1/query.proto index 0fb70d82479..31885fcb2ef 100644 --- a/proto/ibc/applications/interchain_accounts/controller/v1/query.proto +++ b/proto/ibc/applications/interchain_accounts/controller/v1/query.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.interchain_accounts.controller.v1; -option go_package = "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types"; +option go_package = "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types"; import "ibc/applications/interchain_accounts/controller/v1/controller.proto"; import "google/api/annotations.proto"; diff --git a/proto/ibc/applications/interchain_accounts/controller/v1/tx.proto b/proto/ibc/applications/interchain_accounts/controller/v1/tx.proto index 626a6631474..b53b42d8be7 100644 --- a/proto/ibc/applications/interchain_accounts/controller/v1/tx.proto +++ b/proto/ibc/applications/interchain_accounts/controller/v1/tx.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.interchain_accounts.controller.v1; -option go_package = "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types"; +option go_package = "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types"; import "gogoproto/gogo.proto"; import "ibc/applications/interchain_accounts/v1/packet.proto"; diff --git a/proto/ibc/applications/interchain_accounts/genesis/v1/genesis.proto b/proto/ibc/applications/interchain_accounts/genesis/v1/genesis.proto index 63da034544f..4393e5b0bc1 100644 --- a/proto/ibc/applications/interchain_accounts/genesis/v1/genesis.proto +++ b/proto/ibc/applications/interchain_accounts/genesis/v1/genesis.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.interchain_accounts.genesis.v1; -option go_package = "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/genesis/types"; +option go_package = "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/genesis/types"; import "gogoproto/gogo.proto"; import "ibc/applications/interchain_accounts/controller/v1/controller.proto"; diff --git a/proto/ibc/applications/interchain_accounts/host/v1/host.proto b/proto/ibc/applications/interchain_accounts/host/v1/host.proto index 51e557113a5..f036857113a 100644 --- a/proto/ibc/applications/interchain_accounts/host/v1/host.proto +++ b/proto/ibc/applications/interchain_accounts/host/v1/host.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.interchain_accounts.host.v1; -option go_package = "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types"; +option go_package = "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types"; // Params defines the set of on-chain interchain accounts parameters. // The following parameters may be used to disable the host submodule. diff --git a/proto/ibc/applications/interchain_accounts/host/v1/query.proto b/proto/ibc/applications/interchain_accounts/host/v1/query.proto index b89ed8ed871..6f206a14c80 100644 --- a/proto/ibc/applications/interchain_accounts/host/v1/query.proto +++ b/proto/ibc/applications/interchain_accounts/host/v1/query.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.interchain_accounts.host.v1; -option go_package = "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types"; +option go_package = "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types"; import "google/api/annotations.proto"; import "ibc/applications/interchain_accounts/host/v1/host.proto"; diff --git a/proto/ibc/applications/interchain_accounts/host/v1/tx.proto b/proto/ibc/applications/interchain_accounts/host/v1/tx.proto index af5d0b33ad3..c6e15ef8b7e 100644 --- a/proto/ibc/applications/interchain_accounts/host/v1/tx.proto +++ b/proto/ibc/applications/interchain_accounts/host/v1/tx.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.interchain_accounts.host.v1; -option go_package = "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types"; +option go_package = "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types"; import "gogoproto/gogo.proto"; import "cosmos/msg/v1/msg.proto"; diff --git a/proto/ibc/applications/interchain_accounts/v1/account.proto b/proto/ibc/applications/interchain_accounts/v1/account.proto index 9db1022dde4..4a6947c1c6b 100644 --- a/proto/ibc/applications/interchain_accounts/v1/account.proto +++ b/proto/ibc/applications/interchain_accounts/v1/account.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.interchain_accounts.v1; -option go_package = "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types"; +option go_package = "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types"; import "cosmos_proto/cosmos.proto"; import "gogoproto/gogo.proto"; diff --git a/proto/ibc/applications/interchain_accounts/v1/metadata.proto b/proto/ibc/applications/interchain_accounts/v1/metadata.proto index 78964dbadd0..df72b41eb6e 100644 --- a/proto/ibc/applications/interchain_accounts/v1/metadata.proto +++ b/proto/ibc/applications/interchain_accounts/v1/metadata.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.interchain_accounts.v1; -option go_package = "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types"; +option go_package = "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types"; // Metadata defines a set of protocol specific data encoded into the ICS27 channel version bytestring // See ICS004: https://github.com/cosmos/ibc/tree/master/spec/core/ics-004-channel-and-packet-semantics#Versioning diff --git a/proto/ibc/applications/interchain_accounts/v1/packet.proto b/proto/ibc/applications/interchain_accounts/v1/packet.proto index d2dcf518eab..f75a1463e9b 100644 --- a/proto/ibc/applications/interchain_accounts/v1/packet.proto +++ b/proto/ibc/applications/interchain_accounts/v1/packet.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.interchain_accounts.v1; -option go_package = "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types"; +option go_package = "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types"; import "google/protobuf/any.proto"; import "gogoproto/gogo.proto"; diff --git a/proto/ibc/applications/transfer/v1/authz.proto b/proto/ibc/applications/transfer/v1/authz.proto index b0ee1d9cd55..7b7a9f0846a 100644 --- a/proto/ibc/applications/transfer/v1/authz.proto +++ b/proto/ibc/applications/transfer/v1/authz.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.transfer.v1; -option go_package = "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types"; +option go_package = "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types"; import "cosmos_proto/cosmos.proto"; import "gogoproto/gogo.proto"; diff --git a/proto/ibc/applications/transfer/v1/genesis.proto b/proto/ibc/applications/transfer/v1/genesis.proto index a7dfc1cbbd3..f7d707f6ccf 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/v7/modules/apps/transfer/types"; +option go_package = "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types"; import "ibc/applications/transfer/v1/transfer.proto"; import "cosmos/base/v1beta1/coin.proto"; diff --git a/proto/ibc/applications/transfer/v1/query.proto b/proto/ibc/applications/transfer/v1/query.proto index ff56cc30c8d..2323ea171c1 100644 --- a/proto/ibc/applications/transfer/v1/query.proto +++ b/proto/ibc/applications/transfer/v1/query.proto @@ -8,7 +8,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/v7/modules/apps/transfer/types"; +option go_package = "github.com/cosmos/ibc-go/v8/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 73a6f759ee3..12914b7a4b8 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/v7/modules/apps/transfer/types"; +option go_package = "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types"; // DenomTrace contains the base denomination for ICS20 fungible tokens and the // source tracing information path. diff --git a/proto/ibc/applications/transfer/v1/tx.proto b/proto/ibc/applications/transfer/v1/tx.proto index 1f021aa73e5..215f7422646 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/v7/modules/apps/transfer/types"; +option go_package = "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types"; import "gogoproto/gogo.proto"; import "cosmos/msg/v1/msg.proto"; diff --git a/proto/ibc/applications/transfer/v2/packet.proto b/proto/ibc/applications/transfer/v2/packet.proto index 7dc31347af1..bff35bdd6d3 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/v7/modules/apps/transfer/types"; +option go_package = "github.com/cosmos/ibc-go/v8/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 9eca763bcb9..44c3240e2bc 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/v7/modules/core/04-channel/types"; +option go_package = "github.com/cosmos/ibc-go/v8/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 092466186da..382a8048d45 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/v7/modules/core/04-channel/types"; +option go_package = "github.com/cosmos/ibc-go/v8/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 e92422432b3..42c4caea7d0 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/v7/modules/core/04-channel/types"; +option go_package = "github.com/cosmos/ibc-go/v8/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 66c6b2a48df..4b9ad3d75cd 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/v7/modules/core/04-channel/types"; +option go_package = "github.com/cosmos/ibc-go/v8/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 9c9178d5f0e..afb22be397d 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/v7/modules/core/02-client/types"; +option go_package = "github.com/cosmos/ibc-go/v8/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 e54bc423d09..43610b0d464 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/v7/modules/core/02-client/types"; +option go_package = "github.com/cosmos/ibc-go/v8/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 0d26cf62e6d..0032306ec9e 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/v7/modules/core/02-client/types"; +option go_package = "github.com/cosmos/ibc-go/v8/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 89865e37f2f..c3f8deeda96 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/v7/modules/core/02-client/types"; +option go_package = "github.com/cosmos/ibc-go/v8/modules/core/02-client/types"; import "cosmos/msg/v1/msg.proto"; import "gogoproto/gogo.proto"; diff --git a/proto/ibc/core/commitment/v1/commitment.proto b/proto/ibc/core/commitment/v1/commitment.proto index f44fb75379a..bbad400bf73 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/v7/modules/core/23-commitment/types"; +option go_package = "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types"; import "gogoproto/gogo.proto"; import "cosmos/ics23/v1/proofs.proto"; diff --git a/proto/ibc/core/connection/v1/connection.proto b/proto/ibc/core/connection/v1/connection.proto index 952a831aef3..852f3999bf6 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/v7/modules/core/03-connection/types"; +option go_package = "github.com/cosmos/ibc-go/v8/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 43b4e45955e..a5eb6b3a1c2 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/v7/modules/core/03-connection/types"; +option go_package = "github.com/cosmos/ibc-go/v8/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 99f6f92ab6e..c0f1a6f5775 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/v7/modules/core/03-connection/types"; +option go_package = "github.com/cosmos/ibc-go/v8/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 c31e73d1366..d5465d8709a 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/v7/modules/core/03-connection/types"; +option go_package = "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types"; import "gogoproto/gogo.proto"; import "cosmos/msg/v1/msg.proto"; diff --git a/proto/ibc/core/types/v1/genesis.proto b/proto/ibc/core/types/v1/genesis.proto index 9ab7fd3f741..4b34f68893a 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/v7/modules/core/types"; +option go_package = "github.com/cosmos/ibc-go/v8/modules/core/types"; import "gogoproto/gogo.proto"; import "ibc/core/client/v1/genesis.proto"; diff --git a/proto/ibc/lightclients/localhost/v2/localhost.proto b/proto/ibc/lightclients/localhost/v2/localhost.proto index ec970eb0008..635db85214e 100644 --- a/proto/ibc/lightclients/localhost/v2/localhost.proto +++ b/proto/ibc/lightclients/localhost/v2/localhost.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.lightclients.localhost.v2; -option go_package = "github.com/cosmos/ibc-go/v7/modules/light-clients/09-localhost;localhost"; +option go_package = "github.com/cosmos/ibc-go/v8/modules/light-clients/09-localhost;localhost"; import "ibc/core/client/v1/client.proto"; import "gogoproto/gogo.proto"; diff --git a/proto/ibc/lightclients/solomachine/v2/solomachine.proto b/proto/ibc/lightclients/solomachine/v2/solomachine.proto index b18ba9bc92f..9dc2690c5d7 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/v7/modules/core/02-client/migrations/v7"; +option go_package = "github.com/cosmos/ibc-go/v8/modules/core/02-client/migrations/v7"; import "ibc/core/connection/v1/connection.proto"; import "ibc/core/channel/v1/channel.proto"; diff --git a/proto/ibc/lightclients/solomachine/v3/solomachine.proto b/proto/ibc/lightclients/solomachine/v3/solomachine.proto index 7bc800e93a7..194905b38b4 100644 --- a/proto/ibc/lightclients/solomachine/v3/solomachine.proto +++ b/proto/ibc/lightclients/solomachine/v3/solomachine.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.lightclients.solomachine.v3; -option go_package = "github.com/cosmos/ibc-go/v7/modules/light-clients/06-solomachine;solomachine"; +option go_package = "github.com/cosmos/ibc-go/v8/modules/light-clients/06-solomachine;solomachine"; import "gogoproto/gogo.proto"; import "google/protobuf/any.proto"; diff --git a/proto/ibc/lightclients/tendermint/v1/tendermint.proto b/proto/ibc/lightclients/tendermint/v1/tendermint.proto index 7926828b519..5053612228c 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/v7/modules/light-clients/07-tendermint;tendermint"; +option go_package = "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint;tendermint"; import "tendermint/types/validator.proto"; import "tendermint/types/types.proto"; diff --git a/testing/README.md b/testing/README.md index 3961f7f378a..bfe7c688dfa 100644 --- a/testing/README.md +++ b/testing/README.md @@ -270,8 +270,8 @@ import ( "github.com/cometbft/cometbft/libs/log" dbm "github.com/cometbft/cometbft-db" - "github.com/cosmos/ibc-go/v7/modules/apps/transfer/simapp" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v8/modules/apps/transfer/simapp" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func SetupTransferTestingApp() (ibctesting.TestingApp, map[string]json.RawMessage) { diff --git a/testing/app.go b/testing/app.go index e3d37961a9f..14a30f5ce68 100644 --- a/testing/app.go +++ b/testing/app.go @@ -28,9 +28,9 @@ import ( tmtypes "github.com/cometbft/cometbft/types" capabilitykeeper "github.com/cosmos/ibc-go/modules/capability/keeper" - "github.com/cosmos/ibc-go/v7/modules/core/keeper" - "github.com/cosmos/ibc-go/v7/testing/simapp" - ibctestingtypes "github.com/cosmos/ibc-go/v7/testing/types" + "github.com/cosmos/ibc-go/v8/modules/core/keeper" + "github.com/cosmos/ibc-go/v8/testing/simapp" + ibctestingtypes "github.com/cosmos/ibc-go/v8/testing/types" ) var DefaultTestingAppInit = SetupTestingApp diff --git a/testing/chain.go b/testing/chain.go index 825e5c37b52..01dcd491855 100644 --- a/testing/chain.go +++ b/testing/chain.go @@ -29,13 +29,13 @@ import ( capabilitykeeper "github.com/cosmos/ibc-go/modules/capability/keeper" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - "github.com/cosmos/ibc-go/v7/modules/core/types" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - "github.com/cosmos/ibc-go/v7/testing/simapp" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v8/modules/core/types" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + "github.com/cosmos/ibc-go/v8/testing/simapp" ) var MaxAccounts = 10 diff --git a/testing/chain_test.go b/testing/chain_test.go index be2d03a30d2..ea0e2cbe608 100644 --- a/testing/chain_test.go +++ b/testing/chain_test.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/staking/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + ibctesting "github.com/cosmos/ibc-go/v8/testing" ) func TestChangeValSet(t *testing.T) { diff --git a/testing/config.go b/testing/config.go index 584a8d1df36..46dae7899d9 100644 --- a/testing/config.go +++ b/testing/config.go @@ -3,11 +3,11 @@ package ibctesting import ( "time" - connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - "github.com/cosmos/ibc-go/v7/testing/mock" + connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + "github.com/cosmos/ibc-go/v8/testing/mock" ) type ClientConfig interface { diff --git a/testing/endpoint.go b/testing/endpoint.go index fdfef1bb6c5..9e7363a6c4a 100644 --- a/testing/endpoint.go +++ b/testing/endpoint.go @@ -10,13 +10,13 @@ import ( abci "github.com/cometbft/cometbft/abci/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" ) // Endpoint is a which represents a channel endpoint and its associated diff --git a/testing/events.go b/testing/events.go index 2962cd43435..58607080a21 100644 --- a/testing/events.go +++ b/testing/events.go @@ -8,10 +8,10 @@ import ( abci "github.com/cometbft/cometbft/abci/types" - "github.com/cosmos/ibc-go/v7/internal/collections" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v8/internal/collections" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" ) type EventsMap map[string]map[string]string diff --git a/testing/mock/ibc_app.go b/testing/mock/ibc_app.go index ada64edfb40..72b6d4da100 100644 --- a/testing/mock/ibc_app.go +++ b/testing/mock/ibc_app.go @@ -5,8 +5,8 @@ import ( capabilitykeeper "github.com/cosmos/ibc-go/modules/capability/keeper" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) // IBCApp contains IBC application module callbacks as defined in 05-port. diff --git a/testing/mock/ibc_module.go b/testing/mock/ibc_module.go index a53dce74122..5a01fa2cb47 100644 --- a/testing/mock/ibc_module.go +++ b/testing/mock/ibc_module.go @@ -10,10 +10,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v8/modules/core/05-port/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) var ( diff --git a/testing/mock/ibc_module_test.go b/testing/mock/ibc_module_test.go index 6eec0c11db9..76571034067 100644 --- a/testing/mock/ibc_module_test.go +++ b/testing/mock/ibc_module_test.go @@ -5,9 +5,9 @@ import ( "github.com/stretchr/testify/require" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/v7/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v8/testing/mock" ) func TestCreateCapabilityName(t *testing.T) { diff --git a/testing/mock/mock.go b/testing/mock/mock.go index 1188aafec12..1b8f6cc90be 100644 --- a/testing/mock/mock.go +++ b/testing/mock/mock.go @@ -16,10 +16,10 @@ import ( abci "github.com/cometbft/cometbft/abci/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v8/modules/core/05-port/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/exported" ) const ( diff --git a/testing/mock/privval_test.go b/testing/mock/privval_test.go index 0814c265b03..b80d84e5109 100644 --- a/testing/mock/privval_test.go +++ b/testing/mock/privval_test.go @@ -8,7 +8,7 @@ import ( tmproto "github.com/cometbft/cometbft/proto/tendermint/types" tmtypes "github.com/cometbft/cometbft/types" - "github.com/cosmos/ibc-go/v7/testing/mock" + "github.com/cosmos/ibc-go/v8/testing/mock" ) const chainID = "testChain" diff --git a/testing/path.go b/testing/path.go index 43aa504d4d4..64738b1c163 100644 --- a/testing/path.go +++ b/testing/path.go @@ -6,8 +6,8 @@ import ( abci "github.com/cometbft/cometbft/abci/types" - transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + transfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" ) // Path contains two endpoints representing two chains connected over IBC diff --git a/testing/simapp/ante.go b/testing/simapp/ante.go index 96e79c3474c..c64ad04d6ea 100644 --- a/testing/simapp/ante.go +++ b/testing/simapp/ante.go @@ -8,8 +8,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/x/auth/ante" - ibcante "github.com/cosmos/ibc-go/v7/modules/core/ante" - "github.com/cosmos/ibc-go/v7/modules/core/keeper" + ibcante "github.com/cosmos/ibc-go/v8/modules/core/ante" + "github.com/cosmos/ibc-go/v8/modules/core/keeper" ) // HandlerOptions are the options required for constructing a default SDK AnteHandler. diff --git a/testing/simapp/app.go b/testing/simapp/app.go index 9a241a1e3c6..491e796e350 100644 --- a/testing/simapp/app.go +++ b/testing/simapp/app.go @@ -106,31 +106,31 @@ import ( "github.com/cosmos/ibc-go/modules/capability" capabilitykeeper "github.com/cosmos/ibc-go/modules/capability/keeper" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - ica "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts" - icacontroller "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller" - icacontrollerkeeper "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/keeper" - icacontrollertypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - icahost "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host" - icahostkeeper "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/keeper" - icahosttypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" - icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - ibcfee "github.com/cosmos/ibc-go/v7/modules/apps/29-fee" - ibcfeekeeper "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/keeper" - ibcfeetypes "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" - transfer "github.com/cosmos/ibc-go/v7/modules/apps/transfer" - ibctransferkeeper "github.com/cosmos/ibc-go/v7/modules/apps/transfer/keeper" - ibctransfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - ibc "github.com/cosmos/ibc-go/v7/modules/core" - ibcclient "github.com/cosmos/ibc-go/v7/modules/core/02-client" - ibcclientclient "github.com/cosmos/ibc-go/v7/modules/core/02-client/client" - ibcclienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" - ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibckeeper "github.com/cosmos/ibc-go/v7/modules/core/keeper" - solomachine "github.com/cosmos/ibc-go/v7/modules/light-clients/06-solomachine" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - ibcmock "github.com/cosmos/ibc-go/v7/testing/mock" - ibctestingtypes "github.com/cosmos/ibc-go/v7/testing/types" + ica "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts" + icacontroller "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller" + icacontrollerkeeper "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/keeper" + icacontrollertypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + icahost "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host" + icahostkeeper "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/keeper" + icahosttypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + ibcfee "github.com/cosmos/ibc-go/v8/modules/apps/29-fee" + ibcfeekeeper "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/keeper" + ibcfeetypes "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + transfer "github.com/cosmos/ibc-go/v8/modules/apps/transfer" + ibctransferkeeper "github.com/cosmos/ibc-go/v8/modules/apps/transfer/keeper" + ibctransfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + ibc "github.com/cosmos/ibc-go/v8/modules/core" + ibcclient "github.com/cosmos/ibc-go/v8/modules/core/02-client" + ibcclientclient "github.com/cosmos/ibc-go/v8/modules/core/02-client/client" + ibcclienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + porttypes "github.com/cosmos/ibc-go/v8/modules/core/05-port/types" + ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibckeeper "github.com/cosmos/ibc-go/v8/modules/core/keeper" + solomachine "github.com/cosmos/ibc-go/v8/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + ibcmock "github.com/cosmos/ibc-go/v8/testing/mock" + ibctestingtypes "github.com/cosmos/ibc-go/v8/testing/types" ) const appName = "SimApp" diff --git a/testing/simapp/simd/cmd/cmd_test.go b/testing/simapp/simd/cmd/cmd_test.go index 2a034ea25da..9216ce75f02 100644 --- a/testing/simapp/simd/cmd/cmd_test.go +++ b/testing/simapp/simd/cmd/cmd_test.go @@ -9,8 +9,8 @@ import ( svrcmd "github.com/cosmos/cosmos-sdk/server/cmd" "github.com/cosmos/cosmos-sdk/x/genutil/client/cli" - "github.com/cosmos/ibc-go/v7/testing/simapp" - "github.com/cosmos/ibc-go/v7/testing/simapp/simd/cmd" + "github.com/cosmos/ibc-go/v8/testing/simapp" + "github.com/cosmos/ibc-go/v8/testing/simapp/simd/cmd" ) func TestInitCmd(t *testing.T) { diff --git a/testing/simapp/simd/cmd/root.go b/testing/simapp/simd/cmd/root.go index 9f52aa61cf3..77377fcabc2 100644 --- a/testing/simapp/simd/cmd/root.go +++ b/testing/simapp/simd/cmd/root.go @@ -37,8 +37,8 @@ import ( cmtcfg "github.com/cometbft/cometbft/config" - "github.com/cosmos/ibc-go/v7/testing/simapp" - "github.com/cosmos/ibc-go/v7/testing/simapp/params" + "github.com/cosmos/ibc-go/v8/testing/simapp" + "github.com/cosmos/ibc-go/v8/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 b22fe4c12f3..153d846831e 100644 --- a/testing/simapp/simd/main.go +++ b/testing/simapp/simd/main.go @@ -7,8 +7,8 @@ import ( svrcmd "github.com/cosmos/cosmos-sdk/server/cmd" - "github.com/cosmos/ibc-go/v7/testing/simapp" - "github.com/cosmos/ibc-go/v7/testing/simapp/simd/cmd" + "github.com/cosmos/ibc-go/v8/testing/simapp" + "github.com/cosmos/ibc-go/v8/testing/simapp/simd/cmd" ) func main() { diff --git a/testing/simapp/upgrades.go b/testing/simapp/upgrades.go index 91325cbb91f..e3a5effe18b 100644 --- a/testing/simapp/upgrades.go +++ b/testing/simapp/upgrades.go @@ -8,9 +8,9 @@ import ( crisistypes "github.com/cosmos/cosmos-sdk/x/crisis/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - icacontrollertypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" - ibcmock "github.com/cosmos/ibc-go/v7/testing/mock" - "github.com/cosmos/ibc-go/v7/testing/simapp/upgrades" + icacontrollertypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + ibcmock "github.com/cosmos/ibc-go/v8/testing/mock" + "github.com/cosmos/ibc-go/v8/testing/simapp/upgrades" ) // registerUpgradeHandlers registers all supported upgrade handlers diff --git a/testing/simapp/upgrades/upgrades.go b/testing/simapp/upgrades/upgrades.go index 01313e089d9..ff9b6579560 100644 --- a/testing/simapp/upgrades/upgrades.go +++ b/testing/simapp/upgrades/upgrades.go @@ -15,10 +15,10 @@ import ( paramstypes "github.com/cosmos/cosmos-sdk/x/params/types" capabilitykeeper "github.com/cosmos/ibc-go/modules/capability/keeper" - v6 "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/migrations/v6" - clientkeeper "github.com/cosmos/ibc-go/v7/modules/core/02-client/keeper" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibctmmigrations "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint/migrations" + v6 "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/migrations/v6" + clientkeeper "github.com/cosmos/ibc-go/v8/modules/core/02-client/keeper" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibctmmigrations "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint/migrations" ) const ( diff --git a/testing/solomachine.go b/testing/solomachine.go index 8d542eae5fe..e55ac8ff158 100644 --- a/testing/solomachine.go +++ b/testing/solomachine.go @@ -17,15 +17,15 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/tx/signing" - transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - host "github.com/cosmos/ibc-go/v7/modules/core/24-host" - "github.com/cosmos/ibc-go/v7/modules/core/exported" - solomachine "github.com/cosmos/ibc-go/v7/modules/light-clients/06-solomachine" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" + transfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v8/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v8/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" ) var ( diff --git a/testing/values.go b/testing/values.go index 291cf9a44b4..6459112a1cd 100644 --- a/testing/values.go +++ b/testing/values.go @@ -11,12 +11,12 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - ibctransfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - "github.com/cosmos/ibc-go/v7/testing/mock" - "github.com/cosmos/ibc-go/v7/testing/simapp" + ibctransfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + "github.com/cosmos/ibc-go/v8/testing/mock" + "github.com/cosmos/ibc-go/v8/testing/simapp" ) const (