diff --git a/app/app.go b/app/app.go index 7138c1a7c4..1b2a0ef8fe 100644 --- a/app/app.go +++ b/app/app.go @@ -13,7 +13,7 @@ import ( nodeservice "github.com/cosmos/cosmos-sdk/client/grpc/node" - "github.com/Stride-Labs/stride/v14/utils" + "github.com/Stride-Labs/stride/v15/utils" "github.com/cosmos/cosmos-sdk/baseapp" "github.com/cosmos/cosmos-sdk/client" @@ -66,12 +66,12 @@ import ( evmosvestingkeeper "github.com/evmos/vesting/x/vesting/keeper" evmosvestingtypes "github.com/evmos/vesting/x/vesting/types" - claimvesting "github.com/Stride-Labs/stride/v14/x/claim/vesting" - claimvestingtypes "github.com/Stride-Labs/stride/v14/x/claim/vesting/types" + claimvesting "github.com/Stride-Labs/stride/v15/x/claim/vesting" + claimvestingtypes "github.com/Stride-Labs/stride/v15/x/claim/vesting/types" - "github.com/Stride-Labs/stride/v14/x/mint" - mintkeeper "github.com/Stride-Labs/stride/v14/x/mint/keeper" - minttypes "github.com/Stride-Labs/stride/v14/x/mint/types" + "github.com/Stride-Labs/stride/v15/x/mint" + mintkeeper "github.com/Stride-Labs/stride/v15/x/mint/keeper" + minttypes "github.com/Stride-Labs/stride/v15/x/mint/types" dbm "github.com/cometbft/cometbft-db" abci "github.com/cometbft/cometbft/abci/types" @@ -118,38 +118,38 @@ import ( // monitoringp "github.com/tendermint/spn/x/monitoringp" // monitoringpkeeper "github.com/tendermint/spn/x/monitoringp/keeper" - epochsmodule "github.com/Stride-Labs/stride/v14/x/epochs" - epochsmodulekeeper "github.com/Stride-Labs/stride/v14/x/epochs/keeper" - epochsmoduletypes "github.com/Stride-Labs/stride/v14/x/epochs/types" - - "github.com/Stride-Labs/stride/v14/x/interchainquery" - interchainquerykeeper "github.com/Stride-Labs/stride/v14/x/interchainquery/keeper" - interchainquerytypes "github.com/Stride-Labs/stride/v14/x/interchainquery/types" - - "github.com/Stride-Labs/stride/v14/x/autopilot" - autopilotkeeper "github.com/Stride-Labs/stride/v14/x/autopilot/keeper" - autopilottypes "github.com/Stride-Labs/stride/v14/x/autopilot/types" - - "github.com/Stride-Labs/stride/v14/x/claim" - claimkeeper "github.com/Stride-Labs/stride/v14/x/claim/keeper" - claimtypes "github.com/Stride-Labs/stride/v14/x/claim/types" - icacallbacksmodule "github.com/Stride-Labs/stride/v14/x/icacallbacks" - icacallbacksmodulekeeper "github.com/Stride-Labs/stride/v14/x/icacallbacks/keeper" - icacallbacksmoduletypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" - icaoracle "github.com/Stride-Labs/stride/v14/x/icaoracle" - icaoraclekeeper "github.com/Stride-Labs/stride/v14/x/icaoracle/keeper" - icaoracletypes "github.com/Stride-Labs/stride/v14/x/icaoracle/types" - ratelimitmodule "github.com/Stride-Labs/stride/v14/x/ratelimit" - ratelimitclient "github.com/Stride-Labs/stride/v14/x/ratelimit/client" - ratelimitmodulekeeper "github.com/Stride-Labs/stride/v14/x/ratelimit/keeper" - ratelimitmoduletypes "github.com/Stride-Labs/stride/v14/x/ratelimit/types" - recordsmodule "github.com/Stride-Labs/stride/v14/x/records" - recordsmodulekeeper "github.com/Stride-Labs/stride/v14/x/records/keeper" - recordsmoduletypes "github.com/Stride-Labs/stride/v14/x/records/types" - stakeibcmodule "github.com/Stride-Labs/stride/v14/x/stakeibc" - stakeibcclient "github.com/Stride-Labs/stride/v14/x/stakeibc/client" - stakeibcmodulekeeper "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" - stakeibcmoduletypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + epochsmodule "github.com/Stride-Labs/stride/v15/x/epochs" + epochsmodulekeeper "github.com/Stride-Labs/stride/v15/x/epochs/keeper" + epochsmoduletypes "github.com/Stride-Labs/stride/v15/x/epochs/types" + + "github.com/Stride-Labs/stride/v15/x/interchainquery" + interchainquerykeeper "github.com/Stride-Labs/stride/v15/x/interchainquery/keeper" + interchainquerytypes "github.com/Stride-Labs/stride/v15/x/interchainquery/types" + + "github.com/Stride-Labs/stride/v15/x/autopilot" + autopilotkeeper "github.com/Stride-Labs/stride/v15/x/autopilot/keeper" + autopilottypes "github.com/Stride-Labs/stride/v15/x/autopilot/types" + + "github.com/Stride-Labs/stride/v15/x/claim" + claimkeeper "github.com/Stride-Labs/stride/v15/x/claim/keeper" + claimtypes "github.com/Stride-Labs/stride/v15/x/claim/types" + icacallbacksmodule "github.com/Stride-Labs/stride/v15/x/icacallbacks" + icacallbacksmodulekeeper "github.com/Stride-Labs/stride/v15/x/icacallbacks/keeper" + icacallbacksmoduletypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" + icaoracle "github.com/Stride-Labs/stride/v15/x/icaoracle" + icaoraclekeeper "github.com/Stride-Labs/stride/v15/x/icaoracle/keeper" + icaoracletypes "github.com/Stride-Labs/stride/v15/x/icaoracle/types" + ratelimitmodule "github.com/Stride-Labs/stride/v15/x/ratelimit" + ratelimitclient "github.com/Stride-Labs/stride/v15/x/ratelimit/client" + ratelimitmodulekeeper "github.com/Stride-Labs/stride/v15/x/ratelimit/keeper" + ratelimitmoduletypes "github.com/Stride-Labs/stride/v15/x/ratelimit/types" + recordsmodule "github.com/Stride-Labs/stride/v15/x/records" + recordsmodulekeeper "github.com/Stride-Labs/stride/v15/x/records/keeper" + recordsmoduletypes "github.com/Stride-Labs/stride/v15/x/records/types" + stakeibcmodule "github.com/Stride-Labs/stride/v15/x/stakeibc" + stakeibcclient "github.com/Stride-Labs/stride/v15/x/stakeibc/client" + stakeibcmodulekeeper "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" + stakeibcmoduletypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ccvconsumer "github.com/cosmos/interchain-security/v3/x/ccv/consumer" ccvconsumerkeeper "github.com/cosmos/interchain-security/v3/x/ccv/consumer/keeper" diff --git a/app/apptesting/test_helpers.go b/app/apptesting/test_helpers.go index 41b2e15325..5f31a728a5 100644 --- a/app/apptesting/test_helpers.go +++ b/app/apptesting/test_helpers.go @@ -32,8 +32,8 @@ import ( "github.com/stretchr/testify/require" "github.com/stretchr/testify/suite" - "github.com/Stride-Labs/stride/v14/app" - "github.com/Stride-Labs/stride/v14/utils" + "github.com/Stride-Labs/stride/v15/app" + "github.com/Stride-Labs/stride/v15/utils" ) var ( diff --git a/app/proposals_whitelisting.go b/app/proposals_whitelisting.go index ab752cacd6..be1928072c 100644 --- a/app/proposals_whitelisting.go +++ b/app/proposals_whitelisting.go @@ -17,9 +17,9 @@ import ( ccvconsumertypes "github.com/cosmos/interchain-security/v3/x/ccv/consumer/types" ccvgov "github.com/cosmos/interchain-security/v3/x/ccv/democracy/governance" - autopilottypes "github.com/Stride-Labs/stride/v14/x/autopilot/types" - minttypes "github.com/Stride-Labs/stride/v14/x/mint/types" - stakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + autopilottypes "github.com/Stride-Labs/stride/v15/x/autopilot/types" + minttypes "github.com/Stride-Labs/stride/v15/x/mint/types" + stakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) var WhiteListModule = map[string]struct{}{ diff --git a/app/test_setup.go b/app/test_setup.go index 7720706edd..1a31f750cc 100644 --- a/app/test_setup.go +++ b/app/test_setup.go @@ -21,9 +21,9 @@ import ( ibctesting "github.com/cosmos/interchain-security/v3/legacy_ibc_testing/testing" consumertypes "github.com/cosmos/interchain-security/v3/x/ccv/consumer/types" - testutil "github.com/Stride-Labs/stride/v14/testutil" + testutil "github.com/Stride-Labs/stride/v15/testutil" - cmdcfg "github.com/Stride-Labs/stride/v14/cmd/strided/config" + cmdcfg "github.com/Stride-Labs/stride/v15/cmd/strided/config" ) const Bech32Prefix = "stride" diff --git a/app/upgrades.go b/app/upgrades.go index 5b4ffd35c4..bbc9b3757c 100644 --- a/app/upgrades.go +++ b/app/upgrades.go @@ -13,27 +13,27 @@ import ( consumertypes "github.com/cosmos/interchain-security/v3/x/ccv/consumer/types" evmosvestingtypes "github.com/evmos/vesting/x/vesting/types" - v10 "github.com/Stride-Labs/stride/v14/app/upgrades/v10" - v11 "github.com/Stride-Labs/stride/v14/app/upgrades/v11" - v12 "github.com/Stride-Labs/stride/v14/app/upgrades/v12" - v13 "github.com/Stride-Labs/stride/v14/app/upgrades/v13" - v14 "github.com/Stride-Labs/stride/v14/app/upgrades/v14" - v15 "github.com/Stride-Labs/stride/v14/app/upgrades/v15" - v2 "github.com/Stride-Labs/stride/v14/app/upgrades/v2" - v3 "github.com/Stride-Labs/stride/v14/app/upgrades/v3" - v4 "github.com/Stride-Labs/stride/v14/app/upgrades/v4" - v5 "github.com/Stride-Labs/stride/v14/app/upgrades/v5" - v6 "github.com/Stride-Labs/stride/v14/app/upgrades/v6" - v7 "github.com/Stride-Labs/stride/v14/app/upgrades/v7" - v8 "github.com/Stride-Labs/stride/v14/app/upgrades/v8" - v9 "github.com/Stride-Labs/stride/v14/app/upgrades/v9" - autopilottypes "github.com/Stride-Labs/stride/v14/x/autopilot/types" - claimtypes "github.com/Stride-Labs/stride/v14/x/claim/types" - icacallbacktypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" - icaoracletypes "github.com/Stride-Labs/stride/v14/x/icaoracle/types" - ratelimittypes "github.com/Stride-Labs/stride/v14/x/ratelimit/types" - recordtypes "github.com/Stride-Labs/stride/v14/x/records/types" - stakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + v10 "github.com/Stride-Labs/stride/v15/app/upgrades/v10" + v11 "github.com/Stride-Labs/stride/v15/app/upgrades/v11" + v12 "github.com/Stride-Labs/stride/v15/app/upgrades/v12" + v13 "github.com/Stride-Labs/stride/v15/app/upgrades/v13" + v14 "github.com/Stride-Labs/stride/v15/app/upgrades/v14" + v15 "github.com/Stride-Labs/stride/v15/app/upgrades/v15" + v2 "github.com/Stride-Labs/stride/v15/app/upgrades/v2" + v3 "github.com/Stride-Labs/stride/v15/app/upgrades/v3" + v4 "github.com/Stride-Labs/stride/v15/app/upgrades/v4" + v5 "github.com/Stride-Labs/stride/v15/app/upgrades/v5" + v6 "github.com/Stride-Labs/stride/v15/app/upgrades/v6" + v7 "github.com/Stride-Labs/stride/v15/app/upgrades/v7" + v8 "github.com/Stride-Labs/stride/v15/app/upgrades/v8" + v9 "github.com/Stride-Labs/stride/v15/app/upgrades/v9" + autopilottypes "github.com/Stride-Labs/stride/v15/x/autopilot/types" + claimtypes "github.com/Stride-Labs/stride/v15/x/claim/types" + icacallbacktypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" + icaoracletypes "github.com/Stride-Labs/stride/v15/x/icaoracle/types" + ratelimittypes "github.com/Stride-Labs/stride/v15/x/ratelimit/types" + recordtypes "github.com/Stride-Labs/stride/v15/x/records/types" + stakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func (app *StrideApp) setupUpgradeHandlers(appOpts servertypes.AppOptions) { diff --git a/app/upgrades/v10/upgrades.go b/app/upgrades/v10/upgrades.go index 3c57cb6f5f..994eda4b93 100644 --- a/app/upgrades/v10/upgrades.go +++ b/app/upgrades/v10/upgrades.go @@ -25,18 +25,18 @@ import ( "github.com/cosmos/ibc-go/v7/modules/core/exported" ibctmmigrations "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint/migrations" - claimkeeper "github.com/Stride-Labs/stride/v14/x/claim/keeper" - claimtypes "github.com/Stride-Labs/stride/v14/x/claim/types" - icacallbackskeeper "github.com/Stride-Labs/stride/v14/x/icacallbacks/keeper" - mintkeeper "github.com/Stride-Labs/stride/v14/x/mint/keeper" - minttypes "github.com/Stride-Labs/stride/v14/x/mint/types" - ratelimitkeeper "github.com/Stride-Labs/stride/v14/x/ratelimit/keeper" - ratelimitgov "github.com/Stride-Labs/stride/v14/x/ratelimit/keeper/gov" - ratelimittypes "github.com/Stride-Labs/stride/v14/x/ratelimit/types" - recordskeeper "github.com/Stride-Labs/stride/v14/x/records/keeper" - recordstypes "github.com/Stride-Labs/stride/v14/x/records/types" - stakeibckeeper "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" - stakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + claimkeeper "github.com/Stride-Labs/stride/v15/x/claim/keeper" + claimtypes "github.com/Stride-Labs/stride/v15/x/claim/types" + icacallbackskeeper "github.com/Stride-Labs/stride/v15/x/icacallbacks/keeper" + mintkeeper "github.com/Stride-Labs/stride/v15/x/mint/keeper" + minttypes "github.com/Stride-Labs/stride/v15/x/mint/types" + ratelimitkeeper "github.com/Stride-Labs/stride/v15/x/ratelimit/keeper" + ratelimitgov "github.com/Stride-Labs/stride/v15/x/ratelimit/keeper/gov" + ratelimittypes "github.com/Stride-Labs/stride/v15/x/ratelimit/types" + recordskeeper "github.com/Stride-Labs/stride/v15/x/records/keeper" + recordstypes "github.com/Stride-Labs/stride/v15/x/records/types" + stakeibckeeper "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" + stakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" cosmosproto "github.com/cosmos/gogoproto/proto" deprecatedproto "github.com/golang/protobuf/proto" //nolint:staticcheck diff --git a/app/upgrades/v10/upgrades_test.go b/app/upgrades/v10/upgrades_test.go index 11c6f19ab0..ab182c64aa 100644 --- a/app/upgrades/v10/upgrades_test.go +++ b/app/upgrades/v10/upgrades_test.go @@ -16,22 +16,22 @@ import ( transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - "github.com/Stride-Labs/stride/v14/app/apptesting" - v10 "github.com/Stride-Labs/stride/v14/app/upgrades/v10" - "github.com/Stride-Labs/stride/v14/utils" - - icacallbackstypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" - ratelimittypes "github.com/Stride-Labs/stride/v14/x/ratelimit/types" - recordskeeper "github.com/Stride-Labs/stride/v14/x/records/keeper" - recordstypes "github.com/Stride-Labs/stride/v14/x/records/types" - stakeibckeeper "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" - stakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/app/apptesting" + v10 "github.com/Stride-Labs/stride/v15/app/upgrades/v10" + "github.com/Stride-Labs/stride/v15/utils" + + icacallbackstypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" + ratelimittypes "github.com/Stride-Labs/stride/v15/x/ratelimit/types" + recordskeeper "github.com/Stride-Labs/stride/v15/x/records/keeper" + recordstypes "github.com/Stride-Labs/stride/v15/x/records/types" + stakeibckeeper "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" + stakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" cosmosproto "github.com/cosmos/gogoproto/proto" deprecatedproto "github.com/golang/protobuf/proto" //nolint:staticcheck - claimtypes "github.com/Stride-Labs/stride/v14/x/claim/types" + claimtypes "github.com/Stride-Labs/stride/v15/x/claim/types" ) var initialRateLimitChannelValue = sdk.NewInt(1_000_000) diff --git a/app/upgrades/v13/upgrades.go b/app/upgrades/v13/upgrades.go index 19d3424bb2..115cb64d31 100644 --- a/app/upgrades/v13/upgrades.go +++ b/app/upgrades/v13/upgrades.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - stakeibckeeper "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" + stakeibckeeper "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" ) var ( diff --git a/app/upgrades/v13/upgrades_test.go b/app/upgrades/v13/upgrades_test.go index 4750cde54d..1e824ec964 100644 --- a/app/upgrades/v13/upgrades_test.go +++ b/app/upgrades/v13/upgrades_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/suite" - "github.com/Stride-Labs/stride/v14/app/apptesting" + "github.com/Stride-Labs/stride/v15/app/apptesting" ) type UpgradeTestSuite struct { diff --git a/app/upgrades/v14/upgrades.go b/app/upgrades/v14/upgrades.go index 36a014c764..ef06d87d03 100644 --- a/app/upgrades/v14/upgrades.go +++ b/app/upgrades/v14/upgrades.go @@ -23,13 +23,13 @@ import ( "github.com/evmos/vesting/x/vesting/types" evmosvestingtypes "github.com/evmos/vesting/x/vesting/types" - "github.com/Stride-Labs/stride/v14/utils" - claimkeeper "github.com/Stride-Labs/stride/v14/x/claim/keeper" - claimtypes "github.com/Stride-Labs/stride/v14/x/claim/types" - icqkeeper "github.com/Stride-Labs/stride/v14/x/interchainquery/keeper" - stakeibckeeper "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" - stakeibcmigration "github.com/Stride-Labs/stride/v14/x/stakeibc/migrations/v3" - stakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/utils" + claimkeeper "github.com/Stride-Labs/stride/v15/x/claim/keeper" + claimtypes "github.com/Stride-Labs/stride/v15/x/claim/types" + icqkeeper "github.com/Stride-Labs/stride/v15/x/interchainquery/keeper" + stakeibckeeper "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" + stakeibcmigration "github.com/Stride-Labs/stride/v15/x/stakeibc/migrations/v3" + stakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) var ( diff --git a/app/upgrades/v14/upgrades_test.go b/app/upgrades/v14/upgrades_test.go index b8081ed44b..2ad6615857 100644 --- a/app/upgrades/v14/upgrades_test.go +++ b/app/upgrades/v14/upgrades_test.go @@ -13,13 +13,13 @@ import ( evmosvestingtypes "github.com/evmos/vesting/x/vesting/types" "github.com/stretchr/testify/suite" - "github.com/Stride-Labs/stride/v14/app" - "github.com/Stride-Labs/stride/v14/app/apptesting" - v14 "github.com/Stride-Labs/stride/v14/app/upgrades/v14" - claimtypes "github.com/Stride-Labs/stride/v14/x/claim/types" - interchainquerytypes "github.com/Stride-Labs/stride/v14/x/interchainquery/types" - oldstakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/migrations/v3/types" - stakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/app" + "github.com/Stride-Labs/stride/v15/app/apptesting" + v14 "github.com/Stride-Labs/stride/v15/app/upgrades/v14" + claimtypes "github.com/Stride-Labs/stride/v15/x/claim/types" + interchainquerytypes "github.com/Stride-Labs/stride/v15/x/interchainquery/types" + oldstakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/migrations/v3/types" + stakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) var ( diff --git a/app/upgrades/v15/upgrades.go b/app/upgrades/v15/upgrades.go index e67672578d..e6be6a38fb 100644 --- a/app/upgrades/v15/upgrades.go +++ b/app/upgrades/v15/upgrades.go @@ -5,8 +5,8 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - icqkeeper "github.com/Stride-Labs/stride/v14/x/interchainquery/keeper" - stakeibckeeper "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" + icqkeeper "github.com/Stride-Labs/stride/v15/x/interchainquery/keeper" + stakeibckeeper "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" ) var ( diff --git a/app/upgrades/v15/upgrades_test.go b/app/upgrades/v15/upgrades_test.go index 25532dad8d..6de1186d3c 100644 --- a/app/upgrades/v15/upgrades_test.go +++ b/app/upgrades/v15/upgrades_test.go @@ -8,11 +8,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/app/apptesting" - v15 "github.com/Stride-Labs/stride/v14/app/upgrades/v15" - icqtypes "github.com/Stride-Labs/stride/v14/x/interchainquery/types" - stakeibckeeper "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" - stakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/app/apptesting" + v15 "github.com/Stride-Labs/stride/v15/app/upgrades/v15" + icqtypes "github.com/Stride-Labs/stride/v15/x/interchainquery/types" + stakeibckeeper "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" + stakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) type UpgradeTestSuite struct { diff --git a/app/upgrades/v3/upgrades.go b/app/upgrades/v3/upgrades.go index 1d001796bb..fe3982ec18 100644 --- a/app/upgrades/v3/upgrades.go +++ b/app/upgrades/v3/upgrades.go @@ -7,9 +7,9 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - claimkeeper "github.com/Stride-Labs/stride/v14/x/claim/keeper" - "github.com/Stride-Labs/stride/v14/x/claim/types" - claimtypes "github.com/Stride-Labs/stride/v14/x/claim/types" + claimkeeper "github.com/Stride-Labs/stride/v15/x/claim/keeper" + "github.com/Stride-Labs/stride/v15/x/claim/types" + claimtypes "github.com/Stride-Labs/stride/v15/x/claim/types" ) // Note: ensure these values are properly set before running upgrade diff --git a/app/upgrades/v3/upgrades_test.go b/app/upgrades/v3/upgrades_test.go index a74a741787..2c544edea0 100644 --- a/app/upgrades/v3/upgrades_test.go +++ b/app/upgrades/v3/upgrades_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/suite" - "github.com/Stride-Labs/stride/v14/app/apptesting" + "github.com/Stride-Labs/stride/v15/app/apptesting" ) var ( diff --git a/app/upgrades/v4/upgrades_test.go b/app/upgrades/v4/upgrades_test.go index 8024894f46..a3ebe67ba9 100644 --- a/app/upgrades/v4/upgrades_test.go +++ b/app/upgrades/v4/upgrades_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/suite" - "github.com/Stride-Labs/stride/v14/app/apptesting" + "github.com/Stride-Labs/stride/v15/app/apptesting" ) const dummyUpgradeHeight = 5 diff --git a/app/upgrades/v5/upgrades.go b/app/upgrades/v5/upgrades.go index 449ac34aa2..4b93546eb0 100644 --- a/app/upgrades/v5/upgrades.go +++ b/app/upgrades/v5/upgrades.go @@ -12,16 +12,16 @@ import ( authz "github.com/cosmos/cosmos-sdk/x/authz" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - claimmigration "github.com/Stride-Labs/stride/v14/x/claim/migrations/v2" - claimtypes "github.com/Stride-Labs/stride/v14/x/claim/types" - icacallbacksmigration "github.com/Stride-Labs/stride/v14/x/icacallbacks/migrations/v2" - icacallbacktypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" - interchainquerykeeper "github.com/Stride-Labs/stride/v14/x/interchainquery/keeper" - recordsmigration "github.com/Stride-Labs/stride/v14/x/records/migrations/v2" - recordtypes "github.com/Stride-Labs/stride/v14/x/records/types" - stakeibckeeper "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" - stakeibcmigration "github.com/Stride-Labs/stride/v14/x/stakeibc/migrations/v2" - stakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + claimmigration "github.com/Stride-Labs/stride/v15/x/claim/migrations/v2" + claimtypes "github.com/Stride-Labs/stride/v15/x/claim/types" + icacallbacksmigration "github.com/Stride-Labs/stride/v15/x/icacallbacks/migrations/v2" + icacallbacktypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" + interchainquerykeeper "github.com/Stride-Labs/stride/v15/x/interchainquery/keeper" + recordsmigration "github.com/Stride-Labs/stride/v15/x/records/migrations/v2" + recordtypes "github.com/Stride-Labs/stride/v15/x/records/types" + stakeibckeeper "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" + stakeibcmigration "github.com/Stride-Labs/stride/v15/x/stakeibc/migrations/v2" + stakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) // Note: ensure these values are properly set before running upgrade diff --git a/app/upgrades/v5/upgrades_test.go b/app/upgrades/v5/upgrades_test.go index a50a0a0cac..fadf48352c 100644 --- a/app/upgrades/v5/upgrades_test.go +++ b/app/upgrades/v5/upgrades_test.go @@ -12,21 +12,21 @@ import ( paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" "github.com/stretchr/testify/suite" - "github.com/Stride-Labs/stride/v14/app" - - "github.com/Stride-Labs/stride/v14/app/apptesting" - upgradev5 "github.com/Stride-Labs/stride/v14/app/upgrades/v5" - oldclaimtypes "github.com/Stride-Labs/stride/v14/x/claim/migrations/v2/types" - claimtypes "github.com/Stride-Labs/stride/v14/x/claim/types" - icacallbacktypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" - icqtypes "github.com/Stride-Labs/stride/v14/x/interchainquery/types" - recordkeeper "github.com/Stride-Labs/stride/v14/x/records/keeper" - oldrecordtypes "github.com/Stride-Labs/stride/v14/x/records/migrations/v2/types" - recordtypes "github.com/Stride-Labs/stride/v14/x/records/types" - stakeibckeeper "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" - oldstakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/migrations/v2/types" - newstakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/migrations/v3/types" - stakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/app" + + "github.com/Stride-Labs/stride/v15/app/apptesting" + upgradev5 "github.com/Stride-Labs/stride/v15/app/upgrades/v5" + oldclaimtypes "github.com/Stride-Labs/stride/v15/x/claim/migrations/v2/types" + claimtypes "github.com/Stride-Labs/stride/v15/x/claim/types" + icacallbacktypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" + icqtypes "github.com/Stride-Labs/stride/v15/x/interchainquery/types" + recordkeeper "github.com/Stride-Labs/stride/v15/x/records/keeper" + oldrecordtypes "github.com/Stride-Labs/stride/v15/x/records/migrations/v2/types" + recordtypes "github.com/Stride-Labs/stride/v15/x/records/types" + stakeibckeeper "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" + oldstakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/migrations/v2/types" + newstakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/migrations/v3/types" + stakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) const dummyUpgradeHeight = 5 diff --git a/app/upgrades/v6/upgrades.go b/app/upgrades/v6/upgrades.go index 0d25b49916..b528b60d0c 100644 --- a/app/upgrades/v6/upgrades.go +++ b/app/upgrades/v6/upgrades.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - claimkeeper "github.com/Stride-Labs/stride/v14/x/claim/keeper" + claimkeeper "github.com/Stride-Labs/stride/v15/x/claim/keeper" ) // Note: ensure these values are properly set before running upgrade diff --git a/app/upgrades/v6/upgrades_test.go b/app/upgrades/v6/upgrades_test.go index 4fe1ce08dc..7ea95897c7 100644 --- a/app/upgrades/v6/upgrades_test.go +++ b/app/upgrades/v6/upgrades_test.go @@ -10,11 +10,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/suite" - "github.com/Stride-Labs/stride/v14/app" + "github.com/Stride-Labs/stride/v15/app" - "github.com/Stride-Labs/stride/v14/app/apptesting" - "github.com/Stride-Labs/stride/v14/x/claim/types" - claimtypes "github.com/Stride-Labs/stride/v14/x/claim/types" + "github.com/Stride-Labs/stride/v15/app/apptesting" + "github.com/Stride-Labs/stride/v15/x/claim/types" + claimtypes "github.com/Stride-Labs/stride/v15/x/claim/types" ) const dummyUpgradeHeight = 5 diff --git a/app/upgrades/v7/upgrades.go b/app/upgrades/v7/upgrades.go index 5ebce3590b..4218e5a08a 100644 --- a/app/upgrades/v7/upgrades.go +++ b/app/upgrades/v7/upgrades.go @@ -23,14 +23,14 @@ import ( icahosttypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - "github.com/Stride-Labs/stride/v14/utils" - epochskeeper "github.com/Stride-Labs/stride/v14/x/epochs/keeper" - epochstypes "github.com/Stride-Labs/stride/v14/x/epochs/types" - mintkeeper "github.com/Stride-Labs/stride/v14/x/mint/keeper" - minttypes "github.com/Stride-Labs/stride/v14/x/mint/types" - stakeibckeeper "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" - newstakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/migrations/v3/types" - stakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/utils" + epochskeeper "github.com/Stride-Labs/stride/v15/x/epochs/keeper" + epochstypes "github.com/Stride-Labs/stride/v15/x/epochs/types" + mintkeeper "github.com/Stride-Labs/stride/v15/x/mint/keeper" + minttypes "github.com/Stride-Labs/stride/v15/x/mint/types" + stakeibckeeper "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" + newstakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/migrations/v3/types" + stakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) // CreateUpgradeHandler creates an SDK upgrade handler for v7 diff --git a/app/upgrades/v7/upgrades_test.go b/app/upgrades/v7/upgrades_test.go index 68fee9939b..f831e09bbd 100644 --- a/app/upgrades/v7/upgrades_test.go +++ b/app/upgrades/v7/upgrades_test.go @@ -9,17 +9,17 @@ import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/app" - "github.com/Stride-Labs/stride/v14/app/apptesting" - v7 "github.com/Stride-Labs/stride/v14/app/upgrades/v7" - epochstypes "github.com/Stride-Labs/stride/v14/x/epochs/types" - newstakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/migrations/v3/types" - stakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/app" + "github.com/Stride-Labs/stride/v15/app/apptesting" + v7 "github.com/Stride-Labs/stride/v15/app/upgrades/v7" + epochstypes "github.com/Stride-Labs/stride/v15/x/epochs/types" + newstakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/migrations/v3/types" + stakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" // This isn't the exact type host zone schema as the one that's will be in the store // before the upgrade, but the only thing that matters, for the sake of the test, // is that it doesn't have min/max redemption rate as attributes - oldstakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/migrations/v2/types" + oldstakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/migrations/v2/types" ) var ( diff --git a/app/upgrades/v8/upgrades.go b/app/upgrades/v8/upgrades.go index 51931e5ef5..88bcebdb17 100644 --- a/app/upgrades/v8/upgrades.go +++ b/app/upgrades/v8/upgrades.go @@ -12,12 +12,12 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/Stride-Labs/stride/v14/utils" - autopilotkeeper "github.com/Stride-Labs/stride/v14/x/autopilot/keeper" - autopilottypes "github.com/Stride-Labs/stride/v14/x/autopilot/types" - claimkeeper "github.com/Stride-Labs/stride/v14/x/claim/keeper" - "github.com/Stride-Labs/stride/v14/x/claim/types" - claimtypes "github.com/Stride-Labs/stride/v14/x/claim/types" + "github.com/Stride-Labs/stride/v15/utils" + autopilotkeeper "github.com/Stride-Labs/stride/v15/x/autopilot/keeper" + autopilottypes "github.com/Stride-Labs/stride/v15/x/autopilot/types" + claimkeeper "github.com/Stride-Labs/stride/v15/x/claim/keeper" + "github.com/Stride-Labs/stride/v15/x/claim/types" + claimtypes "github.com/Stride-Labs/stride/v15/x/claim/types" ) var ( diff --git a/app/upgrades/v8/upgrades_test.go b/app/upgrades/v8/upgrades_test.go index b671cd38bd..872b9f92f1 100644 --- a/app/upgrades/v8/upgrades_test.go +++ b/app/upgrades/v8/upgrades_test.go @@ -9,11 +9,11 @@ import ( sdkmath "cosmossdk.io/math" "github.com/stretchr/testify/suite" - "github.com/Stride-Labs/stride/v14/app/apptesting" - v8 "github.com/Stride-Labs/stride/v14/app/upgrades/v8" - autopilottypes "github.com/Stride-Labs/stride/v14/x/autopilot/types" - "github.com/Stride-Labs/stride/v14/x/claim/types" - claimtypes "github.com/Stride-Labs/stride/v14/x/claim/types" + "github.com/Stride-Labs/stride/v15/app/apptesting" + v8 "github.com/Stride-Labs/stride/v15/app/upgrades/v8" + autopilottypes "github.com/Stride-Labs/stride/v15/x/autopilot/types" + "github.com/Stride-Labs/stride/v15/x/claim/types" + claimtypes "github.com/Stride-Labs/stride/v15/x/claim/types" ) var ( diff --git a/app/upgrades/v9/upgrades.go b/app/upgrades/v9/upgrades.go index 01eb2247f4..ed51bb37d1 100644 --- a/app/upgrades/v9/upgrades.go +++ b/app/upgrades/v9/upgrades.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - claimkeeper "github.com/Stride-Labs/stride/v14/x/claim/keeper" + claimkeeper "github.com/Stride-Labs/stride/v15/x/claim/keeper" ) // CreateUpgradeHandler creates an SDK upgrade handler for v29 diff --git a/app/upgrades/v9/upgrades_test.go b/app/upgrades/v9/upgrades_test.go index 380cc83807..ef4077cb7c 100644 --- a/app/upgrades/v9/upgrades_test.go +++ b/app/upgrades/v9/upgrades_test.go @@ -6,18 +6,18 @@ import ( "github.com/stretchr/testify/suite" - "github.com/Stride-Labs/stride/v14/app" - "github.com/Stride-Labs/stride/v14/app/apptesting" - v9 "github.com/Stride-Labs/stride/v14/app/upgrades/v9" - "github.com/Stride-Labs/stride/v14/utils" + "github.com/Stride-Labs/stride/v15/app" + "github.com/Stride-Labs/stride/v15/app/apptesting" + v9 "github.com/Stride-Labs/stride/v15/app/upgrades/v9" + "github.com/Stride-Labs/stride/v15/utils" - claimtypes "github.com/Stride-Labs/stride/v14/x/claim/types" + claimtypes "github.com/Stride-Labs/stride/v15/x/claim/types" // This isn't the exact type host zone schema as the one that's will be in the store // before the upgrade, but the only thing that matters, for the sake of the test, // is that it doesn't have min/max redemption rate as attributes - "github.com/Stride-Labs/stride/v14/x/claim/migrations/v2/types" - oldclaimtypes "github.com/Stride-Labs/stride/v14/x/claim/migrations/v2/types" + "github.com/Stride-Labs/stride/v15/x/claim/migrations/v2/types" + oldclaimtypes "github.com/Stride-Labs/stride/v15/x/claim/migrations/v2/types" ) type UpgradeTestSuite struct { diff --git a/cmd/consumer.go b/cmd/consumer.go index bcfdaa0a8b..723066f09a 100644 --- a/cmd/consumer.go +++ b/cmd/consumer.go @@ -18,7 +18,7 @@ import ( ccvconsumertypes "github.com/cosmos/interchain-security/v3/x/ccv/consumer/types" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/testutil" + "github.com/Stride-Labs/stride/v15/testutil" ) func AddConsumerSectionCmd(defaultNodeHome string) *cobra.Command { diff --git a/cmd/strided/main.go b/cmd/strided/main.go index 453e83cbc6..2962a335a6 100644 --- a/cmd/strided/main.go +++ b/cmd/strided/main.go @@ -5,10 +5,10 @@ import ( svrcmd "github.com/cosmos/cosmos-sdk/server/cmd" - "github.com/Stride-Labs/stride/v14/app" - "github.com/Stride-Labs/stride/v14/cmd" + "github.com/Stride-Labs/stride/v15/app" + "github.com/Stride-Labs/stride/v15/cmd" - cmdcfg "github.com/Stride-Labs/stride/v14/cmd/strided/config" + cmdcfg "github.com/Stride-Labs/stride/v15/cmd/strided/config" ) func main() { diff --git a/cmd/strided/root.go b/cmd/strided/root.go index 6013a87706..1467a80fc9 100644 --- a/cmd/strided/root.go +++ b/cmd/strided/root.go @@ -12,7 +12,7 @@ import ( "github.com/cosmos/cosmos-sdk/snapshots" "gopkg.in/yaml.v2" - "github.com/Stride-Labs/stride/v14/utils" + "github.com/Stride-Labs/stride/v15/utils" cometbftdb "github.com/cometbft/cometbft-db" "github.com/cometbft/cometbft/libs/cli" @@ -47,7 +47,7 @@ import ( genutilcli "github.com/cosmos/cosmos-sdk/x/genutil/client/cli" genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types" - "github.com/Stride-Labs/stride/v14/app" + "github.com/Stride-Labs/stride/v15/app" ) var ChainID string diff --git a/go.mod b/go.mod index 12e752a244..5781b497f7 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/Stride-Labs/stride/v14 +module github.com/Stride-Labs/stride/v15 go 1.19 diff --git a/proto/cosmos/staking/v1beta1/lsm_tx.proto b/proto/cosmos/staking/v1beta1/lsm_tx.proto index a2df937995..dd37379909 100644 --- a/proto/cosmos/staking/v1beta1/lsm_tx.proto +++ b/proto/cosmos/staking/v1beta1/lsm_tx.proto @@ -5,7 +5,7 @@ import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/stakeibc/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/stakeibc/types"; // Given SDK version conflicts between gaia with LSM and Stride, // we can't import the RedeemTokensForShares type diff --git a/proto/cosmwasm/wasm/v1/cosmwasm.proto b/proto/cosmwasm/wasm/v1/cosmwasm.proto index c0e0c27a86..b683cefc75 100644 --- a/proto/cosmwasm/wasm/v1/cosmwasm.proto +++ b/proto/cosmwasm/wasm/v1/cosmwasm.proto @@ -4,7 +4,7 @@ package cosmwasm.wasm.v1; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/icaoracle/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/icaoracle/types"; // MsgExecuteContract submits the given message data to a smart contract message MsgExecuteContract { diff --git a/proto/stride/autopilot/genesis.proto b/proto/stride/autopilot/genesis.proto index b968ba022c..5bc9695ce0 100644 --- a/proto/stride/autopilot/genesis.proto +++ b/proto/stride/autopilot/genesis.proto @@ -4,7 +4,7 @@ package stride.autopilot; import "gogoproto/gogo.proto"; import "stride/autopilot/params.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/autopilot/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/autopilot/types"; // GenesisState defines the claim module's genesis state. message GenesisState { diff --git a/proto/stride/autopilot/params.proto b/proto/stride/autopilot/params.proto index da9993cbc7..c18c8fde1c 100644 --- a/proto/stride/autopilot/params.proto +++ b/proto/stride/autopilot/params.proto @@ -3,7 +3,7 @@ package stride.autopilot; import "gogoproto/gogo.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/autopilot/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/autopilot/types"; // Params defines the parameters for the module. // next id: 1 diff --git a/proto/stride/autopilot/query.proto b/proto/stride/autopilot/query.proto index 298d603af2..52b8a06b90 100644 --- a/proto/stride/autopilot/query.proto +++ b/proto/stride/autopilot/query.proto @@ -5,7 +5,7 @@ import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "stride/autopilot/params.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/autopilot/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/autopilot/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/stride/claim/claim.proto b/proto/stride/claim/claim.proto index 7e59c1d032..f9aeb5515f 100644 --- a/proto/stride/claim/claim.proto +++ b/proto/stride/claim/claim.proto @@ -3,7 +3,7 @@ package stride.claim; import "gogoproto/gogo.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/claim/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/claim/types"; enum Action { option (gogoproto.goproto_enum_prefix) = false; diff --git a/proto/stride/claim/genesis.proto b/proto/stride/claim/genesis.proto index 46055bbb6f..62583049b9 100644 --- a/proto/stride/claim/genesis.proto +++ b/proto/stride/claim/genesis.proto @@ -5,7 +5,7 @@ import "gogoproto/gogo.proto"; import "stride/claim/claim.proto"; import "stride/claim/params.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/claim/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/claim/types"; // GenesisState defines the claim module's genesis state. message GenesisState { diff --git a/proto/stride/claim/params.proto b/proto/stride/claim/params.proto index 2d88f661bc..33e832f059 100644 --- a/proto/stride/claim/params.proto +++ b/proto/stride/claim/params.proto @@ -5,7 +5,7 @@ import "gogoproto/gogo.proto"; import "google/protobuf/duration.proto"; import "google/protobuf/timestamp.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/claim/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/claim/types"; // Params defines the claim module's parameters. message Params { repeated Airdrop airdrops = 1; } diff --git a/proto/stride/claim/query.proto b/proto/stride/claim/query.proto index bd772fedcb..f327a22bf5 100644 --- a/proto/stride/claim/query.proto +++ b/proto/stride/claim/query.proto @@ -9,7 +9,7 @@ import "stride/claim/params.proto"; import "stride/vesting/vesting.proto"; import "google/protobuf/timestamp.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/claim/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/claim/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/stride/claim/tx.proto b/proto/stride/claim/tx.proto index 76b7ee2205..05dbbd18bc 100644 --- a/proto/stride/claim/tx.proto +++ b/proto/stride/claim/tx.proto @@ -4,7 +4,7 @@ package stride.claim; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/claim/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/claim/types"; // Msg defines the Msg service. service Msg { diff --git a/proto/stride/epochs/genesis.proto b/proto/stride/epochs/genesis.proto index 8f9a5b5d66..9829ebd0ca 100755 --- a/proto/stride/epochs/genesis.proto +++ b/proto/stride/epochs/genesis.proto @@ -5,7 +5,7 @@ import "gogoproto/gogo.proto"; import "google/protobuf/duration.proto"; import "google/protobuf/timestamp.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/epochs/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/epochs/types"; message EpochInfo { string identifier = 1; diff --git a/proto/stride/epochs/query.proto b/proto/stride/epochs/query.proto index 342f903d6d..600bd6b0db 100644 --- a/proto/stride/epochs/query.proto +++ b/proto/stride/epochs/query.proto @@ -6,7 +6,7 @@ import "google/api/annotations.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; import "stride/epochs/genesis.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/epochs/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/epochs/types"; // Query defines the gRPC querier service. service Query { @@ -51,7 +51,7 @@ message QueryEpochInfoResponse { // import "epochs/params.proto"; // // this line is used by starport scaffolding # 1 -// option go_package = "github.com/Stride-Labs/stride/v14/x/epochs/types"; +// option go_package = "github.com/Stride-Labs/stride/v15/x/epochs/types"; // // Query defines the gRPC querier service. // service Query { diff --git a/proto/stride/icacallbacks/callback_data.proto b/proto/stride/icacallbacks/callback_data.proto index 1277b4064c..bb6919c6b6 100755 --- a/proto/stride/icacallbacks/callback_data.proto +++ b/proto/stride/icacallbacks/callback_data.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package stride.icacallbacks; -option go_package = "github.com/Stride-Labs/stride/v14/x/icacallbacks/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/icacallbacks/types"; message CallbackData { string callback_key = 1; diff --git a/proto/stride/icacallbacks/genesis.proto b/proto/stride/icacallbacks/genesis.proto index a37a2e5e52..71674a441b 100755 --- a/proto/stride/icacallbacks/genesis.proto +++ b/proto/stride/icacallbacks/genesis.proto @@ -6,7 +6,7 @@ import "stride/icacallbacks/params.proto"; import "stride/icacallbacks/callback_data.proto"; // this line is used by starport scaffolding # genesis/proto/import -option go_package = "github.com/Stride-Labs/stride/v14/x/icacallbacks/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/icacallbacks/types"; // GenesisState defines the icacallbacks module's genesis state. message GenesisState { diff --git a/proto/stride/icacallbacks/packet.proto b/proto/stride/icacallbacks/packet.proto index 188a3d42be..cb40c226a6 100755 --- a/proto/stride/icacallbacks/packet.proto +++ b/proto/stride/icacallbacks/packet.proto @@ -3,7 +3,7 @@ package stride.icacallbacks; // this line is used by starport scaffolding # proto/packet/import -option go_package = "github.com/Stride-Labs/stride/v14/x/icacallbacks/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/icacallbacks/types"; message IcacallbacksPacketData { oneof packet { diff --git a/proto/stride/icacallbacks/params.proto b/proto/stride/icacallbacks/params.proto index ee846c7ed1..5a731f22bf 100755 --- a/proto/stride/icacallbacks/params.proto +++ b/proto/stride/icacallbacks/params.proto @@ -3,7 +3,7 @@ package stride.icacallbacks; import "gogoproto/gogo.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/icacallbacks/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/icacallbacks/types"; // Params defines the parameters for the module. message Params { option (gogoproto.goproto_stringer) = false; } diff --git a/proto/stride/icacallbacks/query.proto b/proto/stride/icacallbacks/query.proto index 82c28af0ee..1cd1fef5f0 100644 --- a/proto/stride/icacallbacks/query.proto +++ b/proto/stride/icacallbacks/query.proto @@ -8,7 +8,7 @@ import "stride/icacallbacks/params.proto"; import "stride/icacallbacks/callback_data.proto"; // this line is used by starport scaffolding # 1 -option go_package = "github.com/Stride-Labs/stride/v14/x/icacallbacks/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/icacallbacks/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/stride/icacallbacks/tx.proto b/proto/stride/icacallbacks/tx.proto index 4a3c247b25..1cb488d6c9 100755 --- a/proto/stride/icacallbacks/tx.proto +++ b/proto/stride/icacallbacks/tx.proto @@ -3,7 +3,7 @@ package stride.icacallbacks; // this line is used by starport scaffolding # proto/tx/import -option go_package = "github.com/Stride-Labs/stride/v14/x/icacallbacks/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/icacallbacks/types"; // Msg defines the Msg service. service Msg { diff --git a/proto/stride/icaoracle/callbacks.proto b/proto/stride/icaoracle/callbacks.proto index 6f22b692c9..fb99bbfae3 100644 --- a/proto/stride/icaoracle/callbacks.proto +++ b/proto/stride/icaoracle/callbacks.proto @@ -3,7 +3,7 @@ package stride.icaoracle; import "stride/icaoracle/icaoracle.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/icaoracle/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/icaoracle/types"; // Callback data for instantiating an oracle message InstantiateOracleCallback { string oracle_chain_id = 1; } diff --git a/proto/stride/icaoracle/contract.proto b/proto/stride/icaoracle/contract.proto index 2f0137a566..cecee957ee 100644 --- a/proto/stride/icaoracle/contract.proto +++ b/proto/stride/icaoracle/contract.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package stride.icaoracle; -option go_package = "github.com/Stride-Labs/stride/v14/x/icaoracle/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/icaoracle/types"; // InstanitateOracleContract is the contract-specific instantiate message message MsgInstantiateOracleContract { diff --git a/proto/stride/icaoracle/genesis.proto b/proto/stride/icaoracle/genesis.proto index 9b699ae95b..be8e03554d 100644 --- a/proto/stride/icaoracle/genesis.proto +++ b/proto/stride/icaoracle/genesis.proto @@ -4,7 +4,7 @@ package stride.icaoracle; import "gogoproto/gogo.proto"; import "stride/icaoracle/icaoracle.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/icaoracle/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/icaoracle/types"; // Params defines the icaoracle module parameters. message Params {} diff --git a/proto/stride/icaoracle/icaoracle.proto b/proto/stride/icaoracle/icaoracle.proto index 4bbee1d959..f09ace582c 100644 --- a/proto/stride/icaoracle/icaoracle.proto +++ b/proto/stride/icaoracle/icaoracle.proto @@ -3,7 +3,7 @@ package stride.icaoracle; import "gogoproto/gogo.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/icaoracle/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/icaoracle/types"; // Oracle structure stores context about the CW oracle sitting a different chain message Oracle { diff --git a/proto/stride/icaoracle/query.proto b/proto/stride/icaoracle/query.proto index 1b56cc2516..0a3138087e 100644 --- a/proto/stride/icaoracle/query.proto +++ b/proto/stride/icaoracle/query.proto @@ -5,7 +5,7 @@ import "stride/icaoracle/icaoracle.proto"; import "google/api/annotations.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/icaoracle/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/icaoracle/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/stride/icaoracle/tx.proto b/proto/stride/icaoracle/tx.proto index 1413c8109b..5c824e5abc 100644 --- a/proto/stride/icaoracle/tx.proto +++ b/proto/stride/icaoracle/tx.proto @@ -5,7 +5,7 @@ import "cosmos_proto/cosmos.proto"; import "cosmos/msg/v1/msg.proto"; import "amino/amino.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/icaoracle/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/icaoracle/types"; // Msg defines the Msg service. service Msg { diff --git a/proto/stride/interchainquery/v1/genesis.proto b/proto/stride/interchainquery/v1/genesis.proto index 23edd61403..786928b39a 100644 --- a/proto/stride/interchainquery/v1/genesis.proto +++ b/proto/stride/interchainquery/v1/genesis.proto @@ -5,7 +5,7 @@ import "gogoproto/gogo.proto"; import "google/protobuf/duration.proto"; import "cosmos_proto/cosmos.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/interchainquery/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/interchainquery/types"; enum TimeoutPolicy { REJECT_QUERY_RESPONSE = 0; diff --git a/proto/stride/interchainquery/v1/messages.proto b/proto/stride/interchainquery/v1/messages.proto index 18cbe785cc..a55a1c7e1f 100755 --- a/proto/stride/interchainquery/v1/messages.proto +++ b/proto/stride/interchainquery/v1/messages.proto @@ -6,7 +6,7 @@ import "cosmos_proto/cosmos.proto"; import "google/api/annotations.proto"; import "tendermint/crypto/proof.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/interchainquery/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/interchainquery/types"; // Msg defines the interchainquery Msg service. service Msg { diff --git a/proto/stride/interchainquery/v1/query.proto b/proto/stride/interchainquery/v1/query.proto index 805e348816..6251e89ad9 100644 --- a/proto/stride/interchainquery/v1/query.proto +++ b/proto/stride/interchainquery/v1/query.proto @@ -5,7 +5,7 @@ import "stride/interchainquery/v1/genesis.proto"; import "google/api/annotations.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/interchainquery/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/interchainquery/types"; service QueryService { rpc PendingQueries(QueryPendingQueriesRequest) diff --git a/proto/stride/mint/v1beta1/genesis.proto b/proto/stride/mint/v1beta1/genesis.proto index 932a071705..3e4f0d5997 100755 --- a/proto/stride/mint/v1beta1/genesis.proto +++ b/proto/stride/mint/v1beta1/genesis.proto @@ -4,7 +4,7 @@ package stride.mint.v1beta1; import "gogoproto/gogo.proto"; import "stride/mint/v1beta1/mint.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/mint/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/mint/types"; // GenesisState defines the mint module's genesis state. message GenesisState { diff --git a/proto/stride/mint/v1beta1/mint.proto b/proto/stride/mint/v1beta1/mint.proto index c65080ca1f..c8a746f93a 100755 --- a/proto/stride/mint/v1beta1/mint.proto +++ b/proto/stride/mint/v1beta1/mint.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package stride.mint.v1beta1; -option go_package = "github.com/Stride-Labs/stride/v14/x/mint/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/mint/types"; import "gogoproto/gogo.proto"; diff --git a/proto/stride/mint/v1beta1/query.proto b/proto/stride/mint/v1beta1/query.proto index 957b26cb4d..6c08d91854 100755 --- a/proto/stride/mint/v1beta1/query.proto +++ b/proto/stride/mint/v1beta1/query.proto @@ -5,7 +5,7 @@ import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "stride/mint/v1beta1/mint.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/mint/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/mint/types"; // Query provides defines the gRPC querier service. service Query { diff --git a/proto/stride/ratelimit/genesis.proto b/proto/stride/ratelimit/genesis.proto index d4bbf84c82..e2ccd5a52b 100644 --- a/proto/stride/ratelimit/genesis.proto +++ b/proto/stride/ratelimit/genesis.proto @@ -5,7 +5,7 @@ import "gogoproto/gogo.proto"; import "stride/ratelimit/params.proto"; import "stride/ratelimit/ratelimit.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/ratelimit/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/ratelimit/types"; // GenesisState defines the ratelimit module's genesis state. message GenesisState { diff --git a/proto/stride/ratelimit/gov.proto b/proto/stride/ratelimit/gov.proto index a7d0cddcbc..8eb347d686 100644 --- a/proto/stride/ratelimit/gov.proto +++ b/proto/stride/ratelimit/gov.proto @@ -3,7 +3,7 @@ package stride.ratelimit; import "gogoproto/gogo.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/ratelimit/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/ratelimit/types"; message AddRateLimitProposal { option (gogoproto.equal) = true; diff --git a/proto/stride/ratelimit/params.proto b/proto/stride/ratelimit/params.proto index 841536ef97..1c823a44c2 100644 --- a/proto/stride/ratelimit/params.proto +++ b/proto/stride/ratelimit/params.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package stride.ratelimit; -option go_package = "github.com/Stride-Labs/stride/v14/x/ratelimit/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/ratelimit/types"; // Params defines the ratelimit module's parameters. message Params {} diff --git a/proto/stride/ratelimit/query.proto b/proto/stride/ratelimit/query.proto index 00e699ec9b..7f838d4780 100644 --- a/proto/stride/ratelimit/query.proto +++ b/proto/stride/ratelimit/query.proto @@ -5,7 +5,7 @@ import "stride/ratelimit/ratelimit.proto"; import "google/api/annotations.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/ratelimit/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/ratelimit/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/stride/ratelimit/ratelimit.proto b/proto/stride/ratelimit/ratelimit.proto index 549dbe39df..6ea0710c26 100644 --- a/proto/stride/ratelimit/ratelimit.proto +++ b/proto/stride/ratelimit/ratelimit.proto @@ -3,7 +3,7 @@ package stride.ratelimit; import "gogoproto/gogo.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/ratelimit/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/ratelimit/types"; enum PacketDirection { option (gogoproto.goproto_enum_prefix) = false; diff --git a/proto/stride/records/callbacks.proto b/proto/stride/records/callbacks.proto index f10fe832af..f7d0954399 100644 --- a/proto/stride/records/callbacks.proto +++ b/proto/stride/records/callbacks.proto @@ -3,7 +3,7 @@ package stride.records; import "stride/records/records.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/records/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/records/types"; message TransferCallback { uint64 deposit_record_id = 1; } diff --git a/proto/stride/records/genesis.proto b/proto/stride/records/genesis.proto index c4a18d67ed..538745788a 100644 --- a/proto/stride/records/genesis.proto +++ b/proto/stride/records/genesis.proto @@ -5,7 +5,7 @@ import "stride/records/params.proto"; import "stride/records/records.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/records/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/records/types"; // GenesisState defines the records module's genesis state. message GenesisState { diff --git a/proto/stride/records/params.proto b/proto/stride/records/params.proto index 58042d0824..f557291f0e 100644 --- a/proto/stride/records/params.proto +++ b/proto/stride/records/params.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package stride.records; -option go_package = "github.com/Stride-Labs/stride/v14/x/records/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/records/types"; // Params defines the parameters for the module. message Params {} \ No newline at end of file diff --git a/proto/stride/records/query.proto b/proto/stride/records/query.proto index 1037ed74be..9d21b318c4 100644 --- a/proto/stride/records/query.proto +++ b/proto/stride/records/query.proto @@ -8,7 +8,7 @@ import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/records/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/records/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/stride/records/records.proto b/proto/stride/records/records.proto index 4b897278e1..f9e50ac627 100644 --- a/proto/stride/records/records.proto +++ b/proto/stride/records/records.proto @@ -4,7 +4,7 @@ package stride.records; import "cosmos/base/v1beta1/coin.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/records/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/records/types"; message UserRedemptionRecord { string id = 1; // {chain_id}.{epoch}.{sender} diff --git a/proto/stride/stakeibc/address_unbonding.proto b/proto/stride/stakeibc/address_unbonding.proto index db6e84a5a1..d3b2c4244b 100644 --- a/proto/stride/stakeibc/address_unbonding.proto +++ b/proto/stride/stakeibc/address_unbonding.proto @@ -3,7 +3,7 @@ package stride.stakeibc; import "gogoproto/gogo.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/stakeibc/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/stakeibc/types"; message AddressUnbonding { string address = 1; diff --git a/proto/stride/stakeibc/callbacks.proto b/proto/stride/stakeibc/callbacks.proto index 5656f6b1de..f752cf3700 100644 --- a/proto/stride/stakeibc/callbacks.proto +++ b/proto/stride/stakeibc/callbacks.proto @@ -6,7 +6,7 @@ import "stride/records/records.proto"; import "stride/stakeibc/host_zone.proto"; import "stride/stakeibc/validator.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/stakeibc/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/stakeibc/types"; message SplitDelegation { string validator = 1; diff --git a/proto/stride/stakeibc/epoch_tracker.proto b/proto/stride/stakeibc/epoch_tracker.proto index fca1ad90e9..3acfd0a480 100755 --- a/proto/stride/stakeibc/epoch_tracker.proto +++ b/proto/stride/stakeibc/epoch_tracker.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package stride.stakeibc; -option go_package = "github.com/Stride-Labs/stride/v14/x/stakeibc/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/stakeibc/types"; message EpochTracker { string epoch_identifier = 1; diff --git a/proto/stride/stakeibc/genesis.proto b/proto/stride/stakeibc/genesis.proto index dc761f2be1..1c5433cb38 100644 --- a/proto/stride/stakeibc/genesis.proto +++ b/proto/stride/stakeibc/genesis.proto @@ -7,7 +7,7 @@ import "stride/stakeibc/host_zone.proto"; import "stride/stakeibc/epoch_tracker.proto"; // this line is used by starport scaffolding # genesis/proto/import -option go_package = "github.com/Stride-Labs/stride/v14/x/stakeibc/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/stakeibc/types"; // GenesisState defines the stakeibc module's genesis state. message GenesisState { diff --git a/proto/stride/stakeibc/gov.proto b/proto/stride/stakeibc/gov.proto index fb86685ff2..289c765b6a 100644 --- a/proto/stride/stakeibc/gov.proto +++ b/proto/stride/stakeibc/gov.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package stride.stakeibc; import "gogoproto/gogo.proto"; import "stride/stakeibc/validator.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/stakeibc/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/stakeibc/types"; message AddValidatorsProposal { option (gogoproto.equal) = true; diff --git a/proto/stride/stakeibc/host_zone.proto b/proto/stride/stakeibc/host_zone.proto index d55c67a84e..fd25783922 100644 --- a/proto/stride/stakeibc/host_zone.proto +++ b/proto/stride/stakeibc/host_zone.proto @@ -5,7 +5,7 @@ import "stride/stakeibc/validator.proto"; import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/stakeibc/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/stakeibc/types"; message HostZone { string chain_id = 1; diff --git a/proto/stride/stakeibc/ica_account.proto b/proto/stride/stakeibc/ica_account.proto index d28e68be3f..0a4288cbcb 100755 --- a/proto/stride/stakeibc/ica_account.proto +++ b/proto/stride/stakeibc/ica_account.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package stride.stakeibc; -option go_package = "github.com/Stride-Labs/stride/v14/x/stakeibc/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/stakeibc/types"; enum ICAAccountType { DELEGATION = 0; diff --git a/proto/stride/stakeibc/packet.proto b/proto/stride/stakeibc/packet.proto index 75b4a954f3..2f99129c33 100755 --- a/proto/stride/stakeibc/packet.proto +++ b/proto/stride/stakeibc/packet.proto @@ -3,7 +3,7 @@ package stride.stakeibc; // this line is used by starport scaffolding # proto/packet/import -option go_package = "github.com/Stride-Labs/stride/v14/x/stakeibc/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/stakeibc/types"; message StakeibcPacketData { oneof packet { diff --git a/proto/stride/stakeibc/params.proto b/proto/stride/stakeibc/params.proto index ae9e3ec62f..b532155ec9 100755 --- a/proto/stride/stakeibc/params.proto +++ b/proto/stride/stakeibc/params.proto @@ -3,7 +3,7 @@ package stride.stakeibc; import "gogoproto/gogo.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/stakeibc/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/stakeibc/types"; // Params defines the parameters for the module. // next id: 20 diff --git a/proto/stride/stakeibc/query.proto b/proto/stride/stakeibc/query.proto index f1b3afaaeb..f991fbff67 100644 --- a/proto/stride/stakeibc/query.proto +++ b/proto/stride/stakeibc/query.proto @@ -10,7 +10,7 @@ import "stride/stakeibc/host_zone.proto"; import "stride/stakeibc/epoch_tracker.proto"; import "stride/stakeibc/address_unbonding.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/stakeibc/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/stakeibc/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/stride/stakeibc/tx.proto b/proto/stride/stakeibc/tx.proto index 6896faf553..f62c63825c 100644 --- a/proto/stride/stakeibc/tx.proto +++ b/proto/stride/stakeibc/tx.proto @@ -4,7 +4,7 @@ package stride.stakeibc; import "stride/stakeibc/ica_account.proto"; import "stride/stakeibc/validator.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/stakeibc/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/stakeibc/types"; import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; @@ -179,7 +179,6 @@ message MsgUndelegateHost { (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", (gogoproto.nullable) = false ]; - } message MsgUndelegateHostResponse {} diff --git a/proto/stride/stakeibc/validator.proto b/proto/stride/stakeibc/validator.proto index 29b43dfecf..795992d772 100644 --- a/proto/stride/stakeibc/validator.proto +++ b/proto/stride/stakeibc/validator.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package stride.stakeibc; import "cosmos_proto/cosmos.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/stakeibc/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/stakeibc/types"; message Validator { string name = 1; diff --git a/proto/stride/vesting/tx.proto b/proto/stride/vesting/tx.proto index 7a4f3958c1..81a6804045 100644 --- a/proto/stride/vesting/tx.proto +++ b/proto/stride/vesting/tx.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package stride.vesting; -option go_package = "github.com/Stride-Labs/stride/v14/x/claim/vesting/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/claim/vesting/types"; // Msg defines the bank Msg service. service Msg {} diff --git a/proto/stride/vesting/vesting.proto b/proto/stride/vesting/vesting.proto index 616ec9bdad..80faa06b57 100644 --- a/proto/stride/vesting/vesting.proto +++ b/proto/stride/vesting/vesting.proto @@ -5,7 +5,7 @@ import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; import "cosmos/auth/v1beta1/auth.proto"; -option go_package = "github.com/Stride-Labs/stride/v14/x/claim/vesting/types"; +option go_package = "github.com/Stride-Labs/stride/v15/x/claim/vesting/types"; // BaseVestingAccount implements the VestingAccount interface. It contains all // the necessary fields needed for any vesting account implementation. diff --git a/scripts/protocgen.sh b/scripts/protocgen.sh index b3afd78b24..581becbea9 100644 --- a/scripts/protocgen.sh +++ b/scripts/protocgen.sh @@ -26,5 +26,5 @@ cd .. # move proto files to the right places # # Note: Proto files are suffixed with the current binary version. -cp -r github.com/Stride-Labs/stride/v14/* ./ +cp -r github.com/Stride-Labs/stride/v15/* ./ rm -rf github.com diff --git a/testutil/keeper/claim.go b/testutil/keeper/claim.go index a9750be90f..051c5b6202 100644 --- a/testutil/keeper/claim.go +++ b/testutil/keeper/claim.go @@ -7,8 +7,8 @@ import ( tmproto "github.com/cometbft/cometbft/proto/tendermint/types" sdk "github.com/cosmos/cosmos-sdk/types" - strideapp "github.com/Stride-Labs/stride/v14/app" - "github.com/Stride-Labs/stride/v14/x/claim/keeper" + strideapp "github.com/Stride-Labs/stride/v15/app" + "github.com/Stride-Labs/stride/v15/x/claim/keeper" ) func ClaimKeeper(t testing.TB) (*keeper.Keeper, sdk.Context) { diff --git a/testutil/keeper/epochs.go b/testutil/keeper/epochs.go index b3160684ba..88e5993d7f 100644 --- a/testutil/keeper/epochs.go +++ b/testutil/keeper/epochs.go @@ -7,8 +7,8 @@ import ( tmproto "github.com/cometbft/cometbft/proto/tendermint/types" sdk "github.com/cosmos/cosmos-sdk/types" - strideapp "github.com/Stride-Labs/stride/v14/app" - "github.com/Stride-Labs/stride/v14/x/epochs/keeper" + strideapp "github.com/Stride-Labs/stride/v15/app" + "github.com/Stride-Labs/stride/v15/x/epochs/keeper" ) func EpochsKeeper(t testing.TB) (*keeper.Keeper, sdk.Context) { diff --git a/testutil/keeper/icacallbacks.go b/testutil/keeper/icacallbacks.go index 14c4cbcefd..49ad438176 100644 --- a/testutil/keeper/icacallbacks.go +++ b/testutil/keeper/icacallbacks.go @@ -7,8 +7,8 @@ import ( tmproto "github.com/cometbft/cometbft/proto/tendermint/types" sdk "github.com/cosmos/cosmos-sdk/types" - strideapp "github.com/Stride-Labs/stride/v14/app" - "github.com/Stride-Labs/stride/v14/x/icacallbacks/keeper" + strideapp "github.com/Stride-Labs/stride/v15/app" + "github.com/Stride-Labs/stride/v15/x/icacallbacks/keeper" ) func IcacallbacksKeeper(t testing.TB) (*keeper.Keeper, sdk.Context) { diff --git a/testutil/keeper/interchainquery.go b/testutil/keeper/interchainquery.go index 471333b42b..9007e31151 100644 --- a/testutil/keeper/interchainquery.go +++ b/testutil/keeper/interchainquery.go @@ -7,8 +7,8 @@ import ( tmproto "github.com/cometbft/cometbft/proto/tendermint/types" sdk "github.com/cosmos/cosmos-sdk/types" - strideapp "github.com/Stride-Labs/stride/v14/app" - "github.com/Stride-Labs/stride/v14/x/interchainquery/keeper" + strideapp "github.com/Stride-Labs/stride/v15/app" + "github.com/Stride-Labs/stride/v15/x/interchainquery/keeper" ) func InterchainqueryKeeper(t testing.TB) (*keeper.Keeper, sdk.Context) { diff --git a/testutil/keeper/records.go b/testutil/keeper/records.go index 16498c2e14..0e318b07e4 100644 --- a/testutil/keeper/records.go +++ b/testutil/keeper/records.go @@ -7,8 +7,8 @@ import ( tmproto "github.com/cometbft/cometbft/proto/tendermint/types" sdk "github.com/cosmos/cosmos-sdk/types" - strideapp "github.com/Stride-Labs/stride/v14/app" - "github.com/Stride-Labs/stride/v14/x/records/keeper" + strideapp "github.com/Stride-Labs/stride/v15/app" + "github.com/Stride-Labs/stride/v15/x/records/keeper" ) func RecordsKeeper(t testing.TB) (*keeper.Keeper, sdk.Context) { diff --git a/testutil/keeper/stakeibc.go b/testutil/keeper/stakeibc.go index 7ecb2f521a..5e108bc983 100644 --- a/testutil/keeper/stakeibc.go +++ b/testutil/keeper/stakeibc.go @@ -7,8 +7,8 @@ import ( tmproto "github.com/cometbft/cometbft/proto/tendermint/types" sdk "github.com/cosmos/cosmos-sdk/types" - strideapp "github.com/Stride-Labs/stride/v14/app" - "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" + strideapp "github.com/Stride-Labs/stride/v15/app" + "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" ) func StakeibcKeeper(t testing.TB) (*keeper.Keeper, sdk.Context) { diff --git a/testutil/network/network.go b/testutil/network/network.go index 1e202f4d73..41acc324b8 100644 --- a/testutil/network/network.go +++ b/testutil/network/network.go @@ -25,8 +25,8 @@ import ( genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types" ccvconsumertypes "github.com/cosmos/interchain-security/v3/x/ccv/consumer/types" - "github.com/Stride-Labs/stride/v14/app" - testutil "github.com/Stride-Labs/stride/v14/testutil" + "github.com/Stride-Labs/stride/v15/app" + testutil "github.com/Stride-Labs/stride/v15/testutil" ) type ( diff --git a/utils/cache_ctx_test.go b/utils/cache_ctx_test.go index b4d2bd028e..5c36aa609c 100644 --- a/utils/cache_ctx_test.go +++ b/utils/cache_ctx_test.go @@ -4,7 +4,7 @@ import ( "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/utils" + "github.com/Stride-Labs/stride/v15/utils" ) var expectedOutOfGasError = types.ErrorOutOfGas{Descriptor: "my func"} diff --git a/utils/module_account_test.go b/utils/module_account_test.go index c6b7ebbc5d..c54734bb58 100644 --- a/utils/module_account_test.go +++ b/utils/module_account_test.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/address" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/Stride-Labs/stride/v14/utils" + "github.com/Stride-Labs/stride/v15/utils" ) func (s *UtilsTestSuite) TestCreateModuleAccount() { diff --git a/utils/utils.go b/utils/utils.go index 0ce82b7b3f..48a9f9de97 100644 --- a/utils/utils.go +++ b/utils/utils.go @@ -17,9 +17,9 @@ import ( channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - config "github.com/Stride-Labs/stride/v14/cmd/strided/config" - icacallbacktypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" - recordstypes "github.com/Stride-Labs/stride/v14/x/records/types" + config "github.com/Stride-Labs/stride/v15/cmd/strided/config" + icacallbacktypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" + recordstypes "github.com/Stride-Labs/stride/v15/x/records/types" ) func FilterDepositRecords(arr []recordstypes.DepositRecord, condition func(recordstypes.DepositRecord) bool) (ret []recordstypes.DepositRecord) { diff --git a/utils/utils_test.go b/utils/utils_test.go index b1c1cd1be8..6eac596ae4 100644 --- a/utils/utils_test.go +++ b/utils/utils_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/suite" - "github.com/Stride-Labs/stride/v14/app/apptesting" + "github.com/Stride-Labs/stride/v15/app/apptesting" ) type UtilsTestSuite struct { diff --git a/x/autopilot/client/cli/query.go b/x/autopilot/client/cli/query.go index 17de7873fa..db1414954e 100644 --- a/x/autopilot/client/cli/query.go +++ b/x/autopilot/client/cli/query.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" - "github.com/Stride-Labs/stride/v14/x/autopilot/types" + "github.com/Stride-Labs/stride/v15/x/autopilot/types" "github.com/cosmos/cosmos-sdk/client/flags" ) diff --git a/x/autopilot/genesis.go b/x/autopilot/genesis.go index bd17e02671..a662446829 100644 --- a/x/autopilot/genesis.go +++ b/x/autopilot/genesis.go @@ -3,8 +3,8 @@ package autopilot import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/autopilot/keeper" - "github.com/Stride-Labs/stride/v14/x/autopilot/types" + "github.com/Stride-Labs/stride/v15/x/autopilot/keeper" + "github.com/Stride-Labs/stride/v15/x/autopilot/types" ) // InitGenesis initializes the capability module's state from a provided genesis diff --git a/x/autopilot/genesis_test.go b/x/autopilot/genesis_test.go index ee0d75879c..602c02ded1 100644 --- a/x/autopilot/genesis_test.go +++ b/x/autopilot/genesis_test.go @@ -5,9 +5,9 @@ import ( "github.com/stretchr/testify/require" - "github.com/Stride-Labs/stride/v14/app/apptesting" - "github.com/Stride-Labs/stride/v14/x/autopilot" - "github.com/Stride-Labs/stride/v14/x/autopilot/types" + "github.com/Stride-Labs/stride/v15/app/apptesting" + "github.com/Stride-Labs/stride/v15/x/autopilot" + "github.com/Stride-Labs/stride/v15/x/autopilot/types" ) func TestGenesis(t *testing.T) { diff --git a/x/autopilot/handler.go b/x/autopilot/handler.go index a706b60f0c..537398936a 100644 --- a/x/autopilot/handler.go +++ b/x/autopilot/handler.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/Stride-Labs/stride/v14/x/autopilot/keeper" - "github.com/Stride-Labs/stride/v14/x/autopilot/types" + "github.com/Stride-Labs/stride/v15/x/autopilot/keeper" + "github.com/Stride-Labs/stride/v15/x/autopilot/types" ) // NewHandler returns autopilot module messages diff --git a/x/autopilot/keeper/airdrop.go b/x/autopilot/keeper/airdrop.go index d59f5eccfe..735629fc9c 100644 --- a/x/autopilot/keeper/airdrop.go +++ b/x/autopilot/keeper/airdrop.go @@ -11,10 +11,10 @@ import ( transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - "github.com/Stride-Labs/stride/v14/utils" - "github.com/Stride-Labs/stride/v14/x/autopilot/types" - claimtypes "github.com/Stride-Labs/stride/v14/x/claim/types" - stakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/utils" + "github.com/Stride-Labs/stride/v15/x/autopilot/types" + claimtypes "github.com/Stride-Labs/stride/v15/x/claim/types" + stakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func (k Keeper) TryUpdateAirdropClaim( diff --git a/x/autopilot/keeper/airdrop_test.go b/x/autopilot/keeper/airdrop_test.go index d146d67c89..7f528742b2 100644 --- a/x/autopilot/keeper/airdrop_test.go +++ b/x/autopilot/keeper/airdrop_test.go @@ -12,11 +12,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/utils" - "github.com/Stride-Labs/stride/v14/x/autopilot" - "github.com/Stride-Labs/stride/v14/x/autopilot/types" - claimtypes "github.com/Stride-Labs/stride/v14/x/claim/types" - stakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/utils" + "github.com/Stride-Labs/stride/v15/x/autopilot" + "github.com/Stride-Labs/stride/v15/x/autopilot/types" + claimtypes "github.com/Stride-Labs/stride/v15/x/claim/types" + stakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) // TODO: Separate out tests cases that are not necessarily Claim or Stakeibc related, diff --git a/x/autopilot/keeper/grpc_query_params.go b/x/autopilot/keeper/grpc_query_params.go index 721486d4dd..5df0fbd626 100644 --- a/x/autopilot/keeper/grpc_query_params.go +++ b/x/autopilot/keeper/grpc_query_params.go @@ -7,7 +7,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/Stride-Labs/stride/v14/x/autopilot/types" + "github.com/Stride-Labs/stride/v15/x/autopilot/types" ) func (k Keeper) Params(c context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error) { diff --git a/x/autopilot/keeper/grpc_query_params_test.go b/x/autopilot/keeper/grpc_query_params_test.go index ad2af8c12a..c0078fc987 100644 --- a/x/autopilot/keeper/grpc_query_params_test.go +++ b/x/autopilot/keeper/grpc_query_params_test.go @@ -3,7 +3,7 @@ package keeper_test import ( "context" - "github.com/Stride-Labs/stride/v14/x/autopilot/types" + "github.com/Stride-Labs/stride/v15/x/autopilot/types" ) func (s *KeeperTestSuite) TestParamsQuery() { diff --git a/x/autopilot/keeper/keeper.go b/x/autopilot/keeper/keeper.go index 9fc4a00581..a3f2a8ff47 100644 --- a/x/autopilot/keeper/keeper.go +++ b/x/autopilot/keeper/keeper.go @@ -10,9 +10,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/Stride-Labs/stride/v14/x/autopilot/types" - claimkeeper "github.com/Stride-Labs/stride/v14/x/claim/keeper" - stakeibckeeper "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" + "github.com/Stride-Labs/stride/v15/x/autopilot/types" + claimkeeper "github.com/Stride-Labs/stride/v15/x/claim/keeper" + stakeibckeeper "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" ) type ( diff --git a/x/autopilot/keeper/keeper_test.go b/x/autopilot/keeper/keeper_test.go index 2d3d309012..e3240652ca 100644 --- a/x/autopilot/keeper/keeper_test.go +++ b/x/autopilot/keeper/keeper_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/suite" - "github.com/Stride-Labs/stride/v14/app/apptesting" - "github.com/Stride-Labs/stride/v14/x/autopilot/types" + "github.com/Stride-Labs/stride/v15/app/apptesting" + "github.com/Stride-Labs/stride/v15/x/autopilot/types" ) type KeeperTestSuite struct { diff --git a/x/autopilot/keeper/liquidstake.go b/x/autopilot/keeper/liquidstake.go index e33dfb754c..6adc680471 100644 --- a/x/autopilot/keeper/liquidstake.go +++ b/x/autopilot/keeper/liquidstake.go @@ -11,9 +11,9 @@ import ( transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - "github.com/Stride-Labs/stride/v14/x/autopilot/types" - stakeibckeeper "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" - stakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/autopilot/types" + stakeibckeeper "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" + stakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func (k Keeper) TryLiquidStaking( diff --git a/x/autopilot/keeper/liquidstake_test.go b/x/autopilot/keeper/liquidstake_test.go index ee56b05fcf..efbc4de0a4 100644 --- a/x/autopilot/keeper/liquidstake_test.go +++ b/x/autopilot/keeper/liquidstake_test.go @@ -10,16 +10,16 @@ import ( clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - recordsmodule "github.com/Stride-Labs/stride/v14/x/records" + recordsmodule "github.com/Stride-Labs/stride/v15/x/records" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/autopilot" - "github.com/Stride-Labs/stride/v14/x/autopilot/types" - epochtypes "github.com/Stride-Labs/stride/v14/x/epochs/types" - minttypes "github.com/Stride-Labs/stride/v14/x/mint/types" - recordstypes "github.com/Stride-Labs/stride/v14/x/records/types" - stakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/autopilot" + "github.com/Stride-Labs/stride/v15/x/autopilot/types" + epochtypes "github.com/Stride-Labs/stride/v15/x/epochs/types" + minttypes "github.com/Stride-Labs/stride/v15/x/mint/types" + recordstypes "github.com/Stride-Labs/stride/v15/x/records/types" + stakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func getStakeibcPacketMetadata(address, action string) string { diff --git a/x/autopilot/keeper/params.go b/x/autopilot/keeper/params.go index 8383931403..61f2881e2e 100644 --- a/x/autopilot/keeper/params.go +++ b/x/autopilot/keeper/params.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/autopilot/types" + "github.com/Stride-Labs/stride/v15/x/autopilot/types" ) // GetParams get all parameters as types.Params diff --git a/x/autopilot/keeper/params_test.go b/x/autopilot/keeper/params_test.go index fb3694a33a..f00cdf9b72 100644 --- a/x/autopilot/keeper/params_test.go +++ b/x/autopilot/keeper/params_test.go @@ -1,7 +1,7 @@ package keeper_test import ( - "github.com/Stride-Labs/stride/v14/x/autopilot/types" + "github.com/Stride-Labs/stride/v15/x/autopilot/types" ) func (s *KeeperTestSuite) TestGetParams() { diff --git a/x/autopilot/module.go b/x/autopilot/module.go index 757a48ba38..45458052f1 100644 --- a/x/autopilot/module.go +++ b/x/autopilot/module.go @@ -18,9 +18,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/Stride-Labs/stride/v14/x/autopilot/client/cli" - "github.com/Stride-Labs/stride/v14/x/autopilot/keeper" - "github.com/Stride-Labs/stride/v14/x/autopilot/types" + "github.com/Stride-Labs/stride/v15/x/autopilot/client/cli" + "github.com/Stride-Labs/stride/v15/x/autopilot/keeper" + "github.com/Stride-Labs/stride/v15/x/autopilot/types" ) var ( diff --git a/x/autopilot/module_ibc.go b/x/autopilot/module_ibc.go index 941f5fa3a2..3c2dadb498 100644 --- a/x/autopilot/module_ibc.go +++ b/x/autopilot/module_ibc.go @@ -12,8 +12,8 @@ import ( channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" - "github.com/Stride-Labs/stride/v14/x/autopilot/keeper" - "github.com/Stride-Labs/stride/v14/x/autopilot/types" + "github.com/Stride-Labs/stride/v15/x/autopilot/keeper" + "github.com/Stride-Labs/stride/v15/x/autopilot/types" ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" ) diff --git a/x/autopilot/types/genesis.pb.go b/x/autopilot/types/genesis.pb.go index 748b928f19..7fac063389 100644 --- a/x/autopilot/types/genesis.pb.go +++ b/x/autopilot/types/genesis.pb.go @@ -88,8 +88,8 @@ var fileDescriptor_a7e087b21fd12e65 = []byte{ 0xbb, 0x93, 0xef, 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, 0x24, 0xc7, 0x38, 0xe1, 0xb1, 0x1c, 0xc3, 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0x19, 0xa7, 0x67, 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0x07, 0x83, 0x0d, 0xd7, 0xf5, 0x49, 0x4c, - 0x2a, 0xd6, 0x87, 0x3a, 0xb4, 0xcc, 0xd0, 0x44, 0xbf, 0x02, 0xc9, 0xb9, 0x25, 0x95, 0x05, 0xa9, - 0xc5, 0x49, 0x6c, 0x60, 0xe7, 0x1a, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0xb1, 0x6e, 0xe6, 0xa7, + 0x2a, 0xd6, 0x87, 0x3a, 0xb4, 0xcc, 0xd0, 0x54, 0xbf, 0x02, 0xc9, 0xb9, 0x25, 0x95, 0x05, 0xa9, + 0xc5, 0x49, 0x6c, 0x60, 0xe7, 0x1a, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0xf0, 0x75, 0x6a, 0xc9, 0x17, 0x01, 0x00, 0x00, } diff --git a/x/autopilot/types/genesis_test.go b/x/autopilot/types/genesis_test.go index 5bf2f2db33..d98e9f478d 100644 --- a/x/autopilot/types/genesis_test.go +++ b/x/autopilot/types/genesis_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/Stride-Labs/stride/v14/x/autopilot/types" + "github.com/Stride-Labs/stride/v15/x/autopilot/types" ) func TestGenesisState_Validate(t *testing.T) { diff --git a/x/autopilot/types/params.pb.go b/x/autopilot/types/params.pb.go index 36ae63ec15..533836a674 100644 --- a/x/autopilot/types/params.pb.go +++ b/x/autopilot/types/params.pb.go @@ -96,8 +96,8 @@ var fileDescriptor_b0b993e9f5195319 = []byte{ 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, 0xe1, 0xc2, 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0x8c, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0x83, 0xc1, 0x0e, 0xd5, 0xf5, 0x49, 0x4c, 0x2a, 0xd6, 0x87, 0xfa, - 0xa9, 0xcc, 0xd0, 0x44, 0xbf, 0x02, 0xc9, 0x67, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0x60, - 0x17, 0x1b, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0x75, 0x04, 0x55, 0x22, 0xfa, 0x00, 0x00, 0x00, + 0xa9, 0xcc, 0xd0, 0x54, 0xbf, 0x02, 0xc9, 0x67, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0x60, + 0x17, 0x1b, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0x34, 0x1f, 0xd9, 0x4c, 0xfa, 0x00, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/autopilot/types/parser_test.go b/x/autopilot/types/parser_test.go index b647d06ae4..b7c9fa8e18 100644 --- a/x/autopilot/types/parser_test.go +++ b/x/autopilot/types/parser_test.go @@ -6,8 +6,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/Stride-Labs/stride/v14/app/apptesting" - "github.com/Stride-Labs/stride/v14/x/autopilot/types" + "github.com/Stride-Labs/stride/v15/app/apptesting" + "github.com/Stride-Labs/stride/v15/x/autopilot/types" ) func init() { diff --git a/x/autopilot/types/query.pb.go b/x/autopilot/types/query.pb.go index 80b9c7de47..fe9e7f13f4 100644 --- a/x/autopilot/types/query.pb.go +++ b/x/autopilot/types/query.pb.go @@ -136,9 +136,9 @@ var fileDescriptor_1dd160550c308365 = []byte{ 0xfd, 0x60, 0xb0, 0x72, 0x5d, 0x9f, 0xc4, 0xa4, 0x62, 0x7d, 0x1c, 0x5e, 0x77, 0xf2, 0x3d, 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, 0xe3, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, - 0xbd, 0xe4, 0xfc, 0x5c, 0x6c, 0x26, 0x95, 0x19, 0x9a, 0xe8, 0x57, 0x20, 0x99, 0x57, 0x52, 0x59, - 0x90, 0x5a, 0x9c, 0xc4, 0x06, 0x0e, 0x4a, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0x21, 0xcc, - 0x17, 0x49, 0xcf, 0x01, 0x00, 0x00, + 0xbd, 0xe4, 0xfc, 0x5c, 0x6c, 0x26, 0x95, 0x19, 0x9a, 0xea, 0x57, 0x20, 0x99, 0x57, 0x52, 0x59, + 0x90, 0x5a, 0x9c, 0xc4, 0x06, 0x0e, 0x4a, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0x60, 0xd7, + 0x9b, 0x27, 0xcf, 0x01, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/claim/client/cli/cli_test.go b/x/claim/client/cli/cli_test.go index 3a08a10396..9535866495 100644 --- a/x/claim/client/cli/cli_test.go +++ b/x/claim/client/cli/cli_test.go @@ -14,23 +14,23 @@ import ( clitestutil "github.com/cosmos/cosmos-sdk/testutil/cli" - strideclitestutil "github.com/Stride-Labs/stride/v14/testutil/cli" + strideclitestutil "github.com/Stride-Labs/stride/v15/testutil/cli" - "github.com/Stride-Labs/stride/v14/testutil/network" + "github.com/Stride-Labs/stride/v15/testutil/network" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/suite" tmcli "github.com/cometbft/cometbft/libs/cli" - "github.com/Stride-Labs/stride/v14/x/claim/client/cli" + "github.com/Stride-Labs/stride/v15/x/claim/client/cli" sdkmath "cosmossdk.io/math" - "github.com/Stride-Labs/stride/v14/app" - cmdcfg "github.com/Stride-Labs/stride/v14/cmd/strided/config" - "github.com/Stride-Labs/stride/v14/x/claim/types" - claimtypes "github.com/Stride-Labs/stride/v14/x/claim/types" + "github.com/Stride-Labs/stride/v15/app" + cmdcfg "github.com/Stride-Labs/stride/v15/cmd/strided/config" + "github.com/Stride-Labs/stride/v15/x/claim/types" + claimtypes "github.com/Stride-Labs/stride/v15/x/claim/types" ) var addr1 sdk.AccAddress diff --git a/x/claim/client/cli/query.go b/x/claim/client/cli/query.go index 55e82581bf..206c4d7754 100644 --- a/x/claim/client/cli/query.go +++ b/x/claim/client/cli/query.go @@ -10,7 +10,7 @@ import ( "github.com/cosmos/cosmos-sdk/version" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/claim/types" + "github.com/Stride-Labs/stride/v15/x/claim/types" ) // GetQueryCmd returns the cli query commands for this module diff --git a/x/claim/client/cli/tx.go b/x/claim/client/cli/tx.go index 8a6c96e832..fcf50248c0 100644 --- a/x/claim/client/cli/tx.go +++ b/x/claim/client/cli/tx.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/claim/types" + "github.com/Stride-Labs/stride/v15/x/claim/types" ) // GetTxCmd returns the transaction commands for this module diff --git a/x/claim/client/cli/tx_claim_free_amount.go b/x/claim/client/cli/tx_claim_free_amount.go index b9b7fa49f4..b6f35d19d1 100644 --- a/x/claim/client/cli/tx_claim_free_amount.go +++ b/x/claim/client/cli/tx_claim_free_amount.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/tx" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/claim/types" + "github.com/Stride-Labs/stride/v15/x/claim/types" ) func CmdClaimFreeAmount() *cobra.Command { diff --git a/x/claim/client/cli/tx_create_airdrop.go b/x/claim/client/cli/tx_create_airdrop.go index cbaee23274..f2a33480eb 100644 --- a/x/claim/client/cli/tx_create_airdrop.go +++ b/x/claim/client/cli/tx_create_airdrop.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/tx" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/claim/types" + "github.com/Stride-Labs/stride/v15/x/claim/types" ) func CmdCreateAirdrop() *cobra.Command { diff --git a/x/claim/client/cli/tx_delete_airdrop.go b/x/claim/client/cli/tx_delete_airdrop.go index 34c3ed94ab..2fd34e5866 100644 --- a/x/claim/client/cli/tx_delete_airdrop.go +++ b/x/claim/client/cli/tx_delete_airdrop.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/tx" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/claim/types" + "github.com/Stride-Labs/stride/v15/x/claim/types" ) func CmdDeleteAirdrop() *cobra.Command { diff --git a/x/claim/client/cli/tx_set_airdrop_allocations.go b/x/claim/client/cli/tx_set_airdrop_allocations.go index 7227f980ce..9e557c9b42 100644 --- a/x/claim/client/cli/tx_set_airdrop_allocations.go +++ b/x/claim/client/cli/tx_set_airdrop_allocations.go @@ -10,7 +10,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/claim/types" + "github.com/Stride-Labs/stride/v15/x/claim/types" ) func CmdSetAirdropAllocations() *cobra.Command { diff --git a/x/claim/genesis_test.go b/x/claim/genesis_test.go index 3053af0488..bea159e124 100644 --- a/x/claim/genesis_test.go +++ b/x/claim/genesis_test.go @@ -9,9 +9,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - keepertest "github.com/Stride-Labs/stride/v14/testutil/keeper" - "github.com/Stride-Labs/stride/v14/testutil/nullify" - "github.com/Stride-Labs/stride/v14/x/claim/types" + keepertest "github.com/Stride-Labs/stride/v15/testutil/keeper" + "github.com/Stride-Labs/stride/v15/testutil/nullify" + "github.com/Stride-Labs/stride/v15/x/claim/types" ) func TestGenesis(t *testing.T) { diff --git a/x/claim/handler.go b/x/claim/handler.go index ddec768243..ba2c23806a 100644 --- a/x/claim/handler.go +++ b/x/claim/handler.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/Stride-Labs/stride/v14/x/claim/keeper" - "github.com/Stride-Labs/stride/v14/x/claim/types" + "github.com/Stride-Labs/stride/v15/x/claim/keeper" + "github.com/Stride-Labs/stride/v15/x/claim/types" ) // NewHandler returns claim module messages diff --git a/x/claim/keeper/claim.go b/x/claim/keeper/claim.go index 14d7be0eaa..be5cf506bc 100644 --- a/x/claim/keeper/claim.go +++ b/x/claim/keeper/claim.go @@ -14,10 +14,10 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" "github.com/cosmos/gogoproto/proto" - "github.com/Stride-Labs/stride/v14/utils" - "github.com/Stride-Labs/stride/v14/x/claim/types" - vestingtypes "github.com/Stride-Labs/stride/v14/x/claim/vesting/types" - epochstypes "github.com/Stride-Labs/stride/v14/x/epochs/types" + "github.com/Stride-Labs/stride/v15/utils" + "github.com/Stride-Labs/stride/v15/x/claim/types" + vestingtypes "github.com/Stride-Labs/stride/v15/x/claim/vesting/types" + epochstypes "github.com/Stride-Labs/stride/v15/x/epochs/types" ) func (k Keeper) LoadAllocationData(ctx sdk.Context, allocationData string) bool { diff --git a/x/claim/keeper/claim_test.go b/x/claim/keeper/claim_test.go index 5c6345860e..7d883d6643 100644 --- a/x/claim/keeper/claim_test.go +++ b/x/claim/keeper/claim_test.go @@ -11,12 +11,12 @@ import ( vestingtypes "github.com/cosmos/cosmos-sdk/x/auth/vesting/types" - "github.com/Stride-Labs/stride/v14/app/apptesting" - "github.com/Stride-Labs/stride/v14/utils" - claimkeeper "github.com/Stride-Labs/stride/v14/x/claim/keeper" + "github.com/Stride-Labs/stride/v15/app/apptesting" + "github.com/Stride-Labs/stride/v15/utils" + claimkeeper "github.com/Stride-Labs/stride/v15/x/claim/keeper" - "github.com/Stride-Labs/stride/v14/x/claim/types" - stridevestingtypes "github.com/Stride-Labs/stride/v14/x/claim/vesting/types" + "github.com/Stride-Labs/stride/v15/x/claim/types" + stridevestingtypes "github.com/Stride-Labs/stride/v15/x/claim/vesting/types" ) // Test functionality for loading allocation data(csv) diff --git a/x/claim/keeper/genesis.go b/x/claim/keeper/genesis.go index 25c916f340..8743967e70 100644 --- a/x/claim/keeper/genesis.go +++ b/x/claim/keeper/genesis.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/claim/types" + "github.com/Stride-Labs/stride/v15/x/claim/types" ) // InitGenesis initializes the capability module's state from a provided genesis diff --git a/x/claim/keeper/grpc_query.go b/x/claim/keeper/grpc_query.go index b1f95320b3..6efc959582 100644 --- a/x/claim/keeper/grpc_query.go +++ b/x/claim/keeper/grpc_query.go @@ -7,7 +7,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/Stride-Labs/stride/v14/x/claim/types" + "github.com/Stride-Labs/stride/v15/x/claim/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/claim/keeper/hooks.go b/x/claim/keeper/hooks.go index 696ee7a709..bc978fdc49 100644 --- a/x/claim/keeper/hooks.go +++ b/x/claim/keeper/hooks.go @@ -7,10 +7,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - epochstypes "github.com/Stride-Labs/stride/v14/x/epochs/types" - stakingibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + epochstypes "github.com/Stride-Labs/stride/v15/x/epochs/types" + stakingibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" - "github.com/Stride-Labs/stride/v14/x/claim/types" + "github.com/Stride-Labs/stride/v15/x/claim/types" ) func (k Keeper) AfterDelegationModified(ctx sdk.Context, delAddr sdk.AccAddress, valAddr sdk.ValAddress) error { diff --git a/x/claim/keeper/hooks_test.go b/x/claim/keeper/hooks_test.go index 4a5c3a3dd8..1a40135857 100644 --- a/x/claim/keeper/hooks_test.go +++ b/x/claim/keeper/hooks_test.go @@ -5,9 +5,9 @@ import ( sdkmath "cosmossdk.io/math" - "github.com/Stride-Labs/stride/v14/app/apptesting" - "github.com/Stride-Labs/stride/v14/x/claim/types" - epochtypes "github.com/Stride-Labs/stride/v14/x/epochs/types" + "github.com/Stride-Labs/stride/v15/app/apptesting" + "github.com/Stride-Labs/stride/v15/x/claim/types" + epochtypes "github.com/Stride-Labs/stride/v15/x/epochs/types" ) func (s *KeeperTestSuite) TestAfterEpochEnd() { diff --git a/x/claim/keeper/keeper.go b/x/claim/keeper/keeper.go index 9cbc6f6aff..ba11c0430d 100644 --- a/x/claim/keeper/keeper.go +++ b/x/claim/keeper/keeper.go @@ -9,7 +9,7 @@ import ( storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/claim/types" + "github.com/Stride-Labs/stride/v15/x/claim/types" ) // Keeper struct diff --git a/x/claim/keeper/keeper_test.go b/x/claim/keeper/keeper_test.go index d9bae83d4f..6c3aab25da 100644 --- a/x/claim/keeper/keeper_test.go +++ b/x/claim/keeper/keeper_test.go @@ -12,9 +12,9 @@ import ( sdkmath "cosmossdk.io/math" - "github.com/Stride-Labs/stride/v14/app" - "github.com/Stride-Labs/stride/v14/x/claim/types" - minttypes "github.com/Stride-Labs/stride/v14/x/mint/types" + "github.com/Stride-Labs/stride/v15/app" + "github.com/Stride-Labs/stride/v15/x/claim/types" + minttypes "github.com/Stride-Labs/stride/v15/x/mint/types" ) type KeeperTestSuite struct { diff --git a/x/claim/keeper/msg_server.go b/x/claim/keeper/msg_server.go index 4cc95a46d9..7a27342059 100644 --- a/x/claim/keeper/msg_server.go +++ b/x/claim/keeper/msg_server.go @@ -8,7 +8,7 @@ import ( errorsmod "cosmossdk.io/errors" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/Stride-Labs/stride/v14/x/claim/types" + "github.com/Stride-Labs/stride/v15/x/claim/types" ) type msgServer struct { diff --git a/x/claim/keeper/msg_server_test.go b/x/claim/keeper/msg_server_test.go index cd8ca16281..0fb8f554c2 100644 --- a/x/claim/keeper/msg_server_test.go +++ b/x/claim/keeper/msg_server_test.go @@ -4,8 +4,8 @@ import ( "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/claim/keeper" - "github.com/Stride-Labs/stride/v14/x/claim/types" + "github.com/Stride-Labs/stride/v15/x/claim/keeper" + "github.com/Stride-Labs/stride/v15/x/claim/types" ) func (suite *KeeperTestSuite) TestSetAirdropAllocationsForMultiAirdrops() { diff --git a/x/claim/keeper/params.go b/x/claim/keeper/params.go index 3cacf5ae78..9ab0b4fc84 100644 --- a/x/claim/keeper/params.go +++ b/x/claim/keeper/params.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/claim/types" + "github.com/Stride-Labs/stride/v15/x/claim/types" ) // GetParams get params diff --git a/x/claim/migrations/v2/convert.go b/x/claim/migrations/v2/convert.go index 80fe5c7a44..330650481c 100644 --- a/x/claim/migrations/v2/convert.go +++ b/x/claim/migrations/v2/convert.go @@ -3,8 +3,8 @@ package v2 import ( sdkmath "cosmossdk.io/math" - oldclaimtypes "github.com/Stride-Labs/stride/v14/x/claim/migrations/v2/types" - claimtypes "github.com/Stride-Labs/stride/v14/x/claim/types" + oldclaimtypes "github.com/Stride-Labs/stride/v15/x/claim/migrations/v2/types" + claimtypes "github.com/Stride-Labs/stride/v15/x/claim/types" ) func convertToNewAirdrop(oldAirdrop oldclaimtypes.Airdrop) claimtypes.Airdrop { diff --git a/x/claim/migrations/v2/convert_test.go b/x/claim/migrations/v2/convert_test.go index 6206a95d98..9a694c630c 100644 --- a/x/claim/migrations/v2/convert_test.go +++ b/x/claim/migrations/v2/convert_test.go @@ -10,8 +10,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - oldclaimtypes "github.com/Stride-Labs/stride/v14/x/claim/migrations/v2/types" - claimtypes "github.com/Stride-Labs/stride/v14/x/claim/types" + oldclaimtypes "github.com/Stride-Labs/stride/v15/x/claim/migrations/v2/types" + claimtypes "github.com/Stride-Labs/stride/v15/x/claim/types" ) func TestConvertToNewAirdrop(t *testing.T) { diff --git a/x/claim/migrations/v2/migrations.go b/x/claim/migrations/v2/migrations.go index fac6c458d6..fed1c41de9 100644 --- a/x/claim/migrations/v2/migrations.go +++ b/x/claim/migrations/v2/migrations.go @@ -7,8 +7,8 @@ import ( errorsmod "cosmossdk.io/errors" - oldclaimtypes "github.com/Stride-Labs/stride/v14/x/claim/migrations/v2/types" - claimtypes "github.com/Stride-Labs/stride/v14/x/claim/types" + oldclaimtypes "github.com/Stride-Labs/stride/v15/x/claim/migrations/v2/types" + claimtypes "github.com/Stride-Labs/stride/v15/x/claim/types" ) func migrateClaimParams(store sdk.KVStore, cdc codec.Codec) error { diff --git a/x/claim/module.go b/x/claim/module.go index e81e4e1832..e3f98c8455 100644 --- a/x/claim/module.go +++ b/x/claim/module.go @@ -16,9 +16,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/Stride-Labs/stride/v14/x/claim/client/cli" - "github.com/Stride-Labs/stride/v14/x/claim/keeper" - "github.com/Stride-Labs/stride/v14/x/claim/types" + "github.com/Stride-Labs/stride/v15/x/claim/client/cli" + "github.com/Stride-Labs/stride/v15/x/claim/keeper" + "github.com/Stride-Labs/stride/v15/x/claim/types" ) var ( diff --git a/x/claim/types/claim.pb.go b/x/claim/types/claim.pb.go index 69ac0afed3..d66f9b99f9 100644 --- a/x/claim/types/claim.pb.go +++ b/x/claim/types/claim.pb.go @@ -130,29 +130,29 @@ var fileDescriptor_b4747d999b9dc0da = []byte{ // 394 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x64, 0x91, 0x4f, 0xce, 0xd2, 0x40, 0x00, 0xc5, 0x5b, 0x20, 0xa8, 0x83, 0x0a, 0x8e, 0x1a, 0x0a, 0xc6, 0x96, 0x74, 0x61, 0x88, 0x91, - 0x36, 0x46, 0x57, 0x6e, 0x4c, 0x81, 0x62, 0x1a, 0x1b, 0x8d, 0x05, 0x63, 0xe2, 0xa6, 0x29, 0x9d, - 0xb1, 0x4c, 0xa4, 0x4c, 0xd3, 0x19, 0xff, 0x70, 0x03, 0x97, 0xde, 0xc1, 0x9d, 0x27, 0x61, 0xc9, - 0xd2, 0xb8, 0x68, 0x0c, 0xdc, 0xa0, 0x27, 0x30, 0x4c, 0x07, 0x63, 0xbe, 0x6f, 0xd3, 0x36, 0xbf, - 0xdf, 0xcb, 0x4b, 0x67, 0x1e, 0xd0, 0x18, 0xcf, 0x09, 0xc2, 0x76, 0xbc, 0x8e, 0x48, 0x5a, 0x3d, - 0xad, 0x2c, 0xa7, 0x9c, 0xc2, 0xeb, 0x95, 0xb1, 0x04, 0xeb, 0xdf, 0x49, 0x68, 0x42, 0x85, 0xb0, - 0x4f, 0x5f, 0x55, 0xc6, 0xfc, 0x59, 0x03, 0xad, 0xc9, 0xc9, 0x07, 0x38, 0xa6, 0x39, 0x82, 0x3e, - 0x80, 0x11, 0xc9, 0x51, 0x4e, 0xb3, 0x90, 0x20, 0xbc, 0xe1, 0xe4, 0x03, 0xc1, 0xb9, 0xa6, 0x0e, - 0xd4, 0xe1, 0xb5, 0xf1, 0xfd, 0xb2, 0x30, 0x7a, 0xdb, 0x28, 0x5d, 0x3f, 0x33, 0x2f, 0x67, 0xcc, - 0xe0, 0x96, 0x84, 0xde, 0x3f, 0x06, 0x1f, 0x81, 0x2b, 0x11, 0x42, 0x39, 0x66, 0x4c, 0xab, 0x89, - 0x0a, 0x58, 0x16, 0xc6, 0x4d, 0x59, 0x51, 0x09, 0x33, 0x38, 0x47, 0xe0, 0x3b, 0xd0, 0xfc, 0x82, - 0x49, 0xb2, 0xe2, 0x5a, 0x5d, 0x84, 0x9f, 0xef, 0x0a, 0x43, 0xf9, 0x5d, 0x18, 0x0f, 0x12, 0xc2, - 0x57, 0x9f, 0x96, 0x56, 0x4c, 0x53, 0x3b, 0xa6, 0x2c, 0xa5, 0x4c, 0xbe, 0x46, 0x0c, 0x7d, 0xb4, - 0xf9, 0x36, 0xc3, 0xcc, 0x9a, 0xe2, 0xb8, 0x2c, 0x8c, 0x1b, 0x55, 0x75, 0xd5, 0x62, 0x06, 0xb2, - 0x0e, 0xce, 0x40, 0x27, 0x8a, 0x39, 0xa1, 0x9b, 0x30, 0xa6, 0x69, 0xb6, 0xc6, 0x1c, 0x23, 0xad, - 0x31, 0xa8, 0x0f, 0xaf, 0x8e, 0xef, 0x95, 0x85, 0xd1, 0x95, 0xff, 0x73, 0x21, 0x61, 0x06, 0xed, - 0x0a, 0x4d, 0xce, 0xe4, 0xe1, 0x1c, 0x34, 0x1d, 0x81, 0x60, 0x1b, 0xb4, 0x9c, 0xc9, 0xc2, 0x7b, - 0xfd, 0x2a, 0x9c, 0x05, 0xae, 0xdb, 0x51, 0x60, 0x17, 0xdc, 0x96, 0xc0, 0xf7, 0xde, 0xbc, 0xf5, - 0xa6, 0xe1, 0x7c, 0xe1, 0xbc, 0x74, 0x3b, 0x2a, 0xec, 0x81, 0xbb, 0x52, 0x4c, 0x5d, 0xdf, 0x7d, - 0xe1, 0x2c, 0x5c, 0xa9, 0x6a, 0xfd, 0xc6, 0xb7, 0x1f, 0xba, 0x32, 0xf6, 0x76, 0x07, 0x5d, 0xdd, - 0x1f, 0x74, 0xf5, 0xcf, 0x41, 0x57, 0xbf, 0x1f, 0x75, 0x65, 0x7f, 0xd4, 0x95, 0x5f, 0x47, 0x5d, - 0x79, 0x6f, 0xff, 0x77, 0xee, 0xb9, 0x98, 0x72, 0xe4, 0x47, 0x4b, 0x66, 0xcb, 0xc1, 0x3f, 0x3f, - 0x7e, 0x6a, 0x7f, 0x95, 0xb3, 0x8b, 0x4b, 0x58, 0x36, 0xc5, 0xa6, 0x4f, 0xfe, 0x06, 0x00, 0x00, - 0xff, 0xff, 0x4d, 0xab, 0x80, 0x88, 0x13, 0x02, 0x00, 0x00, + 0x36, 0xc6, 0xb8, 0x71, 0x63, 0x0a, 0x14, 0xd3, 0xd8, 0x68, 0x2c, 0x18, 0x13, 0x37, 0x4d, 0xe9, + 0x8c, 0x65, 0x22, 0x65, 0x9a, 0xce, 0xf8, 0x87, 0x1b, 0xb8, 0xf4, 0x0e, 0xee, 0x3c, 0x09, 0x4b, + 0x96, 0xc6, 0x45, 0x63, 0xe0, 0x06, 0x3d, 0x81, 0x61, 0x3a, 0x18, 0xf3, 0x7d, 0x9b, 0xb6, 0xf9, + 0xfd, 0x5e, 0x5e, 0x3a, 0xf3, 0x80, 0xc6, 0x78, 0x4e, 0x10, 0xb6, 0xe3, 0x75, 0x44, 0xd2, 0xea, + 0x69, 0x65, 0x39, 0xe5, 0x14, 0x5e, 0xaf, 0x8c, 0x25, 0x58, 0xff, 0x4e, 0x42, 0x13, 0x2a, 0x84, + 0x7d, 0xfa, 0xaa, 0x32, 0xe6, 0xcf, 0x1a, 0x68, 0x4d, 0x4e, 0x3e, 0xc0, 0x31, 0xcd, 0x11, 0xf4, + 0x01, 0x8c, 0x48, 0x8e, 0x72, 0x9a, 0x85, 0x04, 0xe1, 0x0d, 0x27, 0x1f, 0x08, 0xce, 0x35, 0x75, + 0xa0, 0x0e, 0xaf, 0x8d, 0xef, 0x97, 0x85, 0xd1, 0xdb, 0x46, 0xe9, 0xfa, 0x99, 0x79, 0x39, 0x63, + 0x06, 0xb7, 0x24, 0xf4, 0xfe, 0x31, 0xf8, 0x08, 0x5c, 0x89, 0x10, 0xca, 0x31, 0x63, 0x5a, 0x4d, + 0x54, 0xc0, 0xb2, 0x30, 0x6e, 0xca, 0x8a, 0x4a, 0x98, 0xc1, 0x39, 0x02, 0xdf, 0x81, 0xe6, 0x17, + 0x4c, 0x92, 0x15, 0xd7, 0xea, 0x22, 0xfc, 0x7c, 0x57, 0x18, 0xca, 0xef, 0xc2, 0x78, 0x90, 0x10, + 0xbe, 0xfa, 0xb4, 0xb4, 0x62, 0x9a, 0xda, 0x31, 0x65, 0x29, 0x65, 0xf2, 0x35, 0x62, 0xe8, 0xa3, + 0xcd, 0xb7, 0x19, 0x66, 0xd6, 0x14, 0xc7, 0x65, 0x61, 0xdc, 0xa8, 0xaa, 0xab, 0x16, 0x33, 0x90, + 0x75, 0x70, 0x06, 0x3a, 0x51, 0xcc, 0x09, 0xdd, 0x84, 0x31, 0x4d, 0xb3, 0x35, 0xe6, 0x18, 0x69, + 0x8d, 0x41, 0x7d, 0x78, 0x75, 0x7c, 0xaf, 0x2c, 0x8c, 0xae, 0xfc, 0x9f, 0x0b, 0x09, 0x33, 0x68, + 0x57, 0x68, 0x72, 0x26, 0x0f, 0xe7, 0xa0, 0xe9, 0x08, 0x04, 0xdb, 0xa0, 0xe5, 0x4c, 0x16, 0xde, + 0xeb, 0x57, 0xe1, 0x2c, 0x70, 0xdd, 0x8e, 0x02, 0xbb, 0xe0, 0xb6, 0x04, 0xbe, 0xf7, 0xe6, 0xad, + 0x37, 0x0d, 0xe7, 0x0b, 0xe7, 0xa5, 0xdb, 0x51, 0x61, 0x0f, 0xdc, 0x95, 0x62, 0xea, 0xfa, 0xee, + 0x0b, 0x67, 0xe1, 0x4a, 0x55, 0xeb, 0x37, 0xbe, 0xfd, 0xd0, 0x95, 0xb1, 0xb7, 0x3b, 0xe8, 0xea, + 0xfe, 0xa0, 0xab, 0x7f, 0x0e, 0xba, 0xfa, 0xfd, 0xa8, 0x2b, 0xfb, 0xa3, 0xae, 0xfc, 0x3a, 0xea, + 0xca, 0x7b, 0xfb, 0xbf, 0x73, 0xcf, 0xc5, 0x94, 0x23, 0x3f, 0x5a, 0x32, 0x5b, 0x0e, 0xfe, 0xf9, + 0xf1, 0x53, 0xfb, 0xab, 0x9c, 0x5d, 0x5c, 0xc2, 0xb2, 0x29, 0x36, 0x7d, 0xf2, 0x37, 0x00, 0x00, + 0xff, 0xff, 0x99, 0x41, 0xf3, 0x13, 0x13, 0x02, 0x00, 0x00, } func (m *ClaimRecord) Marshal() (dAtA []byte, err error) { diff --git a/x/claim/types/expected_keepers.go b/x/claim/types/expected_keepers.go index fc210f4177..12bf4ec4d1 100644 --- a/x/claim/types/expected_keepers.go +++ b/x/claim/types/expected_keepers.go @@ -4,7 +4,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - epochstypes "github.com/Stride-Labs/stride/v14/x/epochs/types" + epochstypes "github.com/Stride-Labs/stride/v15/x/epochs/types" ) // BankKeeper defines the banking contract that must be fulfilled when diff --git a/x/claim/types/genesis.pb.go b/x/claim/types/genesis.pb.go index 25eaeec05e..952c4399ac 100644 --- a/x/claim/types/genesis.pb.go +++ b/x/claim/types/genesis.pb.go @@ -100,9 +100,9 @@ var fileDescriptor_ecf5648202726596 = []byte{ 0xa1, 0xb4, 0xd8, 0xc9, 0xf3, 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, 0xe1, 0xc2, 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0xf4, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0x83, 0xc1, 0x56, 0xe9, 0xfa, - 0x24, 0x26, 0x15, 0xeb, 0x43, 0xfd, 0x5f, 0x66, 0x68, 0xa2, 0x5f, 0x01, 0x0d, 0x85, 0x92, 0xca, - 0x82, 0xd4, 0xe2, 0x24, 0x36, 0x70, 0x28, 0x18, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0x60, 0x4f, - 0x04, 0x7c, 0x7c, 0x01, 0x00, 0x00, + 0x24, 0x26, 0x15, 0xeb, 0x43, 0xfd, 0x5f, 0x66, 0x68, 0xaa, 0x5f, 0x01, 0x0d, 0x85, 0x92, 0xca, + 0x82, 0xd4, 0xe2, 0x24, 0x36, 0x70, 0x28, 0x18, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0xb4, 0xa5, + 0x77, 0xe7, 0x7c, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/claim/types/msgs.go b/x/claim/types/msgs.go index db0031d208..f8ab029af1 100644 --- a/x/claim/types/msgs.go +++ b/x/claim/types/msgs.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/Stride-Labs/stride/v14/utils" + "github.com/Stride-Labs/stride/v15/utils" ) // Msg type for MsgSetAirdropAllocations diff --git a/x/claim/types/params.pb.go b/x/claim/types/params.pb.go index de6c84c15c..05900c5b1c 100644 --- a/x/claim/types/params.pb.go +++ b/x/claim/types/params.pb.go @@ -183,36 +183,36 @@ var fileDescriptor_dd7ac871d3875dc3 = []byte{ // 516 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x64, 0x53, 0x41, 0x6f, 0xd3, 0x30, 0x18, 0x6d, 0xd8, 0x68, 0x8b, 0x3b, 0xc1, 0x66, 0x40, 0xa4, 0x95, 0x48, 0xaa, 0x48, 0xa0, 0x4a, - 0xb0, 0x58, 0x1b, 0x9c, 0xe0, 0xd4, 0x6a, 0x20, 0x55, 0xda, 0x01, 0xa5, 0x3b, 0x71, 0x89, 0x9c, - 0xda, 0xed, 0x2c, 0x9a, 0x38, 0xb2, 0x5d, 0x44, 0x7f, 0x01, 0xd7, 0x1d, 0xf9, 0x3d, 0x9c, 0x76, - 0xdc, 0x11, 0x71, 0x08, 0xa8, 0xbd, 0x71, 0xdc, 0x2f, 0x40, 0x76, 0x9c, 0xae, 0x5b, 0x4f, 0xad, - 0xdf, 0x7b, 0xdf, 0xf7, 0xde, 0xe7, 0x2f, 0x06, 0x6d, 0xa9, 0x04, 0x23, 0x14, 0x8d, 0x67, 0x98, - 0xa5, 0x28, 0xc7, 0x02, 0xa7, 0x32, 0xcc, 0x05, 0x57, 0x1c, 0xee, 0x95, 0x54, 0x68, 0xa8, 0xce, - 0x93, 0x29, 0x9f, 0x72, 0x43, 0x20, 0xfd, 0xaf, 0xd4, 0x74, 0xbc, 0x29, 0xe7, 0xd3, 0x19, 0x45, - 0xe6, 0x94, 0xcc, 0x27, 0x88, 0xcc, 0x05, 0x56, 0x8c, 0x67, 0x96, 0xf7, 0xef, 0xf2, 0x8a, 0xa5, - 0x54, 0x2a, 0x9c, 0xe6, 0xa5, 0x20, 0x78, 0x0f, 0xea, 0x9f, 0x8c, 0x29, 0x3c, 0x02, 0x4d, 0xcc, - 0x04, 0x11, 0x3c, 0x97, 0xae, 0xd3, 0xdd, 0xe9, 0xb5, 0x8e, 0x9f, 0x86, 0x9b, 0x09, 0xc2, 0x7e, - 0xc9, 0x46, 0x6b, 0x59, 0xf0, 0x73, 0x17, 0x34, 0x2c, 0x0a, 0x4f, 0x01, 0xb4, 0x78, 0xcc, 0x08, - 0xcd, 0x14, 0x9b, 0x30, 0x2a, 0x5c, 0xa7, 0xeb, 0xf4, 0x1e, 0x0c, 0x9e, 0x5f, 0x17, 0x7e, 0x7b, - 0x81, 0xd3, 0xd9, 0xbb, 0x60, 0x5b, 0x13, 0x44, 0x07, 0x16, 0x1c, 0xae, 0x31, 0xd8, 0x06, 0xcd, - 0xf1, 0x39, 0x66, 0x59, 0xcc, 0x88, 0xdb, 0xd0, 0x3d, 0xa2, 0x86, 0x39, 0x0f, 0x09, 0xe4, 0x37, - 0x46, 0x52, 0x61, 0xa1, 0x62, 0x3d, 0x92, 0x7b, 0xaf, 0xeb, 0xf4, 0x5a, 0xc7, 0x9d, 0xb0, 0x9c, - 0x37, 0xac, 0xe6, 0x0d, 0xcf, 0xaa, 0x79, 0x07, 0x2f, 0x2e, 0x0b, 0xbf, 0xb6, 0x1d, 0xe4, 0xa6, - 0x47, 0x70, 0xf1, 0xc7, 0x77, 0xa2, 0x7d, 0x4b, 0x8c, 0x34, 0xae, 0xab, 0xe1, 0x77, 0x07, 0x54, - 0x60, 0x5c, 0x5d, 0xaf, 0xbb, 0x63, 0xfc, 0xda, 0x5b, 0x7e, 0x27, 0x56, 0x30, 0xe8, 0x6b, 0xbb, - 0x7f, 0x85, 0xdf, 0xb9, 0x5b, 0xfa, 0x9a, 0xa7, 0x4c, 0xd1, 0x34, 0x57, 0x8b, 0xeb, 0xc2, 0x7f, - 0x76, 0x3b, 0x4c, 0xa5, 0x09, 0x7e, 0xe8, 0x28, 0x8f, 0x2c, 0x5c, 0xf5, 0x84, 0x3e, 0x68, 0x99, - 0x55, 0xc4, 0x84, 0x66, 0x3c, 0x75, 0x77, 0xcd, 0xc5, 0x00, 0x03, 0x9d, 0x68, 0x04, 0x22, 0xf0, - 0x98, 0x30, 0xbd, 0xb4, 0x64, 0xae, 0xb8, 0x88, 0x31, 0x21, 0x82, 0x4a, 0xe9, 0xde, 0x37, 0x42, - 0xb8, 0x41, 0xf5, 0x4b, 0x06, 0x9e, 0x81, 0x87, 0xa6, 0x9c, 0x92, 0x58, 0xf2, 0x78, 0x82, 0x85, - 0x5b, 0x37, 0x1b, 0x0b, 0x75, 0xfa, 0xdf, 0x85, 0xff, 0x72, 0xca, 0xd4, 0xf9, 0x3c, 0x09, 0xc7, - 0x3c, 0x45, 0x63, 0x2e, 0x53, 0x2e, 0xed, 0xcf, 0xa1, 0x24, 0x5f, 0x90, 0x5a, 0xe4, 0x54, 0x86, - 0xc3, 0x4c, 0x45, 0x7b, 0xb6, 0xcb, 0x88, 0x7f, 0xc4, 0x02, 0xbe, 0x02, 0x07, 0x78, 0xae, 0x78, - 0xce, 0x66, 0x5c, 0xc5, 0x34, 0xc3, 0xc9, 0x8c, 0x12, 0xb7, 0xd9, 0x75, 0x7a, 0xcd, 0x68, 0x7f, - 0x4d, 0x7c, 0x28, 0xf1, 0xc1, 0xf0, 0x72, 0xe9, 0x39, 0x57, 0x4b, 0xcf, 0xf9, 0xbb, 0xf4, 0x9c, - 0x8b, 0x95, 0x57, 0xbb, 0x5a, 0x79, 0xb5, 0x5f, 0x2b, 0xaf, 0xf6, 0x19, 0x6d, 0x98, 0x8f, 0xcc, - 0x97, 0x78, 0x78, 0x8a, 0x13, 0x89, 0xec, 0x93, 0xf9, 0x7a, 0xf4, 0x16, 0x7d, 0xb3, 0x0f, 0xc7, - 0x24, 0x49, 0xea, 0x66, 0x0d, 0x6f, 0xfe, 0x07, 0x00, 0x00, 0xff, 0xff, 0x1a, 0x39, 0x61, 0xaa, + 0xb0, 0x58, 0x1b, 0xe2, 0x02, 0xa7, 0x56, 0x03, 0xa9, 0xd2, 0x0e, 0x28, 0xdd, 0x89, 0x4b, 0xe4, + 0xd4, 0x6e, 0x67, 0xd1, 0xc4, 0x91, 0xed, 0x22, 0xfa, 0x0b, 0xb8, 0xee, 0xc8, 0xef, 0xe1, 0xb4, + 0xe3, 0x8e, 0x88, 0x43, 0x40, 0xed, 0x8d, 0xe3, 0x7e, 0x01, 0xb2, 0xe3, 0x74, 0xdd, 0x7a, 0x6a, + 0xfd, 0xde, 0xfb, 0xbe, 0xf7, 0x3e, 0x7f, 0x31, 0x68, 0x4b, 0x25, 0x18, 0xa1, 0x68, 0x3c, 0xc3, + 0x2c, 0x45, 0x39, 0x16, 0x38, 0x95, 0x61, 0x2e, 0xb8, 0xe2, 0x70, 0xaf, 0xa4, 0x42, 0x43, 0x75, + 0x9e, 0x4c, 0xf9, 0x94, 0x1b, 0x02, 0xe9, 0x7f, 0xa5, 0xa6, 0xe3, 0x4d, 0x39, 0x9f, 0xce, 0x28, + 0x32, 0xa7, 0x64, 0x3e, 0x41, 0x64, 0x2e, 0xb0, 0x62, 0x3c, 0xb3, 0xbc, 0x7f, 0x97, 0x57, 0x2c, + 0xa5, 0x52, 0xe1, 0x34, 0x2f, 0x05, 0xc1, 0x7b, 0x50, 0xff, 0x64, 0x4c, 0xe1, 0x11, 0x68, 0x62, + 0x26, 0x88, 0xe0, 0xb9, 0x74, 0x9d, 0xee, 0x4e, 0xaf, 0x75, 0xfc, 0x34, 0xdc, 0x4c, 0x10, 0xf6, + 0x4b, 0x36, 0x5a, 0xcb, 0x82, 0x9f, 0xbb, 0xa0, 0x61, 0x51, 0x78, 0x0a, 0xa0, 0xc5, 0x63, 0x46, + 0x68, 0xa6, 0xd8, 0x84, 0x51, 0xe1, 0x3a, 0x5d, 0xa7, 0xf7, 0x60, 0xf0, 0xfc, 0xba, 0xf0, 0xdb, + 0x0b, 0x9c, 0xce, 0xde, 0x05, 0xdb, 0x9a, 0x20, 0x3a, 0xb0, 0xe0, 0x70, 0x8d, 0xc1, 0x36, 0x68, + 0x8e, 0xcf, 0x31, 0xcb, 0x62, 0x46, 0xdc, 0x86, 0xee, 0x11, 0x35, 0xcc, 0x79, 0x48, 0x20, 0xbf, + 0x31, 0x92, 0x0a, 0x0b, 0x15, 0xeb, 0x91, 0xdc, 0x7b, 0x5d, 0xa7, 0xd7, 0x3a, 0xee, 0x84, 0xe5, + 0xbc, 0x61, 0x35, 0x6f, 0x78, 0x56, 0xcd, 0x3b, 0x78, 0x71, 0x59, 0xf8, 0xb5, 0xed, 0x20, 0x37, + 0x3d, 0x82, 0x8b, 0x3f, 0xbe, 0x13, 0xed, 0x5b, 0x62, 0xa4, 0x71, 0x5d, 0x0d, 0xbf, 0x3b, 0xa0, + 0x02, 0xe3, 0xea, 0x7a, 0xdd, 0x1d, 0xe3, 0xd7, 0xde, 0xf2, 0x3b, 0xb1, 0x82, 0x41, 0x5f, 0xdb, + 0xfd, 0x2b, 0xfc, 0xce, 0xdd, 0xd2, 0xd7, 0x3c, 0x65, 0x8a, 0xa6, 0xb9, 0x5a, 0x5c, 0x17, 0xfe, + 0xb3, 0xdb, 0x61, 0x2a, 0x4d, 0xf0, 0x43, 0x47, 0x79, 0x64, 0xe1, 0xaa, 0x27, 0xf4, 0x41, 0xcb, + 0xac, 0x22, 0x26, 0x34, 0xe3, 0xa9, 0xbb, 0x6b, 0x2e, 0x06, 0x18, 0xe8, 0x44, 0x23, 0x10, 0x81, + 0xc7, 0x84, 0xe9, 0xa5, 0x25, 0x73, 0xc5, 0x45, 0x8c, 0x09, 0x11, 0x54, 0x4a, 0xf7, 0xbe, 0x11, + 0xc2, 0x0d, 0xaa, 0x5f, 0x32, 0xf0, 0x0c, 0x3c, 0x34, 0xe5, 0x94, 0xc4, 0x92, 0xc7, 0x13, 0x2c, + 0xdc, 0xba, 0xd9, 0x58, 0xa8, 0xd3, 0xff, 0x2e, 0xfc, 0x97, 0x53, 0xa6, 0xce, 0xe7, 0x49, 0x38, + 0xe6, 0x29, 0x1a, 0x73, 0x99, 0x72, 0x69, 0x7f, 0x0e, 0x25, 0xf9, 0x82, 0xd4, 0x22, 0xa7, 0x32, + 0x1c, 0x66, 0x2a, 0xda, 0xb3, 0x5d, 0x46, 0xfc, 0x23, 0x16, 0xf0, 0x15, 0x38, 0xc0, 0x73, 0xc5, + 0x73, 0x36, 0xe3, 0x2a, 0xa6, 0x19, 0x4e, 0x66, 0x94, 0xb8, 0xcd, 0xae, 0xd3, 0x6b, 0x46, 0xfb, + 0x6b, 0xe2, 0x43, 0x89, 0x0f, 0x86, 0x97, 0x4b, 0xcf, 0xb9, 0x5a, 0x7a, 0xce, 0xdf, 0xa5, 0xe7, + 0x5c, 0xac, 0xbc, 0xda, 0xd5, 0xca, 0xab, 0xfd, 0x5a, 0x79, 0xb5, 0xcf, 0x68, 0xc3, 0x7c, 0x64, + 0xbe, 0xc4, 0xc3, 0x53, 0x9c, 0x48, 0x64, 0x9f, 0xcc, 0xd7, 0xa3, 0xb7, 0xe8, 0x9b, 0x7d, 0x38, + 0x26, 0x49, 0x52, 0x37, 0x6b, 0x78, 0xf3, 0x3f, 0x00, 0x00, 0xff, 0xff, 0xce, 0xd3, 0x12, 0x31, 0x55, 0x03, 0x00, 0x00, } diff --git a/x/claim/types/query.pb.go b/x/claim/types/query.pb.go index 6ca64fb70c..247aa0d07a 100644 --- a/x/claim/types/query.pb.go +++ b/x/claim/types/query.pb.go @@ -6,7 +6,7 @@ package types import ( context "context" fmt "fmt" - types2 "github.com/Stride-Labs/stride/v14/x/claim/vesting/types" + types2 "github.com/Stride-Labs/stride/v15/x/claim/vesting/types" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types1 "github.com/cosmos/cosmos-sdk/types" _ "github.com/cosmos/gogoproto/gogoproto" @@ -927,81 +927,81 @@ var fileDescriptor_baa87682a02846df = []byte{ // 1227 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x57, 0x4d, 0x6f, 0x1b, 0xc5, 0x1b, 0xcf, 0x24, 0x6d, 0xda, 0x4e, 0x12, 0x47, 0x99, 0x26, 0xa9, 0xbd, 0x69, 0x6c, 0xff, 0xe7, - 0x4f, 0x12, 0x23, 0x35, 0xbb, 0x24, 0xad, 0x38, 0x70, 0x01, 0x1c, 0x5e, 0x1a, 0x54, 0xa4, 0xb2, - 0x29, 0x91, 0xe0, 0x62, 0x8d, 0x77, 0x27, 0x66, 0x85, 0xbd, 0xeb, 0xec, 0xcc, 0x56, 0x44, 0x55, - 0x85, 0x80, 0x03, 0x37, 0x88, 0x04, 0x7c, 0x08, 0x90, 0x38, 0xf0, 0x11, 0x38, 0x20, 0xf5, 0x58, - 0x89, 0x0b, 0x07, 0x48, 0x51, 0xc2, 0x27, 0x88, 0x04, 0x67, 0xb4, 0x33, 0xcf, 0x3a, 0xbb, 0xce, - 0xba, 0x4e, 0x90, 0x10, 0xbd, 0xc4, 0xd9, 0x79, 0xde, 0x7e, 0xcf, 0xcb, 0xfc, 0x66, 0x06, 0x17, - 0x85, 0x0c, 0x3d, 0x97, 0x5b, 0x4e, 0x9b, 0x79, 0x1d, 0x6b, 0x37, 0xe2, 0xe1, 0x9e, 0xd9, 0x0d, - 0x03, 0x19, 0x90, 0x49, 0x2d, 0x31, 0x95, 0xc4, 0x98, 0x6d, 0x05, 0xad, 0x40, 0x09, 0xac, 0xf8, - 0x3f, 0xad, 0x63, 0x5c, 0x6f, 0x05, 0x41, 0xab, 0xcd, 0x2d, 0xd6, 0xf5, 0x2c, 0xe6, 0xfb, 0x81, - 0x64, 0xd2, 0x0b, 0x7c, 0x01, 0xd2, 0xb2, 0x13, 0x88, 0x4e, 0x20, 0xac, 0x26, 0x13, 0xdc, 0xba, - 0xbf, 0xd6, 0xe4, 0x92, 0xad, 0x59, 0x4e, 0xe0, 0xf9, 0x20, 0xcf, 0xc6, 0x56, 0x7f, 0x41, 0x52, - 0xca, 0x48, 0xba, 0x2c, 0x64, 0x9d, 0xc4, 0xe9, 0x75, 0x10, 0xdd, 0xe7, 0x42, 0x7a, 0x7e, 0x2b, - 0xf9, 0x05, 0x69, 0x05, 0x00, 0xa9, 0xaf, 0x66, 0xb4, 0x63, 0x49, 0xaf, 0xc3, 0x85, 0x64, 0x9d, - 0xae, 0x56, 0xa0, 0xdb, 0x78, 0x62, 0x23, 0x76, 0xba, 0x25, 0x99, 0x8c, 0x04, 0x59, 0xc5, 0x84, - 0x79, 0xa1, 0x1b, 0x06, 0xdd, 0x86, 0xe7, 0x72, 0x5f, 0x7a, 0x3b, 0x1e, 0x0f, 0x8b, 0xa8, 0x8a, - 0x6a, 0x57, 0xec, 0x19, 0x90, 0x6c, 0xf6, 0x04, 0xa4, 0x88, 0x2f, 0x29, 0x48, 0xdc, 0x2d, 0x8e, - 0x56, 0x51, 0xed, 0xb2, 0x9d, 0x7c, 0xd2, 0x37, 0xf1, 0xb5, 0x77, 0xe2, 0xe2, 0xa5, 0x9c, 0xdb, - 0x7c, 0x37, 0xe2, 0x42, 0x92, 0x1b, 0xf8, 0x12, 0x73, 0xdd, 0x90, 0x0b, 0xa1, 0x1d, 0xd7, 0xc9, - 0xf1, 0x41, 0xa5, 0xb0, 0xc7, 0x3a, 0xed, 0x97, 0x28, 0x08, 0xa8, 0x9d, 0xa8, 0xd0, 0x08, 0x17, - 0x4f, 0x3b, 0x12, 0xdd, 0xc0, 0x17, 0x9c, 0xbc, 0x87, 0x27, 0x55, 0xbc, 0x86, 0x50, 0xeb, 0x45, - 0x54, 0x1d, 0xab, 0x4d, 0xac, 0x97, 0xcc, 0x74, 0xa7, 0xcc, 0x94, 0x61, 0x7d, 0xe1, 0xd1, 0x41, - 0x65, 0xe4, 0xf8, 0xa0, 0x72, 0x55, 0x47, 0x4b, 0x1b, 0x53, 0x7b, 0xc2, 0x39, 0xd1, 0xa4, 0x3f, - 0x8d, 0xe2, 0x29, 0x65, 0xf9, 0x36, 0x97, 0xcc, 0x65, 0x92, 0x9d, 0xb7, 0x34, 0xff, 0xc7, 0x53, - 0x4e, 0x14, 0x86, 0xdc, 0x97, 0x8d, 0x30, 0x88, 0x7c, 0x5d, 0xa0, 0x2b, 0xf6, 0x24, 0x2c, 0xda, - 0xf1, 0x1a, 0x09, 0xf1, 0xd5, 0x8c, 0x52, 0x8c, 0x25, 0x94, 0xc5, 0xb1, 0x2a, 0xaa, 0x4d, 0xac, - 0x1b, 0xa6, 0x6e, 0x9e, 0x99, 0x34, 0xcf, 0xbc, 0x97, 0x34, 0xaf, 0xbe, 0x0c, 0x89, 0x18, 0x90, - 0xc8, 0x69, 0x27, 0x74, 0xff, 0x49, 0x05, 0xd9, 0x33, 0xe9, 0x70, 0x5b, 0xf1, 0x3a, 0x69, 0xe3, - 0x99, 0xac, 0x3a, 0xf7, 0xdd, 0xe2, 0x85, 0xa1, 0x11, 0x9f, 0x83, 0x88, 0xc5, 0xbc, 0x88, 0xdc, - 0x77, 0x75, 0xbc, 0xe9, 0x74, 0xbc, 0xd7, 0x7d, 0x97, 0x2e, 0xe0, 0xd2, 0x49, 0xfb, 0x92, 0x5a, - 0xc2, 0x24, 0xd0, 0x8f, 0xb1, 0x91, 0x27, 0x84, 0xee, 0x32, 0x5c, 0xd0, 0x0d, 0xea, 0x80, 0x04, - 0xfa, 0xbb, 0x90, 0xd3, 0xdf, 0xc4, 0xb8, 0xbe, 0x08, 0x30, 0xe7, 0xd2, 0x1d, 0x4e, 0x1c, 0x50, - 0x7b, 0xca, 0x49, 0x6b, 0xd3, 0x08, 0x2f, 0x29, 0x00, 0xaf, 0x79, 0xb1, 0xcb, 0x66, 0x24, 0x83, - 0xf0, 0x55, 0xc7, 0x09, 0x22, 0x5f, 0xd6, 0x59, 0x9b, 0xf9, 0x0e, 0x4f, 0x66, 0xf6, 0xce, 0xe0, - 0xe6, 0xd7, 0x17, 0x8f, 0x0f, 0x2a, 0x25, 0x18, 0xdf, 0x53, 0x3a, 0x34, 0x67, 0x36, 0xe8, 0xaf, - 0x08, 0x2f, 0x0f, 0x8b, 0x0b, 0x45, 0xf8, 0x01, 0xe1, 0x05, 0xf7, 0x44, 0xab, 0xc1, 0xb4, 0x5a, - 0xa3, 0xa9, 0xf5, 0x7a, 0x23, 0xaf, 0xa9, 0xc5, 0x8c, 0xa9, 0xc5, 0x04, 0x6a, 0x31, 0x37, 0x02, - 0xcf, 0xaf, 0x6f, 0x43, 0x41, 0xa8, 0x46, 0xf8, 0x14, 0x5f, 0xf4, 0xbb, 0x27, 0x95, 0x5a, 0xcb, - 0x93, 0x1f, 0x44, 0x4d, 0xd3, 0x09, 0x3a, 0x16, 0xb0, 0x95, 0xfe, 0x59, 0x15, 0xee, 0x87, 0x96, - 0xdc, 0xeb, 0x72, 0xa1, 0xdc, 0x0a, 0xbb, 0xe4, 0x0e, 0xc2, 0x4e, 0x67, 0x31, 0x51, 0xd9, 0xdd, - 0x55, 0x3c, 0x95, 0x34, 0x7b, 0x13, 0x5f, 0xcd, 0xac, 0x42, 0x82, 0xeb, 0x78, 0x5c, 0xf3, 0x99, - 0xaa, 0xe6, 0xc4, 0xfa, 0x6c, 0xb6, 0xbb, 0x5a, 0xbb, 0x7e, 0x21, 0xce, 0xc2, 0x06, 0x4d, 0xfa, - 0x0d, 0x4a, 0xb3, 0x8b, 0xcd, 0x9d, 0x20, 0x74, 0xff, 0x95, 0x4e, 0xa5, 0xb9, 0x6a, 0xf4, 0x9c, - 0x5c, 0x95, 0xc0, 0xea, 0xe7, 0xaa, 0x50, 0xad, 0x43, 0xb6, 0x79, 0x5c, 0xa5, 0x0d, 0xf3, 0xb9, - 0x4a, 0x1b, 0x27, 0x5c, 0xa5, 0x35, 0xe9, 0x6f, 0x08, 0x97, 0x4f, 0xe2, 0xb2, 0x66, 0x9b, 0xbf, - 0x11, 0xf7, 0x24, 0x3e, 0x7a, 0x9e, 0x81, 0xaa, 0x90, 0x97, 0xf1, 0x38, 0x53, 0x60, 0x14, 0xaf, - 0x15, 0xfa, 0x3b, 0xac, 0x81, 0xd6, 0x67, 0x8e, 0x0f, 0x2a, 0x53, 0xe0, 0x42, 0xad, 0x50, 0x1b, - 0xcc, 0xe8, 0xd7, 0x08, 0x57, 0x06, 0xe6, 0x07, 0xe5, 0xdd, 0xc5, 0x17, 0xe3, 0x93, 0x54, 0x0c, - 0xdf, 0x10, 0xaf, 0x40, 0x5d, 0x27, 0xa1, 0xae, 0xb1, 0xd5, 0xf9, 0x46, 0x5f, 0x47, 0xa2, 0x3f, - 0x22, 0xa0, 0xaf, 0x7b, 0x81, 0x64, 0xed, 0x1e, 0xb6, 0x67, 0xa1, 0xe4, 0x2b, 0x78, 0xda, 0xf3, - 0x9d, 0x76, 0xe4, 0xf2, 0x46, 0x72, 0x3e, 0x8f, 0xa9, 0xf3, 0xb9, 0x00, 0xcb, 0x1b, 0x70, 0x4c, - 0xef, 0x23, 0xbc, 0x90, 0x9b, 0xc3, 0x7f, 0x57, 0xd6, 0xdb, 0xb0, 0x89, 0xde, 0x15, 0x3c, 0xdc, - 0xd6, 0x97, 0x99, 0x7f, 0x78, 0x75, 0xf8, 0x0b, 0xc1, 0xe1, 0x93, 0x75, 0x05, 0xa9, 0x7d, 0x81, - 0xf0, 0xb4, 0xe8, 0x72, 0xdf, 0x8d, 0x13, 0x6e, 0xe8, 0x2c, 0xc7, 0x86, 0x65, 0xf9, 0x16, 0x64, - 0x39, 0xaf, 0x63, 0xf6, 0xd9, 0x9f, 0x2f, 0xdf, 0x42, 0xcf, 0x5a, 0x7d, 0x93, 0xdb, 0xf8, 0x52, - 0x97, 0x87, 0x5e, 0xe0, 0x26, 0xd5, 0x9e, 0x4f, 0x36, 0x4a, 0x72, 0xa7, 0xbb, 0xab, 0xc4, 0xf5, - 0x79, 0x00, 0x01, 0x89, 0x83, 0x11, 0xb5, 0x13, 0xf3, 0xf5, 0x3f, 0x2f, 0xe3, 0x8b, 0x2a, 0x71, - 0xf2, 0x3d, 0xc2, 0xa5, 0x81, 0x87, 0x0c, 0xb9, 0x99, 0xdd, 0x89, 0x67, 0x3a, 0x0a, 0x8d, 0x5b, - 0xe7, 0x33, 0xd2, 0xd5, 0xa6, 0x4b, 0x9f, 0xfe, 0xfc, 0xc7, 0x57, 0xa3, 0x15, 0xb2, 0x08, 0x77, - 0xd8, 0x4e, 0xe0, 0x46, 0x6d, 0xde, 0x7f, 0x04, 0x11, 0x17, 0x8f, 0x6b, 0xc6, 0x27, 0xd5, 0x9c, - 0x30, 0x99, 0x03, 0xc5, 0xf8, 0xdf, 0x53, 0x34, 0x20, 0xea, 0x9c, 0x8a, 0x3a, 0x4d, 0xa6, 0x32, - 0x37, 0x67, 0xf2, 0x19, 0x82, 0x5b, 0xaf, 0x26, 0x50, 0xb2, 0x94, 0xe3, 0xe9, 0xf4, 0xd1, 0x62, - 0x2c, 0x0f, 0x53, 0x1b, 0x90, 0x6b, 0x9a, 0xba, 0xad, 0x07, 0x30, 0x9d, 0x0f, 0xc9, 0xb7, 0x08, - 0x93, 0xd3, 0x8c, 0x46, 0x6e, 0x0c, 0x8a, 0x92, 0x47, 0xec, 0xc6, 0xea, 0x19, 0xb5, 0x01, 0xda, - 0x8b, 0x0a, 0xda, 0x0b, 0xc4, 0x4c, 0x43, 0x53, 0x03, 0xbc, 0xa3, 0x2e, 0x04, 0xb1, 0xf2, 0x09, - 0x44, 0xeb, 0x81, 0x5e, 0x79, 0x48, 0xbe, 0x44, 0xb8, 0x90, 0xa5, 0x08, 0x52, 0xcb, 0x89, 0x9c, - 0xcb, 0x84, 0xc6, 0xf3, 0x67, 0xd0, 0x04, 0x7c, 0x35, 0x85, 0x8f, 0x92, 0x2a, 0xe0, 0x93, 0xb1, - 0x5a, 0xa3, 0x87, 0x32, 0x55, 0xbd, 0xcf, 0x11, 0x9e, 0x4c, 0xef, 0x6b, 0x92, 0xd7, 0x9d, 0x1c, - 0x0e, 0x31, 0x56, 0x86, 0xea, 0x01, 0x96, 0x65, 0x85, 0xa5, 0x4a, 0xca, 0x80, 0x25, 0x12, 0x3c, - 0x6c, 0xc0, 0x56, 0x14, 0x29, 0x24, 0xbd, 0x69, 0x82, 0x37, 0xd4, 0xc0, 0x69, 0xca, 0x3c, 0x83, - 0x06, 0x4f, 0x53, 0xf6, 0x91, 0x33, 0x60, 0x9a, 0xf4, 0xa3, 0x25, 0x85, 0xe2, 0x13, 0xd4, 0xff, - 0x60, 0x59, 0x19, 0x14, 0xa0, 0xef, 0x1a, 0x6e, 0xd4, 0x86, 0x2b, 0x02, 0x96, 0x45, 0x85, 0xe5, - 0x1a, 0x99, 0xcb, 0x60, 0x49, 0xae, 0xd7, 0xf5, 0xcd, 0x47, 0x87, 0x65, 0xf4, 0xf8, 0xb0, 0x8c, - 0x7e, 0x3f, 0x2c, 0xa3, 0xfd, 0xa3, 0xf2, 0xc8, 0xe3, 0xa3, 0xf2, 0xc8, 0x2f, 0x47, 0xe5, 0x91, - 0xf7, 0xad, 0x14, 0x2b, 0x6e, 0xa9, 0x60, 0xab, 0x77, 0x58, 0x53, 0x58, 0xc9, 0xe3, 0x75, 0xed, - 0x96, 0xf5, 0x51, 0xd2, 0xf2, 0x98, 0x22, 0x9b, 0xe3, 0xea, 0x09, 0x72, 0xf3, 0xef, 0x00, 0x00, - 0x00, 0xff, 0xff, 0x16, 0x71, 0x80, 0x87, 0x90, 0x0f, 0x00, 0x00, + 0x4f, 0x12, 0x23, 0x35, 0xbb, 0x24, 0x05, 0x0e, 0x5c, 0x00, 0x87, 0x97, 0x06, 0x15, 0xa9, 0x6c, + 0x4a, 0x24, 0xb8, 0x58, 0xe3, 0xdd, 0x89, 0x59, 0x61, 0xef, 0x3a, 0x3b, 0xb3, 0x15, 0x51, 0x55, + 0x21, 0xe0, 0xc0, 0x0d, 0x22, 0x01, 0x1f, 0x02, 0x24, 0x0e, 0x7c, 0x04, 0x0e, 0x48, 0x3d, 0x56, + 0xe2, 0xc2, 0x01, 0x52, 0x94, 0xf0, 0x09, 0x22, 0xc1, 0x19, 0xed, 0xcc, 0xb3, 0xce, 0xae, 0xb3, + 0xae, 0x13, 0x24, 0x44, 0x2f, 0x71, 0x76, 0x9e, 0xb7, 0xdf, 0xf3, 0x32, 0xbf, 0x99, 0xc1, 0x45, + 0x21, 0x43, 0xcf, 0xe5, 0x96, 0xd3, 0x66, 0x5e, 0xc7, 0xda, 0x8d, 0x78, 0xb8, 0x67, 0x76, 0xc3, + 0x40, 0x06, 0x64, 0x52, 0x4b, 0x4c, 0x25, 0x31, 0x66, 0x5b, 0x41, 0x2b, 0x50, 0x02, 0x2b, 0xfe, + 0x4f, 0xeb, 0x18, 0xd7, 0x5b, 0x41, 0xd0, 0x6a, 0x73, 0x8b, 0x75, 0x3d, 0x8b, 0xf9, 0x7e, 0x20, + 0x99, 0xf4, 0x02, 0x5f, 0x80, 0xb4, 0xec, 0x04, 0xa2, 0x13, 0x08, 0xab, 0xc9, 0x04, 0xb7, 0xee, + 0xad, 0x35, 0xb9, 0x64, 0x6b, 0x96, 0x13, 0x78, 0x3e, 0xc8, 0xb3, 0xb1, 0xd5, 0x5f, 0x90, 0x94, + 0x32, 0x92, 0x2e, 0x0b, 0x59, 0x27, 0x71, 0x7a, 0x1d, 0x44, 0xf7, 0xb8, 0x90, 0x9e, 0xdf, 0x4a, + 0x7e, 0x41, 0x5a, 0x01, 0x40, 0xea, 0xab, 0x19, 0xed, 0x58, 0xd2, 0xeb, 0x70, 0x21, 0x59, 0xa7, + 0xab, 0x15, 0xe8, 0x36, 0x9e, 0xd8, 0x88, 0x9d, 0x6e, 0x49, 0x26, 0x23, 0x41, 0x56, 0x31, 0x61, + 0x5e, 0xe8, 0x86, 0x41, 0xb7, 0xe1, 0xb9, 0xdc, 0x97, 0xde, 0x8e, 0xc7, 0xc3, 0x22, 0xaa, 0xa2, + 0xda, 0x15, 0x7b, 0x06, 0x24, 0x9b, 0x3d, 0x01, 0x29, 0xe2, 0x4b, 0x0a, 0x12, 0x77, 0x8b, 0xa3, + 0x55, 0x54, 0xbb, 0x6c, 0x27, 0x9f, 0xf4, 0x4d, 0x7c, 0xed, 0x9d, 0xb8, 0x78, 0x29, 0xe7, 0x36, + 0xdf, 0x8d, 0xb8, 0x90, 0xe4, 0x06, 0xbe, 0xc4, 0x5c, 0x37, 0xe4, 0x42, 0x68, 0xc7, 0x75, 0x72, + 0x7c, 0x50, 0x29, 0xec, 0xb1, 0x4e, 0xfb, 0x25, 0x0a, 0x02, 0x6a, 0x27, 0x2a, 0x34, 0xc2, 0xc5, + 0xd3, 0x8e, 0x44, 0x37, 0xf0, 0x05, 0x27, 0xef, 0xe1, 0x49, 0x15, 0xaf, 0x21, 0xd4, 0x7a, 0x11, + 0x55, 0xc7, 0x6a, 0x13, 0xeb, 0x25, 0x33, 0xdd, 0x29, 0x33, 0x65, 0x58, 0x5f, 0x78, 0x78, 0x50, + 0x19, 0x39, 0x3e, 0xa8, 0x5c, 0xd5, 0xd1, 0xd2, 0xc6, 0xd4, 0x9e, 0x70, 0x4e, 0x34, 0xe9, 0x4f, + 0xa3, 0x78, 0x4a, 0x59, 0xbe, 0xcd, 0x25, 0x73, 0x99, 0x64, 0xe7, 0x2d, 0xcd, 0xff, 0xf1, 0x94, + 0x13, 0x85, 0x21, 0xf7, 0x65, 0x23, 0x0c, 0x22, 0x5f, 0x17, 0xe8, 0x8a, 0x3d, 0x09, 0x8b, 0x76, + 0xbc, 0x46, 0x42, 0x7c, 0x35, 0xa3, 0x14, 0x63, 0x09, 0x65, 0x71, 0xac, 0x8a, 0x6a, 0x13, 0xeb, + 0x86, 0xa9, 0x9b, 0x67, 0x26, 0xcd, 0x33, 0xef, 0x26, 0xcd, 0xab, 0x2f, 0x43, 0x22, 0x06, 0x24, + 0x72, 0xda, 0x09, 0xdd, 0x7f, 0x5c, 0x41, 0xf6, 0x4c, 0x3a, 0xdc, 0x56, 0xbc, 0x4e, 0xda, 0x78, + 0x26, 0xab, 0xce, 0x7d, 0xb7, 0x78, 0x61, 0x68, 0xc4, 0x67, 0x20, 0x62, 0x31, 0x2f, 0x22, 0xf7, + 0x5d, 0x1d, 0x6f, 0x3a, 0x1d, 0xef, 0x75, 0xdf, 0xa5, 0x0b, 0xb8, 0x74, 0xd2, 0xbe, 0xa4, 0x96, + 0x30, 0x09, 0xf4, 0x63, 0x6c, 0xe4, 0x09, 0xa1, 0xbb, 0x0c, 0x17, 0x74, 0x83, 0x3a, 0x20, 0x81, + 0xfe, 0x2e, 0xe4, 0xf4, 0x37, 0x31, 0xae, 0x2f, 0x02, 0xcc, 0xb9, 0x74, 0x87, 0x13, 0x07, 0xd4, + 0x9e, 0x72, 0xd2, 0xda, 0x34, 0xc2, 0x4b, 0x0a, 0xc0, 0x6b, 0x5e, 0xec, 0xb2, 0x19, 0xc9, 0x20, + 0x7c, 0xd5, 0x71, 0x82, 0xc8, 0x97, 0x75, 0xd6, 0x66, 0xbe, 0xc3, 0x93, 0x99, 0xbd, 0x3d, 0xb8, + 0xf9, 0xf5, 0xc5, 0xe3, 0x83, 0x4a, 0x09, 0xc6, 0xf7, 0x94, 0x0e, 0xcd, 0x99, 0x0d, 0xfa, 0x2b, + 0xc2, 0xcb, 0xc3, 0xe2, 0x42, 0x11, 0x7e, 0x40, 0x78, 0xc1, 0x3d, 0xd1, 0x6a, 0x30, 0xad, 0xd6, + 0x68, 0x6a, 0xbd, 0xde, 0xc8, 0x6b, 0x6a, 0x31, 0x63, 0x6a, 0x31, 0x81, 0x5a, 0xcc, 0x8d, 0xc0, + 0xf3, 0xeb, 0xdb, 0x50, 0x10, 0xaa, 0x11, 0x3e, 0xc1, 0x17, 0xfd, 0xee, 0x71, 0xa5, 0xd6, 0xf2, + 0xe4, 0x07, 0x51, 0xd3, 0x74, 0x82, 0x8e, 0x05, 0x6c, 0xa5, 0x7f, 0x56, 0x85, 0xfb, 0xa1, 0x25, + 0xf7, 0xba, 0x5c, 0x28, 0xb7, 0xc2, 0x2e, 0xb9, 0x83, 0xb0, 0xd3, 0x59, 0x4c, 0x54, 0x76, 0x77, + 0x14, 0x4f, 0x25, 0xcd, 0xde, 0xc4, 0x57, 0x33, 0xab, 0x90, 0xe0, 0x3a, 0x1e, 0xd7, 0x7c, 0xa6, + 0xaa, 0x39, 0xb1, 0x3e, 0x9b, 0xed, 0xae, 0xd6, 0xae, 0x5f, 0x88, 0xb3, 0xb0, 0x41, 0x93, 0x7e, + 0x83, 0xd2, 0xec, 0x62, 0x73, 0x27, 0x08, 0xdd, 0x7f, 0xa5, 0x53, 0x69, 0xae, 0x1a, 0x3d, 0x27, + 0x57, 0x25, 0xb0, 0xfa, 0xb9, 0x2a, 0x54, 0xeb, 0x90, 0x6d, 0x1e, 0x57, 0x69, 0xc3, 0x7c, 0xae, + 0xd2, 0xc6, 0x09, 0x57, 0x69, 0x4d, 0xfa, 0x1b, 0xc2, 0xe5, 0x93, 0xb8, 0xac, 0xd9, 0xe6, 0x6f, + 0xc4, 0x3d, 0x89, 0x8f, 0x9e, 0xa7, 0xa0, 0x2a, 0xe4, 0x65, 0x3c, 0xce, 0x14, 0x18, 0xc5, 0x6b, + 0x85, 0xfe, 0x0e, 0x6b, 0xa0, 0xf5, 0x99, 0xe3, 0x83, 0xca, 0x14, 0xb8, 0x50, 0x2b, 0xd4, 0x06, + 0x33, 0xfa, 0x35, 0xc2, 0x95, 0x81, 0xf9, 0x41, 0x79, 0x77, 0xf1, 0xc5, 0xf8, 0x24, 0x15, 0xc3, + 0x37, 0xc4, 0x2b, 0x50, 0xd7, 0x49, 0xa8, 0x6b, 0x6c, 0x75, 0xbe, 0xd1, 0xd7, 0x91, 0xe8, 0x8f, + 0x08, 0xe8, 0xeb, 0x6e, 0x20, 0x59, 0xbb, 0x87, 0xed, 0x69, 0x28, 0xf9, 0x0a, 0x9e, 0xf6, 0x7c, + 0xa7, 0x1d, 0xb9, 0xbc, 0x91, 0x9c, 0xcf, 0x63, 0xea, 0x7c, 0x2e, 0xc0, 0xf2, 0x06, 0x1c, 0xd3, + 0xfb, 0x08, 0x2f, 0xe4, 0xe6, 0xf0, 0xdf, 0x95, 0xf5, 0x16, 0x6c, 0xa2, 0x77, 0x05, 0x0f, 0xb7, + 0xf5, 0x65, 0xe6, 0x1f, 0x5e, 0x1d, 0xfe, 0x42, 0x70, 0xf8, 0x64, 0x5d, 0x41, 0x6a, 0x5f, 0x20, + 0x3c, 0x2d, 0xba, 0xdc, 0x77, 0xe3, 0x84, 0x1b, 0x3a, 0xcb, 0xb1, 0x61, 0x59, 0xbe, 0x05, 0x59, + 0xce, 0xeb, 0x98, 0x7d, 0xf6, 0xe7, 0xcb, 0xb7, 0xd0, 0xb3, 0x56, 0xdf, 0xe4, 0x16, 0xbe, 0xd4, + 0xe5, 0xa1, 0x17, 0xb8, 0x49, 0xb5, 0xe7, 0x93, 0x8d, 0x92, 0xdc, 0xe9, 0xee, 0x28, 0x71, 0x7d, + 0x1e, 0x40, 0x40, 0xe2, 0x60, 0x44, 0xed, 0xc4, 0x7c, 0xfd, 0xcf, 0xcb, 0xf8, 0xa2, 0x4a, 0x9c, + 0x7c, 0x8f, 0x70, 0x69, 0xe0, 0x21, 0x43, 0x6e, 0x66, 0x77, 0xe2, 0x99, 0x8e, 0x42, 0xe3, 0xf9, + 0xf3, 0x19, 0xe9, 0x6a, 0xd3, 0xa5, 0x4f, 0x7f, 0xfe, 0xe3, 0xab, 0xd1, 0x0a, 0x59, 0x84, 0x3b, + 0x6c, 0x27, 0x70, 0xa3, 0x36, 0xef, 0x3f, 0x82, 0x88, 0x8b, 0xc7, 0x35, 0xe3, 0x93, 0x6a, 0x4e, + 0x98, 0xcc, 0x81, 0x62, 0xfc, 0xef, 0x09, 0x1a, 0x10, 0x75, 0x4e, 0x45, 0x9d, 0x26, 0x53, 0x99, + 0x9b, 0x33, 0xf9, 0x0c, 0xc1, 0xad, 0x57, 0x13, 0x28, 0x59, 0xca, 0xf1, 0x74, 0xfa, 0x68, 0x31, + 0x96, 0x87, 0xa9, 0x0d, 0xc8, 0x35, 0x4d, 0xdd, 0xd6, 0x7d, 0x98, 0xce, 0x07, 0xe4, 0x5b, 0x84, + 0xc9, 0x69, 0x46, 0x23, 0x37, 0x06, 0x45, 0xc9, 0x23, 0x76, 0x63, 0xf5, 0x8c, 0xda, 0x00, 0xed, + 0x45, 0x05, 0xed, 0x39, 0x62, 0xa6, 0xa1, 0xa9, 0x01, 0xde, 0x51, 0x17, 0x82, 0x58, 0xf9, 0x04, + 0xa2, 0x75, 0x5f, 0xaf, 0x3c, 0x20, 0x5f, 0x22, 0x5c, 0xc8, 0x52, 0x04, 0xa9, 0xe5, 0x44, 0xce, + 0x65, 0x42, 0xe3, 0xd9, 0x33, 0x68, 0x02, 0xbe, 0x9a, 0xc2, 0x47, 0x49, 0x15, 0xf0, 0xc9, 0x58, + 0xad, 0xd1, 0x43, 0x99, 0xaa, 0xde, 0xe7, 0x08, 0x4f, 0xa6, 0xf7, 0x35, 0xc9, 0xeb, 0x4e, 0x0e, + 0x87, 0x18, 0x2b, 0x43, 0xf5, 0x00, 0xcb, 0xb2, 0xc2, 0x52, 0x25, 0x65, 0xc0, 0x12, 0x09, 0x1e, + 0x36, 0x60, 0x2b, 0x8a, 0x14, 0x92, 0xde, 0x34, 0xc1, 0x1b, 0x6a, 0xe0, 0x34, 0x65, 0x9e, 0x41, + 0x83, 0xa7, 0x29, 0xfb, 0xc8, 0x19, 0x30, 0x4d, 0xfa, 0xd1, 0x92, 0x42, 0xf1, 0x09, 0xea, 0x7f, + 0xb0, 0xac, 0x0c, 0x0a, 0xd0, 0x77, 0x0d, 0x37, 0x6a, 0xc3, 0x15, 0x01, 0xcb, 0xa2, 0xc2, 0x72, + 0x8d, 0xcc, 0x65, 0xb0, 0x24, 0xd7, 0xeb, 0xfa, 0xe6, 0xc3, 0xc3, 0x32, 0x7a, 0x74, 0x58, 0x46, + 0xbf, 0x1f, 0x96, 0xd1, 0xfe, 0x51, 0x79, 0xe4, 0xd1, 0x51, 0x79, 0xe4, 0x97, 0xa3, 0xf2, 0xc8, + 0xfb, 0x56, 0x8a, 0x15, 0xb7, 0x54, 0xb0, 0xd5, 0xdb, 0xac, 0x29, 0xac, 0xe4, 0xf1, 0xba, 0xf6, + 0x82, 0xf5, 0x51, 0xd2, 0xf2, 0x98, 0x22, 0x9b, 0xe3, 0xea, 0x09, 0x72, 0xf3, 0xef, 0x00, 0x00, + 0x00, 0xff, 0xff, 0xc2, 0x9b, 0xf3, 0x1c, 0x90, 0x0f, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/claim/types/tx.pb.go b/x/claim/types/tx.pb.go index 4da6be531f..6d3d0e9eb6 100644 --- a/x/claim/types/tx.pb.go +++ b/x/claim/types/tx.pb.go @@ -445,48 +445,48 @@ func init() { func init() { proto.RegisterFile("stride/claim/tx.proto", fileDescriptor_9d435242bf328977) } var fileDescriptor_9d435242bf328977 = []byte{ - // 645 bytes of a gzipped FileDescriptorProto + // 646 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x54, 0x4f, 0x4f, 0xdb, 0x4e, 0x10, 0x8d, 0x7f, 0x09, 0x7f, 0xb2, 0xfc, 0xa0, 0xb0, 0x02, 0xc9, 0x58, 0xc5, 0xb1, 0x7c, 0x40, - 0x96, 0x2a, 0xec, 0x42, 0x7b, 0xea, 0xa9, 0x04, 0x5a, 0x09, 0x09, 0x2e, 0x06, 0xa9, 0x12, 0x52, - 0x15, 0xad, 0xed, 0xa9, 0x59, 0xd5, 0xf6, 0x46, 0xde, 0x0d, 0x85, 0x4f, 0xd0, 0x2b, 0x9f, 0xa3, - 0x9f, 0x84, 0x23, 0xc7, 0xaa, 0x87, 0xb4, 0x82, 0x73, 0x2f, 0x9c, 0x7a, 0xac, 0xbc, 0xeb, 0x04, - 0x87, 0x84, 0x96, 0x43, 0x4f, 0xf6, 0xbc, 0x37, 0xfb, 0x76, 0x67, 0xde, 0xec, 0xa2, 0x15, 0x2e, - 0x72, 0x1a, 0x81, 0x17, 0x26, 0x84, 0xa6, 0x9e, 0x38, 0x73, 0xbb, 0x39, 0x13, 0x0c, 0xff, 0xaf, - 0x60, 0x57, 0xc2, 0xc6, 0x72, 0xcc, 0x62, 0x26, 0x09, 0xaf, 0xf8, 0x53, 0x39, 0x86, 0x19, 0x32, - 0x9e, 0x32, 0xee, 0x05, 0x84, 0x83, 0x77, 0xba, 0x19, 0x80, 0x20, 0x9b, 0x5e, 0xc8, 0x68, 0xa6, - 0x78, 0xfb, 0x97, 0x86, 0xf4, 0x03, 0x1e, 0x1f, 0x82, 0xd8, 0xa6, 0x79, 0x94, 0xb3, 0xee, 0x76, - 0x92, 0xb0, 0x90, 0x08, 0xca, 0x32, 0x8e, 0x9f, 0xa2, 0x26, 0x51, 0x21, 0xcb, 0x75, 0xcd, 0xd2, - 0x9c, 0xa6, 0x7f, 0x07, 0xe0, 0x7d, 0x84, 0x89, 0x5a, 0xd3, 0xa1, 0x11, 0x64, 0x82, 0x7e, 0xa0, - 0x90, 0xeb, 0xff, 0x15, 0x69, 0xed, 0xb5, 0xdb, 0x7e, 0x6b, 0xf5, 0x9c, 0xa4, 0xc9, 0x2b, 0x7b, - 0x3c, 0xc7, 0xf6, 0x97, 0x4a, 0x70, 0x6f, 0x88, 0xe1, 0x65, 0x34, 0xd5, 0xe3, 0x90, 0x73, 0xbd, - 0x6e, 0xd5, 0x9d, 0xa6, 0xaf, 0x02, 0x7c, 0x8c, 0x66, 0x3e, 0x01, 0x8d, 0x4f, 0x04, 0xd7, 0x1b, - 0x05, 0xde, 0x7e, 0x7d, 0xd9, 0x6f, 0xd5, 0xbe, 0xf5, 0x5b, 0xeb, 0x31, 0x15, 0x27, 0xbd, 0xc0, - 0x0d, 0x59, 0xea, 0x95, 0x25, 0xaa, 0xcf, 0x06, 0x8f, 0x3e, 0x7a, 0xe2, 0xbc, 0x0b, 0xdc, 0xdd, - 0x85, 0xf0, 0xb6, 0xdf, 0x5a, 0x50, 0xc7, 0x28, 0x65, 0x6c, 0x7f, 0x20, 0x68, 0xdb, 0xc8, 0x7a, - 0xa8, 0x72, 0x1f, 0x78, 0x97, 0x65, 0x1c, 0x6c, 0x07, 0xe1, 0x03, 0x1e, 0xef, 0x14, 0x0d, 0x7e, - 0x9b, 0x03, 0x6c, 0xa7, 0xac, 0x97, 0x09, 0x8c, 0x51, 0xa3, 0x38, 0x5e, 0xd9, 0x12, 0xf9, 0x6f, - 0x5f, 0x68, 0xc8, 0x18, 0x4f, 0x1d, 0x08, 0xe1, 0x1c, 0x2d, 0x48, 0x9b, 0x20, 0xea, 0x10, 0xc9, - 0xc8, 0x3a, 0xe7, 0xb6, 0x56, 0x5d, 0x75, 0x6c, 0xb7, 0x30, 0xc8, 0x2d, 0x0d, 0x72, 0x77, 0x18, - 0xcd, 0xda, 0xcf, 0x8b, 0x52, 0xbf, 0x7c, 0x6f, 0x39, 0x8f, 0x28, 0xb5, 0x58, 0xc0, 0xfd, 0xf9, - 0x72, 0x0b, 0xb5, 0xb7, 0xfd, 0x53, 0x43, 0x8b, 0xc5, 0x91, 0x72, 0x20, 0x02, 0xca, 0x22, 0xb1, - 0x85, 0xe6, 0x22, 0x5a, 0x0c, 0x4e, 0xd0, 0xbb, 0x73, 0xb5, 0x0a, 0x61, 0x13, 0xa1, 0xfb, 0x7e, - 0xfa, 0x15, 0x04, 0xaf, 0xa2, 0xd9, 0xf0, 0x84, 0xd0, 0xac, 0x43, 0x23, 0x7d, 0x5a, 0xb2, 0x33, - 0x32, 0xde, 0x8b, 0x0a, 0x13, 0x23, 0xc8, 0x58, 0xaa, 0x4f, 0x49, 0x5c, 0x05, 0x78, 0x0d, 0x21, - 0x2e, 0x48, 0x2e, 0x3a, 0x82, 0xa6, 0xa0, 0xd7, 0x2d, 0xcd, 0x69, 0xf8, 0x4d, 0x89, 0x1c, 0xd1, - 0x14, 0xb0, 0x81, 0x66, 0xa3, 0x5e, 0x2e, 0x1b, 0xaf, 0x37, 0x24, 0x39, 0x8c, 0xf1, 0x33, 0xb4, - 0x44, 0x7a, 0x82, 0x75, 0x69, 0xc2, 0x44, 0x07, 0x32, 0x12, 0x24, 0x10, 0xe9, 0x33, 0x96, 0xe6, - 0xcc, 0xfa, 0x8b, 0x43, 0xe2, 0x8d, 0xc2, 0x6d, 0x43, 0x8e, 0xf2, 0x48, 0xb9, 0x43, 0x23, 0x8f, - 0x64, 0x2b, 0x76, 0x21, 0x81, 0x7f, 0xd8, 0x8a, 0x72, 0xc7, 0x11, 0xd5, 0xc1, 0x8e, 0x5b, 0x9f, - 0xeb, 0xa8, 0x7e, 0xc0, 0x63, 0xcc, 0xd0, 0xca, 0xe4, 0xdb, 0xb5, 0xee, 0x56, 0xef, 0xaf, 0xfb, - 0xd0, 0x2c, 0x1a, 0xee, 0xe3, 0xf2, 0x86, 0xa3, 0xf6, 0x1e, 0x3d, 0xb9, 0x3f, 0xb0, 0xd6, 0x98, - 0xc4, 0xbd, 0x0c, 0xc3, 0xf9, 0x5b, 0xc6, 0x50, 0xfe, 0x1d, 0x9a, 0x1f, 0x9d, 0x28, 0x73, 0x7c, - 0x69, 0x95, 0x37, 0xd6, 0xff, 0xcc, 0x57, 0x85, 0x47, 0xfd, 0x19, 0x17, 0x1e, 0xe1, 0x27, 0x08, - 0x4f, 0x74, 0xa2, 0xbd, 0x77, 0x79, 0x6d, 0x6a, 0x57, 0xd7, 0xa6, 0xf6, 0xe3, 0xda, 0xd4, 0x2e, - 0x6e, 0xcc, 0xda, 0xd5, 0x8d, 0x59, 0xfb, 0x7a, 0x63, 0xd6, 0x8e, 0xbd, 0xca, 0xd5, 0x3a, 0x94, - 0x5a, 0x1b, 0xfb, 0x24, 0xe0, 0x5e, 0xf9, 0xde, 0x9e, 0x6e, 0xbe, 0xf4, 0xce, 0x06, 0xaf, 0x6e, - 0x71, 0xcf, 0x82, 0x69, 0xf9, 0x6a, 0xbe, 0xf8, 0x1d, 0x00, 0x00, 0xff, 0xff, 0x50, 0x87, 0xde, - 0x2b, 0x92, 0x05, 0x00, 0x00, + 0x96, 0x2a, 0xec, 0x42, 0xd5, 0x4b, 0x4f, 0x25, 0xd0, 0x4a, 0x48, 0x70, 0x31, 0x48, 0x95, 0x90, + 0xaa, 0x68, 0x6d, 0x4f, 0xcd, 0xaa, 0xb6, 0x37, 0xf2, 0x6e, 0x28, 0x7c, 0x82, 0x5e, 0xf9, 0x1c, + 0xfd, 0x24, 0x1c, 0x39, 0x56, 0x3d, 0xa4, 0x15, 0x9c, 0x7b, 0xe1, 0xd4, 0x63, 0xe5, 0x5d, 0x27, + 0x38, 0x24, 0xb4, 0x1c, 0x7a, 0xb2, 0xe7, 0xbd, 0xd9, 0xb7, 0x3b, 0xf3, 0x66, 0x17, 0xad, 0x70, + 0x91, 0xd3, 0x08, 0xbc, 0x30, 0x21, 0x34, 0xf5, 0xc4, 0x99, 0xdb, 0xcd, 0x99, 0x60, 0xf8, 0x7f, + 0x05, 0xbb, 0x12, 0x36, 0x96, 0x63, 0x16, 0x33, 0x49, 0x78, 0xc5, 0x9f, 0xca, 0x31, 0xcc, 0x90, + 0xf1, 0x94, 0x71, 0x2f, 0x20, 0x1c, 0xbc, 0xd3, 0xcd, 0x00, 0x04, 0xd9, 0xf4, 0x42, 0x46, 0x33, + 0xc5, 0xdb, 0xbf, 0x34, 0xa4, 0x1f, 0xf0, 0xf8, 0x10, 0xc4, 0x36, 0xcd, 0xa3, 0x9c, 0x75, 0xb7, + 0x93, 0x84, 0x85, 0x44, 0x50, 0x96, 0x71, 0xfc, 0x14, 0x35, 0x89, 0x0a, 0x59, 0xae, 0x6b, 0x96, + 0xe6, 0x34, 0xfd, 0x3b, 0x00, 0xef, 0x23, 0x4c, 0xd4, 0x9a, 0x0e, 0x8d, 0x20, 0x13, 0xf4, 0x03, + 0x85, 0x5c, 0xff, 0xaf, 0x48, 0x6b, 0xaf, 0xdd, 0xf6, 0x5b, 0xab, 0xe7, 0x24, 0x4d, 0x5e, 0xd9, + 0xe3, 0x39, 0xb6, 0xbf, 0x54, 0x82, 0x7b, 0x43, 0x0c, 0x2f, 0xa3, 0xa9, 0x1e, 0x87, 0x9c, 0xeb, + 0x75, 0xab, 0xee, 0x34, 0x7d, 0x15, 0xe0, 0x63, 0x34, 0xf3, 0x09, 0x68, 0x7c, 0x22, 0xb8, 0xde, + 0x28, 0xf0, 0xf6, 0xeb, 0xcb, 0x7e, 0xab, 0xf6, 0xad, 0xdf, 0x5a, 0x8f, 0xa9, 0x38, 0xe9, 0x05, + 0x6e, 0xc8, 0x52, 0xaf, 0x2c, 0x51, 0x7d, 0x36, 0x78, 0xf4, 0xd1, 0x13, 0xe7, 0x5d, 0xe0, 0xee, + 0x2e, 0x84, 0xb7, 0xfd, 0xd6, 0x82, 0x3a, 0x46, 0x29, 0x63, 0xfb, 0x03, 0x41, 0xdb, 0x46, 0xd6, + 0x43, 0x95, 0xfb, 0xc0, 0xbb, 0x2c, 0xe3, 0x60, 0x3b, 0x08, 0x1f, 0xf0, 0x78, 0xa7, 0x68, 0xf0, + 0xdb, 0x1c, 0x60, 0x3b, 0x65, 0xbd, 0x4c, 0x60, 0x8c, 0x1a, 0xc5, 0xf1, 0xca, 0x96, 0xc8, 0x7f, + 0xfb, 0x42, 0x43, 0xc6, 0x78, 0xea, 0x40, 0x08, 0xe7, 0x68, 0x41, 0xda, 0x04, 0x51, 0x87, 0x48, + 0x46, 0xd6, 0x39, 0xb7, 0xb5, 0xea, 0xaa, 0x63, 0xbb, 0x85, 0x41, 0x6e, 0x69, 0x90, 0xbb, 0xc3, + 0x68, 0xd6, 0x7e, 0x5e, 0x94, 0xfa, 0xe5, 0x7b, 0xcb, 0x79, 0x44, 0xa9, 0xc5, 0x02, 0xee, 0xcf, + 0x97, 0x5b, 0xa8, 0xbd, 0xed, 0x9f, 0x1a, 0x5a, 0x2c, 0x8e, 0x94, 0x03, 0x11, 0x50, 0x16, 0x89, + 0x2d, 0x34, 0x17, 0xd1, 0x62, 0x70, 0x82, 0xde, 0x9d, 0xab, 0x55, 0x08, 0x9b, 0x08, 0xdd, 0xf7, + 0xd3, 0xaf, 0x20, 0x78, 0x15, 0xcd, 0x86, 0x27, 0x84, 0x66, 0x1d, 0x1a, 0xe9, 0xd3, 0x92, 0x9d, + 0x91, 0xf1, 0x5e, 0x54, 0x98, 0x18, 0x41, 0xc6, 0x52, 0x7d, 0x4a, 0xe2, 0x2a, 0xc0, 0x6b, 0x08, + 0x71, 0x41, 0x72, 0xd1, 0x11, 0x34, 0x05, 0xbd, 0x6e, 0x69, 0x4e, 0xc3, 0x6f, 0x4a, 0xe4, 0x88, + 0xa6, 0x80, 0x0d, 0x34, 0x1b, 0xf5, 0x72, 0xd9, 0x78, 0xbd, 0x21, 0xc9, 0x61, 0x8c, 0x9f, 0xa1, + 0x25, 0xd2, 0x13, 0xac, 0x4b, 0x13, 0x26, 0x3a, 0x90, 0x91, 0x20, 0x81, 0x48, 0x9f, 0xb1, 0x34, + 0x67, 0xd6, 0x5f, 0x1c, 0x12, 0x6f, 0x14, 0x6e, 0x1b, 0x72, 0x94, 0x47, 0xca, 0x1d, 0x1a, 0x79, + 0x24, 0x5b, 0xb1, 0x0b, 0x09, 0xfc, 0xc3, 0x56, 0x94, 0x3b, 0x8e, 0xa8, 0x0e, 0x76, 0xdc, 0xfa, + 0x5c, 0x47, 0xf5, 0x03, 0x1e, 0x63, 0x86, 0x56, 0x26, 0xdf, 0xae, 0x75, 0xb7, 0x7a, 0x7f, 0xdd, + 0x87, 0x66, 0xd1, 0x70, 0x1f, 0x97, 0x37, 0x1c, 0xb5, 0xf7, 0xe8, 0xc9, 0xfd, 0x81, 0xb5, 0xc6, + 0x24, 0xee, 0x65, 0x18, 0xce, 0xdf, 0x32, 0x86, 0xf2, 0xef, 0xd0, 0xfc, 0xe8, 0x44, 0x99, 0xe3, + 0x4b, 0xab, 0xbc, 0xb1, 0xfe, 0x67, 0xbe, 0x2a, 0x3c, 0xea, 0xcf, 0xb8, 0xf0, 0x08, 0x3f, 0x41, + 0x78, 0xa2, 0x13, 0xed, 0xbd, 0xcb, 0x6b, 0x53, 0xbb, 0xba, 0x36, 0xb5, 0x1f, 0xd7, 0xa6, 0x76, + 0x71, 0x63, 0xd6, 0xae, 0x6e, 0xcc, 0xda, 0xd7, 0x1b, 0xb3, 0x76, 0xec, 0x55, 0xae, 0xd6, 0xa1, + 0xd4, 0xda, 0xd8, 0x27, 0x01, 0xf7, 0xca, 0xf7, 0xf6, 0x74, 0xf3, 0xa5, 0x77, 0x36, 0x78, 0x75, + 0x8b, 0x7b, 0x16, 0x4c, 0xcb, 0x57, 0xf3, 0xc5, 0xef, 0x00, 0x00, 0x00, 0xff, 0xff, 0x84, 0x6d, + 0xad, 0xb0, 0x92, 0x05, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/claim/vesting/client/cli/tx.go b/x/claim/vesting/client/cli/tx.go index d9f761b51e..fe233f504a 100644 --- a/x/claim/vesting/client/cli/tx.go +++ b/x/claim/vesting/client/cli/tx.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" - "github.com/Stride-Labs/stride/v14/x/claim/vesting/types" + "github.com/Stride-Labs/stride/v15/x/claim/vesting/types" ) // GetTxCmd returns stride vesting module's transaction commands. diff --git a/x/claim/vesting/client/testutil/suite.go b/x/claim/vesting/client/testutil/suite.go index 8ffd320096..c63a5554e5 100644 --- a/x/claim/vesting/client/testutil/suite.go +++ b/x/claim/vesting/client/testutil/suite.go @@ -3,7 +3,7 @@ package testutil import ( "github.com/stretchr/testify/suite" - "github.com/Stride-Labs/stride/v14/testutil/network" + "github.com/Stride-Labs/stride/v15/testutil/network" ) type IntegrationTestSuite struct { diff --git a/x/claim/vesting/handler.go b/x/claim/vesting/handler.go index 7635fcc976..e071a55613 100644 --- a/x/claim/vesting/handler.go +++ b/x/claim/vesting/handler.go @@ -6,7 +6,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/cosmos/cosmos-sdk/x/auth/keeper" - "github.com/Stride-Labs/stride/v14/x/claim/vesting/types" + "github.com/Stride-Labs/stride/v15/x/claim/vesting/types" ) // NewHandler returns a handler for x/auth message types. diff --git a/x/claim/vesting/module.go b/x/claim/vesting/module.go index 59c84e68bd..1b20e4eca7 100644 --- a/x/claim/vesting/module.go +++ b/x/claim/vesting/module.go @@ -15,8 +15,8 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" "github.com/cosmos/cosmos-sdk/x/auth/keeper" - "github.com/Stride-Labs/stride/v14/x/claim/vesting/client/cli" - "github.com/Stride-Labs/stride/v14/x/claim/vesting/types" + "github.com/Stride-Labs/stride/v15/x/claim/vesting/client/cli" + "github.com/Stride-Labs/stride/v15/x/claim/vesting/types" ) var ( diff --git a/x/claim/vesting/msg_server.go b/x/claim/vesting/msg_server.go index 2238632ca8..6710301843 100644 --- a/x/claim/vesting/msg_server.go +++ b/x/claim/vesting/msg_server.go @@ -3,7 +3,7 @@ package vesting import ( "github.com/cosmos/cosmos-sdk/x/auth/keeper" - "github.com/Stride-Labs/stride/v14/x/claim/vesting/types" + "github.com/Stride-Labs/stride/v15/x/claim/vesting/types" ) type msgServer struct { diff --git a/x/claim/vesting/types/codec.go b/x/claim/vesting/types/codec.go index a97e61330d..32a702052f 100644 --- a/x/claim/vesting/types/codec.go +++ b/x/claim/vesting/types/codec.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/msgservice" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/Stride-Labs/stride/v14/x/claim/vesting/exported" + "github.com/Stride-Labs/stride/v15/x/claim/vesting/exported" ) // RegisterLegacyAminoCodec registers the vesting interfaces and concrete types on the diff --git a/x/claim/vesting/types/common_test.go b/x/claim/vesting/types/common_test.go index e935d4439d..35ae88d744 100644 --- a/x/claim/vesting/types/common_test.go +++ b/x/claim/vesting/types/common_test.go @@ -1,7 +1,7 @@ package types_test import ( - strideApp "github.com/Stride-Labs/stride/v14/app" + strideApp "github.com/Stride-Labs/stride/v15/app" ) var ( diff --git a/x/claim/vesting/types/tx.pb.go b/x/claim/vesting/types/tx.pb.go index f2790098b3..2cdffbb46b 100644 --- a/x/claim/vesting/types/tx.pb.go +++ b/x/claim/vesting/types/tx.pb.go @@ -33,9 +33,9 @@ var fileDescriptor_5ebed07aad5e90bd = []byte{ 0xd3, 0x9d, 0x02, 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, 0x3c, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x57, 0x3f, 0x18, 0xac, 0x57, 0xd7, 0x27, 0x31, - 0xa9, 0x58, 0x1f, 0x66, 0x81, 0xa1, 0x89, 0x7e, 0x85, 0x7e, 0x72, 0x4e, 0x62, 0x66, 0x2e, 0xc2, + 0xa9, 0x58, 0x1f, 0x66, 0x81, 0xa1, 0xa9, 0x7e, 0x85, 0x7e, 0x72, 0x4e, 0x62, 0x66, 0x2e, 0xc2, 0xb2, 0xca, 0x82, 0xd4, 0xe2, 0x24, 0x36, 0xb0, 0x85, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, - 0x1e, 0x6d, 0x01, 0xb0, 0x8b, 0x00, 0x00, 0x00, + 0xcf, 0x85, 0xe6, 0xbe, 0x8b, 0x00, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/claim/vesting/types/vesting.pb.go b/x/claim/vesting/types/vesting.pb.go index c6ddacbb50..263c1f8855 100644 --- a/x/claim/vesting/types/vesting.pb.go +++ b/x/claim/vesting/types/vesting.pb.go @@ -187,7 +187,7 @@ var fileDescriptor_41f0278a453c26b3 = []byte{ // 590 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54, 0x41, 0x6f, 0xd3, 0x3e, 0x1c, 0x8d, 0xd7, 0xae, 0xff, 0xfd, 0x5d, 0xd8, 0x46, 0x18, 0x25, 0x4c, 0x23, 0xa9, 0x72, 0xea, - 0x65, 0x09, 0x1d, 0x48, 0x48, 0xbd, 0x11, 0x24, 0xa4, 0x89, 0x1d, 0x20, 0x4c, 0x1c, 0x76, 0x89, + 0x65, 0x09, 0x1d, 0x42, 0x48, 0xbd, 0x11, 0x24, 0xa4, 0x89, 0x1d, 0x20, 0x4c, 0x1c, 0x76, 0x89, 0x9c, 0xc4, 0xa4, 0x16, 0x4d, 0x5c, 0xc5, 0xee, 0x44, 0xbf, 0x01, 0x12, 0x17, 0x90, 0x38, 0x70, 0xdc, 0x99, 0x4f, 0x32, 0x89, 0x4b, 0xc5, 0x89, 0x53, 0x41, 0xad, 0xf8, 0x02, 0xfb, 0x04, 0x28, 0xb6, 0xd3, 0xb2, 0xec, 0x50, 0x8d, 0x53, 0x62, 0xff, 0xfc, 0x9e, 0xdf, 0xef, 0xd9, 0xcf, 0x70, @@ -221,7 +221,7 @@ var fileDescriptor_41f0278a453c26b3 = []byte{ 0x99, 0x99, 0xe0, 0xd7, 0xcc, 0x04, 0x1f, 0xe7, 0xa6, 0x36, 0x99, 0x9b, 0xda, 0x8f, 0xb9, 0xa9, 0x9d, 0x3c, 0xfe, 0xcb, 0x5a, 0xe9, 0xc4, 0xfe, 0x11, 0x0a, 0x99, 0x5b, 0xbe, 0x5f, 0xdd, 0x47, 0xee, 0x3b, 0x37, 0x1a, 0x20, 0x92, 0x2e, 0xde, 0x32, 0xe1, 0x77, 0xd8, 0x10, 0x8f, 0xcc, 0xc3, - 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x53, 0xb9, 0xcf, 0x87, 0xea, 0x04, 0x00, 0x00, + 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x82, 0x51, 0x28, 0x89, 0xea, 0x04, 0x00, 0x00, } func (m *BaseVestingAccount) Marshal() (dAtA []byte, err error) { diff --git a/x/claim/vesting/types/vesting_account.go b/x/claim/vesting/types/vesting_account.go index d3566d1f9e..e4ab8b95ff 100644 --- a/x/claim/vesting/types/vesting_account.go +++ b/x/claim/vesting/types/vesting_account.go @@ -12,8 +12,8 @@ import ( sdkmath "cosmossdk.io/math" - "github.com/Stride-Labs/stride/v14/utils" - vestexported "github.com/Stride-Labs/stride/v14/x/claim/vesting/exported" + "github.com/Stride-Labs/stride/v15/utils" + vestexported "github.com/Stride-Labs/stride/v15/x/claim/vesting/exported" ) // Compile-time type assertions diff --git a/x/claim/vesting/types/vesting_account_test.go b/x/claim/vesting/types/vesting_account_test.go index ff2c891d10..23f71da458 100644 --- a/x/claim/vesting/types/vesting_account_test.go +++ b/x/claim/vesting/types/vesting_account_test.go @@ -11,7 +11,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/Stride-Labs/stride/v14/x/claim/vesting/types" + "github.com/Stride-Labs/stride/v15/x/claim/vesting/types" ) var ( diff --git a/x/epochs/client/cli/query.go b/x/epochs/client/cli/query.go index 6543534a6b..615ffe68f1 100644 --- a/x/epochs/client/cli/query.go +++ b/x/epochs/client/cli/query.go @@ -12,7 +12,7 @@ import ( "github.com/spf13/cast" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/epochs/types" + "github.com/Stride-Labs/stride/v15/x/epochs/types" ) // GetQueryCmd returns the cli query commands for this module diff --git a/x/epochs/genesis.go b/x/epochs/genesis.go index 3ff139034d..556da21c95 100644 --- a/x/epochs/genesis.go +++ b/x/epochs/genesis.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/epochs/keeper" - "github.com/Stride-Labs/stride/v14/x/epochs/types" + "github.com/Stride-Labs/stride/v15/x/epochs/keeper" + "github.com/Stride-Labs/stride/v15/x/epochs/types" ) // InitGenesis initializes the capability module's state from a provided genesis diff --git a/x/epochs/genesis_test.go b/x/epochs/genesis_test.go index 5042b8995e..8d4ab5dae7 100644 --- a/x/epochs/genesis_test.go +++ b/x/epochs/genesis_test.go @@ -5,10 +5,10 @@ import ( "github.com/stretchr/testify/require" - keepertest "github.com/Stride-Labs/stride/v14/testutil/keeper" - "github.com/Stride-Labs/stride/v14/testutil/nullify" - "github.com/Stride-Labs/stride/v14/x/epochs" - "github.com/Stride-Labs/stride/v14/x/epochs/types" + keepertest "github.com/Stride-Labs/stride/v15/testutil/keeper" + "github.com/Stride-Labs/stride/v15/testutil/nullify" + "github.com/Stride-Labs/stride/v15/x/epochs" + "github.com/Stride-Labs/stride/v15/x/epochs/types" ) func TestGenesis(t *testing.T) { diff --git a/x/epochs/handler.go b/x/epochs/handler.go index 2c3063f534..bf9caa9457 100644 --- a/x/epochs/handler.go +++ b/x/epochs/handler.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/Stride-Labs/stride/v14/x/epochs/keeper" - "github.com/Stride-Labs/stride/v14/x/epochs/types" + "github.com/Stride-Labs/stride/v15/x/epochs/keeper" + "github.com/Stride-Labs/stride/v15/x/epochs/types" ) // NewHandler returns a handler for epochs module messages diff --git a/x/epochs/keeper/abci.go b/x/epochs/keeper/abci.go index 5e35bc4e32..9e65a0535f 100644 --- a/x/epochs/keeper/abci.go +++ b/x/epochs/keeper/abci.go @@ -9,8 +9,8 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/utils" - "github.com/Stride-Labs/stride/v14/x/epochs/types" + "github.com/Stride-Labs/stride/v15/utils" + "github.com/Stride-Labs/stride/v15/x/epochs/types" ) // BeginBlocker of epochs module diff --git a/x/epochs/keeper/abci_test.go b/x/epochs/keeper/abci_test.go index e434dadf0f..d0e29c8420 100644 --- a/x/epochs/keeper/abci_test.go +++ b/x/epochs/keeper/abci_test.go @@ -4,8 +4,8 @@ import ( "fmt" "time" - "github.com/Stride-Labs/stride/v14/x/epochs" - "github.com/Stride-Labs/stride/v14/x/epochs/types" + "github.com/Stride-Labs/stride/v15/x/epochs" + "github.com/Stride-Labs/stride/v15/x/epochs/types" ) func (suite *KeeperTestSuite) TestEpochInfoChangesBeginBlockerAndInitGenesis() { diff --git a/x/epochs/keeper/epoch.go b/x/epochs/keeper/epoch.go index 97bc568296..3441b2645c 100644 --- a/x/epochs/keeper/epoch.go +++ b/x/epochs/keeper/epoch.go @@ -4,7 +4,7 @@ import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/epochs/types" + "github.com/Stride-Labs/stride/v15/x/epochs/types" ) // GetEpochInfo returns epoch info by identifier diff --git a/x/epochs/keeper/epoch_test.go b/x/epochs/keeper/epoch_test.go index d2761ed056..222461733d 100644 --- a/x/epochs/keeper/epoch_test.go +++ b/x/epochs/keeper/epoch_test.go @@ -5,7 +5,7 @@ import ( _ "github.com/stretchr/testify/suite" - "github.com/Stride-Labs/stride/v14/x/epochs/types" + "github.com/Stride-Labs/stride/v15/x/epochs/types" ) func (suite *KeeperTestSuite) TestEpochLifeCycle() { diff --git a/x/epochs/keeper/grpc_query.go b/x/epochs/keeper/grpc_query.go index fe819c240c..5a46563c29 100644 --- a/x/epochs/keeper/grpc_query.go +++ b/x/epochs/keeper/grpc_query.go @@ -9,7 +9,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/Stride-Labs/stride/v14/x/epochs/types" + "github.com/Stride-Labs/stride/v15/x/epochs/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/epochs/keeper/grpc_query_test.go b/x/epochs/keeper/grpc_query_test.go index 6c89dd3fa4..45f8ac8d91 100644 --- a/x/epochs/keeper/grpc_query_test.go +++ b/x/epochs/keeper/grpc_query_test.go @@ -6,7 +6,7 @@ import ( _ "github.com/stretchr/testify/suite" - "github.com/Stride-Labs/stride/v14/x/epochs/types" + "github.com/Stride-Labs/stride/v15/x/epochs/types" ) func (suite *KeeperTestSuite) TestQueryEpochInfos() { diff --git a/x/epochs/keeper/hooks.go b/x/epochs/keeper/hooks.go index 45b5cfa35f..38cdeba2da 100644 --- a/x/epochs/keeper/hooks.go +++ b/x/epochs/keeper/hooks.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/epochs/types" + "github.com/Stride-Labs/stride/v15/x/epochs/types" ) // AfterEpochEnd executes the indicated hook after epochs ends diff --git a/x/epochs/keeper/keeper.go b/x/epochs/keeper/keeper.go index 0194e74823..be714ccd2e 100644 --- a/x/epochs/keeper/keeper.go +++ b/x/epochs/keeper/keeper.go @@ -8,7 +8,7 @@ import ( storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/epochs/types" + "github.com/Stride-Labs/stride/v15/x/epochs/types" ) // Keeper of this module maintains collections of epochs and hooks. diff --git a/x/epochs/keeper/keeper_test.go b/x/epochs/keeper/keeper_test.go index c335efca41..c4657733bc 100644 --- a/x/epochs/keeper/keeper_test.go +++ b/x/epochs/keeper/keeper_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/suite" - "github.com/Stride-Labs/stride/v14/app/apptesting" - "github.com/Stride-Labs/stride/v14/x/epochs/types" + "github.com/Stride-Labs/stride/v15/app/apptesting" + "github.com/Stride-Labs/stride/v15/x/epochs/types" ) type KeeperTestSuite struct { diff --git a/x/epochs/module.go b/x/epochs/module.go index 376290dc14..23154d0765 100644 --- a/x/epochs/module.go +++ b/x/epochs/module.go @@ -20,10 +20,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/Stride-Labs/stride/v14/x/epochs/client/cli" - "github.com/Stride-Labs/stride/v14/x/epochs/keeper" - "github.com/Stride-Labs/stride/v14/x/epochs/simulation" - "github.com/Stride-Labs/stride/v14/x/epochs/types" + "github.com/Stride-Labs/stride/v15/x/epochs/client/cli" + "github.com/Stride-Labs/stride/v15/x/epochs/keeper" + "github.com/Stride-Labs/stride/v15/x/epochs/simulation" + "github.com/Stride-Labs/stride/v15/x/epochs/types" ) var ( diff --git a/x/epochs/simulation/genesis.go b/x/epochs/simulation/genesis.go index 1ee1ef2d7a..ac927984fc 100644 --- a/x/epochs/simulation/genesis.go +++ b/x/epochs/simulation/genesis.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" - "github.com/Stride-Labs/stride/v14/x/epochs/types" + "github.com/Stride-Labs/stride/v15/x/epochs/types" ) // RandomizedGenState generates a random GenesisState for mint diff --git a/x/epochs/types/genesis.pb.go b/x/epochs/types/genesis.pb.go index 050e7138b5..3f75668515 100644 --- a/x/epochs/types/genesis.pb.go +++ b/x/epochs/types/genesis.pb.go @@ -175,33 +175,33 @@ var fileDescriptor_92af8154b2eb736d = []byte{ // 468 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x93, 0xbf, 0x6f, 0xd3, 0x40, 0x14, 0xc7, 0x73, 0x24, 0x84, 0xe6, 0xda, 0x0a, 0x71, 0x2a, 0x70, 0x04, 0x61, 0x5b, 0x66, 0xb1, - 0x04, 0xd8, 0xb4, 0x54, 0x0c, 0xb0, 0x85, 0xdf, 0x88, 0xc9, 0x61, 0x40, 0x2c, 0x91, 0x93, 0x5c, - 0xce, 0x27, 0xd5, 0x3e, 0xcb, 0xf7, 0x8c, 0xc8, 0xc6, 0xcc, 0xd4, 0x91, 0x3f, 0xa9, 0x63, 0x47, - 0x26, 0x83, 0x92, 0x8d, 0xb1, 0x7f, 0x01, 0xf2, 0x9d, 0x1d, 0x52, 0x02, 0xea, 0x66, 0xdf, 0xe7, - 0xfb, 0xbe, 0xdf, 0x7b, 0x4f, 0xef, 0xf0, 0x6d, 0x05, 0xb9, 0x98, 0xb2, 0x80, 0x65, 0x72, 0x12, - 0xab, 0x80, 0xb3, 0x94, 0x29, 0xa1, 0xfc, 0x2c, 0x97, 0x20, 0xc9, 0xae, 0x81, 0xbe, 0x81, 0xfd, - 0x3d, 0x2e, 0xb9, 0xd4, 0x24, 0xa8, 0xbe, 0x8c, 0xa8, 0x6f, 0x71, 0x29, 0xf9, 0x11, 0x0b, 0xf4, - 0xdf, 0xb8, 0x98, 0x05, 0xd3, 0x22, 0x8f, 0x40, 0xc8, 0xb4, 0xe6, 0xf6, 0xdf, 0x1c, 0x44, 0xc2, - 0x14, 0x44, 0x49, 0x66, 0x04, 0xee, 0xd7, 0x0e, 0xee, 0xbd, 0xa8, 0x12, 0xde, 0xa4, 0x33, 0x49, - 0x2c, 0x8c, 0xc5, 0x94, 0xa5, 0x20, 0x66, 0x82, 0xe5, 0x14, 0x39, 0xc8, 0xeb, 0x85, 0x6b, 0x27, - 0xe4, 0x03, 0xc6, 0x0a, 0xa2, 0x1c, 0x46, 0x95, 0x0d, 0xbd, 0xe4, 0x20, 0x6f, 0xfb, 0xa0, 0xef, - 0x9b, 0x0c, 0xbf, 0xc9, 0xf0, 0xdf, 0x37, 0x19, 0x83, 0x3b, 0x27, 0xa5, 0xdd, 0x3a, 0x2b, 0xed, - 0x6b, 0xf3, 0x28, 0x39, 0x7a, 0xe2, 0xfe, 0xa9, 0x75, 0x8f, 0x7f, 0xd8, 0x28, 0xec, 0xe9, 0x83, - 0x4a, 0x4e, 0x62, 0xbc, 0xd5, 0x5c, 0x9d, 0xb6, 0xb5, 0xef, 0xad, 0x0d, 0xdf, 0xe7, 0xb5, 0x60, - 0xb0, 0x5f, 0xd9, 0xfe, 0x2a, 0x6d, 0xd2, 0x94, 0xdc, 0x97, 0x89, 0x00, 0x96, 0x64, 0x30, 0x3f, - 0x2b, 0xed, 0xab, 0x26, 0xac, 0x61, 0xee, 0xb7, 0x2a, 0x6a, 0xe5, 0x4e, 0xee, 0xe2, 0xdd, 0x49, - 0x91, 0xe7, 0x2c, 0x85, 0x91, 0x1e, 0x2d, 0xed, 0x38, 0xc8, 0x6b, 0x87, 0x3b, 0xf5, 0xa1, 0x1e, - 0x06, 0xf9, 0x82, 0x30, 0x3d, 0xa7, 0x1a, 0xad, 0xf5, 0x7d, 0xf9, 0xc2, 0xbe, 0xef, 0xd5, 0x7d, - 0xdb, 0xe6, 0x2a, 0xff, 0x73, 0x32, 0x53, 0xb8, 0xbe, 0x9e, 0x3c, 0x5c, 0x4d, 0xe4, 0x10, 0xdf, - 0x30, 0xfa, 0x89, 0x2c, 0x52, 0x10, 0x29, 0x37, 0x85, 0x6c, 0x4a, 0xbb, 0x0e, 0xf2, 0xb6, 0xc2, - 0x3d, 0x4d, 0x9f, 0xd5, 0x70, 0x68, 0x18, 0x79, 0x8a, 0xfb, 0xff, 0x4a, 0x8b, 0x99, 0xe0, 0x31, - 0xd0, 0x2b, 0xba, 0xd5, 0x9b, 0x1b, 0x81, 0xaf, 0x35, 0x76, 0x5f, 0xe2, 0x9d, 0x57, 0x66, 0x07, - 0x87, 0x10, 0x01, 0x23, 0x8f, 0x71, 0xd7, 0x6c, 0x1f, 0x45, 0x4e, 0xdb, 0xdb, 0x3e, 0xa0, 0xfe, - 0xb9, 0x9d, 0xf4, 0x57, 0x8b, 0x33, 0xe8, 0x54, 0x0d, 0x87, 0xb5, 0x7a, 0xf0, 0xf6, 0x64, 0x61, - 0xa1, 0xd3, 0x85, 0x85, 0x7e, 0x2e, 0x2c, 0x74, 0xbc, 0xb4, 0x5a, 0xa7, 0x4b, 0xab, 0xf5, 0x7d, - 0x69, 0xb5, 0x3e, 0x3e, 0xe4, 0x02, 0xe2, 0x62, 0xec, 0x4f, 0x64, 0x12, 0x0c, 0xb5, 0xd7, 0x83, - 0x77, 0xd1, 0x58, 0x05, 0xf5, 0x43, 0xf8, 0xb4, 0x7f, 0x18, 0x7c, 0x6e, 0x9e, 0x03, 0xcc, 0x33, - 0xa6, 0xc6, 0x5d, 0x3d, 0xde, 0x47, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0xb3, 0xe3, 0xad, 0x9d, + 0x04, 0xd8, 0xb4, 0xfc, 0x18, 0x60, 0x0b, 0xbf, 0x11, 0x93, 0xc3, 0x80, 0x58, 0x22, 0x27, 0xb9, + 0x9c, 0x4f, 0xaa, 0x7d, 0x96, 0xef, 0x19, 0x91, 0x8d, 0x99, 0xa9, 0x23, 0x7f, 0x52, 0xc7, 0x8e, + 0x4c, 0x06, 0x25, 0x1b, 0x63, 0xff, 0x02, 0xe4, 0x3b, 0x3b, 0xa4, 0x04, 0xd4, 0xcd, 0xbe, 0xcf, + 0xf7, 0x7d, 0xbf, 0xf7, 0x9e, 0xde, 0xe1, 0x9b, 0x0a, 0x72, 0x31, 0x65, 0x01, 0xcb, 0xe4, 0x24, + 0x56, 0x01, 0x67, 0x29, 0x53, 0x42, 0xf9, 0x59, 0x2e, 0x41, 0x92, 0x5d, 0x03, 0x7d, 0x03, 0xfb, + 0x7b, 0x5c, 0x72, 0xa9, 0x49, 0x50, 0x7d, 0x19, 0x51, 0xdf, 0xe2, 0x52, 0xf2, 0x43, 0x16, 0xe8, + 0xbf, 0x71, 0x31, 0x0b, 0xa6, 0x45, 0x1e, 0x81, 0x90, 0x69, 0xcd, 0xed, 0xbf, 0x39, 0x88, 0x84, + 0x29, 0x88, 0x92, 0xcc, 0x08, 0xdc, 0xaf, 0x1d, 0xdc, 0x7b, 0x51, 0x25, 0xbc, 0x49, 0x67, 0x92, + 0x58, 0x18, 0x8b, 0x29, 0x4b, 0x41, 0xcc, 0x04, 0xcb, 0x29, 0x72, 0x90, 0xd7, 0x0b, 0xd7, 0x4e, + 0xc8, 0x07, 0x8c, 0x15, 0x44, 0x39, 0x8c, 0x2a, 0x1b, 0x7a, 0xc1, 0x41, 0xde, 0xf6, 0x41, 0xdf, + 0x37, 0x19, 0x7e, 0x93, 0xe1, 0xbf, 0x6f, 0x32, 0x06, 0xb7, 0x8e, 0x4b, 0xbb, 0x75, 0x5a, 0xda, + 0x57, 0xe6, 0x51, 0x72, 0xf8, 0xc4, 0xfd, 0x53, 0xeb, 0x1e, 0xfd, 0xb0, 0x51, 0xd8, 0xd3, 0x07, + 0x95, 0x9c, 0xc4, 0x78, 0xab, 0xb9, 0x3a, 0x6d, 0x6b, 0xdf, 0x1b, 0x1b, 0xbe, 0xcf, 0x6b, 0xc1, + 0x60, 0xbf, 0xb2, 0xfd, 0x55, 0xda, 0xa4, 0x29, 0xb9, 0x2b, 0x13, 0x01, 0x2c, 0xc9, 0x60, 0x7e, + 0x5a, 0xda, 0x97, 0x4d, 0x58, 0xc3, 0xdc, 0x6f, 0x55, 0xd4, 0xca, 0x9d, 0xdc, 0xc6, 0xbb, 0x93, + 0x22, 0xcf, 0x59, 0x0a, 0x23, 0x3d, 0x5a, 0xda, 0x71, 0x90, 0xd7, 0x0e, 0x77, 0xea, 0x43, 0x3d, + 0x0c, 0xf2, 0x05, 0x61, 0x7a, 0x46, 0x35, 0x5a, 0xeb, 0xfb, 0xe2, 0xb9, 0x7d, 0xdf, 0xa9, 0xfb, + 0xb6, 0xcd, 0x55, 0xfe, 0xe7, 0x64, 0xa6, 0x70, 0x75, 0x3d, 0x79, 0xb8, 0x9a, 0xc8, 0x43, 0x7c, + 0xcd, 0xe8, 0x27, 0xb2, 0x48, 0x41, 0xa4, 0xdc, 0x14, 0xb2, 0x29, 0xed, 0x3a, 0xc8, 0xdb, 0x0a, + 0xf7, 0x34, 0x7d, 0x56, 0xc3, 0xa1, 0x61, 0xe4, 0x29, 0xee, 0xff, 0x2b, 0x2d, 0x66, 0x82, 0xc7, + 0x40, 0x2f, 0xe9, 0x56, 0xaf, 0x6f, 0x04, 0xbe, 0xd6, 0xd8, 0x7d, 0x89, 0x77, 0x5e, 0x99, 0x1d, + 0x1c, 0x42, 0x04, 0x8c, 0x3c, 0xc6, 0x5d, 0xb3, 0x7d, 0x14, 0x39, 0x6d, 0x6f, 0xfb, 0x80, 0xfa, + 0x67, 0x76, 0xd2, 0x5f, 0x2d, 0xce, 0xa0, 0x53, 0x35, 0x1c, 0xd6, 0xea, 0xc1, 0xdb, 0xe3, 0x85, + 0x85, 0x4e, 0x16, 0x16, 0xfa, 0xb9, 0xb0, 0xd0, 0xd1, 0xd2, 0x6a, 0x9d, 0x2c, 0xad, 0xd6, 0xf7, + 0xa5, 0xd5, 0xfa, 0x78, 0x9f, 0x0b, 0x88, 0x8b, 0xb1, 0x3f, 0x91, 0x49, 0x30, 0xd4, 0x5e, 0xf7, + 0xde, 0x45, 0x63, 0x15, 0xd4, 0x0f, 0xe1, 0xd3, 0xfe, 0xa3, 0xe0, 0x73, 0xf3, 0x1c, 0x60, 0x9e, + 0x31, 0x35, 0xee, 0xea, 0xf1, 0x3e, 0xf8, 0x1d, 0x00, 0x00, 0xff, 0xff, 0x94, 0x86, 0x88, 0x1c, 0x2c, 0x03, 0x00, 0x00, } diff --git a/x/epochs/types/query.pb.go b/x/epochs/types/query.pb.go index af2fafc930..faf767b2e6 100644 --- a/x/epochs/types/query.pb.go +++ b/x/epochs/types/query.pb.go @@ -317,36 +317,36 @@ var fileDescriptor_de81e87fff8f1327 = []byte{ // 508 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x54, 0x4d, 0x6f, 0xd3, 0x30, 0x18, 0xae, 0x57, 0x36, 0x69, 0xef, 0xb6, 0x8b, 0xc5, 0x47, 0xdb, 0xa1, 0x30, 0xc2, 0xd6, 0x16, - 0x04, 0x36, 0x2d, 0x13, 0x48, 0x9c, 0x10, 0x08, 0x10, 0x08, 0x21, 0x08, 0x37, 0x2e, 0x23, 0xc9, - 0xbc, 0xcc, 0xd2, 0x66, 0x67, 0xb1, 0x3b, 0xb1, 0x0b, 0x07, 0x0e, 0x9c, 0x11, 0xdc, 0xb8, 0xf3, - 0x5f, 0x76, 0x9c, 0xc4, 0x85, 0x13, 0x42, 0x2d, 0x3f, 0x04, 0xc5, 0xf6, 0xd6, 0x04, 0x52, 0xe5, - 0xd4, 0xca, 0xef, 0xf3, 0xe5, 0xe7, 0xb5, 0x02, 0x6d, 0xa5, 0x33, 0xbe, 0xcd, 0x28, 0x4b, 0x65, - 0xbc, 0xab, 0xe8, 0xc1, 0x88, 0x65, 0x47, 0x24, 0xcd, 0xa4, 0x96, 0x78, 0xc5, 0x8e, 0x88, 0x1d, - 0x75, 0xce, 0x27, 0x32, 0x91, 0x66, 0x42, 0xf3, 0x7f, 0x16, 0xd4, 0xb9, 0x9c, 0x48, 0x99, 0xec, - 0x31, 0x1a, 0xa6, 0x9c, 0x86, 0x42, 0x48, 0x1d, 0x6a, 0x2e, 0x85, 0x72, 0xd3, 0x1b, 0xb1, 0x54, - 0xfb, 0x52, 0xd1, 0x28, 0x54, 0xcc, 0x6a, 0xd3, 0xc3, 0x41, 0xc4, 0x74, 0x38, 0xa0, 0x69, 0x98, - 0x70, 0x61, 0xc0, 0x0e, 0xbb, 0x5a, 0x4e, 0x92, 0x30, 0xc1, 0x14, 0x77, 0x42, 0xfe, 0x3b, 0xb8, - 0xf8, 0x3a, 0xa7, 0x3f, 0x36, 0xc3, 0x67, 0x62, 0x47, 0x06, 0xec, 0x60, 0xc4, 0x94, 0xc6, 0x4f, - 0x00, 0xa6, 0x52, 0x2d, 0xb4, 0x86, 0xfa, 0x4b, 0xc3, 0x2e, 0xb1, 0xbe, 0x24, 0xf7, 0x25, 0xf6, - 0x4e, 0xce, 0x97, 0xbc, 0x0a, 0x13, 0xe6, 0xb8, 0x41, 0x81, 0xe9, 0x7f, 0x43, 0x70, 0xe9, 0x3f, - 0x0b, 0x95, 0x4a, 0xa1, 0x18, 0xbe, 0x0b, 0x0b, 0x36, 0x55, 0x0b, 0xad, 0x35, 0xfb, 0x4b, 0xc3, - 0x16, 0x29, 0x55, 0x43, 0x0c, 0x25, 0x67, 0x3c, 0x3c, 0x77, 0xfc, 0xeb, 0x4a, 0x23, 0x70, 0x68, - 0xfc, 0xb4, 0x94, 0x6d, 0xce, 0x64, 0xeb, 0xd5, 0x66, 0xb3, 0xa6, 0xa5, 0x70, 0xf7, 0xa1, 0x65, - 0xb2, 0x3d, 0x1a, 0x65, 0x19, 0x13, 0xda, 0xf8, 0x9d, 0x16, 0xe0, 0x01, 0xf0, 0x6d, 0x26, 0x34, - 0xdf, 0xe1, 0x2c, 0x33, 0x05, 0x2c, 0x06, 0x85, 0x13, 0xff, 0x01, 0xb4, 0x2b, 0xb8, 0xee, 0x66, - 0xd7, 0x60, 0x25, 0xb6, 0xe7, 0x5b, 0x26, 0xb3, 0xe1, 0x37, 0x83, 0xe5, 0xb8, 0x00, 0xf6, 0xef, - 0xc1, 0x85, 0x69, 0x33, 0xc5, 0xee, 0xeb, 0xac, 0x5f, 0x16, 0xb7, 0x56, 0x6a, 0x74, 0x13, 0xe6, - 0xa7, 0x7e, 0xf5, 0x85, 0x5a, 0xf0, 0xf0, 0x7b, 0x13, 0xe6, 0x8d, 0x20, 0xfe, 0x00, 0x70, 0x86, - 0x51, 0x78, 0xe3, 0x1f, 0x7a, 0xf5, 0x53, 0xe9, 0x74, 0xeb, 0x60, 0x36, 0x9c, 0x7f, 0xf5, 0xe3, - 0x8f, 0x3f, 0x5f, 0xe7, 0x56, 0x71, 0x9b, 0xbe, 0x31, 0xf8, 0xbd, 0x30, 0x52, 0xb4, 0xf4, 0x3a, - 0xf1, 0x17, 0x04, 0xcb, 0xc5, 0x42, 0x71, 0xaf, 0x4a, 0xbb, 0x62, 0x5d, 0x9d, 0x7e, 0x3d, 0xd0, - 0xc5, 0xa0, 0x26, 0xc6, 0x75, 0xdc, 0x9b, 0x19, 0x83, 0x96, 0x76, 0x87, 0x3f, 0x21, 0x58, 0x3c, - 0x6b, 0x05, 0xaf, 0xcf, 0xbc, 0x6d, 0xb1, 0x93, 0x8d, 0x1a, 0x94, 0xcb, 0x72, 0xd3, 0x64, 0xe9, - 0xe2, 0xf5, 0xd9, 0x59, 0xcc, 0xcf, 0x16, 0xcf, 0x97, 0xf6, 0xfc, 0x78, 0xec, 0xa1, 0x93, 0xb1, - 0x87, 0x7e, 0x8f, 0x3d, 0xf4, 0x79, 0xe2, 0x35, 0x4e, 0x26, 0x5e, 0xe3, 0xe7, 0xc4, 0x6b, 0xbc, - 0xbd, 0x9d, 0x70, 0xbd, 0x3b, 0x8a, 0x48, 0x2c, 0xf7, 0x9d, 0xd2, 0xad, 0x17, 0x05, 0xa9, 0xc3, - 0xc1, 0x26, 0x7d, 0x7f, 0x2a, 0xa8, 0x8f, 0x52, 0xa6, 0xa2, 0x05, 0xf3, 0x01, 0xb8, 0xf3, 0x37, - 0x00, 0x00, 0xff, 0xff, 0x2b, 0x1c, 0xeb, 0xee, 0xa9, 0x04, 0x00, 0x00, + 0x04, 0x36, 0x2d, 0x5f, 0x12, 0x27, 0x04, 0x02, 0x04, 0x42, 0x08, 0xc2, 0x8d, 0xcb, 0x48, 0x32, + 0x2f, 0xb3, 0xb4, 0xd9, 0x59, 0xec, 0x4e, 0xec, 0xc2, 0x81, 0x03, 0x67, 0x04, 0x37, 0xee, 0xfc, + 0x97, 0x1d, 0x27, 0x71, 0xe1, 0x84, 0x50, 0xcb, 0x0f, 0x41, 0xb1, 0xbd, 0x35, 0x81, 0x54, 0x39, + 0xb5, 0xf2, 0xfb, 0x7c, 0xf9, 0x79, 0xad, 0x40, 0x5b, 0xe9, 0x8c, 0x6f, 0x31, 0xca, 0x52, 0x19, + 0xef, 0x28, 0xba, 0x3f, 0x62, 0xd9, 0x21, 0x49, 0x33, 0xa9, 0x25, 0x5e, 0xb1, 0x23, 0x62, 0x47, + 0x9d, 0xb3, 0x89, 0x4c, 0xa4, 0x99, 0xd0, 0xfc, 0x9f, 0x05, 0x75, 0x2e, 0x26, 0x52, 0x26, 0xbb, + 0x8c, 0x86, 0x29, 0xa7, 0xa1, 0x10, 0x52, 0x87, 0x9a, 0x4b, 0xa1, 0xdc, 0xf4, 0x5a, 0x2c, 0xd5, + 0x9e, 0x54, 0x34, 0x0a, 0x15, 0xb3, 0xda, 0xf4, 0x60, 0x10, 0x31, 0x1d, 0x0e, 0x68, 0x1a, 0x26, + 0x5c, 0x18, 0xb0, 0xc3, 0xae, 0x96, 0x93, 0x24, 0x4c, 0x30, 0xc5, 0x9d, 0x90, 0xff, 0x0e, 0xce, + 0xbf, 0xce, 0xe9, 0x8f, 0xcd, 0xf0, 0x99, 0xd8, 0x96, 0x01, 0xdb, 0x1f, 0x31, 0xa5, 0xf1, 0x13, + 0x80, 0xa9, 0x54, 0x0b, 0xad, 0xa1, 0xfe, 0xd2, 0xb0, 0x4b, 0xac, 0x2f, 0xc9, 0x7d, 0x89, 0xbd, + 0x93, 0xf3, 0x25, 0xaf, 0xc2, 0x84, 0x39, 0x6e, 0x50, 0x60, 0xfa, 0xdf, 0x10, 0x5c, 0xf8, 0xcf, + 0x42, 0xa5, 0x52, 0x28, 0x86, 0xef, 0xc2, 0x82, 0x4d, 0xd5, 0x42, 0x6b, 0xcd, 0xfe, 0xd2, 0xb0, + 0x45, 0x4a, 0xd5, 0x10, 0x43, 0xc9, 0x19, 0x0f, 0xcf, 0x1c, 0xfd, 0xba, 0xd4, 0x08, 0x1c, 0x1a, + 0x3f, 0x2d, 0x65, 0x9b, 0x33, 0xd9, 0x7a, 0xb5, 0xd9, 0xac, 0x69, 0x29, 0xdc, 0x7d, 0x68, 0x99, + 0x6c, 0x8f, 0x46, 0x59, 0xc6, 0x84, 0x36, 0x7e, 0x27, 0x05, 0x78, 0x00, 0x7c, 0x8b, 0x09, 0xcd, + 0xb7, 0x39, 0xcb, 0x4c, 0x01, 0x8b, 0x41, 0xe1, 0xc4, 0x7f, 0x00, 0xed, 0x0a, 0xae, 0xbb, 0xd9, + 0x15, 0x58, 0x89, 0xed, 0xf9, 0xa6, 0xc9, 0x6c, 0xf8, 0xcd, 0x60, 0x39, 0x2e, 0x80, 0xfd, 0x7b, + 0x70, 0x6e, 0xda, 0x4c, 0xb1, 0xfb, 0x3a, 0xeb, 0x97, 0xc5, 0xad, 0x95, 0x1a, 0xbd, 0x0d, 0xf3, + 0x53, 0xbf, 0xfa, 0x42, 0x2d, 0x78, 0xf8, 0xbd, 0x09, 0xf3, 0x46, 0x10, 0x7f, 0x00, 0x38, 0xc5, + 0x28, 0xbc, 0xf1, 0x0f, 0xbd, 0xfa, 0xa9, 0x74, 0xba, 0x75, 0x30, 0x1b, 0xce, 0xbf, 0xfc, 0xf1, + 0xc7, 0x9f, 0xaf, 0x73, 0xab, 0xb8, 0x4d, 0xdf, 0x18, 0xfc, 0x6e, 0x18, 0x29, 0x5a, 0x7a, 0x9d, + 0xf8, 0x0b, 0x82, 0xe5, 0x62, 0xa1, 0xb8, 0x57, 0xa5, 0x5d, 0xb1, 0xae, 0x4e, 0xbf, 0x1e, 0xe8, + 0x62, 0x50, 0x13, 0xe3, 0x2a, 0xee, 0xcd, 0x8c, 0x41, 0x4b, 0xbb, 0xc3, 0x9f, 0x10, 0x2c, 0x9e, + 0xb6, 0x82, 0xd7, 0x67, 0xde, 0xb6, 0xd8, 0xc9, 0x46, 0x0d, 0xca, 0x65, 0xb9, 0x6e, 0xb2, 0x74, + 0xf1, 0xfa, 0xec, 0x2c, 0xe6, 0x67, 0x93, 0xe7, 0x4b, 0x7b, 0x7e, 0x34, 0xf6, 0xd0, 0xf1, 0xd8, + 0x43, 0xbf, 0xc7, 0x1e, 0xfa, 0x3c, 0xf1, 0x1a, 0xc7, 0x13, 0xaf, 0xf1, 0x73, 0xe2, 0x35, 0xde, + 0xde, 0x4c, 0xb8, 0xde, 0x19, 0x45, 0x24, 0x96, 0x7b, 0x4e, 0xe9, 0xc6, 0x8b, 0x82, 0xd4, 0xc1, + 0xe0, 0x0e, 0x7d, 0x7f, 0x22, 0xa8, 0x0f, 0x53, 0xa6, 0xa2, 0x05, 0xf3, 0x01, 0xb8, 0xf5, 0x37, + 0x00, 0x00, 0xff, 0xff, 0x0c, 0x79, 0xce, 0x6f, 0xa9, 0x04, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/icacallbacks/client/cli/query.go b/x/icacallbacks/client/cli/query.go index c606f7eceb..e65ce5788b 100644 --- a/x/icacallbacks/client/cli/query.go +++ b/x/icacallbacks/client/cli/query.go @@ -10,7 +10,7 @@ import ( // "github.com/cosmos/cosmos-sdk/client/flags" // sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" ) // GetQueryCmd returns the cli query commands for this module diff --git a/x/icacallbacks/client/cli/query_callback_data.go b/x/icacallbacks/client/cli/query_callback_data.go index a22cbe60e6..36741bbcc0 100644 --- a/x/icacallbacks/client/cli/query_callback_data.go +++ b/x/icacallbacks/client/cli/query_callback_data.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" ) func CmdListCallbackData() *cobra.Command { diff --git a/x/icacallbacks/client/cli/query_callback_data_test.go b/x/icacallbacks/client/cli/query_callback_data_test.go index d8b57f60bc..94f3839f7c 100644 --- a/x/icacallbacks/client/cli/query_callback_data_test.go +++ b/x/icacallbacks/client/cli/query_callback_data_test.go @@ -12,10 +12,10 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/Stride-Labs/stride/v14/testutil/network" - "github.com/Stride-Labs/stride/v14/testutil/nullify" - "github.com/Stride-Labs/stride/v14/x/icacallbacks/client/cli" - "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + "github.com/Stride-Labs/stride/v15/testutil/network" + "github.com/Stride-Labs/stride/v15/testutil/nullify" + "github.com/Stride-Labs/stride/v15/x/icacallbacks/client/cli" + "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" ) // Prevent strconv unused error diff --git a/x/icacallbacks/client/cli/query_params.go b/x/icacallbacks/client/cli/query_params.go index c2bd38d209..90a181421c 100644 --- a/x/icacallbacks/client/cli/query_params.go +++ b/x/icacallbacks/client/cli/query_params.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" ) func CmdQueryParams() *cobra.Command { diff --git a/x/icacallbacks/client/cli/tx.go b/x/icacallbacks/client/cli/tx.go index 49a3c8e575..db5e929d34 100644 --- a/x/icacallbacks/client/cli/tx.go +++ b/x/icacallbacks/client/cli/tx.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" // "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" ) // GetTxCmd returns the transaction commands for this module diff --git a/x/icacallbacks/genesis.go b/x/icacallbacks/genesis.go index 48f3877769..8abd90472e 100644 --- a/x/icacallbacks/genesis.go +++ b/x/icacallbacks/genesis.go @@ -3,8 +3,8 @@ package icacallbacks import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/icacallbacks/keeper" - "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + "github.com/Stride-Labs/stride/v15/x/icacallbacks/keeper" + "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" ) // InitGenesis initializes the capability module's state from a provided genesis diff --git a/x/icacallbacks/genesis_test.go b/x/icacallbacks/genesis_test.go index 2abb69e997..a3f9ae5e85 100644 --- a/x/icacallbacks/genesis_test.go +++ b/x/icacallbacks/genesis_test.go @@ -5,10 +5,10 @@ import ( "github.com/stretchr/testify/require" - keepertest "github.com/Stride-Labs/stride/v14/testutil/keeper" - "github.com/Stride-Labs/stride/v14/testutil/nullify" - "github.com/Stride-Labs/stride/v14/x/icacallbacks" - "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + keepertest "github.com/Stride-Labs/stride/v15/testutil/keeper" + "github.com/Stride-Labs/stride/v15/testutil/nullify" + "github.com/Stride-Labs/stride/v15/x/icacallbacks" + "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" ) func TestGenesis(t *testing.T) { diff --git a/x/icacallbacks/handler.go b/x/icacallbacks/handler.go index b039427912..a9515d6e43 100644 --- a/x/icacallbacks/handler.go +++ b/x/icacallbacks/handler.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/Stride-Labs/stride/v14/x/icacallbacks/keeper" - "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + "github.com/Stride-Labs/stride/v15/x/icacallbacks/keeper" + "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" ) // NewHandler ... diff --git a/x/icacallbacks/ibc_module.go b/x/icacallbacks/ibc_module.go index b5b3636fc4..785d85eb34 100644 --- a/x/icacallbacks/ibc_module.go +++ b/x/icacallbacks/ibc_module.go @@ -10,8 +10,8 @@ import ( porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" - "github.com/Stride-Labs/stride/v14/x/icacallbacks/keeper" - "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + "github.com/Stride-Labs/stride/v15/x/icacallbacks/keeper" + "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" ) var _ porttypes.IBCModule = &IBCModule{} diff --git a/x/icacallbacks/icacallbacks.go b/x/icacallbacks/icacallbacks.go index e964685fc1..4aa9c04a4c 100644 --- a/x/icacallbacks/icacallbacks.go +++ b/x/icacallbacks/icacallbacks.go @@ -11,7 +11,7 @@ import ( ibctransfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" ) // Parses ICA tx responses and returns a list of each serialized response diff --git a/x/icacallbacks/icacallbacks_test.go b/x/icacallbacks/icacallbacks_test.go index dd5a701f77..6c6ccbb14d 100644 --- a/x/icacallbacks/icacallbacks_test.go +++ b/x/icacallbacks/icacallbacks_test.go @@ -17,9 +17,9 @@ import ( "github.com/stretchr/testify/require" - "github.com/Stride-Labs/stride/v14/app/apptesting" - "github.com/Stride-Labs/stride/v14/x/icacallbacks" - icacallbacktypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + "github.com/Stride-Labs/stride/v15/app/apptesting" + "github.com/Stride-Labs/stride/v15/x/icacallbacks" + icacallbacktypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" ) func TestParseTxMsgDataCurrent(t *testing.T) { diff --git a/x/icacallbacks/keeper/callback_data.go b/x/icacallbacks/keeper/callback_data.go index 7ed522a7c5..28d352ca44 100644 --- a/x/icacallbacks/keeper/callback_data.go +++ b/x/icacallbacks/keeper/callback_data.go @@ -4,7 +4,7 @@ import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" ) // SetCallbackData set a specific callbackData in the store from its index diff --git a/x/icacallbacks/keeper/callback_data_test.go b/x/icacallbacks/keeper/callback_data_test.go index f34f03089c..ba555f86cc 100644 --- a/x/icacallbacks/keeper/callback_data_test.go +++ b/x/icacallbacks/keeper/callback_data_test.go @@ -7,10 +7,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - keepertest "github.com/Stride-Labs/stride/v14/testutil/keeper" - "github.com/Stride-Labs/stride/v14/testutil/nullify" - "github.com/Stride-Labs/stride/v14/x/icacallbacks/keeper" - "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + keepertest "github.com/Stride-Labs/stride/v15/testutil/keeper" + "github.com/Stride-Labs/stride/v15/testutil/nullify" + "github.com/Stride-Labs/stride/v15/x/icacallbacks/keeper" + "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" ) // Prevent strconv unused error diff --git a/x/icacallbacks/keeper/grpc_query.go b/x/icacallbacks/keeper/grpc_query.go index 5802836474..cf2bdb2e9b 100644 --- a/x/icacallbacks/keeper/grpc_query.go +++ b/x/icacallbacks/keeper/grpc_query.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/icacallbacks/keeper/grpc_query_callback_data.go b/x/icacallbacks/keeper/grpc_query_callback_data.go index 728c75da81..f290a0a933 100644 --- a/x/icacallbacks/keeper/grpc_query_callback_data.go +++ b/x/icacallbacks/keeper/grpc_query_callback_data.go @@ -9,7 +9,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" ) func (k Keeper) CallbackDataAll(c context.Context, req *types.QueryAllCallbackDataRequest) (*types.QueryAllCallbackDataResponse, error) { diff --git a/x/icacallbacks/keeper/grpc_query_callback_data_test.go b/x/icacallbacks/keeper/grpc_query_callback_data_test.go index 88fea17022..22b76b5c82 100644 --- a/x/icacallbacks/keeper/grpc_query_callback_data_test.go +++ b/x/icacallbacks/keeper/grpc_query_callback_data_test.go @@ -10,9 +10,9 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - keepertest "github.com/Stride-Labs/stride/v14/testutil/keeper" - "github.com/Stride-Labs/stride/v14/testutil/nullify" - "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + keepertest "github.com/Stride-Labs/stride/v15/testutil/keeper" + "github.com/Stride-Labs/stride/v15/testutil/nullify" + "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" ) // Prevent strconv unused error diff --git a/x/icacallbacks/keeper/grpc_query_params.go b/x/icacallbacks/keeper/grpc_query_params.go index bcf6dd412a..cc5b6b4004 100644 --- a/x/icacallbacks/keeper/grpc_query_params.go +++ b/x/icacallbacks/keeper/grpc_query_params.go @@ -7,7 +7,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" ) func (k Keeper) Params(c context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error) { diff --git a/x/icacallbacks/keeper/grpc_query_params_test.go b/x/icacallbacks/keeper/grpc_query_params_test.go index 3752c0f827..50c4a9fa1f 100644 --- a/x/icacallbacks/keeper/grpc_query_params_test.go +++ b/x/icacallbacks/keeper/grpc_query_params_test.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - testkeeper "github.com/Stride-Labs/stride/v14/testutil/keeper" - "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + testkeeper "github.com/Stride-Labs/stride/v15/testutil/keeper" + "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" ) func TestParamsQuery(t *testing.T) { diff --git a/x/icacallbacks/keeper/keeper.go b/x/icacallbacks/keeper/keeper.go index caed9fc1af..1816325a06 100644 --- a/x/icacallbacks/keeper/keeper.go +++ b/x/icacallbacks/keeper/keeper.go @@ -13,7 +13,7 @@ import ( ibckeeper "github.com/cosmos/ibc-go/v7/modules/core/keeper" - "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" diff --git a/x/icacallbacks/keeper/msg_server.go b/x/icacallbacks/keeper/msg_server.go index f9094acae0..db62477570 100644 --- a/x/icacallbacks/keeper/msg_server.go +++ b/x/icacallbacks/keeper/msg_server.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" ) type msgServer struct { diff --git a/x/icacallbacks/keeper/params.go b/x/icacallbacks/keeper/params.go index 16a74ce3cd..ce1bbc42a0 100644 --- a/x/icacallbacks/keeper/params.go +++ b/x/icacallbacks/keeper/params.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" ) // GetParams get all parameters as types.Params diff --git a/x/icacallbacks/keeper/params_test.go b/x/icacallbacks/keeper/params_test.go index 498072960a..7a3409945d 100644 --- a/x/icacallbacks/keeper/params_test.go +++ b/x/icacallbacks/keeper/params_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - testkeeper "github.com/Stride-Labs/stride/v14/testutil/keeper" - "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + testkeeper "github.com/Stride-Labs/stride/v15/testutil/keeper" + "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" ) func TestGetParams(t *testing.T) { diff --git a/x/icacallbacks/migrations/v2/convert.go b/x/icacallbacks/migrations/v2/convert.go index 1580500366..81c26fde81 100644 --- a/x/icacallbacks/migrations/v2/convert.go +++ b/x/icacallbacks/migrations/v2/convert.go @@ -5,9 +5,9 @@ import ( sdkmath "cosmossdk.io/math" "github.com/golang/protobuf/proto" //nolint:staticcheck - icacallbacktypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" - oldstakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/migrations/v2/types" - stakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + icacallbacktypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" + oldstakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/migrations/v2/types" + stakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) const ( diff --git a/x/icacallbacks/migrations/v2/convert_test.go b/x/icacallbacks/migrations/v2/convert_test.go index 81f8b54333..748fbf4d4c 100644 --- a/x/icacallbacks/migrations/v2/convert_test.go +++ b/x/icacallbacks/migrations/v2/convert_test.go @@ -7,8 +7,8 @@ import ( "github.com/golang/protobuf/proto" //nolint:staticcheck "github.com/stretchr/testify/require" - icacallbacktypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" - oldstakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/migrations/v2/types" + icacallbacktypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" + oldstakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/migrations/v2/types" ) func TestConvertDelegateCallback(t *testing.T) { diff --git a/x/icacallbacks/migrations/v2/migrations.go b/x/icacallbacks/migrations/v2/migrations.go index b551f0a824..5ba35b6807 100644 --- a/x/icacallbacks/migrations/v2/migrations.go +++ b/x/icacallbacks/migrations/v2/migrations.go @@ -8,7 +8,7 @@ import ( errorsmod "cosmossdk.io/errors" - icacallbacktypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + icacallbacktypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" ) func migrateCallbacks(store sdk.KVStore, cdc codec.BinaryCodec) error { diff --git a/x/icacallbacks/module.go b/x/icacallbacks/module.go index aec48d6c2a..eb65502b96 100644 --- a/x/icacallbacks/module.go +++ b/x/icacallbacks/module.go @@ -17,9 +17,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/Stride-Labs/stride/v14/x/icacallbacks/client/cli" - "github.com/Stride-Labs/stride/v14/x/icacallbacks/keeper" - "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + "github.com/Stride-Labs/stride/v15/x/icacallbacks/client/cli" + "github.com/Stride-Labs/stride/v15/x/icacallbacks/keeper" + "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" ) var ( diff --git a/x/icacallbacks/module_simulation.go b/x/icacallbacks/module_simulation.go index 3b6bce9636..aa9221b4e5 100644 --- a/x/icacallbacks/module_simulation.go +++ b/x/icacallbacks/module_simulation.go @@ -10,9 +10,9 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" - "github.com/Stride-Labs/stride/v14/testutil/sample" - icacallbackssimulation "github.com/Stride-Labs/stride/v14/x/icacallbacks/simulation" - "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + "github.com/Stride-Labs/stride/v15/testutil/sample" + icacallbackssimulation "github.com/Stride-Labs/stride/v15/x/icacallbacks/simulation" + "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" ) // avoid unused import issue diff --git a/x/icacallbacks/types/callback_data.pb.go b/x/icacallbacks/types/callback_data.pb.go index abb089177f..a249e3a8cd 100644 --- a/x/icacallbacks/types/callback_data.pb.go +++ b/x/icacallbacks/types/callback_data.pb.go @@ -131,8 +131,8 @@ var fileDescriptor_19b6f19ce856679b = []byte{ 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x59, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x7e, 0x30, 0x38, 0x1c, 0x74, 0x7d, 0x12, 0x93, 0x8a, 0xf5, 0xa1, 0x81, 0x57, 0x66, 0x68, - 0xa2, 0x5f, 0x81, 0x1a, 0x84, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0xe0, 0xb0, 0x33, 0x06, - 0x04, 0x00, 0x00, 0xff, 0xff, 0xdf, 0x6c, 0xee, 0x93, 0x66, 0x01, 0x00, 0x00, + 0xaa, 0x5f, 0x81, 0x1a, 0x84, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0xe0, 0xb0, 0x33, 0x06, + 0x04, 0x00, 0x00, 0xff, 0xff, 0xd7, 0x8f, 0x8e, 0xaf, 0x66, 0x01, 0x00, 0x00, } func (m *CallbackData) Marshal() (dAtA []byte, err error) { diff --git a/x/icacallbacks/types/genesis.pb.go b/x/icacallbacks/types/genesis.pb.go index df9eccdb85..7e1f77c1d9 100644 --- a/x/icacallbacks/types/genesis.pb.go +++ b/x/icacallbacks/types/genesis.pb.go @@ -107,9 +107,9 @@ var fileDescriptor_8c333baddfa20681 = []byte{ 0x32, 0x8b, 0x4b, 0x9c, 0x02, 0x4e, 0x3c, 0x92, 0x63, 0xbc, 0xf0, 0x48, 0x8e, 0xf1, 0xc1, 0x23, 0x39, 0xc6, 0x09, 0x8f, 0xe5, 0x18, 0x2e, 0x3c, 0x96, 0x63, 0xb8, 0xf1, 0x58, 0x8e, 0x21, 0xca, 0x2c, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x57, 0x3f, 0x18, 0x6c, 0xbc, 0xae, - 0x4f, 0x62, 0x52, 0xb1, 0x3e, 0x34, 0x54, 0xca, 0x0c, 0x4d, 0xf4, 0x2b, 0x50, 0xc3, 0xa6, 0xa4, - 0xb2, 0x20, 0xb5, 0x38, 0x89, 0x0d, 0x1c, 0x28, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0xc2, - 0x4f, 0x49, 0x48, 0xaf, 0x01, 0x00, 0x00, + 0x4f, 0x62, 0x52, 0xb1, 0x3e, 0x34, 0x54, 0xca, 0x0c, 0x4d, 0xf5, 0x2b, 0x50, 0xc3, 0xa6, 0xa4, + 0xb2, 0x20, 0xb5, 0x38, 0x89, 0x0d, 0x1c, 0x28, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0xca, + 0xac, 0x29, 0x74, 0xaf, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/icacallbacks/types/genesis_test.go b/x/icacallbacks/types/genesis_test.go index 62f186384e..4614a93f25 100644 --- a/x/icacallbacks/types/genesis_test.go +++ b/x/icacallbacks/types/genesis_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" ) func TestGenesisState_Validate(t *testing.T) { diff --git a/x/icacallbacks/types/packet.pb.go b/x/icacallbacks/types/packet.pb.go index 155522c31f..2b4f6781c1 100644 --- a/x/icacallbacks/types/packet.pb.go +++ b/x/icacallbacks/types/packet.pb.go @@ -150,8 +150,8 @@ var fileDescriptor_e68b4c401320f2a0 = []byte{ 0x14, 0x70, 0xe2, 0x91, 0x1c, 0xe3, 0x85, 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, 0x31, 0x4e, 0x78, 0x2c, 0xc7, 0x70, 0xe1, 0xb1, 0x1c, 0xc3, 0x8d, 0xc7, 0x72, 0x0c, 0x51, 0x66, 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0xfa, 0xc1, 0x60, 0xe3, 0x75, 0x7d, 0x12, 0x93, 0x8a, - 0xf5, 0xa1, 0xbe, 0x29, 0x33, 0x34, 0xd1, 0xaf, 0x40, 0xf5, 0x53, 0x49, 0x65, 0x41, 0x6a, 0x71, - 0x12, 0x1b, 0xd8, 0x4f, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x40, 0x1b, 0x73, 0x59, 0xf7, + 0xf5, 0xa1, 0xbe, 0x29, 0x33, 0x34, 0xd5, 0xaf, 0x40, 0xf5, 0x53, 0x49, 0x65, 0x41, 0x6a, 0x71, + 0x12, 0x1b, 0xd8, 0x4f, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x48, 0xf8, 0x13, 0x65, 0xf7, 0x00, 0x00, 0x00, } diff --git a/x/icacallbacks/types/params.pb.go b/x/icacallbacks/types/params.pb.go index 46f57c0d9f..1b8fdc5f3b 100644 --- a/x/icacallbacks/types/params.pb.go +++ b/x/icacallbacks/types/params.pb.go @@ -75,8 +75,8 @@ var fileDescriptor_4c402599e6cfed62 = []byte{ 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, 0xb3, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0xfd, 0x60, 0xb0, 0xf9, 0xba, 0x3e, 0x89, 0x49, 0xc5, 0xfa, 0x50, - 0xd7, 0x94, 0x19, 0x9a, 0xe8, 0x57, 0xa0, 0xba, 0xa9, 0xa4, 0xb2, 0x20, 0xb5, 0x38, 0x89, 0x0d, - 0x6c, 0x91, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0x96, 0x07, 0x24, 0x4f, 0xb7, 0x00, 0x00, 0x00, + 0xd7, 0x94, 0x19, 0x9a, 0xea, 0x57, 0xa0, 0xba, 0xa9, 0xa4, 0xb2, 0x20, 0xb5, 0x38, 0x89, 0x0d, + 0x6c, 0x91, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0x9e, 0xe4, 0x44, 0x73, 0xb7, 0x00, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/icacallbacks/types/query.pb.go b/x/icacallbacks/types/query.pb.go index 1f49bdd9c7..239e5e20af 100644 --- a/x/icacallbacks/types/query.pb.go +++ b/x/icacallbacks/types/query.pb.go @@ -312,7 +312,7 @@ var fileDescriptor_5e73b99abb7e91c2 = []byte{ // 521 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x94, 0x3f, 0x6f, 0x13, 0x31, 0x18, 0xc6, 0xe3, 0x52, 0x22, 0xe1, 0x16, 0x21, 0xb9, 0x1d, 0x50, 0x5a, 0x5d, 0xdb, 0x1b, 0x48, - 0x41, 0xc2, 0x6e, 0x0a, 0xaa, 0xc4, 0x80, 0xa0, 0xe5, 0x4f, 0x07, 0x3a, 0x84, 0xb0, 0xb1, 0xa0, + 0x41, 0xc2, 0x6e, 0x8a, 0xa8, 0xc4, 0x80, 0xa0, 0xe5, 0x4f, 0x07, 0x3a, 0x84, 0xb0, 0xb1, 0xa0, 0xf7, 0xae, 0xd6, 0x71, 0xaa, 0x73, 0xbe, 0xc6, 0x4e, 0x45, 0x84, 0x58, 0x10, 0x23, 0x03, 0x12, 0xdf, 0x83, 0x8d, 0x85, 0x4f, 0xd0, 0xb1, 0x12, 0x0b, 0x13, 0x42, 0x09, 0x1f, 0x04, 0xc5, 0x76, 0xca, 0x9d, 0xea, 0x6b, 0xd4, 0x6e, 0x96, 0xfd, 0xbc, 0xcf, 0xf3, 0x7b, 0xef, 0x7d, 0x75, 0x78, @@ -342,7 +342,7 @@ var fileDescriptor_5e73b99abb7e91c2 = []byte{ 0x06, 0xe8, 0xcf, 0x30, 0x40, 0x5f, 0x46, 0x41, 0xed, 0x64, 0x14, 0xd4, 0x7e, 0x8d, 0x82, 0xda, 0xeb, 0xad, 0x24, 0xd5, 0x6f, 0xfb, 0x11, 0x8d, 0x65, 0xd7, 0xe7, 0x79, 0xd4, 0xba, 0xcf, 0xde, 0x95, 0x9d, 0xf5, 0x20, 0xe7, 0x2a, 0xaa, 0x9b, 0xdf, 0xd2, 0xbd, 0x7f, 0x01, 0x00, 0x00, 0xff, - 0xff, 0xae, 0x54, 0xcd, 0x63, 0x79, 0x05, 0x00, 0x00, + 0xff, 0xa6, 0xb7, 0xad, 0x5f, 0x79, 0x05, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/icacallbacks/types/tx.pb.go b/x/icacallbacks/types/tx.pb.go index bcbe1d1bc5..32a1c3d631 100644 --- a/x/icacallbacks/types/tx.pb.go +++ b/x/icacallbacks/types/tx.pb.go @@ -33,9 +33,9 @@ var fileDescriptor_c4981fec5f7fee51 = []byte{ 0xb1, 0x72, 0x31, 0xfb, 0x16, 0xa7, 0x3b, 0x05, 0x9c, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x59, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x7e, 0x30, - 0xd8, 0x00, 0x5d, 0x9f, 0xc4, 0xa4, 0x62, 0x7d, 0xa8, 0x55, 0x65, 0x86, 0x26, 0xfa, 0x15, 0x68, + 0xd8, 0x00, 0x5d, 0x9f, 0xc4, 0xa4, 0x62, 0x7d, 0xa8, 0x55, 0x65, 0x86, 0xa6, 0xfa, 0x15, 0x68, 0x16, 0x56, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x2d, 0x35, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, - 0xf7, 0x93, 0xb5, 0xc1, 0x94, 0x00, 0x00, 0x00, + 0xff, 0x70, 0xd5, 0xfd, 0x94, 0x00, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/icaoracle/client/cli/cli_test.go b/x/icaoracle/client/cli/cli_test.go index 94a793a6dd..5fa257142f 100644 --- a/x/icaoracle/client/cli/cli_test.go +++ b/x/icaoracle/client/cli/cli_test.go @@ -11,11 +11,11 @@ import ( "github.com/spf13/cobra" "github.com/stretchr/testify/suite" - "github.com/Stride-Labs/stride/v14/app" - cmdcfg "github.com/Stride-Labs/stride/v14/cmd/strided/config" - strideclitestutil "github.com/Stride-Labs/stride/v14/testutil/cli" - "github.com/Stride-Labs/stride/v14/testutil/network" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + "github.com/Stride-Labs/stride/v15/app" + cmdcfg "github.com/Stride-Labs/stride/v15/cmd/strided/config" + strideclitestutil "github.com/Stride-Labs/stride/v15/testutil/cli" + "github.com/Stride-Labs/stride/v15/testutil/network" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) var ( diff --git a/x/icaoracle/client/cli/query.go b/x/icaoracle/client/cli/query.go index f8c6b575a1..e55b4f0206 100644 --- a/x/icaoracle/client/cli/query.go +++ b/x/icaoracle/client/cli/query.go @@ -13,7 +13,7 @@ import ( "github.com/cosmos/cosmos-sdk/version" "github.com/gogo/protobuf/proto" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) const ( diff --git a/x/icaoracle/client/cli/query_test.go b/x/icaoracle/client/cli/query_test.go index e52eccef48..6352f15eec 100644 --- a/x/icaoracle/client/cli/query_test.go +++ b/x/icaoracle/client/cli/query_test.go @@ -1,6 +1,6 @@ package cli_test -import "github.com/Stride-Labs/stride/v14/x/icaoracle/client/cli" +import "github.com/Stride-Labs/stride/v15/x/icaoracle/client/cli" func (s *ClientTestSuite) TestCmdQueryOracle() { args := []string{ diff --git a/x/icaoracle/client/cli/tx.go b/x/icaoracle/client/cli/tx.go index 93bf38e7f6..2bcddc1513 100644 --- a/x/icaoracle/client/cli/tx.go +++ b/x/icaoracle/client/cli/tx.go @@ -12,7 +12,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/tx" "github.com/cosmos/cosmos-sdk/version" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) // GetTxCmd returns the transaction commands for this module diff --git a/x/icaoracle/client/cli/tx_test.go b/x/icaoracle/client/cli/tx_test.go index 5cf284ab14..e03bed84e8 100644 --- a/x/icaoracle/client/cli/tx_test.go +++ b/x/icaoracle/client/cli/tx_test.go @@ -1,7 +1,7 @@ package cli_test import ( - "github.com/Stride-Labs/stride/v14/x/icaoracle/client/cli" + "github.com/Stride-Labs/stride/v15/x/icaoracle/client/cli" ) func (s *ClientTestSuite) TestCmdRestoreOracleICA() { diff --git a/x/icaoracle/ibc_middleware.go b/x/icaoracle/ibc_middleware.go index d9e1dfef31..040f86c0ef 100644 --- a/x/icaoracle/ibc_middleware.go +++ b/x/icaoracle/ibc_middleware.go @@ -11,7 +11,7 @@ import ( porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" - "github.com/Stride-Labs/stride/v14/x/icaoracle/keeper" + "github.com/Stride-Labs/stride/v15/x/icaoracle/keeper" ) var _ porttypes.Middleware = &IBCMiddleware{} diff --git a/x/icaoracle/keeper/events.go b/x/icaoracle/keeper/events.go index 0c51ccf8e8..2b203b93b9 100644 --- a/x/icaoracle/keeper/events.go +++ b/x/icaoracle/keeper/events.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) // Emits an event for an oracle update diff --git a/x/icaoracle/keeper/genesis.go b/x/icaoracle/keeper/genesis.go index d06866d3ee..ba13c54b0a 100644 --- a/x/icaoracle/keeper/genesis.go +++ b/x/icaoracle/keeper/genesis.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) // InitGenesis initializes the capability module's state from a provided genesis diff --git a/x/icaoracle/keeper/genesis_test.go b/x/icaoracle/keeper/genesis_test.go index 49d2e4a996..6288daf455 100644 --- a/x/icaoracle/keeper/genesis_test.go +++ b/x/icaoracle/keeper/genesis_test.go @@ -1,7 +1,7 @@ package keeper_test import ( - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) func (s *KeeperTestSuite) TestGenesis() { diff --git a/x/icaoracle/keeper/grpc_query.go b/x/icaoracle/keeper/grpc_query.go index 054d817e2e..13d63e61f1 100644 --- a/x/icaoracle/keeper/grpc_query.go +++ b/x/icaoracle/keeper/grpc_query.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/icaoracle/keeper/grpc_query_test.go b/x/icaoracle/keeper/grpc_query_test.go index 9f669839d9..c54ec65480 100644 --- a/x/icaoracle/keeper/grpc_query_test.go +++ b/x/icaoracle/keeper/grpc_query_test.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) func (s *KeeperTestSuite) TestQueryOracle() { diff --git a/x/icaoracle/keeper/ibc.go b/x/icaoracle/keeper/ibc.go index 5efcea3679..d6640ca182 100644 --- a/x/icaoracle/keeper/ibc.go +++ b/x/icaoracle/keeper/ibc.go @@ -10,8 +10,8 @@ import ( icacontrollertypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - icacallbacktypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + icacallbacktypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) func (k Keeper) OnChanOpenAck(ctx sdk.Context, portID, channelID string) error { diff --git a/x/icaoracle/keeper/ibc_test.go b/x/icaoracle/keeper/ibc_test.go index 06193a7879..e154747596 100644 --- a/x/icaoracle/keeper/ibc_test.go +++ b/x/icaoracle/keeper/ibc_test.go @@ -10,9 +10,9 @@ import ( proto "github.com/cosmos/gogoproto/proto" - icacallbacktypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + icacallbacktypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) // ------------------------------------------ diff --git a/x/icaoracle/keeper/icacallbacks.go b/x/icaoracle/keeper/icacallbacks.go index 8a20f3a3f8..32c26bc7a8 100644 --- a/x/icaoracle/keeper/icacallbacks.go +++ b/x/icaoracle/keeper/icacallbacks.go @@ -1,7 +1,7 @@ package keeper import ( - icacallbackstypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + icacallbackstypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" ) const ( diff --git a/x/icaoracle/keeper/icacallbacks_instantiate_oracle.go b/x/icaoracle/keeper/icacallbacks_instantiate_oracle.go index dd8cc00c83..a32e2b41bb 100644 --- a/x/icaoracle/keeper/icacallbacks_instantiate_oracle.go +++ b/x/icaoracle/keeper/icacallbacks_instantiate_oracle.go @@ -3,10 +3,10 @@ package keeper import ( errorsmod "cosmossdk.io/errors" - "github.com/Stride-Labs/stride/v14/utils" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + "github.com/Stride-Labs/stride/v15/utils" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" - icacallbackstypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + icacallbackstypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/gogoproto/proto" diff --git a/x/icaoracle/keeper/icacallbacks_instantiate_oracle_test.go b/x/icaoracle/keeper/icacallbacks_instantiate_oracle_test.go index ef8e3b68a3..df20f69444 100644 --- a/x/icaoracle/keeper/icacallbacks_instantiate_oracle_test.go +++ b/x/icaoracle/keeper/icacallbacks_instantiate_oracle_test.go @@ -4,8 +4,8 @@ import ( "github.com/cosmos/gogoproto/proto" channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - icacallbacktypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + icacallbacktypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) type InstantiateOracleCallbackTestCase struct { diff --git a/x/icaoracle/keeper/icacallbacks_update_oracle.go b/x/icaoracle/keeper/icacallbacks_update_oracle.go index c48a12addb..c51bb8ff47 100644 --- a/x/icaoracle/keeper/icacallbacks_update_oracle.go +++ b/x/icaoracle/keeper/icacallbacks_update_oracle.go @@ -3,10 +3,10 @@ package keeper import ( errorsmod "cosmossdk.io/errors" - "github.com/Stride-Labs/stride/v14/utils" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + "github.com/Stride-Labs/stride/v15/utils" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" - icacallbackstypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + icacallbackstypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/gogoproto/proto" diff --git a/x/icaoracle/keeper/icacallbacks_update_oracle_test.go b/x/icaoracle/keeper/icacallbacks_update_oracle_test.go index 378e6b4e9f..de7ecc51ab 100644 --- a/x/icaoracle/keeper/icacallbacks_update_oracle_test.go +++ b/x/icaoracle/keeper/icacallbacks_update_oracle_test.go @@ -4,8 +4,8 @@ import ( "github.com/cosmos/gogoproto/proto" channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - icacallbacktypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + icacallbacktypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) func (s *KeeperTestSuite) SetupTestUpdateOracleCallback() types.Metric { diff --git a/x/icaoracle/keeper/icaoracle.go b/x/icaoracle/keeper/icaoracle.go index 5df6a0c073..0d601e9c56 100644 --- a/x/icaoracle/keeper/icaoracle.go +++ b/x/icaoracle/keeper/icaoracle.go @@ -9,7 +9,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" proto "github.com/cosmos/gogoproto/proto" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) var ( diff --git a/x/icaoracle/keeper/icaoracle_test.go b/x/icaoracle/keeper/icaoracle_test.go index cbee85bc82..92a7c998b6 100644 --- a/x/icaoracle/keeper/icaoracle_test.go +++ b/x/icaoracle/keeper/icaoracle_test.go @@ -5,9 +5,9 @@ import ( channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" ibctesting "github.com/cosmos/ibc-go/v7/testing" - icacallbacktypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" - "github.com/Stride-Labs/stride/v14/x/icaoracle/keeper" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + icacallbacktypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" + "github.com/Stride-Labs/stride/v15/x/icaoracle/keeper" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) type SubmitMetricUpdateTestCase struct { diff --git a/x/icaoracle/keeper/keeper.go b/x/icaoracle/keeper/keeper.go index 83aae9054b..c80bacd279 100644 --- a/x/icaoracle/keeper/keeper.go +++ b/x/icaoracle/keeper/keeper.go @@ -10,7 +10,7 @@ import ( paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" icacontrollerkeeper "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/keeper" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) type Keeper struct { diff --git a/x/icaoracle/keeper/keeper_test.go b/x/icaoracle/keeper/keeper_test.go index c480c39835..f61077063b 100644 --- a/x/icaoracle/keeper/keeper_test.go +++ b/x/icaoracle/keeper/keeper_test.go @@ -7,9 +7,9 @@ import ( channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" "github.com/stretchr/testify/suite" - "github.com/Stride-Labs/stride/v14/app/apptesting" - "github.com/Stride-Labs/stride/v14/x/icaoracle/keeper" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + "github.com/Stride-Labs/stride/v15/app/apptesting" + "github.com/Stride-Labs/stride/v15/x/icaoracle/keeper" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) var ( diff --git a/x/icaoracle/keeper/metric.go b/x/icaoracle/keeper/metric.go index ad39d90015..22038c556b 100644 --- a/x/icaoracle/keeper/metric.go +++ b/x/icaoracle/keeper/metric.go @@ -4,7 +4,7 @@ import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) // Stores a metric in the main metric store and then either diff --git a/x/icaoracle/keeper/metric_test.go b/x/icaoracle/keeper/metric_test.go index 553ed6c422..305ddd4336 100644 --- a/x/icaoracle/keeper/metric_test.go +++ b/x/icaoracle/keeper/metric_test.go @@ -3,7 +3,7 @@ package keeper_test import ( "strconv" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) // Helper function to create 5 metric objects with various attributes diff --git a/x/icaoracle/keeper/msg_server.go b/x/icaoracle/keeper/msg_server.go index 5b8785729e..2ec01fa539 100644 --- a/x/icaoracle/keeper/msg_server.go +++ b/x/icaoracle/keeper/msg_server.go @@ -12,7 +12,7 @@ import ( icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" ibctmtypes "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) type msgServer struct { diff --git a/x/icaoracle/keeper/msg_server_add_oracle_test.go b/x/icaoracle/keeper/msg_server_add_oracle_test.go index f5ef37f71e..d83fba1907 100644 --- a/x/icaoracle/keeper/msg_server_add_oracle_test.go +++ b/x/icaoracle/keeper/msg_server_add_oracle_test.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) func (s *KeeperTestSuite) SetupTestAddOracle() types.MsgAddOracle { diff --git a/x/icaoracle/keeper/msg_server_instantiate_oracle_test.go b/x/icaoracle/keeper/msg_server_instantiate_oracle_test.go index d23deb2f34..2f9cfcb70e 100644 --- a/x/icaoracle/keeper/msg_server_instantiate_oracle_test.go +++ b/x/icaoracle/keeper/msg_server_instantiate_oracle_test.go @@ -5,8 +5,8 @@ import ( ibctesting "github.com/cosmos/ibc-go/v7/testing" - icacallbacktypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + icacallbacktypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) type InstantiateOracleTestCase struct { diff --git a/x/icaoracle/keeper/msg_server_remove_oracle_test.go b/x/icaoracle/keeper/msg_server_remove_oracle_test.go index 8f737bcfa4..b05d8d52a5 100644 --- a/x/icaoracle/keeper/msg_server_remove_oracle_test.go +++ b/x/icaoracle/keeper/msg_server_remove_oracle_test.go @@ -3,7 +3,7 @@ package keeper_test import ( "fmt" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) func (s *KeeperTestSuite) TestGovRemoveOracle() { diff --git a/x/icaoracle/keeper/msg_server_restore_oracle_ica_test.go b/x/icaoracle/keeper/msg_server_restore_oracle_ica_test.go index ab5ccba8f2..69649376ec 100644 --- a/x/icaoracle/keeper/msg_server_restore_oracle_ica_test.go +++ b/x/icaoracle/keeper/msg_server_restore_oracle_ica_test.go @@ -8,7 +8,7 @@ import ( channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" ibctesting "github.com/cosmos/ibc-go/v7/testing" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) type RestoreOracleICATestCase struct { diff --git a/x/icaoracle/keeper/msg_server_toggle_oracle_test.go b/x/icaoracle/keeper/msg_server_toggle_oracle_test.go index 08f47ecb64..f97457d373 100644 --- a/x/icaoracle/keeper/msg_server_toggle_oracle_test.go +++ b/x/icaoracle/keeper/msg_server_toggle_oracle_test.go @@ -1,7 +1,7 @@ package keeper_test import ( - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) func (s *KeeperTestSuite) TestGovToggleOracle() { diff --git a/x/icaoracle/keeper/oracle.go b/x/icaoracle/keeper/oracle.go index 8890ced92e..3a2efd0b88 100644 --- a/x/icaoracle/keeper/oracle.go +++ b/x/icaoracle/keeper/oracle.go @@ -7,7 +7,7 @@ import ( channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) // Stores/updates an oracle object in the store diff --git a/x/icaoracle/keeper/oracle_test.go b/x/icaoracle/keeper/oracle_test.go index 1676e64ef5..3952cbf6e0 100644 --- a/x/icaoracle/keeper/oracle_test.go +++ b/x/icaoracle/keeper/oracle_test.go @@ -5,7 +5,7 @@ import ( channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" ibctesting "github.com/cosmos/ibc-go/v7/testing" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) func (s *KeeperTestSuite) TestGetOracle() { diff --git a/x/icaoracle/module.go b/x/icaoracle/module.go index 99c85e2322..c4041d096a 100644 --- a/x/icaoracle/module.go +++ b/x/icaoracle/module.go @@ -17,9 +17,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/Stride-Labs/stride/v14/x/icaoracle/client/cli" - "github.com/Stride-Labs/stride/v14/x/icaoracle/keeper" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + "github.com/Stride-Labs/stride/v15/x/icaoracle/client/cli" + "github.com/Stride-Labs/stride/v15/x/icaoracle/keeper" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) var ( diff --git a/x/icaoracle/types/callbacks.pb.go b/x/icaoracle/types/callbacks.pb.go index ca2f4ec8c6..2331be6d7e 100644 --- a/x/icaoracle/types/callbacks.pb.go +++ b/x/icaoracle/types/callbacks.pb.go @@ -141,9 +141,9 @@ var fileDescriptor_7b4c39df2554f0a2 = []byte{ 0x08, 0xaa, 0xce, 0xc9, 0xf7, 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, 0xe1, 0xc2, 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0x8c, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0x83, 0xc1, 0xa6, 0xe8, 0xfa, - 0x24, 0x26, 0x15, 0xeb, 0x43, 0x43, 0xa2, 0xcc, 0xd0, 0x44, 0xbf, 0x02, 0x29, 0x3c, 0x4a, 0x2a, - 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0x81, 0x61, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x7e, 0x90, - 0x80, 0x21, 0x64, 0x01, 0x00, 0x00, + 0x24, 0x26, 0x15, 0xeb, 0x43, 0x43, 0xa2, 0xcc, 0xd0, 0x54, 0xbf, 0x02, 0x29, 0x3c, 0x4a, 0x2a, + 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0x81, 0x61, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x3f, 0x8b, + 0x0c, 0x4f, 0x64, 0x01, 0x00, 0x00, } func (m *InstantiateOracleCallback) Marshal() (dAtA []byte, err error) { diff --git a/x/icaoracle/types/contract.pb.go b/x/icaoracle/types/contract.pb.go index fd33fe03ca..a952b29fe2 100644 --- a/x/icaoracle/types/contract.pb.go +++ b/x/icaoracle/types/contract.pb.go @@ -217,28 +217,28 @@ var fileDescriptor_8bf036e49b48ee03 = []byte{ // 375 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x91, 0xc1, 0xae, 0xd2, 0x40, 0x14, 0x86, 0xa9, 0x08, 0x89, 0x53, 0x48, 0x70, 0x74, 0xd1, 0x85, 0x29, 0x88, 0x1b, 0x36, 0xb6, - 0x51, 0x7c, 0x00, 0x95, 0x98, 0x48, 0x62, 0xa3, 0x41, 0x56, 0x6e, 0xea, 0x74, 0x7a, 0x6c, 0x27, - 0xb4, 0x9d, 0x66, 0xe6, 0x94, 0xc0, 0x5b, 0xf8, 0x40, 0x3e, 0x80, 0x4b, 0x96, 0x2e, 0x0d, 0xbc, - 0xc8, 0x0d, 0x33, 0xbd, 0x70, 0xef, 0xdd, 0x9d, 0xf3, 0xfd, 0xff, 0xc9, 0x7f, 0x66, 0x0e, 0x19, - 0x6b, 0x54, 0x22, 0x85, 0x50, 0x70, 0x26, 0x15, 0xe3, 0x05, 0x84, 0x5c, 0x56, 0xa8, 0x18, 0xc7, - 0xa0, 0x56, 0x12, 0x25, 0x1d, 0x59, 0x43, 0x70, 0x31, 0x4c, 0x35, 0x79, 0x11, 0xe9, 0x6c, 0x59, - 0x69, 0x64, 0x15, 0x0a, 0x86, 0xf0, 0xd5, 0xf0, 0x45, 0x3b, 0x47, 0x5f, 0x91, 0x21, 0x4b, 0x4b, - 0x51, 0xc5, 0x2c, 0x4d, 0x15, 0x68, 0xed, 0x39, 0x13, 0x67, 0xf6, 0x64, 0x35, 0x30, 0xf0, 0x83, - 0x65, 0x34, 0x20, 0xcf, 0x50, 0xb1, 0x4a, 0xff, 0x02, 0x15, 0xf3, 0x9c, 0x55, 0x15, 0x14, 0xb1, - 0x48, 0xbd, 0x47, 0xc6, 0xfa, 0xf4, 0x56, 0x5a, 0x58, 0x65, 0x99, 0x4e, 0x7f, 0x9a, 0xd0, 0x4f, - 0x3b, 0xe0, 0x0d, 0x5e, 0xa2, 0xbe, 0x49, 0x8d, 0x11, 0xa0, 0x12, 0x9c, 0xbe, 0x27, 0x6e, 0x2d, - 0x35, 0xc6, 0xa5, 0x69, 0x4d, 0xa4, 0xfb, 0x76, 0x1c, 0x3c, 0x5c, 0x3e, 0x88, 0x74, 0x76, 0x9d, - 0x5a, 0x91, 0xfa, 0x52, 0x4f, 0xff, 0x38, 0x64, 0x78, 0x4f, 0xa5, 0x23, 0xd2, 0xdd, 0xc0, 0xbe, - 0x5d, 0xff, 0x5c, 0xd2, 0xe7, 0xa4, 0xb7, 0x65, 0x45, 0x03, 0xed, 0x9e, 0xb6, 0xa1, 0x63, 0xe2, - 0xda, 0xd8, 0x18, 0xf7, 0x35, 0x78, 0x5d, 0xa3, 0x11, 0x8b, 0xd6, 0xfb, 0xda, 0x18, 0x9a, 0x3a, - 0x65, 0x08, 0x31, 0x8a, 0x12, 0xbc, 0xc7, 0x13, 0x67, 0xd6, 0x5d, 0x11, 0x8b, 0xd6, 0xa2, 0x04, - 0xfa, 0x92, 0x0c, 0x92, 0x42, 0xf2, 0x4d, 0x9c, 0x83, 0xc8, 0x72, 0xf4, 0x7a, 0xc6, 0xe1, 0x1a, - 0xf6, 0xd9, 0x20, 0xea, 0x13, 0xc2, 0x10, 0x95, 0x48, 0x1a, 0x04, 0xed, 0xf5, 0x6d, 0xc6, 0x95, - 0x7c, 0x8c, 0xfe, 0x1e, 0x7d, 0xe7, 0x70, 0xf4, 0x9d, 0xff, 0x47, 0xdf, 0xf9, 0x7d, 0xf2, 0x3b, - 0x87, 0x93, 0xdf, 0xf9, 0x77, 0xf2, 0x3b, 0x3f, 0xe6, 0x99, 0xc0, 0xbc, 0x49, 0x02, 0x2e, 0xcb, - 0xf0, 0xbb, 0xf9, 0x8f, 0xd7, 0x5f, 0x58, 0xa2, 0xc3, 0xf6, 0xf2, 0xdb, 0x37, 0xef, 0xc2, 0xdd, - 0x9d, 0xfb, 0x9f, 0xdf, 0xa0, 0x93, 0xbe, 0xb9, 0xfe, 0xfc, 0x26, 0x00, 0x00, 0xff, 0xff, 0xd7, - 0xa9, 0x65, 0xd6, 0x20, 0x02, 0x00, 0x00, + 0x51, 0xe2, 0x5e, 0x25, 0x26, 0x92, 0xd8, 0x68, 0x90, 0x95, 0x9b, 0x3a, 0x9d, 0x1e, 0xdb, 0x09, + 0x6d, 0xa7, 0x99, 0x39, 0x25, 0xf0, 0x16, 0x3e, 0x90, 0x0f, 0xe0, 0x92, 0xa5, 0x4b, 0x03, 0x2f, + 0x72, 0xc3, 0x4c, 0x2f, 0xdc, 0x7b, 0x77, 0xe7, 0x7c, 0xff, 0x7f, 0xf2, 0x9f, 0x99, 0x43, 0xc6, + 0x1a, 0x95, 0x48, 0x21, 0x14, 0x9c, 0x49, 0xc5, 0x78, 0x01, 0x21, 0x97, 0x15, 0x2a, 0xc6, 0x31, + 0xa8, 0x95, 0x44, 0x49, 0x47, 0xd6, 0x10, 0x5c, 0x0c, 0x53, 0x4d, 0x5e, 0x44, 0x3a, 0x5b, 0x56, + 0x1a, 0x59, 0x85, 0x82, 0x21, 0x7c, 0x35, 0x7c, 0xd1, 0xce, 0xd1, 0x57, 0x64, 0xc8, 0xd2, 0x52, + 0x54, 0x31, 0x4b, 0x53, 0x05, 0x5a, 0x7b, 0xce, 0xc4, 0x99, 0x3d, 0x59, 0x0d, 0x0c, 0xfc, 0x60, + 0x19, 0x0d, 0xc8, 0x33, 0x54, 0xac, 0xd2, 0xbf, 0x40, 0xc5, 0x3c, 0x67, 0x55, 0x05, 0x45, 0x2c, + 0x52, 0xef, 0x91, 0xb1, 0x3e, 0xbd, 0x95, 0x16, 0x56, 0x59, 0xa6, 0xd3, 0x9f, 0x26, 0xf4, 0xd3, + 0x0e, 0x78, 0x83, 0x97, 0xa8, 0x6f, 0x52, 0x63, 0x04, 0xa8, 0x04, 0xa7, 0xef, 0x89, 0x5b, 0x4b, + 0x8d, 0x71, 0x69, 0x5a, 0x13, 0xe9, 0xbe, 0x1d, 0x07, 0x0f, 0x97, 0x0f, 0x22, 0x9d, 0x5d, 0xa7, + 0x56, 0xa4, 0xbe, 0xd4, 0xd3, 0x3f, 0x0e, 0x19, 0xde, 0x53, 0xe9, 0x88, 0x74, 0x37, 0xb0, 0x6f, + 0xd7, 0x3f, 0x97, 0xf4, 0x39, 0xe9, 0x6d, 0x59, 0xd1, 0x40, 0xbb, 0xa7, 0x6d, 0xe8, 0x98, 0xb8, + 0x36, 0x36, 0xc6, 0x7d, 0x0d, 0x5e, 0xd7, 0x68, 0xc4, 0xa2, 0xf5, 0xbe, 0x36, 0x86, 0xa6, 0x4e, + 0x19, 0x42, 0x8c, 0xa2, 0x04, 0xef, 0xf1, 0xc4, 0x99, 0x75, 0x57, 0xc4, 0xa2, 0xb5, 0x28, 0x81, + 0xbe, 0x24, 0x83, 0xa4, 0x90, 0x7c, 0x13, 0xe7, 0x20, 0xb2, 0x1c, 0xbd, 0x9e, 0x71, 0xb8, 0x86, + 0x7d, 0x36, 0x88, 0xfa, 0x84, 0x30, 0x44, 0x25, 0x92, 0x06, 0x41, 0x7b, 0x7d, 0x9b, 0x71, 0x25, + 0x1f, 0xa3, 0xbf, 0x47, 0xdf, 0x39, 0x1c, 0x7d, 0xe7, 0xff, 0xd1, 0x77, 0x7e, 0x9f, 0xfc, 0xce, + 0xe1, 0xe4, 0x77, 0xfe, 0x9d, 0xfc, 0xce, 0x8f, 0x79, 0x26, 0x30, 0x6f, 0x92, 0x80, 0xcb, 0x32, + 0xfc, 0x6e, 0xfe, 0xe3, 0xf5, 0x17, 0x96, 0xe8, 0xb0, 0xbd, 0xfc, 0xf6, 0xcd, 0xbb, 0x70, 0x77, + 0xe7, 0xfe, 0xe7, 0x37, 0xe8, 0xa4, 0x6f, 0xae, 0x3f, 0xbf, 0x09, 0x00, 0x00, 0xff, 0xff, 0x96, + 0xb2, 0xe9, 0xb8, 0x20, 0x02, 0x00, 0x00, } func (m *MsgInstantiateOracleContract) Marshal() (dAtA []byte, err error) { diff --git a/x/icaoracle/types/cosmwasm.pb.go b/x/icaoracle/types/cosmwasm.pb.go index 9d0592a090..f97edf83a4 100644 --- a/x/icaoracle/types/cosmwasm.pb.go +++ b/x/icaoracle/types/cosmwasm.pb.go @@ -257,31 +257,31 @@ var fileDescriptor_42aeb672f768be80 = []byte{ // 428 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x52, 0xb1, 0x8e, 0xd3, 0x40, 0x10, 0x8d, 0x2f, 0x89, 0x0f, 0x96, 0x2b, 0xd0, 0xea, 0x14, 0x99, 0x14, 0x76, 0x74, 0x34, 0x6e, - 0xce, 0x4b, 0x38, 0xbe, 0x20, 0x81, 0x22, 0x12, 0xa1, 0x30, 0x1d, 0x0d, 0x1a, 0x7b, 0x07, 0x63, - 0x11, 0xef, 0x46, 0x9e, 0x4d, 0xee, 0xf8, 0x09, 0xc4, 0x77, 0xf0, 0x25, 0x57, 0x5e, 0x83, 0x44, - 0x15, 0x50, 0xf2, 0x17, 0x54, 0xc8, 0xbb, 0x76, 0x44, 0x41, 0x01, 0x05, 0xcd, 0x78, 0x9e, 0xe7, - 0xcd, 0xe8, 0xbd, 0xa7, 0x65, 0x51, 0xae, 0xa9, 0xba, 0x06, 0xaa, 0x84, 0x2d, 0xdb, 0xa9, 0xe8, - 0x7e, 0x24, 0xeb, 0x5a, 0x1b, 0xcd, 0x1f, 0x1e, 0xb1, 0x2d, 0xdb, 0xe9, 0xf8, 0xbc, 0xd0, 0x85, - 0xb6, 0x43, 0xd1, 0x74, 0x8e, 0x37, 0x0e, 0x1b, 0x9e, 0x26, 0x91, 0x01, 0xa1, 0xd8, 0x4e, 0x33, - 0x34, 0xd0, 0xdc, 0x2a, 0x95, 0x9b, 0x5f, 0x7c, 0xf5, 0x18, 0x5f, 0x52, 0xf1, 0xe2, 0x06, 0xf3, - 0x8d, 0xc1, 0xb9, 0x56, 0xa6, 0x86, 0xdc, 0xf0, 0x11, 0xf3, 0x09, 0x95, 0xc4, 0x3a, 0xf0, 0x26, - 0x5e, 0x7c, 0x3f, 0x6d, 0x11, 0x1f, 0xb3, 0x7b, 0x79, 0xcb, 0x09, 0x4e, 0xec, 0xe4, 0x88, 0x79, - 0xcc, 0xfa, 0x15, 0x15, 0x41, 0x7f, 0xe2, 0xc5, 0x67, 0xb3, 0xd1, 0xcf, 0x5d, 0xc4, 0x53, 0xb8, - 0xee, 0x2e, 0x2e, 0x91, 0x08, 0x0a, 0x4c, 0x1b, 0x0a, 0x07, 0x36, 0x7c, 0xb7, 0x51, 0x92, 0x82, - 0xe1, 0xa4, 0x1f, 0x3f, 0x78, 0xfa, 0x28, 0x71, 0x22, 0x93, 0x46, 0x64, 0xd2, 0x8a, 0x4c, 0xe6, - 0xba, 0x54, 0xb3, 0x27, 0xb7, 0xbb, 0xa8, 0xf7, 0xe5, 0x7b, 0x14, 0x17, 0xa5, 0x79, 0xbf, 0xc9, - 0x92, 0x5c, 0x57, 0xa2, 0x75, 0xe4, 0x3e, 0x97, 0x24, 0x3f, 0x08, 0xf3, 0x71, 0x8d, 0x64, 0x17, - 0x28, 0x75, 0x97, 0x2f, 0x3e, 0x9d, 0xb0, 0xd1, 0x92, 0x8a, 0x85, 0x22, 0x03, 0xca, 0x94, 0xf0, - 0x17, 0xde, 0xce, 0xd9, 0x10, 0x64, 0x55, 0xaa, 0xd6, 0x98, 0x03, 0xfc, 0x31, 0x3b, 0xcd, 0xb5, - 0xc4, 0xb7, 0xa5, 0xb4, 0xce, 0x06, 0x33, 0xb6, 0xdf, 0x45, 0xfe, 0x5c, 0x4b, 0x5c, 0x3c, 0x4f, - 0xfd, 0x66, 0xb4, 0x90, 0xcd, 0xea, 0x0a, 0x32, 0x5c, 0x05, 0x03, 0xb7, 0x6a, 0x41, 0x17, 0xc8, - 0xf0, 0x1f, 0x02, 0xf1, 0xff, 0x5b, 0x20, 0xaf, 0x58, 0xf8, 0xe7, 0x3c, 0x52, 0xa4, 0xb5, 0x56, - 0x84, 0x3c, 0x60, 0xa7, 0x20, 0x65, 0x8d, 0x44, 0x6d, 0x30, 0x1d, 0xe4, 0x9c, 0x0d, 0x24, 0x18, - 0xb0, 0xc1, 0x9c, 0xa5, 0xb6, 0x9f, 0x2d, 0x6f, 0xf7, 0xa1, 0x77, 0xb7, 0x0f, 0xbd, 0x1f, 0xfb, - 0xd0, 0xfb, 0x7c, 0x08, 0x7b, 0x77, 0x87, 0xb0, 0xf7, 0xed, 0x10, 0xf6, 0xde, 0x5c, 0xfd, 0x26, - 0xed, 0xb5, 0xa9, 0x4b, 0x89, 0x97, 0x2f, 0x21, 0x23, 0x41, 0xb6, 0x17, 0xdb, 0xe9, 0x33, 0x71, - 0x23, 0xca, 0x1c, 0x74, 0x0d, 0xf9, 0x0a, 0x9d, 0xd6, 0xcc, 0xb7, 0xcf, 0xf1, 0xea, 0x57, 0x00, - 0x00, 0x00, 0xff, 0xff, 0xdd, 0x04, 0xec, 0xf5, 0xf9, 0x02, 0x00, 0x00, + 0xce, 0x4b, 0x38, 0xf1, 0x03, 0x09, 0x14, 0x91, 0x08, 0x85, 0xe9, 0x68, 0xd0, 0xd8, 0x3b, 0x18, + 0x8b, 0x78, 0x37, 0xf2, 0x6c, 0x72, 0xc7, 0x4f, 0x20, 0xbe, 0x83, 0x2f, 0xb9, 0xf2, 0x1a, 0x24, + 0xaa, 0x80, 0x92, 0xbf, 0xa0, 0x42, 0xde, 0xb5, 0x23, 0x0a, 0x0a, 0x28, 0x68, 0xc6, 0xf3, 0x3c, + 0x6f, 0x46, 0xef, 0x3d, 0x2d, 0x8b, 0x72, 0x4d, 0xd5, 0x35, 0x50, 0x25, 0x6c, 0xd9, 0x4e, 0x45, + 0xf7, 0x23, 0x59, 0xd7, 0xda, 0x68, 0xfe, 0xf0, 0x88, 0x6d, 0xd9, 0x4e, 0xc7, 0xe7, 0x85, 0x2e, + 0xb4, 0x1d, 0x8a, 0xa6, 0x73, 0xbc, 0x71, 0xd8, 0xf0, 0x34, 0x89, 0x0c, 0x08, 0xc5, 0x76, 0x9a, + 0xa1, 0x81, 0xe6, 0x56, 0xa9, 0xdc, 0xfc, 0xe2, 0xab, 0xc7, 0xf8, 0x92, 0x8a, 0x17, 0x37, 0x98, + 0x6f, 0x0c, 0xce, 0xb5, 0x32, 0x35, 0xe4, 0x86, 0x8f, 0x98, 0x4f, 0xa8, 0x24, 0xd6, 0x81, 0x37, + 0xf1, 0xe2, 0xfb, 0x69, 0x8b, 0xf8, 0x98, 0xdd, 0xcb, 0x5b, 0x4e, 0x70, 0x62, 0x27, 0x47, 0xcc, + 0x63, 0xd6, 0xaf, 0xa8, 0x08, 0xfa, 0x13, 0x2f, 0x3e, 0x9b, 0x8d, 0x7e, 0xee, 0x22, 0x9e, 0xc2, + 0x75, 0x77, 0x71, 0x89, 0x44, 0x50, 0x60, 0xda, 0x50, 0x38, 0xb0, 0xe1, 0xbb, 0x8d, 0x92, 0x14, + 0x0c, 0x27, 0xfd, 0xf8, 0xc1, 0xd3, 0x47, 0x89, 0x13, 0x99, 0x34, 0x22, 0x93, 0x56, 0x64, 0x32, + 0xd7, 0xa5, 0x9a, 0x3d, 0xb9, 0xdd, 0x45, 0xbd, 0x2f, 0xdf, 0xa3, 0xb8, 0x28, 0xcd, 0xfb, 0x4d, + 0x96, 0xe4, 0xba, 0x12, 0xad, 0x23, 0xf7, 0xb9, 0x24, 0xf9, 0x41, 0x98, 0x8f, 0x6b, 0x24, 0xbb, + 0x40, 0xa9, 0xbb, 0x7c, 0xf1, 0xe9, 0x84, 0x8d, 0x96, 0x54, 0x2c, 0x14, 0x19, 0x50, 0xa6, 0x84, + 0xbf, 0xf0, 0x76, 0xce, 0x86, 0x20, 0xab, 0x52, 0xb5, 0xc6, 0x1c, 0xe0, 0x8f, 0xd9, 0x69, 0xae, + 0x25, 0xbe, 0x2d, 0xa5, 0x75, 0x36, 0x98, 0xb1, 0xfd, 0x2e, 0xf2, 0xe7, 0x5a, 0xe2, 0xe2, 0x79, + 0xea, 0x37, 0xa3, 0x85, 0x6c, 0x56, 0x57, 0x90, 0xe1, 0x2a, 0x18, 0xb8, 0x55, 0x0b, 0xba, 0x40, + 0x86, 0xff, 0x10, 0x88, 0xff, 0xdf, 0x02, 0x79, 0xc5, 0xc2, 0x3f, 0xe7, 0x91, 0x22, 0xad, 0xb5, + 0x22, 0xe4, 0x01, 0x3b, 0x05, 0x29, 0x6b, 0x24, 0x6a, 0x83, 0xe9, 0x20, 0xe7, 0x6c, 0x20, 0xc1, + 0x80, 0x0d, 0xe6, 0x2c, 0xb5, 0xfd, 0x6c, 0x79, 0xbb, 0x0f, 0xbd, 0xbb, 0x7d, 0xe8, 0xfd, 0xd8, + 0x87, 0xde, 0xe7, 0x43, 0xd8, 0xbb, 0x3b, 0x84, 0xbd, 0x6f, 0x87, 0xb0, 0xf7, 0xe6, 0xea, 0x37, + 0x69, 0xaf, 0x4d, 0x5d, 0x4a, 0xbc, 0x7c, 0x09, 0x19, 0x09, 0xb2, 0xbd, 0xd8, 0x4e, 0x9f, 0x89, + 0x1b, 0x51, 0xe6, 0xa0, 0x6b, 0xc8, 0x57, 0xe8, 0xb4, 0x66, 0xbe, 0x7d, 0x8e, 0x57, 0xbf, 0x02, + 0x00, 0x00, 0xff, 0xff, 0x9c, 0x1f, 0x60, 0x9b, 0xf9, 0x02, 0x00, 0x00, } func (m *MsgExecuteContract) Marshal() (dAtA []byte, err error) { diff --git a/x/icaoracle/types/expected_keepers.go b/x/icaoracle/types/expected_keepers.go index 4f0e283b67..c999f32b56 100644 --- a/x/icaoracle/types/expected_keepers.go +++ b/x/icaoracle/types/expected_keepers.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/ibc-go/v7/modules/core/exported" ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" - icacallbackstypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + icacallbackstypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" ) // ClientKeeper defines the expected IBC client keeper diff --git a/x/icaoracle/types/genesis.pb.go b/x/icaoracle/types/genesis.pb.go index 66f1deac39..33ad1f91e2 100644 --- a/x/icaoracle/types/genesis.pb.go +++ b/x/icaoracle/types/genesis.pb.go @@ -145,8 +145,8 @@ var fileDescriptor_89fd81957c6adfb8 = []byte{ 0xdf, 0x13, 0x8f, 0xe4, 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x71, 0xc2, 0x63, 0x39, 0x86, 0x0b, 0x8f, 0xe5, 0x18, 0x6e, 0x3c, 0x96, 0x63, 0x88, 0x32, 0x4e, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x0f, 0x06, 0x1b, 0xaf, 0xeb, 0x93, 0x98, 0x54, 0xac, - 0x0f, 0x0d, 0xce, 0x32, 0x43, 0x13, 0xfd, 0x0a, 0xa4, 0x40, 0x2d, 0xa9, 0x2c, 0x48, 0x2d, 0x4e, - 0x62, 0x03, 0x87, 0xa8, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0xf8, 0xc3, 0xd1, 0xb5, 0xbd, 0x01, + 0x0f, 0x0d, 0xce, 0x32, 0x43, 0x53, 0xfd, 0x0a, 0xa4, 0x40, 0x2d, 0xa9, 0x2c, 0x48, 0x2d, 0x4e, + 0x62, 0x03, 0x87, 0xa8, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0xb9, 0xd8, 0x5d, 0xdb, 0xbd, 0x01, 0x00, 0x00, } diff --git a/x/icaoracle/types/genesis_test.go b/x/icaoracle/types/genesis_test.go index 517c63822e..fab5e49b9f 100644 --- a/x/icaoracle/types/genesis_test.go +++ b/x/icaoracle/types/genesis_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/Stride-Labs/stride/v14/app/apptesting" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + "github.com/Stride-Labs/stride/v15/app/apptesting" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) func TestValidateGenesis(t *testing.T) { diff --git a/x/icaoracle/types/ica_test.go b/x/icaoracle/types/ica_test.go index 9f5a4a01c3..b88970a860 100644 --- a/x/icaoracle/types/ica_test.go +++ b/x/icaoracle/types/ica_test.go @@ -9,7 +9,7 @@ import ( proto "github.com/cosmos/gogoproto/proto" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) func TestValidateICATx(t *testing.T) { diff --git a/x/icaoracle/types/icaoracle.pb.go b/x/icaoracle/types/icaoracle.pb.go index bd3f52fc1e..118a1d71de 100644 --- a/x/icaoracle/types/icaoracle.pb.go +++ b/x/icaoracle/types/icaoracle.pb.go @@ -305,7 +305,7 @@ var fileDescriptor_842e38c1f0da9e66 = []byte{ // 557 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x64, 0x93, 0xc1, 0x6e, 0xd3, 0x4c, 0x14, 0x85, 0xe3, 0xe6, 0xaf, 0xdb, 0xde, 0xa6, 0x7f, 0xcd, 0x28, 0x82, 0x34, 0x12, 0xc6, 0xa4, - 0x2c, 0x02, 0x52, 0x1d, 0x41, 0x11, 0x5b, 0x14, 0x1a, 0x03, 0x96, 0x48, 0x5b, 0xec, 0x64, 0xc3, + 0x2c, 0x02, 0x52, 0x1d, 0x41, 0x05, 0x5b, 0x14, 0x1a, 0x03, 0x96, 0x48, 0x5b, 0xec, 0x64, 0xc3, 0xc6, 0x9a, 0xcc, 0x8c, 0x92, 0x51, 0x62, 0x8f, 0x65, 0x4f, 0x22, 0xf2, 0x0a, 0x5d, 0xb1, 0x60, 0x49, 0xdf, 0x87, 0x65, 0x97, 0x2c, 0x51, 0xc2, 0x83, 0x20, 0x8f, 0x9d, 0xd6, 0xc0, 0x6e, 0xee, 0x77, 0x8e, 0xaf, 0x7c, 0xee, 0xcc, 0x05, 0x2b, 0x95, 0x09, 0xa7, 0xac, 0xc3, 0x09, 0x16, 0x09, @@ -337,7 +337,7 @@ var fileDescriptor_842e38c1f0da9e66 = []byte{ 0x5f, 0xd6, 0x66, 0xe5, 0x66, 0x6d, 0x56, 0x7e, 0xac, 0xcd, 0xca, 0xa7, 0xd3, 0x31, 0x97, 0x93, 0xf9, 0xc8, 0x26, 0x22, 0xec, 0xf8, 0x6a, 0x46, 0x27, 0x1f, 0xf0, 0x28, 0xed, 0x14, 0x8b, 0xb5, 0x78, 0xfe, 0xb2, 0xf3, 0xb9, 0xb4, 0x5e, 0xd9, 0x13, 0x48, 0x47, 0xba, 0xda, 0x99, 0xd3, 0xdf, - 0x01, 0x00, 0x00, 0xff, 0xff, 0xa6, 0x92, 0x4b, 0x14, 0x7f, 0x03, 0x00, 0x00, + 0x01, 0x00, 0x00, 0xff, 0xff, 0xe7, 0x89, 0xc7, 0x7a, 0x7f, 0x03, 0x00, 0x00, } func (m *Oracle) Marshal() (dAtA []byte, err error) { diff --git a/x/icaoracle/types/message_add_oracle.go b/x/icaoracle/types/message_add_oracle.go index 12a1b6b0c8..e88c999d2e 100644 --- a/x/icaoracle/types/message_add_oracle.go +++ b/x/icaoracle/types/message_add_oracle.go @@ -8,7 +8,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/cosmos/cosmos-sdk/x/auth/migrations/legacytx" - "github.com/Stride-Labs/stride/v14/utils" + "github.com/Stride-Labs/stride/v15/utils" ) const TypeMsgAddOracle = "add_oracle" diff --git a/x/icaoracle/types/message_add_oracle_test.go b/x/icaoracle/types/message_add_oracle_test.go index 122c200245..fe79a3cfec 100644 --- a/x/icaoracle/types/message_add_oracle_test.go +++ b/x/icaoracle/types/message_add_oracle_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/Stride-Labs/stride/v14/app/apptesting" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + "github.com/Stride-Labs/stride/v15/app/apptesting" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) func TestMsgAddOracle(t *testing.T) { diff --git a/x/icaoracle/types/message_instantiate_oracle.go b/x/icaoracle/types/message_instantiate_oracle.go index a60a0f5513..bcefea7241 100644 --- a/x/icaoracle/types/message_instantiate_oracle.go +++ b/x/icaoracle/types/message_instantiate_oracle.go @@ -8,7 +8,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/cosmos/cosmos-sdk/x/auth/migrations/legacytx" - "github.com/Stride-Labs/stride/v14/utils" + "github.com/Stride-Labs/stride/v15/utils" ) const TypeMsgInstantiateOracle = "instantiate_oracle" diff --git a/x/icaoracle/types/message_instantiate_oracle_test.go b/x/icaoracle/types/message_instantiate_oracle_test.go index edb424bde0..baf30af9ba 100644 --- a/x/icaoracle/types/message_instantiate_oracle_test.go +++ b/x/icaoracle/types/message_instantiate_oracle_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/Stride-Labs/stride/v14/app/apptesting" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + "github.com/Stride-Labs/stride/v15/app/apptesting" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) func TestMsgInstantiateOracle(t *testing.T) { diff --git a/x/icaoracle/types/message_remove_oracle_test.go b/x/icaoracle/types/message_remove_oracle_test.go index abab651a83..c52a8c71c3 100644 --- a/x/icaoracle/types/message_remove_oracle_test.go +++ b/x/icaoracle/types/message_remove_oracle_test.go @@ -7,8 +7,8 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" "github.com/stretchr/testify/require" - "github.com/Stride-Labs/stride/v14/app/apptesting" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + "github.com/Stride-Labs/stride/v15/app/apptesting" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) func TestMsgRemoveOracle(t *testing.T) { diff --git a/x/icaoracle/types/message_restore_oracle_interchain_account_test.go b/x/icaoracle/types/message_restore_oracle_interchain_account_test.go index 44657728c1..45e564f0c9 100644 --- a/x/icaoracle/types/message_restore_oracle_interchain_account_test.go +++ b/x/icaoracle/types/message_restore_oracle_interchain_account_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/Stride-Labs/stride/v14/app/apptesting" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + "github.com/Stride-Labs/stride/v15/app/apptesting" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) func TestMsgRestoreOracleICA(t *testing.T) { diff --git a/x/icaoracle/types/message_toggle_oracle_test.go b/x/icaoracle/types/message_toggle_oracle_test.go index 78e780371f..a8b53ad980 100644 --- a/x/icaoracle/types/message_toggle_oracle_test.go +++ b/x/icaoracle/types/message_toggle_oracle_test.go @@ -7,8 +7,8 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" "github.com/stretchr/testify/require" - "github.com/Stride-Labs/stride/v14/app/apptesting" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + "github.com/Stride-Labs/stride/v15/app/apptesting" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) func TestMsgMsgToggleOracle(t *testing.T) { diff --git a/x/icaoracle/types/metric_test.go b/x/icaoracle/types/metric_test.go index 9960d4b63f..8021c5be7b 100644 --- a/x/icaoracle/types/metric_test.go +++ b/x/icaoracle/types/metric_test.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) // Tests NewMetric and GetMetricID diff --git a/x/icaoracle/types/oracle_test.go b/x/icaoracle/types/oracle_test.go index b4966cf6f3..40569b9900 100644 --- a/x/icaoracle/types/oracle_test.go +++ b/x/icaoracle/types/oracle_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/Stride-Labs/stride/v14/x/icaoracle/types" + "github.com/Stride-Labs/stride/v15/x/icaoracle/types" ) func TestValidateICASetup(t *testing.T) { diff --git a/x/icaoracle/types/query.pb.go b/x/icaoracle/types/query.pb.go index f1457049b6..6922cf7f49 100644 --- a/x/icaoracle/types/query.pb.go +++ b/x/icaoracle/types/query.pb.go @@ -402,7 +402,7 @@ var fileDescriptor_d4d4563f64cd9510 = []byte{ // 519 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x54, 0x41, 0x6b, 0x13, 0x41, 0x14, 0xce, 0xd4, 0x9a, 0xb4, 0x4f, 0x8a, 0xf2, 0x2c, 0x35, 0x5d, 0xea, 0x1a, 0x16, 0x5b, 0x2b, - 0xda, 0x1d, 0xdb, 0x08, 0x7a, 0xb5, 0x1e, 0x44, 0xb4, 0xa8, 0x29, 0x78, 0x10, 0x21, 0x6c, 0x36, + 0xda, 0x1d, 0xdb, 0x20, 0x7a, 0xb5, 0x1e, 0x44, 0xb4, 0xa8, 0x29, 0x78, 0x10, 0x21, 0x6c, 0x36, 0xc3, 0x76, 0x30, 0xdd, 0x49, 0x77, 0x26, 0xc5, 0x45, 0xbc, 0x78, 0xf1, 0x26, 0x05, 0x7f, 0x82, 0x7f, 0xa6, 0xc7, 0x82, 0x17, 0x41, 0x10, 0x49, 0xfc, 0x21, 0xd2, 0x99, 0x49, 0xea, 0xba, 0x49, 0x13, 0xed, 0x29, 0xb3, 0xef, 0x7d, 0xef, 0xfb, 0xbe, 0x79, 0xf3, 0x11, 0x58, 0x92, 0x2a, 0xe1, @@ -431,8 +431,8 @@ var fileDescriptor_d4d4563f64cd9510 = []byte{ 0x07, 0xfb, 0xb7, 0x7d, 0xd9, 0x74, 0x6d, 0x6e, 0x1d, 0x76, 0x5d, 0x72, 0xd4, 0x75, 0xc9, 0xcf, 0xae, 0x4b, 0x0e, 0x7a, 0x6e, 0xe1, 0xa8, 0xe7, 0x16, 0xbe, 0xf5, 0xdc, 0xc2, 0xab, 0x6a, 0xc4, 0xd5, 0x4e, 0xa7, 0xe1, 0x87, 0x62, 0x77, 0x18, 0xd5, 0xfe, 0xfa, 0x5d, 0xfa, 0xf6, 0x0f, 0x42, - 0x95, 0xb6, 0x99, 0x6c, 0x14, 0xf5, 0x3f, 0x5b, 0xf5, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0x8b, - 0x18, 0x88, 0xf4, 0x61, 0x05, 0x00, 0x00, + 0x95, 0xb6, 0x99, 0x6c, 0x14, 0xf5, 0x3f, 0x5b, 0xf5, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0xca, + 0x03, 0x04, 0x9a, 0x61, 0x05, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/icaoracle/types/tx.pb.go b/x/icaoracle/types/tx.pb.go index 8d95c7df4f..bd960ceda8 100644 --- a/x/icaoracle/types/tx.pb.go +++ b/x/icaoracle/types/tx.pb.go @@ -519,47 +519,47 @@ func init() { func init() { proto.RegisterFile("stride/icaoracle/tx.proto", fileDescriptor_6e58a377bb8520d3) } var fileDescriptor_6e58a377bb8520d3 = []byte{ - // 628 bytes of a gzipped FileDescriptorProto + // 627 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x95, 0x3f, 0x6f, 0xd3, 0x4e, 0x18, 0xc7, 0xeb, 0xb6, 0xea, 0xef, 0xd7, 0x53, 0x4b, 0x53, 0x53, 0x35, 0x89, 0x01, 0xd3, 0x1a, - 0x11, 0x42, 0xa5, 0xd8, 0xb4, 0xe5, 0x9f, 0xc2, 0x94, 0x66, 0x8a, 0x44, 0x54, 0xc9, 0x61, 0x42, - 0x48, 0xd6, 0xe5, 0x7c, 0x38, 0x16, 0xc9, 0x5d, 0x74, 0x77, 0x8d, 0xda, 0x95, 0x91, 0x09, 0x89, - 0x89, 0x77, 0x80, 0x98, 0x3a, 0xf0, 0x02, 0x18, 0x19, 0x2b, 0x26, 0x46, 0x94, 0x0c, 0x9d, 0x78, - 0x0f, 0xc8, 0x7f, 0xe3, 0x38, 0x2e, 0x0d, 0x42, 0xb0, 0x24, 0xba, 0xe7, 0xf9, 0xde, 0xf7, 0x9e, - 0xcf, 0xdd, 0x73, 0x67, 0x50, 0xe4, 0x82, 0xb9, 0x36, 0x36, 0x5c, 0x04, 0x29, 0x83, 0xa8, 0x8b, - 0x0d, 0x71, 0xac, 0xf7, 0x19, 0x15, 0x54, 0xce, 0x05, 0x29, 0x3d, 0x4e, 0x29, 0x45, 0x44, 0x79, - 0x8f, 0x72, 0xcb, 0xcf, 0x1b, 0xc1, 0x20, 0x10, 0x2b, 0xf9, 0x60, 0x64, 0xf4, 0xb8, 0x63, 0x0c, - 0x76, 0xbd, 0xbf, 0x30, 0xb1, 0x0e, 0x7b, 0x2e, 0xa1, 0x86, 0xff, 0x1b, 0x84, 0xb4, 0xf7, 0x12, - 0x58, 0x69, 0x72, 0xa7, 0x66, 0xdb, 0x87, 0xbe, 0xaf, 0xbc, 0x07, 0xfe, 0x43, 0x0c, 0x43, 0x41, - 0x59, 0x41, 0xda, 0x92, 0xca, 0xcb, 0x07, 0x85, 0xaf, 0x9f, 0x2a, 0x1b, 0xa1, 0x7f, 0xcd, 0xb6, - 0x19, 0xe6, 0xbc, 0x25, 0x98, 0x4b, 0x1c, 0x33, 0x12, 0xca, 0xb7, 0xc0, 0x2a, 0xa2, 0x84, 0x60, - 0x24, 0x5c, 0x4a, 0x2c, 0xd7, 0x2e, 0xcc, 0x7b, 0x33, 0xcd, 0x95, 0x71, 0xb0, 0x61, 0x57, 0xef, - 0xbd, 0x3e, 0x3f, 0xdd, 0x89, 0xa6, 0xbc, 0x39, 0x3f, 0xdd, 0xb9, 0x19, 0xe2, 0x1e, 0x27, 0x80, - 0x93, 0xa5, 0x68, 0x9b, 0x60, 0x23, 0x39, 0x36, 0x31, 0xef, 0x53, 0xc2, 0xb1, 0xf6, 0x6e, 0xde, - 0x4f, 0x34, 0x08, 0x17, 0x90, 0x08, 0x17, 0x0a, 0xfc, 0x07, 0xb5, 0x97, 0xc0, 0x5a, 0xb0, 0xb6, - 0x85, 0x3a, 0xd0, 0x4d, 0x54, 0xbf, 0x1a, 0x84, 0xeb, 0x5e, 0xb4, 0x61, 0xcb, 0x65, 0x90, 0x43, - 0x94, 0x08, 0x06, 0x91, 0xb0, 0x10, 0xb5, 0xb1, 0x27, 0x5c, 0xd8, 0x92, 0xca, 0x8b, 0xe6, 0x95, - 0x28, 0x5e, 0xa7, 0x36, 0x6e, 0xd8, 0xf2, 0x13, 0xa0, 0x08, 0x06, 0x09, 0x7f, 0x89, 0x99, 0xe7, - 0x49, 0x08, 0xee, 0x5a, 0x94, 0x58, 0x81, 0x5d, 0x61, 0xd1, 0x37, 0xcf, 0x47, 0x8a, 0x7a, 0x20, - 0x38, 0x24, 0x01, 0x42, 0xf5, 0x71, 0x7a, 0x97, 0xee, 0x64, 0xef, 0xd2, 0x14, 0xbc, 0xa6, 0x82, - 0xeb, 0x59, 0xf1, 0x78, 0xd7, 0x3e, 0x4a, 0xe0, 0x6a, 0x93, 0x3b, 0x26, 0xe6, 0x82, 0xb2, 0x30, - 0xd9, 0xa8, 0xd7, 0xfe, 0xe6, 0xa6, 0x55, 0x1f, 0xa5, 0x69, 0x4a, 0xd9, 0x34, 0xe9, 0xa2, 0xb4, - 0x1b, 0xe0, 0x5a, 0x46, 0x38, 0x66, 0xf9, 0x2c, 0x81, 0xb5, 0x26, 0x77, 0x9e, 0x51, 0xc7, 0xe9, - 0x46, 0x87, 0xff, 0x10, 0x2c, 0xc3, 0x23, 0xd1, 0xa1, 0xcc, 0x15, 0x27, 0x97, 0x92, 0x8c, 0xa5, - 0x33, 0x37, 0xc0, 0x26, 0x58, 0x82, 0x48, 0xb8, 0x03, 0xec, 0x1f, 0xfb, 0xff, 0x66, 0x38, 0xaa, - 0x3e, 0xf0, 0x18, 0xc7, 0x7e, 0x1e, 0xa5, 0x96, 0x4d, 0x99, 0x2c, 0x57, 0x2b, 0x82, 0x7c, 0x2a, + 0x11, 0x42, 0xa5, 0xd8, 0xb4, 0x55, 0x01, 0x85, 0x29, 0xcd, 0x14, 0x89, 0xa8, 0x92, 0xc3, 0x84, + 0x90, 0xac, 0xcb, 0xf9, 0x70, 0x2c, 0x92, 0xbb, 0xe8, 0xee, 0x1a, 0xb5, 0x2b, 0x23, 0x13, 0x12, + 0x13, 0xef, 0x00, 0x31, 0x75, 0xe0, 0x05, 0x30, 0x32, 0x56, 0x4c, 0x8c, 0x28, 0x19, 0x3a, 0xf1, + 0x1e, 0x90, 0xff, 0xc6, 0x71, 0x5c, 0x1a, 0x84, 0x60, 0x49, 0x74, 0xcf, 0xf3, 0xbd, 0xef, 0x3d, + 0x9f, 0xbb, 0xe7, 0xce, 0xa0, 0xc8, 0x05, 0x73, 0x6d, 0x6c, 0xb8, 0x08, 0x52, 0x06, 0x51, 0x17, + 0x1b, 0xe2, 0x44, 0xef, 0x33, 0x2a, 0xa8, 0x9c, 0x0b, 0x52, 0x7a, 0x9c, 0x52, 0x8a, 0x88, 0xf2, + 0x1e, 0xe5, 0x96, 0x9f, 0x37, 0x82, 0x41, 0x20, 0x56, 0xf2, 0xc1, 0xc8, 0xe8, 0x71, 0xc7, 0x18, + 0xec, 0x7a, 0x7f, 0x61, 0x62, 0x1d, 0xf6, 0x5c, 0x42, 0x0d, 0xff, 0x37, 0x08, 0x69, 0xef, 0x25, + 0xb0, 0xd2, 0xe4, 0x4e, 0xcd, 0xb6, 0x8f, 0x7c, 0x5f, 0x79, 0x0f, 0xfc, 0x87, 0x18, 0x86, 0x82, + 0xb2, 0x82, 0xb4, 0x25, 0x95, 0x97, 0x0f, 0x0b, 0x5f, 0x3f, 0x55, 0x36, 0x42, 0xff, 0x9a, 0x6d, + 0x33, 0xcc, 0x79, 0x4b, 0x30, 0x97, 0x38, 0x66, 0x24, 0x94, 0xef, 0x80, 0x55, 0x44, 0x09, 0xc1, + 0x48, 0xb8, 0x94, 0x58, 0xae, 0x5d, 0x98, 0xf7, 0x66, 0x9a, 0x2b, 0xe3, 0x60, 0xc3, 0xae, 0x3e, + 0x78, 0x7d, 0x71, 0xb6, 0x13, 0x4d, 0x79, 0x73, 0x71, 0xb6, 0x73, 0x3b, 0xc4, 0x3d, 0x49, 0x00, + 0x27, 0x4b, 0xd1, 0x36, 0xc1, 0x46, 0x72, 0x6c, 0x62, 0xde, 0xa7, 0x84, 0x63, 0xed, 0xdd, 0xbc, + 0x9f, 0x68, 0x10, 0x2e, 0x20, 0x11, 0x2e, 0x14, 0xf8, 0x0f, 0x6a, 0x2f, 0x81, 0xb5, 0x60, 0x6d, + 0x0b, 0x75, 0xa0, 0x9b, 0xa8, 0x7e, 0x35, 0x08, 0xd7, 0xbd, 0x68, 0xc3, 0x96, 0xcb, 0x20, 0x87, + 0x28, 0x11, 0x0c, 0x22, 0x61, 0x21, 0x6a, 0x63, 0x4f, 0xb8, 0xb0, 0x25, 0x95, 0x17, 0xcd, 0x6b, + 0x51, 0xbc, 0x4e, 0x6d, 0xdc, 0xb0, 0xe5, 0x27, 0x40, 0x11, 0x0c, 0x12, 0xfe, 0x12, 0x33, 0xcf, + 0x93, 0x10, 0xdc, 0xb5, 0x28, 0xb1, 0x02, 0xbb, 0xc2, 0xa2, 0x6f, 0x9e, 0x8f, 0x14, 0xf5, 0x40, + 0x70, 0x44, 0x02, 0x84, 0xea, 0xe3, 0xf4, 0x2e, 0xdd, 0xcb, 0xde, 0xa5, 0x29, 0x78, 0x4d, 0x05, + 0x37, 0xb3, 0xe2, 0xf1, 0xae, 0x7d, 0x94, 0xc0, 0xf5, 0x26, 0x77, 0x4c, 0xcc, 0x05, 0x65, 0x61, + 0xb2, 0x51, 0xaf, 0xfd, 0xcd, 0x4d, 0xab, 0x3e, 0x4a, 0xd3, 0x94, 0xb2, 0x69, 0xd2, 0x45, 0x69, + 0xb7, 0xc0, 0x8d, 0x8c, 0x70, 0xcc, 0xf2, 0x59, 0x02, 0x6b, 0x4d, 0xee, 0x3c, 0xa3, 0x8e, 0xd3, + 0x8d, 0x0e, 0xff, 0x21, 0x58, 0x86, 0xc7, 0xa2, 0x43, 0x99, 0x2b, 0x4e, 0xaf, 0x24, 0x19, 0x4b, + 0x67, 0x6e, 0x80, 0x4d, 0xb0, 0x04, 0x91, 0x70, 0x07, 0xd8, 0x3f, 0xf6, 0xff, 0xcd, 0x70, 0x54, + 0x3d, 0xf0, 0x18, 0xc7, 0x7e, 0x1e, 0xa5, 0x96, 0x4d, 0x99, 0x2c, 0x57, 0x2b, 0x82, 0x7c, 0x2a, 0x14, 0xd3, 0x7d, 0x08, 0xe8, 0x4c, 0xdc, 0xa3, 0x83, 0x7f, 0x44, 0xf7, 0x1b, 0x14, 0xc9, 0xb2, 0x42, 0x8a, 0x64, 0x28, 0xa2, 0xd8, 0xfb, 0xb1, 0x00, 0x16, 0x9a, 0xdc, 0x91, 0x5b, 0x60, 0x79, 0xfc, 0xba, 0xa8, 0x7a, 0xfa, 0x21, 0xd3, 0x93, 0x57, 0x5c, 0x29, 0xfd, 0x3a, 0x1f, 0x99, 0xcb, 0xaf, 0xc0, 0xfa, 0xf4, 0xf5, 0xcf, 0x9e, 0x3c, 0xa5, 0x53, 0xf4, 0xd9, 0x74, 0xf1, 0x62, 0x1d, - 0x90, 0x9b, 0xba, 0x35, 0xb7, 0x33, 0x3d, 0xd2, 0x32, 0xa5, 0x32, 0x93, 0x2c, 0x5e, 0xe9, 0x05, - 0x58, 0x99, 0xe8, 0xe9, 0xed, 0xcc, 0xe9, 0x49, 0x89, 0x72, 0xf7, 0x52, 0x49, 0xd2, 0x7d, 0xa2, - 0xa7, 0xb6, 0x2f, 0x28, 0x6e, 0x2c, 0xb9, 0xc0, 0x3d, 0xeb, 0xbc, 0x0f, 0x9a, 0x5f, 0x86, 0xaa, - 0x74, 0x36, 0x54, 0xa5, 0xef, 0x43, 0x55, 0x7a, 0x3b, 0x52, 0xe7, 0xce, 0x46, 0xea, 0xdc, 0xb7, - 0x91, 0x3a, 0xf7, 0x7c, 0xdf, 0x71, 0x45, 0xe7, 0xa8, 0xad, 0x23, 0xda, 0x33, 0x5a, 0xbe, 0x5d, - 0xe5, 0x29, 0x6c, 0x73, 0x23, 0xec, 0xaf, 0xc1, 0xee, 0xfd, 0x89, 0x1e, 0x13, 0x27, 0x7d, 0xcc, - 0xdb, 0x4b, 0xfe, 0xf7, 0x69, 0xff, 0x67, 0x00, 0x00, 0x00, 0xff, 0xff, 0x62, 0xe3, 0x02, 0x1e, - 0x15, 0x07, 0x00, 0x00, + 0x90, 0x9b, 0xba, 0x35, 0x77, 0x33, 0x3d, 0xd2, 0x32, 0xa5, 0x32, 0x93, 0x2c, 0x5e, 0xe9, 0x05, + 0x58, 0x99, 0xe8, 0xe9, 0xed, 0xcc, 0xe9, 0x49, 0x89, 0x72, 0xff, 0x4a, 0x49, 0xd2, 0x7d, 0xa2, + 0xa7, 0xb6, 0x2f, 0x29, 0x6e, 0x2c, 0xb9, 0xc4, 0x3d, 0xeb, 0xbc, 0x0f, 0x9b, 0x5f, 0x86, 0xaa, + 0x74, 0x3e, 0x54, 0xa5, 0xef, 0x43, 0x55, 0x7a, 0x3b, 0x52, 0xe7, 0xce, 0x47, 0xea, 0xdc, 0xb7, + 0x91, 0x3a, 0xf7, 0x7c, 0xdf, 0x71, 0x45, 0xe7, 0xb8, 0xad, 0x23, 0xda, 0x33, 0x5a, 0xbe, 0x5d, + 0xe5, 0x29, 0x6c, 0x73, 0x23, 0xec, 0xaf, 0xc1, 0xee, 0xc1, 0x44, 0x8f, 0x89, 0xd3, 0x3e, 0xe6, + 0xed, 0x25, 0xff, 0xfb, 0xb4, 0xff, 0x33, 0x00, 0x00, 0xff, 0xff, 0x23, 0xf8, 0x8e, 0x70, 0x15, + 0x07, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/interchainquery/client/cli/query.go b/x/interchainquery/client/cli/query.go index 44b8798bc2..b8b1486f23 100644 --- a/x/interchainquery/client/cli/query.go +++ b/x/interchainquery/client/cli/query.go @@ -12,7 +12,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/version" - "github.com/Stride-Labs/stride/v14/x/interchainquery/types" + "github.com/Stride-Labs/stride/v15/x/interchainquery/types" ) // GetQueryCmd returns the cli query commands for this module. diff --git a/x/interchainquery/genesis.go b/x/interchainquery/genesis.go index 0d8840d602..94ea4d9837 100644 --- a/x/interchainquery/genesis.go +++ b/x/interchainquery/genesis.go @@ -3,8 +3,8 @@ package interchainquery import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/interchainquery/keeper" - "github.com/Stride-Labs/stride/v14/x/interchainquery/types" + "github.com/Stride-Labs/stride/v15/x/interchainquery/keeper" + "github.com/Stride-Labs/stride/v15/x/interchainquery/types" ) // InitGenesis initializes the capability module's state from a provided genesis diff --git a/x/interchainquery/handler.go b/x/interchainquery/handler.go index f186818904..714424ac48 100644 --- a/x/interchainquery/handler.go +++ b/x/interchainquery/handler.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/Stride-Labs/stride/v14/x/interchainquery/keeper" - "github.com/Stride-Labs/stride/v14/x/interchainquery/types" + "github.com/Stride-Labs/stride/v15/x/interchainquery/keeper" + "github.com/Stride-Labs/stride/v15/x/interchainquery/types" ) // NewHandler returns a handler for interchainquery module messages diff --git a/x/interchainquery/keeper/abci.go b/x/interchainquery/keeper/abci.go index 1234347ea2..0abfa99c60 100644 --- a/x/interchainquery/keeper/abci.go +++ b/x/interchainquery/keeper/abci.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/interchainquery/types" + "github.com/Stride-Labs/stride/v15/x/interchainquery/types" ) // EndBlocker of interchainquery module diff --git a/x/interchainquery/keeper/grpc_query.go b/x/interchainquery/keeper/grpc_query.go index 4c0b20cd38..d00ef762e6 100644 --- a/x/interchainquery/keeper/grpc_query.go +++ b/x/interchainquery/keeper/grpc_query.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/interchainquery/types" + "github.com/Stride-Labs/stride/v15/x/interchainquery/types" ) var _ types.QueryServiceServer = Keeper{} diff --git a/x/interchainquery/keeper/keeper.go b/x/interchainquery/keeper/keeper.go index 87eddb25f3..245ecb481d 100644 --- a/x/interchainquery/keeper/keeper.go +++ b/x/interchainquery/keeper/keeper.go @@ -13,8 +13,8 @@ import ( connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" ibckeeper "github.com/cosmos/ibc-go/v7/modules/core/keeper" - "github.com/Stride-Labs/stride/v14/utils" - "github.com/Stride-Labs/stride/v14/x/interchainquery/types" + "github.com/Stride-Labs/stride/v15/utils" + "github.com/Stride-Labs/stride/v15/x/interchainquery/types" ) // Keeper of this module maintains collections of registered zones. diff --git a/x/interchainquery/keeper/keeper_test.go b/x/interchainquery/keeper/keeper_test.go index a7b363adc6..a46c6884de 100644 --- a/x/interchainquery/keeper/keeper_test.go +++ b/x/interchainquery/keeper/keeper_test.go @@ -5,9 +5,9 @@ import ( "github.com/stretchr/testify/suite" - "github.com/Stride-Labs/stride/v14/app/apptesting" - "github.com/Stride-Labs/stride/v14/x/interchainquery/keeper" - "github.com/Stride-Labs/stride/v14/x/interchainquery/types" + "github.com/Stride-Labs/stride/v15/app/apptesting" + "github.com/Stride-Labs/stride/v15/x/interchainquery/keeper" + "github.com/Stride-Labs/stride/v15/x/interchainquery/types" ) type KeeperTestSuite struct { diff --git a/x/interchainquery/keeper/msg_server.go b/x/interchainquery/keeper/msg_server.go index 082e71fdb3..d8b156225b 100644 --- a/x/interchainquery/keeper/msg_server.go +++ b/x/interchainquery/keeper/msg_server.go @@ -16,8 +16,8 @@ import ( ics23 "github.com/cosmos/ics23/go" "github.com/spf13/cast" - "github.com/Stride-Labs/stride/v14/utils" - "github.com/Stride-Labs/stride/v14/x/interchainquery/types" + "github.com/Stride-Labs/stride/v15/utils" + "github.com/Stride-Labs/stride/v15/x/interchainquery/types" ) type msgServer struct { diff --git a/x/interchainquery/keeper/msg_submit_query_response_test.go b/x/interchainquery/keeper/msg_submit_query_response_test.go index c770d6c5bc..e936e6ca66 100644 --- a/x/interchainquery/keeper/msg_submit_query_response_test.go +++ b/x/interchainquery/keeper/msg_submit_query_response_test.go @@ -10,8 +10,8 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" _ "github.com/stretchr/testify/suite" - "github.com/Stride-Labs/stride/v14/x/interchainquery/types" - stakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/interchainquery/types" + stakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) const ( diff --git a/x/interchainquery/keeper/queries.go b/x/interchainquery/keeper/queries.go index 2a3b6ec29a..1fbb47c215 100644 --- a/x/interchainquery/keeper/queries.go +++ b/x/interchainquery/keeper/queries.go @@ -16,7 +16,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec" "github.com/cosmos/cosmos-sdk/store/prefix" - "github.com/Stride-Labs/stride/v14/x/interchainquery/types" + "github.com/Stride-Labs/stride/v15/x/interchainquery/types" ) // Generates a query ID based on the request information diff --git a/x/interchainquery/keeper/queries_test.go b/x/interchainquery/keeper/queries_test.go index 1dbb1a7df9..df41bac804 100644 --- a/x/interchainquery/keeper/queries_test.go +++ b/x/interchainquery/keeper/queries_test.go @@ -10,10 +10,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - "github.com/Stride-Labs/stride/v14/x/interchainquery/keeper" - "github.com/Stride-Labs/stride/v14/x/interchainquery/types" - stakeibckeeper "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" - stakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/interchainquery/keeper" + "github.com/Stride-Labs/stride/v15/x/interchainquery/types" + stakeibckeeper "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" + stakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func (s *KeeperTestSuite) TestGetQueryId() { diff --git a/x/interchainquery/module.go b/x/interchainquery/module.go index b550d71e1f..f0ed1e04ca 100644 --- a/x/interchainquery/module.go +++ b/x/interchainquery/module.go @@ -19,10 +19,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/Stride-Labs/stride/v14/x/interchainquery/keeper" + "github.com/Stride-Labs/stride/v15/x/interchainquery/keeper" - "github.com/Stride-Labs/stride/v14/x/interchainquery/client/cli" - "github.com/Stride-Labs/stride/v14/x/interchainquery/types" + "github.com/Stride-Labs/stride/v15/x/interchainquery/client/cli" + "github.com/Stride-Labs/stride/v15/x/interchainquery/types" ) var ( diff --git a/x/interchainquery/types/genesis.pb.go b/x/interchainquery/types/genesis.pb.go index d082837339..329bc0a2ed 100644 --- a/x/interchainquery/types/genesis.pb.go +++ b/x/interchainquery/types/genesis.pb.go @@ -308,52 +308,52 @@ func init() { } var fileDescriptor_74cd646eb05658fd = []byte{ - // 716 bytes of a gzipped FileDescriptorProto + // 717 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x54, 0xc1, 0x6e, 0xd3, 0x4c, 0x10, 0x8e, 0xd3, 0xf4, 0x6f, 0xb2, 0x71, 0xd2, 0xfc, 0x4b, 0x01, 0xa7, 0x12, 0x89, 0x29, 0x12, - 0xb5, 0x0a, 0xb5, 0xd5, 0xc2, 0x05, 0x89, 0x03, 0x4d, 0x6a, 0x41, 0xa0, 0xb4, 0xa9, 0x93, 0x4a, - 0x94, 0x8b, 0xe5, 0xd8, 0x4b, 0xb2, 0xaa, 0xed, 0x4d, 0xbd, 0xeb, 0x88, 0x3c, 0x03, 0x17, 0x8e, - 0x3c, 0x01, 0x4f, 0xc0, 0x43, 0xf4, 0x58, 0x71, 0x42, 0x1c, 0x0a, 0x6a, 0x6f, 0x3c, 0x05, 0xf2, - 0xda, 0xdb, 0x16, 0x2a, 0x38, 0x71, 0xb2, 0x77, 0xbe, 0x6f, 0xbe, 0x19, 0xcf, 0x7c, 0x5e, 0xb0, - 0x4c, 0x59, 0x84, 0x3d, 0x64, 0xe0, 0x90, 0xa1, 0xc8, 0x1d, 0x39, 0x38, 0x3c, 0x8c, 0x51, 0x34, - 0x35, 0x26, 0x6b, 0xc6, 0x10, 0x85, 0x88, 0x62, 0xaa, 0x8f, 0x23, 0xc2, 0x08, 0xac, 0xa7, 0x44, - 0xfd, 0x37, 0xa2, 0x3e, 0x59, 0x5b, 0x5c, 0x18, 0x92, 0x21, 0xe1, 0x2c, 0x23, 0x79, 0x4b, 0x13, - 0x16, 0x1b, 0x43, 0x42, 0x86, 0x3e, 0x32, 0xf8, 0x69, 0x10, 0xbf, 0x31, 0xbc, 0x38, 0x72, 0x18, - 0x26, 0x61, 0x86, 0xd7, 0x5d, 0x42, 0x03, 0x42, 0xed, 0x34, 0x31, 0x3d, 0xa4, 0xd0, 0xd2, 0xc7, - 0x02, 0x98, 0xdd, 0x4d, 0xd4, 0x61, 0x15, 0xe4, 0xb1, 0xa7, 0x48, 0xaa, 0xa4, 0x95, 0xac, 0x3c, - 0xf6, 0xe0, 0x1d, 0x50, 0x71, 0x49, 0x18, 0x22, 0x37, 0x11, 0xb2, 0xb1, 0xa7, 0xe4, 0x39, 0x24, - 0x5f, 0x04, 0x3b, 0x1e, 0xac, 0x83, 0x22, 0x6f, 0x30, 0xc1, 0x67, 0x38, 0x3e, 0xc7, 0xcf, 0x1d, - 0x0f, 0xde, 0x02, 0x80, 0xb7, 0x6d, 0xb3, 0xe9, 0x18, 0x29, 0x05, 0x0e, 0x96, 0x78, 0xa4, 0x3f, - 0x1d, 0x23, 0x78, 0x1b, 0xc8, 0x11, 0x3a, 0x8c, 0x11, 0x65, 0xb6, 0xe7, 0x30, 0x47, 0x99, 0x55, - 0x25, 0x4d, 0xb6, 0xca, 0x59, 0x6c, 0xd3, 0x61, 0x0e, 0x5c, 0x06, 0xf3, 0xae, 0xe3, 0xfb, 0x03, - 0xc7, 0x3d, 0xb0, 0x03, 0xe2, 0xc5, 0x3e, 0x52, 0x2a, 0x5c, 0xa6, 0x2a, 0xc2, 0x2f, 0x79, 0x14, - 0x36, 0x41, 0xf9, 0x9c, 0x88, 0x3d, 0xa5, 0xc8, 0x49, 0x40, 0x84, 0x3a, 0xe9, 0xb7, 0x08, 0x02, - 0xaf, 0x26, 0xf3, 0x6a, 0xb2, 0x08, 0xf2, 0x72, 0x3b, 0xa0, 0xca, 0x70, 0x80, 0x48, 0xcc, 0xec, - 0x31, 0xf1, 0xb1, 0x3b, 0x55, 0xe6, 0x55, 0x49, 0xab, 0xae, 0x6b, 0xfa, 0x1f, 0xf7, 0xa1, 0xf7, - 0xd3, 0x84, 0x2e, 0xe7, 0x5b, 0x15, 0x76, 0xf9, 0x08, 0xb7, 0x41, 0x4d, 0x08, 0x8a, 0x85, 0x28, - 0x55, 0x55, 0xd2, 0xca, 0xeb, 0x75, 0x3d, 0xdd, 0x98, 0x2e, 0x36, 0xa6, 0x6f, 0x66, 0x84, 0x56, - 0xf1, 0xe8, 0xa4, 0x99, 0xfb, 0xf0, 0xad, 0x29, 0x59, 0xf3, 0x59, 0xb2, 0x80, 0xe0, 0x3d, 0xf0, - 0xbf, 0xd0, 0x4b, 0x9e, 0x94, 0x39, 0xc1, 0x58, 0x29, 0xa9, 0x92, 0x56, 0xb0, 0x44, 0xa1, 0xbe, - 0x88, 0x5f, 0x9e, 0x2f, 0x45, 0x21, 0x53, 0xca, 0xaa, 0xa4, 0x15, 0xcf, 0xe7, 0xdb, 0x43, 0x21, - 0x4b, 0xf4, 0x68, 0x3c, 0x08, 0x30, 0xa5, 0xc9, 0x86, 0x47, 0x08, 0x0f, 0x47, 0x4c, 0xa9, 0xa5, - 0x7a, 0x17, 0xc0, 0x33, 0x1e, 0x5f, 0x7a, 0x97, 0x07, 0xa5, 0x64, 0x4c, 0x5d, 0x82, 0x43, 0x76, - 0xc5, 0x2c, 0x0e, 0xa8, 0x44, 0x28, 0x20, 0x0c, 0x09, 0x19, 0x6e, 0x96, 0xd6, 0xe3, 0xe4, 0x63, - 0xbe, 0x9e, 0x34, 0xef, 0x0e, 0x31, 0x1b, 0xc5, 0x03, 0xdd, 0x25, 0x41, 0x66, 0xbf, 0xec, 0xb1, - 0x4a, 0xbd, 0x03, 0x23, 0x31, 0x08, 0xd5, 0x3b, 0x21, 0xfb, 0xfc, 0x69, 0x15, 0x64, 0xee, 0xec, - 0x84, 0xcc, 0x92, 0x53, 0xc9, 0xb4, 0x01, 0x68, 0x03, 0xd9, 0x27, 0xae, 0xe3, 0x8b, 0x0a, 0x33, - 0xff, 0xa0, 0x42, 0x99, 0x2b, 0x66, 0x05, 0x56, 0xc0, 0xec, 0xc4, 0xf1, 0xe3, 0xd4, 0xab, 0x72, - 0x6b, 0xe1, 0xc7, 0x49, 0xb3, 0x16, 0x21, 0x1a, 0xfb, 0xec, 0x3e, 0x09, 0x30, 0x43, 0xc1, 0x98, - 0x4d, 0xad, 0x94, 0xb2, 0xd4, 0x05, 0xf2, 0xd3, 0xf4, 0x9f, 0xed, 0x31, 0x87, 0x21, 0xf8, 0x04, - 0xcc, 0x25, 0x9e, 0xc0, 0x88, 0x2a, 0x92, 0x3a, 0xa3, 0x95, 0xd7, 0xd5, 0xbf, 0x98, 0x86, 0xff, - 0x6f, 0xad, 0x42, 0xd2, 0xb9, 0x25, 0xd2, 0x56, 0x6c, 0x50, 0xf9, 0xc5, 0x4c, 0xb0, 0x0e, 0xae, - 0x5b, 0xe6, 0x73, 0xb3, 0xdd, 0xb7, 0x77, 0xf7, 0x4c, 0x6b, 0xdf, 0xb6, 0xcc, 0x5e, 0x77, 0x67, - 0xbb, 0x67, 0xd6, 0x72, 0xf0, 0x26, 0xb8, 0x66, 0x99, 0x7d, 0x6b, 0xff, 0x1c, 0xd9, 0xdd, 0x33, - 0x7b, 0xfd, 0x9a, 0x04, 0x17, 0xc1, 0x0d, 0xf3, 0x95, 0xd9, 0xde, 0xeb, 0x9b, 0x19, 0xd4, 0xde, - 0xd8, 0xda, 0x6a, 0x6d, 0xb4, 0x5f, 0xd4, 0xf2, 0xad, 0xde, 0xd1, 0x69, 0x43, 0x3a, 0x3e, 0x6d, - 0x48, 0xdf, 0x4f, 0x1b, 0xd2, 0xfb, 0xb3, 0x46, 0xee, 0xf8, 0xac, 0x91, 0xfb, 0x72, 0xd6, 0xc8, - 0xbd, 0x7e, 0x74, 0x69, 0x76, 0x3d, 0xde, 0xf5, 0xea, 0x96, 0x33, 0xa0, 0x46, 0x76, 0x5f, 0x4d, - 0xd6, 0x1e, 0x1a, 0x6f, 0xaf, 0xdc, 0x5a, 0x7c, 0xa4, 0x83, 0xff, 0xb8, 0x81, 0x1f, 0xfc, 0x0c, - 0x00, 0x00, 0xff, 0xff, 0x2b, 0x64, 0xd1, 0xd1, 0xdc, 0x04, 0x00, 0x00, + 0xb5, 0x0a, 0xb5, 0xd5, 0x22, 0x0e, 0x48, 0x1c, 0x68, 0x52, 0x0b, 0x02, 0xa5, 0x4d, 0x9d, 0x54, + 0xa2, 0x5c, 0x2c, 0xc7, 0x5e, 0x92, 0x55, 0x6d, 0x6f, 0xea, 0x5d, 0x47, 0xe4, 0x19, 0xb8, 0x70, + 0xe4, 0x09, 0x78, 0x02, 0x1e, 0xa2, 0xc7, 0x8a, 0x13, 0xe2, 0x50, 0x50, 0x7b, 0xe3, 0x29, 0x90, + 0xd7, 0xde, 0xb6, 0x50, 0xc1, 0x89, 0x93, 0xbd, 0xf3, 0x7d, 0xf3, 0xcd, 0x78, 0xe6, 0xf3, 0x82, + 0x65, 0xca, 0x22, 0xec, 0x21, 0x03, 0x87, 0x0c, 0x45, 0xee, 0xc8, 0xc1, 0xe1, 0x61, 0x8c, 0xa2, + 0xa9, 0x31, 0x59, 0x33, 0x86, 0x28, 0x44, 0x14, 0x53, 0x7d, 0x1c, 0x11, 0x46, 0x60, 0x3d, 0x25, + 0xea, 0xbf, 0x11, 0xf5, 0xc9, 0xda, 0xe2, 0xc2, 0x90, 0x0c, 0x09, 0x67, 0x19, 0xc9, 0x5b, 0x9a, + 0xb0, 0xd8, 0x18, 0x12, 0x32, 0xf4, 0x91, 0xc1, 0x4f, 0x83, 0xf8, 0x8d, 0xe1, 0xc5, 0x91, 0xc3, + 0x30, 0x09, 0x33, 0xbc, 0xee, 0x12, 0x1a, 0x10, 0x6a, 0xa7, 0x89, 0xe9, 0x21, 0x85, 0x96, 0x3e, + 0x16, 0xc0, 0xec, 0x6e, 0xa2, 0x0e, 0xab, 0x20, 0x8f, 0x3d, 0x45, 0x52, 0x25, 0xad, 0x64, 0xe5, + 0xb1, 0x07, 0xef, 0x80, 0x8a, 0x4b, 0xc2, 0x10, 0xb9, 0x89, 0x90, 0x8d, 0x3d, 0x25, 0xcf, 0x21, + 0xf9, 0x22, 0xd8, 0xf1, 0x60, 0x1d, 0x14, 0x79, 0x83, 0x09, 0x3e, 0xc3, 0xf1, 0x39, 0x7e, 0xee, + 0x78, 0xf0, 0x16, 0x00, 0xbc, 0x6d, 0x9b, 0x4d, 0xc7, 0x48, 0x29, 0x70, 0xb0, 0xc4, 0x23, 0xfd, + 0xe9, 0x18, 0xc1, 0xdb, 0x40, 0x8e, 0xd0, 0x61, 0x8c, 0x28, 0xb3, 0x3d, 0x87, 0x39, 0xca, 0xac, + 0x2a, 0x69, 0xb2, 0x55, 0xce, 0x62, 0x9b, 0x0e, 0x73, 0xe0, 0x32, 0x98, 0x77, 0x1d, 0xdf, 0x1f, + 0x38, 0xee, 0x81, 0x1d, 0x10, 0x2f, 0xf6, 0x91, 0x52, 0xe1, 0x32, 0x55, 0x11, 0x7e, 0xc9, 0xa3, + 0xb0, 0x09, 0xca, 0xe7, 0x44, 0xec, 0x29, 0x45, 0x4e, 0x02, 0x22, 0xd4, 0x49, 0xbf, 0x45, 0x10, + 0x78, 0x35, 0x99, 0x57, 0x93, 0x45, 0x90, 0x97, 0xdb, 0x01, 0x55, 0x86, 0x03, 0x44, 0x62, 0x66, + 0x8f, 0x89, 0x8f, 0xdd, 0xa9, 0x32, 0xaf, 0x4a, 0x5a, 0x75, 0x5d, 0xd3, 0xff, 0xb8, 0x0f, 0xbd, + 0x9f, 0x26, 0x74, 0x39, 0xdf, 0xaa, 0xb0, 0xcb, 0x47, 0xb8, 0x0d, 0x6a, 0x42, 0x50, 0x2c, 0x44, + 0xa9, 0xaa, 0x92, 0x56, 0x5e, 0xaf, 0xeb, 0xe9, 0xc6, 0x74, 0xb1, 0x31, 0x7d, 0x33, 0x23, 0xb4, + 0x8a, 0x47, 0x27, 0xcd, 0xdc, 0x87, 0x6f, 0x4d, 0xc9, 0x9a, 0xcf, 0x92, 0x05, 0x04, 0xef, 0x81, + 0xff, 0x85, 0x5e, 0xf2, 0xa4, 0xcc, 0x09, 0xc6, 0x4a, 0x49, 0x95, 0xb4, 0x82, 0x25, 0x0a, 0xf5, + 0x45, 0xfc, 0xf2, 0x7c, 0x29, 0x0a, 0x99, 0x52, 0x56, 0x25, 0xad, 0x78, 0x3e, 0xdf, 0x1e, 0x0a, + 0x59, 0xa2, 0x47, 0xe3, 0x41, 0x80, 0x29, 0x4d, 0x36, 0x3c, 0x42, 0x78, 0x38, 0x62, 0x4a, 0x2d, + 0xd5, 0xbb, 0x00, 0x9e, 0xf1, 0xf8, 0xd2, 0xbb, 0x3c, 0x28, 0x25, 0x63, 0xea, 0x12, 0x1c, 0xb2, + 0x2b, 0x66, 0x71, 0x40, 0x25, 0x42, 0x01, 0x61, 0x48, 0xc8, 0x70, 0xb3, 0xb4, 0x1e, 0x27, 0x1f, + 0xf3, 0xf5, 0xa4, 0x79, 0x77, 0x88, 0xd9, 0x28, 0x1e, 0xe8, 0x2e, 0x09, 0x32, 0xfb, 0x65, 0x8f, + 0x55, 0xea, 0x1d, 0x18, 0x89, 0x41, 0xa8, 0xde, 0x09, 0xd9, 0xe7, 0x4f, 0xab, 0x20, 0x73, 0x67, + 0x27, 0x64, 0x96, 0x9c, 0x4a, 0xa6, 0x0d, 0x40, 0x1b, 0xc8, 0x3e, 0x71, 0x1d, 0x5f, 0x54, 0x98, + 0xf9, 0x07, 0x15, 0xca, 0x5c, 0x31, 0x2b, 0xb0, 0x02, 0x66, 0x27, 0x8e, 0x1f, 0xa7, 0x5e, 0x95, + 0x5b, 0x0b, 0x3f, 0x4e, 0x9a, 0xb5, 0x08, 0xd1, 0xd8, 0x67, 0xf7, 0x49, 0x80, 0x19, 0x0a, 0xc6, + 0x6c, 0x6a, 0xa5, 0x94, 0xa5, 0x2e, 0x90, 0x9f, 0xa6, 0xff, 0x6c, 0x8f, 0x39, 0x0c, 0xc1, 0x27, + 0x60, 0x2e, 0xf1, 0x04, 0x46, 0x54, 0x91, 0xd4, 0x19, 0xad, 0xbc, 0xae, 0xfe, 0xc5, 0x34, 0xfc, + 0x7f, 0x6b, 0x15, 0x92, 0xce, 0x2d, 0x91, 0xb6, 0x62, 0x83, 0xca, 0x2f, 0x66, 0x82, 0x75, 0x70, + 0xdd, 0x32, 0x9f, 0x9b, 0xed, 0xbe, 0xbd, 0xbb, 0x67, 0x5a, 0xfb, 0xb6, 0x65, 0xf6, 0xba, 0x3b, + 0xdb, 0x3d, 0xb3, 0x96, 0x83, 0x37, 0xc1, 0x35, 0xcb, 0xec, 0x5b, 0xfb, 0xe7, 0xc8, 0xee, 0x9e, + 0xd9, 0xeb, 0xd7, 0x24, 0xb8, 0x08, 0x6e, 0x98, 0xaf, 0xcc, 0xf6, 0x5e, 0xdf, 0xcc, 0xa0, 0xf6, + 0xc6, 0xd6, 0x56, 0x6b, 0xa3, 0xfd, 0xa2, 0x96, 0x6f, 0xf5, 0x8e, 0x4e, 0x1b, 0xd2, 0xf1, 0x69, + 0x43, 0xfa, 0x7e, 0xda, 0x90, 0xde, 0x9f, 0x35, 0x72, 0xc7, 0x67, 0x8d, 0xdc, 0x97, 0xb3, 0x46, + 0xee, 0xf5, 0xa3, 0x4b, 0xb3, 0xeb, 0xf1, 0xae, 0x57, 0xb7, 0x9c, 0x01, 0x35, 0xb2, 0xfb, 0x6a, + 0xb2, 0xf6, 0xd0, 0x78, 0x7b, 0xe5, 0xd6, 0xe2, 0x23, 0x1d, 0xfc, 0xc7, 0x0d, 0xfc, 0xe0, 0x67, + 0x00, 0x00, 0x00, 0xff, 0xff, 0xd8, 0xf4, 0x23, 0xe7, 0xdc, 0x04, 0x00, 0x00, } func (m *Query) Marshal() (dAtA []byte, err error) { diff --git a/x/interchainquery/types/messages.pb.go b/x/interchainquery/types/messages.pb.go index dc3acd6fc2..52b45cf769 100644 --- a/x/interchainquery/types/messages.pb.go +++ b/x/interchainquery/types/messages.pb.go @@ -125,36 +125,36 @@ var fileDescriptor_25adad4f8ed32400 = []byte{ // 512 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x93, 0x3f, 0x8f, 0xd3, 0x3e, 0x18, 0xc7, 0xeb, 0xf6, 0xf7, 0xeb, 0xdd, 0xe5, 0x8a, 0x80, 0x5c, 0x85, 0x72, 0x05, 0x92, 0xca, - 0x0b, 0x05, 0x71, 0xb6, 0x52, 0x58, 0xae, 0x4c, 0x74, 0x3b, 0x89, 0xe3, 0x4f, 0xba, 0xb1, 0x54, - 0x69, 0xe3, 0x73, 0x2d, 0x35, 0x71, 0xb0, 0xdd, 0xea, 0xba, 0x32, 0x31, 0x22, 0xb1, 0x30, 0xf6, - 0x45, 0x20, 0x31, 0xb2, 0x32, 0x9e, 0x60, 0x61, 0xaa, 0x50, 0xcb, 0x00, 0x6b, 0x5f, 0x01, 0x8a, - 0x9d, 0x00, 0xba, 0x2b, 0x03, 0x93, 0x9f, 0x3c, 0xdf, 0xcf, 0xf3, 0x2f, 0x7e, 0x6c, 0xb5, 0xa4, - 0x12, 0x2c, 0x22, 0x98, 0x25, 0x8a, 0x88, 0xe1, 0x28, 0x64, 0xc9, 0x8b, 0x09, 0x11, 0x33, 0x3c, - 0xf5, 0x71, 0x4c, 0xa4, 0x0c, 0x29, 0x91, 0x28, 0x15, 0x5c, 0x71, 0x7b, 0xdf, 0x90, 0xe8, 0x1c, - 0x89, 0xa6, 0x7e, 0xa3, 0x4e, 0x39, 0xe5, 0x9a, 0xc2, 0x99, 0x65, 0x02, 0x1a, 0xfb, 0x43, 0x2e, - 0x63, 0x2e, 0xfb, 0x46, 0x30, 0x1f, 0xb9, 0x74, 0x83, 0x72, 0x4e, 0xc7, 0x04, 0x87, 0x29, 0xc3, - 0x61, 0x92, 0x70, 0x15, 0x2a, 0xc6, 0x93, 0x42, 0xbd, 0xa9, 0x48, 0x12, 0x11, 0x11, 0xb3, 0x44, - 0xe1, 0xa1, 0x98, 0xa5, 0x8a, 0xe3, 0x54, 0x70, 0x7e, 0x62, 0x64, 0xf8, 0xa3, 0x6c, 0x5d, 0x3b, - 0x96, 0xb4, 0x37, 0x19, 0xc4, 0x4c, 0x3d, 0xcb, 0x7a, 0x08, 0x88, 0x4c, 0x79, 0x22, 0x89, 0x8d, - 0xac, 0x6d, 0xdd, 0x59, 0x9f, 0x45, 0x0e, 0x68, 0x82, 0xd6, 0x4e, 0x77, 0x6f, 0xbd, 0xf0, 0x2e, - 0xcf, 0xc2, 0x78, 0xdc, 0x81, 0x85, 0x02, 0x83, 0x2d, 0x6d, 0x1e, 0x45, 0x19, 0xaf, 0x87, 0xc8, - 0xf8, 0xf2, 0x79, 0xbe, 0x50, 0x60, 0xb0, 0xa5, 0xcd, 0xa3, 0xc8, 0xbe, 0x6d, 0x55, 0x05, 0x91, - 0x93, 0xb1, 0x72, 0x2a, 0x4d, 0xd0, 0xaa, 0x75, 0xaf, 0xae, 0x17, 0xde, 0x25, 0x43, 0x1b, 0x3f, - 0x0c, 0x72, 0xc0, 0x7e, 0x6c, 0xed, 0xe8, 0xa6, 0xfb, 0x3c, 0x95, 0xce, 0x7f, 0x4d, 0xd0, 0xda, - 0x6d, 0x5f, 0x47, 0xbf, 0x07, 0x43, 0x66, 0x30, 0xf4, 0x34, 0x63, 0x9e, 0xa4, 0xb2, 0x5b, 0x5f, - 0x2f, 0xbc, 0x2b, 0x26, 0xd5, 0xaf, 0x38, 0x18, 0x6c, 0xa7, 0xb9, 0x9e, 0x95, 0x1e, 0x11, 0x46, - 0x47, 0xca, 0xf9, 0xbf, 0x09, 0x5a, 0x95, 0x3f, 0x4b, 0x1b, 0x3f, 0x0c, 0x72, 0xc0, 0x7e, 0x60, - 0xd5, 0x4e, 0x04, 0x8f, 0xfb, 0x61, 0x14, 0x09, 0x22, 0xa5, 0x53, 0xd5, 0x93, 0x39, 0x9f, 0xde, - 0x1d, 0xd4, 0xf3, 0x5b, 0x78, 0x68, 0x94, 0x9e, 0x12, 0x2c, 0xa1, 0xc1, 0x6e, 0x46, 0xe7, 0xae, - 0x4e, 0xed, 0xd5, 0xdc, 0x2b, 0xbd, 0x9d, 0x7b, 0xe0, 0xfb, 0xdc, 0x2b, 0xc1, 0xa6, 0xe5, 0x6e, - 0xfe, 0xd5, 0xc5, 0xd9, 0xfe, 0x00, 0xac, 0xca, 0xb1, 0xa4, 0xf6, 0x7b, 0x60, 0xed, 0x6d, 0xba, - 0x12, 0x1f, 0xfd, 0x75, 0x6f, 0xd0, 0xe6, 0xd4, 0x8d, 0xc3, 0x7f, 0x0e, 0x29, 0x4e, 0xd8, 0x7e, - 0xf9, 0xf9, 0xdb, 0x9b, 0xf2, 0xdd, 0x0e, 0xb8, 0x03, 0x6f, 0x5d, 0xd8, 0x69, 0x75, 0x8a, 0xa7, - 0xfe, 0x80, 0xa8, 0xd0, 0xc7, 0x52, 0xe7, 0xd0, 0xee, 0x6e, 0xef, 0xe3, 0xd2, 0x05, 0x67, 0x4b, - 0x17, 0x7c, 0x5d, 0xba, 0xe0, 0xf5, 0xca, 0x2d, 0x9d, 0xad, 0xdc, 0xd2, 0x97, 0x95, 0x5b, 0x7a, - 0x7e, 0x48, 0x99, 0x1a, 0x4d, 0x06, 0x68, 0xc8, 0x63, 0xdc, 0xd3, 0x2d, 0x1d, 0x3c, 0x0a, 0x07, - 0x12, 0xe7, 0x6f, 0x66, 0xea, 0xdf, 0xc7, 0xa7, 0x17, 0xab, 0xcc, 0x52, 0x22, 0x07, 0x55, 0xbd, - 0xab, 0xf7, 0x7e, 0x06, 0x00, 0x00, 0xff, 0xff, 0xa1, 0x63, 0xd6, 0x4e, 0x60, 0x03, 0x00, 0x00, + 0x0b, 0x05, 0x71, 0xb6, 0x52, 0xc4, 0x70, 0x65, 0xa2, 0xdb, 0x49, 0x1c, 0x7f, 0xd2, 0x8d, 0xa5, + 0x4a, 0x1b, 0x9f, 0x6b, 0xa9, 0x89, 0x83, 0xed, 0x56, 0xd7, 0x95, 0x89, 0x11, 0x89, 0x85, 0xb1, + 0x2f, 0x02, 0x89, 0x91, 0x95, 0xf1, 0x04, 0x0b, 0x53, 0x85, 0x5a, 0x06, 0x58, 0xfb, 0x0a, 0x50, + 0xec, 0x04, 0xd0, 0x5d, 0x19, 0x98, 0xfc, 0xe4, 0xf9, 0x7e, 0x9e, 0x7f, 0xf1, 0x63, 0xab, 0x25, + 0x95, 0x60, 0x11, 0xc1, 0x2c, 0x51, 0x44, 0x0c, 0x47, 0x21, 0x4b, 0x5e, 0x4c, 0x88, 0x98, 0xe1, + 0xa9, 0x8f, 0x63, 0x22, 0x65, 0x48, 0x89, 0x44, 0xa9, 0xe0, 0x8a, 0xdb, 0xfb, 0x86, 0x44, 0xe7, + 0x48, 0x34, 0xf5, 0x1b, 0x75, 0xca, 0x29, 0xd7, 0x14, 0xce, 0x2c, 0x13, 0xd0, 0xd8, 0x1f, 0x72, + 0x19, 0x73, 0xd9, 0x37, 0x82, 0xf9, 0xc8, 0xa5, 0x1b, 0x94, 0x73, 0x3a, 0x26, 0x38, 0x4c, 0x19, + 0x0e, 0x93, 0x84, 0xab, 0x50, 0x31, 0x9e, 0x14, 0xea, 0x4d, 0x45, 0x92, 0x88, 0x88, 0x98, 0x25, + 0x0a, 0x0f, 0xc5, 0x2c, 0x55, 0x1c, 0xa7, 0x82, 0xf3, 0x13, 0x23, 0xc3, 0x1f, 0x65, 0xeb, 0xda, + 0xb1, 0xa4, 0xbd, 0xc9, 0x20, 0x66, 0xea, 0x59, 0xd6, 0x43, 0x40, 0x64, 0xca, 0x13, 0x49, 0x6c, + 0x64, 0x6d, 0xeb, 0xce, 0xfa, 0x2c, 0x72, 0x40, 0x13, 0xb4, 0x76, 0xba, 0x7b, 0xeb, 0x85, 0x77, + 0x79, 0x16, 0xc6, 0xe3, 0x0e, 0x2c, 0x14, 0x18, 0x6c, 0x69, 0xf3, 0x28, 0xca, 0x78, 0x3d, 0x44, + 0xc6, 0x97, 0xcf, 0xf3, 0x85, 0x02, 0x83, 0x2d, 0x6d, 0x1e, 0x45, 0xf6, 0x6d, 0xab, 0x2a, 0x88, + 0x9c, 0x8c, 0x95, 0x53, 0x69, 0x82, 0x56, 0xad, 0x7b, 0x75, 0xbd, 0xf0, 0x2e, 0x19, 0xda, 0xf8, + 0x61, 0x90, 0x03, 0xf6, 0x63, 0x6b, 0x47, 0x37, 0xdd, 0xe7, 0xa9, 0x74, 0xfe, 0x6b, 0x82, 0xd6, + 0x6e, 0xfb, 0x3a, 0xfa, 0x3d, 0x18, 0x32, 0x83, 0xa1, 0xa7, 0x19, 0xf3, 0x24, 0x95, 0xdd, 0xfa, + 0x7a, 0xe1, 0x5d, 0x31, 0xa9, 0x7e, 0xc5, 0xc1, 0x60, 0x3b, 0xcd, 0xf5, 0xac, 0xf4, 0x88, 0x30, + 0x3a, 0x52, 0xce, 0xff, 0x4d, 0xd0, 0xaa, 0xfc, 0x59, 0xda, 0xf8, 0x61, 0x90, 0x03, 0xf6, 0x03, + 0xab, 0x76, 0x22, 0x78, 0xdc, 0x0f, 0xa3, 0x48, 0x10, 0x29, 0x9d, 0xaa, 0x9e, 0xcc, 0xf9, 0xf4, + 0xee, 0xa0, 0x9e, 0xdf, 0xc2, 0x43, 0xa3, 0xf4, 0x94, 0x60, 0x09, 0x0d, 0x76, 0x33, 0x3a, 0x77, + 0x75, 0x6a, 0xaf, 0xe6, 0x5e, 0xe9, 0xed, 0xdc, 0x03, 0xdf, 0xe7, 0x5e, 0x09, 0x36, 0x2d, 0x77, + 0xf3, 0xaf, 0x2e, 0xce, 0xf6, 0x07, 0x60, 0x55, 0x8e, 0x25, 0xb5, 0xdf, 0x03, 0x6b, 0x6f, 0xd3, + 0x95, 0xf8, 0xe8, 0xaf, 0x7b, 0x83, 0x36, 0xa7, 0x6e, 0x1c, 0xfe, 0x73, 0x48, 0x71, 0xc2, 0xf6, + 0xcb, 0xcf, 0xdf, 0xde, 0x94, 0xef, 0x76, 0xc0, 0x1d, 0x78, 0xeb, 0xc2, 0x4e, 0xab, 0x53, 0x3c, + 0xf5, 0x07, 0x44, 0x85, 0x3e, 0x96, 0x3a, 0x87, 0x76, 0x77, 0x7b, 0x1f, 0x97, 0x2e, 0x38, 0x5b, + 0xba, 0xe0, 0xeb, 0xd2, 0x05, 0xaf, 0x57, 0x6e, 0xe9, 0x6c, 0xe5, 0x96, 0xbe, 0xac, 0xdc, 0xd2, + 0xf3, 0x43, 0xca, 0xd4, 0x68, 0x32, 0x40, 0x43, 0x1e, 0xe3, 0x9e, 0x6e, 0xe9, 0xe0, 0x51, 0x38, + 0x90, 0x38, 0x7f, 0x33, 0x53, 0xff, 0x3e, 0x3e, 0xbd, 0x58, 0x65, 0x96, 0x12, 0x39, 0xa8, 0xea, + 0x5d, 0xbd, 0xf7, 0x33, 0x00, 0x00, 0xff, 0xff, 0x52, 0xf3, 0x24, 0x78, 0x60, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/interchainquery/types/query.pb.go b/x/interchainquery/types/query.pb.go index 635a0a3a7a..2183899f02 100644 --- a/x/interchainquery/types/query.pb.go +++ b/x/interchainquery/types/query.pb.go @@ -137,9 +137,9 @@ var fileDescriptor_b720c147b9144d5b = []byte{ 0x85, 0x8c, 0xf5, 0x83, 0xc1, 0xfa, 0x75, 0x7d, 0x12, 0x93, 0x8a, 0xf5, 0x71, 0x44, 0x09, 0x5a, 0x68, 0x38, 0x05, 0x9f, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x65, 0x7a, - 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0x2e, 0x36, 0x83, 0xcb, 0x0c, 0x4d, 0xf4, 0x2b, + 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0x2e, 0x36, 0x83, 0xcb, 0x0c, 0x4d, 0xf5, 0x2b, 0x30, 0x8c, 0x2f, 0xa9, 0x2c, 0x48, 0x2d, 0x4e, 0x62, 0x03, 0xc7, 0x9c, 0x31, 0x20, 0x00, 0x00, - 0xff, 0xff, 0xd8, 0x4c, 0xcf, 0x9f, 0x5a, 0x02, 0x00, 0x00, + 0xff, 0xff, 0x2b, 0xdc, 0x3d, 0xa9, 0x5a, 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/mint/client/cli/cli_test.go b/x/mint/client/cli/cli_test.go index b48afdc8c7..83837dd1f7 100644 --- a/x/mint/client/cli/cli_test.go +++ b/x/mint/client/cli/cli_test.go @@ -11,8 +11,8 @@ import ( tmcli "github.com/cometbft/cometbft/libs/cli" "github.com/stretchr/testify/suite" - "github.com/Stride-Labs/stride/v14/app" - "github.com/Stride-Labs/stride/v14/x/mint/client/cli" + "github.com/Stride-Labs/stride/v15/app" + "github.com/Stride-Labs/stride/v15/x/mint/client/cli" "github.com/cosmos/cosmos-sdk/client/flags" clitestutil "github.com/cosmos/cosmos-sdk/testutil/cli" diff --git a/x/mint/client/cli/query.go b/x/mint/client/cli/query.go index 9a88633720..bcbbe047d5 100644 --- a/x/mint/client/cli/query.go +++ b/x/mint/client/cli/query.go @@ -6,7 +6,7 @@ import ( "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/mint/types" + "github.com/Stride-Labs/stride/v15/x/mint/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" diff --git a/x/mint/client/rest/grpc_query_test.go b/x/mint/client/rest/grpc_query_test.go index d6cf783240..043c6fbee9 100644 --- a/x/mint/client/rest/grpc_query_test.go +++ b/x/mint/client/rest/grpc_query_test.go @@ -14,8 +14,8 @@ import ( "github.com/cosmos/gogoproto/proto" "github.com/stretchr/testify/suite" - "github.com/Stride-Labs/stride/v14/app" - minttypes "github.com/Stride-Labs/stride/v14/x/mint/types" + "github.com/Stride-Labs/stride/v15/app" + minttypes "github.com/Stride-Labs/stride/v15/x/mint/types" "github.com/cosmos/cosmos-sdk/testutil/network" ) diff --git a/x/mint/genesis.go b/x/mint/genesis.go index d30d1e135c..bd2a8f0427 100644 --- a/x/mint/genesis.go +++ b/x/mint/genesis.go @@ -3,8 +3,8 @@ package mint import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/mint/keeper" - "github.com/Stride-Labs/stride/v14/x/mint/types" + "github.com/Stride-Labs/stride/v15/x/mint/keeper" + "github.com/Stride-Labs/stride/v15/x/mint/types" ) // InitGenesis new mint genesis. diff --git a/x/mint/keeper/grpc_query.go b/x/mint/keeper/grpc_query.go index dfc5730050..a0be2ab527 100644 --- a/x/mint/keeper/grpc_query.go +++ b/x/mint/keeper/grpc_query.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/mint/types" + "github.com/Stride-Labs/stride/v15/x/mint/types" ) var _ types.QueryServer = Querier{} diff --git a/x/mint/keeper/hooks.go b/x/mint/keeper/hooks.go index f0b468ffb1..6e36418596 100644 --- a/x/mint/keeper/hooks.go +++ b/x/mint/keeper/hooks.go @@ -3,8 +3,8 @@ package keeper import ( "fmt" - epochstypes "github.com/Stride-Labs/stride/v14/x/epochs/types" - "github.com/Stride-Labs/stride/v14/x/mint/types" + epochstypes "github.com/Stride-Labs/stride/v15/x/epochs/types" + "github.com/Stride-Labs/stride/v15/x/mint/types" "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/mint/keeper/keeper.go b/x/mint/keeper/keeper.go index 985094d409..37d4c0efe7 100644 --- a/x/mint/keeper/keeper.go +++ b/x/mint/keeper/keeper.go @@ -10,7 +10,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/Stride-Labs/stride/v14/x/mint/types" + "github.com/Stride-Labs/stride/v15/x/mint/types" "github.com/cosmos/cosmos-sdk/codec" storetypes "github.com/cosmos/cosmos-sdk/store/types" diff --git a/x/mint/module.go b/x/mint/module.go index 649f1e9fe1..adf8e6ae67 100644 --- a/x/mint/module.go +++ b/x/mint/module.go @@ -17,11 +17,11 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/Stride-Labs/stride/v14/x/mint/client/cli" - "github.com/Stride-Labs/stride/v14/x/mint/keeper" + "github.com/Stride-Labs/stride/v15/x/mint/client/cli" + "github.com/Stride-Labs/stride/v15/x/mint/keeper" - //"github.com/Stride-Labs/stride/v14/x/mint/simulation" - "github.com/Stride-Labs/stride/v14/x/mint/types" + //"github.com/Stride-Labs/stride/v15/x/mint/simulation" + "github.com/Stride-Labs/stride/v15/x/mint/types" ) var ( diff --git a/x/mint/types/expected_keepers.go b/x/mint/types/expected_keepers.go index b5c4bb68b8..fdca5be4a7 100644 --- a/x/mint/types/expected_keepers.go +++ b/x/mint/types/expected_keepers.go @@ -1,7 +1,7 @@ package types // noalias import ( - epochstypes "github.com/Stride-Labs/stride/v14/x/epochs/types" + epochstypes "github.com/Stride-Labs/stride/v15/x/epochs/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/x/auth/types" diff --git a/x/mint/types/genesis.pb.go b/x/mint/types/genesis.pb.go index f4e695e7bf..02974f1934 100644 --- a/x/mint/types/genesis.pb.go +++ b/x/mint/types/genesis.pb.go @@ -110,9 +110,9 @@ var fileDescriptor_f4521d63f51851f3 = []byte{ 0x5c, 0x26, 0x18, 0x22, 0xe1, 0x0a, 0x12, 0x77, 0xf2, 0x38, 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, 0xbd, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0xfd, - 0x60, 0xb0, 0x53, 0x75, 0x7d, 0x12, 0x93, 0x8a, 0xf5, 0xa1, 0x61, 0x56, 0x66, 0x68, 0xa2, 0x5f, + 0x60, 0xb0, 0x53, 0x75, 0x7d, 0x12, 0x93, 0x8a, 0xf5, 0xa1, 0x61, 0x56, 0x66, 0x68, 0xaa, 0x5f, 0x01, 0x09, 0xb9, 0x92, 0xca, 0x82, 0xd4, 0xe2, 0x24, 0x36, 0x70, 0x98, 0x19, 0x03, 0x02, 0x00, - 0x00, 0xff, 0xff, 0x18, 0x33, 0x3d, 0xdf, 0xa3, 0x01, 0x00, 0x00, + 0x00, 0xff, 0xff, 0xd8, 0x57, 0x15, 0xc8, 0xa3, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/mint/types/mint.pb.go b/x/mint/types/mint.pb.go index a4661949c0..67783f5ed4 100644 --- a/x/mint/types/mint.pb.go +++ b/x/mint/types/mint.pb.go @@ -209,44 +209,44 @@ var fileDescriptor_5ad5fa4b1fdb702f = []byte{ // 634 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x54, 0xcd, 0x6e, 0xd3, 0x4c, 0x14, 0x8d, 0xbf, 0xb6, 0xa9, 0x3a, 0x9f, 0x44, 0x8b, 0x4b, 0x89, 0xd5, 0x0a, 0xbb, 0x58, 0x80, - 0xba, 0xa0, 0xb6, 0x4a, 0x59, 0x75, 0x85, 0xa2, 0xd2, 0x12, 0x09, 0xa4, 0xe0, 0xec, 0xba, 0xb1, - 0xfc, 0x33, 0x75, 0x46, 0x8d, 0x67, 0xac, 0x99, 0x71, 0x4a, 0x84, 0xc4, 0x0b, 0x94, 0x05, 0x4b, - 0x96, 0x3c, 0x4e, 0x97, 0x5d, 0xa2, 0x2e, 0x22, 0x94, 0xbc, 0x41, 0x36, 0x6c, 0xd1, 0xcc, 0x38, - 0xbf, 0x10, 0x89, 0x88, 0xae, 0xe2, 0x39, 0xf7, 0xce, 0x3d, 0x27, 0x67, 0xee, 0xbd, 0xc0, 0x64, - 0x9c, 0xa2, 0x18, 0xba, 0x29, 0xc2, 0xdc, 0x6d, 0x1f, 0x84, 0x90, 0x07, 0x07, 0xf2, 0xe0, 0x64, - 0x94, 0x70, 0xa2, 0x6f, 0xaa, 0xb8, 0x23, 0xa1, 0x22, 0xbe, 0xfd, 0x20, 0x21, 0x09, 0x91, 0x71, - 0x57, 0x7c, 0xa9, 0x54, 0xfb, 0x13, 0x28, 0xbf, 0x43, 0x98, 0x43, 0xaa, 0x73, 0xb0, 0x01, 0x33, - 0x12, 0x35, 0xfd, 0x8c, 0x92, 0x36, 0x62, 0x88, 0x60, 0x66, 0x68, 0xbb, 0xda, 0xde, 0x5a, 0xb5, - 0x76, 0xdd, 0xb5, 0x4a, 0xb7, 0x5d, 0xeb, 0x59, 0x82, 0x78, 0x33, 0x0f, 0x9d, 0x88, 0xa4, 0x6e, - 0x44, 0x58, 0x4a, 0x58, 0xf1, 0xb3, 0xcf, 0xe2, 0x0b, 0x97, 0x77, 0x32, 0xc8, 0x9c, 0x63, 0x18, - 0x0d, 0xba, 0x56, 0xa5, 0x13, 0xa4, 0xad, 0x23, 0x7b, 0xb6, 0x9e, 0xed, 0xad, 0x4b, 0xa8, 0x3e, - 0x46, 0x7e, 0x2e, 0x81, 0xca, 0x31, 0x12, 0x7a, 0xc3, 0x9c, 0x23, 0x82, 0xeb, 0x94, 0x64, 0x84, - 0x8a, 0x2f, 0xa6, 0x9f, 0x81, 0x55, 0xc6, 0x83, 0x0b, 0x84, 0x93, 0x42, 0xc8, 0xab, 0x85, 0x85, - 0xdc, 0x53, 0x42, 0x8a, 0x32, 0xb6, 0x37, 0x2c, 0xa8, 0x7f, 0x04, 0x5b, 0x11, 0x49, 0xd3, 0x1c, - 0x23, 0xde, 0xf1, 0x33, 0x42, 0x5a, 0x7e, 0x42, 0xc9, 0x25, 0x6f, 0x1a, 0xff, 0x49, 0xa6, 0xd3, - 0x85, 0x99, 0xb6, 0x14, 0xd3, 0x74, 0x51, 0xdb, 0xdb, 0x1c, 0x01, 0x75, 0x42, 0x5a, 0xa7, 0x92, - 0x43, 0xff, 0xac, 0x01, 0x73, 0x86, 0x9d, 0xc1, 0x28, 0xa7, 0xe2, 0x14, 0xe6, 0x71, 0x02, 0xb9, - 0xb1, 0x74, 0xb7, 0x32, 0x76, 0xa6, 0x64, 0x34, 0x0a, 0xb2, 0xaa, 0xe4, 0xd2, 0x39, 0xb8, 0xcf, - 0x38, 0x0d, 0x38, 0x4c, 0x50, 0xe4, 0x53, 0xc8, 0x20, 0x6d, 0x43, 0x63, 0xf9, 0x6e, 0x05, 0x6c, - 0x8c, 0x18, 0x3c, 0x45, 0x60, 0xdf, 0xae, 0x80, 0x72, 0x3d, 0xa0, 0x41, 0xca, 0xf4, 0x47, 0x00, - 0x88, 0x56, 0xf5, 0x63, 0x88, 0x49, 0xaa, 0xde, 0xda, 0x5b, 0x13, 0xc8, 0xb1, 0x00, 0xf4, 0x2b, - 0x0d, 0x18, 0x09, 0xc4, 0x90, 0x21, 0xe6, 0xff, 0xd6, 0xa2, 0xea, 0xbd, 0xde, 0x2f, 0xac, 0xd3, - 0x52, 0x3a, 0xe7, 0xd5, 0xb5, 0xbd, 0x87, 0x45, 0xe8, 0xf5, 0x74, 0xc7, 0xea, 0x27, 0xc3, 0x39, - 0x41, 0x31, 0xc4, 0x1c, 0x9d, 0x23, 0x48, 0x8b, 0xd7, 0xda, 0x99, 0xed, 0xfc, 0x71, 0xc6, 0xb0, - 0xf3, 0x6b, 0x23, 0x44, 0x0f, 0xc1, 0x36, 0x85, 0x71, 0x1e, 0x89, 0x5e, 0xf7, 0x33, 0x48, 0x11, - 0x89, 0x7d, 0x84, 0x95, 0x10, 0x26, 0xed, 0x5f, 0xaa, 0x3e, 0x1d, 0x74, 0xad, 0xc7, 0xaa, 0xe2, - 0xfc, 0x5c, 0xdb, 0xab, 0x8c, 0x82, 0x75, 0x19, 0xab, 0x61, 0x29, 0x9a, 0x89, 0x99, 0x1e, 0xdf, - 0x3b, 0x0f, 0x22, 0x4e, 0xa8, 0xb1, 0xf2, 0x6f, 0x33, 0x3d, 0x5b, 0xcf, 0xf6, 0xd6, 0x47, 0xd0, - 0x89, 0x44, 0xf4, 0x14, 0x18, 0xf1, 0xc4, 0x48, 0x0b, 0x57, 0x87, 0x33, 0x6d, 0x94, 0x77, 0xb5, - 0xbd, 0xff, 0x5f, 0x3c, 0x77, 0xfe, 0xb0, 0xa1, 0x9c, 0x39, 0x7b, 0xa0, 0xba, 0x2c, 0xb4, 0x7a, - 0x95, 0x78, 0xce, 0x9a, 0xb8, 0xd2, 0xc0, 0x9e, 0xa8, 0x83, 0x70, 0xe2, 0x53, 0x78, 0x19, 0xd0, - 0x98, 0xf9, 0x53, 0xfc, 0x8c, 0x07, 0x94, 0x2b, 0xb3, 0x8c, 0x55, 0xe9, 0xeb, 0xe1, 0xa0, 0x6b, - 0xb9, 0xea, 0xff, 0xfc, 0xed, 0x4d, 0xdb, 0x7b, 0x52, 0xa4, 0x7a, 0x2a, 0x73, 0x52, 0x6d, 0x43, - 0xe4, 0x49, 0xcf, 0x8f, 0x96, 0xbf, 0x7e, 0xb3, 0x4a, 0xd5, 0x37, 0xd7, 0x3d, 0x53, 0xbb, 0xe9, - 0x99, 0xda, 0x8f, 0x9e, 0xa9, 0x7d, 0xe9, 0x9b, 0xa5, 0x9b, 0xbe, 0x59, 0xfa, 0xde, 0x37, 0x4b, - 0x67, 0xce, 0x84, 0xe1, 0x0d, 0x69, 0xc2, 0xfe, 0xdb, 0x20, 0x64, 0x6e, 0xb1, 0xd2, 0xdb, 0x07, - 0x2f, 0xdd, 0x0f, 0x6a, 0xb1, 0x4b, 0xf3, 0xc3, 0xb2, 0xdc, 0xd3, 0x87, 0xbf, 0x02, 0x00, 0x00, - 0xff, 0xff, 0xd1, 0x45, 0x48, 0x5a, 0xf4, 0x05, 0x00, 0x00, + 0xba, 0xa0, 0xb6, 0x4a, 0xc5, 0xa6, 0x2b, 0x14, 0x95, 0x96, 0x48, 0x20, 0x05, 0x67, 0xd7, 0x8d, + 0xe5, 0x9f, 0xa9, 0x33, 0x6a, 0x3c, 0x63, 0xcd, 0x8c, 0x53, 0x22, 0x24, 0x5e, 0xa0, 0x2c, 0x58, + 0xb2, 0xe4, 0x71, 0xba, 0xec, 0x12, 0x75, 0x11, 0xa1, 0xe4, 0x0d, 0xb2, 0x61, 0x8b, 0x66, 0xc6, + 0xf9, 0x85, 0x48, 0x44, 0x74, 0x15, 0xcf, 0xb9, 0x77, 0xee, 0x39, 0x39, 0x73, 0xef, 0x05, 0x26, + 0xe3, 0x14, 0xc5, 0xd0, 0x4d, 0x11, 0xe6, 0x6e, 0xfb, 0x20, 0x84, 0x3c, 0x38, 0x90, 0x07, 0x27, + 0xa3, 0x84, 0x13, 0x7d, 0x53, 0xc5, 0x1d, 0x09, 0x15, 0xf1, 0xed, 0x07, 0x09, 0x49, 0x88, 0x8c, + 0xbb, 0xe2, 0x4b, 0xa5, 0xda, 0x9f, 0x40, 0xf9, 0x1d, 0xc2, 0x1c, 0x52, 0x9d, 0x83, 0x0d, 0x98, + 0x91, 0xa8, 0xe9, 0x67, 0x94, 0xb4, 0x11, 0x43, 0x04, 0x33, 0x43, 0xdb, 0xd5, 0xf6, 0xd6, 0xaa, + 0xb5, 0xeb, 0xae, 0x55, 0xba, 0xed, 0x5a, 0xcf, 0x12, 0xc4, 0x9b, 0x79, 0xe8, 0x44, 0x24, 0x75, + 0x23, 0xc2, 0x52, 0xc2, 0x8a, 0x9f, 0x7d, 0x16, 0x5f, 0xb8, 0xbc, 0x93, 0x41, 0xe6, 0x1c, 0xc3, + 0x68, 0xd0, 0xb5, 0x2a, 0x9d, 0x20, 0x6d, 0x1d, 0xd9, 0xb3, 0xf5, 0x6c, 0x6f, 0x5d, 0x42, 0xf5, + 0x31, 0xf2, 0x73, 0x09, 0x54, 0x8e, 0x91, 0xd0, 0x1b, 0xe6, 0x1c, 0x11, 0x5c, 0xa7, 0x24, 0x23, + 0x54, 0x7c, 0x31, 0xfd, 0x0c, 0xac, 0x32, 0x1e, 0x5c, 0x20, 0x9c, 0x14, 0x42, 0x5e, 0x2d, 0x2c, + 0xe4, 0x9e, 0x12, 0x52, 0x94, 0xb1, 0xbd, 0x61, 0x41, 0xfd, 0x23, 0xd8, 0x8a, 0x48, 0x9a, 0xe6, + 0x18, 0xf1, 0x8e, 0x9f, 0x11, 0xd2, 0xf2, 0x13, 0x4a, 0x2e, 0x79, 0xd3, 0xf8, 0x4f, 0x32, 0x9d, + 0x2e, 0xcc, 0xb4, 0xa5, 0x98, 0xa6, 0x8b, 0xda, 0xde, 0xe6, 0x08, 0xa8, 0x13, 0xd2, 0x3a, 0x95, + 0x1c, 0xfa, 0x67, 0x0d, 0x98, 0x33, 0xec, 0x0c, 0x46, 0x39, 0x15, 0xa7, 0x30, 0x8f, 0x13, 0xc8, + 0x8d, 0xa5, 0xbb, 0x95, 0xb1, 0x33, 0x25, 0xa3, 0x51, 0x90, 0x55, 0x25, 0x97, 0xce, 0xc1, 0x7d, + 0xc6, 0x69, 0xc0, 0x61, 0x82, 0x22, 0x9f, 0x42, 0x06, 0x69, 0x1b, 0x1a, 0xcb, 0x77, 0x2b, 0x60, + 0x63, 0xc4, 0xe0, 0x29, 0x02, 0xfb, 0x76, 0x05, 0x94, 0xeb, 0x01, 0x0d, 0x52, 0xa6, 0x3f, 0x02, + 0x40, 0xb4, 0xaa, 0x1f, 0x43, 0x4c, 0x52, 0xf5, 0xd6, 0xde, 0x9a, 0x40, 0x8e, 0x05, 0xa0, 0x5f, + 0x69, 0xc0, 0x48, 0x20, 0x86, 0x0c, 0x31, 0xff, 0xb7, 0x16, 0x55, 0xef, 0xf5, 0x7e, 0x61, 0x9d, + 0x96, 0xd2, 0x39, 0xaf, 0xae, 0xed, 0x3d, 0x2c, 0x42, 0xaf, 0xa7, 0x3b, 0x56, 0x3f, 0x19, 0xce, + 0x09, 0x8a, 0x21, 0xe6, 0xe8, 0x1c, 0x41, 0x5a, 0xbc, 0xd6, 0xce, 0x6c, 0xe7, 0x8f, 0x33, 0x86, + 0x9d, 0x5f, 0x1b, 0x21, 0x7a, 0x08, 0xb6, 0x29, 0x8c, 0xf3, 0x48, 0xf4, 0xba, 0x9f, 0x41, 0x8a, + 0x48, 0xec, 0x23, 0xac, 0x84, 0x30, 0x69, 0xff, 0x52, 0xf5, 0xe9, 0xa0, 0x6b, 0x3d, 0x56, 0x15, + 0xe7, 0xe7, 0xda, 0x5e, 0x65, 0x14, 0xac, 0xcb, 0x58, 0x0d, 0x4b, 0xd1, 0x4c, 0xcc, 0xf4, 0xf8, + 0xde, 0x79, 0x10, 0x71, 0x42, 0x8d, 0x95, 0x7f, 0x9b, 0xe9, 0xd9, 0x7a, 0xb6, 0xb7, 0x3e, 0x82, + 0x4e, 0x24, 0xa2, 0xa7, 0xc0, 0x88, 0x27, 0x46, 0x5a, 0xb8, 0x3a, 0x9c, 0x69, 0xa3, 0xbc, 0xab, + 0xed, 0xfd, 0xff, 0xe2, 0xb9, 0xf3, 0x87, 0x0d, 0xe5, 0xcc, 0xd9, 0x03, 0xd5, 0x65, 0xa1, 0xd5, + 0xab, 0xc4, 0x73, 0xd6, 0xc4, 0x95, 0x06, 0xf6, 0x44, 0x1d, 0x84, 0x13, 0x9f, 0xc2, 0xcb, 0x80, + 0xc6, 0xcc, 0x9f, 0xe2, 0x67, 0x3c, 0xa0, 0x5c, 0x99, 0x65, 0xac, 0x4a, 0x5f, 0x0f, 0x07, 0x5d, + 0xcb, 0x55, 0xff, 0xe7, 0x6f, 0x6f, 0xda, 0xde, 0x93, 0x22, 0xd5, 0x53, 0x99, 0x93, 0x6a, 0x1b, + 0x22, 0x4f, 0x7a, 0x7e, 0xb4, 0xfc, 0xf5, 0x9b, 0x55, 0xaa, 0xbe, 0xb9, 0xee, 0x99, 0xda, 0x4d, + 0xcf, 0xd4, 0x7e, 0xf4, 0x4c, 0xed, 0x4b, 0xdf, 0x2c, 0xdd, 0xf4, 0xcd, 0xd2, 0xf7, 0xbe, 0x59, + 0x3a, 0x73, 0x26, 0x0c, 0x6f, 0x48, 0x13, 0xf6, 0xdf, 0x06, 0x21, 0x73, 0x8b, 0x95, 0xde, 0x3e, + 0x78, 0xe9, 0x7e, 0x50, 0x8b, 0x5d, 0x9a, 0x1f, 0x96, 0xe5, 0x9e, 0x3e, 0xfc, 0x15, 0x00, 0x00, + 0xff, 0xff, 0x11, 0x21, 0x60, 0x4d, 0xf4, 0x05, 0x00, 0x00, } func (m *Minter) Marshal() (dAtA []byte, err error) { diff --git a/x/mint/types/params.go b/x/mint/types/params.go index 278b476574..c9cb4aaefa 100644 --- a/x/mint/types/params.go +++ b/x/mint/types/params.go @@ -7,7 +7,7 @@ import ( yaml "gopkg.in/yaml.v2" - epochtypes "github.com/Stride-Labs/stride/v14/x/epochs/types" + epochtypes "github.com/Stride-Labs/stride/v15/x/epochs/types" sdk "github.com/cosmos/cosmos-sdk/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" diff --git a/x/mint/types/query.pb.go b/x/mint/types/query.pb.go index c2c86cf96b..0d4a421d17 100644 --- a/x/mint/types/query.pb.go +++ b/x/mint/types/query.pb.go @@ -202,31 +202,31 @@ func init() { proto.RegisterFile("stride/mint/v1beta1/query.proto", fileDescript var fileDescriptor_b5a371e09ad2a41a = []byte{ // 392 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x52, 0x31, 0x4f, 0xfa, 0x40, - 0x1c, 0x6d, 0xc9, 0xff, 0xcf, 0x70, 0x9a, 0x60, 0x0e, 0x62, 0x4c, 0xc1, 0x83, 0x74, 0x40, 0x16, - 0xee, 0x2c, 0xba, 0xb8, 0x12, 0x4d, 0x1c, 0x1c, 0x10, 0x27, 0x5d, 0x4c, 0x5b, 0x2e, 0xa5, 0xd1, - 0xf6, 0x4a, 0xef, 0x20, 0x76, 0xf5, 0x13, 0x98, 0xb8, 0xbb, 0xf8, 0x65, 0x18, 0x49, 0x5c, 0x8c, - 0x03, 0x31, 0xe0, 0x07, 0x31, 0xbd, 0x56, 0x63, 0xb1, 0xc6, 0x38, 0xb5, 0xb9, 0xf7, 0x7e, 0xef, - 0xbd, 0xdf, 0xbb, 0x03, 0x75, 0x2e, 0x42, 0x77, 0x40, 0x89, 0xe7, 0xfa, 0x82, 0x4c, 0x0c, 0x8b, - 0x0a, 0xd3, 0x20, 0xa3, 0x31, 0x0d, 0x23, 0x1c, 0x84, 0x4c, 0x30, 0x58, 0x4e, 0x08, 0x38, 0x26, - 0xe0, 0x94, 0xa0, 0x55, 0x1c, 0xe6, 0x30, 0x89, 0x93, 0xf8, 0x2f, 0xa1, 0x6a, 0x35, 0x87, 0x31, - 0xe7, 0x9a, 0x12, 0x33, 0x70, 0x89, 0xe9, 0xfb, 0x4c, 0x98, 0xc2, 0x65, 0x3e, 0x4f, 0x51, 0x94, - 0xe7, 0x24, 0x55, 0x25, 0xae, 0x57, 0x00, 0x3c, 0x8d, 0x7d, 0x7b, 0x66, 0x68, 0x7a, 0xbc, 0x4f, - 0x47, 0x63, 0xca, 0x85, 0xde, 0x03, 0xe5, 0xcc, 0x29, 0x0f, 0x98, 0xcf, 0x29, 0x3c, 0x00, 0xc5, - 0x40, 0x9e, 0x6c, 0xa9, 0x0d, 0xb5, 0xb5, 0xd6, 0xa9, 0xe2, 0x9c, 0x98, 0x38, 0x19, 0xea, 0xfe, - 0x9b, 0xce, 0xeb, 0x4a, 0x3f, 0x1d, 0xd0, 0xb7, 0x41, 0x55, 0x2a, 0x1e, 0x05, 0xcc, 0x1e, 0xf6, - 0x42, 0x36, 0x71, 0x79, 0x9c, 0xf2, 0xc3, 0x30, 0x02, 0xb5, 0x7c, 0x38, 0x75, 0x3e, 0x07, 0x1b, - 0x34, 0x86, 0x2e, 0x83, 0x4f, 0x4c, 0x66, 0x58, 0xef, 0xe2, 0xd8, 0xe6, 0x65, 0x5e, 0x6f, 0x3a, - 0xae, 0x18, 0x8e, 0x2d, 0x6c, 0x33, 0x8f, 0xd8, 0x8c, 0x7b, 0x8c, 0xa7, 0x9f, 0x36, 0x1f, 0x5c, - 0x11, 0x11, 0x05, 0x94, 0xe3, 0x43, 0x6a, 0xf7, 0x4b, 0x34, 0x6b, 0xd1, 0x79, 0x2c, 0x80, 0xff, - 0xd2, 0x1b, 0x46, 0xa0, 0x98, 0x64, 0x87, 0x3b, 0xb9, 0x8b, 0x7d, 0x2f, 0x4a, 0x6b, 0xfd, 0x4e, - 0x4c, 0x36, 0xd0, 0x6b, 0xb7, 0x4f, 0x6f, 0xf7, 0x85, 0x4d, 0x58, 0xc9, 0x5e, 0x45, 0x52, 0x0f, - 0x7c, 0x50, 0x41, 0x69, 0x65, 0x77, 0xb8, 0xfb, 0xb3, 0x76, 0x7e, 0x8b, 0x9a, 0xf1, 0x87, 0x89, - 0x34, 0x56, 0x53, 0xc6, 0x6a, 0x40, 0x94, 0x8d, 0xb5, 0x5a, 0x76, 0xf7, 0x78, 0xba, 0x40, 0xea, - 0x6c, 0x81, 0xd4, 0xd7, 0x05, 0x52, 0xef, 0x96, 0x48, 0x99, 0x2d, 0x91, 0xf2, 0xbc, 0x44, 0xca, - 0x05, 0xfe, 0x52, 0xfc, 0x99, 0xb4, 0x6f, 0x9f, 0x98, 0x16, 0x27, 0xe9, 0xc3, 0x9b, 0x18, 0xfb, - 0xe4, 0x26, 0x11, 0x97, 0x97, 0x60, 0x15, 0xe5, 0xc3, 0xdb, 0x7b, 0x0f, 0x00, 0x00, 0xff, 0xff, - 0x02, 0x23, 0x41, 0xb1, 0x04, 0x03, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x52, 0x31, 0x4b, 0xfb, 0x40, + 0x1c, 0x4d, 0xca, 0xff, 0xdf, 0xe1, 0x14, 0x2a, 0xd7, 0x22, 0x92, 0xd6, 0x6b, 0xc9, 0x50, 0xbb, + 0xf4, 0xce, 0x54, 0x1c, 0x5c, 0x8b, 0x82, 0x83, 0x43, 0xad, 0x93, 0x2e, 0x92, 0xa4, 0x47, 0x1a, + 0x34, 0xb9, 0x34, 0x77, 0x2d, 0x66, 0xf5, 0x13, 0x08, 0xee, 0x2e, 0x7e, 0x99, 0x8e, 0x05, 0x17, + 0x71, 0x28, 0xd2, 0xfa, 0x41, 0x24, 0x97, 0x28, 0xa6, 0x46, 0xc4, 0x29, 0xe1, 0xde, 0xfb, 0xbd, + 0xf7, 0x7e, 0xef, 0x0e, 0xd4, 0xb9, 0x08, 0xdd, 0x01, 0x25, 0x9e, 0xeb, 0x0b, 0x32, 0x31, 0x2c, + 0x2a, 0x4c, 0x83, 0x8c, 0xc6, 0x34, 0x8c, 0x70, 0x10, 0x32, 0xc1, 0x60, 0x39, 0x21, 0xe0, 0x98, + 0x80, 0x53, 0x82, 0x56, 0x71, 0x98, 0xc3, 0x24, 0x4e, 0xe2, 0xbf, 0x84, 0xaa, 0xd5, 0x1c, 0xc6, + 0x9c, 0x6b, 0x4a, 0xcc, 0xc0, 0x25, 0xa6, 0xef, 0x33, 0x61, 0x0a, 0x97, 0xf9, 0x3c, 0x45, 0x51, + 0x9e, 0x93, 0x54, 0x95, 0xb8, 0x5e, 0x01, 0xf0, 0x34, 0xf6, 0xed, 0x99, 0xa1, 0xe9, 0xf1, 0x3e, + 0x1d, 0x8d, 0x29, 0x17, 0x7a, 0x0f, 0x94, 0x33, 0xa7, 0x3c, 0x60, 0x3e, 0xa7, 0xf0, 0x00, 0x14, + 0x03, 0x79, 0xb2, 0xa5, 0x36, 0xd4, 0xd6, 0x5a, 0xa7, 0x8a, 0x73, 0x62, 0xe2, 0x64, 0xa8, 0xfb, + 0x6f, 0x3a, 0xaf, 0x2b, 0xfd, 0x74, 0x40, 0xdf, 0x06, 0x55, 0xa9, 0x78, 0x14, 0x30, 0x7b, 0xd8, + 0x0b, 0xd9, 0xc4, 0xe5, 0x71, 0xca, 0x0f, 0xc3, 0x08, 0xd4, 0xf2, 0xe1, 0xd4, 0xf9, 0x1c, 0x6c, + 0xd0, 0x18, 0xba, 0x0c, 0x3e, 0x31, 0x99, 0x61, 0xbd, 0x8b, 0x63, 0x9b, 0x97, 0x79, 0xbd, 0xe9, + 0xb8, 0x62, 0x38, 0xb6, 0xb0, 0xcd, 0x3c, 0x62, 0x33, 0xee, 0x31, 0x9e, 0x7e, 0xda, 0x7c, 0x70, + 0x45, 0x44, 0x14, 0x50, 0x8e, 0x0f, 0xa9, 0xdd, 0x2f, 0xd1, 0xac, 0x45, 0xe7, 0xb1, 0x00, 0xfe, + 0x4b, 0x6f, 0x18, 0x81, 0x62, 0x92, 0x1d, 0xee, 0xe4, 0x2e, 0xf6, 0xbd, 0x28, 0xad, 0xf5, 0x3b, + 0x31, 0xd9, 0x40, 0xaf, 0xdd, 0x3e, 0xbd, 0xdd, 0x17, 0x36, 0x61, 0x25, 0x7b, 0x15, 0x49, 0x3d, + 0xf0, 0x41, 0x05, 0xa5, 0x95, 0xdd, 0xe1, 0xee, 0xcf, 0xda, 0xf9, 0x2d, 0x6a, 0xc6, 0x1f, 0x26, + 0xd2, 0x58, 0x4d, 0x19, 0xab, 0x01, 0x51, 0x36, 0xd6, 0x6a, 0xd9, 0xdd, 0xe3, 0xe9, 0x02, 0xa9, + 0xb3, 0x05, 0x52, 0x5f, 0x17, 0x48, 0xbd, 0x5b, 0x22, 0x65, 0xb6, 0x44, 0xca, 0xf3, 0x12, 0x29, + 0x17, 0xf8, 0x4b, 0xf1, 0x67, 0xd2, 0xbe, 0x7d, 0x62, 0x5a, 0x9c, 0xa4, 0x0f, 0x6f, 0x62, 0xec, + 0x93, 0x9b, 0x44, 0x5c, 0x5e, 0x82, 0x55, 0x94, 0x0f, 0x6f, 0xef, 0x3d, 0x00, 0x00, 0xff, 0xff, + 0xc2, 0x47, 0x69, 0xa6, 0x04, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/ratelimit/client/cli/query.go b/x/ratelimit/client/cli/query.go index 56b94bb0a7..42fd5fc21b 100644 --- a/x/ratelimit/client/cli/query.go +++ b/x/ratelimit/client/cli/query.go @@ -11,7 +11,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/version" - "github.com/Stride-Labs/stride/v14/x/ratelimit/types" + "github.com/Stride-Labs/stride/v15/x/ratelimit/types" ) const ( diff --git a/x/ratelimit/client/cli/tx.go b/x/ratelimit/client/cli/tx.go index 03fe4f660b..d1efb62e81 100644 --- a/x/ratelimit/client/cli/tx.go +++ b/x/ratelimit/client/cli/tx.go @@ -19,7 +19,7 @@ import ( govcli "github.com/cosmos/cosmos-sdk/x/gov/client/cli" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" - "github.com/Stride-Labs/stride/v14/x/ratelimit/types" + "github.com/Stride-Labs/stride/v15/x/ratelimit/types" ) // Parse the gov proposal file into a proto message diff --git a/x/ratelimit/client/proposal_handler.go b/x/ratelimit/client/proposal_handler.go index d37dff06ea..dda362d912 100644 --- a/x/ratelimit/client/proposal_handler.go +++ b/x/ratelimit/client/proposal_handler.go @@ -1,7 +1,7 @@ package client import ( - "github.com/Stride-Labs/stride/v14/x/ratelimit/client/cli" + "github.com/Stride-Labs/stride/v15/x/ratelimit/client/cli" govclient "github.com/cosmos/cosmos-sdk/x/gov/client" ) diff --git a/x/ratelimit/genesis.go b/x/ratelimit/genesis.go index 9778ef8ef6..6c948a3522 100644 --- a/x/ratelimit/genesis.go +++ b/x/ratelimit/genesis.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/ratelimit/keeper" - "github.com/Stride-Labs/stride/v14/x/ratelimit/types" + "github.com/Stride-Labs/stride/v15/x/ratelimit/keeper" + "github.com/Stride-Labs/stride/v15/x/ratelimit/types" ) // InitGenesis initializes the capability module's state from a provided genesis diff --git a/x/ratelimit/genesis_test.go b/x/ratelimit/genesis_test.go index 0b4961b8ff..24832a54dd 100644 --- a/x/ratelimit/genesis_test.go +++ b/x/ratelimit/genesis_test.go @@ -8,10 +8,10 @@ import ( sdkmath "cosmossdk.io/math" - "github.com/Stride-Labs/stride/v14/app/apptesting" - "github.com/Stride-Labs/stride/v14/testutil/nullify" - "github.com/Stride-Labs/stride/v14/x/ratelimit" - "github.com/Stride-Labs/stride/v14/x/ratelimit/types" + "github.com/Stride-Labs/stride/v15/app/apptesting" + "github.com/Stride-Labs/stride/v15/testutil/nullify" + "github.com/Stride-Labs/stride/v15/x/ratelimit" + "github.com/Stride-Labs/stride/v15/x/ratelimit/types" ) func createRateLimits() []types.RateLimit { diff --git a/x/ratelimit/handler.go b/x/ratelimit/handler.go index f5bf7f5851..6a63db556c 100644 --- a/x/ratelimit/handler.go +++ b/x/ratelimit/handler.go @@ -10,9 +10,9 @@ import ( channelkeeper "github.com/cosmos/ibc-go/v7/modules/core/04-channel/keeper" - "github.com/Stride-Labs/stride/v14/x/ratelimit/keeper" - "github.com/Stride-Labs/stride/v14/x/ratelimit/keeper/gov" - "github.com/Stride-Labs/stride/v14/x/ratelimit/types" + "github.com/Stride-Labs/stride/v15/x/ratelimit/keeper" + "github.com/Stride-Labs/stride/v15/x/ratelimit/keeper/gov" + "github.com/Stride-Labs/stride/v15/x/ratelimit/types" ) // NewMessageHandler returns ratelimit module messages diff --git a/x/ratelimit/ibc_middleware.go b/x/ratelimit/ibc_middleware.go index c04e2fcf2c..89200436a7 100644 --- a/x/ratelimit/ibc_middleware.go +++ b/x/ratelimit/ibc_middleware.go @@ -3,7 +3,7 @@ package ratelimit import ( "fmt" - "github.com/Stride-Labs/stride/v14/x/ratelimit/keeper" + "github.com/Stride-Labs/stride/v15/x/ratelimit/keeper" sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" diff --git a/x/ratelimit/keeper/gov/gov.go b/x/ratelimit/keeper/gov/gov.go index 5e78e848c6..8e2e276253 100644 --- a/x/ratelimit/keeper/gov/gov.go +++ b/x/ratelimit/keeper/gov/gov.go @@ -6,8 +6,8 @@ import ( transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" channelkeeper "github.com/cosmos/ibc-go/v7/modules/core/04-channel/keeper" - "github.com/Stride-Labs/stride/v14/x/ratelimit/keeper" - "github.com/Stride-Labs/stride/v14/x/ratelimit/types" + "github.com/Stride-Labs/stride/v15/x/ratelimit/keeper" + "github.com/Stride-Labs/stride/v15/x/ratelimit/types" ) // Adds a new rate limit. Fails if the rate limit already exists or the channel value is 0 diff --git a/x/ratelimit/keeper/gov/gov_test.go b/x/ratelimit/keeper/gov/gov_test.go index bc1b08ba42..1989e329be 100644 --- a/x/ratelimit/keeper/gov/gov_test.go +++ b/x/ratelimit/keeper/gov/gov_test.go @@ -12,10 +12,10 @@ import ( transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - "github.com/Stride-Labs/stride/v14/app/apptesting" - minttypes "github.com/Stride-Labs/stride/v14/x/mint/types" - "github.com/Stride-Labs/stride/v14/x/ratelimit/keeper/gov" - "github.com/Stride-Labs/stride/v14/x/ratelimit/types" + "github.com/Stride-Labs/stride/v15/app/apptesting" + minttypes "github.com/Stride-Labs/stride/v15/x/mint/types" + "github.com/Stride-Labs/stride/v15/x/ratelimit/keeper/gov" + "github.com/Stride-Labs/stride/v15/x/ratelimit/types" ) type KeeperTestSuite struct { diff --git a/x/ratelimit/keeper/grpc_query.go b/x/ratelimit/keeper/grpc_query.go index 5b53c696b4..4fe25b0a9d 100644 --- a/x/ratelimit/keeper/grpc_query.go +++ b/x/ratelimit/keeper/grpc_query.go @@ -9,7 +9,7 @@ import ( transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" ibctmtypes "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - "github.com/Stride-Labs/stride/v14/x/ratelimit/types" + "github.com/Stride-Labs/stride/v15/x/ratelimit/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/ratelimit/keeper/grpc_query_test.go b/x/ratelimit/keeper/grpc_query_test.go index bca2384449..d9066281d7 100644 --- a/x/ratelimit/keeper/grpc_query_test.go +++ b/x/ratelimit/keeper/grpc_query_test.go @@ -11,7 +11,7 @@ import ( channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" ibctmtypes "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - "github.com/Stride-Labs/stride/v14/x/ratelimit/types" + "github.com/Stride-Labs/stride/v15/x/ratelimit/types" ) // Add three rate limits on different channels diff --git a/x/ratelimit/keeper/hooks.go b/x/ratelimit/keeper/hooks.go index 7c8059679a..60d3666a38 100644 --- a/x/ratelimit/keeper/hooks.go +++ b/x/ratelimit/keeper/hooks.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - epochstypes "github.com/Stride-Labs/stride/v14/x/epochs/types" + epochstypes "github.com/Stride-Labs/stride/v15/x/epochs/types" ) // Before each hour epoch, check if any of the rate limits have expired, diff --git a/x/ratelimit/keeper/hooks_test.go b/x/ratelimit/keeper/hooks_test.go index 84b1ad2f65..3735a14142 100644 --- a/x/ratelimit/keeper/hooks_test.go +++ b/x/ratelimit/keeper/hooks_test.go @@ -5,8 +5,8 @@ import ( sdkmath "cosmossdk.io/math" - epochstypes "github.com/Stride-Labs/stride/v14/x/epochs/types" - "github.com/Stride-Labs/stride/v14/x/ratelimit/types" + epochstypes "github.com/Stride-Labs/stride/v15/x/epochs/types" + "github.com/Stride-Labs/stride/v15/x/ratelimit/types" ) // Store a rate limit with a non-zero flow for each duration diff --git a/x/ratelimit/keeper/keeper.go b/x/ratelimit/keeper/keeper.go index d9e3ff8d5b..15252ff978 100644 --- a/x/ratelimit/keeper/keeper.go +++ b/x/ratelimit/keeper/keeper.go @@ -10,7 +10,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/Stride-Labs/stride/v14/x/ratelimit/types" + "github.com/Stride-Labs/stride/v15/x/ratelimit/types" ) type ( diff --git a/x/ratelimit/keeper/keeper_test.go b/x/ratelimit/keeper/keeper_test.go index 599b9c950b..82f248745a 100644 --- a/x/ratelimit/keeper/keeper_test.go +++ b/x/ratelimit/keeper/keeper_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/suite" - "github.com/Stride-Labs/stride/v14/app/apptesting" - "github.com/Stride-Labs/stride/v14/x/ratelimit/types" + "github.com/Stride-Labs/stride/v15/app/apptesting" + "github.com/Stride-Labs/stride/v15/x/ratelimit/types" ) type KeeperTestSuite struct { diff --git a/x/ratelimit/keeper/packet.go b/x/ratelimit/keeper/packet.go index 4937891ff6..fb33455b7d 100644 --- a/x/ratelimit/keeper/packet.go +++ b/x/ratelimit/keeper/packet.go @@ -14,9 +14,9 @@ import ( channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" - "github.com/Stride-Labs/stride/v14/x/icacallbacks" - icacallbacktypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" - "github.com/Stride-Labs/stride/v14/x/ratelimit/types" + "github.com/Stride-Labs/stride/v15/x/icacallbacks" + icacallbacktypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" + "github.com/Stride-Labs/stride/v15/x/ratelimit/types" ) type RateLimitedPacketInfo struct { diff --git a/x/ratelimit/keeper/packet_test.go b/x/ratelimit/keeper/packet_test.go index c9a743a245..c3979632e8 100644 --- a/x/ratelimit/keeper/packet_test.go +++ b/x/ratelimit/keeper/packet_test.go @@ -13,8 +13,8 @@ import ( tmbytes "github.com/cometbft/cometbft/libs/bytes" - "github.com/Stride-Labs/stride/v14/x/ratelimit/keeper" - "github.com/Stride-Labs/stride/v14/x/ratelimit/types" + "github.com/Stride-Labs/stride/v15/x/ratelimit/keeper" + "github.com/Stride-Labs/stride/v15/x/ratelimit/types" ) const ( diff --git a/x/ratelimit/keeper/params.go b/x/ratelimit/keeper/params.go index 28b9c68c64..a50072a73b 100644 --- a/x/ratelimit/keeper/params.go +++ b/x/ratelimit/keeper/params.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/ratelimit/types" + "github.com/Stride-Labs/stride/v15/x/ratelimit/types" ) // GetParams get all parameters as types.Params diff --git a/x/ratelimit/keeper/rate_limit.go b/x/ratelimit/keeper/rate_limit.go index 0081937036..2a65ccba20 100644 --- a/x/ratelimit/keeper/rate_limit.go +++ b/x/ratelimit/keeper/rate_limit.go @@ -12,7 +12,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/Stride-Labs/stride/v14/x/ratelimit/types" + "github.com/Stride-Labs/stride/v15/x/ratelimit/types" ) // Get the rate limit byte key built from the denom and channelId diff --git a/x/ratelimit/keeper/rate_limit_test.go b/x/ratelimit/keeper/rate_limit_test.go index 57c8babe1e..6c328b4914 100644 --- a/x/ratelimit/keeper/rate_limit_test.go +++ b/x/ratelimit/keeper/rate_limit_test.go @@ -7,9 +7,9 @@ import ( sdkmath "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - minttypes "github.com/Stride-Labs/stride/v14/x/mint/types" - "github.com/Stride-Labs/stride/v14/x/ratelimit/keeper" - "github.com/Stride-Labs/stride/v14/x/ratelimit/types" + minttypes "github.com/Stride-Labs/stride/v15/x/mint/types" + "github.com/Stride-Labs/stride/v15/x/ratelimit/keeper" + "github.com/Stride-Labs/stride/v15/x/ratelimit/types" ) const ( diff --git a/x/ratelimit/module.go b/x/ratelimit/module.go index 92ae2539ff..725ba04900 100644 --- a/x/ratelimit/module.go +++ b/x/ratelimit/module.go @@ -17,9 +17,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/Stride-Labs/stride/v14/x/ratelimit/client/cli" - "github.com/Stride-Labs/stride/v14/x/ratelimit/keeper" - "github.com/Stride-Labs/stride/v14/x/ratelimit/types" + "github.com/Stride-Labs/stride/v15/x/ratelimit/client/cli" + "github.com/Stride-Labs/stride/v15/x/ratelimit/keeper" + "github.com/Stride-Labs/stride/v15/x/ratelimit/types" ) var ( diff --git a/x/ratelimit/types/flow_test.go b/x/ratelimit/types/flow_test.go index a50e7399f0..4aa5ace05b 100644 --- a/x/ratelimit/types/flow_test.go +++ b/x/ratelimit/types/flow_test.go @@ -6,7 +6,7 @@ import ( sdkmath "cosmossdk.io/math" "github.com/stretchr/testify/require" - "github.com/Stride-Labs/stride/v14/x/ratelimit/types" + "github.com/Stride-Labs/stride/v15/x/ratelimit/types" ) func TestAddInflow(t *testing.T) { diff --git a/x/ratelimit/types/genesis.pb.go b/x/ratelimit/types/genesis.pb.go index ef23eb4d1f..958b9ca3da 100644 --- a/x/ratelimit/types/genesis.pb.go +++ b/x/ratelimit/types/genesis.pb.go @@ -110,29 +110,29 @@ var fileDescriptor_9e224b293959881c = []byte{ // 403 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x92, 0x41, 0x6b, 0xd4, 0x40, 0x18, 0x86, 0x37, 0xae, 0x16, 0x9c, 0x55, 0xd0, 0x41, 0x31, 0xae, 0x98, 0x86, 0xe0, 0x21, 0x97, - 0x26, 0xd8, 0x7a, 0xf2, 0x66, 0x10, 0x7a, 0xa9, 0x65, 0x49, 0x0e, 0x8a, 0x97, 0x30, 0xc9, 0x7c, - 0xa4, 0x43, 0x37, 0x93, 0x38, 0xdf, 0xac, 0xb5, 0x7f, 0x42, 0xfc, 0x4b, 0xde, 0x7a, 0xec, 0xd1, - 0x53, 0x91, 0xdd, 0x7f, 0xe0, 0x2f, 0x90, 0xcc, 0x8c, 0x75, 0x31, 0xf6, 0x36, 0xf0, 0xbe, 0xcf, - 0xf3, 0x86, 0xf0, 0x91, 0x00, 0xb5, 0x12, 0x1c, 0x52, 0xc5, 0x34, 0x2c, 0x45, 0x2b, 0x74, 0xda, - 0x80, 0x04, 0x14, 0x98, 0xf4, 0xaa, 0xd3, 0x1d, 0x7d, 0x60, 0xf3, 0xe4, 0x3a, 0x9f, 0x3f, 0x6a, - 0xba, 0xa6, 0x33, 0x61, 0x3a, 0xbc, 0x6c, 0x6f, 0xfe, 0x7c, 0xe4, 0xe9, 0x99, 0x62, 0xad, 0xd3, - 0xcc, 0xc3, 0x51, 0x7c, 0xfd, 0xb2, 0x8d, 0xe8, 0xfb, 0x94, 0xdc, 0x3b, 0xb4, 0xd3, 0x85, 0x66, - 0x1a, 0xe8, 0x21, 0xd9, 0xb1, 0x0a, 0xdf, 0x0b, 0xbd, 0x78, 0xb6, 0xef, 0x27, 0xff, 0x7e, 0x4a, - 0xb2, 0x30, 0x79, 0xf6, 0xf8, 0xe2, 0x6a, 0x77, 0xf2, 0xeb, 0x6a, 0xf7, 0xfe, 0x39, 0x6b, 0x97, - 0xaf, 0x23, 0x4b, 0x45, 0xb9, 0xc3, 0xe9, 0x07, 0x32, 0x1b, 0x90, 0xd2, 0x30, 0xe8, 0xdf, 0x0a, - 0xa7, 0xf1, 0x6c, 0xff, 0xd9, 0xd8, 0x96, 0x33, 0x0d, 0x47, 0xc3, 0x2b, 0x9b, 0x3b, 0x21, 0xb5, - 0xc2, 0x2d, 0x3a, 0xca, 0x89, 0xfa, 0x53, 0x43, 0xfa, 0xd5, 0x23, 0x4f, 0xcf, 0x4e, 0xc4, 0x20, - 0x40, 0x0d, 0xbc, 0x64, 0x9c, 0x2b, 0x40, 0x2c, 0x7b, 0x26, 0x14, 0xfa, 0x53, 0x33, 0x14, 0x8f, - 0x87, 0xde, 0xff, 0x45, 0xde, 0x58, 0x62, 0xc1, 0x84, 0xca, 0x62, 0xb7, 0x1a, 0xda, 0xd5, 0x1b, - 0xc5, 0x51, 0xfe, 0xe4, 0xec, 0xbf, 0x06, 0xa4, 0x7b, 0x84, 0x56, 0x4b, 0x56, 0x9f, 0x3a, 0x8c, - 0x83, 0xec, 0x5a, 0xf4, 0x6f, 0x87, 0xd3, 0xf8, 0x6e, 0xfe, 0x70, 0x2b, 0x79, 0x6b, 0x02, 0x7a, - 0x4c, 0x5e, 0xf4, 0x20, 0xb9, 0x90, 0x4d, 0x89, 0x20, 0x79, 0xd9, 0xb3, 0xfa, 0x14, 0x74, 0x89, - 0xf0, 0x69, 0x05, 0xb2, 0x86, 0x52, 0xae, 0xda, 0x0a, 0x14, 0xfa, 0x77, 0x8c, 0x20, 0x74, 0xdd, - 0x02, 0x24, 0x5f, 0x98, 0x66, 0xe1, 0x8a, 0xc7, 0xb6, 0x97, 0xbd, 0xbb, 0x58, 0x07, 0xde, 0xe5, - 0x3a, 0xf0, 0x7e, 0xae, 0x03, 0xef, 0xdb, 0x26, 0x98, 0x5c, 0x6e, 0x82, 0xc9, 0x8f, 0x4d, 0x30, - 0xf9, 0x78, 0xd0, 0x08, 0x7d, 0xb2, 0xaa, 0x92, 0xba, 0x6b, 0xd3, 0xc2, 0xfc, 0x8f, 0xbd, 0x23, - 0x56, 0x61, 0xea, 0xce, 0xe2, 0xf3, 0xcb, 0x57, 0xe9, 0x97, 0xad, 0xe3, 0xd0, 0xe7, 0x3d, 0x60, - 0xb5, 0x63, 0x2e, 0xe3, 0xe0, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0x62, 0xc6, 0x00, 0x9e, 0xa4, + 0x26, 0xd8, 0xe2, 0xc5, 0x9b, 0x41, 0xe8, 0xa5, 0x96, 0x25, 0x39, 0x28, 0x5e, 0xc2, 0x24, 0xf3, + 0x91, 0x0e, 0xdd, 0x4c, 0xe2, 0x7c, 0xb3, 0xd6, 0xfe, 0x09, 0xf1, 0x2f, 0x79, 0xeb, 0xb1, 0x47, + 0x4f, 0x45, 0x76, 0xff, 0x81, 0xbf, 0x40, 0x32, 0x33, 0xd6, 0xc5, 0xd8, 0xdb, 0xc0, 0xfb, 0x3e, + 0xcf, 0x1b, 0xc2, 0x47, 0x02, 0xd4, 0x4a, 0x70, 0x48, 0x15, 0xd3, 0xb0, 0x14, 0xad, 0xd0, 0x69, + 0x03, 0x12, 0x50, 0x60, 0xd2, 0xab, 0x4e, 0x77, 0xf4, 0x81, 0xcd, 0x93, 0xeb, 0x7c, 0xfe, 0xa8, + 0xe9, 0x9a, 0xce, 0x84, 0xe9, 0xf0, 0xb2, 0xbd, 0xf9, 0xf3, 0x91, 0xa7, 0x67, 0x8a, 0xb5, 0x4e, + 0x33, 0x0f, 0x47, 0xf1, 0xf5, 0xcb, 0x36, 0xa2, 0xef, 0x53, 0x72, 0xef, 0xd0, 0x4e, 0x17, 0x9a, + 0x69, 0xa0, 0x87, 0x64, 0xc7, 0x2a, 0x7c, 0x2f, 0xf4, 0xe2, 0xd9, 0xbe, 0x9f, 0xfc, 0xfb, 0x29, + 0xc9, 0xc2, 0xe4, 0xd9, 0xe3, 0x8b, 0xab, 0xdd, 0xc9, 0xaf, 0xab, 0xdd, 0xfb, 0xe7, 0xac, 0x5d, + 0xbe, 0x8e, 0x2c, 0x15, 0xe5, 0x0e, 0xa7, 0x1f, 0xc8, 0x6c, 0x40, 0x4a, 0xc3, 0xa0, 0x7f, 0x2b, + 0x9c, 0xc6, 0xb3, 0xfd, 0x67, 0x63, 0x5b, 0xce, 0x34, 0x1c, 0x0d, 0xaf, 0x6c, 0xee, 0x84, 0xd4, + 0x0a, 0xb7, 0xe8, 0x28, 0x27, 0xea, 0x4f, 0x0d, 0xe9, 0x57, 0x8f, 0x3c, 0x3d, 0x3b, 0x11, 0x83, + 0x00, 0x35, 0xf0, 0x92, 0x71, 0xae, 0x00, 0xb1, 0xec, 0x99, 0x50, 0xe8, 0x4f, 0xcd, 0x50, 0x3c, + 0x1e, 0x7a, 0xff, 0x17, 0x79, 0x63, 0x89, 0x05, 0x13, 0x2a, 0x8b, 0xdd, 0x6a, 0x68, 0x57, 0x6f, + 0x14, 0x47, 0xf9, 0x93, 0xb3, 0xff, 0x1a, 0x90, 0xee, 0x11, 0x5a, 0x2d, 0x59, 0x7d, 0xea, 0x30, + 0x0e, 0xb2, 0x6b, 0xd1, 0xbf, 0x1d, 0x4e, 0xe3, 0xbb, 0xf9, 0xc3, 0xad, 0xe4, 0xad, 0x09, 0xe8, + 0x31, 0x79, 0xd1, 0x83, 0xe4, 0x42, 0x36, 0x25, 0x82, 0xe4, 0x65, 0xcf, 0xea, 0x53, 0xd0, 0x25, + 0xc2, 0xa7, 0x15, 0xc8, 0x1a, 0x4a, 0xb9, 0x6a, 0x2b, 0x50, 0xe8, 0xdf, 0x31, 0x82, 0xd0, 0x75, + 0x0b, 0x90, 0x7c, 0x61, 0x9a, 0x85, 0x2b, 0x1e, 0xdb, 0x5e, 0xf6, 0xee, 0x62, 0x1d, 0x78, 0x97, + 0xeb, 0xc0, 0xfb, 0xb9, 0x0e, 0xbc, 0x6f, 0x9b, 0x60, 0x72, 0xb9, 0x09, 0x26, 0x3f, 0x36, 0xc1, + 0xe4, 0xe3, 0x41, 0x23, 0xf4, 0xc9, 0xaa, 0x4a, 0xea, 0xae, 0x4d, 0x0b, 0xf3, 0x3f, 0xf6, 0x8e, + 0x58, 0x85, 0xa9, 0x3b, 0x8b, 0xcf, 0x2f, 0x5f, 0xa5, 0x5f, 0xb6, 0x8e, 0x43, 0x9f, 0xf7, 0x80, + 0xd5, 0x8e, 0xb9, 0x8c, 0x83, 0xdf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x23, 0xdd, 0x8c, 0xf0, 0xa4, 0x02, 0x00, 0x00, } diff --git a/x/ratelimit/types/gov.pb.go b/x/ratelimit/types/gov.pb.go index 71860a9e71..5b9edb41dd 100644 --- a/x/ratelimit/types/gov.pb.go +++ b/x/ratelimit/types/gov.pb.go @@ -203,32 +203,32 @@ var fileDescriptor_3ad7ef7cb59a1c37 = []byte{ // 438 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x54, 0x41, 0x6b, 0x13, 0x41, 0x14, 0xde, 0x31, 0x4d, 0x6b, 0x47, 0x0d, 0x65, 0x08, 0x76, 0x28, 0xb8, 0x1b, 0x02, 0x4a, 0x0f, - 0x76, 0x17, 0xa9, 0xa7, 0xde, 0xec, 0xc9, 0x42, 0x85, 0x32, 0x45, 0x10, 0x2f, 0x61, 0xb2, 0xf3, - 0x48, 0x06, 0x77, 0x66, 0x96, 0x99, 0xc9, 0x92, 0xfe, 0x03, 0x8f, 0x1e, 0x45, 0x10, 0xf2, 0x57, - 0xf4, 0xd4, 0x63, 0x8f, 0xe2, 0x21, 0x48, 0x72, 0xf1, 0xec, 0x2f, 0x90, 0x9d, 0x4d, 0x25, 0xe0, - 0x49, 0x3c, 0xa8, 0xe0, 0x69, 0xf7, 0x7d, 0xdf, 0xf7, 0xde, 0xf0, 0xf1, 0x1e, 0x1f, 0xde, 0x73, - 0xde, 0x4a, 0x01, 0x99, 0xe5, 0x1e, 0x0a, 0xa9, 0xa4, 0xcf, 0x46, 0xa6, 0x4a, 0x4b, 0x6b, 0xbc, - 0x21, 0x3b, 0x0d, 0x97, 0xfe, 0xe0, 0xf6, 0xba, 0x23, 0x33, 0x32, 0x81, 0xcc, 0xea, 0xbf, 0x46, - 0xd7, 0x7f, 0xd7, 0xc2, 0xdd, 0x27, 0x42, 0x30, 0xee, 0xe1, 0xb4, 0x96, 0x9d, 0x59, 0x53, 0x1a, - 0xc7, 0x0b, 0xd2, 0xc5, 0x6d, 0x2f, 0x7d, 0x01, 0x14, 0xf5, 0xd0, 0xfe, 0x36, 0x6b, 0x0a, 0xd2, - 0xc3, 0xb7, 0x04, 0xb8, 0xdc, 0xca, 0xd2, 0x4b, 0xa3, 0xe9, 0x8d, 0xc0, 0xad, 0x43, 0x75, 0x9f, - 0x00, 0x6d, 0x14, 0x6d, 0x35, 0x7d, 0xa1, 0x20, 0xf7, 0x30, 0xce, 0xc7, 0x5c, 0x6b, 0x28, 0x06, - 0x52, 0xd0, 0x8d, 0x40, 0x6d, 0xaf, 0x90, 0x13, 0x41, 0x5e, 0xe0, 0x1d, 0xc5, 0xa7, 0x83, 0x12, - 0x6c, 0x0e, 0xda, 0x0f, 0x1c, 0x68, 0x41, 0xdb, 0xb5, 0xe8, 0x38, 0xbd, 0x9c, 0x27, 0xd1, 0xe7, - 0x79, 0xf2, 0x60, 0x24, 0xfd, 0x78, 0x32, 0x4c, 0x73, 0xa3, 0xb2, 0xdc, 0x38, 0x65, 0xdc, 0xea, - 0x73, 0xe0, 0xc4, 0xab, 0xcc, 0x5f, 0x94, 0xe0, 0xd2, 0x13, 0xed, 0x59, 0x47, 0xf1, 0xe9, 0x59, - 0x33, 0xe6, 0x1c, 0xf4, 0x4f, 0x93, 0x2d, 0xe4, 0x15, 0xdd, 0xfc, 0xdd, 0xc9, 0x0c, 0xf2, 0x8a, - 0xdc, 0xc7, 0x1d, 0x31, 0xb1, 0xbc, 0x36, 0x3d, 0x18, 0x9b, 0x89, 0x75, 0x74, 0xab, 0x87, 0xf6, - 0x37, 0xd8, 0x9d, 0x6b, 0xf4, 0x69, 0x0d, 0x92, 0x87, 0x78, 0x4b, 0x40, 0x69, 0x9c, 0xf4, 0xf4, - 0x66, 0x78, 0x97, 0x7c, 0x9b, 0x27, 0x9d, 0x0b, 0xae, 0x8a, 0xa3, 0xfe, 0x8a, 0xe8, 0xb3, 0x6b, - 0xc9, 0xd1, 0xed, 0xd7, 0xb3, 0x24, 0x7a, 0x3b, 0x4b, 0xa2, 0xaf, 0xb3, 0x04, 0xf5, 0xdf, 0xb7, - 0xf0, 0xee, 0xf3, 0x52, 0x70, 0x0f, 0xff, 0xf7, 0xf3, 0x37, 0xee, 0xe7, 0x23, 0xc2, 0xbb, 0x0c, - 0x94, 0xa9, 0xfe, 0xf4, 0x7e, 0xd6, 0x4c, 0xb4, 0x7f, 0xd5, 0xc4, 0x07, 0x84, 0xef, 0x32, 0x70, - 0xe0, 0xff, 0x5d, 0x0f, 0xc7, 0xcf, 0x2e, 0x17, 0x31, 0xba, 0x5a, 0xc4, 0xe8, 0xcb, 0x22, 0x46, - 0x6f, 0x96, 0x71, 0x74, 0xb5, 0x8c, 0xa3, 0x4f, 0xcb, 0x38, 0x7a, 0x79, 0xb8, 0x76, 0x3d, 0xe7, - 0x21, 0x12, 0x0f, 0x4e, 0xf9, 0xd0, 0x65, 0xab, 0xe8, 0xac, 0x1e, 0x3d, 0xce, 0xa6, 0x6b, 0x01, - 0x1a, 0xce, 0x69, 0xb8, 0x19, 0xb2, 0xf1, 0xf0, 0x7b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xd2, 0xbb, - 0x27, 0x2c, 0x61, 0x05, 0x00, 0x00, + 0x76, 0x17, 0x29, 0x5e, 0x7a, 0xb3, 0x27, 0x0b, 0x15, 0xca, 0x14, 0x41, 0xbc, 0x84, 0xc9, 0xce, + 0x23, 0x19, 0xdc, 0x99, 0x59, 0x66, 0x26, 0x4b, 0xfa, 0x0f, 0x3c, 0x7a, 0x14, 0x41, 0xc8, 0x5f, + 0xd1, 0x53, 0x8f, 0x3d, 0x8a, 0x87, 0x20, 0xc9, 0xc5, 0xb3, 0xbf, 0x40, 0x76, 0x36, 0x95, 0x80, + 0x27, 0xf1, 0xa0, 0x82, 0xa7, 0xdd, 0xf7, 0x7d, 0xdf, 0x7b, 0xc3, 0xc7, 0x7b, 0x7c, 0x78, 0xcf, + 0x79, 0x2b, 0x05, 0x64, 0x96, 0x7b, 0x28, 0xa4, 0x92, 0x3e, 0x1b, 0x99, 0x2a, 0x2d, 0xad, 0xf1, + 0x86, 0xec, 0x34, 0x5c, 0xfa, 0x83, 0xdb, 0xeb, 0x8e, 0xcc, 0xc8, 0x04, 0x32, 0xab, 0xff, 0x1a, + 0x5d, 0xff, 0x5d, 0x0b, 0x77, 0x9f, 0x08, 0xc1, 0xb8, 0x87, 0xd3, 0x5a, 0x76, 0x66, 0x4d, 0x69, + 0x1c, 0x2f, 0x48, 0x17, 0xb7, 0xbd, 0xf4, 0x05, 0x50, 0xd4, 0x43, 0xfb, 0xdb, 0xac, 0x29, 0x48, + 0x0f, 0xdf, 0x12, 0xe0, 0x72, 0x2b, 0x4b, 0x2f, 0x8d, 0xa6, 0x37, 0x02, 0xb7, 0x0e, 0xd5, 0x7d, + 0x02, 0xb4, 0x51, 0xb4, 0xd5, 0xf4, 0x85, 0x82, 0xdc, 0xc3, 0x38, 0x1f, 0x73, 0xad, 0xa1, 0x18, + 0x48, 0x41, 0x37, 0x02, 0xb5, 0xbd, 0x42, 0x4e, 0x04, 0x79, 0x81, 0x77, 0x14, 0x9f, 0x0e, 0x4a, + 0xb0, 0x39, 0x68, 0x3f, 0x70, 0xa0, 0x05, 0x6d, 0xd7, 0xa2, 0xe3, 0xf4, 0x72, 0x9e, 0x44, 0x9f, + 0xe7, 0xc9, 0x83, 0x91, 0xf4, 0xe3, 0xc9, 0x30, 0xcd, 0x8d, 0xca, 0x72, 0xe3, 0x94, 0x71, 0xab, + 0xcf, 0x81, 0x13, 0xaf, 0x32, 0x7f, 0x51, 0x82, 0x4b, 0x4f, 0xb4, 0x67, 0x1d, 0xc5, 0xa7, 0x67, + 0xcd, 0x98, 0x73, 0xd0, 0x3f, 0x4d, 0xb6, 0x90, 0x57, 0x74, 0xf3, 0x77, 0x27, 0x33, 0xc8, 0x2b, + 0x72, 0x1f, 0x77, 0xc4, 0xc4, 0xf2, 0xda, 0xf4, 0x60, 0x6c, 0x26, 0xd6, 0xd1, 0xad, 0x1e, 0xda, + 0xdf, 0x60, 0x77, 0xae, 0xd1, 0xa7, 0x35, 0x48, 0x1e, 0xe2, 0x2d, 0x01, 0xa5, 0x71, 0xd2, 0xd3, + 0x9b, 0xe1, 0x5d, 0xf2, 0x6d, 0x9e, 0x74, 0x2e, 0xb8, 0x2a, 0x8e, 0xfa, 0x2b, 0xa2, 0xcf, 0xae, + 0x25, 0x47, 0xb7, 0x5f, 0xcf, 0x92, 0xe8, 0xed, 0x2c, 0x89, 0xbe, 0xce, 0x12, 0xd4, 0x7f, 0xdf, + 0xc2, 0xbb, 0xcf, 0x4b, 0xc1, 0x3d, 0xfc, 0xdf, 0xcf, 0xdf, 0xb8, 0x9f, 0x8f, 0x08, 0xef, 0x32, + 0x50, 0xa6, 0xfa, 0xd3, 0xfb, 0x59, 0x33, 0xd1, 0xfe, 0x55, 0x13, 0x1f, 0x10, 0xbe, 0xcb, 0xc0, + 0x81, 0xff, 0x77, 0x3d, 0x1c, 0x3f, 0xbb, 0x5c, 0xc4, 0xe8, 0x6a, 0x11, 0xa3, 0x2f, 0x8b, 0x18, + 0xbd, 0x59, 0xc6, 0xd1, 0xd5, 0x32, 0x8e, 0x3e, 0x2d, 0xe3, 0xe8, 0xe5, 0xe1, 0xda, 0xf5, 0x9c, + 0x87, 0x48, 0x3c, 0x38, 0xe5, 0x43, 0x97, 0xad, 0xa2, 0xb3, 0x7a, 0xf4, 0x38, 0x9b, 0xae, 0x05, + 0x68, 0x38, 0xa7, 0xe1, 0x66, 0xc8, 0xc6, 0xc3, 0xef, 0x01, 0x00, 0x00, 0xff, 0xff, 0x93, 0xa0, + 0xab, 0x42, 0x61, 0x05, 0x00, 0x00, } func (this *AddRateLimitProposal) Equal(that interface{}) bool { diff --git a/x/ratelimit/types/gov_add_rate_limit_test.go b/x/ratelimit/types/gov_add_rate_limit_test.go index f7bfc44821..b7f0d3148c 100644 --- a/x/ratelimit/types/gov_add_rate_limit_test.go +++ b/x/ratelimit/types/gov_add_rate_limit_test.go @@ -6,8 +6,8 @@ import ( sdkmath "cosmossdk.io/math" "github.com/stretchr/testify/require" - "github.com/Stride-Labs/stride/v14/app/apptesting" - "github.com/Stride-Labs/stride/v14/x/ratelimit/types" + "github.com/Stride-Labs/stride/v15/app/apptesting" + "github.com/Stride-Labs/stride/v15/x/ratelimit/types" ) func TestGovAddRateLimit(t *testing.T) { diff --git a/x/ratelimit/types/gov_remove_rate_limit_test.go b/x/ratelimit/types/gov_remove_rate_limit_test.go index a34d779208..d49c8772c6 100644 --- a/x/ratelimit/types/gov_remove_rate_limit_test.go +++ b/x/ratelimit/types/gov_remove_rate_limit_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/Stride-Labs/stride/v14/app/apptesting" - "github.com/Stride-Labs/stride/v14/x/ratelimit/types" + "github.com/Stride-Labs/stride/v15/app/apptesting" + "github.com/Stride-Labs/stride/v15/x/ratelimit/types" ) func TestGovRemoveRateLimit(t *testing.T) { diff --git a/x/ratelimit/types/gov_reset_rate_limit_test.go b/x/ratelimit/types/gov_reset_rate_limit_test.go index 43b0b28d88..6f0da74cf1 100644 --- a/x/ratelimit/types/gov_reset_rate_limit_test.go +++ b/x/ratelimit/types/gov_reset_rate_limit_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/Stride-Labs/stride/v14/app/apptesting" - "github.com/Stride-Labs/stride/v14/x/ratelimit/types" + "github.com/Stride-Labs/stride/v15/app/apptesting" + "github.com/Stride-Labs/stride/v15/x/ratelimit/types" ) func TestGovResetRateLimit(t *testing.T) { diff --git a/x/ratelimit/types/gov_update_rate_limit_test.go b/x/ratelimit/types/gov_update_rate_limit_test.go index ca9afd3ada..c02b8231f5 100644 --- a/x/ratelimit/types/gov_update_rate_limit_test.go +++ b/x/ratelimit/types/gov_update_rate_limit_test.go @@ -6,8 +6,8 @@ import ( sdkmath "cosmossdk.io/math" "github.com/stretchr/testify/require" - "github.com/Stride-Labs/stride/v14/app/apptesting" - "github.com/Stride-Labs/stride/v14/x/ratelimit/types" + "github.com/Stride-Labs/stride/v15/app/apptesting" + "github.com/Stride-Labs/stride/v15/x/ratelimit/types" ) func TestGovUpdateRateLimit(t *testing.T) { diff --git a/x/ratelimit/types/params.pb.go b/x/ratelimit/types/params.pb.go index 532f0b8d2a..b6ab472ba7 100644 --- a/x/ratelimit/types/params.pb.go +++ b/x/ratelimit/types/params.pb.go @@ -73,9 +73,9 @@ var fileDescriptor_7af4964ecd08f136 = []byte{ 0x95, 0x38, 0xb8, 0xd8, 0x02, 0xc0, 0x2a, 0x9c, 0x7c, 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, 0x38, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x57, 0x3f, - 0x18, 0x6c, 0x80, 0xae, 0x4f, 0x62, 0x52, 0xb1, 0x3e, 0xd4, 0xae, 0x32, 0x43, 0x13, 0xfd, 0x0a, + 0x18, 0x6c, 0x80, 0xae, 0x4f, 0x62, 0x52, 0xb1, 0x3e, 0xd4, 0xae, 0x32, 0x43, 0x53, 0xfd, 0x0a, 0x24, 0x1b, 0x4b, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0x36, 0x1a, 0x03, 0x02, 0x00, 0x00, - 0xff, 0xff, 0xf0, 0x95, 0x99, 0x36, 0x92, 0x00, 0x00, 0x00, + 0xff, 0xff, 0xb1, 0x8e, 0x15, 0x58, 0x92, 0x00, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/ratelimit/types/query.pb.go b/x/ratelimit/types/query.pb.go index b917a27bf7..bafb720aa6 100644 --- a/x/ratelimit/types/query.pb.go +++ b/x/ratelimit/types/query.pb.go @@ -559,51 +559,51 @@ func init() { func init() { proto.RegisterFile("stride/ratelimit/query.proto", fileDescriptor_97a373ef8fcef03b) } var fileDescriptor_97a373ef8fcef03b = []byte{ - // 690 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x96, 0xcf, 0x4f, 0x13, 0x41, - 0x14, 0xc7, 0x3b, 0x28, 0x48, 0x1f, 0x92, 0x98, 0x11, 0x10, 0x16, 0x2c, 0x75, 0xd5, 0xd8, 0xf8, - 0xa3, 0x0b, 0x2d, 0xa8, 0x11, 0x89, 0xa1, 0xea, 0x81, 0x04, 0x13, 0x2d, 0x26, 0x26, 0x5e, 0xea, - 0xb4, 0x3b, 0xb6, 0x13, 0x97, 0xdd, 0xb2, 0xb3, 0xa8, 0x0d, 0xe1, 0xe2, 0x5f, 0x60, 0xe2, 0xd5, - 0xab, 0x7f, 0x84, 0x47, 0x0f, 0x26, 0x1c, 0x89, 0x5e, 0x3c, 0x19, 0x03, 0xfe, 0x21, 0x66, 0x67, - 0x66, 0xb7, 0xb6, 0xdd, 0x2d, 0xdd, 0x84, 0xdb, 0x74, 0xe6, 0xbd, 0xef, 0xfb, 0x7c, 0xdf, 0xce, - 0x9b, 0x14, 0xe6, 0xb8, 0xe7, 0x32, 0x93, 0x1a, 0x2e, 0xf1, 0xa8, 0xc5, 0xb6, 0x98, 0x67, 0x6c, - 0xef, 0x50, 0xb7, 0x95, 0x6f, 0xba, 0x8e, 0xe7, 0xe0, 0x73, 0xf2, 0x34, 0x1f, 0x9e, 0x6a, 0xd9, - 0x9e, 0xf8, 0x70, 0x25, 0x73, 0xb4, 0xb9, 0xba, 0xe3, 0xd4, 0x2d, 0x6a, 0x90, 0x26, 0x33, 0x88, - 0x6d, 0x3b, 0x1e, 0xf1, 0x98, 0x63, 0x73, 0x75, 0x3a, 0x51, 0x77, 0xea, 0x8e, 0x58, 0x1a, 0xfe, - 0x4a, 0xee, 0xea, 0xb3, 0x30, 0xf3, 0xcc, 0x2f, 0xbb, 0x66, 0x59, 0x65, 0xe2, 0xd1, 0x0d, 0x5f, - 0x8e, 0x97, 0xe9, 0xf6, 0x0e, 0xe5, 0x9e, 0xfe, 0x0a, 0xb4, 0xa8, 0x43, 0xde, 0x74, 0x6c, 0x4e, - 0x71, 0x09, 0xc6, 0x7c, 0x82, 0x8a, 0x40, 0xe0, 0xd3, 0x28, 0x7b, 0x2a, 0x37, 0x56, 0x98, 0xcd, - 0x77, 0x83, 0xe7, 0xc3, 0xd4, 0xd2, 0xe9, 0xfd, 0xdf, 0xf3, 0xa9, 0x32, 0xb8, 0xa1, 0x96, 0xbe, - 0x01, 0x93, 0xa2, 0x42, 0x18, 0xa3, 0x4a, 0xe3, 0x09, 0x18, 0x36, 0xa9, 0xed, 0x6c, 0x4d, 0xa3, - 0x2c, 0xca, 0xa5, 0xcb, 0xf2, 0x07, 0xbe, 0x08, 0x50, 0x6b, 0x10, 0xdb, 0xa6, 0x56, 0x85, 0x99, - 0xd3, 0x43, 0xe2, 0x28, 0xad, 0x76, 0xd6, 0x4d, 0xfd, 0x39, 0x4c, 0x75, 0xab, 0x29, 0xd6, 0x7b, - 0x00, 0x6d, 0x56, 0xa1, 0xd9, 0x1f, 0xb5, 0x9c, 0x0e, 0x21, 0xf5, 0xfb, 0x30, 0xdf, 0xa9, 0xca, - 0x4b, 0xad, 0x87, 0x0d, 0xc2, 0xec, 0x75, 0x33, 0xa0, 0x9d, 0x81, 0xd1, 0x9a, 0xbf, 0xe3, 0x53, - 0x49, 0xe0, 0x33, 0x35, 0x19, 0xa1, 0xbf, 0x86, 0x6c, 0x7c, 0xf6, 0x09, 0x76, 0xb2, 0x04, 0x97, - 0xa2, 0xea, 0xc8, 0xce, 0x04, 0x9c, 0x9d, 0xfd, 0x43, 0xdd, 0xfd, 0x6b, 0x80, 0xde, 0x4f, 0xe3, - 0x04, 0x69, 0x75, 0xd5, 0x95, 0x35, 0xcb, 0x2a, 0x59, 0xa4, 0xf6, 0xc6, 0x62, 0xdc, 0xa3, 0xe6, - 0x23, 0xff, 0x23, 0x87, 0xb7, 0x6f, 0x45, 0x39, 0x8a, 0x8e, 0x51, 0x30, 0x53, 0x30, 0x22, 0xae, - 0x86, 0xe4, 0x48, 0x97, 0xd5, 0x2f, 0xfd, 0x2a, 0x5c, 0x0e, 0x92, 0x5f, 0x34, 0x98, 0x8f, 0xe4, - 0x27, 0xaf, 0x99, 0xa6, 0x4b, 0x39, 0xa7, 0x61, 0x8d, 0x5d, 0xb8, 0xd2, 0x3f, 0x4c, 0x95, 0xd9, - 0x84, 0x71, 0x22, 0x37, 0x2b, 0x4d, 0xc2, 0xdc, 0xc0, 0x75, 0xae, 0xd7, 0x75, 0xaf, 0xcc, 0x53, - 0xc2, 0x5c, 0xd5, 0x82, 0xb3, 0xa4, 0xbd, 0xc5, 0x0b, 0x3f, 0x46, 0x61, 0x58, 0x54, 0xc7, 0x9f, - 0x11, 0x8c, 0x77, 0x0c, 0x19, 0xbe, 0xd1, 0xab, 0x1c, 0x3b, 0xa7, 0xda, 0xcd, 0xc1, 0x82, 0xa5, - 0x17, 0x7d, 0xe1, 0xc3, 0xcf, 0xbf, 0x9f, 0x86, 0xae, 0xe3, 0x9c, 0xb1, 0x29, 0xb2, 0x6e, 0x6d, - 0x90, 0x2a, 0x37, 0xe2, 0x5f, 0x17, 0x8e, 0xbf, 0x20, 0x48, 0x87, 0x42, 0xf8, 0x5a, 0x4c, 0xb5, - 0xee, 0x19, 0xd6, 0x72, 0xc7, 0x07, 0x2a, 0xa4, 0xc7, 0x02, 0xe9, 0x01, 0x5e, 0x1d, 0x10, 0xc9, - 0xd8, 0x6d, 0x5f, 0xe3, 0x3d, 0xa3, 0xda, 0xaa, 0xc8, 0xe7, 0xe1, 0x2b, 0x82, 0xf3, 0x11, 0x73, - 0x86, 0x17, 0x8f, 0x03, 0xe9, 0x99, 0x68, 0xad, 0x90, 0x24, 0x45, 0xb9, 0x58, 0x11, 0x2e, 0x96, - 0x71, 0x71, 0xd0, 0xc6, 0x0a, 0x1b, 0xe2, 0xd5, 0xd8, 0xc3, 0xdf, 0x10, 0x4c, 0x46, 0xce, 0x1d, - 0x2e, 0x0e, 0x86, 0xd2, 0x31, 0xe9, 0xda, 0x52, 0xb2, 0x24, 0xe5, 0x60, 0x55, 0x38, 0xb8, 0x83, - 0x97, 0x13, 0x39, 0x08, 0x3e, 0x84, 0xdf, 0xff, 0x89, 0xa8, 0x69, 0xc5, 0x85, 0xf8, 0x0b, 0x1a, - 0x37, 0xfe, 0x5a, 0x31, 0x51, 0x8e, 0x32, 0x70, 0x57, 0x18, 0x28, 0xe0, 0x85, 0xfe, 0x06, 0xaa, - 0x6d, 0x01, 0x79, 0x75, 0x38, 0xfe, 0x8e, 0xe0, 0x42, 0xcc, 0x2b, 0x80, 0x97, 0xe3, 0x51, 0xfa, - 0x3c, 0x2e, 0xda, 0xed, 0xa4, 0x69, 0xc9, 0xee, 0xd1, 0xbb, 0xb6, 0x46, 0x85, 0x04, 0x22, 0xa5, - 0x27, 0xfb, 0x87, 0x19, 0x74, 0x70, 0x98, 0x41, 0x7f, 0x0e, 0x33, 0xe8, 0xe3, 0x51, 0x26, 0x75, - 0x70, 0x94, 0x49, 0xfd, 0x3a, 0xca, 0xa4, 0x5e, 0x16, 0xeb, 0xcc, 0x6b, 0xec, 0x54, 0xf3, 0x35, - 0x67, 0x2b, 0x4a, 0xf8, 0xed, 0xe2, 0x92, 0xf1, 0xfe, 0x3f, 0x79, 0xaf, 0xd5, 0xa4, 0xbc, 0x3a, - 0x22, 0xfe, 0x26, 0x14, 0xff, 0x05, 0x00, 0x00, 0xff, 0xff, 0xeb, 0xbd, 0x9c, 0xc6, 0xae, 0x08, - 0x00, 0x00, + // 692 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x96, 0x4f, 0x4f, 0x13, 0x4f, + 0x18, 0xc7, 0x3b, 0xfc, 0x7e, 0x20, 0x7d, 0x90, 0xc4, 0x8c, 0x80, 0xb0, 0x60, 0xa9, 0xab, 0xc6, + 0xc6, 0x3f, 0x5d, 0x68, 0xad, 0x1a, 0x91, 0x18, 0xaa, 0x1e, 0x48, 0x30, 0xd1, 0x62, 0x62, 0xe2, + 0xa5, 0x4e, 0xbb, 0x63, 0x3b, 0x71, 0xd9, 0x2d, 0x3b, 0x8b, 0xda, 0x10, 0x2e, 0xbe, 0x02, 0x13, + 0xaf, 0x5e, 0x7d, 0x11, 0x1e, 0x3d, 0x98, 0x70, 0x24, 0x7a, 0xf1, 0x64, 0x0c, 0xf8, 0x42, 0xcc, + 0xce, 0xcc, 0x6e, 0x6d, 0xbb, 0x5b, 0xba, 0x09, 0xb7, 0xe9, 0xcc, 0xf3, 0x7c, 0x9f, 0xcf, 0xf7, + 0xd9, 0x79, 0x26, 0x85, 0x05, 0xee, 0xb9, 0xcc, 0xa4, 0x86, 0x4b, 0x3c, 0x6a, 0xb1, 0x2d, 0xe6, + 0x19, 0xdb, 0x3b, 0xd4, 0x6d, 0xe7, 0x5b, 0xae, 0xe3, 0x39, 0xf8, 0x8c, 0x3c, 0xcd, 0x87, 0xa7, + 0x5a, 0xb6, 0x2f, 0x3e, 0x5c, 0xc9, 0x1c, 0x6d, 0xa1, 0xe1, 0x38, 0x0d, 0x8b, 0x1a, 0xa4, 0xc5, + 0x0c, 0x62, 0xdb, 0x8e, 0x47, 0x3c, 0xe6, 0xd8, 0x5c, 0x9d, 0x4e, 0x35, 0x9c, 0x86, 0x23, 0x96, + 0x86, 0xbf, 0x92, 0xbb, 0xfa, 0x3c, 0xcc, 0x3d, 0xf5, 0xcb, 0xae, 0x59, 0x56, 0x85, 0x78, 0x74, + 0xc3, 0x97, 0xe3, 0x15, 0xba, 0xbd, 0x43, 0xb9, 0xa7, 0xbf, 0x04, 0x2d, 0xea, 0x90, 0xb7, 0x1c, + 0x9b, 0x53, 0x5c, 0x86, 0x09, 0x9f, 0xa0, 0x2a, 0x10, 0xf8, 0x2c, 0xca, 0xfe, 0x97, 0x9b, 0x28, + 0xcc, 0xe7, 0x7b, 0xc1, 0xf3, 0x61, 0x6a, 0xf9, 0xff, 0xfd, 0x5f, 0x8b, 0xa9, 0x0a, 0xb8, 0xa1, + 0x96, 0xbe, 0x01, 0xd3, 0xa2, 0x42, 0x18, 0xa3, 0x4a, 0xe3, 0x29, 0x18, 0x35, 0xa9, 0xed, 0x6c, + 0xcd, 0xa2, 0x2c, 0xca, 0xa5, 0x2b, 0xf2, 0x07, 0x3e, 0x0f, 0x50, 0x6f, 0x12, 0xdb, 0xa6, 0x56, + 0x95, 0x99, 0xb3, 0x23, 0xe2, 0x28, 0xad, 0x76, 0xd6, 0x4d, 0xfd, 0x19, 0xcc, 0xf4, 0xaa, 0x29, + 0xd6, 0xbb, 0x00, 0x1d, 0x56, 0xa1, 0x39, 0x18, 0xb5, 0x92, 0x0e, 0x21, 0xf5, 0x7b, 0xb0, 0xd8, + 0xad, 0xca, 0xcb, 0xed, 0x07, 0x4d, 0xc2, 0xec, 0x75, 0x33, 0xa0, 0x9d, 0x83, 0xf1, 0xba, 0xbf, + 0xe3, 0x53, 0x49, 0xe0, 0x53, 0x75, 0x19, 0xa1, 0xbf, 0x82, 0x6c, 0x7c, 0xf6, 0x09, 0x76, 0xb2, + 0x0c, 0x17, 0xa2, 0xea, 0xc8, 0xce, 0x04, 0x9c, 0xdd, 0xfd, 0x43, 0xbd, 0xfd, 0x6b, 0x82, 0x3e, + 0x48, 0xe3, 0x04, 0x69, 0x75, 0xd5, 0x95, 0x35, 0xcb, 0x2a, 0x5b, 0xa4, 0xfe, 0xda, 0x62, 0xdc, + 0xa3, 0xe6, 0x43, 0xff, 0x23, 0x87, 0xb7, 0x6f, 0x45, 0x39, 0x8a, 0x8e, 0x51, 0x30, 0x33, 0x30, + 0x26, 0xae, 0x86, 0xe4, 0x48, 0x57, 0xd4, 0x2f, 0xfd, 0x32, 0x5c, 0x0c, 0x92, 0x9f, 0x37, 0x99, + 0x8f, 0xe4, 0x27, 0xaf, 0x99, 0xa6, 0x4b, 0x39, 0xa7, 0x61, 0x8d, 0x5d, 0xb8, 0x34, 0x38, 0x4c, + 0x95, 0xd9, 0x84, 0x49, 0x22, 0x37, 0xab, 0x2d, 0xc2, 0xdc, 0xc0, 0x75, 0xae, 0xdf, 0x75, 0xbf, + 0xcc, 0x13, 0xc2, 0x5c, 0xd5, 0x82, 0xd3, 0xa4, 0xb3, 0xc5, 0x0b, 0xdf, 0xc7, 0x61, 0x54, 0x54, + 0xc7, 0x9f, 0x10, 0x4c, 0x76, 0x0d, 0x19, 0xbe, 0xd6, 0xaf, 0x1c, 0x3b, 0xa7, 0xda, 0xf5, 0xe1, + 0x82, 0xa5, 0x17, 0x7d, 0xe9, 0xfd, 0x8f, 0x3f, 0x1f, 0x47, 0xae, 0xe2, 0x9c, 0xb1, 0x29, 0xb2, + 0x6e, 0x6c, 0x90, 0x1a, 0x37, 0xe2, 0x5f, 0x17, 0x8e, 0x3f, 0x23, 0x48, 0x87, 0x42, 0xf8, 0x4a, + 0x4c, 0xb5, 0xde, 0x19, 0xd6, 0x72, 0xc7, 0x07, 0x2a, 0xa4, 0x47, 0x02, 0xe9, 0x3e, 0x5e, 0x1d, + 0x12, 0xc9, 0xd8, 0xed, 0x5c, 0xe3, 0x3d, 0xa3, 0xd6, 0xae, 0xca, 0xe7, 0xe1, 0x0b, 0x82, 0xb3, + 0x11, 0x73, 0x86, 0x97, 0x8f, 0x03, 0xe9, 0x9b, 0x68, 0xad, 0x90, 0x24, 0x45, 0xb9, 0x58, 0x11, + 0x2e, 0x4a, 0xb8, 0x38, 0x6c, 0x63, 0x85, 0x0d, 0xf1, 0x6a, 0xec, 0xe1, 0xaf, 0x08, 0xa6, 0x23, + 0xe7, 0x0e, 0x17, 0x87, 0x43, 0xe9, 0x9a, 0x74, 0xed, 0x66, 0xb2, 0x24, 0xe5, 0x60, 0x55, 0x38, + 0xb8, 0x8d, 0x4b, 0x89, 0x1c, 0x04, 0x1f, 0xc2, 0xef, 0xff, 0x54, 0xd4, 0xb4, 0xe2, 0x42, 0xfc, + 0x05, 0x8d, 0x1b, 0x7f, 0xad, 0x98, 0x28, 0x47, 0x19, 0xb8, 0x23, 0x0c, 0x14, 0xf0, 0xd2, 0x60, + 0x03, 0xb5, 0x8e, 0x80, 0xbc, 0x3a, 0x1c, 0x7f, 0x43, 0x70, 0x2e, 0xe6, 0x15, 0xc0, 0xa5, 0x78, + 0x94, 0x01, 0x8f, 0x8b, 0x76, 0x2b, 0x69, 0x5a, 0xb2, 0x7b, 0xf4, 0xb6, 0xa3, 0x51, 0x25, 0x81, + 0x48, 0xf9, 0xf1, 0xfe, 0x61, 0x06, 0x1d, 0x1c, 0x66, 0xd0, 0xef, 0xc3, 0x0c, 0xfa, 0x70, 0x94, + 0x49, 0x1d, 0x1c, 0x65, 0x52, 0x3f, 0x8f, 0x32, 0xa9, 0x17, 0xc5, 0x06, 0xf3, 0x9a, 0x3b, 0xb5, + 0x7c, 0xdd, 0xd9, 0x8a, 0x12, 0x7e, 0xb3, 0x5c, 0x32, 0xde, 0xfd, 0x23, 0xef, 0xb5, 0x5b, 0x94, + 0xd7, 0xc6, 0xc4, 0xdf, 0x84, 0xe2, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xaa, 0xa6, 0x10, 0xa8, + 0xae, 0x08, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/ratelimit/types/quota_test.go b/x/ratelimit/types/quota_test.go index cb197a3705..20f9caf48e 100644 --- a/x/ratelimit/types/quota_test.go +++ b/x/ratelimit/types/quota_test.go @@ -6,7 +6,7 @@ import ( sdkmath "cosmossdk.io/math" "github.com/stretchr/testify/require" - "github.com/Stride-Labs/stride/v14/x/ratelimit/types" + "github.com/Stride-Labs/stride/v15/x/ratelimit/types" ) func TestCheckExceedsQuota(t *testing.T) { diff --git a/x/ratelimit/types/ratelimit.pb.go b/x/ratelimit/types/ratelimit.pb.go index a2ea0a70ae..13c04962e1 100644 --- a/x/ratelimit/types/ratelimit.pb.go +++ b/x/ratelimit/types/ratelimit.pb.go @@ -310,40 +310,40 @@ func init() { func init() { proto.RegisterFile("stride/ratelimit/ratelimit.proto", fileDescriptor_a3e00ee2c967d747) } var fileDescriptor_a3e00ee2c967d747 = []byte{ - // 520 bytes of a gzipped FileDescriptorProto + // 521 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x53, 0xcd, 0x6e, 0xd3, 0x4c, 0x14, 0xb5, 0xbf, 0x26, 0xf9, 0xc8, 0x84, 0xb6, 0xd1, 0xa8, 0x0a, 0x51, 0x24, 0xdc, 0x28, 0x12, - 0xa8, 0xaa, 0x14, 0x5b, 0xb4, 0x6c, 0x10, 0xab, 0xfe, 0xa4, 0x6a, 0x45, 0x40, 0xc1, 0x41, 0x05, - 0xb1, 0x89, 0x26, 0x9e, 0x4b, 0x3c, 0x6a, 0xec, 0x09, 0x33, 0x63, 0x37, 0xbc, 0x01, 0x4b, 0xc4, - 0x2b, 0xf0, 0x32, 0x5d, 0x76, 0x89, 0x58, 0x54, 0x28, 0x59, 0xf3, 0x0e, 0x68, 0xc6, 0x4e, 0x89, - 0x8a, 0x58, 0x50, 0x56, 0x9e, 0x7b, 0xee, 0x99, 0x23, 0x9f, 0x3b, 0xe7, 0xa2, 0xa6, 0x54, 0x82, - 0x51, 0xf0, 0x04, 0x51, 0x30, 0x66, 0x11, 0x53, 0xbf, 0x4e, 0xee, 0x44, 0x70, 0xc5, 0x71, 0x35, - 0x63, 0xb8, 0xd7, 0x78, 0x63, 0x63, 0xc4, 0x47, 0xdc, 0x34, 0x3d, 0x7d, 0xca, 0x78, 0xad, 0xa7, - 0xa8, 0xd0, 0x23, 0x2a, 0xc4, 0x1b, 0xa8, 0x48, 0x21, 0xe6, 0x51, 0xdd, 0x6e, 0xda, 0x5b, 0x65, - 0x3f, 0x2b, 0xf0, 0x7d, 0x84, 0x82, 0x90, 0xc4, 0x31, 0x8c, 0x07, 0x8c, 0xd6, 0xff, 0x33, 0xad, - 0x72, 0x8e, 0x9c, 0xd0, 0xd6, 0xcc, 0x46, 0xc5, 0x97, 0x09, 0x57, 0x04, 0xbf, 0x41, 0xd5, 0x88, - 0x4c, 0x07, 0x13, 0x10, 0x01, 0xc4, 0x6a, 0x20, 0x21, 0xa6, 0x99, 0xd2, 0xbe, 0x7b, 0x71, 0xb5, - 0x69, 0x7d, 0xbb, 0xda, 0x7c, 0x38, 0x62, 0x2a, 0x4c, 0x86, 0x6e, 0xc0, 0x23, 0x2f, 0xe0, 0x32, - 0xe2, 0x32, 0xff, 0xb4, 0x25, 0x3d, 0xf3, 0xd4, 0x87, 0x09, 0x48, 0xf7, 0x24, 0x56, 0xfe, 0x5a, - 0x44, 0xa6, 0xbd, 0x4c, 0xa6, 0x0f, 0x31, 0xbd, 0xa9, 0x2c, 0x20, 0x48, 0xb3, 0x1f, 0xf9, 0x17, - 0x65, 0x1f, 0x82, 0x14, 0x3f, 0x40, 0x6b, 0x34, 0x11, 0x44, 0x31, 0x1e, 0x0f, 0x42, 0x9e, 0x08, - 0x59, 0x5f, 0x69, 0xda, 0x5b, 0x05, 0x7f, 0x75, 0x81, 0x1e, 0x6b, 0xb0, 0xf5, 0xc3, 0x46, 0x85, - 0xa3, 0x31, 0x3f, 0xc7, 0x47, 0xa8, 0xc4, 0xe2, 0x77, 0x63, 0x7e, 0x7e, 0x4b, 0x67, 0xf9, 0x6d, - 0x7c, 0x8c, 0xfe, 0xe7, 0x89, 0x32, 0x42, 0xb7, 0x33, 0xb2, 0xb8, 0x8e, 0xfb, 0x68, 0x75, 0xf1, - 0x3c, 0x29, 0x19, 0x27, 0x60, 0x0c, 0xfc, 0xbd, 0xde, 0xdd, 0x5c, 0xe4, 0x54, 0x6b, 0xb4, 0x3e, - 0xdb, 0xa8, 0xec, 0x13, 0x05, 0x5d, 0x9d, 0x1a, 0xbc, 0x8d, 0x0a, 0x13, 0xa2, 0x42, 0x63, 0xb9, - 0xb2, 0x53, 0x73, 0x6f, 0xc6, 0xca, 0xd5, 0xe9, 0xf1, 0x0d, 0x07, 0xb7, 0x51, 0xf1, 0xbd, 0x4e, - 0x83, 0xb1, 0x55, 0xd9, 0xb9, 0xf7, 0x3b, 0xd9, 0x84, 0xc5, 0xcf, 0x58, 0x5a, 0xda, 0x0c, 0x61, - 0xe5, 0x4f, 0xd2, 0x7a, 0xea, 0xbe, 0xe1, 0xb4, 0xba, 0xa8, 0xf6, 0x3a, 0x64, 0xba, 0x21, 0x15, - 0xd0, 0x3d, 0x4a, 0x05, 0x48, 0xd9, 0x23, 0x4c, 0xe0, 0x1a, 0x2a, 0xe9, 0xb4, 0x81, 0xc8, 0x93, - 0x9b, 0x57, 0xb8, 0x81, 0xee, 0x08, 0x08, 0x80, 0xa5, 0x20, 0xf2, 0xe0, 0x5e, 0xd7, 0xdb, 0x4f, - 0xd0, 0x7a, 0x8f, 0x04, 0x67, 0xa0, 0x0e, 0x99, 0x80, 0x40, 0x3f, 0x35, 0x5e, 0x47, 0x95, 0xde, - 0xde, 0xc1, 0xb3, 0xce, 0xab, 0x41, 0xbf, 0xf3, 0xe2, 0xb0, 0x6a, 0x2d, 0x01, 0x7e, 0xe7, 0xe0, - 0xb4, 0x6a, 0x37, 0x0a, 0x1f, 0xbf, 0x38, 0xd6, 0xfe, 0xf3, 0x8b, 0x99, 0x63, 0x5f, 0xce, 0x1c, - 0xfb, 0xfb, 0xcc, 0xb1, 0x3f, 0xcd, 0x1d, 0xeb, 0x72, 0xee, 0x58, 0x5f, 0xe7, 0x8e, 0xf5, 0x76, - 0x77, 0x69, 0xda, 0x7d, 0x63, 0xa5, 0xdd, 0x25, 0x43, 0xe9, 0xe5, 0xab, 0x9a, 0x3e, 0x7a, 0xec, - 0x4d, 0x97, 0x16, 0xd6, 0x8c, 0x7f, 0x58, 0x32, 0x5b, 0xb8, 0xfb, 0x33, 0x00, 0x00, 0xff, 0xff, - 0x2b, 0x0e, 0xae, 0xb0, 0xd1, 0x03, 0x00, 0x00, + 0xa8, 0xaa, 0x14, 0x5b, 0xb4, 0x62, 0x81, 0x58, 0xf5, 0x27, 0x55, 0x2b, 0x02, 0x0a, 0x0e, 0x2a, + 0x88, 0x4d, 0x34, 0xf1, 0x5c, 0xe2, 0x51, 0x63, 0x4f, 0x98, 0x19, 0xbb, 0xe1, 0x0d, 0x58, 0x22, + 0x5e, 0x81, 0x97, 0xe9, 0xb2, 0x4b, 0xc4, 0xa2, 0x42, 0xc9, 0x9a, 0x77, 0x40, 0x33, 0x76, 0x4a, + 0x54, 0xc4, 0x82, 0xb2, 0xf2, 0xdc, 0x73, 0xcf, 0x1c, 0xf9, 0xdc, 0x39, 0x17, 0x35, 0xa5, 0x12, + 0x8c, 0x82, 0x27, 0x88, 0x82, 0x31, 0x8b, 0x98, 0xfa, 0x75, 0x72, 0x27, 0x82, 0x2b, 0x8e, 0xab, + 0x19, 0xc3, 0xbd, 0xc6, 0x1b, 0x1b, 0x23, 0x3e, 0xe2, 0xa6, 0xe9, 0xe9, 0x53, 0xc6, 0x6b, 0x3d, + 0x45, 0x85, 0x1e, 0x51, 0x21, 0xde, 0x40, 0x45, 0x0a, 0x31, 0x8f, 0xea, 0x76, 0xd3, 0xde, 0x2a, + 0xfb, 0x59, 0x81, 0xef, 0x23, 0x14, 0x84, 0x24, 0x8e, 0x61, 0x3c, 0x60, 0xb4, 0xfe, 0x9f, 0x69, + 0x95, 0x73, 0xe4, 0x84, 0xb6, 0x66, 0x36, 0x2a, 0xbe, 0x4c, 0xb8, 0x22, 0xf8, 0x0d, 0xaa, 0x46, + 0x64, 0x3a, 0x98, 0x80, 0x08, 0x20, 0x56, 0x03, 0x09, 0x31, 0xcd, 0x94, 0xf6, 0xdd, 0x8b, 0xab, + 0x4d, 0xeb, 0xdb, 0xd5, 0xe6, 0xc3, 0x11, 0x53, 0x61, 0x32, 0x74, 0x03, 0x1e, 0x79, 0x01, 0x97, + 0x11, 0x97, 0xf9, 0xa7, 0x2d, 0xe9, 0x99, 0xa7, 0x3e, 0x4c, 0x40, 0xba, 0x27, 0xb1, 0xf2, 0xd7, + 0x22, 0x32, 0xed, 0x65, 0x32, 0x7d, 0x88, 0xe9, 0x4d, 0x65, 0x01, 0x41, 0x9a, 0xfd, 0xc8, 0xbf, + 0x28, 0xfb, 0x10, 0xa4, 0xf8, 0x01, 0x5a, 0xa3, 0x89, 0x20, 0x8a, 0xf1, 0x78, 0x10, 0xf2, 0x44, + 0xc8, 0xfa, 0x4a, 0xd3, 0xde, 0x2a, 0xf8, 0xab, 0x0b, 0xf4, 0x58, 0x83, 0xad, 0x1f, 0x36, 0x2a, + 0x1c, 0x8d, 0xf9, 0x39, 0x3e, 0x42, 0x25, 0x16, 0xbf, 0x1b, 0xf3, 0xf3, 0x5b, 0x3a, 0xcb, 0x6f, + 0xe3, 0x63, 0xf4, 0x3f, 0x4f, 0x94, 0x11, 0xba, 0x9d, 0x91, 0xc5, 0x75, 0xdc, 0x47, 0xab, 0x8b, + 0xe7, 0x49, 0xc9, 0x38, 0x01, 0x63, 0xe0, 0xef, 0xf5, 0xee, 0xe6, 0x22, 0xa7, 0x5a, 0xa3, 0xf5, + 0xd9, 0x46, 0x65, 0x9f, 0x28, 0xe8, 0xea, 0xd4, 0xe0, 0x6d, 0x54, 0x98, 0x10, 0x15, 0x1a, 0xcb, + 0x95, 0x9d, 0x9a, 0x7b, 0x33, 0x56, 0xae, 0x4e, 0x8f, 0x6f, 0x38, 0xb8, 0x8d, 0x8a, 0xef, 0x75, + 0x1a, 0x8c, 0xad, 0xca, 0xce, 0xbd, 0xdf, 0xc9, 0x26, 0x2c, 0x7e, 0xc6, 0xd2, 0xd2, 0x66, 0x08, + 0x2b, 0x7f, 0x92, 0xd6, 0x53, 0xf7, 0x0d, 0xa7, 0xd5, 0x45, 0xb5, 0xd7, 0x21, 0xd3, 0x0d, 0xa9, + 0x80, 0xee, 0x51, 0x2a, 0x40, 0xca, 0x1e, 0x61, 0x02, 0xd7, 0x50, 0x49, 0xa7, 0x0d, 0x44, 0x9e, + 0xdc, 0xbc, 0xc2, 0x0d, 0x74, 0x47, 0x40, 0x00, 0x2c, 0x05, 0x91, 0x07, 0xf7, 0xba, 0xde, 0x7e, + 0x82, 0xd6, 0x7b, 0x24, 0x38, 0x03, 0x75, 0xc8, 0x04, 0x04, 0xfa, 0xa9, 0xf1, 0x3a, 0xaa, 0xf4, + 0xf6, 0x0e, 0x9e, 0x75, 0x5e, 0x0d, 0xfa, 0x9d, 0x17, 0x87, 0x55, 0x6b, 0x09, 0xf0, 0x3b, 0x07, + 0xa7, 0x55, 0xbb, 0x51, 0xf8, 0xf8, 0xc5, 0xb1, 0xf6, 0x9f, 0x5f, 0xcc, 0x1c, 0xfb, 0x72, 0xe6, + 0xd8, 0xdf, 0x67, 0x8e, 0xfd, 0x69, 0xee, 0x58, 0x97, 0x73, 0xc7, 0xfa, 0x3a, 0x77, 0xac, 0xb7, + 0xbb, 0x4b, 0xd3, 0xee, 0x1b, 0x2b, 0xed, 0x2e, 0x19, 0x4a, 0x2f, 0x5f, 0xd5, 0xf4, 0xd1, 0x63, + 0x6f, 0xba, 0xb4, 0xb0, 0x66, 0xfc, 0xc3, 0x92, 0xd9, 0xc2, 0xdd, 0x9f, 0x01, 0x00, 0x00, 0xff, + 0xff, 0x6a, 0x15, 0x22, 0xde, 0xd1, 0x03, 0x00, 0x00, } func (m *Path) Marshal() (dAtA []byte, err error) { diff --git a/x/records/client/cli/query.go b/x/records/client/cli/query.go index cfd981264b..f3a4da8c61 100644 --- a/x/records/client/cli/query.go +++ b/x/records/client/cli/query.go @@ -10,7 +10,7 @@ import ( // "github.com/cosmos/cosmos-sdk/client/flags" // sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/records/types" + "github.com/Stride-Labs/stride/v15/x/records/types" ) // GetQueryCmd returns the cli query commands for this module diff --git a/x/records/client/cli/query_deposit_record.go b/x/records/client/cli/query_deposit_record.go index 213b39969a..b76b0eda7c 100644 --- a/x/records/client/cli/query_deposit_record.go +++ b/x/records/client/cli/query_deposit_record.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/records/types" + "github.com/Stride-Labs/stride/v15/x/records/types" ) func CmdListDepositRecord() *cobra.Command { diff --git a/x/records/client/cli/query_deposit_record_test.go b/x/records/client/cli/query_deposit_record_test.go index b9b6852d5c..49b73d161b 100644 --- a/x/records/client/cli/query_deposit_record_test.go +++ b/x/records/client/cli/query_deposit_record_test.go @@ -11,10 +11,10 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/Stride-Labs/stride/v14/testutil/network" - "github.com/Stride-Labs/stride/v14/testutil/nullify" - "github.com/Stride-Labs/stride/v14/x/records/client/cli" - "github.com/Stride-Labs/stride/v14/x/records/types" + "github.com/Stride-Labs/stride/v15/testutil/network" + "github.com/Stride-Labs/stride/v15/testutil/nullify" + "github.com/Stride-Labs/stride/v15/x/records/client/cli" + "github.com/Stride-Labs/stride/v15/x/records/types" ) func networkWithDepositRecordObjects(t *testing.T, n int) (*network.Network, []types.DepositRecord) { diff --git a/x/records/client/cli/query_epoch_unbonding_record.go b/x/records/client/cli/query_epoch_unbonding_record.go index ce4a302c4c..1372a2b9bc 100644 --- a/x/records/client/cli/query_epoch_unbonding_record.go +++ b/x/records/client/cli/query_epoch_unbonding_record.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/records/types" + "github.com/Stride-Labs/stride/v15/x/records/types" ) func CmdListEpochUnbondingRecord() *cobra.Command { diff --git a/x/records/client/cli/query_lsm_deposits.go b/x/records/client/cli/query_lsm_deposits.go index 0ea292ec32..f4683aac29 100644 --- a/x/records/client/cli/query_lsm_deposits.go +++ b/x/records/client/cli/query_lsm_deposits.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/records/types" + "github.com/Stride-Labs/stride/v15/x/records/types" ) const ( diff --git a/x/records/client/cli/query_params.go b/x/records/client/cli/query_params.go index 5aa669219c..71886d10c2 100644 --- a/x/records/client/cli/query_params.go +++ b/x/records/client/cli/query_params.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/records/types" + "github.com/Stride-Labs/stride/v15/x/records/types" ) func CmdQueryParams() *cobra.Command { diff --git a/x/records/client/cli/query_user_redemption_record.go b/x/records/client/cli/query_user_redemption_record.go index caa0171dba..d1d39bca61 100644 --- a/x/records/client/cli/query_user_redemption_record.go +++ b/x/records/client/cli/query_user_redemption_record.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/records/types" + "github.com/Stride-Labs/stride/v15/x/records/types" ) func CmdListUserRedemptionRecord() *cobra.Command { diff --git a/x/records/client/cli/query_user_redemption_record_test.go b/x/records/client/cli/query_user_redemption_record_test.go index bb96ae0600..f1d43292ca 100644 --- a/x/records/client/cli/query_user_redemption_record_test.go +++ b/x/records/client/cli/query_user_redemption_record_test.go @@ -14,10 +14,10 @@ import ( sdkmath "cosmossdk.io/math" - "github.com/Stride-Labs/stride/v14/testutil/network" - "github.com/Stride-Labs/stride/v14/testutil/nullify" - "github.com/Stride-Labs/stride/v14/x/records/client/cli" - "github.com/Stride-Labs/stride/v14/x/records/types" + "github.com/Stride-Labs/stride/v15/testutil/network" + "github.com/Stride-Labs/stride/v15/testutil/nullify" + "github.com/Stride-Labs/stride/v15/x/records/client/cli" + "github.com/Stride-Labs/stride/v15/x/records/types" ) func networkWithUserRedemptionRecordObjects(t *testing.T, n int) (*network.Network, []types.UserRedemptionRecord) { diff --git a/x/records/client/cli/tx.go b/x/records/client/cli/tx.go index 57978a8e9e..902bb80972 100644 --- a/x/records/client/cli/tx.go +++ b/x/records/client/cli/tx.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" // "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/Stride-Labs/stride/v14/x/records/types" + "github.com/Stride-Labs/stride/v15/x/records/types" ) var DefaultRelativePacketTimeoutTimestamp = cast.ToUint64((time.Duration(10) * time.Minute).Nanoseconds()) diff --git a/x/records/genesis.go b/x/records/genesis.go index ef664d274a..d5cf021867 100644 --- a/x/records/genesis.go +++ b/x/records/genesis.go @@ -3,8 +3,8 @@ package records import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/records/keeper" - "github.com/Stride-Labs/stride/v14/x/records/types" + "github.com/Stride-Labs/stride/v15/x/records/keeper" + "github.com/Stride-Labs/stride/v15/x/records/types" ) // InitGenesis initializes the capability module's state from a provided genesis diff --git a/x/records/genesis_test.go b/x/records/genesis_test.go index 5401d7a5ef..0e50d7b330 100644 --- a/x/records/genesis_test.go +++ b/x/records/genesis_test.go @@ -5,10 +5,10 @@ import ( "github.com/stretchr/testify/require" - keepertest "github.com/Stride-Labs/stride/v14/testutil/keeper" - "github.com/Stride-Labs/stride/v14/testutil/nullify" - "github.com/Stride-Labs/stride/v14/x/records" - "github.com/Stride-Labs/stride/v14/x/records/types" + keepertest "github.com/Stride-Labs/stride/v15/testutil/keeper" + "github.com/Stride-Labs/stride/v15/testutil/nullify" + "github.com/Stride-Labs/stride/v15/x/records" + "github.com/Stride-Labs/stride/v15/x/records/types" ) func TestGenesis(t *testing.T) { diff --git a/x/records/handler.go b/x/records/handler.go index cbc3b1de8a..9baaa5db50 100644 --- a/x/records/handler.go +++ b/x/records/handler.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/Stride-Labs/stride/v14/x/records/keeper" - "github.com/Stride-Labs/stride/v14/x/records/types" + "github.com/Stride-Labs/stride/v15/x/records/keeper" + "github.com/Stride-Labs/stride/v15/x/records/types" ) // NewHandler ... diff --git a/x/records/keeper/callback_lsm_transfer.go b/x/records/keeper/callback_lsm_transfer.go index 2b04b6b455..9639cb1366 100644 --- a/x/records/keeper/callback_lsm_transfer.go +++ b/x/records/keeper/callback_lsm_transfer.go @@ -1,9 +1,9 @@ package keeper import ( - "github.com/Stride-Labs/stride/v14/utils" - icacallbackstypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" - "github.com/Stride-Labs/stride/v14/x/records/types" + "github.com/Stride-Labs/stride/v15/utils" + icacallbackstypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" + "github.com/Stride-Labs/stride/v15/x/records/types" errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/records/keeper/callback_lsm_transfer_test.go b/x/records/keeper/callback_lsm_transfer_test.go index fa4f4090c2..caf15fbea6 100644 --- a/x/records/keeper/callback_lsm_transfer_test.go +++ b/x/records/keeper/callback_lsm_transfer_test.go @@ -9,8 +9,8 @@ import ( channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" ibctesting "github.com/cosmos/ibc-go/v7/testing" - icacallbackstypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" - "github.com/Stride-Labs/stride/v14/x/records/types" + icacallbackstypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" + "github.com/Stride-Labs/stride/v15/x/records/types" ) var ( diff --git a/x/records/keeper/callback_native_transfer.go b/x/records/keeper/callback_native_transfer.go index 7bba9f7242..f94345c486 100644 --- a/x/records/keeper/callback_native_transfer.go +++ b/x/records/keeper/callback_native_transfer.go @@ -5,8 +5,8 @@ import ( ibctransfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - icacallbackstypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" - "github.com/Stride-Labs/stride/v14/x/records/types" + icacallbackstypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" + "github.com/Stride-Labs/stride/v15/x/records/types" errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/records/keeper/callback_native_transfer_test.go b/x/records/keeper/callback_native_transfer_test.go index 1e85e4cfe4..acd1915831 100644 --- a/x/records/keeper/callback_native_transfer_test.go +++ b/x/records/keeper/callback_native_transfer_test.go @@ -8,9 +8,9 @@ import ( sdkmath "cosmossdk.io/math" - icacallbacktypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" - "github.com/Stride-Labs/stride/v14/x/records/types" - recordtypes "github.com/Stride-Labs/stride/v14/x/records/types" + icacallbacktypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" + "github.com/Stride-Labs/stride/v15/x/records/types" + recordtypes "github.com/Stride-Labs/stride/v15/x/records/types" ) const chainId = "GAIA" diff --git a/x/records/keeper/callbacks.go b/x/records/keeper/callbacks.go index 7a76adb15b..6c8da778c5 100644 --- a/x/records/keeper/callbacks.go +++ b/x/records/keeper/callbacks.go @@ -1,7 +1,7 @@ package keeper import ( - icacallbackstypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + icacallbackstypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" ) const IBCCallbacksID_NativeTransfer = "transfer" diff --git a/x/records/keeper/deposit_record.go b/x/records/keeper/deposit_record.go index a03bceebc1..e06ae2aacb 100644 --- a/x/records/keeper/deposit_record.go +++ b/x/records/keeper/deposit_record.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/records/types" + "github.com/Stride-Labs/stride/v15/x/records/types" ) // GetDepositRecordCount get the total number of depositRecord diff --git a/x/records/keeper/epoch_unbonding_record.go b/x/records/keeper/epoch_unbonding_record.go index 3c99c53030..0c9dfbb177 100644 --- a/x/records/keeper/epoch_unbonding_record.go +++ b/x/records/keeper/epoch_unbonding_record.go @@ -9,9 +9,9 @@ import ( errorsmod "cosmossdk.io/errors" - stakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + stakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" - "github.com/Stride-Labs/stride/v14/x/records/types" + "github.com/Stride-Labs/stride/v15/x/records/types" ) // SetEpochUnbondingRecord set a specific epochUnbondingRecord in the store diff --git a/x/records/keeper/epoch_unbonding_record_test.go b/x/records/keeper/epoch_unbonding_record_test.go index 3a05e8fc0f..d135fa5344 100644 --- a/x/records/keeper/epoch_unbonding_record_test.go +++ b/x/records/keeper/epoch_unbonding_record_test.go @@ -8,10 +8,10 @@ import ( sdkmath "cosmossdk.io/math" - keepertest "github.com/Stride-Labs/stride/v14/testutil/keeper" - "github.com/Stride-Labs/stride/v14/testutil/nullify" - "github.com/Stride-Labs/stride/v14/x/records/keeper" - "github.com/Stride-Labs/stride/v14/x/records/types" + keepertest "github.com/Stride-Labs/stride/v15/testutil/keeper" + "github.com/Stride-Labs/stride/v15/testutil/nullify" + "github.com/Stride-Labs/stride/v15/x/records/keeper" + "github.com/Stride-Labs/stride/v15/x/records/types" ) func createNEpochUnbondingRecord(keeper *keeper.Keeper, ctx sdk.Context, n int) ([]types.EpochUnbondingRecord, map[string]types.HostZoneUnbonding) { diff --git a/x/records/keeper/grpc_query.go b/x/records/keeper/grpc_query.go index f88e2ac293..ba69d21a2f 100644 --- a/x/records/keeper/grpc_query.go +++ b/x/records/keeper/grpc_query.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/Stride-Labs/stride/v14/x/records/types" + "github.com/Stride-Labs/stride/v15/x/records/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/records/keeper/grpc_query_deposit_record.go b/x/records/keeper/grpc_query_deposit_record.go index d263cfe811..85cecea1f9 100644 --- a/x/records/keeper/grpc_query_deposit_record.go +++ b/x/records/keeper/grpc_query_deposit_record.go @@ -11,7 +11,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/Stride-Labs/stride/v14/x/records/types" + "github.com/Stride-Labs/stride/v15/x/records/types" ) func (k Keeper) DepositRecordAll(c context.Context, req *types.QueryAllDepositRecordRequest) (*types.QueryAllDepositRecordResponse, error) { diff --git a/x/records/keeper/grpc_query_deposit_record_test.go b/x/records/keeper/grpc_query_deposit_record_test.go index 2bada8e88f..df711b8d4d 100644 --- a/x/records/keeper/grpc_query_deposit_record_test.go +++ b/x/records/keeper/grpc_query_deposit_record_test.go @@ -10,13 +10,13 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - keepertest "github.com/Stride-Labs/stride/v14/testutil/keeper" - "github.com/Stride-Labs/stride/v14/testutil/nullify" + keepertest "github.com/Stride-Labs/stride/v15/testutil/keeper" + "github.com/Stride-Labs/stride/v15/testutil/nullify" sdkmath "cosmossdk.io/math" - "github.com/Stride-Labs/stride/v14/x/records/keeper" - "github.com/Stride-Labs/stride/v14/x/records/types" + "github.com/Stride-Labs/stride/v15/x/records/keeper" + "github.com/Stride-Labs/stride/v15/x/records/types" ) func createNDepositRecord(keeper *keeper.Keeper, ctx sdk.Context, n int) []types.DepositRecord { diff --git a/x/records/keeper/grpc_query_epoch_unbonding_record.go b/x/records/keeper/grpc_query_epoch_unbonding_record.go index 5dac07f0d5..afe69475ca 100644 --- a/x/records/keeper/grpc_query_epoch_unbonding_record.go +++ b/x/records/keeper/grpc_query_epoch_unbonding_record.go @@ -11,7 +11,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/Stride-Labs/stride/v14/x/records/types" + "github.com/Stride-Labs/stride/v15/x/records/types" ) func (k Keeper) EpochUnbondingRecordAll(c context.Context, req *types.QueryAllEpochUnbondingRecordRequest) (*types.QueryAllEpochUnbondingRecordResponse, error) { diff --git a/x/records/keeper/grpc_query_epoch_unbonding_record_test.go b/x/records/keeper/grpc_query_epoch_unbonding_record_test.go index 2cfb912215..65371ed106 100644 --- a/x/records/keeper/grpc_query_epoch_unbonding_record_test.go +++ b/x/records/keeper/grpc_query_epoch_unbonding_record_test.go @@ -10,9 +10,9 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - keepertest "github.com/Stride-Labs/stride/v14/testutil/keeper" - "github.com/Stride-Labs/stride/v14/testutil/nullify" - "github.com/Stride-Labs/stride/v14/x/records/types" + keepertest "github.com/Stride-Labs/stride/v15/testutil/keeper" + "github.com/Stride-Labs/stride/v15/testutil/nullify" + "github.com/Stride-Labs/stride/v15/x/records/types" ) func TestEpochUnbondingRecordQuerySingle(t *testing.T) { diff --git a/x/records/keeper/grpc_query_lsm_deposits.go b/x/records/keeper/grpc_query_lsm_deposits.go index 91814b7707..ad1043b2f3 100644 --- a/x/records/keeper/grpc_query_lsm_deposits.go +++ b/x/records/keeper/grpc_query_lsm_deposits.go @@ -8,7 +8,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/Stride-Labs/stride/v14/x/records/types" + "github.com/Stride-Labs/stride/v15/x/records/types" ) func (k Keeper) LSMDeposit(c context.Context, req *types.QueryLSMDepositRequest) (*types.QueryLSMDepositResponse, error) { diff --git a/x/records/keeper/grpc_query_lsm_deposits_test.go b/x/records/keeper/grpc_query_lsm_deposits_test.go index 2556d8ed91..01a0275051 100644 --- a/x/records/keeper/grpc_query_lsm_deposits_test.go +++ b/x/records/keeper/grpc_query_lsm_deposits_test.go @@ -5,7 +5,7 @@ import ( _ "github.com/stretchr/testify/suite" - "github.com/Stride-Labs/stride/v14/x/records/types" + "github.com/Stride-Labs/stride/v15/x/records/types" ) func (s *KeeperTestSuite) TestLSMDeposit() { diff --git a/x/records/keeper/grpc_query_params.go b/x/records/keeper/grpc_query_params.go index 679c60d2e2..bcda155152 100644 --- a/x/records/keeper/grpc_query_params.go +++ b/x/records/keeper/grpc_query_params.go @@ -7,7 +7,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/Stride-Labs/stride/v14/x/records/types" + "github.com/Stride-Labs/stride/v15/x/records/types" ) func (k Keeper) Params(c context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error) { diff --git a/x/records/keeper/grpc_query_params_test.go b/x/records/keeper/grpc_query_params_test.go index 9ee2118cd6..52318a5873 100644 --- a/x/records/keeper/grpc_query_params_test.go +++ b/x/records/keeper/grpc_query_params_test.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - testkeeper "github.com/Stride-Labs/stride/v14/testutil/keeper" - "github.com/Stride-Labs/stride/v14/x/records/types" + testkeeper "github.com/Stride-Labs/stride/v15/testutil/keeper" + "github.com/Stride-Labs/stride/v15/x/records/types" ) func TestParamsQuery(t *testing.T) { diff --git a/x/records/keeper/grpc_query_user_redemption_record.go b/x/records/keeper/grpc_query_user_redemption_record.go index 60f892dde0..e6ddcf1664 100644 --- a/x/records/keeper/grpc_query_user_redemption_record.go +++ b/x/records/keeper/grpc_query_user_redemption_record.go @@ -11,7 +11,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/Stride-Labs/stride/v14/x/records/types" + "github.com/Stride-Labs/stride/v15/x/records/types" ) func (k Keeper) UserRedemptionRecordAll(c context.Context, req *types.QueryAllUserRedemptionRecordRequest) (*types.QueryAllUserRedemptionRecordResponse, error) { diff --git a/x/records/keeper/grpc_query_user_redemption_record_for_user.go b/x/records/keeper/grpc_query_user_redemption_record_for_user.go index 9955516f6b..0d55a2b010 100644 --- a/x/records/keeper/grpc_query_user_redemption_record_for_user.go +++ b/x/records/keeper/grpc_query_user_redemption_record_for_user.go @@ -9,7 +9,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/Stride-Labs/stride/v14/x/records/types" + "github.com/Stride-Labs/stride/v15/x/records/types" ) func (k Keeper) UserRedemptionRecordForUser(c context.Context, req *types.QueryAllUserRedemptionRecordForUserRequest) (*types.QueryAllUserRedemptionRecordForUserResponse, error) { diff --git a/x/records/keeper/grpc_query_user_redemption_record_test.go b/x/records/keeper/grpc_query_user_redemption_record_test.go index 45d6d7d814..13926f55ff 100644 --- a/x/records/keeper/grpc_query_user_redemption_record_test.go +++ b/x/records/keeper/grpc_query_user_redemption_record_test.go @@ -11,9 +11,9 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - keepertest "github.com/Stride-Labs/stride/v14/testutil/keeper" - "github.com/Stride-Labs/stride/v14/testutil/nullify" - "github.com/Stride-Labs/stride/v14/x/records/types" + keepertest "github.com/Stride-Labs/stride/v15/testutil/keeper" + "github.com/Stride-Labs/stride/v15/testutil/nullify" + "github.com/Stride-Labs/stride/v15/x/records/types" ) func TestUserRedemptionRecordQuerySingle(t *testing.T) { diff --git a/x/records/keeper/ibc.go b/x/records/keeper/ibc.go index 62899910c4..8331df7d0d 100644 --- a/x/records/keeper/ibc.go +++ b/x/records/keeper/ibc.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - "github.com/Stride-Labs/stride/v14/x/icacallbacks" - icacallbacktypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + "github.com/Stride-Labs/stride/v15/x/icacallbacks" + icacallbacktypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" ) // OnAcknowledgementPacket unmarshals the acknowledgement object to determine if the ack was successful and diff --git a/x/records/keeper/keeper.go b/x/records/keeper/keeper.go index 37991924b5..b20c1a21a1 100644 --- a/x/records/keeper/keeper.go +++ b/x/records/keeper/keeper.go @@ -11,9 +11,9 @@ import ( ibctransferkeeper "github.com/cosmos/ibc-go/v7/modules/apps/transfer/keeper" ibckeeper "github.com/cosmos/ibc-go/v7/modules/core/keeper" - icacallbackskeeper "github.com/Stride-Labs/stride/v14/x/icacallbacks/keeper" + icacallbackskeeper "github.com/Stride-Labs/stride/v15/x/icacallbacks/keeper" - "github.com/Stride-Labs/stride/v14/x/records/types" + "github.com/Stride-Labs/stride/v15/x/records/types" ) type ( diff --git a/x/records/keeper/keeper_test.go b/x/records/keeper/keeper_test.go index a1e853ab0b..2d45c3ccd5 100644 --- a/x/records/keeper/keeper_test.go +++ b/x/records/keeper/keeper_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/suite" - "github.com/Stride-Labs/stride/v14/app/apptesting" + "github.com/Stride-Labs/stride/v15/app/apptesting" ) const ( diff --git a/x/records/keeper/lsm_token_deposit.go b/x/records/keeper/lsm_token_deposit.go index 2a13ceea21..7e435ca34f 100644 --- a/x/records/keeper/lsm_token_deposit.go +++ b/x/records/keeper/lsm_token_deposit.go @@ -4,7 +4,7 @@ import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/records/types" + "github.com/Stride-Labs/stride/v15/x/records/types" ) func (k Keeper) SetLSMTokenDeposit(ctx sdk.Context, deposit types.LSMTokenDeposit) { diff --git a/x/records/keeper/lsm_token_deposit_test.go b/x/records/keeper/lsm_token_deposit_test.go index 505440e345..693a14c593 100644 --- a/x/records/keeper/lsm_token_deposit_test.go +++ b/x/records/keeper/lsm_token_deposit_test.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/records/types" + "github.com/Stride-Labs/stride/v15/x/records/types" ) func (s *KeeperTestSuite) createNLSMTokenDeposit(n int) []types.LSMTokenDeposit { diff --git a/x/records/keeper/params.go b/x/records/keeper/params.go index 6cedd125f6..5599f410eb 100644 --- a/x/records/keeper/params.go +++ b/x/records/keeper/params.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/records/types" + "github.com/Stride-Labs/stride/v15/x/records/types" ) // GetParams get all parameters as types.Params diff --git a/x/records/keeper/params_test.go b/x/records/keeper/params_test.go index 36f78f59bc..b8970c7de6 100644 --- a/x/records/keeper/params_test.go +++ b/x/records/keeper/params_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - testkeeper "github.com/Stride-Labs/stride/v14/testutil/keeper" - "github.com/Stride-Labs/stride/v14/x/records/types" + testkeeper "github.com/Stride-Labs/stride/v15/testutil/keeper" + "github.com/Stride-Labs/stride/v15/x/records/types" ) func TestGetParams(t *testing.T) { diff --git a/x/records/keeper/transfer.go b/x/records/keeper/transfer.go index 93ce51ca37..95fc25c092 100644 --- a/x/records/keeper/transfer.go +++ b/x/records/keeper/transfer.go @@ -8,10 +8,10 @@ import ( "github.com/cosmos/gogoproto/proto" transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - "github.com/Stride-Labs/stride/v14/utils" - icacallbackstypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + "github.com/Stride-Labs/stride/v15/utils" + icacallbackstypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" - "github.com/Stride-Labs/stride/v14/x/records/types" + "github.com/Stride-Labs/stride/v15/x/records/types" ) var ( diff --git a/x/records/keeper/transfer_test.go b/x/records/keeper/transfer_test.go index ef586a7fec..d37f8443e6 100644 --- a/x/records/keeper/transfer_test.go +++ b/x/records/keeper/transfer_test.go @@ -9,8 +9,8 @@ import ( sdkmath "cosmossdk.io/math" - "github.com/Stride-Labs/stride/v14/x/records/types" - recordtypes "github.com/Stride-Labs/stride/v14/x/records/types" + "github.com/Stride-Labs/stride/v15/x/records/types" + recordtypes "github.com/Stride-Labs/stride/v15/x/records/types" ) type TransferTestCase struct { diff --git a/x/records/keeper/user_redemption_record.go b/x/records/keeper/user_redemption_record.go index 0f914db182..708fc33070 100644 --- a/x/records/keeper/user_redemption_record.go +++ b/x/records/keeper/user_redemption_record.go @@ -4,7 +4,7 @@ import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/records/types" + "github.com/Stride-Labs/stride/v15/x/records/types" ) // SetUserRedemptionRecord set a specific userRedemptionRecord in the store diff --git a/x/records/keeper/user_redemption_record_test.go b/x/records/keeper/user_redemption_record_test.go index 9666f17ad7..b8d21c10bd 100644 --- a/x/records/keeper/user_redemption_record_test.go +++ b/x/records/keeper/user_redemption_record_test.go @@ -9,10 +9,10 @@ import ( sdkmath "cosmossdk.io/math" - keepertest "github.com/Stride-Labs/stride/v14/testutil/keeper" - "github.com/Stride-Labs/stride/v14/testutil/nullify" - "github.com/Stride-Labs/stride/v14/x/records/keeper" - "github.com/Stride-Labs/stride/v14/x/records/types" + keepertest "github.com/Stride-Labs/stride/v15/testutil/keeper" + "github.com/Stride-Labs/stride/v15/testutil/nullify" + "github.com/Stride-Labs/stride/v15/x/records/keeper" + "github.com/Stride-Labs/stride/v15/x/records/types" ) func createNUserRedemptionRecord(keeper *keeper.Keeper, ctx sdk.Context, n int) []types.UserRedemptionRecord { diff --git a/x/records/migrations/v2/convert.go b/x/records/migrations/v2/convert.go index 4c4437c325..7337663827 100644 --- a/x/records/migrations/v2/convert.go +++ b/x/records/migrations/v2/convert.go @@ -3,8 +3,8 @@ package v2 import ( sdkmath "cosmossdk.io/math" - oldrecordstypes "github.com/Stride-Labs/stride/v14/x/records/migrations/v2/types" - recordstypes "github.com/Stride-Labs/stride/v14/x/records/types" + oldrecordstypes "github.com/Stride-Labs/stride/v15/x/records/migrations/v2/types" + recordstypes "github.com/Stride-Labs/stride/v15/x/records/types" ) func convertToNewDepositRecord(oldDepositRecord oldrecordstypes.DepositRecord) recordstypes.DepositRecord { diff --git a/x/records/migrations/v2/convert_test.go b/x/records/migrations/v2/convert_test.go index 30bb92ad4a..94c9d085b7 100644 --- a/x/records/migrations/v2/convert_test.go +++ b/x/records/migrations/v2/convert_test.go @@ -7,8 +7,8 @@ import ( "github.com/stretchr/testify/require" - oldrecordstypes "github.com/Stride-Labs/stride/v14/x/records/migrations/v2/types" - recordstypes "github.com/Stride-Labs/stride/v14/x/records/types" + oldrecordstypes "github.com/Stride-Labs/stride/v15/x/records/migrations/v2/types" + recordstypes "github.com/Stride-Labs/stride/v15/x/records/types" ) func TestConvertDepositRecord(t *testing.T) { diff --git a/x/records/migrations/v2/migrations.go b/x/records/migrations/v2/migrations.go index 03ae11b012..621f05a090 100644 --- a/x/records/migrations/v2/migrations.go +++ b/x/records/migrations/v2/migrations.go @@ -8,8 +8,8 @@ import ( errorsmod "cosmossdk.io/errors" - oldrecordtypes "github.com/Stride-Labs/stride/v14/x/records/migrations/v2/types" - recordtypes "github.com/Stride-Labs/stride/v14/x/records/types" + oldrecordtypes "github.com/Stride-Labs/stride/v15/x/records/migrations/v2/types" + recordtypes "github.com/Stride-Labs/stride/v15/x/records/types" ) func migrateDepositRecord(store sdk.KVStore, cdc codec.BinaryCodec) error { diff --git a/x/records/module.go b/x/records/module.go index 960dfe67cf..e286278150 100644 --- a/x/records/module.go +++ b/x/records/module.go @@ -17,9 +17,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/Stride-Labs/stride/v14/x/records/client/cli" - "github.com/Stride-Labs/stride/v14/x/records/keeper" - "github.com/Stride-Labs/stride/v14/x/records/types" + "github.com/Stride-Labs/stride/v15/x/records/client/cli" + "github.com/Stride-Labs/stride/v15/x/records/keeper" + "github.com/Stride-Labs/stride/v15/x/records/types" ) var ( diff --git a/x/records/module_ibc.go b/x/records/module_ibc.go index 9cb3ddf58d..b3630b702b 100644 --- a/x/records/module_ibc.go +++ b/x/records/module_ibc.go @@ -12,7 +12,7 @@ import ( porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" - "github.com/Stride-Labs/stride/v14/x/records/keeper" + "github.com/Stride-Labs/stride/v15/x/records/keeper" ) // IBC MODULE IMPLEMENTATION diff --git a/x/records/module_simulation.go b/x/records/module_simulation.go index dfdc4a3987..6b81b635c7 100644 --- a/x/records/module_simulation.go +++ b/x/records/module_simulation.go @@ -10,9 +10,9 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" - "github.com/Stride-Labs/stride/v14/testutil/sample" - recordssimulation "github.com/Stride-Labs/stride/v14/x/records/simulation" - "github.com/Stride-Labs/stride/v14/x/records/types" + "github.com/Stride-Labs/stride/v15/testutil/sample" + recordssimulation "github.com/Stride-Labs/stride/v15/x/records/simulation" + "github.com/Stride-Labs/stride/v15/x/records/types" ) // avoid unused import issue diff --git a/x/records/types/callbacks.pb.go b/x/records/types/callbacks.pb.go index d1c0f80479..24a5dae337 100644 --- a/x/records/types/callbacks.pb.go +++ b/x/records/types/callbacks.pb.go @@ -131,8 +131,8 @@ var fileDescriptor_6f7cdd5c1d8b3a46 = []byte{ 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, 0xc3, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0xfd, 0x60, 0xb0, 0x69, 0xba, 0x3e, 0x89, 0x49, 0xc5, 0xfa, 0x50, - 0x5f, 0x96, 0x19, 0x9a, 0xe8, 0x57, 0xc0, 0xfd, 0x5a, 0x52, 0x59, 0x90, 0x5a, 0x9c, 0xc4, 0x06, - 0xf6, 0xaa, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0x85, 0xa6, 0xfa, 0x6a, 0x3a, 0x01, 0x00, 0x00, + 0x5f, 0x96, 0x19, 0x9a, 0xea, 0x57, 0xc0, 0xfd, 0x5a, 0x52, 0x59, 0x90, 0x5a, 0x9c, 0xc4, 0x06, + 0xf6, 0xaa, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0x8b, 0x36, 0x71, 0xcf, 0x3a, 0x01, 0x00, 0x00, } func (m *TransferCallback) Marshal() (dAtA []byte, err error) { diff --git a/x/records/types/genesis.pb.go b/x/records/types/genesis.pb.go index 6a80c1ea3b..2c2259884d 100644 --- a/x/records/types/genesis.pb.go +++ b/x/records/types/genesis.pb.go @@ -133,31 +133,31 @@ func init() { proto.RegisterFile("stride/records/genesis.proto", fileDescriptor_ var fileDescriptor_98cfd0253c8b6797 = []byte{ // 418 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x92, 0xcf, 0x8e, 0x93, 0x40, - 0x1c, 0xc7, 0xc1, 0xc5, 0xae, 0x3b, 0x6b, 0x4c, 0x64, 0x37, 0x15, 0xdb, 0x4a, 0x89, 0xf1, 0xc0, - 0x45, 0xb0, 0xb5, 0x77, 0x93, 0xaa, 0x31, 0xc6, 0x9a, 0x18, 0xb0, 0x97, 0x5e, 0x08, 0x30, 0x13, + 0x1c, 0xc7, 0xc1, 0xc5, 0xae, 0x3b, 0x6b, 0x4c, 0x64, 0x9b, 0x8a, 0x6d, 0xa5, 0xc4, 0x78, 0xe0, + 0x22, 0xd8, 0xaa, 0x67, 0x93, 0xaa, 0x31, 0xc6, 0x9a, 0x18, 0xb0, 0x97, 0x5e, 0x08, 0x30, 0x13, 0x3a, 0xb1, 0x30, 0x64, 0x66, 0x30, 0xfa, 0x16, 0x3e, 0x56, 0x8f, 0xbd, 0xe9, 0xc9, 0x98, 0xf6, 0x45, 0x0c, 0x33, 0xd3, 0xa6, 0x10, 0xf6, 0xc4, 0xf0, 0xfb, 0x7d, 0xff, 0x7c, 0x26, 0x19, 0x30, - 0x62, 0x9c, 0x62, 0x88, 0x7c, 0x8a, 0x52, 0x42, 0x21, 0xf3, 0x33, 0x54, 0x20, 0x86, 0x99, 0x57, - 0x52, 0xc2, 0x89, 0xf9, 0x48, 0x6e, 0x3d, 0xb5, 0x1d, 0x0c, 0x5b, 0xea, 0x32, 0xa6, 0x71, 0xae, - 0xc4, 0x83, 0x76, 0x94, 0xfa, 0xaa, 0xed, 0x6d, 0x46, 0x32, 0x22, 0x8e, 0x7e, 0x7d, 0x92, 0xd3, - 0xe7, 0xbf, 0x0d, 0xf0, 0xf0, 0x83, 0xac, 0x0c, 0x79, 0xcc, 0x91, 0x39, 0x03, 0x3d, 0x19, 0x6a, - 0xe9, 0x8e, 0xee, 0x5e, 0x4f, 0xfb, 0x5e, 0x13, 0xc1, 0xfb, 0x22, 0xb6, 0x73, 0x63, 0xfb, 0x77, - 0xac, 0x05, 0x4a, 0x6b, 0x3e, 0x01, 0x97, 0x25, 0xa1, 0x3c, 0xc2, 0xd0, 0xba, 0xe7, 0xe8, 0xee, - 0x55, 0xd0, 0xab, 0x7f, 0x3f, 0x42, 0x13, 0x83, 0x61, 0xc5, 0x10, 0x8d, 0x28, 0x82, 0x28, 0x2f, - 0x39, 0x26, 0x45, 0x24, 0x83, 0xa2, 0x0d, 0x66, 0xdc, 0xba, 0x70, 0x2e, 0xdc, 0xeb, 0xe9, 0x8b, - 0x76, 0xc7, 0x92, 0x21, 0x1a, 0x9c, 0x1c, 0x81, 0x98, 0xaa, 0x46, 0xab, 0xea, 0xd8, 0x2d, 0x30, - 0xe3, 0xe6, 0x1b, 0x30, 0xba, 0xa3, 0x2a, 0x25, 0x55, 0xc1, 0x2d, 0xc3, 0xd1, 0x5d, 0x23, 0x78, - 0xda, 0xe5, 0x7f, 0x5b, 0x0b, 0x6a, 0x56, 0x54, 0x92, 0x74, 0x1d, 0x55, 0x45, 0x42, 0x0a, 0x88, - 0x8b, 0xac, 0xc1, 0x7a, 0xbf, 0x9b, 0xf5, 0x7d, 0x6d, 0x59, 0x1e, 0x1d, 0x4d, 0x56, 0xd4, 0xb1, - 0x13, 0xac, 0x21, 0xb8, 0x81, 0xa8, 0x24, 0x0c, 0xf3, 0x46, 0xc5, 0xa5, 0xa8, 0x78, 0xd6, 0xae, - 0x78, 0x27, 0xa5, 0x8d, 0xec, 0xc7, 0xf0, 0x7c, 0x28, 0x42, 0x5f, 0x81, 0xdb, 0x56, 0xa8, 0xbc, - 0xf8, 0x03, 0x71, 0x71, 0xb3, 0x61, 0x90, 0x37, 0x5e, 0x81, 0xfe, 0x86, 0xe5, 0x11, 0x27, 0xdf, - 0x50, 0x11, 0x1d, 0xbd, 0x82, 0xe4, 0x4a, 0x90, 0x8c, 0xdb, 0x24, 0x8b, 0xf0, 0xf3, 0xd7, 0x5a, + 0x66, 0x9c, 0x62, 0x88, 0x7c, 0x8a, 0x52, 0x42, 0x21, 0xf3, 0x33, 0x54, 0x20, 0x86, 0x99, 0x57, + 0x52, 0xc2, 0x89, 0xf9, 0x40, 0x6e, 0x3d, 0xb5, 0x1d, 0x8e, 0x5a, 0xea, 0x32, 0xa6, 0x71, 0xae, + 0xc4, 0xc3, 0x76, 0x94, 0xfa, 0xaa, 0x6d, 0x3f, 0x23, 0x19, 0x11, 0x47, 0xbf, 0x3e, 0xc9, 0xe9, + 0xd3, 0xdf, 0x06, 0xb8, 0xff, 0x41, 0x56, 0x86, 0x3c, 0xe6, 0xc8, 0x7c, 0x05, 0x7a, 0x32, 0xd4, + 0xd2, 0x1d, 0xdd, 0xbd, 0x9e, 0x0d, 0xbc, 0x26, 0x82, 0xf7, 0x45, 0x6c, 0xe7, 0xc6, 0xf6, 0xef, + 0x44, 0x0b, 0x94, 0xd6, 0x7c, 0x04, 0x2e, 0x4b, 0x42, 0x79, 0x84, 0xa1, 0x75, 0xc7, 0xd1, 0xdd, + 0xab, 0xa0, 0x57, 0xff, 0x7e, 0x84, 0x26, 0x06, 0xa3, 0x8a, 0x21, 0x1a, 0x51, 0x04, 0x51, 0x5e, + 0x72, 0x4c, 0x8a, 0x48, 0x06, 0x45, 0x1b, 0xcc, 0xb8, 0x75, 0xe1, 0x5c, 0xb8, 0xd7, 0xb3, 0x67, + 0xed, 0x8e, 0x25, 0x43, 0x34, 0x38, 0x39, 0x02, 0x31, 0x55, 0x8d, 0x56, 0xd5, 0xb1, 0x5b, 0x60, + 0xc6, 0xcd, 0x37, 0x60, 0x7c, 0x4b, 0x55, 0x4a, 0xaa, 0x82, 0x5b, 0x86, 0xa3, 0xbb, 0x46, 0xf0, + 0xb8, 0xcb, 0xff, 0xb6, 0x16, 0xd4, 0xac, 0xa8, 0x24, 0xe9, 0x3a, 0xaa, 0x8a, 0x84, 0x14, 0x10, + 0x17, 0x59, 0x83, 0xf5, 0x6e, 0x37, 0xeb, 0xfb, 0xda, 0xb2, 0x3c, 0x3a, 0x9a, 0xac, 0xa8, 0x63, + 0x27, 0x58, 0x43, 0x70, 0x03, 0x51, 0x49, 0x18, 0xe6, 0x8d, 0x8a, 0x4b, 0x51, 0xf1, 0xa4, 0x5d, + 0xf1, 0x4e, 0x4a, 0x1b, 0xd9, 0x0f, 0xe1, 0xf9, 0x50, 0x84, 0xbe, 0x00, 0xfd, 0x56, 0xa8, 0xbc, + 0xf8, 0x3d, 0x71, 0x71, 0xb3, 0x61, 0x90, 0x37, 0x5e, 0x81, 0xc1, 0x86, 0xe5, 0x11, 0x27, 0xdf, + 0x50, 0x11, 0x1d, 0xbd, 0x82, 0xe4, 0x4a, 0x90, 0x4c, 0xda, 0x24, 0x8b, 0xf0, 0xf3, 0xd7, 0x5a, 0xac, 0x88, 0x14, 0xcb, 0xcd, 0x86, 0xe5, 0xe7, 0xe3, 0x9a, 0x66, 0xfe, 0x69, 0xbb, 0xb7, 0xf5, 0xdd, 0xde, 0xd6, 0xff, 0xed, 0x6d, 0xfd, 0xd7, 0xc1, 0xd6, 0x76, 0x07, 0x5b, 0xfb, 0x73, 0xb0, - 0xb5, 0xd5, 0x24, 0xc3, 0x7c, 0x5d, 0x25, 0x5e, 0x4a, 0x72, 0x3f, 0x14, 0xf9, 0x2f, 0x17, 0x71, - 0xc2, 0x7c, 0xf5, 0x7c, 0xbf, 0x4f, 0x66, 0xfe, 0x8f, 0xd3, 0x23, 0xe6, 0x3f, 0x4b, 0xc4, 0x92, - 0x9e, 0x78, 0xad, 0xaf, 0xff, 0x07, 0x00, 0x00, 0xff, 0xff, 0x44, 0x2e, 0x44, 0xb9, 0x2e, 0x03, + 0xb5, 0xd5, 0x34, 0xc3, 0x7c, 0x5d, 0x25, 0x5e, 0x4a, 0x72, 0x3f, 0x14, 0xf9, 0xcf, 0x17, 0x71, + 0xc2, 0x7c, 0xf5, 0x7c, 0xbf, 0x4f, 0x5f, 0xfb, 0x3f, 0x4e, 0x8f, 0x98, 0xff, 0x2c, 0x11, 0x4b, + 0x7a, 0xe2, 0xb5, 0xbe, 0xfc, 0x1f, 0x00, 0x00, 0xff, 0xff, 0x4a, 0xbe, 0xcf, 0x1c, 0x2e, 0x03, 0x00, 0x00, } diff --git a/x/records/types/genesis_test.go b/x/records/types/genesis_test.go index e94e44ce58..397f02ccfe 100644 --- a/x/records/types/genesis_test.go +++ b/x/records/types/genesis_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/Stride-Labs/stride/v14/x/records/types" + "github.com/Stride-Labs/stride/v15/x/records/types" ) func TestGenesisState_Validate(t *testing.T) { diff --git a/x/records/types/params.pb.go b/x/records/types/params.pb.go index 11511c9dd7..d18889b7e8 100644 --- a/x/records/types/params.pb.go +++ b/x/records/types/params.pb.go @@ -73,9 +73,9 @@ var fileDescriptor_5d92633ea4bee482 = []byte{ 0xb8, 0xd8, 0x02, 0xc0, 0xf2, 0x4e, 0xde, 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, 0x65, 0x98, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0x1f, 0x0c, 0xd6, - 0xae, 0xeb, 0x93, 0x98, 0x54, 0xac, 0x0f, 0xb5, 0xa7, 0xcc, 0xd0, 0x44, 0xbf, 0x02, 0x6e, 0x5b, + 0xae, 0xeb, 0x93, 0x98, 0x54, 0xac, 0x0f, 0xb5, 0xa7, 0xcc, 0xd0, 0x54, 0xbf, 0x02, 0x6e, 0x5b, 0x49, 0x65, 0x41, 0x6a, 0x71, 0x12, 0x1b, 0xd8, 0x36, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, - 0x03, 0x1a, 0x3f, 0x1c, 0x8c, 0x00, 0x00, 0x00, + 0x0d, 0x8a, 0xb4, 0xb9, 0x8c, 0x00, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/records/types/query.pb.go b/x/records/types/query.pb.go index 83b4a70ad3..de1b21ba7c 100644 --- a/x/records/types/query.pb.go +++ b/x/records/types/query.pb.go @@ -1118,82 +1118,82 @@ func init() { func init() { proto.RegisterFile("stride/records/query.proto", fileDescriptor_25e7cc311be81f7b) } var fileDescriptor_25e7cc311be81f7b = []byte{ - // 1191 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x98, 0x4d, 0x6f, 0x1b, 0x45, - 0x18, 0xc7, 0xb3, 0x79, 0x6d, 0x9e, 0xb4, 0x21, 0x4c, 0xad, 0x34, 0xb8, 0xa9, 0x93, 0x6e, 0xaa, - 0xbe, 0x24, 0xa9, 0x07, 0xa7, 0x41, 0x15, 0xad, 0x50, 0xe5, 0x06, 0xd2, 0x84, 0xa6, 0x55, 0x71, - 0xe8, 0x25, 0x12, 0x6c, 0xd7, 0xde, 0x89, 0xb3, 0x8a, 0xbd, 0xe3, 0xee, 0xac, 0x23, 0x8c, 0xf1, - 0x85, 0x13, 0x47, 0xa4, 0x7e, 0x03, 0x10, 0xdf, 0x80, 0x0f, 0x80, 0x38, 0xe5, 0xc0, 0xa1, 0x15, - 0x97, 0x9e, 0x10, 0x4a, 0xf8, 0x08, 0x9c, 0x11, 0xf2, 0xcc, 0xac, 0xed, 0xb5, 0x67, 0xd7, 0x76, - 0x64, 0x0e, 0x9c, 0xe2, 0x9d, 0x79, 0xe6, 0x79, 0x7e, 0xff, 0x67, 0x9e, 0x79, 0x0b, 0xc4, 0x99, - 0xe7, 0xda, 0x16, 0xc1, 0x2e, 0xc9, 0x51, 0xd7, 0x62, 0xf8, 0x65, 0x99, 0xb8, 0x95, 0x64, 0xc9, - 0xa5, 0x1e, 0x45, 0xd3, 0xa2, 0x2f, 0x29, 0xfb, 0xe2, 0xf3, 0x6d, 0xb6, 0xf2, 0xaf, 0xb0, 0x8e, - 0x5f, 0x6e, 0xeb, 0x2d, 0x99, 0xae, 0x59, 0xf4, 0x3b, 0x63, 0x79, 0x9a, 0xa7, 0xfc, 0x27, 0xae, - 0xff, 0x92, 0xad, 0xf3, 0x79, 0x4a, 0xf3, 0x05, 0x82, 0xcd, 0x92, 0x8d, 0x4d, 0xc7, 0xa1, 0x9e, - 0xe9, 0xd9, 0xd4, 0xf1, 0xc7, 0x2c, 0xe7, 0x28, 0x2b, 0x52, 0x86, 0xb3, 0x26, 0x23, 0x82, 0x0b, - 0x1f, 0xa5, 0xb2, 0xc4, 0x33, 0x53, 0xb8, 0x64, 0xe6, 0x6d, 0x87, 0x1b, 0x0b, 0x5b, 0x3d, 0x06, - 0xe8, 0xb3, 0xba, 0xc5, 0x33, 0x1e, 0x34, 0x43, 0x5e, 0x96, 0x09, 0xf3, 0xf4, 0xc7, 0x70, 0x31, - 0xd0, 0xca, 0x4a, 0xd4, 0x61, 0x04, 0xad, 0xc3, 0xb8, 0x80, 0x9b, 0xd3, 0x16, 0xb5, 0x9b, 0x53, - 0x6b, 0xb3, 0xc9, 0xa0, 0xd0, 0xa4, 0xb0, 0x7f, 0x38, 0x7a, 0xfc, 0xc7, 0xc2, 0x50, 0x46, 0xda, - 0xea, 0x49, 0x98, 0xe7, 0xce, 0x1e, 0x11, 0xef, 0x63, 0x52, 0xa2, 0xcc, 0xf6, 0x32, 0xdc, 0x5c, - 0x06, 0x43, 0xd3, 0x30, 0x6c, 0x5b, 0xdc, 0xe3, 0x68, 0x66, 0xd8, 0xb6, 0xf4, 0x43, 0xb8, 0x12, - 0x62, 0x2f, 0x31, 0x3e, 0x85, 0x69, 0x4b, 0x74, 0x18, 0x22, 0xb0, 0xc4, 0xb9, 0xd2, 0x8e, 0x13, - 0x18, 0x2e, 0xa9, 0x2e, 0x58, 0xad, 0x8d, 0xfa, 0xbe, 0x84, 0x4b, 0x17, 0x0a, 0x4a, 0xb8, 0x4d, - 0x80, 0x66, 0xce, 0x64, 0x9c, 0xeb, 0x49, 0x91, 0xe0, 0x64, 0x3d, 0xc1, 0x49, 0x31, 0xf1, 0x32, - 0xc1, 0xc9, 0x67, 0x66, 0x9e, 0xc8, 0xb1, 0x99, 0x96, 0x91, 0xfa, 0xcf, 0x9a, 0x54, 0xd5, 0x19, - 0x28, 0x42, 0xd5, 0xc8, 0xd9, 0x54, 0xa1, 0x47, 0x01, 0xea, 0x61, 0x4e, 0x7d, 0xa3, 0x2b, 0xb5, - 0x00, 0x09, 0x60, 0x6f, 0xc0, 0x02, 0xa7, 0x0e, 0xc6, 0xac, 0x6c, 0x51, 0xe6, 0xf9, 0x19, 0x5a, - 0x84, 0xf3, 0x07, 0x94, 0x79, 0xc6, 0xd7, 0xd4, 0x21, 0x86, 0x9c, 0xc8, 0xc9, 0x0c, 0xd4, 0xdb, - 0xf6, 0xa8, 0x43, 0xb6, 0x2d, 0xdd, 0x81, 0xc5, 0x70, 0x27, 0x83, 0x57, 0xaf, 0x7f, 0x00, 0x4b, - 0x7e, 0x01, 0x3d, 0x67, 0xc4, 0xcd, 0x10, 0x8b, 0x14, 0x4b, 0x75, 0x39, 0x61, 0x75, 0x37, 0xc9, - 0xeb, 0xee, 0x3b, 0x0d, 0xae, 0x45, 0x8f, 0x93, 0xac, 0x2f, 0x60, 0xb6, 0xcc, 0x88, 0x6b, 0xb8, - 0x0d, 0x83, 0x60, 0x1d, 0x5e, 0x6b, 0x67, 0x56, 0x79, 0x93, 0xe8, 0xb1, 0xb2, 0xa2, 0x4f, 0x2f, - 0x4a, 0x05, 0xe9, 0x42, 0x21, 0x4a, 0xc1, 0xa0, 0x8a, 0xf3, 0x8d, 0xaf, 0x3c, 0x34, 0x5e, 0x0f, - 0xca, 0x47, 0x06, 0xa1, 0x7c, 0x70, 0x95, 0xfb, 0x46, 0x83, 0xe5, 0x28, 0x4d, 0x9b, 0xd4, 0x15, - 0xcd, 0x22, 0x95, 0xef, 0xc1, 0xb9, 0xdc, 0x81, 0x69, 0x3b, 0xcd, 0x0a, 0x9e, 0xe0, 0xdf, 0xdb, - 0x16, 0x9a, 0x81, 0x11, 0xcb, 0xac, 0x70, 0x96, 0xd1, 0x4c, 0xfd, 0x27, 0x9a, 0x83, 0x09, 0xd3, - 0xb2, 0x5c, 0xc2, 0xd8, 0xdc, 0x88, 0xb0, 0x95, 0x9f, 0x28, 0x06, 0x63, 0x05, 0xbb, 0x68, 0x7b, - 0x73, 0xa3, 0xdc, 0x5a, 0x7c, 0xb4, 0xcd, 0xd3, 0xd8, 0x99, 0xe7, 0xe9, 0xad, 0x06, 0x2b, 0x3d, - 0x69, 0xfa, 0xff, 0x4d, 0xd7, 0x56, 0x73, 0xcd, 0x7e, 0x52, 0xa2, 0xb9, 0x83, 0xe7, 0x4e, 0x96, - 0x3a, 0x96, 0xed, 0xe4, 0x83, 0x15, 0x7f, 0x15, 0xce, 0x93, 0x7a, 0xb7, 0xe1, 0x94, 0x8b, 0x59, - 0xe2, 0xca, 0x53, 0x63, 0x8a, 0xb7, 0x3d, 0xe5, 0x4d, 0x81, 0x65, 0xac, 0x76, 0xd5, 0xcc, 0x8e, - 0xf0, 0x55, 0xf6, 0x0d, 0xba, 0x2c, 0x63, 0x95, 0x37, 0x3f, 0x3b, 0x44, 0xd1, 0xd7, 0xba, 0x8c, - 0xa3, 0x44, 0xfd, 0x17, 0xcb, 0xf8, 0xcc, 0xca, 0x47, 0x06, 0xa1, 0x7c, 0x70, 0x75, 0xb1, 0x0d, - 0xb3, 0x5c, 0xd2, 0xce, 0xee, 0x93, 0xc6, 0xce, 0xdf, 0x75, 0xc5, 0xc6, 0x60, 0xcc, 0x22, 0x0e, - 0x2d, 0xf2, 0xc0, 0x93, 0x19, 0xf1, 0xa1, 0xef, 0xc1, 0xa5, 0x0e, 0x57, 0x32, 0x21, 0x0f, 0x60, - 0x42, 0x1e, 0x21, 0x32, 0xfd, 0x0b, 0xed, 0x19, 0xd8, 0xd9, 0x7d, 0xf2, 0x39, 0x3d, 0x24, 0x8e, - 0x1c, 0x29, 0xc5, 0xfb, 0xa3, 0xf4, 0x4a, 0x87, 0x6f, 0xd6, 0x03, 0xe7, 0x0a, 0xbc, 0x7b, 0x64, - 0x16, 0x6c, 0xcb, 0xf4, 0xa8, 0x6b, 0xf8, 0x3b, 0x8a, 0x60, 0x9e, 0x69, 0x74, 0xa4, 0xe5, 0xd6, - 0x32, 0x0b, 0xe3, 0xcc, 0x33, 0xbd, 0xb2, 0xbf, 0xe7, 0xc8, 0x2f, 0xfd, 0x0b, 0x98, 0xeb, 0x0c, - 0x2d, 0x75, 0xa5, 0xe1, 0x9c, 0x24, 0x64, 0x72, 0x6a, 0x7b, 0x14, 0xd6, 0x18, 0xb6, 0xf6, 0xf7, - 0x3b, 0x30, 0xc6, 0xfd, 0xa3, 0x6f, 0x60, 0x5c, 0xdc, 0xef, 0x90, 0xde, 0xee, 0xa4, 0xf3, 0x0a, - 0x19, 0x5f, 0x8a, 0xb4, 0x11, 0x7c, 0xfa, 0xad, 0x6f, 0x7f, 0xff, 0xeb, 0xd5, 0xf0, 0x12, 0xba, - 0x8a, 0x77, 0xb9, 0xf1, 0x8e, 0x99, 0x65, 0x58, 0x79, 0x1d, 0x46, 0xbf, 0x6a, 0x10, 0x53, 0x6d, - 0x4f, 0xe8, 0x8e, 0x32, 0x50, 0xf4, 0xd9, 0x1f, 0x5f, 0xef, 0x6f, 0x90, 0xc4, 0x7d, 0xc0, 0x71, - 0x3f, 0x44, 0x77, 0x25, 0xee, 0x6d, 0x15, 0xaf, 0x7a, 0xc7, 0xc5, 0x55, 0xdb, 0xaa, 0xa1, 0x5f, - 0x34, 0xb8, 0xa4, 0x8a, 0x90, 0x2e, 0x14, 0x42, 0x74, 0x44, 0xdf, 0x00, 0x42, 0x74, 0x74, 0x39, - 0xc6, 0xf5, 0x7b, 0x5c, 0xc7, 0x3a, 0x5a, 0xeb, 0x5f, 0x07, 0xfa, 0x47, 0x83, 0xcb, 0x11, 0x67, - 0x0f, 0xba, 0xd7, 0x0f, 0x51, 0xf0, 0x10, 0x8e, 0xdf, 0x3f, 0xd3, 0x58, 0x29, 0x6a, 0x9f, 0x8b, - 0x7a, 0x81, 0xbe, 0xec, 0x5f, 0x94, 0xb1, 0x4f, 0x5d, 0xa3, 0xde, 0x85, 0xab, 0xfe, 0x52, 0xad, - 0xe1, 0xaa, 0x65, 0x56, 0x6a, 0xb8, 0x2a, 0x97, 0x65, 0x0d, 0x57, 0xf9, 0x59, 0x5e, 0x43, 0xbf, - 0x69, 0x10, 0x53, 0xed, 0x87, 0xe1, 0x85, 0x18, 0xb1, 0xf7, 0x87, 0x17, 0x62, 0xd4, 0x06, 0xae, - 0x6f, 0x73, 0xad, 0x1b, 0x28, 0x1d, 0xa5, 0x55, 0xbd, 0xc5, 0xe3, 0x6a, 0xeb, 0x01, 0x2a, 0x4a, - 0x52, 0x15, 0x2b, 0xb2, 0x24, 0xfb, 0x57, 0xd4, 0xe5, 0x48, 0xea, 0xad, 0x24, 0xd5, 0x8a, 0xd0, - 0x4f, 0x1a, 0x5c, 0x08, 0x3c, 0x0b, 0xd0, 0x6a, 0x58, 0x56, 0x55, 0x6f, 0xbc, 0xf8, 0xed, 0x1e, - 0xad, 0x25, 0xea, 0x5d, 0x8e, 0x9a, 0x42, 0x38, 0x0a, 0x35, 0xf8, 0x98, 0x11, 0xab, 0xff, 0x47, - 0x0d, 0x66, 0x02, 0x2e, 0xeb, 0x39, 0x5e, 0x0d, 0x4b, 0x57, 0x1f, 0xa8, 0x61, 0x6f, 0x4a, 0x7d, - 0x8d, 0xa3, 0xae, 0xa2, 0xe5, 0xde, 0x51, 0xd1, 0xb1, 0x06, 0x17, 0x15, 0x2f, 0x35, 0x84, 0x95, - 0xa1, 0xc3, 0x1f, 0x86, 0xf1, 0xf7, 0x7b, 0x1f, 0x20, 0x71, 0x9f, 0x72, 0xdc, 0x2d, 0xb4, 0xd9, - 0x3b, 0xae, 0x91, 0xad, 0x18, 0x8d, 0xe7, 0x27, 0xae, 0xb6, 0xbe, 0x44, 0x6b, 0xe8, 0x07, 0x0d, - 0xa0, 0x79, 0x2c, 0xa2, 0xeb, 0x4a, 0xa0, 0x8e, 0x9b, 0x45, 0xfc, 0x46, 0x57, 0x3b, 0xc9, 0xbb, - 0xc1, 0x79, 0x3f, 0x42, 0xf7, 0x55, 0xbc, 0xcc, 0x33, 0x0f, 0x89, 0x9d, 0xcd, 0xe1, 0x02, 0x2b, - 0x1a, 0x12, 0x3a, 0xb8, 0xbf, 0xd4, 0x6f, 0x25, 0x35, 0xf4, 0x4a, 0x83, 0xa9, 0x96, 0xb3, 0x1b, - 0x75, 0x8b, 0xde, 0x38, 0x61, 0x6f, 0x76, 0x37, 0x94, 0x9c, 0x29, 0xce, 0xb9, 0x82, 0x6e, 0xf5, - 0xca, 0xc9, 0x1e, 0x3e, 0x3e, 0x3e, 0x49, 0x68, 0xaf, 0x4f, 0x12, 0xda, 0x9f, 0x27, 0x09, 0xed, - 0xfb, 0xd3, 0xc4, 0xd0, 0xeb, 0xd3, 0xc4, 0xd0, 0xdb, 0xd3, 0xc4, 0xd0, 0x5e, 0x2a, 0x6f, 0x7b, - 0x07, 0xe5, 0x6c, 0x32, 0x47, 0x8b, 0x2a, 0x77, 0x47, 0xa9, 0x75, 0xfc, 0x55, 0x63, 0xb2, 0xbc, - 0x4a, 0x89, 0xb0, 0xec, 0x38, 0xff, 0x5f, 0xd3, 0x9d, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x8a, - 0x27, 0xc7, 0xd0, 0x34, 0x13, 0x00, 0x00, + // 1193 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x98, 0x4f, 0x4f, 0x1b, 0xc7, + 0x1b, 0xc7, 0x59, 0xfe, 0x86, 0x87, 0x84, 0x1f, 0xbf, 0x89, 0x45, 0xa8, 0x43, 0x0c, 0x59, 0xa2, + 0xfc, 0x01, 0xe2, 0xa9, 0x09, 0x51, 0xd4, 0x44, 0x55, 0xe4, 0xd0, 0x12, 0x68, 0x48, 0x94, 0x9a, + 0xe6, 0x82, 0xd4, 0x6e, 0xd6, 0xde, 0xc1, 0xac, 0xb0, 0x77, 0x9c, 0x9d, 0x35, 0xaa, 0xeb, 0xfa, + 0xd2, 0x53, 0x8f, 0x95, 0xf2, 0x0e, 0x5a, 0xf5, 0x1d, 0xf4, 0x05, 0x54, 0x3d, 0x71, 0xe8, 0x21, + 0x51, 0x2f, 0x39, 0x55, 0x15, 0xf4, 0x25, 0xf4, 0x5c, 0x55, 0x9e, 0x99, 0xb5, 0xbd, 0xf6, 0xec, + 0xda, 0x46, 0xee, 0xa1, 0x27, 0xbc, 0x33, 0xcf, 0x3c, 0xcf, 0xe7, 0xfb, 0xcc, 0x33, 0xff, 0x80, + 0x38, 0xf3, 0x5c, 0xdb, 0x22, 0xd8, 0x25, 0x39, 0xea, 0x5a, 0x0c, 0xbf, 0x2a, 0x13, 0xb7, 0x92, + 0x2c, 0xb9, 0xd4, 0xa3, 0x68, 0x5a, 0xf4, 0x25, 0x65, 0x5f, 0x7c, 0xbe, 0xcd, 0x56, 0xfe, 0x15, + 0xd6, 0xf1, 0xcb, 0x6d, 0xbd, 0x25, 0xd3, 0x35, 0x8b, 0x7e, 0x67, 0x2c, 0x4f, 0xf3, 0x94, 0xff, + 0xc4, 0xf5, 0x5f, 0xb2, 0x75, 0x3e, 0x4f, 0x69, 0xbe, 0x40, 0xb0, 0x59, 0xb2, 0xb1, 0xe9, 0x38, + 0xd4, 0x33, 0x3d, 0x9b, 0x3a, 0xfe, 0x98, 0xe5, 0x1c, 0x65, 0x45, 0xca, 0x70, 0xd6, 0x64, 0x44, + 0x70, 0xe1, 0xa3, 0x54, 0x96, 0x78, 0x66, 0x0a, 0x97, 0xcc, 0xbc, 0xed, 0x70, 0x63, 0x61, 0xab, + 0xc7, 0x00, 0x7d, 0x5a, 0xb7, 0x78, 0xce, 0x83, 0x66, 0xc8, 0xab, 0x32, 0x61, 0x9e, 0xfe, 0x04, + 0x2e, 0x06, 0x5a, 0x59, 0x89, 0x3a, 0x8c, 0xa0, 0x75, 0x18, 0x17, 0x70, 0x73, 0xda, 0xa2, 0x76, + 0x73, 0x6a, 0x6d, 0x36, 0x19, 0x14, 0x9a, 0x14, 0xf6, 0x8f, 0x46, 0x8f, 0x7f, 0x5f, 0x18, 0xca, + 0x48, 0x5b, 0x3d, 0x09, 0xf3, 0xdc, 0xd9, 0x63, 0xe2, 0x7d, 0x44, 0x4a, 0x94, 0xd9, 0x5e, 0x86, + 0x9b, 0xcb, 0x60, 0x68, 0x1a, 0x86, 0x6d, 0x8b, 0x7b, 0x1c, 0xcd, 0x0c, 0xdb, 0x96, 0x7e, 0x08, + 0x57, 0x42, 0xec, 0x25, 0xc6, 0x27, 0x30, 0x6d, 0x89, 0x0e, 0x43, 0x04, 0x96, 0x38, 0x57, 0xda, + 0x71, 0x02, 0xc3, 0x25, 0xd5, 0x05, 0xab, 0xb5, 0x51, 0xdf, 0x97, 0x70, 0xe9, 0x42, 0x41, 0x09, + 0xb7, 0x09, 0xd0, 0xcc, 0x99, 0x8c, 0x73, 0x3d, 0x29, 0x12, 0x9c, 0xac, 0x27, 0x38, 0x29, 0x26, + 0x5e, 0x26, 0x38, 0xf9, 0xdc, 0xcc, 0x13, 0x39, 0x36, 0xd3, 0x32, 0x52, 0xff, 0x49, 0x93, 0xaa, + 0x3a, 0x03, 0x45, 0xa8, 0x1a, 0x39, 0x9b, 0x2a, 0xf4, 0x38, 0x40, 0x3d, 0xcc, 0xa9, 0x6f, 0x74, + 0xa5, 0x16, 0x20, 0x01, 0xec, 0x0d, 0x58, 0xe0, 0xd4, 0xc1, 0x98, 0x95, 0x2d, 0xca, 0x3c, 0x3f, + 0x43, 0x8b, 0x70, 0xfe, 0x80, 0x32, 0xcf, 0xf8, 0x8a, 0x3a, 0xc4, 0x90, 0x13, 0x39, 0x99, 0x81, + 0x7a, 0xdb, 0x1e, 0x75, 0xc8, 0xb6, 0xa5, 0x3b, 0xb0, 0x18, 0xee, 0x64, 0xf0, 0xea, 0xf5, 0xbb, + 0xb0, 0xe4, 0x17, 0xd0, 0x0b, 0x46, 0xdc, 0x0c, 0xb1, 0x48, 0xb1, 0x54, 0x97, 0x13, 0x56, 0x77, + 0x93, 0xbc, 0xee, 0xbe, 0xd5, 0xe0, 0x5a, 0xf4, 0x38, 0xc9, 0xfa, 0x12, 0x66, 0xcb, 0x8c, 0xb8, + 0x86, 0xdb, 0x30, 0x08, 0xd6, 0xe1, 0xb5, 0x76, 0x66, 0x95, 0x37, 0x89, 0x1e, 0x2b, 0x2b, 0xfa, + 0xf4, 0xa2, 0x54, 0x90, 0x2e, 0x14, 0xa2, 0x14, 0x0c, 0xaa, 0x38, 0xdf, 0xfa, 0xca, 0x43, 0xe3, + 0xf5, 0xa0, 0x7c, 0x64, 0x10, 0xca, 0x07, 0x57, 0xb9, 0x6f, 0x35, 0x58, 0x8e, 0xd2, 0xb4, 0x49, + 0x5d, 0xd1, 0x2c, 0x52, 0xf9, 0x1e, 0x9c, 0xcb, 0x1d, 0x98, 0xb6, 0xd3, 0xac, 0xe0, 0x09, 0xfe, + 0xbd, 0x6d, 0xa1, 0x19, 0x18, 0xb1, 0xcc, 0x0a, 0x67, 0x19, 0xcd, 0xd4, 0x7f, 0xa2, 0x39, 0x98, + 0x30, 0x2d, 0xcb, 0x25, 0x8c, 0xcd, 0x8d, 0x08, 0x5b, 0xf9, 0x89, 0x62, 0x30, 0x56, 0xb0, 0x8b, + 0xb6, 0x37, 0x37, 0xca, 0xad, 0xc5, 0x47, 0xdb, 0x3c, 0x8d, 0x9d, 0x79, 0x9e, 0xde, 0x69, 0xb0, + 0xd2, 0x93, 0xa6, 0xff, 0xde, 0x74, 0x6d, 0x35, 0xd7, 0xec, 0xc7, 0x25, 0x9a, 0x3b, 0x78, 0xe1, + 0x64, 0xa9, 0x63, 0xd9, 0x4e, 0x3e, 0x58, 0xf1, 0x57, 0xe1, 0x3c, 0xa9, 0x77, 0x1b, 0x4e, 0xb9, + 0x98, 0x25, 0xae, 0x3c, 0x35, 0xa6, 0x78, 0xdb, 0x33, 0xde, 0x14, 0x58, 0xc6, 0x6a, 0x57, 0xcd, + 0xec, 0x08, 0x5f, 0x65, 0xdf, 0xa0, 0xcb, 0x32, 0x56, 0x79, 0xf3, 0xb3, 0x43, 0x14, 0x7d, 0xad, + 0xcb, 0x38, 0x4a, 0xd4, 0xbf, 0xb1, 0x8c, 0xcf, 0xac, 0x7c, 0x64, 0x10, 0xca, 0x07, 0x57, 0x17, + 0xdb, 0x30, 0xcb, 0x25, 0xed, 0xec, 0x3e, 0x6d, 0xec, 0xfc, 0x5d, 0x57, 0x6c, 0x0c, 0xc6, 0x2c, + 0xe2, 0xd0, 0x22, 0x0f, 0x3c, 0x99, 0x11, 0x1f, 0xfa, 0x1e, 0x5c, 0xea, 0x70, 0x25, 0x13, 0xf2, + 0x10, 0x26, 0xe4, 0x11, 0x22, 0xd3, 0xbf, 0xd0, 0x9e, 0x81, 0x9d, 0xdd, 0xa7, 0x9f, 0xd1, 0x43, + 0xe2, 0xc8, 0x91, 0x52, 0xbc, 0x3f, 0x4a, 0xaf, 0x74, 0xf8, 0x66, 0x3d, 0x70, 0xae, 0xc0, 0xff, + 0x8f, 0xcc, 0x82, 0x6d, 0x99, 0x1e, 0x75, 0x0d, 0x7f, 0x47, 0x11, 0xcc, 0x33, 0x8d, 0x8e, 0xb4, + 0xdc, 0x5a, 0x66, 0x61, 0x9c, 0x79, 0xa6, 0x57, 0xf6, 0xf7, 0x1c, 0xf9, 0xa5, 0x7f, 0x0e, 0x73, + 0x9d, 0xa1, 0xa5, 0xae, 0x34, 0x9c, 0x93, 0x84, 0x4c, 0x4e, 0x6d, 0x8f, 0xc2, 0x1a, 0xc3, 0xd6, + 0xfe, 0xfa, 0x1f, 0x8c, 0x71, 0xff, 0xe8, 0x6b, 0x18, 0x17, 0xf7, 0x3b, 0xa4, 0xb7, 0x3b, 0xe9, + 0xbc, 0x42, 0xc6, 0x97, 0x22, 0x6d, 0x04, 0x9f, 0x7e, 0xeb, 0x9b, 0xdf, 0xfe, 0x7c, 0x3d, 0xbc, + 0x84, 0xae, 0xe2, 0x5d, 0x6e, 0xbc, 0x63, 0x66, 0x19, 0x56, 0x5e, 0x87, 0xd1, 0x2f, 0x1a, 0xc4, + 0x54, 0xdb, 0x13, 0xba, 0xa3, 0x0c, 0x14, 0x7d, 0xf6, 0xc7, 0xd7, 0xfb, 0x1b, 0x24, 0x71, 0x1f, + 0x72, 0xdc, 0x0f, 0xd0, 0x3d, 0x89, 0x7b, 0x5b, 0xc5, 0xab, 0xde, 0x71, 0x71, 0xd5, 0xb6, 0x6a, + 0xe8, 0x67, 0x0d, 0x2e, 0xa9, 0x22, 0xa4, 0x0b, 0x85, 0x10, 0x1d, 0xd1, 0x37, 0x80, 0x10, 0x1d, + 0x5d, 0x8e, 0x71, 0xfd, 0x3e, 0xd7, 0xb1, 0x8e, 0xd6, 0xfa, 0xd7, 0x81, 0xfe, 0xd6, 0xe0, 0x72, + 0xc4, 0xd9, 0x83, 0xee, 0xf7, 0x43, 0x14, 0x3c, 0x84, 0xe3, 0x0f, 0xce, 0x34, 0x56, 0x8a, 0xda, + 0xe7, 0xa2, 0x5e, 0xa2, 0x2f, 0xfa, 0x17, 0x65, 0xec, 0x53, 0xd7, 0xa8, 0x77, 0xe1, 0xaa, 0xbf, + 0x54, 0x6b, 0xb8, 0x6a, 0x99, 0x95, 0x1a, 0xae, 0xca, 0x65, 0x59, 0xc3, 0x55, 0x7e, 0x96, 0xd7, + 0xd0, 0xaf, 0x1a, 0xc4, 0x54, 0xfb, 0x61, 0x78, 0x21, 0x46, 0xec, 0xfd, 0xe1, 0x85, 0x18, 0xb5, + 0x81, 0xeb, 0xdb, 0x5c, 0xeb, 0x06, 0x4a, 0x47, 0x69, 0x55, 0x6f, 0xf1, 0xb8, 0xda, 0x7a, 0x80, + 0x8a, 0x92, 0x54, 0xc5, 0x8a, 0x2c, 0xc9, 0xfe, 0x15, 0x75, 0x39, 0x92, 0x7a, 0x2b, 0x49, 0xb5, + 0x22, 0xf4, 0xa3, 0x06, 0x17, 0x02, 0xcf, 0x02, 0xb4, 0x1a, 0x96, 0x55, 0xd5, 0x1b, 0x2f, 0x7e, + 0xbb, 0x47, 0x6b, 0x89, 0x7a, 0x8f, 0xa3, 0xa6, 0x10, 0x8e, 0x42, 0x0d, 0x3e, 0x66, 0xc4, 0xea, + 0xff, 0x41, 0x83, 0x99, 0x80, 0xcb, 0x7a, 0x8e, 0x57, 0xc3, 0xd2, 0xd5, 0x07, 0x6a, 0xd8, 0x9b, + 0x52, 0x5f, 0xe3, 0xa8, 0xab, 0x68, 0xb9, 0x77, 0x54, 0x74, 0xac, 0xc1, 0x45, 0xc5, 0x4b, 0x0d, + 0x61, 0x65, 0xe8, 0xf0, 0x87, 0x61, 0xfc, 0xfd, 0xde, 0x07, 0x48, 0xdc, 0x67, 0x1c, 0x77, 0x0b, + 0x6d, 0xf6, 0x8e, 0x6b, 0x64, 0x2b, 0x46, 0xe3, 0xf9, 0x89, 0xab, 0xad, 0x2f, 0xd1, 0x1a, 0xfa, + 0x5e, 0x03, 0x68, 0x1e, 0x8b, 0xe8, 0xba, 0x12, 0xa8, 0xe3, 0x66, 0x11, 0xbf, 0xd1, 0xd5, 0x4e, + 0xf2, 0x6e, 0x70, 0xde, 0x0f, 0xd1, 0x03, 0x15, 0x2f, 0xf3, 0xcc, 0x43, 0x62, 0x67, 0x73, 0xb8, + 0xc0, 0x8a, 0x86, 0x84, 0x0e, 0xee, 0x2f, 0xf5, 0x5b, 0x49, 0x0d, 0xbd, 0xd6, 0x60, 0xaa, 0xe5, + 0xec, 0x46, 0xdd, 0xa2, 0x37, 0x4e, 0xd8, 0x9b, 0xdd, 0x0d, 0x25, 0x67, 0x8a, 0x73, 0xae, 0xa0, + 0x5b, 0xbd, 0x72, 0xb2, 0x47, 0x4f, 0x8e, 0x4f, 0x12, 0xda, 0x9b, 0x93, 0x84, 0xf6, 0xc7, 0x49, + 0x42, 0xfb, 0xee, 0x34, 0x31, 0xf4, 0xe6, 0x34, 0x31, 0xf4, 0xee, 0x34, 0x31, 0xb4, 0x97, 0xca, + 0xdb, 0xde, 0x41, 0x39, 0x9b, 0xcc, 0xd1, 0xa2, 0xca, 0xdd, 0x51, 0xea, 0x2e, 0xfe, 0xb2, 0x31, + 0x59, 0x5e, 0xa5, 0x44, 0x58, 0x76, 0x9c, 0xff, 0xaf, 0xe9, 0xce, 0x3f, 0x01, 0x00, 0x00, 0xff, + 0xff, 0x84, 0xb7, 0x4c, 0x75, 0x34, 0x13, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/records/types/records.pb.go b/x/records/types/records.pb.go index 5253725534..e22c5dcf4a 100644 --- a/x/records/types/records.pb.go +++ b/x/records/types/records.pb.go @@ -589,7 +589,7 @@ var fileDescriptor_295ee594cc85d8ca = []byte{ // 999 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x56, 0xc1, 0x8e, 0xda, 0x46, 0x18, 0x5e, 0x83, 0xd7, 0xc0, 0x9f, 0xc0, 0x7a, 0x67, 0x49, 0xe2, 0xa5, 0x0d, 0x21, 0xa8, 0x89, - 0x90, 0xaa, 0x98, 0xee, 0xb6, 0xea, 0xa1, 0xaa, 0xaa, 0x9a, 0xc5, 0xbb, 0x71, 0x42, 0x60, 0x6b, + 0x90, 0xaa, 0x98, 0xee, 0x56, 0xed, 0xa1, 0xaa, 0xaa, 0x9a, 0xc5, 0xbb, 0x71, 0x42, 0x60, 0x6b, 0xa0, 0xa9, 0xf6, 0x50, 0xcb, 0xd8, 0xa3, 0x65, 0xb4, 0xc1, 0x83, 0x3c, 0x06, 0xb5, 0xbd, 0xf4, 0x15, 0x7a, 0xe8, 0x2b, 0x54, 0x7d, 0x82, 0xbe, 0x43, 0x4e, 0x55, 0x8e, 0x55, 0x0f, 0x51, 0xb5, 0x7b, 0xe8, 0x6b, 0x54, 0x1e, 0x1b, 0x03, 0x26, 0x69, 0xa4, 0x6d, 0x4f, 0x30, 0xdf, 0x37, 0xf3, @@ -648,8 +648,8 @@ var fileDescriptor_295ee594cc85d8ca = []byte{ 0xd4, 0x7a, 0xfa, 0xf2, 0xb2, 0x2a, 0xbc, 0xba, 0xac, 0x0a, 0x7f, 0x5d, 0x56, 0x85, 0x9f, 0xae, 0xaa, 0x5b, 0xaf, 0xae, 0xaa, 0x5b, 0x7f, 0x5c, 0x55, 0xb7, 0xce, 0x0e, 0x56, 0xd4, 0xef, 0x73, 0x2d, 0x1e, 0x75, 0xec, 0x11, 0x6b, 0xc6, 0x1f, 0x2e, 0xf3, 0x83, 0x4f, 0x9a, 0xdf, 0x25, 0x9f, - 0x2f, 0xfc, 0x32, 0x46, 0x12, 0xff, 0xee, 0xf8, 0xf8, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x96, - 0xa6, 0x7d, 0xe0, 0xdd, 0x08, 0x00, 0x00, + 0x2f, 0xfc, 0x32, 0x46, 0x12, 0xff, 0xee, 0xf8, 0xf8, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x98, + 0x36, 0xf6, 0x45, 0xdd, 0x08, 0x00, 0x00, } func (m *UserRedemptionRecord) Marshal() (dAtA []byte, err error) { diff --git a/x/stakeibc/client/cli/query.go b/x/stakeibc/client/cli/query.go index 00a7d8db56..070d267e12 100644 --- a/x/stakeibc/client/cli/query.go +++ b/x/stakeibc/client/cli/query.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) // GetQueryCmd returns the cli query commands for this module diff --git a/x/stakeibc/client/cli/query_epoch_tracker.go b/x/stakeibc/client/cli/query_epoch_tracker.go index 7891ee77ca..c29a3d3f82 100644 --- a/x/stakeibc/client/cli/query_epoch_tracker.go +++ b/x/stakeibc/client/cli/query_epoch_tracker.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func CmdListEpochTracker() *cobra.Command { diff --git a/x/stakeibc/client/cli/query_epoch_tracker_test.go b/x/stakeibc/client/cli/query_epoch_tracker_test.go index 4f09f3a82e..a080857865 100644 --- a/x/stakeibc/client/cli/query_epoch_tracker_test.go +++ b/x/stakeibc/client/cli/query_epoch_tracker_test.go @@ -11,9 +11,9 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/Stride-Labs/stride/v14/testutil/network" - "github.com/Stride-Labs/stride/v14/x/stakeibc/client/cli" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/testutil/network" + "github.com/Stride-Labs/stride/v15/x/stakeibc/client/cli" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) // Prevent strconv unused error diff --git a/x/stakeibc/client/cli/query_host_zone.go b/x/stakeibc/client/cli/query_host_zone.go index 4a281043e1..254896db6d 100644 --- a/x/stakeibc/client/cli/query_host_zone.go +++ b/x/stakeibc/client/cli/query_host_zone.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func CmdListHostZone() *cobra.Command { diff --git a/x/stakeibc/client/cli/query_module_address.go b/x/stakeibc/client/cli/query_module_address.go index 378a7f7971..178e181470 100644 --- a/x/stakeibc/client/cli/query_module_address.go +++ b/x/stakeibc/client/cli/query_module_address.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) var _ = strconv.Itoa(0) diff --git a/x/stakeibc/client/cli/query_next_packet_sequence.go b/x/stakeibc/client/cli/query_next_packet_sequence.go index 70efcae51a..f83c96c1c0 100644 --- a/x/stakeibc/client/cli/query_next_packet_sequence.go +++ b/x/stakeibc/client/cli/query_next_packet_sequence.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func CmdNextPacketSequence() *cobra.Command { diff --git a/x/stakeibc/client/cli/query_params.go b/x/stakeibc/client/cli/query_params.go index e66617ee3f..6e46f36bcb 100644 --- a/x/stakeibc/client/cli/query_params.go +++ b/x/stakeibc/client/cli/query_params.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func CmdQueryParams() *cobra.Command { diff --git a/x/stakeibc/client/cli/query_register_ica.go b/x/stakeibc/client/cli/query_register_ica.go index e19d283f55..bb531b586f 100644 --- a/x/stakeibc/client/cli/query_register_ica.go +++ b/x/stakeibc/client/cli/query_register_ica.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func CmdShowInterchainAccount() *cobra.Command { diff --git a/x/stakeibc/client/cli/query_validator.go b/x/stakeibc/client/cli/query_validator.go index f36039daa0..1bd7aef4a3 100644 --- a/x/stakeibc/client/cli/query_validator.go +++ b/x/stakeibc/client/cli/query_validator.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func CmdShowValidators() *cobra.Command { diff --git a/x/stakeibc/client/cli/tx.go b/x/stakeibc/client/cli/tx.go index eb78bb5340..c58b818b89 100644 --- a/x/stakeibc/client/cli/tx.go +++ b/x/stakeibc/client/cli/tx.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) var DefaultRelativePacketTimeoutTimestamp = cast.ToUint64((time.Duration(10) * time.Minute).Nanoseconds()) diff --git a/x/stakeibc/client/cli/tx_add_validators.go b/x/stakeibc/client/cli/tx_add_validators.go index fba4faeeec..b2e7979cdd 100644 --- a/x/stakeibc/client/cli/tx_add_validators.go +++ b/x/stakeibc/client/cli/tx_add_validators.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/tx" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) type ValidatorsList struct { diff --git a/x/stakeibc/client/cli/tx_add_validators_proposal.go b/x/stakeibc/client/cli/tx_add_validators_proposal.go index c9bf3e06b6..2e63a99b8e 100644 --- a/x/stakeibc/client/cli/tx_add_validators_proposal.go +++ b/x/stakeibc/client/cli/tx_add_validators_proposal.go @@ -18,7 +18,7 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func parseAddValidatorsProposalFile(cdc codec.JSONCodec, proposalFile string) (proposal types.AddValidatorsProposal, err error) { diff --git a/x/stakeibc/client/cli/tx_calibrate_delegation.go b/x/stakeibc/client/cli/tx_calibrate_delegation.go index 42df00e22a..72d58a0d3a 100644 --- a/x/stakeibc/client/cli/tx_calibrate_delegation.go +++ b/x/stakeibc/client/cli/tx_calibrate_delegation.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/tx" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func CmdCalibrateDelegation() *cobra.Command { diff --git a/x/stakeibc/client/cli/tx_change_validator_weight.go b/x/stakeibc/client/cli/tx_change_validator_weight.go index cfd3ae757d..3d7dc6acf1 100644 --- a/x/stakeibc/client/cli/tx_change_validator_weight.go +++ b/x/stakeibc/client/cli/tx_change_validator_weight.go @@ -9,7 +9,7 @@ import ( "github.com/spf13/cast" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) var _ = strconv.Itoa(0) diff --git a/x/stakeibc/client/cli/tx_claim_undelegated_tokens.go b/x/stakeibc/client/cli/tx_claim_undelegated_tokens.go index 140272777c..1b7b1f352b 100644 --- a/x/stakeibc/client/cli/tx_claim_undelegated_tokens.go +++ b/x/stakeibc/client/cli/tx_claim_undelegated_tokens.go @@ -9,7 +9,7 @@ import ( "github.com/spf13/cast" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) var _ = strconv.Itoa(0) diff --git a/x/stakeibc/client/cli/tx_clear_balance.go b/x/stakeibc/client/cli/tx_clear_balance.go index 2f5a0dcee3..88576f2c8d 100644 --- a/x/stakeibc/client/cli/tx_clear_balance.go +++ b/x/stakeibc/client/cli/tx_clear_balance.go @@ -12,7 +12,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) var _ = strconv.Itoa(0) diff --git a/x/stakeibc/client/cli/tx_delete_validator.go b/x/stakeibc/client/cli/tx_delete_validator.go index 5e92a3aa6b..cb75dbcd18 100644 --- a/x/stakeibc/client/cli/tx_delete_validator.go +++ b/x/stakeibc/client/cli/tx_delete_validator.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/tx" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func CmdDeleteValidator() *cobra.Command { diff --git a/x/stakeibc/client/cli/tx_liquid_stake.go b/x/stakeibc/client/cli/tx_liquid_stake.go index e755267f29..8ce3c50d65 100644 --- a/x/stakeibc/client/cli/tx_liquid_stake.go +++ b/x/stakeibc/client/cli/tx_liquid_stake.go @@ -12,7 +12,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) var _ = strconv.Itoa(0) diff --git a/x/stakeibc/client/cli/tx_lsm_liquid_stake.go b/x/stakeibc/client/cli/tx_lsm_liquid_stake.go index 5fabb919e5..239f26af9c 100644 --- a/x/stakeibc/client/cli/tx_lsm_liquid_stake.go +++ b/x/stakeibc/client/cli/tx_lsm_liquid_stake.go @@ -10,7 +10,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func CmdLSMLiquidStake() *cobra.Command { diff --git a/x/stakeibc/client/cli/tx_rebalance_validators.go b/x/stakeibc/client/cli/tx_rebalance_validators.go index 23baae933a..ff9306c7bd 100644 --- a/x/stakeibc/client/cli/tx_rebalance_validators.go +++ b/x/stakeibc/client/cli/tx_rebalance_validators.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/tx" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) var _ = strconv.Itoa(0) diff --git a/x/stakeibc/client/cli/tx_redeem_stake.go b/x/stakeibc/client/cli/tx_redeem_stake.go index ed5a9597d2..6fd8c26b33 100644 --- a/x/stakeibc/client/cli/tx_redeem_stake.go +++ b/x/stakeibc/client/cli/tx_redeem_stake.go @@ -12,7 +12,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) var _ = strconv.Itoa(0) diff --git a/x/stakeibc/client/cli/tx_register_host_zone.go b/x/stakeibc/client/cli/tx_register_host_zone.go index 38072bd1c7..d0456a894f 100644 --- a/x/stakeibc/client/cli/tx_register_host_zone.go +++ b/x/stakeibc/client/cli/tx_register_host_zone.go @@ -9,7 +9,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) const ( diff --git a/x/stakeibc/client/cli/tx_restore_interchain_account.go b/x/stakeibc/client/cli/tx_restore_interchain_account.go index 2022888103..33ebc3396c 100644 --- a/x/stakeibc/client/cli/tx_restore_interchain_account.go +++ b/x/stakeibc/client/cli/tx_restore_interchain_account.go @@ -10,7 +10,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/tx" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func CmdRestoreInterchainAccount() *cobra.Command { diff --git a/x/stakeibc/client/cli/tx_toggle_lsm_proposal.go b/x/stakeibc/client/cli/tx_toggle_lsm_proposal.go index 9615b48852..733822d7f0 100644 --- a/x/stakeibc/client/cli/tx_toggle_lsm_proposal.go +++ b/x/stakeibc/client/cli/tx_toggle_lsm_proposal.go @@ -16,7 +16,7 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func parseToggleLSMProposalFile(cdc codec.JSONCodec, proposalFile string) (proposal types.ToggleLSMProposal, err error) { diff --git a/x/stakeibc/client/cli/tx_undelegate_host.go b/x/stakeibc/client/cli/tx_undelegate_host.go index f928937d35..eaf516d10b 100644 --- a/x/stakeibc/client/cli/tx_undelegate_host.go +++ b/x/stakeibc/client/cli/tx_undelegate_host.go @@ -11,7 +11,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) var _ = strconv.Itoa(0) diff --git a/x/stakeibc/client/cli/tx_update_delegation.go b/x/stakeibc/client/cli/tx_update_delegation.go index 5fe4dc90b3..0c52fdf1d6 100644 --- a/x/stakeibc/client/cli/tx_update_delegation.go +++ b/x/stakeibc/client/cli/tx_update_delegation.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/tx" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) var _ = strconv.Itoa(0) diff --git a/x/stakeibc/client/cli/tx_update_inner_redemption_rate_bounds.go b/x/stakeibc/client/cli/tx_update_inner_redemption_rate_bounds.go index 216cf92f9b..227eded745 100644 --- a/x/stakeibc/client/cli/tx_update_inner_redemption_rate_bounds.go +++ b/x/stakeibc/client/cli/tx_update_inner_redemption_rate_bounds.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/spf13/cobra" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func CmdUpdateInnerRedemptionRateBounds() *cobra.Command { diff --git a/x/stakeibc/client/proposal_handler.go b/x/stakeibc/client/proposal_handler.go index 5f9c1ce50b..db056c22ed 100644 --- a/x/stakeibc/client/proposal_handler.go +++ b/x/stakeibc/client/proposal_handler.go @@ -1,7 +1,7 @@ package client import ( - "github.com/Stride-Labs/stride/v14/x/stakeibc/client/cli" + "github.com/Stride-Labs/stride/v15/x/stakeibc/client/cli" govclient "github.com/cosmos/cosmos-sdk/x/gov/client" ) diff --git a/x/stakeibc/genesis.go b/x/stakeibc/genesis.go index 1c3c10b0d5..a6c2ddf853 100644 --- a/x/stakeibc/genesis.go +++ b/x/stakeibc/genesis.go @@ -3,8 +3,8 @@ package stakeibc import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) // InitGenesis initializes the capability module's state from a provided genesis diff --git a/x/stakeibc/genesis_test.go b/x/stakeibc/genesis_test.go index bd6cd25caf..27cd6f2ff0 100644 --- a/x/stakeibc/genesis_test.go +++ b/x/stakeibc/genesis_test.go @@ -5,10 +5,10 @@ import ( "github.com/stretchr/testify/require" - keepertest "github.com/Stride-Labs/stride/v14/testutil/keeper" - "github.com/Stride-Labs/stride/v14/testutil/nullify" - "github.com/Stride-Labs/stride/v14/x/stakeibc" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + keepertest "github.com/Stride-Labs/stride/v15/testutil/keeper" + "github.com/Stride-Labs/stride/v15/testutil/nullify" + "github.com/Stride-Labs/stride/v15/x/stakeibc" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func TestGenesis(t *testing.T) { diff --git a/x/stakeibc/handler.go b/x/stakeibc/handler.go index 809d604611..ba216c46bd 100644 --- a/x/stakeibc/handler.go +++ b/x/stakeibc/handler.go @@ -9,8 +9,8 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" - "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) // Handles stakeibc transactions diff --git a/x/stakeibc/ibc_middleware.go b/x/stakeibc/ibc_middleware.go index a9b0f26847..7f3f3c2e01 100644 --- a/x/stakeibc/ibc_middleware.go +++ b/x/stakeibc/ibc_middleware.go @@ -11,8 +11,8 @@ import ( porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" - "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) var _ porttypes.Middleware = &IBCMiddleware{} diff --git a/x/stakeibc/keeper/abci.go b/x/stakeibc/keeper/abci.go index 63d6f5d68e..ce6d79824b 100644 --- a/x/stakeibc/keeper/abci.go +++ b/x/stakeibc/keeper/abci.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/stakeibc/keeper/consumer.go b/x/stakeibc/keeper/consumer.go index ec6df96e90..56b4e43f7a 100644 --- a/x/stakeibc/keeper/consumer.go +++ b/x/stakeibc/keeper/consumer.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) // Register new stTokens to the consumer reward denom whitelist diff --git a/x/stakeibc/keeper/consumer_test.go b/x/stakeibc/keeper/consumer_test.go index 8fea68cef0..7b7c5012a2 100644 --- a/x/stakeibc/keeper/consumer_test.go +++ b/x/stakeibc/keeper/consumer_test.go @@ -4,7 +4,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" _ "github.com/stretchr/testify/suite" - stakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + stakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func (s *KeeperTestSuite) TestRegisterStTokenDenomsToWhitelist() { diff --git a/x/stakeibc/keeper/deposit_records.go b/x/stakeibc/keeper/deposit_records.go index b0a82e6738..d0a80a70a5 100644 --- a/x/stakeibc/keeper/deposit_records.go +++ b/x/stakeibc/keeper/deposit_records.go @@ -11,9 +11,9 @@ import ( clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" "github.com/spf13/cast" - "github.com/Stride-Labs/stride/v14/utils" - recordstypes "github.com/Stride-Labs/stride/v14/x/records/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/utils" + recordstypes "github.com/Stride-Labs/stride/v15/x/records/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) // Create a new deposit record for each host zone for the given epoch diff --git a/x/stakeibc/keeper/deposit_records_test.go b/x/stakeibc/keeper/deposit_records_test.go index b8c36ffcd6..d533827d75 100644 --- a/x/stakeibc/keeper/deposit_records_test.go +++ b/x/stakeibc/keeper/deposit_records_test.go @@ -10,10 +10,10 @@ import ( sdkmath "cosmossdk.io/math" - epochtypes "github.com/Stride-Labs/stride/v14/x/epochs/types" - icacallbackstypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" - recordstypes "github.com/Stride-Labs/stride/v14/x/records/types" - stakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + epochtypes "github.com/Stride-Labs/stride/v15/x/epochs/types" + icacallbackstypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" + recordstypes "github.com/Stride-Labs/stride/v15/x/records/types" + stakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) type TestDepositRecords struct { diff --git a/x/stakeibc/keeper/epoch_elapsed_shares_test.go b/x/stakeibc/keeper/epoch_elapsed_shares_test.go index 97d6855a28..8a21d654db 100644 --- a/x/stakeibc/keeper/epoch_elapsed_shares_test.go +++ b/x/stakeibc/keeper/epoch_elapsed_shares_test.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - epochtypes "github.com/Stride-Labs/stride/v14/x/epochs/types" - stakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + epochtypes "github.com/Stride-Labs/stride/v15/x/epochs/types" + stakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) // These are used to indicate that the value does not matter for the sake of the test diff --git a/x/stakeibc/keeper/epoch_tracker.go b/x/stakeibc/keeper/epoch_tracker.go index f25667a32f..5899392c9c 100644 --- a/x/stakeibc/keeper/epoch_tracker.go +++ b/x/stakeibc/keeper/epoch_tracker.go @@ -4,7 +4,7 @@ import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) // SetEpochTracker set a specific epochTracker in the store from its index diff --git a/x/stakeibc/keeper/epoch_tracker_test.go b/x/stakeibc/keeper/epoch_tracker_test.go index 279a789a6c..5494c0558a 100644 --- a/x/stakeibc/keeper/epoch_tracker_test.go +++ b/x/stakeibc/keeper/epoch_tracker_test.go @@ -7,10 +7,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - keepertest "github.com/Stride-Labs/stride/v14/testutil/keeper" - "github.com/Stride-Labs/stride/v14/testutil/nullify" - "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + keepertest "github.com/Stride-Labs/stride/v15/testutil/keeper" + "github.com/Stride-Labs/stride/v15/testutil/nullify" + "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) // Prevent strconv unused error diff --git a/x/stakeibc/keeper/events.go b/x/stakeibc/keeper/events.go index 2c1c14cd82..19ef490f32 100644 --- a/x/stakeibc/keeper/events.go +++ b/x/stakeibc/keeper/events.go @@ -4,8 +4,8 @@ import ( sdkmath "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - recordstypes "github.com/Stride-Labs/stride/v14/x/records/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + recordstypes "github.com/Stride-Labs/stride/v15/x/records/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) // Emits a successful liquid stake event, and displays metadata such as the stToken amount diff --git a/x/stakeibc/keeper/gov.go b/x/stakeibc/keeper/gov.go index 209823935f..e0f1b5bde3 100644 --- a/x/stakeibc/keeper/gov.go +++ b/x/stakeibc/keeper/gov.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func (k Keeper) AddValidatorsProposal(ctx sdk.Context, msg *types.AddValidatorsProposal) error { diff --git a/x/stakeibc/keeper/grpc_query.go b/x/stakeibc/keeper/grpc_query.go index da0679e758..d25971c44f 100644 --- a/x/stakeibc/keeper/grpc_query.go +++ b/x/stakeibc/keeper/grpc_query.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/stakeibc/keeper/grpc_query_address_unbondings.go b/x/stakeibc/keeper/grpc_query_address_unbondings.go index 8d0650abdd..6a10b5d1d9 100644 --- a/x/stakeibc/keeper/grpc_query_address_unbondings.go +++ b/x/stakeibc/keeper/grpc_query_address_unbondings.go @@ -12,8 +12,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - epochtypes "github.com/Stride-Labs/stride/v14/x/epochs/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + epochtypes "github.com/Stride-Labs/stride/v15/x/epochs/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) const nanosecondsInDay = 86400000000000 diff --git a/x/stakeibc/keeper/grpc_query_epoch_tracker.go b/x/stakeibc/keeper/grpc_query_epoch_tracker.go index 9675cb30c8..c2e8a424d7 100644 --- a/x/stakeibc/keeper/grpc_query_epoch_tracker.go +++ b/x/stakeibc/keeper/grpc_query_epoch_tracker.go @@ -7,7 +7,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func (k Keeper) EpochTrackerAll(c context.Context, req *types.QueryAllEpochTrackerRequest) (*types.QueryAllEpochTrackerResponse, error) { diff --git a/x/stakeibc/keeper/grpc_query_epoch_tracker_test.go b/x/stakeibc/keeper/grpc_query_epoch_tracker_test.go index 8988410b1b..4048e5841a 100644 --- a/x/stakeibc/keeper/grpc_query_epoch_tracker_test.go +++ b/x/stakeibc/keeper/grpc_query_epoch_tracker_test.go @@ -9,9 +9,9 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - keepertest "github.com/Stride-Labs/stride/v14/testutil/keeper" - "github.com/Stride-Labs/stride/v14/testutil/nullify" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + keepertest "github.com/Stride-Labs/stride/v15/testutil/keeper" + "github.com/Stride-Labs/stride/v15/testutil/nullify" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) // Prevent strconv unused error diff --git a/x/stakeibc/keeper/grpc_query_host_zone.go b/x/stakeibc/keeper/grpc_query_host_zone.go index 74ef304223..3011b81b10 100644 --- a/x/stakeibc/keeper/grpc_query_host_zone.go +++ b/x/stakeibc/keeper/grpc_query_host_zone.go @@ -11,7 +11,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func (k Keeper) HostZoneAll(c context.Context, req *types.QueryAllHostZoneRequest) (*types.QueryAllHostZoneResponse, error) { diff --git a/x/stakeibc/keeper/grpc_query_host_zone_test.go b/x/stakeibc/keeper/grpc_query_host_zone_test.go index ee5b7463f7..ff4d6ffe03 100644 --- a/x/stakeibc/keeper/grpc_query_host_zone_test.go +++ b/x/stakeibc/keeper/grpc_query_host_zone_test.go @@ -11,9 +11,9 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - keepertest "github.com/Stride-Labs/stride/v14/testutil/keeper" - "github.com/Stride-Labs/stride/v14/testutil/nullify" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + keepertest "github.com/Stride-Labs/stride/v15/testutil/keeper" + "github.com/Stride-Labs/stride/v15/testutil/nullify" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func TestHostZoneQuerySingle(t *testing.T) { diff --git a/x/stakeibc/keeper/grpc_query_module_address.go b/x/stakeibc/keeper/grpc_query_module_address.go index 99d6fb1de1..6b82c07541 100644 --- a/x/stakeibc/keeper/grpc_query_module_address.go +++ b/x/stakeibc/keeper/grpc_query_module_address.go @@ -7,7 +7,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func (k Keeper) ModuleAddress(goCtx context.Context, req *types.QueryModuleAddressRequest) (*types.QueryModuleAddressResponse, error) { diff --git a/x/stakeibc/keeper/grpc_query_next_packet_sequence.go b/x/stakeibc/keeper/grpc_query_next_packet_sequence.go index 7cc8c64858..69fa4bd33d 100644 --- a/x/stakeibc/keeper/grpc_query_next_packet_sequence.go +++ b/x/stakeibc/keeper/grpc_query_next_packet_sequence.go @@ -7,7 +7,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func (k Keeper) NextPacketSequence(c context.Context, req *types.QueryGetNextPacketSequenceRequest) (*types.QueryGetNextPacketSequenceResponse, error) { diff --git a/x/stakeibc/keeper/grpc_query_next_packet_sequence_test.go b/x/stakeibc/keeper/grpc_query_next_packet_sequence_test.go index bcc5546262..801e9923e1 100644 --- a/x/stakeibc/keeper/grpc_query_next_packet_sequence_test.go +++ b/x/stakeibc/keeper/grpc_query_next_packet_sequence_test.go @@ -3,7 +3,7 @@ package keeper_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func (s *KeeperTestSuite) TestNextPacketSequenceQuery() { diff --git a/x/stakeibc/keeper/grpc_query_params.go b/x/stakeibc/keeper/grpc_query_params.go index 71376498ab..59856d34d7 100644 --- a/x/stakeibc/keeper/grpc_query_params.go +++ b/x/stakeibc/keeper/grpc_query_params.go @@ -7,7 +7,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func (k Keeper) Params(c context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error) { diff --git a/x/stakeibc/keeper/grpc_query_params_test.go b/x/stakeibc/keeper/grpc_query_params_test.go index 0a0f7a915f..d54ac9f80a 100644 --- a/x/stakeibc/keeper/grpc_query_params_test.go +++ b/x/stakeibc/keeper/grpc_query_params_test.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - testkeeper "github.com/Stride-Labs/stride/v14/testutil/keeper" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + testkeeper "github.com/Stride-Labs/stride/v15/testutil/keeper" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func TestParamsQuery(t *testing.T) { diff --git a/x/stakeibc/keeper/grpc_query_register_ica.go b/x/stakeibc/keeper/grpc_query_register_ica.go index 035e662c35..03e21c3e7d 100644 --- a/x/stakeibc/keeper/grpc_query_register_ica.go +++ b/x/stakeibc/keeper/grpc_query_register_ica.go @@ -9,7 +9,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) // InterchainAccountFromAddress implements the Query/InterchainAccountFromAddress gRPC method diff --git a/x/stakeibc/keeper/grpc_query_validator.go b/x/stakeibc/keeper/grpc_query_validator.go index cb93005526..427bb35788 100644 --- a/x/stakeibc/keeper/grpc_query_validator.go +++ b/x/stakeibc/keeper/grpc_query_validator.go @@ -8,7 +8,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func (k Keeper) Validators(c context.Context, req *types.QueryGetValidatorsRequest) (*types.QueryGetValidatorsResponse, error) { diff --git a/x/stakeibc/keeper/grpc_query_validator_test.go b/x/stakeibc/keeper/grpc_query_validator_test.go index a13b8c8bcb..9c4643db5e 100644 --- a/x/stakeibc/keeper/grpc_query_validator_test.go +++ b/x/stakeibc/keeper/grpc_query_validator_test.go @@ -8,9 +8,9 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - keepertest "github.com/Stride-Labs/stride/v14/testutil/keeper" - "github.com/Stride-Labs/stride/v14/testutil/nullify" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + keepertest "github.com/Stride-Labs/stride/v15/testutil/keeper" + "github.com/Stride-Labs/stride/v15/testutil/nullify" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func TestValidatorQuery(t *testing.T) { diff --git a/x/stakeibc/keeper/hooks.go b/x/stakeibc/keeper/hooks.go index d87d92dfd7..d9c167fc8c 100644 --- a/x/stakeibc/keeper/hooks.go +++ b/x/stakeibc/keeper/hooks.go @@ -8,11 +8,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/spf13/cast" - "github.com/Stride-Labs/stride/v14/utils" - epochstypes "github.com/Stride-Labs/stride/v14/x/epochs/types" - icaoracletypes "github.com/Stride-Labs/stride/v14/x/icaoracle/types" - recordstypes "github.com/Stride-Labs/stride/v14/x/records/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/utils" + epochstypes "github.com/Stride-Labs/stride/v15/x/epochs/types" + icaoracletypes "github.com/Stride-Labs/stride/v15/x/icaoracle/types" + recordstypes "github.com/Stride-Labs/stride/v15/x/records/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) const StrideEpochsPerDayEpoch = uint64(4) diff --git a/x/stakeibc/keeper/host_zone.go b/x/stakeibc/keeper/host_zone.go index 720b4a4a0b..587b9f3f57 100644 --- a/x/stakeibc/keeper/host_zone.go +++ b/x/stakeibc/keeper/host_zone.go @@ -13,8 +13,8 @@ import ( errorsmod "cosmossdk.io/errors" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/Stride-Labs/stride/v14/utils" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/utils" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) // SetHostZone set a specific hostZone in the store diff --git a/x/stakeibc/keeper/host_zone_test.go b/x/stakeibc/keeper/host_zone_test.go index e8fcd15562..3463cb56ff 100644 --- a/x/stakeibc/keeper/host_zone_test.go +++ b/x/stakeibc/keeper/host_zone_test.go @@ -9,10 +9,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - keepertest "github.com/Stride-Labs/stride/v14/testutil/keeper" - "github.com/Stride-Labs/stride/v14/testutil/nullify" - "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + keepertest "github.com/Stride-Labs/stride/v15/testutil/keeper" + "github.com/Stride-Labs/stride/v15/testutil/nullify" + "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func createNHostZone(keeper *keeper.Keeper, ctx sdk.Context, n int) []types.HostZone { diff --git a/x/stakeibc/keeper/icacallbacks.go b/x/stakeibc/keeper/icacallbacks.go index a611929806..48000aba89 100644 --- a/x/stakeibc/keeper/icacallbacks.go +++ b/x/stakeibc/keeper/icacallbacks.go @@ -1,7 +1,7 @@ package keeper import ( - icacallbackstypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + icacallbackstypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" ) const ( diff --git a/x/stakeibc/keeper/icacallbacks_claim.go b/x/stakeibc/keeper/icacallbacks_claim.go index eb1531bd61..91d21dfcd5 100644 --- a/x/stakeibc/keeper/icacallbacks_claim.go +++ b/x/stakeibc/keeper/icacallbacks_claim.go @@ -3,10 +3,10 @@ package keeper import ( "fmt" - "github.com/Stride-Labs/stride/v14/utils" - icacallbackstypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" - recordstypes "github.com/Stride-Labs/stride/v14/x/records/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/utils" + icacallbackstypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" + recordstypes "github.com/Stride-Labs/stride/v15/x/records/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/stakeibc/keeper/icacallbacks_claim_test.go b/x/stakeibc/keeper/icacallbacks_claim_test.go index c8a3dc349a..10abda7eab 100644 --- a/x/stakeibc/keeper/icacallbacks_claim_test.go +++ b/x/stakeibc/keeper/icacallbacks_claim_test.go @@ -7,9 +7,9 @@ import ( channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" _ "github.com/stretchr/testify/suite" - icacallbacktypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" - recordtypes "github.com/Stride-Labs/stride/v14/x/records/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + icacallbacktypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" + recordtypes "github.com/Stride-Labs/stride/v15/x/records/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) type ClaimCallbackState struct { diff --git a/x/stakeibc/keeper/icacallbacks_delegate.go b/x/stakeibc/keeper/icacallbacks_delegate.go index 7479b0f413..df9eeec22a 100644 --- a/x/stakeibc/keeper/icacallbacks_delegate.go +++ b/x/stakeibc/keeper/icacallbacks_delegate.go @@ -6,11 +6,11 @@ import ( "github.com/spf13/cast" - "github.com/Stride-Labs/stride/v14/utils" - recordstypes "github.com/Stride-Labs/stride/v14/x/records/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/utils" + recordstypes "github.com/Stride-Labs/stride/v15/x/records/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" - icacallbackstypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + icacallbackstypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/stakeibc/keeper/icacallbacks_delegate_test.go b/x/stakeibc/keeper/icacallbacks_delegate_test.go index 04d7c42d0e..de68907c9c 100644 --- a/x/stakeibc/keeper/icacallbacks_delegate_test.go +++ b/x/stakeibc/keeper/icacallbacks_delegate_test.go @@ -6,10 +6,10 @@ import ( channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" _ "github.com/stretchr/testify/suite" - icacallbacktypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + icacallbacktypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" - recordtypes "github.com/Stride-Labs/stride/v14/x/records/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + recordtypes "github.com/Stride-Labs/stride/v15/x/records/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) type DelegateCallbackState struct { diff --git a/x/stakeibc/keeper/icacallbacks_detokenize.go b/x/stakeibc/keeper/icacallbacks_detokenize.go index 05a6c907ec..7edf1819c4 100644 --- a/x/stakeibc/keeper/icacallbacks_detokenize.go +++ b/x/stakeibc/keeper/icacallbacks_detokenize.go @@ -8,10 +8,10 @@ import ( "github.com/cosmos/gogoproto/proto" channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - "github.com/Stride-Labs/stride/v14/utils" - icacallbackstypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" - recordstypes "github.com/Stride-Labs/stride/v14/x/records/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/utils" + icacallbackstypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" + recordstypes "github.com/Stride-Labs/stride/v15/x/records/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) // ICACallback after an LSM token is detokenized into native stake diff --git a/x/stakeibc/keeper/icacallbacks_detokenize_test.go b/x/stakeibc/keeper/icacallbacks_detokenize_test.go index c01759c676..ced2911efa 100644 --- a/x/stakeibc/keeper/icacallbacks_detokenize_test.go +++ b/x/stakeibc/keeper/icacallbacks_detokenize_test.go @@ -6,10 +6,10 @@ import ( "github.com/cosmos/gogoproto/proto" channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - icacallbackstypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" - icacallbacktypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" - recordstypes "github.com/Stride-Labs/stride/v14/x/records/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + icacallbackstypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" + icacallbacktypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" + recordstypes "github.com/Stride-Labs/stride/v15/x/records/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) type DetokenizeCallbackTestCase struct { diff --git a/x/stakeibc/keeper/icacallbacks_rebalance.go b/x/stakeibc/keeper/icacallbacks_rebalance.go index c0d74b7ec0..bca3d498da 100644 --- a/x/stakeibc/keeper/icacallbacks_rebalance.go +++ b/x/stakeibc/keeper/icacallbacks_rebalance.go @@ -3,9 +3,9 @@ package keeper import ( "fmt" - "github.com/Stride-Labs/stride/v14/utils" - icacallbackstypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/utils" + icacallbackstypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/stakeibc/keeper/icacallbacks_rebalance_test.go b/x/stakeibc/keeper/icacallbacks_rebalance_test.go index 4e06c80424..ddc84178f1 100644 --- a/x/stakeibc/keeper/icacallbacks_rebalance_test.go +++ b/x/stakeibc/keeper/icacallbacks_rebalance_test.go @@ -6,9 +6,9 @@ import ( ibctesting "github.com/cosmos/ibc-go/v7/testing" _ "github.com/stretchr/testify/suite" - epochtypes "github.com/Stride-Labs/stride/v14/x/epochs/types" - icacallbacktypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + epochtypes "github.com/Stride-Labs/stride/v15/x/epochs/types" + icacallbacktypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) type RebalanceCallbackState struct { diff --git a/x/stakeibc/keeper/icacallbacks_redemption.go b/x/stakeibc/keeper/icacallbacks_redemption.go index 3ac13d960f..039927dec7 100644 --- a/x/stakeibc/keeper/icacallbacks_redemption.go +++ b/x/stakeibc/keeper/icacallbacks_redemption.go @@ -3,10 +3,10 @@ package keeper import ( "fmt" - "github.com/Stride-Labs/stride/v14/utils" - icacallbackstypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" - recordstypes "github.com/Stride-Labs/stride/v14/x/records/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/utils" + icacallbackstypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" + recordstypes "github.com/Stride-Labs/stride/v15/x/records/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/stakeibc/keeper/icacallbacks_redemption_test.go b/x/stakeibc/keeper/icacallbacks_redemption_test.go index ba00408a23..beac3d42a8 100644 --- a/x/stakeibc/keeper/icacallbacks_redemption_test.go +++ b/x/stakeibc/keeper/icacallbacks_redemption_test.go @@ -7,10 +7,10 @@ import ( channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" _ "github.com/stretchr/testify/suite" - icacallbacktypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" - recordtypes "github.com/Stride-Labs/stride/v14/x/records/types" + icacallbacktypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" + recordtypes "github.com/Stride-Labs/stride/v15/x/records/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) type RedemptionCallbackState struct { diff --git a/x/stakeibc/keeper/icacallbacks_reinvest.go b/x/stakeibc/keeper/icacallbacks_reinvest.go index df240d79b5..259f35295b 100644 --- a/x/stakeibc/keeper/icacallbacks_reinvest.go +++ b/x/stakeibc/keeper/icacallbacks_reinvest.go @@ -8,13 +8,13 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - icqtypes "github.com/Stride-Labs/stride/v14/x/interchainquery/types" + icqtypes "github.com/Stride-Labs/stride/v15/x/interchainquery/types" - "github.com/Stride-Labs/stride/v14/utils" - epochtypes "github.com/Stride-Labs/stride/v14/x/epochs/types" - icacallbackstypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" - recordstypes "github.com/Stride-Labs/stride/v14/x/records/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/utils" + epochtypes "github.com/Stride-Labs/stride/v15/x/epochs/types" + icacallbackstypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" + recordstypes "github.com/Stride-Labs/stride/v15/x/records/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/stakeibc/keeper/icacallbacks_reinvest_test.go b/x/stakeibc/keeper/icacallbacks_reinvest_test.go index 47439b5f43..eaff53d5de 100644 --- a/x/stakeibc/keeper/icacallbacks_reinvest_test.go +++ b/x/stakeibc/keeper/icacallbacks_reinvest_test.go @@ -9,16 +9,16 @@ import ( ibctesting "github.com/cosmos/ibc-go/v7/testing" _ "github.com/stretchr/testify/suite" - "github.com/Stride-Labs/stride/v14/app/apptesting" - epochtypes "github.com/Stride-Labs/stride/v14/x/epochs/types" - icqtypes "github.com/Stride-Labs/stride/v14/x/interchainquery/types" + "github.com/Stride-Labs/stride/v15/app/apptesting" + epochtypes "github.com/Stride-Labs/stride/v15/x/epochs/types" + icqtypes "github.com/Stride-Labs/stride/v15/x/interchainquery/types" - icacallbacktypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" - recordtypes "github.com/Stride-Labs/stride/v14/x/records/types" - stakeibckeeper "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" + icacallbacktypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" + recordtypes "github.com/Stride-Labs/stride/v15/x/records/types" + stakeibckeeper "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" - stakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" + stakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) type ReinvestCallbackState struct { diff --git a/x/stakeibc/keeper/icacallbacks_undelegate.go b/x/stakeibc/keeper/icacallbacks_undelegate.go index b452293134..cd44fa4516 100644 --- a/x/stakeibc/keeper/icacallbacks_undelegate.go +++ b/x/stakeibc/keeper/icacallbacks_undelegate.go @@ -8,10 +8,10 @@ import ( sdkmath "cosmossdk.io/math" "github.com/spf13/cast" - "github.com/Stride-Labs/stride/v14/utils" - icacallbackstypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" - recordstypes "github.com/Stride-Labs/stride/v14/x/records/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/utils" + icacallbackstypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" + recordstypes "github.com/Stride-Labs/stride/v15/x/records/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/stakeibc/keeper/icacallbacks_undelegate_test.go b/x/stakeibc/keeper/icacallbacks_undelegate_test.go index f281270a7c..1343366e64 100644 --- a/x/stakeibc/keeper/icacallbacks_undelegate_test.go +++ b/x/stakeibc/keeper/icacallbacks_undelegate_test.go @@ -10,10 +10,10 @@ import ( channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" _ "github.com/stretchr/testify/suite" - icacallbacktypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" - recordtypes "github.com/Stride-Labs/stride/v14/x/records/types" - stakeibckeeper "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + icacallbacktypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" + recordtypes "github.com/Stride-Labs/stride/v15/x/records/types" + stakeibckeeper "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) type UndelegateCallbackState struct { diff --git a/x/stakeibc/keeper/icqcallbacks.go b/x/stakeibc/keeper/icqcallbacks.go index a134243c40..3c4518d08d 100644 --- a/x/stakeibc/keeper/icqcallbacks.go +++ b/x/stakeibc/keeper/icqcallbacks.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - icqtypes "github.com/Stride-Labs/stride/v14/x/interchainquery/types" + icqtypes "github.com/Stride-Labs/stride/v15/x/interchainquery/types" ) const ( diff --git a/x/stakeibc/keeper/icqcallbacks_callibrate_delegation.go b/x/stakeibc/keeper/icqcallbacks_callibrate_delegation.go index 4032321d39..f258a16a29 100644 --- a/x/stakeibc/keeper/icqcallbacks_callibrate_delegation.go +++ b/x/stakeibc/keeper/icqcallbacks_callibrate_delegation.go @@ -6,9 +6,9 @@ import ( stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" "github.com/cosmos/gogoproto/proto" - "github.com/Stride-Labs/stride/v14/utils" - icqtypes "github.com/Stride-Labs/stride/v14/x/interchainquery/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/utils" + icqtypes "github.com/Stride-Labs/stride/v15/x/interchainquery/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) // DelegatorSharesCallback is a callback handler for UpdateValidatorSharesExchRate queries. diff --git a/x/stakeibc/keeper/icqcallbacks_delegator_shares.go b/x/stakeibc/keeper/icqcallbacks_delegator_shares.go index 2a38e74013..65a2c95c61 100644 --- a/x/stakeibc/keeper/icqcallbacks_delegator_shares.go +++ b/x/stakeibc/keeper/icqcallbacks_delegator_shares.go @@ -12,9 +12,9 @@ import ( "github.com/cosmos/gogoproto/proto" "github.com/spf13/cast" - "github.com/Stride-Labs/stride/v14/utils" - icqtypes "github.com/Stride-Labs/stride/v14/x/interchainquery/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/utils" + icqtypes "github.com/Stride-Labs/stride/v15/x/interchainquery/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) // DelegatorSharesCallback is a callback handler for UpdateValidatorSharesExchRate queries. diff --git a/x/stakeibc/keeper/icqcallbacks_delegator_shares_test.go b/x/stakeibc/keeper/icqcallbacks_delegator_shares_test.go index bb98b10a70..be94762956 100644 --- a/x/stakeibc/keeper/icqcallbacks_delegator_shares_test.go +++ b/x/stakeibc/keeper/icqcallbacks_delegator_shares_test.go @@ -11,9 +11,9 @@ import ( "github.com/cosmos/gogoproto/proto" ibctesting "github.com/cosmos/ibc-go/v7/testing" - icqtypes "github.com/Stride-Labs/stride/v14/x/interchainquery/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + icqtypes "github.com/Stride-Labs/stride/v15/x/interchainquery/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) type DelegatorSharesICQCallbackArgs struct { diff --git a/x/stakeibc/keeper/icqcallbacks_fee_balance.go b/x/stakeibc/keeper/icqcallbacks_fee_balance.go index cb3a026f20..2a417a3f8f 100644 --- a/x/stakeibc/keeper/icqcallbacks_fee_balance.go +++ b/x/stakeibc/keeper/icqcallbacks_fee_balance.go @@ -11,11 +11,11 @@ import ( clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - "github.com/Stride-Labs/stride/v14/utils" - epochtypes "github.com/Stride-Labs/stride/v14/x/epochs/types" - icqkeeper "github.com/Stride-Labs/stride/v14/x/interchainquery/keeper" - icqtypes "github.com/Stride-Labs/stride/v14/x/interchainquery/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/utils" + epochtypes "github.com/Stride-Labs/stride/v15/x/epochs/types" + icqkeeper "github.com/Stride-Labs/stride/v15/x/interchainquery/keeper" + icqtypes "github.com/Stride-Labs/stride/v15/x/interchainquery/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) // FeeBalanceCallback is a callback handler for FeeBalnce queries. diff --git a/x/stakeibc/keeper/icqcallbacks_fee_balance_test.go b/x/stakeibc/keeper/icqcallbacks_fee_balance_test.go index 9b16eceac9..a2de89d60e 100644 --- a/x/stakeibc/keeper/icqcallbacks_fee_balance_test.go +++ b/x/stakeibc/keeper/icqcallbacks_fee_balance_test.go @@ -6,10 +6,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" ibctesting "github.com/cosmos/ibc-go/v7/testing" - epochtypes "github.com/Stride-Labs/stride/v14/x/epochs/types" - icqtypes "github.com/Stride-Labs/stride/v14/x/interchainquery/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + epochtypes "github.com/Stride-Labs/stride/v15/x/epochs/types" + icqtypes "github.com/Stride-Labs/stride/v15/x/interchainquery/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) type FeeBalanceICQCallbackState struct { diff --git a/x/stakeibc/keeper/icqcallbacks_validator_exchange_rate.go b/x/stakeibc/keeper/icqcallbacks_validator_exchange_rate.go index 1cc31605c6..eaa3f7f4ed 100644 --- a/x/stakeibc/keeper/icqcallbacks_validator_exchange_rate.go +++ b/x/stakeibc/keeper/icqcallbacks_validator_exchange_rate.go @@ -9,9 +9,9 @@ import ( stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/Stride-Labs/stride/v14/utils" - icqtypes "github.com/Stride-Labs/stride/v14/x/interchainquery/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/utils" + icqtypes "github.com/Stride-Labs/stride/v15/x/interchainquery/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) // ValidatorCallback is a callback handler for validator queries. diff --git a/x/stakeibc/keeper/icqcallbacks_validator_exchange_rate_test.go b/x/stakeibc/keeper/icqcallbacks_validator_exchange_rate_test.go index 572f5fa108..275be7bf28 100644 --- a/x/stakeibc/keeper/icqcallbacks_validator_exchange_rate_test.go +++ b/x/stakeibc/keeper/icqcallbacks_validator_exchange_rate_test.go @@ -13,10 +13,10 @@ import ( "github.com/cosmos/cosmos-sdk/types/bech32" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - icqtypes "github.com/Stride-Labs/stride/v14/x/interchainquery/types" - recordstypes "github.com/Stride-Labs/stride/v14/x/records/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + icqtypes "github.com/Stride-Labs/stride/v15/x/interchainquery/types" + recordstypes "github.com/Stride-Labs/stride/v15/x/records/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) type ValidatorICQCallbackState struct { diff --git a/x/stakeibc/keeper/icqcallbacks_withdrawal_balance.go b/x/stakeibc/keeper/icqcallbacks_withdrawal_balance.go index fa71dec6c6..c067d6ca6e 100644 --- a/x/stakeibc/keeper/icqcallbacks_withdrawal_balance.go +++ b/x/stakeibc/keeper/icqcallbacks_withdrawal_balance.go @@ -12,11 +12,11 @@ import ( "github.com/cosmos/gogoproto/proto" "github.com/spf13/cast" - icqkeeper "github.com/Stride-Labs/stride/v14/x/interchainquery/keeper" + icqkeeper "github.com/Stride-Labs/stride/v15/x/interchainquery/keeper" - "github.com/Stride-Labs/stride/v14/utils" - icqtypes "github.com/Stride-Labs/stride/v14/x/interchainquery/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/utils" + icqtypes "github.com/Stride-Labs/stride/v15/x/interchainquery/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) // WithdrawalBalanceCallback is a callback handler for WithdrawalBalance queries. diff --git a/x/stakeibc/keeper/icqcallbacks_withdrawal_balance_test.go b/x/stakeibc/keeper/icqcallbacks_withdrawal_balance_test.go index 9e1731e77f..8aa9340f8d 100644 --- a/x/stakeibc/keeper/icqcallbacks_withdrawal_balance_test.go +++ b/x/stakeibc/keeper/icqcallbacks_withdrawal_balance_test.go @@ -7,11 +7,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" ibctesting "github.com/cosmos/ibc-go/v7/testing" - epochtypes "github.com/Stride-Labs/stride/v14/x/epochs/types" - icacallbackstypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" - icqtypes "github.com/Stride-Labs/stride/v14/x/interchainquery/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + epochtypes "github.com/Stride-Labs/stride/v15/x/epochs/types" + icacallbackstypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" + icqtypes "github.com/Stride-Labs/stride/v15/x/interchainquery/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) type WithdrawalBalanceICQCallbackState struct { diff --git a/x/stakeibc/keeper/invariants.go b/x/stakeibc/keeper/invariants.go index c267748624..867c89d590 100644 --- a/x/stakeibc/keeper/invariants.go +++ b/x/stakeibc/keeper/invariants.go @@ -5,7 +5,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - epochtypes "github.com/Stride-Labs/stride/v14/x/epochs/types" + epochtypes "github.com/Stride-Labs/stride/v15/x/epochs/types" ) // RegisterInvariants registers all governance invariants. diff --git a/x/stakeibc/keeper/keeper.go b/x/stakeibc/keeper/keeper.go index 82a1e83bf5..05b80a29a8 100644 --- a/x/stakeibc/keeper/keeper.go +++ b/x/stakeibc/keeper/keeper.go @@ -12,8 +12,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" - icqkeeper "github.com/Stride-Labs/stride/v14/x/interchainquery/keeper" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + icqkeeper "github.com/Stride-Labs/stride/v15/x/interchainquery/keeper" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" @@ -23,9 +23,9 @@ import ( storetypes "github.com/cosmos/cosmos-sdk/store/types" - epochstypes "github.com/Stride-Labs/stride/v14/x/epochs/types" - icacallbackskeeper "github.com/Stride-Labs/stride/v14/x/icacallbacks/keeper" - recordsmodulekeeper "github.com/Stride-Labs/stride/v14/x/records/keeper" + epochstypes "github.com/Stride-Labs/stride/v15/x/epochs/types" + icacallbackskeeper "github.com/Stride-Labs/stride/v15/x/icacallbacks/keeper" + recordsmodulekeeper "github.com/Stride-Labs/stride/v15/x/records/keeper" ) type ( diff --git a/x/stakeibc/keeper/keeper_test.go b/x/stakeibc/keeper/keeper_test.go index 90b564ca50..f2d9da7148 100644 --- a/x/stakeibc/keeper/keeper_test.go +++ b/x/stakeibc/keeper/keeper_test.go @@ -6,9 +6,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/suite" - "github.com/Stride-Labs/stride/v14/app/apptesting" - "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/app/apptesting" + "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) const ( diff --git a/x/stakeibc/keeper/lsm.go b/x/stakeibc/keeper/lsm.go index ebdbbdec3d..419c6e5f37 100644 --- a/x/stakeibc/keeper/lsm.go +++ b/x/stakeibc/keeper/lsm.go @@ -16,8 +16,8 @@ import ( transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - recordstypes "github.com/Stride-Labs/stride/v14/x/records/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + recordstypes "github.com/Stride-Labs/stride/v15/x/records/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) var ( diff --git a/x/stakeibc/keeper/lsm_test.go b/x/stakeibc/keeper/lsm_test.go index edf7e0b7f2..b3db081344 100644 --- a/x/stakeibc/keeper/lsm_test.go +++ b/x/stakeibc/keeper/lsm_test.go @@ -9,9 +9,9 @@ import ( transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" ibctesting "github.com/cosmos/ibc-go/v7/testing" - recordstypes "github.com/Stride-Labs/stride/v14/x/records/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + recordstypes "github.com/Stride-Labs/stride/v15/x/records/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" "github.com/cosmos/gogoproto/proto" ) diff --git a/x/stakeibc/keeper/msg_server.go b/x/stakeibc/keeper/msg_server.go index 8971ddbde6..b1569cbc3d 100644 --- a/x/stakeibc/keeper/msg_server.go +++ b/x/stakeibc/keeper/msg_server.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) type msgServer struct { diff --git a/x/stakeibc/keeper/msg_server_add_validators.go b/x/stakeibc/keeper/msg_server_add_validators.go index a8edda2f64..6e1e279f62 100644 --- a/x/stakeibc/keeper/msg_server_add_validators.go +++ b/x/stakeibc/keeper/msg_server_add_validators.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func (k msgServer) AddValidators(goCtx context.Context, msg *types.MsgAddValidators) (*types.MsgAddValidatorsResponse, error) { diff --git a/x/stakeibc/keeper/msg_server_add_validators_test.go b/x/stakeibc/keeper/msg_server_add_validators_test.go index 6596f244b7..ecedaacd74 100644 --- a/x/stakeibc/keeper/msg_server_add_validators_test.go +++ b/x/stakeibc/keeper/msg_server_add_validators_test.go @@ -11,7 +11,7 @@ import ( stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" ibctesting "github.com/cosmos/ibc-go/v7/testing" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) type AddValidatorsTestCase struct { diff --git a/x/stakeibc/keeper/msg_server_calibrate_delegation.go b/x/stakeibc/keeper/msg_server_calibrate_delegation.go index 995f1b7365..ab44eabe26 100644 --- a/x/stakeibc/keeper/msg_server_calibrate_delegation.go +++ b/x/stakeibc/keeper/msg_server_calibrate_delegation.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) // Submits an ICQ to get the validator's delegated shares diff --git a/x/stakeibc/keeper/msg_server_change_validator_weight.go b/x/stakeibc/keeper/msg_server_change_validator_weight.go index 565ba020dd..608c663165 100644 --- a/x/stakeibc/keeper/msg_server_change_validator_weight.go +++ b/x/stakeibc/keeper/msg_server_change_validator_weight.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func (k msgServer) ChangeValidatorWeight(goCtx context.Context, msg *types.MsgChangeValidatorWeight) (*types.MsgChangeValidatorWeightResponse, error) { diff --git a/x/stakeibc/keeper/msg_server_claim_undelegated_tokens.go b/x/stakeibc/keeper/msg_server_claim_undelegated_tokens.go index a2cf440e0b..d486381c11 100644 --- a/x/stakeibc/keeper/msg_server_claim_undelegated_tokens.go +++ b/x/stakeibc/keeper/msg_server_claim_undelegated_tokens.go @@ -4,15 +4,15 @@ import ( "context" "fmt" - recordstypes "github.com/Stride-Labs/stride/v14/x/records/types" + recordstypes "github.com/Stride-Labs/stride/v15/x/records/types" errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" bankTypes "github.com/cosmos/cosmos-sdk/x/bank/types" proto "github.com/cosmos/gogoproto/proto" - epochstypes "github.com/Stride-Labs/stride/v14/x/epochs/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + epochstypes "github.com/Stride-Labs/stride/v15/x/epochs/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) type IcaTx struct { diff --git a/x/stakeibc/keeper/msg_server_claim_undelegated_tokens_test.go b/x/stakeibc/keeper/msg_server_claim_undelegated_tokens_test.go index bc77b3094d..22870b9a96 100644 --- a/x/stakeibc/keeper/msg_server_claim_undelegated_tokens_test.go +++ b/x/stakeibc/keeper/msg_server_claim_undelegated_tokens_test.go @@ -11,10 +11,10 @@ import ( ibctesting "github.com/cosmos/ibc-go/v7/testing" _ "github.com/stretchr/testify/suite" - epochtypes "github.com/Stride-Labs/stride/v14/x/epochs/types" - recordtypes "github.com/Stride-Labs/stride/v14/x/records/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + epochtypes "github.com/Stride-Labs/stride/v15/x/epochs/types" + recordtypes "github.com/Stride-Labs/stride/v15/x/records/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) type ClaimUndelegatedState struct { diff --git a/x/stakeibc/keeper/msg_server_clear_balance.go b/x/stakeibc/keeper/msg_server_clear_balance.go index e3aa0f78fd..d07070783a 100644 --- a/x/stakeibc/keeper/msg_server_clear_balance.go +++ b/x/stakeibc/keeper/msg_server_clear_balance.go @@ -10,7 +10,7 @@ import ( ibctransfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" "github.com/spf13/cast" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func (k msgServer) ClearBalance(goCtx context.Context, msg *types.MsgClearBalance) (*types.MsgClearBalanceResponse, error) { diff --git a/x/stakeibc/keeper/msg_server_clear_balance_test.go b/x/stakeibc/keeper/msg_server_clear_balance_test.go index 27325a6c1f..f0bad7920d 100644 --- a/x/stakeibc/keeper/msg_server_clear_balance_test.go +++ b/x/stakeibc/keeper/msg_server_clear_balance_test.go @@ -9,8 +9,8 @@ import ( ibctesting "github.com/cosmos/ibc-go/v7/testing" _ "github.com/stretchr/testify/suite" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" - stakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" + stakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) type ClearBalanceState struct { diff --git a/x/stakeibc/keeper/msg_server_delete_validator.go b/x/stakeibc/keeper/msg_server_delete_validator.go index 69e592298e..dd23f26edb 100644 --- a/x/stakeibc/keeper/msg_server_delete_validator.go +++ b/x/stakeibc/keeper/msg_server_delete_validator.go @@ -7,7 +7,7 @@ import ( errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func (k msgServer) DeleteValidator(goCtx context.Context, msg *types.MsgDeleteValidator) (*types.MsgDeleteValidatorResponse, error) { diff --git a/x/stakeibc/keeper/msg_server_delete_validator_test.go b/x/stakeibc/keeper/msg_server_delete_validator_test.go index 4de8c16c12..08859f7ec4 100644 --- a/x/stakeibc/keeper/msg_server_delete_validator_test.go +++ b/x/stakeibc/keeper/msg_server_delete_validator_test.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - stakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + stakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) type DeleteValidatorTestCase struct { diff --git a/x/stakeibc/keeper/msg_server_liquid_stake.go b/x/stakeibc/keeper/msg_server_liquid_stake.go index 57f4eb2843..64d20b8283 100644 --- a/x/stakeibc/keeper/msg_server_liquid_stake.go +++ b/x/stakeibc/keeper/msg_server_liquid_stake.go @@ -8,8 +8,8 @@ import ( errorsmod "cosmossdk.io/errors" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - epochtypes "github.com/Stride-Labs/stride/v14/x/epochs/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + epochtypes "github.com/Stride-Labs/stride/v15/x/epochs/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) // Exchanges a user's native tokens for stTokens using the current redemption rate diff --git a/x/stakeibc/keeper/msg_server_liquid_stake_test.go b/x/stakeibc/keeper/msg_server_liquid_stake_test.go index 3816927416..efdd7cbe3d 100644 --- a/x/stakeibc/keeper/msg_server_liquid_stake_test.go +++ b/x/stakeibc/keeper/msg_server_liquid_stake_test.go @@ -7,9 +7,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" _ "github.com/stretchr/testify/suite" - epochtypes "github.com/Stride-Labs/stride/v14/x/epochs/types" - recordtypes "github.com/Stride-Labs/stride/v14/x/records/types" - stakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + epochtypes "github.com/Stride-Labs/stride/v15/x/epochs/types" + recordtypes "github.com/Stride-Labs/stride/v15/x/records/types" + stakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) type Account struct { diff --git a/x/stakeibc/keeper/msg_server_lsm_liquid_stake.go b/x/stakeibc/keeper/msg_server_lsm_liquid_stake.go index 415a41c5df..a458c7eb7d 100644 --- a/x/stakeibc/keeper/msg_server_lsm_liquid_stake.go +++ b/x/stakeibc/keeper/msg_server_lsm_liquid_stake.go @@ -8,9 +8,9 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/cosmos/gogoproto/proto" - icqtypes "github.com/Stride-Labs/stride/v14/x/interchainquery/types" - recordstypes "github.com/Stride-Labs/stride/v14/x/records/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + icqtypes "github.com/Stride-Labs/stride/v15/x/interchainquery/types" + recordstypes "github.com/Stride-Labs/stride/v15/x/records/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) // Exchanges a user's LSM tokenized shares for stTokens using the current redemption rate diff --git a/x/stakeibc/keeper/msg_server_lsm_liquid_stake_test.go b/x/stakeibc/keeper/msg_server_lsm_liquid_stake_test.go index 4b968438ae..63ba579752 100644 --- a/x/stakeibc/keeper/msg_server_lsm_liquid_stake_test.go +++ b/x/stakeibc/keeper/msg_server_lsm_liquid_stake_test.go @@ -10,10 +10,10 @@ import ( transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" ibctesting "github.com/cosmos/ibc-go/v7/testing" - icqtypes "github.com/Stride-Labs/stride/v14/x/interchainquery/types" - recordstypes "github.com/Stride-Labs/stride/v14/x/records/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + icqtypes "github.com/Stride-Labs/stride/v15/x/interchainquery/types" + recordstypes "github.com/Stride-Labs/stride/v15/x/records/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) type LSMLiquidStakeTestCase struct { diff --git a/x/stakeibc/keeper/msg_server_rebalance_validators.go b/x/stakeibc/keeper/msg_server_rebalance_validators.go index 1c620533d9..a51d2bb6f4 100644 --- a/x/stakeibc/keeper/msg_server_rebalance_validators.go +++ b/x/stakeibc/keeper/msg_server_rebalance_validators.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func (k msgServer) RebalanceValidators(goCtx context.Context, msg *types.MsgRebalanceValidators) (*types.MsgRebalanceValidatorsResponse, error) { diff --git a/x/stakeibc/keeper/msg_server_redeem_stake.go b/x/stakeibc/keeper/msg_server_redeem_stake.go index 7014292c97..b0fa9b52ae 100644 --- a/x/stakeibc/keeper/msg_server_redeem_stake.go +++ b/x/stakeibc/keeper/msg_server_redeem_stake.go @@ -4,14 +4,14 @@ import ( "context" "fmt" - recordstypes "github.com/Stride-Labs/stride/v14/x/records/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + recordstypes "github.com/Stride-Labs/stride/v15/x/records/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/Stride-Labs/stride/v14/utils" + "github.com/Stride-Labs/stride/v15/utils" ) func (k msgServer) RedeemStake(goCtx context.Context, msg *types.MsgRedeemStake) (*types.MsgRedeemStakeResponse, error) { diff --git a/x/stakeibc/keeper/msg_server_redeem_stake_test.go b/x/stakeibc/keeper/msg_server_redeem_stake_test.go index 9af9b3c162..9bf676a7b1 100644 --- a/x/stakeibc/keeper/msg_server_redeem_stake_test.go +++ b/x/stakeibc/keeper/msg_server_redeem_stake_test.go @@ -7,9 +7,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" _ "github.com/stretchr/testify/suite" - epochtypes "github.com/Stride-Labs/stride/v14/x/epochs/types" - recordtypes "github.com/Stride-Labs/stride/v14/x/records/types" - stakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + epochtypes "github.com/Stride-Labs/stride/v15/x/epochs/types" + recordtypes "github.com/Stride-Labs/stride/v15/x/records/types" + stakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) type RedeemStakeState struct { diff --git a/x/stakeibc/keeper/msg_server_register_host_zone.go b/x/stakeibc/keeper/msg_server_register_host_zone.go index fd991ccc0e..3f3b649be1 100644 --- a/x/stakeibc/keeper/msg_server_register_host_zone.go +++ b/x/stakeibc/keeper/msg_server_register_host_zone.go @@ -7,10 +7,10 @@ import ( sdkmath "cosmossdk.io/math" icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - "github.com/Stride-Labs/stride/v14/utils" - epochtypes "github.com/Stride-Labs/stride/v14/x/epochs/types" - recordstypes "github.com/Stride-Labs/stride/v14/x/records/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/utils" + epochtypes "github.com/Stride-Labs/stride/v15/x/epochs/types" + recordstypes "github.com/Stride-Labs/stride/v15/x/records/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/stakeibc/keeper/msg_server_register_host_zone_test.go b/x/stakeibc/keeper/msg_server_register_host_zone_test.go index 7a8485e03b..2aab36b504 100644 --- a/x/stakeibc/keeper/msg_server_register_host_zone_test.go +++ b/x/stakeibc/keeper/msg_server_register_host_zone_test.go @@ -12,10 +12,10 @@ import ( channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - epochtypes "github.com/Stride-Labs/stride/v14/x/epochs/types" - recordstypes "github.com/Stride-Labs/stride/v14/x/records/types" - recordtypes "github.com/Stride-Labs/stride/v14/x/records/types" - stakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + epochtypes "github.com/Stride-Labs/stride/v15/x/epochs/types" + recordstypes "github.com/Stride-Labs/stride/v15/x/records/types" + recordtypes "github.com/Stride-Labs/stride/v15/x/records/types" + stakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) type RegisterHostZoneTestCase struct { diff --git a/x/stakeibc/keeper/msg_server_restore_interchain_account.go b/x/stakeibc/keeper/msg_server_restore_interchain_account.go index 385879d29c..a943122314 100644 --- a/x/stakeibc/keeper/msg_server_restore_interchain_account.go +++ b/x/stakeibc/keeper/msg_server_restore_interchain_account.go @@ -9,8 +9,8 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - recordtypes "github.com/Stride-Labs/stride/v14/x/records/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + recordtypes "github.com/Stride-Labs/stride/v15/x/records/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func (k msgServer) RestoreInterchainAccount(goCtx context.Context, msg *types.MsgRestoreInterchainAccount) (*types.MsgRestoreInterchainAccountResponse, error) { diff --git a/x/stakeibc/keeper/msg_server_restore_interchain_account_test.go b/x/stakeibc/keeper/msg_server_restore_interchain_account_test.go index 4215bd078a..32ca47e8d1 100644 --- a/x/stakeibc/keeper/msg_server_restore_interchain_account_test.go +++ b/x/stakeibc/keeper/msg_server_restore_interchain_account_test.go @@ -6,8 +6,8 @@ import ( ibctesting "github.com/cosmos/ibc-go/v7/testing" _ "github.com/stretchr/testify/suite" - recordtypes "github.com/Stride-Labs/stride/v14/x/records/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + recordtypes "github.com/Stride-Labs/stride/v15/x/records/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) type DepositRecordStatusUpdate struct { diff --git a/x/stakeibc/keeper/msg_server_submit_tx.go b/x/stakeibc/keeper/msg_server_submit_tx.go index 6351c3194e..e9b2f5f12a 100644 --- a/x/stakeibc/keeper/msg_server_submit_tx.go +++ b/x/stakeibc/keeper/msg_server_submit_tx.go @@ -11,19 +11,19 @@ import ( "github.com/cosmos/gogoproto/proto" "github.com/spf13/cast" - "github.com/Stride-Labs/stride/v14/utils" - icacallbackstypes "github.com/Stride-Labs/stride/v14/x/icacallbacks/types" + "github.com/Stride-Labs/stride/v15/utils" + icacallbackstypes "github.com/Stride-Labs/stride/v15/x/icacallbacks/types" - recordstypes "github.com/Stride-Labs/stride/v14/x/records/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + recordstypes "github.com/Stride-Labs/stride/v15/x/records/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" bankTypes "github.com/cosmos/cosmos-sdk/x/bank/types" distributiontypes "github.com/cosmos/cosmos-sdk/x/distribution/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - epochstypes "github.com/Stride-Labs/stride/v14/x/epochs/types" - icqtypes "github.com/Stride-Labs/stride/v14/x/interchainquery/types" + epochstypes "github.com/Stride-Labs/stride/v15/x/epochs/types" + icqtypes "github.com/Stride-Labs/stride/v15/x/interchainquery/types" sdk "github.com/cosmos/cosmos-sdk/types" icacontrollerkeeper "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/keeper" diff --git a/x/stakeibc/keeper/msg_server_update_inner_redemption_rate_bounds.go b/x/stakeibc/keeper/msg_server_update_inner_redemption_rate_bounds.go index 7f2170fc81..4e0bbff4a5 100644 --- a/x/stakeibc/keeper/msg_server_update_inner_redemption_rate_bounds.go +++ b/x/stakeibc/keeper/msg_server_update_inner_redemption_rate_bounds.go @@ -7,7 +7,7 @@ import ( errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func (k msgServer) UpdateInnerRedemptionRateBounds(goCtx context.Context, msg *types.MsgUpdateInnerRedemptionRateBounds) (*types.MsgUpdateInnerRedemptionRateBoundsResponse, error) { diff --git a/x/stakeibc/keeper/msg_server_update_inner_redemption_rate_bounds_test.go b/x/stakeibc/keeper/msg_server_update_inner_redemption_rate_bounds_test.go index 671f567dcb..3386ecde33 100644 --- a/x/stakeibc/keeper/msg_server_update_inner_redemption_rate_bounds_test.go +++ b/x/stakeibc/keeper/msg_server_update_inner_redemption_rate_bounds_test.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" _ "github.com/stretchr/testify/suite" - stakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + stakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) type UpdateInnerRedemptionRateBoundsTestCase struct { diff --git a/x/stakeibc/keeper/msg_server_update_validator_shares_exch_rate.go b/x/stakeibc/keeper/msg_server_update_validator_shares_exch_rate.go index 6b1a41070e..653f4abbd1 100644 --- a/x/stakeibc/keeper/msg_server_update_validator_shares_exch_rate.go +++ b/x/stakeibc/keeper/msg_server_update_validator_shares_exch_rate.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) // This kicks off two ICQs, each with a callback, that will update the number of tokens on a validator diff --git a/x/stakeibc/keeper/msg_undelegate_host.go b/x/stakeibc/keeper/msg_undelegate_host.go index 426671751e..9bd14eb2ee 100644 --- a/x/stakeibc/keeper/msg_undelegate_host.go +++ b/x/stakeibc/keeper/msg_undelegate_host.go @@ -7,7 +7,7 @@ import ( errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) const isUndelegateHostPreventedKey = "is-undelegate-host-prevented" diff --git a/x/stakeibc/keeper/params.go b/x/stakeibc/keeper/params.go index c96fec425c..1cefcbc1bd 100644 --- a/x/stakeibc/keeper/params.go +++ b/x/stakeibc/keeper/params.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) // GetParams get all parameters as types.Params diff --git a/x/stakeibc/keeper/params_test.go b/x/stakeibc/keeper/params_test.go index c4ed08f09d..e464114174 100644 --- a/x/stakeibc/keeper/params_test.go +++ b/x/stakeibc/keeper/params_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - testkeeper "github.com/Stride-Labs/stride/v14/testutil/keeper" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + testkeeper "github.com/Stride-Labs/stride/v15/testutil/keeper" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func TestGetParams(t *testing.T) { diff --git a/x/stakeibc/keeper/reward_allocation.go b/x/stakeibc/keeper/reward_allocation.go index 47850f8998..e640f1643b 100644 --- a/x/stakeibc/keeper/reward_allocation.go +++ b/x/stakeibc/keeper/reward_allocation.go @@ -8,7 +8,7 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) // Liquid Stake Reward Collector Balance diff --git a/x/stakeibc/keeper/reward_allocation_test.go b/x/stakeibc/keeper/reward_allocation_test.go index 5e83d15c9e..e5e13af09d 100644 --- a/x/stakeibc/keeper/reward_allocation_test.go +++ b/x/stakeibc/keeper/reward_allocation_test.go @@ -15,9 +15,9 @@ import ( stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" _ "github.com/stretchr/testify/suite" - epochtypes "github.com/Stride-Labs/stride/v14/x/epochs/types" - recordtypes "github.com/Stride-Labs/stride/v14/x/records/types" - stakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + epochtypes "github.com/Stride-Labs/stride/v15/x/epochs/types" + recordtypes "github.com/Stride-Labs/stride/v15/x/records/types" + stakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func (s *KeeperTestSuite) SetupTestRewardAllocation() { diff --git a/x/stakeibc/keeper/unbonding_records.go b/x/stakeibc/keeper/unbonding_records.go index d96222af13..4c9c7ec2c9 100644 --- a/x/stakeibc/keeper/unbonding_records.go +++ b/x/stakeibc/keeper/unbonding_records.go @@ -14,9 +14,9 @@ import ( "github.com/cosmos/gogoproto/proto" "github.com/spf13/cast" - "github.com/Stride-Labs/stride/v14/utils" - recordstypes "github.com/Stride-Labs/stride/v14/x/records/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/utils" + recordstypes "github.com/Stride-Labs/stride/v15/x/records/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) const ( diff --git a/x/stakeibc/keeper/unbonding_records_cleanup_test.go b/x/stakeibc/keeper/unbonding_records_cleanup_test.go index 8487538926..8d48cd1cae 100644 --- a/x/stakeibc/keeper/unbonding_records_cleanup_test.go +++ b/x/stakeibc/keeper/unbonding_records_cleanup_test.go @@ -4,9 +4,9 @@ import ( sdkmath "cosmossdk.io/math" _ "github.com/stretchr/testify/suite" - recordtypes "github.com/Stride-Labs/stride/v14/x/records/types" + recordtypes "github.com/Stride-Labs/stride/v15/x/records/types" - stakeibc "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + stakeibc "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) type CleanupEpochUnbondingRecordsTestCase struct { diff --git a/x/stakeibc/keeper/unbonding_records_get_host_zone_unbondings_msgs_test.go b/x/stakeibc/keeper/unbonding_records_get_host_zone_unbondings_msgs_test.go index aa65cdbe62..b071ae85e5 100644 --- a/x/stakeibc/keeper/unbonding_records_get_host_zone_unbondings_msgs_test.go +++ b/x/stakeibc/keeper/unbonding_records_get_host_zone_unbondings_msgs_test.go @@ -9,10 +9,10 @@ import ( stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - epochstypes "github.com/Stride-Labs/stride/v14/x/epochs/types" - recordtypes "github.com/Stride-Labs/stride/v14/x/records/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + epochstypes "github.com/Stride-Labs/stride/v15/x/epochs/types" + recordtypes "github.com/Stride-Labs/stride/v15/x/records/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) type ValidatorUnbonding struct { diff --git a/x/stakeibc/keeper/unbonding_records_initiate_all_unbondings_test.go b/x/stakeibc/keeper/unbonding_records_initiate_all_unbondings_test.go index 434eb98e29..e90d304ef3 100644 --- a/x/stakeibc/keeper/unbonding_records_initiate_all_unbondings_test.go +++ b/x/stakeibc/keeper/unbonding_records_initiate_all_unbondings_test.go @@ -5,8 +5,8 @@ import ( ibctesting "github.com/cosmos/ibc-go/v7/testing" _ "github.com/stretchr/testify/suite" - recordtypes "github.com/Stride-Labs/stride/v14/x/records/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + recordtypes "github.com/Stride-Labs/stride/v15/x/records/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) type InitiateAllHostZoneUnbondingsTestCase struct { diff --git a/x/stakeibc/keeper/unbonding_records_sweep_unbonded_tokens_test.go b/x/stakeibc/keeper/unbonding_records_sweep_unbonded_tokens_test.go index 8cbb87bffd..015c420b5a 100644 --- a/x/stakeibc/keeper/unbonding_records_sweep_unbonded_tokens_test.go +++ b/x/stakeibc/keeper/unbonding_records_sweep_unbonded_tokens_test.go @@ -5,10 +5,10 @@ import ( ibctesting "github.com/cosmos/ibc-go/v7/testing" _ "github.com/stretchr/testify/suite" - recordtypes "github.com/Stride-Labs/stride/v14/x/records/types" + recordtypes "github.com/Stride-Labs/stride/v15/x/records/types" - epochtypes "github.com/Stride-Labs/stride/v14/x/epochs/types" - stakeibc "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + epochtypes "github.com/Stride-Labs/stride/v15/x/epochs/types" + stakeibc "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) type SweepUnbondedTokensTestCase struct { diff --git a/x/stakeibc/keeper/undelegate_host.go b/x/stakeibc/keeper/undelegate_host.go index 639624204f..ce51c52630 100644 --- a/x/stakeibc/keeper/undelegate_host.go +++ b/x/stakeibc/keeper/undelegate_host.go @@ -9,8 +9,8 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/cosmos/gogoproto/proto" - "github.com/Stride-Labs/stride/v14/utils" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/utils" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) const ( diff --git a/x/stakeibc/keeper/undelegate_host_test.go b/x/stakeibc/keeper/undelegate_host_test.go index 1867242de8..e0ed72c4cd 100644 --- a/x/stakeibc/keeper/undelegate_host_test.go +++ b/x/stakeibc/keeper/undelegate_host_test.go @@ -9,9 +9,9 @@ import ( ibctesting "github.com/cosmos/ibc-go/v7/testing" _ "github.com/stretchr/testify/suite" - epochstypes "github.com/Stride-Labs/stride/v14/x/epochs/types" - recordtypes "github.com/Stride-Labs/stride/v14/x/records/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + epochstypes "github.com/Stride-Labs/stride/v15/x/epochs/types" + recordtypes "github.com/Stride-Labs/stride/v15/x/records/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) const UndelegateHostZoneChainId = "evmos_9001-2" // the relevant zone for this test diff --git a/x/stakeibc/keeper/update_redemption_rates_test.go b/x/stakeibc/keeper/update_redemption_rates_test.go index 084046c42d..cc2c60d1ab 100644 --- a/x/stakeibc/keeper/update_redemption_rates_test.go +++ b/x/stakeibc/keeper/update_redemption_rates_test.go @@ -8,9 +8,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" _ "github.com/stretchr/testify/suite" - minttypes "github.com/Stride-Labs/stride/v14/x/mint/types" - recordtypes "github.com/Stride-Labs/stride/v14/x/records/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + minttypes "github.com/Stride-Labs/stride/v15/x/mint/types" + recordtypes "github.com/Stride-Labs/stride/v15/x/records/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) type UpdateRedemptionRateTestCase struct { diff --git a/x/stakeibc/keeper/update_validator_shares_exch_rate_test.go b/x/stakeibc/keeper/update_validator_shares_exch_rate_test.go index cb8208854e..970c8d2fde 100644 --- a/x/stakeibc/keeper/update_validator_shares_exch_rate_test.go +++ b/x/stakeibc/keeper/update_validator_shares_exch_rate_test.go @@ -8,7 +8,7 @@ import ( ibctesting "github.com/cosmos/ibc-go/v7/testing" _ "github.com/stretchr/testify/suite" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) // ================================ 1: QueryValidatorSharesToTokensRate ============================================= diff --git a/x/stakeibc/keeper/validator_selection.go b/x/stakeibc/keeper/validator_selection.go index 201fb15730..aeb84ebd35 100644 --- a/x/stakeibc/keeper/validator_selection.go +++ b/x/stakeibc/keeper/validator_selection.go @@ -11,9 +11,9 @@ import ( stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" "github.com/cosmos/gogoproto/proto" - "github.com/Stride-Labs/stride/v14/utils" - epochstypes "github.com/Stride-Labs/stride/v14/x/epochs/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/utils" + epochstypes "github.com/Stride-Labs/stride/v15/x/epochs/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) const RebalanceIcaBatchSize = 5 diff --git a/x/stakeibc/keeper/validator_selection_test.go b/x/stakeibc/keeper/validator_selection_test.go index 7dcd796d67..b92c2057e2 100644 --- a/x/stakeibc/keeper/validator_selection_test.go +++ b/x/stakeibc/keeper/validator_selection_test.go @@ -11,9 +11,9 @@ import ( stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" ibctesting "github.com/cosmos/ibc-go/v7/testing" - epochtypes "github.com/Stride-Labs/stride/v14/x/epochs/types" - "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + epochtypes "github.com/Stride-Labs/stride/v15/x/epochs/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) type RebalanceDelegationsForHostZoneTestCase struct { diff --git a/x/stakeibc/migrations/v2/convert.go b/x/stakeibc/migrations/v2/convert.go index f20be472c9..ef52c42671 100644 --- a/x/stakeibc/migrations/v2/convert.go +++ b/x/stakeibc/migrations/v2/convert.go @@ -3,8 +3,8 @@ package v2 import ( sdkmath "cosmossdk.io/math" - oldstakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/migrations/v2/types" - stakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/migrations/v3/types" + oldstakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/migrations/v2/types" + stakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/migrations/v3/types" ) func convertToNewValidator(oldValidator oldstakeibctypes.Validator) stakeibctypes.Validator { diff --git a/x/stakeibc/migrations/v2/convert_test.go b/x/stakeibc/migrations/v2/convert_test.go index 93dcf5073e..b105d3b365 100644 --- a/x/stakeibc/migrations/v2/convert_test.go +++ b/x/stakeibc/migrations/v2/convert_test.go @@ -8,8 +8,8 @@ import ( "github.com/stretchr/testify/require" - oldstakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/migrations/v2/types" - stakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/migrations/v3/types" + oldstakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/migrations/v2/types" + stakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/migrations/v3/types" ) func TestConvertToNewValidator(t *testing.T) { diff --git a/x/stakeibc/migrations/v2/migrations.go b/x/stakeibc/migrations/v2/migrations.go index 8f00a8e117..2a222dafcf 100644 --- a/x/stakeibc/migrations/v2/migrations.go +++ b/x/stakeibc/migrations/v2/migrations.go @@ -8,8 +8,8 @@ import ( errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" - oldstakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/migrations/v2/types" - stakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + oldstakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/migrations/v2/types" + stakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func migrateHostZone(store sdk.KVStore, cdc codec.BinaryCodec) error { diff --git a/x/stakeibc/migrations/v3/convert.go b/x/stakeibc/migrations/v3/convert.go index e642206e62..20b96bf03b 100644 --- a/x/stakeibc/migrations/v3/convert.go +++ b/x/stakeibc/migrations/v3/convert.go @@ -4,8 +4,8 @@ import ( sdkmath "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - oldstakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/migrations/v3/types" - newstakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + oldstakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/migrations/v3/types" + newstakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) var ( diff --git a/x/stakeibc/migrations/v3/convert_test.go b/x/stakeibc/migrations/v3/convert_test.go index 0336c03ea5..fc0d536532 100644 --- a/x/stakeibc/migrations/v3/convert_test.go +++ b/x/stakeibc/migrations/v3/convert_test.go @@ -8,8 +8,8 @@ import ( "github.com/stretchr/testify/require" - oldstakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/migrations/v3/types" - newstakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + oldstakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/migrations/v3/types" + newstakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func TestConvertToNewValidator(t *testing.T) { diff --git a/x/stakeibc/migrations/v3/migrations.go b/x/stakeibc/migrations/v3/migrations.go index e7c6edb6a4..5e6cb3ef84 100644 --- a/x/stakeibc/migrations/v3/migrations.go +++ b/x/stakeibc/migrations/v3/migrations.go @@ -8,8 +8,8 @@ import ( errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" - oldstakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/migrations/v3/types" - stakeibctypes "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + oldstakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/migrations/v3/types" + stakeibctypes "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func migrateHostZone(store sdk.KVStore, cdc codec.BinaryCodec) error { diff --git a/x/stakeibc/module.go b/x/stakeibc/module.go index 2f4a86c952..4f2c8c9ebd 100644 --- a/x/stakeibc/module.go +++ b/x/stakeibc/module.go @@ -19,9 +19,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/Stride-Labs/stride/v14/x/stakeibc/client/cli" - "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/client/cli" + "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) var ( diff --git a/x/stakeibc/module_simulation.go b/x/stakeibc/module_simulation.go index 29cfa5adeb..90c3ff0e36 100644 --- a/x/stakeibc/module_simulation.go +++ b/x/stakeibc/module_simulation.go @@ -10,9 +10,9 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" - "github.com/Stride-Labs/stride/v14/testutil/sample" - stakeibcsimulation "github.com/Stride-Labs/stride/v14/x/stakeibc/simulation" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/testutil/sample" + stakeibcsimulation "github.com/Stride-Labs/stride/v15/x/stakeibc/simulation" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) // avoid unused import issue diff --git a/x/stakeibc/simulation/add_validator.go b/x/stakeibc/simulation/add_validator.go index 30fc904d78..f395580775 100644 --- a/x/stakeibc/simulation/add_validator.go +++ b/x/stakeibc/simulation/add_validator.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func SimulateMsgAddValidator( diff --git a/x/stakeibc/simulation/change_validator_weight.go b/x/stakeibc/simulation/change_validator_weight.go index cd1764f40a..0c8c643f35 100644 --- a/x/stakeibc/simulation/change_validator_weight.go +++ b/x/stakeibc/simulation/change_validator_weight.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func SimulateMsgChangeValidatorWeight( diff --git a/x/stakeibc/simulation/claim_undelegated_tokens.go b/x/stakeibc/simulation/claim_undelegated_tokens.go index f1c9ea0b57..2f74e86170 100644 --- a/x/stakeibc/simulation/claim_undelegated_tokens.go +++ b/x/stakeibc/simulation/claim_undelegated_tokens.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func SimulateMsgClaimUndelegatedTokens( diff --git a/x/stakeibc/simulation/delete_validator.go b/x/stakeibc/simulation/delete_validator.go index 1ce876d79c..4109335b65 100644 --- a/x/stakeibc/simulation/delete_validator.go +++ b/x/stakeibc/simulation/delete_validator.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func SimulateMsgDeleteValidator( diff --git a/x/stakeibc/simulation/liquid_stake.go b/x/stakeibc/simulation/liquid_stake.go index 4e4a3de223..b7ab7021fb 100644 --- a/x/stakeibc/simulation/liquid_stake.go +++ b/x/stakeibc/simulation/liquid_stake.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func SimulateMsgLiquidStake( diff --git a/x/stakeibc/simulation/rebalance_validators.go b/x/stakeibc/simulation/rebalance_validators.go index 505402aa4d..f8c679eedc 100644 --- a/x/stakeibc/simulation/rebalance_validators.go +++ b/x/stakeibc/simulation/rebalance_validators.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func SimulateMsgRebalanceValidators( diff --git a/x/stakeibc/simulation/restore_interchain_account.go b/x/stakeibc/simulation/restore_interchain_account.go index fbc3818744..14cbbd44ae 100644 --- a/x/stakeibc/simulation/restore_interchain_account.go +++ b/x/stakeibc/simulation/restore_interchain_account.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func SimulateMsgRestoreInterchainAccount( diff --git a/x/stakeibc/simulation/update_delegation.go b/x/stakeibc/simulation/update_delegation.go index 7cab584aec..caf55131be 100644 --- a/x/stakeibc/simulation/update_delegation.go +++ b/x/stakeibc/simulation/update_delegation.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/Stride-Labs/stride/v14/x/stakeibc/keeper" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/keeper" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func SimulateMsgUpdateValidatorSharesExchRate( diff --git a/x/stakeibc/types/address_unbonding.pb.go b/x/stakeibc/types/address_unbonding.pb.go index d5ba8e30e7..01fe4b7efa 100644 --- a/x/stakeibc/types/address_unbonding.pb.go +++ b/x/stakeibc/types/address_unbonding.pb.go @@ -121,26 +121,26 @@ var fileDescriptor_6491082275bcb473 = []byte{ // 348 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x4c, 0x51, 0xcd, 0x4a, 0xeb, 0x40, 0x18, 0x4d, 0x7a, 0xdb, 0xde, 0x76, 0xee, 0x45, 0xcb, 0x50, 0x64, 0xe8, 0x22, 0xad, 0x2e, 0x34, - 0x9b, 0x26, 0xf8, 0xb3, 0x70, 0x6b, 0x41, 0xa1, 0x50, 0x44, 0xa2, 0x6e, 0xdc, 0x84, 0xfc, 0x7c, - 0xa4, 0x43, 0x9d, 0x99, 0x90, 0x99, 0x14, 0x7d, 0x0b, 0x5f, 0xc4, 0xf7, 0xe8, 0xb2, 0x4b, 0x71, - 0x51, 0xa4, 0x7d, 0x11, 0xe9, 0x24, 0xa9, 0xae, 0x66, 0xbe, 0x73, 0xce, 0x9c, 0xef, 0x30, 0x07, - 0x9d, 0x48, 0x95, 0xd1, 0x18, 0x5c, 0xa9, 0x82, 0x19, 0xd0, 0x30, 0x72, 0x83, 0x38, 0xce, 0x40, - 0x4a, 0x3f, 0xe7, 0xa1, 0xe0, 0x31, 0xe5, 0x89, 0x93, 0x66, 0x42, 0x09, 0xbc, 0x5f, 0x08, 0x9d, - 0x4a, 0xd8, 0xeb, 0x26, 0x22, 0x11, 0x9a, 0x73, 0xb7, 0xb7, 0x42, 0x76, 0xf4, 0x5e, 0x43, 0x9d, - 0xab, 0xc2, 0xe2, 0xb1, 0x72, 0xc0, 0x04, 0xfd, 0x2d, 0x6d, 0x89, 0x39, 0x30, 0xed, 0xb6, 0x57, - 0x8d, 0xb8, 0x87, 0x5a, 0x19, 0x44, 0x40, 0xe7, 0x90, 0x91, 0x9a, 0xa6, 0x76, 0x33, 0xbe, 0x44, - 0x64, 0x17, 0xc2, 0x07, 0xa9, 0x28, 0x0b, 0x14, 0xc4, 0xbe, 0xa2, 0x0c, 0xc8, 0x1f, 0xad, 0x3d, - 0xd8, 0xf1, 0xd7, 0x15, 0xfd, 0x40, 0x19, 0xe0, 0x1b, 0xd4, 0x0c, 0x98, 0xc8, 0xb9, 0x22, 0xf5, - 0xad, 0x6e, 0xe4, 0x2c, 0x56, 0x7d, 0xe3, 0x73, 0xd5, 0x3f, 0x4e, 0xa8, 0x9a, 0xe6, 0xa1, 0x13, - 0x09, 0xe6, 0x46, 0x42, 0x32, 0x21, 0xcb, 0x63, 0x28, 0xe3, 0x99, 0xab, 0x5e, 0x53, 0x90, 0xce, - 0x98, 0x2b, 0xaf, 0x7c, 0x8d, 0xbb, 0xa8, 0x11, 0x03, 0x17, 0x8c, 0x34, 0xf4, 0xba, 0x62, 0xc0, - 0x36, 0xea, 0x44, 0xcf, 0x01, 0x65, 0x3e, 0x95, 0x7e, 0x0a, 0x7a, 0x3d, 0x69, 0x0d, 0x4c, 0xbb, - 0xe5, 0xed, 0x69, 0x7c, 0x2c, 0xef, 0x0a, 0x14, 0x1f, 0xa2, 0xff, 0x90, 0x8a, 0x68, 0xea, 0xf3, - 0x9c, 0x85, 0x90, 0x91, 0xf6, 0xc0, 0xb4, 0xeb, 0xde, 0x3f, 0x8d, 0xdd, 0x6a, 0x68, 0x34, 0x59, - 0xac, 0x2d, 0x73, 0xb9, 0xb6, 0xcc, 0xaf, 0xb5, 0x65, 0xbe, 0x6d, 0x2c, 0x63, 0xb9, 0xb1, 0x8c, - 0x8f, 0x8d, 0x65, 0x3c, 0x9d, 0xfd, 0x0a, 0x7b, 0xaf, 0xff, 0x7e, 0x38, 0x09, 0x42, 0xe9, 0x96, - 0x85, 0xcd, 0x4f, 0x2f, 0xdc, 0x97, 0x9f, 0xda, 0x74, 0xf8, 0xb0, 0xa9, 0x4b, 0x38, 0xff, 0x0e, - 0x00, 0x00, 0xff, 0xff, 0x00, 0x4c, 0x53, 0x26, 0xd6, 0x01, 0x00, 0x00, + 0x9b, 0x26, 0xa8, 0x08, 0x6e, 0x2d, 0x28, 0x14, 0x8a, 0x48, 0xd4, 0x8d, 0x9b, 0x90, 0x9f, 0x8f, + 0x74, 0xa8, 0x33, 0x13, 0x32, 0x93, 0xa2, 0x6f, 0xe1, 0x8b, 0xf8, 0x1e, 0x5d, 0x76, 0x29, 0x2e, + 0x8a, 0xb4, 0x2f, 0x22, 0x9d, 0x24, 0xd5, 0xd5, 0xcc, 0x77, 0xce, 0x99, 0xf3, 0x1d, 0xe6, 0xa0, + 0x13, 0xa9, 0x32, 0x1a, 0x83, 0x2b, 0x55, 0x30, 0x03, 0x1a, 0x46, 0x6e, 0x10, 0xc7, 0x19, 0x48, + 0xe9, 0xe7, 0x3c, 0x14, 0x3c, 0xa6, 0x3c, 0x71, 0xd2, 0x4c, 0x28, 0x81, 0xf7, 0x0b, 0xa1, 0x53, + 0x09, 0x7b, 0xdd, 0x44, 0x24, 0x42, 0x73, 0xee, 0xf6, 0x56, 0xc8, 0x8e, 0xde, 0x6b, 0xa8, 0x73, + 0x55, 0x58, 0x3c, 0x56, 0x0e, 0x98, 0xa0, 0xbf, 0xa5, 0x2d, 0x31, 0x07, 0xa6, 0xdd, 0xf6, 0xaa, + 0x11, 0xf7, 0x50, 0x2b, 0x83, 0x08, 0xe8, 0x1c, 0x32, 0x52, 0xd3, 0xd4, 0x6e, 0xc6, 0x97, 0x88, + 0xec, 0x42, 0xf8, 0x20, 0x15, 0x65, 0x81, 0x82, 0xd8, 0x57, 0x94, 0x01, 0xf9, 0xa3, 0xb5, 0x07, + 0x3b, 0xfe, 0xba, 0xa2, 0x1f, 0x28, 0x03, 0x7c, 0x83, 0x9a, 0x01, 0x13, 0x39, 0x57, 0xa4, 0xbe, + 0xd5, 0x8d, 0x9c, 0xc5, 0xaa, 0x6f, 0x7c, 0xae, 0xfa, 0xc7, 0x09, 0x55, 0xd3, 0x3c, 0x74, 0x22, + 0xc1, 0xdc, 0x48, 0x48, 0x26, 0x64, 0x79, 0x0c, 0x65, 0x3c, 0x73, 0xd5, 0x6b, 0x0a, 0xd2, 0x19, + 0x73, 0xe5, 0x95, 0xaf, 0x71, 0x17, 0x35, 0x62, 0xe0, 0x82, 0x91, 0x86, 0x5e, 0x57, 0x0c, 0xd8, + 0x46, 0x9d, 0xe8, 0x39, 0xa0, 0xcc, 0xa7, 0xd2, 0x4f, 0x41, 0xaf, 0x27, 0xad, 0x81, 0x69, 0xb7, + 0xbc, 0x3d, 0x8d, 0x8f, 0xe5, 0x5d, 0x81, 0xe2, 0x43, 0xf4, 0x1f, 0x52, 0x11, 0x4d, 0x7d, 0x9e, + 0xb3, 0x10, 0x32, 0xd2, 0x1e, 0x98, 0x76, 0xdd, 0xfb, 0xa7, 0xb1, 0x5b, 0x0d, 0x8d, 0x26, 0x8b, + 0xb5, 0x65, 0x2e, 0xd7, 0x96, 0xf9, 0xb5, 0xb6, 0xcc, 0xb7, 0x8d, 0x65, 0x2c, 0x37, 0x96, 0xf1, + 0xb1, 0xb1, 0x8c, 0xa7, 0xb3, 0x5f, 0x61, 0xef, 0xf5, 0xdf, 0x0f, 0x27, 0x41, 0x28, 0xdd, 0xb2, + 0xb0, 0xf9, 0xe9, 0x85, 0xfb, 0xf2, 0x53, 0x9b, 0x0e, 0x1f, 0x36, 0x75, 0x09, 0xe7, 0xdf, 0x01, + 0x00, 0x00, 0xff, 0xff, 0x97, 0xea, 0x4e, 0xc1, 0xd6, 0x01, 0x00, 0x00, } func (m *AddressUnbonding) Marshal() (dAtA []byte, err error) { diff --git a/x/stakeibc/types/callbacks.pb.go b/x/stakeibc/types/callbacks.pb.go index 8d8b70cf94..8675d2a086 100644 --- a/x/stakeibc/types/callbacks.pb.go +++ b/x/stakeibc/types/callbacks.pb.go @@ -5,7 +5,7 @@ package types import ( fmt "fmt" - types1 "github.com/Stride-Labs/stride/v14/x/records/types" + types1 "github.com/Stride-Labs/stride/v15/x/records/types" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" _ "github.com/cosmos/gogoproto/gogoproto" @@ -713,7 +713,7 @@ var fileDescriptor_f41c99b09b96a5ac = []byte{ // 840 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x55, 0x4f, 0x6f, 0x23, 0x35, 0x14, 0xcf, 0x34, 0xab, 0xdd, 0x8d, 0x93, 0x36, 0xe9, 0x08, 0x2d, 0x69, 0x14, 0x25, 0x61, 0x16, - 0xc1, 0x0a, 0x69, 0x67, 0xd4, 0x82, 0x10, 0x88, 0xcb, 0xd2, 0x56, 0x68, 0x23, 0xa5, 0x48, 0x4c, + 0xc1, 0x0a, 0x69, 0x67, 0xd4, 0x22, 0x10, 0x88, 0xcb, 0xd2, 0x56, 0x68, 0x23, 0xa5, 0x48, 0x4c, 0x5a, 0x0e, 0xbd, 0x8c, 0x3c, 0x63, 0x2b, 0xb1, 0x32, 0x63, 0xa7, 0x63, 0x27, 0xa5, 0xfd, 0x04, 0x1c, 0x7b, 0xe5, 0x23, 0xc0, 0x85, 0x4f, 0xc0, 0x85, 0x53, 0x8f, 0x3d, 0x22, 0x0e, 0x05, 0xb5, 0x5f, 0x04, 0xd9, 0xe3, 0xf9, 0x93, 0x04, 0x2a, 0x52, 0x38, 0x25, 0xf3, 0xfc, 0xb3, 0xdf, 0xfb, @@ -763,7 +763,7 @@ var fileDescriptor_f41c99b09b96a5ac = []byte{ 0xd7, 0x31, 0xae, 0xee, 0x3b, 0xa5, 0x9b, 0xfb, 0x4e, 0xe9, 0xb7, 0xfb, 0x4e, 0xe9, 0x74, 0xaf, 0x70, 0xfa, 0x50, 0xf1, 0x7c, 0x3d, 0x80, 0x3e, 0x77, 0xf4, 0x5b, 0x3e, 0xdf, 0xfd, 0xc4, 0xf9, 0x2e, 0x7f, 0xd1, 0x55, 0x36, 0xff, 0xa9, 0x7a, 0xce, 0x3f, 0xfe, 0x2b, 0x00, 0x00, 0xff, 0xff, - 0xe7, 0xf1, 0x50, 0xfb, 0x98, 0x08, 0x00, 0x00, + 0x70, 0x57, 0x4d, 0x1c, 0x98, 0x08, 0x00, 0x00, } func (m *SplitDelegation) Marshal() (dAtA []byte, err error) { diff --git a/x/stakeibc/types/epoch_tracker.pb.go b/x/stakeibc/types/epoch_tracker.pb.go index 72eff7c45a..ddae1c94e6 100644 --- a/x/stakeibc/types/epoch_tracker.pb.go +++ b/x/stakeibc/types/epoch_tracker.pb.go @@ -114,8 +114,8 @@ var fileDescriptor_e7c48143f24adf66 = []byte{ 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, 0xe1, 0xc2, 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0x8c, 0xd2, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0x83, 0xc1, 0x7e, 0xd4, 0xf5, 0x49, 0x4c, 0x2a, 0xd6, 0x87, - 0x06, 0x4a, 0x99, 0xa1, 0x89, 0x7e, 0x05, 0x22, 0x68, 0x4a, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, - 0xc0, 0x61, 0x62, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0xfc, 0x05, 0x1f, 0x34, 0x3a, 0x01, 0x00, + 0x06, 0x4a, 0x99, 0xa1, 0xa9, 0x7e, 0x05, 0x22, 0x68, 0x4a, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, + 0xc0, 0x61, 0x62, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x6b, 0xa3, 0x02, 0xd3, 0x3a, 0x01, 0x00, 0x00, } diff --git a/x/stakeibc/types/expected_keepers.go b/x/stakeibc/types/expected_keepers.go index b11db92850..5e39fd770b 100644 --- a/x/stakeibc/types/expected_keepers.go +++ b/x/stakeibc/types/expected_keepers.go @@ -7,7 +7,7 @@ import ( ccvconsumertypes "github.com/cosmos/interchain-security/v3/x/ccv/consumer/types" - ratelimittypes "github.com/Stride-Labs/stride/v14/x/ratelimit/types" + ratelimittypes "github.com/Stride-Labs/stride/v15/x/ratelimit/types" ) // AccountKeeper defines the expected account keeper used for simulations (noalias) diff --git a/x/stakeibc/types/genesis.pb.go b/x/stakeibc/types/genesis.pb.go index b611b11786..daed0ead44 100644 --- a/x/stakeibc/types/genesis.pb.go +++ b/x/stakeibc/types/genesis.pb.go @@ -103,26 +103,26 @@ var fileDescriptor_dea81129ed6fb77a = []byte{ // 349 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x64, 0x90, 0xcf, 0x4e, 0xea, 0x40, 0x14, 0xc6, 0x5b, 0x18, 0x4a, 0x19, 0xc8, 0xbd, 0x4d, 0x73, 0x13, 0xb8, 0xe4, 0x52, 0xc8, 0x75, - 0xc3, 0xc6, 0x36, 0xa2, 0xbe, 0x00, 0x09, 0x51, 0x1b, 0x16, 0x0a, 0xae, 0xd8, 0x34, 0x6d, 0x99, - 0xb4, 0x13, 0x84, 0x69, 0x3a, 0x47, 0xa3, 0x3e, 0x85, 0x2b, 0x9f, 0x89, 0x25, 0x4b, 0x57, 0xc6, - 0xc0, 0x8b, 0x98, 0x76, 0xc6, 0x7f, 0x65, 0x37, 0x67, 0xbe, 0x5f, 0x7e, 0xe7, 0xcb, 0xc1, 0x1d, - 0x0e, 0x29, 0x9d, 0x13, 0x87, 0x83, 0xbf, 0x20, 0x34, 0x08, 0x9d, 0x88, 0xac, 0x08, 0xa7, 0xdc, - 0x4e, 0x52, 0x06, 0xcc, 0xfc, 0x2d, 0x62, 0xfb, 0x23, 0x6e, 0xff, 0x89, 0x58, 0xc4, 0xf2, 0xcc, - 0xc9, 0x5e, 0x02, 0x6b, 0xff, 0x2b, 0x5a, 0x12, 0x3f, 0xf5, 0x97, 0x52, 0xd2, 0xee, 0x16, 0xd3, - 0x98, 0x71, 0xf0, 0x1e, 0xd9, 0x8a, 0x48, 0xe0, 0xa0, 0x08, 0x90, 0x84, 0x85, 0xb1, 0x07, 0xa9, - 0x1f, 0x2e, 0x48, 0x2a, 0xa0, 0xff, 0xcf, 0x25, 0xdc, 0x38, 0x13, 0xe5, 0xa6, 0xe0, 0x03, 0x31, - 0x4f, 0xb1, 0x26, 0xd6, 0xb4, 0xd4, 0x9e, 0xda, 0xaf, 0x0f, 0x9a, 0x76, 0xa1, 0xac, 0x7d, 0x99, - 0xc7, 0x43, 0xb4, 0x7e, 0xed, 0x2a, 0x13, 0x09, 0x9b, 0x4d, 0x5c, 0x4d, 0x58, 0x0a, 0x1e, 0x9d, - 0xb7, 0x4a, 0x3d, 0xb5, 0x5f, 0x9b, 0x68, 0xd9, 0x78, 0x31, 0x37, 0x47, 0xf8, 0xd7, 0x67, 0x31, - 0xef, 0x86, 0x72, 0x68, 0x55, 0x7a, 0xe5, 0x7e, 0x7d, 0xf0, 0x77, 0xcf, 0x7b, 0xce, 0x38, 0xcc, - 0xd8, 0x8a, 0x48, 0x73, 0x23, 0x96, 0xf3, 0x98, 0x72, 0x30, 0xaf, 0xb0, 0xf9, 0xa3, 0xbe, 0x50, - 0xe1, 0x5c, 0xd5, 0xd9, 0x53, 0x8d, 0x32, 0xf4, 0x5a, 0x90, 0x52, 0x67, 0x90, 0x6f, 0x7f, 0x99, + 0xc3, 0xc6, 0x36, 0x62, 0x78, 0x01, 0x12, 0xa2, 0x36, 0x2c, 0x14, 0x5c, 0xb1, 0x69, 0xda, 0x32, + 0x69, 0x27, 0x08, 0xd3, 0x74, 0x8e, 0x46, 0x7d, 0x0a, 0x57, 0x3e, 0x13, 0x4b, 0x96, 0xae, 0x8c, + 0x81, 0x17, 0x31, 0xed, 0x8c, 0xff, 0xca, 0x6e, 0xce, 0x7c, 0xbf, 0xfc, 0xce, 0x97, 0x83, 0x3b, + 0x1c, 0x52, 0xba, 0x20, 0x0e, 0x07, 0x7f, 0x49, 0x68, 0x10, 0x3a, 0x11, 0x59, 0x13, 0x4e, 0xb9, + 0x9d, 0xa4, 0x0c, 0x98, 0xf9, 0x5b, 0xc4, 0xf6, 0x47, 0xdc, 0xfe, 0x13, 0xb1, 0x88, 0xe5, 0x99, + 0x93, 0xbd, 0x04, 0xd6, 0xfe, 0x57, 0xb4, 0x24, 0x7e, 0xea, 0xaf, 0xa4, 0xa4, 0xdd, 0x2d, 0xa6, + 0x31, 0xe3, 0xe0, 0x3d, 0xb2, 0x35, 0x91, 0xc0, 0x51, 0x11, 0x20, 0x09, 0x0b, 0x63, 0x0f, 0x52, + 0x3f, 0x5c, 0x92, 0x54, 0x40, 0xff, 0x9f, 0x4b, 0xb8, 0x71, 0x26, 0xca, 0xcd, 0xc0, 0x07, 0x62, + 0x0e, 0xb1, 0x26, 0xd6, 0xb4, 0xd4, 0x9e, 0xda, 0xaf, 0x0f, 0x9a, 0x76, 0xa1, 0xac, 0x7d, 0x99, + 0xc7, 0x23, 0xb4, 0x79, 0xed, 0x2a, 0x53, 0x09, 0x9b, 0x4d, 0x5c, 0x4d, 0x58, 0x0a, 0x1e, 0x5d, + 0xb4, 0x4a, 0x3d, 0xb5, 0x5f, 0x9b, 0x6a, 0xd9, 0x78, 0xb1, 0x30, 0xc7, 0xf8, 0xd7, 0x67, 0x31, + 0xef, 0x86, 0x72, 0x68, 0x55, 0x7a, 0xe5, 0x7e, 0x7d, 0xf0, 0xf7, 0xc0, 0x7b, 0xce, 0x38, 0xcc, + 0xd9, 0x9a, 0x48, 0x73, 0x23, 0x96, 0xf3, 0x84, 0x72, 0x30, 0xaf, 0xb0, 0xf9, 0xa3, 0xbe, 0x50, + 0xe1, 0x5c, 0xd5, 0x39, 0x50, 0x8d, 0x33, 0xf4, 0x5a, 0x90, 0x52, 0x67, 0x90, 0x6f, 0x7f, 0x99, 0xd2, 0x45, 0x7a, 0xd9, 0x40, 0x2e, 0xd2, 0x91, 0x51, 0x71, 0x91, 0xae, 0x19, 0x55, 0x17, 0xe9, - 0x35, 0x03, 0xbb, 0x48, 0xaf, 0x1b, 0x8d, 0xe1, 0x78, 0xbd, 0xb5, 0xd4, 0xcd, 0xd6, 0x52, 0xdf, - 0xb6, 0x96, 0xfa, 0xb4, 0xb3, 0x94, 0xcd, 0xce, 0x52, 0x5e, 0x76, 0x96, 0x32, 0x1b, 0x44, 0x14, - 0xe2, 0xdb, 0xc0, 0x0e, 0xd9, 0xd2, 0x99, 0xe6, 0x8b, 0x0f, 0xc7, 0x7e, 0xc0, 0x1d, 0x79, 0xee, - 0xbb, 0xa3, 0x13, 0xe7, 0xfe, 0xeb, 0xe8, 0xf0, 0x90, 0x10, 0x1e, 0x68, 0xf9, 0xb5, 0x8f, 0xdf, - 0x03, 0x00, 0x00, 0xff, 0xff, 0xb8, 0xdc, 0x55, 0x13, 0x19, 0x02, 0x00, 0x00, + 0x35, 0x03, 0xbb, 0x48, 0xaf, 0x1b, 0x8d, 0xd1, 0x64, 0xb3, 0xb3, 0xd4, 0xed, 0xce, 0x52, 0xdf, + 0x76, 0x96, 0xfa, 0xb4, 0xb7, 0x94, 0xed, 0xde, 0x52, 0x5e, 0xf6, 0x96, 0x32, 0x1f, 0x44, 0x14, + 0xe2, 0xdb, 0xc0, 0x0e, 0xd9, 0xca, 0x99, 0xe5, 0x8b, 0x8f, 0x27, 0x7e, 0xc0, 0x1d, 0x79, 0xee, + 0xbb, 0x93, 0xa1, 0x73, 0xff, 0x75, 0x74, 0x78, 0x48, 0x08, 0x0f, 0xb4, 0xfc, 0xda, 0xa7, 0xef, + 0x01, 0x00, 0x00, 0xff, 0xff, 0x2f, 0x7a, 0x48, 0xf4, 0x19, 0x02, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/stakeibc/types/genesis_test.go b/x/stakeibc/types/genesis_test.go index b71c69a1e4..725f1a46e5 100644 --- a/x/stakeibc/types/genesis_test.go +++ b/x/stakeibc/types/genesis_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func TestGenesisState_Validate(t *testing.T) { diff --git a/x/stakeibc/types/gov.pb.go b/x/stakeibc/types/gov.pb.go index d3dad439be..95db48a118 100644 --- a/x/stakeibc/types/gov.pb.go +++ b/x/stakeibc/types/gov.pb.go @@ -132,8 +132,8 @@ var fileDescriptor_8204317b384c5680 = []byte{ 0x85, 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, 0x31, 0x4e, 0x78, 0x2c, 0xc7, 0x70, 0xe1, 0xb1, 0x1c, 0xc3, 0x8d, 0xc7, 0x72, 0x0c, 0x51, 0x46, 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0xfa, 0xc1, 0xe0, 0x80, 0xd4, 0xf5, 0x49, 0x4c, 0x2a, 0xd6, 0x87, 0xc6, 0x7c, 0x99, 0xa1, - 0x89, 0x7e, 0x05, 0x22, 0xfe, 0x4b, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0x91, 0x6f, 0x0c, - 0x08, 0x00, 0x00, 0xff, 0xff, 0xbc, 0x7e, 0xc9, 0x6f, 0x61, 0x02, 0x00, 0x00, + 0xa9, 0x7e, 0x05, 0x22, 0xfe, 0x4b, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0x91, 0x6f, 0x0c, + 0x08, 0x00, 0x00, 0xff, 0xff, 0x2b, 0xd8, 0xd4, 0x88, 0x61, 0x02, 0x00, 0x00, } func (this *AddValidatorsProposal) Equal(that interface{}) bool { diff --git a/x/stakeibc/types/host_zone.pb.go b/x/stakeibc/types/host_zone.pb.go index 09a60e96d0..c20499fdd4 100644 --- a/x/stakeibc/types/host_zone.pb.go +++ b/x/stakeibc/types/host_zone.pb.go @@ -200,7 +200,7 @@ var fileDescriptor_f81bf5b42c61245a = []byte{ // 734 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x95, 0xcf, 0x4e, 0xeb, 0x46, 0x14, 0xc6, 0x93, 0x62, 0x82, 0x33, 0xfc, 0x89, 0x63, 0x42, 0xea, 0x84, 0x12, 0x22, 0x2a, 0x55, - 0xe9, 0x22, 0x8e, 0x0a, 0x95, 0x2a, 0x55, 0x5d, 0x14, 0x9a, 0x4a, 0x4d, 0x84, 0x50, 0x65, 0xa4, + 0xe9, 0x22, 0x8e, 0x0a, 0xaa, 0x2a, 0x55, 0x5d, 0x14, 0x9a, 0x4a, 0x4d, 0x84, 0x50, 0x65, 0xa4, 0x2e, 0xe8, 0xc2, 0x1a, 0x7b, 0x4e, 0x92, 0x11, 0xf6, 0x4c, 0xea, 0x19, 0x20, 0xed, 0x53, 0xf4, 0x5d, 0xca, 0x43, 0xb0, 0x44, 0xac, 0xaa, 0x2e, 0x50, 0x05, 0x2f, 0x72, 0xe5, 0xb1, 0xf3, 0x8f, 0x70, 0x15, 0x5d, 0x29, 0xab, 0x78, 0xce, 0xf7, 0x9d, 0xdf, 0x37, 0x67, 0x62, 0x79, 0xd0, 0xa1, @@ -243,7 +243,7 @@ var fileDescriptor_f81bf5b42c61245a = []byte{ 0x4b, 0x2d, 0xfb, 0xff, 0x4b, 0x2d, 0xfb, 0xf7, 0x6b, 0x2d, 0xf3, 0xf8, 0x5a, 0xcb, 0xfc, 0xfb, 0x5a, 0xcb, 0x5c, 0x1d, 0xcf, 0x8c, 0x78, 0xa9, 0xbe, 0x9e, 0xcd, 0x73, 0xec, 0x89, 0x56, 0x7a, 0x71, 0xdd, 0x7e, 0xf3, 0x6d, 0x6b, 0x34, 0xbd, 0xbe, 0xd4, 0xc8, 0x5e, 0x4e, 0x5d, 0x45, 0x27, - 0x1f, 0x02, 0x00, 0x00, 0xff, 0xff, 0xfc, 0xcf, 0xeb, 0xfc, 0x10, 0x07, 0x00, 0x00, + 0x1f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x6b, 0x69, 0xf6, 0x1b, 0x10, 0x07, 0x00, 0x00, } func (m *HostZone) Marshal() (dAtA []byte, err error) { diff --git a/x/stakeibc/types/host_zone_test.go b/x/stakeibc/types/host_zone_test.go index 0197fed39a..a4c946e81b 100644 --- a/x/stakeibc/types/host_zone_test.go +++ b/x/stakeibc/types/host_zone_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func TestHostZoneUnbondingFrequency(t *testing.T) { diff --git a/x/stakeibc/types/ica_account.pb.go b/x/stakeibc/types/ica_account.pb.go index eb595cf2c3..2bfc4be622 100644 --- a/x/stakeibc/types/ica_account.pb.go +++ b/x/stakeibc/types/ica_account.pb.go @@ -69,7 +69,7 @@ var fileDescriptor_2976ae6e7f6ce824 = []byte{ 0x01, 0x60, 0x85, 0xcc, 0x4e, 0x3e, 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, 0x65, 0x94, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0x1f, 0x0c, 0x76, 0x80, - 0xae, 0x4f, 0x62, 0x52, 0xb1, 0x3e, 0xd4, 0xbd, 0x65, 0x86, 0x26, 0xfa, 0x15, 0x08, 0x57, 0x97, - 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x1d, 0x6c, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0xde, - 0x27, 0x6d, 0x6d, 0xd5, 0x00, 0x00, 0x00, + 0xae, 0x4f, 0x62, 0x52, 0xb1, 0x3e, 0xd4, 0xbd, 0x65, 0x86, 0xa6, 0xfa, 0x15, 0x08, 0x57, 0x97, + 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x1d, 0x6c, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x49, + 0x81, 0x70, 0x8a, 0xd5, 0x00, 0x00, 0x00, } diff --git a/x/stakeibc/types/lsm_tx.pb.go b/x/stakeibc/types/lsm_tx.pb.go index 7ddc65f6ec..bc974c965b 100644 --- a/x/stakeibc/types/lsm_tx.pb.go +++ b/x/stakeibc/types/lsm_tx.pb.go @@ -139,9 +139,9 @@ var fileDescriptor_34c3b474a863e424 = []byte{ 0x63, 0xbc, 0xf0, 0x48, 0x8e, 0xf1, 0xc1, 0x23, 0x39, 0xc6, 0x09, 0x8f, 0xe5, 0x18, 0x2e, 0x3c, 0x96, 0x63, 0xb8, 0xf1, 0x58, 0x8e, 0x21, 0xca, 0x28, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x57, 0x3f, 0xb8, 0xa4, 0x28, 0x33, 0x25, 0x55, 0xd7, 0x27, 0x31, 0x09, 0x14, 0x49, - 0x20, 0xb6, 0x7e, 0x99, 0xa1, 0x89, 0x7e, 0x05, 0x38, 0xc6, 0x52, 0x33, 0x93, 0x92, 0xf5, 0x4b, - 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0x81, 0x6b, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x26, - 0x17, 0x64, 0x6b, 0xd1, 0x01, 0x00, 0x00, + 0x20, 0xb6, 0x7e, 0x99, 0xa1, 0xa9, 0x7e, 0x05, 0x38, 0xc6, 0x52, 0x33, 0x93, 0x92, 0xf5, 0x4b, + 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0x81, 0x6b, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0xb1, + 0xb1, 0x79, 0x8c, 0xd1, 0x01, 0x00, 0x00, } func (m *MsgRedeemTokensForShares) Marshal() (dAtA []byte, err error) { diff --git a/x/stakeibc/types/message_add_validators.go b/x/stakeibc/types/message_add_validators.go index f41f8afb4e..f2224a29f2 100644 --- a/x/stakeibc/types/message_add_validators.go +++ b/x/stakeibc/types/message_add_validators.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/Stride-Labs/stride/v14/utils" + "github.com/Stride-Labs/stride/v15/utils" ) const TypeMsgAddValidators = "add_validators" diff --git a/x/stakeibc/types/message_add_validators_test.go b/x/stakeibc/types/message_add_validators_test.go index 5a1bff3c90..e53d9321b7 100644 --- a/x/stakeibc/types/message_add_validators_test.go +++ b/x/stakeibc/types/message_add_validators_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/Stride-Labs/stride/v14/app/apptesting" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/app/apptesting" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func TestMsgAddValidators_ValidateBasic(t *testing.T) { diff --git a/x/stakeibc/types/message_calibrate_delegation.go b/x/stakeibc/types/message_calibrate_delegation.go index 5863ae220f..a1c160c831 100644 --- a/x/stakeibc/types/message_calibrate_delegation.go +++ b/x/stakeibc/types/message_calibrate_delegation.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/Stride-Labs/stride/v14/utils" + "github.com/Stride-Labs/stride/v15/utils" ) const TypeMsgCalibrateDelegation = "calibrate_delegation" diff --git a/x/stakeibc/types/message_change_validator_weight.go b/x/stakeibc/types/message_change_validator_weight.go index d5621bc096..083befb36c 100644 --- a/x/stakeibc/types/message_change_validator_weight.go +++ b/x/stakeibc/types/message_change_validator_weight.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/Stride-Labs/stride/v14/utils" + "github.com/Stride-Labs/stride/v15/utils" ) const TypeMsgChangeValidatorWeight = "change_validator_weight" diff --git a/x/stakeibc/types/message_change_validator_weight_test.go b/x/stakeibc/types/message_change_validator_weight_test.go index 075dac6294..f014dd347d 100644 --- a/x/stakeibc/types/message_change_validator_weight_test.go +++ b/x/stakeibc/types/message_change_validator_weight_test.go @@ -6,7 +6,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/stretchr/testify/require" - "github.com/Stride-Labs/stride/v14/testutil/sample" + "github.com/Stride-Labs/stride/v15/testutil/sample" ) func TestMsgChangeValidatorWeight_ValidateBasic(t *testing.T) { diff --git a/x/stakeibc/types/message_claim_undelegated_tokens.go b/x/stakeibc/types/message_claim_undelegated_tokens.go index 9b5840562e..b6dfb1e26d 100644 --- a/x/stakeibc/types/message_claim_undelegated_tokens.go +++ b/x/stakeibc/types/message_claim_undelegated_tokens.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/Stride-Labs/stride/v14/utils" + "github.com/Stride-Labs/stride/v15/utils" ) const TypeMsgClaimUndelegatedTokens = "claim_undelegated_tokens" diff --git a/x/stakeibc/types/message_claim_undelegated_tokens_test.go b/x/stakeibc/types/message_claim_undelegated_tokens_test.go index 3f39598ec0..4ea076fcb6 100644 --- a/x/stakeibc/types/message_claim_undelegated_tokens_test.go +++ b/x/stakeibc/types/message_claim_undelegated_tokens_test.go @@ -7,7 +7,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/stretchr/testify/require" - "github.com/Stride-Labs/stride/v14/testutil/sample" + "github.com/Stride-Labs/stride/v15/testutil/sample" ) func TestMsgClaimUndelegatedTokens_ValidateBasic(t *testing.T) { diff --git a/x/stakeibc/types/message_clear_balance.go b/x/stakeibc/types/message_clear_balance.go index 3cc64efafb..412309405a 100644 --- a/x/stakeibc/types/message_clear_balance.go +++ b/x/stakeibc/types/message_clear_balance.go @@ -8,7 +8,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - "github.com/Stride-Labs/stride/v14/utils" + "github.com/Stride-Labs/stride/v15/utils" ) const TypeMsgClearBalance = "clear_balance" diff --git a/x/stakeibc/types/message_delete_validator.go b/x/stakeibc/types/message_delete_validator.go index bb37dba0f3..2aba7afe1e 100644 --- a/x/stakeibc/types/message_delete_validator.go +++ b/x/stakeibc/types/message_delete_validator.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/Stride-Labs/stride/v14/utils" + "github.com/Stride-Labs/stride/v15/utils" ) const TypeMsgDeleteValidator = "delete_validator" diff --git a/x/stakeibc/types/message_delete_validator_test.go b/x/stakeibc/types/message_delete_validator_test.go index e6e9f8481a..9afe05b4e3 100644 --- a/x/stakeibc/types/message_delete_validator_test.go +++ b/x/stakeibc/types/message_delete_validator_test.go @@ -6,7 +6,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/stretchr/testify/require" - "github.com/Stride-Labs/stride/v14/testutil/sample" + "github.com/Stride-Labs/stride/v15/testutil/sample" ) func TestMsgDeleteValidator_ValidateBasic(t *testing.T) { diff --git a/x/stakeibc/types/message_liquid_stake_test.go b/x/stakeibc/types/message_liquid_stake_test.go index f5dce91143..469cc8d24a 100644 --- a/x/stakeibc/types/message_liquid_stake_test.go +++ b/x/stakeibc/types/message_liquid_stake_test.go @@ -7,7 +7,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/stretchr/testify/require" - "github.com/Stride-Labs/stride/v14/testutil/sample" + "github.com/Stride-Labs/stride/v15/testutil/sample" ) func TestMsgLiquidStake_ValidateBasic(t *testing.T) { diff --git a/x/stakeibc/types/message_lsm_liquid_stake_test.go b/x/stakeibc/types/message_lsm_liquid_stake_test.go index e1a79da551..26ed9230c2 100644 --- a/x/stakeibc/types/message_lsm_liquid_stake_test.go +++ b/x/stakeibc/types/message_lsm_liquid_stake_test.go @@ -7,8 +7,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/Stride-Labs/stride/v14/app/apptesting" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/app/apptesting" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func TestMsgLSMLiquidStake(t *testing.T) { diff --git a/x/stakeibc/types/message_rebalance_validators.go b/x/stakeibc/types/message_rebalance_validators.go index c789e4b55a..b7c379dde4 100644 --- a/x/stakeibc/types/message_rebalance_validators.go +++ b/x/stakeibc/types/message_rebalance_validators.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/Stride-Labs/stride/v14/utils" + "github.com/Stride-Labs/stride/v15/utils" ) const ( diff --git a/x/stakeibc/types/message_rebalance_validators_test.go b/x/stakeibc/types/message_rebalance_validators_test.go index 898344cdd9..680331bd00 100644 --- a/x/stakeibc/types/message_rebalance_validators_test.go +++ b/x/stakeibc/types/message_rebalance_validators_test.go @@ -6,8 +6,8 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/stretchr/testify/require" - "github.com/Stride-Labs/stride/v14/app/apptesting" - "github.com/Stride-Labs/stride/v14/x/stakeibc/types" + "github.com/Stride-Labs/stride/v15/app/apptesting" + "github.com/Stride-Labs/stride/v15/x/stakeibc/types" ) func TestMsgRebalanceValidators_ValidateBasic(t *testing.T) { diff --git a/x/stakeibc/types/message_redeem_stake_test.go b/x/stakeibc/types/message_redeem_stake_test.go index 11ce7aa422..7f477faf02 100644 --- a/x/stakeibc/types/message_redeem_stake_test.go +++ b/x/stakeibc/types/message_redeem_stake_test.go @@ -8,7 +8,7 @@ import ( sdkmath "cosmossdk.io/math" - "github.com/Stride-Labs/stride/v14/testutil/sample" + "github.com/Stride-Labs/stride/v15/testutil/sample" ) func TestMsgRedeemStake_ValidateBasic(t *testing.T) { diff --git a/x/stakeibc/types/message_register_host_zone.go b/x/stakeibc/types/message_register_host_zone.go index f3f9b3d6fe..548d6318ce 100644 --- a/x/stakeibc/types/message_register_host_zone.go +++ b/x/stakeibc/types/message_register_host_zone.go @@ -10,7 +10,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" ibctransfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - "github.com/Stride-Labs/stride/v14/utils" + "github.com/Stride-Labs/stride/v15/utils" ) const TypeMsgRegisterHostZone = "register_host_zone" diff --git a/x/stakeibc/types/message_restore_interchain_account_test.go b/x/stakeibc/types/message_restore_interchain_account_test.go index e92afcc10b..9144b0d4dd 100644 --- a/x/stakeibc/types/message_restore_interchain_account_test.go +++ b/x/stakeibc/types/message_restore_interchain_account_test.go @@ -6,7 +6,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/stretchr/testify/require" - "github.com/Stride-Labs/stride/v14/testutil/sample" + "github.com/Stride-Labs/stride/v15/testutil/sample" ) func TestMsgRestoreInterchainAccount_ValidateBasic(t *testing.T) { diff --git a/x/stakeibc/types/message_undelegate_host.go b/x/stakeibc/types/message_undelegate_host.go index d239604cf8..e1e2c8c328 100644 --- a/x/stakeibc/types/message_undelegate_host.go +++ b/x/stakeibc/types/message_undelegate_host.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/Stride-Labs/stride/v14/utils" + "github.com/Stride-Labs/stride/v15/utils" ) const TypeMsgUndelegateHost = "undelegate_host" diff --git a/x/stakeibc/types/message_update_inner_redemption_rate_bounds.go b/x/stakeibc/types/message_update_inner_redemption_rate_bounds.go index 02415d0640..f3d21cbfb6 100644 --- a/x/stakeibc/types/message_update_inner_redemption_rate_bounds.go +++ b/x/stakeibc/types/message_update_inner_redemption_rate_bounds.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/Stride-Labs/stride/v14/utils" + "github.com/Stride-Labs/stride/v15/utils" ) const TypeMsgUpdateInnerRedemptionRateBounds = "update_inner_redemption_rate_bounds" diff --git a/x/stakeibc/types/packet.pb.go b/x/stakeibc/types/packet.pb.go index c1a551698d..50e0358b08 100644 --- a/x/stakeibc/types/packet.pb.go +++ b/x/stakeibc/types/packet.pb.go @@ -150,8 +150,8 @@ var fileDescriptor_a86fa6a12773333f = []byte{ 0x8c, 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, 0x24, 0xc7, 0x38, 0xe1, 0xb1, 0x1c, 0xc3, 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0x19, 0xa5, 0x67, 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0x07, 0x83, 0x8d, 0xd6, 0xf5, 0x49, 0x4c, 0x2a, 0xd6, 0x87, 0xba, 0xbe, 0xcc, - 0xd0, 0x44, 0xbf, 0x02, 0xe1, 0x87, 0x92, 0xca, 0x82, 0xd4, 0xe2, 0x24, 0x36, 0xb0, 0x1f, 0x8c, - 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x90, 0x30, 0x72, 0xe9, 0xe3, 0x00, 0x00, 0x00, + 0xd0, 0x54, 0xbf, 0x02, 0xe1, 0x87, 0x92, 0xca, 0x82, 0xd4, 0xe2, 0x24, 0x36, 0xb0, 0x1f, 0x8c, + 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x07, 0x96, 0x6f, 0x0e, 0xe3, 0x00, 0x00, 0x00, } func (m *StakeibcPacketData) Marshal() (dAtA []byte, err error) { diff --git a/x/stakeibc/types/params.pb.go b/x/stakeibc/types/params.pb.go index cb355c88ad..a484d95619 100644 --- a/x/stakeibc/types/params.pb.go +++ b/x/stakeibc/types/params.pb.go @@ -188,42 +188,42 @@ func init() { func init() { proto.RegisterFile("stride/stakeibc/params.proto", fileDescriptor_5aeaab6a38c2b438) } var fileDescriptor_5aeaab6a38c2b438 = []byte{ - // 553 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x93, 0x4f, 0x6f, 0xd3, 0x30, - 0x18, 0xc6, 0x5b, 0x88, 0x4a, 0xe7, 0x01, 0x4d, 0x33, 0x04, 0x51, 0x35, 0x52, 0x40, 0x42, 0x62, - 0x0c, 0x1a, 0xf1, 0xe7, 0x80, 0xd8, 0x01, 0x69, 0xd3, 0x0e, 0xab, 0x06, 0x2a, 0x6d, 0x4f, 0x5c, - 0x2c, 0x27, 0x79, 0xdb, 0x5a, 0x4b, 0xe2, 0x60, 0xbb, 0xa5, 0xdb, 0xa7, 0xe0, 0xc8, 0x91, 0x8f, - 0xc3, 0x71, 0xc7, 0x1d, 0x51, 0xfb, 0x45, 0x90, 0xed, 0x34, 0x6d, 0xd0, 0xe0, 0x56, 0x3d, 0xcf, - 0xef, 0x7d, 0xf2, 0xf8, 0x75, 0x8d, 0x76, 0x85, 0xe4, 0x34, 0x02, 0x5f, 0x48, 0x72, 0x06, 0x34, - 0x08, 0xfd, 0x8c, 0x70, 0x92, 0x88, 0x4e, 0xc6, 0x99, 0x64, 0x4e, 0xc3, 0xb8, 0x9d, 0x95, 0xdb, - 0xba, 0x37, 0x66, 0x63, 0xa6, 0x3d, 0x5f, 0xfd, 0x32, 0xd8, 0x93, 0xab, 0x1a, 0xaa, 0xf5, 0xf4, - 0x9c, 0xb3, 0x87, 0x6c, 0x0e, 0xdf, 0x08, 0x8f, 0x04, 0xa6, 0xa9, 0x04, 0x3e, 0x23, 0xb1, 0x5b, - 0x7d, 0x54, 0x7d, 0x66, 0xf5, 0x1b, 0xb9, 0x7e, 0x92, 0xcb, 0xce, 0x3e, 0x6a, 0x46, 0x10, 0xc3, - 0x98, 0x48, 0x58, 0xb3, 0x35, 0xcd, 0xda, 0x2b, 0xa3, 0x80, 0xf7, 0x90, 0x1d, 0x41, 0xc6, 0x04, - 0x95, 0x6b, 0xf6, 0x86, 0xc9, 0xcd, 0xf5, 0x02, 0x7d, 0x87, 0x5c, 0x0e, 0x11, 0x24, 0x99, 0xa4, - 0x2c, 0xc5, 0xbc, 0x14, 0x7f, 0x53, 0x8f, 0xdc, 0x5f, 0xfb, 0xfd, 0xcd, 0x8f, 0xec, 0xa3, 0xa6, - 0x39, 0x30, 0x0e, 0x59, 0x92, 0x50, 0x21, 0x28, 0x4b, 0x5d, 0xcb, 0x34, 0x32, 0xc6, 0x51, 0xa1, - 0x2b, 0x98, 0x03, 0x4d, 0x67, 0x20, 0x36, 0x2a, 0xdd, 0x32, 0xf0, 0xca, 0x28, 0x92, 0x9f, 0xa3, - 0x26, 0x0d, 0x09, 0x96, 0x34, 0x01, 0x36, 0x95, 0x38, 0x25, 0x29, 0x13, 0xee, 0x96, 0xe9, 0x4f, - 0x43, 0x32, 0x34, 0xfa, 0x27, 0x25, 0x3b, 0x6d, 0xb4, 0x1d, 0x4c, 0x47, 0x23, 0xe0, 0x58, 0xd0, - 0x0b, 0x70, 0x91, 0xa6, 0x90, 0x91, 0x06, 0xf4, 0x02, 0x9c, 0x17, 0xc8, 0xa1, 0x41, 0x58, 0x84, - 0x05, 0x31, 0x0b, 0xcf, 0x84, 0xbb, 0x6d, 0x3e, 0x4d, 0x83, 0x30, 0x4f, 0x3b, 0xd4, 0xba, 0x73, - 0x80, 0x5a, 0x23, 0x00, 0x2c, 0x39, 0x49, 0x85, 0x0a, 0x2d, 0x77, 0xb8, 0xad, 0xa7, 0x1e, 0x8c, - 0x00, 0x86, 0x39, 0x50, 0xea, 0xf2, 0x01, 0x3d, 0x4c, 0xc8, 0x1c, 0xeb, 0xfb, 0xc7, 0xea, 0x04, - 0x21, 0x89, 0x63, 0x81, 0x33, 0xe0, 0x18, 0x32, 0x16, 0x4e, 0xdc, 0x3b, 0x7a, 0xde, 0x4d, 0xc8, - 0x7c, 0xa0, 0x98, 0x93, 0x90, 0x1c, 0x29, 0xa2, 0x07, 0xfc, 0x58, 0xf9, 0x4e, 0x0f, 0x3d, 0x8d, - 0x60, 0x44, 0xa6, 0xb1, 0xc4, 0x09, 0x4d, 0xf1, 0xdf, 0x17, 0x23, 0x27, 0x1c, 0xc4, 0x84, 0xc5, - 0x91, 0x7b, 0x57, 0x07, 0x3d, 0xce, 0xe1, 0x8f, 0x34, 0xed, 0x97, 0xee, 0x68, 0xb8, 0x02, 0x4b, - 0x89, 0x64, 0xfe, 0x9f, 0xc4, 0x46, 0x39, 0x91, 0xcc, 0xff, 0x95, 0x78, 0x80, 0x5a, 0x7a, 0x9f, - 0xd7, 0x6f, 0xc8, 0x36, 0x1b, 0x52, 0x7b, 0xbd, 0x6e, 0x43, 0xc7, 0xa8, 0x3d, 0x23, 0x31, 0x8d, - 0x88, 0x64, 0x1c, 0x8b, 0x98, 0x88, 0x09, 0xfe, 0x3a, 0x05, 0x7e, 0xbe, 0x51, 0x64, 0x47, 0x27, - 0xec, 0x16, 0xd8, 0x40, 0x51, 0x9f, 0x15, 0x54, 0x74, 0x78, 0x6f, 0xfd, 0xf8, 0xd9, 0xae, 0x74, - 0xad, 0x7a, 0xdd, 0xde, 0xea, 0x5a, 0xf5, 0xa6, 0xed, 0x74, 0xad, 0xba, 0x63, 0xef, 0x1c, 0x9e, - 0xfe, 0x5a, 0x78, 0xd5, 0xcb, 0x85, 0x57, 0xfd, 0xbd, 0xf0, 0xaa, 0xdf, 0x97, 0x5e, 0xe5, 0x72, - 0xe9, 0x55, 0xae, 0x96, 0x5e, 0xe5, 0xcb, 0xeb, 0x31, 0x95, 0x93, 0x69, 0xd0, 0x09, 0x59, 0xe2, - 0x0f, 0xf4, 0x9f, 0xf3, 0xe5, 0x29, 0x09, 0x84, 0x9f, 0x3f, 0xe8, 0xd9, 0xab, 0xb7, 0xfe, 0x7c, - 0xfd, 0xac, 0xe5, 0x79, 0x06, 0x22, 0xa8, 0xe9, 0xf7, 0xfa, 0xe6, 0x4f, 0x00, 0x00, 0x00, 0xff, - 0xff, 0x16, 0x14, 0x39, 0x66, 0xf6, 0x03, 0x00, 0x00, + // 552 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x93, 0x41, 0x6f, 0xd3, 0x30, + 0x1c, 0xc5, 0x5b, 0x88, 0x4a, 0xe7, 0x01, 0x4d, 0x33, 0x04, 0x51, 0x35, 0x52, 0x40, 0x42, 0x62, + 0x0c, 0x1a, 0x01, 0x42, 0x42, 0xec, 0x80, 0xb4, 0x69, 0x87, 0x55, 0x03, 0x95, 0xb6, 0x27, 0x2e, + 0x96, 0x93, 0xfc, 0xdb, 0x5a, 0x4b, 0xe2, 0x60, 0xbb, 0xa5, 0xdb, 0xa7, 0xe0, 0xc8, 0x91, 0x8f, + 0xc3, 0x71, 0xc7, 0x1d, 0x51, 0xfb, 0x45, 0x90, 0xed, 0x34, 0x6d, 0xd0, 0xe0, 0x56, 0xbd, 0xf7, + 0xfb, 0xbf, 0x3c, 0xff, 0x5d, 0xa3, 0x5d, 0x21, 0x39, 0x8d, 0xc0, 0x17, 0x92, 0x9c, 0x01, 0x0d, + 0x42, 0x3f, 0x23, 0x9c, 0x24, 0xa2, 0x93, 0x71, 0x26, 0x99, 0xd3, 0x30, 0x6e, 0x67, 0xe5, 0xb6, + 0xee, 0x8d, 0xd9, 0x98, 0x69, 0xcf, 0x57, 0xbf, 0x0c, 0xf6, 0xe4, 0xaa, 0x86, 0x6a, 0x3d, 0x3d, + 0xe7, 0xec, 0x21, 0x9b, 0xc3, 0x37, 0xc2, 0x23, 0x81, 0x69, 0x2a, 0x81, 0xcf, 0x48, 0xec, 0x56, + 0x1f, 0x55, 0x9f, 0x59, 0xfd, 0x46, 0xae, 0x9f, 0xe4, 0xb2, 0xb3, 0x8f, 0x9a, 0x11, 0xc4, 0x30, + 0x26, 0x12, 0xd6, 0x6c, 0x4d, 0xb3, 0xf6, 0xca, 0x28, 0xe0, 0x3d, 0x64, 0x47, 0x90, 0x31, 0x41, + 0xe5, 0x9a, 0xbd, 0x61, 0x72, 0x73, 0xbd, 0x40, 0xdf, 0x21, 0x97, 0x43, 0x04, 0x49, 0x26, 0x29, + 0x4b, 0x31, 0x2f, 0xc5, 0xdf, 0xd4, 0x23, 0xf7, 0xd7, 0x7e, 0x7f, 0xf3, 0x23, 0xfb, 0xa8, 0x69, + 0x0e, 0x8c, 0x43, 0x96, 0x24, 0x54, 0x08, 0xca, 0x52, 0xd7, 0x32, 0x8d, 0x8c, 0x71, 0x54, 0xe8, + 0x0a, 0xe6, 0x40, 0xd3, 0x19, 0x88, 0x8d, 0x4a, 0xb7, 0x0c, 0xbc, 0x32, 0x8a, 0xe4, 0xe7, 0xa8, + 0x49, 0x43, 0x82, 0x25, 0x4d, 0x80, 0x4d, 0x25, 0x4e, 0x49, 0xca, 0x84, 0xbb, 0x65, 0xfa, 0xd3, + 0x90, 0x0c, 0x8d, 0xfe, 0x49, 0xc9, 0x4e, 0x1b, 0x6d, 0x07, 0xd3, 0xd1, 0x08, 0x38, 0x16, 0xf4, + 0x02, 0x5c, 0xa4, 0x29, 0x64, 0xa4, 0x01, 0xbd, 0x00, 0xe7, 0x05, 0x72, 0x68, 0x10, 0x16, 0x61, + 0x41, 0xcc, 0xc2, 0x33, 0xe1, 0x6e, 0x9b, 0x4f, 0xd3, 0x20, 0xcc, 0xd3, 0x0e, 0xb5, 0xee, 0x1c, + 0xa0, 0xd6, 0x08, 0x00, 0x4b, 0x4e, 0x52, 0xa1, 0x42, 0xcb, 0x1d, 0x6e, 0xeb, 0xa9, 0x07, 0x23, + 0x80, 0x61, 0x0e, 0x94, 0xba, 0x7c, 0x40, 0x0f, 0x13, 0x32, 0xc7, 0xfa, 0xfe, 0xb1, 0x3a, 0x41, + 0x48, 0xe2, 0x58, 0xe0, 0x0c, 0x38, 0x86, 0x8c, 0x85, 0x13, 0xf7, 0x8e, 0x9e, 0x77, 0x13, 0x32, + 0x1f, 0x28, 0xe6, 0x24, 0x24, 0x47, 0x8a, 0xe8, 0x01, 0x3f, 0x56, 0xbe, 0xd3, 0x43, 0x4f, 0x23, + 0x18, 0x91, 0x69, 0x2c, 0x71, 0x42, 0x53, 0xfc, 0xf7, 0xc5, 0xc8, 0x09, 0x07, 0x31, 0x61, 0x71, + 0xe4, 0xde, 0xd5, 0x41, 0x8f, 0x73, 0xf8, 0x23, 0x4d, 0xfb, 0xa5, 0x3b, 0x1a, 0xae, 0xc0, 0x52, + 0x22, 0x99, 0xff, 0x27, 0xb1, 0x51, 0x4e, 0x24, 0xf3, 0x7f, 0x25, 0x1e, 0xa0, 0x96, 0xde, 0xe7, + 0xf5, 0x1b, 0xb2, 0xcd, 0x86, 0xd4, 0x5e, 0xaf, 0xdb, 0xd0, 0x31, 0x6a, 0xcf, 0x48, 0x4c, 0x23, + 0x22, 0x19, 0xc7, 0x22, 0x26, 0x62, 0x82, 0xbf, 0x4e, 0x81, 0x9f, 0x6f, 0x14, 0xd9, 0xd1, 0x09, + 0xbb, 0x05, 0x36, 0x50, 0xd4, 0x67, 0x05, 0x15, 0x1d, 0xde, 0x5b, 0x3f, 0x7e, 0xb6, 0x2b, 0x5d, + 0xab, 0x5e, 0xb7, 0xb7, 0xba, 0x56, 0xbd, 0x69, 0x3b, 0x5d, 0xab, 0xee, 0xd8, 0x3b, 0x87, 0xa7, + 0xbf, 0x16, 0x5e, 0xf5, 0x72, 0xe1, 0x55, 0x7f, 0x2f, 0xbc, 0xea, 0xf7, 0xa5, 0x57, 0xb9, 0x5c, + 0x7a, 0x95, 0xab, 0xa5, 0x57, 0xf9, 0xf2, 0x7a, 0x4c, 0xe5, 0x64, 0x1a, 0x74, 0x42, 0x96, 0xf8, + 0x03, 0xfd, 0xe7, 0x7c, 0x79, 0x4a, 0x02, 0xe1, 0xe7, 0x0f, 0x7a, 0xf6, 0xea, 0xad, 0x3f, 0x5f, + 0x3f, 0x6b, 0x79, 0x9e, 0x81, 0x08, 0x6a, 0xfa, 0xbd, 0xbe, 0xf9, 0x13, 0x00, 0x00, 0xff, 0xff, + 0x81, 0xb2, 0x24, 0x81, 0xf6, 0x03, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/stakeibc/types/query.pb.go b/x/stakeibc/types/query.pb.go index efcc520213..4c7a5b86a0 100644 --- a/x/stakeibc/types/query.pb.go +++ b/x/stakeibc/types/query.pb.go @@ -957,80 +957,80 @@ func init() { func init() { proto.RegisterFile("stride/stakeibc/query.proto", fileDescriptor_494b786fe66f2b80) } var fileDescriptor_494b786fe66f2b80 = []byte{ - // 1156 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x97, 0x4d, 0x6f, 0x1b, 0x45, - 0x18, 0xc7, 0xb3, 0x6d, 0x9a, 0x97, 0x27, 0x89, 0x42, 0x87, 0x88, 0x38, 0xdb, 0xc4, 0x21, 0xd3, - 0xd2, 0xbc, 0x90, 0x7a, 0x89, 0x13, 0x90, 0x1a, 0x51, 0x41, 0x22, 0xb5, 0x8d, 0x51, 0x40, 0xc1, - 0x85, 0x0a, 0x95, 0x83, 0x35, 0xde, 0x1d, 0xec, 0x55, 0xd7, 0x33, 0xee, 0xee, 0x3a, 0x24, 0x44, - 0x56, 0x25, 0x3e, 0x41, 0x05, 0xe2, 0xc2, 0xad, 0x88, 0x03, 0x67, 0x3e, 0x45, 0x6f, 0x54, 0xe2, - 0xc2, 0x29, 0x42, 0x09, 0x9f, 0xa0, 0xe2, 0x03, 0xa0, 0x9d, 0x99, 0x5d, 0xdb, 0xfb, 0x62, 0x9c, - 0xde, 0x3c, 0x33, 0xcf, 0xcb, 0x6f, 0x9e, 0x79, 0xe6, 0x3f, 0x6b, 0xb8, 0xe6, 0xf9, 0xae, 0x6d, - 0x51, 0xc3, 0xf3, 0xc9, 0x63, 0x6a, 0x57, 0x4d, 0xe3, 0x49, 0x8b, 0xba, 0xc7, 0x85, 0xa6, 0xcb, - 0x7d, 0x8e, 0xa6, 0xe5, 0x62, 0x21, 0x5c, 0xd4, 0x67, 0x6a, 0xbc, 0xc6, 0xc5, 0x9a, 0x11, 0xfc, - 0x92, 0x66, 0xfa, 0x7c, 0x8d, 0xf3, 0x9a, 0x43, 0x0d, 0xd2, 0xb4, 0x0d, 0xc2, 0x18, 0xf7, 0x89, - 0x6f, 0x73, 0xe6, 0xa9, 0xd5, 0x35, 0x93, 0x7b, 0x0d, 0xee, 0x19, 0x55, 0xe2, 0x51, 0x19, 0xdd, - 0x38, 0xdc, 0xa8, 0x52, 0x9f, 0x6c, 0x18, 0x4d, 0x52, 0xb3, 0x99, 0x30, 0x0e, 0x23, 0xc5, 0x69, - 0x9a, 0xc4, 0x25, 0x8d, 0x30, 0xd2, 0x62, 0x7c, 0xf5, 0x90, 0x38, 0xb6, 0x45, 0x7c, 0xee, 0x66, - 0x19, 0xd4, 0xb9, 0xe7, 0x57, 0xbe, 0xe3, 0x8c, 0x2a, 0x83, 0xeb, 0x71, 0x03, 0xda, 0xe4, 0x66, - 0xbd, 0xe2, 0xbb, 0xc4, 0x7c, 0x4c, 0xc3, 0x28, 0xcb, 0x71, 0x23, 0x62, 0x59, 0x2e, 0xf5, 0xbc, - 0x4a, 0x8b, 0x55, 0x39, 0xb3, 0x6c, 0x56, 0x93, 0x86, 0xf8, 0x29, 0xac, 0x7c, 0x1e, 0xec, 0xa7, - 0xc4, 0x7c, 0xea, 0x9a, 0x75, 0x62, 0xb3, 0x1d, 0xd3, 0xe4, 0x2d, 0xe6, 0xdf, 0x73, 0x79, 0x63, - 0x47, 0x3a, 0x95, 0xe9, 0x93, 0x16, 0xf5, 0x7c, 0x34, 0x03, 0x57, 0xf8, 0xb7, 0x8c, 0xba, 0x39, - 0xed, 0x6d, 0x6d, 0x65, 0xbc, 0x2c, 0x07, 0xe8, 0x0e, 0x4c, 0x99, 0x9c, 0x31, 0x6a, 0x06, 0x35, - 0xa8, 0xd8, 0x56, 0xee, 0x52, 0xb0, 0xba, 0x9b, 0x7b, 0x75, 0xba, 0x38, 0x73, 0x4c, 0x1a, 0xce, - 0x36, 0xee, 0x59, 0xc6, 0xe5, 0xc9, 0xce, 0xb8, 0x64, 0xe1, 0x67, 0x1a, 0xac, 0x0e, 0x40, 0xe0, - 0x35, 0x39, 0xf3, 0x28, 0x32, 0x41, 0xb7, 0x23, 0xbb, 0x0a, 0x91, 0x86, 0x15, 0xb5, 0x39, 0xc9, - 0xb5, 0xfb, 0xce, 0xab, 0xd3, 0xc5, 0x25, 0x99, 0x39, 0xdb, 0x16, 0x97, 0x73, 0x76, 0x3c, 0xa1, - 0x4a, 0x86, 0x67, 0x00, 0x09, 0xa2, 0x03, 0x71, 0x70, 0x6a, 0xf7, 0x78, 0x1f, 0xde, 0xec, 0x99, - 0x55, 0x44, 0xef, 0xc3, 0x88, 0x3c, 0x60, 0x91, 0x7d, 0xa2, 0x38, 0x5b, 0x88, 0x35, 0x5c, 0x41, - 0x3a, 0xec, 0x0e, 0xbf, 0x38, 0x5d, 0x1c, 0x2a, 0x2b, 0x63, 0xfc, 0x01, 0xcc, 0x89, 0x68, 0xf7, - 0xa9, 0xff, 0x30, 0xec, 0x80, 0xa8, 0xd0, 0x73, 0x30, 0x26, 0xa1, 0x6d, 0x4b, 0xd5, 0x7a, 0x54, - 0x8c, 0x4b, 0x16, 0xfe, 0x0a, 0xf4, 0x34, 0x3f, 0x05, 0xb3, 0x0d, 0x10, 0xf5, 0x53, 0x00, 0x74, - 0x79, 0x65, 0xa2, 0xa8, 0x27, 0x80, 0x22, 0xc7, 0x72, 0x97, 0x35, 0xde, 0x82, 0xd9, 0x30, 0xf2, - 0x1e, 0xf7, 0xfc, 0x47, 0x9c, 0xd1, 0x81, 0x78, 0x72, 0x49, 0x2f, 0x45, 0xf3, 0x21, 0x8c, 0x47, - 0xcd, 0xab, 0xaa, 0x33, 0x97, 0x80, 0x09, 0xbd, 0x54, 0x7d, 0xc6, 0xea, 0x6a, 0x8c, 0x89, 0xe2, - 0xd9, 0x71, 0x9c, 0x38, 0xcf, 0x3d, 0x80, 0xce, 0xb5, 0x53, 0x91, 0x6f, 0x16, 0xe4, 0x1d, 0x2d, - 0x04, 0x77, 0xb4, 0x20, 0x15, 0x40, 0xdd, 0xd1, 0xc2, 0x01, 0xa9, 0x85, 0xbe, 0xe5, 0x2e, 0x4f, - 0xfc, 0x5c, 0x53, 0xf4, 0x3d, 0x39, 0xd2, 0xe9, 0x2f, 0x5f, 0x88, 0x1e, 0xdd, 0xef, 0x41, 0xbc, - 0x24, 0x10, 0x97, 0xff, 0x17, 0x51, 0xa6, 0xee, 0x61, 0x34, 0x54, 0xa3, 0x7c, 0xca, 0xad, 0x96, - 0x43, 0x63, 0x37, 0x12, 0xc1, 0x30, 0x23, 0x0d, 0xaa, 0x0e, 0x45, 0xfc, 0xc6, 0xef, 0xa9, 0x0e, - 0x89, 0x39, 0xa8, 0x5d, 0x21, 0x18, 0x0e, 0x6e, 0x40, 0xe8, 0x11, 0xfc, 0xc6, 0x7b, 0x70, 0x2d, - 0x3c, 0xc3, 0xbb, 0x81, 0x96, 0x7c, 0x21, 0xa5, 0x24, 0x4c, 0xb2, 0x0a, 0x6f, 0x48, 0x89, 0xb1, - 0x2d, 0xca, 0x7c, 0xfb, 0x1b, 0x3b, 0x52, 0x80, 0x69, 0x31, 0x5f, 0x8a, 0xa6, 0x71, 0x1d, 0xe6, - 0xd3, 0x23, 0xa9, 0xec, 0x7b, 0x30, 0xd5, 0xa3, 0x56, 0xea, 0xec, 0x16, 0x12, 0x75, 0xed, 0xf6, - 0x56, 0xb5, 0x9d, 0xa4, 0x5d, 0x73, 0x78, 0x41, 0x31, 0xef, 0x38, 0x4e, 0x0a, 0x73, 0x04, 0x92, - 0x58, 0xce, 0x06, 0xb9, 0xfc, 0x7a, 0x20, 0x5f, 0xc3, 0x52, 0xb8, 0xe5, 0xcf, 0xe8, 0x91, 0x7f, - 0x10, 0xcc, 0xfa, 0x0f, 0x02, 0x0c, 0x66, 0x46, 0x0d, 0xbb, 0x00, 0x60, 0xd6, 0x09, 0x63, 0xd4, - 0xe9, 0x5c, 0xa1, 0x71, 0x35, 0x53, 0xb2, 0xd0, 0x2c, 0x8c, 0x36, 0xb9, 0xeb, 0x47, 0xe2, 0x59, - 0x1e, 0x09, 0x86, 0x25, 0x0b, 0x7f, 0x0c, 0xb8, 0x5f, 0x70, 0xb5, 0x19, 0x1d, 0xc6, 0x3c, 0x35, - 0x27, 0x62, 0x0f, 0x97, 0xa3, 0x31, 0x2e, 0xc2, 0x5b, 0xb2, 0x10, 0xb2, 0x0f, 0xbe, 0x0c, 0xe5, - 0xdf, 0x43, 0x39, 0x18, 0xed, 0xd1, 0xcd, 0x72, 0x38, 0xc4, 0x47, 0x90, 0x4f, 0xf7, 0x89, 0x32, - 0x3e, 0x04, 0x94, 0x78, 0x50, 0x42, 0xbd, 0x59, 0x4a, 0xd4, 0x30, 0x1e, 0x47, 0xd5, 0xf1, 0x2a, - 0x89, 0xc7, 0x2f, 0xfe, 0x3b, 0x09, 0x57, 0x44, 0x6a, 0xf4, 0x14, 0x46, 0xa4, 0x6e, 0xa2, 0xeb, - 0x89, 0x78, 0x49, 0x71, 0xd6, 0x6f, 0xf4, 0x37, 0x92, 0xd8, 0x78, 0xed, 0xfb, 0x3f, 0xff, 0xf9, - 0xf1, 0xd2, 0x0d, 0x84, 0x8d, 0x07, 0xc2, 0xda, 0x21, 0x55, 0xcf, 0x48, 0x7f, 0xae, 0xd1, 0x73, - 0x0d, 0xa0, 0xa3, 0xb0, 0x68, 0x2d, 0x3d, 0x41, 0x9a, 0x7c, 0xeb, 0xef, 0x0e, 0x64, 0xab, 0x98, - 0xb6, 0x05, 0xd3, 0x16, 0x2a, 0x2a, 0xa6, 0x5b, 0xfb, 0x69, 0x50, 0x1d, 0x9d, 0x36, 0x4e, 0x42, - 0x29, 0x6e, 0xa3, 0x9f, 0x35, 0x18, 0x0b, 0x15, 0x08, 0xad, 0x64, 0x66, 0x8d, 0xc9, 0xa7, 0xbe, - 0x3a, 0x80, 0xa5, 0xa2, 0xbb, 0x2d, 0xe8, 0x36, 0xd1, 0x46, 0x5f, 0xba, 0x48, 0x27, 0xbb, 0xe1, - 0x7e, 0xd0, 0x60, 0x22, 0x8c, 0xb7, 0xe3, 0x38, 0x59, 0x7c, 0x49, 0x79, 0xcf, 0xe2, 0x4b, 0x11, - 0x69, 0x5c, 0x10, 0x7c, 0x2b, 0xe8, 0xe6, 0x60, 0x7c, 0xe8, 0x57, 0x0d, 0xa6, 0x7a, 0x84, 0x31, - 0xeb, 0x60, 0xd3, 0xe4, 0x36, 0xeb, 0x60, 0x53, 0x95, 0x76, 0xc0, 0x83, 0x6d, 0x08, 0xdf, 0xf0, - 0xab, 0xc4, 0x38, 0x09, 0x24, 0xbc, 0x8d, 0x7e, 0xd2, 0x60, 0xbe, 0xdf, 0xf7, 0x10, 0xba, 0x9d, - 0x4e, 0x32, 0xc0, 0x57, 0x9c, 0xbe, 0xfd, 0x3a, 0xae, 0xea, 0xde, 0xff, 0xae, 0xc1, 0x64, 0xb7, - 0x22, 0xa2, 0xf5, 0xcc, 0x56, 0x4a, 0x51, 0x65, 0xfd, 0xd6, 0x80, 0xd6, 0xaa, 0x82, 0x77, 0x45, - 0x05, 0x3f, 0x42, 0x77, 0xfa, 0x56, 0xb0, 0x47, 0xc7, 0x8d, 0x93, 0xf8, 0x53, 0xd5, 0x46, 0xbf, - 0x68, 0x30, 0xdd, 0x1d, 0x3f, 0x68, 0xc6, 0xf5, 0xcc, 0x16, 0xbb, 0x00, 0x77, 0xc6, 0xe3, 0x82, - 0x8b, 0x82, 0x7b, 0x1d, 0xad, 0x0d, 0xce, 0x8d, 0xfe, 0xd0, 0x00, 0x25, 0x25, 0x1e, 0x15, 0x33, - 0x2b, 0x96, 0xf9, 0xd8, 0xe8, 0x9b, 0x17, 0xf2, 0x51, 0xcc, 0x07, 0x82, 0xf9, 0x13, 0xb4, 0xd7, - 0x97, 0x99, 0xd1, 0x23, 0xbf, 0xd2, 0x14, 0x11, 0x2a, 0xe1, 0x13, 0x23, 0xee, 0xbc, 0x7a, 0xda, - 0xda, 0xc6, 0x89, 0x7a, 0xc8, 0xda, 0xe8, 0x37, 0x0d, 0xae, 0x26, 0x5f, 0x9d, 0xe5, 0x8c, 0x52, - 0xc6, 0x0d, 0x75, 0x63, 0x40, 0xc3, 0x0b, 0x4a, 0x55, 0xe7, 0xb9, 0x32, 0x4e, 0xd4, 0xa5, 0x6b, - 0xef, 0xee, 0xbf, 0x38, 0xcb, 0x6b, 0x2f, 0xcf, 0xf2, 0xda, 0xdf, 0x67, 0x79, 0xed, 0xd9, 0x79, - 0x7e, 0xe8, 0xe5, 0x79, 0x7e, 0xe8, 0xaf, 0xf3, 0xfc, 0xd0, 0xa3, 0x62, 0xcd, 0xf6, 0xeb, 0xad, - 0x6a, 0xc1, 0xe4, 0x8d, 0xb4, 0xb0, 0x87, 0x1b, 0x5b, 0xc6, 0x51, 0x27, 0xb8, 0x7f, 0xdc, 0xa4, - 0x5e, 0x75, 0x44, 0xfc, 0xb3, 0xda, 0xfc, 0x2f, 0x00, 0x00, 0xff, 0xff, 0x87, 0xfb, 0x6d, 0x21, - 0x97, 0x0e, 0x00, 0x00, + // 1158 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x97, 0xdd, 0x6e, 0x1b, 0x45, + 0x1b, 0xc7, 0xb3, 0x4d, 0x9a, 0x8f, 0x27, 0x89, 0xf2, 0x76, 0xde, 0x88, 0x38, 0xdb, 0xc4, 0x21, + 0xd3, 0xd2, 0x7c, 0x90, 0x7a, 0x89, 0xd3, 0x22, 0x35, 0xa2, 0x82, 0x44, 0x6a, 0x1b, 0xa3, 0x80, + 0x82, 0x0b, 0x15, 0x2a, 0x07, 0xd6, 0x78, 0x77, 0xb0, 0x57, 0x5d, 0xcf, 0xb8, 0xbb, 0xeb, 0x90, + 0x10, 0x59, 0x95, 0xb8, 0x82, 0x0a, 0xc4, 0x09, 0x67, 0x45, 0x1c, 0x70, 0xcc, 0x55, 0xf4, 0x8c, + 0x4a, 0x9c, 0x70, 0x14, 0xa1, 0x84, 0x2b, 0xa8, 0xb8, 0x00, 0xb4, 0x33, 0xb3, 0x6b, 0x7b, 0x3f, + 0x8c, 0xd3, 0x33, 0xcf, 0xcc, 0xf3, 0xf1, 0x9b, 0x67, 0x9e, 0xf9, 0xcf, 0x1a, 0xae, 0x7a, 0xbe, + 0x6b, 0x5b, 0xd4, 0xf0, 0x7c, 0xf2, 0x84, 0xda, 0x55, 0xd3, 0x78, 0xda, 0xa2, 0xee, 0x71, 0xa1, + 0xe9, 0x72, 0x9f, 0xa3, 0x19, 0xb9, 0x58, 0x08, 0x17, 0xf5, 0xd9, 0x1a, 0xaf, 0x71, 0xb1, 0x66, + 0x04, 0xbf, 0xa4, 0x99, 0xbe, 0x50, 0xe3, 0xbc, 0xe6, 0x50, 0x83, 0x34, 0x6d, 0x83, 0x30, 0xc6, + 0x7d, 0xe2, 0xdb, 0x9c, 0x79, 0x6a, 0x75, 0xdd, 0xe4, 0x5e, 0x83, 0x7b, 0x46, 0x95, 0x78, 0x54, + 0x46, 0x37, 0x0e, 0x37, 0xab, 0xd4, 0x27, 0x9b, 0x46, 0x93, 0xd4, 0x6c, 0x26, 0x8c, 0xc3, 0x48, + 0x71, 0x9a, 0x26, 0x71, 0x49, 0x23, 0x8c, 0xb4, 0x14, 0x5f, 0x3d, 0x24, 0x8e, 0x6d, 0x11, 0x9f, + 0xbb, 0x59, 0x06, 0x75, 0xee, 0xf9, 0x95, 0x6f, 0x39, 0xa3, 0xca, 0xe0, 0x5a, 0xdc, 0x80, 0x36, + 0xb9, 0x59, 0xaf, 0xf8, 0x2e, 0x31, 0x9f, 0xd0, 0x30, 0xca, 0x4a, 0xdc, 0x88, 0x58, 0x96, 0x4b, + 0x3d, 0xaf, 0xd2, 0x62, 0x55, 0xce, 0x2c, 0x9b, 0xd5, 0xa4, 0x21, 0x7e, 0x06, 0xab, 0x9f, 0x05, + 0xfb, 0x29, 0x31, 0x9f, 0xba, 0x66, 0x9d, 0xd8, 0x6c, 0xc7, 0x34, 0x79, 0x8b, 0xf9, 0xf7, 0x5d, + 0xde, 0xd8, 0x91, 0x4e, 0x65, 0xfa, 0xb4, 0x45, 0x3d, 0x1f, 0xcd, 0xc2, 0x65, 0xfe, 0x0d, 0xa3, + 0x6e, 0x4e, 0x7b, 0x5b, 0x5b, 0x9d, 0x28, 0xcb, 0x01, 0xba, 0x0b, 0xd3, 0x26, 0x67, 0x8c, 0x9a, + 0x41, 0x0d, 0x2a, 0xb6, 0x95, 0xbb, 0x14, 0xac, 0xee, 0xe6, 0x5e, 0x9f, 0x2e, 0xcd, 0x1e, 0x93, + 0x86, 0xb3, 0x8d, 0x7b, 0x96, 0x71, 0x79, 0xaa, 0x33, 0x2e, 0x59, 0xf8, 0xb9, 0x06, 0x6b, 0x03, + 0x10, 0x78, 0x4d, 0xce, 0x3c, 0x8a, 0x4c, 0xd0, 0xed, 0xc8, 0xae, 0x42, 0xa4, 0x61, 0x45, 0x6d, + 0x4e, 0x72, 0xed, 0xbe, 0xf3, 0xfa, 0x74, 0x69, 0x59, 0x66, 0xce, 0xb6, 0xc5, 0xe5, 0x9c, 0x1d, + 0x4f, 0xa8, 0x92, 0xe1, 0x59, 0x40, 0x82, 0xe8, 0x40, 0x1c, 0x9c, 0xda, 0x3d, 0xde, 0x87, 0xff, + 0xf7, 0xcc, 0x2a, 0xa2, 0xdb, 0x30, 0x2a, 0x0f, 0x58, 0x64, 0x9f, 0x2c, 0xce, 0x15, 0x62, 0x0d, + 0x57, 0x90, 0x0e, 0xbb, 0x23, 0x2f, 0x4f, 0x97, 0x86, 0xca, 0xca, 0x18, 0xbf, 0x0f, 0xf3, 0x22, + 0xda, 0x03, 0xea, 0x3f, 0x0a, 0x3b, 0x20, 0x2a, 0xf4, 0x3c, 0x8c, 0x4b, 0x68, 0xdb, 0x52, 0xb5, + 0x1e, 0x13, 0xe3, 0x92, 0x85, 0xbf, 0x04, 0x3d, 0xcd, 0x4f, 0xc1, 0x6c, 0x03, 0x44, 0xfd, 0x14, + 0x00, 0x0d, 0xaf, 0x4e, 0x16, 0xf5, 0x04, 0x50, 0xe4, 0x58, 0xee, 0xb2, 0xc6, 0xb7, 0x60, 0x2e, + 0x8c, 0xbc, 0xc7, 0x3d, 0xff, 0x31, 0x67, 0x74, 0x20, 0x9e, 0x5c, 0xd2, 0x4b, 0xd1, 0x7c, 0x00, + 0x13, 0x51, 0xf3, 0xaa, 0xea, 0xcc, 0x27, 0x60, 0x42, 0x2f, 0x55, 0x9f, 0xf1, 0xba, 0x1a, 0x63, + 0xa2, 0x78, 0x76, 0x1c, 0x27, 0xce, 0x73, 0x1f, 0xa0, 0x73, 0xed, 0x54, 0xe4, 0x1b, 0x05, 0x79, + 0x47, 0x0b, 0xc1, 0x1d, 0x2d, 0x48, 0x05, 0x50, 0x77, 0xb4, 0x70, 0x40, 0x6a, 0xa1, 0x6f, 0xb9, + 0xcb, 0x13, 0xbf, 0xd0, 0x14, 0x7d, 0x4f, 0x8e, 0x74, 0xfa, 0xe1, 0x0b, 0xd1, 0xa3, 0x07, 0x3d, + 0x88, 0x97, 0x04, 0xe2, 0xca, 0x7f, 0x22, 0xca, 0xd4, 0x3d, 0x8c, 0x86, 0x6a, 0x94, 0x4f, 0xb8, + 0xd5, 0x72, 0x68, 0xec, 0x46, 0x22, 0x18, 0x61, 0xa4, 0x41, 0xd5, 0xa1, 0x88, 0xdf, 0xf8, 0x3d, + 0xd5, 0x21, 0x31, 0x07, 0xb5, 0x2b, 0x04, 0x23, 0xc1, 0x0d, 0x08, 0x3d, 0x82, 0xdf, 0x78, 0x0f, + 0xae, 0x86, 0x67, 0x78, 0x2f, 0xd0, 0x92, 0xcf, 0xa5, 0x94, 0x84, 0x49, 0xd6, 0xe0, 0x7f, 0x52, + 0x62, 0x6c, 0x8b, 0x32, 0xdf, 0xfe, 0xda, 0x8e, 0x14, 0x60, 0x46, 0xcc, 0x97, 0xa2, 0x69, 0x5c, + 0x87, 0x85, 0xf4, 0x48, 0x2a, 0xfb, 0x1e, 0x4c, 0xf7, 0xa8, 0x95, 0x3a, 0xbb, 0xc5, 0x44, 0x5d, + 0xbb, 0xbd, 0x55, 0x6d, 0xa7, 0x68, 0xd7, 0x1c, 0x5e, 0x54, 0xcc, 0x3b, 0x8e, 0x93, 0xc2, 0x1c, + 0x81, 0x24, 0x96, 0xb3, 0x41, 0x86, 0xdf, 0x0c, 0xe4, 0x2b, 0x58, 0x0e, 0xb7, 0xfc, 0x29, 0x3d, + 0xf2, 0x0f, 0x82, 0x59, 0xff, 0x61, 0x80, 0xc1, 0xcc, 0xa8, 0x61, 0x17, 0x01, 0xcc, 0x3a, 0x61, + 0x8c, 0x3a, 0x9d, 0x2b, 0x34, 0xa1, 0x66, 0x4a, 0x16, 0x9a, 0x83, 0xb1, 0x26, 0x77, 0xfd, 0x48, + 0x3c, 0xcb, 0xa3, 0xc1, 0xb0, 0x64, 0xe1, 0x8f, 0x00, 0xf7, 0x0b, 0xae, 0x36, 0xa3, 0xc3, 0xb8, + 0xa7, 0xe6, 0x44, 0xec, 0x91, 0x72, 0x34, 0xc6, 0x45, 0x78, 0x4b, 0x16, 0x42, 0xf6, 0xc1, 0x17, + 0xa1, 0xfc, 0x7b, 0x28, 0x07, 0x63, 0x3d, 0xba, 0x59, 0x0e, 0x87, 0xf8, 0x08, 0xf2, 0xe9, 0x3e, + 0x51, 0xc6, 0x47, 0x80, 0x12, 0x0f, 0x4a, 0xa8, 0x37, 0xcb, 0x89, 0x1a, 0xc6, 0xe3, 0xa8, 0x3a, + 0x5e, 0x21, 0xf1, 0xf8, 0xc5, 0x7f, 0xa6, 0xe0, 0xb2, 0x48, 0x8d, 0x9e, 0xc1, 0xa8, 0xd4, 0x4d, + 0x74, 0x2d, 0x11, 0x2f, 0x29, 0xce, 0xfa, 0xf5, 0xfe, 0x46, 0x12, 0x1b, 0xaf, 0x7f, 0xf7, 0xc7, + 0xdf, 0x3f, 0x5c, 0xba, 0x8e, 0xb0, 0xf1, 0x50, 0x58, 0x3b, 0xa4, 0xea, 0x19, 0xe9, 0xcf, 0x35, + 0x7a, 0xa1, 0x01, 0x74, 0x14, 0x16, 0xad, 0xa7, 0x27, 0x48, 0x93, 0x6f, 0xfd, 0xdd, 0x81, 0x6c, + 0x15, 0xd3, 0xb6, 0x60, 0xba, 0x85, 0x8a, 0x8a, 0xe9, 0xe6, 0x7e, 0x1a, 0x54, 0x47, 0xa7, 0x8d, + 0x93, 0x50, 0x8a, 0xdb, 0xe8, 0x27, 0x0d, 0xc6, 0x43, 0x05, 0x42, 0xab, 0x99, 0x59, 0x63, 0xf2, + 0xa9, 0xaf, 0x0d, 0x60, 0xa9, 0xe8, 0xee, 0x08, 0xba, 0x2d, 0xb4, 0xd9, 0x97, 0x2e, 0xd2, 0xc9, + 0x6e, 0xb8, 0xef, 0x35, 0x98, 0x0c, 0xe3, 0xed, 0x38, 0x4e, 0x16, 0x5f, 0x52, 0xde, 0xb3, 0xf8, + 0x52, 0x44, 0x1a, 0x17, 0x04, 0xdf, 0x2a, 0xba, 0x31, 0x18, 0x1f, 0xfa, 0x45, 0x83, 0xe9, 0x1e, + 0x61, 0xcc, 0x3a, 0xd8, 0x34, 0xb9, 0xcd, 0x3a, 0xd8, 0x54, 0xa5, 0x1d, 0xf0, 0x60, 0x1b, 0xc2, + 0x37, 0xfc, 0x2a, 0x31, 0x4e, 0x02, 0x09, 0x6f, 0xa3, 0x1f, 0x35, 0x58, 0xe8, 0xf7, 0x3d, 0x84, + 0xee, 0xa4, 0x93, 0x0c, 0xf0, 0x15, 0xa7, 0x6f, 0xbf, 0x89, 0xab, 0xba, 0xf7, 0xbf, 0x69, 0x30, + 0xd5, 0xad, 0x88, 0x68, 0x23, 0xb3, 0x95, 0x52, 0x54, 0x59, 0xbf, 0x39, 0xa0, 0xb5, 0xaa, 0xe0, + 0x3d, 0x51, 0xc1, 0x0f, 0xd1, 0xdd, 0xbe, 0x15, 0xec, 0xd1, 0x71, 0xe3, 0x24, 0xfe, 0x54, 0xb5, + 0xd1, 0xcf, 0x1a, 0xcc, 0x74, 0xc7, 0x0f, 0x9a, 0x71, 0x23, 0xb3, 0xc5, 0x2e, 0xc0, 0x9d, 0xf1, + 0xb8, 0xe0, 0xa2, 0xe0, 0xde, 0x40, 0xeb, 0x83, 0x73, 0xa3, 0xdf, 0x35, 0x40, 0x49, 0x89, 0x47, + 0xc5, 0xcc, 0x8a, 0x65, 0x3e, 0x36, 0xfa, 0xd6, 0x85, 0x7c, 0x14, 0xf3, 0x81, 0x60, 0xfe, 0x18, + 0xed, 0xf5, 0x65, 0x66, 0xf4, 0xc8, 0xaf, 0x34, 0x45, 0x84, 0x4a, 0xf8, 0xc4, 0x88, 0x3b, 0xaf, + 0x9e, 0xb6, 0xb6, 0x71, 0xa2, 0x1e, 0xb2, 0x36, 0xfa, 0x55, 0x83, 0x2b, 0xc9, 0x57, 0x67, 0x25, + 0xa3, 0x94, 0x71, 0x43, 0xdd, 0x18, 0xd0, 0xf0, 0x82, 0x52, 0xd5, 0x79, 0xae, 0x8c, 0x13, 0x75, + 0xe9, 0xda, 0xbb, 0xfb, 0x2f, 0xcf, 0xf2, 0xda, 0xab, 0xb3, 0xbc, 0xf6, 0xd7, 0x59, 0x5e, 0x7b, + 0x7e, 0x9e, 0x1f, 0x7a, 0x75, 0x9e, 0x1f, 0xfa, 0xf3, 0x3c, 0x3f, 0xf4, 0xb8, 0x58, 0xb3, 0xfd, + 0x7a, 0xab, 0x5a, 0x30, 0x79, 0x23, 0x2d, 0xec, 0xe1, 0xe6, 0x6d, 0xe3, 0xa8, 0x13, 0xdc, 0x3f, + 0x6e, 0x52, 0xaf, 0x3a, 0x2a, 0xfe, 0x59, 0x6d, 0xfd, 0x1b, 0x00, 0x00, 0xff, 0xff, 0x10, 0x5d, + 0x70, 0xc6, 0x97, 0x0e, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/stakeibc/types/tx.pb.go b/x/stakeibc/types/tx.pb.go index a89e0107ee..e58d0709fa 100644 --- a/x/stakeibc/types/tx.pb.go +++ b/x/stakeibc/types/tx.pb.go @@ -1491,100 +1491,100 @@ func init() { func init() { proto.RegisterFile("stride/stakeibc/tx.proto", fileDescriptor_9b7e09c9ad51cd54) } var fileDescriptor_9b7e09c9ad51cd54 = []byte{ - // 1480 bytes of a gzipped FileDescriptorProto + // 1482 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x58, 0xcf, 0x6f, 0xdc, 0xc4, 0x17, 0x8f, 0x9b, 0x34, 0x4d, 0x5f, 0x36, 0xbf, 0x9c, 0x34, 0x75, 0x9c, 0x6f, 0x77, 0x53, 0xe7, - 0x0b, 0x84, 0xd2, 0x24, 0x4a, 0x52, 0x09, 0x51, 0xe0, 0x90, 0x4d, 0x8a, 0x58, 0xa9, 0xa9, 0x90, - 0xd3, 0x52, 0xa9, 0x12, 0x32, 0xb3, 0xf6, 0xd4, 0x6b, 0xd5, 0x1e, 0x6f, 0x3d, 0xde, 0x74, 0xcb, - 0x01, 0x71, 0x41, 0xe2, 0x82, 0x04, 0x42, 0xe2, 0x88, 0x7a, 0xe0, 0x80, 0xc4, 0x0d, 0xf5, 0x8f, - 0xa8, 0xc4, 0xa5, 0xea, 0x09, 0x71, 0x88, 0x50, 0x7b, 0xe1, 0x9c, 0x33, 0x07, 0x34, 0x63, 0xef, - 0xac, 0xed, 0xcc, 0x26, 0x69, 0x1a, 0x7a, 0xca, 0xce, 0xbc, 0xcf, 0xcc, 0xfb, 0xcc, 0x9b, 0x37, - 0x9f, 0xf7, 0x62, 0xd0, 0x68, 0x1c, 0x79, 0x0e, 0x5e, 0xa6, 0x31, 0xba, 0x87, 0xbd, 0xba, 0xbd, - 0x1c, 0xb7, 0x97, 0x9a, 0x51, 0x18, 0x87, 0xea, 0x58, 0x62, 0x59, 0xea, 0x58, 0xf4, 0x8b, 0x45, - 0xa8, 0x67, 0x23, 0x0b, 0xd9, 0x76, 0xd8, 0x22, 0x71, 0xb2, 0x46, 0xaf, 0x14, 0x21, 0x3b, 0xc8, - 0xf7, 0x1c, 0x14, 0x87, 0x51, 0x0a, 0x98, 0x72, 0x43, 0x37, 0xe4, 0x3f, 0x97, 0xd9, 0xaf, 0x74, - 0x76, 0xc6, 0x0e, 0x69, 0x10, 0x52, 0x2b, 0x31, 0x24, 0x83, 0xc4, 0x64, 0xfc, 0x7e, 0x0a, 0x8c, - 0x2d, 0xea, 0xde, 0x6a, 0x3a, 0x28, 0xc6, 0x35, 0x42, 0x70, 0x64, 0x62, 0x07, 0x07, 0xcd, 0xd8, - 0x0b, 0x89, 0x89, 0x62, 0x5c, 0x0d, 0x5b, 0xc4, 0xa1, 0xaa, 0x06, 0x67, 0xec, 0x08, 0x33, 0x47, - 0x9a, 0x32, 0xa7, 0x2c, 0x9c, 0x35, 0x3b, 0x43, 0x75, 0x06, 0x86, 0xec, 0x06, 0xf2, 0x88, 0xe5, - 0x39, 0xda, 0xa9, 0xd4, 0xc4, 0xc6, 0x35, 0x47, 0x7d, 0x00, 0x33, 0x01, 0x33, 0xb0, 0x5d, 0xad, - 0x48, 0x6c, 0x6b, 0x45, 0x28, 0xc6, 0x5a, 0x3f, 0xc3, 0x56, 0x3f, 0x78, 0xb2, 0x5b, 0xe9, 0xfb, - 0x73, 0xb7, 0xf2, 0xa6, 0xeb, 0xc5, 0x8d, 0x56, 0x7d, 0xc9, 0x0e, 0x83, 0x94, 0x5f, 0xfa, 0x67, - 0x91, 0x3a, 0xf7, 0x96, 0xe3, 0x87, 0x4d, 0x4c, 0x97, 0x36, 0xb1, 0xfd, 0xec, 0xf1, 0x22, 0xa4, - 0xf4, 0x37, 0xb1, 0x6d, 0x4e, 0x07, 0x1e, 0x91, 0x70, 0xe6, 0x8e, 0x51, 0xbb, 0x87, 0xe3, 0x81, - 0x13, 0x71, 0x8c, 0xda, 0x12, 0xc7, 0xc6, 0x65, 0xb8, 0x74, 0x78, 0x30, 0x4d, 0x4c, 0x9b, 0x21, - 0xa1, 0xd8, 0xf8, 0x5e, 0x81, 0xd1, 0x2d, 0xea, 0x5e, 0xf7, 0xee, 0xb7, 0x3c, 0x67, 0x9b, 0x5d, - 0xe9, 0x01, 0x71, 0xfe, 0x08, 0x06, 0x51, 0xc0, 0x52, 0x21, 0x89, 0x72, 0x75, 0xe9, 0x25, 0x0e, - 0x50, 0x23, 0xb1, 0x99, 0xae, 0x56, 0x2f, 0x00, 0x34, 0x42, 0x1a, 0x5b, 0x0e, 0x26, 0x61, 0x90, - 0xdc, 0x82, 0x79, 0x96, 0xcd, 0x6c, 0xb2, 0x09, 0x43, 0x83, 0xe9, 0x3c, 0x25, 0xc1, 0xf6, 0x67, - 0x05, 0x26, 0x98, 0x69, 0x7b, 0xeb, 0xf5, 0x12, 0x5e, 0x84, 0x49, 0x9f, 0x06, 0x56, 0x1c, 0xde, - 0xc3, 0xc4, 0xf2, 0xea, 0x76, 0x8e, 0xf9, 0xb8, 0x4f, 0x83, 0x9b, 0xcc, 0x52, 0xab, 0xdb, 0xc9, - 0x01, 0x6e, 0xc0, 0xcc, 0x3e, 0x96, 0x9d, 0x33, 0xa8, 0x2b, 0x30, 0x15, 0x47, 0x88, 0x50, 0x64, - 0xf3, 0x7c, 0xb0, 0xc3, 0xa0, 0xe9, 0xe3, 0x18, 0x73, 0xea, 0x43, 0xe6, 0x64, 0xc6, 0xb6, 0x91, - 0x9a, 0x8c, 0x5f, 0x14, 0x18, 0xdb, 0xa2, 0xee, 0x86, 0x8f, 0x51, 0x54, 0x45, 0x3e, 0x22, 0x36, - 0x3e, 0xde, 0x6b, 0xe8, 0xc6, 0xa3, 0xff, 0x95, 0xe2, 0xc1, 0x9c, 0x37, 0x10, 0x21, 0xd8, 0x4f, - 0x52, 0xd9, 0xec, 0x0c, 0x8d, 0x19, 0x38, 0x5f, 0x60, 0x2a, 0x2e, 0xef, 0xd7, 0x24, 0xd5, 0x58, - 0x3a, 0xe2, 0xe0, 0x75, 0xdd, 0xdc, 0x2c, 0xf0, 0xc4, 0xb2, 0xbe, 0x08, 0x49, 0xfa, 0xde, 0xcd, - 0x21, 0x36, 0x71, 0x27, 0x24, 0x58, 0xd5, 0x61, 0x28, 0xc2, 0x36, 0xf6, 0x76, 0x70, 0x94, 0x9e, - 0x43, 0x8c, 0xd3, 0x24, 0xcc, 0x90, 0x15, 0xe7, 0xf8, 0xed, 0x34, 0x4c, 0x72, 0x93, 0xeb, 0xd1, - 0x18, 0x47, 0x1f, 0x77, 0x76, 0xfb, 0x10, 0x46, 0xec, 0x90, 0x10, 0x9c, 0xdc, 0x6b, 0x27, 0xf8, - 0x55, 0x6d, 0x6f, 0xb7, 0x32, 0xf5, 0x10, 0x05, 0xfe, 0x55, 0x23, 0x67, 0x36, 0xcc, 0x52, 0x77, - 0x5c, 0x73, 0x54, 0x03, 0x4a, 0x75, 0x6c, 0x37, 0xd6, 0x56, 0x9b, 0x11, 0xbe, 0xeb, 0xb5, 0xb5, - 0x12, 0x27, 0x94, 0x9b, 0x53, 0xaf, 0xe4, 0x1e, 0x4e, 0xa2, 0x22, 0xe7, 0xf6, 0x76, 0x2b, 0x13, - 0xc9, 0xfe, 0x5d, 0x9b, 0x91, 0x79, 0x4f, 0xea, 0x0a, 0x9c, 0xed, 0xe6, 0xec, 0x69, 0xbe, 0x68, - 0x6a, 0x6f, 0xb7, 0x32, 0x9e, 0x2c, 0x12, 0x26, 0xc3, 0x1c, 0xf2, 0xd2, 0x0c, 0xce, 0x5e, 0xcc, - 0x60, 0xfe, 0x62, 0x6e, 0x40, 0x92, 0xa2, 0x77, 0x71, 0x64, 0xa5, 0x97, 0xce, 0xce, 0x0a, 0x7c, - 0xdb, 0xf2, 0xde, 0x6e, 0x45, 0x4f, 0xb6, 0x95, 0x80, 0x0c, 0x73, 0xa2, 0x33, 0xbb, 0x91, 0x4c, - 0xf2, 0x94, 0x1c, 0x6f, 0x91, 0x7a, 0x48, 0x1c, 0x8f, 0xb8, 0x56, 0x13, 0x47, 0x5e, 0xe8, 0x68, - 0xc3, 0x73, 0xca, 0xc2, 0x40, 0x75, 0x76, 0x6f, 0xb7, 0x72, 0x3e, 0xd9, 0xac, 0x88, 0x30, 0xcc, - 0x31, 0x31, 0xf5, 0x09, 0x9f, 0x51, 0x7d, 0x98, 0x64, 0x42, 0x5f, 0x54, 0xda, 0x91, 0x13, 0x50, - 0xda, 0x89, 0xc0, 0x23, 0x05, 0x75, 0x67, 0xde, 0x50, 0x7b, 0x9f, 0xb7, 0xd1, 0x13, 0xf1, 0x86, - 0xda, 0x05, 0x6f, 0xef, 0x82, 0xc6, 0xe4, 0xc7, 0xe7, 0x6a, 0x62, 0xf1, 0xc2, 0x6b, 0x61, 0x82, - 0xea, 0x3e, 0x76, 0xb4, 0x31, 0x2e, 0x1b, 0xe7, 0x7c, 0x1a, 0x64, 0xc4, 0xe6, 0x5a, 0x62, 0xbc, - 0x3a, 0xf4, 0xcd, 0xa3, 0x4a, 0xdf, 0xdf, 0x8f, 0x2a, 0x7d, 0xc6, 0x05, 0x98, 0x95, 0xe4, 0xac, - 0xc8, 0xe9, 0xaf, 0x15, 0x2e, 0x59, 0x1b, 0x3e, 0xf2, 0x82, 0x5b, 0xc4, 0xc1, 0x3e, 0x76, 0x51, - 0x8c, 0x1d, 0x2e, 0x6b, 0x07, 0x55, 0xde, 0x39, 0x28, 0x89, 0xe7, 0xd5, 0xd5, 0x1b, 0xe8, 0xbc, - 0xb0, 0x9a, 0xa3, 0x4e, 0xc1, 0x69, 0xdc, 0x0c, 0xed, 0x06, 0x7f, 0x7c, 0x03, 0x66, 0x32, 0x50, - 0xa7, 0x61, 0x90, 0x62, 0xe2, 0x88, 0x77, 0x97, 0x8e, 0x8c, 0x79, 0xb8, 0xd8, 0x93, 0x86, 0x20, - 0x1b, 0xa7, 0x4f, 0xb3, 0x9e, 0x08, 0xcc, 0xa7, 0x9d, 0xfe, 0xe3, 0x20, 0xa2, 0x39, 0x1d, 0x38, - 0x55, 0xd0, 0x81, 0x79, 0x18, 0x21, 0xad, 0xc0, 0x8a, 0x3a, 0x3b, 0xa6, 0x5c, 0x4b, 0xa4, 0x15, - 0x08, 0x2f, 0xc6, 0x1c, 0x94, 0xe5, 0x5e, 0xb3, 0x41, 0x1c, 0xdf, 0xa2, 0xee, 0xba, 0xe3, 0xbc, - 0x3a, 0xa5, 0xab, 0x00, 0xa2, 0xaf, 0xa2, 0x5a, 0xff, 0x5c, 0xff, 0xc2, 0xf0, 0xaa, 0xbe, 0x54, - 0x68, 0xd7, 0x96, 0x84, 0x1f, 0x33, 0x83, 0x36, 0x74, 0xd0, 0x8a, 0x34, 0x04, 0xc7, 0x9f, 0x14, - 0x6e, 0x64, 0xef, 0xcf, 0xed, 0x9e, 0xe1, 0x36, 0xf6, 0xdc, 0x46, 0x7c, 0x5c, 0xae, 0x6b, 0x30, - 0xb4, 0x83, 0x7c, 0x0b, 0x39, 0x4e, 0x94, 0xd6, 0x15, 0xed, 0xd9, 0xe3, 0xc5, 0xa9, 0x34, 0xa7, - 0xd7, 0x1d, 0x27, 0xc2, 0x94, 0x6e, 0xc7, 0x91, 0x47, 0x5c, 0xf3, 0xcc, 0x0e, 0xf2, 0xd9, 0x0c, - 0xcb, 0x80, 0x07, 0xdc, 0x2b, 0xcf, 0x80, 0x01, 0x33, 0x1d, 0x19, 0x06, 0xcc, 0xf5, 0xe2, 0x27, - 0x0e, 0xf1, 0x95, 0x02, 0xea, 0x16, 0x75, 0x37, 0x31, 0xab, 0x8e, 0x02, 0xf4, 0x3a, 0xe9, 0x1b, - 0xff, 0x03, 0x7d, 0x3f, 0x03, 0x41, 0xf0, 0x47, 0x25, 0x7d, 0x6e, 0x34, 0x0e, 0x23, 0x5c, 0x23, - 0x31, 0x8e, 0x78, 0x09, 0x5e, 0x4f, 0x3a, 0xe9, 0xe3, 0x15, 0xef, 0x2a, 0x94, 0xd2, 0x4e, 0xdc, - 0x62, 0xda, 0xc1, 0xb9, 0x8e, 0xae, 0x56, 0xf6, 0x25, 0x45, 0x6d, 0x63, 0x3d, 0xf5, 0x73, 0xf3, - 0x61, 0x13, 0x9b, 0xc3, 0xa8, 0x3b, 0x30, 0xde, 0x80, 0xf9, 0x03, 0x78, 0x09, 0xfe, 0xf7, 0xf9, - 0x25, 0x24, 0x3d, 0xa4, 0x38, 0xdd, 0x76, 0x03, 0x45, 0x98, 0x5e, 0x6b, 0xdb, 0x0d, 0x2e, 0x4a, - 0xc7, 0x3a, 0x83, 0x06, 0x2c, 0x82, 0x61, 0x13, 0xa7, 0xa1, 0x36, 0x3b, 0x43, 0xe3, 0x12, 0x2c, - 0x1c, 0xe6, 0x52, 0xd0, 0x6b, 0xf1, 0x2e, 0xb0, 0x2b, 0x10, 0x4c, 0xce, 0xfe, 0xfb, 0x5e, 0xc2, - 0x98, 0xe5, 0x1a, 0x99, 0x77, 0x2b, 0x38, 0xb9, 0x5c, 0x94, 0x36, 0x90, 0xef, 0xd5, 0x59, 0x29, - 0xd8, 0x4c, 0x30, 0x5e, 0x48, 0x4e, 0x3a, 0x50, 0x89, 0x0e, 0x49, 0x1c, 0x75, 0xa8, 0xac, 0xfe, - 0x53, 0x82, 0xfe, 0x2d, 0xea, 0xaa, 0xb7, 0x61, 0x38, 0xdb, 0x26, 0xef, 0xcf, 0x94, 0x7c, 0x97, - 0xad, 0xbf, 0x75, 0x08, 0x40, 0xb4, 0xb0, 0x9f, 0xc3, 0x68, 0xa1, 0x05, 0x37, 0xa4, 0x4b, 0x73, - 0x18, 0xfd, 0xd2, 0xe1, 0x18, 0xe1, 0xe1, 0x36, 0x0c, 0x67, 0xfb, 0x44, 0x29, 0xf5, 0x0c, 0x40, - 0x4e, 0x5d, 0xd2, 0xbc, 0xa9, 0x77, 0x61, 0x7c, 0x5f, 0xe3, 0xf6, 0x7f, 0xf9, 0xe2, 0x3c, 0x4a, - 0xbf, 0x7c, 0x14, 0x94, 0xf0, 0xd3, 0x86, 0xe9, 0x1e, 0xc5, 0x54, 0x1a, 0x06, 0x39, 0x56, 0x5f, - 0x3d, 0x3a, 0x56, 0x78, 0x0e, 0x61, 0x52, 0x56, 0x1a, 0x7b, 0x44, 0x68, 0x1f, 0x50, 0x5f, 0x3e, - 0x22, 0x50, 0x38, 0xfc, 0x0c, 0x46, 0xf2, 0x25, 0xef, 0xa2, 0x6c, 0x87, 0x1c, 0x44, 0x7f, 0xfb, - 0x50, 0x88, 0xd8, 0xbe, 0x05, 0xe7, 0xe4, 0xd5, 0x4a, 0xba, 0x87, 0x14, 0xaa, 0xaf, 0x1c, 0x19, - 0x2a, 0xdc, 0xda, 0x30, 0x56, 0xac, 0x2f, 0xf3, 0xb2, 0x5d, 0x0a, 0x20, 0xfd, 0x9d, 0x23, 0x80, - 0x84, 0x93, 0x2f, 0x41, 0xeb, 0x59, 0x23, 0x7a, 0xe4, 0x9b, 0x1c, 0xad, 0x5f, 0x79, 0x19, 0xb4, - 0xf0, 0xff, 0xad, 0x02, 0x17, 0x0e, 0x56, 0x79, 0x69, 0xe4, 0x0e, 0x5c, 0xa2, 0xbf, 0xf7, 0xd2, - 0x4b, 0xb2, 0xb9, 0x2b, 0x53, 0x50, 0x69, 0xee, 0x4a, 0x80, 0xf2, 0xdc, 0x3d, 0x40, 0x2a, 0xd5, - 0x3b, 0x50, 0xca, 0xfd, 0x57, 0x3d, 0x27, 0x7f, 0x70, 0x5d, 0x84, 0xbe, 0x70, 0x18, 0x22, 0xab, - 0x92, 0x85, 0x12, 0x25, 0x55, 0xc9, 0x3c, 0x46, 0xae, 0x92, 0xf2, 0x9a, 0xa3, 0xfe, 0xa0, 0x40, - 0xe5, 0xb0, 0xaf, 0x66, 0x6b, 0xbd, 0x6f, 0xa3, 0xe7, 0x22, 0xfd, 0xfd, 0x63, 0x2c, 0xea, 0xb0, - 0xaa, 0x5e, 0x7f, 0xf2, 0xbc, 0xac, 0x3c, 0x7d, 0x5e, 0x56, 0xfe, 0x7a, 0x5e, 0x56, 0xbe, 0x7b, - 0x51, 0xee, 0x7b, 0xfa, 0xa2, 0xdc, 0xf7, 0xc7, 0x8b, 0x72, 0xdf, 0x9d, 0xd5, 0x4c, 0xc1, 0xdd, - 0xe6, 0x0e, 0x16, 0xaf, 0xa3, 0x3a, 0x5d, 0x4e, 0xbf, 0x28, 0xee, 0xac, 0x5c, 0x59, 0x6e, 0x67, - 0xbe, 0x52, 0xb2, 0x02, 0x5c, 0x1f, 0xe4, 0xdf, 0x08, 0xd7, 0xfe, 0x0d, 0x00, 0x00, 0xff, 0xff, - 0x53, 0xce, 0xb3, 0x94, 0xc5, 0x14, 0x00, 0x00, + 0xfb, 0xfd, 0x12, 0x4a, 0x93, 0x28, 0x49, 0x11, 0xa2, 0xc0, 0x21, 0x9b, 0x14, 0xb1, 0x52, 0x53, + 0x21, 0xa7, 0xa5, 0x52, 0x25, 0x64, 0x66, 0xed, 0xa9, 0xd7, 0xaa, 0x3d, 0xde, 0x7a, 0xbc, 0xe9, + 0x96, 0x03, 0xe2, 0x82, 0xc4, 0x05, 0x09, 0x84, 0xc4, 0x11, 0xf5, 0xc0, 0x01, 0x89, 0x1b, 0xea, + 0x1f, 0x51, 0x89, 0x4b, 0xd5, 0x13, 0xe2, 0x10, 0xa1, 0xf6, 0xc2, 0x39, 0x67, 0x0e, 0x68, 0xc6, + 0xde, 0x59, 0xdb, 0x99, 0x4d, 0xd2, 0x34, 0xf4, 0x94, 0x9d, 0x79, 0x9f, 0x99, 0xf7, 0x99, 0x37, + 0x6f, 0x3e, 0xef, 0xc5, 0xa0, 0xd1, 0x38, 0xf2, 0x1c, 0xbc, 0x4c, 0x63, 0x74, 0x0f, 0x7b, 0x75, + 0x7b, 0x39, 0x6e, 0x2f, 0x35, 0xa3, 0x30, 0x0e, 0xd5, 0xb1, 0xc4, 0xb2, 0xd4, 0xb1, 0xe8, 0x17, + 0x8b, 0x50, 0xcf, 0x46, 0x16, 0xb2, 0xed, 0xb0, 0x45, 0xe2, 0x64, 0x8d, 0x5e, 0x29, 0x42, 0x76, + 0x90, 0xef, 0x39, 0x28, 0x0e, 0xa3, 0x14, 0x30, 0xe5, 0x86, 0x6e, 0xc8, 0x7f, 0x2e, 0xb3, 0x5f, + 0xe9, 0xec, 0x8c, 0x1d, 0xd2, 0x20, 0xa4, 0x56, 0x62, 0x48, 0x06, 0x89, 0xc9, 0xf8, 0xed, 0x14, + 0x18, 0x5b, 0xd4, 0xbd, 0xd5, 0x74, 0x50, 0x8c, 0x6b, 0x84, 0xe0, 0xc8, 0xc4, 0x0e, 0x0e, 0x9a, + 0xb1, 0x17, 0x12, 0x13, 0xc5, 0xb8, 0x1a, 0xb6, 0x88, 0x43, 0x55, 0x0d, 0xce, 0xd8, 0x11, 0x66, + 0x8e, 0x34, 0x65, 0x4e, 0x59, 0x38, 0x6b, 0x76, 0x86, 0xea, 0x0c, 0x0c, 0xd9, 0x0d, 0xe4, 0x11, + 0xcb, 0x73, 0xb4, 0x53, 0xa9, 0x89, 0x8d, 0x6b, 0x8e, 0xfa, 0x00, 0x66, 0x02, 0x66, 0x60, 0xbb, + 0x5a, 0x91, 0xd8, 0xd6, 0x8a, 0x50, 0x8c, 0xb5, 0x7e, 0x86, 0xad, 0xbe, 0xff, 0x64, 0xb7, 0xd2, + 0xf7, 0xc7, 0x6e, 0xe5, 0xff, 0xae, 0x17, 0x37, 0x5a, 0xf5, 0x25, 0x3b, 0x0c, 0x52, 0x7e, 0xe9, + 0x9f, 0x45, 0xea, 0xdc, 0x5b, 0x8e, 0x1f, 0x36, 0x31, 0x5d, 0xda, 0xc4, 0xf6, 0xb3, 0xc7, 0x8b, + 0x90, 0xd2, 0xdf, 0xc4, 0xb6, 0x39, 0x1d, 0x78, 0x44, 0xc2, 0x99, 0x3b, 0x46, 0xed, 0x1e, 0x8e, + 0x07, 0x4e, 0xc4, 0x31, 0x6a, 0x4b, 0x1c, 0x1b, 0x97, 0xe1, 0xd2, 0xe1, 0xc1, 0x34, 0x31, 0x6d, + 0x86, 0x84, 0x62, 0xe3, 0x3b, 0x05, 0x46, 0xb7, 0xa8, 0x7b, 0xdd, 0xbb, 0xdf, 0xf2, 0x9c, 0x6d, + 0x76, 0xa5, 0x07, 0xc4, 0xf9, 0x43, 0x18, 0x44, 0x01, 0x4b, 0x85, 0x24, 0xca, 0xd5, 0xa5, 0x97, + 0x38, 0x40, 0x8d, 0xc4, 0x66, 0xba, 0x5a, 0xbd, 0x00, 0xd0, 0x08, 0x69, 0x6c, 0x39, 0x98, 0x84, + 0x41, 0x72, 0x0b, 0xe6, 0x59, 0x36, 0xb3, 0xc9, 0x26, 0x0c, 0x0d, 0xa6, 0xf3, 0x94, 0x04, 0xdb, + 0x9f, 0x14, 0x98, 0x60, 0xa6, 0xed, 0xad, 0xd7, 0x4b, 0x78, 0x11, 0x26, 0x7d, 0x1a, 0x58, 0x71, + 0x78, 0x0f, 0x13, 0xcb, 0xab, 0xdb, 0x39, 0xe6, 0xe3, 0x3e, 0x0d, 0x6e, 0x32, 0x4b, 0xad, 0x6e, + 0x27, 0x07, 0xb8, 0x01, 0x33, 0xfb, 0x58, 0x76, 0xce, 0xa0, 0xae, 0xc0, 0x54, 0x1c, 0x21, 0x42, + 0x91, 0xcd, 0xf3, 0xc1, 0x0e, 0x83, 0xa6, 0x8f, 0x63, 0xcc, 0xa9, 0x0f, 0x99, 0x93, 0x19, 0xdb, + 0x46, 0x6a, 0x32, 0x7e, 0x56, 0x60, 0x6c, 0x8b, 0xba, 0x1b, 0x3e, 0x46, 0x51, 0x15, 0xf9, 0x88, + 0xd8, 0xf8, 0x78, 0xaf, 0xa1, 0x1b, 0x8f, 0xfe, 0x57, 0x8a, 0x07, 0x73, 0xde, 0x40, 0x84, 0x60, + 0x3f, 0x49, 0x65, 0xb3, 0x33, 0x34, 0x66, 0xe0, 0x7c, 0x81, 0xa9, 0xb8, 0xbc, 0x5f, 0x92, 0x54, + 0x63, 0xe9, 0x88, 0x83, 0xd7, 0x75, 0x73, 0xb3, 0xc0, 0x13, 0xcb, 0xfa, 0x3c, 0x24, 0xe9, 0x7b, + 0x37, 0x87, 0xd8, 0xc4, 0x9d, 0x90, 0x60, 0x55, 0x87, 0xa1, 0x08, 0xdb, 0xd8, 0xdb, 0xc1, 0x51, + 0x7a, 0x0e, 0x31, 0x4e, 0x93, 0x30, 0x43, 0x56, 0x9c, 0xe3, 0xd7, 0xd3, 0x30, 0xc9, 0x4d, 0xae, + 0x47, 0x63, 0x1c, 0x7d, 0xd4, 0xd9, 0xed, 0x03, 0x18, 0xb1, 0x43, 0x42, 0x70, 0x72, 0xaf, 0x9d, + 0xe0, 0x57, 0xb5, 0xbd, 0xdd, 0xca, 0xd4, 0x43, 0x14, 0xf8, 0x57, 0x8d, 0x9c, 0xd9, 0x30, 0x4b, + 0xdd, 0x71, 0xcd, 0x51, 0x0d, 0x28, 0xd5, 0xb1, 0xdd, 0x58, 0x5b, 0x6d, 0x46, 0xf8, 0xae, 0xd7, + 0xd6, 0x4a, 0x9c, 0x50, 0x6e, 0x4e, 0xbd, 0x92, 0x7b, 0x38, 0x89, 0x8a, 0x9c, 0xdb, 0xdb, 0xad, + 0x4c, 0x24, 0xfb, 0x77, 0x6d, 0x46, 0xe6, 0x3d, 0xa9, 0x2b, 0x70, 0xb6, 0x9b, 0xb3, 0xa7, 0xf9, + 0xa2, 0xa9, 0xbd, 0xdd, 0xca, 0x78, 0xb2, 0x48, 0x98, 0x0c, 0x73, 0xc8, 0x4b, 0x33, 0x38, 0x7b, + 0x31, 0x83, 0xf9, 0x8b, 0xb9, 0x01, 0x49, 0x8a, 0xde, 0xc5, 0x91, 0x95, 0x5e, 0x3a, 0x3b, 0x2b, + 0xf0, 0x6d, 0xcb, 0x7b, 0xbb, 0x15, 0x3d, 0xd9, 0x56, 0x02, 0x32, 0xcc, 0x89, 0xce, 0xec, 0x46, + 0x32, 0xc9, 0x53, 0x72, 0xbc, 0x45, 0xea, 0x21, 0x71, 0x3c, 0xe2, 0x5a, 0x4d, 0x1c, 0x79, 0xa1, + 0xa3, 0x0d, 0xcf, 0x29, 0x0b, 0x03, 0xd5, 0xd9, 0xbd, 0xdd, 0xca, 0xf9, 0x64, 0xb3, 0x22, 0xc2, + 0x30, 0xc7, 0xc4, 0xd4, 0xc7, 0x7c, 0x46, 0xf5, 0x61, 0x92, 0x09, 0x7d, 0x51, 0x69, 0x47, 0x4e, + 0x40, 0x69, 0x27, 0x02, 0x8f, 0x14, 0xd4, 0x9d, 0x79, 0x43, 0xed, 0x7d, 0xde, 0x46, 0x4f, 0xc4, + 0x1b, 0x6a, 0x17, 0xbc, 0xbd, 0x03, 0x1a, 0x93, 0x1f, 0x9f, 0xab, 0x89, 0xc5, 0x0b, 0xaf, 0x85, + 0x09, 0xaa, 0xfb, 0xd8, 0xd1, 0xc6, 0xb8, 0x6c, 0x9c, 0xf3, 0x69, 0x90, 0x11, 0x9b, 0x6b, 0x89, + 0xf1, 0xea, 0xd0, 0xd7, 0x8f, 0x2a, 0x7d, 0x7f, 0x3d, 0xaa, 0xf4, 0x19, 0x17, 0x60, 0x56, 0x92, + 0xb3, 0x22, 0xa7, 0xbf, 0x52, 0xb8, 0x64, 0x6d, 0xf8, 0xc8, 0x0b, 0x6e, 0x11, 0x07, 0xfb, 0xd8, + 0x45, 0x31, 0x76, 0xb8, 0xac, 0x1d, 0x54, 0x79, 0xe7, 0xa0, 0x24, 0x9e, 0x57, 0x57, 0x6f, 0xa0, + 0xf3, 0xc2, 0x6a, 0x8e, 0x3a, 0x05, 0xa7, 0x71, 0x33, 0xb4, 0x1b, 0xfc, 0xf1, 0x0d, 0x98, 0xc9, + 0x40, 0x9d, 0x86, 0x41, 0x8a, 0x89, 0x23, 0xde, 0x5d, 0x3a, 0x32, 0xe6, 0xe1, 0x62, 0x4f, 0x1a, + 0x82, 0x6c, 0x9c, 0x3e, 0xcd, 0x7a, 0x22, 0x30, 0x9f, 0x74, 0xfa, 0x8f, 0x83, 0x88, 0xe6, 0x74, + 0xe0, 0x54, 0x41, 0x07, 0xe6, 0x61, 0x84, 0xb4, 0x02, 0x2b, 0xea, 0xec, 0x98, 0x72, 0x2d, 0x91, + 0x56, 0x20, 0xbc, 0x18, 0x73, 0x50, 0x96, 0x7b, 0xcd, 0x06, 0x71, 0x7c, 0x8b, 0xba, 0xeb, 0x8e, + 0xf3, 0xea, 0x94, 0xae, 0x02, 0x88, 0xbe, 0x8a, 0x6a, 0xfd, 0x73, 0xfd, 0x0b, 0xc3, 0xab, 0xfa, + 0x52, 0xa1, 0x5d, 0x5b, 0x12, 0x7e, 0xcc, 0x0c, 0xda, 0xd0, 0x41, 0x2b, 0xd2, 0x10, 0x1c, 0x7f, + 0x54, 0xb8, 0x91, 0xbd, 0x3f, 0xb7, 0x7b, 0x86, 0xdb, 0xd8, 0x73, 0x1b, 0xf1, 0x71, 0xb9, 0xae, + 0xc1, 0xd0, 0x0e, 0xf2, 0x2d, 0xe4, 0x38, 0x51, 0x5a, 0x57, 0xb4, 0x67, 0x8f, 0x17, 0xa7, 0xd2, + 0x9c, 0x5e, 0x77, 0x9c, 0x08, 0x53, 0xba, 0x1d, 0x47, 0x1e, 0x71, 0xcd, 0x33, 0x3b, 0xc8, 0x67, + 0x33, 0x2c, 0x03, 0x1e, 0x70, 0xaf, 0x3c, 0x03, 0x06, 0xcc, 0x74, 0x64, 0x18, 0x30, 0xd7, 0x8b, + 0x9f, 0x38, 0xc4, 0x97, 0x0a, 0xa8, 0x5b, 0xd4, 0xdd, 0xc4, 0xac, 0x3a, 0x0a, 0xd0, 0xeb, 0xa4, + 0x6f, 0xfc, 0x07, 0xf4, 0xfd, 0x0c, 0x04, 0xc1, 0x1f, 0x94, 0xf4, 0xb9, 0xd1, 0x38, 0x8c, 0x70, + 0x8d, 0xc4, 0x38, 0xe2, 0x25, 0x78, 0x3d, 0xe9, 0xa4, 0x8f, 0x57, 0xbc, 0xab, 0x50, 0x4a, 0x3b, + 0x71, 0x8b, 0x69, 0x07, 0xe7, 0x3a, 0xba, 0x5a, 0xd9, 0x97, 0x14, 0xb5, 0x8d, 0xf5, 0xd4, 0xcf, + 0xcd, 0x87, 0x4d, 0x6c, 0x0e, 0xa3, 0xee, 0xc0, 0xf8, 0x1f, 0xcc, 0x1f, 0xc0, 0x4b, 0xf0, 0xbf, + 0xcf, 0x2f, 0x21, 0xe9, 0x21, 0xc5, 0xe9, 0xb6, 0x1b, 0x28, 0xc2, 0xf4, 0x5a, 0xdb, 0x6e, 0x70, + 0x51, 0x3a, 0xd6, 0x19, 0x34, 0x60, 0x11, 0x0c, 0x9b, 0x38, 0x0d, 0xb5, 0xd9, 0x19, 0x1a, 0x97, + 0x60, 0xe1, 0x30, 0x97, 0x82, 0x5e, 0x8b, 0x77, 0x81, 0x5d, 0x81, 0x60, 0x72, 0xf6, 0xef, 0xf7, + 0x12, 0xc6, 0x2c, 0xd7, 0xc8, 0xbc, 0x5b, 0xc1, 0xc9, 0xe5, 0xa2, 0xb4, 0x81, 0x7c, 0xaf, 0xce, + 0x4a, 0xc1, 0x66, 0x82, 0xf1, 0x42, 0x72, 0xd2, 0x81, 0x4a, 0x74, 0x48, 0xe2, 0xa8, 0x43, 0x65, + 0xf5, 0xef, 0x12, 0xf4, 0x6f, 0x51, 0x57, 0xbd, 0x0d, 0xc3, 0xd9, 0x36, 0x79, 0x7f, 0xa6, 0xe4, + 0xbb, 0x6c, 0xfd, 0x8d, 0x43, 0x00, 0xa2, 0x85, 0xfd, 0x0c, 0x46, 0x0b, 0x2d, 0xb8, 0x21, 0x5d, + 0x9a, 0xc3, 0xe8, 0x97, 0x0e, 0xc7, 0x08, 0x0f, 0xb7, 0x61, 0x38, 0xdb, 0x27, 0x4a, 0xa9, 0x67, + 0x00, 0x72, 0xea, 0x92, 0xe6, 0x4d, 0xbd, 0x0b, 0xe3, 0xfb, 0x1a, 0xb7, 0xff, 0xca, 0x17, 0xe7, + 0x51, 0xfa, 0xe5, 0xa3, 0xa0, 0x84, 0x9f, 0x36, 0x4c, 0xf7, 0x28, 0xa6, 0xd2, 0x30, 0xc8, 0xb1, + 0xfa, 0xea, 0xd1, 0xb1, 0xc2, 0x73, 0x08, 0x93, 0xb2, 0xd2, 0xd8, 0x23, 0x42, 0xfb, 0x80, 0xfa, + 0xf2, 0x11, 0x81, 0xc2, 0xe1, 0xa7, 0x30, 0x92, 0x2f, 0x79, 0x17, 0x65, 0x3b, 0xe4, 0x20, 0xfa, + 0x9b, 0x87, 0x42, 0xc4, 0xf6, 0x2d, 0x38, 0x27, 0xaf, 0x56, 0xd2, 0x3d, 0xa4, 0x50, 0x7d, 0xe5, + 0xc8, 0x50, 0xe1, 0xd6, 0x86, 0xb1, 0x62, 0x7d, 0x99, 0x97, 0xed, 0x52, 0x00, 0xe9, 0x6f, 0x1d, + 0x01, 0x24, 0x9c, 0x7c, 0x01, 0x5a, 0xcf, 0x1a, 0xd1, 0x23, 0xdf, 0xe4, 0x68, 0xfd, 0xca, 0xcb, + 0xa0, 0x85, 0xff, 0x6f, 0x14, 0xb8, 0x70, 0xb0, 0xca, 0x4b, 0x23, 0x77, 0xe0, 0x12, 0xfd, 0xdd, + 0x97, 0x5e, 0x92, 0xcd, 0x5d, 0x99, 0x82, 0x4a, 0x73, 0x57, 0x02, 0x94, 0xe7, 0xee, 0x01, 0x52, + 0xa9, 0xde, 0x81, 0x52, 0xee, 0xbf, 0xea, 0x39, 0xf9, 0x83, 0xeb, 0x22, 0xf4, 0x85, 0xc3, 0x10, + 0x59, 0x95, 0x2c, 0x94, 0x28, 0xa9, 0x4a, 0xe6, 0x31, 0x72, 0x95, 0x94, 0xd7, 0x1c, 0xf5, 0x7b, + 0x05, 0x2a, 0x87, 0x7d, 0x35, 0x5b, 0xeb, 0x7d, 0x1b, 0x3d, 0x17, 0xe9, 0xef, 0x1d, 0x63, 0x51, + 0x87, 0x55, 0xf5, 0xfa, 0x93, 0xe7, 0x65, 0xe5, 0xe9, 0xf3, 0xb2, 0xf2, 0xe7, 0xf3, 0xb2, 0xf2, + 0xed, 0x8b, 0x72, 0xdf, 0xd3, 0x17, 0xe5, 0xbe, 0xdf, 0x5f, 0x94, 0xfb, 0xee, 0xac, 0x66, 0x0a, + 0xee, 0x36, 0x77, 0xb0, 0x78, 0x1d, 0xd5, 0xe9, 0x72, 0xfa, 0x45, 0x71, 0x67, 0xe5, 0xed, 0xe5, + 0x76, 0xe6, 0x2b, 0x25, 0x2b, 0xc0, 0xf5, 0x41, 0xfe, 0x8d, 0x70, 0xed, 0x9f, 0x00, 0x00, 0x00, + 0xff, 0xff, 0xc4, 0x68, 0xae, 0x73, 0xc5, 0x14, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/stakeibc/types/validator.pb.go b/x/stakeibc/types/validator.pb.go index c08c5e5e1f..4c252c31ab 100644 --- a/x/stakeibc/types/validator.pb.go +++ b/x/stakeibc/types/validator.pb.go @@ -115,34 +115,34 @@ var fileDescriptor_5d2f32e16bd6ab8f = []byte{ // 474 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x93, 0xc1, 0x6e, 0xd3, 0x30, 0x18, 0xc7, 0x1b, 0x96, 0x75, 0xa9, 0x01, 0x51, 0x59, 0x65, 0x64, 0x03, 0xa5, 0x15, 0x07, 0xd4, - 0x4b, 0x13, 0x31, 0xe0, 0xc6, 0x85, 0x75, 0x97, 0x55, 0x13, 0x82, 0xac, 0xe2, 0xc0, 0x25, 0x72, - 0x9d, 0x4f, 0x89, 0x95, 0xd6, 0x2e, 0xb6, 0x37, 0xd8, 0x5b, 0x70, 0xe3, 0x45, 0xf6, 0x10, 0x3b, - 0x4e, 0x3b, 0x21, 0x0e, 0x13, 0x6a, 0x5f, 0x04, 0xc5, 0x4e, 0x97, 0x5c, 0xd9, 0x29, 0xf6, 0xe7, - 0xbf, 0x7f, 0xff, 0x7c, 0xff, 0xe4, 0x43, 0x7d, 0xa5, 0x25, 0x4b, 0x21, 0x52, 0x9a, 0x14, 0xc0, - 0x66, 0x34, 0x3a, 0x27, 0x73, 0x96, 0x12, 0x2d, 0x64, 0xb8, 0x94, 0x42, 0x0b, 0xfc, 0xc4, 0x0a, - 0xc2, 0x8d, 0x60, 0x7f, 0x8f, 0x0a, 0xb5, 0x10, 0x2a, 0x31, 0xc7, 0x91, 0xdd, 0x58, 0xed, 0x7e, - 0x2f, 0x13, 0x99, 0xb0, 0xf5, 0x72, 0x65, 0xab, 0x2f, 0x7f, 0x6d, 0xa3, 0xce, 0x97, 0x0d, 0x15, - 0x63, 0xe4, 0x72, 0xb2, 0x00, 0xdf, 0x19, 0x38, 0xc3, 0x4e, 0x6c, 0xd6, 0xf8, 0x00, 0xed, 0x90, - 0x34, 0x95, 0xa0, 0x94, 0xff, 0xa0, 0x2c, 0x1f, 0xfa, 0x37, 0x97, 0xa3, 0x5e, 0x85, 0xfe, 0x60, - 0x4f, 0x4e, 0xb5, 0x64, 0x3c, 0x8b, 0x37, 0x42, 0xbc, 0x8b, 0xda, 0xdf, 0x81, 0x65, 0xb9, 0xf6, - 0xdb, 0x03, 0x67, 0xe8, 0xc6, 0xd5, 0x0e, 0x7f, 0x44, 0x28, 0x85, 0x39, 0x64, 0x44, 0x33, 0xc1, - 0xfd, 0x6d, 0x83, 0x0b, 0xaf, 0x6e, 0xfb, 0xad, 0x3f, 0xb7, 0xfd, 0x57, 0x19, 0xd3, 0xf9, 0xd9, - 0x2c, 0xa4, 0x62, 0x51, 0xbd, 0x78, 0xf5, 0x18, 0xa9, 0xb4, 0x88, 0xf4, 0xc5, 0x12, 0x54, 0x78, - 0xcc, 0x75, 0xdc, 0x20, 0x60, 0x81, 0x5e, 0xa8, 0x39, 0x51, 0x79, 0xf2, 0xed, 0x0c, 0xe4, 0x45, - 0xd9, 0x75, 0x56, 0xfa, 0x27, 0x5a, 0x12, 0x5a, 0x80, 0xf4, 0x3b, 0xf7, 0x72, 0xd8, 0x33, 0xcc, - 0xcf, 0x25, 0xf2, 0x53, 0x45, 0x9c, 0x5a, 0x20, 0x4e, 0xd1, 0x6e, 0xd3, 0x90, 0xe6, 0x40, 0x8b, - 0xa5, 0x60, 0x5c, 0xfb, 0x8f, 0xee, 0x65, 0xd5, 0xab, 0xad, 0xc6, 0x77, 0x2c, 0x2c, 0xd0, 0x53, - 0x95, 0x13, 0x09, 0x2a, 0xd1, 0x22, 0xd1, 0xa2, 0x00, 0xae, 0x12, 0x49, 0x34, 0xf8, 0xc8, 0x98, - 0xbc, 0xff, 0x0f, 0x93, 0x23, 0xa0, 0x37, 0x97, 0x23, 0x54, 0x7d, 0xae, 0x23, 0xa0, 0x31, 0xb6, - 0xe8, 0xa9, 0x98, 0x1a, 0x70, 0x4c, 0x34, 0xe0, 0x31, 0x0a, 0xea, 0x54, 0x13, 0x9a, 0x13, 0x9e, - 0x81, 0x4a, 0x18, 0xbf, 0x4b, 0xd4, 0x7f, 0x38, 0x70, 0x86, 0x5b, 0xf1, 0xf3, 0x5a, 0x35, 0xb6, - 0xa2, 0x63, 0xbe, 0x89, 0x08, 0xbf, 0x43, 0xcf, 0x9a, 0xd9, 0x34, 0x6f, 0x3f, 0x1e, 0x38, 0x43, - 0xaf, 0xd9, 0x6c, 0x7d, 0x6d, 0xe2, 0x7a, 0x5b, 0x5d, 0x77, 0xe2, 0x7a, 0x6e, 0x77, 0x7b, 0xe2, - 0x7a, 0x3b, 0x5d, 0x6f, 0xe2, 0x7a, 0x5e, 0xb7, 0x73, 0x78, 0x72, 0xb5, 0x0a, 0x9c, 0xeb, 0x55, - 0xe0, 0xfc, 0x5d, 0x05, 0xce, 0xcf, 0x75, 0xd0, 0xba, 0x5e, 0x07, 0xad, 0xdf, 0xeb, 0xa0, 0xf5, - 0xf5, 0xa0, 0xd1, 0xf7, 0xa9, 0x19, 0x80, 0xd1, 0x09, 0x99, 0xa9, 0xa8, 0x9a, 0x96, 0xf3, 0xd7, - 0x6f, 0xa3, 0x1f, 0xf5, 0xcc, 0x98, 0x1c, 0x66, 0x6d, 0xf3, 0xbb, 0xbf, 0xf9, 0x17, 0x00, 0x00, - 0xff, 0xff, 0xf6, 0xcd, 0x8e, 0xe1, 0x53, 0x03, 0x00, 0x00, + 0x4b, 0x13, 0x31, 0xb4, 0x1b, 0x17, 0xd6, 0x5d, 0x56, 0x4d, 0x08, 0xb2, 0x8a, 0x03, 0x97, 0xc8, + 0x75, 0x3e, 0x25, 0x56, 0x5a, 0xbb, 0xd8, 0xde, 0x60, 0x6f, 0xc1, 0x8d, 0x17, 0xd9, 0x43, 0xec, + 0x38, 0xed, 0x84, 0x38, 0x4c, 0xa8, 0x7d, 0x11, 0x14, 0x3b, 0x5d, 0x72, 0x65, 0xa7, 0xd8, 0x9f, + 0xff, 0xfe, 0xfd, 0xf3, 0xfd, 0x93, 0x0f, 0xf5, 0x95, 0x96, 0x2c, 0x85, 0x48, 0x69, 0x52, 0x00, + 0x9b, 0xd1, 0xe8, 0x82, 0xcc, 0x59, 0x4a, 0xb4, 0x90, 0xe1, 0x52, 0x0a, 0x2d, 0xf0, 0x33, 0x2b, + 0x08, 0x37, 0x82, 0xfd, 0x3d, 0x2a, 0xd4, 0x42, 0xa8, 0xc4, 0x1c, 0x47, 0x76, 0x63, 0xb5, 0xfb, + 0xbd, 0x4c, 0x64, 0xc2, 0xd6, 0xcb, 0x95, 0xad, 0xbe, 0xfe, 0xb5, 0x8d, 0x3a, 0x5f, 0x36, 0x54, + 0x8c, 0x91, 0xcb, 0xc9, 0x02, 0x7c, 0x67, 0xe0, 0x0c, 0x3b, 0xb1, 0x59, 0xe3, 0x03, 0xb4, 0x43, + 0xd2, 0x54, 0x82, 0x52, 0xfe, 0xa3, 0xb2, 0x7c, 0xe4, 0xdf, 0x5e, 0x8d, 0x7a, 0x15, 0xfa, 0x83, + 0x3d, 0x39, 0xd3, 0x92, 0xf1, 0x2c, 0xde, 0x08, 0xf1, 0x2e, 0x6a, 0x7f, 0x07, 0x96, 0xe5, 0xda, + 0x6f, 0x0f, 0x9c, 0xa1, 0x1b, 0x57, 0x3b, 0xfc, 0x11, 0xa1, 0x14, 0xe6, 0x90, 0x11, 0xcd, 0x04, + 0xf7, 0xb7, 0x0d, 0x2e, 0xbc, 0xbe, 0xeb, 0xb7, 0xfe, 0xdc, 0xf5, 0xdf, 0x64, 0x4c, 0xe7, 0xe7, + 0xb3, 0x90, 0x8a, 0x45, 0xf5, 0xe2, 0xd5, 0x63, 0xa4, 0xd2, 0x22, 0xd2, 0x97, 0x4b, 0x50, 0xe1, + 0x09, 0xd7, 0x71, 0x83, 0x80, 0x05, 0x7a, 0xa5, 0xe6, 0x44, 0xe5, 0xc9, 0xb7, 0x73, 0x90, 0x97, + 0x65, 0xd7, 0x59, 0xe9, 0x9f, 0x68, 0x49, 0x68, 0x01, 0xd2, 0xef, 0x3c, 0xc8, 0x61, 0xcf, 0x30, + 0x3f, 0x97, 0xc8, 0x4f, 0x15, 0x71, 0x6a, 0x81, 0x38, 0x45, 0xbb, 0x4d, 0x43, 0x9a, 0x03, 0x2d, + 0x96, 0x82, 0x71, 0xed, 0x3f, 0x79, 0x90, 0x55, 0xaf, 0xb6, 0x1a, 0xdf, 0xb3, 0xb0, 0x40, 0xcf, + 0x55, 0x4e, 0x24, 0xa8, 0x44, 0x8b, 0x44, 0x8b, 0x02, 0xb8, 0x4a, 0x24, 0xd1, 0xe0, 0x23, 0x63, + 0xf2, 0xfe, 0x3f, 0x4c, 0x8e, 0x81, 0xde, 0x5e, 0x8d, 0x50, 0xf5, 0xb9, 0x8e, 0x81, 0xc6, 0xd8, + 0xa2, 0xa7, 0x62, 0x6a, 0xc0, 0x31, 0xd1, 0x80, 0xc7, 0x28, 0xa8, 0x53, 0x4d, 0x68, 0x4e, 0x78, + 0x06, 0x2a, 0x61, 0xfc, 0x3e, 0x51, 0xff, 0xf1, 0xc0, 0x19, 0x6e, 0xc5, 0x2f, 0x6b, 0xd5, 0xd8, + 0x8a, 0x4e, 0xf8, 0x26, 0x22, 0x7c, 0x88, 0x5e, 0x34, 0xb3, 0x69, 0xde, 0x7e, 0x3a, 0x70, 0x86, + 0x5e, 0xb3, 0xd9, 0xfa, 0xda, 0xc4, 0xf5, 0xb6, 0xba, 0xee, 0xc4, 0xf5, 0xdc, 0xee, 0xf6, 0xc4, + 0xf5, 0x76, 0xba, 0xde, 0xc4, 0xf5, 0xbc, 0x6e, 0xe7, 0xe8, 0xf4, 0x7a, 0x15, 0x38, 0x37, 0xab, + 0xc0, 0xf9, 0xbb, 0x0a, 0x9c, 0x9f, 0xeb, 0xa0, 0x75, 0xb3, 0x0e, 0x5a, 0xbf, 0xd7, 0x41, 0xeb, + 0xeb, 0x41, 0xa3, 0xef, 0x33, 0x33, 0x00, 0xa3, 0x53, 0x32, 0x53, 0x51, 0x35, 0x2d, 0x17, 0x6f, + 0x0f, 0xa3, 0x1f, 0xf5, 0xcc, 0x98, 0x1c, 0x66, 0x6d, 0xf3, 0xbb, 0xbf, 0xfb, 0x17, 0x00, 0x00, + 0xff, 0xff, 0x61, 0x6b, 0x93, 0x06, 0x53, 0x03, 0x00, 0x00, } func (m *Validator) Marshal() (dAtA []byte, err error) {