diff --git a/e2e/go.mod b/e2e/go.mod index 6787692bfe9c..e9335e87474e 100644 --- a/e2e/go.mod +++ b/e2e/go.mod @@ -14,7 +14,7 @@ require ( github.com/cosmos/cosmos-sdk v0.50.7 github.com/cosmos/gogoproto v1.5.0 github.com/cosmos/ibc-go/modules/light-clients/08-wasm v0.0.0-00010101000000-000000000000 - github.com/cosmos/ibc-go/v8 v8.1.0 + github.com/cosmos/ibc-go/v9 v9.0.0 github.com/docker/docker v24.0.7+incompatible github.com/pelletier/go-toml v1.9.5 github.com/strangelove-ventures/interchaintest/v8 v8.2.1-0.20240419152858-c8b741617cd8 @@ -82,6 +82,7 @@ require ( github.com/cosmos/gogogateway v1.2.0 // indirect github.com/cosmos/iavl v1.2.0 // indirect github.com/cosmos/ibc-go/modules/capability v1.0.1 // indirect + github.com/cosmos/ibc-go/v8 v8.1.0 // indirect github.com/cosmos/ics23/go v0.10.0 // indirect github.com/cosmos/ledger-cosmos-go v0.13.3 // indirect github.com/danieljoos/wincred v1.2.1 // indirect @@ -275,7 +276,7 @@ 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/v8 => ../ +replace github.com/cosmos/ibc-go/v9 => ../ replace github.com/cosmos/ibc-go/modules/light-clients/08-wasm => ../modules/light-clients/08-wasm diff --git a/e2e/go.sum b/e2e/go.sum index 68265eb8204c..5821192e29ac 100644 --- a/e2e/go.sum +++ b/e2e/go.sum @@ -389,6 +389,8 @@ github.com/cosmos/iavl v1.2.0 h1:kVxTmjTh4k0Dh1VNL046v6BXqKziqMDzxo93oh3kOfM= github.com/cosmos/iavl v1.2.0/go.mod h1:HidWWLVAtODJqFD6Hbne2Y0q3SdxByJepHUOeoH4LiI= github.com/cosmos/ibc-go/modules/capability v1.0.1 h1:ibwhrpJ3SftEEZRxCRkH0fQZ9svjthrX2+oXdZvzgGI= github.com/cosmos/ibc-go/modules/capability v1.0.1/go.mod h1:rquyOV262nGJplkumH+/LeYs04P3eV8oB7ZM4Ygqk4E= +github.com/cosmos/ibc-go/v8 v8.1.0 h1:pf1106wl0Cf+p1+FjXzV6odlS9DnqVunPVWCH1Uz+lQ= +github.com/cosmos/ibc-go/v8 v8.1.0/go.mod h1:o1ipS95xpdjqNcB8Drq0eI3Sn4FRLigjll42ec1ECuU= 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/ledger-cosmos-go v0.13.3 h1:7ehuBGuyIytsXbd4MP43mLeoN2LTOEnk5nvue4rK+yM= diff --git a/e2e/tests/core/02-client/client_test.go b/e2e/tests/core/02-client/client_test.go index ae041a3b4cbe..e56404b1938c 100644 --- a/e2e/tests/core/02-client/client_test.go +++ b/e2e/tests/core/02-client/client_test.go @@ -34,10 +34,10 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" wasmtypes "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - clienttypes "github.com/cosmos/ibc-go/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) const ( diff --git a/e2e/tests/core/03-connection/connection_test.go b/e2e/tests/core/03-connection/connection_test.go index 93dbcd980044..c4e7bc2abe57 100644 --- a/e2e/tests/core/03-connection/connection_test.go +++ b/e2e/tests/core/03-connection/connection_test.go @@ -20,9 +20,9 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" - ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func TestConnectionTestSuite(t *testing.T) { diff --git a/e2e/tests/interchain_accounts/base_test.go b/e2e/tests/interchain_accounts/base_test.go index 76e6e53beed6..17ec1a6b7f89 100644 --- a/e2e/tests/interchain_accounts/base_test.go +++ b/e2e/tests/interchain_accounts/base_test.go @@ -23,10 +23,10 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - controllertypes "github.com/cosmos/ibc-go/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" + controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) // orderMapping is a mapping from channel ordering to the string representation of the ordering. diff --git a/e2e/tests/interchain_accounts/gov_test.go b/e2e/tests/interchain_accounts/gov_test.go index 98f1acd9fed6..a8556f2a6244 100644 --- a/e2e/tests/interchain_accounts/gov_test.go +++ b/e2e/tests/interchain_accounts/gov_test.go @@ -22,10 +22,10 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - controllertypes "github.com/cosmos/ibc-go/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" + controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func TestInterchainAccountsGovTestSuite(t *testing.T) { diff --git a/e2e/tests/interchain_accounts/groups_test.go b/e2e/tests/interchain_accounts/groups_test.go index 2ebc61d660e8..bea7d97a72fa 100644 --- a/e2e/tests/interchain_accounts/groups_test.go +++ b/e2e/tests/interchain_accounts/groups_test.go @@ -22,10 +22,10 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - controllertypes "github.com/cosmos/ibc-go/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" + controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) const ( diff --git a/e2e/tests/interchain_accounts/incentivized_test.go b/e2e/tests/interchain_accounts/incentivized_test.go index b4424f264f38..69937be0fa27 100644 --- a/e2e/tests/interchain_accounts/incentivized_test.go +++ b/e2e/tests/interchain_accounts/incentivized_test.go @@ -21,11 +21,11 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - controllertypes "github.com/cosmos/ibc-go/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" - channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + feetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func TestIncentivizedInterchainAccountsTestSuite(t *testing.T) { diff --git a/e2e/tests/interchain_accounts/localhost_test.go b/e2e/tests/interchain_accounts/localhost_test.go index e11233c2f2c9..e879af28ec41 100644 --- a/e2e/tests/interchain_accounts/localhost_test.go +++ b/e2e/tests/interchain_accounts/localhost_test.go @@ -21,13 +21,13 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - controllertypes "github.com/cosmos/ibc-go/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" + controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + localhost "github.com/cosmos/ibc-go/v9/modules/light-clients/09-localhost" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func TestInterchainAccountsLocalhostTestSuite(t *testing.T) { diff --git a/e2e/tests/interchain_accounts/params_test.go b/e2e/tests/interchain_accounts/params_test.go index afe6893cf163..d6e43de70364 100644 --- a/e2e/tests/interchain_accounts/params_test.go +++ b/e2e/tests/interchain_accounts/params_test.go @@ -23,12 +23,12 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - controllertypes "github.com/cosmos/ibc-go/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" - channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" - coretypes "github.com/cosmos/ibc-go/v8/modules/core/types" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + hosttypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + coretypes "github.com/cosmos/ibc-go/v9/modules/core/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func TestInterchainAccountsParamsTestSuite(t *testing.T) { diff --git a/e2e/tests/interchain_accounts/query_test.go b/e2e/tests/interchain_accounts/query_test.go index cd648b194552..1988da191d40 100644 --- a/e2e/tests/interchain_accounts/query_test.go +++ b/e2e/tests/interchain_accounts/query_test.go @@ -19,11 +19,11 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - controllertypes "github.com/cosmos/ibc-go/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" - channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + icahosttypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func TestInterchainAccountsQueryTestSuite(t *testing.T) { diff --git a/e2e/tests/interchain_accounts/upgrades_test.go b/e2e/tests/interchain_accounts/upgrades_test.go index af7b22e7ea47..e74a371c8cd8 100644 --- a/e2e/tests/interchain_accounts/upgrades_test.go +++ b/e2e/tests/interchain_accounts/upgrades_test.go @@ -22,11 +22,11 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - controllertypes "github.com/cosmos/ibc-go/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" - channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + feetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func TestInterchainAccountsChannelUpgradesTestSuite(t *testing.T) { diff --git a/e2e/tests/transfer/authz_test.go b/e2e/tests/transfer/authz_test.go index 24ea055d6bda..e7a2c68e21cc 100644 --- a/e2e/tests/transfer/authz_test.go +++ b/e2e/tests/transfer/authz_test.go @@ -20,8 +20,8 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - transfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" - ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + ibcerrors "github.com/cosmos/ibc-go/v9/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 7acafea833f7..df3a4428fa98 100644 --- a/e2e/tests/transfer/base_test.go +++ b/e2e/tests/transfer/base_test.go @@ -21,8 +21,8 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - transfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func TestTransferTestSuite(t *testing.T) { diff --git a/e2e/tests/transfer/forwarding_test.go b/e2e/tests/transfer/forwarding_test.go index ed1e07ec958f..cce64d83d878 100644 --- a/e2e/tests/transfer/forwarding_test.go +++ b/e2e/tests/transfer/forwarding_test.go @@ -13,8 +13,8 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - transfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" ) func TestTransferForwardingTestSuite(t *testing.T) { diff --git a/e2e/tests/transfer/incentivized_test.go b/e2e/tests/transfer/incentivized_test.go index 7b42a6b509db..3f3f7b0dc4f3 100644 --- a/e2e/tests/transfer/incentivized_test.go +++ b/e2e/tests/transfer/incentivized_test.go @@ -19,8 +19,8 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - feetypes "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + feetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" ) const ( diff --git a/e2e/tests/transfer/localhost_test.go b/e2e/tests/transfer/localhost_test.go index 982f05a6b68e..ab657472e26b 100644 --- a/e2e/tests/transfer/localhost_test.go +++ b/e2e/tests/transfer/localhost_test.go @@ -12,12 +12,12 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - transfertypes "github.com/cosmos/ibc-go/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" + transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + localhost "github.com/cosmos/ibc-go/v9/modules/light-clients/09-localhost" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func TestTransferLocalhostTestSuite(t *testing.T) { diff --git a/e2e/tests/transfer/upgradesv1_test.go b/e2e/tests/transfer/upgradesv1_test.go index 0227031d62fb..3808c2fed03b 100644 --- a/e2e/tests/transfer/upgradesv1_test.go +++ b/e2e/tests/transfer/upgradesv1_test.go @@ -17,9 +17,9 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - feetypes "github.com/cosmos/ibc-go/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" + feetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" ) func TestTransferChannelUpgradesV1TestSuite(t *testing.T) { diff --git a/e2e/tests/transfer/upgradesv2_test.go b/e2e/tests/transfer/upgradesv2_test.go index 88854f7deac2..7e703ccea04f 100644 --- a/e2e/tests/transfer/upgradesv2_test.go +++ b/e2e/tests/transfer/upgradesv2_test.go @@ -18,9 +18,9 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - feetypes "github.com/cosmos/ibc-go/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" + feetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" ) func TestTransferChannelUpgradesTestSuite(t *testing.T) { diff --git a/e2e/tests/upgrades/genesis_test.go b/e2e/tests/upgrades/genesis_test.go index c5c8a154168b..91cd607609ef 100644 --- a/e2e/tests/upgrades/genesis_test.go +++ b/e2e/tests/upgrades/genesis_test.go @@ -23,10 +23,10 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - controllertypes "github.com/cosmos/ibc-go/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" + controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func TestGenesisTestSuite(t *testing.T) { diff --git a/e2e/tests/upgrades/upgrade_test.go b/e2e/tests/upgrades/upgrade_test.go index 6e194a138cd4..13cf95c05253 100644 --- a/e2e/tests/upgrades/upgrade_test.go +++ b/e2e/tests/upgrades/upgrade_test.go @@ -28,14 +28,14 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - feetypes "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/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" - "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" + feetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + v7migrations "github.com/cosmos/ibc-go/v9/modules/core/02-client/migrations/v7" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) const ( @@ -58,7 +58,7 @@ type UpgradeTestSuite struct { func (s *UpgradeTestSuite) SetupTest() { channelOpts := s.TransferChannelOptions() - // TODO(chatton) hack to handle special case for the v8 to v8.1 upgrade test. + // TODO(chatton) hack to handle special case for the v9 to v9.1 upgrade test. if strings.HasSuffix(s.T().Name(), "TestV8ToV8_1ChainUpgrade") { channelOpts = s.FeeTransferChannelOptions() } diff --git a/e2e/tests/wasm/feature_releases.go b/e2e/tests/wasm/feature_releases.go index 69c51f55389d..47a1cf488ff0 100644 --- a/e2e/tests/wasm/feature_releases.go +++ b/e2e/tests/wasm/feature_releases.go @@ -3,9 +3,9 @@ package wasm import "github.com/cosmos/ibc-go/e2e/semverutil" var govV1FeatureReleases = semverutil.FeatureReleases{ - MajorVersion: "v8", + MajorVersion: "v9", } var govV1FailedReasonFeatureReleases = semverutil.FeatureReleases{ - MajorVersion: "v8", + MajorVersion: "v9", } diff --git a/e2e/tests/wasm/grandpa_test.go b/e2e/tests/wasm/grandpa_test.go index a0eade9cb1ee..9e627c471f70 100644 --- a/e2e/tests/wasm/grandpa_test.go +++ b/e2e/tests/wasm/grandpa_test.go @@ -28,10 +28,10 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" wasmtypes "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - transfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" - ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) const ( diff --git a/e2e/testsuite/codec.go b/e2e/testsuite/codec.go index 5fabcf486716..0edf92d513c9 100644 --- a/e2e/testsuite/codec.go +++ b/e2e/testsuite/codec.go @@ -24,18 +24,18 @@ import ( proposaltypes "github.com/cosmos/cosmos-sdk/x/params/types/proposal" wasmtypes "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - icacontrollertypes "github.com/cosmos/ibc-go/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" - ibctesting "github.com/cosmos/ibc-go/v8/testing" - simappparams "github.com/cosmos/ibc-go/v8/testing/simapp/params" + icacontrollertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + icahosttypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" + feetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + v7migrations "github.com/cosmos/ibc-go/v9/modules/core/02-client/migrations/v7" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" + ibctmtypes "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v9/testing" + simappparams "github.com/cosmos/ibc-go/v9/testing/simapp/params" ) // Codec returns the global E2E protobuf codec. diff --git a/e2e/testsuite/query/queries.go b/e2e/testsuite/query/queries.go index 8ed8a09012b0..00b261c30c32 100644 --- a/e2e/testsuite/query/queries.go +++ b/e2e/testsuite/query/queries.go @@ -14,12 +14,12 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - controllertypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/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" - ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" + controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + feetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // ModuleAccountAddress returns the address of the given module on the given chain. diff --git a/e2e/testsuite/sanitize/messages.go b/e2e/testsuite/sanitize/messages.go index 1ffb69a7f5c1..9853193f155d 100644 --- a/e2e/testsuite/sanitize/messages.go +++ b/e2e/testsuite/sanitize/messages.go @@ -6,8 +6,8 @@ import ( grouptypes "github.com/cosmos/cosmos-sdk/x/group" "github.com/cosmos/ibc-go/e2e/semverutil" - icacontrollertypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" - channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + icacontrollertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" ) var ( @@ -24,7 +24,7 @@ var ( MajorVersion: "v9", MinorVersions: []string{ "v7.5", - "v8.1", + "v9.1", }, } ) diff --git a/e2e/testsuite/testconfig.go b/e2e/testsuite/testconfig.go index f32deb7d938b..7fc0d6e0ec57 100644 --- a/e2e/testsuite/testconfig.go +++ b/e2e/testsuite/testconfig.go @@ -28,9 +28,9 @@ import ( "github.com/cosmos/ibc-go/e2e/semverutil" "github.com/cosmos/ibc-go/e2e/testvalues" wasmtypes "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" - ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" - ibctypes "github.com/cosmos/ibc-go/v8/modules/core/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctypes "github.com/cosmos/ibc-go/v9/modules/core/types" ) const ( @@ -615,7 +615,7 @@ func getGenesisModificationFunction(cc ChainConfig) func(ibc.ChainConfig, []byte // defaultGovv1ModifyGenesis will only modify governance params to ensure the voting period and minimum deposit // are functional for e2e testing purposes. func defaultGovv1ModifyGenesis(version string) func(ibc.ChainConfig, []byte) ([]byte, error) { - stdlibJSONMarshalling := semverutil.FeatureReleases{MajorVersion: "v8"} + stdlibJSONMarshalling := semverutil.FeatureReleases{MajorVersion: "v9"} return func(chainConfig ibc.ChainConfig, genbz []byte) ([]byte, error) { appGenesis, err := genutiltypes.AppGenesisFromReader(bytes.NewReader(genbz)) if err != nil { @@ -654,8 +654,8 @@ func defaultGovv1ModifyGenesis(version string) func(ibc.ChainConfig, []byte) ([] return nil, err } - // in older version < v8, tmjson marshal must be used. - // regular json marshalling must be used for v8 and above as the + // in older version < v9, tmjson marshal must be used. + // regular json marshalling must be used for v9 and above as the // sdk is de-coupled from comet. marshalIndentFn := cmtjson.MarshalIndent if stdlibJSONMarshalling.IsSupported(version) { diff --git a/e2e/testsuite/testsuite.go b/e2e/testsuite/testsuite.go index 4f5812bb4327..71a4ebf9b005 100644 --- a/e2e/testsuite/testsuite.go +++ b/e2e/testsuite/testsuite.go @@ -29,10 +29,10 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite/diagnostics" "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testvalues" - 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" + feetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" ) const ( diff --git a/e2e/testsuite/tx.go b/e2e/testsuite/tx.go index 825867b81953..d9e11fe98be5 100644 --- a/e2e/testsuite/tx.go +++ b/e2e/testsuite/tx.go @@ -29,9 +29,9 @@ import ( "github.com/cosmos/ibc-go/e2e/testsuite/query" "github.com/cosmos/ibc-go/e2e/testsuite/sanitize" "github.com/cosmos/ibc-go/e2e/testvalues" - feetypes "github.com/cosmos/ibc-go/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" + feetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" ) // 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 7d0e7e18b562..cfce412573e8 100644 --- a/e2e/testvalues/values.go +++ b/e2e/testvalues/values.go @@ -11,7 +11,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/ibc-go/e2e/semverutil" - feetypes "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + feetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" ) const ( @@ -66,7 +66,7 @@ var FeeMiddlewareFeatureReleases = semverutil.FeatureReleases{ // TokenMetadataFeatureReleases represents the releases the token metadata was released in. var TokenMetadataFeatureReleases = semverutil.FeatureReleases{ - MajorVersion: "v8", + MajorVersion: "v9", } // GovGenesisFeatureReleases represents the releases the governance module genesis @@ -77,12 +77,12 @@ var GovGenesisFeatureReleases = semverutil.FeatureReleases{ // SelfParamsFeatureReleases represents the releases the transfer module started managing its own params. var SelfParamsFeatureReleases = semverutil.FeatureReleases{ - MajorVersion: "v8", + MajorVersion: "v9", } // TotalEscrowFeatureReleases represents the releases the total escrow state entry was released in. var TotalEscrowFeatureReleases = semverutil.FeatureReleases{ - MajorVersion: "v8", + MajorVersion: "v9", MinorVersions: []string{ "v7.1", }, @@ -90,12 +90,12 @@ var TotalEscrowFeatureReleases = semverutil.FeatureReleases{ // IbcErrorsFeatureReleases represents the releases the IBC module level errors was released in. var IbcErrorsFeatureReleases = semverutil.FeatureReleases{ - MajorVersion: "v8", + MajorVersion: "v9", } // LocalhostClientFeatureReleases represents the releases the localhost client was released in. var LocalhostClientFeatureReleases = semverutil.FeatureReleases{ - MajorVersion: "v8", + MajorVersion: "v9", MinorVersions: []string{ "v7.1", }, @@ -105,7 +105,7 @@ var LocalhostClientFeatureReleases = semverutil.FeatureReleases{ var AllowAllClientsWildcardFeatureReleases = semverutil.FeatureReleases{ MajorVersion: "v9", MinorVersions: []string{ - "v8.1", + "v9.1", }, } @@ -113,27 +113,27 @@ var AllowAllClientsWildcardFeatureReleases = semverutil.FeatureReleases{ var ChannelParamsFeatureReleases = semverutil.FeatureReleases{ MajorVersion: "v9", MinorVersions: []string{ - "v8.1", + "v9.1", }, } // GovV1MessagesFeatureReleases represents the releases the support for x/gov v1 messages was released in. var GovV1MessagesFeatureReleases = semverutil.FeatureReleases{ - MajorVersion: "v8", + MajorVersion: "v9", } // CapitalEfficientFeeEscrowFeatureReleases represents the releases the support for capital efficient fee escrow was released in. var CapitalEfficientFeeEscrowFeatureReleases = semverutil.FeatureReleases{ MajorVersion: "v9", MinorVersions: []string{ - "v8.1", + "v9.1", }, } // TransactionEventQueryFeatureReleases represents the releases the support for --query flag // in "query txs" for searching transactions that match exact events (since Cosmos SDK v0.50) was released in. var TransactionEventQueryFeatureReleases = semverutil.FeatureReleases{ - MajorVersion: "v8", + MajorVersion: "v9", } // ICS20v2FeatureReleases represents the releases the support for ICS20 v2 was released in. diff --git a/go.mod b/go.mod index 8234f0256bc2..acfd405e0a06 100644 --- a/go.mod +++ b/go.mod @@ -2,7 +2,7 @@ go 1.22.2 toolchain go1.22.3 -module github.com/cosmos/ibc-go/v8 +module github.com/cosmos/ibc-go/v9 require ( cosmossdk.io/api v0.7.5 diff --git a/internal/validate/validate.go b/internal/validate/validate.go index 82b70b0a450c..4ba4e0713a73 100644 --- a/internal/validate/validate.go +++ b/internal/validate/validate.go @@ -4,7 +4,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" ) // GRPCRequest validates that the portID and channelID of a gRPC Request are valid identifiers. diff --git a/internal/validate/validate_test.go b/internal/validate/validate_test.go index 13b37e71f30d..ce49cf424758 100644 --- a/internal/validate/validate_test.go +++ b/internal/validate/validate_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/v8/internal/validate" + "github.com/cosmos/ibc-go/v9/internal/validate" ) func TestGRPCRequest(t *testing.T) { diff --git a/modules/apps/27-interchain-accounts/client/cli/cli.go b/modules/apps/27-interchain-accounts/client/cli/cli.go index 003b53118398..e89c5b51261a 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/v8/modules/apps/27-interchain-accounts/controller/client/cli" - hostcli "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/client/cli" + controllercli "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/client/cli" + hostcli "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/client/cli" ) // 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 6b751c78ea8a..dbcf3a198202 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/v8/modules/apps/27-interchain-accounts/controller/types" + "github.com/cosmos/ibc-go/v9/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 6b938eaf10bc..b3d9f7b51757 100644 --- a/modules/apps/27-interchain-accounts/controller/client/cli/tx.go +++ b/modules/apps/27-interchain-accounts/controller/client/cli/tx.go @@ -14,10 +14,10 @@ import ( "github.com/cosmos/cosmos-sdk/client/tx" "github.com/cosmos/cosmos-sdk/codec" - "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" - 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/v9/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" ) const ( diff --git a/modules/apps/27-interchain-accounts/controller/ibc_middleware.go b/modules/apps/27-interchain-accounts/controller/ibc_middleware.go index 3ab3144e26d8..f6f14d894bfc 100644 --- a/modules/apps/27-interchain-accounts/controller/ibc_middleware.go +++ b/modules/apps/27-interchain-accounts/controller/ibc_middleware.go @@ -8,15 +8,15 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - "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" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/keeper" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + ibcexported "github.com/cosmos/ibc-go/v9/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 f5ba5299ef0d..0028b325fd8d 100644 --- a/modules/apps/27-interchain-accounts/controller/ibc_middleware_test.go +++ b/modules/apps/27-interchain-accounts/controller/ibc_middleware_test.go @@ -12,16 +12,16 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - "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" - ibcmock "github.com/cosmos/ibc-go/v8/testing/mock" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller" + controllerkeeper "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/keeper" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibctesting "github.com/cosmos/ibc-go/v9/testing" + ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" ) const invalidVersion = "invalid|version" diff --git a/modules/apps/27-interchain-accounts/controller/keeper/account.go b/modules/apps/27-interchain-accounts/controller/keeper/account.go index cb08bb44e19a..779826dbc94b 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/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" + "github.com/cosmos/ibc-go/v9/internal/logging" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v9/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 8fac043ccabb..d8dab0db249e 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/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" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibctesting "github.com/cosmos/ibc-go/v9/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 1fdbeeb6cbef..5743253b5300 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/events.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/events.go @@ -5,9 +5,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/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" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // 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 bad2c32661a1..154d8d3aee68 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/export_test.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/export_test.go @@ -7,7 +7,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" ) // GetAppMetadata is a wrapper around getAppMetadata to allow the function to be directly called in tests. diff --git a/modules/apps/27-interchain-accounts/controller/keeper/genesis.go b/modules/apps/27-interchain-accounts/controller/keeper/genesis.go index c943eab83042..acf5f0d33aa1 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/v8/modules/apps/27-interchain-accounts/genesis/types" - host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + genesistypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/genesis/types" + host "github.com/cosmos/ibc-go/v9/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 a27932988d00..4a8e5d19bcb6 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/genesis_test.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/genesis_test.go @@ -1,13 +1,13 @@ package keeper_test import ( - "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" - 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" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/keeper" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + genesistypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/genesis/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibctesting "github.com/cosmos/ibc-go/v9/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 51c4b83a34f9..4d8e14c6d764 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/v8/modules/apps/27-interchain-accounts/controller/types" - icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" ) 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 471d343dc4fe..71e9eb96bad0 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/grpc_query_test.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/grpc_query_test.go @@ -1,9 +1,9 @@ package keeper_test import ( - "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" - channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) 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 aa54053221a8..609e6ae17b31 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/handshake.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/handshake.go @@ -9,9 +9,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/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" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" ) // 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 7e6f0add2f80..f7cc1b1bd317 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/handshake_test.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/handshake_test.go @@ -2,12 +2,12 @@ package keeper_test import ( capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/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" - ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) const ( diff --git a/modules/apps/27-interchain-accounts/controller/keeper/keeper.go b/modules/apps/27-interchain-accounts/controller/keeper/keeper.go index 816b281b87db..09d751b00bb9 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/keeper.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/keeper.go @@ -14,14 +14,14 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - "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" - ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + genesistypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/genesis/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // 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 f8e2486d15d3..a9638043c66f 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/keeper_test.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/keeper_test.go @@ -8,13 +8,13 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/cosmos/ibc-go/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" - 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" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/keeper" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + genesistypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/genesis/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + channelkeeper "github.com/cosmos/ibc-go/v9/modules/core/04-channel/keeper" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) var ( diff --git a/modules/apps/27-interchain-accounts/controller/keeper/migrations.go b/modules/apps/27-interchain-accounts/controller/keeper/migrations.go index 3e36f809a149..ac6e2fb41c75 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/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" + controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + host "github.com/cosmos/ibc-go/v9/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 ec48a4428606..45562f1788ea 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/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" + icacontrollerkeeper "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/keeper" + icacontrollertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) 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 1cdeb601eae3..ea78c2d0fdef 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/msg_server.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/msg_server.go @@ -7,10 +7,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/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" - ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" ) 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 c137aad908c0..5616904c2dec 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/msg_server_test.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/msg_server_test.go @@ -8,12 +8,12 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "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" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/keeper" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) 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 9b8de9297502..7493bd0bde9d 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/relay.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/relay.go @@ -6,11 +6,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/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" - 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/v9/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v9/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 7292f73538ad..73c471a439a6 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/relay_test.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/relay_test.go @@ -6,11 +6,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/cosmos/ibc-go/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" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) 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 793bb2adbdad..8e2a4f29fb9c 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/v8/modules/apps/27-interchain-accounts/controller/types" - ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" + controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + ibcexported "github.com/cosmos/ibc-go/v9/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 d63b69ec110e..e7f79b81feda 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" - "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" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/migrations/v6" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibctesting "github.com/cosmos/ibc-go/v9/testing" + ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" ) type MigrationsTestSuite struct { diff --git a/modules/apps/27-interchain-accounts/controller/types/codec_test.go b/modules/apps/27-interchain-accounts/controller/types/codec_test.go index 3b6e13a25f90..3a584cb3b950 100644 --- a/modules/apps/27-interchain-accounts/controller/types/codec_test.go +++ b/modules/apps/27-interchain-accounts/controller/types/codec_test.go @@ -8,8 +8,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" - ica "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts" - "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" + ica "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" ) func TestCodecTypeRegistration(t *testing.T) { 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 94df640fc46f..61b987807e72 100644 --- a/modules/apps/27-interchain-accounts/controller/types/controller.pb.go +++ b/modules/apps/27-interchain-accounts/controller/types/controller.pb.go @@ -78,21 +78,21 @@ func init() { } var fileDescriptor_177fd0fec5eb3400 = []byte{ - // 220 bytes of a gzipped FileDescriptorProto + // 221 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, 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, + 0x10, 0x86, 0xe3, 0xa5, 0x42, 0xd9, 0xc8, 0xc4, 0x64, 0x21, 0x26, 0x96, 0xf8, 0xd4, 0x32, 0x54, + 0xac, 0x20, 0xf6, 0x8a, 0x91, 0xa5, 0xb2, 0xaf, 0x56, 0x7b, 0xc8, 0xf1, 0x45, 0x3e, 0x27, 0x12, + 0x6f, 0xc1, 0x63, 0x31, 0x76, 0x64, 0x44, 0xc9, 0x8b, 0x20, 0xe8, 0x90, 0x0c, 0x19, 0x4f, 0x9f, + 0xee, 0xd3, 0xff, 0x95, 0xcf, 0xe4, 0x10, 0x6c, 0xdb, 0x06, 0x42, 0x9b, 0x89, 0xa3, 0x00, 0xc5, + 0xec, 0x13, 0x9e, 0x2c, 0xc5, 0xbd, 0x45, 0xe4, 0x2e, 0x66, 0x01, 0xe4, 0x98, 0x13, 0x87, 0xe0, + 0x13, 0xf4, 0xeb, 0xd9, 0x65, 0xda, 0xc4, 0x99, 0xab, 0x0d, 0x39, 0x34, 0x73, 0x89, 0x59, 0x90, + 0x98, 0xd9, 0x5b, 0xbf, 0xbe, 0xdb, 0x96, 0xab, 0x9d, 0x4d, 0xb6, 0x91, 0xaa, 0x2e, 0xab, 0x09, + 0xed, 0x7d, 0xb4, 0x2e, 0xf8, 0xc3, 0x8d, 0xba, 0x55, 0xf7, 0x57, 0xaf, 0xd7, 0x13, 0x79, 0xb9, + 0x80, 0xa7, 0xf7, 0xaf, 0x41, 0xab, 0xf3, 0xa0, 0xd5, 0xcf, 0xa0, 0xd5, 0xe7, 0xa8, 0x8b, 0xf3, + 0xa8, 0x8b, 0xef, 0x51, 0x17, 0x6f, 0xbb, 0x23, 0xe5, 0x53, 0xe7, 0x0c, 0x72, 0x03, 0xc8, 0xd2, + 0xb0, 0x00, 0x39, 0xac, 0x8f, 0x0c, 0xfd, 0x23, 0x34, 0x7c, 0xe8, 0x82, 0x97, 0xbf, 0x56, 0x81, + 0xcd, 0xb6, 0x9e, 0x16, 0xd6, 0x4b, 0x99, 0xf9, 0xa3, 0xf5, 0xe2, 0x56, 0xff, 0x7d, 0x0f, 0xbf, + 0x01, 0x00, 0x00, 0xff, 0xff, 0x0d, 0xbb, 0xb2, 0xf3, 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 378295d69842..b8d89fb49f37 100644 --- a/modules/apps/27-interchain-accounts/controller/types/msgs.go +++ b/modules/apps/27-interchain-accounts/controller/types/msgs.go @@ -8,10 +8,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - icatypes "github.com/cosmos/ibc-go/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" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" ) const MaximumOwnerLength = 2048 // maximum length of the owner in bytes (value chosen arbitrarily) diff --git a/modules/apps/27-interchain-accounts/controller/types/msgs_test.go b/modules/apps/27-interchain-accounts/controller/types/msgs_test.go index 8f15b2ba9d90..929408279b29 100644 --- a/modules/apps/27-interchain-accounts/controller/types/msgs_test.go +++ b/modules/apps/27-interchain-accounts/controller/types/msgs_test.go @@ -10,12 +10,12 @@ 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/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" - channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + ica "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + feetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v9/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 f36978215fb2..081ec114ed65 100644 --- a/modules/apps/27-interchain-accounts/controller/types/query.pb.go +++ b/modules/apps/27-interchain-accounts/controller/types/query.pb.go @@ -224,7 +224,7 @@ 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, 0xca, 0x1c, 0x04, 0x15, 0x94, 0xbd, 0xed, 0xf6, 0x20, 0xb2, 0x07, 0x97, 0x34, + 0x12, 0xb6, 0x0a, 0xe2, 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, @@ -248,8 +248,8 @@ var fileDescriptor_df0d8b259d72854e = []byte{ 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, + 0x9e, 0x3d, 0xa9, 0x85, 0xc9, 0x06, 0xee, 0x57, 0xbc, 0xfb, 0x3d, 0x00, 0x00, 0xff, 0xff, 0xde, + 0xb6, 0xd3, 0x83, 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 a61a35f4ba44..f1898a388cdd 100644 --- a/modules/apps/27-interchain-accounts/controller/types/tx.pb.go +++ b/modules/apps/27-interchain-accounts/controller/types/tx.pb.go @@ -10,8 +10,8 @@ import ( _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" - types1 "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" - types "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + types1 "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + types "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" @@ -289,46 +289,46 @@ var fileDescriptor_7def041328c84a30 = []byte{ // 671 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x54, 0x4f, 0x4f, 0x13, 0x4d, 0x1c, 0xee, 0xbe, 0x94, 0x02, 0x03, 0x2f, 0xbc, 0xef, 0x86, 0x48, 0xd9, 0x68, 0xc1, 0xea, 0x01, - 0x49, 0x98, 0x49, 0xeb, 0xdf, 0xd4, 0x78, 0x10, 0xf0, 0xd0, 0x98, 0xc6, 0x66, 0xc5, 0x84, 0x78, - 0x69, 0xa6, 0xb3, 0x93, 0x61, 0xa4, 0x3b, 0xb3, 0xce, 0x4c, 0x57, 0xbc, 0x19, 0x4f, 0xc6, 0x83, - 0xf1, 0xe0, 0x07, 0xe0, 0x23, 0x70, 0xf7, 0x03, 0xc8, 0x91, 0xa3, 0x27, 0x63, 0xe0, 0xc0, 0xcd, - 0xcf, 0x60, 0xf6, 0x4f, 0xb7, 0x28, 0x48, 0xb0, 0x70, 0xdb, 0xdf, 0x6f, 0xe6, 0x79, 0x7e, 0xcf, - 0xf3, 0xcc, 0xec, 0x80, 0xfb, 0xbc, 0x4d, 0x10, 0x0e, 0x82, 0x0e, 0x27, 0xd8, 0x70, 0x29, 0x34, - 0xe2, 0xc2, 0x50, 0x45, 0x36, 0x30, 0x17, 0x2d, 0x4c, 0x88, 0xec, 0x0a, 0xa3, 0x11, 0x91, 0xc2, - 0x28, 0xd9, 0xe9, 0x50, 0x85, 0xc2, 0x0a, 0x32, 0x5b, 0x30, 0x50, 0xd2, 0x48, 0xbb, 0xca, 0xdb, - 0x04, 0x1e, 0x05, 0xc3, 0x13, 0xc0, 0xb0, 0x0f, 0x86, 0x61, 0xc5, 0x99, 0x66, 0x92, 0xc9, 0x18, - 0x8e, 0xa2, 0xaf, 0x84, 0xc9, 0xb9, 0x75, 0x26, 0x19, 0x61, 0x05, 0x05, 0x98, 0x6c, 0x52, 0x93, - 0xa2, 0x56, 0x06, 0x10, 0x7f, 0x44, 0x4d, 0x42, 0x32, 0x43, 0xa4, 0xf6, 0xa5, 0x46, 0xbe, 0x66, - 0xd1, 0xba, 0xaf, 0x59, 0xba, 0x70, 0x35, 0x62, 0x27, 0x52, 0x51, 0x44, 0x36, 0xb0, 0x10, 0xb4, - 0x13, 0xc3, 0x93, 0xcf, 0x64, 0x4b, 0xf9, 0xb3, 0x05, 0x2e, 0x37, 0x34, 0x73, 0x29, 0xe3, 0xda, - 0x50, 0x55, 0xcf, 0xa6, 0x3f, 0x4c, 0x86, 0xdb, 0xd3, 0x60, 0x58, 0xbe, 0x12, 0x54, 0x15, 0xad, - 0x79, 0x6b, 0x61, 0xcc, 0x4d, 0x0a, 0xfb, 0x1a, 0xf8, 0x97, 0x48, 0x21, 0x28, 0x89, 0x44, 0xb7, - 0xb8, 0x57, 0xfc, 0x27, 0x5e, 0x9d, 0xe8, 0x37, 0xeb, 0x9e, 0x5d, 0x04, 0x23, 0x21, 0x55, 0x9a, - 0x4b, 0x51, 0x1c, 0x8a, 0x97, 0x7b, 0xa5, 0x7d, 0x07, 0x8c, 0x4a, 0xe5, 0x51, 0xc5, 0x05, 0x2b, - 0xe6, 0xe7, 0xad, 0x85, 0xc9, 0xaa, 0x03, 0xa3, 0x93, 0x88, 0xb4, 0xc2, 0x9e, 0xc0, 0xb0, 0x02, - 0x9f, 0x44, 0x9b, 0xdc, 0x6c, 0x6f, 0x6d, 0xf2, 0xdd, 0xf6, 0x5c, 0xee, 0xed, 0xe1, 0xce, 0x62, - 0x22, 0xa3, 0xec, 0x81, 0xeb, 0xa7, 0x89, 0x77, 0xa9, 0x0e, 0xa4, 0xd0, 0xd4, 0xbe, 0x02, 0x40, - 0xca, 0x1a, 0x69, 0x4d, 0x9c, 0x8c, 0xa5, 0x9d, 0xba, 0x67, 0xcf, 0x80, 0x91, 0x40, 0x2a, 0xd3, - 0xf7, 0x51, 0x88, 0xca, 0xba, 0x57, 0xcb, 0x47, 0xf3, 0xca, 0x3f, 0x2c, 0x30, 0xd6, 0xd0, 0xec, - 0x29, 0x15, 0xde, 0xda, 0xd6, 0x79, 0x02, 0xd9, 0x04, 0xe3, 0xc9, 0xe9, 0xb7, 0x3c, 0x6c, 0x70, - 0x1c, 0xca, 0x78, 0x75, 0x15, 0x9e, 0xe9, 0x0e, 0x86, 0x15, 0x78, 0xcc, 0x5f, 0x33, 0x26, 0x5b, - 0xc5, 0x06, 0x2f, 0xe7, 0x77, 0xbf, 0xcd, 0xe5, 0x5c, 0x10, 0x64, 0x1d, 0xfb, 0x06, 0xf8, 0x4f, - 0xd1, 0x0e, 0x36, 0x3c, 0xa4, 0x2d, 0xc3, 0x7d, 0x2a, 0xbb, 0x26, 0xce, 0x3a, 0xef, 0x4e, 0xf5, - 0xfa, 0x6b, 0x49, 0xfb, 0x58, 0xac, 0xb7, 0xc1, 0xff, 0x99, 0xdf, 0x2c, 0x43, 0x07, 0x8c, 0x6a, - 0xfa, 0xb2, 0x4b, 0x05, 0xa1, 0xb1, 0xf5, 0xbc, 0x9b, 0xd5, 0x69, 0x4e, 0x9f, 0x2c, 0x30, 0xd5, - 0xd0, 0xec, 0x59, 0xe0, 0x61, 0x43, 0x9b, 0x58, 0x61, 0x5f, 0xdb, 0x97, 0x40, 0x41, 0x73, 0xd6, - 0x8f, 0x2b, 0xad, 0xec, 0x75, 0x50, 0x08, 0xe2, 0x1d, 0x71, 0x50, 0xe3, 0xd5, 0x1a, 0xfc, 0xfb, - 0x3f, 0x11, 0x26, 0x33, 0x52, 0xef, 0x29, 0x5f, 0x6d, 0xaa, 0x67, 0x26, 0x1d, 0x55, 0x9e, 0x05, - 0x33, 0xbf, 0xa9, 0xea, 0x79, 0xaa, 0xbe, 0xcf, 0x83, 0xa1, 0x86, 0x66, 0xf6, 0x17, 0x0b, 0xcc, - 0xfe, 0xf9, 0x17, 0x68, 0x0e, 0xa2, 0xed, 0xb4, 0x7b, 0xe9, 0xac, 0x5f, 0x34, 0x63, 0x76, 0x4a, - 0x1f, 0x2c, 0x50, 0x48, 0x2f, 0xea, 0x83, 0x01, 0x87, 0x24, 0x70, 0xe7, 0xd1, 0xb9, 0xe0, 0x99, - 0xa0, 0x6d, 0x0b, 0x4c, 0xfc, 0x72, 0x23, 0x56, 0x06, 0xe4, 0x3d, 0x4a, 0xe2, 0x3c, 0xbe, 0x00, - 0x92, 0x9e, 0x44, 0x67, 0xf8, 0xcd, 0xe1, 0xce, 0xa2, 0xb5, 0xfc, 0x62, 0x77, 0xbf, 0x64, 0xed, - 0xed, 0x97, 0xac, 0xef, 0xfb, 0x25, 0xeb, 0xe3, 0x41, 0x29, 0xb7, 0x77, 0x50, 0xca, 0x7d, 0x3d, - 0x28, 0xe5, 0x9e, 0x37, 0x19, 0x37, 0x1b, 0xdd, 0x36, 0x24, 0xd2, 0x47, 0xe9, 0x5b, 0xcb, 0xdb, - 0x64, 0x89, 0x49, 0x14, 0xde, 0x43, 0xbe, 0xf4, 0xba, 0x1d, 0xaa, 0xa3, 0x57, 0x5c, 0xa3, 0xea, - 0xdd, 0xa5, 0xbe, 0x8e, 0xa5, 0x93, 0x1e, 0x70, 0xf3, 0x3a, 0xa0, 0xba, 0x5d, 0x88, 0x5f, 0xdf, - 0x9b, 0x3f, 0x03, 0x00, 0x00, 0xff, 0xff, 0xee, 0x6a, 0x51, 0xfa, 0xbd, 0x06, 0x00, 0x00, + 0x49, 0x98, 0x49, 0xeb, 0xbf, 0x58, 0xe3, 0x41, 0xc0, 0x43, 0x63, 0x1a, 0x9b, 0x15, 0x13, 0xe2, + 0xa5, 0x99, 0xce, 0x4e, 0x86, 0x91, 0xee, 0xcc, 0x3a, 0x33, 0x5d, 0xf1, 0x66, 0x3c, 0x19, 0x0f, + 0xc6, 0x83, 0x1f, 0x80, 0x8f, 0xc0, 0xdd, 0x0f, 0x20, 0x47, 0x8e, 0x9e, 0x8c, 0x81, 0x03, 0x37, + 0x3f, 0x83, 0xd9, 0x3f, 0xdd, 0xa2, 0x20, 0xc1, 0xc2, 0x6d, 0x7f, 0xbf, 0x99, 0xe7, 0xf9, 0x3d, + 0xcf, 0x33, 0xb3, 0x03, 0xee, 0xf3, 0x36, 0x41, 0x38, 0x08, 0x3a, 0x9c, 0x60, 0xc3, 0xa5, 0xd0, + 0x88, 0x0b, 0x43, 0x15, 0xd9, 0xc0, 0x5c, 0xb4, 0x30, 0x21, 0xb2, 0x2b, 0x8c, 0x46, 0x44, 0x0a, + 0xa3, 0x64, 0xa7, 0x43, 0x15, 0x0a, 0x2b, 0xc8, 0x6c, 0xc1, 0x40, 0x49, 0x23, 0xed, 0x2a, 0x6f, + 0x13, 0x78, 0x14, 0x0c, 0x4f, 0x00, 0xc3, 0x3e, 0x18, 0x86, 0x15, 0x67, 0x9a, 0x49, 0x26, 0x63, + 0x38, 0x8a, 0xbe, 0x12, 0x26, 0xe7, 0xd6, 0x99, 0x64, 0x84, 0x15, 0x14, 0x60, 0xb2, 0x49, 0x4d, + 0x8a, 0x5a, 0x19, 0x40, 0xfc, 0x11, 0x35, 0x09, 0xc9, 0x0c, 0x91, 0xda, 0x97, 0x1a, 0xf9, 0x9a, + 0x45, 0xeb, 0xbe, 0x66, 0xe9, 0xc2, 0xd5, 0x88, 0x9d, 0x48, 0x45, 0x11, 0xd9, 0xc0, 0x42, 0xd0, + 0x4e, 0x0c, 0x4f, 0x3e, 0x93, 0x2d, 0xe5, 0xcf, 0x16, 0xb8, 0xdc, 0xd0, 0xcc, 0xa5, 0x8c, 0x6b, + 0x43, 0x55, 0x3d, 0x9b, 0xfe, 0x30, 0x19, 0x6e, 0x4f, 0x83, 0x61, 0xf9, 0x4a, 0x50, 0x55, 0xb4, + 0xe6, 0xad, 0x85, 0x31, 0x37, 0x29, 0xec, 0x6b, 0xe0, 0x5f, 0x22, 0x85, 0xa0, 0x24, 0x12, 0xdd, + 0xe2, 0x5e, 0xf1, 0x9f, 0x78, 0x75, 0xa2, 0xdf, 0xac, 0x7b, 0x76, 0x11, 0x8c, 0x84, 0x54, 0x69, + 0x2e, 0x45, 0x71, 0x28, 0x5e, 0xee, 0x95, 0xf6, 0x1d, 0x30, 0x2a, 0x95, 0x47, 0x15, 0x17, 0xac, + 0x98, 0x9f, 0xb7, 0x16, 0x26, 0xab, 0x0e, 0x8c, 0x4e, 0x22, 0xd2, 0x0a, 0x7b, 0x02, 0xc3, 0x0a, + 0x7c, 0x12, 0x6d, 0x72, 0xb3, 0xbd, 0xb5, 0xc9, 0x77, 0xdb, 0x73, 0xb9, 0xb7, 0x87, 0x3b, 0x8b, + 0x89, 0x8c, 0xb2, 0x07, 0xae, 0x9f, 0x26, 0xde, 0xa5, 0x3a, 0x90, 0x42, 0x53, 0xfb, 0x0a, 0x00, + 0x29, 0x6b, 0xa4, 0x35, 0x71, 0x32, 0x96, 0x76, 0xea, 0x9e, 0x3d, 0x03, 0x46, 0x02, 0xa9, 0x4c, + 0xdf, 0x47, 0x21, 0x2a, 0xeb, 0x5e, 0x2d, 0x1f, 0xcd, 0x2b, 0xff, 0xb0, 0xc0, 0x58, 0x43, 0xb3, + 0xa7, 0x54, 0x78, 0x6b, 0x5b, 0xe7, 0x09, 0x64, 0x13, 0x8c, 0x27, 0xa7, 0xdf, 0xf2, 0xb0, 0xc1, + 0x71, 0x28, 0xe3, 0xd5, 0x55, 0x78, 0xa6, 0x3b, 0x18, 0x56, 0xe0, 0x31, 0x7f, 0xcd, 0x98, 0x6c, + 0x15, 0x1b, 0xbc, 0x9c, 0xdf, 0xfd, 0x36, 0x97, 0x73, 0x41, 0x90, 0x75, 0xec, 0x1b, 0xe0, 0x3f, + 0x45, 0x3b, 0xd8, 0xf0, 0x90, 0xb6, 0x0c, 0xf7, 0xa9, 0xec, 0x9a, 0x38, 0xeb, 0xbc, 0x3b, 0xd5, + 0xeb, 0xaf, 0x25, 0xed, 0x63, 0xb1, 0xde, 0x06, 0xff, 0x67, 0x7e, 0xb3, 0x0c, 0x1d, 0x30, 0xaa, + 0xe9, 0xcb, 0x2e, 0x15, 0x84, 0xc6, 0xd6, 0xf3, 0x6e, 0x56, 0xa7, 0x39, 0x7d, 0xb2, 0xc0, 0x54, + 0x43, 0xb3, 0x67, 0x81, 0x87, 0x0d, 0x6d, 0x62, 0x85, 0x7d, 0x6d, 0x5f, 0x02, 0x05, 0xcd, 0x59, + 0x3f, 0xae, 0xb4, 0xb2, 0xd7, 0x41, 0x21, 0x88, 0x77, 0xc4, 0x41, 0x8d, 0x57, 0x6b, 0xf0, 0xef, + 0xff, 0x44, 0x98, 0xcc, 0x48, 0xbd, 0xa7, 0x7c, 0xb5, 0xa9, 0x9e, 0x99, 0x74, 0x54, 0x79, 0x16, + 0xcc, 0xfc, 0xa6, 0xaa, 0xe7, 0xa9, 0xfa, 0x3e, 0x0f, 0x86, 0x1a, 0x9a, 0xd9, 0x5f, 0x2c, 0x30, + 0xfb, 0xe7, 0x5f, 0xa0, 0x39, 0x88, 0xb6, 0xd3, 0xee, 0xa5, 0xb3, 0x7e, 0xd1, 0x8c, 0xd9, 0x29, + 0x7d, 0xb0, 0x40, 0x21, 0xbd, 0xa8, 0x0f, 0x06, 0x1c, 0x92, 0xc0, 0x9d, 0x47, 0xe7, 0x82, 0x67, + 0x82, 0xb6, 0x2d, 0x30, 0xf1, 0xcb, 0x8d, 0x58, 0x19, 0x90, 0xf7, 0x28, 0x89, 0xf3, 0xf8, 0x02, + 0x48, 0x7a, 0x12, 0x9d, 0xe1, 0x37, 0x87, 0x3b, 0x8b, 0xd6, 0xf2, 0x8b, 0xdd, 0xfd, 0x92, 0xb5, + 0xb7, 0x5f, 0xb2, 0xbe, 0xef, 0x97, 0xac, 0x8f, 0x07, 0xa5, 0xdc, 0xde, 0x41, 0x29, 0xf7, 0xf5, + 0xa0, 0x94, 0x7b, 0xde, 0x64, 0xdc, 0x6c, 0x74, 0xdb, 0x90, 0x48, 0x1f, 0xa5, 0x6f, 0x2d, 0x6f, + 0x93, 0x25, 0x26, 0x51, 0x78, 0x0f, 0xf9, 0xd2, 0xeb, 0x76, 0xa8, 0x8e, 0x5e, 0x71, 0x8d, 0xaa, + 0x77, 0x97, 0xfa, 0x3a, 0x96, 0x4e, 0x7a, 0xc0, 0xcd, 0xeb, 0x80, 0xea, 0x76, 0x21, 0x7e, 0x7d, + 0x6f, 0xfe, 0x0c, 0x00, 0x00, 0xff, 0xff, 0x9e, 0x8a, 0x4a, 0x4c, 0xbd, 0x06, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/modules/apps/27-interchain-accounts/genesis/types/genesis.go b/modules/apps/27-interchain-accounts/genesis/types/genesis.go index c76db8559733..63d77fbfcea2 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/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" + controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + hosttypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" ) // 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 ebc2413e4f03..707bc37280ed 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/v8/modules/apps/27-interchain-accounts/controller/types" - types1 "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" + types "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + types1 "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" io "io" math "math" math_bits "math/bits" @@ -363,7 +363,7 @@ var fileDescriptor_d4aa48c8e29a1947 = []byte{ // 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, + 0xbd, 0x34, 0xa1, 0x55, 0x58, 0x14, 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, @@ -397,7 +397,7 @@ var fileDescriptor_d4aa48c8e29a1947 = []byte{ 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, + 0x9f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x3b, 0x52, 0x16, 0x78, 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 33bcfac6b06d..8413a68f83f5 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/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" + controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + genesistypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/genesis/types" + hosttypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + ibctesting "github.com/cosmos/ibc-go/v9/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 dab8a3e14666..4b3ba46d05b0 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/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" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" ) // 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 78f204eb63b8..a714c511bd06 100644 --- a/modules/apps/27-interchain-accounts/host/client/cli/tx.go +++ b/modules/apps/27-interchain-accounts/host/client/cli/tx.go @@ -13,7 +13,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/version" - icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + icatypes "github.com/cosmos/ibc-go/v9/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 501e1b878d9e..d378b56e1813 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/v8/modules/apps/27-interchain-accounts/types" + icatypes "github.com/cosmos/ibc-go/v9/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 099e51e92cd9..7e9d2eaed237 100644 --- a/modules/apps/27-interchain-accounts/host/ibc_module.go +++ b/modules/apps/27-interchain-accounts/host/ibc_module.go @@ -8,13 +8,13 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/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" - 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" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/keeper" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" ) var ( diff --git a/modules/apps/27-interchain-accounts/host/ibc_module_test.go b/modules/apps/27-interchain-accounts/host/ibc_module_test.go index 1fee5dd0c753..d13d71c3d52d 100644 --- a/modules/apps/27-interchain-accounts/host/ibc_module_test.go +++ b/modules/apps/27-interchain-accounts/host/ibc_module_test.go @@ -15,16 +15,16 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - icahost "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/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" - 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" - 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" + icahost "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + feetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) var ( diff --git a/modules/apps/27-interchain-accounts/host/keeper/account.go b/modules/apps/27-interchain-accounts/host/keeper/account.go index de06c88c8e93..9e2cc425d5d2 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/v8/modules/apps/27-interchain-accounts/types" + icatypes "github.com/cosmos/ibc-go/v9/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 aae1ae581d25..91af1e449c45 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/events.go +++ b/modules/apps/27-interchain-accounts/host/keeper/events.go @@ -5,10 +5,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/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" - channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // 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 4f4130054994..0d33f9e50060 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/export_test.go +++ b/modules/apps/27-interchain-accounts/host/keeper/export_test.go @@ -7,7 +7,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" ) // GetAppMetadata is a wrapper around getAppMetadata to allow the function to be directly called in tests. diff --git a/modules/apps/27-interchain-accounts/host/keeper/genesis.go b/modules/apps/27-interchain-accounts/host/keeper/genesis.go index c4d9dc1aa0b1..4af3cbe7f391 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/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" + genesistypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/genesis/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + host "github.com/cosmos/ibc-go/v9/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 5bb0f58d0464..109fb3d24497 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/genesis_test.go +++ b/modules/apps/27-interchain-accounts/host/keeper/genesis_test.go @@ -1,13 +1,13 @@ package keeper_test import ( - 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" - 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" + genesistypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/genesis/types" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/keeper" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibctesting "github.com/cosmos/ibc-go/v9/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 2444450e1a57..c6616c455bd9 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/v8/modules/apps/27-interchain-accounts/host/types" + "github.com/cosmos/ibc-go/v9/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 d1dc4c911d6f..746487ee8d0a 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/v8/modules/apps/27-interchain-accounts/host/types" + "github.com/cosmos/ibc-go/v9/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 0613b8f32cfa..0de6b77a731a 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/handshake.go +++ b/modules/apps/27-interchain-accounts/host/keeper/handshake.go @@ -9,11 +9,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/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" - host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + host "github.com/cosmos/ibc-go/v9/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 2e37ddb44186..4fe6856cbd28 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/handshake_test.go +++ b/modules/apps/27-interchain-accounts/host/keeper/handshake_test.go @@ -6,13 +6,13 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/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" - 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" - host "github.com/cosmos/ibc-go/v8/modules/core/24-host" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + hosttypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) const ( diff --git a/modules/apps/27-interchain-accounts/host/keeper/keeper.go b/modules/apps/27-interchain-accounts/host/keeper/keeper.go index 97e335a6d8fc..50e7414939b9 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/keeper.go +++ b/modules/apps/27-interchain-accounts/host/keeper/keeper.go @@ -20,14 +20,14 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/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/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" - ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + genesistypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/genesis/types" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // 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 8cee232c6a96..e7f6b8b0a226 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/keeper_test.go +++ b/modules/apps/27-interchain-accounts/host/keeper/keeper_test.go @@ -8,15 +8,15 @@ import ( authkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper" - 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" - 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" + genesistypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/genesis/types" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/keeper" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + ibcfeekeeper "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/keeper" + channelkeeper "github.com/cosmos/ibc-go/v9/modules/core/04-channel/keeper" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) var ( diff --git a/modules/apps/27-interchain-accounts/host/keeper/migrations.go b/modules/apps/27-interchain-accounts/host/keeper/migrations.go index 992027d92f19..1dcc95fd71ca 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/v8/modules/apps/27-interchain-accounts/host/types" + "github.com/cosmos/ibc-go/v9/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 1f15f947aab5..a4007c3d7bcf 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/migrations_test.go +++ b/modules/apps/27-interchain-accounts/host/keeper/migrations_test.go @@ -6,8 +6,8 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - icahostkeeper "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/keeper" - icahosttypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" + icahostkeeper "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/keeper" + icahosttypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" ) 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 1dba28152950..a344b904e937 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/msg_server.go +++ b/modules/apps/27-interchain-accounts/host/keeper/msg_server.go @@ -10,8 +10,8 @@ import ( abci "github.com/cometbft/cometbft/abci/types" - "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" - ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" + ibcerrors "github.com/cosmos/ibc-go/v9/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 54d95d7c02bf..2af40712f3cd 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/msg_server_test.go +++ b/modules/apps/27-interchain-accounts/host/keeper/msg_server_test.go @@ -5,10 +5,10 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/keeper" - "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" - transfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" - ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/keeper" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" + transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" ) func (suite *KeeperTestSuite) TestModuleQuerySafe() { diff --git a/modules/apps/27-interchain-accounts/host/keeper/relay.go b/modules/apps/27-interchain-accounts/host/keeper/relay.go index 1447bae4f509..0c18707a98a9 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/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" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" ) // 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 ba726c508bbe..37a85d6bec8e 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/relay_test.go +++ b/modules/apps/27-interchain-accounts/host/keeper/relay_test.go @@ -16,12 +16,12 @@ 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/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" - ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func (suite *KeeperTestSuite) TestOnRecvPacket() { diff --git a/modules/apps/27-interchain-accounts/host/types/codec_test.go b/modules/apps/27-interchain-accounts/host/types/codec_test.go index 581a9401e2b1..c334b3034d3e 100644 --- a/modules/apps/27-interchain-accounts/host/types/codec_test.go +++ b/modules/apps/27-interchain-accounts/host/types/codec_test.go @@ -8,8 +8,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" - ica "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts" - "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" + ica "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" ) func TestCodecTypeRegistration(t *testing.T) { 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 54df248f1195..b2bddd5f6895 100644 --- a/modules/apps/27-interchain-accounts/host/types/host.pb.go +++ b/modules/apps/27-interchain-accounts/host/types/host.pb.go @@ -149,22 +149,22 @@ var fileDescriptor_48e202774f13d08e = []byte{ // 284 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0xd0, 0x31, 0x4b, 0xfc, 0x30, 0x18, 0x06, 0xf0, 0xcb, 0xfd, 0xff, 0x1c, 0x5e, 0x3c, 0x1d, 0x3a, 0xdd, 0x14, 0xce, 0x03, 0xa1, - 0x83, 0x6d, 0x38, 0x05, 0xcf, 0x59, 0x70, 0x11, 0x04, 0xcd, 0xe8, 0x52, 0xde, 0xa4, 0xa1, 0x0d, - 0xb4, 0x4d, 0xed, 0x9b, 0x56, 0xee, 0x5b, 0xf8, 0xb1, 0x1c, 0x6f, 0x74, 0x94, 0xf6, 0x8b, 0x48, - 0xa3, 0xa0, 0x82, 0x53, 0x1e, 0x7e, 0xf0, 0x04, 0xde, 0x87, 0x6e, 0x8d, 0x54, 0x1c, 0xea, 0xba, - 0x30, 0x0a, 0x9c, 0xb1, 0x15, 0x72, 0x53, 0x39, 0xdd, 0xa8, 0x1c, 0x4c, 0x95, 0x80, 0x52, 0xb6, - 0xad, 0x1c, 0xf2, 0xdc, 0xa2, 0xe3, 0xdd, 0xc6, 0xbf, 0x71, 0xdd, 0x58, 0x67, 0x83, 0x33, 0x23, - 0x55, 0xfc, 0xb3, 0x18, 0xff, 0x51, 0x8c, 0x7d, 0xa1, 0xdb, 0xac, 0x05, 0x9d, 0xdd, 0x43, 0x03, - 0x25, 0x06, 0x27, 0x74, 0x31, 0x62, 0xa2, 0x2b, 0x90, 0x85, 0x4e, 0x97, 0x64, 0x45, 0xc2, 0x03, - 0x71, 0x38, 0xda, 0xcd, 0x27, 0x05, 0xa7, 0xf4, 0x18, 0x8a, 0xc2, 0x3e, 0x27, 0xa5, 0x46, 0x84, - 0x4c, 0xe3, 0x72, 0xba, 0xfa, 0x17, 0xce, 0xc5, 0x91, 0xd7, 0xbb, 0x2f, 0x5c, 0x5f, 0xd2, 0xc5, - 0x43, 0xab, 0x9b, 0x9d, 0xd0, 0x4f, 0xad, 0x46, 0x17, 0x04, 0xf4, 0x7f, 0x0d, 0x2e, 0xf7, 0x3f, - 0xce, 0x85, 0xcf, 0xa3, 0xa5, 0xe0, 0x60, 0x39, 0x5d, 0x91, 0x70, 0x21, 0x7c, 0xbe, 0x4e, 0x5f, - 0x7b, 0x46, 0xf6, 0x3d, 0x23, 0xef, 0x3d, 0x23, 0x2f, 0x03, 0x9b, 0xec, 0x07, 0x36, 0x79, 0x1b, - 0xd8, 0xe4, 0xf1, 0x36, 0x33, 0x2e, 0x6f, 0x65, 0xac, 0x6c, 0xc9, 0x95, 0xc5, 0xd2, 0x22, 0x37, - 0x52, 0x45, 0x99, 0xe5, 0xdd, 0x15, 0x2f, 0x6d, 0xda, 0x16, 0x1a, 0xc7, 0xb1, 0x90, 0x9f, 0x6f, - 0xa3, 0xef, 0x73, 0xa3, 0xdf, 0x3b, 0xb9, 0x5d, 0xad, 0x51, 0xce, 0xfc, 0x4c, 0x17, 0x1f, 0x01, - 0x00, 0x00, 0xff, 0xff, 0x56, 0xc6, 0xd2, 0x5a, 0x61, 0x01, 0x00, 0x00, + 0x83, 0x6d, 0x38, 0x05, 0x0f, 0x57, 0xc1, 0x45, 0x10, 0x34, 0xa3, 0x4b, 0x79, 0x93, 0x86, 0x36, + 0xd0, 0x36, 0xb5, 0x6f, 0x5a, 0xb9, 0x6f, 0xe1, 0xc7, 0x72, 0xbc, 0xd1, 0x51, 0xda, 0x2f, 0x22, + 0x8d, 0x82, 0x0a, 0x4e, 0x79, 0xf8, 0xc1, 0x13, 0x78, 0x1f, 0xba, 0x35, 0x52, 0x71, 0xa8, 0xeb, + 0xc2, 0x28, 0x70, 0xc6, 0x56, 0xc8, 0x4d, 0xe5, 0x74, 0xa3, 0x72, 0x30, 0x55, 0x02, 0x4a, 0xd9, + 0xb6, 0x72, 0xc8, 0x73, 0x8b, 0x8e, 0x77, 0x1b, 0xff, 0xc6, 0x75, 0x63, 0x9d, 0x0d, 0xce, 0x8c, + 0x54, 0xf1, 0xcf, 0x62, 0xfc, 0x47, 0x31, 0xf6, 0x85, 0x6e, 0xb3, 0x16, 0x74, 0x76, 0x0f, 0x0d, + 0x94, 0x18, 0x9c, 0xd0, 0xc5, 0x88, 0x89, 0xae, 0x40, 0x16, 0x3a, 0x5d, 0x92, 0x15, 0x09, 0x0f, + 0xc4, 0xe1, 0x68, 0x37, 0x9f, 0x14, 0x9c, 0xd2, 0x63, 0x28, 0x0a, 0xfb, 0x9c, 0x94, 0x1a, 0x11, + 0x32, 0x8d, 0xcb, 0xe9, 0xea, 0x5f, 0x38, 0x17, 0x47, 0x5e, 0xef, 0xbe, 0x70, 0x7d, 0x49, 0x17, + 0x0f, 0xad, 0x6e, 0x76, 0x42, 0x3f, 0xb5, 0x1a, 0x5d, 0x10, 0xd0, 0xff, 0x35, 0xb8, 0xdc, 0xff, + 0x38, 0x17, 0x3e, 0x8f, 0x96, 0x82, 0x83, 0xe5, 0x74, 0x45, 0xc2, 0x85, 0xf0, 0xf9, 0x3a, 0x7d, + 0xed, 0x19, 0xd9, 0xf7, 0x8c, 0xbc, 0xf7, 0x8c, 0xbc, 0x0c, 0x6c, 0xb2, 0x1f, 0xd8, 0xe4, 0x6d, + 0x60, 0x93, 0xc7, 0xdb, 0xcc, 0xb8, 0xbc, 0x95, 0xb1, 0xb2, 0x25, 0x57, 0x16, 0x4b, 0x8b, 0xdc, + 0x48, 0x15, 0x65, 0x96, 0x77, 0x57, 0xbc, 0xb4, 0x69, 0x5b, 0x68, 0x1c, 0xc7, 0x42, 0x7e, 0xbe, + 0x8d, 0xbe, 0xcf, 0x8d, 0x7e, 0xef, 0xe4, 0x76, 0xb5, 0x46, 0x39, 0xf3, 0x33, 0x5d, 0x7c, 0x04, + 0x00, 0x00, 0xff, 0xff, 0x81, 0xd5, 0x47, 0x47, 0x61, 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 5757dc77fc89..c9f8d166dd85 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/v8/modules/core/errors" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" ) var ( diff --git a/modules/apps/27-interchain-accounts/host/types/msgs_test.go b/modules/apps/27-interchain-accounts/host/types/msgs_test.go index 784f3646ce17..dae632245da1 100644 --- a/modules/apps/27-interchain-accounts/host/types/msgs_test.go +++ b/modules/apps/27-interchain-accounts/host/types/msgs_test.go @@ -8,10 +8,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" - ica "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts" - "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" - ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + ica "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) 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 bc443707ba46..15f8b8a2bc8d 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/v8/modules/apps/27-interchain-accounts/host/types" + "github.com/cosmos/ibc-go/v9/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 b53620bd2e8b..8cd0028e26a4 100644 --- a/modules/apps/27-interchain-accounts/host/types/query.pb.go +++ b/modules/apps/27-interchain-accounts/host/types/query.pb.go @@ -124,24 +124,24 @@ var fileDescriptor_e6b7e23fc90c353a = []byte{ // 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, + 0xb5, 0x50, 0xdd, 0xd4, 0x51, 0x1c, 0xd4, 0xd1, 0x45, 0x72, 0x69, 0xb8, 0x06, 0x7a, 0x79, 0xd2, + 0x4b, 0xee, 0xa0, 0xab, 0x9f, 0x40, 0xf0, 0x23, 0xb9, 0xb8, 0x08, 0x05, 0x17, 0x47, 0xb9, 0xf3, + 0x83, 0xc8, 0xe5, 0x0e, 0xb4, 0x28, 0xc2, 0xe1, 0xfa, 0x84, 0xdf, 0xef, 0xff, 0xfc, 0x9f, 0xe0, + 0x23, 0x1d, 0x49, 0x2e, 0xac, 0x5d, 0x68, 0x29, 0xbc, 0x06, 0xe3, 0xb8, 0x36, 0x5e, 0xa5, 0x72, + 0x2e, 0xb4, 0xb9, 0x15, 0x52, 0x42, 0x66, 0xbc, 0xe3, 0x73, 0x70, 0x9e, 0xe7, 0x23, 0xbe, 0xcc, + 0x54, 0xba, 0x62, 0x36, 0x05, 0x0f, 0x64, 0xa0, 0x23, 0xc9, 0xbe, 0x92, 0xec, 0x07, 0x92, 0x55, + 0x24, 0xcb, 0x47, 0xbd, 0xbd, 0x18, 0x20, 0x5e, 0x28, 0x2e, 0xac, 0xe6, 0xc2, 0x18, 0xf0, 0x0d, + 0x13, 0x5c, 0xbd, 0x69, 0xab, 0x2d, 0x82, 0x33, 0x80, 0xfd, 0x1d, 0x4c, 0xae, 0xaa, 0x9d, 0x2e, + 0x45, 0x2a, 0x12, 0x77, 0xad, 0x96, 0x99, 0x72, 0xbe, 0x2f, 0xf1, 0xf6, 0xc6, 0xd4, 0x59, 0x30, + 0x4e, 0x91, 0x0b, 0xdc, 0xb5, 0x61, 0xb2, 0x8b, 0xf6, 0xd1, 0xc1, 0xd6, 0x78, 0xc2, 0xda, 0x54, + 0x60, 0x8d, 0xad, 0x71, 0x8c, 0x9f, 0x11, 0xfe, 0x1f, 0x52, 0xc8, 0x23, 0xc2, 0xdd, 0xfa, 0x91, + 0x9c, 0xb4, 0x53, 0x7e, 0xdf, 0xbd, 0x77, 0xfa, 0x07, 0x43, 0xdd, 0xb3, 0x3f, 0xb9, 0x7b, 0x79, + 0x7f, 0xf8, 0xc7, 0xc8, 0x80, 0x37, 0x67, 0xfd, 0xfd, 0x9c, 0x75, 0x9f, 0xb3, 0xd9, 0x53, 0x41, + 0xd1, 0xba, 0xa0, 0xe8, 0xad, 0xa0, 0xe8, 0xbe, 0xa4, 0x9d, 0x75, 0x49, 0x3b, 0xaf, 0x25, 0xed, + 0xdc, 0x9c, 0xc7, 0xda, 0xcf, 0xb3, 0x88, 0x49, 0x48, 0xb8, 0x04, 0x97, 0x80, 0xab, 0xc4, 0xc3, + 0x18, 0x78, 0x7e, 0xcc, 0x13, 0x98, 0x65, 0x0b, 0xe5, 0xea, 0x98, 0xf1, 0x74, 0xf8, 0x99, 0x34, + 0xdc, 0x4c, 0xf2, 0x2b, 0xab, 0x5c, 0xd4, 0x0d, 0xff, 0x76, 0xf8, 0x11, 0x00, 0x00, 0xff, 0xff, + 0x6b, 0x4c, 0x12, 0x61, 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 fd74a84741f8..86aac82f65f0 100644 --- a/modules/apps/27-interchain-accounts/host/types/tx.pb.go +++ b/modules/apps/27-interchain-accounts/host/types/tx.pb.go @@ -220,7 +220,7 @@ var fileDescriptor_fa437afde7f1e7ae = []byte{ // 457 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x93, 0x41, 0x6b, 0xd4, 0x40, 0x14, 0xc7, 0x33, 0x6d, 0x5d, 0xec, 0xb4, 0x50, 0x08, 0x62, 0x6b, 0x90, 0xb4, 0xec, 0x69, 0x29, - 0xee, 0x0c, 0x5d, 0x95, 0x4a, 0x41, 0x90, 0x82, 0x20, 0xc2, 0x82, 0x8e, 0x78, 0x11, 0x41, 0x26, + 0xee, 0x0c, 0x5d, 0x95, 0x62, 0x41, 0x90, 0x82, 0x20, 0xc2, 0x82, 0x8e, 0x78, 0x11, 0x41, 0x26, 0xb3, 0xe3, 0x64, 0xa0, 0xc9, 0xc4, 0xbc, 0xc9, 0x62, 0x6f, 0xe2, 0xc9, 0x93, 0x78, 0xf0, 0x26, 0x82, 0x1f, 0xa1, 0xdf, 0xc1, 0x4b, 0x8f, 0x3d, 0x7a, 0x12, 0xd9, 0x3d, 0xf4, 0x6b, 0x48, 0x66, 0xa7, 0xad, 0x4d, 0xed, 0x21, 0xf4, 0x96, 0x49, 0xe6, 0xff, 0x7b, 0xbf, 0x97, 0x99, 0x87, 0xef, @@ -246,7 +246,7 @@ var fileDescriptor_fa437afde7f1e7ae = []byte{ 0x38, 0x78, 0xf5, 0x54, 0x69, 0x9b, 0x56, 0x09, 0x11, 0x26, 0xa3, 0x7e, 0xb4, 0x74, 0x22, 0xfa, 0xca, 0xd0, 0xf1, 0x03, 0x9a, 0x39, 0x2a, 0xd4, 0x63, 0x05, 0x74, 0xb0, 0xdd, 0x3f, 0x93, 0xe8, 0x9f, 0x9f, 0x28, 0xbb, 0x5f, 0x48, 0x48, 0x3a, 0x6e, 0xa0, 0xee, 0xfe, 0x0d, 0x00, 0x00, 0xff, - 0xff, 0xd3, 0x2f, 0xef, 0x8d, 0x1f, 0x04, 0x00, 0x00, + 0xff, 0x04, 0x3c, 0x7a, 0x90, 0x1f, 0x04, 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 d3b7d00d1e18..ede08eaa29d9 100644 --- a/modules/apps/27-interchain-accounts/module.go +++ b/modules/apps/27-interchain-accounts/module.go @@ -17,16 +17,16 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/cosmos/ibc-go/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" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/client/cli" + controllerkeeper "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/keeper" + controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + genesistypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/genesis/types" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host" + hostkeeper "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/keeper" + hosttypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/simulation" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" ) var ( diff --git a/modules/apps/27-interchain-accounts/module_test.go b/modules/apps/27-interchain-accounts/module_test.go index a3f722af0a9a..16f0a66e5118 100644 --- a/modules/apps/27-interchain-accounts/module_test.go +++ b/modules/apps/27-interchain-accounts/module_test.go @@ -5,7 +5,7 @@ import ( testifysuite "github.com/stretchr/testify/suite" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) type InterchainAccountsTestSuite struct { diff --git a/modules/apps/27-interchain-accounts/simulation/decoder.go b/modules/apps/27-interchain-accounts/simulation/decoder.go index c45dd9a04476..aec21648745e 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/v8/modules/apps/27-interchain-accounts/types" + "github.com/cosmos/ibc-go/v9/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 0f78f66df5bd..f0d7021a3b40 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/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" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/simulation" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) 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 32c4702f152b..6ba2ef07a6c7 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/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" + controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + genesistypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/genesis/types" + hosttypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" ) // 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 90c933326a67..ab1297176424 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/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" + genesistypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/genesis/types" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/simulation" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" ) // TestRandomizedGenState tests the normal scenario of applying RandomizedGenState. diff --git a/modules/apps/27-interchain-accounts/simulation/proposals.go b/modules/apps/27-interchain-accounts/simulation/proposals.go index 7437a2a18256..1776362f8fcf 100644 --- a/modules/apps/27-interchain-accounts/simulation/proposals.go +++ b/modules/apps/27-interchain-accounts/simulation/proposals.go @@ -8,10 +8,10 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" - controllerkeeper "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/keeper" - controllertypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" - hostkeeper "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" + controllerkeeper "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/keeper" + controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + hostkeeper "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/keeper" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" ) // Simulation operation weights constants diff --git a/modules/apps/27-interchain-accounts/simulation/proposals_test.go b/modules/apps/27-interchain-accounts/simulation/proposals_test.go index c001a919765d..bed08905111e 100644 --- a/modules/apps/27-interchain-accounts/simulation/proposals_test.go +++ b/modules/apps/27-interchain-accounts/simulation/proposals_test.go @@ -12,11 +12,11 @@ import ( cmtproto "github.com/cometbft/cometbft/proto/tendermint/types" - controllerkeeper "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/keeper" - controllertypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller/types" - 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" + controllerkeeper "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/keeper" + controllertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + hostkeeper "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/keeper" + hosttypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/simulation" ) func TestProposalMsgs(t *testing.T) { diff --git a/modules/apps/27-interchain-accounts/types/account.pb.go b/modules/apps/27-interchain-accounts/types/account.pb.go index 7451c75cdc89..3655a9e57b38 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, 0x0b, 0xfd, 0xdc, 0xfc, 0x94, 0xd2, 0x9c, 0xd4, 0x62, 0x50, 0xc4, 0x15, 0xeb, 0x1b, + 0xfd, 0x32, 0x4b, 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, 0x32, 0x85, 0xb9, 0x61, 0xe8, 0x01, 0x00, 0x00, + 0xd4, 0x8c, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0xa1, 0x76, 0x87, 0xab, 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 9ff7dc198412..60f4b5f297da 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/v8/modules/apps/27-interchain-accounts/types" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + ibctesting "github.com/cosmos/ibc-go/v9/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 6134f103fe89..ca808a64dac9 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/v8/modules/apps/27-interchain-accounts/types" + "github.com/cosmos/ibc-go/v9/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 7ea7bc795d76..2a93fafaa929 100644 --- a/modules/apps/27-interchain-accounts/types/expected_keepers.go +++ b/modules/apps/27-interchain-accounts/types/expected_keepers.go @@ -7,8 +7,8 @@ import ( paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/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" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" ) // AccountKeeper defines the expected account keeper diff --git a/modules/apps/27-interchain-accounts/types/keys_test.go b/modules/apps/27-interchain-accounts/types/keys_test.go index 1013b2a4acfa..f4346a77334b 100644 --- a/modules/apps/27-interchain-accounts/types/keys_test.go +++ b/modules/apps/27-interchain-accounts/types/keys_test.go @@ -3,8 +3,8 @@ package types_test import ( "fmt" - "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + ibctesting "github.com/cosmos/ibc-go/v9/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 0508466aad5c..7f639d537f54 100644 --- a/modules/apps/27-interchain-accounts/types/metadata.go +++ b/modules/apps/27-interchain-accounts/types/metadata.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + connectiontypes "github.com/cosmos/ibc-go/v9/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 ac3f37b0cf95..6b8968a2f43b 100644 --- a/modules/apps/27-interchain-accounts/types/metadata.pb.go +++ b/modules/apps/27-interchain-accounts/types/metadata.pb.go @@ -124,26 +124,26 @@ func init() { } var fileDescriptor_c29c32e397d1f21e = []byte{ - // 303 bytes of a gzipped FileDescriptorProto + // 304 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, 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, 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, + 0x05, 0x89, 0x9f, 0x15, 0xc4, 0xc0, 0xc0, 0x82, 0x98, 0x58, 0x22, 0xe7, 0xda, 0x6a, 0x2d, 0x25, + 0xbe, 0x91, 0x7d, 0x1b, 0xb5, 0x6f, 0xc1, 0x63, 0x31, 0x76, 0x44, 0x62, 0x41, 0xed, 0x8b, 0xa0, + 0x84, 0x92, 0x02, 0x62, 0x3c, 0xfa, 0xce, 0x67, 0x5f, 0x1d, 0x76, 0x61, 0x33, 0x90, 0xaa, 0x2c, + 0x73, 0x0b, 0x8a, 0x2c, 0xba, 0x20, 0xad, 0x23, 0xe3, 0x61, 0xac, 0xac, 0x4b, 0x15, 0x00, 0x4e, + 0x1c, 0x05, 0x59, 0x0d, 0x65, 0x61, 0x48, 0x69, 0x45, 0x2a, 0x29, 0x3d, 0x12, 0xf2, 0x63, 0x9b, + 0x41, 0xf2, 0xd3, 0x4b, 0xfe, 0xf1, 0x92, 0x6a, 0x78, 0xf4, 0x1e, 0xb1, 0xfe, 0xc3, 0xca, 0xe5, + 0x82, 0xf5, 0x2a, 0xe3, 0x83, 0x45, 0x27, 0xa2, 0xc3, 0xe8, 0x64, 0xe7, 0xf1, 0x3b, 0xf2, 0x2b, + 0x26, 0x00, 0x1d, 0x79, 0xcc, 0x73, 0xe3, 0x53, 0x40, 0xe7, 0x0c, 0xd4, 0xef, 0xa6, 0x56, 0x8b, + 0x8d, 0xa6, 0xba, 0xb7, 0xe6, 0xb7, 0x2d, 0xbe, 0xd7, 0xfc, 0x94, 0xf1, 0x31, 0x06, 0xfa, 0xe3, + 0x6c, 0x36, 0xce, 0x6e, 0x4d, 0x7e, 0xb5, 0x05, 0xeb, 0x29, 0xad, 0xbd, 0x09, 0x41, 0x6c, 0x7d, + 0x5d, 0xb0, 0x8a, 0xfc, 0x80, 0xf5, 0x8d, 0x03, 0xd4, 0xd6, 0x8d, 0xc4, 0x76, 0x83, 0xda, 0xcc, + 0xf7, 0x59, 0x8f, 0xa6, 0x29, 0xcd, 0x4a, 0x23, 0xba, 0x0d, 0xea, 0xd2, 0xf4, 0x69, 0x56, 0x9a, + 0x9b, 0xf4, 0x75, 0x11, 0x47, 0xf3, 0x45, 0x1c, 0x7d, 0x2c, 0xe2, 0xe8, 0x65, 0x19, 0x77, 0xe6, + 0xcb, 0xb8, 0xf3, 0xb6, 0x8c, 0x3b, 0xcf, 0x77, 0x23, 0x4b, 0xe3, 0x49, 0x96, 0x00, 0x16, 0x12, + 0x30, 0x14, 0x18, 0xa4, 0xcd, 0x60, 0x30, 0x42, 0x59, 0x5d, 0xcb, 0x02, 0xf5, 0x24, 0x37, 0xa1, + 0x1e, 0x3e, 0xc8, 0xb3, 0xcb, 0xc1, 0x7a, 0xbb, 0x41, 0xbb, 0x79, 0xfd, 0x5b, 0xc8, 0xba, 0xcd, + 0xdc, 0xe7, 0x9f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xfe, 0x71, 0xe5, 0xf3, 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 05c00b31a8be..b408f98b0fc3 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/v8/modules/apps/27-interchain-accounts/types" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + ibctesting "github.com/cosmos/ibc-go/v9/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 49f2b007f54e..c5a0144ae94e 100644 --- a/modules/apps/27-interchain-accounts/types/packet.go +++ b/modules/apps/27-interchain-accounts/types/packet.go @@ -9,7 +9,7 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" - ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibcexported "github.com/cosmos/ibc-go/v9/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 38185aff87a4..876f039a3d90 100644 --- a/modules/apps/27-interchain-accounts/types/packet.pb.go +++ b/modules/apps/27-interchain-accounts/types/packet.pb.go @@ -173,29 +173,29 @@ var fileDescriptor_89a080d7401cd393 = []byte{ // 393 bytes of a gzipped FileDescriptorProto 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, + 0x08, 0x99, 0xb1, 0x55, 0x10, 0xc1, 0x4d, 0x6d, 0x23, 0x74, 0x23, 0x25, 0xa6, 0x50, 0xdd, 0x84, + 0xc9, 0x74, 0x4c, 0x07, 0x9b, 0x4c, 0xe8, 0x4c, 0x8a, 0xf9, 0x83, 0xd2, 0x95, 0x3f, 0xd0, 0x95, + 0x3f, 0xe3, 0xb2, 0x4b, 0x97, 0xd2, 0xfe, 0x88, 0x64, 0x82, 0x6d, 0x17, 0x2e, 0xdc, 0x1d, 0x0e, + 0xf7, 0x9c, 0x7b, 0xcf, 0x3d, 0xf0, 0x15, 0x4f, 0x29, 0x26, 0x65, 0xb9, 0xe0, 0x94, 0x28, 0x2e, + 0x0a, 0x89, 0x79, 0xa1, 0xd8, 0x92, 0xce, 0x09, 0x2f, 0x12, 0x42, 0xa9, 0xa8, 0x0a, 0x25, 0xf1, + 0xaa, 0x8b, 0x4b, 0x42, 0xbf, 0x32, 0x85, 0xca, 0xa5, 0x50, 0xc2, 0x7a, 0xc6, 0x53, 0x8a, 0xce, + 0x55, 0xe8, 0x1f, 0x2a, 0xb4, 0xea, 0x3a, 0x8f, 0x32, 0x21, 0xb2, 0x05, 0xc3, 0x5a, 0x96, 0x56, + 0x5f, 0x30, 0x29, 0xea, 0xd6, 0xc3, 0xb9, 0xcd, 0x44, 0x26, 0x34, 0xc4, 0x0d, 0x6a, 0xd9, 0xbb, + 0x35, 0x80, 0x8f, 0x47, 0x47, 0xaf, 0x7e, 0x6b, 0x35, 0xd6, 0xbb, 0x87, 0x44, 0x11, 0xab, 0x0f, + 0x4d, 0x55, 0x97, 0xcc, 0x06, 0x1e, 0xf0, 0xaf, 0x7b, 0x01, 0xfa, 0xcf, 0x43, 0x50, 0x5c, 0x97, + 0x2c, 0xd2, 0x52, 0xcb, 0x82, 0xe6, 0x8c, 0x28, 0x62, 0xdf, 0xf3, 0x80, 0xff, 0x30, 0xd2, 0xb8, + 0xe1, 0x72, 0x96, 0x0b, 0xfb, 0xc2, 0x03, 0xfe, 0x83, 0x48, 0xe3, 0xbb, 0xb7, 0xf0, 0x72, 0x20, + 0x64, 0x2e, 0x64, 0xfc, 0xcd, 0x7a, 0x01, 0x2f, 0x73, 0x26, 0x25, 0xc9, 0x98, 0xb4, 0x81, 0x77, + 0xe1, 0x5f, 0xf5, 0x6e, 0x51, 0x1b, 0x0d, 0xfd, 0x8d, 0x86, 0xfa, 0x45, 0x1d, 0x1d, 0xa7, 0x9e, + 0x4f, 0xa1, 0xd9, 0xec, 0xb4, 0x9e, 0xc2, 0x4e, 0xfc, 0x69, 0x1c, 0x26, 0x93, 0x0f, 0x1f, 0xc7, + 0xe1, 0x60, 0xf4, 0x7e, 0x14, 0x0e, 0x3b, 0x86, 0x73, 0xb3, 0xd9, 0x7a, 0x57, 0x67, 0x94, 0xf5, + 0x04, 0xde, 0xe8, 0xb1, 0x70, 0x1a, 0x0e, 0x26, 0x71, 0x98, 0xc4, 0xd3, 0x0e, 0x70, 0xae, 0x37, + 0x5b, 0x0f, 0x9e, 0x18, 0xc7, 0x5c, 0xff, 0x70, 0x8d, 0x77, 0xc9, 0xcf, 0xbd, 0x0b, 0x76, 0x7b, + 0x17, 0xfc, 0xde, 0xbb, 0xe0, 0xfb, 0xc1, 0x35, 0x76, 0x07, 0xd7, 0xf8, 0x75, 0x70, 0x8d, 0xcf, + 0x61, 0xc6, 0xd5, 0xbc, 0x4a, 0x11, 0x15, 0x39, 0xa6, 0xfa, 0x74, 0xcc, 0x53, 0x1a, 0x64, 0x02, + 0xaf, 0xde, 0xe0, 0x5c, 0xcc, 0xaa, 0x05, 0x93, 0x4d, 0xd9, 0x12, 0xf7, 0x5e, 0x07, 0xa7, 0x47, + 0x05, 0xc7, 0x9e, 0x9b, 0xff, 0xc8, 0xf4, 0xbe, 0x8e, 0xf4, 0xf2, 0x4f, 0x00, 0x00, 0x00, 0xff, + 0xff, 0x67, 0x47, 0x70, 0x6e, 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 3f55c1f45a86..d2bfa9a180d2 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/v8/modules/apps/27-interchain-accounts/types" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func (suite *TypesTestSuite) TestValidateBasic() { diff --git a/modules/apps/27-interchain-accounts/types/port_test.go b/modules/apps/27-interchain-accounts/types/port_test.go index feeca415be54..810224d98c04 100644 --- a/modules/apps/27-interchain-accounts/types/port_test.go +++ b/modules/apps/27-interchain-accounts/types/port_test.go @@ -1,8 +1,8 @@ package types_test import ( - "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + ibctesting "github.com/cosmos/ibc-go/v9/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 1cc66343dfa9..079a17401cab 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/v8/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v9/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 13852918ae1b..a5b4a4eaf954 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/v8/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v9/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 a5431424a14b..b2d266c80907 100644 --- a/modules/apps/29-fee/fee_test.go +++ b/modules/apps/29-fee/fee_test.go @@ -5,18 +5,18 @@ import ( testifysuite "github.com/stretchr/testify/suite" - icacontroller "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/controller" - 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" - icahosttypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" - "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" - "github.com/cosmos/ibc-go/v8/modules/apps/transfer" - 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" - 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" + icacontroller "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller" + icacontrollertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + icahost "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host" + icahosttypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" + "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer" + transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" + ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" ) type FeeTestSuite struct { diff --git a/modules/apps/29-fee/ibc_middleware.go b/modules/apps/29-fee/ibc_middleware.go index 32b95ad431e7..5239754e6dcd 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/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" + "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/keeper" + "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + "github.com/cosmos/ibc-go/v9/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 b8bbd2eac522..4bf51bb56b27 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/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" + ibcfee "github.com/cosmos/ibc-go/v9/modules/apps/29-fee" + feekeeper "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/keeper" + "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v9/testing" + ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" ) var ( diff --git a/modules/apps/29-fee/ica_test.go b/modules/apps/29-fee/ica_test.go index 9cf67aa759a2..dceb5ed938dc 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/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" + icahosttypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) var ( diff --git a/modules/apps/29-fee/keeper/escrow.go b/modules/apps/29-fee/keeper/escrow.go index 1ebbeb95caad..6fea91f84ebc 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/v8/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v9/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 a1c1933f31d7..c623cd11cdce 100644 --- a/modules/apps/29-fee/keeper/escrow_test.go +++ b/modules/apps/29-fee/keeper/escrow_test.go @@ -7,11 +7,11 @@ import ( "github.com/cometbft/cometbft/crypto/secp256k1" - "github.com/cosmos/ibc-go/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" - ibctesting "github.com/cosmos/ibc-go/v8/testing" - "github.com/cosmos/ibc-go/v8/testing/mock" + "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v9/testing/mock" ) func (suite *KeeperTestSuite) TestDistributeFee() { diff --git a/modules/apps/29-fee/keeper/events.go b/modules/apps/29-fee/keeper/events.go index e173538337a2..d5883be54433 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/v8/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v9/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 b7f2142157ae..9e441f9730b8 100644 --- a/modules/apps/29-fee/keeper/events_test.go +++ b/modules/apps/29-fee/keeper/events_test.go @@ -5,12 +5,12 @@ import ( abcitypes "github.com/cometbft/cometbft/abci/types" - "github.com/cosmos/ibc-go/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" + "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) 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 a56a649d902d..0af18b5775ac 100644 --- a/modules/apps/29-fee/keeper/export_test.go +++ b/modules/apps/29-fee/keeper/export_test.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" ) // LegacyTotal is a wrapper for the legacyTotal function for testing. diff --git a/modules/apps/29-fee/keeper/genesis.go b/modules/apps/29-fee/keeper/genesis.go index cf2657f344b8..913f24c72fdb 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/v8/modules/apps/29-fee/types" + "github.com/cosmos/ibc-go/v9/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 60eba99b595d..a1c8be052fc5 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/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" + "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) 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 ef3a1cc37fd3..508c6f6fc895 100644 --- a/modules/apps/29-fee/keeper/grpc_query.go +++ b/modules/apps/29-fee/keeper/grpc_query.go @@ -12,9 +12,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - "github.com/cosmos/ibc-go/v8/internal/validate" - "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v9/internal/validate" + "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" ) 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 20a754a43b44..bf93096744ea 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/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" + "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func (suite *KeeperTestSuite) TestQueryIncentivizedPackets() { diff --git a/modules/apps/29-fee/keeper/keeper.go b/modules/apps/29-fee/keeper/keeper.go index b9316d8e001a..74228c9477b5 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/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" + "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // 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 1a29a98d5ef8..f07b6e8b1068 100644 --- a/modules/apps/29-fee/keeper/keeper_test.go +++ b/modules/apps/29-fee/keeper/keeper_test.go @@ -10,11 +10,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/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" + "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/keeper" + "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + channelkeeper "github.com/cosmos/ibc-go/v9/modules/core/04-channel/keeper" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) var ( diff --git a/modules/apps/29-fee/keeper/migrations.go b/modules/apps/29-fee/keeper/migrations.go index 3eae34f7e1e4..c4c093de5dec 100644 --- a/modules/apps/29-fee/keeper/migrations.go +++ b/modules/apps/29-fee/keeper/migrations.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" ) // Migrator is a struct for handling in-place store migrations. diff --git a/modules/apps/29-fee/keeper/migrations_test.go b/modules/apps/29-fee/keeper/migrations_test.go index e2d295f47bbb..20d452c950dd 100644 --- a/modules/apps/29-fee/keeper/migrations_test.go +++ b/modules/apps/29-fee/keeper/migrations_test.go @@ -6,9 +6,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" minttypes "github.com/cosmos/cosmos-sdk/x/mint/types" - "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/keeper" - "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" - channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/keeper" + "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" ) func (suite *KeeperTestSuite) TestLegacyTotal() { diff --git a/modules/apps/29-fee/keeper/msg_server.go b/modules/apps/29-fee/keeper/msg_server.go index b9f192c4b2c6..e79996a03897 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/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" + "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" ) 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 17720086852b..ee1658f16ab9 100644 --- a/modules/apps/29-fee/keeper/msg_server_test.go +++ b/modules/apps/29-fee/keeper/msg_server_test.go @@ -8,12 +8,12 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "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" + "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" + ibcmock "github.com/cosmos/ibc-go/v9/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 d069045c9197..a93ea0c88cef 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/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" + "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // 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 c0660c1c2dc1..7b98c66b5cc6 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/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" + "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" + ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" ) func (suite *KeeperTestSuite) TestWriteAcknowledgementAsync() { diff --git a/modules/apps/29-fee/module.go b/modules/apps/29-fee/module.go index 327522f53390..05d2f1cd0c20 100644 --- a/modules/apps/29-fee/module.go +++ b/modules/apps/29-fee/module.go @@ -17,9 +17,9 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/cosmos/ibc-go/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" + "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/client/cli" + "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/keeper" + "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" ) var ( diff --git a/modules/apps/29-fee/transfer_test.go b/modules/apps/29-fee/transfer_test.go index f935262e4afd..722842637148 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/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" + "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) // 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 4cc5d8df63e8..f21ea9a84644 100644 --- a/modules/apps/29-fee/types/ack.pb.go +++ b/modules/apps/29-fee/types/ack.pb.go @@ -96,22 +96,22 @@ var fileDescriptor_ab2834946fb65ea4 = []byte{ // 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, 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, + 0x34, 0x8c, 0x27, 0x98, 0x65, 0xdd, 0xb9, 0x12, 0xea, 0xce, 0x4d, 0x49, 0x93, 0xb7, 0x35, 0x4c, + 0x9b, 0x84, 0x24, 0xed, 0x50, 0xaf, 0xc2, 0x0b, 0xf2, 0x02, 0x5c, 0xce, 0xd2, 0xa5, 0xb4, 0x37, + 0x22, 0xb5, 0x82, 0x87, 0x6d, 0x7e, 0x79, 0x78, 0xe1, 0xef, 0x9f, 0x8a, 0x9c, 0x11, 0xaa, 0x75, + 0x25, 0x18, 0x75, 0x42, 0x49, 0x4b, 0x0a, 0x00, 0xd2, 0x2e, 0x09, 0x65, 0xeb, 0x58, 0x1b, 0xe5, + 0x54, 0x30, 0x13, 0x39, 0x8b, 0x7f, 0x7e, 0x89, 0x0b, 0x80, 0xb8, 0x5d, 0x9e, 0xbd, 0x20, 0xff, + 0xe4, 0x56, 0x32, 0x90, 0x4e, 0xb4, 0xe2, 0x09, 0x78, 0xc2, 0xd6, 0x52, 0x6d, 0x2a, 0xe0, 0x25, + 0xd4, 0x20, 0x5d, 0x40, 0xfc, 0x03, 0xaa, 0x75, 0x46, 0x7f, 0x3f, 0xcf, 0x51, 0x88, 0xa2, 0xfd, + 0x34, 0xa0, 0x5a, 0xff, 0x1d, 0x5c, 0xfb, 0xb3, 0x42, 0x99, 0x0d, 0x35, 0x3c, 0x33, 0x50, 0xd1, + 0x0e, 0x4c, 0x46, 0x39, 0x37, 0x60, 0xed, 0xfc, 0x5f, 0x88, 0xa2, 0xbd, 0xf4, 0xe8, 0x8b, 0xd3, + 0x49, 0x93, 0x09, 0x83, 0x4b, 0xff, 0xb8, 0x91, 0x1c, 0x4c, 0xd5, 0x09, 0x59, 0x66, 0xe3, 0x4d, + 0xdb, 0x30, 0x36, 0xce, 0xfe, 0x87, 0x28, 0xda, 0x4d, 0x0f, 0xbf, 0x35, 0xd1, 0xfa, 0x7e, 0xb2, + 0x9b, 0xbb, 0xd7, 0x1e, 0xa3, 0x6d, 0x8f, 0xd1, 0x7b, 0x8f, 0xd1, 0xf3, 0x80, 0xbd, 0xed, 0x80, + 0xbd, 0xb7, 0x01, 0x7b, 0x0f, 0x57, 0xa5, 0x70, 0x8f, 0x4d, 0x1e, 0x33, 0x55, 0x13, 0xa6, 0x6c, + 0xad, 0x2c, 0x11, 0x39, 0x5b, 0x94, 0x8a, 0xb4, 0x2b, 0x52, 0x2b, 0xde, 0x54, 0x60, 0xc7, 0x68, + 0x96, 0x9c, 0xaf, 0x16, 0x63, 0x2f, 0xd7, 0x69, 0xb0, 0xf9, 0xce, 0x67, 0xaf, 0x8b, 0x8f, 0x00, + 0x00, 0x00, 0xff, 0xff, 0x8a, 0x9c, 0x23, 0xa3, 0x54, 0x01, 0x00, 0x00, } func (m *IncentivizedAcknowledgement) Marshal() (dAtA []byte, err error) { diff --git a/modules/apps/29-fee/types/codec_test.go b/modules/apps/29-fee/types/codec_test.go index a6ce0edb2923..1e435f472a6a 100644 --- a/modules/apps/29-fee/types/codec_test.go +++ b/modules/apps/29-fee/types/codec_test.go @@ -8,8 +8,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" - fee "github.com/cosmos/ibc-go/v8/modules/apps/29-fee" - "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" + fee "github.com/cosmos/ibc-go/v9/modules/apps/29-fee" + "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" ) func TestCodecTypeRegistration(t *testing.T) { diff --git a/modules/apps/29-fee/types/expected_keepers.go b/modules/apps/29-fee/types/expected_keepers.go index 35edba82a73e..acd20d9e7ec0 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/v8/modules/core/04-channel/types" + channeltypes "github.com/cosmos/ibc-go/v9/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 6d8521bc1e71..8b82229791d4 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/v8/modules/core/04-channel/types" - ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibcerrors "github.com/cosmos/ibc-go/v9/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 a60d42d78aee..302a05f20432 100644 --- a/modules/apps/29-fee/types/fee.pb.go +++ b/modules/apps/29-fee/types/fee.pb.go @@ -11,7 +11,7 @@ import ( _ "github.com/cosmos/cosmos-sdk/types/tx/amino" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" - types1 "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + types1 "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" io "io" math "math" math_bits "math/bits" @@ -270,37 +270,37 @@ var fileDescriptor_cb3319f1af2a53e5 = []byte{ // 518 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x94, 0x31, 0x6f, 0xd3, 0x40, 0x14, 0xc7, 0xe3, 0x04, 0xb5, 0xcd, 0x05, 0x90, 0x30, 0x95, 0x5a, 0x2a, 0x70, 0x8b, 0x25, 0xa4, - 0xa8, 0x52, 0xee, 0x94, 0x00, 0x12, 0x30, 0xd1, 0x20, 0x45, 0xca, 0x04, 0xca, 0x82, 0xc4, 0x12, - 0x9d, 0xcf, 0x2f, 0xee, 0x29, 0xb6, 0xcf, 0xf2, 0xd9, 0x41, 0x19, 0x58, 0xf8, 0x04, 0xac, 0xb0, - 0xb2, 0x31, 0xf5, 0x63, 0x74, 0xec, 0xc8, 0x04, 0x28, 0x19, 0xfa, 0x05, 0xf8, 0x00, 0xe8, 0x9d, - 0x0f, 0xab, 0x2a, 0xea, 0xc2, 0xd0, 0xc5, 0x77, 0xef, 0xde, 0xbb, 0xf7, 0xfb, 0xdf, 0xbb, 0xe7, - 0x23, 0x0f, 0x65, 0x20, 0x18, 0xcf, 0xb2, 0x58, 0x0a, 0x5e, 0x48, 0x95, 0x6a, 0x36, 0x03, 0x60, - 0x8b, 0x3e, 0x0e, 0x34, 0xcb, 0x55, 0xa1, 0xdc, 0x1d, 0x19, 0x08, 0x7a, 0x31, 0x84, 0xa2, 0x6f, - 0xd1, 0xdf, 0xbb, 0xc3, 0x13, 0x99, 0x2a, 0x66, 0xbe, 0x55, 0xec, 0x9e, 0x27, 0x94, 0x4e, 0x94, - 0x66, 0x01, 0xd7, 0x98, 0x25, 0x80, 0x82, 0xf7, 0x99, 0x50, 0x32, 0xb5, 0xfe, 0xed, 0x48, 0x45, - 0xca, 0x4c, 0x19, 0xce, 0xec, 0xaa, 0x11, 0x21, 0x54, 0x0e, 0x4c, 0x1c, 0xf3, 0x34, 0x85, 0x18, - 0x05, 0xd8, 0xa9, 0x0d, 0xd9, 0xb1, 0x89, 0x13, 0x1d, 0xa1, 0x33, 0xd1, 0x51, 0xe5, 0xf0, 0x7f, - 0x37, 0x49, 0x6b, 0x04, 0xe0, 0xbe, 0x27, 0x5b, 0x39, 0x88, 0xc5, 0x74, 0x06, 0xb0, 0xeb, 0x1c, - 0xb4, 0xba, 0x9d, 0xc1, 0x3d, 0x5a, 0xed, 0xa1, 0x28, 0x86, 0x5a, 0x31, 0xf4, 0x95, 0x92, 0xe9, - 0xf0, 0xe8, 0xf4, 0xc7, 0x7e, 0xe3, 0xdb, 0xcf, 0xfd, 0x6e, 0x24, 0x8b, 0xe3, 0x32, 0xa0, 0x42, - 0x25, 0xcc, 0x02, 0xaa, 0xa1, 0xa7, 0xc3, 0x39, 0x2b, 0x96, 0x19, 0x68, 0xb3, 0x41, 0x7f, 0x39, - 0x3f, 0x39, 0xbc, 0x19, 0x43, 0xc4, 0xc5, 0x72, 0x8a, 0xc7, 0xd1, 0x93, 0x4d, 0xa4, 0x21, 0xb8, - 0x24, 0x9b, 0x5c, 0xcc, 0x0d, 0xb7, 0x79, 0x0d, 0xdc, 0x0d, 0x2e, 0xe6, 0x88, 0xfd, 0x40, 0x3a, - 0x85, 0x4c, 0x40, 0x95, 0x85, 0x41, 0xb7, 0xae, 0x01, 0x4d, 0x2c, 0x70, 0x04, 0xe0, 0x7f, 0x76, - 0x48, 0xfb, 0x0d, 0x17, 0x73, 0x40, 0xcb, 0x7d, 0x42, 0x5a, 0x55, 0xdd, 0x9d, 0x6e, 0x67, 0x70, - 0x9f, 0x5e, 0xd1, 0x30, 0x74, 0x04, 0x30, 0xbc, 0x81, 0x3a, 0x26, 0x18, 0xee, 0x3e, 0x22, 0xb7, - 0x73, 0x98, 0x95, 0x69, 0x38, 0xe5, 0x61, 0x98, 0x83, 0xd6, 0xbb, 0xcd, 0x03, 0xa7, 0xdb, 0x9e, - 0xdc, 0xaa, 0x56, 0x8f, 0xaa, 0x45, 0x77, 0x0f, 0x6f, 0x36, 0xe6, 0x4b, 0xc8, 0xb5, 0x39, 0x66, - 0x7b, 0x52, 0xdb, 0x2f, 0xee, 0x7e, 0x3c, 0x3f, 0x39, 0xbc, 0x94, 0xc5, 0x7f, 0x4b, 0x48, 0x2d, - 0x4d, 0xbb, 0x63, 0xd2, 0xc9, 0x8c, 0x85, 0x75, 0xd2, 0xb6, 0x37, 0xfc, 0x2b, 0x35, 0xd6, 0x3b, - 0xad, 0x52, 0x92, 0xd5, 0xa9, 0xfc, 0xaf, 0x0e, 0xd9, 0x1e, 0x87, 0x90, 0x16, 0x72, 0x26, 0x21, - 0xbc, 0xc0, 0x78, 0x49, 0xda, 0x96, 0x21, 0x43, 0x5b, 0x85, 0x07, 0x86, 0x80, 0x4d, 0x4d, 0xff, - 0x76, 0x72, 0x9d, 0x7d, 0x1c, 0xda, 0xe4, 0x5b, 0x99, 0xb5, 0x2f, 0xab, 0x6c, 0xfe, 0xbf, 0xca, - 0xe1, 0xeb, 0xd3, 0x95, 0xe7, 0x9c, 0xad, 0x3c, 0xe7, 0xd7, 0xca, 0x73, 0x3e, 0xad, 0xbd, 0xc6, - 0xd9, 0xda, 0x6b, 0x7c, 0x5f, 0x7b, 0x8d, 0x77, 0x4f, 0xff, 0xbd, 0x7b, 0x19, 0x88, 0x5e, 0xa4, - 0xd8, 0xe2, 0x19, 0x4b, 0x54, 0x58, 0xc6, 0xa0, 0xf1, 0x31, 0xd0, 0x6c, 0xf0, 0xbc, 0x87, 0xef, - 0x80, 0x69, 0x87, 0x60, 0xc3, 0xfc, 0x69, 0x8f, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0xa2, 0x53, - 0x6e, 0x63, 0x2c, 0x04, 0x00, 0x00, + 0xa8, 0x52, 0xee, 0x94, 0x00, 0x43, 0x99, 0x68, 0x90, 0x22, 0x65, 0x02, 0x65, 0x41, 0x62, 0x89, + 0xce, 0xe7, 0x17, 0xf7, 0x14, 0xdb, 0x67, 0xf9, 0xec, 0xa0, 0x0c, 0x2c, 0x7c, 0x02, 0x56, 0x58, + 0xd9, 0x98, 0xfa, 0x31, 0x3a, 0x76, 0x64, 0x02, 0x94, 0x0c, 0xfd, 0x02, 0x7c, 0x00, 0xf4, 0xce, + 0x87, 0x55, 0x15, 0x75, 0x61, 0xe8, 0xe2, 0xbb, 0x77, 0xef, 0xdd, 0xfb, 0xfd, 0xef, 0xdd, 0xf3, + 0x91, 0xc7, 0x32, 0x10, 0x8c, 0x67, 0x59, 0x2c, 0x05, 0x2f, 0xa4, 0x4a, 0x35, 0x9b, 0x01, 0xb0, + 0x45, 0x1f, 0x07, 0x9a, 0xe5, 0xaa, 0x50, 0xee, 0x8e, 0x0c, 0x04, 0xbd, 0x1c, 0x42, 0xd1, 0xb7, + 0xe8, 0xef, 0xdd, 0xe3, 0x89, 0x4c, 0x15, 0x33, 0xdf, 0x2a, 0x76, 0xcf, 0x13, 0x4a, 0x27, 0x4a, + 0xb3, 0x80, 0x6b, 0xcc, 0x12, 0x40, 0xc1, 0xfb, 0x4c, 0x28, 0x99, 0x5a, 0xff, 0x76, 0xa4, 0x22, + 0x65, 0xa6, 0x0c, 0x67, 0x76, 0xd5, 0x88, 0x10, 0x2a, 0x07, 0x26, 0x4e, 0x78, 0x9a, 0x42, 0x8c, + 0x02, 0xec, 0xd4, 0x86, 0xec, 0xd8, 0xc4, 0x89, 0x8e, 0xd0, 0x99, 0xe8, 0xa8, 0x72, 0xf8, 0xbf, + 0x9b, 0xa4, 0x35, 0x02, 0x70, 0xdf, 0x93, 0xad, 0x1c, 0xc4, 0x62, 0x3a, 0x03, 0xd8, 0x75, 0x0e, + 0x5a, 0xdd, 0xce, 0xe0, 0x01, 0xad, 0xf6, 0x50, 0x14, 0x43, 0xad, 0x18, 0xfa, 0x4a, 0xc9, 0x74, + 0x78, 0x7c, 0xf6, 0x63, 0xbf, 0xf1, 0xed, 0xe7, 0x7e, 0x37, 0x92, 0xc5, 0x49, 0x19, 0x50, 0xa1, + 0x12, 0x66, 0x01, 0xd5, 0xd0, 0xd3, 0xe1, 0x9c, 0x15, 0xcb, 0x0c, 0xb4, 0xd9, 0xa0, 0xbf, 0x5c, + 0x9c, 0x1e, 0xde, 0x8e, 0x21, 0xe2, 0x62, 0x39, 0xc5, 0xe3, 0xe8, 0xc9, 0x26, 0xd2, 0x10, 0x5c, + 0x92, 0x4d, 0x2e, 0xe6, 0x86, 0xdb, 0xbc, 0x01, 0xee, 0x06, 0x17, 0x73, 0xc4, 0x7e, 0x20, 0x9d, + 0x42, 0x26, 0xa0, 0xca, 0xc2, 0xa0, 0x5b, 0x37, 0x80, 0x26, 0x16, 0x38, 0x02, 0xf0, 0x3f, 0x3b, + 0xa4, 0xfd, 0x86, 0x8b, 0x39, 0xa0, 0xe5, 0x3e, 0x23, 0xad, 0xaa, 0xee, 0x4e, 0xb7, 0x33, 0x78, + 0x48, 0xaf, 0x69, 0x18, 0x3a, 0x02, 0x18, 0xde, 0x42, 0x1d, 0x13, 0x0c, 0x77, 0x9f, 0x90, 0xbb, + 0x39, 0xcc, 0xca, 0x34, 0x9c, 0xf2, 0x30, 0xcc, 0x41, 0xeb, 0xdd, 0xe6, 0x81, 0xd3, 0x6d, 0x4f, + 0xee, 0x54, 0xab, 0xc7, 0xd5, 0xa2, 0xbb, 0x87, 0x37, 0x1b, 0xf3, 0x25, 0xe4, 0xda, 0x1c, 0xb3, + 0x3d, 0xa9, 0xed, 0x17, 0xf7, 0x3f, 0x5e, 0x9c, 0x1e, 0x5e, 0xc9, 0xe2, 0xbf, 0x25, 0xa4, 0x96, + 0xa6, 0xdd, 0x31, 0xe9, 0x64, 0xc6, 0xc2, 0x3a, 0x69, 0xdb, 0x1b, 0xfe, 0xb5, 0x1a, 0xeb, 0x9d, + 0x56, 0x29, 0xc9, 0xea, 0x54, 0xfe, 0x57, 0x87, 0x6c, 0x8f, 0x43, 0x48, 0x0b, 0x39, 0x93, 0x10, + 0x5e, 0x62, 0xbc, 0x24, 0x6d, 0xcb, 0x90, 0xa1, 0xad, 0xc2, 0x23, 0x43, 0xc0, 0xa6, 0xa6, 0x7f, + 0x3b, 0xb9, 0xce, 0x3e, 0x0e, 0x6d, 0xf2, 0xad, 0xcc, 0xda, 0x57, 0x55, 0x36, 0xff, 0x5f, 0xe5, + 0xf0, 0xf5, 0xd9, 0xca, 0x73, 0xce, 0x57, 0x9e, 0xf3, 0x6b, 0xe5, 0x39, 0x9f, 0xd6, 0x5e, 0xe3, + 0x7c, 0xed, 0x35, 0xbe, 0xaf, 0xbd, 0xc6, 0xbb, 0xe7, 0xff, 0xde, 0xbd, 0x0c, 0x44, 0x2f, 0x52, + 0x6c, 0x71, 0xc4, 0x12, 0x15, 0x96, 0x31, 0x68, 0x7c, 0x0c, 0x34, 0x1b, 0x1c, 0xf5, 0xf0, 0x1d, + 0x30, 0xed, 0x10, 0x6c, 0x98, 0x3f, 0xed, 0xe9, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x6a, 0x44, + 0xf0, 0xac, 0x2c, 0x04, 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 ab44e645d48b..fc3e712e1b85 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/v8/modules/apps/29-fee/types" + "github.com/cosmos/ibc-go/v9/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 483be709fd86..03cb796d43e9 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/v8/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v9/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 8c22ce1e9c05..7df8165f97b6 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/v8/modules/core/04-channel/types" + types "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" io "io" math "math" math_bits "math/bits" @@ -361,39 +361,39 @@ 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, 0x48, 0x70, 0x03, 0x26, 0x86, 0x2a, 0x0e, 0x4c, 0xe5, 0x06, 0x48, 0x21, 0xb1, + 0x35, 0x51, 0x0b, 0x1c, 0x76, 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, + 0xde, 0x67, 0x7f, 0x4f, 0xcf, 0xe8, 0x01, 0x8b, 0x49, 0x10, 0xe5, 0xf9, 0x88, 0x91, 0x48, 0x31, 0x9e, 0xc9, 0x20, 0x01, 0x08, 0xa6, 0xbd, 0x20, 0x85, 0x0c, 0x24, 0x93, 0x7e, 0x2e, 0xb8, 0xe2, 0x78, 0x8f, 0xc5, 0xc4, 0x5f, 0x86, 0xf9, 0x09, 0x80, 0x3f, 0xed, 0xed, 0xb7, 0x52, 0x9e, 0x72, - 0x83, 0x09, 0xf4, 0xa9, 0x80, 0xef, 0xdf, 0xad, 0xea, 0xaa, 0x59, 0x4b, 0x10, 0xc2, 0x05, 0x04, - 0xe4, 0x34, 0xca, 0x32, 0x18, 0xe9, 0xb2, 0x3d, 0x16, 0x90, 0xf6, 0xb7, 0x0d, 0x74, 0xfd, 0x65, + 0x83, 0x09, 0xf4, 0xa9, 0x80, 0xef, 0xdf, 0xaf, 0xea, 0xaa, 0x59, 0x4b, 0x10, 0xc2, 0x05, 0x04, + 0xe4, 0x2c, 0xca, 0x32, 0x18, 0xe9, 0xb2, 0x3d, 0x16, 0x90, 0xf6, 0xb7, 0x0d, 0x74, 0xf3, 0x65, 0x71, 0x8d, 0x37, 0x2a, 0x52, 0x80, 0xdf, 0xa3, 0x06, 0xa3, 0x90, 0x29, 0x96, 0x30, 0xa0, 0x61, - 0x02, 0x20, 0x5d, 0xe7, 0x70, 0xbd, 0xb3, 0xd3, 0xef, 0xfa, 0x15, 0xf7, 0xf3, 0x07, 0x17, 0xf8, - 0x93, 0x88, 0x7c, 0x04, 0x75, 0x0c, 0x20, 0x9f, 0x6f, 0x9c, 0xfd, 0xb8, 0x53, 0x1b, 0xde, 0xf8, + 0x02, 0x20, 0x5d, 0xe7, 0x70, 0xbd, 0xb3, 0xd3, 0xef, 0xfa, 0x15, 0xf7, 0xf3, 0x07, 0x97, 0xf8, + 0xd3, 0x88, 0x7c, 0x04, 0x75, 0x02, 0x20, 0x9f, 0x6f, 0x9c, 0xff, 0xb8, 0x57, 0x1b, 0xde, 0xfa, 0xdd, 0x4b, 0x67, 0x71, 0x8c, 0x5a, 0x09, 0x40, 0x08, 0x59, 0x14, 0x8f, 0x80, 0x86, 0xf6, 0x2e, - 0xd2, 0x5d, 0x33, 0x12, 0xf7, 0x2b, 0x25, 0x8e, 0x01, 0x5e, 0x14, 0x9c, 0xa3, 0x82, 0x62, 0xfb, + 0xd2, 0x5d, 0x33, 0x12, 0x0f, 0x2b, 0x25, 0x4e, 0x00, 0x5e, 0x14, 0x9c, 0xe3, 0x82, 0x62, 0xfb, 0xe3, 0x64, 0xb5, 0x20, 0xf1, 0x3b, 0xd4, 0x14, 0x90, 0x32, 0xa9, 0x40, 0x00, 0x0d, 0xf3, 0x68, - 0xa6, 0xdf, 0xb0, 0x6e, 0x04, 0x3a, 0x95, 0x02, 0xc3, 0x0b, 0xc6, 0x89, 0x26, 0xd8, 0xf6, 0xbb, - 0xe2, 0x72, 0x5a, 0xe2, 0xcf, 0x0e, 0xf2, 0x96, 0xba, 0x13, 0x3e, 0xc9, 0x14, 0x88, 0x3c, 0x12, - 0x6a, 0x56, 0x4a, 0x6d, 0x18, 0xa9, 0x87, 0xff, 0x20, 0x75, 0xb4, 0xc4, 0x5e, 0x96, 0xbd, 0x2d, + 0xa6, 0xdf, 0xb0, 0x6e, 0x04, 0x3a, 0x95, 0x02, 0xc3, 0x4b, 0xc6, 0xa9, 0x26, 0xd8, 0xf6, 0xbb, + 0xe2, 0x6a, 0x5a, 0xe2, 0xcf, 0x0e, 0xf2, 0x96, 0xba, 0x13, 0x3e, 0xc9, 0x14, 0x88, 0x3c, 0x12, + 0x6a, 0x56, 0x4a, 0x6d, 0x18, 0xa9, 0xc7, 0xff, 0x20, 0x75, 0xbc, 0xc4, 0x5e, 0x96, 0xbd, 0x2b, 0xaa, 0x21, 0x12, 0x87, 0x68, 0x37, 0xe1, 0xe2, 0x53, 0x24, 0x68, 0x28, 0x60, 0x14, 0xcd, 0x40, 0x48, 0x77, 0xd3, 0x68, 0xfa, 0xd5, 0xfe, 0x15, 0x84, 0x61, 0x81, 0x7f, 0x46, 0xa9, 0x00, 0x59, - 0xce, 0xa8, 0x91, 0x5c, 0x2a, 0xca, 0xf6, 0x2b, 0xd4, 0xbc, 0xe2, 0x37, 0xde, 0x43, 0xdb, 0x39, + 0xce, 0xa8, 0x91, 0x5c, 0x29, 0xca, 0xf6, 0x2b, 0xd4, 0xbc, 0xe6, 0x37, 0xde, 0x43, 0xdb, 0x39, 0x17, 0x2a, 0x64, 0xd4, 0x75, 0x0e, 0x9d, 0x4e, 0x7d, 0xb8, 0xa5, 0xc3, 0x01, 0xc5, 0x07, 0x08, 0xd9, 0x31, 0xea, 0xda, 0x9a, 0xa9, 0xd5, 0x6d, 0x66, 0x40, 0xdb, 0x1f, 0x50, 0x63, 0xc5, 0xdb, 0x15, 0x86, 0xb3, 0xc2, 0xc0, 0x2e, 0xda, 0xb6, 0xef, 0xb2, 0xdd, 0xca, 0x10, 0xb7, 0xd0, 0xa6, - 0xf1, 0xd8, 0x5d, 0x37, 0xf9, 0x22, 0x68, 0x7f, 0x71, 0xd0, 0xad, 0xbf, 0x78, 0xfa, 0xff, 0x72, - 0x5d, 0x84, 0xaf, 0xce, 0xd7, 0x6a, 0x37, 0xc9, 0xaa, 0x4e, 0x5b, 0xa2, 0x9b, 0x7f, 0xb4, 0x59, + 0xf1, 0xd8, 0x5d, 0x37, 0xf9, 0x22, 0x68, 0x7f, 0x71, 0xd0, 0x9d, 0xbf, 0x78, 0xfa, 0xff, 0x72, + 0x5d, 0x84, 0xaf, 0xcf, 0xd7, 0x6a, 0x37, 0xc9, 0xaa, 0x4e, 0x5b, 0xa2, 0xdb, 0x7f, 0xb4, 0x59, 0x2b, 0x44, 0xc5, 0xd1, 0xaa, 0x97, 0x21, 0x7e, 0x8a, 0xea, 0xb9, 0x59, 0x99, 0xd2, 0xba, 0x9d, 0xfe, 0x81, 0x99, 0xa1, 0x5e, 0x5a, 0xbf, 0xdc, 0xd4, 0x69, 0xcf, 0x2f, 0x16, 0x6b, 0x40, 0xed, - 0xc8, 0xae, 0xe5, 0x65, 0xfc, 0xfa, 0x6c, 0xee, 0x39, 0xe7, 0x73, 0xcf, 0xf9, 0x39, 0xf7, 0x9c, - 0xaf, 0x0b, 0xaf, 0x76, 0xbe, 0xf0, 0x6a, 0xdf, 0x17, 0x5e, 0xed, 0xed, 0xa3, 0x94, 0xa9, 0xd3, + 0xc8, 0x6e, 0xe4, 0x65, 0xfc, 0xfa, 0x7c, 0xee, 0x39, 0x17, 0x73, 0xcf, 0xf9, 0x39, 0xf7, 0x9c, + 0xaf, 0x0b, 0xaf, 0x76, 0xb1, 0xf0, 0x6a, 0xdf, 0x17, 0x5e, 0xed, 0xed, 0x93, 0x94, 0xa9, 0xb3, 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, 0x8a, 0x6c, - 0xb0, 0x1e, 0xb5, 0x04, 0x00, 0x00, + 0x51, 0x30, 0xe6, 0x74, 0x32, 0x02, 0xa9, 0xff, 0x0f, 0x19, 0xf4, 0x8f, 0xba, 0xfa, 0xeb, 0x50, + 0xb3, 0x1c, 0x64, 0xbc, 0x65, 0xfe, 0x85, 0x47, 0xbf, 0x02, 0x00, 0x00, 0xff, 0xff, 0x42, 0x7b, + 0x2e, 0xd1, 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 d23e4298ea72..633a3e80c00a 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/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" + "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func TestValidateDefaultGenesis(t *testing.T) { diff --git a/modules/apps/29-fee/types/keys.go b/modules/apps/29-fee/types/keys.go index 2d024579146c..aba4b8c5de98 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/v8/modules/core/04-channel/types" - ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibcerrors "github.com/cosmos/ibc-go/v9/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 6efc5383f068..edefc87c83df 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/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" + "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) 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 d5a8f1ef4c1c..cbd8ce9ad4a3 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, 0x0b, 0xfd, 0xdc, 0xfc, + 0xdc, 0xfc, 0x62, 0xfd, 0xcc, 0xa4, 0x64, 0xdd, 0xf4, 0x7c, 0xfd, 0x32, 0x4b, 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, 0xf8, 0x6a, - 0x8c, 0x45, 0xe8, 0x00, 0x00, 0x00, + 0x2c, 0x48, 0x2d, 0x4e, 0x62, 0x03, 0x3b, 0xdf, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0x30, 0x7d, + 0x12, 0x8a, 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 ff0e96236eef..32b2b3e776b5 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/v8/modules/apps/29-fee/types" - ibcmock "github.com/cosmos/ibc-go/v8/testing/mock" + "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + ibcmock "github.com/cosmos/ibc-go/v9/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 e11c2009852e..df4274bbea47 100644 --- a/modules/apps/29-fee/types/msgs.go +++ b/modules/apps/29-fee/types/msgs.go @@ -7,9 +7,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - channeltypes "github.com/cosmos/ibc-go/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" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" ) const MaximumCounterpartyPayeeLength = 2048 // maximum length of the counterparty payee in bytes (value chosen arbitrarily) diff --git a/modules/apps/29-fee/types/msgs_test.go b/modules/apps/29-fee/types/msgs_test.go index 75dc9e5cd57c..e952ee80907e 100644 --- a/modules/apps/29-fee/types/msgs_test.go +++ b/modules/apps/29-fee/types/msgs_test.go @@ -10,10 +10,10 @@ import ( "github.com/cometbft/cometbft/crypto/secp256k1" - modulefee "github.com/cosmos/ibc-go/v8/modules/apps/29-fee" - "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" + modulefee "github.com/cosmos/ibc-go/v9/modules/apps/29-fee" + "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v9/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 f4f714e9e747..520b624b4ae8 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/v8/modules/core/04-channel/types" + types "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" @@ -1097,86 +1097,86 @@ func init() { } var fileDescriptor_0638a8a78ca2503c = []byte{ - // 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, + // 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, 0x45, + 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, 0x17, 0xf5, 0x3e, 0x92, 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 151f9bd17066..f2017682bf0d 100644 --- a/modules/apps/29-fee/types/tx.pb.go +++ b/modules/apps/29-fee/types/tx.pb.go @@ -11,7 +11,7 @@ import ( _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" - types "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + types "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" @@ -374,51 +374,51 @@ func init() { func init() { proto.RegisterFile("ibc/applications/fee/v1/tx.proto", fileDescriptor_05c93128649f1b96) } var fileDescriptor_05c93128649f1b96 = []byte{ - // 699 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x55, 0xbf, 0x6f, 0xd3, 0x40, - 0x14, 0x8e, 0x1b, 0xfa, 0x23, 0xaf, 0x85, 0x12, 0xab, 0x22, 0xa9, 0x69, 0xd3, 0x62, 0x55, 0x50, - 0x22, 0xc5, 0x6e, 0x82, 0x2a, 0x68, 0x04, 0x03, 0xad, 0xa8, 0x54, 0x89, 0x8a, 0x28, 0x23, 0x4b, - 0xe5, 0x38, 0xaf, 0xae, 0x69, 0xec, 0xb3, 0x7c, 0x4e, 0x84, 0x37, 0xd4, 0x09, 0x31, 0xc1, 0x7f, - 0xc0, 0xc8, 0xc0, 0xd0, 0x3f, 0xa3, 0x63, 0x47, 0x16, 0x10, 0x6a, 0x91, 0xfa, 0x1f, 0x30, 0xa3, - 0x3b, 0x9f, 0x2d, 0x37, 0x69, 0xaa, 0x80, 0xc4, 0x62, 0xf9, 0xde, 0xf7, 0xdd, 0x77, 0xef, 0xfb, - 0x74, 0x4f, 0x07, 0xcb, 0x76, 0xcb, 0xd4, 0x0d, 0xcf, 0xeb, 0xd8, 0xa6, 0x11, 0xd8, 0xc4, 0xa5, - 0xfa, 0x3e, 0xa2, 0xde, 0xab, 0xea, 0xc1, 0x5b, 0xcd, 0xf3, 0x49, 0x40, 0xe4, 0x82, 0xdd, 0x32, - 0xb5, 0x34, 0x43, 0xdb, 0x47, 0xd4, 0x7a, 0x55, 0x25, 0x6f, 0x38, 0xb6, 0x4b, 0x74, 0xfe, 0x8d, - 0xb8, 0xca, 0x9c, 0x45, 0x2c, 0xc2, 0x7f, 0x75, 0xf6, 0x27, 0xaa, 0xf7, 0x86, 0x9d, 0xc1, 0x84, - 0x52, 0x14, 0x93, 0xf8, 0xa8, 0x9b, 0x07, 0x86, 0xeb, 0x62, 0x87, 0xc1, 0xe2, 0x57, 0x50, 0x0a, - 0x26, 0xa1, 0x0e, 0xa1, 0xba, 0x43, 0x2d, 0x06, 0x3a, 0xd4, 0x8a, 0x00, 0xf5, 0xab, 0x04, 0xb7, - 0x77, 0xa9, 0xd5, 0x44, 0xcb, 0xa6, 0x01, 0xfa, 0x0d, 0x23, 0x44, 0x94, 0x0b, 0x30, 0xe9, 0x11, - 0x3f, 0xd8, 0xb3, 0xdb, 0x45, 0x69, 0x59, 0x5a, 0xcd, 0x35, 0x27, 0xd8, 0x72, 0xa7, 0x2d, 0x2f, - 0x02, 0x08, 0x5d, 0x86, 0x8d, 0x71, 0x2c, 0x27, 0x2a, 0x3b, 0x6d, 0xb9, 0x08, 0x93, 0x3e, 0x76, - 0x8c, 0x10, 0xfd, 0x62, 0x96, 0x63, 0xf1, 0x52, 0x9e, 0x83, 0x71, 0x8f, 0x49, 0x17, 0x6f, 0xf0, - 0x7a, 0xb4, 0xa8, 0xaf, 0xbd, 0xff, 0xbc, 0x94, 0x39, 0xba, 0x38, 0x2e, 0xc7, 0xbc, 0x0f, 0x17, - 0xc7, 0xe5, 0xbb, 0x51, 0xab, 0x15, 0xda, 0x3e, 0xd4, 0xfb, 0x3b, 0x53, 0x15, 0x28, 0xf6, 0xd7, - 0x9a, 0x48, 0x3d, 0xe2, 0x52, 0x54, 0xbf, 0x4b, 0xb0, 0x90, 0x02, 0xb7, 0x48, 0xd7, 0x0d, 0xd0, - 0xf7, 0x0c, 0x3f, 0x08, 0xff, 0x97, 0xad, 0x0a, 0xc8, 0x66, 0xea, 0x98, 0xbd, 0xb4, 0xc7, 0xbc, - 0xd9, 0xdf, 0x40, 0xfd, 0xe9, 0x55, 0x7e, 0x1f, 0x5c, 0xed, 0x77, 0xa0, 0x7d, 0xf5, 0x3e, 0xac, - 0x5c, 0x87, 0x27, 0x39, 0x1c, 0x8d, 0xc1, 0xec, 0x2e, 0xb5, 0x1a, 0x46, 0xd8, 0x30, 0xcc, 0x43, - 0x0c, 0xb6, 0x11, 0xe5, 0x0d, 0xc8, 0xee, 0x23, 0x72, 0xdb, 0xd3, 0xb5, 0x05, 0x6d, 0xc8, 0xad, - 0xd4, 0xb6, 0x11, 0x37, 0x73, 0x27, 0x3f, 0x96, 0x32, 0x5f, 0x2e, 0x8e, 0xcb, 0x52, 0x93, 0xed, - 0x91, 0x57, 0xe0, 0x16, 0x25, 0x5d, 0xdf, 0xc4, 0xbd, 0x38, 0xbc, 0x28, 0xa0, 0x99, 0xa8, 0xda, - 0x88, 0x22, 0x2c, 0x43, 0x5e, 0xb0, 0x52, 0x49, 0x46, 0x69, 0xcd, 0x46, 0xc0, 0x56, 0x92, 0xe7, - 0x1d, 0x98, 0xa0, 0xb6, 0xe5, 0xa2, 0x2f, 0x92, 0x12, 0x2b, 0x59, 0x81, 0x29, 0x91, 0x0b, 0x2d, - 0x8e, 0x2f, 0x67, 0x57, 0x73, 0xcd, 0x64, 0x5d, 0xd7, 0xe2, 0xe8, 0x04, 0x99, 0x25, 0xa7, 0x5c, - 0x4e, 0x2e, 0x6d, 0x58, 0x9d, 0x87, 0x42, 0x5f, 0x29, 0xc9, 0xe7, 0x97, 0x04, 0x73, 0x7d, 0xd8, - 0x73, 0x1a, 0xba, 0xa6, 0xfc, 0x02, 0x72, 0x1e, 0xaf, 0xc4, 0x37, 0x64, 0xba, 0xb6, 0xc8, 0xa3, - 0x62, 0xb3, 0xa5, 0xc5, 0x03, 0xd5, 0xab, 0x6a, 0xd1, 0xbe, 0x9d, 0x76, 0x3a, 0xab, 0x29, 0x4f, - 0x14, 0xe5, 0x97, 0x00, 0x42, 0x86, 0x45, 0x3e, 0xc6, 0x75, 0xd4, 0xa1, 0x91, 0x27, 0x3d, 0xa4, - 0xc5, 0x44, 0x1f, 0xdb, 0x88, 0xf5, 0xc7, 0xb1, 0xf1, 0x94, 0x28, 0x33, 0xbf, 0x34, 0xdc, 0x3c, - 0x77, 0xa3, 0x96, 0xf8, 0x34, 0x0c, 0xd4, 0xe3, 0x18, 0x6a, 0xbf, 0xb3, 0x90, 0xdd, 0xa5, 0x96, - 0xec, 0xc0, 0xcd, 0xcb, 0xd3, 0xff, 0x70, 0x68, 0xaf, 0xfd, 0xa3, 0xa7, 0x54, 0x47, 0xa6, 0xc6, - 0xc7, 0xca, 0x9f, 0x24, 0x98, 0x1f, 0x3e, 0xa2, 0xeb, 0xa3, 0x08, 0x0e, 0x6c, 0x53, 0x9e, 0xfd, - 0xd3, 0xb6, 0xa4, 0xa7, 0x37, 0x30, 0x73, 0x69, 0x5a, 0x56, 0xaf, 0x93, 0x4b, 0x33, 0x95, 0xb5, - 0x51, 0x99, 0xc9, 0x59, 0x21, 0xe4, 0x07, 0x6f, 0x5e, 0x65, 0x54, 0x19, 0x4e, 0x57, 0xd6, 0xff, - 0x8a, 0x1e, 0x1f, 0xad, 0x8c, 0xbf, 0x63, 0x97, 0x6b, 0xf3, 0xd5, 0xc9, 0x59, 0x49, 0x3a, 0x3d, - 0x2b, 0x49, 0x3f, 0xcf, 0x4a, 0xd2, 0xc7, 0xf3, 0x52, 0xe6, 0xf4, 0xbc, 0x94, 0xf9, 0x76, 0x5e, - 0xca, 0xbc, 0x5e, 0xb7, 0xec, 0xe0, 0xa0, 0xdb, 0xd2, 0x4c, 0xe2, 0xe8, 0xe2, 0xc1, 0xb0, 0x5b, - 0x66, 0xc5, 0x22, 0x7a, 0xef, 0x89, 0xee, 0x90, 0x76, 0xb7, 0x83, 0x94, 0xbd, 0x45, 0x54, 0xaf, - 0x6d, 0x54, 0xd8, 0x33, 0x14, 0x84, 0x1e, 0xd2, 0xd6, 0x04, 0x7f, 0x4a, 0x1e, 0xfd, 0x09, 0x00, - 0x00, 0xff, 0xff, 0xb7, 0x92, 0x13, 0xd2, 0x0f, 0x07, 0x00, 0x00, + // 702 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x55, 0x4d, 0x4f, 0xdb, 0x4a, + 0x14, 0x8d, 0xc9, 0xe3, 0x23, 0x17, 0xde, 0xe3, 0xc5, 0x42, 0x2f, 0xc1, 0x0f, 0x0c, 0xb5, 0x50, + 0x4b, 0x23, 0xc5, 0x26, 0xa9, 0x50, 0x45, 0xd4, 0x2e, 0x0a, 0x2a, 0x12, 0x52, 0x51, 0xa3, 0x2c, + 0xbb, 0x41, 0x8e, 0x73, 0x31, 0x2e, 0xb1, 0xc7, 0xf2, 0x38, 0x51, 0xbd, 0xab, 0x58, 0x55, 0x5d, + 0xb5, 0xff, 0xa0, 0xcb, 0x2e, 0xba, 0xe0, 0x67, 0xb0, 0x64, 0xd9, 0x4d, 0xab, 0x0a, 0x2a, 0xf1, + 0x0f, 0xba, 0xae, 0x66, 0x3c, 0xb6, 0x4c, 0x42, 0x50, 0x5a, 0xa9, 0x1b, 0xcb, 0x73, 0xcf, 0x99, + 0x33, 0xf7, 0x1c, 0xcd, 0xd5, 0xc0, 0xaa, 0xd3, 0xb6, 0x0c, 0xd3, 0xf7, 0xbb, 0x8e, 0x65, 0x86, + 0x0e, 0xf1, 0xa8, 0x71, 0x88, 0x68, 0xf4, 0x6b, 0x46, 0xf8, 0x4a, 0xf7, 0x03, 0x12, 0x12, 0xb9, + 0xe4, 0xb4, 0x2d, 0x3d, 0xcb, 0xd0, 0x0f, 0x11, 0xf5, 0x7e, 0x4d, 0x29, 0x9a, 0xae, 0xe3, 0x11, + 0x83, 0x7f, 0x63, 0xae, 0xb2, 0x60, 0x13, 0x9b, 0xf0, 0x5f, 0x83, 0xfd, 0x89, 0xea, 0x9d, 0x51, + 0x67, 0x30, 0xa1, 0x0c, 0xc5, 0x22, 0x01, 0x1a, 0xd6, 0x91, 0xe9, 0x79, 0xd8, 0x65, 0xb0, 0xf8, + 0x15, 0x94, 0x92, 0x45, 0xa8, 0x4b, 0xa8, 0xe1, 0x52, 0x9b, 0x81, 0x2e, 0xb5, 0x63, 0x40, 0xfb, + 0x24, 0xc1, 0xbf, 0xfb, 0xd4, 0x6e, 0xa1, 0xed, 0xd0, 0x10, 0x83, 0xa6, 0x19, 0x21, 0xca, 0x25, + 0x98, 0xf6, 0x49, 0x10, 0x1e, 0x38, 0x9d, 0xb2, 0xb4, 0x2a, 0xad, 0x17, 0x5a, 0x53, 0x6c, 0xb9, + 0xd7, 0x91, 0x97, 0x01, 0x84, 0x2e, 0xc3, 0x26, 0x38, 0x56, 0x10, 0x95, 0xbd, 0x8e, 0x5c, 0x86, + 0xe9, 0x00, 0xbb, 0x66, 0x84, 0x41, 0x39, 0xcf, 0xb1, 0x64, 0x29, 0x2f, 0xc0, 0xa4, 0xcf, 0xa4, + 0xcb, 0x7f, 0xf1, 0x7a, 0xbc, 0x68, 0x6c, 0xbc, 0xf9, 0xb0, 0x92, 0x3b, 0xb9, 0x3a, 0xad, 0x24, + 0xbc, 0xb7, 0x57, 0xa7, 0x95, 0xff, 0xe3, 0x56, 0xab, 0xb4, 0x73, 0x6c, 0x0c, 0x76, 0xa6, 0x29, + 0x50, 0x1e, 0xac, 0xb5, 0x90, 0xfa, 0xc4, 0xa3, 0xa8, 0x7d, 0x91, 0x60, 0x29, 0x03, 0xee, 0x90, + 0x9e, 0x17, 0x62, 0xe0, 0x9b, 0x41, 0x18, 0xfd, 0x29, 0x5b, 0x55, 0x90, 0xad, 0xcc, 0x31, 0x07, + 0x59, 0x8f, 0x45, 0x6b, 0xb0, 0x81, 0xc6, 0xa3, 0x9b, 0xfc, 0xde, 0xbb, 0xd9, 0xef, 0x50, 0xfb, + 0xda, 0x5d, 0x58, 0xbb, 0x0d, 0x4f, 0x73, 0x38, 0x99, 0x80, 0xf9, 0x7d, 0x6a, 0x37, 0xcd, 0xa8, + 0x69, 0x5a, 0xc7, 0x18, 0xee, 0x22, 0xca, 0x5b, 0x90, 0x3f, 0x44, 0xe4, 0xb6, 0x67, 0xeb, 0x4b, + 0xfa, 0x88, 0x5b, 0xa9, 0xef, 0x22, 0x6e, 0x17, 0xce, 0xbe, 0xae, 0xe4, 0x3e, 0x5e, 0x9d, 0x56, + 0xa4, 0x16, 0xdb, 0x23, 0xaf, 0xc1, 0x3f, 0x94, 0xf4, 0x02, 0x0b, 0x0f, 0x92, 0xf0, 0xe2, 0x80, + 0xe6, 0xe2, 0x6a, 0x33, 0x8e, 0xb0, 0x02, 0x45, 0xc1, 0xca, 0x24, 0x19, 0xa7, 0x35, 0x1f, 0x03, + 0x3b, 0x69, 0x9e, 0xff, 0xc1, 0x14, 0x75, 0x6c, 0x0f, 0x03, 0x91, 0x94, 0x58, 0xc9, 0x0a, 0xcc, + 0x88, 0x5c, 0x68, 0x79, 0x72, 0x35, 0xbf, 0x5e, 0x68, 0xa5, 0xeb, 0x86, 0x9e, 0x44, 0x27, 0xc8, + 0x2c, 0x39, 0xe5, 0x7a, 0x72, 0x59, 0xc3, 0xda, 0x22, 0x94, 0x06, 0x4a, 0x69, 0x3e, 0xdf, 0x25, + 0x58, 0x18, 0xc0, 0x9e, 0xd0, 0xc8, 0xb3, 0xe4, 0xa7, 0x50, 0xf0, 0x79, 0x25, 0xb9, 0x21, 0xb3, + 0xf5, 0x65, 0x1e, 0x15, 0x9b, 0x2d, 0x3d, 0x19, 0xa8, 0x7e, 0x4d, 0x8f, 0xf7, 0xed, 0x75, 0xb2, + 0x59, 0xcd, 0xf8, 0xa2, 0x28, 0x3f, 0x03, 0x10, 0x32, 0x2c, 0xf2, 0x09, 0xae, 0xa3, 0x8d, 0x8c, + 0x3c, 0xed, 0x21, 0x2b, 0x26, 0xfa, 0xd8, 0x45, 0x6c, 0x3c, 0x4c, 0x8c, 0x67, 0x44, 0x99, 0xf9, + 0x95, 0xd1, 0xe6, 0xb9, 0x1b, 0x4d, 0xe5, 0xd3, 0x30, 0x54, 0x4f, 0x62, 0xa8, 0xff, 0xc8, 0x43, + 0x7e, 0x9f, 0xda, 0xb2, 0x0b, 0x7f, 0x5f, 0x9f, 0xfe, 0xfb, 0x23, 0x7b, 0x1d, 0x1c, 0x3d, 0xa5, + 0x36, 0x36, 0x35, 0x39, 0x56, 0x7e, 0x2f, 0xc1, 0xe2, 0xe8, 0x11, 0xdd, 0x1c, 0x47, 0x70, 0x68, + 0x9b, 0xf2, 0xf8, 0xb7, 0xb6, 0xa5, 0x3d, 0xbd, 0x84, 0xb9, 0x6b, 0xd3, 0xb2, 0x7e, 0x9b, 0x5c, + 0x96, 0xa9, 0x6c, 0x8c, 0xcb, 0x4c, 0xcf, 0x8a, 0xa0, 0x38, 0x7c, 0xf3, 0xaa, 0xe3, 0xca, 0x70, + 0xba, 0xb2, 0xf9, 0x4b, 0xf4, 0xe4, 0x68, 0x65, 0xf2, 0x35, 0xbb, 0x5c, 0xdb, 0xcf, 0xcf, 0x2e, + 0x54, 0xe9, 0xfc, 0x42, 0x95, 0xbe, 0x5d, 0xa8, 0xd2, 0xbb, 0x4b, 0x35, 0x77, 0x7e, 0xa9, 0xe6, + 0x3e, 0x5f, 0xaa, 0xb9, 0x17, 0x9b, 0xb6, 0x13, 0x1e, 0xf5, 0xda, 0xba, 0x45, 0x5c, 0x43, 0x3c, + 0x18, 0x4e, 0xdb, 0xaa, 0xda, 0xc4, 0xe8, 0x6f, 0x19, 0x2e, 0xe9, 0xf4, 0xba, 0x48, 0xd9, 0x5b, + 0x44, 0x8d, 0xfa, 0x56, 0x95, 0x3d, 0x43, 0x61, 0xe4, 0x23, 0x6d, 0x4f, 0xf1, 0xa7, 0xe4, 0xc1, + 0xcf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x7f, 0x85, 0x8d, 0x1d, 0x0f, 0x07, 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 b9d3978ed19b..83940233ee6a 100644 --- a/modules/apps/callbacks/callbacks_test.go +++ b/modules/apps/callbacks/callbacks_test.go @@ -21,14 +21,14 @@ import ( "github.com/cosmos/ibc-go/modules/apps/callbacks/testing/simapp" "github.com/cosmos/ibc-go/modules/apps/callbacks/types" - icacontrollertypes "github.com/cosmos/ibc-go/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" - 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" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + icacontrollertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + feetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) const maxCallbackGas = uint64(1000000) diff --git a/modules/apps/callbacks/fee_transfer_test.go b/modules/apps/callbacks/fee_transfer_test.go index 95aec258e87b..9e9e9eb62f82 100644 --- a/modules/apps/callbacks/fee_transfer_test.go +++ b/modules/apps/callbacks/fee_transfer_test.go @@ -9,9 +9,9 @@ import ( "github.com/cosmos/ibc-go/modules/apps/callbacks/testing/simapp" "github.com/cosmos/ibc-go/modules/apps/callbacks/types" - feetypes "github.com/cosmos/ibc-go/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" + feetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) var ( diff --git a/modules/apps/callbacks/go.mod b/modules/apps/callbacks/go.mod index 805d6dac33f4..ba272ddfda4f 100644 --- a/modules/apps/callbacks/go.mod +++ b/modules/apps/callbacks/go.mod @@ -4,7 +4,7 @@ go 1.22.2 toolchain go1.22.3 -replace github.com/cosmos/ibc-go/v8 => ../../../ +replace github.com/cosmos/ibc-go/v9 => ../../../ 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.7 github.com/cosmos/gogoproto v1.5.0 github.com/cosmos/ibc-go/modules/capability v1.0.1 - github.com/cosmos/ibc-go/v8 v8.0.0 + github.com/cosmos/ibc-go/v9 v9.0.0 github.com/spf13/cast v1.6.0 github.com/spf13/cobra v1.8.1 github.com/spf13/viper v1.19.0 diff --git a/modules/apps/callbacks/ibc_middleware.go b/modules/apps/callbacks/ibc_middleware.go index 74e6e83a408b..ef6dbcbbfd03 100644 --- a/modules/apps/callbacks/ibc_middleware.go +++ b/modules/apps/callbacks/ibc_middleware.go @@ -11,10 +11,10 @@ import ( "github.com/cosmos/ibc-go/modules/apps/callbacks/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/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" - ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" ) var ( diff --git a/modules/apps/callbacks/ibc_middleware_test.go b/modules/apps/callbacks/ibc_middleware_test.go index 4c0c9a2a7a91..25bc6db3785c 100644 --- a/modules/apps/callbacks/ibc_middleware_test.go +++ b/modules/apps/callbacks/ibc_middleware_test.go @@ -13,16 +13,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/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" + icacontrollertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channelkeeper "github.com/cosmos/ibc-go/v9/modules/core/04-channel/keeper" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v9/testing" + ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" ) func (s *CallbacksTestSuite) TestNewIBCMiddleware() { diff --git a/modules/apps/callbacks/ica_test.go b/modules/apps/callbacks/ica_test.go index 1800221f8d13..ecd669d933bb 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/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" + icacontrollertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + icahosttypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func (s *CallbacksTestSuite) TestICACallbacks() { diff --git a/modules/apps/callbacks/replay_test.go b/modules/apps/callbacks/replay_test.go index ee62bdca182e..1f63d6791d8b 100644 --- a/modules/apps/callbacks/replay_test.go +++ b/modules/apps/callbacks/replay_test.go @@ -6,12 +6,12 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/ibc-go/modules/apps/callbacks/testing/simapp" - transfertypes "github.com/cosmos/ibc-go/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" - ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func (s *CallbacksTestSuite) TestTransferTimeoutReplayProtection() { diff --git a/modules/apps/callbacks/testing/simapp/ante_handler.go b/modules/apps/callbacks/testing/simapp/ante_handler.go index c64ad04d6eac..58603401edfb 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/v8/modules/core/ante" - "github.com/cosmos/ibc-go/v8/modules/core/keeper" + ibcante "github.com/cosmos/ibc-go/v9/modules/core/ante" + "github.com/cosmos/ibc-go/v9/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 a01a8e016574..b66dce822cc9 100644 --- a/modules/apps/callbacks/testing/simapp/app.go +++ b/modules/apps/callbacks/testing/simapp/app.go @@ -107,28 +107,28 @@ 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/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" - "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" - 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" + ica "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts" + icacontroller "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller" + icacontrollerkeeper "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/keeper" + icacontrollertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + icahost "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host" + icahostkeeper "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/keeper" + icahosttypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + ibcfee "github.com/cosmos/ibc-go/v9/modules/apps/29-fee" + ibcfeekeeper "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/keeper" + ibcfeetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer" + ibctransferkeeper "github.com/cosmos/ibc-go/v9/modules/apps/transfer/keeper" + ibctransfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + ibc "github.com/cosmos/ibc-go/v9/modules/core" + porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibckeeper "github.com/cosmos/ibc-go/v9/modules/core/keeper" + solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" + ibctestingtypes "github.com/cosmos/ibc-go/v9/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 f493eb8c6009..d2ca9dba2c62 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/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" ) // MockKeeper implements callbacktypes.ContractKeeper diff --git a/modules/apps/callbacks/transfer_test.go b/modules/apps/callbacks/transfer_test.go index 5556ca2a3a29..656df9135437 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/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" + transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func (s *CallbacksTestSuite) TestTransferCallbacks() { diff --git a/modules/apps/callbacks/types/callbacks.go b/modules/apps/callbacks/types/callbacks.go index b7eaabec93b3..658887a47aca 100644 --- a/modules/apps/callbacks/types/callbacks.go +++ b/modules/apps/callbacks/types/callbacks.go @@ -8,9 +8,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/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" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" ) /* diff --git a/modules/apps/callbacks/types/callbacks_test.go b/modules/apps/callbacks/types/callbacks_test.go index 71535df2ecb0..cd9c67bd64bc 100644 --- a/modules/apps/callbacks/types/callbacks_test.go +++ b/modules/apps/callbacks/types/callbacks_test.go @@ -10,12 +10,12 @@ import ( "github.com/cometbft/cometbft/crypto/secp256k1" "github.com/cosmos/ibc-go/modules/apps/callbacks/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" - 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" + transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v9/testing" + ibcmock "github.com/cosmos/ibc-go/v9/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 99b5a530f8ec..e0dab1bcecd3 100644 --- a/modules/apps/callbacks/types/events_test.go +++ b/modules/apps/callbacks/types/events_test.go @@ -6,9 +6,9 @@ import ( abci "github.com/cometbft/cometbft/abci/types" "github.com/cosmos/ibc-go/modules/apps/callbacks/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func (s *CallbacksTypesTestSuite) TestEvents() { diff --git a/modules/apps/callbacks/types/expected_keepers.go b/modules/apps/callbacks/types/expected_keepers.go index ff6be8906ec5..16aa14938d6e 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/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // ContractKeeper defines the entry points exposed to the VM module which invokes a smart contract diff --git a/modules/apps/callbacks/types/types_test.go b/modules/apps/callbacks/types/types_test.go index 5aab45242d21..8627e57f3572 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/v8/testing" + ibctesting "github.com/cosmos/ibc-go/v9/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 c4594f8c99a5..51561e58bac9 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/v8/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" ) // GetCmdQueryDenom defines the command to query a denomination from a given hash or ibc denom. diff --git a/modules/apps/transfer/client/cli/tx.go b/modules/apps/transfer/client/cli/tx.go index 64da770cf7e1..1805375031f3 100644 --- a/modules/apps/transfer/client/cli/tx.go +++ b/modules/apps/transfer/client/cli/tx.go @@ -14,8 +14,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/version" - "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" ) const ( diff --git a/modules/apps/transfer/ibc_module.go b/modules/apps/transfer/ibc_module.go index 3748383f4ae5..99a3b5642b00 100644 --- a/modules/apps/transfer/ibc_module.go +++ b/modules/apps/transfer/ibc_module.go @@ -11,15 +11,15 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - "github.com/cosmos/ibc-go/v8/modules/apps/transfer/internal" - "github.com/cosmos/ibc-go/v8/modules/apps/transfer/internal/events" - "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" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/internal" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/internal/events" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/keeper" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" ) var ( diff --git a/modules/apps/transfer/ibc_module_test.go b/modules/apps/transfer/ibc_module_test.go index 3e796a469cf6..89754421761d 100644 --- a/modules/apps/transfer/ibc_module_test.go +++ b/modules/apps/transfer/ibc_module_test.go @@ -11,16 +11,16 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - "github.com/cosmos/ibc-go/v8/modules/apps/transfer" - "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" - 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" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func (suite *TransferTestSuite) TestOnChanOpenInit() { diff --git a/modules/apps/transfer/internal/events/events.go b/modules/apps/transfer/internal/events/events.go index bb17431bdd0d..ed015f68604f 100644 --- a/modules/apps/transfer/internal/events/events.go +++ b/modules/apps/transfer/internal/events/events.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "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/v9/modules/apps/transfer/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" ) // EmitTransferEvent emits a ibc transfer event on successful transfers. diff --git a/modules/apps/transfer/internal/packet.go b/modules/apps/transfer/internal/packet.go index cc5885523a89..f74cc57b27a6 100644 --- a/modules/apps/transfer/internal/packet.go +++ b/modules/apps/transfer/internal/packet.go @@ -9,8 +9,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec/unknownproto" - "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" - ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" ) // UnmarshalPacketData attempts to unmarshal the provided packet data bytes into a FungibleTokenPacketDataV2. diff --git a/modules/apps/transfer/internal/packet_test.go b/modules/apps/transfer/internal/packet_test.go index b3f9b2d85783..da545fb41334 100644 --- a/modules/apps/transfer/internal/packet_test.go +++ b/modules/apps/transfer/internal/packet_test.go @@ -7,8 +7,8 @@ import ( errorsmod "cosmossdk.io/errors" - "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" - ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" ) const ( diff --git a/modules/apps/transfer/internal/telemetry/telemetry.go b/modules/apps/transfer/internal/telemetry/telemetry.go index 74a7b15dfa90..af6e51cae49d 100644 --- a/modules/apps/transfer/internal/telemetry/telemetry.go +++ b/modules/apps/transfer/internal/telemetry/telemetry.go @@ -9,8 +9,8 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" - "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" - coretypes "github.com/cosmos/ibc-go/v8/modules/core/types" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + coretypes "github.com/cosmos/ibc-go/v9/modules/core/types" ) func ReportTransfer(sourcePort, sourceChannel, destinationPort, destinationChannel string, tokens types.Tokens) { diff --git a/modules/apps/transfer/internal/types/ack.go b/modules/apps/transfer/internal/types/ack.go index bc78bcf93adb..b8d7cf9a284d 100644 --- a/modules/apps/transfer/internal/types/ack.go +++ b/modules/apps/transfer/internal/types/ack.go @@ -3,7 +3,7 @@ package types import ( "fmt" - channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" ) // NewForwardErrorAcknowledgement returns a new error acknowledgement with path forwarding information. diff --git a/modules/apps/transfer/internal/types/denomtrace.pb.go b/modules/apps/transfer/internal/types/denomtrace.pb.go index 6d7ee29ad75b..a20544d624ed 100644 --- a/modules/apps/transfer/internal/types/denomtrace.pb.go +++ b/modules/apps/transfer/internal/types/denomtrace.pb.go @@ -102,9 +102,9 @@ var fileDescriptor_c400148599bf8bc8 = []byte{ 0xbc, 0xf0, 0x48, 0x8e, 0xf1, 0xc1, 0x23, 0x39, 0xc6, 0x09, 0x8f, 0xe5, 0x18, 0x2e, 0x3c, 0x96, 0x63, 0xb8, 0xf1, 0x58, 0x8e, 0x21, 0xca, 0x3c, 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, 0x42, 0x3f, 0x37, 0x3f, 0xa5, 0x34, 0x27, 0xb5, 0x18, 0xe4, 0x17, 0x24, 0x3f, 0x94, - 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x1d, 0x6f, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x40, - 0x87, 0xd3, 0x61, 0xed, 0x00, 0x00, 0x00, + 0xbf, 0xcc, 0x52, 0x3f, 0x37, 0x3f, 0xa5, 0x34, 0x27, 0xb5, 0x18, 0xe4, 0x17, 0x24, 0x3f, 0x94, + 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x1d, 0x6f, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x5f, + 0x90, 0x23, 0xe1, 0xed, 0x00, 0x00, 0x00, } func (m *DenomTrace) Marshal() (dAtA []byte, err error) { diff --git a/modules/apps/transfer/internal/types/legacy_denomtrace.go b/modules/apps/transfer/internal/types/legacy_denomtrace.go index ca11d708d74e..63c2182616e6 100644 --- a/modules/apps/transfer/internal/types/legacy_denomtrace.go +++ b/modules/apps/transfer/internal/types/legacy_denomtrace.go @@ -6,7 +6,7 @@ import ( cmtbytes "github.com/cometbft/cometbft/libs/bytes" - "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" ) // Hash returns the hex bytes of the SHA256 hash of the DenomTrace fields using the following formula: diff --git a/modules/apps/transfer/internal/types/legacy_denomtrace_test.go b/modules/apps/transfer/internal/types/legacy_denomtrace_test.go index 9889fa077300..87178c0e6aea 100644 --- a/modules/apps/transfer/internal/types/legacy_denomtrace_test.go +++ b/modules/apps/transfer/internal/types/legacy_denomtrace_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - internaltypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/internal/types" + internaltypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/internal/types" ) func TestDenomTrace_IBCDenom(t *testing.T) { diff --git a/modules/apps/transfer/keeper/export_test.go b/modules/apps/transfer/keeper/export_test.go index cda19c838142..0a91b25261c4 100644 --- a/modules/apps/transfer/keeper/export_test.go +++ b/modules/apps/transfer/keeper/export_test.go @@ -3,9 +3,9 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - internaltypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/internal/types" - "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" - channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + internaltypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/internal/types" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" ) // SetDenomTraces is a wrapper around iterateDenomTraces for testing purposes. diff --git a/modules/apps/transfer/keeper/forwarding.go b/modules/apps/transfer/keeper/forwarding.go index 29f00714f3e1..d97086a71dc3 100644 --- a/modules/apps/transfer/keeper/forwarding.go +++ b/modules/apps/transfer/keeper/forwarding.go @@ -5,11 +5,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/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" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" ) // forwardPacket forwards a fungible FungibleTokenPacketDataV2 to the next hop in the forwarding path. diff --git a/modules/apps/transfer/keeper/genesis.go b/modules/apps/transfer/keeper/genesis.go index 0901fecca64b..e0267512753c 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/v8/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v9/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 566e408d3d51..61fa75ebf3c7 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/v8/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v9/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 01a8e6ddc6b6..8b5115007a63 100644 --- a/modules/apps/transfer/keeper/grpc_query.go +++ b/modules/apps/transfer/keeper/grpc_query.go @@ -14,9 +14,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - "github.com/cosmos/ibc-go/v8/internal/validate" - "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/v9/internal/validate" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" ) var ( diff --git a/modules/apps/transfer/keeper/grpc_query_test.go b/modules/apps/transfer/keeper/grpc_query_test.go index e83217058a16..3b49c468c1fc 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/v8/modules/apps/transfer/types" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func (suite *KeeperTestSuite) TestQueryDenom() { diff --git a/modules/apps/transfer/keeper/invariants.go b/modules/apps/transfer/keeper/invariants.go index ff0d9be72c25..dded2822ec95 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/v8/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v9/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 28b6a33d8675..c24bb2d40bf5 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/v8/modules/apps/transfer/keeper" - "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/keeper" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func (suite *KeeperTestSuite) TestTotalEscrowPerDenomInvariant() { diff --git a/modules/apps/transfer/keeper/keeper.go b/modules/apps/transfer/keeper/keeper.go index a5adf27b975f..997d1e7b83ff 100644 --- a/modules/apps/transfer/keeper/keeper.go +++ b/modules/apps/transfer/keeper/keeper.go @@ -17,11 +17,11 @@ import ( cmtbytes "github.com/cometbft/cometbft/libs/bytes" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - "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" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/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 f816dbe47407..ce9dd0c18695 100644 --- a/modules/apps/transfer/keeper/keeper_test.go +++ b/modules/apps/transfer/keeper/keeper_test.go @@ -15,10 +15,10 @@ import ( authkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper" minttypes "github.com/cosmos/cosmos-sdk/x/mint/types" - "github.com/cosmos/ibc-go/v8/modules/apps/transfer/keeper" - "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" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/keeper" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + channelkeeper "github.com/cosmos/ibc-go/v9/modules/core/04-channel/keeper" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) type KeeperTestSuite struct { diff --git a/modules/apps/transfer/keeper/mbt_relay_test.go b/modules/apps/transfer/keeper/mbt_relay_test.go index 6dae1bd21e14..c06b625c5d9c 100644 --- a/modules/apps/transfer/keeper/mbt_relay_test.go +++ b/modules/apps/transfer/keeper/mbt_relay_test.go @@ -19,11 +19,11 @@ import ( "github.com/cometbft/cometbft/crypto" - "github.com/cosmos/ibc-go/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" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) type TlaBalance struct { diff --git a/modules/apps/transfer/keeper/migrations.go b/modules/apps/transfer/keeper/migrations.go index 8376c9046445..bcfb43344f0d 100644 --- a/modules/apps/transfer/keeper/migrations.go +++ b/modules/apps/transfer/keeper/migrations.go @@ -10,8 +10,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - internaltypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/internal/types" - "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + internaltypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/internal/types" + "github.com/cosmos/ibc-go/v9/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 c749b1e9b35b..8eea47d4ab0d 100644 --- a/modules/apps/transfer/keeper/migrations_test.go +++ b/modules/apps/transfer/keeper/migrations_test.go @@ -9,10 +9,10 @@ import ( banktestutil "github.com/cosmos/cosmos-sdk/x/bank/testutil" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - internaltransfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/internal/types" - 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" + internaltransfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/internal/types" + transferkeeper "github.com/cosmos/ibc-go/v9/modules/apps/transfer/keeper" + transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func (suite *KeeperTestSuite) TestMigratorMigrateParams() { diff --git a/modules/apps/transfer/keeper/msg_server.go b/modules/apps/transfer/keeper/msg_server.go index 246e67ed9367..a8eab8817223 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/v8/modules/apps/transfer/types" - ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + ibcerrors "github.com/cosmos/ibc-go/v9/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 ef902c9b5960..5486bd8e09b5 100644 --- a/modules/apps/transfer/keeper/msg_server_test.go +++ b/modules/apps/transfer/keeper/msg_server_test.go @@ -11,11 +11,11 @@ import ( abci "github.com/cometbft/cometbft/abci/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" - ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) // TestMsgTransfer tests Transfer rpc handler diff --git a/modules/apps/transfer/keeper/relay.go b/modules/apps/transfer/keeper/relay.go index 7166876f1391..bc1f242a3b2e 100644 --- a/modules/apps/transfer/keeper/relay.go +++ b/modules/apps/transfer/keeper/relay.go @@ -10,14 +10,14 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/cosmos/ibc-go/v8/modules/apps/transfer/internal/events" - "github.com/cosmos/ibc-go/v8/modules/apps/transfer/internal/telemetry" - internaltypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/internal/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" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/internal/events" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/internal/telemetry" + internaltypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/internal/types" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" ) // sendTransfer handles transfer sending logic. There are 2 possible cases: diff --git a/modules/apps/transfer/keeper/relay_forwarding_test.go b/modules/apps/transfer/keeper/relay_forwarding_test.go index fbe3526ac904..0442224388ca 100644 --- a/modules/apps/transfer/keeper/relay_forwarding_test.go +++ b/modules/apps/transfer/keeper/relay_forwarding_test.go @@ -12,11 +12,11 @@ import ( abci "github.com/cometbft/cometbft/abci/types" - internaltypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/internal/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" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + internaltypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/internal/types" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func (suite *KeeperTestSuite) setupForwardingPaths() (pathAtoB, pathBtoC *ibctesting.Path) { diff --git a/modules/apps/transfer/keeper/relay_test.go b/modules/apps/transfer/keeper/relay_test.go index 8f2556b5e5ad..261998dd5ce3 100644 --- a/modules/apps/transfer/keeper/relay_test.go +++ b/modules/apps/transfer/keeper/relay_test.go @@ -13,13 +13,13 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" minttypes "github.com/cosmos/cosmos-sdk/x/mint/types" - transferkeeper "github.com/cosmos/ibc-go/v8/modules/apps/transfer/keeper" - "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" - ibcmock "github.com/cosmos/ibc-go/v8/testing/mock" + transferkeeper "github.com/cosmos/ibc-go/v9/modules/apps/transfer/keeper" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v9/testing" + ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" ) // TestSendTransfer tests sending from chainA to chainB using both coin diff --git a/modules/apps/transfer/module.go b/modules/apps/transfer/module.go index 42809493f6fa..551a6eb74668 100644 --- a/modules/apps/transfer/module.go +++ b/modules/apps/transfer/module.go @@ -17,11 +17,11 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/cosmos/ibc-go/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" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/client/cli" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/keeper" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/simulation" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" ) var ( diff --git a/modules/apps/transfer/simulation/decoder.go b/modules/apps/transfer/simulation/decoder.go index baf5a9dba45d..690174de7327 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/v8/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" ) // NewDecodeStore returns a decoder function closure that unmarshals the KVPair's diff --git a/modules/apps/transfer/simulation/decoder_test.go b/modules/apps/transfer/simulation/decoder_test.go index 19cbcd6ddcaf..e83dd8e75ed9 100644 --- a/modules/apps/transfer/simulation/decoder_test.go +++ b/modules/apps/transfer/simulation/decoder_test.go @@ -8,8 +8,8 @@ import ( "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/cosmos/ibc-go/v8/modules/apps/transfer/simulation" - "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/simulation" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" ) func TestDecodeStore(t *testing.T) { diff --git a/modules/apps/transfer/simulation/genesis.go b/modules/apps/transfer/simulation/genesis.go index 4fb8cd648718..0bd3d581efe5 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/v8/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v9/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 de63d14d7302..3cb5f681442b 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/v8/modules/apps/transfer/simulation" - "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/simulation" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" ) // TestRandomizedGenState tests the normal scenario of applying RandomizedGenState. diff --git a/modules/apps/transfer/simulation/proposals.go b/modules/apps/transfer/simulation/proposals.go index fcf23947210c..404a24ff3a07 100644 --- a/modules/apps/transfer/simulation/proposals.go +++ b/modules/apps/transfer/simulation/proposals.go @@ -8,7 +8,7 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" - "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" ) // Simulation operation weights constants diff --git a/modules/apps/transfer/simulation/proposals_test.go b/modules/apps/transfer/simulation/proposals_test.go index d537ef43e101..44a03d6d5698 100644 --- a/modules/apps/transfer/simulation/proposals_test.go +++ b/modules/apps/transfer/simulation/proposals_test.go @@ -12,8 +12,8 @@ import ( cmtproto "github.com/cometbft/cometbft/proto/tendermint/types" - "github.com/cosmos/ibc-go/v8/modules/apps/transfer/simulation" - "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/simulation" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" ) func TestProposalMsgs(t *testing.T) { diff --git a/modules/apps/transfer/transfer_test.go b/modules/apps/transfer/transfer_test.go index e3603cbbf30a..aa7f5954c909 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/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" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) type TransferTestSuite struct { diff --git a/modules/apps/transfer/types/authz.pb.go b/modules/apps/transfer/types/authz.pb.go index e71fcc8dc6fe..babcacc9d100 100644 --- a/modules/apps/transfer/types/authz.pb.go +++ b/modules/apps/transfer/types/authz.pb.go @@ -226,7 +226,7 @@ var fileDescriptor_b1a28b55d17325aa = []byte{ // 496 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x92, 0x4f, 0x8b, 0xd3, 0x40, 0x18, 0xc6, 0x9b, 0x6d, 0x5d, 0xe8, 0x14, 0x85, 0x8d, 0x0a, 0xd9, 0x45, 0xd3, 0x5a, 0x50, 0x02, - 0xd2, 0x19, 0xab, 0x07, 0x45, 0x4f, 0xed, 0x8a, 0x78, 0xd8, 0x43, 0x2d, 0x9e, 0xbc, 0x84, 0xc9, + 0xd2, 0x19, 0xab, 0x07, 0x51, 0x4f, 0xed, 0x8a, 0x78, 0xd8, 0x43, 0x2d, 0x9e, 0xbc, 0x84, 0xc9, 0x64, 0xb6, 0x19, 0x76, 0x9a, 0x37, 0x64, 0x26, 0x5d, 0xdc, 0x4f, 0xa1, 0x5f, 0xc3, 0xb3, 0x1f, 0x62, 0xf1, 0xb4, 0x47, 0x4f, 0x2a, 0xed, 0x87, 0xf0, 0x2a, 0x99, 0x99, 0xd6, 0xca, 0x42, 0x3d, 0xb5, 0xf3, 0xbc, 0xbf, 0xf7, 0x5f, 0x9e, 0x17, 0x45, 0x22, 0x61, 0x84, 0x16, 0x85, 0x14, 0x8c, @@ -254,7 +254,7 @@ var fileDescriptor_b1a28b55d17325aa = []byte{ 0x77, 0x97, 0xcb, 0xd0, 0xbb, 0x5a, 0x86, 0xde, 0xaf, 0x65, 0xe8, 0x7d, 0x5a, 0x85, 0x8d, 0xab, 0x55, 0xd8, 0xf8, 0xbe, 0x0a, 0x1b, 0x1f, 0x9e, 0x5f, 0xb7, 0x5a, 0x24, 0x6c, 0x30, 0x03, 0xb2, 0x78, 0x41, 0xe6, 0x90, 0x56, 0x92, 0xab, 0xfa, 0x8c, 0xb7, 0xce, 0xd7, 0xf8, 0x9f, 0xec, 0x9b, - 0xcb, 0x7d, 0xf6, 0x27, 0x00, 0x00, 0xff, 0xff, 0x79, 0x59, 0xb5, 0xa3, 0x81, 0x03, 0x00, 0x00, + 0xcb, 0x7d, 0xf6, 0x27, 0x00, 0x00, 0xff, 0xff, 0x66, 0x4e, 0x45, 0x23, 0x81, 0x03, 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 f1de06ef3d71..6be95087a9b8 100644 --- a/modules/apps/transfer/types/codec_test.go +++ b/modules/apps/transfer/types/codec_test.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" - "github.com/cosmos/ibc-go/v8/modules/apps/transfer" - "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer" + "github.com/cosmos/ibc-go/v9/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/denom.go b/modules/apps/transfer/types/denom.go index 6af937d35251..03c4bb19f04a 100644 --- a/modules/apps/transfer/types/denom.go +++ b/modules/apps/transfer/types/denom.go @@ -14,7 +14,7 @@ import ( cmtbytes "github.com/cometbft/cometbft/libs/bytes" cmttypes "github.com/cometbft/cometbft/types" - channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" ) // NewDenom creates a new Denom instance given the base denomination and a variable number of hops. diff --git a/modules/apps/transfer/types/denom_test.go b/modules/apps/transfer/types/denom_test.go index da78b773b499..6a240af3e845 100644 --- a/modules/apps/transfer/types/denom_test.go +++ b/modules/apps/transfer/types/denom_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" ) func (suite *TypesTestSuite) TestDenomsValidate() { diff --git a/modules/apps/transfer/types/expected_keepers.go b/modules/apps/transfer/types/expected_keepers.go index 9ed02474405e..5125eb433154 100644 --- a/modules/apps/transfer/types/expected_keepers.go +++ b/modules/apps/transfer/types/expected_keepers.go @@ -8,9 +8,9 @@ import ( paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/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" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // AccountKeeper defines the contract required for account APIs. diff --git a/modules/apps/transfer/types/forwarding.go b/modules/apps/transfer/types/forwarding.go index b244b7b840b7..7fa75e11c2cc 100644 --- a/modules/apps/transfer/types/forwarding.go +++ b/modules/apps/transfer/types/forwarding.go @@ -5,7 +5,7 @@ import ( errorsmod "cosmossdk.io/errors" - host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" ) const MaximumNumberOfForwardingHops = 8 // denotes the maximum number of forwarding hops allowed diff --git a/modules/apps/transfer/types/forwarding_test.go b/modules/apps/transfer/types/forwarding_test.go index c67a8a4fe1e8..2378199d32a5 100644 --- a/modules/apps/transfer/types/forwarding_test.go +++ b/modules/apps/transfer/types/forwarding_test.go @@ -5,9 +5,9 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" - host "github.com/cosmos/ibc-go/v8/modules/core/24-host" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) var validHop = types.NewHop(types.PortID, ibctesting.FirstChannelID) diff --git a/modules/apps/transfer/types/genesis.go b/modules/apps/transfer/types/genesis.go index fce19120997a..4ae14cf8ded6 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/v8/modules/core/24-host" + host "github.com/cosmos/ibc-go/v9/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 af271171e3e6..0fb1afc6fe9c 100644 --- a/modules/apps/transfer/types/genesis.pb.go +++ b/modules/apps/transfer/types/genesis.pb.go @@ -108,28 +108,28 @@ var fileDescriptor_62efebb47a9093ed = []byte{ // 378 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x51, 0xc1, 0x4e, 0xdb, 0x40, 0x10, 0xb5, 0x93, 0xc8, 0x55, 0x9d, 0x36, 0x07, 0xab, 0x52, 0xdd, 0xa8, 0x72, 0xa2, 0xb6, 0x07, - 0xab, 0x55, 0x76, 0x6b, 0x73, 0x80, 0xb3, 0x01, 0x21, 0xc4, 0x05, 0xcc, 0x8d, 0x4b, 0xb4, 0x5e, - 0x2f, 0x66, 0x95, 0xd8, 0x63, 0x79, 0x37, 0x46, 0xfc, 0x05, 0xdf, 0x81, 0xf8, 0x90, 0x1c, 0x73, - 0xe4, 0x04, 0x28, 0xf9, 0x11, 0xe4, 0xb5, 0x83, 0x22, 0x21, 0xf9, 0xb4, 0x33, 0xbb, 0x6f, 0xde, - 0x9b, 0x7d, 0xcf, 0xfc, 0xcb, 0x23, 0x8a, 0x49, 0x9e, 0xcf, 0x39, 0x25, 0x92, 0x43, 0x26, 0xb0, - 0x2c, 0x48, 0x26, 0xae, 0x59, 0x81, 0x4b, 0x1f, 0x27, 0x2c, 0x63, 0x82, 0x0b, 0x94, 0x17, 0x20, - 0xc1, 0xfa, 0xc9, 0x23, 0x8a, 0x76, 0xb1, 0x68, 0x8b, 0x45, 0xa5, 0x3f, 0xfc, 0xd7, 0xc2, 0xe4, - 0xbd, 0xd7, 0x35, 0xd5, 0xd0, 0x6d, 0x95, 0x95, 0x30, 0x63, 0x59, 0x83, 0x74, 0x28, 0x88, 0x14, - 0x04, 0x8e, 0x88, 0x60, 0xb8, 0xf4, 0x22, 0x26, 0x89, 0x87, 0x29, 0xf0, 0xed, 0xfb, 0xb7, 0x04, - 0x12, 0x50, 0x25, 0xae, 0xaa, 0xfa, 0xf6, 0xd7, 0x63, 0xc7, 0xfc, 0x72, 0x52, 0x2f, 0x7f, 0x29, - 0x89, 0x64, 0xd6, 0x77, 0xf3, 0x53, 0x0e, 0x85, 0x9c, 0xf2, 0xd8, 0xd6, 0xc7, 0xba, 0xfb, 0x39, - 0x34, 0xaa, 0xf6, 0x34, 0xb6, 0xce, 0x4c, 0x23, 0x66, 0x19, 0xa4, 0xc2, 0xee, 0x8c, 0xbb, 0x6e, - 0xdf, 0xff, 0x8d, 0xda, 0x7e, 0x89, 0x8e, 0x2a, 0x6c, 0x30, 0x58, 0x3e, 0x8f, 0xb4, 0x87, 0x97, - 0x91, 0xa1, 0x5a, 0x11, 0x36, 0x14, 0x56, 0x60, 0x1a, 0x39, 0x29, 0x48, 0x2a, 0xec, 0xee, 0x58, - 0x77, 0xfb, 0xfe, 0x9f, 0x36, 0x32, 0x0f, 0x9d, 0x2b, 0x6c, 0xd0, 0xab, 0xd8, 0xc2, 0x66, 0xd2, - 0x2a, 0xcc, 0x81, 0x04, 0x49, 0xe6, 0x53, 0x26, 0x68, 0x01, 0xb7, 0x2c, 0xb6, 0x7b, 0x6a, 0xb1, - 0x1f, 0xa8, 0x76, 0x02, 0x55, 0x4e, 0xa0, 0xc6, 0x09, 0x74, 0x08, 0x3c, 0x0b, 0xfe, 0x37, 0xeb, - 0xb8, 0x09, 0x97, 0x37, 0x8b, 0x08, 0x51, 0x48, 0x71, 0x63, 0x5b, 0x7d, 0x4c, 0x44, 0x3c, 0xc3, - 0xf2, 0x2e, 0x67, 0x42, 0x0d, 0x88, 0xf0, 0xab, 0x92, 0x38, 0x6e, 0x14, 0x82, 0x8b, 0xe5, 0xda, - 0xd1, 0x57, 0x6b, 0x47, 0x7f, 0x5d, 0x3b, 0xfa, 0xfd, 0xc6, 0xd1, 0x56, 0x1b, 0x47, 0x7b, 0xda, - 0x38, 0xda, 0xd5, 0xfe, 0x47, 0x4a, 0x1e, 0xd1, 0x49, 0x02, 0xb8, 0x3c, 0xc0, 0x29, 0xc4, 0x8b, - 0x39, 0x13, 0x55, 0x90, 0x3b, 0x01, 0x2a, 0x9d, 0xc8, 0x50, 0x41, 0xec, 0xbd, 0x05, 0x00, 0x00, - 0xff, 0xff, 0x98, 0x5a, 0x74, 0x43, 0x61, 0x02, 0x00, 0x00, + 0xab, 0x55, 0x76, 0x6b, 0x73, 0x40, 0x5c, 0x0d, 0x08, 0x21, 0x2e, 0x60, 0x6e, 0x5c, 0xa2, 0xf5, + 0x7a, 0x31, 0xab, 0xc4, 0x1e, 0xcb, 0xbb, 0x31, 0xe2, 0x2f, 0xf8, 0x0e, 0xc4, 0x87, 0xe4, 0x98, + 0x23, 0x27, 0x40, 0xc9, 0x8f, 0x20, 0xaf, 0x1d, 0x14, 0x09, 0xc9, 0xa7, 0x9d, 0xd9, 0x7d, 0xf3, + 0xde, 0xec, 0x7b, 0xe6, 0x5f, 0x1e, 0x51, 0x4c, 0xf2, 0x7c, 0xce, 0x29, 0x91, 0x1c, 0x32, 0x81, + 0x65, 0x41, 0x32, 0x71, 0xcd, 0x0a, 0x5c, 0xfa, 0x38, 0x61, 0x19, 0x13, 0x5c, 0xa0, 0xbc, 0x00, + 0x09, 0xd6, 0x4f, 0x1e, 0x51, 0xb4, 0x8b, 0x45, 0x5b, 0x2c, 0x2a, 0xfd, 0xe1, 0xbf, 0x16, 0x26, + 0xef, 0xbd, 0xae, 0xa9, 0x86, 0x6e, 0xab, 0xac, 0x84, 0x19, 0xcb, 0x1a, 0xa4, 0x43, 0x41, 0xa4, + 0x20, 0x70, 0x44, 0x04, 0xc3, 0xa5, 0x17, 0x31, 0x49, 0x3c, 0x4c, 0x81, 0x6f, 0xdf, 0xbf, 0x25, + 0x90, 0x80, 0x2a, 0x71, 0x55, 0xd5, 0xb7, 0xbf, 0x1e, 0x3b, 0xe6, 0x97, 0x93, 0x7a, 0xf9, 0x4b, + 0x49, 0x24, 0xb3, 0xbe, 0x9b, 0x9f, 0x72, 0x28, 0xe4, 0x94, 0xc7, 0xb6, 0x3e, 0xd6, 0xdd, 0xcf, + 0xa1, 0x51, 0xb5, 0xa7, 0xb1, 0x75, 0x66, 0x1a, 0x31, 0xcb, 0x20, 0x15, 0x76, 0x67, 0xdc, 0x75, + 0xfb, 0xfe, 0x6f, 0xd4, 0xf6, 0x4b, 0x74, 0x54, 0x61, 0x83, 0xc1, 0xf2, 0x79, 0xa4, 0x3d, 0xbc, + 0x8c, 0x0c, 0xd5, 0x8a, 0xb0, 0xa1, 0xb0, 0x02, 0xd3, 0xc8, 0x49, 0x41, 0x52, 0x61, 0x77, 0xc7, + 0xba, 0xdb, 0xf7, 0xff, 0xb4, 0x91, 0x79, 0xe8, 0x5c, 0x61, 0x83, 0x5e, 0xc5, 0x16, 0x36, 0x93, + 0x56, 0x61, 0x0e, 0x24, 0x48, 0x32, 0x9f, 0x32, 0x41, 0x0b, 0xb8, 0x65, 0xb1, 0xdd, 0x53, 0x8b, + 0xfd, 0x40, 0xb5, 0x13, 0xa8, 0x72, 0x02, 0x35, 0x4e, 0xa0, 0x43, 0xe0, 0x59, 0xf0, 0xbf, 0x59, + 0xc7, 0x4d, 0xb8, 0xbc, 0x59, 0x44, 0x88, 0x42, 0x8a, 0x1b, 0xdb, 0xea, 0x63, 0x22, 0xe2, 0x19, + 0x96, 0x77, 0x39, 0x13, 0x6a, 0x40, 0x84, 0x5f, 0x95, 0xc4, 0x71, 0xa3, 0x10, 0x5c, 0x2c, 0xd7, + 0x8e, 0xbe, 0x5a, 0x3b, 0xfa, 0xeb, 0xda, 0xd1, 0xef, 0x37, 0x8e, 0xb6, 0xda, 0x38, 0xda, 0xd3, + 0xc6, 0xd1, 0xae, 0xf6, 0x3f, 0x52, 0xf2, 0x88, 0x4e, 0x12, 0xc0, 0xe5, 0x01, 0x4e, 0x21, 0x5e, + 0xcc, 0x99, 0xa8, 0x82, 0xdc, 0x09, 0x50, 0xe9, 0x44, 0x86, 0x0a, 0x62, 0xef, 0x2d, 0x00, 0x00, + 0xff, 0xff, 0x87, 0x4d, 0x84, 0xc3, 0x61, 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 25ffcf83aaa0..bd9acc7c9ffc 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/v8/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v9/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 e4f72d79f6d2..692e1dfe6100 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/v8/modules/apps/transfer/types" + "github.com/cosmos/ibc-go/v9/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 eb717b6e5ca1..fdf68f198d4d 100644 --- a/modules/apps/transfer/types/msgs.go +++ b/modules/apps/transfer/types/msgs.go @@ -7,9 +7,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" ) const ( diff --git a/modules/apps/transfer/types/msgs_test.go b/modules/apps/transfer/types/msgs_test.go index 199e225156d7..7dd102858fac 100644 --- a/modules/apps/transfer/types/msgs_test.go +++ b/modules/apps/transfer/types/msgs_test.go @@ -11,12 +11,12 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" - "github.com/cosmos/ibc-go/v8/modules/apps/transfer" - "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" - 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" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) // define constants used for testing diff --git a/modules/apps/transfer/types/packet.go b/modules/apps/transfer/types/packet.go index dadb354d28ee..4b3655ae2bd2 100644 --- a/modules/apps/transfer/types/packet.go +++ b/modules/apps/transfer/types/packet.go @@ -10,8 +10,8 @@ import ( errorsmod "cosmossdk.io/errors" sdkmath "cosmossdk.io/math" - ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" - ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" ) var ( diff --git a/modules/apps/transfer/types/packet.pb.go b/modules/apps/transfer/types/packet.pb.go index 2622fc514bd5..2cf81795e7b9 100644 --- a/modules/apps/transfer/types/packet.pb.go +++ b/modules/apps/transfer/types/packet.pb.go @@ -262,7 +262,7 @@ var fileDescriptor_653ca2ce9a5ca313 = []byte{ // 418 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x92, 0x41, 0x8b, 0xd3, 0x40, 0x14, 0xc7, 0x93, 0x34, 0x5b, 0x74, 0xf6, 0xa0, 0x0c, 0x45, 0x63, 0x91, 0xb8, 0xd6, 0x4b, 0x17, - 0x71, 0x86, 0x8d, 0x07, 0x05, 0x4f, 0x2e, 0xb2, 0x78, 0x11, 0x74, 0x11, 0x11, 0x2f, 0x32, 0x99, + 0x71, 0x86, 0x8d, 0x07, 0x11, 0x4f, 0x2e, 0xb2, 0x78, 0x11, 0x74, 0x11, 0x11, 0x2f, 0x32, 0x99, 0xcc, 0x66, 0x87, 0x36, 0xf3, 0xc2, 0xcc, 0x24, 0xe2, 0x45, 0xfc, 0x06, 0xfa, 0xb1, 0x7a, 0xec, 0xd1, 0x93, 0x48, 0xfb, 0x45, 0x24, 0x93, 0xd8, 0xe6, 0x60, 0x73, 0x7b, 0xef, 0x9f, 0xff, 0xfb, 0xf3, 0x9b, 0x97, 0x87, 0x4e, 0x65, 0xca, 0x29, 0x2b, 0xcb, 0xa5, 0xe4, 0xcc, 0x4a, 0x50, 0x86, @@ -285,7 +285,7 @@ var fileDescriptor_653ca2ce9a5ca313 = []byte{ 0x89, 0xfd, 0x9f, 0xdb, 0xd8, 0x5b, 0x6f, 0x63, 0xef, 0xd7, 0x36, 0xf6, 0x3e, 0x3d, 0xcb, 0xa5, 0xbd, 0xae, 0x52, 0xc2, 0xa1, 0xa0, 0x1c, 0x4c, 0x01, 0x86, 0xca, 0x94, 0x3f, 0xc9, 0x81, 0xd6, 0xcf, 0x69, 0x01, 0x59, 0xb5, 0x14, 0xa6, 0xb9, 0xbd, 0xde, 0xcd, 0xd9, 0xaf, 0xa5, 0x30, 0xe9, - 0xd8, 0x9d, 0xdb, 0xd3, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, 0xf8, 0x64, 0x17, 0xb6, 0x26, 0x03, + 0xd8, 0x9d, 0xdb, 0xd3, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, 0xe7, 0x73, 0xe7, 0x36, 0x26, 0x03, 0x00, 0x00, } diff --git a/modules/apps/transfer/types/packet_test.go b/modules/apps/transfer/types/packet_test.go index 8e4c8c46ea90..d2f3e1fa3290 100644 --- a/modules/apps/transfer/types/packet_test.go +++ b/modules/apps/transfer/types/packet_test.go @@ -7,9 +7,9 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" - ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) const ( diff --git a/modules/apps/transfer/types/query.pb.go b/modules/apps/transfer/types/query.pb.go index 73bf71537369..546e6cf6ba67 100644 --- a/modules/apps/transfer/types/query.pb.go +++ b/modules/apps/transfer/types/query.pb.go @@ -417,44 +417,44 @@ var fileDescriptor_a638e2800a01538c = []byte{ // 639 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54, 0x4d, 0x6f, 0xd3, 0x40, 0x10, 0x8d, 0xab, 0x26, 0x28, 0x8b, 0xca, 0x61, 0x1b, 0x3e, 0x6a, 0x05, 0xb7, 0xb2, 0x8a, 0x54, - 0x15, 0xe2, 0x25, 0x6d, 0x21, 0x3d, 0xb4, 0x48, 0xb4, 0x80, 0x28, 0xe2, 0x40, 0x53, 0x4e, 0x70, + 0x15, 0xe2, 0x25, 0x6d, 0x21, 0x20, 0xb5, 0x48, 0xb4, 0x80, 0x28, 0xe2, 0x40, 0x53, 0x4e, 0x70, 0x88, 0xd6, 0xf6, 0xe2, 0x58, 0x8a, 0xbd, 0xae, 0x77, 0x13, 0x54, 0x45, 0xb9, 0xf0, 0x0b, 0x90, 0xfa, 0x3b, 0xf8, 0x1f, 0x3d, 0x56, 0x20, 0x21, 0x4e, 0x08, 0x25, 0xfc, 0x0b, 0x2e, 0xc8, 0xeb, 0x49, 0x49, 0x42, 0x1a, 0x25, 0x3d, 0x25, 0xbb, 0xf3, 0xde, 0x9b, 0x37, 0x9e, 0x67, 0xa3, 0x35, 0xdf, 0x76, 0x08, 0x8d, 0xa2, 0x86, 0xef, 0x50, 0xe9, 0xf3, 0x50, 0x10, 0x19, 0xd3, 0x50, 0x7c, - 0x60, 0x31, 0x69, 0x95, 0xc9, 0x71, 0x93, 0xc5, 0x27, 0x56, 0x14, 0x73, 0xc9, 0x71, 0xd1, 0xb7, + 0x60, 0x31, 0x69, 0x95, 0xc9, 0x51, 0x93, 0xc5, 0xc7, 0x56, 0x14, 0x73, 0xc9, 0x71, 0xd1, 0xb7, 0x1d, 0x6b, 0x10, 0x69, 0xf5, 0x91, 0x56, 0xab, 0xac, 0x17, 0x3c, 0xee, 0x71, 0x05, 0x24, 0xc9, 0xbf, 0x94, 0xa3, 0x1b, 0x0e, 0x17, 0x01, 0x17, 0xc4, 0xa6, 0x82, 0x91, 0x56, 0xd9, 0x66, 0x92, - 0x96, 0x89, 0xc3, 0xfd, 0x10, 0xea, 0xf7, 0x27, 0x76, 0xbf, 0xd0, 0x4f, 0xc1, 0x45, 0x8f, 0x73, - 0xaf, 0xc1, 0x08, 0x8d, 0x7c, 0x42, 0xc3, 0x90, 0x4b, 0xb0, 0xa1, 0xaa, 0x66, 0x01, 0xe1, 0xc3, - 0xc4, 0xed, 0x1b, 0x1a, 0xd3, 0x40, 0x54, 0xd9, 0x71, 0x93, 0x09, 0x69, 0x1e, 0xa1, 0xc5, 0xa1, - 0x5b, 0x11, 0xf1, 0x50, 0x30, 0xbc, 0x83, 0x72, 0x91, 0xba, 0xb9, 0xa3, 0xad, 0x68, 0x6b, 0xd7, - 0x37, 0x56, 0xad, 0x49, 0xc3, 0x59, 0xc0, 0x06, 0x8e, 0x59, 0x42, 0x37, 0x95, 0xe8, 0x33, 0x16, + 0x96, 0x89, 0xc3, 0xfd, 0x10, 0xea, 0x77, 0x27, 0x76, 0x3f, 0xd7, 0x4f, 0xc1, 0x45, 0x8f, 0x73, + 0xaf, 0xc1, 0x08, 0x8d, 0x7c, 0x42, 0xc3, 0x90, 0x4b, 0xb0, 0xa1, 0xaa, 0x66, 0x01, 0xe1, 0x83, + 0xc4, 0xed, 0x1b, 0x1a, 0xd3, 0x40, 0x54, 0xd9, 0x51, 0x93, 0x09, 0x69, 0x1e, 0xa2, 0xc5, 0xa1, + 0x5b, 0x11, 0xf1, 0x50, 0x30, 0xbc, 0x8d, 0x72, 0x91, 0xba, 0xb9, 0xa5, 0xad, 0x68, 0x6b, 0x57, + 0x37, 0x56, 0xad, 0x49, 0xc3, 0x59, 0xc0, 0x06, 0x8e, 0x59, 0x42, 0xd7, 0x95, 0xe8, 0x33, 0x16, 0xf2, 0xe0, 0x25, 0x15, 0x75, 0xe8, 0x86, 0x0b, 0x28, 0x2b, 0x63, 0xea, 0x30, 0xa5, 0x9a, 0xaf, - 0xa6, 0x07, 0xf3, 0x01, 0xba, 0x35, 0x0a, 0x07, 0x1b, 0x18, 0xcd, 0xd7, 0xa9, 0xa8, 0x03, 0x5c, - 0xfd, 0x37, 0x8f, 0xd0, 0x92, 0x42, 0x3f, 0x17, 0x4e, 0xcc, 0x3f, 0x3e, 0x75, 0xdd, 0x98, 0x89, - 0xfe, 0x38, 0xf8, 0x36, 0xba, 0x16, 0xf1, 0x58, 0xd6, 0x7c, 0x17, 0x38, 0xb9, 0xe4, 0x78, 0xe0, - 0xe2, 0xbb, 0x08, 0x39, 0x75, 0x1a, 0x86, 0xac, 0x91, 0xd4, 0xe6, 0x54, 0x2d, 0x0f, 0x37, 0x07, - 0xae, 0xb9, 0x8f, 0xf4, 0x71, 0xa2, 0x60, 0xe3, 0x1e, 0xba, 0xc1, 0x54, 0xa1, 0x46, 0xd3, 0x0a, + 0xa6, 0x07, 0xf3, 0x1e, 0xba, 0x31, 0x0a, 0x07, 0x1b, 0x18, 0xcd, 0xd7, 0xa9, 0xa8, 0x03, 0x5c, + 0xfd, 0x37, 0x0f, 0xd1, 0x92, 0x42, 0x3f, 0x17, 0x4e, 0xcc, 0x3f, 0x3e, 0x75, 0xdd, 0x98, 0x89, + 0xfe, 0x38, 0xf8, 0x26, 0xba, 0x12, 0xf1, 0x58, 0xd6, 0x7c, 0x17, 0x38, 0xb9, 0xe4, 0xb8, 0xef, + 0xe2, 0xdb, 0x08, 0x39, 0x75, 0x1a, 0x86, 0xac, 0x91, 0xd4, 0xe6, 0x54, 0x2d, 0x0f, 0x37, 0xfb, + 0xae, 0xb9, 0x87, 0xf4, 0x71, 0xa2, 0x60, 0xe3, 0x0e, 0xba, 0xc6, 0x54, 0xa1, 0x46, 0xd3, 0x0a, 0x88, 0x2f, 0xb0, 0x41, 0xb8, 0x59, 0x41, 0xcb, 0x4a, 0xe4, 0x2d, 0x97, 0xb4, 0x91, 0x2a, 0xbd, 0xe0, 0xb1, 0x9a, 0x6a, 0xe0, 0x01, 0xb8, 0xc9, 0xb9, 0xff, 0x00, 0xd4, 0xc1, 0x7c, 0x8f, 0x56, - 0x2e, 0x27, 0x82, 0x87, 0x0a, 0xca, 0xd1, 0x80, 0x37, 0x43, 0x09, 0x1b, 0x59, 0xb2, 0xd2, 0xe8, - 0x58, 0x49, 0x74, 0x2c, 0x88, 0x8e, 0xb5, 0xcf, 0xfd, 0x70, 0x6f, 0xfe, 0xec, 0xe7, 0x72, 0xa6, - 0x0a, 0xf0, 0x8d, 0x3f, 0x59, 0x94, 0x55, 0xea, 0xf8, 0x54, 0x43, 0xb9, 0x74, 0x53, 0xf8, 0xe1, + 0x2e, 0x26, 0x82, 0x87, 0x0a, 0xca, 0xd1, 0x80, 0x37, 0x43, 0x09, 0x1b, 0x59, 0xb2, 0xd2, 0xe8, + 0x58, 0x49, 0x74, 0x2c, 0x88, 0x8e, 0xb5, 0xc7, 0xfd, 0x70, 0x77, 0xfe, 0xf4, 0xe7, 0x72, 0xa6, + 0x0a, 0xf0, 0x8d, 0x3f, 0x59, 0x94, 0x55, 0xea, 0xf8, 0x44, 0x43, 0xb9, 0x74, 0x53, 0xf8, 0xfe, 0xe4, 0x7d, 0xfe, 0x1f, 0x14, 0xbd, 0x3c, 0x03, 0x23, 0xb5, 0x6c, 0xae, 0x7e, 0xfa, 0xf6, 0xfb, - 0x74, 0xce, 0xc0, 0x45, 0x02, 0x29, 0x1e, 0x4e, 0x6f, 0x1a, 0x16, 0xfc, 0x45, 0x43, 0xf9, 0x8b, - 0xcd, 0xe3, 0xcd, 0x29, 0xda, 0x8c, 0xc6, 0x4a, 0xdf, 0x9a, 0x8d, 0x04, 0xf6, 0x1e, 0x29, 0x7b, - 0x04, 0x97, 0xc6, 0xdb, 0x53, 0xab, 0xa9, 0x25, 0x91, 0x63, 0x82, 0xb4, 0x55, 0x52, 0x77, 0xd7, - 0xd7, 0x3b, 0xf8, 0xbb, 0x86, 0x16, 0x86, 0x62, 0x82, 0x2b, 0x53, 0xb4, 0x1f, 0x97, 0x56, 0x7d, - 0x7b, 0x76, 0x22, 0x78, 0xaf, 0x2a, 0xef, 0xaf, 0xf1, 0xab, 0xf1, 0xde, 0x21, 0xd8, 0x82, 0xb4, - 0xff, 0x85, 0xbe, 0x43, 0x92, 0x57, 0x41, 0x90, 0x36, 0xbc, 0x20, 0x1d, 0x32, 0x9c, 0x69, 0xfc, - 0x55, 0x43, 0x8b, 0x63, 0x12, 0x88, 0x77, 0xa7, 0x70, 0x79, 0x79, 0xe4, 0xf5, 0x27, 0x57, 0xa5, - 0xc3, 0xa8, 0x3b, 0x6a, 0xd4, 0xc7, 0x78, 0x6b, 0xc2, 0x9a, 0x04, 0x69, 0xab, 0xdf, 0x64, 0x41, - 0x44, 0x26, 0x62, 0xb5, 0x74, 0xb8, 0xbd, 0xc3, 0xb3, 0xae, 0xa1, 0x9d, 0x77, 0x0d, 0xed, 0x57, - 0xd7, 0xd0, 0x3e, 0xf7, 0x8c, 0xcc, 0x79, 0xcf, 0xc8, 0xfc, 0xe8, 0x19, 0x99, 0x77, 0x15, 0xcf, - 0x97, 0xf5, 0xa6, 0x6d, 0x39, 0x3c, 0x20, 0xf0, 0x15, 0xf6, 0x6d, 0xa7, 0xe4, 0x71, 0xd2, 0xda, - 0x26, 0x01, 0x77, 0x9b, 0x0d, 0x26, 0x46, 0xda, 0xc9, 0x93, 0x88, 0x09, 0x3b, 0xa7, 0xbe, 0xa7, - 0x9b, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x02, 0xf3, 0xe2, 0xf1, 0x1a, 0x06, 0x00, 0x00, + 0x64, 0xce, 0xc0, 0x45, 0x02, 0x29, 0x1e, 0x4e, 0x6f, 0x1a, 0x16, 0xfc, 0x45, 0x43, 0xf9, 0xf3, + 0xcd, 0xe3, 0xcd, 0x29, 0xda, 0x8c, 0xc6, 0x4a, 0xdf, 0x9a, 0x8d, 0x04, 0xf6, 0x1e, 0x28, 0x7b, + 0x04, 0x97, 0xc6, 0xdb, 0x53, 0xab, 0xa9, 0x25, 0x91, 0x63, 0x82, 0xb4, 0x55, 0x52, 0x77, 0xd6, + 0xd7, 0x3b, 0xf8, 0xbb, 0x86, 0x16, 0x86, 0x62, 0x82, 0x2b, 0x53, 0xb4, 0x1f, 0x97, 0x56, 0xfd, + 0xd1, 0xec, 0x44, 0xf0, 0x5e, 0x55, 0xde, 0x5f, 0xe3, 0x57, 0xe3, 0xbd, 0x43, 0xb0, 0x05, 0x69, + 0xff, 0x0b, 0x7d, 0x87, 0x24, 0xaf, 0x82, 0x20, 0x6d, 0x78, 0x41, 0x3a, 0x64, 0x38, 0xd3, 0xf8, + 0xab, 0x86, 0x16, 0xc7, 0x24, 0x10, 0xef, 0x4c, 0xe1, 0xf2, 0xe2, 0xc8, 0xeb, 0x4f, 0x2e, 0x4b, + 0x87, 0x51, 0xb7, 0xd5, 0xa8, 0x0f, 0xf1, 0xd6, 0x84, 0x35, 0x09, 0xd2, 0x56, 0xbf, 0xc9, 0x82, + 0x88, 0x4c, 0xc4, 0x6a, 0xe9, 0x70, 0xbb, 0x07, 0xa7, 0x5d, 0x43, 0x3b, 0xeb, 0x1a, 0xda, 0xaf, + 0xae, 0xa1, 0x7d, 0xee, 0x19, 0x99, 0xb3, 0x9e, 0x91, 0xf9, 0xd1, 0x33, 0x32, 0xef, 0x2a, 0x9e, + 0x2f, 0xeb, 0x4d, 0xdb, 0x72, 0x78, 0x40, 0xe0, 0x2b, 0xec, 0xdb, 0x4e, 0xc9, 0xe3, 0xa4, 0xf5, + 0x98, 0x04, 0xdc, 0x6d, 0x36, 0x98, 0x18, 0x69, 0x27, 0x8f, 0x23, 0x26, 0xec, 0x9c, 0xfa, 0x9e, + 0x6e, 0xfe, 0x0d, 0x00, 0x00, 0xff, 0xff, 0x1d, 0xe4, 0x12, 0x71, 0x1a, 0x06, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/modules/apps/transfer/types/queryv2.pb.go b/modules/apps/transfer/types/queryv2.pb.go index 66f03fb387e9..536b49e0c444 100644 --- a/modules/apps/transfer/types/queryv2.pb.go +++ b/modules/apps/transfer/types/queryv2.pb.go @@ -242,33 +242,33 @@ var fileDescriptor_03a5118d32b8ebb9 = []byte{ // 464 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x93, 0xbf, 0x8a, 0x13, 0x41, 0x1c, 0xc7, 0x33, 0xd1, 0x8b, 0x38, 0x82, 0xe0, 0x68, 0x71, 0x84, 0xb0, 0x77, 0xac, 0x72, 0x17, - 0x02, 0xce, 0xef, 0xb2, 0x16, 0x6a, 0x61, 0x73, 0x88, 0x16, 0x16, 0x7a, 0x29, 0x2c, 0xc4, 0x66, - 0x76, 0x6f, 0x9c, 0x0c, 0x26, 0xfb, 0xdb, 0xcb, 0x4c, 0x16, 0x0e, 0xb1, 0xf1, 0x09, 0x84, 0xeb, - 0x7c, 0x04, 0x7d, 0x05, 0x1f, 0xe0, 0xca, 0x80, 0x8d, 0x95, 0x4a, 0xe2, 0x83, 0xc8, 0xce, 0xce, - 0xe2, 0x46, 0x61, 0x8d, 0xdd, 0xb0, 0xfb, 0xfd, 0xf3, 0x99, 0x1f, 0xbf, 0xa1, 0x03, 0x1d, 0x27, - 0x20, 0xb2, 0x6c, 0xa2, 0x13, 0x61, 0x35, 0xa6, 0x06, 0xec, 0x4c, 0xa4, 0xe6, 0x95, 0x9c, 0x41, - 0x1e, 0xc1, 0xc9, 0x5c, 0xce, 0x4e, 0xf3, 0x88, 0x67, 0x33, 0xb4, 0xc8, 0x7a, 0x3a, 0x4e, 0x78, - 0x5d, 0xcb, 0x2b, 0x2d, 0xcf, 0xa3, 0xee, 0x0d, 0x85, 0x0a, 0x9d, 0x10, 0x8a, 0x53, 0xe9, 0xe9, - 0x0e, 0x12, 0x34, 0x53, 0x34, 0x10, 0x0b, 0x23, 0xcb, 0x38, 0xc8, 0x87, 0xb1, 0xb4, 0x62, 0x08, - 0x99, 0x50, 0x3a, 0x75, 0x41, 0x5e, 0xdb, 0x6f, 0x64, 0xb1, 0xf8, 0x5a, 0x56, 0xca, 0x9e, 0x42, - 0x54, 0x13, 0x09, 0x22, 0xd3, 0x20, 0xd2, 0x14, 0xad, 0xe7, 0x71, 0x7f, 0xc3, 0x7d, 0x7a, 0xed, - 0xa8, 0x68, 0x7a, 0x28, 0x53, 0x9c, 0x8e, 0xe4, 0xc9, 0x5c, 0x1a, 0xcb, 0x18, 0xbd, 0x38, 0x16, - 0x66, 0xbc, 0x4d, 0x76, 0x49, 0xff, 0xf2, 0xc8, 0x9d, 0xc3, 0xa7, 0x94, 0xd5, 0x85, 0x26, 0xc3, - 0xd4, 0x48, 0x76, 0x9f, 0x6e, 0x1d, 0x17, 0x1f, 0x9c, 0xf4, 0x4a, 0x74, 0x93, 0x37, 0x5d, 0x9b, - 0x97, 0xde, 0xd2, 0x11, 0xbe, 0xac, 0x07, 0x9a, 0xaa, 0xfa, 0x11, 0xa5, 0xbf, 0xef, 0xea, 0x53, - 0xf7, 0x78, 0x39, 0x18, 0x5e, 0x0c, 0x86, 0xbb, 0xc1, 0x70, 0x3f, 0x18, 0xfe, 0x4c, 0x28, 0xe9, - 0xbd, 0xa3, 0x9a, 0x33, 0xfc, 0x44, 0xe8, 0xf5, 0xb5, 0x78, 0x0f, 0xfc, 0x84, 0x76, 0x5c, 0xbd, - 0xd9, 0x26, 0xbb, 0x17, 0x36, 0x24, 0x3e, 0xbc, 0x7a, 0xfe, 0x6d, 0xa7, 0xf5, 0xf1, 0xfb, 0x4e, - 0xc7, 0x87, 0xf9, 0x08, 0xf6, 0x78, 0x0d, 0xb6, 0xed, 0x60, 0xf7, 0xff, 0x09, 0x5b, 0x92, 0xd4, - 0x69, 0xa3, 0xcf, 0x6d, 0x7a, 0xc9, 0xd1, 0x3e, 0x8f, 0xd8, 0x19, 0xa1, 0xbe, 0x87, 0x1d, 0x34, - 0xc3, 0xfd, 0x3d, 0xbe, 0xee, 0xf0, 0x3f, 0x1c, 0x25, 0x47, 0x78, 0xeb, 0xdd, 0x97, 0x9f, 0x67, - 0xed, 0x80, 0xf5, 0xc0, 0xaf, 0xd4, 0xfa, 0x2a, 0xf9, 0xab, 0x7e, 0x20, 0x74, 0xcb, 0x19, 0x19, - 0x6c, 0x5a, 0x51, 0x31, 0x1d, 0x6c, 0x6e, 0xf0, 0x48, 0xdc, 0x21, 0xf5, 0xd9, 0x5e, 0x13, 0x12, - 0xbc, 0x29, 0xf6, 0xf2, 0xc1, 0x60, 0xf0, 0xf6, 0xf0, 0xe8, 0x7c, 0x19, 0x90, 0xc5, 0x32, 0x20, - 0x3f, 0x96, 0x01, 0x79, 0xbf, 0x0a, 0x5a, 0x8b, 0x55, 0xd0, 0xfa, 0xba, 0x0a, 0x5a, 0x2f, 0xee, - 0x2a, 0x6d, 0xc7, 0xf3, 0x98, 0x27, 0x38, 0x05, 0xff, 0xba, 0x74, 0x9c, 0xdc, 0x56, 0x08, 0xf9, - 0x3d, 0x98, 0xe2, 0xf1, 0x7c, 0x22, 0xcd, 0x1f, 0x05, 0xf6, 0x34, 0x93, 0x26, 0xee, 0xb8, 0xe7, - 0x71, 0xe7, 0x57, 0x00, 0x00, 0x00, 0xff, 0xff, 0x99, 0x73, 0xcf, 0x4d, 0xf4, 0x03, 0x00, 0x00, + 0x02, 0xce, 0xef, 0xb2, 0x16, 0x72, 0x85, 0xcd, 0x21, 0x5a, 0x58, 0xe8, 0xa5, 0xb0, 0x10, 0x9b, + 0xd9, 0xbd, 0x71, 0x32, 0x98, 0xec, 0x6f, 0x2f, 0x33, 0x59, 0x38, 0xc4, 0xc6, 0x27, 0x10, 0xae, + 0xf3, 0x11, 0xf4, 0x15, 0x7c, 0x80, 0x2b, 0x03, 0x36, 0x56, 0x2a, 0x89, 0x0f, 0x22, 0x3b, 0x3b, + 0x8b, 0x1b, 0x85, 0x35, 0x76, 0xc3, 0xee, 0xf7, 0xcf, 0x67, 0x7e, 0xfc, 0x86, 0x0e, 0x74, 0x9c, + 0x80, 0xc8, 0xb2, 0x89, 0x4e, 0x84, 0xd5, 0x98, 0x1a, 0xb0, 0x33, 0x91, 0x9a, 0x57, 0x72, 0x06, + 0x79, 0x04, 0xa7, 0x73, 0x39, 0x3b, 0xcb, 0x23, 0x9e, 0xcd, 0xd0, 0x22, 0xeb, 0xe9, 0x38, 0xe1, + 0x75, 0x2d, 0xaf, 0xb4, 0x3c, 0x8f, 0xba, 0xb7, 0x14, 0x2a, 0x74, 0x42, 0x28, 0x4e, 0xa5, 0xa7, + 0x3b, 0x48, 0xd0, 0x4c, 0xd1, 0x40, 0x2c, 0x8c, 0x2c, 0xe3, 0x20, 0x1f, 0xc6, 0xd2, 0x8a, 0x21, + 0x64, 0x42, 0xe9, 0xd4, 0x05, 0x79, 0x6d, 0xbf, 0x91, 0xc5, 0xe2, 0x6b, 0x59, 0x29, 0x7b, 0x0a, + 0x51, 0x4d, 0x24, 0x88, 0x4c, 0x83, 0x48, 0x53, 0xb4, 0x9e, 0xc7, 0xfd, 0x0d, 0xf7, 0xe9, 0x8d, + 0xe3, 0xa2, 0xe9, 0xa1, 0x4c, 0x71, 0x3a, 0x92, 0xa7, 0x73, 0x69, 0x2c, 0x63, 0xf4, 0xf2, 0x58, + 0x98, 0xf1, 0x36, 0xd9, 0x25, 0xfd, 0xab, 0x23, 0x77, 0x0e, 0x9f, 0x52, 0x56, 0x17, 0x9a, 0x0c, + 0x53, 0x23, 0xd9, 0x21, 0xdd, 0x3a, 0x29, 0x3e, 0x38, 0xe9, 0xb5, 0xe8, 0x36, 0x6f, 0xba, 0x36, + 0x2f, 0xbd, 0xa5, 0x23, 0x7c, 0x59, 0x0f, 0x34, 0x55, 0xf5, 0x23, 0x4a, 0x7f, 0xdf, 0xd5, 0xa7, + 0xee, 0xf1, 0x72, 0x30, 0xbc, 0x18, 0x0c, 0x77, 0x83, 0xe1, 0x7e, 0x30, 0xfc, 0x99, 0x50, 0xd2, + 0x7b, 0x47, 0x35, 0x67, 0xf8, 0x89, 0xd0, 0x9b, 0x6b, 0xf1, 0x1e, 0xf8, 0x09, 0xed, 0xb8, 0x7a, + 0xb3, 0x4d, 0x76, 0x2f, 0x6d, 0x48, 0x7c, 0x74, 0xfd, 0xe2, 0xdb, 0x4e, 0xeb, 0xe3, 0xf7, 0x9d, + 0x8e, 0x0f, 0xf3, 0x11, 0xec, 0xf1, 0x1a, 0x6c, 0xdb, 0xc1, 0xee, 0xff, 0x13, 0xb6, 0x24, 0xa9, + 0xd3, 0x46, 0x9f, 0xdb, 0xf4, 0x8a, 0xa3, 0x7d, 0x1e, 0xb1, 0x73, 0x42, 0x7d, 0x0f, 0x3b, 0x68, + 0x86, 0xfb, 0x7b, 0x7c, 0xdd, 0xe1, 0x7f, 0x38, 0x4a, 0x8e, 0xf0, 0xce, 0xbb, 0x2f, 0x3f, 0xcf, + 0xdb, 0x01, 0xeb, 0x81, 0x5f, 0xa9, 0xf5, 0x55, 0xf2, 0x57, 0xfd, 0x40, 0xe8, 0x96, 0x33, 0x32, + 0xd8, 0xb4, 0xa2, 0x62, 0x3a, 0xd8, 0xdc, 0xe0, 0x91, 0xb8, 0x43, 0xea, 0xb3, 0xbd, 0x26, 0x24, + 0x78, 0x53, 0xec, 0xe5, 0x83, 0xc1, 0xe0, 0xed, 0xd1, 0xf1, 0xc5, 0x32, 0x20, 0x8b, 0x65, 0x40, + 0x7e, 0x2c, 0x03, 0xf2, 0x7e, 0x15, 0xb4, 0x16, 0xab, 0xa0, 0xf5, 0x75, 0x15, 0xb4, 0x5e, 0xdc, + 0x57, 0xda, 0x8e, 0xe7, 0x31, 0x4f, 0x70, 0x0a, 0xfe, 0x75, 0xe9, 0x38, 0xb9, 0xab, 0x10, 0xf2, + 0x43, 0x98, 0xe2, 0xc9, 0x7c, 0x22, 0xcd, 0x1f, 0x05, 0xf6, 0x2c, 0x93, 0x26, 0xee, 0xb8, 0xe7, + 0x71, 0xef, 0x57, 0x00, 0x00, 0x00, 0xff, 0xff, 0x86, 0x64, 0x3f, 0xcd, 0xf4, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/modules/apps/transfer/types/token.pb.go b/modules/apps/transfer/types/token.pb.go index 12cdaf22660c..55c1224e9501 100644 --- a/modules/apps/transfer/types/token.pb.go +++ b/modules/apps/transfer/types/token.pb.go @@ -143,25 +143,25 @@ func init() { } var fileDescriptor_732b93aa1330663e = []byte{ - // 285 bytes of a gzipped FileDescriptorProto + // 286 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x90, 0x41, 0x4b, 0xc3, 0x30, 0x18, 0x86, 0x1b, 0xb7, 0x0e, 0x96, 0xdd, 0x82, 0xc8, 0x18, 0x12, 0xe7, 0xbc, 0x14, 0xc4, 0x84, - 0xd5, 0x83, 0x5e, 0x44, 0x18, 0x1e, 0xbc, 0x3a, 0x3c, 0xed, 0x64, 0x92, 0xc5, 0x1a, 0x5c, 0xfb, - 0x95, 0x26, 0x1b, 0xf8, 0x2f, 0xfc, 0x59, 0x3b, 0xee, 0xe8, 0x49, 0xa4, 0xfd, 0x23, 0xd2, 0xd4, - 0xc9, 0x4e, 0xbd, 0xbd, 0x09, 0xcf, 0xf7, 0x3e, 0xf0, 0xe2, 0xc8, 0x48, 0xc5, 0x45, 0x9e, 0xaf, - 0x8c, 0x12, 0xce, 0x40, 0x66, 0xb9, 0x2b, 0x44, 0x66, 0x5f, 0x75, 0xc1, 0x37, 0x31, 0x77, 0xf0, - 0xae, 0x33, 0x96, 0x17, 0xe0, 0x80, 0x9c, 0x1a, 0xa9, 0xd8, 0x21, 0xc9, 0xf6, 0x24, 0xdb, 0xc4, - 0xa3, 0xcb, 0x96, 0x9e, 0xe9, 0x7f, 0x6e, 0xaa, 0x46, 0xc7, 0x09, 0x24, 0xe0, 0x23, 0xaf, 0x53, - 0xf3, 0x3b, 0x79, 0xc1, 0xe1, 0x73, 0xed, 0x23, 0xf7, 0x38, 0x5c, 0xea, 0x0c, 0xd2, 0x21, 0x1a, - 0xa3, 0x68, 0x10, 0x5f, 0xb0, 0x36, 0x33, 0x7b, 0xa8, 0xd1, 0x59, 0x77, 0xfb, 0x7d, 0x16, 0xcc, - 0x9b, 0x3b, 0x72, 0x82, 0x7b, 0x22, 0x85, 0x75, 0xe6, 0x86, 0x47, 0x63, 0x14, 0xf5, 0xe7, 0x7f, - 0xaf, 0xc9, 0x02, 0x87, 0x9e, 0x26, 0x04, 0x77, 0xa5, 0xb0, 0xda, 0x0b, 0xfa, 0x73, 0x9f, 0xc9, - 0x1d, 0x0e, 0x5d, 0x21, 0x94, 0x1e, 0x76, 0xc6, 0x9d, 0x68, 0x10, 0x9f, 0xb7, 0x59, 0xa7, 0xec, - 0x11, 0xf2, 0xbd, 0xd3, 0x5f, 0xcd, 0x9e, 0xb6, 0x25, 0x45, 0xbb, 0x92, 0xa2, 0x9f, 0x92, 0xa2, - 0xcf, 0x8a, 0x06, 0xbb, 0x8a, 0x06, 0x5f, 0x15, 0x0d, 0x16, 0x37, 0x89, 0x71, 0x6f, 0x6b, 0xc9, - 0x14, 0xa4, 0x5c, 0x81, 0x4d, 0xc1, 0x72, 0x23, 0xd5, 0x55, 0x02, 0x7c, 0x73, 0xcb, 0x53, 0x58, - 0xae, 0x57, 0xda, 0xd6, 0xd3, 0x1d, 0x4c, 0xe6, 0x3e, 0x72, 0x6d, 0x65, 0xcf, 0xef, 0x72, 0xfd, - 0x1b, 0x00, 0x00, 0xff, 0xff, 0xc6, 0x46, 0xaa, 0xef, 0xa4, 0x01, 0x00, 0x00, + 0xd5, 0x83, 0x78, 0x10, 0x61, 0x78, 0xf0, 0xea, 0xf0, 0xb4, 0x93, 0x49, 0x16, 0x6b, 0x70, 0xed, + 0x57, 0x9a, 0x6c, 0xe0, 0xbf, 0xf0, 0x67, 0xed, 0xb8, 0xa3, 0x27, 0x91, 0xf6, 0x8f, 0x48, 0x53, + 0x27, 0x3b, 0xf5, 0xf6, 0x26, 0x3c, 0xdf, 0xfb, 0xc0, 0x8b, 0x23, 0x23, 0x15, 0x17, 0x79, 0xbe, + 0x32, 0x4a, 0x38, 0x03, 0x99, 0xe5, 0xae, 0x10, 0x99, 0x7d, 0xd5, 0x05, 0xdf, 0xc4, 0xdc, 0xc1, + 0xbb, 0xce, 0x58, 0x5e, 0x80, 0x03, 0x72, 0x6a, 0xa4, 0x62, 0x87, 0x24, 0xdb, 0x93, 0x6c, 0x13, + 0x8f, 0x2e, 0x5b, 0x7a, 0xa6, 0xff, 0xb9, 0xa9, 0x1a, 0x1d, 0x27, 0x90, 0x80, 0x8f, 0xbc, 0x4e, + 0xcd, 0xef, 0xe4, 0x05, 0x87, 0xcf, 0xb5, 0x8f, 0xdc, 0xe3, 0x70, 0xa9, 0x33, 0x48, 0x87, 0x68, + 0x8c, 0xa2, 0x41, 0x7c, 0xc1, 0xda, 0xcc, 0xec, 0xa1, 0x46, 0x67, 0xdd, 0xed, 0xf7, 0x59, 0x30, + 0x6f, 0xee, 0xc8, 0x09, 0xee, 0x89, 0x14, 0xd6, 0x99, 0x1b, 0x1e, 0x8d, 0x51, 0xd4, 0x9f, 0xff, + 0xbd, 0x26, 0x0b, 0x1c, 0x7a, 0x9a, 0x10, 0xdc, 0x95, 0xc2, 0x6a, 0x2f, 0xe8, 0xcf, 0x7d, 0x26, + 0x77, 0x38, 0x74, 0x85, 0x50, 0x7a, 0xd8, 0x19, 0x77, 0xa2, 0x41, 0x7c, 0xde, 0x66, 0x9d, 0xb2, + 0x47, 0xc8, 0xf7, 0x4e, 0x7f, 0x35, 0x7b, 0xda, 0x96, 0x14, 0xed, 0x4a, 0x8a, 0x7e, 0x4a, 0x8a, + 0x3e, 0x2b, 0x1a, 0xec, 0x2a, 0x1a, 0x7c, 0x55, 0x34, 0x58, 0xdc, 0x24, 0xc6, 0xbd, 0xad, 0x25, + 0x53, 0x90, 0x72, 0x05, 0x36, 0x05, 0xcb, 0x8d, 0x54, 0x57, 0x09, 0xf0, 0xcd, 0x2d, 0x4f, 0x61, + 0xb9, 0x5e, 0x69, 0x5b, 0x4f, 0x77, 0x30, 0x99, 0xfb, 0xc8, 0xb5, 0x95, 0x3d, 0xbf, 0xcb, 0xf5, + 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xd9, 0x51, 0x5a, 0x6f, 0xa4, 0x01, 0x00, 0x00, } func (m *Token) Marshal() (dAtA []byte, err error) { diff --git a/modules/apps/transfer/types/transfer.pb.go b/modules/apps/transfer/types/transfer.pb.go index f4b982d6c093..8e65d7879307 100644 --- a/modules/apps/transfer/types/transfer.pb.go +++ b/modules/apps/transfer/types/transfer.pb.go @@ -207,7 +207,7 @@ var fileDescriptor_5041673e96e97901 = []byte{ // 332 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x91, 0xcf, 0x4a, 0xc3, 0x40, 0x10, 0x87, 0x93, 0xb6, 0x44, 0xbb, 0x15, 0x85, 0x45, 0xb4, 0x88, 0xa6, 0x7f, 0x2e, 0x16, 0xc4, - 0x2c, 0xd5, 0x83, 0xa2, 0xb7, 0x8a, 0xd2, 0xde, 0xb4, 0x78, 0xf2, 0x52, 0x36, 0x9b, 0x35, 0x5d, + 0x2c, 0xd5, 0x83, 0xa8, 0xb7, 0x8a, 0xd2, 0xde, 0xb4, 0x78, 0xf2, 0x52, 0x36, 0x9b, 0x35, 0x5d, 0x48, 0x76, 0x96, 0xdd, 0x34, 0xc5, 0xb7, 0xf0, 0xe8, 0xd1, 0xc7, 0xe9, 0xb1, 0x47, 0x4f, 0x22, 0xed, 0x8b, 0x48, 0xd2, 0x58, 0x7a, 0xf2, 0x36, 0xf3, 0xcd, 0x37, 0xc3, 0xb2, 0x3f, 0x74, 0x26, 0x7c, 0x46, 0xa8, 0x52, 0x91, 0x60, 0x34, 0x11, 0x20, 0x0d, 0x49, 0x34, 0x95, 0xe6, 0x95, 0x6b, @@ -225,7 +225,7 @@ var fileDescriptor_5041673e96e97901 = []byte{ 0xcd, 0x97, 0xae, 0xf5, 0xb5, 0x74, 0xad, 0x97, 0xab, 0x50, 0x24, 0xe3, 0x89, 0xef, 0x31, 0x88, 0x09, 0x03, 0x13, 0x83, 0x21, 0xc2, 0x67, 0xe7, 0x21, 0x90, 0xf4, 0x9a, 0xc4, 0x10, 0x4c, 0x22, 0x6e, 0xb2, 0x60, 0x36, 0x02, 0x49, 0xde, 0x14, 0x37, 0xbe, 0x93, 0xff, 0xeb, 0xe5, 0x6f, 0x00, - 0x00, 0x00, 0xff, 0xff, 0x47, 0xd5, 0x1b, 0x06, 0xba, 0x01, 0x00, 0x00, + 0x00, 0x00, 0xff, 0xff, 0x58, 0xc2, 0xeb, 0x86, 0xba, 0x01, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/modules/apps/transfer/types/transfer_authorization.go b/modules/apps/transfer/types/transfer_authorization.go index 0735ef860d36..b103500d7af8 100644 --- a/modules/apps/transfer/types/transfer_authorization.go +++ b/modules/apps/transfer/types/transfer_authorization.go @@ -14,9 +14,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/x/authz" - 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" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" ) 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 23be80ea98b7..678c42247f39 100644 --- a/modules/apps/transfer/types/transfer_authorization_test.go +++ b/modules/apps/transfer/types/transfer_authorization_test.go @@ -8,10 +8,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/x/authz" - "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" - ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v8/testing" - "github.com/cosmos/ibc-go/v8/testing/mock" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v9/testing/mock" ) const ( diff --git a/modules/apps/transfer/types/tx.pb.go b/modules/apps/transfer/types/tx.pb.go index 66acd8c1238d..f4dd672e72f4 100644 --- a/modules/apps/transfer/types/tx.pb.go +++ b/modules/apps/transfer/types/tx.pb.go @@ -12,7 +12,7 @@ import ( _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" - types1 "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + types1 "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" @@ -228,7 +228,7 @@ var fileDescriptor_7401ed9bed2f8e09 = []byte{ // 659 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x54, 0x4f, 0x6f, 0xd3, 0x30, 0x14, 0x6f, 0x58, 0x57, 0x36, 0x97, 0x6d, 0xcc, 0xa0, 0x2d, 0x8b, 0x50, 0x5a, 0x55, 0x4c, 0x2a, - 0x9d, 0x66, 0xab, 0x43, 0x68, 0x68, 0xe2, 0xd4, 0x49, 0x68, 0x07, 0x26, 0x8d, 0x68, 0x5c, 0xb8, + 0x9d, 0x66, 0xab, 0x43, 0x68, 0x62, 0xe2, 0xd4, 0x49, 0x68, 0x07, 0x26, 0x8d, 0x68, 0x5c, 0xb8, 0x4c, 0x49, 0xea, 0xa5, 0xd6, 0x1a, 0x3b, 0xd8, 0x6e, 0x81, 0x0b, 0x42, 0x48, 0x48, 0x88, 0x13, 0x1f, 0x81, 0x23, 0xc7, 0x7d, 0x8c, 0x1d, 0x77, 0xe4, 0x84, 0xd0, 0x76, 0xd8, 0x85, 0x0f, 0x81, 0xec, 0x38, 0x25, 0x70, 0x28, 0x70, 0x49, 0xfc, 0xde, 0xfb, 0xbd, 0x3f, 0xbf, 0x9f, 0x9f, 0x0c, @@ -266,7 +266,7 @@ var fileDescriptor_7401ed9bed2f8e09 = []byte{ 0x85, 0xef, 0x7c, 0xba, 0xf4, 0x2b, 0xe7, 0x97, 0x7e, 0xe5, 0xeb, 0xa5, 0x5f, 0x79, 0xbe, 0x9d, 0x50, 0x35, 0x18, 0x45, 0x28, 0xe6, 0x29, 0xb6, 0xaf, 0x0b, 0x8d, 0xe2, 0xcd, 0x84, 0xe3, 0xf1, 0x43, 0x9c, 0xf2, 0xfe, 0x68, 0x48, 0xa4, 0x7e, 0x31, 0x4a, 0x2f, 0x85, 0x7a, 0x9d, 0x11, 0x19, - 0xd5, 0xcc, 0x23, 0x71, 0xff, 0x67, 0x00, 0x00, 0x00, 0xff, 0xff, 0xa4, 0x2c, 0x89, 0xb7, 0x1b, + 0xd5, 0xcc, 0x23, 0x71, 0xff, 0x67, 0x00, 0x00, 0x00, 0xff, 0xff, 0xbb, 0x3b, 0x79, 0x37, 0x1b, 0x05, 0x00, 0x00, } diff --git a/modules/apps/transfer/types/types_test.go b/modules/apps/transfer/types/types_test.go index 38fd2431bf3d..831d97ee9822 100644 --- a/modules/apps/transfer/types/types_test.go +++ b/modules/apps/transfer/types/types_test.go @@ -5,7 +5,7 @@ import ( testifysuite "github.com/stretchr/testify/suite" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) type TypesTestSuite struct { diff --git a/modules/core/02-client/abci.go b/modules/core/02-client/abci.go index c7ebd8bcfd72..1b582a36e930 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/v8/modules/core/02-client/keeper" - "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" - ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/keeper" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" ) // 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 b5a78320ad16..fbd1970e7f3e 100644 --- a/modules/core/02-client/abci_test.go +++ b/modules/core/02-client/abci_test.go @@ -12,10 +12,10 @@ import ( cmtproto "github.com/cometbft/cometbft/proto/tendermint/types" - client "github.com/cosmos/ibc-go/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" + client "github.com/cosmos/ibc-go/v9/modules/core/02-client" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) type ClientTestSuite struct { diff --git a/modules/core/02-client/client/cli/cli.go b/modules/core/02-client/client/cli/cli.go index 05c79735f44f..2490668f122d 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/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/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 da009523ba4e..082fc2004bf7 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/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" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/client/utils" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" ) const ( diff --git a/modules/core/02-client/client/cli/tx.go b/modules/core/02-client/client/cli/tx.go index 92e6a5ec5e70..223343dbfd94 100644 --- a/modules/core/02-client/client/cli/tx.go +++ b/modules/core/02-client/client/cli/tx.go @@ -19,8 +19,8 @@ import ( govcli "github.com/cosmos/cosmos-sdk/x/gov/client/cli" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) const FlagAuthority = "authority" diff --git a/modules/core/02-client/client/utils/utils.go b/modules/core/02-client/client/utils/utils.go index 84037192760e..f7e88037b69c 100644 --- a/modules/core/02-client/client/utils/utils.go +++ b/modules/core/02-client/client/utils/utils.go @@ -10,12 +10,12 @@ import ( cmttypes "github.com/cometbft/cometbft/types" - "github.com/cosmos/ibc-go/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" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcclient "github.com/cosmos/ibc-go/v9/modules/core/client" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" ) // 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 1e72b3635547..8737a40a9101 100644 --- a/modules/core/02-client/genesis.go +++ b/modules/core/02-client/genesis.go @@ -6,9 +6,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/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" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/keeper" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // 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 07adefa2e532..d5e11586a16c 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/v8/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // CreateClient generates a new client identifier and invokes the associated light client module in order to diff --git a/modules/core/02-client/keeper/client_test.go b/modules/core/02-client/keeper/client_test.go index 275567c195f0..771167442e55 100644 --- a/modules/core/02-client/keeper/client_test.go +++ b/modules/core/02-client/keeper/client_test.go @@ -9,12 +9,12 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" - 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" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func (suite *KeeperTestSuite) TestCreateClient() { diff --git a/modules/core/02-client/keeper/events.go b/modules/core/02-client/keeper/events.go index f030b6cf52c2..6727ede5b7a8 100644 --- a/modules/core/02-client/keeper/events.go +++ b/modules/core/02-client/keeper/events.go @@ -10,8 +10,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // emitCreateClientEvent emits a create client event diff --git a/modules/core/02-client/keeper/events_test.go b/modules/core/02-client/keeper/events_test.go index a07cd9c3dc0b..47032029c711 100644 --- a/modules/core/02-client/keeper/events_test.go +++ b/modules/core/02-client/keeper/events_test.go @@ -3,10 +3,10 @@ package keeper_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/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" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func (suite *KeeperTestSuite) TestMsgCreateClientEvents() { diff --git a/modules/core/02-client/keeper/grpc_query.go b/modules/core/02-client/keeper/grpc_query.go index cd95a83588de..ebe018c71f1e 100644 --- a/modules/core/02-client/keeper/grpc_query.go +++ b/modules/core/02-client/keeper/grpc_query.go @@ -17,9 +17,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - "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" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) 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 c231423fcb7a..426f1822f992 100644 --- a/modules/core/02-client/keeper/grpc_query_test.go +++ b/modules/core/02-client/keeper/grpc_query_test.go @@ -12,13 +12,13 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" "github.com/cosmos/cosmos-sdk/types/query" - "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" - "github.com/cosmos/ibc-go/v8/testing/mock" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v9/testing/mock" ) func (suite *KeeperTestSuite) TestQueryClientState() { diff --git a/modules/core/02-client/keeper/keeper.go b/modules/core/02-client/keeper/keeper.go index cb3097dbb89f..b3d4e6c32836 100644 --- a/modules/core/02-client/keeper/keeper.go +++ b/modules/core/02-client/keeper/keeper.go @@ -14,11 +14,11 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - "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" - localhost "github.com/cosmos/ibc-go/v8/modules/light-clients/09-localhost" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + localhost "github.com/cosmos/ibc-go/v9/modules/light-clients/09-localhost" ) // 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 3d8eb4c3a905..7e4005bda45b 100644 --- a/modules/core/02-client/keeper/keeper_test.go +++ b/modules/core/02-client/keeper/keeper_test.go @@ -20,14 +20,14 @@ import ( cmtbytes "github.com/cometbft/cometbft/libs/bytes" cmttypes "github.com/cometbft/cometbft/types" - "github.com/cosmos/ibc-go/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" - 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" - "github.com/cosmos/ibc-go/v8/testing/simapp" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/keeper" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v9/testing/simapp" ) const ( diff --git a/modules/core/02-client/keeper/migrations.go b/modules/core/02-client/keeper/migrations.go index 3dd32bbbf461..ba45e543622b 100644 --- a/modules/core/02-client/keeper/migrations.go +++ b/modules/core/02-client/keeper/migrations.go @@ -3,10 +3,10 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/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" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/migrations/v7" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // 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 7b9370307bf2..59116215dc58 100644 --- a/modules/core/02-client/keeper/migrations_test.go +++ b/modules/core/02-client/keeper/migrations_test.go @@ -1,10 +1,10 @@ package keeper_test import ( - "github.com/cosmos/ibc-go/v8/modules/core/02-client/keeper" - "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" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/keeper" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // TestMigrateParams tests the migration for the client params diff --git a/modules/core/02-client/migrations/v7/expected_keepers.go b/modules/core/02-client/migrations/v7/expected_keepers.go index 0485b1205586..d25f9f880f69 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/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v9/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 230ccad4c61b..5abd3a5e0caf 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/v8/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/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 acb409ad04a4..f97f5aa4ed7e 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/v8/modules/core/02-client" - "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" + ibcclient "github.com/cosmos/ibc-go/v9/modules/core/02-client" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/migrations/v7" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func (suite *MigrationsV7TestSuite) TestMigrateGenesisSolomachine() { diff --git a/modules/core/02-client/migrations/v7/solomachine.go b/modules/core/02-client/migrations/v7/solomachine.go index 418ea1f1c8a5..c350fc53d779 100644 --- a/modules/core/02-client/migrations/v7/solomachine.go +++ b/modules/core/02-client/migrations/v7/solomachine.go @@ -10,7 +10,7 @@ import ( cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // NOTE: this is a mock implementation for exported.ClientState. This implementation diff --git a/modules/core/02-client/migrations/v7/solomachine.pb.go b/modules/core/02-client/migrations/v7/solomachine.pb.go index ae3eedd4ae8c..4a1018e6bb24 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/v8/modules/core/03-connection/types" - types2 "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + types1 "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + types2 "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" io "io" math "math" math_bits "math/bits" @@ -824,84 +824,84 @@ func init() { var fileDescriptor_141333b361aae010 = []byte{ // 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, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x56, 0xd1, 0x72, 0xdb, 0x44, + 0x17, 0x8e, 0x5c, 0x37, 0xb5, 0x8f, 0xd3, 0xc4, 0xa3, 0x3f, 0x3f, 0x38, 0x6a, 0xc7, 0x15, 0x61, + 0x4a, 0x03, 0x43, 0x25, 0x92, 0x42, 0x0b, 0x9d, 0x29, 0xa0, 0xca, 0x2a, 0x35, 0x4d, 0x14, 0x23, + 0x2b, 0xa5, 0xed, 0x8d, 0x46, 0x96, 0x36, 0x8e, 0xa6, 0xb6, 0xd6, 0x95, 0xd6, 0x4e, 0xcd, 0x13, + 0x74, 0x0c, 0x17, 0xbc, 0x80, 0x67, 0x98, 0xe1, 0x05, 0x78, 0x0c, 0x18, 0x6e, 0x7a, 0xc9, 0x25, + 0xd3, 0x0e, 0x8f, 0xc1, 0x0c, 0xa3, 0xdd, 0xb5, 0x25, 0x3b, 0x8d, 0x73, 0xd1, 0xbb, 0xdd, 0x73, + 0xbe, 0xf3, 0x7d, 0xe7, 0x9c, 0xd5, 0xd9, 0x15, 0x6c, 0x07, 0x2d, 0x4f, 0xed, 0x04, 0xed, 0x23, + 0xe2, 0x75, 0x02, 0x14, 0x92, 0x58, 0x8d, 0x71, 0x07, 0x77, 0x5d, 0xef, 0x28, 0x08, 0x91, 0x3a, + 0xd8, 0xc9, 0x6e, 0x95, 0x5e, 0x84, 0x09, 0x16, 0xaf, 0x04, 0x2d, 0x4f, 0xc9, 0x86, 0x28, 0x59, + 0xcc, 0x60, 0x47, 0xba, 0x96, 0x70, 0x7a, 0x38, 0x42, 0xaa, 0x87, 0xc3, 0x10, 0x79, 0x24, 0xc0, + 0xa1, 0x3a, 0xd8, 0xce, 0xec, 0x18, 0x93, 0xf4, 0x5e, 0x0a, 0x3c, 0x72, 0xc3, 0x10, 0x75, 0x28, + 0x8a, 0x2d, 0x39, 0x64, 0xbd, 0x8d, 0xdb, 0x98, 0x2e, 0xd5, 0x64, 0xc5, 0xad, 0x1b, 0x6d, 0x8c, + 0xdb, 0x1d, 0xa4, 0xd2, 0x5d, 0xab, 0x7f, 0xa8, 0xba, 0xe1, 0x90, 0xb9, 0x36, 0xff, 0x11, 0xa0, + 0xa4, 0xd3, 0xbc, 0x9a, 0xc4, 0x25, 0x48, 0x94, 0xa0, 0x10, 0xa3, 0x67, 0x7d, 0x14, 0x7a, 0xa8, + 0x22, 0xc8, 0xc2, 0x56, 0xde, 0x9a, 0xee, 0xc5, 0x4b, 0x50, 0x0c, 0x62, 0xe7, 0x30, 0xc2, 0x3f, + 0xa0, 0xb0, 0x92, 0x93, 0x85, 0xad, 0x82, 0x55, 0x08, 0xe2, 0x7b, 0x74, 0x2f, 0x3e, 0x82, 0x35, + 0x0f, 0x87, 0x31, 0x0a, 0xe3, 0x7e, 0xec, 0xc4, 0x09, 0x57, 0xe5, 0x9c, 0x2c, 0x6c, 0x95, 0x76, + 0x54, 0xe5, 0x8c, 0x06, 0x28, 0xfa, 0x24, 0x8e, 0xa6, 0x60, 0xad, 0x7a, 0x33, 0x7b, 0xf1, 0x0e, + 0x5c, 0x72, 0x3b, 0x1d, 0x7c, 0xec, 0xf4, 0x7b, 0xbe, 0x4b, 0x90, 0xe3, 0x1e, 0x12, 0x14, 0x39, + 0xbd, 0x08, 0xf7, 0x70, 0xec, 0x76, 0x2a, 0x79, 0x9a, 0x48, 0x85, 0x42, 0x0e, 0x28, 0x42, 0x4b, + 0x00, 0x0d, 0xee, 0xbf, 0x9d, 0x7f, 0xf1, 0xcb, 0x95, 0xa5, 0xcd, 0x1f, 0x05, 0x58, 0x9d, 0xd5, + 0x11, 0x6f, 0x00, 0xf4, 0xfa, 0xad, 0x4e, 0xe0, 0x39, 0x4f, 0xd1, 0x90, 0x16, 0x5b, 0xda, 0x59, + 0x57, 0x58, 0xab, 0x94, 0x49, 0xab, 0x14, 0x2d, 0x1c, 0x5a, 0x45, 0x86, 0x7b, 0x80, 0x86, 0xa2, + 0x0c, 0x25, 0x3f, 0x18, 0xa0, 0x28, 0x0e, 0x0e, 0x03, 0x14, 0xd1, 0x2e, 0x14, 0xad, 0xac, 0x49, + 0xbc, 0x0c, 0x45, 0x12, 0x74, 0x51, 0x4c, 0xdc, 0x6e, 0x8f, 0xb6, 0x20, 0x6f, 0xa5, 0x06, 0x9e, + 0xcd, 0x9f, 0x02, 0x2c, 0xdf, 0x47, 0xae, 0x8f, 0xa2, 0x85, 0x0d, 0x9f, 0xa1, 0xca, 0xcd, 0x51, + 0x25, 0xde, 0x38, 0x68, 0x87, 0x2e, 0xe9, 0x47, 0xac, 0xd7, 0x2b, 0x56, 0x6a, 0x10, 0x6f, 0xc3, + 0x6a, 0x88, 0x8e, 0x9d, 0x4c, 0x85, 0xf9, 0x05, 0x15, 0xae, 0x84, 0xe8, 0xb8, 0x31, 0x2d, 0xf2, + 0x1a, 0xac, 0x25, 0xb1, 0xd9, 0x42, 0xcf, 0xd3, 0x42, 0x13, 0xca, 0x5a, 0x6a, 0xe5, 0xd5, 0xfc, + 0x2b, 0xc0, 0xca, 0x5e, 0x10, 0xb7, 0xd0, 0x91, 0x3b, 0x08, 0x70, 0x3f, 0x4a, 0x3e, 0x14, 0x76, + 0xd4, 0x4e, 0xe0, 0xd3, 0xa2, 0x8a, 0x56, 0x81, 0x19, 0xea, 0xfe, 0x4c, 0xc1, 0xb9, 0xb9, 0x82, + 0x1f, 0xc2, 0xc5, 0x69, 0x05, 0x0e, 0x0e, 0x27, 0x9f, 0xd0, 0xf6, 0x99, 0x9f, 0x50, 0x73, 0x12, + 0xa5, 0x85, 0x7e, 0xcd, 0x25, 0xae, 0xb5, 0x32, 0xe5, 0xd9, 0x0f, 0xe7, 0x78, 0xc9, 0x31, 0xe6, + 0xbd, 0x78, 0x2b, 0x5e, 0xfb, 0x18, 0xf3, 0xfa, 0x7f, 0x13, 0xa0, 0x3c, 0x0f, 0x9c, 0x3d, 0x1d, + 0x61, 0xfe, 0x74, 0xee, 0x41, 0xd1, 0x77, 0x89, 0xeb, 0x90, 0x61, 0x8f, 0x75, 0x61, 0x75, 0xe7, + 0xc3, 0x33, 0x93, 0x49, 0x78, 0xed, 0x61, 0x0f, 0x59, 0x05, 0x9f, 0xaf, 0x44, 0x11, 0xf2, 0xc9, + 0x9a, 0x1f, 0x3f, 0x5d, 0xcf, 0x7e, 0x35, 0xf9, 0x37, 0x7f, 0x80, 0x08, 0x2a, 0xf6, 0xc4, 0x84, + 0xfc, 0x69, 0xf2, 0x34, 0xf3, 0xab, 0xb0, 0x9a, 0x36, 0x8b, 0xb2, 0xb3, 0xf4, 0xd3, 0x16, 0xd6, + 0x4e, 0xc8, 0xe4, 0xde, 0x2c, 0xf3, 0x87, 0x00, 0xc5, 0x84, 0xfc, 0xee, 0x90, 0xa0, 0xf8, 0x2d, + 0x3e, 0xf5, 0xb9, 0xa9, 0x3b, 0x77, 0x72, 0xea, 0x66, 0x1a, 0x9a, 0x7f, 0xfb, 0x86, 0x9e, 0x4f, + 0x1b, 0xca, 0x6b, 0x79, 0x06, 0xc0, 0x46, 0x96, 0x56, 0xff, 0x29, 0x94, 0xf8, 0x78, 0x9d, 0x7d, + 0x7b, 0xb0, 0xd9, 0x3a, 0x65, 0xb0, 0x72, 0x0b, 0x06, 0xcb, 0x87, 0xb5, 0xcc, 0xdd, 0x4c, 0x75, + 0x45, 0xc8, 0xf7, 0x5c, 0x72, 0xc4, 0x8f, 0x84, 0xae, 0xc5, 0x5b, 0xb0, 0xc2, 0xc7, 0x8d, 0xdd, + 0xbb, 0xb9, 0x05, 0xc9, 0x94, 0xbc, 0x94, 0x90, 0xab, 0x74, 0x41, 0x9c, 0xbd, 0x19, 0x4f, 0x15, + 0xba, 0x73, 0xf2, 0x8e, 0x5f, 0xa4, 0x35, 0x77, 0x91, 0x73, 0xb9, 0x01, 0xfc, 0x4f, 0x9f, 0xbe, + 0x6c, 0x8b, 0xf5, 0x0c, 0x80, 0xf4, 0x11, 0xe4, 0x52, 0x57, 0xe9, 0xa9, 0x26, 0xaf, 0xa0, 0x92, + 0x79, 0x20, 0x07, 0xdb, 0x4a, 0x4a, 0x6a, 0x84, 0xbe, 0x95, 0x09, 0x9c, 0x36, 0xb3, 0xac, 0xb3, + 0xb7, 0x72, 0xb1, 0xe8, 0x4d, 0xb8, 0xc0, 0xdf, 0x54, 0xae, 0x78, 0x39, 0xa3, 0xc8, 0x1f, 0xdb, + 0x44, 0x8e, 0x2d, 0xad, 0x09, 0x98, 0xab, 0x7c, 0x0b, 0xeb, 0x0d, 0xd7, 0x7b, 0x8a, 0x88, 0x8e, + 0xbb, 0xdd, 0x80, 0x74, 0x51, 0x48, 0x4e, 0x55, 0xaa, 0x26, 0xe5, 0x4d, 0x50, 0x54, 0x6c, 0xc5, + 0xca, 0x58, 0x36, 0x1f, 0xc3, 0x06, 0xe3, 0xd2, 0xbc, 0xa7, 0x21, 0x3e, 0xee, 0x20, 0xbf, 0x8d, + 0x16, 0x12, 0x6e, 0xc1, 0x9a, 0x3b, 0x0b, 0xe5, 0xac, 0xf3, 0xe6, 0x4d, 0x05, 0x2a, 0x8c, 0xda, + 0x42, 0x1e, 0x0a, 0x7a, 0x44, 0x6b, 0xc5, 0xc9, 0x18, 0x9e, 0xc6, 0xbc, 0x69, 0xc2, 0xba, 0x89, + 0x9e, 0x93, 0x26, 0x1f, 0x57, 0x0b, 0x79, 0x83, 0x53, 0xb3, 0xd8, 0x84, 0x8b, 0x21, 0x7a, 0x4e, + 0x9c, 0x18, 0x3d, 0x73, 0x22, 0xe4, 0x0d, 0xf8, 0x38, 0x97, 0x42, 0x46, 0x90, 0xc4, 0x7e, 0xf4, + 0x53, 0x1e, 0x0a, 0x93, 0xe9, 0x13, 0x3f, 0x87, 0xf7, 0x6b, 0x9a, 0xad, 0x39, 0xf6, 0xe3, 0x86, + 0xe1, 0x1c, 0x98, 0x75, 0xb3, 0x6e, 0xd7, 0xb5, 0xdd, 0xfa, 0x13, 0xa3, 0xe6, 0x1c, 0x98, 0xcd, + 0x86, 0xa1, 0xd7, 0xef, 0xd5, 0x8d, 0x5a, 0x79, 0x49, 0x5a, 0x1b, 0x8d, 0xe5, 0x52, 0xc6, 0x24, + 0x7e, 0x00, 0xef, 0xa4, 0x91, 0xfa, 0x6e, 0xdd, 0x30, 0x6d, 0xa7, 0x69, 0x6b, 0xb6, 0x51, 0x16, + 0x24, 0x18, 0x8d, 0xe5, 0x65, 0x66, 0x13, 0x3f, 0x86, 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, + 0x2d, 0x78, 0x37, 0x83, 0xbf, 0xaf, 0x99, 0xa6, 0xb1, 0xcb, 0xc1, 0x79, 0xa9, 0x34, 0x1a, 0xcb, + 0x17, 0xb8, 0x51, 0xfc, 0x0c, 0x2e, 0xa5, 0xc8, 0x86, 0xa6, 0x3f, 0x30, 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, + 0x2e, 0x7e, 0x05, 0xf2, 0x89, 0x30, 0x4d, 0x7f, 0x60, 0xee, 0x7f, 0xbf, 0x6b, 0xd4, 0xbe, 0x31, + 0x68, 0xec, 0xb2, 0xb4, 0x31, 0x1a, 0xcb, 0xff, 0x67, 0xde, 0x39, 0xa7, 0xf8, 0xe5, 0x1b, 0x08, + 0x2c, 0x43, 0x37, 0xea, 0x0d, 0xdb, 0xd1, 0xee, 0x36, 0x0d, 0x53, 0x37, 0xca, 0x17, 0xa4, 0xca, + 0x68, 0x2c, 0xaf, 0x33, 0x2f, 0x77, 0x72, 0x9f, 0x78, 0x13, 0x2e, 0xa7, 0xf1, 0xa6, 0xf1, 0xc8, + 0x76, 0x9a, 0xc6, 0x77, 0x07, 0x89, 0x2b, 0xa1, 0x79, 0x58, 0x2e, 0xb0, 0xc4, 0x13, 0xcf, 0xc4, + 0x91, 0xd8, 0x45, 0x19, 0xca, 0x69, 0xdc, 0x7d, 0x43, 0xab, 0x19, 0x56, 0xb9, 0xc8, 0x4e, 0x86, + 0xed, 0xa4, 0xfc, 0x8b, 0x5f, 0xab, 0x4b, 0x77, 0x9f, 0xfc, 0xfe, 0xaa, 0x2a, 0xbc, 0x7c, 0x55, + 0x15, 0xfe, 0x7e, 0x55, 0x15, 0x7e, 0x7e, 0x5d, 0x5d, 0x7a, 0xf9, 0xba, 0xba, 0xf4, 0xd7, 0xeb, + 0xea, 0xd2, 0x93, 0xaf, 0xdb, 0x01, 0x39, 0xea, 0xb7, 0x14, 0x0f, 0x77, 0x55, 0x0f, 0xc7, 0x5d, + 0x1c, 0xab, 0x41, 0xcb, 0xbb, 0xde, 0xc6, 0xea, 0xe0, 0x0b, 0xb5, 0x8b, 0xfd, 0x7e, 0x07, 0xc5, + 0xec, 0x9f, 0xf8, 0x93, 0x9d, 0xeb, 0xec, 0x6e, 0x53, 0xbb, 0x41, 0x3b, 0x72, 0x93, 0xc9, 0x8f, + 0xd5, 0xc1, 0xad, 0xd6, 0x32, 0xbd, 0x93, 0x6e, 0xfc, 0x17, 0x00, 0x00, 0xff, 0xff, 0x6e, 0xc0, + 0xb6, 0x7c, 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 dc68d14b3366..384bdb1c883a 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/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" ) // 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 3f4f43b62e9b..620da77107c9 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" - "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" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/migrations/v7" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) // 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 1d0039156b3c..3a92bfa49cce 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/v8/modules/core/02-client/client/cli" - "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/client/cli" + "github.com/cosmos/ibc-go/v9/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 279f9a0be41a..54d6d915a7a8 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/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" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/keeper" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" ) // NewClientProposalHandler defines the 02-client legacy proposal handler. diff --git a/modules/core/02-client/proposal_handler_test.go b/modules/core/02-client/proposal_handler_test.go index 108b886add62..b1a266544c9b 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/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" + client "github.com/cosmos/ibc-go/v9/modules/core/02-client" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func (suite *ClientTestSuite) TestNewClientUpdateProposalHandler() { diff --git a/modules/core/02-client/simulation/decoder.go b/modules/core/02-client/simulation/decoder.go index 58b062527b9f..af6cd9b4bc52 100644 --- a/modules/core/02-client/simulation/decoder.go +++ b/modules/core/02-client/simulation/decoder.go @@ -7,8 +7,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" ) // NewDecodeStore returns a decoder function closure that unmarshals the KVPair's diff --git a/modules/core/02-client/simulation/decoder_test.go b/modules/core/02-client/simulation/decoder_test.go index c727eaceb67e..ca4931d1eb9f 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/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" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/simulation" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + "github.com/cosmos/ibc-go/v9/testing/simapp" ) func TestDecodeStore(t *testing.T) { diff --git a/modules/core/02-client/simulation/genesis.go b/modules/core/02-client/simulation/genesis.go index 00acae17a03d..818a592bc7ad 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/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/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 b38dc3370ea2..993f43d570ad 100644 --- a/modules/core/02-client/types/client.go +++ b/modules/core/02-client/types/client.go @@ -13,8 +13,8 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" - host "github.com/cosmos/ibc-go/v8/modules/core/24-host" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/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 0405c0e792ab..9c8d6305dedb 100644 --- a/modules/core/02-client/types/client.pb.go +++ b/modules/core/02-client/types/client.pb.go @@ -408,50 +408,50 @@ func init() { func init() { proto.RegisterFile("ibc/core/client/v1/client.proto", fileDescriptor_b6bc4c8185546947) } var fileDescriptor_b6bc4c8185546947 = []byte{ - // 677 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x54, 0x4d, 0x6b, 0x13, 0x41, - 0x18, 0xce, 0xa6, 0x31, 0x34, 0x13, 0x69, 0x74, 0x4d, 0x61, 0x4d, 0x4b, 0x36, 0x2c, 0x05, 0x73, - 0x68, 0x77, 0x4d, 0x04, 0x2d, 0x01, 0x0f, 0xa6, 0x97, 0xf6, 0x22, 0x75, 0xa5, 0x08, 0x82, 0x84, - 0xfd, 0x98, 0x6e, 0xa6, 0xec, 0xce, 0x2c, 0x3b, 0xb3, 0x91, 0xfc, 0x03, 0x8f, 0x8a, 0x17, 0xc1, - 0x4b, 0x7f, 0x84, 0x3f, 0xa2, 0x78, 0xea, 0xd1, 0x53, 0x90, 0xf6, 0xe2, 0xb9, 0xbf, 0x40, 0x76, - 0x3e, 0x6c, 0x63, 0x5a, 0x15, 0xbc, 0xcd, 0xfb, 0xcc, 0x33, 0xef, 0xfb, 0xcc, 0x33, 0xf3, 0xbe, - 0xc0, 0x44, 0x7e, 0xe0, 0x04, 0x24, 0x83, 0x4e, 0x10, 0x23, 0x88, 0x99, 0x33, 0xe9, 0xc9, 0x95, - 0x9d, 0x66, 0x84, 0x11, 0x5d, 0x47, 0x7e, 0x60, 0x17, 0x04, 0x5b, 0xc2, 0x93, 0x5e, 0x6b, 0x23, - 0x20, 0x34, 0x21, 0xd4, 0xc9, 0xd3, 0x28, 0xf3, 0x42, 0xe8, 0x4c, 0x7a, 0x3e, 0x64, 0x5e, 0x4f, - 0xc5, 0xe2, 0x64, 0xeb, 0xbe, 0x60, 0x8d, 0x78, 0xe4, 0x88, 0x40, 0x6e, 0x35, 0x23, 0x12, 0x11, - 0x81, 0x17, 0x2b, 0x75, 0x20, 0x22, 0x24, 0x8a, 0xa1, 0xc3, 0x23, 0x3f, 0x3f, 0x74, 0x3c, 0x3c, - 0x15, 0x5b, 0x56, 0x02, 0x56, 0xf7, 0x42, 0x88, 0x19, 0x3a, 0x44, 0x30, 0xdc, 0xe1, 0x42, 0x5e, - 0x32, 0x8f, 0x41, 0x7d, 0x0d, 0xd4, 0x84, 0xae, 0x11, 0x0a, 0x0d, 0xad, 0xa3, 0x75, 0x6b, 0xee, - 0xb2, 0x00, 0xf6, 0x42, 0xfd, 0x09, 0xb8, 0x2d, 0x37, 0x69, 0x41, 0x36, 0xca, 0x1d, 0xad, 0x5b, - 0xef, 0x37, 0x6d, 0x51, 0xc7, 0x56, 0x75, 0xec, 0x67, 0x78, 0xea, 0xd6, 0x83, 0xcb, 0xac, 0xd6, - 0x47, 0x0d, 0x18, 0x3b, 0x04, 0x53, 0x88, 0x69, 0x4e, 0x39, 0xf4, 0x0a, 0xb1, 0xf1, 0x2e, 0x44, - 0xd1, 0x98, 0xe9, 0xdb, 0xa0, 0x3a, 0xe6, 0x2b, 0x5e, 0xaf, 0xde, 0x6f, 0xd9, 0x8b, 0x16, 0xd9, - 0x82, 0x3b, 0xac, 0x9c, 0xcc, 0xcc, 0x92, 0x2b, 0xf9, 0xfa, 0x53, 0xd0, 0x08, 0x54, 0xd6, 0x7f, - 0x90, 0xb4, 0x12, 0xcc, 0x49, 0x28, 0x54, 0xad, 0x8a, 0xbb, 0xcf, 0x6b, 0xa3, 0x7f, 0x76, 0xe1, - 0x0d, 0xb8, 0xf3, 0x5b, 0x55, 0x6a, 0x94, 0x3b, 0x4b, 0xdd, 0x7a, 0x7f, 0xf3, 0x3a, 0xe5, 0x37, - 0xdd, 0x5b, 0xde, 0xa5, 0x31, 0x2f, 0x8a, 0x5a, 0x21, 0xa8, 0x4a, 0x63, 0x1e, 0x80, 0x46, 0x06, - 0x27, 0x88, 0x22, 0x82, 0x47, 0x38, 0x4f, 0x7c, 0x98, 0x71, 0x2d, 0x15, 0x77, 0x45, 0xc1, 0xcf, - 0x39, 0x3a, 0x47, 0x94, 0x56, 0x96, 0xe7, 0x89, 0x22, 0xe3, 0x60, 0xf9, 0xdd, 0xb1, 0x59, 0xfa, - 0x74, 0x6c, 0x96, 0xac, 0x1e, 0xa8, 0xee, 0x7b, 0x99, 0x97, 0xd0, 0xe2, 0xb0, 0x17, 0xc7, 0xe4, - 0x2d, 0x0c, 0x47, 0x42, 0x34, 0x35, 0xb4, 0xce, 0x52, 0xb7, 0xe6, 0xae, 0x48, 0x58, 0x58, 0x44, - 0xad, 0x0f, 0x65, 0xd0, 0x14, 0xeb, 0x83, 0x34, 0xf4, 0x18, 0xdc, 0xcf, 0x48, 0x4a, 0xa8, 0x17, - 0xeb, 0x4d, 0x70, 0x8b, 0x21, 0x16, 0x43, 0xe9, 0x94, 0x08, 0xf4, 0x0e, 0xa8, 0x87, 0x90, 0x06, - 0x19, 0x4a, 0x19, 0x22, 0x98, 0x0b, 0xaa, 0xb9, 0x57, 0x21, 0x7d, 0x17, 0xdc, 0xa5, 0xb9, 0x7f, - 0x04, 0x03, 0x36, 0xba, 0x74, 0x7b, 0xa9, 0xe0, 0x0d, 0xd7, 0x2f, 0x66, 0xa6, 0x31, 0xf5, 0x92, - 0x78, 0x60, 0x2d, 0x50, 0x2c, 0xb7, 0x21, 0xb1, 0x1d, 0xf5, 0x24, 0x2f, 0x40, 0x93, 0xe6, 0x3e, - 0x65, 0x88, 0xe5, 0x0c, 0x5e, 0x49, 0x56, 0xe1, 0xc9, 0xcc, 0x8b, 0x99, 0xb9, 0xf6, 0x2b, 0xd9, - 0x02, 0xcb, 0x72, 0xf5, 0x4b, 0x58, 0xa5, 0x1c, 0x6c, 0x14, 0x56, 0x7d, 0xfd, 0xb2, 0xd5, 0x92, - 0x8d, 0x16, 0x91, 0x89, 0x2d, 0xfb, 0xb2, 0x78, 0x52, 0x06, 0x31, 0x33, 0x34, 0xeb, 0x73, 0x19, - 0x34, 0x0e, 0x44, 0x97, 0xfe, 0xb7, 0x1d, 0x8f, 0x41, 0x25, 0x8d, 0x3d, 0xcc, 0x1d, 0xa8, 0xf7, - 0xd7, 0x6d, 0x59, 0x58, 0x0d, 0x01, 0x55, 0x7c, 0x3f, 0xf6, 0xb0, 0xfc, 0x3b, 0x9c, 0xaf, 0x1f, - 0x81, 0x55, 0xc9, 0x51, 0x2f, 0x28, 0x7b, 0xa1, 0x72, 0x73, 0x2f, 0x0c, 0x3b, 0x17, 0x33, 0x73, - 0x5d, 0x78, 0x72, 0xed, 0x61, 0xcb, 0xbd, 0xa7, 0xf0, 0x2b, 0xe3, 0x61, 0xb0, 0xa9, 0x3e, 0xd0, - 0x8f, 0x63, 0x53, 0xfb, 0x9b, 0x3b, 0x43, 0xf7, 0xe4, 0xac, 0xad, 0x9d, 0x9e, 0xb5, 0xb5, 0xef, - 0x67, 0x6d, 0xed, 0xfd, 0x79, 0xbb, 0x74, 0x7a, 0xde, 0x2e, 0x7d, 0x3b, 0x6f, 0x97, 0x5e, 0x6f, - 0x47, 0x88, 0x8d, 0x73, 0xdf, 0x0e, 0x48, 0x22, 0x27, 0x99, 0x83, 0xfc, 0x60, 0x2b, 0x22, 0xce, - 0x64, 0xdb, 0x49, 0x48, 0x98, 0xc7, 0x90, 0x8a, 0x31, 0xfa, 0xb0, 0xbf, 0x25, 0x27, 0x29, 0x9b, - 0xa6, 0x90, 0xfa, 0x55, 0x7e, 0x8d, 0x47, 0x3f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x1a, 0x80, 0x51, - 0x2a, 0x69, 0x05, 0x00, 0x00, + // 679 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x54, 0x4f, 0x6b, 0x13, 0x4f, + 0x18, 0xce, 0xa6, 0xf9, 0x85, 0x66, 0xf2, 0xa3, 0xd1, 0x35, 0x85, 0x35, 0x2d, 0xd9, 0xb0, 0x14, + 0xcc, 0xa1, 0xdd, 0x35, 0x11, 0xb4, 0x06, 0x3c, 0x98, 0x5e, 0xda, 0x8b, 0xd4, 0x95, 0x22, 0x08, + 0x12, 0xf6, 0xcf, 0x74, 0x33, 0x65, 0x77, 0x66, 0xd9, 0x99, 0x8d, 0xe4, 0x1b, 0x78, 0x54, 0xbc, + 0x08, 0x5e, 0xfa, 0x21, 0xfc, 0x10, 0xc5, 0x53, 0x8f, 0x9e, 0x82, 0xb4, 0x17, 0xcf, 0xfd, 0x04, + 0xb2, 0xf3, 0xc7, 0x36, 0xa6, 0x55, 0xc1, 0xdb, 0xbc, 0xcf, 0x3c, 0xf3, 0xbe, 0xcf, 0x3c, 0x33, + 0xef, 0x0b, 0x4c, 0xe4, 0x07, 0x4e, 0x40, 0x32, 0xe8, 0x04, 0x31, 0x82, 0x98, 0x39, 0x93, 0x9e, + 0x5c, 0xd9, 0x69, 0x46, 0x18, 0xd1, 0x75, 0xe4, 0x07, 0x76, 0x41, 0xb0, 0x25, 0x3c, 0xe9, 0xb5, + 0x36, 0x02, 0x42, 0x13, 0x42, 0x9d, 0x3c, 0x8d, 0x32, 0x2f, 0x84, 0xce, 0xa4, 0xe7, 0x43, 0xe6, + 0xf5, 0x54, 0x2c, 0x4e, 0xb6, 0xee, 0x0a, 0xd6, 0x88, 0x47, 0x8e, 0x08, 0xe4, 0x56, 0x33, 0x22, + 0x11, 0x11, 0x78, 0xb1, 0x52, 0x07, 0x22, 0x42, 0xa2, 0x18, 0x3a, 0x3c, 0xf2, 0xf3, 0x43, 0xc7, + 0xc3, 0x53, 0xb1, 0x65, 0x25, 0x60, 0x75, 0x2f, 0x84, 0x98, 0xa1, 0x43, 0x04, 0xc3, 0x1d, 0x2e, + 0xe4, 0x05, 0xf3, 0x18, 0xd4, 0xd7, 0x40, 0x4d, 0xe8, 0x1a, 0xa1, 0xd0, 0xd0, 0x3a, 0x5a, 0xb7, + 0xe6, 0x2e, 0x0b, 0x60, 0x2f, 0xd4, 0x1f, 0x81, 0xff, 0xe5, 0x26, 0x2d, 0xc8, 0x46, 0xb9, 0xa3, + 0x75, 0xeb, 0xfd, 0xa6, 0x2d, 0xea, 0xd8, 0xaa, 0x8e, 0xfd, 0x14, 0x4f, 0xdd, 0x7a, 0x70, 0x99, + 0xd5, 0xfa, 0xa0, 0x01, 0x63, 0x87, 0x60, 0x0a, 0x31, 0xcd, 0x29, 0x87, 0x5e, 0x22, 0x36, 0xde, + 0x85, 0x28, 0x1a, 0x33, 0x7d, 0x1b, 0x54, 0xc7, 0x7c, 0xc5, 0xeb, 0xd5, 0xfb, 0x2d, 0x7b, 0xd1, + 0x22, 0x5b, 0x70, 0x87, 0x95, 0x93, 0x99, 0x59, 0x72, 0x25, 0x5f, 0x7f, 0x02, 0x1a, 0x81, 0xca, + 0xfa, 0x17, 0x92, 0x56, 0x82, 0x39, 0x09, 0x85, 0xaa, 0x55, 0x71, 0xf7, 0x79, 0x6d, 0xf4, 0xf7, + 0x2e, 0xbc, 0x06, 0xb7, 0x7e, 0xa9, 0x4a, 0x8d, 0x72, 0x67, 0xa9, 0x5b, 0xef, 0x6f, 0x5e, 0xa7, + 0xfc, 0xa6, 0x7b, 0xcb, 0xbb, 0x34, 0xe6, 0x45, 0x51, 0x2b, 0x04, 0x55, 0x69, 0xcc, 0x3d, 0xd0, + 0xc8, 0xe0, 0x04, 0x51, 0x44, 0xf0, 0x08, 0xe7, 0x89, 0x0f, 0x33, 0xae, 0xa5, 0xe2, 0xae, 0x28, + 0xf8, 0x19, 0x47, 0xe7, 0x88, 0xd2, 0xca, 0xf2, 0x3c, 0x51, 0x64, 0x1c, 0x2c, 0xbf, 0x3d, 0x36, + 0x4b, 0x1f, 0x8f, 0xcd, 0x92, 0xd5, 0x03, 0xd5, 0x7d, 0x2f, 0xf3, 0x12, 0x5a, 0x1c, 0xf6, 0xe2, + 0x98, 0xbc, 0x81, 0xe1, 0x48, 0x88, 0xa6, 0x86, 0xd6, 0x59, 0xea, 0xd6, 0xdc, 0x15, 0x09, 0x0b, + 0x8b, 0xa8, 0xf5, 0xbe, 0x0c, 0x9a, 0x62, 0x7d, 0x90, 0x86, 0x1e, 0x83, 0xfb, 0x19, 0x49, 0x09, + 0xf5, 0x62, 0xbd, 0x09, 0xfe, 0x63, 0x88, 0xc5, 0x50, 0x3a, 0x25, 0x02, 0xbd, 0x03, 0xea, 0x21, + 0xa4, 0x41, 0x86, 0x52, 0x86, 0x08, 0xe6, 0x82, 0x6a, 0xee, 0x55, 0x48, 0xdf, 0x05, 0xb7, 0x69, + 0xee, 0x1f, 0xc1, 0x80, 0x8d, 0x2e, 0xdd, 0x5e, 0x2a, 0x78, 0xc3, 0xf5, 0x8b, 0x99, 0x69, 0x4c, + 0xbd, 0x24, 0x1e, 0x58, 0x0b, 0x14, 0xcb, 0x6d, 0x48, 0x6c, 0x47, 0x3d, 0xc9, 0x73, 0xd0, 0xa4, + 0xb9, 0x4f, 0x19, 0x62, 0x39, 0x83, 0x57, 0x92, 0x55, 0x78, 0x32, 0xf3, 0x62, 0x66, 0xae, 0xfd, + 0x4c, 0xb6, 0xc0, 0xb2, 0x5c, 0xfd, 0x12, 0x56, 0x29, 0x07, 0x1b, 0x85, 0x55, 0x5f, 0x3e, 0x6f, + 0xb5, 0x64, 0xa3, 0x45, 0x64, 0x62, 0xcb, 0xbe, 0x2c, 0x9e, 0x94, 0x41, 0xcc, 0x0c, 0xcd, 0xfa, + 0x54, 0x06, 0x8d, 0x03, 0xd1, 0xa5, 0xff, 0x6c, 0xc7, 0x43, 0x50, 0x49, 0x63, 0x0f, 0x73, 0x07, + 0xea, 0xfd, 0x75, 0x5b, 0x16, 0x56, 0x43, 0x40, 0x15, 0xdf, 0x8f, 0x3d, 0x2c, 0xff, 0x0e, 0xe7, + 0xeb, 0x47, 0x60, 0x55, 0x72, 0xd4, 0x0b, 0xca, 0x5e, 0xa8, 0xdc, 0xdc, 0x0b, 0xc3, 0xce, 0xc5, + 0xcc, 0x5c, 0x17, 0x9e, 0x5c, 0x7b, 0xd8, 0x72, 0xef, 0x28, 0xfc, 0xca, 0x78, 0x18, 0x6c, 0xaa, + 0x0f, 0xf4, 0xfd, 0xd8, 0xd4, 0xfe, 0xe4, 0xce, 0xd0, 0x3d, 0x39, 0x6b, 0x6b, 0xa7, 0x67, 0x6d, + 0xed, 0xdb, 0x59, 0x5b, 0x7b, 0x77, 0xde, 0x2e, 0x9d, 0x9e, 0xb7, 0x4b, 0x5f, 0xcf, 0xdb, 0xa5, + 0x57, 0xdb, 0x11, 0x62, 0xe3, 0xdc, 0xb7, 0x03, 0x92, 0xc8, 0x49, 0xe6, 0x20, 0x3f, 0xd8, 0x8a, + 0x88, 0x33, 0x79, 0xec, 0x24, 0x24, 0xcc, 0x63, 0x48, 0xc5, 0x18, 0xbd, 0xdf, 0xdf, 0x92, 0x93, + 0x94, 0x4d, 0x53, 0x48, 0xfd, 0x2a, 0xbf, 0xc6, 0x83, 0x1f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xf8, + 0x7d, 0xd9, 0xa7, 0x69, 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 19514ea7f36f..43b5b1c7f58d 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/v8/modules/core/02-client/types" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func (suite *TypesTestSuite) TestMarshalConsensusStateWithHeight() { diff --git a/modules/core/02-client/types/codec.go b/modules/core/02-client/types/codec.go index e70c0682300a..2083fbcb8470 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" govtypesv1beta1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" - ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + "github.com/cosmos/ibc-go/v9/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 914f525eec98..e301689e4222 100644 --- a/modules/core/02-client/types/codec_test.go +++ b/modules/core/02-client/types/codec_test.go @@ -4,11 +4,11 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" - "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" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) type caseAny struct { diff --git a/modules/core/02-client/types/encoding.go b/modules/core/02-client/types/encoding.go index def2ef2a8f23..471227c123a1 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/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v9/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 9c52764cf32d..59316f9d8500 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/v8/modules/core/02-client/types" - ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + ibctm "github.com/cosmos/ibc-go/v9/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 bfc659483861..ca3659b761a9 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/v8/modules/core/exported" + ibcexported "github.com/cosmos/ibc-go/v9/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 44fd613a6f88..24d0b939d39b 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/v8/modules/core/24-host" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/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 53d6386600f0..b2610e5d682a 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, 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, + 0x10, 0xbb, 0x0d, 0x4b, 0x61, 0x41, 0x4a, 0x07, 0x54, 0x09, 0x24, 0x64, 0x36, 0x06, 0x2c, 0xfb, + 0xfc, 0xe1, 0x5a, 0xd8, 0xbe, 0x90, 0x3b, 0x5b, 0xf4, 0x1f, 0x30, 0x30, 0xf0, 0x13, 0x98, 0xf9, + 0x25, 0x1d, 0x3b, 0x32, 0x01, 0x4a, 0x24, 0x7e, 0x07, 0xf2, 0xdd, 0x99, 0x4a, 0xc1, 0xe9, 0xf6, + 0xe5, 0xbd, 0xf7, 0xbd, 0x97, 0x7b, 0xd6, 0x87, 0xed, 0x34, 0xa2, 0x1e, 0x65, 0x2b, 0xf0, 0x68, + 0x96, 0x42, 0x21, 0xbc, 0xea, 0xc4, 0x4b, 0xa0, 0x00, 0x9e, 0x72, 0x77, 0xb9, 0x62, 0x82, 0x11, + 0x92, 0x46, 0xd4, 0xad, 0x15, 0xae, 0x52, 0xb8, 0xd5, 0xc9, 0x78, 0xd2, 0xb2, 0xa5, 0x59, 0xb9, + 0x34, 0x1e, 0x25, 0x2c, 0x61, 0x72, 0xf4, 0xea, 0x49, 0xa1, 0xd3, 0x3f, 0x5d, 0x7c, 0xf4, 0x42, + 0x99, 0xbf, 0x11, 0xa1, 0x00, 0x42, 0xf1, 0x1d, 0xb5, 0xc6, 0x4d, 0x64, 0x77, 0x9d, 0xc3, 0xf9, + 0x63, 0xf7, 0xff, 0x34, 0xf7, 0x3c, 0x86, 0x42, 0xa4, 0xef, 0x53, 0x88, 0xcf, 0x24, 0x26, 0x77, + 0x17, 0xd6, 0xd5, 0xcf, 0x89, 0xf1, 0xfd, 0xd7, 0xe4, 0x7e, 0x2b, 0xcd, 0xfd, 0xc6, 0x99, 0x54, + 0xf8, 0x9e, 0x1e, 0x03, 0xca, 0x0a, 0x0e, 0x05, 0x2f, 0xb9, 0xd9, 0xd9, 0x1d, 0xa7, 0x5c, 0xce, + 0x1a, 0xa9, 0xb2, 0xbb, 0x89, 0x53, 0x34, 0xdf, 0xe2, 0xfd, 0x21, 0xdd, 0xc2, 0xc9, 0x3b, 0xdc, + 0x60, 0x41, 0x0e, 0x22, 0x8c, 0x43, 0x11, 0x9a, 0x5d, 0x19, 0x3b, 0xbb, 0xfd, 0x95, 0xba, 0xa2, + 0x57, 0x7a, 0x69, 0xd1, 0xab, 0xa3, 0xfd, 0x81, 0x36, 0x6b, 0x60, 0x72, 0x8a, 0xfb, 0xcb, 0x70, + 0x15, 0xe6, 0xdc, 0xec, 0xd9, 0xc8, 0x39, 0x9c, 0x8f, 0xdb, 0x5c, 0x5f, 0x4b, 0x85, 0xb6, 0xd0, + 0x7a, 0x32, 0xc3, 0x43, 0xba, 0x82, 0x50, 0x40, 0x90, 0x31, 0x1a, 0x66, 0x17, 0x8c, 0x0b, 0x73, + 0xcf, 0x46, 0xce, 0xfe, 0xa2, 0x63, 0x22, 0x7f, 0xa0, 0xb8, 0x97, 0x0d, 0x45, 0x8e, 0xf1, 0xa8, + 0x80, 0x4f, 0x22, 0x50, 0xae, 0x01, 0x87, 0x8f, 0x25, 0x14, 0x14, 0xcc, 0xbe, 0x8d, 0x9c, 0x9e, + 0x4f, 0x6a, 0x4e, 0x37, 0xaf, 0x99, 0xe9, 0x73, 0x3c, 0xd8, 0x7a, 0x04, 0x19, 0xe2, 0xee, 0x07, + 0xb8, 0x34, 0x91, 0x8d, 0x9c, 0x23, 0xbf, 0x1e, 0xc9, 0x08, 0xef, 0x55, 0x61, 0x56, 0x82, 0xd9, + 0x91, 0x98, 0xfa, 0xf1, 0xac, 0xf7, 0xf9, 0xdb, 0xc4, 0x98, 0x7e, 0x41, 0xf8, 0xc1, 0xce, 0x42, + 0xc8, 0x43, 0x7c, 0xa0, 0xff, 0x4b, 0x1a, 0x4b, 0xc7, 0x03, 0x7f, 0x5f, 0x01, 0xe7, 0x31, 0xf1, + 0xb1, 0x6e, 0xea, 0xa6, 0x75, 0xf5, 0xb1, 0x1f, 0xb5, 0xf5, 0xd3, 0xde, 0xf5, 0x5d, 0x25, 0xf8, + 0x87, 0xfa, 0x57, 0x6b, 0x0b, 0x5d, 0xaf, 0x2d, 0xf4, 0x7b, 0x6d, 0xa1, 0xaf, 0x1b, 0xcb, 0xb8, + 0xde, 0x58, 0xc6, 0x8f, 0x8d, 0x65, 0xbc, 0x3d, 0x4d, 0x52, 0x71, 0x51, 0x46, 0x2e, 0x65, 0xb9, + 0x47, 0x19, 0xcf, 0x19, 0xf7, 0xd2, 0x88, 0xce, 0x12, 0xe6, 0x55, 0x4f, 0xbd, 0x9c, 0xc5, 0x65, + 0x06, 0x5c, 0x5d, 0xca, 0xf1, 0x7c, 0xa6, 0x8f, 0x45, 0x5c, 0x2e, 0x81, 0x47, 0x7d, 0x79, 0x13, + 0x4f, 0xfe, 0x06, 0x00, 0x00, 0xff, 0xff, 0x27, 0x7e, 0x06, 0xb7, 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 ab9a5c181501..cc6d4503fd16 100644 --- a/modules/core/02-client/types/genesis_test.go +++ b/modules/core/02-client/types/genesis_test.go @@ -5,13 +5,13 @@ import ( cmttypes "github.com/cometbft/cometbft/types" - 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" + client "github.com/cosmos/ibc-go/v9/modules/core/02-client" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) const ( diff --git a/modules/core/02-client/types/height.go b/modules/core/02-client/types/height.go index d756f36ae22b..a326142a6856 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/v8/modules/core/errors" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + "github.com/cosmos/ibc-go/v9/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 162b26d2b052..68fccb50a762 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/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/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 8d054745aac5..52bc68eef044 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/v8/modules/core/24-host" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/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 e5550b484a93..3564c56d7855 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/v8/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" ) // tests ParseClientIdentifier and IsValidClientID diff --git a/modules/core/02-client/types/legacy_proposal.go b/modules/core/02-client/types/legacy_proposal.go index 05254354695d..ecbcf9f83401 100644 --- a/modules/core/02-client/types/legacy_proposal.go +++ b/modules/core/02-client/types/legacy_proposal.go @@ -9,7 +9,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/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) const ( diff --git a/modules/core/02-client/types/legacy_proposal_test.go b/modules/core/02-client/types/legacy_proposal_test.go index a3724616eddb..de01a62c6a1e 100644 --- a/modules/core/02-client/types/legacy_proposal_test.go +++ b/modules/core/02-client/types/legacy_proposal_test.go @@ -5,8 +5,8 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" - "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func (suite *TypesTestSuite) TestValidateBasic() { diff --git a/modules/core/02-client/types/msgs.go b/modules/core/02-client/types/msgs.go index 65cb2fede8b9..e35b7bbbaad5 100644 --- a/modules/core/02-client/types/msgs.go +++ b/modules/core/02-client/types/msgs.go @@ -7,9 +7,9 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" - host "github.com/cosmos/ibc-go/v8/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) var ( diff --git a/modules/core/02-client/types/msgs_test.go b/modules/core/02-client/types/msgs_test.go index 7e46de19d9e2..6440ddabc8a9 100644 --- a/modules/core/02-client/types/msgs_test.go +++ b/modules/core/02-client/types/msgs_test.go @@ -16,15 +16,15 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" - ibc "github.com/cosmos/ibc-go/v8/modules/core" - "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" - 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" + ibc "github.com/cosmos/ibc-go/v9/modules/core" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) type TypesTestSuite struct { diff --git a/modules/core/02-client/types/params_test.go b/modules/core/02-client/types/params_test.go index 7a80749b3753..15f7fd3cd682 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/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) func TestIsAllowedClient(t *testing.T) { diff --git a/modules/core/02-client/types/query.go b/modules/core/02-client/types/query.go index 734ae1d92ad3..10757a47ef39 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/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v9/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 8130717af64b..2585a9a89887 100644 --- a/modules/core/02-client/types/query.pb.go +++ b/modules/core/02-client/types/query.pb.go @@ -11,7 +11,7 @@ import ( _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" - v2 "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types/v2" + v2 "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types/v2" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" @@ -1133,86 +1133,86 @@ func init() { func init() { proto.RegisterFile("ibc/core/client/v1/query.proto", fileDescriptor_dc42cdfd1d52d76e) } var fileDescriptor_dc42cdfd1d52d76e = []byte{ - // 1249 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x58, 0xcb, 0x6f, 0x1b, 0x45, - 0x18, 0xcf, 0xa4, 0x49, 0x9a, 0x7c, 0x76, 0x93, 0x68, 0x9a, 0xa4, 0xee, 0x26, 0x75, 0x92, 0x0d, - 0x90, 0x34, 0x24, 0xbb, 0x89, 0x43, 0x93, 0x50, 0x09, 0x09, 0x52, 0x54, 0x1a, 0xa4, 0x96, 0x60, - 0xc4, 0x43, 0x48, 0xc8, 0x5a, 0xaf, 0x27, 0xf6, 0xaa, 0xde, 0x5d, 0xd7, 0xb3, 0x6b, 0x29, 0xaa, - 0x72, 0xc9, 0xa9, 0x37, 0x90, 0x90, 0xb8, 0x22, 0x71, 0xe4, 0x50, 0xf5, 0x80, 0xc4, 0x09, 0x89, - 0x13, 0xe4, 0x58, 0x09, 0x0e, 0x9c, 0x28, 0x4a, 0x90, 0xf8, 0x37, 0xd0, 0xce, 0xcc, 0xda, 0xbb, - 0xf6, 0xb8, 0x5e, 0xa3, 0x96, 0x9b, 0xf7, 0x7b, 0xfe, 0xbe, 0xc7, 0xcc, 0x6f, 0x64, 0xc8, 0x5a, - 0x45, 0x53, 0x37, 0xdd, 0x3a, 0xd1, 0xcd, 0xaa, 0x45, 0x1c, 0x4f, 0x6f, 0x6c, 0xea, 0x0f, 0x7c, - 0x52, 0x3f, 0xd2, 0x6a, 0x75, 0xd7, 0x73, 0x31, 0xb6, 0x8a, 0xa6, 0x16, 0xe8, 0x35, 0xae, 0xd7, - 0x1a, 0x9b, 0xca, 0xaa, 0xe9, 0x52, 0xdb, 0xa5, 0x7a, 0xd1, 0xa0, 0x84, 0x1b, 0xeb, 0x8d, 0xcd, - 0x22, 0xf1, 0x8c, 0x4d, 0xbd, 0x66, 0x94, 0x2d, 0xc7, 0xf0, 0x2c, 0xd7, 0xe1, 0xfe, 0xca, 0xac, - 0xb0, 0x0d, 0xcd, 0xa2, 0xc1, 0x95, 0x79, 0x49, 0x72, 0x91, 0x86, 0x1b, 0x2c, 0xb7, 0x0c, 0x5c, - 0xdb, 0xb6, 0x3c, 0x9b, 0x19, 0xe5, 0x22, 0x5f, 0xc2, 0xf0, 0x6a, 0xd9, 0x75, 0xcb, 0x55, 0xa2, - 0xb3, 0xaf, 0xa2, 0x7f, 0xa8, 0x1b, 0x4e, 0x98, 0x64, 0x4e, 0xa8, 0x8c, 0x9a, 0xa5, 0x1b, 0x8e, - 0xe3, 0x7a, 0x0c, 0x1e, 0x15, 0xda, 0xa9, 0xb2, 0x5b, 0x76, 0xd9, 0x4f, 0x3d, 0xf8, 0xc5, 0xa5, - 0xea, 0x36, 0x5c, 0xf9, 0x30, 0xc0, 0x79, 0x8b, 0x81, 0xf9, 0xc8, 0x33, 0x3c, 0x92, 0x27, 0x0f, - 0x7c, 0x42, 0x3d, 0x3c, 0x0b, 0x63, 0x1c, 0x62, 0xc1, 0x2a, 0x65, 0xd0, 0x02, 0x5a, 0x19, 0xcb, - 0x8f, 0x72, 0xc1, 0x7e, 0x49, 0x7d, 0x8c, 0x20, 0xd3, 0xe9, 0x48, 0x6b, 0xae, 0x43, 0x09, 0xde, - 0x81, 0xb4, 0xf0, 0xa4, 0x81, 0x9c, 0x39, 0xa7, 0x72, 0x53, 0x1a, 0xc7, 0xa7, 0x85, 0xd0, 0xb5, - 0x77, 0x9c, 0xa3, 0x7c, 0xca, 0x6c, 0x05, 0xc0, 0x53, 0x30, 0x5c, 0xab, 0xbb, 0xee, 0x61, 0x66, - 0x70, 0x01, 0xad, 0xa4, 0xf3, 0xfc, 0x03, 0xdf, 0x82, 0x34, 0xfb, 0x51, 0xa8, 0x10, 0xab, 0x5c, - 0xf1, 0x32, 0x17, 0x58, 0x38, 0x45, 0xeb, 0x1c, 0x98, 0x76, 0x87, 0x59, 0xec, 0x0d, 0x9d, 0xfe, - 0x39, 0x3f, 0x90, 0x4f, 0x31, 0x2f, 0x2e, 0x52, 0x8b, 0x9d, 0x78, 0x69, 0x58, 0xe9, 0x6d, 0x80, - 0xd6, 0x38, 0x05, 0xda, 0xd7, 0x34, 0x3e, 0x4f, 0x2d, 0x98, 0xbd, 0xc6, 0x67, 0x29, 0x66, 0xaf, - 0x1d, 0x18, 0xe5, 0xb0, 0x4b, 0xf9, 0x88, 0xa7, 0xfa, 0x3b, 0x82, 0xab, 0x92, 0x24, 0xa2, 0x2b, - 0x0e, 0x5c, 0x8a, 0x76, 0x85, 0x66, 0xd0, 0xc2, 0x85, 0x95, 0x54, 0xee, 0xba, 0xac, 0x8e, 0xfd, - 0x12, 0x71, 0x3c, 0xeb, 0xd0, 0x22, 0xa5, 0x48, 0xa8, 0xbd, 0x6c, 0x50, 0xd6, 0xf7, 0xcf, 0xe6, - 0x67, 0xa4, 0x6a, 0x9a, 0x4f, 0x47, 0x7a, 0x49, 0xf1, 0x7b, 0xb1, 0xaa, 0x06, 0x59, 0x55, 0xcb, - 0x3d, 0xab, 0xe2, 0x60, 0x63, 0x65, 0x3d, 0x41, 0xa0, 0xf0, 0xb2, 0x02, 0x95, 0x43, 0x7d, 0x9a, - 0x78, 0x4f, 0xf0, 0x32, 0x4c, 0xd4, 0x49, 0xc3, 0xa2, 0x96, 0xeb, 0x14, 0x1c, 0xdf, 0x2e, 0x92, - 0x3a, 0x43, 0x32, 0x94, 0x1f, 0x0f, 0xc5, 0xf7, 0x98, 0x34, 0x66, 0x18, 0x99, 0x73, 0xc4, 0x90, - 0x0f, 0x12, 0x2f, 0xc1, 0xa5, 0x6a, 0x50, 0x9f, 0x17, 0x9a, 0x0d, 0x2d, 0xa0, 0x95, 0xd1, 0x7c, - 0x9a, 0x0b, 0xc5, 0xb4, 0x7f, 0x44, 0x30, 0x2b, 0x85, 0x2c, 0x66, 0xf1, 0x16, 0x4c, 0x98, 0xa1, - 0x26, 0xc1, 0x92, 0x8e, 0x9b, 0xb1, 0x30, 0x2f, 0x73, 0x4f, 0x4f, 0xe4, 0xc8, 0x69, 0xa2, 0x6e, - 0xdf, 0x96, 0x8c, 0xfc, 0xbf, 0x2c, 0xf2, 0x2f, 0x08, 0xe6, 0xe4, 0x20, 0x44, 0xff, 0xbe, 0x80, - 0xc9, 0xb6, 0xfe, 0x85, 0xeb, 0xbc, 0x26, 0x2b, 0x37, 0x1e, 0xe6, 0x53, 0xcb, 0xab, 0xc4, 0x1a, - 0x30, 0x11, 0x6f, 0xef, 0x0b, 0x5c, 0xdd, 0x47, 0x08, 0x16, 0x25, 0x85, 0xf0, 0xec, 0xff, 0x6f, - 0x4f, 0x7f, 0x45, 0xa0, 0x3e, 0x0f, 0x8a, 0xe8, 0xec, 0x67, 0x70, 0xa5, 0xad, 0xb3, 0x62, 0x9d, - 0xc2, 0x06, 0xf7, 0xde, 0xa7, 0x69, 0x53, 0x96, 0xe1, 0xc5, 0x35, 0x75, 0xa7, 0xe3, 0x2a, 0xf5, - 0x13, 0xb5, 0x52, 0xdd, 0xea, 0xb8, 0x1e, 0xfd, 0x56, 0xe1, 0x33, 0x30, 0x42, 0x99, 0x44, 0xb8, - 0x89, 0x2f, 0x55, 0x89, 0x65, 0x3b, 0x30, 0xea, 0x86, 0x1d, 0x66, 0x53, 0x3f, 0x88, 0x05, 0x0c, - 0x75, 0x22, 0x60, 0x0e, 0x46, 0x6a, 0x4c, 0x22, 0x8e, 0xb6, 0xb4, 0x71, 0xc2, 0x47, 0x58, 0xaa, - 0x8b, 0x30, 0xcf, 0x02, 0x7e, 0x5c, 0x2b, 0xd7, 0x8d, 0x52, 0xec, 0x7a, 0x0d, 0x73, 0x56, 0x61, - 0xa1, 0xbb, 0x89, 0x48, 0x7d, 0x07, 0xa6, 0x7d, 0xa1, 0x2e, 0x24, 0x66, 0xc2, 0xcb, 0x7e, 0x67, - 0x44, 0xf5, 0x15, 0xb1, 0x34, 0xcd, 0x6c, 0xb2, 0x2b, 0x58, 0xf5, 0x61, 0xe9, 0xb9, 0x56, 0x02, - 0xd6, 0x3d, 0xc8, 0xb4, 0x60, 0xf5, 0x71, 0xfd, 0xcd, 0xf8, 0xd2, 0xb8, 0xea, 0x4f, 0x83, 0xe2, - 0x9a, 0xf8, 0x84, 0xd4, 0xad, 0xc3, 0xa3, 0xbb, 0x24, 0xb8, 0xc9, 0x69, 0xc5, 0xaa, 0x25, 0x3a, - 0x58, 0x2f, 0xef, 0x12, 0x0d, 0x42, 0x37, 0x8c, 0xaa, 0x4f, 0x32, 0xc3, 0x3c, 0x34, 0xfb, 0xc0, - 0xd7, 0x00, 0x3c, 0xcb, 0x26, 0x85, 0x12, 0xa9, 0x1a, 0x47, 0x99, 0x11, 0xc6, 0x2e, 0x63, 0x81, - 0xe4, 0xdd, 0x40, 0x80, 0xe7, 0x21, 0x55, 0xac, 0xba, 0xe6, 0x7d, 0xa1, 0xbf, 0xc8, 0xf4, 0xc0, - 0x44, 0xdc, 0x60, 0x1f, 0x52, 0x36, 0xa9, 0xdf, 0xaf, 0x92, 0x42, 0xcd, 0xf0, 0x2a, 0x99, 0x51, - 0x86, 0x4c, 0x8d, 0x20, 0x6b, 0xbd, 0xd5, 0x1a, 0x39, 0xed, 0x2e, 0x33, 0x3d, 0x30, 0xbc, 0x8a, - 0x40, 0x08, 0x76, 0x53, 0xf2, 0xfe, 0xd0, 0xe8, 0xd0, 0xe4, 0xb0, 0xfa, 0x26, 0x5c, 0xeb, 0xd2, - 0x3e, 0x31, 0xb0, 0x0c, 0x5c, 0xa4, 0xbe, 0x69, 0x12, 0xca, 0x77, 0x78, 0x34, 0x1f, 0x7e, 0xe6, - 0x4e, 0xc6, 0x61, 0x98, 0xf9, 0xe2, 0x6f, 0x11, 0xa4, 0x22, 0x1b, 0x83, 0x5f, 0x97, 0xb5, 0xaa, - 0xcb, 0x1b, 0x4f, 0x59, 0x4b, 0x66, 0xcc, 0xe1, 0xa8, 0x37, 0x4e, 0x7e, 0xfb, 0xfb, 0xeb, 0x41, - 0x1d, 0xaf, 0xeb, 0x5d, 0x9f, 0xb3, 0x82, 0x0c, 0xf4, 0x87, 0xcd, 0xb9, 0x1f, 0xe3, 0x6f, 0x10, - 0xa4, 0xa3, 0xef, 0x14, 0x9c, 0x28, 0x6b, 0x78, 0xc8, 0x95, 0xf5, 0x84, 0xd6, 0x02, 0xe4, 0x75, - 0x06, 0x72, 0x09, 0x2f, 0xf6, 0x04, 0x89, 0x9f, 0x21, 0x18, 0x8f, 0xaf, 0x34, 0xd6, 0xba, 0x27, - 0x93, 0x9d, 0x3c, 0x45, 0x4f, 0x6c, 0x2f, 0xe0, 0x55, 0x19, 0xbc, 0x43, 0x5c, 0x92, 0xc2, 0x6b, - 0xe3, 0xd4, 0x68, 0x1b, 0xf5, 0xf0, 0x1d, 0xa4, 0x3f, 0x6c, 0x7b, 0x51, 0x1d, 0xeb, 0xfc, 0xac, - 0x44, 0x14, 0x5c, 0x70, 0x8c, 0x1f, 0x23, 0x98, 0x68, 0xe3, 0x70, 0x9c, 0x14, 0x72, 0x73, 0x00, - 0x1b, 0xc9, 0x1d, 0x44, 0x91, 0xbb, 0xac, 0xc8, 0x1c, 0xde, 0xe8, 0xb7, 0x48, 0x7c, 0x8a, 0x60, - 0x5a, 0x4a, 0x90, 0xf8, 0x46, 0x42, 0x14, 0x71, 0x6e, 0x57, 0xb6, 0xfb, 0x75, 0x13, 0x25, 0xbc, - 0xcd, 0x4a, 0xb8, 0x89, 0x77, 0xfb, 0x9e, 0x93, 0xa0, 0x6b, 0xfc, 0x5d, 0x6c, 0xed, 0xfd, 0x64, - 0x6b, 0xef, 0xf7, 0xb5, 0xf6, 0x2d, 0xfa, 0x4c, 0x7c, 0x36, 0xfd, 0x78, 0xbf, 0xbf, 0x6c, 0x82, - 0xe4, 0x4c, 0xd8, 0x13, 0x64, 0x8c, 0x80, 0x7b, 0x82, 0x8c, 0x53, 0xb2, 0xaa, 0x32, 0x90, 0x73, - 0x58, 0x91, 0x81, 0xe4, 0x14, 0x8c, 0x7f, 0x40, 0x70, 0x59, 0xc2, 0xad, 0x78, 0xab, 0x6b, 0xaa, - 0xee, 0x64, 0xad, 0xbc, 0xd1, 0x9f, 0x93, 0x80, 0x99, 0x63, 0x30, 0xd7, 0xf0, 0xaa, 0x0c, 0xa6, - 0x94, 0xd8, 0x29, 0xfe, 0x19, 0xc1, 0x8c, 0x9c, 0x7e, 0xf1, 0x76, 0x6f, 0x10, 0xd2, 0xbb, 0x65, - 0xa7, 0x6f, 0xbf, 0x24, 0xbb, 0xd0, 0xed, 0x05, 0x40, 0x83, 0xcb, 0x62, 0xb2, 0x9d, 0x8a, 0x70, - 0xf7, 0xc3, 0xdf, 0x85, 0xf4, 0x95, 0xcd, 0x3e, 0x3c, 0x42, 0xc0, 0x8f, 0xfe, 0x79, 0xb2, 0x8a, - 0x18, 0xea, 0xd5, 0x9b, 0x68, 0x55, 0x7d, 0x55, 0x06, 0xbc, 0xc1, 0xbc, 0x0b, 0x76, 0xd3, 0x7d, - 0x2f, 0x7f, 0x7a, 0x96, 0x45, 0x4f, 0xcf, 0xb2, 0xe8, 0xaf, 0xb3, 0x2c, 0xfa, 0xea, 0x3c, 0x3b, - 0xf0, 0xf4, 0x3c, 0x3b, 0xf0, 0xc7, 0x79, 0x76, 0xe0, 0xf3, 0xdd, 0xb2, 0xe5, 0x55, 0xfc, 0x62, - 0x40, 0xc9, 0xba, 0xf8, 0x5f, 0xc6, 0x2a, 0x9a, 0xeb, 0x65, 0x57, 0x6f, 0xec, 0xea, 0xb6, 0x5b, - 0xf2, 0xab, 0x84, 0xf2, 0xf8, 0x1b, 0xb9, 0x75, 0x91, 0xc2, 0x3b, 0xaa, 0x11, 0x5a, 0x1c, 0x61, - 0x2f, 0x9f, 0xad, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x99, 0xfd, 0xd9, 0x60, 0x2f, 0x12, 0x00, - 0x00, + // 1250 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x58, 0xcd, 0x4f, 0x1b, 0x47, + 0x1b, 0x67, 0x08, 0x10, 0x78, 0xec, 0x00, 0x9a, 0x00, 0x71, 0x16, 0x62, 0x60, 0x79, 0xdf, 0x42, + 0x28, 0xec, 0x82, 0x69, 0x80, 0x44, 0xaa, 0xd4, 0x92, 0x2a, 0x0d, 0x95, 0x92, 0x52, 0x57, 0xfd, + 0x50, 0xa5, 0xca, 0x5a, 0xaf, 0x07, 0x7b, 0x15, 0xef, 0xae, 0xe3, 0xd9, 0xb5, 0x84, 0x22, 0x2e, + 0x9c, 0x72, 0x6b, 0xa5, 0x4a, 0xbd, 0x56, 0xea, 0xb1, 0x87, 0x28, 0x87, 0x4a, 0x3d, 0x55, 0xea, + 0xa9, 0xe5, 0x18, 0xa9, 0x3d, 0xf4, 0xd4, 0x54, 0x50, 0xa9, 0xff, 0x46, 0xb5, 0x33, 0xb3, 0xf6, + 0xae, 0x3d, 0x8e, 0xd7, 0x55, 0xd2, 0x9b, 0xf7, 0xf9, 0xfc, 0x3d, 0x1f, 0x33, 0xbf, 0x91, 0x21, + 0x6b, 0x15, 0x4d, 0xdd, 0x74, 0xeb, 0x44, 0x37, 0xab, 0x16, 0x71, 0x3c, 0xbd, 0xb1, 0xa9, 0x3f, + 0xf4, 0x49, 0xfd, 0x48, 0xab, 0xd5, 0x5d, 0xcf, 0xc5, 0xd8, 0x2a, 0x9a, 0x5a, 0xa0, 0xd7, 0xb8, + 0x5e, 0x6b, 0x6c, 0x2a, 0xab, 0xa6, 0x4b, 0x6d, 0x97, 0xea, 0x45, 0x83, 0x12, 0x6e, 0xac, 0x37, + 0x36, 0x8b, 0xc4, 0x33, 0x36, 0xf5, 0x9a, 0x51, 0xb6, 0x1c, 0xc3, 0xb3, 0x5c, 0x87, 0xfb, 0x2b, + 0xb3, 0xc2, 0x36, 0x34, 0x8b, 0x06, 0x57, 0xe6, 0x25, 0xc9, 0x45, 0x1a, 0x6e, 0xb0, 0xdc, 0x32, + 0x70, 0x6d, 0xdb, 0xf2, 0x6c, 0x66, 0x94, 0x8b, 0x7c, 0x09, 0xc3, 0xab, 0x65, 0xd7, 0x2d, 0x57, + 0x89, 0xce, 0xbe, 0x8a, 0xfe, 0xa1, 0x6e, 0x38, 0x61, 0x92, 0x39, 0xa1, 0x32, 0x6a, 0x96, 0x6e, + 0x38, 0x8e, 0xeb, 0x31, 0x78, 0x54, 0x68, 0xa7, 0xca, 0x6e, 0xd9, 0x65, 0x3f, 0xf5, 0xe0, 0x17, + 0x97, 0xaa, 0xdb, 0x70, 0xe5, 0x83, 0x00, 0xe7, 0x6d, 0x06, 0xe6, 0x43, 0xcf, 0xf0, 0x48, 0x9e, + 0x3c, 0xf4, 0x09, 0xf5, 0xf0, 0x2c, 0x8c, 0x71, 0x88, 0x05, 0xab, 0x94, 0x41, 0x0b, 0x68, 0x65, + 0x2c, 0x3f, 0xca, 0x05, 0xfb, 0x25, 0xf5, 0x09, 0x82, 0x4c, 0xa7, 0x23, 0xad, 0xb9, 0x0e, 0x25, + 0x78, 0x07, 0xd2, 0xc2, 0x93, 0x06, 0x72, 0xe6, 0x9c, 0xca, 0x4d, 0x69, 0x1c, 0x9f, 0x16, 0x42, + 0xd7, 0xde, 0x76, 0x8e, 0xf2, 0x29, 0xb3, 0x15, 0x00, 0x4f, 0xc1, 0x70, 0xad, 0xee, 0xba, 0x87, + 0x99, 0xc1, 0x05, 0xb4, 0x92, 0xce, 0xf3, 0x0f, 0x7c, 0x1b, 0xd2, 0xec, 0x47, 0xa1, 0x42, 0xac, + 0x72, 0xc5, 0xcb, 0x5c, 0x60, 0xe1, 0x14, 0xad, 0x73, 0x60, 0xda, 0x5d, 0x66, 0xb1, 0x37, 0x74, + 0xfa, 0xc7, 0xfc, 0x40, 0x3e, 0xc5, 0xbc, 0xb8, 0x48, 0x2d, 0x76, 0xe2, 0xa5, 0x61, 0xa5, 0x77, + 0x00, 0x5a, 0xe3, 0x14, 0x68, 0x5f, 0xd3, 0xf8, 0x3c, 0xb5, 0x60, 0xf6, 0x1a, 0x9f, 0xa5, 0x98, + 0xbd, 0x76, 0x60, 0x94, 0xc3, 0x2e, 0xe5, 0x23, 0x9e, 0xea, 0x6f, 0x08, 0xae, 0x4a, 0x92, 0x88, + 0xae, 0x38, 0x70, 0x29, 0xda, 0x15, 0x9a, 0x41, 0x0b, 0x17, 0x56, 0x52, 0xb9, 0xeb, 0xb2, 0x3a, + 0xf6, 0x4b, 0xc4, 0xf1, 0xac, 0x43, 0x8b, 0x94, 0x22, 0xa1, 0xf6, 0xb2, 0x41, 0x59, 0xdf, 0x3d, + 0x9f, 0x9f, 0x91, 0xaa, 0x69, 0x3e, 0x1d, 0xe9, 0x25, 0xc5, 0xef, 0xc6, 0xaa, 0x1a, 0x64, 0x55, + 0x2d, 0xf7, 0xac, 0x8a, 0x83, 0x8d, 0x95, 0xf5, 0x14, 0x81, 0xc2, 0xcb, 0x0a, 0x54, 0x0e, 0xf5, + 0x69, 0xe2, 0x3d, 0xc1, 0xcb, 0x30, 0x51, 0x27, 0x0d, 0x8b, 0x5a, 0xae, 0x53, 0x70, 0x7c, 0xbb, + 0x48, 0xea, 0x0c, 0xc9, 0x50, 0x7e, 0x3c, 0x14, 0xdf, 0x67, 0xd2, 0x98, 0x61, 0x64, 0xce, 0x11, + 0x43, 0x3e, 0x48, 0xbc, 0x04, 0x97, 0xaa, 0x41, 0x7d, 0x5e, 0x68, 0x36, 0xb4, 0x80, 0x56, 0x46, + 0xf3, 0x69, 0x2e, 0x14, 0xd3, 0xfe, 0x01, 0xc1, 0xac, 0x14, 0xb2, 0x98, 0xc5, 0x9b, 0x30, 0x61, + 0x86, 0x9a, 0x04, 0x4b, 0x3a, 0x6e, 0xc6, 0xc2, 0xbc, 0xca, 0x3d, 0x3d, 0x91, 0x23, 0xa7, 0x89, + 0xba, 0x7d, 0x47, 0x32, 0xf2, 0x7f, 0xb3, 0xc8, 0x3f, 0x23, 0x98, 0x93, 0x83, 0x10, 0xfd, 0xfb, + 0x1c, 0x26, 0xdb, 0xfa, 0x17, 0xae, 0xf3, 0x9a, 0xac, 0xdc, 0x78, 0x98, 0x4f, 0x2c, 0xaf, 0x12, + 0x6b, 0xc0, 0x44, 0xbc, 0xbd, 0x2f, 0x71, 0x75, 0x1f, 0x23, 0x58, 0x94, 0x14, 0xc2, 0xb3, 0xff, + 0xb7, 0x3d, 0xfd, 0x05, 0x81, 0xfa, 0x22, 0x28, 0xa2, 0xb3, 0x9f, 0xc2, 0x95, 0xb6, 0xce, 0x8a, + 0x75, 0x0a, 0x1b, 0xdc, 0x7b, 0x9f, 0xa6, 0x4d, 0x59, 0x86, 0x97, 0xd7, 0xd4, 0x9d, 0x8e, 0xab, + 0xd4, 0x4f, 0xd4, 0x4a, 0x75, 0xab, 0xe3, 0x7a, 0xf4, 0x5b, 0x85, 0xcf, 0xc0, 0x08, 0x65, 0x12, + 0xe1, 0x26, 0xbe, 0x54, 0x25, 0x96, 0xed, 0xc0, 0xa8, 0x1b, 0x76, 0x98, 0x4d, 0x7d, 0x3f, 0x16, + 0x30, 0xd4, 0x89, 0x80, 0x39, 0x18, 0xa9, 0x31, 0x89, 0x38, 0xda, 0xd2, 0xc6, 0x09, 0x1f, 0x61, + 0xa9, 0x2e, 0xc2, 0x3c, 0x0b, 0xf8, 0x51, 0xad, 0x5c, 0x37, 0x4a, 0xb1, 0xeb, 0x35, 0xcc, 0x59, + 0x85, 0x85, 0xee, 0x26, 0x22, 0xf5, 0x5d, 0x98, 0xf6, 0x85, 0xba, 0x90, 0x98, 0x09, 0x2f, 0xfb, + 0x9d, 0x11, 0xd5, 0xff, 0x89, 0xa5, 0x69, 0x66, 0x93, 0x5d, 0xc1, 0xaa, 0x0f, 0x4b, 0x2f, 0xb4, + 0x12, 0xb0, 0xee, 0x43, 0xa6, 0x05, 0xab, 0x8f, 0xeb, 0x6f, 0xc6, 0x97, 0xc6, 0x55, 0x7f, 0x1c, + 0x14, 0xd7, 0xc4, 0xc7, 0xa4, 0x6e, 0x1d, 0x1e, 0xdd, 0x23, 0xc1, 0x4d, 0x4e, 0x2b, 0x56, 0x2d, + 0xd1, 0xc1, 0x7a, 0x75, 0x97, 0x68, 0x10, 0xba, 0x61, 0x54, 0x7d, 0x92, 0x19, 0xe6, 0xa1, 0xd9, + 0x07, 0xbe, 0x06, 0xe0, 0x59, 0x36, 0x29, 0x94, 0x48, 0xd5, 0x38, 0xca, 0x8c, 0x30, 0x76, 0x19, + 0x0b, 0x24, 0xef, 0x04, 0x02, 0x3c, 0x0f, 0xa9, 0x62, 0xd5, 0x35, 0x1f, 0x08, 0xfd, 0x45, 0xa6, + 0x07, 0x26, 0xe2, 0x06, 0xfb, 0x90, 0xb2, 0x49, 0xfd, 0x41, 0x95, 0x14, 0x6a, 0x86, 0x57, 0xc9, + 0x8c, 0x32, 0x64, 0x6a, 0x04, 0x59, 0xeb, 0xad, 0xd6, 0xc8, 0x69, 0xf7, 0x98, 0xe9, 0x81, 0xe1, + 0x55, 0x04, 0x42, 0xb0, 0x9b, 0x92, 0xf7, 0x86, 0x46, 0x87, 0x26, 0x87, 0xd5, 0x9b, 0x70, 0xad, + 0x4b, 0xfb, 0xc4, 0xc0, 0x32, 0x70, 0x91, 0xfa, 0xa6, 0x49, 0x28, 0xdf, 0xe1, 0xd1, 0x7c, 0xf8, + 0x99, 0x3b, 0x19, 0x87, 0x61, 0xe6, 0x8b, 0xbf, 0x41, 0x90, 0x8a, 0x6c, 0x0c, 0x7e, 0x5d, 0xd6, + 0xaa, 0x2e, 0x6f, 0x3c, 0x65, 0x2d, 0x99, 0x31, 0x87, 0xa3, 0xde, 0x38, 0xf9, 0xf5, 0xaf, 0xaf, + 0x06, 0x75, 0xbc, 0xae, 0x77, 0x7d, 0xce, 0x0a, 0x32, 0xd0, 0x1f, 0x35, 0xe7, 0x7e, 0x8c, 0xbf, + 0x46, 0x90, 0x8e, 0xbe, 0x53, 0x70, 0xa2, 0xac, 0xe1, 0x21, 0x57, 0xd6, 0x13, 0x5a, 0x0b, 0x90, + 0xd7, 0x19, 0xc8, 0x25, 0xbc, 0xd8, 0x13, 0x24, 0x7e, 0x8e, 0x60, 0x3c, 0xbe, 0xd2, 0x58, 0xeb, + 0x9e, 0x4c, 0x76, 0xf2, 0x14, 0x3d, 0xb1, 0xbd, 0x80, 0x57, 0x65, 0xf0, 0x0e, 0x71, 0x49, 0x0a, + 0xaf, 0x8d, 0x53, 0xa3, 0x6d, 0xd4, 0xc3, 0x77, 0x90, 0xfe, 0xa8, 0xed, 0x45, 0x75, 0xac, 0xf3, + 0xb3, 0x12, 0x51, 0x70, 0xc1, 0x31, 0x7e, 0x82, 0x60, 0xa2, 0x8d, 0xc3, 0x71, 0x52, 0xc8, 0xcd, + 0x01, 0x6c, 0x24, 0x77, 0x10, 0x45, 0xee, 0xb2, 0x22, 0x73, 0x78, 0xa3, 0xdf, 0x22, 0xf1, 0x29, + 0x82, 0x69, 0x29, 0x41, 0xe2, 0x1b, 0x09, 0x51, 0xc4, 0xb9, 0x5d, 0xd9, 0xee, 0xd7, 0x4d, 0x94, + 0xf0, 0x16, 0x2b, 0xe1, 0x16, 0xde, 0xed, 0x7b, 0x4e, 0x82, 0xae, 0xf1, 0xb7, 0xb1, 0xb5, 0xf7, + 0x93, 0xad, 0xbd, 0xdf, 0xd7, 0xda, 0xb7, 0xe8, 0x33, 0xf1, 0xd9, 0xf4, 0xe3, 0xfd, 0xfe, 0xa2, + 0x09, 0x92, 0x33, 0x61, 0x4f, 0x90, 0x31, 0x02, 0xee, 0x09, 0x32, 0x4e, 0xc9, 0xaa, 0xca, 0x40, + 0xce, 0x61, 0x45, 0x06, 0x92, 0x53, 0x30, 0xfe, 0x1e, 0xc1, 0x65, 0x09, 0xb7, 0xe2, 0xad, 0xae, + 0xa9, 0xba, 0x93, 0xb5, 0xf2, 0x46, 0x7f, 0x4e, 0x02, 0x66, 0x8e, 0xc1, 0x5c, 0xc3, 0xab, 0x32, + 0x98, 0x52, 0x62, 0xa7, 0xf8, 0x27, 0x04, 0x33, 0x72, 0xfa, 0xc5, 0xdb, 0xbd, 0x41, 0x48, 0xef, + 0x96, 0x9d, 0xbe, 0xfd, 0x92, 0xec, 0x42, 0xb7, 0x17, 0x00, 0x0d, 0x2e, 0x8b, 0xc9, 0x76, 0x2a, + 0xc2, 0xdd, 0x0f, 0x7f, 0x17, 0xd2, 0x57, 0x36, 0xfb, 0xf0, 0x08, 0x01, 0x3f, 0xfe, 0xfb, 0xe9, + 0x2a, 0x62, 0xa8, 0x57, 0x6f, 0xa1, 0x55, 0xf5, 0xff, 0x32, 0xe0, 0x0d, 0xe6, 0x5d, 0xb0, 0x9b, + 0xee, 0x7b, 0xf9, 0xd3, 0xb3, 0x2c, 0x7a, 0x76, 0x96, 0x45, 0x7f, 0x9e, 0x65, 0xd1, 0x97, 0xe7, + 0xd9, 0x81, 0x67, 0xe7, 0xd9, 0x81, 0xdf, 0xcf, 0xb3, 0x03, 0x9f, 0xed, 0x96, 0x2d, 0xaf, 0xe2, + 0x17, 0x03, 0x4a, 0xd6, 0xc5, 0xff, 0x32, 0x56, 0xd1, 0x5c, 0x2f, 0xbb, 0x7a, 0xe3, 0xa6, 0x6e, + 0xbb, 0x25, 0xbf, 0x4a, 0x28, 0x8f, 0xbf, 0x91, 0x5b, 0x17, 0x29, 0xbc, 0xa3, 0x1a, 0xa1, 0xc5, + 0x11, 0xf6, 0xf2, 0xd9, 0xfa, 0x27, 0x00, 0x00, 0xff, 0xff, 0x7b, 0x00, 0x51, 0xed, 0x2f, 0x12, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/modules/core/02-client/types/router.go b/modules/core/02-client/types/router.go index c13449274c1f..5127d84e3593 100644 --- a/modules/core/02-client/types/router.go +++ b/modules/core/02-client/types/router.go @@ -5,7 +5,7 @@ import ( storetypes "cosmossdk.io/store/types" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // Router is a map from a clientType to a LightClientModule instance. diff --git a/modules/core/02-client/types/router_test.go b/modules/core/02-client/types/router_test.go index dc60c14d6b48..583918d3ece1 100644 --- a/modules/core/02-client/types/router_test.go +++ b/modules/core/02-client/types/router_test.go @@ -11,9 +11,9 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "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" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" ) func (suite *TypesTestSuite) TestAddRoute() { diff --git a/modules/core/02-client/types/store.go b/modules/core/02-client/types/store.go index d8d67c101fdd..87d17de9a218 100644 --- a/modules/core/02-client/types/store.go +++ b/modules/core/02-client/types/store.go @@ -8,8 +8,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - host "github.com/cosmos/ibc-go/v8/modules/core/24-host" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) var _ exported.ClientStoreProvider = (*storeProvider)(nil) diff --git a/modules/core/02-client/types/tx.pb.go b/modules/core/02-client/types/tx.pb.go index 5761368d65f9..cdaf341ba7e5 100644 --- a/modules/core/02-client/types/tx.pb.go +++ b/modules/core/02-client/types/tx.pb.go @@ -654,58 +654,58 @@ func init() { func init() { proto.RegisterFile("ibc/core/client/v1/tx.proto", fileDescriptor_cb5dc4651eb49a04) } var fileDescriptor_cb5dc4651eb49a04 = []byte{ - // 809 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x56, 0xb1, 0x6f, 0xd3, 0x4e, - 0x14, 0x8e, 0xd3, 0x36, 0xfa, 0xf5, 0x9a, 0x36, 0xbf, 0x1e, 0x29, 0x4d, 0x5d, 0x9a, 0x54, 0xa1, - 0x43, 0x29, 0xd4, 0x6e, 0x8a, 0x04, 0x11, 0x88, 0xa1, 0xcd, 0x42, 0x87, 0x48, 0x95, 0x2b, 0x16, - 0x96, 0x60, 0x3b, 0x97, 0xab, 0x51, 0xec, 0xb3, 0x7c, 0xe7, 0x40, 0x37, 0xc4, 0xc4, 0xc8, 0xc0, - 0xc2, 0xc6, 0x9f, 0x50, 0xf1, 0x07, 0xb0, 0x21, 0x75, 0xec, 0xc8, 0x84, 0x50, 0x3b, 0x54, 0xe2, - 0xaf, 0x40, 0xf6, 0x5d, 0x52, 0xdb, 0x89, 0x43, 0x2a, 0xb6, 0xd8, 0xef, 0x7b, 0xf7, 0xbe, 0xef, - 0xdd, 0x7b, 0x5f, 0x0c, 0x56, 0x2d, 0xc3, 0x54, 0x4d, 0xe2, 0x21, 0xd5, 0xec, 0x5a, 0xc8, 0x61, - 0x6a, 0xaf, 0xa6, 0xb2, 0xb7, 0x8a, 0xeb, 0x11, 0x46, 0x20, 0xb4, 0x0c, 0x53, 0x09, 0x82, 0x0a, - 0x0f, 0x2a, 0xbd, 0x9a, 0xbc, 0x6c, 0x12, 0x6a, 0x13, 0xaa, 0xda, 0x14, 0x07, 0x58, 0x9b, 0x62, - 0x0e, 0x96, 0x37, 0x44, 0xc0, 0x77, 0xb1, 0xa7, 0xb7, 0x91, 0xda, 0xab, 0x19, 0x88, 0xe9, 0xb5, - 0xfe, 0xb3, 0x40, 0x15, 0x31, 0xc1, 0x24, 0xfc, 0xa9, 0x06, 0xbf, 0xc4, 0xdb, 0x15, 0x4c, 0x08, - 0xee, 0x22, 0x35, 0x7c, 0x32, 0xfc, 0x8e, 0xaa, 0x3b, 0x27, 0x22, 0x54, 0x19, 0x41, 0x50, 0xb0, - 0x09, 0x01, 0xd5, 0xaf, 0x12, 0x28, 0x34, 0x29, 0x6e, 0x78, 0x48, 0x67, 0xa8, 0x11, 0x46, 0xe0, - 0x63, 0x90, 0xe7, 0x98, 0x16, 0x65, 0x3a, 0x43, 0x25, 0x69, 0x5d, 0xda, 0x9c, 0xdb, 0x2d, 0x2a, - 0xbc, 0x8c, 0xd2, 0x2f, 0xa3, 0xec, 0x39, 0x27, 0xda, 0x1c, 0x47, 0x1e, 0x05, 0x40, 0xf8, 0x0c, - 0x14, 0x4c, 0xe2, 0x50, 0xe4, 0x50, 0x9f, 0x8a, 0xdc, 0xec, 0x98, 0xdc, 0x85, 0x01, 0x98, 0xa7, - 0xdf, 0x06, 0x39, 0x6a, 0x61, 0x07, 0x79, 0xa5, 0xa9, 0x75, 0x69, 0x73, 0x56, 0x13, 0x4f, 0x4f, - 0x0a, 0x1f, 0xbe, 0x54, 0x32, 0xef, 0xaf, 0x4e, 0xb7, 0xc4, 0x8b, 0xea, 0x0a, 0x58, 0x4e, 0x70, - 0xd6, 0x10, 0x75, 0x83, 0xc3, 0xaa, 0x9f, 0xb8, 0x9e, 0x17, 0x6e, 0xfb, 0x5a, 0xcf, 0x2a, 0x98, - 0x15, 0x7a, 0xac, 0x76, 0x28, 0x66, 0x56, 0xfb, 0x8f, 0xbf, 0x38, 0x68, 0xc3, 0xa7, 0x60, 0x41, - 0x04, 0x6d, 0x44, 0xa9, 0x8e, 0xc7, 0x53, 0x9e, 0xe7, 0xd8, 0x26, 0x87, 0xde, 0x94, 0x71, 0x94, - 0xd5, 0x80, 0xf1, 0xf7, 0x2c, 0xf8, 0x3f, 0x8c, 0x85, 0x17, 0x3d, 0x09, 0xe5, 0xe4, 0xfd, 0x64, - 0xff, 0xe1, 0x7e, 0xa6, 0x6e, 0x70, 0x3f, 0x3b, 0xa0, 0xe8, 0x7a, 0x84, 0x74, 0x5a, 0x62, 0x28, - 0x5b, 0xfc, 0xec, 0xd2, 0xf4, 0xba, 0xb4, 0x99, 0xd7, 0x60, 0x18, 0x8b, 0xcb, 0xd8, 0x03, 0x6b, - 0x89, 0x8c, 0x44, 0xf9, 0x99, 0x30, 0x55, 0x8e, 0xa5, 0xa6, 0x0d, 0x45, 0x6e, 0x7c, 0x8b, 0x65, - 0x50, 0x4a, 0xb6, 0x71, 0xd0, 0xe3, 0xcf, 0x12, 0x58, 0x6a, 0x52, 0x7c, 0xe4, 0x1b, 0xb6, 0xc5, - 0x9a, 0x16, 0x35, 0xd0, 0xb1, 0xde, 0xb3, 0x88, 0xef, 0x8d, 0x6f, 0x74, 0x1d, 0xe4, 0xed, 0x08, - 0x78, 0x6c, 0xa3, 0x63, 0xc8, 0xd4, 0xc1, 0x58, 0x4c, 0xb0, 0x2e, 0x49, 0xd5, 0x0a, 0x58, 0x1b, - 0x49, 0x2d, 0x4a, 0x3e, 0x18, 0x10, 0x0d, 0x99, 0xa4, 0x87, 0x3c, 0xd1, 0xd9, 0x2d, 0xb0, 0x48, - 0x7d, 0xe3, 0x35, 0x32, 0x59, 0x2b, 0xc9, 0xbf, 0x20, 0x02, 0x8d, 0xbe, 0x8c, 0x1d, 0x50, 0xa4, - 0xbe, 0x41, 0x99, 0xc5, 0x7c, 0x86, 0x22, 0xf0, 0x6c, 0x08, 0x87, 0xd7, 0xb1, 0x41, 0xc6, 0xc4, - 0x73, 0xcd, 0x9b, 0x1e, 0xa3, 0x36, 0xe0, 0xfd, 0x8d, 0x37, 0xfd, 0x60, 0xbf, 0x71, 0x44, 0x3a, - 0xec, 0x8d, 0xee, 0x21, 0x71, 0x39, 0xf0, 0x11, 0x98, 0x76, 0xbb, 0xba, 0x23, 0x8c, 0xe5, 0x8e, - 0xc2, 0xbd, 0x4f, 0xe9, 0x7b, 0x9d, 0xf0, 0x3e, 0xe5, 0xb0, 0xab, 0x3b, 0xfb, 0xd3, 0x67, 0x3f, - 0x2b, 0x19, 0x2d, 0xc4, 0xc3, 0xe7, 0x60, 0x49, 0x60, 0xda, 0xad, 0x89, 0x37, 0xe0, 0x56, 0x3f, - 0xa5, 0x11, 0xd9, 0x84, 0x34, 0x81, 0x73, 0x51, 0x71, 0xfc, 0x66, 0x86, 0xf9, 0x0f, 0x14, 0xb2, - 0x88, 0xd7, 0x1c, 0xea, 0x9e, 0x6e, 0xd3, 0xc8, 0xc1, 0x52, 0xf4, 0x60, 0x58, 0x07, 0x39, 0x37, - 0x44, 0x08, 0xae, 0xb2, 0x32, 0xfc, 0xef, 0xa0, 0xf0, 0x33, 0x84, 0x64, 0x81, 0x1f, 0xef, 0x25, - 0x3c, 0xa3, 0x4f, 0x68, 0xf7, 0xf7, 0x0c, 0x98, 0x6a, 0x52, 0x0c, 0x5f, 0x81, 0x7c, 0xcc, 0xd1, - 0xef, 0x8e, 0xaa, 0x96, 0xb0, 0x50, 0xf9, 0xfe, 0x04, 0xa0, 0x7e, 0xa5, 0xa0, 0x42, 0xcc, 0x63, - 0xd3, 0x2a, 0x44, 0x41, 0xa9, 0x15, 0x46, 0xf9, 0x22, 0x34, 0xc1, 0x7c, 0xdc, 0x4c, 0x36, 0x52, - 0xb3, 0x23, 0x28, 0xf9, 0xc1, 0x24, 0xa8, 0x41, 0x11, 0x0f, 0xc0, 0x11, 0xa6, 0x70, 0x2f, 0xe5, - 0x8c, 0x61, 0xa8, 0x5c, 0x9b, 0x18, 0x1a, 0x15, 0x16, 0xdf, 0xe5, 0x34, 0x61, 0x31, 0x54, 0xaa, - 0xb0, 0x91, 0xcb, 0x17, 0x08, 0x1b, 0xb1, 0x78, 0x69, 0xc2, 0x86, 0xa1, 0xa9, 0xc2, 0xd2, 0xd7, - 0x01, 0x76, 0x00, 0x8c, 0xde, 0xa4, 0xd8, 0x88, 0xf1, 0x93, 0xc1, 0x41, 0x7f, 0x99, 0x8c, 0xf8, - 0x94, 0xcb, 0x33, 0xef, 0xae, 0x4e, 0xb7, 0xa4, 0x7d, 0xed, 0xec, 0xa2, 0x2c, 0x9d, 0x5f, 0x94, - 0xa5, 0x5f, 0x17, 0x65, 0xe9, 0xe3, 0x65, 0x39, 0x73, 0x7e, 0x59, 0xce, 0xfc, 0xb8, 0x2c, 0x67, - 0x5e, 0xd6, 0xb1, 0xc5, 0x8e, 0x7d, 0x43, 0x31, 0x89, 0xad, 0x8a, 0xef, 0x2a, 0xcb, 0x30, 0xb7, - 0x31, 0x51, 0x7b, 0x75, 0xd5, 0x26, 0x6d, 0xbf, 0x8b, 0x28, 0xff, 0x2a, 0xda, 0xd9, 0xdd, 0x16, - 0x1f, 0x46, 0xec, 0xc4, 0x45, 0xd4, 0xc8, 0x85, 0xd6, 0xf1, 0xf0, 0x4f, 0x00, 0x00, 0x00, 0xff, - 0xff, 0xa3, 0x68, 0xc1, 0x10, 0xd9, 0x09, 0x00, 0x00, + // 807 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x56, 0x31, 0x6f, 0xd3, 0x40, + 0x14, 0x8e, 0xd3, 0x36, 0xa2, 0xd7, 0xb4, 0xa1, 0x47, 0x4a, 0x53, 0x97, 0x26, 0x55, 0xe8, 0x50, + 0x0a, 0xb5, 0x9b, 0x22, 0x41, 0x01, 0x31, 0xb4, 0x59, 0xe8, 0x10, 0xa9, 0x72, 0xc5, 0xc2, 0x12, + 0x6c, 0xe7, 0x72, 0x35, 0x8a, 0x7d, 0x96, 0xef, 0x1c, 0xe8, 0x86, 0x98, 0x18, 0x19, 0x58, 0xd8, + 0xf8, 0x09, 0x15, 0x3f, 0x80, 0x0d, 0xa9, 0x63, 0x47, 0x26, 0x84, 0xda, 0xa1, 0x12, 0xbf, 0x02, + 0xd9, 0x77, 0x49, 0x6d, 0x27, 0x0e, 0xa9, 0xd8, 0x62, 0xbf, 0xef, 0xdd, 0xfb, 0xbe, 0x77, 0xef, + 0x7d, 0x31, 0x58, 0xb6, 0x0c, 0x53, 0x35, 0x89, 0x87, 0x54, 0xb3, 0x63, 0x21, 0x87, 0xa9, 0xdd, + 0x9a, 0xca, 0xde, 0x29, 0xae, 0x47, 0x18, 0x81, 0xd0, 0x32, 0x4c, 0x25, 0x08, 0x2a, 0x3c, 0xa8, + 0x74, 0x6b, 0xf2, 0xa2, 0x49, 0xa8, 0x4d, 0xa8, 0x6a, 0x53, 0x1c, 0x60, 0x6d, 0x8a, 0x39, 0x58, + 0x5e, 0x13, 0x01, 0xdf, 0xc5, 0x9e, 0xde, 0x42, 0x6a, 0xb7, 0x66, 0x20, 0xa6, 0xd7, 0x7a, 0xcf, + 0x02, 0x55, 0xc4, 0x04, 0x93, 0xf0, 0xa7, 0x1a, 0xfc, 0x12, 0x6f, 0x97, 0x30, 0x21, 0xb8, 0x83, + 0xd4, 0xf0, 0xc9, 0xf0, 0xdb, 0xaa, 0xee, 0x1c, 0x8b, 0x50, 0x65, 0x08, 0x41, 0xc1, 0x26, 0x04, + 0x54, 0xbf, 0x49, 0xa0, 0xd0, 0xa0, 0xb8, 0xee, 0x21, 0x9d, 0xa1, 0x7a, 0x18, 0x81, 0x8f, 0x41, + 0x9e, 0x63, 0x9a, 0x94, 0xe9, 0x0c, 0x95, 0xa4, 0x55, 0x69, 0x7d, 0x66, 0xbb, 0xa8, 0xf0, 0x32, + 0x4a, 0xaf, 0x8c, 0xb2, 0xeb, 0x1c, 0x6b, 0x33, 0x1c, 0x79, 0x18, 0x00, 0xe1, 0x73, 0x50, 0x30, + 0x89, 0x43, 0x91, 0x43, 0x7d, 0x2a, 0x72, 0xb3, 0x23, 0x72, 0xe7, 0xfa, 0x60, 0x9e, 0x7e, 0x1b, + 0xe4, 0xa8, 0x85, 0x1d, 0xe4, 0x95, 0x26, 0x56, 0xa5, 0xf5, 0x69, 0x4d, 0x3c, 0x3d, 0x2d, 0x7c, + 0xfc, 0x5a, 0xc9, 0x7c, 0xb8, 0x3c, 0xd9, 0x10, 0x2f, 0xaa, 0x4b, 0x60, 0x31, 0xc1, 0x59, 0x43, + 0xd4, 0x0d, 0x0e, 0xab, 0x7e, 0xe6, 0x7a, 0x5e, 0xba, 0xad, 0x2b, 0x3d, 0xcb, 0x60, 0x5a, 0xe8, + 0xb1, 0x5a, 0xa1, 0x98, 0x69, 0xed, 0x06, 0x7f, 0xb1, 0xdf, 0x82, 0xcf, 0xc0, 0x9c, 0x08, 0xda, + 0x88, 0x52, 0x1d, 0x8f, 0xa6, 0x3c, 0xcb, 0xb1, 0x0d, 0x0e, 0xbd, 0x2e, 0xe3, 0x28, 0xab, 0x3e, + 0xe3, 0x1f, 0x59, 0x70, 0x33, 0x8c, 0x85, 0x17, 0x3d, 0x0e, 0xe5, 0xe4, 0xfd, 0x64, 0xff, 0xe3, + 0x7e, 0x26, 0xae, 0x71, 0x3f, 0x5b, 0xa0, 0xe8, 0x7a, 0x84, 0xb4, 0x9b, 0x62, 0x28, 0x9b, 0xfc, + 0xec, 0xd2, 0xe4, 0xaa, 0xb4, 0x9e, 0xd7, 0x60, 0x18, 0x8b, 0xcb, 0xd8, 0x05, 0x2b, 0x89, 0x8c, + 0x44, 0xf9, 0xa9, 0x30, 0x55, 0x8e, 0xa5, 0xa6, 0x0d, 0x45, 0x6e, 0x74, 0x8b, 0x65, 0x50, 0x4a, + 0xb6, 0xb1, 0xdf, 0xe3, 0x2f, 0x12, 0x58, 0x68, 0x50, 0x7c, 0xe8, 0x1b, 0xb6, 0xc5, 0x1a, 0x16, + 0x35, 0xd0, 0x91, 0xde, 0xb5, 0x88, 0xef, 0x8d, 0x6e, 0xf4, 0x0e, 0xc8, 0xdb, 0x11, 0xf0, 0xc8, + 0x46, 0xc7, 0x90, 0xa9, 0x83, 0x31, 0x9f, 0x60, 0x5d, 0x92, 0xaa, 0x15, 0xb0, 0x32, 0x94, 0x5a, + 0x94, 0x7c, 0x30, 0x20, 0x1a, 0x32, 0x49, 0x17, 0x79, 0xa2, 0xb3, 0x1b, 0x60, 0x9e, 0xfa, 0xc6, + 0x1b, 0x64, 0xb2, 0x66, 0x92, 0x7f, 0x41, 0x04, 0xea, 0x3d, 0x19, 0x5b, 0xa0, 0x48, 0x7d, 0x83, + 0x32, 0x8b, 0xf9, 0x0c, 0x45, 0xe0, 0xd9, 0x10, 0x0e, 0xaf, 0x62, 0xfd, 0x8c, 0xb1, 0xe7, 0x9a, + 0x37, 0x3d, 0x46, 0xad, 0xcf, 0xfb, 0x3b, 0x6f, 0xfa, 0xfe, 0x5e, 0xfd, 0x90, 0xb4, 0xd9, 0x5b, + 0xdd, 0x43, 0xe2, 0x72, 0xe0, 0x23, 0x30, 0xe9, 0x76, 0x74, 0x47, 0x18, 0xcb, 0x1d, 0x85, 0x7b, + 0x9f, 0xd2, 0xf3, 0x3a, 0xe1, 0x7d, 0xca, 0x41, 0x47, 0x77, 0xf6, 0x26, 0x4f, 0x7f, 0x55, 0x32, + 0x5a, 0x88, 0x87, 0x2f, 0xc0, 0x82, 0xc0, 0xb4, 0x9a, 0x63, 0x6f, 0xc0, 0xad, 0x5e, 0x4a, 0x3d, + 0xb2, 0x09, 0x69, 0x02, 0x67, 0xa2, 0xe2, 0xf8, 0xcd, 0x0c, 0xf2, 0xef, 0x2b, 0x64, 0x11, 0xaf, + 0x39, 0xd0, 0x3d, 0xdd, 0xa6, 0x91, 0x83, 0xa5, 0xe8, 0xc1, 0x70, 0x07, 0xe4, 0xdc, 0x10, 0x21, + 0xb8, 0xca, 0xca, 0xe0, 0xbf, 0x83, 0xc2, 0xcf, 0x10, 0x92, 0x05, 0x7e, 0xb4, 0x97, 0xf0, 0x8c, + 0x1e, 0xa1, 0xed, 0x3f, 0x53, 0x60, 0xa2, 0x41, 0x31, 0x7c, 0x0d, 0xf2, 0x31, 0x47, 0xbf, 0x3b, + 0xac, 0x5a, 0xc2, 0x42, 0xe5, 0xfb, 0x63, 0x80, 0x7a, 0x95, 0x82, 0x0a, 0x31, 0x8f, 0x4d, 0xab, + 0x10, 0x05, 0xa5, 0x56, 0x18, 0xe6, 0x8b, 0xd0, 0x04, 0xb3, 0x71, 0x33, 0x59, 0x4b, 0xcd, 0x8e, + 0xa0, 0xe4, 0x07, 0xe3, 0xa0, 0xfa, 0x45, 0x3c, 0x00, 0x87, 0x98, 0xc2, 0xbd, 0x94, 0x33, 0x06, + 0xa1, 0x72, 0x6d, 0x6c, 0x68, 0x54, 0x58, 0x7c, 0x97, 0xd3, 0x84, 0xc5, 0x50, 0xa9, 0xc2, 0x86, + 0x2e, 0x5f, 0x20, 0x6c, 0xc8, 0xe2, 0xa5, 0x09, 0x1b, 0x84, 0xa6, 0x0a, 0x4b, 0x5f, 0x07, 0xd8, + 0x06, 0x30, 0x7a, 0x93, 0x62, 0x23, 0x46, 0x4f, 0x06, 0x07, 0xfd, 0x63, 0x32, 0xe2, 0x53, 0x2e, + 0x4f, 0xbd, 0xbf, 0x3c, 0xd9, 0x90, 0xf6, 0xb4, 0xd3, 0xf3, 0xb2, 0x74, 0x76, 0x5e, 0x96, 0x7e, + 0x9f, 0x97, 0xa5, 0x4f, 0x17, 0xe5, 0xcc, 0xd9, 0x45, 0x39, 0xf3, 0xf3, 0xa2, 0x9c, 0x79, 0xb5, + 0x83, 0x2d, 0x76, 0xe4, 0x1b, 0x8a, 0x49, 0x6c, 0x55, 0x7c, 0x57, 0x59, 0x86, 0xb9, 0x89, 0x89, + 0xda, 0x7d, 0xa2, 0xda, 0xa4, 0xe5, 0x77, 0x10, 0xe5, 0x5f, 0x45, 0x5b, 0xdb, 0x9b, 0xe2, 0xc3, + 0x88, 0x1d, 0xbb, 0x88, 0x1a, 0xb9, 0xd0, 0x3a, 0x1e, 0xfe, 0x0d, 0x00, 0x00, 0xff, 0xff, 0x41, + 0x95, 0x49, 0x9d, 0xd9, 0x09, 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 c7012fb2d0b1..be7745d35ab2 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/v8/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v9/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 18d380e51bef..fff958c8b384 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/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" + "github.com/cosmos/ibc-go/v9/modules/core/03-connection/client/utils" + "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // 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 d5d4a6e4e066..e1a14c64e204 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/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" + clientutils "github.com/cosmos/ibc-go/v9/modules/core/02-client/client/utils" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcclient "github.com/cosmos/ibc-go/v9/modules/core/client" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // QueryConnection returns a connection end. diff --git a/modules/core/03-connection/genesis.go b/modules/core/03-connection/genesis.go index 46f214719dd4..91b6d5a9bdf4 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/v8/modules/core/03-connection/keeper" - "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v9/modules/core/03-connection/keeper" + "github.com/cosmos/ibc-go/v9/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 14fe7f83ec10..0e5cb03eadef 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/v8/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" ) // emitConnectionOpenInitEvent emits a connection open init event diff --git a/modules/core/03-connection/keeper/events_test.go b/modules/core/03-connection/keeper/events_test.go index b37f7da21474..8c718da85457 100644 --- a/modules/core/03-connection/keeper/events_test.go +++ b/modules/core/03-connection/keeper/events_test.go @@ -3,9 +3,9 @@ package keeper_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/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" + "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func (suite *KeeperTestSuite) TestMsgConnectionOpenInitEvents() { diff --git a/modules/core/03-connection/keeper/grpc_query.go b/modules/core/03-connection/keeper/grpc_query.go index 5832b1b517be..a906b0243f47 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/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" ) 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 3ffdee2eef8b..5dd2f464d589 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/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func (suite *KeeperTestSuite) TestQueryConnection() { diff --git a/modules/core/03-connection/keeper/handshake.go b/modules/core/03-connection/keeper/handshake.go index f9e96160d5e8..e43733e4ed9a 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/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + "github.com/cosmos/ibc-go/v9/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 77ce7f3f685e..f697a2cf27a1 100644 --- a/modules/core/03-connection/keeper/handshake_test.go +++ b/modules/core/03-connection/keeper/handshake_test.go @@ -5,13 +5,13 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - 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" - "github.com/cosmos/ibc-go/v8/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v9/testing/mock" ) // 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 5bbfd783fd5f..2ce0c82aa696 100644 --- a/modules/core/03-connection/keeper/keeper.go +++ b/modules/core/03-connection/keeper/keeper.go @@ -10,11 +10,11 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - 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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // 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 7f2137e1e789..7348266c8e9d 100644 --- a/modules/core/03-connection/keeper/keeper_test.go +++ b/modules/core/03-connection/keeper/keeper_test.go @@ -5,10 +5,10 @@ import ( testifysuite "github.com/stretchr/testify/suite" - "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" + "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) type KeeperTestSuite struct { diff --git a/modules/core/03-connection/keeper/migrations.go b/modules/core/03-connection/keeper/migrations.go index c120ff6c2cd0..d668687d017e 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/v8/modules/core/03-connection/migrations/v7" - "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + connectionv7 "github.com/cosmos/ibc-go/v9/modules/core/03-connection/migrations/v7" + "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" ) // 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 36907ff4f96c..6227ebb87967 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/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" + "github.com/cosmos/ibc-go/v9/modules/core/03-connection/keeper" + "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // 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 31968c304c49..76fd90cbadb0 100644 --- a/modules/core/03-connection/keeper/verify.go +++ b/modules/core/03-connection/keeper/verify.go @@ -7,12 +7,12 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - 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" - 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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/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 1f674f66f769..00fb18c7335e 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/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v9/testing" + ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" ) var defaultTimeoutHeight = clienttypes.NewHeight(1, 100000) diff --git a/modules/core/03-connection/module.go b/modules/core/03-connection/module.go index 2df00b9653d6..e499ae2b8ee8 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/v8/modules/core/03-connection/client/cli" - "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v9/modules/core/03-connection/client/cli" + "github.com/cosmos/ibc-go/v9/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 993a13f7a44e..5f6b1e12b1f4 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/v8/modules/core/03-connection/types" - host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + host "github.com/cosmos/ibc-go/v9/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 a949e12ec2cf..4362a2599abe 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/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" + "github.com/cosmos/ibc-go/v9/modules/core/03-connection/simulation" + "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/testing/simapp" ) func TestDecodeStore(t *testing.T) { diff --git a/modules/core/03-connection/simulation/genesis.go b/modules/core/03-connection/simulation/genesis.go index 04f39b426e9b..57a9a070e104 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/v8/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" ) // GenConnectionGenesis returns the default connection genesis state. diff --git a/modules/core/03-connection/types/codec_test.go b/modules/core/03-connection/types/codec_test.go index 899c258e1844..2559e1b9889f 100644 --- a/modules/core/03-connection/types/codec_test.go +++ b/modules/core/03-connection/types/codec_test.go @@ -8,8 +8,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" - ibc "github.com/cosmos/ibc-go/v8/modules/core" - "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + ibc "github.com/cosmos/ibc-go/v9/modules/core" + "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" ) func TestCodecTypeRegistration(t *testing.T) { diff --git a/modules/core/03-connection/types/connection.go b/modules/core/03-connection/types/connection.go index 2404bfa490f3..f89f295dec2b 100644 --- a/modules/core/03-connection/types/connection.go +++ b/modules/core/03-connection/types/connection.go @@ -3,9 +3,9 @@ package types import ( errorsmod "cosmossdk.io/errors" - commitmenttypes "github.com/cosmos/ibc-go/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" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" ) // NewConnectionEnd creates a new ConnectionEnd instance. diff --git a/modules/core/03-connection/types/connection.pb.go b/modules/core/03-connection/types/connection.pb.go index 9ff75f1ccf53..95178c037ae6 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/v8/modules/core/23-commitment/types" + types "github.com/cosmos/ibc-go/v9/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, 0x8c, 0xb1, 0x79, 0x63, 0x6b, 0x84, 0xb0, 0xad, 0x0b, 0xb1, 0x0a, 0xf3, 0x26, + 0xc0, 0x66, 0x2a, 0x0c, 0xb6, 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, 0xa9, 0xb8, 0x93, - 0xa8, 0x64, 0x05, 0x00, 0x00, + 0x1f, 0x85, 0xbd, 0x52, 0xfc, 0xc4, 0xad, 0xff, 0x0e, 0x00, 0x00, 0xff, 0xff, 0x47, 0x3c, 0xaa, + 0x09, 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 7400e3ab3231..0bfae042558e 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/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) var ( diff --git a/modules/core/03-connection/types/events.go b/modules/core/03-connection/types/events.go index 3f8a6eebb189..fa60da4642c5 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/v8/modules/core/exported" + ibcexported "github.com/cosmos/ibc-go/v9/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 4aa018aa1983..0ca80f89cd00 100644 --- a/modules/core/03-connection/types/expected_keepers.go +++ b/modules/core/03-connection/types/expected_keepers.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v9/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 524bd2282c49..941b441f7e1b 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/v8/modules/core/24-host" + host "github.com/cosmos/ibc-go/v9/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 390527a623d0..fb08136b22de 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, 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, + 0x32, 0x23, 0xd0, 0x68, 0x42, 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, 0x25, 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, 0x8a, 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, + 0x7f, 0xc7, 0x01, 0xa1, 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 6e5a0ce1170f..c009d6410fb2 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/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" + "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + ibctesting "github.com/cosmos/ibc-go/v9/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 0d3017135d2f..ebea9087eb7d 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/v8/modules/core/24-host" + host "github.com/cosmos/ibc-go/v9/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 075dd85a0af1..bd929d63a42b 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/v8/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v9/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 43a45807ca6c..79a741d3429f 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/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) var ( diff --git a/modules/core/03-connection/types/msgs_test.go b/modules/core/03-connection/types/msgs_test.go index e02b79db0713..60d1edb3ec1e 100644 --- a/modules/core/03-connection/types/msgs_test.go +++ b/modules/core/03-connection/types/msgs_test.go @@ -18,14 +18,14 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" - ibc "github.com/cosmos/ibc-go/v8/modules/core" - 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" + ibc "github.com/cosmos/ibc-go/v9/modules/core" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v9/testing/simapp" ) var ( diff --git a/modules/core/03-connection/types/params_test.go b/modules/core/03-connection/types/params_test.go index b9f8bf31afb5..62b42b6d71f4 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/v8/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v9/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 166b06f2bdb3..af1dd7f9b338 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/v8/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/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 054dbbb57a46..2915d37eac8c 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/v8/modules/core/02-client/types" + types "github.com/cosmos/ibc-go/v9/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{ - // 934 bytes of a gzipped FileDescriptorProto + // 935 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, 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, 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, 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, + 0xa4, 0x40, 0x67, 0xba, 0x09, 0x89, 0x5a, 0x48, 0x10, 0xa4, 0x2a, 0x24, 0x97, 0x2a, 0x18, 0x09, + 0x24, 0x2e, 0x91, 0xed, 0x9d, 0x38, 0x96, 0xb2, 0x9e, 0xed, 0x8e, 0x77, 0x51, 0x54, 0x45, 0x48, + 0xfc, 0x02, 0x24, 0x2e, 0x5c, 0x7a, 0x05, 0x89, 0x7f, 0x80, 0xb8, 0x71, 0xea, 0xb1, 0x12, 0x97, + 0x9e, 0x2a, 0x94, 0x70, 0xe5, 0x3f, 0x54, 0x9e, 0x19, 0xd7, 0xe3, 0xdd, 0x75, 0xb2, 0xbb, 0x52, + 0x6e, 0xde, 0x37, 0xef, 0xbd, 0xf9, 0xbe, 0xef, 0x3d, 0x7f, 0x5e, 0x70, 0x22, 0x3f, 0xa0, 0x01, + 0x6f, 0x33, 0x1a, 0xf0, 0x38, 0x66, 0x41, 0x12, 0xf1, 0x98, 0x76, 0xeb, 0xf4, 0x71, 0x87, 0xb5, + 0x0f, 0x49, 0xab, 0xcd, 0x13, 0x8e, 0xaf, 0x46, 0x7e, 0x40, 0xd2, 0x1c, 0x92, 0xe7, 0x90, 0x6e, + 0xdd, 0x9a, 0x0b, 0x79, 0xc8, 0x65, 0x0a, 0x4d, 0x9f, 0x54, 0xb6, 0xf5, 0x41, 0xc0, 0x45, 0x93, + 0x0b, 0xea, 0x7b, 0x82, 0xa9, 0x36, 0xb4, 0x5b, 0xf7, 0x59, 0xe2, 0xd5, 0x69, 0xcb, 0x0b, 0xa3, + 0xd8, 0x93, 0xe5, 0x2a, 0xf7, 0x46, 0x7e, 0xfb, 0x41, 0xc4, 0xe2, 0x24, 0xbd, 0x59, 0x3d, 0xe9, + 0x84, 0xc5, 0x12, 0x78, 0x06, 0x10, 0x95, 0x78, 0x3d, 0xe4, 0x3c, 0x3c, 0x60, 0xd4, 0x6b, 0x45, + 0xd4, 0x8b, 0x63, 0x9e, 0xc8, 0x6b, 0x84, 0x3e, 0x7d, 0x5b, 0x9f, 0xca, 0x5f, 0x7e, 0x67, 0x8f, + 0x7a, 0xb1, 0x26, 0xe7, 0x6c, 0xc0, 0xd5, 0xaf, 0x53, 0x90, 0x0f, 0x5e, 0x77, 0x74, 0xd9, 0xe3, + 0x0e, 0x13, 0x09, 0xbe, 0x09, 0x6f, 0xe6, 0xd7, 0xec, 0x46, 0x8d, 0x1a, 0x9a, 0x47, 0x4b, 0x33, + 0xee, 0x6c, 0x1e, 0xdc, 0x6e, 0x38, 0x7f, 0x21, 0xb8, 0xd6, 0x57, 0x2f, 0x5a, 0x3c, 0x16, 0x0c, + 0x3f, 0x04, 0xc8, 0x73, 0x65, 0x75, 0x75, 0x79, 0x81, 0x0c, 0x16, 0x93, 0xe4, 0xf5, 0x0f, 0xe3, + 0x86, 0x6b, 0x14, 0xe2, 0x39, 0xb8, 0xd0, 0x6a, 0x73, 0xbe, 0x57, 0xab, 0xcc, 0xa3, 0xa5, 0x59, + 0x57, 0xfd, 0xc0, 0x0f, 0x60, 0x56, 0x3e, 0xec, 0xee, 0xb3, 0x28, 0xdc, 0x4f, 0x6a, 0x93, 0xb2, + 0xbd, 0x65, 0xb4, 0x57, 0x3a, 0x76, 0xeb, 0x64, 0x4b, 0x66, 0x6c, 0x4e, 0x3d, 0x7b, 0x79, 0x63, + 0xc2, 0xad, 0xca, 0x2a, 0x15, 0x72, 0xbc, 0x3e, 0xf0, 0x22, 0x63, 0xff, 0x25, 0x40, 0x3e, 0x2e, + 0x0d, 0xfe, 0x16, 0x51, 0xb3, 0x25, 0xe9, 0x6c, 0x89, 0x5a, 0x11, 0x3d, 0x5b, 0xb2, 0xe3, 0x85, + 0x4c, 0xd7, 0xba, 0x46, 0xa5, 0xf3, 0x3f, 0x82, 0x5a, 0xff, 0x1d, 0x5a, 0xa1, 0x47, 0x50, 0xcd, + 0x89, 0x8a, 0x1a, 0x9a, 0x9f, 0x5c, 0xaa, 0x2e, 0x7f, 0x54, 0x26, 0xd1, 0x76, 0x83, 0xc5, 0x49, + 0xb4, 0x17, 0xb1, 0x86, 0x21, 0xb6, 0xd9, 0x00, 0x7f, 0x55, 0x00, 0x5d, 0x91, 0xa0, 0x17, 0xcf, + 0x04, 0xad, 0xc0, 0x98, 0xa8, 0xf1, 0x3d, 0x98, 0x1e, 0x51, 0x57, 0x9d, 0xef, 0xac, 0xc3, 0xbb, + 0x8a, 0xae, 0x4c, 0x1b, 0x20, 0xec, 0x3b, 0x30, 0xa3, 0x5a, 0xe4, 0x2b, 0xf5, 0x86, 0x0a, 0x6c, + 0x37, 0x9c, 0xdf, 0x10, 0xd8, 0x65, 0xe5, 0x5a, 0xb3, 0xdb, 0x70, 0xd9, 0x58, 0xcb, 0x96, 0x97, + 0xec, 0x2b, 0xe1, 0x66, 0xdc, 0x4b, 0x79, 0x7c, 0x27, 0x0d, 0x9f, 0xe7, 0xe6, 0x6c, 0xc1, 0x7b, + 0x3d, 0x53, 0x55, 0x88, 0xbf, 0x49, 0xbc, 0x84, 0x8d, 0xf4, 0x06, 0x1d, 0x23, 0x70, 0x4e, 0x6b, + 0xa5, 0x69, 0x7b, 0x70, 0x2d, 0x7a, 0x3d, 0xff, 0x5d, 0xad, 0xa0, 0x48, 0x53, 0xf4, 0x72, 0xde, + 0x1e, 0x44, 0xc0, 0x58, 0x19, 0xa3, 0xe7, 0x95, 0x68, 0x50, 0xf8, 0x3c, 0xe5, 0x7a, 0x8a, 0xe0, + 0xfd, 0x5e, 0x92, 0x29, 0xad, 0x58, 0x74, 0xc4, 0xc8, 0x92, 0xe1, 0x45, 0xb8, 0xd4, 0x66, 0xdd, + 0x48, 0xa4, 0x29, 0x71, 0xa7, 0xe9, 0xb3, 0xb6, 0x84, 0x3c, 0xe5, 0x5e, 0xcc, 0xc2, 0x8f, 0x64, + 0xb4, 0x90, 0x68, 0xc0, 0x37, 0x12, 0x35, 0xbe, 0x97, 0x08, 0x16, 0xce, 0xc0, 0xa7, 0xe7, 0xb0, + 0x01, 0xe9, 0x9a, 0xa9, 0x93, 0x82, 0xfe, 0x73, 0x44, 0x99, 0x2c, 0xc9, 0x4c, 0x96, 0x7c, 0x11, + 0x1f, 0xba, 0x17, 0x83, 0x42, 0x9b, 0xe2, 0xf6, 0x57, 0x8a, 0xdb, 0x9f, 0x0f, 0x60, 0xf2, 0xb4, + 0x01, 0x4c, 0x8d, 0x33, 0x00, 0x1b, 0xae, 0xf7, 0xf0, 0xdb, 0xf1, 0xda, 0x5e, 0x33, 0x7b, 0x2b, + 0x9d, 0xef, 0xb2, 0xd7, 0xb6, 0xef, 0x5c, 0xf3, 0x5e, 0x83, 0xe9, 0x96, 0x8c, 0x68, 0xba, 0x76, + 0x99, 0x4b, 0xe9, 0x3a, 0x9d, 0xbd, 0xfc, 0xe7, 0x0c, 0x5c, 0x90, 0x9d, 0xf1, 0x1f, 0x08, 0x20, + 0x6f, 0x8f, 0x49, 0x59, 0x83, 0xc1, 0x9f, 0x23, 0x8b, 0x0e, 0x9d, 0xaf, 0x10, 0x3b, 0x9f, 0xfe, + 0xf4, 0xcf, 0x7f, 0xbf, 0x54, 0x56, 0xf1, 0x0a, 0x3d, 0xf3, 0x23, 0x2a, 0xe8, 0x93, 0xc2, 0xd6, + 0x1d, 0xe1, 0xa7, 0x08, 0xaa, 0x86, 0xfb, 0xe0, 0x61, 0x6f, 0xcf, 0x04, 0xb5, 0xee, 0x0e, 0x5f, + 0xa0, 0xf1, 0x7e, 0x28, 0xf1, 0x2e, 0xe0, 0x9b, 0x43, 0xe0, 0xc5, 0x7f, 0x23, 0x78, 0xab, 0xcf, + 0x23, 0xf1, 0xea, 0xe9, 0x97, 0x96, 0x58, 0xb2, 0xb5, 0x36, 0x6a, 0x99, 0x46, 0xfc, 0x99, 0x44, + 0x7c, 0x0f, 0xaf, 0x95, 0x22, 0x56, 0xab, 0x5e, 0x14, 0x3a, 0x5b, 0xff, 0x23, 0xfc, 0x02, 0xc1, + 0x95, 0x81, 0xae, 0x87, 0xef, 0x0f, 0xa9, 0x5e, 0xbf, 0xe9, 0x5a, 0x9f, 0x8c, 0x53, 0xaa, 0x09, + 0x6d, 0x49, 0x42, 0x9b, 0xf8, 0xf3, 0x31, 0x56, 0x86, 0x9a, 0x9e, 0x8c, 0x7f, 0xad, 0x40, 0xad, + 0xcc, 0x4b, 0xf0, 0xfa, 0xb0, 0x10, 0x07, 0x59, 0xa4, 0xb5, 0x31, 0x66, 0xb5, 0xe6, 0xf8, 0xa3, + 0xe4, 0x78, 0x88, 0x7f, 0x18, 0x8b, 0x63, 0xd1, 0xfa, 0x68, 0x66, 0xa3, 0xf4, 0x49, 0x8f, 0x21, + 0x1f, 0x51, 0xe5, 0x56, 0xc6, 0x81, 0x0a, 0x1c, 0xe1, 0xdf, 0x11, 0x5c, 0xee, 0xb5, 0x19, 0xfc, + 0xf1, 0x90, 0xa4, 0x0a, 0xae, 0x65, 0xad, 0x8e, 0x58, 0xa5, 0x25, 0xb8, 0x25, 0x25, 0x98, 0xc7, + 0x76, 0x99, 0x04, 0xca, 0xbb, 0x36, 0xbf, 0x7d, 0x76, 0x6c, 0xa3, 0xe7, 0xc7, 0x36, 0xfa, 0xf7, + 0xd8, 0x46, 0x3f, 0x9f, 0xd8, 0x13, 0xcf, 0x4f, 0xec, 0x89, 0x17, 0x27, 0xf6, 0xc4, 0xf7, 0xeb, + 0x61, 0x94, 0xec, 0x77, 0x7c, 0x12, 0xf0, 0x26, 0xd5, 0xff, 0xf7, 0x23, 0x3f, 0xb8, 0x13, 0x72, + 0xda, 0xbd, 0x4f, 0x9b, 0xbc, 0xd1, 0x39, 0x60, 0x42, 0x35, 0xbe, 0xbb, 0x72, 0xc7, 0xe8, 0x9d, + 0x1c, 0xb6, 0x98, 0xf0, 0xa7, 0xe5, 0x27, 0x62, 0xe5, 0x55, 0x00, 0x00, 0x00, 0xff, 0xff, 0xa8, + 0x17, 0xb1, 0x6f, 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 ee4b1f2d2ea6..070ba6e6250b 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/v8/modules/core/02-client/types" + types1 "github.com/cosmos/ibc-go/v9/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{ - // 927 bytes of a gzipped FileDescriptorProto + // 928 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, 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, + 0x48, 0xad, 0x56, 0xd4, 0xde, 0xee, 0x82, 0xd8, 0x85, 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, 0x09, 0xac, 0x8c, 0x70, + 0xc0, 0x08, 0xf5, 0xb4, 0x65, 0x5e, 0xaa, 0x39, 0xaf, 0xd4, 0x33, 0x21, 0xb3, 0x13, 0x3d, 0xba, + 0x07, 0xf5, 0x3e, 0xbe, 0xe8, 0x46, 0x1d, 0x1f, 0x07, 0x84, 0xf6, 0x35, 0xb5, 0xa5, 0xec, 0xa8, + 0x76, 0x8d, 0xc7, 0x9e, 0xf2, 0x10, 0xda, 0x80, 0x0a, 0x23, 0xae, 0x87, 0x03, 0xad, 0xcc, 0xf7, + 0x21, 0xff, 0x7d, 0xb6, 0xf6, 0xcb, 0xef, 0xcd, 0xd2, 0x4f, 0xaf, 0x5f, 0xdc, 0x97, 0x81, 0xad, + 0x26, 0xdc, 0xcd, 0x6d, 0x86, 0x8d, 0x99, 0x4f, 0x3d, 0x86, 0xb7, 0xfe, 0x2a, 0x43, 0x63, 0x46, + 0x71, 0x12, 0x44, 0xd7, 0x77, 0xeb, 0x31, 0x6c, 0xf8, 0x01, 0x1e, 0x11, 0x3a, 0x64, 0x9d, 0xf1, + 0x6e, 0x62, 0x65, 0xdc, 0xb7, 0xea, 0xe1, 0x92, 0xa6, 0xd8, 0x8d, 0x44, 0x31, 0xae, 0x7d, 0xd4, + 0x47, 0x9f, 0x42, 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, 0x1f, 0x2f, + 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, 0x62, 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, 0x7c, 0x65, 0xfc, 0xe6, 0xbf, 0x0b, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/modules/core/03-connection/types/version_test.go b/modules/core/03-connection/types/version_test.go index 79a841fdb50e..e718801354c5 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/v8/modules/core/03-connection/types" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + ibctesting "github.com/cosmos/ibc-go/v9/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 202d63e92387..7fd74ef7aa26 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/v8/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v9/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 c97ee430a146..0080f5ba3450 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/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" + "github.com/cosmos/ibc-go/v9/modules/core/04-channel/client/utils" + "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" ) const ( diff --git a/modules/core/04-channel/client/cli/tx.go b/modules/core/04-channel/client/cli/tx.go index 6d4e28977fed..c904336d9f4a 100644 --- a/modules/core/04-channel/client/cli/tx.go +++ b/modules/core/04-channel/client/cli/tx.go @@ -16,8 +16,8 @@ import ( "github.com/cosmos/cosmos-sdk/version" govcli "github.com/cosmos/cosmos-sdk/x/gov/client/cli" - "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" - ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibcexported "github.com/cosmos/ibc-go/v9/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 b41ed53afbf9..44202085b6ad 100644 --- a/modules/core/04-channel/client/utils/utils.go +++ b/modules/core/04-channel/client/utils/utils.go @@ -9,11 +9,11 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/codec" - clientutils "github.com/cosmos/ibc-go/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" + clientutils "github.com/cosmos/ibc-go/v9/modules/core/02-client/client/utils" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcclient "github.com/cosmos/ibc-go/v9/modules/core/client" ) // QueryChannel returns a channel end. diff --git a/modules/core/04-channel/genesis.go b/modules/core/04-channel/genesis.go index eaccf98340b1..905b66bdd6f1 100644 --- a/modules/core/04-channel/genesis.go +++ b/modules/core/04-channel/genesis.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v8/modules/core/04-channel/keeper" - "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v9/modules/core/04-channel/keeper" + "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" ) // InitGenesis initializes the ibc channel submodule's state from a provided genesis diff --git a/modules/core/04-channel/keeper/ante.go b/modules/core/04-channel/keeper/ante.go index ac387569c68b..0fa1fe39a5b1 100644 --- a/modules/core/04-channel/keeper/ante.go +++ b/modules/core/04-channel/keeper/ante.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" ) // RecvPacketReCheckTx applies replay protection ensuring that when relay messages are diff --git a/modules/core/04-channel/keeper/ante_test.go b/modules/core/04-channel/keeper/ante_test.go index 4bc62ff2ae6e..4332788baaf4 100644 --- a/modules/core/04-channel/keeper/ante_test.go +++ b/modules/core/04-channel/keeper/ante_test.go @@ -1,8 +1,8 @@ package keeper_test import ( - "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func (suite *KeeperTestSuite) TestRecvPacketReCheckTx() { diff --git a/modules/core/04-channel/keeper/events.go b/modules/core/04-channel/keeper/events.go index 102034aae84d..0cd0df8e2afe 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/v8/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // emitChannelOpenInitEvent emits a channel open init event diff --git a/modules/core/04-channel/keeper/export_test.go b/modules/core/04-channel/keeper/export_test.go index ae68eb5e275a..bbe084b15c56 100644 --- a/modules/core/04-channel/keeper/export_test.go +++ b/modules/core/04-channel/keeper/export_test.go @@ -7,7 +7,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" ) // StartFlushing is a wrapper around startFlushing to allow the function to be directly called in tests. diff --git a/modules/core/04-channel/keeper/grpc_query.go b/modules/core/04-channel/keeper/grpc_query.go index 215c02a8da74..31e63218c7c8 100644 --- a/modules/core/04-channel/keeper/grpc_query.go +++ b/modules/core/04-channel/keeper/grpc_query.go @@ -14,11 +14,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - "github.com/cosmos/ibc-go/v8/internal/validate" - 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/v9/internal/validate" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" ) 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 0b9454141a1a..6e5365163e0d 100644 --- a/modules/core/04-channel/keeper/grpc_query_test.go +++ b/modules/core/04-channel/keeper/grpc_query_test.go @@ -5,13 +5,13 @@ import ( "github.com/cosmos/cosmos-sdk/types/query" - 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" - "github.com/cosmos/ibc-go/v8/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v9/testing/mock" ) const doesnotexist = "doesnotexist" diff --git a/modules/core/04-channel/keeper/handshake.go b/modules/core/04-channel/keeper/handshake.go index de6f3d09d13f..0105fb211b53 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/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // 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 c522f0ba31a8..35bdf3783b84 100644 --- a/modules/core/04-channel/keeper/handshake_test.go +++ b/modules/core/04-channel/keeper/handshake_test.go @@ -4,13 +4,13 @@ import ( "fmt" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/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" - "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" - "github.com/cosmos/ibc-go/v8/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v9/testing/mock" ) type testCase = struct { diff --git a/modules/core/04-channel/keeper/keeper.go b/modules/core/04-channel/keeper/keeper.go index 463c2174bb1c..a362715230e9 100644 --- a/modules/core/04-channel/keeper/keeper.go +++ b/modules/core/04-channel/keeper/keeper.go @@ -15,12 +15,12 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/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" - "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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) 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 146c87c45aa9..c6014805af62 100644 --- a/modules/core/04-channel/keeper/keeper_test.go +++ b/modules/core/04-channel/keeper/keeper_test.go @@ -8,13 +8,13 @@ import ( testifysuite "github.com/stretchr/testify/suite" - transfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" - 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" - "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" + transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v9/testing" + ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" ) // KeeperTestSuite is a testing suite to test keeper functions. diff --git a/modules/core/04-channel/keeper/migrations.go b/modules/core/04-channel/keeper/migrations.go index 2eacf49aca7c..9a382d262652 100644 --- a/modules/core/04-channel/keeper/migrations.go +++ b/modules/core/04-channel/keeper/migrations.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" ) // Migrator is a struct for handling in-place store migrations. diff --git a/modules/core/04-channel/keeper/migrations_test.go b/modules/core/04-channel/keeper/migrations_test.go index 944aac49ce14..1d2af1baa3ee 100644 --- a/modules/core/04-channel/keeper/migrations_test.go +++ b/modules/core/04-channel/keeper/migrations_test.go @@ -1,8 +1,8 @@ package keeper_test import ( - "github.com/cosmos/ibc-go/v8/modules/core/04-channel/keeper" - channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v9/modules/core/04-channel/keeper" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" ) // TestMigrateDefaultParams tests the migration for the channel params diff --git a/modules/core/04-channel/keeper/packet.go b/modules/core/04-channel/keeper/packet.go index 766eb2194cd7..f56b578096fa 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/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/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 0a5c04eb0825..97b6e5795bfa 100644 --- a/modules/core/04-channel/keeper/packet_test.go +++ b/modules/core/04-channel/keeper/packet_test.go @@ -10,15 +10,15 @@ import ( abci "github.com/cometbft/cometbft/abci/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/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" - "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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v9/testing" + ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" ) var ( diff --git a/modules/core/04-channel/keeper/timeout.go b/modules/core/04-channel/keeper/timeout.go index 683505582d1f..1f8649e0f7af 100644 --- a/modules/core/04-channel/keeper/timeout.go +++ b/modules/core/04-channel/keeper/timeout.go @@ -9,11 +9,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/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" - "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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/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 098fe9ea3e8b..126bb783764c 100644 --- a/modules/core/04-channel/keeper/timeout_test.go +++ b/modules/core/04-channel/keeper/timeout_test.go @@ -11,13 +11,13 @@ import ( abci "github.com/cometbft/cometbft/abci/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/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" - "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" - "github.com/cosmos/ibc-go/v8/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v9/testing/mock" ) // TestTimeoutPacket test the TimeoutPacket call on chainA by ensuring the timeout has passed diff --git a/modules/core/04-channel/keeper/upgrade.go b/modules/core/04-channel/keeper/upgrade.go index 2e7a86b0eb2b..5c1848f223b7 100644 --- a/modules/core/04-channel/keeper/upgrade.go +++ b/modules/core/04-channel/keeper/upgrade.go @@ -10,11 +10,11 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/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" - "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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // ChanUpgradeInit is called by a module to initiate a channel upgrade handshake with diff --git a/modules/core/04-channel/keeper/upgrade_test.go b/modules/core/04-channel/keeper/upgrade_test.go index ce9548f883ac..0f75a7df8688 100644 --- a/modules/core/04-channel/keeper/upgrade_test.go +++ b/modules/core/04-channel/keeper/upgrade_test.go @@ -7,15 +7,15 @@ import ( errorsmod "cosmossdk.io/errors" - clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" - channelkeeper "github.com/cosmos/ibc-go/v8/modules/core/04-channel/keeper" - "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" - ibctesting "github.com/cosmos/ibc-go/v8/testing" - "github.com/cosmos/ibc-go/v8/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + channelkeeper "github.com/cosmos/ibc-go/v9/modules/core/04-channel/keeper" + "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v9/testing/mock" ) func (suite *KeeperTestSuite) TestChanUpgradeInit() { diff --git a/modules/core/04-channel/module.go b/modules/core/04-channel/module.go index 938a7f10a3ee..62a3672488bf 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/v8/modules/core/04-channel/client/cli" - "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v9/modules/core/04-channel/client/cli" + "github.com/cosmos/ibc-go/v9/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 adbfc6c621de..a7eb8fa594c4 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/v8/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v9/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 bfb54b6b1e6d..df1e9127313f 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/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" + "github.com/cosmos/ibc-go/v9/modules/core/04-channel/simulation" + "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/testing/simapp" ) func TestDecodeStore(t *testing.T) { diff --git a/modules/core/04-channel/simulation/genesis.go b/modules/core/04-channel/simulation/genesis.go index 900380ac9846..0a787eab1cc8 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/v8/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v9/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 9b8c93c80aaa..45e61097bc0f 100644 --- a/modules/core/04-channel/types/acknowledgement_test.go +++ b/modules/core/04-channel/types/acknowledgement_test.go @@ -10,8 +10,8 @@ import ( abcitypes "github.com/cometbft/cometbft/abci/types" cmtstate "github.com/cometbft/cometbft/state" - "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" - ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" ) const ( diff --git a/modules/core/04-channel/types/channel.go b/modules/core/04-channel/types/channel.go index 9451910217ac..cbffb3ccc7bf 100644 --- a/modules/core/04-channel/types/channel.go +++ b/modules/core/04-channel/types/channel.go @@ -5,7 +5,7 @@ import ( errorsmod "cosmossdk.io/errors" - host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" ) // NewChannel creates a new Channel instance diff --git a/modules/core/04-channel/types/channel.pb.go b/modules/core/04-channel/types/channel.pb.go index 4ec0fc395e57..2263ee69c4ed 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/v8/modules/core/02-client/types" + types "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" io "io" math "math" math_bits "math/bits" @@ -623,7 +623,7 @@ var fileDescriptor_c3a07336710636a0 = []byte{ // 937 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x56, 0x4f, 0x6f, 0xe2, 0xc6, 0x1b, 0xc6, 0xc4, 0xfc, 0x7b, 0x93, 0x80, 0x33, 0xf9, 0xfd, 0x52, 0xcb, 0x4a, 0xc1, 0x8b, 0x5a, - 0x95, 0x4d, 0xb5, 0xb0, 0xd9, 0x56, 0xd5, 0xb6, 0xb7, 0x04, 0xbc, 0x8b, 0xb5, 0x14, 0x90, 0x81, + 0x95, 0x4d, 0xb5, 0xb0, 0xd9, 0x56, 0x55, 0xb7, 0xb7, 0x04, 0xbc, 0x8b, 0xb5, 0x14, 0x90, 0x81, 0x43, 0xf7, 0x82, 0x8c, 0x3d, 0x05, 0x6b, 0xc1, 0x43, 0xed, 0x81, 0xd5, 0xaa, 0xe7, 0x4a, 0x2b, 0x4e, 0xfd, 0x02, 0x48, 0x95, 0xfa, 0x15, 0xfa, 0x21, 0xf6, 0xb8, 0xc7, 0x3d, 0x55, 0x55, 0xf2, 0x1d, 0x7a, 0xae, 0x3c, 0x33, 0x0e, 0x10, 0x45, 0x51, 0x55, 0xa9, 0xb7, 0x9e, 0x98, 0xf7, 0x79, @@ -658,28 +658,28 @@ var fileDescriptor_c3a07336710636a0 = []byte{ 0xff, 0x0d, 0x65, 0xa1, 0xd2, 0x81, 0xc2, 0x85, 0xf3, 0xca, 0x27, 0xaf, 0xa7, 0xd8, 0x1d, 0xe3, 0x19, 0xf6, 0x29, 0x52, 0x21, 0x1d, 0xe0, 0x70, 0x31, 0xa5, 0xea, 0xff, 0xa3, 0xa2, 0x9a, 0x09, 0x4b, 0xd8, 0xe8, 0x04, 0x52, 0x38, 0x08, 0x48, 0xa0, 0x9e, 0x44, 0x42, 0xcd, 0x84, 0xc5, 0xcd, - 0x4b, 0x80, 0x6c, 0x80, 0xc3, 0x39, 0xf1, 0x43, 0x5c, 0xb6, 0x21, 0xd3, 0xe7, 0xd3, 0x44, 0x4f, - 0x21, 0x2d, 0x56, 0x26, 0xfd, 0xcd, 0x95, 0x09, 0x3e, 0x3a, 0x85, 0xdc, 0x66, 0x47, 0x49, 0x56, - 0xf8, 0x06, 0x28, 0x0f, 0xa2, 0x0b, 0x1f, 0xd8, 0xb3, 0x10, 0xbd, 0x80, 0xf8, 0x2f, 0x36, 0x14, - 0x2b, 0x14, 0x52, 0xa7, 0x77, 0xbe, 0x22, 0xa2, 0x30, 0x21, 0x96, 0x17, 0xa1, 0x02, 0x3d, 0xfb, - 0x29, 0x09, 0xa9, 0x9e, 0x78, 0xd1, 0x4a, 0xbd, 0xfe, 0x45, 0xdf, 0x18, 0x0e, 0xda, 0x66, 0xdb, - 0xec, 0x9b, 0x17, 0x2d, 0xf3, 0xa5, 0xd1, 0x18, 0x0e, 0xda, 0xbd, 0xae, 0x51, 0x37, 0x9f, 0x99, - 0x46, 0x43, 0x49, 0x68, 0x47, 0xab, 0xb5, 0x7e, 0xb8, 0x43, 0x40, 0x2a, 0x00, 0x8f, 0x8b, 0x40, - 0x45, 0xd2, 0xb2, 0xab, 0xb5, 0x2e, 0x47, 0x67, 0x54, 0x84, 0x43, 0xee, 0xe9, 0x5b, 0xdf, 0x75, - 0xba, 0x46, 0x5b, 0x49, 0x6a, 0xfb, 0xab, 0xb5, 0x9e, 0x11, 0xe6, 0x26, 0x92, 0x39, 0xf7, 0x78, - 0x24, 0xf3, 0x9c, 0xc2, 0x01, 0xf7, 0xd4, 0x5b, 0x9d, 0x9e, 0xd1, 0x50, 0x64, 0x0d, 0x56, 0x6b, - 0x3d, 0xcd, 0x2d, 0xa4, 0x43, 0x9e, 0x7b, 0x9f, 0xb5, 0x06, 0xbd, 0xa6, 0xd9, 0x7e, 0xae, 0xa4, - 0xb4, 0x83, 0xd5, 0x5a, 0xcf, 0xc6, 0x36, 0x3a, 0x83, 0xe3, 0x2d, 0x46, 0xbd, 0xf3, 0x6d, 0xb7, - 0x65, 0xf4, 0x0d, 0x25, 0xcd, 0xeb, 0xdf, 0x01, 0x35, 0xf9, 0xed, 0xaf, 0xc5, 0xc4, 0xd9, 0x6b, - 0x48, 0xb1, 0xa7, 0x1a, 0x7d, 0x02, 0x27, 0x1d, 0xab, 0x61, 0x58, 0xc3, 0x76, 0xa7, 0x6d, 0xdc, - 0xea, 0x9e, 0x15, 0x18, 0xe1, 0xa8, 0x0c, 0x05, 0xce, 0x1a, 0xb4, 0xd9, 0xaf, 0xd1, 0x50, 0x24, - 0xed, 0x70, 0xb5, 0xd6, 0x73, 0x37, 0x40, 0xd4, 0x3e, 0xe7, 0xc4, 0x0c, 0xd1, 0xbe, 0x30, 0xb9, - 0xf0, 0x65, 0xef, 0xdd, 0x55, 0x51, 0x7a, 0x7f, 0x55, 0x94, 0xfe, 0xb8, 0x2a, 0x4a, 0x3f, 0x5f, - 0x17, 0x13, 0xef, 0xaf, 0x8b, 0x89, 0x0f, 0xd7, 0xc5, 0xc4, 0xcb, 0xaf, 0xc7, 0x1e, 0x9d, 0x2c, + 0x4b, 0x80, 0x6c, 0x80, 0xc3, 0x39, 0xf1, 0x43, 0x5c, 0xb6, 0x21, 0xd3, 0xe7, 0xd3, 0x44, 0x5f, + 0x43, 0x5a, 0xac, 0x4c, 0xfa, 0x9b, 0x2b, 0x13, 0x7c, 0x74, 0x0a, 0xb9, 0xcd, 0x8e, 0x92, 0xac, + 0xf0, 0x0d, 0x50, 0x1e, 0x44, 0x17, 0x3e, 0xb0, 0x67, 0x21, 0x7a, 0x01, 0xf1, 0x5f, 0x6c, 0x28, + 0x56, 0x28, 0xa4, 0x4e, 0xef, 0x7c, 0x45, 0x44, 0x61, 0x42, 0x2c, 0x2f, 0x42, 0x05, 0x7a, 0xf6, + 0x53, 0x12, 0x52, 0x3d, 0xf1, 0xa2, 0x95, 0x7a, 0xfd, 0x8b, 0xbe, 0x31, 0x1c, 0xb4, 0xcd, 0xb6, + 0xd9, 0x37, 0x2f, 0x5a, 0xe6, 0x4b, 0xa3, 0x31, 0x1c, 0xb4, 0x7b, 0x5d, 0xa3, 0x6e, 0x3e, 0x33, + 0x8d, 0x86, 0x92, 0xd0, 0x8e, 0x56, 0x6b, 0xfd, 0x70, 0x87, 0x80, 0x54, 0x00, 0x1e, 0x17, 0x81, + 0x8a, 0xa4, 0x65, 0x57, 0x6b, 0x5d, 0x8e, 0xce, 0xa8, 0x08, 0x87, 0xdc, 0xd3, 0xb7, 0xbe, 0xeb, + 0x74, 0x8d, 0xb6, 0x92, 0xd4, 0xf6, 0x57, 0x6b, 0x3d, 0x23, 0xcc, 0x4d, 0x24, 0x73, 0xee, 0xf1, + 0x48, 0xe6, 0x39, 0x85, 0x03, 0xee, 0xa9, 0xb7, 0x3a, 0x3d, 0xa3, 0xa1, 0xc8, 0x1a, 0xac, 0xd6, + 0x7a, 0x9a, 0x5b, 0x48, 0x87, 0x3c, 0xf7, 0x3e, 0x6b, 0x0d, 0x7a, 0x4d, 0xb3, 0xfd, 0x5c, 0x49, + 0x69, 0x07, 0xab, 0xb5, 0x9e, 0x8d, 0x6d, 0x74, 0x06, 0xc7, 0x5b, 0x8c, 0x7a, 0xe7, 0xdb, 0x6e, + 0xcb, 0xe8, 0x1b, 0x4a, 0x9a, 0xd7, 0xbf, 0x03, 0x6a, 0xf2, 0xdb, 0x5f, 0x8b, 0x89, 0xb3, 0xd7, + 0x90, 0x62, 0x4f, 0x35, 0xfa, 0x04, 0x4e, 0x3a, 0x56, 0xc3, 0xb0, 0x86, 0xed, 0x4e, 0xdb, 0xb8, + 0xd5, 0x3d, 0x2b, 0x30, 0xc2, 0x51, 0x19, 0x0a, 0x9c, 0x35, 0x68, 0xb3, 0x5f, 0xa3, 0xa1, 0x48, + 0xda, 0xe1, 0x6a, 0xad, 0xe7, 0x6e, 0x80, 0xa8, 0x7d, 0xce, 0x89, 0x19, 0xa2, 0x7d, 0x61, 0x72, + 0xe1, 0xcb, 0xde, 0xbb, 0xab, 0xa2, 0xf4, 0xfe, 0xaa, 0x28, 0xfd, 0x71, 0x55, 0x94, 0x7e, 0xbe, + 0x2e, 0x26, 0xde, 0x5f, 0x17, 0x13, 0x1f, 0xae, 0x8b, 0x89, 0x97, 0x4f, 0xc7, 0x1e, 0x9d, 0x2c, 0x46, 0x55, 0x87, 0xcc, 0x6a, 0x0e, 0x09, 0x67, 0x24, 0xac, 0x79, 0x23, 0xe7, 0xd1, 0x98, 0xd4, 0x96, 0x4f, 0x6b, 0x33, 0xe2, 0x2e, 0xa6, 0x38, 0xe4, 0x9f, 0x08, 0x8f, 0xbf, 0x7c, 0x14, 0x7f, 0x73, 0xd0, 0x37, 0x73, 0x1c, 0x8e, 0xd2, 0xec, 0x1b, 0xe1, 0x8b, 0xbf, 0x02, 0x00, 0x00, 0xff, - 0xff, 0x90, 0xd1, 0xb4, 0xca, 0x94, 0x08, 0x00, 0x00, + 0xff, 0x39, 0xda, 0x3d, 0x84, 0x94, 0x08, 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 211be035fe85..d8fe010933dc 100644 --- a/modules/core/04-channel/types/channel_test.go +++ b/modules/core/04-channel/types/channel_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" ) func TestChannelValidateBasic(t *testing.T) { diff --git a/modules/core/04-channel/types/codec.go b/modules/core/04-channel/types/codec.go index 2ec3106bcf6f..1b4fbef14933 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/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // RegisterInterfaces register the ibc channel submodule interfaces to protobuf diff --git a/modules/core/04-channel/types/codec_test.go b/modules/core/04-channel/types/codec_test.go index 1941c391d6f2..8663e5de1953 100644 --- a/modules/core/04-channel/types/codec_test.go +++ b/modules/core/04-channel/types/codec_test.go @@ -8,8 +8,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" - ibc "github.com/cosmos/ibc-go/v8/modules/core" - "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + ibc "github.com/cosmos/ibc-go/v9/modules/core" + "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" ) func TestCodecTypeRegistration(t *testing.T) { diff --git a/modules/core/04-channel/types/events.go b/modules/core/04-channel/types/events.go index 3d5747a3ed1b..48fa108024a5 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/v8/modules/core/exported" + ibcexported "github.com/cosmos/ibc-go/v9/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 625381e475af..47ff95e4685d 100644 --- a/modules/core/04-channel/types/expected_keepers.go +++ b/modules/core/04-channel/types/expected_keepers.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/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // 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 65a35bc43aea..575a0423331a 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/v8/modules/core/24-host" + host "github.com/cosmos/ibc-go/v9/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 bd8723eb637d..3fcafabfae24 100644 --- a/modules/core/04-channel/types/genesis.pb.go +++ b/modules/core/04-channel/types/genesis.pb.go @@ -203,37 +203,37 @@ func init() { func init() { proto.RegisterFile("ibc/core/channel/v1/genesis.proto", fileDescriptor_cb06ec201f452595) } var fileDescriptor_cb06ec201f452595 = []byte{ - // 471 bytes of a gzipped FileDescriptorProto + // 470 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x93, 0x41, 0x6f, 0xd3, 0x30, 0x18, 0x86, 0x9b, 0xb5, 0xeb, 0x5a, 0x77, 0x9b, 0xc0, 0x03, 0x11, 0x8a, 0xc8, 0xca, 0x90, 0x50, - 0x2f, 0x8b, 0x59, 0xe1, 0xc0, 0xae, 0xe5, 0x00, 0xbd, 0xa0, 0x29, 0xbb, 0x21, 0xa1, 0x2a, 0xb1, - 0x3f, 0x32, 0xab, 0x8d, 0x1d, 0x62, 0xb7, 0xc0, 0xbf, 0xe0, 0xb7, 0xf0, 0x2b, 0x76, 0xdc, 0x91, - 0xd3, 0x84, 0xda, 0x7f, 0xc1, 0x09, 0xc5, 0x71, 0xb2, 0xa2, 0x95, 0x49, 0xbd, 0xc5, 0xdf, 0xf7, - 0xbe, 0xcf, 0xfb, 0x1e, 0xf2, 0xa1, 0x67, 0x3c, 0xa2, 0x84, 0xca, 0x0c, 0x08, 0xbd, 0x08, 0x85, - 0x80, 0x29, 0x99, 0x9f, 0x90, 0x18, 0x04, 0x28, 0xae, 0xfc, 0x34, 0x93, 0x5a, 0xe2, 0x03, 0x1e, - 0x51, 0x3f, 0x97, 0xf8, 0x56, 0xe2, 0xcf, 0x4f, 0xba, 0x0f, 0x62, 0x19, 0x4b, 0xb3, 0x27, 0xf9, - 0x57, 0x21, 0xed, 0xae, 0xa5, 0x95, 0x2e, 0x23, 0x39, 0xfa, 0xb9, 0x8d, 0x76, 0xdf, 0x15, 0xfc, - 0x73, 0x1d, 0x6a, 0xc0, 0x9f, 0x50, 0xcb, 0x2a, 0x94, 0xeb, 0xf4, 0xea, 0xfd, 0xce, 0xe0, 0x85, - 0xbf, 0x26, 0xd1, 0x1f, 0x31, 0x10, 0x9a, 0x7f, 0xe6, 0xc0, 0xde, 0x16, 0xc3, 0xe1, 0xe3, 0xcb, - 0xeb, 0xc3, 0xda, 0x9f, 0xeb, 0xc3, 0xfb, 0xb7, 0x56, 0x41, 0x85, 0xc4, 0x01, 0xba, 0x17, 0xd2, - 0x89, 0x90, 0x5f, 0xa7, 0xc0, 0x62, 0x48, 0x40, 0x68, 0xe5, 0x6e, 0x99, 0x98, 0xde, 0xda, 0x98, - 0xb3, 0x90, 0x4e, 0x40, 0x9b, 0x6a, 0xc3, 0x46, 0x1e, 0x10, 0xdc, 0xf2, 0xe3, 0xf7, 0xa8, 0x43, - 0x65, 0x92, 0x70, 0x5d, 0xe0, 0xea, 0x1b, 0xe1, 0x56, 0xad, 0x78, 0x88, 0x5a, 0x19, 0x50, 0xe0, - 0xa9, 0x56, 0x6e, 0x63, 0x23, 0x4c, 0xe5, 0xc3, 0x67, 0x68, 0x5f, 0x81, 0x60, 0x63, 0x05, 0x5f, - 0x66, 0x20, 0x28, 0x28, 0x77, 0xdb, 0x90, 0x9e, 0xdf, 0x45, 0xb2, 0x5a, 0x0b, 0xdb, 0xcb, 0x01, - 0xe5, 0xcc, 0x10, 0x33, 0xa0, 0xf3, 0x15, 0x62, 0x73, 0x63, 0x62, 0x0e, 0xb8, 0x21, 0x7e, 0x40, - 0x7b, 0x21, 0x9d, 0xac, 0x00, 0x77, 0x36, 0x05, 0xee, 0x86, 0x74, 0x72, 0xc3, 0x1b, 0xa0, 0x87, - 0x02, 0xbe, 0xe9, 0xb1, 0x75, 0x55, 0x60, 0xb7, 0xd5, 0x73, 0xfa, 0x8d, 0xe0, 0x20, 0x5f, 0xda, - 0x7f, 0xa1, 0x34, 0xe1, 0x53, 0xd4, 0x4c, 0xc3, 0x2c, 0x4c, 0x94, 0xdb, 0xee, 0x39, 0xfd, 0xce, - 0xe0, 0xc9, 0x7f, 0xc2, 0x73, 0x89, 0x0d, 0xb5, 0x86, 0x23, 0x86, 0xf6, 0xff, 0x2d, 0x85, 0x1f, - 0xa1, 0x9d, 0x54, 0x66, 0x7a, 0xcc, 0x99, 0xeb, 0xf4, 0x9c, 0x7e, 0x3b, 0x68, 0xe6, 0xcf, 0x11, - 0xc3, 0x4f, 0x11, 0x2a, 0x4b, 0x71, 0xe6, 0x6e, 0x99, 0x5d, 0xdb, 0x4e, 0x46, 0x0c, 0x77, 0x51, - 0xab, 0xea, 0x5a, 0x37, 0x5d, 0xab, 0xf7, 0xf0, 0xfc, 0x72, 0xe1, 0x39, 0x57, 0x0b, 0xcf, 0xf9, - 0xbd, 0xf0, 0x9c, 0x1f, 0x4b, 0xaf, 0x76, 0xb5, 0xf4, 0x6a, 0xbf, 0x96, 0x5e, 0xed, 0xe3, 0x69, - 0xcc, 0xf5, 0xc5, 0x2c, 0xf2, 0xa9, 0x4c, 0x08, 0x95, 0x2a, 0x91, 0x8a, 0xf0, 0x88, 0x1e, 0xc7, - 0x92, 0xcc, 0xdf, 0x90, 0x44, 0xb2, 0xd9, 0x14, 0x54, 0x71, 0x77, 0x2f, 0x5f, 0x1f, 0x97, 0xa7, - 0xa7, 0xbf, 0xa7, 0xa0, 0xa2, 0xa6, 0x39, 0xbb, 0x57, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0xaf, - 0xa9, 0x60, 0xe8, 0xe9, 0x03, 0x00, 0x00, + 0x2f, 0x8b, 0x59, 0xe1, 0xd2, 0x6b, 0x39, 0x40, 0x2f, 0x68, 0xca, 0x6e, 0x48, 0xa8, 0x4a, 0xec, + 0x8f, 0xcc, 0x6a, 0x63, 0x87, 0xd8, 0x2d, 0xf0, 0x2f, 0xf8, 0x2d, 0xfc, 0x8a, 0x1d, 0x77, 0xe4, + 0x34, 0xa1, 0xf6, 0x5f, 0x70, 0x42, 0x71, 0x9c, 0xac, 0x68, 0x05, 0xa9, 0xb7, 0xf8, 0xfb, 0xde, + 0xf7, 0x79, 0xdf, 0x43, 0x3e, 0xf4, 0x8c, 0x47, 0x94, 0x50, 0x99, 0x01, 0xa1, 0x97, 0xa1, 0x10, + 0x30, 0x23, 0x8b, 0x33, 0x12, 0x83, 0x00, 0xc5, 0x95, 0x9f, 0x66, 0x52, 0x4b, 0x7c, 0xc4, 0x23, + 0xea, 0xe7, 0x12, 0xdf, 0x4a, 0xfc, 0xc5, 0x59, 0xf7, 0x41, 0x2c, 0x63, 0x69, 0xf6, 0x24, 0xff, + 0x2a, 0xa4, 0xdd, 0x8d, 0xb4, 0xd2, 0x65, 0x24, 0x27, 0x3f, 0x76, 0xd1, 0xfe, 0xdb, 0x82, 0x7f, + 0xa1, 0x43, 0x0d, 0xf8, 0x23, 0x6a, 0x59, 0x85, 0x72, 0x9d, 0x5e, 0xbd, 0xdf, 0x19, 0xbc, 0xf0, + 0x37, 0x24, 0xfa, 0x63, 0x06, 0x42, 0xf3, 0x4f, 0x1c, 0xd8, 0x9b, 0x62, 0x38, 0x7a, 0x7c, 0x75, + 0x73, 0x5c, 0xfb, 0x7d, 0x73, 0x7c, 0xff, 0xce, 0x2a, 0xa8, 0x90, 0x38, 0x40, 0xf7, 0x42, 0x3a, + 0x15, 0xf2, 0xcb, 0x0c, 0x58, 0x0c, 0x09, 0x08, 0xad, 0xdc, 0x1d, 0x13, 0xd3, 0xdb, 0x18, 0x73, + 0x1e, 0xd2, 0x29, 0x68, 0x53, 0x6d, 0xd4, 0xc8, 0x03, 0x82, 0x3b, 0x7e, 0xfc, 0x0e, 0x75, 0xa8, + 0x4c, 0x12, 0xae, 0x0b, 0x5c, 0x7d, 0x2b, 0xdc, 0xba, 0x15, 0x8f, 0x50, 0x2b, 0x03, 0x0a, 0x3c, + 0xd5, 0xca, 0x6d, 0x6c, 0x85, 0xa9, 0x7c, 0xf8, 0x1c, 0x1d, 0x2a, 0x10, 0x6c, 0xa2, 0xe0, 0xf3, + 0x1c, 0x04, 0x05, 0xe5, 0xee, 0x1a, 0xd2, 0xf3, 0xff, 0x91, 0xac, 0xd6, 0xc2, 0x0e, 0x72, 0x40, + 0x39, 0x33, 0xc4, 0x0c, 0xe8, 0x62, 0x8d, 0xd8, 0xdc, 0x9a, 0x98, 0x03, 0x6e, 0x89, 0xef, 0xd1, + 0x41, 0x48, 0xa7, 0x6b, 0xc0, 0xbd, 0x6d, 0x81, 0xfb, 0x21, 0x9d, 0xde, 0xf2, 0x06, 0xe8, 0xa1, + 0x80, 0xaf, 0x7a, 0x62, 0x5d, 0x15, 0xd8, 0x6d, 0xf5, 0x9c, 0x7e, 0x23, 0x38, 0xca, 0x97, 0xf6, + 0x5f, 0x28, 0x4d, 0x78, 0x88, 0x9a, 0x69, 0x98, 0x85, 0x89, 0x72, 0xdb, 0x3d, 0xa7, 0xdf, 0x19, + 0x3c, 0xf9, 0x47, 0x78, 0x2e, 0xb1, 0xa1, 0xd6, 0x70, 0xc2, 0xd0, 0xe1, 0xdf, 0xa5, 0xf0, 0x23, + 0xb4, 0x97, 0xca, 0x4c, 0x4f, 0x38, 0x73, 0x9d, 0x9e, 0xd3, 0x6f, 0x07, 0xcd, 0xfc, 0x39, 0x66, + 0xf8, 0x29, 0x42, 0x65, 0x29, 0xce, 0xdc, 0x1d, 0xb3, 0x6b, 0xdb, 0xc9, 0x98, 0xe1, 0x2e, 0x6a, + 0x55, 0x5d, 0xeb, 0xa6, 0x6b, 0xf5, 0x1e, 0x5d, 0x5c, 0x2d, 0x3d, 0xe7, 0x7a, 0xe9, 0x39, 0xbf, + 0x96, 0x9e, 0xf3, 0x7d, 0xe5, 0xd5, 0xae, 0x57, 0x5e, 0xed, 0xe7, 0xca, 0xab, 0x7d, 0x18, 0xc6, + 0x5c, 0x5f, 0xce, 0x23, 0x9f, 0xca, 0x84, 0x50, 0xa9, 0x12, 0xa9, 0x08, 0x8f, 0xe8, 0x69, 0x2c, + 0xc9, 0x62, 0x48, 0x12, 0xc9, 0xe6, 0x33, 0x50, 0xc5, 0xdd, 0xbd, 0x7c, 0x7d, 0x5a, 0x9e, 0x9e, + 0xfe, 0x96, 0x82, 0x8a, 0x9a, 0xe6, 0xec, 0x5e, 0xfd, 0x09, 0x00, 0x00, 0xff, 0xff, 0x06, 0xa2, + 0xe9, 0xa6, 0xe9, 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 957c79725a7a..e2a456ec55bf 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/v8/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v9/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 a99e14d5b21b..912582f0c8df 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/v8/modules/core/24-host" + host "github.com/cosmos/ibc-go/v9/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 47885d3c9a42..16da18aee53b 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/v8/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v9/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 cccfa816d64f..891ae7383f88 100644 --- a/modules/core/04-channel/types/msgs.go +++ b/modules/core/04-channel/types/msgs.go @@ -8,10 +8,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" ) var ( diff --git a/modules/core/04-channel/types/msgs_test.go b/modules/core/04-channel/types/msgs_test.go index 884700adc3df..e660cf39bd4f 100644 --- a/modules/core/04-channel/types/msgs_test.go +++ b/modules/core/04-channel/types/msgs_test.go @@ -20,15 +20,15 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - ibc "github.com/cosmos/ibc-go/v8/modules/core" - 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" - host "github.com/cosmos/ibc-go/v8/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v8/testing" - "github.com/cosmos/ibc-go/v8/testing/mock" - "github.com/cosmos/ibc-go/v8/testing/simapp" + ibc "github.com/cosmos/ibc-go/v9/modules/core" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v9/testing/mock" + "github.com/cosmos/ibc-go/v9/testing/simapp" ) const ( diff --git a/modules/core/04-channel/types/packet.go b/modules/core/04-channel/types/packet.go index 76a8b35a34a0..0660a8f91c2a 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/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // 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 cb7e6701985d..1338f45c8d13 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/v8/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" ) func TestCommitPacket(t *testing.T) { diff --git a/modules/core/04-channel/types/params.go b/modules/core/04-channel/types/params.go index 688c55dc721f..8d4931341068 100644 --- a/modules/core/04-channel/types/params.go +++ b/modules/core/04-channel/types/params.go @@ -5,7 +5,7 @@ import ( errorsmod "cosmossdk.io/errors" - clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" ) // DefaultTimeout defines a default parameter for the channel upgrade protocol. diff --git a/modules/core/04-channel/types/query.go b/modules/core/04-channel/types/query.go index baa307d827f8..139fb77eee36 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/v8/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/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 9d3c481b71b1..aae2ab333d09 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/v8/modules/core/02-client/types" + types "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" @@ -2152,117 +2152,117 @@ func init() { func init() { proto.RegisterFile("ibc/core/channel/v1/query.proto", fileDescriptor_1034a1e9abc4cca1) } var fileDescriptor_1034a1e9abc4cca1 = []byte{ - // 1757 bytes of a gzipped FileDescriptorProto + // 1756 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x5a, 0xcf, 0x6f, 0x14, 0x47, 0x16, 0x76, 0xd9, 0xc6, 0x3f, 0x0a, 0x03, 0xa6, 0x6c, 0x2f, 0xa6, 0x6d, 0x8f, 0xcd, 0xa0, 0x5d, - 0x0c, 0x5a, 0xba, 0xb1, 0xcd, 0xb2, 0xde, 0x15, 0x8b, 0x84, 0xbd, 0xbb, 0x60, 0xb4, 0x80, 0x69, - 0x2f, 0x09, 0x20, 0x25, 0x93, 0x9e, 0x9e, 0x62, 0xdc, 0xb2, 0xa7, 0xbb, 0x99, 0xee, 0x19, 0x40, - 0x8e, 0xa3, 0x28, 0x07, 0xc2, 0x31, 0x0a, 0x8a, 0x22, 0xe5, 0x12, 0x29, 0xa7, 0x10, 0x29, 0x8a, - 0xf2, 0x17, 0xe4, 0x92, 0x03, 0xb7, 0x20, 0x91, 0x43, 0x24, 0x24, 0x12, 0x61, 0x22, 0x72, 0xcd, - 0x25, 0xe7, 0xa8, 0xab, 0x5e, 0xf5, 0x74, 0xcf, 0x74, 0xb7, 0x3d, 0x6e, 0x8f, 0x84, 0x72, 0x9b, - 0xae, 0xae, 0xf7, 0xea, 0xfb, 0xbe, 0x57, 0xf5, 0xba, 0xde, 0xb3, 0xf1, 0xb8, 0x91, 0xd7, 0x15, - 0xdd, 0x2a, 0x53, 0x45, 0x5f, 0xd6, 0x4c, 0x93, 0xae, 0x2a, 0xd5, 0x29, 0xe5, 0x56, 0x85, 0x96, - 0xef, 0xca, 0x76, 0xd9, 0x72, 0x2d, 0x32, 0x60, 0xe4, 0x75, 0xd9, 0x9b, 0x20, 0xc3, 0x04, 0xb9, - 0x3a, 0x25, 0x05, 0xac, 0x56, 0x0d, 0x6a, 0xba, 0x9e, 0x11, 0xff, 0xc5, 0xad, 0xa4, 0x63, 0xba, - 0xe5, 0x94, 0x2c, 0x47, 0xc9, 0x6b, 0x0e, 0xe5, 0xee, 0x94, 0xea, 0x54, 0x9e, 0xba, 0xda, 0x94, - 0x62, 0x6b, 0x45, 0xc3, 0xd4, 0x5c, 0xc3, 0x32, 0x61, 0xee, 0xa1, 0x28, 0x08, 0x62, 0x31, 0x3e, - 0x65, 0xb4, 0x68, 0x59, 0xc5, 0x55, 0xaa, 0x68, 0xb6, 0xa1, 0x68, 0xa6, 0x69, 0xb9, 0xcc, 0xde, - 0x81, 0xb7, 0x07, 0xe1, 0x2d, 0x7b, 0xca, 0x57, 0x6e, 0x2a, 0x9a, 0x09, 0xe8, 0xa5, 0xc1, 0xa2, - 0x55, 0xb4, 0xd8, 0x4f, 0xc5, 0xfb, 0x95, 0xb4, 0x62, 0xc5, 0x2e, 0x96, 0xb5, 0x02, 0xe5, 0x53, - 0xb2, 0x17, 0xf1, 0xc0, 0x15, 0x0f, 0xf6, 0x3c, 0x9f, 0xa0, 0xd2, 0x5b, 0x15, 0xea, 0xb8, 0xe4, - 0x00, 0xee, 0xb6, 0xad, 0xb2, 0x9b, 0x33, 0x0a, 0xc3, 0x68, 0x02, 0x4d, 0xf6, 0xaa, 0x5d, 0xde, - 0xe3, 0x42, 0x81, 0x8c, 0x61, 0x0c, 0xbe, 0xbc, 0x77, 0xed, 0xec, 0x5d, 0x2f, 0x8c, 0x2c, 0x14, - 0xb2, 0x0f, 0x11, 0x1e, 0x0c, 0xfb, 0x73, 0x6c, 0xcb, 0x74, 0x28, 0x39, 0x85, 0xbb, 0x61, 0x16, - 0x73, 0xb8, 0x7b, 0x7a, 0x54, 0x8e, 0x10, 0x5c, 0x16, 0x66, 0x62, 0x32, 0x19, 0xc4, 0xbb, 0xec, - 0xb2, 0x65, 0xdd, 0x64, 0x4b, 0xf5, 0xa9, 0xfc, 0x81, 0xcc, 0xe3, 0x3e, 0xf6, 0x23, 0xb7, 0x4c, - 0x8d, 0xe2, 0xb2, 0x3b, 0xdc, 0xc1, 0x5c, 0x4a, 0x01, 0x97, 0x3c, 0x48, 0xd5, 0x29, 0xf9, 0x3c, - 0x9b, 0x31, 0xd7, 0xf9, 0xe8, 0xd9, 0x78, 0x9b, 0xba, 0x9b, 0x59, 0xf1, 0xa1, 0xec, 0x9b, 0x61, - 0xa8, 0x8e, 0xe0, 0xfe, 0x5f, 0x8c, 0x6b, 0xb1, 0x03, 0xb4, 0x7f, 0x91, 0x79, 0xa0, 0x65, 0x2f, - 0xd0, 0x32, 0xdf, 0x37, 0x10, 0x68, 0x79, 0x51, 0x2b, 0x52, 0xb0, 0x55, 0x03, 0x96, 0xd9, 0x67, - 0x08, 0x0f, 0xd5, 0x2d, 0x00, 0x62, 0xcc, 0xe1, 0x1e, 0xe0, 0xe7, 0x0c, 0xa3, 0x89, 0x0e, 0xe6, - 0x3f, 0x4a, 0x8d, 0x85, 0x02, 0x35, 0x5d, 0xe3, 0xa6, 0x41, 0x0b, 0x42, 0x17, 0xdf, 0x8e, 0x9c, - 0x0b, 0xa1, 0x6c, 0x67, 0x28, 0x8f, 0x6c, 0x8a, 0x92, 0x03, 0x08, 0xc2, 0x24, 0xb3, 0xb8, 0xab, - 0x49, 0x15, 0x61, 0x7e, 0xf6, 0x3e, 0xc2, 0x19, 0x4e, 0xd0, 0x32, 0x4d, 0xaa, 0x7b, 0xde, 0xea, - 0xb5, 0xcc, 0x60, 0xac, 0xfb, 0x2f, 0x61, 0x2b, 0x05, 0x46, 0xea, 0xb4, 0x6e, 0xdf, 0xb6, 0xd6, - 0xbf, 0x20, 0x3c, 0x1e, 0x0b, 0xe5, 0x8f, 0xa5, 0xfa, 0x35, 0x21, 0x3a, 0xc7, 0x34, 0xcf, 0x66, - 0x2f, 0xb9, 0x9a, 0x4b, 0xd3, 0x1e, 0xde, 0x1f, 0x7d, 0x11, 0x23, 0x5c, 0x83, 0x88, 0x1a, 0x3e, - 0x60, 0xf8, 0xfa, 0xe4, 0x38, 0xd4, 0x9c, 0xe3, 0x4d, 0x81, 0x93, 0x72, 0x34, 0x8a, 0x48, 0x40, - 0xd2, 0x80, 0xcf, 0x21, 0x23, 0x6a, 0xb8, 0x95, 0x47, 0xfe, 0x4b, 0x84, 0x0f, 0x85, 0x18, 0x7a, - 0x9c, 0x4c, 0xa7, 0xe2, 0xec, 0x84, 0x7e, 0xe4, 0x08, 0xde, 0x57, 0xa6, 0x55, 0xc3, 0x31, 0x2c, - 0x33, 0x67, 0x56, 0x4a, 0x79, 0x5a, 0x66, 0x28, 0x3b, 0xd5, 0xbd, 0x62, 0xf8, 0x12, 0x1b, 0x0d, - 0x4d, 0x04, 0x3a, 0x9d, 0xe1, 0x89, 0x80, 0xf7, 0x29, 0xc2, 0xd9, 0x24, 0xbc, 0x10, 0x94, 0x7f, - 0xe1, 0x7d, 0xba, 0x78, 0x13, 0x0a, 0xc6, 0xa0, 0xcc, 0x3f, 0x19, 0xb2, 0xf8, 0x64, 0xc8, 0x67, - 0xcd, 0xbb, 0xea, 0x5e, 0x3d, 0xe4, 0x86, 0x8c, 0xe0, 0x5e, 0x08, 0xa4, 0xcf, 0xaa, 0x87, 0x0f, - 0x2c, 0x14, 0x6a, 0xd1, 0xe8, 0x48, 0x8a, 0x46, 0xe7, 0x76, 0xa2, 0x51, 0xc6, 0xa3, 0x8c, 0xdc, - 0xa2, 0xa6, 0xaf, 0x50, 0x77, 0xde, 0x2a, 0x95, 0x0c, 0xb7, 0x44, 0x4d, 0x37, 0x6d, 0x1c, 0x24, - 0xdc, 0xe3, 0x78, 0x2e, 0x4c, 0x9d, 0x42, 0x00, 0xfc, 0xe7, 0xec, 0x27, 0x08, 0x8f, 0xc5, 0x2c, - 0x0a, 0x62, 0xb2, 0x94, 0x25, 0x46, 0xd9, 0xc2, 0x7d, 0x6a, 0x60, 0xa4, 0x95, 0xdb, 0xf3, 0xd3, - 0x38, 0x70, 0x4e, 0x5a, 0x49, 0xc2, 0x79, 0xb6, 0x63, 0xdb, 0x79, 0xf6, 0xa5, 0x48, 0xf9, 0x11, - 0x08, 0xfd, 0x34, 0xbb, 0xbb, 0xa6, 0x96, 0xc8, 0xb4, 0x13, 0x91, 0x99, 0x96, 0x3b, 0xe1, 0x7b, - 0x39, 0x68, 0xf4, 0x2a, 0xa4, 0x59, 0x0b, 0x1f, 0x0c, 0x10, 0x55, 0xa9, 0x4e, 0x0d, 0xbb, 0xa5, - 0x3b, 0xf3, 0x01, 0xc2, 0x52, 0xd4, 0x8a, 0x20, 0xab, 0x84, 0x7b, 0xca, 0xde, 0x50, 0x95, 0x72, - 0xbf, 0x3d, 0xaa, 0xff, 0xdc, 0xca, 0x33, 0x7a, 0x1b, 0x12, 0x26, 0x07, 0x75, 0x56, 0x5f, 0x31, - 0xad, 0xdb, 0xab, 0xb4, 0x50, 0xa4, 0xad, 0x3e, 0xa8, 0x0f, 0x45, 0xea, 0x8b, 0x59, 0x19, 0x64, - 0x99, 0xc4, 0xfb, 0xb4, 0xf0, 0x2b, 0x38, 0xb2, 0xf5, 0xc3, 0xad, 0x3c, 0xb7, 0x2f, 0x12, 0xb1, - 0xbe, 0x2a, 0x87, 0x97, 0x9c, 0xc1, 0x23, 0x36, 0x03, 0x98, 0xab, 0x9d, 0xb5, 0x9c, 0x10, 0xdc, - 0x19, 0xee, 0x9c, 0xe8, 0x98, 0xec, 0x54, 0x0f, 0xda, 0x75, 0x27, 0x7b, 0x49, 0x4c, 0xc8, 0xfe, - 0x86, 0xf0, 0xe1, 0x44, 0x9a, 0x10, 0x93, 0xff, 0xe1, 0xfe, 0x3a, 0xf1, 0xb7, 0x9e, 0x06, 0x1a, - 0x2c, 0x5f, 0x85, 0x5c, 0xf0, 0xb1, 0xc8, 0xcb, 0x57, 0x4d, 0x71, 0xe6, 0x38, 0xe6, 0xd4, 0xa1, - 0xdd, 0x24, 0x24, 0x1d, 0x9b, 0x85, 0xe4, 0x0e, 0xa4, 0xe3, 0x08, 0x60, 0x10, 0x8c, 0x51, 0xdc, - 0x5b, 0xf3, 0x87, 0x98, 0xbf, 0xda, 0x40, 0x40, 0x93, 0xf6, 0x26, 0x35, 0xb9, 0x27, 0xd2, 0x55, - 0x6d, 0xe9, 0xb3, 0xfa, 0x4a, 0x6a, 0x41, 0x4e, 0xe0, 0x41, 0x10, 0x44, 0xd3, 0x57, 0x1a, 0x94, - 0x20, 0xb6, 0xd8, 0x79, 0x35, 0x09, 0x2a, 0x78, 0x24, 0x12, 0x47, 0x8b, 0xf9, 0x5f, 0x87, 0xbb, - 0xf2, 0x25, 0x7a, 0xc7, 0x8f, 0x87, 0xca, 0x01, 0xa4, 0xbd, 0x87, 0x7f, 0x8d, 0xf0, 0x44, 0xbc, - 0x6f, 0xe0, 0x35, 0x8d, 0x87, 0x4c, 0x7a, 0xa7, 0xb6, 0x59, 0x72, 0xc0, 0x9e, 0x2d, 0xd5, 0xa9, - 0x0e, 0x98, 0x8d, 0xb6, 0xad, 0x4c, 0x81, 0xaf, 0xc1, 0x5d, 0x2e, 0x08, 0x79, 0x89, 0x9a, 0x85, - 0xb4, 0x5a, 0x7c, 0x2e, 0x8e, 0x5e, 0xa3, 0x63, 0x10, 0xe2, 0xaf, 0x98, 0x84, 0x85, 0x70, 0xa8, - 0x59, 0x00, 0x15, 0xfa, 0xcd, 0x3a, 0xab, 0x56, 0x4a, 0xa0, 0xe2, 0x61, 0xbe, 0x11, 0x79, 0x83, - 0xe5, 0x3f, 0xe5, 0xb2, 0x55, 0x4e, 0x4b, 0xff, 0x5b, 0x04, 0xd7, 0x90, 0xb0, 0x53, 0x3f, 0xd1, - 0xee, 0xa1, 0xde, 0x00, 0x8f, 0xbd, 0xed, 0xc2, 0xad, 0xff, 0x50, 0x64, 0x96, 0x05, 0x53, 0x36, - 0x11, 0xe0, 0xf7, 0xd1, 0xc0, 0x58, 0x2b, 0xa5, 0x11, 0x5d, 0x26, 0x60, 0x91, 0x56, 0x95, 0xaf, - 0x44, 0x97, 0xc9, 0xf7, 0x07, 0x82, 0x9c, 0xc6, 0xdd, 0xd0, 0xde, 0x4a, 0xec, 0x32, 0x81, 0x19, - 0x20, 0x15, 0x26, 0xad, 0x14, 0x60, 0x04, 0xc2, 0x08, 0x75, 0xdc, 0xa2, 0x56, 0xd6, 0x4a, 0x22, - 0x57, 0x66, 0xaf, 0x40, 0x26, 0xad, 0x7b, 0x09, 0x9c, 0x66, 0x70, 0x97, 0xcd, 0x46, 0x80, 0xd2, - 0x48, 0xcc, 0x37, 0x94, 0x19, 0xc1, 0xd4, 0xe9, 0x9f, 0x47, 0xf0, 0x2e, 0xe6, 0x93, 0x7c, 0x86, - 0x70, 0x37, 0x38, 0x26, 0x93, 0x91, 0xa6, 0x11, 0xfd, 0x3f, 0xe9, 0xe8, 0x16, 0x66, 0x72, 0x7c, - 0xd9, 0xb9, 0xf7, 0x9e, 0xbc, 0x78, 0xd0, 0x7e, 0x9a, 0xfc, 0x53, 0x49, 0xe8, 0x6f, 0x3a, 0xca, - 0x5a, 0x2d, 0xa0, 0xeb, 0x8a, 0x17, 0x66, 0x47, 0x59, 0x83, 0xe0, 0xaf, 0x93, 0xfb, 0x08, 0xf7, - 0x88, 0x7e, 0x0d, 0xd9, 0x7c, 0x6d, 0xa1, 0x9c, 0x74, 0x6c, 0x2b, 0x53, 0x01, 0xe7, 0x9f, 0x19, - 0xce, 0x71, 0x32, 0x96, 0x88, 0x93, 0x7c, 0x83, 0x30, 0x69, 0x6c, 0x22, 0x91, 0x99, 0x84, 0x95, - 0xe2, 0xba, 0x5f, 0xd2, 0xc9, 0xe6, 0x8c, 0x00, 0xe8, 0x19, 0x06, 0x74, 0x96, 0x9c, 0x8a, 0x06, - 0xea, 0x1b, 0x7a, 0x9a, 0xfa, 0x0f, 0xeb, 0x35, 0x06, 0x8f, 0x3d, 0x06, 0x0d, 0x1d, 0x9c, 0x44, - 0x06, 0x71, 0xad, 0xa4, 0x44, 0x06, 0xb1, 0x4d, 0xa2, 0xec, 0x65, 0xc6, 0x60, 0x81, 0x9c, 0xdb, - 0xfe, 0x96, 0x50, 0x82, 0xad, 0x25, 0xf2, 0x61, 0x3b, 0x1e, 0x8a, 0x6c, 0x81, 0x90, 0x53, 0x9b, - 0x03, 0x8c, 0xea, 0xf1, 0x48, 0x7f, 0x6f, 0xda, 0x0e, 0xb8, 0xbd, 0x8f, 0x18, 0xb9, 0x77, 0x11, - 0x79, 0x27, 0x0d, 0xbb, 0x70, 0xbb, 0x46, 0x11, 0x7d, 0x1f, 0x65, 0xad, 0xae, 0x83, 0xb4, 0xae, - 0xf0, 0xb4, 0x13, 0x78, 0xc1, 0x07, 0xd6, 0xc9, 0x53, 0x84, 0xfb, 0xeb, 0xcb, 0x70, 0x32, 0x15, - 0xcf, 0x2b, 0xa6, 0xcd, 0x22, 0x4d, 0x37, 0x63, 0x02, 0x2a, 0xbc, 0xc5, 0x44, 0xb8, 0x41, 0xae, - 0xa5, 0xd0, 0xa0, 0xe1, 0xe2, 0xeb, 0x28, 0x6b, 0xe2, 0x23, 0xbe, 0x4e, 0x9e, 0x20, 0xbc, 0xbf, - 0xa1, 0xc9, 0x40, 0x9a, 0xc0, 0xea, 0x9f, 0xc2, 0x99, 0xa6, 0x6c, 0x80, 0xe0, 0x55, 0x46, 0xf0, - 0x32, 0xb9, 0xb8, 0xa3, 0x04, 0xc9, 0x77, 0x08, 0xef, 0x09, 0xd5, 0xf7, 0x44, 0xde, 0x0c, 0x5d, - 0xb8, 0xf5, 0x20, 0x29, 0x5b, 0x9e, 0x0f, 0x4c, 0xde, 0x60, 0x4c, 0x5e, 0x27, 0x57, 0xd3, 0x33, - 0x81, 0x6b, 0x46, 0x28, 0x4e, 0x1b, 0x08, 0x0f, 0x45, 0xd6, 0x83, 0x49, 0x47, 0x33, 0xa9, 0x9b, - 0x90, 0x74, 0x34, 0x13, 0x7b, 0x01, 0xd9, 0xeb, 0x8c, 0xe9, 0x12, 0xb9, 0x92, 0x9e, 0xa9, 0xa6, - 0xaf, 0x84, 0x58, 0xbe, 0x44, 0xf8, 0x4f, 0xd1, 0x55, 0x2f, 0x69, 0x16, 0xae, 0xbf, 0x2f, 0x67, - 0x9b, 0x37, 0x04, 0xa2, 0x37, 0x18, 0xd1, 0xff, 0x13, 0x75, 0x47, 0x88, 0x86, 0xe9, 0xdc, 0x6b, - 0xc7, 0xfb, 0x1b, 0xaa, 0xc9, 0xa4, 0x73, 0x17, 0x57, 0x13, 0x27, 0x9d, 0xbb, 0xd8, 0x72, 0x75, - 0x87, 0xd2, 0x6b, 0x54, 0x6a, 0x49, 0xa8, 0xb3, 0xd7, 0x95, 0x8a, 0x0f, 0x28, 0x67, 0x03, 0xe5, - 0x5f, 0x11, 0xde, 0x1b, 0xae, 0x29, 0x89, 0xb2, 0x15, 0x46, 0x81, 0x2a, 0x58, 0x3a, 0xb1, 0x75, - 0x03, 0xe0, 0xff, 0x36, 0xa3, 0x5f, 0x25, 0x6e, 0x6b, 0xd8, 0x87, 0x8a, 0xea, 0x10, 0x6d, 0x6f, - 0xc7, 0x93, 0xef, 0x11, 0x1e, 0x88, 0x28, 0x3a, 0x49, 0xc2, 0x35, 0x20, 0xbe, 0xfe, 0x95, 0xfe, - 0xd6, 0xa4, 0x15, 0x48, 0xb0, 0xc8, 0x24, 0xb8, 0x40, 0xce, 0xa7, 0x90, 0x20, 0x54, 0x11, 0x7a, - 0x37, 0xa2, 0xfe, 0xfa, 0xfa, 0x31, 0xe9, 0x4b, 0x19, 0x53, 0xc4, 0x26, 0x7d, 0x29, 0xe3, 0xca, - 0xd3, 0x1d, 0xf9, 0x90, 0x34, 0xd6, 0xb7, 0xde, 0x35, 0xb5, 0x2f, 0x58, 0x13, 0x92, 0xe3, 0x09, - 0x5b, 0xad, 0xb1, 0x20, 0x95, 0xe4, 0xad, 0x4e, 0xdf, 0xc1, 0xa0, 0x40, 0x9d, 0x95, 0x63, 0x55, - 0x27, 0xf9, 0x02, 0xe1, 0x6e, 0x58, 0x2a, 0xa9, 0x30, 0x09, 0x97, 0x8c, 0x49, 0x85, 0x49, 0x5d, - 0x31, 0x98, 0xbd, 0xc0, 0x20, 0xff, 0x9b, 0xcc, 0xa5, 0x87, 0x4c, 0x3e, 0x42, 0x78, 0x4f, 0xa8, - 0x3c, 0x4b, 0xfa, 0x6e, 0x47, 0x15, 0x79, 0x49, 0xdf, 0xed, 0xc8, 0xba, 0x2f, 0x7b, 0x98, 0xc1, - 0x1f, 0x23, 0x23, 0x91, 0xf0, 0x79, 0x9d, 0x37, 0xb7, 0xf4, 0xe8, 0x79, 0x06, 0x3d, 0x7e, 0x9e, - 0x41, 0x3f, 0x3d, 0xcf, 0xa0, 0x0f, 0x36, 0x32, 0x6d, 0x8f, 0x37, 0x32, 0x6d, 0x3f, 0x6c, 0x64, - 0xda, 0x6e, 0xfc, 0xa3, 0x68, 0xb8, 0xcb, 0x95, 0xbc, 0xac, 0x5b, 0x25, 0x05, 0xfe, 0x49, 0xc5, - 0xc8, 0xeb, 0xc7, 0x8b, 0x96, 0x52, 0x9d, 0x55, 0x4a, 0x56, 0xa1, 0xb2, 0x4a, 0x1d, 0xee, 0xf5, - 0xc4, 0xc9, 0xe3, 0xc2, 0xb1, 0x7b, 0xd7, 0xa6, 0x4e, 0xbe, 0x8b, 0xfd, 0xb5, 0x70, 0xe6, 0xf7, - 0x00, 0x00, 0x00, 0xff, 0xff, 0xe0, 0x50, 0xcd, 0xd6, 0x34, 0x23, 0x00, 0x00, + 0x0c, 0x5a, 0xba, 0xb1, 0xcd, 0xb2, 0xb0, 0x62, 0x91, 0xb0, 0x77, 0x17, 0x8c, 0x16, 0x30, 0xed, + 0x90, 0x00, 0x52, 0x32, 0xe9, 0xe9, 0x29, 0xc6, 0x2d, 0x7b, 0xba, 0x9b, 0xe9, 0x9e, 0x01, 0xe4, + 0x38, 0x8a, 0x72, 0x20, 0x1c, 0xa3, 0xa0, 0x28, 0x52, 0x2e, 0x91, 0x72, 0x0a, 0x91, 0xa2, 0x28, + 0x7f, 0x41, 0x2e, 0x39, 0x70, 0x0b, 0x12, 0x39, 0x44, 0x42, 0x22, 0x11, 0x26, 0x22, 0xd7, 0x5c, + 0x72, 0x8e, 0xba, 0xea, 0x55, 0x4f, 0xf7, 0x4c, 0x77, 0xdb, 0xe3, 0xf6, 0x48, 0x28, 0xb7, 0xe9, + 0xea, 0x7a, 0xaf, 0xbe, 0xef, 0x7b, 0x55, 0xaf, 0xeb, 0x3d, 0x1b, 0x8f, 0x1b, 0x79, 0x5d, 0xd1, + 0xad, 0x32, 0x55, 0xf4, 0x25, 0xcd, 0x34, 0xe9, 0x8a, 0x52, 0x9d, 0x52, 0x6e, 0x55, 0x68, 0xf9, + 0xae, 0x6c, 0x97, 0x2d, 0xd7, 0x22, 0x03, 0x46, 0x5e, 0x97, 0xbd, 0x09, 0x32, 0x4c, 0x90, 0xab, + 0x53, 0x52, 0xc0, 0x6a, 0xc5, 0xa0, 0xa6, 0xeb, 0x19, 0xf1, 0x5f, 0xdc, 0x4a, 0x3a, 0xa2, 0x5b, + 0x4e, 0xc9, 0x72, 0x94, 0xbc, 0xe6, 0x50, 0xee, 0x4e, 0xa9, 0x4e, 0xe5, 0xa9, 0xab, 0x4d, 0x29, + 0xb6, 0x56, 0x34, 0x4c, 0xcd, 0x35, 0x2c, 0x13, 0xe6, 0x1e, 0x88, 0x82, 0x20, 0x16, 0xe3, 0x53, + 0x46, 0x8b, 0x96, 0x55, 0x5c, 0xa1, 0x8a, 0x66, 0x1b, 0x8a, 0x66, 0x9a, 0x96, 0xcb, 0xec, 0x1d, + 0x78, 0xbb, 0x1f, 0xde, 0xb2, 0xa7, 0x7c, 0xe5, 0xa6, 0xa2, 0x99, 0x80, 0x5e, 0x1a, 0x2c, 0x5a, + 0x45, 0x8b, 0xfd, 0x54, 0xbc, 0x5f, 0x49, 0x2b, 0x56, 0xec, 0x62, 0x59, 0x2b, 0x50, 0x3e, 0x25, + 0x7b, 0x11, 0x0f, 0x5c, 0xf1, 0x60, 0xcf, 0xf1, 0x09, 0x2a, 0xbd, 0x55, 0xa1, 0x8e, 0x4b, 0xf6, + 0xe1, 0x6e, 0xdb, 0x2a, 0xbb, 0x39, 0xa3, 0x30, 0x8c, 0x26, 0xd0, 0x64, 0xaf, 0xda, 0xe5, 0x3d, + 0xce, 0x17, 0xc8, 0x18, 0xc6, 0xe0, 0xcb, 0x7b, 0xd7, 0xce, 0xde, 0xf5, 0xc2, 0xc8, 0x7c, 0x21, + 0xfb, 0x10, 0xe1, 0xc1, 0xb0, 0x3f, 0xc7, 0xb6, 0x4c, 0x87, 0x92, 0x13, 0xb8, 0x1b, 0x66, 0x31, + 0x87, 0x3b, 0xa7, 0x47, 0xe5, 0x08, 0xc1, 0x65, 0x61, 0x26, 0x26, 0x93, 0x41, 0xbc, 0xc3, 0x2e, + 0x5b, 0xd6, 0x4d, 0xb6, 0x54, 0x9f, 0xca, 0x1f, 0xc8, 0x1c, 0xee, 0x63, 0x3f, 0x72, 0x4b, 0xd4, + 0x28, 0x2e, 0xb9, 0xc3, 0x1d, 0xcc, 0xa5, 0x14, 0x70, 0xc9, 0x83, 0x54, 0x9d, 0x92, 0xcf, 0xb3, + 0x19, 0xb3, 0x9d, 0x8f, 0x9e, 0x8d, 0xb7, 0xa9, 0x3b, 0x99, 0x15, 0x1f, 0xca, 0xbe, 0x15, 0x86, + 0xea, 0x08, 0xee, 0xff, 0xc3, 0xb8, 0x16, 0x3b, 0x40, 0xfb, 0x37, 0x99, 0x07, 0x5a, 0xf6, 0x02, + 0x2d, 0xf3, 0x7d, 0x03, 0x81, 0x96, 0x17, 0xb4, 0x22, 0x05, 0x5b, 0x35, 0x60, 0x99, 0x7d, 0x86, + 0xf0, 0x50, 0xdd, 0x02, 0x20, 0xc6, 0x2c, 0xee, 0x01, 0x7e, 0xce, 0x30, 0x9a, 0xe8, 0x60, 0xfe, + 0xa3, 0xd4, 0x98, 0x2f, 0x50, 0xd3, 0x35, 0x6e, 0x1a, 0xb4, 0x20, 0x74, 0xf1, 0xed, 0xc8, 0xb9, + 0x10, 0xca, 0x76, 0x86, 0xf2, 0xd0, 0x86, 0x28, 0x39, 0x80, 0x20, 0x4c, 0x72, 0x12, 0x77, 0x35, + 0xa9, 0x22, 0xcc, 0xcf, 0xde, 0x47, 0x38, 0xc3, 0x09, 0x5a, 0xa6, 0x49, 0x75, 0xcf, 0x5b, 0xbd, + 0x96, 0x19, 0x8c, 0x75, 0xff, 0x25, 0x6c, 0xa5, 0xc0, 0x48, 0x9d, 0xd6, 0xed, 0x5b, 0xd6, 0xfa, + 0x57, 0x84, 0xc7, 0x63, 0xa1, 0xfc, 0xb9, 0x54, 0xbf, 0x26, 0x44, 0xe7, 0x98, 0xe6, 0xd8, 0xec, + 0x45, 0x57, 0x73, 0x69, 0xda, 0xc3, 0xfb, 0x93, 0x2f, 0x62, 0x84, 0x6b, 0x10, 0x51, 0xc3, 0xfb, + 0x0c, 0x5f, 0x9f, 0x1c, 0x87, 0x9a, 0x73, 0xbc, 0x29, 0x70, 0x52, 0x0e, 0x47, 0x11, 0x09, 0x48, + 0x1a, 0xf0, 0x39, 0x64, 0x44, 0x0d, 0xb7, 0xf2, 0xc8, 0x7f, 0x85, 0xf0, 0x81, 0x10, 0x43, 0x8f, + 0x93, 0xe9, 0x54, 0x9c, 0xed, 0xd0, 0x8f, 0x1c, 0xc2, 0x7b, 0xca, 0xb4, 0x6a, 0x38, 0x86, 0x65, + 0xe6, 0xcc, 0x4a, 0x29, 0x4f, 0xcb, 0x0c, 0x65, 0xa7, 0xba, 0x5b, 0x0c, 0x5f, 0x62, 0xa3, 0xa1, + 0x89, 0x40, 0xa7, 0x33, 0x3c, 0x11, 0xf0, 0x3e, 0x45, 0x38, 0x9b, 0x84, 0x17, 0x82, 0xf2, 0x6f, + 0xbc, 0x47, 0x17, 0x6f, 0x42, 0xc1, 0x18, 0x94, 0xf9, 0x27, 0x43, 0x16, 0x9f, 0x0c, 0xf9, 0xac, + 0x79, 0x57, 0xdd, 0xad, 0x87, 0xdc, 0x90, 0x11, 0xdc, 0x0b, 0x81, 0xf4, 0x59, 0xf5, 0xf0, 0x81, + 0xf9, 0x42, 0x2d, 0x1a, 0x1d, 0x49, 0xd1, 0xe8, 0xdc, 0x4a, 0x34, 0xca, 0x78, 0x94, 0x91, 0x5b, + 0xd0, 0xf4, 0x65, 0xea, 0xce, 0x59, 0xa5, 0x92, 0xe1, 0x96, 0xa8, 0xe9, 0xa6, 0x8d, 0x83, 0x84, + 0x7b, 0x1c, 0xcf, 0x85, 0xa9, 0x53, 0x08, 0x80, 0xff, 0x9c, 0xfd, 0x14, 0xe1, 0xb1, 0x98, 0x45, + 0x41, 0x4c, 0x96, 0xb2, 0xc4, 0x28, 0x5b, 0xb8, 0x4f, 0x0d, 0x8c, 0xb4, 0x72, 0x7b, 0x7e, 0x16, + 0x07, 0xce, 0x49, 0x2b, 0x49, 0x38, 0xcf, 0x76, 0x6c, 0x39, 0xcf, 0xbe, 0x14, 0x29, 0x3f, 0x02, + 0xa1, 0x9f, 0x66, 0x77, 0xd6, 0xd4, 0x12, 0x99, 0x76, 0x22, 0x32, 0xd3, 0x72, 0x27, 0x7c, 0x2f, + 0x07, 0x8d, 0x5e, 0x85, 0x34, 0x6b, 0xe1, 0xfd, 0x01, 0xa2, 0x2a, 0xd5, 0xa9, 0x61, 0xb7, 0x74, + 0x67, 0x3e, 0x40, 0x58, 0x8a, 0x5a, 0x11, 0x64, 0x95, 0x70, 0x4f, 0xd9, 0x1b, 0xaa, 0x52, 0xee, + 0xb7, 0x47, 0xf5, 0x9f, 0x5b, 0x79, 0x46, 0x6f, 0x43, 0xc2, 0xe4, 0xa0, 0xce, 0xea, 0xcb, 0xa6, + 0x75, 0x7b, 0x85, 0x16, 0x8a, 0xb4, 0xd5, 0x07, 0xf5, 0xa1, 0x48, 0x7d, 0x31, 0x2b, 0x83, 0x2c, + 0x93, 0x78, 0x8f, 0x16, 0x7e, 0x05, 0x47, 0xb6, 0x7e, 0xb8, 0x95, 0xe7, 0xf6, 0x45, 0x22, 0xd6, + 0x57, 0xe5, 0xf0, 0x92, 0x33, 0x78, 0xc4, 0x66, 0x00, 0x73, 0xb5, 0xb3, 0x96, 0x13, 0x82, 0x3b, + 0xc3, 0x9d, 0x13, 0x1d, 0x93, 0x9d, 0xea, 0x7e, 0xbb, 0xee, 0x64, 0x2f, 0x8a, 0x09, 0xd9, 0xdf, + 0x11, 0x3e, 0x98, 0x48, 0x13, 0x62, 0xf2, 0x7f, 0xdc, 0x5f, 0x27, 0xfe, 0xe6, 0xd3, 0x40, 0x83, + 0xe5, 0xab, 0x90, 0x0b, 0x3e, 0x11, 0x79, 0xf9, 0xaa, 0x29, 0xce, 0x1c, 0xc7, 0x9c, 0x3a, 0xb4, + 0x1b, 0x84, 0xa4, 0x63, 0xa3, 0x90, 0xdc, 0x81, 0x74, 0x1c, 0x01, 0x0c, 0x82, 0x31, 0x8a, 0x7b, + 0x6b, 0xfe, 0x10, 0xf3, 0x57, 0x1b, 0x08, 0x68, 0xd2, 0xde, 0xa4, 0x26, 0xf7, 0x44, 0xba, 0xaa, + 0x2d, 0x7d, 0x56, 0x5f, 0x4e, 0x2d, 0xc8, 0x31, 0x3c, 0x08, 0x82, 0x68, 0xfa, 0x72, 0x83, 0x12, + 0xc4, 0x16, 0x3b, 0xaf, 0x26, 0x41, 0x05, 0x8f, 0x44, 0xe2, 0x68, 0x31, 0xff, 0xeb, 0x70, 0x57, + 0xbe, 0x44, 0xef, 0xf8, 0xf1, 0x50, 0x39, 0x80, 0xb4, 0xf7, 0xf0, 0x6f, 0x10, 0x9e, 0x88, 0xf7, + 0x0d, 0xbc, 0xa6, 0xf1, 0x90, 0x49, 0xef, 0xd4, 0x36, 0x4b, 0x0e, 0xd8, 0xb3, 0xa5, 0x3a, 0xd5, + 0x01, 0xb3, 0xd1, 0xb6, 0x95, 0x29, 0xf0, 0x75, 0xb8, 0xcb, 0x05, 0x21, 0x2f, 0x52, 0xb3, 0x90, + 0x56, 0x8b, 0x2f, 0xc4, 0xd1, 0x6b, 0x74, 0x0c, 0x42, 0xfc, 0x1d, 0x93, 0xb0, 0x10, 0x0e, 0x35, + 0x0b, 0xa0, 0x42, 0xbf, 0x59, 0x67, 0xd5, 0x4a, 0x09, 0x54, 0x3c, 0xcc, 0x37, 0x22, 0x6f, 0xb0, + 0xfc, 0xb7, 0x5c, 0xb6, 0xca, 0x69, 0xe9, 0x7f, 0x87, 0xe0, 0x1a, 0x12, 0x76, 0xea, 0x27, 0xda, + 0x5d, 0xd4, 0x1b, 0xe0, 0xb1, 0xb7, 0x5d, 0xb8, 0xf5, 0x1f, 0x88, 0xcc, 0xb2, 0x60, 0xca, 0x26, + 0x02, 0xfc, 0x3e, 0x1a, 0x18, 0x6b, 0xa5, 0x34, 0xa2, 0xcb, 0x04, 0x2c, 0xd2, 0xaa, 0xf2, 0xb5, + 0xe8, 0x32, 0xf9, 0xfe, 0x40, 0x90, 0xd3, 0xb8, 0x1b, 0xda, 0x5b, 0x89, 0x5d, 0x26, 0x30, 0x03, + 0xa4, 0xc2, 0xa4, 0x95, 0x02, 0x8c, 0x40, 0x18, 0xa1, 0x8e, 0x5b, 0xd0, 0xca, 0x5a, 0x49, 0xe4, + 0xca, 0xec, 0x15, 0xc8, 0xa4, 0x75, 0x2f, 0x81, 0xd3, 0x0c, 0xee, 0xb2, 0xd9, 0x08, 0x50, 0x1a, + 0x89, 0xf9, 0x86, 0x32, 0x23, 0x98, 0x3a, 0xfd, 0xcb, 0x08, 0xde, 0xc1, 0x7c, 0x92, 0xcf, 0x11, + 0xee, 0x06, 0xc7, 0x64, 0x32, 0xd2, 0x34, 0xa2, 0xff, 0x27, 0x1d, 0xde, 0xc4, 0x4c, 0x8e, 0x2f, + 0x3b, 0xfb, 0xfe, 0x93, 0x17, 0x0f, 0xda, 0x4f, 0x93, 0x7f, 0x29, 0x09, 0xfd, 0x4d, 0x47, 0x59, + 0xad, 0x05, 0x74, 0x4d, 0xf1, 0xc2, 0xec, 0x28, 0xab, 0x10, 0xfc, 0x35, 0x72, 0x1f, 0xe1, 0x1e, + 0xd1, 0xaf, 0x21, 0x1b, 0xaf, 0x2d, 0x94, 0x93, 0x8e, 0x6c, 0x66, 0x2a, 0xe0, 0xfc, 0x2b, 0xc3, + 0x39, 0x4e, 0xc6, 0x12, 0x71, 0x92, 0x6f, 0x11, 0x26, 0x8d, 0x4d, 0x24, 0x32, 0x93, 0xb0, 0x52, + 0x5c, 0xf7, 0x4b, 0x3a, 0xde, 0x9c, 0x11, 0x00, 0x3d, 0xc3, 0x80, 0x9e, 0x24, 0x27, 0xa2, 0x81, + 0xfa, 0x86, 0x9e, 0xa6, 0xfe, 0xc3, 0x5a, 0x8d, 0xc1, 0x63, 0x8f, 0x41, 0x43, 0x07, 0x27, 0x91, + 0x41, 0x5c, 0x2b, 0x29, 0x91, 0x41, 0x6c, 0x93, 0x28, 0x7b, 0x99, 0x31, 0x98, 0x27, 0xe7, 0xb6, + 0xbe, 0x25, 0x94, 0x60, 0x6b, 0x89, 0x7c, 0xd4, 0x8e, 0x87, 0x22, 0x5b, 0x20, 0xe4, 0xc4, 0xc6, + 0x00, 0xa3, 0x7a, 0x3c, 0xd2, 0x3f, 0x9b, 0xb6, 0x03, 0x6e, 0x1f, 0x20, 0x46, 0xee, 0x3d, 0x44, + 0xde, 0x4d, 0xc3, 0x2e, 0xdc, 0xae, 0x51, 0x44, 0xdf, 0x47, 0x59, 0xad, 0xeb, 0x20, 0xad, 0x29, + 0x3c, 0xed, 0x04, 0x5e, 0xf0, 0x81, 0x35, 0xf2, 0x14, 0xe1, 0xfe, 0xfa, 0x32, 0x9c, 0x4c, 0xc5, + 0xf3, 0x8a, 0x69, 0xb3, 0x48, 0xd3, 0xcd, 0x98, 0x80, 0x0a, 0x6f, 0x33, 0x11, 0x6e, 0x90, 0x6b, + 0x29, 0x34, 0x68, 0xb8, 0xf8, 0x3a, 0xca, 0xaa, 0xf8, 0x88, 0xaf, 0x91, 0x27, 0x08, 0xef, 0x6d, + 0x68, 0x32, 0x90, 0x26, 0xb0, 0xfa, 0xa7, 0x70, 0xa6, 0x29, 0x1b, 0x20, 0x78, 0x95, 0x11, 0xbc, + 0x4c, 0x2e, 0x6e, 0x2b, 0x41, 0xf2, 0x3d, 0xc2, 0xbb, 0x42, 0xf5, 0x3d, 0x91, 0x37, 0x42, 0x17, + 0x6e, 0x3d, 0x48, 0xca, 0xa6, 0xe7, 0x03, 0x93, 0x37, 0x19, 0x93, 0x37, 0xc8, 0xd5, 0xf4, 0x4c, + 0xe0, 0x9a, 0x11, 0x8a, 0xd3, 0x3a, 0xc2, 0x43, 0x91, 0xf5, 0x60, 0xd2, 0xd1, 0x4c, 0xea, 0x26, + 0x24, 0x1d, 0xcd, 0xc4, 0x5e, 0x40, 0xf6, 0x3a, 0x63, 0xba, 0x48, 0xae, 0xa4, 0x67, 0xaa, 0xe9, + 0xcb, 0x21, 0x96, 0x2f, 0x11, 0xfe, 0x4b, 0x74, 0xd5, 0x4b, 0x9a, 0x85, 0xeb, 0xef, 0xcb, 0x93, + 0xcd, 0x1b, 0x02, 0xd1, 0x1b, 0x8c, 0xe8, 0x6b, 0x44, 0xdd, 0x16, 0xa2, 0x61, 0x3a, 0xf7, 0xda, + 0xf1, 0xde, 0x86, 0x6a, 0x32, 0xe9, 0xdc, 0xc5, 0xd5, 0xc4, 0x49, 0xe7, 0x2e, 0xb6, 0x5c, 0xdd, + 0xa6, 0xf4, 0x1a, 0x95, 0x5a, 0x12, 0xea, 0xec, 0x35, 0xa5, 0xe2, 0x03, 0xca, 0xd9, 0x40, 0xf9, + 0x37, 0x84, 0x77, 0x87, 0x6b, 0x4a, 0xa2, 0x6c, 0x86, 0x51, 0xa0, 0x0a, 0x96, 0x8e, 0x6d, 0xde, + 0x00, 0xf8, 0xbf, 0xc3, 0xe8, 0x57, 0x89, 0xdb, 0x1a, 0xf6, 0xa1, 0xa2, 0x3a, 0x44, 0xdb, 0xdb, + 0xf1, 0xe4, 0x07, 0x84, 0x07, 0x22, 0x8a, 0x4e, 0x92, 0x70, 0x0d, 0x88, 0xaf, 0x7f, 0xa5, 0x7f, + 0x34, 0x69, 0x05, 0x12, 0x2c, 0x30, 0x09, 0x2e, 0x90, 0xf3, 0x29, 0x24, 0x08, 0x55, 0x84, 0xde, + 0x8d, 0xa8, 0xbf, 0xbe, 0x7e, 0x4c, 0xfa, 0x52, 0xc6, 0x14, 0xb1, 0x49, 0x5f, 0xca, 0xb8, 0xf2, + 0x74, 0x5b, 0x3e, 0x24, 0x8d, 0xf5, 0xad, 0x77, 0x4d, 0xed, 0x0b, 0xd6, 0x84, 0xe4, 0x68, 0xc2, + 0x56, 0x6b, 0x2c, 0x48, 0x25, 0x79, 0xb3, 0xd3, 0xb7, 0x31, 0x28, 0x50, 0x67, 0xe5, 0x58, 0xd5, + 0x49, 0xbe, 0x44, 0xb8, 0x1b, 0x96, 0x4a, 0x2a, 0x4c, 0xc2, 0x25, 0x63, 0x52, 0x61, 0x52, 0x57, + 0x0c, 0x66, 0x2f, 0x30, 0xc8, 0xff, 0x21, 0xb3, 0xe9, 0x21, 0x93, 0x8f, 0x11, 0xde, 0x15, 0x2a, + 0xcf, 0x92, 0xbe, 0xdb, 0x51, 0x45, 0x5e, 0xd2, 0x77, 0x3b, 0xb2, 0xee, 0xcb, 0x1e, 0x64, 0xf0, + 0xc7, 0xc8, 0x48, 0x24, 0x7c, 0x5e, 0xe7, 0xcd, 0x2e, 0x3e, 0x7a, 0x9e, 0x41, 0x8f, 0x9f, 0x67, + 0xd0, 0xcf, 0xcf, 0x33, 0xe8, 0xc3, 0xf5, 0x4c, 0xdb, 0xe3, 0xf5, 0x4c, 0xdb, 0x8f, 0xeb, 0x99, + 0xb6, 0x1b, 0xa7, 0x8a, 0x86, 0xbb, 0x54, 0xc9, 0xcb, 0xba, 0x55, 0x52, 0xe0, 0x9f, 0x54, 0x8c, + 0xbc, 0x7e, 0xb4, 0x68, 0x29, 0xd5, 0x53, 0x4a, 0xc9, 0x2a, 0x54, 0x56, 0xa8, 0xc3, 0xbd, 0x1e, + 0x3b, 0x7e, 0x54, 0x38, 0x76, 0xef, 0xda, 0xd4, 0xc9, 0x77, 0xb1, 0xbf, 0x16, 0xce, 0xfc, 0x11, + 0x00, 0x00, 0xff, 0xff, 0x49, 0x5b, 0x44, 0x98, 0x34, 0x23, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/modules/core/04-channel/types/timeout.go b/modules/core/04-channel/types/timeout.go index dc51c31a78a2..47265d5b3a92 100644 --- a/modules/core/04-channel/types/timeout.go +++ b/modules/core/04-channel/types/timeout.go @@ -3,7 +3,7 @@ package types import ( errorsmod "cosmossdk.io/errors" - clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" ) // NewTimeout returns a new Timeout instance. diff --git a/modules/core/04-channel/types/timeout_test.go b/modules/core/04-channel/types/timeout_test.go index add2c3c876cb..8e564e56abcd 100644 --- a/modules/core/04-channel/types/timeout_test.go +++ b/modules/core/04-channel/types/timeout_test.go @@ -3,8 +3,8 @@ package types_test import ( errorsmod "cosmossdk.io/errors" - clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" ) func (suite *TypesTestSuite) TestIsValid() { diff --git a/modules/core/04-channel/types/tx.pb.go b/modules/core/04-channel/types/tx.pb.go index a68bd9534576..71157b18e4bc 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/v8/modules/core/02-client/types" + types "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" @@ -1678,128 +1678,128 @@ var fileDescriptor_bc4637e0ac3fc7b7 = []byte{ // 1975 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5a, 0xcf, 0x6f, 0xdb, 0xc8, 0x15, 0x36, 0xf5, 0x33, 0x7e, 0x4e, 0xd6, 0x0a, 0xe5, 0xc4, 0x32, 0x6d, 0x4b, 0x8a, 0x5a, 0x6c, - 0xbc, 0x6e, 0x22, 0xad, 0xbd, 0x49, 0xd1, 0x0d, 0x16, 0x68, 0x1d, 0x55, 0xe9, 0x1a, 0x88, 0x63, - 0x83, 0xb2, 0x8a, 0x76, 0xb7, 0xa8, 0x20, 0x53, 0x13, 0x8a, 0x90, 0x44, 0x72, 0x49, 0x4a, 0xbb, - 0x2e, 0xd0, 0x62, 0xd1, 0x53, 0x90, 0xc3, 0xa2, 0x05, 0xf6, 0x1a, 0xa0, 0x45, 0xff, 0x81, 0x3d, - 0xf7, 0xc7, 0xa1, 0xb7, 0x3d, 0x15, 0x7b, 0x5c, 0x14, 0xe8, 0xa2, 0x48, 0x0e, 0xb9, 0xf4, 0x2f, - 0x28, 0x50, 0xa0, 0xe0, 0xcc, 0x90, 0xa2, 0xc8, 0xa1, 0x44, 0x59, 0xaa, 0xd1, 0x9b, 0x38, 0xf3, - 0xcd, 0x7b, 0x6f, 0xbe, 0xef, 0xcd, 0xe3, 0xcc, 0x50, 0xb0, 0xa5, 0x9c, 0x49, 0x15, 0x49, 0x33, - 0x50, 0x45, 0xea, 0xb4, 0x54, 0x15, 0xf5, 0x2a, 0xc3, 0xbd, 0x8a, 0xf5, 0x49, 0x59, 0x37, 0x34, - 0x4b, 0xe3, 0xb3, 0xca, 0x99, 0x54, 0xb6, 0x7b, 0xcb, 0xb4, 0xb7, 0x3c, 0xdc, 0x13, 0xd6, 0x64, - 0x4d, 0xd6, 0x70, 0x7f, 0xc5, 0xfe, 0x45, 0xa0, 0xc2, 0xba, 0xa4, 0x99, 0x7d, 0xcd, 0xac, 0xf4, - 0x4d, 0xd9, 0x36, 0xd1, 0x37, 0x65, 0xda, 0x51, 0x18, 0x79, 0xe8, 0x29, 0x48, 0xb5, 0xec, 0x5e, - 0xf2, 0x8b, 0x02, 0x6e, 0xb1, 0x42, 0x70, 0xfc, 0x4d, 0x80, 0x0c, 0x74, 0xd9, 0x68, 0xb5, 0x11, - 0x81, 0x94, 0x3e, 0xe7, 0x80, 0x3f, 0x32, 0xe5, 0x2a, 0xe9, 0x3f, 0xd6, 0x91, 0x7a, 0xa8, 0x2a, - 0x16, 0xbf, 0x0e, 0x69, 0x5d, 0x33, 0xac, 0xa6, 0xd2, 0xce, 0x71, 0x45, 0x6e, 0x67, 0x59, 0x4c, - 0xd9, 0x8f, 0x87, 0x6d, 0xfe, 0x3d, 0x48, 0x53, 0x5b, 0xb9, 0x58, 0x91, 0xdb, 0x59, 0xd9, 0xdf, - 0x2a, 0x33, 0x26, 0x5b, 0xa6, 0xf6, 0x1e, 0x26, 0xbe, 0xfc, 0xa6, 0xb0, 0x24, 0x3a, 0x43, 0xf8, - 0x9b, 0x90, 0x32, 0x15, 0x59, 0x45, 0x46, 0x2e, 0x4e, 0xac, 0x92, 0xa7, 0x07, 0xab, 0xcf, 0x7e, - 0x57, 0x58, 0xfa, 0xf5, 0xeb, 0x2f, 0x76, 0x69, 0x43, 0xe9, 0x43, 0x10, 0x82, 0x51, 0x89, 0xc8, - 0xd4, 0x35, 0xd5, 0x44, 0xfc, 0x36, 0x00, 0xb5, 0x38, 0x0a, 0x70, 0x99, 0xb6, 0x1c, 0xb6, 0xf9, - 0x1c, 0xa4, 0x87, 0xc8, 0x30, 0x15, 0x4d, 0xc5, 0x31, 0x2e, 0x8b, 0xce, 0xe3, 0x83, 0x84, 0xed, - 0xa7, 0xf4, 0x4d, 0x0c, 0xae, 0x8f, 0x5b, 0x3f, 0x35, 0xce, 0xc3, 0xa7, 0xbc, 0x0f, 0x59, 0xdd, - 0x40, 0x43, 0x45, 0x1b, 0x98, 0x4d, 0x8f, 0x5b, 0x6c, 0xfa, 0x61, 0x2c, 0xc7, 0x89, 0xd7, 0x9d, - 0xee, 0xaa, 0x1b, 0x82, 0x87, 0xa6, 0xf8, 0xec, 0x34, 0xed, 0xc1, 0x9a, 0xa4, 0x0d, 0x54, 0x0b, - 0x19, 0x7a, 0xcb, 0xb0, 0xce, 0x9b, 0xce, 0x6c, 0x12, 0x38, 0xae, 0xac, 0xb7, 0xef, 0xc7, 0xa4, - 0xcb, 0xa6, 0x44, 0x37, 0x34, 0xed, 0x69, 0x53, 0x51, 0x15, 0x2b, 0x97, 0x2c, 0x72, 0x3b, 0x57, - 0xc5, 0x65, 0xdc, 0x82, 0xf5, 0xac, 0xc2, 0x55, 0xd2, 0xdd, 0x41, 0x8a, 0xdc, 0xb1, 0x72, 0x29, - 0x1c, 0x94, 0xe0, 0x09, 0x8a, 0xa4, 0xd6, 0x70, 0xaf, 0xfc, 0x3e, 0x46, 0xd0, 0x90, 0x56, 0xf0, - 0x28, 0xd2, 0xe4, 0x51, 0x2f, 0x3d, 0x59, 0xbd, 0x0f, 0x60, 0x23, 0xc0, 0xaf, 0x2b, 0x9e, 0x47, - 0x1d, 0x6e, 0x4c, 0x1d, 0x9f, 0xac, 0x31, 0x9f, 0xac, 0x54, 0xbc, 0xbf, 0x06, 0xc4, 0x3b, 0x90, - 0xba, 0xe1, 0xe2, 0x4d, 0xb6, 0xc9, 0x7f, 0x17, 0xd6, 0xc7, 0x98, 0xf6, 0x60, 0x49, 0x86, 0xde, - 0xf0, 0x76, 0x8f, 0xf4, 0xbd, 0x80, 0x42, 0x9b, 0x40, 0xf4, 0x68, 0x5a, 0xc6, 0x39, 0x15, 0xe8, - 0x0a, 0x6e, 0xb0, 0x93, 0xef, 0x72, 0xf5, 0xd9, 0xf4, 0xeb, 0x73, 0x20, 0x75, 0x1d, 0x7d, 0x4a, - 0x7f, 0xe7, 0xe0, 0xc6, 0x78, 0x6f, 0x55, 0x53, 0x9f, 0x2a, 0x46, 0xff, 0xc2, 0x24, 0xbb, 0x33, - 0x6f, 0x49, 0x5d, 0x4c, 0xab, 0x33, 0x73, 0x5b, 0x39, 0xff, 0xcc, 0x13, 0xf3, 0xcd, 0x3c, 0x39, - 0x79, 0xe6, 0x05, 0xd8, 0x66, 0xce, 0xcd, 0x9d, 0xfd, 0x10, 0xb2, 0x23, 0x40, 0xb5, 0xa7, 0x99, - 0x68, 0x72, 0x3d, 0x9c, 0x32, 0xf5, 0xc8, 0x05, 0x6f, 0x1b, 0x36, 0x19, 0x7e, 0xdd, 0xb0, 0x7e, - 0x1f, 0x83, 0x9b, 0xbe, 0xfe, 0x79, 0x55, 0x19, 0xaf, 0x18, 0xf1, 0x69, 0x15, 0x63, 0x91, 0xba, - 0xf0, 0x0f, 0x61, 0x7b, 0x6c, 0xf9, 0xd0, 0x77, 0x52, 0xd3, 0x44, 0x1f, 0x0d, 0x90, 0x2a, 0x21, - 0x9c, 0xff, 0x09, 0x71, 0xd3, 0x0b, 0x6a, 0x10, 0x4c, 0x9d, 0x42, 0x82, 0x14, 0x16, 0x21, 0xcf, - 0xa6, 0xc8, 0x65, 0xf1, 0x15, 0x07, 0xd7, 0x8e, 0x4c, 0x59, 0x44, 0xd2, 0xf0, 0xa4, 0x25, 0x75, - 0x91, 0xc5, 0xbf, 0x0b, 0x29, 0x1d, 0xff, 0xc2, 0xdc, 0xad, 0xec, 0x6f, 0x32, 0xcb, 0x34, 0x01, - 0xd3, 0x09, 0xd2, 0x01, 0xfc, 0x5b, 0x90, 0x21, 0x04, 0x49, 0x5a, 0xbf, 0xaf, 0x58, 0x7d, 0xa4, - 0x5a, 0x98, 0xe4, 0xab, 0xe2, 0x2a, 0x6e, 0xaf, 0xba, 0xcd, 0x01, 0x2e, 0xe3, 0xf3, 0x71, 0x99, - 0x98, 0x9c, 0x4a, 0x3f, 0xc7, 0xeb, 0x77, 0x34, 0x49, 0xb7, 0xf2, 0x7e, 0x1f, 0x52, 0x06, 0x32, - 0x07, 0x3d, 0x32, 0xd9, 0x37, 0xf6, 0x6f, 0x33, 0x27, 0xeb, 0xc0, 0x45, 0x0c, 0x3d, 0x3d, 0xd7, - 0x91, 0x48, 0x87, 0xd1, 0x0a, 0xfc, 0x59, 0x0c, 0xe0, 0xc8, 0x94, 0x4f, 0x95, 0x3e, 0xd2, 0x06, - 0x8b, 0xa1, 0x70, 0xa0, 0x1a, 0x48, 0x42, 0xca, 0x10, 0xb5, 0xc7, 0x28, 0x6c, 0xb8, 0xcd, 0x8b, - 0xa1, 0xf0, 0x0e, 0xf0, 0x2a, 0xfa, 0xc4, 0x72, 0xd3, 0xac, 0x69, 0x20, 0x69, 0x88, 0xe9, 0x4c, - 0x88, 0x19, 0xbb, 0xc7, 0x49, 0x2e, 0x9b, 0xbc, 0xe8, 0x45, 0xe5, 0x43, 0xbc, 0x85, 0xa2, 0x7c, - 0x2c, 0x9a, 0xed, 0x7f, 0x93, 0xf7, 0x1d, 0xb5, 0x7e, 0xac, 0xe2, 0xc4, 0xbe, 0x24, 0xd2, 0x0b, - 0xb0, 0x42, 0x53, 0xdc, 0x76, 0x4a, 0x6b, 0x04, 0xa9, 0x1a, 0x24, 0x8c, 0x85, 0x14, 0x09, 0xb6, - 0x2a, 0xc9, 0xa9, 0xaa, 0xa4, 0x66, 0x2b, 0x29, 0xe9, 0x0b, 0x94, 0x94, 0x33, 0xfc, 0xa2, 0x1c, - 0xe7, 0x7e, 0xd1, 0x02, 0x3f, 0x8b, 0xe1, 0xf4, 0x39, 0x90, 0xba, 0xaa, 0xf6, 0x71, 0x0f, 0xb5, - 0x65, 0x84, 0x6b, 0xc6, 0x1c, 0x0a, 0xef, 0xc0, 0x6a, 0x6b, 0xdc, 0x9a, 0x23, 0xb0, 0xaf, 0x79, - 0x24, 0xb0, 0x3d, 0xb0, 0x3d, 0x26, 0xf0, 0x81, 0xdd, 0x72, 0xc9, 0x6f, 0x67, 0x09, 0xef, 0xfa, - 0x7d, 0x4c, 0x2c, 0x9a, 0xef, 0x3f, 0x8e, 0xed, 0x6f, 0x68, 0x0a, 0xcc, 0xf5, 0x92, 0xff, 0x01, - 0xa4, 0x9e, 0x2a, 0xa8, 0xd7, 0x36, 0x69, 0x55, 0x2a, 0x31, 0x03, 0xa3, 0x9e, 0x1e, 0x61, 0xa4, - 0xa3, 0x18, 0x19, 0x17, 0xbd, 0xb6, 0x7f, 0xc6, 0x79, 0x37, 0x30, 0x9e, 0xe0, 0x5d, 0x96, 0xde, - 0x83, 0x34, 0x4d, 0x7d, 0x9a, 0x38, 0x5b, 0x93, 0xa2, 0x71, 0x4e, 0x1e, 0x74, 0x88, 0x5d, 0x1c, - 0x02, 0x0b, 0x27, 0x86, 0x17, 0xce, 0xea, 0xc0, 0xb7, 0x58, 0x08, 0x9b, 0xff, 0x89, 0xc3, 0x5a, - 0x20, 0xa0, 0x89, 0xc7, 0xa9, 0x29, 0x64, 0xfe, 0x08, 0x8a, 0xba, 0xa1, 0xe9, 0x9a, 0x89, 0xda, - 0xee, 0x1a, 0x96, 0x34, 0x55, 0x45, 0x92, 0xa5, 0x68, 0x6a, 0xb3, 0xa3, 0xe9, 0x36, 0xcd, 0xf1, - 0x9d, 0x65, 0x71, 0xdb, 0xc1, 0x51, 0xaf, 0x55, 0x17, 0xf5, 0xbe, 0xa6, 0x9b, 0x7c, 0x07, 0x36, - 0x99, 0x05, 0x81, 0x4a, 0x95, 0x98, 0x51, 0xaa, 0x0d, 0x46, 0xe1, 0x20, 0x80, 0xe9, 0xa5, 0x27, - 0x39, 0xb5, 0xf4, 0xf0, 0xdf, 0x82, 0x6b, 0xb4, 0xd4, 0xd2, 0x63, 0x63, 0x0a, 0xaf, 0x45, 0xb2, - 0xfa, 0x28, 0xbb, 0x23, 0x90, 0xa3, 0x70, 0xda, 0x03, 0xa2, 0x16, 0x03, 0x4b, 0xf6, 0xca, 0x7c, - 0x4b, 0x76, 0x79, 0x72, 0x42, 0xfe, 0x8d, 0x83, 0x2d, 0x96, 0xfe, 0x97, 0x9e, 0x8f, 0x9e, 0xf2, - 0x10, 0x9f, 0xa7, 0x3c, 0xfc, 0x23, 0xc6, 0x48, 0xe8, 0x79, 0x8e, 0x98, 0x0d, 0xdf, 0x51, 0xd1, - 0x61, 0x23, 0x1e, 0x99, 0x8d, 0x2c, 0x23, 0x71, 0x82, 0x09, 0x93, 0x88, 0x92, 0x30, 0xc9, 0x08, - 0x09, 0xf3, 0xbf, 0x3d, 0x7b, 0x22, 0x46, 0xbe, 0x78, 0x8e, 0x9f, 0x8b, 0xaa, 0xf2, 0x7f, 0x8a, - 0x43, 0x2e, 0xe0, 0x67, 0xde, 0x23, 0xd3, 0x4f, 0x40, 0x60, 0xde, 0x16, 0x98, 0x56, 0xcb, 0x42, - 0x34, 0xed, 0x04, 0x66, 0xbc, 0x75, 0x1b, 0x21, 0xe6, 0x18, 0x97, 0x09, 0xb8, 0x27, 0x34, 0x49, - 0x12, 0x0b, 0x4e, 0x92, 0x64, 0x94, 0x24, 0x49, 0x45, 0x48, 0x92, 0xf4, 0x7c, 0x49, 0x72, 0x65, - 0x72, 0x92, 0x28, 0x50, 0x0c, 0x13, 0x6f, 0xd1, 0x89, 0xf2, 0x69, 0x9c, 0xb1, 0x1d, 0x38, 0xd6, - 0x91, 0xfa, 0x7f, 0x98, 0x25, 0x53, 0x5f, 0x34, 0x89, 0x0b, 0xbc, 0x68, 0x58, 0x29, 0x71, 0xb9, - 0x25, 0xa1, 0xc0, 0xd8, 0xd3, 0xd8, 0x0a, 0xb8, 0xe7, 0xf6, 0x3f, 0xc7, 0x18, 0x8b, 0xd9, 0x39, + 0xbc, 0x6e, 0x22, 0xad, 0xbd, 0x49, 0x81, 0x04, 0x0b, 0xb4, 0x8e, 0xaa, 0x74, 0x0d, 0xc4, 0xb1, + 0x41, 0x59, 0x45, 0xbb, 0x5b, 0x54, 0x90, 0xa9, 0x09, 0x45, 0x48, 0x22, 0xb9, 0x24, 0xa5, 0x5d, + 0x17, 0x68, 0xb1, 0xe8, 0x29, 0xc8, 0x61, 0xd1, 0x02, 0x7b, 0x0d, 0xd0, 0xa2, 0xff, 0xc0, 0x9e, + 0xfb, 0xe3, 0xd0, 0xdb, 0x9e, 0x8a, 0x3d, 0x2e, 0x0a, 0x74, 0x51, 0x24, 0x87, 0xbd, 0xf4, 0x2f, + 0x28, 0x50, 0xa0, 0xe0, 0xcc, 0x90, 0xa2, 0xc8, 0xa1, 0x44, 0x59, 0xaa, 0xb1, 0x37, 0x71, 0xe6, + 0x9b, 0xf7, 0xde, 0x7c, 0xdf, 0x9b, 0xc7, 0x99, 0xa1, 0x60, 0x4b, 0x39, 0x93, 0x2a, 0x92, 0x66, + 0xa0, 0x8a, 0xd4, 0x69, 0xa9, 0x2a, 0xea, 0x55, 0x86, 0x7b, 0x15, 0xeb, 0xe3, 0xb2, 0x6e, 0x68, + 0x96, 0xc6, 0x67, 0x95, 0x33, 0xa9, 0x6c, 0xf7, 0x96, 0x69, 0x6f, 0x79, 0xb8, 0x27, 0xac, 0xc9, + 0x9a, 0xac, 0xe1, 0xfe, 0x8a, 0xfd, 0x8b, 0x40, 0x85, 0x75, 0x49, 0x33, 0xfb, 0x9a, 0x59, 0xe9, + 0x9b, 0xb2, 0x6d, 0xa2, 0x6f, 0xca, 0xb4, 0xa3, 0x30, 0xf2, 0xd0, 0x53, 0x90, 0x6a, 0xd9, 0xbd, + 0xe4, 0x17, 0x05, 0xdc, 0x62, 0x85, 0xe0, 0xf8, 0x9b, 0x00, 0x19, 0xe8, 0xb2, 0xd1, 0x6a, 0x23, + 0x02, 0x29, 0x7d, 0xc6, 0x01, 0x7f, 0x64, 0xca, 0x55, 0xd2, 0x7f, 0xac, 0x23, 0xf5, 0x50, 0x55, + 0x2c, 0x7e, 0x1d, 0xd2, 0xba, 0x66, 0x58, 0x4d, 0xa5, 0x9d, 0xe3, 0x8a, 0xdc, 0xce, 0xb2, 0x98, + 0xb2, 0x1f, 0x0f, 0xdb, 0xfc, 0xbb, 0x90, 0xa6, 0xb6, 0x72, 0xb1, 0x22, 0xb7, 0xb3, 0xb2, 0xbf, + 0x55, 0x66, 0x4c, 0xb6, 0x4c, 0xed, 0x3d, 0x4a, 0x7c, 0xf1, 0x75, 0x61, 0x49, 0x74, 0x86, 0xf0, + 0x37, 0x21, 0x65, 0x2a, 0xb2, 0x8a, 0x8c, 0x5c, 0x9c, 0x58, 0x25, 0x4f, 0x0f, 0x57, 0x9f, 0xff, + 0xbe, 0xb0, 0xf4, 0x9b, 0x6f, 0x3e, 0xdf, 0xa5, 0x0d, 0xa5, 0x0f, 0x40, 0x08, 0x46, 0x25, 0x22, + 0x53, 0xd7, 0x54, 0x13, 0xf1, 0xdb, 0x00, 0xd4, 0xe2, 0x28, 0xc0, 0x65, 0xda, 0x72, 0xd8, 0xe6, + 0x73, 0x90, 0x1e, 0x22, 0xc3, 0x54, 0x34, 0x15, 0xc7, 0xb8, 0x2c, 0x3a, 0x8f, 0x0f, 0x13, 0xb6, + 0x9f, 0xd2, 0xd7, 0x31, 0xb8, 0x3e, 0x6e, 0xfd, 0xd4, 0x38, 0x0f, 0x9f, 0xf2, 0x3e, 0x64, 0x75, + 0x03, 0x0d, 0x15, 0x6d, 0x60, 0x36, 0x3d, 0x6e, 0xb1, 0xe9, 0x47, 0xb1, 0x1c, 0x27, 0x5e, 0x77, + 0xba, 0xab, 0x6e, 0x08, 0x1e, 0x9a, 0xe2, 0xb3, 0xd3, 0xb4, 0x07, 0x6b, 0x92, 0x36, 0x50, 0x2d, + 0x64, 0xe8, 0x2d, 0xc3, 0x3a, 0x6f, 0x3a, 0xb3, 0x49, 0xe0, 0xb8, 0xb2, 0xde, 0xbe, 0x9f, 0x90, + 0x2e, 0x9b, 0x12, 0xdd, 0xd0, 0xb4, 0x67, 0x4d, 0x45, 0x55, 0xac, 0x5c, 0xb2, 0xc8, 0xed, 0x5c, + 0x15, 0x97, 0x71, 0x0b, 0xd6, 0xb3, 0x0a, 0x57, 0x49, 0x77, 0x07, 0x29, 0x72, 0xc7, 0xca, 0xa5, + 0x70, 0x50, 0x82, 0x27, 0x28, 0x92, 0x5a, 0xc3, 0xbd, 0xf2, 0x7b, 0x18, 0x41, 0x43, 0x5a, 0xc1, + 0xa3, 0x48, 0x93, 0x47, 0xbd, 0xf4, 0x64, 0xf5, 0xde, 0x87, 0x8d, 0x00, 0xbf, 0xae, 0x78, 0x1e, + 0x75, 0xb8, 0x31, 0x75, 0x7c, 0xb2, 0xc6, 0x7c, 0xb2, 0x52, 0xf1, 0xfe, 0x16, 0x10, 0xef, 0x40, + 0xea, 0x86, 0x8b, 0x37, 0xd9, 0x26, 0xff, 0x7d, 0x58, 0x1f, 0x63, 0xda, 0x83, 0x25, 0x19, 0x7a, + 0xc3, 0xdb, 0x3d, 0xd2, 0xf7, 0x02, 0x0a, 0x6d, 0x02, 0xd1, 0xa3, 0x69, 0x19, 0xe7, 0x54, 0xa0, + 0x2b, 0xb8, 0xc1, 0x4e, 0xbe, 0xcb, 0xd5, 0x67, 0xd3, 0xaf, 0xcf, 0x81, 0xd4, 0x75, 0xf4, 0x29, + 0xfd, 0x83, 0x83, 0x1b, 0xe3, 0xbd, 0x55, 0x4d, 0x7d, 0xa6, 0x18, 0xfd, 0x0b, 0x93, 0xec, 0xce, + 0xbc, 0x25, 0x75, 0x31, 0xad, 0xce, 0xcc, 0x6d, 0xe5, 0xfc, 0x33, 0x4f, 0xcc, 0x37, 0xf3, 0xe4, + 0xe4, 0x99, 0x17, 0x60, 0x9b, 0x39, 0x37, 0x77, 0xf6, 0x43, 0xc8, 0x8e, 0x00, 0xd5, 0x9e, 0x66, + 0xa2, 0xc9, 0xf5, 0x70, 0xca, 0xd4, 0x23, 0x17, 0xbc, 0x6d, 0xd8, 0x64, 0xf8, 0x75, 0xc3, 0xfa, + 0x43, 0x0c, 0x6e, 0xfa, 0xfa, 0xe7, 0x55, 0x65, 0xbc, 0x62, 0xc4, 0xa7, 0x55, 0x8c, 0x45, 0xea, + 0xc2, 0x3f, 0x82, 0xed, 0xb1, 0xe5, 0x43, 0xdf, 0x49, 0x4d, 0x13, 0x7d, 0x38, 0x40, 0xaa, 0x84, + 0x70, 0xfe, 0x27, 0xc4, 0x4d, 0x2f, 0xa8, 0x41, 0x30, 0x75, 0x0a, 0x09, 0x52, 0x58, 0x84, 0x3c, + 0x9b, 0x22, 0x97, 0xc5, 0xd7, 0x1c, 0x5c, 0x3b, 0x32, 0x65, 0x11, 0x49, 0xc3, 0x93, 0x96, 0xd4, + 0x45, 0x16, 0xff, 0x00, 0x52, 0x3a, 0xfe, 0x85, 0xb9, 0x5b, 0xd9, 0xdf, 0x64, 0x96, 0x69, 0x02, + 0xa6, 0x13, 0xa4, 0x03, 0xf8, 0xb7, 0x20, 0x43, 0x08, 0x92, 0xb4, 0x7e, 0x5f, 0xb1, 0xfa, 0x48, + 0xb5, 0x30, 0xc9, 0x57, 0xc5, 0x55, 0xdc, 0x5e, 0x75, 0x9b, 0x03, 0x5c, 0xc6, 0xe7, 0xe3, 0x32, + 0x31, 0x39, 0x95, 0x7e, 0x81, 0xd7, 0xef, 0x68, 0x92, 0x6e, 0xe5, 0xfd, 0x01, 0xa4, 0x0c, 0x64, + 0x0e, 0x7a, 0x64, 0xb2, 0x6f, 0xec, 0xdf, 0x66, 0x4e, 0xd6, 0x81, 0x8b, 0x18, 0x7a, 0x7a, 0xae, + 0x23, 0x91, 0x0e, 0xa3, 0x15, 0xf8, 0xd3, 0x18, 0xc0, 0x91, 0x29, 0x9f, 0x2a, 0x7d, 0xa4, 0x0d, + 0x16, 0x43, 0xe1, 0x40, 0x35, 0x90, 0x84, 0x94, 0x21, 0x6a, 0x8f, 0x51, 0xd8, 0x70, 0x9b, 0x17, + 0x43, 0xe1, 0x1d, 0xe0, 0x55, 0xf4, 0xb1, 0xe5, 0xa6, 0x59, 0xd3, 0x40, 0xd2, 0x10, 0xd3, 0x99, + 0x10, 0x33, 0x76, 0x8f, 0x93, 0x5c, 0x36, 0x79, 0xd1, 0x8b, 0xca, 0x07, 0x78, 0x0b, 0x45, 0xf9, + 0x58, 0x34, 0xdb, 0xff, 0x21, 0xef, 0x3b, 0x6a, 0xfd, 0x58, 0xc5, 0x89, 0x7d, 0x49, 0xa4, 0x17, + 0x60, 0x85, 0xa6, 0xb8, 0xed, 0x94, 0xd6, 0x08, 0x52, 0x35, 0x48, 0x18, 0x0b, 0x29, 0x12, 0x6c, + 0x55, 0x92, 0x53, 0x55, 0x49, 0xcd, 0x56, 0x52, 0xd2, 0x17, 0x28, 0x29, 0x67, 0xf8, 0x45, 0x39, + 0xce, 0xfd, 0xa2, 0x05, 0x7e, 0x1e, 0xc3, 0xe9, 0x73, 0x20, 0x75, 0x55, 0xed, 0xa3, 0x1e, 0x6a, + 0xcb, 0x08, 0xd7, 0x8c, 0x39, 0x14, 0xde, 0x81, 0xd5, 0xd6, 0xb8, 0x35, 0x47, 0x60, 0x5f, 0xf3, + 0x48, 0x60, 0x7b, 0x60, 0x7b, 0x4c, 0xe0, 0x03, 0xbb, 0xe5, 0x92, 0xdf, 0xce, 0x12, 0xde, 0xf5, + 0xfb, 0x98, 0x58, 0x34, 0xdf, 0x7f, 0x1a, 0xdb, 0xdf, 0xd0, 0x14, 0x98, 0xeb, 0x25, 0xff, 0x43, + 0x48, 0x3d, 0x53, 0x50, 0xaf, 0x6d, 0xd2, 0xaa, 0x54, 0x62, 0x06, 0x46, 0x3d, 0x3d, 0xc6, 0x48, + 0x47, 0x31, 0x32, 0x2e, 0x7a, 0x6d, 0xff, 0x94, 0xf3, 0x6e, 0x60, 0x3c, 0xc1, 0xbb, 0x2c, 0xbd, + 0x0b, 0x69, 0x9a, 0xfa, 0x34, 0x71, 0xb6, 0x26, 0x45, 0xe3, 0x9c, 0x3c, 0xe8, 0x10, 0xbb, 0x38, + 0x04, 0x16, 0x4e, 0x0c, 0x2f, 0x9c, 0xd5, 0x81, 0x6f, 0xb1, 0x10, 0x36, 0xff, 0x1b, 0x87, 0xb5, + 0x40, 0x40, 0x13, 0x8f, 0x53, 0x53, 0xc8, 0xfc, 0x31, 0x14, 0x75, 0x43, 0xd3, 0x35, 0x13, 0xb5, + 0xdd, 0x35, 0x2c, 0x69, 0xaa, 0x8a, 0x24, 0x4b, 0xd1, 0xd4, 0x66, 0x47, 0xd3, 0x6d, 0x9a, 0xe3, + 0x3b, 0xcb, 0xe2, 0xb6, 0x83, 0xa3, 0x5e, 0xab, 0x2e, 0xea, 0x3d, 0x4d, 0x37, 0xf9, 0x0e, 0x6c, + 0x32, 0x0b, 0x02, 0x95, 0x2a, 0x31, 0xa3, 0x54, 0x1b, 0x8c, 0xc2, 0x41, 0x00, 0xd3, 0x4b, 0x4f, + 0x72, 0x6a, 0xe9, 0xe1, 0xbf, 0x03, 0xd7, 0x68, 0xa9, 0xa5, 0xc7, 0xc6, 0x14, 0x5e, 0x8b, 0x64, + 0xf5, 0x51, 0x76, 0x47, 0x20, 0x47, 0xe1, 0xb4, 0x07, 0x44, 0x2d, 0x06, 0x96, 0xec, 0x95, 0xf9, + 0x96, 0xec, 0xf2, 0xe4, 0x84, 0xfc, 0x3b, 0x07, 0x5b, 0x2c, 0xfd, 0x2f, 0x3d, 0x1f, 0x3d, 0xe5, + 0x21, 0x3e, 0x4f, 0x79, 0xf8, 0x67, 0x8c, 0x91, 0xd0, 0xf3, 0x1c, 0x31, 0x1b, 0xbe, 0xa3, 0xa2, + 0xc3, 0x46, 0x3c, 0x32, 0x1b, 0x59, 0x46, 0xe2, 0x04, 0x13, 0x26, 0x11, 0x25, 0x61, 0x92, 0x11, + 0x12, 0xe6, 0xff, 0x7b, 0xf6, 0x44, 0x8c, 0x7c, 0xf1, 0x1c, 0x3f, 0x17, 0x55, 0xe5, 0xff, 0x1c, + 0x87, 0x5c, 0xc0, 0xcf, 0xbc, 0x47, 0xa6, 0x9f, 0x82, 0xc0, 0xbc, 0x2d, 0x30, 0xad, 0x96, 0x85, + 0x68, 0xda, 0x09, 0xcc, 0x78, 0xeb, 0x36, 0x42, 0xcc, 0x31, 0x2e, 0x13, 0x70, 0x4f, 0x68, 0x92, + 0x24, 0x16, 0x9c, 0x24, 0xc9, 0x28, 0x49, 0x92, 0x8a, 0x90, 0x24, 0xe9, 0xf9, 0x92, 0xe4, 0xca, + 0xe4, 0x24, 0x51, 0xa0, 0x18, 0x26, 0xde, 0xa2, 0x13, 0xe5, 0x93, 0x38, 0x63, 0x3b, 0x70, 0xac, + 0x23, 0xf5, 0x5b, 0x98, 0x25, 0x53, 0x5f, 0x34, 0x89, 0x0b, 0xbc, 0x68, 0x58, 0x29, 0x71, 0xb9, + 0x25, 0xa1, 0xc0, 0xd8, 0xd3, 0xd8, 0x0a, 0xb8, 0xe7, 0xf6, 0xbf, 0xc4, 0x18, 0x8b, 0xd9, 0x39, 0x7f, 0x2e, 0xaa, 0x2e, 0xcf, 0x7e, 0x5f, 0x9b, 0x65, 0x08, 0x15, 0xad, 0x2e, 0xfb, 0xf9, 0x4d, - 0xce, 0xc7, 0x6f, 0x6a, 0x32, 0xbf, 0x25, 0xc6, 0x6a, 0xf2, 0x9d, 0x56, 0x4b, 0x7f, 0x89, 0xc1, - 0x7a, 0x70, 0xc9, 0xb5, 0x54, 0x09, 0xf5, 0x2e, 0xcc, 0xf0, 0x63, 0xb8, 0x86, 0x0c, 0x43, 0x33, + 0xce, 0xc7, 0x6f, 0x6a, 0x32, 0xbf, 0x25, 0xc6, 0x6a, 0xf2, 0x9d, 0x56, 0x4b, 0x7f, 0x8d, 0xc1, + 0x7a, 0x70, 0xc9, 0xb5, 0x54, 0x09, 0xf5, 0x2e, 0xcc, 0xf0, 0x13, 0xb8, 0x86, 0x0c, 0x43, 0x33, 0x9a, 0xf8, 0x40, 0xa9, 0x3b, 0x87, 0xf6, 0x5b, 0x4c, 0x6a, 0x6b, 0x36, 0x52, 0x24, 0x40, 0x3a, 0xdb, 0xab, 0xc8, 0xd3, 0xc6, 0x97, 0x21, 0x4b, 0x38, 0x1b, 0xb7, 0x49, 0xe8, 0xbd, 0x8e, 0xbb, - 0xbc, 0x36, 0x2e, 0x99, 0xe3, 0x5b, 0x50, 0x08, 0xa1, 0xcf, 0xa5, 0xf8, 0x57, 0xb0, 0x7a, 0x64, + 0xbc, 0x36, 0x2e, 0x99, 0xe3, 0x5b, 0x50, 0x08, 0xa1, 0xcf, 0xa5, 0xf8, 0xd7, 0xb0, 0x7a, 0x64, 0xca, 0x0d, 0xbd, 0xdd, 0xb2, 0xd0, 0x49, 0xcb, 0x68, 0xf5, 0x4d, 0x7e, 0x0b, 0x96, 0x5b, 0x03, 0xab, 0xa3, 0x19, 0x8a, 0x75, 0xee, 0x7c, 0xc7, 0x70, 0x1b, 0xc8, 0x11, 0xd0, 0xc6, 0xd1, 0x4f, - 0x2d, 0x61, 0x47, 0x40, 0x1b, 0x32, 0x3a, 0x02, 0xda, 0x4f, 0x0f, 0x78, 0x27, 0xbe, 0x91, 0xb9, - 0xd2, 0x06, 0x56, 0xd8, 0xeb, 0xdf, 0x0d, 0xed, 0xb7, 0x1c, 0x5e, 0x60, 0x27, 0xc6, 0x40, 0x45, + 0x2d, 0x61, 0x47, 0x40, 0x1b, 0x32, 0x3a, 0x02, 0xda, 0x4f, 0x0f, 0x79, 0x27, 0xbe, 0x91, 0xb9, + 0xd2, 0x06, 0x56, 0xd8, 0xeb, 0xdf, 0x0d, 0xed, 0x77, 0x1c, 0x5e, 0x60, 0x27, 0xc6, 0x40, 0x45, 0xbe, 0xe3, 0x97, 0x79, 0x61, 0xf9, 0xd7, 0x20, 0xd9, 0x53, 0xfa, 0xf4, 0x6e, 0x31, 0x21, 0x92, - 0x87, 0xe8, 0x47, 0x9d, 0xcf, 0x39, 0x9c, 0xb6, 0xcc, 0x98, 0xdc, 0x97, 0xc0, 0x3d, 0xb8, 0x69, + 0x87, 0xe8, 0x47, 0x9d, 0xcf, 0x38, 0x9c, 0xb6, 0xcc, 0x98, 0xdc, 0x97, 0xc0, 0x3d, 0xb8, 0x69, 0x69, 0x56, 0xab, 0xd7, 0xd4, 0x6d, 0x58, 0xdb, 0xad, 0x84, 0x26, 0x0e, 0x35, 0x21, 0xae, 0xe1, - 0x5e, 0x6c, 0xa3, 0xed, 0x94, 0x40, 0x93, 0x7f, 0x00, 0x1b, 0x64, 0x94, 0x81, 0xfa, 0x2d, 0x45, + 0x5e, 0x6c, 0xa3, 0xed, 0x94, 0x40, 0x93, 0x7f, 0x08, 0x1b, 0x64, 0x94, 0x81, 0xfa, 0x2d, 0x45, 0x55, 0x54, 0xd9, 0x33, 0x90, 0x6c, 0x2f, 0xd7, 0x31, 0x40, 0x74, 0xfa, 0xdd, 0xb1, 0xbb, 0x5f, - 0x73, 0xc0, 0x07, 0x5f, 0x2a, 0xfc, 0x7d, 0x28, 0x8a, 0xb5, 0xfa, 0xc9, 0xf1, 0x93, 0x7a, 0xad, - 0x29, 0xd6, 0xea, 0x8d, 0xc7, 0xa7, 0xcd, 0xd3, 0x9f, 0x9e, 0xd4, 0x9a, 0x8d, 0x27, 0xf5, 0x93, - 0x5a, 0xf5, 0xf0, 0xd1, 0x61, 0xed, 0x87, 0x99, 0x25, 0x61, 0xf5, 0xf9, 0x8b, 0xe2, 0x8a, 0xa7, - 0x89, 0xbf, 0x0d, 0x1b, 0xcc, 0x61, 0x4f, 0x8e, 0x8f, 0x4f, 0x32, 0x9c, 0x70, 0xe5, 0xf9, 0x8b, + 0x71, 0xc0, 0x07, 0x5f, 0x2a, 0xfc, 0x7d, 0x28, 0x8a, 0xb5, 0xfa, 0xc9, 0xf1, 0xd3, 0x7a, 0xad, + 0x29, 0xd6, 0xea, 0x8d, 0x27, 0xa7, 0xcd, 0xd3, 0x9f, 0x9d, 0xd4, 0x9a, 0x8d, 0xa7, 0xf5, 0x93, + 0x5a, 0xf5, 0xf0, 0xf1, 0x61, 0xed, 0x47, 0x99, 0x25, 0x61, 0xf5, 0xc5, 0xcb, 0xe2, 0x8a, 0xa7, + 0x89, 0xbf, 0x0d, 0x1b, 0xcc, 0x61, 0x4f, 0x8f, 0x8f, 0x4f, 0x32, 0x9c, 0x70, 0xe5, 0xc5, 0xcb, 0x62, 0xc2, 0xfe, 0xcd, 0xdf, 0x85, 0x2d, 0x26, 0xb0, 0xde, 0xa8, 0x56, 0x6b, 0xf5, 0x7a, 0x26, - 0x26, 0xac, 0x3c, 0x7f, 0x51, 0x4c, 0xd3, 0xc7, 0x50, 0xf8, 0xa3, 0x83, 0xc3, 0xc7, 0x0d, 0xb1, - 0x96, 0x89, 0x13, 0x38, 0x7d, 0x14, 0x12, 0xcf, 0xfe, 0x90, 0x5f, 0xda, 0xff, 0x57, 0x06, 0xe2, + 0x26, 0xac, 0xbc, 0x78, 0x59, 0x4c, 0xd3, 0xc7, 0x50, 0xf8, 0xe3, 0x83, 0xc3, 0x27, 0x0d, 0xb1, + 0x96, 0x89, 0x13, 0x38, 0x7d, 0x14, 0x12, 0xcf, 0xff, 0x98, 0x5f, 0xda, 0xff, 0x77, 0x06, 0xe2, 0x47, 0xa6, 0xcc, 0x77, 0x61, 0xd5, 0xff, 0x3d, 0x90, 0xfd, 0x72, 0x0d, 0x7e, 0xa2, 0x13, 0x2a, 0x11, 0x81, 0xae, 0x82, 0x1d, 0x78, 0xc3, 0xf7, 0x21, 0xee, 0xcd, 0x08, 0x26, 0x4e, 0x8d, 0x73, 0xa1, 0x1c, 0x0d, 0x17, 0xe2, 0xc9, 0xde, 0xd2, 0x47, 0xf1, 0x74, 0x20, 0x75, 0x23, 0x79, 0xf2, 0xee, 0x61, 0x2d, 0xe0, 0x19, 0x9f, 0x4f, 0x76, 0x23, 0x58, 0xa1, 0x58, 0x61, 0x3f, 0x3a, 0xd6, 0xf5, 0xaa, 0x42, 0x26, 0xf0, 0xdd, 0x62, 0x67, 0x8a, 0x1d, 0x17, 0x29, 0xbc, 0x1d, 0x15, 0xe9, - 0xfa, 0xfb, 0x18, 0xb2, 0xac, 0xef, 0x11, 0xdf, 0x89, 0x62, 0xc8, 0x99, 0xe7, 0x3b, 0x33, 0x80, - 0x5d, 0xc7, 0x3f, 0x03, 0xf0, 0x5c, 0xe1, 0x97, 0xc2, 0x4c, 0x8c, 0x30, 0xc2, 0xee, 0x74, 0x8c, + 0xfa, 0xfb, 0x08, 0xb2, 0xac, 0xef, 0x11, 0xdf, 0x8b, 0x62, 0xc8, 0x99, 0xe7, 0x3b, 0x33, 0x80, + 0x5d, 0xc7, 0x3f, 0x07, 0xf0, 0x5c, 0xe1, 0x97, 0xc2, 0x4c, 0x8c, 0x30, 0xc2, 0xee, 0x74, 0x8c, 0x6b, 0xbd, 0x0e, 0x69, 0x67, 0x6b, 0x51, 0x08, 0x1b, 0x46, 0x01, 0xc2, 0xed, 0x29, 0x00, 0x6f, 0xee, 0xf9, 0x6e, 0x70, 0xdf, 0x9c, 0x32, 0x94, 0xe2, 0xc2, 0x73, 0x2f, 0xe4, 0x56, 0xb2, 0x0b, 0xab, 0xfe, 0xab, 0xc4, 0xd0, 0x28, 0x7d, 0xc0, 0xf0, 0xc5, 0x1b, 0x76, 0x25, 0x37, 0x4a, 0x74, - 0xef, 0x3d, 0xda, 0xb4, 0x44, 0xf7, 0x60, 0xa7, 0x26, 0x3a, 0xeb, 0x8a, 0xeb, 0x23, 0xb8, 0x1e, + 0xef, 0x3d, 0xda, 0xb4, 0x44, 0xf7, 0x60, 0xa7, 0x26, 0x3a, 0xeb, 0x8a, 0xeb, 0x43, 0xb8, 0x1e, 0xbc, 0x6f, 0x7a, 0x2b, 0x9a, 0x21, 0xbb, 0x70, 0xec, 0x45, 0x86, 0x86, 0xbb, 0xb4, 0xcb, 0x47, - 0x44, 0x97, 0x76, 0x05, 0xd9, 0x8b, 0x0c, 0x75, 0x5d, 0xfe, 0x12, 0x6e, 0xb0, 0x4f, 0xaf, 0x77, + 0x44, 0x97, 0x76, 0x05, 0xd9, 0x8b, 0x0c, 0x75, 0x5d, 0xfe, 0x0a, 0x6e, 0xb0, 0x4f, 0xaf, 0x77, 0xa3, 0xd9, 0x72, 0x96, 0xd8, 0xfd, 0x99, 0xe0, 0xe1, 0xd2, 0xe2, 0x33, 0x51, 0x44, 0x69, 0x6d, 0x6c, 0x54, 0x69, 0xbd, 0x3b, 0xfd, 0xe0, 0xa4, 0x9d, 0xa5, 0x18, 0x71, 0xd2, 0xce, 0xc2, 0xbc, - 0x3f, 0x13, 0xdc, 0x75, 0xff, 0x0b, 0x58, 0x63, 0xee, 0x80, 0xef, 0x44, 0xe4, 0x10, 0xa3, 0x85, - 0x7b, 0xb3, 0xa0, 0x5d, 0xdf, 0x0a, 0x64, 0xc9, 0xde, 0x8c, 0xa2, 0xe8, 0x16, 0xf1, 0xdb, 0x61, + 0x3f, 0x13, 0xdc, 0x75, 0xff, 0x4b, 0x58, 0x63, 0xee, 0x80, 0xef, 0x44, 0xe4, 0x10, 0xa3, 0x85, + 0x7b, 0xb3, 0xa0, 0x5d, 0xdf, 0x0a, 0x64, 0xc9, 0xde, 0x8c, 0xa2, 0xe8, 0x16, 0xf1, 0xbb, 0x61, 0xc6, 0xbc, 0x1b, 0x39, 0xe1, 0x4e, 0x14, 0x94, 0x97, 0x65, 0xf6, 0x56, 0x2f, 0x94, 0x65, 0x26, - 0x3c, 0x9c, 0xe5, 0x89, 0x9b, 0x36, 0x21, 0xf9, 0xe9, 0xeb, 0x2f, 0x76, 0xb9, 0x87, 0xf5, 0x2f, - 0x5f, 0xe6, 0xb9, 0xaf, 0x5e, 0xe6, 0xb9, 0x7f, 0xbe, 0xcc, 0x73, 0xbf, 0x79, 0x95, 0x5f, 0xfa, - 0xea, 0x55, 0x7e, 0xe9, 0xeb, 0x57, 0xf9, 0xa5, 0x0f, 0xde, 0x95, 0x15, 0xab, 0x33, 0x38, 0x2b, - 0x4b, 0x5a, 0xbf, 0x42, 0xff, 0x1f, 0xa5, 0x9c, 0x49, 0x77, 0x65, 0xad, 0x32, 0xfc, 0x5e, 0xa5, - 0xaf, 0xb5, 0x07, 0x3d, 0x64, 0x92, 0xff, 0x35, 0xbd, 0x7d, 0xef, 0xae, 0xf3, 0xd7, 0x26, 0xeb, - 0x5c, 0x47, 0xe6, 0x59, 0x0a, 0xff, 0xad, 0xe9, 0x9d, 0xff, 0x06, 0x00, 0x00, 0xff, 0xff, 0xf2, - 0x6f, 0x97, 0x8a, 0xa1, 0x25, 0x00, 0x00, + 0x3c, 0x9c, 0xe5, 0x89, 0x9b, 0x36, 0x21, 0xf9, 0xc9, 0x37, 0x9f, 0xef, 0x72, 0x8f, 0xea, 0x5f, + 0xbc, 0xca, 0x73, 0x5f, 0xbe, 0xca, 0x73, 0xff, 0x7a, 0x95, 0xe7, 0x7e, 0xfb, 0x3a, 0xbf, 0xf4, + 0xe5, 0xeb, 0xfc, 0xd2, 0x57, 0xaf, 0xf3, 0x4b, 0xef, 0x3f, 0x90, 0x15, 0xab, 0x33, 0x38, 0x2b, + 0x4b, 0x5a, 0xbf, 0x42, 0xff, 0x1f, 0xa5, 0x9c, 0x49, 0x77, 0x65, 0xad, 0x32, 0x7c, 0x50, 0xe9, + 0x6b, 0xed, 0x41, 0x0f, 0x99, 0xe4, 0x7f, 0x4d, 0x6f, 0xdf, 0xbb, 0xeb, 0xfc, 0xb5, 0xc9, 0x3a, + 0xd7, 0x91, 0x79, 0x96, 0xc2, 0x7f, 0x6b, 0x7a, 0xe7, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x5b, + 0x64, 0x1e, 0xc4, 0xa1, 0x25, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/modules/core/04-channel/types/upgrade.go b/modules/core/04-channel/types/upgrade.go index ea3e85083897..8e192be7e72e 100644 --- a/modules/core/04-channel/types/upgrade.go +++ b/modules/core/04-channel/types/upgrade.go @@ -8,7 +8,7 @@ import ( errorsmod "cosmossdk.io/errors" - connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" ) // NewUpgrade creates a new Upgrade instance. diff --git a/modules/core/04-channel/types/upgrade.pb.go b/modules/core/04-channel/types/upgrade.pb.go index e79318171250..19ae2ae3e1f1 100644 --- a/modules/core/04-channel/types/upgrade.pb.go +++ b/modules/core/04-channel/types/upgrade.pb.go @@ -163,30 +163,30 @@ var fileDescriptor_fb1cef68588848b2 = []byte{ // 406 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x91, 0x41, 0x6f, 0xd3, 0x30, 0x14, 0xc7, 0xe3, 0xad, 0x5a, 0x57, 0x03, 0x03, 0x19, 0x0e, 0x51, 0x85, 0xb2, 0xd2, 0x0b, 0x3d, - 0xb0, 0x98, 0x0d, 0x84, 0x00, 0x71, 0x40, 0x93, 0x40, 0x88, 0x0b, 0x92, 0x0b, 0x17, 0x2e, 0x55, - 0xe3, 0x3c, 0x52, 0x4b, 0x8d, 0x5f, 0xb0, 0x9d, 0x08, 0xbe, 0x01, 0xc7, 0x7d, 0x04, 0xbe, 0x08, - 0xf7, 0x1d, 0x77, 0xe4, 0x84, 0x50, 0xfb, 0x45, 0x50, 0x9c, 0xa4, 0x68, 0x52, 0x6e, 0x7e, 0x7e, - 0xbf, 0xff, 0xdf, 0xff, 0xe7, 0x47, 0x1f, 0xa8, 0x44, 0x72, 0x89, 0x06, 0xb8, 0x5c, 0x2d, 0xb5, - 0x86, 0x35, 0xaf, 0x4e, 0x79, 0x59, 0x64, 0x66, 0x99, 0x42, 0x5c, 0x18, 0x74, 0xc8, 0xee, 0xaa, - 0x44, 0xc6, 0x35, 0x12, 0xb7, 0x48, 0x5c, 0x9d, 0x8e, 0xef, 0x65, 0x98, 0xa1, 0xef, 0xf3, 0xfa, - 0xd4, 0xa0, 0xe3, 0x5e, 0xb7, 0x4e, 0xe5, 0x91, 0xe9, 0x2f, 0x42, 0x87, 0x9f, 0x1a, 0x7f, 0xf6, - 0x9a, 0x1e, 0x7c, 0x51, 0xb0, 0x4e, 0x6d, 0x48, 0x26, 0x64, 0x76, 0xe3, 0x6c, 0x1a, 0xf7, 0x3c, - 0x15, 0xb7, 0xf4, 0x5b, 0x4f, 0x9e, 0x0f, 0x2e, 0xff, 0x1c, 0x07, 0xa2, 0xd5, 0xb1, 0x57, 0x74, - 0xe8, 0x54, 0x0e, 0x58, 0xba, 0x70, 0xcf, 0x5b, 0xdc, 0xef, 0xb5, 0xf8, 0xd8, 0x30, 0xad, 0xb8, - 0x93, 0xb0, 0x47, 0x94, 0x69, 0xf8, 0xe6, 0x16, 0x16, 0xbe, 0x96, 0xa0, 0x25, 0x2c, 0x2c, 0xe8, - 0x34, 0xdc, 0x9f, 0x90, 0xd9, 0x40, 0xdc, 0xa9, 0x3b, 0xf3, 0xb6, 0x31, 0x07, 0x9d, 0xbe, 0x1c, - 0xfc, 0xf8, 0x79, 0x1c, 0x4c, 0x2f, 0x08, 0xbd, 0x75, 0x2d, 0x11, 0x7b, 0x46, 0x0f, 0xd1, 0xa4, - 0x60, 0x94, 0xce, 0xfc, 0x1c, 0x47, 0x67, 0xe3, 0xde, 0x10, 0x1f, 0x6a, 0x48, 0xec, 0x58, 0xf6, - 0x90, 0xde, 0x96, 0xa8, 0x35, 0x48, 0xa7, 0x50, 0x2f, 0x56, 0x58, 0xd8, 0x70, 0x6f, 0xb2, 0x3f, - 0x1b, 0x89, 0xa3, 0xff, 0xd7, 0xef, 0xb0, 0xb0, 0x2c, 0xa4, 0xc3, 0x0a, 0x8c, 0x55, 0xa8, 0x7d, - 0xb6, 0x91, 0xe8, 0xca, 0x36, 0xd2, 0x7b, 0x7a, 0xf3, 0x8d, 0x31, 0x68, 0x04, 0x48, 0x50, 0x85, - 0x63, 0x63, 0x7a, 0xd8, 0x4d, 0xe4, 0x03, 0x0d, 0xc4, 0xae, 0xae, 0xbd, 0x72, 0xb0, 0x76, 0x99, - 0x81, 0xff, 0xb0, 0x91, 0xe8, 0xca, 0xc6, 0xeb, 0x7c, 0x7e, 0xb9, 0x89, 0xc8, 0xd5, 0x26, 0x22, - 0x7f, 0x37, 0x11, 0xb9, 0xd8, 0x46, 0xc1, 0xd5, 0x36, 0x0a, 0x7e, 0x6f, 0xa3, 0xe0, 0xf3, 0x8b, - 0x4c, 0xb9, 0x55, 0x99, 0xc4, 0x12, 0x73, 0x2e, 0xd1, 0xe6, 0x68, 0xb9, 0x4a, 0xe4, 0x49, 0x86, - 0xbc, 0x7a, 0xce, 0x73, 0x4c, 0xcb, 0x35, 0xd8, 0x66, 0xf7, 0x8f, 0x9f, 0x9e, 0x74, 0xeb, 0x77, - 0xdf, 0x0b, 0xb0, 0xc9, 0x81, 0x5f, 0xfd, 0x93, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xcc, 0x31, - 0xc0, 0xc6, 0x6d, 0x02, 0x00, 0x00, + 0xb0, 0x98, 0x0d, 0x84, 0x34, 0xc4, 0x01, 0x4d, 0x02, 0x21, 0x2e, 0x48, 0x2e, 0x5c, 0xb8, 0x54, + 0x8d, 0xf3, 0x48, 0x2d, 0x35, 0x7e, 0xc1, 0x76, 0x22, 0xf8, 0x06, 0x1c, 0xf7, 0x11, 0xf8, 0x22, + 0xdc, 0x77, 0xdc, 0x91, 0x13, 0x42, 0xed, 0x17, 0x41, 0x71, 0x92, 0xa2, 0x49, 0xb9, 0xf9, 0xf9, + 0xfd, 0xfe, 0x7f, 0xff, 0x9f, 0x1f, 0x7d, 0xa4, 0x12, 0xc9, 0x25, 0x1a, 0xe0, 0x72, 0xb5, 0xd4, + 0x1a, 0xd6, 0xbc, 0x3a, 0xe5, 0x65, 0x91, 0x99, 0x65, 0x0a, 0x71, 0x61, 0xd0, 0x21, 0xbb, 0xaf, + 0x12, 0x19, 0xd7, 0x48, 0xdc, 0x22, 0x71, 0x75, 0x3a, 0x7e, 0x90, 0x61, 0x86, 0xbe, 0xcf, 0xeb, + 0x53, 0x83, 0x8e, 0x7b, 0xdd, 0x3a, 0x95, 0x47, 0xa6, 0xbf, 0x08, 0x1d, 0x7e, 0x6a, 0xfc, 0xd9, + 0x6b, 0x7a, 0xf0, 0x45, 0xc1, 0x3a, 0xb5, 0x21, 0x99, 0x90, 0xd9, 0xad, 0xb3, 0x69, 0xdc, 0xf3, + 0x54, 0xdc, 0xd2, 0x6f, 0x3d, 0x79, 0x31, 0xb8, 0xfa, 0x73, 0x1c, 0x88, 0x56, 0xc7, 0x5e, 0xd1, + 0xa1, 0x53, 0x39, 0x60, 0xe9, 0xc2, 0x3d, 0x6f, 0xf1, 0xb0, 0xd7, 0xe2, 0x63, 0xc3, 0xb4, 0xe2, + 0x4e, 0xc2, 0x9e, 0x50, 0xa6, 0xe1, 0x9b, 0x5b, 0x58, 0xf8, 0x5a, 0x82, 0x96, 0xb0, 0xb0, 0xa0, + 0xd3, 0x70, 0x7f, 0x42, 0x66, 0x03, 0x71, 0xaf, 0xee, 0xcc, 0xdb, 0xc6, 0x1c, 0x74, 0xfa, 0x72, + 0xf0, 0xe3, 0xe7, 0x71, 0x30, 0xbd, 0x24, 0xf4, 0xce, 0x8d, 0x44, 0xec, 0x05, 0x3d, 0x44, 0x93, + 0x82, 0x51, 0x3a, 0xf3, 0x73, 0x1c, 0x9d, 0x8d, 0x7b, 0x43, 0x7c, 0xa8, 0x21, 0xb1, 0x63, 0xd9, + 0x63, 0x7a, 0x57, 0xa2, 0xd6, 0x20, 0x9d, 0x42, 0xbd, 0x58, 0x61, 0x61, 0xc3, 0xbd, 0xc9, 0xfe, + 0x6c, 0x24, 0x8e, 0xfe, 0x5f, 0xbf, 0xc3, 0xc2, 0xb2, 0x90, 0x0e, 0x2b, 0x30, 0x56, 0xa1, 0xf6, + 0xd9, 0x46, 0xa2, 0x2b, 0xdb, 0x48, 0xef, 0xe9, 0xed, 0x37, 0xc6, 0xa0, 0x11, 0x20, 0x41, 0x15, + 0x8e, 0x8d, 0xe9, 0x61, 0x37, 0x91, 0x0f, 0x34, 0x10, 0xbb, 0xba, 0xf6, 0xca, 0xc1, 0xda, 0x65, + 0x06, 0xfe, 0xc3, 0x46, 0xa2, 0x2b, 0x1b, 0xaf, 0x8b, 0xf9, 0xd5, 0x26, 0x22, 0xd7, 0x9b, 0x88, + 0xfc, 0xdd, 0x44, 0xe4, 0x72, 0x1b, 0x05, 0xd7, 0xdb, 0x28, 0xf8, 0xbd, 0x8d, 0x82, 0xcf, 0xe7, + 0x99, 0x72, 0xab, 0x32, 0x89, 0x25, 0xe6, 0x5c, 0xa2, 0xcd, 0xd1, 0x72, 0x95, 0xc8, 0x93, 0x0c, + 0x79, 0x75, 0xce, 0x73, 0x4c, 0xcb, 0x35, 0xd8, 0x66, 0xf7, 0x4f, 0x9f, 0x9f, 0x74, 0xeb, 0x77, + 0xdf, 0x0b, 0xb0, 0xc9, 0x81, 0x5f, 0xfd, 0xb3, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x65, 0x3a, + 0x49, 0x88, 0x6d, 0x02, 0x00, 0x00, } func (m *Upgrade) Marshal() (dAtA []byte, err error) { diff --git a/modules/core/04-channel/types/upgrade_test.go b/modules/core/04-channel/types/upgrade_test.go index b1bb8315d46e..dda92c7c3359 100644 --- a/modules/core/04-channel/types/upgrade_test.go +++ b/modules/core/04-channel/types/upgrade_test.go @@ -6,10 +6,10 @@ import ( errorsmod "cosmossdk.io/errors" - clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v8/testing" - "github.com/cosmos/ibc-go/v8/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v9/testing/mock" ) func (suite *TypesTestSuite) TestUpgradeValidateBasic() { diff --git a/modules/core/05-port/keeper/keeper.go b/modules/core/05-port/keeper/keeper.go index 8da42cbef3a1..c6310ed3d4cd 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/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" + "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // 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 df2051644f9e..8856a7e4a07d 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/v8/modules/core/05-port/keeper" - "github.com/cosmos/ibc-go/v8/testing/simapp" + "github.com/cosmos/ibc-go/v9/modules/core/05-port/keeper" + "github.com/cosmos/ibc-go/v9/testing/simapp" ) var ( diff --git a/modules/core/05-port/module.go b/modules/core/05-port/module.go index 3f31528d9ff0..f52d4c893d96 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/v8/modules/core/05-port/types" - "github.com/cosmos/ibc-go/v8/modules/core/client/cli" + "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + "github.com/cosmos/ibc-go/v9/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 ba8c91e25b7f..7e9b3bf672ee 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/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // 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 a73b6407202f..bf72c2cbbdb9 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/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // RegisterInterfaces registers the commitment interfaces to protobuf Any. diff --git a/modules/core/23-commitment/types/codec_test.go b/modules/core/23-commitment/types/codec_test.go index accf20b5ee23..1c7f48da47b4 100644 --- a/modules/core/23-commitment/types/codec_test.go +++ b/modules/core/23-commitment/types/codec_test.go @@ -4,8 +4,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" - ibc "github.com/cosmos/ibc-go/v8/modules/core" - "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + ibc "github.com/cosmos/ibc-go/v9/modules/core" + "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" ) func (suite *MerkleTestSuite) TestCodecTypeRegistration() { diff --git a/modules/core/23-commitment/types/commitment.pb.go b/modules/core/23-commitment/types/commitment.pb.go index bf95874a8ac0..f325e5864399 100644 --- a/modules/core/23-commitment/types/commitment.pb.go +++ b/modules/core/23-commitment/types/commitment.pb.go @@ -113,6 +113,7 @@ func (m *MerklePrefix) GetKeyPrefix() []byte { // MerklePath is the path used to verify commitment proofs, which can be an // arbitrary structured object (defined by a commitment type). // MerklePath is represented from root-to-leaf +// Deprecated: Please use commitment/v2 MerklePath instead which supports non UTF-8 key paths. type MerklePath struct { KeyPath []string `protobuf:"bytes,1,rep,name=key_path,json=keyPath,proto3" json:"key_path,omitempty"` } @@ -221,24 +222,24 @@ var fileDescriptor_7921d88972a41469 = []byte{ // 312 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x4c, 0x90, 0xb1, 0x4e, 0xeb, 0x30, 0x14, 0x86, 0x13, 0xdd, 0xaa, 0x97, 0xba, 0x9d, 0x2c, 0x84, 0xa0, 0x02, 0x53, 0x65, 0xa0, 0x5d, - 0x6a, 0xab, 0xed, 0x52, 0x21, 0x26, 0x18, 0x98, 0x90, 0xaa, 0x0c, 0x0c, 0x2c, 0x28, 0x31, 0x6e, - 0x62, 0xb5, 0xe1, 0x44, 0xb1, 0x1b, 0xd1, 0x37, 0x60, 0xe4, 0x11, 0x78, 0x1c, 0xc6, 0x8e, 0x8c, - 0xa8, 0x79, 0x11, 0x64, 0xbb, 0x41, 0xd9, 0xce, 0xd1, 0xf9, 0xfc, 0xeb, 0xf7, 0x87, 0x86, 0x32, - 0xe6, 0x8c, 0x43, 0x21, 0x18, 0x87, 0x2c, 0x93, 0x3a, 0x13, 0xaf, 0x9a, 0x95, 0x93, 0xc6, 0x46, - 0xf3, 0x02, 0x34, 0xe0, 0x13, 0x19, 0x73, 0x6a, 0x40, 0xda, 0x38, 0x95, 0x93, 0xfe, 0x71, 0x02, - 0x09, 0x58, 0x84, 0x99, 0xc9, 0xd1, 0xfd, 0x73, 0x0e, 0x2a, 0x03, 0xc5, 0x24, 0x57, 0xd3, 0x99, - 0xc9, 0xcb, 0x0b, 0x80, 0xa5, 0x72, 0xd7, 0xe0, 0x0a, 0xa1, 0x07, 0x51, 0xac, 0xd6, 0x22, 0x04, - 0xd0, 0x18, 0xa3, 0x56, 0x1a, 0xa9, 0xf4, 0xd4, 0x1f, 0xf8, 0xa3, 0x5e, 0x68, 0xe7, 0xeb, 0xd6, - 0xfb, 0xe7, 0xa5, 0x17, 0x8c, 0x51, 0xcf, 0x71, 0x8b, 0x42, 0x2c, 0xe5, 0x1b, 0xbe, 0x40, 0x68, - 0x25, 0xb6, 0xcf, 0xb9, 0xdd, 0x0e, 0x7c, 0x67, 0x25, 0xb6, 0xee, 0x1c, 0x0c, 0xeb, 0xd8, 0x45, - 0xa4, 0x53, 0x7c, 0x86, 0x8e, 0x2c, 0x1c, 0x69, 0x13, 0xfd, 0x6f, 0xd4, 0x09, 0xff, 0x1b, 0x34, - 0xd2, 0x69, 0x70, 0x8f, 0xba, 0x75, 0x2e, 0xc0, 0x12, 0xcf, 0x51, 0xdb, 0xd5, 0xb3, 0x5c, 0x77, - 0x3a, 0xa0, 0xae, 0x3d, 0xb5, 0xed, 0x69, 0x39, 0xa1, 0x77, 0x7f, 0x5f, 0xb6, 0x2f, 0xc2, 0x03, - 0x7f, 0xfb, 0xf8, 0xb5, 0x27, 0xfe, 0x6e, 0x4f, 0xfc, 0x9f, 0x3d, 0xf1, 0x3f, 0x2a, 0xe2, 0xed, - 0x2a, 0xe2, 0x7d, 0x57, 0xc4, 0x7b, 0xba, 0x49, 0xa4, 0x4e, 0x37, 0xb1, 0x91, 0xc5, 0x6a, 0x17, - 0x31, 0x1f, 0x27, 0xc0, 0xca, 0x39, 0xcb, 0xe0, 0x65, 0xb3, 0x16, 0xca, 0x79, 0x9f, 0xce, 0xc6, - 0x0d, 0xf5, 0x7a, 0x9b, 0x0b, 0x15, 0xb7, 0xad, 0xa7, 0xd9, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, - 0x55, 0x02, 0x17, 0xe1, 0x9e, 0x01, 0x00, 0x00, + 0x6a, 0xab, 0xed, 0x02, 0x88, 0x09, 0x06, 0x26, 0xa4, 0x2a, 0x03, 0x03, 0x0b, 0x4a, 0x8c, 0x9b, + 0x58, 0x6d, 0x38, 0x51, 0xec, 0x46, 0xf4, 0x0d, 0x18, 0x79, 0x04, 0x1e, 0x87, 0xb1, 0x23, 0x23, + 0x6a, 0x5e, 0x04, 0xd9, 0x6e, 0x50, 0xb6, 0x73, 0x74, 0x3e, 0xff, 0xfa, 0xfd, 0xa1, 0xa1, 0x8c, + 0x39, 0xe3, 0x50, 0x08, 0xc6, 0x21, 0xcb, 0xa4, 0xce, 0xc4, 0xab, 0x66, 0xe5, 0xa4, 0xb1, 0xd1, + 0xbc, 0x00, 0x0d, 0xf8, 0x48, 0xc6, 0x9c, 0x1a, 0x90, 0x36, 0x4e, 0xe5, 0xa4, 0x7f, 0x98, 0x40, + 0x02, 0x16, 0x61, 0x66, 0x72, 0x74, 0xff, 0x94, 0x83, 0xca, 0x40, 0x31, 0xc9, 0xd5, 0x74, 0x66, + 0xf2, 0xf2, 0x02, 0x60, 0xa1, 0xdc, 0x35, 0xb8, 0x40, 0xe8, 0x41, 0x14, 0xcb, 0x95, 0x08, 0x01, + 0x34, 0xc6, 0xa8, 0x95, 0x46, 0x2a, 0x3d, 0xf6, 0x07, 0xfe, 0xa8, 0x17, 0xda, 0xf9, 0xba, 0xf5, + 0xfe, 0x79, 0xee, 0x05, 0x63, 0xd4, 0x73, 0xdc, 0xbc, 0x10, 0x0b, 0xf9, 0x86, 0xcf, 0x10, 0x5a, + 0x8a, 0xcd, 0x73, 0x6e, 0xb7, 0x3d, 0xdf, 0x59, 0x8a, 0x8d, 0x3b, 0x07, 0xc3, 0x3a, 0x76, 0x1e, + 0xe9, 0x14, 0x9f, 0xa0, 0x03, 0x0b, 0x47, 0xda, 0x44, 0xff, 0x1b, 0x75, 0xc2, 0xff, 0x06, 0x8d, + 0x74, 0x1a, 0xdc, 0xa3, 0x6e, 0x9d, 0x0b, 0xb0, 0xc0, 0x97, 0xa8, 0xed, 0xea, 0x59, 0xae, 0x3b, + 0x1d, 0x50, 0xd7, 0x9e, 0xda, 0xf6, 0xb4, 0x9c, 0xd0, 0xbb, 0xbf, 0x2f, 0xdb, 0x17, 0xe1, 0x9e, + 0xbf, 0x7d, 0xfc, 0xda, 0x11, 0x7f, 0xbb, 0x23, 0xfe, 0xcf, 0x8e, 0xf8, 0x1f, 0x15, 0xf1, 0xb6, + 0x15, 0xf1, 0xbe, 0x2b, 0xe2, 0x3d, 0xdd, 0x24, 0x52, 0xa7, 0xeb, 0xd8, 0xc8, 0x62, 0xb5, 0x8b, + 0x98, 0x8f, 0x13, 0x60, 0xe5, 0x15, 0xcb, 0xe0, 0x65, 0xbd, 0x12, 0xca, 0x79, 0x9f, 0xce, 0xc6, + 0x0d, 0xf5, 0x7a, 0x93, 0x0b, 0x15, 0xb7, 0xad, 0xa7, 0xd9, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, + 0xbb, 0x86, 0x2e, 0x40, 0x9e, 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 52c6c1775e61..58c849a66c70 100644 --- a/modules/core/23-commitment/types/merkle.go +++ b/modules/core/23-commitment/types/merkle.go @@ -11,8 +11,8 @@ import ( cmtcrypto "github.com/cometbft/cometbft/proto/tendermint/crypto" - "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types/v2" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types/v2" + "github.com/cosmos/ibc-go/v9/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 d0089799c677..89bfd2720133 100644 --- a/modules/core/23-commitment/types/merkle_test.go +++ b/modules/core/23-commitment/types/merkle_test.go @@ -8,8 +8,8 @@ import ( storetypes "cosmossdk.io/store/types" - "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types/v2" + "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types/v2" ) func (suite *MerkleTestSuite) TestVerifyMembership() { diff --git a/modules/core/23-commitment/types/utils_test.go b/modules/core/23-commitment/types/utils_test.go index cd7f9a8bf50d..524b4e544b14 100644 --- a/modules/core/23-commitment/types/utils_test.go +++ b/modules/core/23-commitment/types/utils_test.go @@ -9,7 +9,7 @@ import ( "github.com/cometbft/cometbft/proto/tendermint/crypto" - "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" ) func (suite *MerkleTestSuite) TestConvertProofs() { diff --git a/modules/core/23-commitment/types/v2/commitment.pb.go b/modules/core/23-commitment/types/v2/commitment.pb.go index fed8615f4317..04cfb69c40b1 100644 --- a/modules/core/23-commitment/types/v2/commitment.pb.go +++ b/modules/core/23-commitment/types/v2/commitment.pb.go @@ -88,9 +88,9 @@ var fileDescriptor_8f65a9eb5e4ee5fc = []byte{ 0x4f, 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, 0x3e, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x09, 0x64, 0xb0, 0x7e, 0x72, 0x7e, 0x71, 0x6e, 0x7e, 0xb1, 0x7e, 0x66, 0x52, 0xb2, 0x6e, - 0x7a, 0xbe, 0x7e, 0x99, 0x85, 0x7e, 0x6e, 0x7e, 0x4a, 0x69, 0x4e, 0x6a, 0x31, 0xc4, 0x8d, 0x46, + 0x7a, 0xbe, 0x7e, 0x99, 0xa5, 0x7e, 0x6e, 0x7e, 0x4a, 0x69, 0x4e, 0x6a, 0x31, 0xc4, 0x8d, 0x46, 0xc6, 0xba, 0x48, 0xce, 0x2c, 0xa9, 0x2c, 0x48, 0x2d, 0xd6, 0x2f, 0x33, 0x4a, 0x62, 0x03, 0x3b, - 0xd1, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0xc4, 0xd4, 0x6b, 0x94, 0xcd, 0x00, 0x00, 0x00, + 0xd1, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0x88, 0xfc, 0xfd, 0x37, 0xcd, 0x00, 0x00, 0x00, } func (m *MerklePath) Marshal() (dAtA []byte, err error) { diff --git a/modules/core/23-commitment/types/v2/merkle.go b/modules/core/23-commitment/types/v2/merkle.go index 84944565788f..082937096844 100644 --- a/modules/core/23-commitment/types/v2/merkle.go +++ b/modules/core/23-commitment/types/v2/merkle.go @@ -3,7 +3,7 @@ package v2 import ( "fmt" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) var _ exported.Path = (*MerklePath)(nil) diff --git a/modules/core/24-host/client_keys.go b/modules/core/24-host/client_keys.go index 0142e82ea7ab..d2bc3260bd10 100644 --- a/modules/core/24-host/client_keys.go +++ b/modules/core/24-host/client_keys.go @@ -1,7 +1,7 @@ package host import ( - "github.com/cosmos/ibc-go/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // FullClientKey returns the full path of specific client path in the format: diff --git a/modules/core/24-host/client_paths.go b/modules/core/24-host/client_paths.go index e0564fcc4240..f307a866fc00 100644 --- a/modules/core/24-host/client_paths.go +++ b/modules/core/24-host/client_paths.go @@ -3,7 +3,7 @@ package host import ( "fmt" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // KeyClientStorePrefix defines the KVStore key prefix for IBC clients diff --git a/modules/core/24-host/parse_test.go b/modules/core/24-host/parse_test.go index 1614bbfc5c9b..37789ef0b197 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/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" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func TestParseIdentifier(t *testing.T) { diff --git a/modules/core/ante/ante.go b/modules/core/ante/ante.go index c456ed45a6f8..5f068446f8cc 100644 --- a/modules/core/ante/ante.go +++ b/modules/core/ante/ante.go @@ -5,10 +5,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/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" - "github.com/cosmos/ibc-go/v8/modules/core/keeper" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/core/keeper" ) type RedundantRelayDecorator struct { diff --git a/modules/core/ante/ante_test.go b/modules/core/ante/ante_test.go index 4f998f05d62e..f60b75ebd502 100644 --- a/modules/core/ante/ante_test.go +++ b/modules/core/ante/ante_test.go @@ -11,14 +11,14 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/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/ante" - "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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/ante" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) type AnteTestSuite struct { diff --git a/modules/core/client/cli/cli.go b/modules/core/client/cli/cli.go index 12a6587738b9..ef28df054a60 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/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" + ibcclient "github.com/cosmos/ibc-go/v9/modules/core/02-client" + connection "github.com/cosmos/ibc-go/v9/modules/core/03-connection" + channel "github.com/cosmos/ibc-go/v9/modules/core/04-channel" + ibcexported "github.com/cosmos/ibc-go/v9/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 66b10e6e07ef..aae76b98dfab 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/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // 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 30dd983151a5..919852131d23 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/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) const codespace = exported.ModuleName diff --git a/modules/core/genesis.go b/modules/core/genesis.go index 3eaada47208a..972e1d3e7239 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/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" + client "github.com/cosmos/ibc-go/v9/modules/core/02-client" + connection "github.com/cosmos/ibc-go/v9/modules/core/03-connection" + channel "github.com/cosmos/ibc-go/v9/modules/core/04-channel" + "github.com/cosmos/ibc-go/v9/modules/core/keeper" + "github.com/cosmos/ibc-go/v9/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 1349c5927140..c35321b6dce6 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/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" + ibc "github.com/cosmos/ibc-go/v9/modules/core" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/core/types" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v9/testing/simapp" ) const ( diff --git a/modules/core/integration_test.go b/modules/core/integration_test.go index 1f9d6d5e4fde..ae7191ab4199 100644 --- a/modules/core/integration_test.go +++ b/modules/core/integration_test.go @@ -1,11 +1,11 @@ package ibc_test import ( - clienttypes "github.com/cosmos/ibc-go/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" - ibcmock "github.com/cosmos/ibc-go/v8/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibctesting "github.com/cosmos/ibc-go/v9/testing" + ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" ) // If packet receipts are pruned, it may be possible to double spend via a diff --git a/modules/core/keeper/events_test.go b/modules/core/keeper/events_test.go index d7912dc69445..98915ac13c14 100644 --- a/modules/core/keeper/events_test.go +++ b/modules/core/keeper/events_test.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v8/modules/core/keeper" - "github.com/cosmos/ibc-go/v8/modules/core/types" + "github.com/cosmos/ibc-go/v9/modules/core/keeper" + "github.com/cosmos/ibc-go/v9/modules/core/types" ) func TestConvertToErrorEvents(t *testing.T) { diff --git a/modules/core/keeper/grpc_query.go b/modules/core/keeper/grpc_query.go index 2a589738eeab..31147f7cea80 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/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" ) // ClientState implements the IBC QueryServer interface diff --git a/modules/core/keeper/keeper.go b/modules/core/keeper/keeper.go index 30726efecfcf..f04fead855a5 100644 --- a/modules/core/keeper/keeper.go +++ b/modules/core/keeper/keeper.go @@ -11,13 +11,13 @@ import ( "github.com/cosmos/cosmos-sdk/codec" capabilitykeeper "github.com/cosmos/ibc-go/modules/capability/keeper" - 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" - 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" + clientkeeper "github.com/cosmos/ibc-go/v9/modules/core/02-client/keeper" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + connectionkeeper "github.com/cosmos/ibc-go/v9/modules/core/03-connection/keeper" + channelkeeper "github.com/cosmos/ibc-go/v9/modules/core/04-channel/keeper" + portkeeper "github.com/cosmos/ibc-go/v9/modules/core/05-port/keeper" + porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + "github.com/cosmos/ibc-go/v9/modules/core/types" ) var _ types.QueryServer = (*Keeper)(nil) diff --git a/modules/core/keeper/keeper_test.go b/modules/core/keeper/keeper_test.go index 95f62bd110ae..282a8a4bc346 100644 --- a/modules/core/keeper/keeper_test.go +++ b/modules/core/keeper/keeper_test.go @@ -12,11 +12,11 @@ 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/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" - ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibckeeper "github.com/cosmos/ibc-go/v9/modules/core/keeper" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) type KeeperTestSuite struct { diff --git a/modules/core/keeper/msg_server.go b/modules/core/keeper/msg_server.go index a30e96d1ed69..b1687b996c44 100644 --- a/modules/core/keeper/msg_server.go +++ b/modules/core/keeper/msg_server.go @@ -11,13 +11,13 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/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" - "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" - coretypes "github.com/cosmos/ibc-go/v8/modules/core/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v9/modules/core/04-channel/keeper" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + coretypes "github.com/cosmos/ibc-go/v9/modules/core/types" ) var ( diff --git a/modules/core/keeper/msg_server_test.go b/modules/core/keeper/msg_server_test.go index 37c9a465e83e..ccc1b2115b23 100644 --- a/modules/core/keeper/msg_server_test.go +++ b/modules/core/keeper/msg_server_test.go @@ -12,18 +12,18 @@ import ( abci "github.com/cometbft/cometbft/abci/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/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" - 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" - "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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/core/keeper" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v9/testing" + ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" ) var ( diff --git a/modules/core/migrations/v7/genesis.go b/modules/core/migrations/v7/genesis.go index 581f28558fa4..dccc918f75ba 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/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" + clientv7 "github.com/cosmos/ibc-go/v9/modules/core/02-client/migrations/v7" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/core/types" ) // 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 17cffc5e61aa..5bd598d1fee2 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/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" - "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" + ibcclient "github.com/cosmos/ibc-go/v9/modules/core/02-client" + clientv7 "github.com/cosmos/ibc-go/v9/modules/core/02-client/migrations/v7" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/core/migrations/v7" + "github.com/cosmos/ibc-go/v9/modules/core/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) type MigrationsV7TestSuite struct { diff --git a/modules/core/module.go b/modules/core/module.go index 44e6d35ec782..54ee26a8a1c2 100644 --- a/modules/core/module.go +++ b/modules/core/module.go @@ -17,18 +17,18 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - 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" - channelkeeper "github.com/cosmos/ibc-go/v8/modules/core/04-channel/keeper" - 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" + ibcclient "github.com/cosmos/ibc-go/v9/modules/core/02-client" + clientkeeper "github.com/cosmos/ibc-go/v9/modules/core/02-client/keeper" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + connectionkeeper "github.com/cosmos/ibc-go/v9/modules/core/03-connection/keeper" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + channelkeeper "github.com/cosmos/ibc-go/v9/modules/core/04-channel/keeper" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v9/modules/core/client/cli" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/core/keeper" + "github.com/cosmos/ibc-go/v9/modules/core/simulation" + "github.com/cosmos/ibc-go/v9/modules/core/types" ) var ( diff --git a/modules/core/simulation/decoder.go b/modules/core/simulation/decoder.go index 204881f397df..fe0677b41438 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/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" + clientsim "github.com/cosmos/ibc-go/v9/modules/core/02-client/simulation" + connectionsim "github.com/cosmos/ibc-go/v9/modules/core/03-connection/simulation" + channelsim "github.com/cosmos/ibc-go/v9/modules/core/04-channel/simulation" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/core/keeper" ) // 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 83c1819ec9f5..12d9dab6fc20 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/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/simulation" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + "github.com/cosmos/ibc-go/v9/testing/simapp" ) func TestDecodeStore(t *testing.T) { diff --git a/modules/core/simulation/genesis.go b/modules/core/simulation/genesis.go index 0c2fb93b3da3..b4f6d6eb642d 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/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" + clientsims "github.com/cosmos/ibc-go/v9/modules/core/02-client/simulation" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + connectionsims "github.com/cosmos/ibc-go/v9/modules/core/03-connection/simulation" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + channelsims "github.com/cosmos/ibc-go/v9/modules/core/04-channel/simulation" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/core/types" ) // Simulation parameter constants diff --git a/modules/core/simulation/genesis_test.go b/modules/core/simulation/genesis_test.go index 3a22600bbf2e..3a3d62d5c8a8 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/v8/modules/core/exported" - "github.com/cosmos/ibc-go/v8/modules/core/simulation" - "github.com/cosmos/ibc-go/v8/modules/core/types" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/core/simulation" + "github.com/cosmos/ibc-go/v9/modules/core/types" ) // TestRandomizedGenState tests the normal scenario of applying RandomizedGenState. diff --git a/modules/core/simulation/proposals.go b/modules/core/simulation/proposals.go index d56b775df3c1..e909d1fa1f0f 100644 --- a/modules/core/simulation/proposals.go +++ b/modules/core/simulation/proposals.go @@ -11,10 +11,10 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" - "github.com/cosmos/ibc-go/v8/modules/core/02-client/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/v9/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" ) // Simulation operation weights constants diff --git a/modules/core/simulation/proposals_test.go b/modules/core/simulation/proposals_test.go index c77c2316cc26..b26bf9c94e68 100644 --- a/modules/core/simulation/proposals_test.go +++ b/modules/core/simulation/proposals_test.go @@ -13,10 +13,10 @@ import ( cmtproto "github.com/cometbft/cometbft/proto/tendermint/types" - clienttypes "github.com/cosmos/ibc-go/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/simulation" - ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + "github.com/cosmos/ibc-go/v9/modules/core/simulation" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" ) func TestProposalMsgs(t *testing.T) { diff --git a/modules/core/types/codec.go b/modules/core/types/codec.go index 1216ab228647..270096bc88d8 100644 --- a/modules/core/types/codec.go +++ b/modules/core/types/codec.go @@ -3,10 +3,10 @@ package types import ( codectypes "github.com/cosmos/cosmos-sdk/codec/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" ) // 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 df8c396777ee..7b43fd9c71ac 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/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" ) var _ codectypes.UnpackInterfacesMessage = (*GenesisState)(nil) diff --git a/modules/core/types/genesis.pb.go b/modules/core/types/genesis.pb.go index 72bd25426e29..752101a366df 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/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" + types "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + types1 "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + types2 "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" 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, 0x58, 0x98, 0xbb, 0xc0, 0x82, 0x84, 0x60, 0x82, 0x05, 0x35, 0xc6, 0x72, 0x2d, 0x25, + 0xb0, 0x15, 0x98, 0x58, 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, 0x78, 0xdc, 0x83, - 0x52, 0x14, 0x02, 0x00, 0x00, + 0xf3, 0xf6, 0xf9, 0x81, 0xb9, 0xdd, 0xeb, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x65, 0x21, 0x36, + 0x53, 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 c6872ae461ae..afce1942b5b9 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/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" + client "github.com/cosmos/ibc-go/v9/modules/core/02-client" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + connection "github.com/cosmos/ibc-go/v9/modules/core/03-connection" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + channel "github.com/cosmos/ibc-go/v9/modules/core/04-channel" + channeltypes "github.com/cosmos/ibc-go/v9/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 1bbac3c2314b..68f099d233c5 100644 --- a/modules/light-clients/06-solomachine/client_state.go +++ b/modules/light-clients/06-solomachine/client_state.go @@ -9,11 +9,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/tx/signing" - clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" - commitmenttypesv2 "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types/v2" - 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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + commitmenttypesv2 "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types/v2" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) 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 66f025e27866..e8e1ab6d4940 100644 --- a/modules/light-clients/06-solomachine/client_state_test.go +++ b/modules/light-clients/06-solomachine/client_state_test.go @@ -3,8 +3,8 @@ package solomachine_test import ( "bytes" - solomachine "github.com/cosmos/ibc-go/v8/modules/light-clients/06-solomachine" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) const ( diff --git a/modules/light-clients/06-solomachine/codec.go b/modules/light-clients/06-solomachine/codec.go index 9ab20713eebf..e6f9a2c6184d 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/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // RegisterInterfaces register the ibc channel submodule interfaces to protobuf diff --git a/modules/light-clients/06-solomachine/codec_test.go b/modules/light-clients/06-solomachine/codec_test.go index 966ad2365baf..7cf1089d59cb 100644 --- a/modules/light-clients/06-solomachine/codec_test.go +++ b/modules/light-clients/06-solomachine/codec_test.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" - solomachine "github.com/cosmos/ibc-go/v8/modules/light-clients/06-solomachine" + solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" ) func TestCodecTypeRegistration(t *testing.T) { diff --git a/modules/light-clients/06-solomachine/consensus_state.go b/modules/light-clients/06-solomachine/consensus_state.go index a9da6439d1e6..33c891dfd222 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/v8/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/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 73beba815e9f..47abff209b9f 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/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/v9/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func (suite *SoloMachineTestSuite) TestConsensusState() { diff --git a/modules/light-clients/06-solomachine/header.go b/modules/light-clients/06-solomachine/header.go index d8843116aedf..8772c481b368 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/v8/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/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 ebb868c5df5b..e23e66bc2b7b 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/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/v9/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func (suite *SoloMachineTestSuite) TestHeaderValidateBasic() { diff --git a/modules/light-clients/06-solomachine/light_client_module.go b/modules/light-clients/06-solomachine/light_client_module.go index 2e8f2d9fc991..5af74d95841f 100644 --- a/modules/light-clients/06-solomachine/light_client_module.go +++ b/modules/light-clients/06-solomachine/light_client_module.go @@ -8,8 +8,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) var _ exported.LightClientModule = (*LightClientModule)(nil) diff --git a/modules/light-clients/06-solomachine/light_client_module_test.go b/modules/light-clients/06-solomachine/light_client_module_test.go index f70a8d49760e..b6e0f74a6e48 100644 --- a/modules/light-clients/06-solomachine/light_client_module_test.go +++ b/modules/light-clients/06-solomachine/light_client_module_test.go @@ -6,16 +6,16 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/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" - commitmenttypesv2 "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types/v2" - 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" - ibctesting "github.com/cosmos/ibc-go/v8/testing" - ibcmock "github.com/cosmos/ibc-go/v8/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + commitmenttypesv2 "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types/v2" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v9/testing" + ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" ) const ( diff --git a/modules/light-clients/06-solomachine/misbehaviour.go b/modules/light-clients/06-solomachine/misbehaviour.go index 542967998fac..e086ff27e4ec 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/v8/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/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 ac63a43d6f3e..b6bb13233998 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/v8/modules/core/23-commitment/types" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v9/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 5fa0dd8a210e..b74023aee355 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/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/v9/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" + ibctesting "github.com/cosmos/ibc-go/v9/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 69d033b99eda..6c382c1979a6 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/v8/modules/light-clients/06-solomachine" + solomachine "github.com/cosmos/ibc-go/v9/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 4c76f40334a6..aae18d037c17 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/v8/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // CheckSubstituteAndUpdateState verifies that the subject is allowed to be updated by diff --git a/modules/light-clients/06-solomachine/solomachine.pb.go b/modules/light-clients/06-solomachine/solomachine.pb.go index db11bb15baec..123897717514 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, 0x08, 0x95, 0x53, 0xdb, 0x08, 0x21, 0x01, 0x02, 0xb9, 0x15, 0x42, + 0xa2, 0x97, 0xd8, 0x34, 0x41, 0x48, 0x94, 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, 0x99, 0x38, 0x5b, 0xce, 0xb1, 0x05, 0x00, 0x00, + 0x00, 0xff, 0xff, 0x0a, 0x37, 0x9c, 0x84, 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 53289d290697..395f8ec554ba 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/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" + transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" + ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v9/testing/mock" ) var channelIDSolomachine = "channel-on-solomachine" // channelID generated on solo machine side diff --git a/modules/light-clients/06-solomachine/store.go b/modules/light-clients/06-solomachine/store.go index f0fa1f3829b9..a038a119051c 100644 --- a/modules/light-clients/06-solomachine/store.go +++ b/modules/light-clients/06-solomachine/store.go @@ -7,8 +7,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" - clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" ) // getClientState retrieves the client state from the store using the provided KVStore and codec. diff --git a/modules/light-clients/06-solomachine/update.go b/modules/light-clients/06-solomachine/update.go index 53e4ef26ea24..ddc53dbb2d24 100644 --- a/modules/light-clients/06-solomachine/update.go +++ b/modules/light-clients/06-solomachine/update.go @@ -7,8 +7,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // VerifyClientMessage introspects the provided ClientMessage and checks its validity diff --git a/modules/light-clients/07-tendermint/client_state.go b/modules/light-clients/07-tendermint/client_state.go index c089b80a1f54..83add3fb0f4a 100644 --- a/modules/light-clients/07-tendermint/client_state.go +++ b/modules/light-clients/07-tendermint/client_state.go @@ -15,11 +15,11 @@ import ( "github.com/cometbft/cometbft/light" cmttypes "github.com/cometbft/cometbft/types" - clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" - commitmenttypesv2 "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types/v2" - ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + commitmenttypesv2 "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types/v2" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) 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 49bd513fd77f..82aecf465daf 100644 --- a/modules/light-clients/07-tendermint/client_state_test.go +++ b/modules/light-clients/07-tendermint/client_state_test.go @@ -3,9 +3,9 @@ package tendermint_test import ( ics23 "github.com/cosmos/ics23/go" - clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" ) const ( diff --git a/modules/light-clients/07-tendermint/codec.go b/modules/light-clients/07-tendermint/codec.go index af75f9f881b2..1b35bed3aaef 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/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // RegisterInterfaces registers the tendermint concrete client-related diff --git a/modules/light-clients/07-tendermint/codec_test.go b/modules/light-clients/07-tendermint/codec_test.go index f139e0ac39f0..87b964831775 100644 --- a/modules/light-clients/07-tendermint/codec_test.go +++ b/modules/light-clients/07-tendermint/codec_test.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" - tendermint "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + tendermint "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" ) func TestCodecTypeRegistration(t *testing.T) { diff --git a/modules/light-clients/07-tendermint/consensus_host.go b/modules/light-clients/07-tendermint/consensus_host.go index 9abfe46ecb90..fb7d8dc66a3e 100644 --- a/modules/light-clients/07-tendermint/consensus_host.go +++ b/modules/light-clients/07-tendermint/consensus_host.go @@ -13,10 +13,10 @@ import ( "github.com/cometbft/cometbft/light" - 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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) var _ clienttypes.ConsensusHost = (*ConsensusHost)(nil) diff --git a/modules/light-clients/07-tendermint/consensus_host_test.go b/modules/light-clients/07-tendermint/consensus_host_test.go index bb2f03d5b1be..f0dca0148df5 100644 --- a/modules/light-clients/07-tendermint/consensus_host_test.go +++ b/modules/light-clients/07-tendermint/consensus_host_test.go @@ -4,13 +4,13 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - 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" - ibctesting "github.com/cosmos/ibc-go/v8/testing" - "github.com/cosmos/ibc-go/v8/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v9/testing/mock" ) func (suite *TendermintTestSuite) TestGetSelfConsensusState() { diff --git a/modules/light-clients/07-tendermint/consensus_state.go b/modules/light-clients/07-tendermint/consensus_state.go index c7ee1ff0eeb1..df82b8a8e5b2 100644 --- a/modules/light-clients/07-tendermint/consensus_state.go +++ b/modules/light-clients/07-tendermint/consensus_state.go @@ -8,9 +8,9 @@ import ( cmtbytes "github.com/cometbft/cometbft/libs/bytes" cmttypes "github.com/cometbft/cometbft/types" - clienttypes "github.com/cosmos/ibc-go/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) 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 4a637c4bca7c..fe086555a50c 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/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" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" ) func (suite *TendermintTestSuite) TestConsensusStateValidateBasic() { diff --git a/modules/light-clients/07-tendermint/header.go b/modules/light-clients/07-tendermint/header.go index d144e9cff088..f388f9688279 100644 --- a/modules/light-clients/07-tendermint/header.go +++ b/modules/light-clients/07-tendermint/header.go @@ -8,9 +8,9 @@ import ( cmttypes "github.com/cometbft/cometbft/types" - clienttypes "github.com/cosmos/ibc-go/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) 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 42b3fa5de978..1c5d1544a8f8 100644 --- a/modules/light-clients/07-tendermint/header_test.go +++ b/modules/light-clients/07-tendermint/header_test.go @@ -5,9 +5,9 @@ import ( cmtprotocrypto "github.com/cometbft/cometbft/proto/tendermint/crypto" - 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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" ) func (suite *TendermintTestSuite) TestGetHeight() { diff --git a/modules/light-clients/07-tendermint/light_client_module.go b/modules/light-clients/07-tendermint/light_client_module.go index 9a66b8d6e750..a4ee6cb077b3 100644 --- a/modules/light-clients/07-tendermint/light_client_module.go +++ b/modules/light-clients/07-tendermint/light_client_module.go @@ -8,10 +8,10 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" - ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" - "github.com/cosmos/ibc-go/v8/modules/core/exported" - "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint/internal/keeper" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint/internal/keeper" ) var _ exported.LightClientModule = (*LightClientModule)(nil) diff --git a/modules/light-clients/07-tendermint/light_client_module_test.go b/modules/light-clients/07-tendermint/light_client_module_test.go index 53a2bf6c251b..5fd153ff890d 100644 --- a/modules/light-clients/07-tendermint/light_client_module_test.go +++ b/modules/light-clients/07-tendermint/light_client_module_test.go @@ -11,16 +11,16 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" - transfertypes "github.com/cosmos/ibc-go/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" - 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" - ibctesting "github.com/cosmos/ibc-go/v8/testing" - ibcmock "github.com/cosmos/ibc-go/v8/testing/mock" + transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v9/testing" + ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" ) var ( diff --git a/modules/light-clients/07-tendermint/migrations/expected_keepers.go b/modules/light-clients/07-tendermint/migrations/expected_keepers.go index a28b2673e7ee..b6b681d64022 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/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v9/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 eb80c602a465..b1ab4f0eea64 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/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" ) // 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 3c44c306ba58..65161c391ce0 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/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibctmmigrations "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint/migrations" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) type MigrationsTestSuite struct { diff --git a/modules/light-clients/07-tendermint/misbehaviour.go b/modules/light-clients/07-tendermint/misbehaviour.go index 8a6616b19375..86d1de187bc7 100644 --- a/modules/light-clients/07-tendermint/misbehaviour.go +++ b/modules/light-clients/07-tendermint/misbehaviour.go @@ -8,9 +8,9 @@ import ( cmtproto "github.com/cometbft/cometbft/proto/tendermint/types" cmttypes "github.com/cometbft/cometbft/types" - clienttypes "github.com/cosmos/ibc-go/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) 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 ae9806e91083..11f5762b47e3 100644 --- a/modules/light-clients/07-tendermint/misbehaviour_handle.go +++ b/modules/light-clients/07-tendermint/misbehaviour_handle.go @@ -13,8 +13,8 @@ import ( cmttypes "github.com/cometbft/cometbft/types" - clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/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 074cb8f65f5b..f201efd39eff 100644 --- a/modules/light-clients/07-tendermint/misbehaviour_handle_test.go +++ b/modules/light-clients/07-tendermint/misbehaviour_handle_test.go @@ -7,11 +7,11 @@ import ( cmttypes "github.com/cometbft/cometbft/types" - 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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) 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 bb198d5b1ab6..9fc589dc081d 100644 --- a/modules/light-clients/07-tendermint/misbehaviour_test.go +++ b/modules/light-clients/07-tendermint/misbehaviour_test.go @@ -7,10 +7,10 @@ import ( cmtproto "github.com/cometbft/cometbft/proto/tendermint/types" cmttypes "github.com/cometbft/cometbft/types" - 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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) 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 8f36ad1dffe9..cae0efc842a2 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/v8/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/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 f7eb58e91d3c..703651ca2653 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/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) 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 f53e5c5b2f04..823ad4c55d8e 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/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) /* diff --git a/modules/light-clients/07-tendermint/store_test.go b/modules/light-clients/07-tendermint/store_test.go index 5eae11a5af7b..e6155284c8af 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/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" + tendermint "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) 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 fd9846735846..b2224d12c44d 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/v8/modules/core/02-client/types" - types1 "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" + types "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + types1 "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" _go "github.com/cosmos/ics23/go" _ "google.golang.org/protobuf/types/known/durationpb" _ "google.golang.org/protobuf/types/known/timestamppb" @@ -326,7 +326,7 @@ 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, 0x40, 0x2c, 0x1c, 0x48, 0x77, 0xa1, 0x5d, 0xb6, 0x50, + 0xf4, 0x00, 0xb9, 0xd4, 0xde, 0x64, 0x91, 0x10, 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, @@ -382,7 +382,7 @@ var fileDescriptor_c6d6cf2b288949be = []byte{ 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, + 0x8f, 0xfe, 0x0a, 0x00, 0x00, 0xff, 0xff, 0xcd, 0xc5, 0x40, 0xb7, 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 b39162b930db..0060def8526c 100644 --- a/modules/light-clients/07-tendermint/tendermint_test.go +++ b/modules/light-clients/07-tendermint/tendermint_test.go @@ -12,10 +12,10 @@ import ( cmtbytes "github.com/cometbft/cometbft/libs/bytes" cmttypes "github.com/cometbft/cometbft/types" - clienttypes "github.com/cosmos/ibc-go/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" - "github.com/cosmos/ibc-go/v8/testing/simapp" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v9/testing/simapp" ) const ( diff --git a/modules/light-clients/07-tendermint/update.go b/modules/light-clients/07-tendermint/update.go index 9a710f9e6867..aa9d03cead6c 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" cmttypes "github.com/cometbft/cometbft/types" - 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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // 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 b0e46db7d6f7..605d4ab30774 100644 --- a/modules/light-clients/07-tendermint/update_test.go +++ b/modules/light-clients/07-tendermint/update_test.go @@ -9,12 +9,12 @@ import ( cmttypes "github.com/cometbft/cometbft/types" - 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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func (suite *TendermintTestSuite) TestVerifyHeader() { diff --git a/modules/light-clients/07-tendermint/upgrade.go b/modules/light-clients/07-tendermint/upgrade.go index f45208c36ead..398b6652a757 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/v8/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" - commitmenttypesv2 "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types/v2" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + commitmenttypesv2 "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types/v2" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // 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 2f71d0ee29fc..ea653cba82ee 100644 --- a/modules/light-clients/07-tendermint/upgrade_test.go +++ b/modules/light-clients/07-tendermint/upgrade_test.go @@ -5,12 +5,12 @@ import ( upgradetypes "cosmossdk.io/x/upgrade/types" - clienttypes "github.com/cosmos/ibc-go/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func (suite *TendermintTestSuite) TestVerifyUpgrade() { diff --git a/modules/light-clients/08-wasm/client/cli/query.go b/modules/light-clients/08-wasm/client/cli/query.go index d5a0ebe9d971..9a69a01736d3 100644 --- a/modules/light-clients/08-wasm/client/cli/query.go +++ b/modules/light-clients/08-wasm/client/cli/query.go @@ -11,7 +11,7 @@ import ( "github.com/cosmos/cosmos-sdk/version" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // getCmdCode defines the command to query wasm code for given checksum. diff --git a/modules/light-clients/08-wasm/client/cli/tx.go b/modules/light-clients/08-wasm/client/cli/tx.go index 92c5a95c21c1..215a73b96f9c 100644 --- a/modules/light-clients/08-wasm/client/cli/tx.go +++ b/modules/light-clients/08-wasm/client/cli/tx.go @@ -16,7 +16,7 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" ) const FlagAuthority = "authority" diff --git a/modules/light-clients/08-wasm/go.mod b/modules/light-clients/08-wasm/go.mod index ca51a92604f8..d11ec8d1eae4 100644 --- a/modules/light-clients/08-wasm/go.mod +++ b/modules/light-clients/08-wasm/go.mod @@ -4,7 +4,7 @@ go 1.22.2 toolchain go1.22.3 -replace github.com/cosmos/ibc-go/v8 => ../../../ +replace github.com/cosmos/ibc-go/v9 => ../../../ replace github.com/syndtr/goleveldb => github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 @@ -29,7 +29,7 @@ require ( github.com/cosmos/cosmos-sdk v0.50.7 github.com/cosmos/gogoproto v1.5.0 github.com/cosmos/ibc-go/modules/capability v1.0.1 - github.com/cosmos/ibc-go/v8 v8.0.0 + github.com/cosmos/ibc-go/v9 v9.0.0 github.com/golang/protobuf v1.5.4 github.com/grpc-ecosystem/grpc-gateway v1.16.0 github.com/spf13/cast v1.6.0 diff --git a/modules/light-clients/08-wasm/internal/types/store_test.go b/modules/light-clients/08-wasm/internal/types/store_test.go index f6dd0f9ee419..583ada4b16f6 100644 --- a/modules/light-clients/08-wasm/internal/types/store_test.go +++ b/modules/light-clients/08-wasm/internal/types/store_test.go @@ -18,10 +18,10 @@ import ( wasmtesting "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/testing" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/testing/simapp" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - clienttypes "github.com/cosmos/ibc-go/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func init() { diff --git a/modules/light-clients/08-wasm/keeper/contract_keeper.go b/modules/light-clients/08-wasm/keeper/contract_keeper.go index 18810aef285a..e812f2570e43 100644 --- a/modules/light-clients/08-wasm/keeper/contract_keeper.go +++ b/modules/light-clients/08-wasm/keeper/contract_keeper.go @@ -17,9 +17,9 @@ import ( internaltypes "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/internal/types" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - clienttypes "github.com/cosmos/ibc-go/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) var ( diff --git a/modules/light-clients/08-wasm/keeper/contract_keeper_test.go b/modules/light-clients/08-wasm/keeper/contract_keeper_test.go index 35517fa1536e..86e213aef796 100644 --- a/modules/light-clients/08-wasm/keeper/contract_keeper_test.go +++ b/modules/light-clients/08-wasm/keeper/contract_keeper_test.go @@ -8,10 +8,10 @@ import ( wasmtesting "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/testing" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - clienttypes "github.com/cosmos/ibc-go/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" ) func (suite *KeeperTestSuite) TestWasmInstantiate() { diff --git a/modules/light-clients/08-wasm/keeper/keeper.go b/modules/light-clients/08-wasm/keeper/keeper.go index 3c3995dafb97..fbccfe400558 100644 --- a/modules/light-clients/08-wasm/keeper/keeper.go +++ b/modules/light-clients/08-wasm/keeper/keeper.go @@ -17,8 +17,8 @@ import ( "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/internal/ibcwasm" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // Keeper defines the 08-wasm keeper diff --git a/modules/light-clients/08-wasm/keeper/keeper_test.go b/modules/light-clients/08-wasm/keeper/keeper_test.go index 67234f940322..1039494e0d16 100644 --- a/modules/light-clients/08-wasm/keeper/keeper_test.go +++ b/modules/light-clients/08-wasm/keeper/keeper_test.go @@ -23,11 +23,11 @@ import ( wasmtesting "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/testing" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/testing/simapp" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - clienttypes "github.com/cosmos/ibc-go/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" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) const ( diff --git a/modules/light-clients/08-wasm/keeper/msg_server.go b/modules/light-clients/08-wasm/keeper/msg_server.go index 606baaa9fadc..d08063d66302 100644 --- a/modules/light-clients/08-wasm/keeper/msg_server.go +++ b/modules/light-clients/08-wasm/keeper/msg_server.go @@ -9,7 +9,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" ) var _ types.MsgServer = (*Keeper)(nil) diff --git a/modules/light-clients/08-wasm/keeper/msg_server_test.go b/modules/light-clients/08-wasm/keeper/msg_server_test.go index def0351b2a34..67f0a1d1f144 100644 --- a/modules/light-clients/08-wasm/keeper/msg_server_test.go +++ b/modules/light-clients/08-wasm/keeper/msg_server_test.go @@ -14,10 +14,10 @@ import ( wasmtesting "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/testing" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - clienttypes "github.com/cosmos/ibc-go/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" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func (suite *KeeperTestSuite) TestMsgStoreCode() { diff --git a/modules/light-clients/08-wasm/keeper/querier_test.go b/modules/light-clients/08-wasm/keeper/querier_test.go index 74afd53d1219..e9362fb24f44 100644 --- a/modules/light-clients/08-wasm/keeper/querier_test.go +++ b/modules/light-clients/08-wasm/keeper/querier_test.go @@ -14,9 +14,9 @@ import ( "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/keeper" wasmtesting "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/testing" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - clienttypes "github.com/cosmos/ibc-go/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) type CustomQuery struct { diff --git a/modules/light-clients/08-wasm/light_client_module.go b/modules/light-clients/08-wasm/light_client_module.go index b2d2783f83f7..f21e414a5bfc 100644 --- a/modules/light-clients/08-wasm/light_client_module.go +++ b/modules/light-clients/08-wasm/light_client_module.go @@ -13,10 +13,10 @@ import ( internaltypes "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/internal/types" wasmkeeper "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/keeper" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" - commitmenttypesv2 "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types/v2" - ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + commitmenttypesv2 "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types/v2" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) var _ exported.LightClientModule = (*LightClientModule)(nil) diff --git a/modules/light-clients/08-wasm/light_client_module_test.go b/modules/light-clients/08-wasm/light_client_module_test.go index 03d07daa7915..17d336f03f19 100644 --- a/modules/light-clients/08-wasm/light_client_module_test.go +++ b/modules/light-clients/08-wasm/light_client_module_test.go @@ -14,15 +14,15 @@ import ( internaltypes "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/internal/types" wasmtesting "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/testing" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - clienttypes "github.com/cosmos/ibc-go/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" - 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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v9/testing" + ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" ) const ( diff --git a/modules/light-clients/08-wasm/testing/simapp/ante_handler.go b/modules/light-clients/08-wasm/testing/simapp/ante_handler.go index 098ef9fabbf3..a95f9657b5fc 100644 --- a/modules/light-clients/08-wasm/testing/simapp/ante_handler.go +++ b/modules/light-clients/08-wasm/testing/simapp/ante_handler.go @@ -6,9 +6,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/x/auth/ante" - ibcante "github.com/cosmos/ibc-go/v8/modules/core/ante" - ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" - "github.com/cosmos/ibc-go/v8/modules/core/keeper" + ibcante "github.com/cosmos/ibc-go/v9/modules/core/ante" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + "github.com/cosmos/ibc-go/v9/modules/core/keeper" ) // HandlerOptions extend the SDK's AnteHandler options by requiring the IBC keeper. diff --git a/modules/light-clients/08-wasm/testing/simapp/app.go b/modules/light-clients/08-wasm/testing/simapp/app.go index 1d41543aeb04..d50329dcca51 100644 --- a/modules/light-clients/08-wasm/testing/simapp/app.go +++ b/modules/light-clients/08-wasm/testing/simapp/app.go @@ -114,31 +114,31 @@ import ( "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/internal/ibcwasm" wasmkeeper "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/keeper" wasmtypes "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - ica "github.com/cosmos/ibc-go/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" - "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" - ibcclienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" - ibcconnectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/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" + ica "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts" + icacontroller "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller" + icacontrollerkeeper "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/keeper" + icacontrollertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + icahost "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host" + icahostkeeper "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/keeper" + icahosttypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + ibcfee "github.com/cosmos/ibc-go/v9/modules/apps/29-fee" + ibcfeekeeper "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/keeper" + ibcfeetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer" + ibctransferkeeper "github.com/cosmos/ibc-go/v9/modules/apps/transfer/keeper" + ibctransfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + ibc "github.com/cosmos/ibc-go/v9/modules/core" + ibcclient "github.com/cosmos/ibc-go/v9/modules/core/02-client" + ibcclienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + ibcconnectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibckeeper "github.com/cosmos/ibc-go/v9/modules/core/keeper" + solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" + ibctestingtypes "github.com/cosmos/ibc-go/v9/testing/types" ) const appName = "SimApp" diff --git a/modules/light-clients/08-wasm/testing/simapp/upgrades.go b/modules/light-clients/08-wasm/testing/simapp/upgrades.go index b33d1849e3b5..4c7026fc2439 100644 --- a/modules/light-clients/08-wasm/testing/simapp/upgrades.go +++ b/modules/light-clients/08-wasm/testing/simapp/upgrades.go @@ -11,7 +11,7 @@ import ( ) const ( - IBCWasmUpgrade = "ibcwasm-v8" + IBCWasmUpgrade = "ibcwasm-v9" ) // registerUpgradeHandlers registers all supported upgrade handlers @@ -37,7 +37,7 @@ func (app *SimApp) registerUpgradeHandlers() { } } -// createWasmStoreUpgradeHandler creates an upgrade handler for the 08-wasm ibc-go/v8 SimApp upgrade. +// createWasmStoreUpgradeHandler creates an upgrade handler for the 08-wasm ibc-go/v9 SimApp upgrade. func createWasmStoreUpgradeHandler(mm *module.Manager, configurator module.Configurator) upgradetypes.UpgradeHandler { return func(ctx context.Context, _ upgradetypes.Plan, vm module.VersionMap) (module.VersionMap, error) { return mm.RunMigrations(ctx, configurator, vm) diff --git a/modules/light-clients/08-wasm/testing/values.go b/modules/light-clients/08-wasm/testing/values.go index 71dca5474b1a..2e78b8157106 100644 --- a/modules/light-clients/08-wasm/testing/values.go +++ b/modules/light-clients/08-wasm/testing/values.go @@ -7,10 +7,10 @@ import ( "github.com/cosmos/cosmos-sdk/codec" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/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" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) var ( diff --git a/modules/light-clients/08-wasm/testing/wasm_endpoint.go b/modules/light-clients/08-wasm/testing/wasm_endpoint.go index 6d126ea35c9f..a6cfa930420f 100644 --- a/modules/light-clients/08-wasm/testing/wasm_endpoint.go +++ b/modules/light-clients/08-wasm/testing/wasm_endpoint.go @@ -4,8 +4,8 @@ import ( "github.com/stretchr/testify/require" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) // WasmEndpoint is a wrapper around the ibctesting pkg Endpoint struct. diff --git a/modules/light-clients/08-wasm/types/client_message.go b/modules/light-clients/08-wasm/types/client_message.go index 51409c5aaa90..a3dd719f6001 100644 --- a/modules/light-clients/08-wasm/types/client_message.go +++ b/modules/light-clients/08-wasm/types/client_message.go @@ -3,7 +3,7 @@ package types import ( errorsmod "cosmossdk.io/errors" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) var _ exported.ClientMessage = &ClientMessage{} diff --git a/modules/light-clients/08-wasm/types/client_state.go b/modules/light-clients/08-wasm/types/client_state.go index 1053a7dd0ac2..c1e6cbfb5971 100644 --- a/modules/light-clients/08-wasm/types/client_state.go +++ b/modules/light-clients/08-wasm/types/client_state.go @@ -3,8 +3,8 @@ package types import ( errorsmod "cosmossdk.io/errors" - clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) var _ exported.ClientState = (*ClientState)(nil) diff --git a/modules/light-clients/08-wasm/types/client_state_test.go b/modules/light-clients/08-wasm/types/client_state_test.go index 39da76f44309..ecd6e70ca01b 100644 --- a/modules/light-clients/08-wasm/types/client_state_test.go +++ b/modules/light-clients/08-wasm/types/client_state_test.go @@ -3,7 +3,7 @@ package types_test import ( wasmtesting "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/testing" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" ) func (suite *TypesTestSuite) TestValidate() { diff --git a/modules/light-clients/08-wasm/types/codec.go b/modules/light-clients/08-wasm/types/codec.go index e588477260f1..73f2f51a3a10 100644 --- a/modules/light-clients/08-wasm/types/codec.go +++ b/modules/light-clients/08-wasm/types/codec.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/msgservice" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // RegisterInterfaces registers the Wasm concrete client-related diff --git a/modules/light-clients/08-wasm/types/consensus_host.go b/modules/light-clients/08-wasm/types/consensus_host.go index c696190afe62..2cdfe189243f 100644 --- a/modules/light-clients/08-wasm/types/consensus_host.go +++ b/modules/light-clients/08-wasm/types/consensus_host.go @@ -8,8 +8,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // WasmConsensusHost implements the 02-client types.ConsensusHost interface. diff --git a/modules/light-clients/08-wasm/types/consensus_host_test.go b/modules/light-clients/08-wasm/types/consensus_host_test.go index 8cf7d2322667..d85c81431915 100644 --- a/modules/light-clients/08-wasm/types/consensus_host_test.go +++ b/modules/light-clients/08-wasm/types/consensus_host_test.go @@ -5,10 +5,10 @@ import ( wasmtesting "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/testing" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - clienttypes "github.com/cosmos/ibc-go/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" - "github.com/cosmos/ibc-go/v8/testing/mock" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + "github.com/cosmos/ibc-go/v9/testing/mock" ) func (suite *TypesTestSuite) TestGetSelfConsensusState() { diff --git a/modules/light-clients/08-wasm/types/consensus_state.go b/modules/light-clients/08-wasm/types/consensus_state.go index b3e88c3cfce7..6894b60af45a 100644 --- a/modules/light-clients/08-wasm/types/consensus_state.go +++ b/modules/light-clients/08-wasm/types/consensus_state.go @@ -3,7 +3,7 @@ package types import ( errorsmod "cosmossdk.io/errors" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) var _ exported.ConsensusState = (*ConsensusState)(nil) diff --git a/modules/light-clients/08-wasm/types/contract_api.go b/modules/light-clients/08-wasm/types/contract_api.go index 1c1383682cc3..7bc9f58b2266 100644 --- a/modules/light-clients/08-wasm/types/contract_api.go +++ b/modules/light-clients/08-wasm/types/contract_api.go @@ -1,8 +1,8 @@ package types import ( - clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" - commitmenttypesv2 "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types/v2" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + commitmenttypesv2 "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types/v2" ) // InstantiateMessage is the message that is sent to the contract's instantiate entry point. diff --git a/modules/light-clients/08-wasm/types/expected_keepers.go b/modules/light-clients/08-wasm/types/expected_keepers.go index 31df16c3fc57..a9f8d40872e4 100644 --- a/modules/light-clients/08-wasm/types/expected_keepers.go +++ b/modules/light-clients/08-wasm/types/expected_keepers.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) // ClientKeeper defines the expected client keeper diff --git a/modules/light-clients/08-wasm/types/msgs.go b/modules/light-clients/08-wasm/types/msgs.go index fdc743db85c7..35ab74ec6d0c 100644 --- a/modules/light-clients/08-wasm/types/msgs.go +++ b/modules/light-clients/08-wasm/types/msgs.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" ) var ( diff --git a/modules/light-clients/08-wasm/types/msgs_test.go b/modules/light-clients/08-wasm/types/msgs_test.go index f7076c8b48aa..4326f6347826 100644 --- a/modules/light-clients/08-wasm/types/msgs_test.go +++ b/modules/light-clients/08-wasm/types/msgs_test.go @@ -11,9 +11,9 @@ import ( wasmtesting "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/testing" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - host "github.com/cosmos/ibc-go/v8/modules/core/24-host" - ibcerrors "github.com/cosmos/ibc-go/v8/modules/core/errors" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func TestMsgStoreCodeValidateBasic(t *testing.T) { diff --git a/modules/light-clients/08-wasm/types/store.go b/modules/light-clients/08-wasm/types/store.go index 73e4a5a6c3de..8443c4e2d1dd 100644 --- a/modules/light-clients/08-wasm/types/store.go +++ b/modules/light-clients/08-wasm/types/store.go @@ -10,8 +10,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" - clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" ) // GetClientState retrieves the client state from the store using the provided KVStore and codec. diff --git a/modules/light-clients/08-wasm/types/types_test.go b/modules/light-clients/08-wasm/types/types_test.go index eb06c9190e6b..f3c1b51afcbb 100644 --- a/modules/light-clients/08-wasm/types/types_test.go +++ b/modules/light-clients/08-wasm/types/types_test.go @@ -13,7 +13,7 @@ import ( simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/testing/simapp" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) const ( diff --git a/modules/light-clients/08-wasm/types/validation.go b/modules/light-clients/08-wasm/types/validation.go index 90df436262e4..79b7b59890a0 100644 --- a/modules/light-clients/08-wasm/types/validation.go +++ b/modules/light-clients/08-wasm/types/validation.go @@ -5,8 +5,8 @@ import ( errorsmod "cosmossdk.io/errors" - clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" - host "github.com/cosmos/ibc-go/v8/modules/core/24-host" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" ) // MaxWasmSize denotes the maximum size (in bytes) a contract is allowed to be. diff --git a/modules/light-clients/08-wasm/types/validation_test.go b/modules/light-clients/08-wasm/types/validation_test.go index 8bf3429eaeda..16c5ed8cbc32 100644 --- a/modules/light-clients/08-wasm/types/validation_test.go +++ b/modules/light-clients/08-wasm/types/validation_test.go @@ -10,8 +10,8 @@ import ( wasmtesting "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/testing" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - host "github.com/cosmos/ibc-go/v8/modules/core/24-host" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func TestValidateWasmCode(t *testing.T) { diff --git a/modules/light-clients/08-wasm/types/wasm.pb.go b/modules/light-clients/08-wasm/types/wasm.pb.go index 50b40d45bc3d..d64874e9714e 100644 --- a/modules/light-clients/08-wasm/types/wasm.pb.go +++ b/modules/light-clients/08-wasm/types/wasm.pb.go @@ -7,7 +7,7 @@ import ( fmt "fmt" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" - types "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" + types "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" io "io" math "math" math_bits "math/bits" diff --git a/modules/light-clients/08-wasm/wasm_test.go b/modules/light-clients/08-wasm/wasm_test.go index 28b959b58beb..09bccba60237 100644 --- a/modules/light-clients/08-wasm/wasm_test.go +++ b/modules/light-clients/08-wasm/wasm_test.go @@ -20,11 +20,11 @@ import ( wasmtesting "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/testing" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/testing/simapp" "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types" - clienttypes "github.com/cosmos/ibc-go/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" - ibctesting "github.com/cosmos/ibc-go/v8/testing" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) type WasmTestSuite struct { diff --git a/modules/light-clients/09-localhost/light_client_module.go b/modules/light-clients/09-localhost/light_client_module.go index a362ab151a67..dde0f1c88a04 100644 --- a/modules/light-clients/09-localhost/light_client_module.go +++ b/modules/light-clients/09-localhost/light_client_module.go @@ -9,12 +9,12 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" - commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types" - commitmenttypesv2 "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types/v2" - 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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + commitmenttypesv2 "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types/v2" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + ibcerrors "github.com/cosmos/ibc-go/v9/modules/core/errors" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) const ( diff --git a/modules/light-clients/09-localhost/light_client_module_test.go b/modules/light-clients/09-localhost/light_client_module_test.go index cccb09de28f4..d276382e7276 100644 --- a/modules/light-clients/09-localhost/light_client_module_test.go +++ b/modules/light-clients/09-localhost/light_client_module_test.go @@ -7,15 +7,15 @@ import ( sdk "github.com/cosmos/cosmos-sdk/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" - 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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + localhost "github.com/cosmos/ibc-go/v9/modules/light-clients/09-localhost" + ibctesting "github.com/cosmos/ibc-go/v9/testing" + "github.com/cosmos/ibc-go/v9/testing/mock" ) type LocalhostTestSuite struct { diff --git a/proto/ibc/applications/fee/v1/ack.proto b/proto/ibc/applications/fee/v1/ack.proto index 2f3746d2cb77..28c7ff7dfb3f 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/v8/modules/apps/29-fee/types"; +option go_package = "github.com/cosmos/ibc-go/v9/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 867e884551dc..d616b3827505 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/v8/modules/apps/29-fee/types"; +option go_package = "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types"; import "amino/amino.proto"; import "cosmos/base/v1beta1/coin.proto"; diff --git a/proto/ibc/applications/fee/v1/genesis.proto b/proto/ibc/applications/fee/v1/genesis.proto index 11e56e760216..792d4354fa1c 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/v8/modules/apps/29-fee/types"; +option go_package = "github.com/cosmos/ibc-go/v9/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 1e82e7c2505d..38150d8fc56b 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/v8/modules/apps/29-fee/types"; +option go_package = "github.com/cosmos/ibc-go/v9/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 116f1fd79f75..59018306ab93 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/v8/modules/apps/29-fee/types"; +option go_package = "github.com/cosmos/ibc-go/v9/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 393bc8794d97..89e21f63bee7 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/v8/modules/apps/29-fee/types"; +option go_package = "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types"; import "amino/amino.proto"; import "gogoproto/gogo.proto"; diff --git a/proto/ibc/applications/interchain_accounts/controller/v1/controller.proto b/proto/ibc/applications/interchain_accounts/controller/v1/controller.proto index 2e6bbe1a1384..62a3fad81fb4 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/v8/modules/apps/27-interchain-accounts/controller/types"; +option go_package = "github.com/cosmos/ibc-go/v9/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 31885fcb2ef9..743da1a8ac06 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/v8/modules/apps/27-interchain-accounts/controller/types"; +option go_package = "github.com/cosmos/ibc-go/v9/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 ec5c2e62eac1..b4a2df51e3a6 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/v8/modules/apps/27-interchain-accounts/controller/types"; +option go_package = "github.com/cosmos/ibc-go/v9/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 4393e5b0bc16..84a67985c329 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/v8/modules/apps/27-interchain-accounts/genesis/types"; +option go_package = "github.com/cosmos/ibc-go/v9/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 9165f36e7943..4f28bcd9a10d 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/v8/modules/apps/27-interchain-accounts/host/types"; +option go_package = "github.com/cosmos/ibc-go/v9/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 6f206a14c807..8840e2260d55 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/v8/modules/apps/27-interchain-accounts/host/types"; +option go_package = "github.com/cosmos/ibc-go/v9/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 29cdb088c8f5..ec5506c25cf9 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/v8/modules/apps/27-interchain-accounts/host/types"; +option go_package = "github.com/cosmos/ibc-go/v9/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 4a6947c1c6b3..bfa97d94cdb4 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/v8/modules/apps/27-interchain-accounts/types"; +option go_package = "github.com/cosmos/ibc-go/v9/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 df72b41eb6e1..ff0ff513cb36 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/v8/modules/apps/27-interchain-accounts/types"; +option go_package = "github.com/cosmos/ibc-go/v9/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 f75a1463e9b1..83dc0eee653e 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/v8/modules/apps/27-interchain-accounts/types"; +option go_package = "github.com/cosmos/ibc-go/v9/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 c8f9ca1cc664..9d0280888c03 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/v8/modules/apps/transfer/types"; +option go_package = "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types"; import "cosmos_proto/cosmos.proto"; import "gogoproto/gogo.proto"; diff --git a/proto/ibc/applications/transfer/v1/denomtrace.proto b/proto/ibc/applications/transfer/v1/denomtrace.proto index 9ac7e0935738..11a55bb0f5eb 100644 --- a/proto/ibc/applications/transfer/v1/denomtrace.proto +++ b/proto/ibc/applications/transfer/v1/denomtrace.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.transfer.v1; -option go_package = "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types"; +option go_package = "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types"; // DenomTrace contains the base denomination for ICS20 fungible tokens and the // source tracing information path. diff --git a/proto/ibc/applications/transfer/v1/query.proto b/proto/ibc/applications/transfer/v1/query.proto index bf7b2e5fabd7..5e8f01f576f4 100644 --- a/proto/ibc/applications/transfer/v1/query.proto +++ b/proto/ibc/applications/transfer/v1/query.proto @@ -7,7 +7,7 @@ import "cosmos/base/v1beta1/coin.proto"; import "ibc/applications/transfer/v1/transfer.proto"; import "google/api/annotations.proto"; -option go_package = "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types"; +option go_package = "github.com/cosmos/ibc-go/v9/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 65b443709e24..8ae82cb64d78 100644 --- a/proto/ibc/applications/transfer/v1/transfer.proto +++ b/proto/ibc/applications/transfer/v1/transfer.proto @@ -4,7 +4,7 @@ package ibc.applications.transfer.v1; import "gogoproto/gogo.proto"; -option go_package = "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types"; +option go_package = "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types"; // Params defines the set of IBC transfer parameters. // NOTE: To prevent a single token from being transferred, set the diff --git a/proto/ibc/applications/transfer/v1/tx.proto b/proto/ibc/applications/transfer/v1/tx.proto index 0a1c8d49d8c3..6968968854b2 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/v8/modules/apps/transfer/types"; +option go_package = "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types"; import "amino/amino.proto"; import "gogoproto/gogo.proto"; diff --git a/proto/ibc/applications/transfer/v2/genesis.proto b/proto/ibc/applications/transfer/v2/genesis.proto index 137c1a67b768..3ebc3559e968 100644 --- a/proto/ibc/applications/transfer/v2/genesis.proto +++ b/proto/ibc/applications/transfer/v2/genesis.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.transfer.v2; -option go_package = "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types"; +option go_package = "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types"; import "ibc/applications/transfer/v1/transfer.proto"; import "ibc/applications/transfer/v2/token.proto"; diff --git a/proto/ibc/applications/transfer/v2/packet.proto b/proto/ibc/applications/transfer/v2/packet.proto index 162833ce4e11..5b84afe97420 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/v8/modules/apps/transfer/types"; +option go_package = "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types"; import "ibc/applications/transfer/v2/token.proto"; import "gogoproto/gogo.proto"; diff --git a/proto/ibc/applications/transfer/v2/queryv2.proto b/proto/ibc/applications/transfer/v2/queryv2.proto index be54ffb5a6ac..93f2fdae39e5 100644 --- a/proto/ibc/applications/transfer/v2/queryv2.proto +++ b/proto/ibc/applications/transfer/v2/queryv2.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.transfer.v2; -option go_package = "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types"; +option go_package = "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types"; import "gogoproto/gogo.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; diff --git a/proto/ibc/applications/transfer/v2/token.proto b/proto/ibc/applications/transfer/v2/token.proto index 00ebe111adf5..d251a44299e7 100644 --- a/proto/ibc/applications/transfer/v2/token.proto +++ b/proto/ibc/applications/transfer/v2/token.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.applications.transfer.v2; -option go_package = "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types"; +option go_package = "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types"; import "ibc/applications/transfer/v1/transfer.proto"; import "gogoproto/gogo.proto"; diff --git a/proto/ibc/core/channel/v1/channel.proto b/proto/ibc/core/channel/v1/channel.proto index 242ff8fdbdda..78df62bdbb48 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/v8/modules/core/04-channel/types"; +option go_package = "github.com/cosmos/ibc-go/v9/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 665b2b1562fa..2f0cc448230a 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/v8/modules/core/04-channel/types"; +option go_package = "github.com/cosmos/ibc-go/v9/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 f89d212736a9..f44a3e5aa621 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/v8/modules/core/04-channel/types"; +option go_package = "github.com/cosmos/ibc-go/v9/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 66b3d180e372..06e8523284a1 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/v8/modules/core/04-channel/types"; +option go_package = "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types"; import "gogoproto/gogo.proto"; import "cosmos/msg/v1/msg.proto"; diff --git a/proto/ibc/core/channel/v1/upgrade.proto b/proto/ibc/core/channel/v1/upgrade.proto index 81530ed2a287..ea5ae929b464 100644 --- a/proto/ibc/core/channel/v1/upgrade.proto +++ b/proto/ibc/core/channel/v1/upgrade.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.core.channel.v1; -option go_package = "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types"; +option go_package = "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types"; import "gogoproto/gogo.proto"; import "ibc/core/channel/v1/channel.proto"; diff --git a/proto/ibc/core/client/v1/client.proto b/proto/ibc/core/client/v1/client.proto index 7a09e360ace6..891310d2eea8 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/v8/modules/core/02-client/types"; +option go_package = "github.com/cosmos/ibc-go/v9/modules/core/02-client/types"; import "cosmos/upgrade/v1beta1/upgrade.proto"; import "cosmos_proto/cosmos.proto"; diff --git a/proto/ibc/core/client/v1/genesis.proto b/proto/ibc/core/client/v1/genesis.proto index 4abd943cdbc4..f5d7b2587356 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/v8/modules/core/02-client/types"; +option go_package = "github.com/cosmos/ibc-go/v9/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 804618dc1df3..1cc773e59906 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/v8/modules/core/02-client/types"; +option go_package = "github.com/cosmos/ibc-go/v9/modules/core/02-client/types"; import "cosmos/base/query/v1beta1/pagination.proto"; import "cosmos/query/v1/query.proto"; diff --git a/proto/ibc/core/client/v1/tx.proto b/proto/ibc/core/client/v1/tx.proto index b504ab692a43..b951e3d43d31 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/v8/modules/core/02-client/types"; +option go_package = "github.com/cosmos/ibc-go/v9/modules/core/02-client/types"; import "cosmos/msg/v1/msg.proto"; import "cosmos/upgrade/v1beta1/upgrade.proto"; diff --git a/proto/ibc/core/commitment/v1/commitment.proto b/proto/ibc/core/commitment/v1/commitment.proto index 8fec9ec45e7b..f0b258c4ff75 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/v8/modules/core/23-commitment/types"; +option go_package = "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types"; import "gogoproto/gogo.proto"; import "cosmos/ics23/v1/proofs.proto"; diff --git a/proto/ibc/core/commitment/v2/commitment.proto b/proto/ibc/core/commitment/v2/commitment.proto index d86c69538a6f..5c1b5f402792 100644 --- a/proto/ibc/core/commitment/v2/commitment.proto +++ b/proto/ibc/core/commitment/v2/commitment.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.core.commitment.v2; -option go_package = "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types/v2"; +option go_package = "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types/v2"; // MerklePath is the path used to verify commitment proofs, which can be an // arbitrary structured object (defined by a commitment type). diff --git a/proto/ibc/core/connection/v1/connection.proto b/proto/ibc/core/connection/v1/connection.proto index 5b4554cab5e0..c5aa79dabcf4 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/v8/modules/core/03-connection/types"; +option go_package = "github.com/cosmos/ibc-go/v9/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 a5eb6b3a1c2e..9db9c1748ed0 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/v8/modules/core/03-connection/types"; +option go_package = "github.com/cosmos/ibc-go/v9/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 c0f1a6f57754..5b6547282f31 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/v8/modules/core/03-connection/types"; +option go_package = "github.com/cosmos/ibc-go/v9/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 8e59c27d5a71..b0cd777d1b8d 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/v8/modules/core/03-connection/types"; +option go_package = "github.com/cosmos/ibc-go/v9/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 4b34f68893ab..4c6571da60a5 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/v8/modules/core/types"; +option go_package = "github.com/cosmos/ibc-go/v9/modules/core/types"; import "gogoproto/gogo.proto"; import "ibc/core/client/v1/genesis.proto"; diff --git a/proto/ibc/lightclients/solomachine/v2/solomachine.proto b/proto/ibc/lightclients/solomachine/v2/solomachine.proto index 9dc2690c5d76..aab7140b47b3 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/v8/modules/core/02-client/migrations/v7"; +option go_package = "github.com/cosmos/ibc-go/v9/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 194905b38b4a..bb0d2aec99db 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/v8/modules/light-clients/06-solomachine;solomachine"; +option go_package = "github.com/cosmos/ibc-go/v9/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 bd759f4e18c4..9069fd6fa5a3 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/v8/modules/light-clients/07-tendermint;tendermint"; +option go_package = "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint;tendermint"; import "tendermint/types/validator.proto"; import "tendermint/types/types.proto"; diff --git a/testing/chain.go b/testing/chain.go index 6a264a6e64d3..dd766c9a8a15 100644 --- a/testing/chain.go +++ b/testing/chain.go @@ -29,14 +29,14 @@ 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/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" - "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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + "github.com/cosmos/ibc-go/v9/modules/core/types" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + "github.com/cosmos/ibc-go/v9/testing/simapp" ) var MaxAccounts = 10 diff --git a/testing/chain_test.go b/testing/chain_test.go index dfe754a98a5c..512e426eacac 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/v8/testing" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func TestChangeValSet(t *testing.T) { diff --git a/testing/config.go b/testing/config.go index 4c1cba8005b9..49a058cb3349 100644 --- a/testing/config.go +++ b/testing/config.go @@ -3,11 +3,11 @@ package ibctesting import ( "time" - 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" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + "github.com/cosmos/ibc-go/v9/testing/mock" ) type ClientConfig interface { diff --git a/testing/endpoint.go b/testing/endpoint.go index 26edf1320d14..aa5dc0c0c165 100644 --- a/testing/endpoint.go +++ b/testing/endpoint.go @@ -12,13 +12,13 @@ import ( abci "github.com/cometbft/cometbft/abci/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" - ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v9/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 3e1db55ee6a1..acb0b772b993 100644 --- a/testing/events.go +++ b/testing/events.go @@ -10,9 +10,9 @@ import ( abci "github.com/cometbft/cometbft/abci/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" ) // ParseClientIDFromEvents parses events emitted from a MsgCreateClient and returns the diff --git a/testing/events_test.go b/testing/events_test.go index c99eceec00c7..c18a75866a4f 100644 --- a/testing/events_test.go +++ b/testing/events_test.go @@ -8,9 +8,9 @@ import ( abci "github.com/cometbft/cometbft/abci/types" - "github.com/cosmos/ibc-go/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" + "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v9/testing" ) func TestParsePacketsFromEvents(t *testing.T) { diff --git a/testing/mock/consensus_host.go b/testing/mock/consensus_host.go index 4ce25373a530..00d0773a3cc5 100644 --- a/testing/mock/consensus_host.go +++ b/testing/mock/consensus_host.go @@ -3,8 +3,8 @@ package mock import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) var _ clienttypes.ConsensusHost = (*ConsensusHost)(nil) diff --git a/testing/mock/ibc_app.go b/testing/mock/ibc_app.go index 026a5d0873db..b99ebc84b948 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/v8/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v9/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 963945f5330e..db7917d3c9ba 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/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" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) var ( diff --git a/testing/mock/ibc_module_test.go b/testing/mock/ibc_module_test.go index 76571034067f..dd6d09a73b92 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/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" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v9/testing/mock" ) func TestCreateCapabilityName(t *testing.T) { diff --git a/testing/mock/middleware.go b/testing/mock/middleware.go index 954132d0cff2..7a5b572cd0dc 100644 --- a/testing/mock/middleware.go +++ b/testing/mock/middleware.go @@ -7,11 +7,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/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" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) const ( diff --git a/testing/mock/mock.go b/testing/mock/mock.go index 3a15d776a631..6b70d7455595 100644 --- a/testing/mock/mock.go +++ b/testing/mock/mock.go @@ -18,11 +18,11 @@ import ( abci "github.com/cometbft/cometbft/abci/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" - feetypes "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" - host "github.com/cosmos/ibc-go/v8/modules/core/24-host" - "github.com/cosmos/ibc-go/v8/modules/core/exported" + feetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" ) const ( diff --git a/testing/path.go b/testing/path.go index 79f8b6f2bd14..a62ff59552dc 100644 --- a/testing/path.go +++ b/testing/path.go @@ -6,9 +6,9 @@ import ( abci "github.com/cometbft/cometbft/abci/types" - transfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" - channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" - ibcmock "github.com/cosmos/ibc-go/v8/testing/mock" + transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" ) // Path contains two endpoints representing two chains connected over IBC diff --git a/testing/simapp/ante.go b/testing/simapp/ante.go index c64ad04d6eac..58603401edfb 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/v8/modules/core/ante" - "github.com/cosmos/ibc-go/v8/modules/core/keeper" + ibcante "github.com/cosmos/ibc-go/v9/modules/core/ante" + "github.com/cosmos/ibc-go/v9/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 5fdd714d43a2..40125cb5f2f6 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/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" - "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" - ibcclienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" - ibcconnectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/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" + ica "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts" + icacontroller "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller" + icacontrollerkeeper "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/keeper" + icacontrollertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + icahost "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host" + icahostkeeper "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/keeper" + icahosttypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/types" + ibcfee "github.com/cosmos/ibc-go/v9/modules/apps/29-fee" + ibcfeekeeper "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/keeper" + ibcfeetypes "github.com/cosmos/ibc-go/v9/modules/apps/29-fee/types" + "github.com/cosmos/ibc-go/v9/modules/apps/transfer" + ibctransferkeeper "github.com/cosmos/ibc-go/v9/modules/apps/transfer/keeper" + ibctransfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + ibc "github.com/cosmos/ibc-go/v9/modules/core" + ibcclient "github.com/cosmos/ibc-go/v9/modules/core/02-client" + ibcclienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + ibcconnectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + porttypes "github.com/cosmos/ibc-go/v9/modules/core/05-port/types" + ibcexported "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibckeeper "github.com/cosmos/ibc-go/v9/modules/core/keeper" + solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" + ibctestingtypes "github.com/cosmos/ibc-go/v9/testing/types" ) const appName = "SimApp" diff --git a/testing/simapp/simd/cmd/cmd_test.go b/testing/simapp/simd/cmd/cmd_test.go index 9216ce75f02a..afd403b3a75d 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/v8/testing/simapp" - "github.com/cosmos/ibc-go/v8/testing/simapp/simd/cmd" + "github.com/cosmos/ibc-go/v9/testing/simapp" + "github.com/cosmos/ibc-go/v9/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 e427d73463d1..c6d6a022cb38 100644 --- a/testing/simapp/simd/cmd/root.go +++ b/testing/simapp/simd/cmd/root.go @@ -39,8 +39,8 @@ import ( cmtcfg "github.com/cometbft/cometbft/config" - "github.com/cosmos/ibc-go/v8/testing/simapp" - "github.com/cosmos/ibc-go/v8/testing/simapp/params" + "github.com/cosmos/ibc-go/v9/testing/simapp" + "github.com/cosmos/ibc-go/v9/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 153d846831e3..b739036e103d 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/v8/testing/simapp" - "github.com/cosmos/ibc-go/v8/testing/simapp/simd/cmd" + "github.com/cosmos/ibc-go/v9/testing/simapp" + "github.com/cosmos/ibc-go/v9/testing/simapp/simd/cmd" ) func main() { diff --git a/testing/simapp/upgrades.go b/testing/simapp/upgrades.go index 2c0ddaf10719..9b300e42b228 100644 --- a/testing/simapp/upgrades.go +++ b/testing/simapp/upgrades.go @@ -9,9 +9,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/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" + icacontrollertypes "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/types" + ibcmock "github.com/cosmos/ibc-go/v9/testing/mock" + "github.com/cosmos/ibc-go/v9/testing/simapp/upgrades" ) // registerUpgradeHandlers registers all supported upgrade handlers diff --git a/testing/simapp/upgrades/upgrades.go b/testing/simapp/upgrades/upgrades.go index afe324e10b63..a5f288bf89a8 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" - "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" + "github.com/cosmos/ibc-go/v9/modules/apps/27-interchain-accounts/controller/migrations/v6" + clientkeeper "github.com/cosmos/ibc-go/v9/modules/core/02-client/keeper" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + ibctmmigrations "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint/migrations" ) const ( @@ -30,10 +30,10 @@ const ( V7 = "v7" // V7_1 defines the upgrade name for the ibc-go/v7.1 upgrade handler. V7_1 = "v7.1" - // V8 defines the upgrade name for the ibc-go/v8 upgrade handler. - V8 = "v8" - // V8_1 defines the upgrade name for the ibc-go/v8.1 upgrade handler. - V8_1 = "v8.1" + // V8 defines the upgrade name for the ibc-go/v9 upgrade handler. + V8 = "v9" + // V8_1 defines the upgrade name for the ibc-go/v9.1 upgrade handler. + V8_1 = "v9.1" ) // CreateDefaultUpgradeHandler creates an upgrade handler which can be used for regular upgrade tests diff --git a/testing/solomachine.go b/testing/solomachine.go index 47cf78a2e217..4b57ae2dac1b 100644 --- a/testing/solomachine.go +++ b/testing/solomachine.go @@ -15,16 +15,16 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/tx/signing" - 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" - commitmenttypesv2 "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types/v2" - 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" + transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v9/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + commitmenttypesv2 "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types/v2" + host "github.com/cosmos/ibc-go/v9/modules/core/24-host" + "github.com/cosmos/ibc-go/v9/modules/core/exported" + solomachine "github.com/cosmos/ibc-go/v9/modules/light-clients/06-solomachine" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" ) var ( diff --git a/testing/testing_app.go b/testing/testing_app.go index 8cd87f1d69a2..1a1ac5648590 100644 --- a/testing/testing_app.go +++ b/testing/testing_app.go @@ -28,9 +28,9 @@ import ( cmttypes "github.com/cometbft/cometbft/types" capabilitykeeper "github.com/cosmos/ibc-go/modules/capability/keeper" - "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" + "github.com/cosmos/ibc-go/v9/modules/core/keeper" + "github.com/cosmos/ibc-go/v9/testing/simapp" + ibctestingtypes "github.com/cosmos/ibc-go/v9/testing/types" ) var DefaultTestingAppInit = SetupTestingApp diff --git a/testing/values.go b/testing/values.go index 7938519156fa..6deac54465ac 100644 --- a/testing/values.go +++ b/testing/values.go @@ -13,12 +13,12 @@ import ( "github.com/cometbft/cometbft/crypto/tmhash" - ibctransfertypes "github.com/cosmos/ibc-go/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" + ibctransfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types" + connectiontypes "github.com/cosmos/ibc-go/v9/modules/core/03-connection/types" + commitmenttypes "github.com/cosmos/ibc-go/v9/modules/core/23-commitment/types" + ibctm "github.com/cosmos/ibc-go/v9/modules/light-clients/07-tendermint" + "github.com/cosmos/ibc-go/v9/testing/mock" + "github.com/cosmos/ibc-go/v9/testing/simapp" ) const (