From a2493ebe6b3410961f2bc1857627b9da0256bb9e Mon Sep 17 00:00:00 2001 From: Hanjun Kim Date: Fri, 6 Dec 2024 13:43:28 +0800 Subject: [PATCH] build: bump go module to v3 (#213) ## Description This PR bumps our codebase version from v2 to v3. Closes: MILK-157 --- ### Author Checklist *All items are required. Please add a note to the item if the item is not applicable and please add links to any relevant follow up issues.* I have... - [ ] included the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title - [ ] added `!` to the type prefix if API or client breaking change - [ ] targeted the correct branch (see [PR Targeting](https://github.com/milkyway-labs/milkyway/blob/master/CONTRIBUTING.md#pr-targeting)) - [ ] provided a link to the relevant issue or specification - [ ] followed the guidelines for [building modules](https://docs.cosmos.network/v0.44/building-modules/intro.html) - [ ] included the necessary unit and integration [tests](https://github.com/milkyway-labs/milkyway/blob/master/CONTRIBUTING.md#testing) - [ ] added a changelog entry to `CHANGELOG.md` - [ ] included comments for [documenting Go code](https://blog.golang.org/godoc) - [ ] updated the relevant documentation or specification - [ ] reviewed "Files changed" and left comments if necessary - [ ] confirmed all CI checks have passed ### Reviewers Checklist *All items are required. Please add a note if the item is not applicable and please add your handle next to the items reviewed if you only reviewed selected items.* I have... - [ ] confirmed the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title - [ ] confirmed `!` in the type prefix if API or client breaking change - [ ] confirmed all author checklist items have been addressed - [ ] reviewed state machine logic - [ ] reviewed API design and naming - [ ] reviewed documentation is accurate - [ ] reviewed tests and test coverage - [ ] manually tested (if applicable) --- ...30d6739d1ef0685c0f7bf8f17a8b06d256088.yaml | 6 + ante/ante.go | 2 +- ante/gov_expedited_ante.go | 2 +- ante/gov_expedited_ante_test.go | 4 +- ante/gov_vote_ante.go | 2 +- ante/gov_vote_ante_test.go | 4 +- api/milkyway/assets/v1/genesis.pulsar.go | 2 +- api/milkyway/assets/v1/messages.pulsar.go | 2 +- api/milkyway/assets/v1/models.pulsar.go | 2 +- api/milkyway/assets/v1/query.pulsar.go | 2 +- .../liquidvesting/v1/genesis.pulsar.go | 2 +- .../liquidvesting/v1/messages.pulsar.go | 2 +- .../liquidvesting/v1/models.pulsar.go | 2 +- .../liquidvesting/v1/params.pulsar.go | 2 +- api/milkyway/liquidvesting/v1/query.pulsar.go | 2 +- api/milkyway/operators/v1/genesis.pulsar.go | 2 +- api/milkyway/operators/v1/messages.pulsar.go | 2 +- api/milkyway/operators/v1/models.pulsar.go | 2 +- api/milkyway/operators/v1/params.pulsar.go | 2 +- api/milkyway/operators/v1/query.pulsar.go | 2 +- api/milkyway/pools/v1/genesis.pulsar.go | 2 +- api/milkyway/pools/v1/models.pulsar.go | 2 +- api/milkyway/pools/v1/query.pulsar.go | 2 +- api/milkyway/restaking/v1/genesis.pulsar.go | 2 +- api/milkyway/restaking/v1/messages.pulsar.go | 2 +- api/milkyway/restaking/v1/models.pulsar.go | 2 +- api/milkyway/restaking/v1/params.pulsar.go | 5 +- api/milkyway/restaking/v1/query.pulsar.go | 8 +- api/milkyway/rewards/v1/genesis.pulsar.go | 2 +- api/milkyway/rewards/v1/messages.pulsar.go | 4 +- api/milkyway/rewards/v1/models.pulsar.go | 4 +- api/milkyway/rewards/v1/params.pulsar.go | 2 +- api/milkyway/rewards/v1/query.pulsar.go | 2 +- api/milkyway/services/v1/genesis.pulsar.go | 2 +- api/milkyway/services/v1/messages.pulsar.go | 2 +- api/milkyway/services/v1/models.pulsar.go | 2 +- api/milkyway/services/v1/params.pulsar.go | 2 +- api/milkyway/services/v1/query.pulsar.go | 2 +- app/abci/abci_extensions.go | 2 +- app/app.go | 12 +- app/app_test.go | 6 +- app/encoding.go | 4 +- app/genesis_account_fuzz_test.go | 2 +- app/genesis_test.go | 2 +- app/helpers/test_helpers.go | 2 +- app/keepers/keepers.go | 30 +- app/keepers/keys.go | 14 +- app/keepers/modules.go | 14 +- app/modules.go | 28 +- app/post.go | 2 +- app/sim/sim_state.go | 2 +- app/sim/sim_utils.go | 2 +- app/sim_test.go | 6 +- app/upgrades/types.go | 2 +- cmd/milkywayd/cmd/bech32_convert.go | 2 +- cmd/milkywayd/cmd/root.go | 4 +- cmd/milkywayd/main.go | 4 +- go.mod | 2 +- proto/buf.gen.pulsar.yaml | 2 +- proto/milkyway/assets/v1/genesis.proto | 2 +- proto/milkyway/assets/v1/messages.proto | 2 +- proto/milkyway/assets/v1/models.proto | 2 +- proto/milkyway/assets/v1/query.proto | 2 +- proto/milkyway/liquidvesting/v1/genesis.proto | 2 +- .../milkyway/liquidvesting/v1/messages.proto | 2 +- proto/milkyway/liquidvesting/v1/models.proto | 2 +- proto/milkyway/liquidvesting/v1/params.proto | 2 +- proto/milkyway/liquidvesting/v1/query.proto | 2 +- proto/milkyway/operators/v1/genesis.proto | 2 +- proto/milkyway/operators/v1/messages.proto | 2 +- proto/milkyway/operators/v1/models.proto | 2 +- proto/milkyway/operators/v1/params.proto | 2 +- proto/milkyway/operators/v1/query.proto | 2 +- proto/milkyway/pools/v1/genesis.proto | 2 +- proto/milkyway/pools/v1/models.proto | 2 +- proto/milkyway/pools/v1/query.proto | 2 +- proto/milkyway/restaking/v1/genesis.proto | 2 +- proto/milkyway/restaking/v1/messages.proto | 2 +- proto/milkyway/restaking/v1/models.proto | 2 +- proto/milkyway/restaking/v1/params.proto | 2 +- proto/milkyway/restaking/v1/query.proto | 2 +- proto/milkyway/rewards/v1/genesis.proto | 2 +- proto/milkyway/rewards/v1/messages.proto | 2 +- proto/milkyway/rewards/v1/models.proto | 2 +- proto/milkyway/rewards/v1/params.proto | 2 +- proto/milkyway/rewards/v1/query.proto | 2 +- proto/milkyway/services/v1/genesis.proto | 2 +- proto/milkyway/services/v1/messages.proto | 2 +- proto/milkyway/services/v1/models.proto | 2 +- proto/milkyway/services/v1/params.proto | 2 +- proto/milkyway/services/v1/query.proto | 2 +- scripts/protocgen.sh | 2 +- testutils/storetesting/keeper.go | 2 +- utils/ibc_test.go | 2 +- utils/restaking_test.go | 2 +- x/assets/autocli.go | 2 +- x/assets/keeper/assets.go | 2 +- x/assets/keeper/assets_test.go | 2 +- x/assets/keeper/genesis.go | 2 +- x/assets/keeper/genesis_test.go | 2 +- x/assets/keeper/grpc_query.go | 2 +- x/assets/keeper/grpc_query_test.go | 4 +- x/assets/keeper/keeper.go | 2 +- x/assets/keeper/keeper_test.go | 4 +- x/assets/keeper/msg_server.go | 2 +- x/assets/keeper/msg_server_test.go | 4 +- x/assets/module.go | 4 +- x/assets/testutils/keeper.go | 6 +- x/assets/types/genesis.pb.go | 4 +- x/assets/types/genesis_test.go | 2 +- x/assets/types/messages.pb.go | 4 +- x/assets/types/models.pb.go | 4 +- x/assets/types/models_test.go | 2 +- x/assets/types/query.pb.go | 52 ++-- x/assets/types/ticker_test.go | 2 +- x/genutil/client/cli/init.go | 2 +- x/liquidvesting/abci.go | 4 +- x/liquidvesting/autocli.go | 2 +- x/liquidvesting/ibc_module.go | 6 +- x/liquidvesting/keeper/alias_functions.go | 2 +- .../keeper/alias_functions_test.go | 10 +- x/liquidvesting/keeper/burn.go | 2 +- x/liquidvesting/keeper/burn_test.go | 2 +- x/liquidvesting/keeper/common_test.go | 20 +- x/liquidvesting/keeper/end_blocker.go | 2 +- x/liquidvesting/keeper/end_blocker_test.go | 4 +- x/liquidvesting/keeper/genesis.go | 2 +- x/liquidvesting/keeper/genesis_test.go | 6 +- x/liquidvesting/keeper/grpc_query.go | 2 +- x/liquidvesting/keeper/grpc_query_test.go | 4 +- x/liquidvesting/keeper/ibc.go | 2 +- x/liquidvesting/keeper/ibc_test.go | 2 +- x/liquidvesting/keeper/insurance_fund.go | 2 +- x/liquidvesting/keeper/insurance_fund_test.go | 8 +- x/liquidvesting/keeper/keeper.go | 2 +- x/liquidvesting/keeper/mint.go | 2 +- x/liquidvesting/keeper/mint_test.go | 2 +- x/liquidvesting/keeper/msg_server.go | 2 +- x/liquidvesting/keeper/msg_server_test.go | 4 +- x/liquidvesting/keeper/params.go | 2 +- x/liquidvesting/keeper/restake_restriction.go | 4 +- .../keeper/restake_restriction_test.go | 4 +- x/liquidvesting/keeper/send_restriction.go | 2 +- .../keeper/send_restriction_test.go | 10 +- x/liquidvesting/module.go | 4 +- x/liquidvesting/testutils/keeper.go | 24 +- x/liquidvesting/types/expected_keepers.go | 2 +- x/liquidvesting/types/genesis.pb.go | 44 +-- x/liquidvesting/types/ibc_hooks_test.go | 2 +- x/liquidvesting/types/messages.pb.go | 6 +- x/liquidvesting/types/models.pb.go | 60 ++-- x/liquidvesting/types/params.pb.go | 22 +- x/liquidvesting/types/query.pb.go | 100 +++--- x/operators/abci.go | 4 +- x/operators/abci_test.go | 6 +- x/operators/autocli.go | 4 +- x/operators/client/cli/tx.go | 2 +- x/operators/keeper/alias_functions.go | 2 +- x/operators/keeper/common_test.go | 4 +- x/operators/keeper/genesis.go | 2 +- x/operators/keeper/genesis_test.go | 2 +- x/operators/keeper/grpc_query.go | 2 +- x/operators/keeper/grpc_query_test.go | 2 +- x/operators/keeper/hooks.go | 2 +- x/operators/keeper/invariants.go | 2 +- x/operators/keeper/invariants_test.go | 4 +- x/operators/keeper/keeper.go | 2 +- x/operators/keeper/msg_server.go | 2 +- x/operators/keeper/msg_server_test.go | 4 +- x/operators/keeper/operators.go | 2 +- x/operators/keeper/operators_test.go | 2 +- x/operators/keeper/params.go | 2 +- x/operators/keeper/params_test.go | 2 +- x/operators/module.go | 8 +- x/operators/simulation/decoder.go | 4 +- x/operators/simulation/genesis.go | 6 +- x/operators/simulation/msg_factory.go | 6 +- x/operators/simulation/proposals.go | 2 +- x/operators/simulation/utils.go | 8 +- x/operators/testutils/hooks_mocks.go | 2 +- x/operators/testutils/keeper.go | 6 +- x/operators/types/genesis.go | 2 +- x/operators/types/genesis.pb.go | 64 ++-- x/operators/types/genesis_test.go | 2 +- x/operators/types/keys_test.go | 2 +- x/operators/types/messages.pb.go | 112 +++---- x/operators/types/messages_test.go | 2 +- x/operators/types/models.go | 2 +- x/operators/types/models.pb.go | 70 ++--- x/operators/types/models_test.go | 2 +- x/operators/types/params.pb.go | 22 +- x/operators/types/params_test.go | 2 +- x/operators/types/query.pb.go | 74 ++--- x/pools/client/cli/query.go | 2 +- x/pools/keeper/alias_functions.go | 2 +- x/pools/keeper/alias_functions_test.go | 2 +- x/pools/keeper/common_test.go | 6 +- x/pools/keeper/genesis.go | 2 +- x/pools/keeper/genesis_test.go | 2 +- x/pools/keeper/grpc_query.go | 2 +- x/pools/keeper/grpc_query_test.go | 2 +- x/pools/keeper/hooks.go | 2 +- x/pools/keeper/invariants.go | 4 +- x/pools/keeper/invariants_test.go | 4 +- x/pools/keeper/keeper.go | 2 +- x/pools/keeper/pools.go | 2 +- x/pools/keeper/pools_test.go | 2 +- x/pools/module.go | 6 +- x/pools/types/genesis.pb.go | 4 +- x/pools/types/genesis_test.go | 2 +- x/pools/types/models.go | 2 +- x/pools/types/models.pb.go | 46 +-- x/pools/types/models_test.go | 2 +- x/pools/types/query.pb.go | 58 ++-- x/restaking/abci.go | 4 +- x/restaking/client/cli/query.go | 8 +- x/restaking/client/cli/tx.go | 10 +- x/restaking/keeper/alias_functions.go | 10 +- x/restaking/keeper/alias_functions_test.go | 6 +- x/restaking/keeper/common_test.go | 10 +- x/restaking/keeper/end_blocker.go | 2 +- x/restaking/keeper/end_blocker_test.go | 8 +- x/restaking/keeper/genesis.go | 2 +- x/restaking/keeper/genesis_test.go | 2 +- x/restaking/keeper/grpc_query.go | 8 +- x/restaking/keeper/grpc_query_test.go | 10 +- x/restaking/keeper/hooks.go | 2 +- x/restaking/keeper/invariants.go | 8 +- x/restaking/keeper/keeper.go | 2 +- x/restaking/keeper/msg_server.go | 8 +- x/restaking/keeper/msg_server_test.go | 10 +- x/restaking/keeper/operator_restaking.go | 4 +- x/restaking/keeper/operator_restaking_test.go | 4 +- x/restaking/keeper/operators_hooks.go | 2 +- x/restaking/keeper/operators_hooks_test.go | 2 +- x/restaking/keeper/params.go | 2 +- x/restaking/keeper/pool_restaking.go | 4 +- x/restaking/keeper/pool_restaking_test.go | 4 +- x/restaking/keeper/restake_restriction.go | 2 +- x/restaking/keeper/service_restaking.go | 6 +- x/restaking/keeper/service_restaking_test.go | 4 +- x/restaking/keeper/services_hooks.go | 2 +- x/restaking/keeper/unbond.go | 10 +- x/restaking/keeper/user_preferences.go | 2 +- x/restaking/keeper/user_preferences_test.go | 2 +- x/restaking/module.go | 6 +- x/restaking/testutils/hooks_mocks.go | 2 +- x/restaking/testutils/keeper.go | 18 +- x/restaking/types/expected_keepers.go | 6 +- x/restaking/types/genesis.go | 2 +- x/restaking/types/genesis.pb.go | 79 ++--- x/restaking/types/genesis_test.go | 2 +- x/restaking/types/keys.go | 6 +- x/restaking/types/messages.pb.go | 156 +++++----- x/restaking/types/messages_test.go | 2 +- x/restaking/types/models.go | 6 +- x/restaking/types/models.pb.go | 116 +++---- x/restaking/types/models_test.go | 4 +- x/restaking/types/params.pb.go | 4 +- x/restaking/types/params_test.go | 2 +- x/restaking/types/query.pb.go | 284 +++++++++--------- x/rewards/autocli.go | 2 +- x/rewards/client/cli/tx.go | 2 +- x/rewards/client/cli/utils.go | 4 +- x/rewards/client/cli/utils_test.go | 6 +- x/rewards/keeper/alias_functions.go | 6 +- x/rewards/keeper/allocation.go | 12 +- x/rewards/keeper/allocation_test.go | 10 +- x/rewards/keeper/common_test.go | 28 +- x/rewards/keeper/delegation.go | 4 +- x/rewards/keeper/genesis.go | 2 +- x/rewards/keeper/grpc_query.go | 4 +- x/rewards/keeper/grpc_query_test.go | 10 +- x/rewards/keeper/hooks.go | 4 +- x/rewards/keeper/invariants.go | 10 +- x/rewards/keeper/invariants_test.go | 10 +- x/rewards/keeper/keeper.go | 2 +- x/rewards/keeper/msg_server.go | 6 +- x/rewards/keeper/msg_server_test.go | 14 +- x/rewards/keeper/opertors_hooks.go | 4 +- x/rewards/keeper/oracle.go | 4 +- x/rewards/keeper/oracle_test.go | 2 +- x/rewards/keeper/pool_service_shares.go | 2 +- x/rewards/keeper/pools_hooks.go | 4 +- x/rewards/keeper/restaking_hooks.go | 2 +- x/rewards/keeper/rewards_plan.go | 4 +- x/rewards/keeper/rewards_plan_test.go | 8 +- x/rewards/keeper/services_hooks.go | 4 +- x/rewards/keeper/services_hoos_test.go | 2 +- x/rewards/keeper/target.go | 10 +- x/rewards/keeper/withdraw.go | 4 +- x/rewards/module.go | 6 +- x/rewards/testutils/keeper.go | 26 +- x/rewards/types/dec_pool_test.go | 2 +- x/rewards/types/expected_keepers.go | 10 +- x/rewards/types/genesis.go | 2 +- x/rewards/types/genesis.pb.go | 134 ++++----- x/rewards/types/genesis_test.go | 6 +- x/rewards/types/messages.go | 2 +- x/rewards/types/messages.pb.go | 122 ++++---- x/rewards/types/messages_test.go | 4 +- x/rewards/types/models.go | 4 +- x/rewards/types/models.pb.go | 144 ++++----- x/rewards/types/models_test.go | 4 +- x/rewards/types/params.pb.go | 16 +- x/rewards/types/params_test.go | 2 +- x/rewards/types/pool_test.go | 2 +- x/rewards/types/query.pb.go | 162 +++++----- x/services/autocli.go | 4 +- x/services/client/cli/tx.go | 2 +- x/services/keeper/alias_functions.go | 2 +- x/services/keeper/common_test.go | 4 +- x/services/keeper/genesis.go | 2 +- x/services/keeper/genesis_test.go | 2 +- x/services/keeper/grpc_query.go | 2 +- x/services/keeper/grpc_query_test.go | 2 +- x/services/keeper/hooks.go | 2 +- x/services/keeper/invariants.go | 2 +- x/services/keeper/invariants_test.go | 4 +- x/services/keeper/keeper.go | 2 +- x/services/keeper/msg_server.go | 2 +- x/services/keeper/msg_server_test.go | 4 +- x/services/keeper/params.go | 2 +- x/services/keeper/params_test.go | 2 +- x/services/keeper/services.go | 2 +- x/services/keeper/services_test.go | 2 +- x/services/module.go | 8 +- x/services/simulation/decoder.go | 4 +- x/services/simulation/genesis.go | 2 +- x/services/simulation/msg_factory.go | 6 +- x/services/simulation/proposals.go | 4 +- x/services/simulation/utils.go | 8 +- x/services/testutils/hooks_mocks.go | 2 +- x/services/testutils/keeper.go | 12 +- x/services/types/genesis.go | 2 +- x/services/types/genesis.pb.go | 4 +- x/services/types/genesis_test.go | 2 +- x/services/types/messages.pb.go | 144 ++++----- x/services/types/messages_test.go | 2 +- x/services/types/models.go | 2 +- x/services/types/models.pb.go | 70 ++--- x/services/types/models_test.go | 2 +- x/services/types/params.pb.go | 4 +- x/services/types/params_test.go | 2 +- x/services/types/query.pb.go | 70 ++--- 345 files changed, 1751 insertions(+), 1743 deletions(-) create mode 100644 .changeset/entries/92be7ed2fc08eb877f60cdc57fd30d6739d1ef0685c0f7bf8f17a8b06d256088.yaml diff --git a/.changeset/entries/92be7ed2fc08eb877f60cdc57fd30d6739d1ef0685c0f7bf8f17a8b06d256088.yaml b/.changeset/entries/92be7ed2fc08eb877f60cdc57fd30d6739d1ef0685c0f7bf8f17a8b06d256088.yaml new file mode 100644 index 00000000..962d19d6 --- /dev/null +++ b/.changeset/entries/92be7ed2fc08eb877f60cdc57fd30d6739d1ef0685c0f7bf8f17a8b06d256088.yaml @@ -0,0 +1,6 @@ +type: refactor +module: none +pull_request: 213 +description: Bump Go module version to v3 +backward_compatible: true +date: 2024-12-06T05:19:46.879531Z diff --git a/ante/ante.go b/ante/ante.go index 82382a22..25d0471e 100644 --- a/ante/ante.go +++ b/ante/ante.go @@ -4,7 +4,7 @@ import ( feemarketante "github.com/skip-mev/feemarket/x/feemarket/ante" feemarketkeeper "github.com/skip-mev/feemarket/x/feemarket/keeper" - milkywayerrors "github.com/milkyway-labs/milkyway/v2/types/errors" + milkywayerrors "github.com/milkyway-labs/milkyway/v3/types/errors" ibcante "github.com/cosmos/ibc-go/v8/modules/core/ante" ibckeeper "github.com/cosmos/ibc-go/v8/modules/core/keeper" diff --git a/ante/gov_expedited_ante.go b/ante/gov_expedited_ante.go index fd457076..b6282aaf 100644 --- a/ante/gov_expedited_ante.go +++ b/ante/gov_expedited_ante.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" govv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" - milkywayerrors "github.com/milkyway-labs/milkyway/v2/types/errors" + milkywayerrors "github.com/milkyway-labs/milkyway/v3/types/errors" ) var expeditedPropDecoratorEnabled = true diff --git a/ante/gov_expedited_ante_test.go b/ante/gov_expedited_ante_test.go index 45d933d8..e5fabc9e 100644 --- a/ante/gov_expedited_ante_test.go +++ b/ante/gov_expedited_ante_test.go @@ -14,8 +14,8 @@ import ( govv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" govv1beta1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" - "github.com/milkyway-labs/milkyway/v2/ante" - "github.com/milkyway-labs/milkyway/v2/app/helpers" + "github.com/milkyway-labs/milkyway/v3/ante" + "github.com/milkyway-labs/milkyway/v3/app/helpers" ) func TestGovExpeditedProposalsDecorator(t *testing.T) { diff --git a/ante/gov_vote_ante.go b/ante/gov_vote_ante.go index f00f0243..0da40815 100644 --- a/ante/gov_vote_ante.go +++ b/ante/gov_vote_ante.go @@ -12,7 +12,7 @@ import ( stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - milkywayerrors "github.com/milkyway-labs/milkyway/v2/types/errors" + milkywayerrors "github.com/milkyway-labs/milkyway/v3/types/errors" ) var ( diff --git a/ante/gov_vote_ante_test.go b/ante/gov_vote_ante_test.go index ff4d9d1d..a586f771 100644 --- a/ante/gov_vote_ante_test.go +++ b/ante/gov_vote_ante_test.go @@ -15,8 +15,8 @@ import ( govv1beta1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/milkyway-labs/milkyway/v2/ante" - "github.com/milkyway-labs/milkyway/v2/app/helpers" + "github.com/milkyway-labs/milkyway/v3/ante" + "github.com/milkyway-labs/milkyway/v3/app/helpers" ) // Test that the GovVoteDecorator rejects v1beta1 vote messages from accounts with less than 1 atom staked diff --git a/api/milkyway/assets/v1/genesis.pulsar.go b/api/milkyway/assets/v1/genesis.pulsar.go index a54e1a1b..1f079cc8 100644 --- a/api/milkyway/assets/v1/genesis.pulsar.go +++ b/api/milkyway/assets/v1/genesis.pulsar.go @@ -578,7 +578,7 @@ var file_milkyway_assets_v1_genesis_proto_rawDesc = []byte{ 0x61, 0x73, 0x73, 0x65, 0x74, 0x73, 0x2e, 0x76, 0x31, 0x42, 0x0c, 0x47, 0x65, 0x6e, 0x65, 0x73, 0x69, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x44, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2d, 0x6c, - 0x61, 0x62, 0x73, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x76, 0x32, 0x2f, + 0x61, 0x62, 0x73, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x76, 0x33, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x73, 0x2f, 0x76, 0x31, 0x3b, 0x61, 0x73, 0x73, 0x65, 0x74, 0x73, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4d, 0x41, 0x58, 0xaa, 0x02, 0x12, 0x4d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, diff --git a/api/milkyway/assets/v1/messages.pulsar.go b/api/milkyway/assets/v1/messages.pulsar.go index 97e0769c..b7b8d5d1 100644 --- a/api/milkyway/assets/v1/messages.pulsar.go +++ b/api/milkyway/assets/v1/messages.pulsar.go @@ -1932,7 +1932,7 @@ var file_milkyway_assets_v1_messages_proto_rawDesc = []byte{ 0x42, 0x0d, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x44, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2d, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, - 0x79, 0x77, 0x61, 0x79, 0x2f, 0x76, 0x32, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, + 0x79, 0x77, 0x61, 0x79, 0x2f, 0x76, 0x33, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x73, 0x2f, 0x76, 0x31, 0x3b, 0x61, 0x73, 0x73, 0x65, 0x74, 0x73, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4d, 0x41, 0x58, 0xaa, 0x02, 0x12, 0x4d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x2e, diff --git a/api/milkyway/assets/v1/models.pulsar.go b/api/milkyway/assets/v1/models.pulsar.go index da5f323b..757004f2 100644 --- a/api/milkyway/assets/v1/models.pulsar.go +++ b/api/milkyway/assets/v1/models.pulsar.go @@ -633,7 +633,7 @@ var file_milkyway_assets_v1_models_proto_rawDesc = []byte{ 0x6f, 0x64, 0x65, 0x6c, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x44, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2d, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, - 0x76, 0x32, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, + 0x76, 0x33, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x73, 0x2f, 0x76, 0x31, 0x3b, 0x61, 0x73, 0x73, 0x65, 0x74, 0x73, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4d, 0x41, 0x58, 0xaa, 0x02, 0x12, 0x4d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x12, diff --git a/api/milkyway/assets/v1/query.pulsar.go b/api/milkyway/assets/v1/query.pulsar.go index 9f54b3eb..c49a8660 100644 --- a/api/milkyway/assets/v1/query.pulsar.go +++ b/api/milkyway/assets/v1/query.pulsar.go @@ -2185,7 +2185,7 @@ var file_milkyway_assets_v1_query_proto_rawDesc = []byte{ 0x51, 0x75, 0x65, 0x72, 0x79, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x44, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2d, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, - 0x76, 0x32, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, + 0x76, 0x33, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x73, 0x2f, 0x76, 0x31, 0x3b, 0x61, 0x73, 0x73, 0x65, 0x74, 0x73, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4d, 0x41, 0x58, 0xaa, 0x02, 0x12, 0x4d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x12, diff --git a/api/milkyway/liquidvesting/v1/genesis.pulsar.go b/api/milkyway/liquidvesting/v1/genesis.pulsar.go index b2aa2b72..84111fdd 100644 --- a/api/milkyway/liquidvesting/v1/genesis.pulsar.go +++ b/api/milkyway/liquidvesting/v1/genesis.pulsar.go @@ -831,7 +831,7 @@ var file_milkyway_liquidvesting_v1_genesis_proto_rawDesc = []byte{ 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x42, 0x0c, 0x47, 0x65, 0x6e, 0x65, 0x73, 0x69, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x52, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2d, 0x6c, 0x61, 0x62, 0x73, 0x2f, - 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x76, 0x32, 0x2f, 0x61, 0x70, 0x69, 0x2f, + 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x76, 0x33, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x6c, 0x69, 0x71, 0x75, 0x69, 0x64, 0x76, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2f, 0x76, 0x31, 0x3b, 0x6c, 0x69, 0x71, 0x75, 0x69, 0x64, 0x76, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4d, 0x4c, 0x58, 0xaa, diff --git a/api/milkyway/liquidvesting/v1/messages.pulsar.go b/api/milkyway/liquidvesting/v1/messages.pulsar.go index 42bd890e..a5a9b8a3 100644 --- a/api/milkyway/liquidvesting/v1/messages.pulsar.go +++ b/api/milkyway/liquidvesting/v1/messages.pulsar.go @@ -4210,7 +4210,7 @@ var file_milkyway_liquidvesting_v1_messages_proto_rawDesc = []byte{ 0x76, 0x31, 0x42, 0x0d, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x52, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2d, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x6d, 0x69, - 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x76, 0x32, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, + 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x76, 0x33, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x6c, 0x69, 0x71, 0x75, 0x69, 0x64, 0x76, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2f, 0x76, 0x31, 0x3b, 0x6c, 0x69, 0x71, 0x75, 0x69, 0x64, 0x76, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4d, 0x4c, 0x58, 0xaa, 0x02, 0x19, diff --git a/api/milkyway/liquidvesting/v1/models.pulsar.go b/api/milkyway/liquidvesting/v1/models.pulsar.go index 38ab3899..00571a11 100644 --- a/api/milkyway/liquidvesting/v1/models.pulsar.go +++ b/api/milkyway/liquidvesting/v1/models.pulsar.go @@ -2452,7 +2452,7 @@ var file_milkyway_liquidvesting_v1_models_proto_rawDesc = []byte{ 0x2e, 0x76, 0x31, 0x42, 0x0b, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x52, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2d, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x6d, 0x69, 0x6c, - 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x76, 0x32, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, + 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x76, 0x33, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x6c, 0x69, 0x71, 0x75, 0x69, 0x64, 0x76, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2f, 0x76, 0x31, 0x3b, 0x6c, 0x69, 0x71, 0x75, 0x69, 0x64, 0x76, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4d, 0x4c, 0x58, 0xaa, 0x02, 0x19, 0x4d, diff --git a/api/milkyway/liquidvesting/v1/params.pulsar.go b/api/milkyway/liquidvesting/v1/params.pulsar.go index 07c6afbc..ac0e21d1 100644 --- a/api/milkyway/liquidvesting/v1/params.pulsar.go +++ b/api/milkyway/liquidvesting/v1/params.pulsar.go @@ -1059,7 +1059,7 @@ var file_milkyway_liquidvesting_v1_params_proto_rawDesc = []byte{ 0x31, 0x42, 0x0b, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x52, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2d, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, - 0x77, 0x61, 0x79, 0x2f, 0x76, 0x32, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, + 0x77, 0x61, 0x79, 0x2f, 0x76, 0x33, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x6c, 0x69, 0x71, 0x75, 0x69, 0x64, 0x76, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2f, 0x76, 0x31, 0x3b, 0x6c, 0x69, 0x71, 0x75, 0x69, 0x64, 0x76, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4d, 0x4c, 0x58, 0xaa, 0x02, 0x19, 0x4d, 0x69, 0x6c, diff --git a/api/milkyway/liquidvesting/v1/query.pulsar.go b/api/milkyway/liquidvesting/v1/query.pulsar.go index 0c413941..a60544d3 100644 --- a/api/milkyway/liquidvesting/v1/query.pulsar.go +++ b/api/milkyway/liquidvesting/v1/query.pulsar.go @@ -5942,7 +5942,7 @@ var file_milkyway_liquidvesting_v1_query_proto_rawDesc = []byte{ 0x76, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x42, 0x0a, 0x51, 0x75, 0x65, 0x72, 0x79, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x52, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2d, 0x6c, 0x61, - 0x62, 0x73, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x76, 0x32, 0x2f, 0x61, + 0x62, 0x73, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x76, 0x33, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x6c, 0x69, 0x71, 0x75, 0x69, 0x64, 0x76, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x2f, 0x76, 0x31, 0x3b, 0x6c, 0x69, 0x71, 0x75, 0x69, 0x64, 0x76, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4d, diff --git a/api/milkyway/operators/v1/genesis.pulsar.go b/api/milkyway/operators/v1/genesis.pulsar.go index 8f767496..e7b0df4b 100644 --- a/api/milkyway/operators/v1/genesis.pulsar.go +++ b/api/milkyway/operators/v1/genesis.pulsar.go @@ -2132,7 +2132,7 @@ var file_milkyway_operators_v1_genesis_proto_rawDesc = []byte{ 0x47, 0x65, 0x6e, 0x65, 0x73, 0x69, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x4a, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2d, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, - 0x79, 0x2f, 0x76, 0x32, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, + 0x79, 0x2f, 0x76, 0x33, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x73, 0x2f, 0x76, 0x31, 0x3b, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x73, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4d, 0x4f, 0x58, 0xaa, 0x02, 0x15, 0x4d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2e, 0x4f, 0x70, 0x65, 0x72, diff --git a/api/milkyway/operators/v1/messages.pulsar.go b/api/milkyway/operators/v1/messages.pulsar.go index 49cf60ef..831390ce 100644 --- a/api/milkyway/operators/v1/messages.pulsar.go +++ b/api/milkyway/operators/v1/messages.pulsar.go @@ -8239,7 +8239,7 @@ var file_milkyway_operators_v1_messages_proto_rawDesc = []byte{ 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x4a, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2d, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, - 0x2f, 0x76, 0x32, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, + 0x2f, 0x76, 0x33, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x73, 0x2f, 0x76, 0x31, 0x3b, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x73, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4d, 0x4f, 0x58, 0xaa, 0x02, 0x15, 0x4d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2e, 0x4f, 0x70, 0x65, 0x72, 0x61, diff --git a/api/milkyway/operators/v1/models.pulsar.go b/api/milkyway/operators/v1/models.pulsar.go index e6cea8dd..d714286c 100644 --- a/api/milkyway/operators/v1/models.pulsar.go +++ b/api/milkyway/operators/v1/models.pulsar.go @@ -1770,7 +1770,7 @@ var file_milkyway_operators_v1_models_proto_rawDesc = []byte{ 0x73, 0x2e, 0x76, 0x31, 0x42, 0x0b, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x4a, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2d, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x6d, 0x69, - 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x76, 0x32, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, + 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x76, 0x33, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x73, 0x2f, 0x76, 0x31, 0x3b, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x73, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4d, 0x4f, 0x58, 0xaa, 0x02, 0x15, 0x4d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, diff --git a/api/milkyway/operators/v1/params.pulsar.go b/api/milkyway/operators/v1/params.pulsar.go index d6926c02..bcaaface 100644 --- a/api/milkyway/operators/v1/params.pulsar.go +++ b/api/milkyway/operators/v1/params.pulsar.go @@ -649,7 +649,7 @@ var file_milkyway_operators_v1_params_proto_rawDesc = []byte{ 0x74, 0x6f, 0x72, 0x73, 0x2e, 0x76, 0x31, 0x42, 0x0b, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x4a, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2d, 0x6c, 0x61, 0x62, 0x73, - 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x76, 0x32, 0x2f, 0x61, 0x70, 0x69, + 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x76, 0x33, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x73, 0x2f, 0x76, 0x31, 0x3b, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x73, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4d, 0x4f, 0x58, 0xaa, 0x02, 0x15, 0x4d, 0x69, 0x6c, 0x6b, 0x79, diff --git a/api/milkyway/operators/v1/query.pulsar.go b/api/milkyway/operators/v1/query.pulsar.go index 5c5bbafb..e0c77046 100644 --- a/api/milkyway/operators/v1/query.pulsar.go +++ b/api/milkyway/operators/v1/query.pulsar.go @@ -3905,7 +3905,7 @@ var file_milkyway_operators_v1_query_proto_rawDesc = []byte{ 0x51, 0x75, 0x65, 0x72, 0x79, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x4a, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2d, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, - 0x76, 0x32, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, + 0x76, 0x33, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x73, 0x2f, 0x76, 0x31, 0x3b, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x73, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4d, 0x4f, 0x58, 0xaa, 0x02, 0x15, 0x4d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, diff --git a/api/milkyway/pools/v1/genesis.pulsar.go b/api/milkyway/pools/v1/genesis.pulsar.go index e4b58cbe..f81c17e4 100644 --- a/api/milkyway/pools/v1/genesis.pulsar.go +++ b/api/milkyway/pools/v1/genesis.pulsar.go @@ -638,7 +638,7 @@ var file_milkyway_pools_v1_genesis_proto_rawDesc = []byte{ 0x2e, 0x76, 0x31, 0x42, 0x0c, 0x47, 0x65, 0x6e, 0x65, 0x73, 0x69, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x42, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2d, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x6d, 0x69, - 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x76, 0x32, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, + 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x76, 0x33, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x70, 0x6f, 0x6f, 0x6c, 0x73, 0x2f, 0x76, 0x31, 0x3b, 0x70, 0x6f, 0x6f, 0x6c, 0x73, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4d, 0x50, 0x58, 0xaa, 0x02, 0x11, 0x4d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2e, 0x50, 0x6f, 0x6f, 0x6c, 0x73, 0x2e, 0x56, diff --git a/api/milkyway/pools/v1/models.pulsar.go b/api/milkyway/pools/v1/models.pulsar.go index f02410b8..9a674369 100644 --- a/api/milkyway/pools/v1/models.pulsar.go +++ b/api/milkyway/pools/v1/models.pulsar.go @@ -792,7 +792,7 @@ var file_milkyway_pools_v1_models_proto_rawDesc = []byte{ 0x42, 0x0b, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x42, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2d, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, - 0x61, 0x79, 0x2f, 0x76, 0x32, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, + 0x61, 0x79, 0x2f, 0x76, 0x33, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x70, 0x6f, 0x6f, 0x6c, 0x73, 0x2f, 0x76, 0x31, 0x3b, 0x70, 0x6f, 0x6f, 0x6c, 0x73, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4d, 0x50, 0x58, 0xaa, 0x02, 0x11, 0x4d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2e, 0x50, 0x6f, 0x6f, 0x6c, 0x73, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x11, diff --git a/api/milkyway/pools/v1/query.pulsar.go b/api/milkyway/pools/v1/query.pulsar.go index 3d0bcf3e..6c5fa375 100644 --- a/api/milkyway/pools/v1/query.pulsar.go +++ b/api/milkyway/pools/v1/query.pulsar.go @@ -2560,7 +2560,7 @@ var file_milkyway_pools_v1_query_proto_rawDesc = []byte{ 0x2e, 0x76, 0x31, 0x42, 0x0a, 0x51, 0x75, 0x65, 0x72, 0x79, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x42, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2d, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, - 0x79, 0x77, 0x61, 0x79, 0x2f, 0x76, 0x32, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, + 0x79, 0x77, 0x61, 0x79, 0x2f, 0x76, 0x33, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x70, 0x6f, 0x6f, 0x6c, 0x73, 0x2f, 0x76, 0x31, 0x3b, 0x70, 0x6f, 0x6f, 0x6c, 0x73, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4d, 0x50, 0x58, 0xaa, 0x02, 0x11, 0x4d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2e, 0x50, 0x6f, 0x6f, 0x6c, 0x73, 0x2e, 0x56, 0x31, 0xca, diff --git a/api/milkyway/restaking/v1/genesis.pulsar.go b/api/milkyway/restaking/v1/genesis.pulsar.go index 3ccb2a15..dc4e43ac 100644 --- a/api/milkyway/restaking/v1/genesis.pulsar.go +++ b/api/milkyway/restaking/v1/genesis.pulsar.go @@ -3913,7 +3913,7 @@ var file_milkyway_restaking_v1_genesis_proto_rawDesc = []byte{ 0x65, 0x73, 0x69, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x4a, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2d, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x76, - 0x32, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x72, + 0x33, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x72, 0x65, 0x73, 0x74, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x2f, 0x76, 0x31, 0x3b, 0x72, 0x65, 0x73, 0x74, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4d, 0x52, 0x58, 0xaa, 0x02, 0x15, 0x4d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2e, 0x52, 0x65, 0x73, 0x74, 0x61, 0x6b, 0x69, diff --git a/api/milkyway/restaking/v1/messages.pulsar.go b/api/milkyway/restaking/v1/messages.pulsar.go index e766074a..c6c2459f 100644 --- a/api/milkyway/restaking/v1/messages.pulsar.go +++ b/api/milkyway/restaking/v1/messages.pulsar.go @@ -13346,7 +13346,7 @@ var file_milkyway_restaking_v1_messages_proto_rawDesc = []byte{ 0x61, 0x67, 0x65, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x4a, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2d, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x76, - 0x32, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x72, + 0x33, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x72, 0x65, 0x73, 0x74, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x2f, 0x76, 0x31, 0x3b, 0x72, 0x65, 0x73, 0x74, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4d, 0x52, 0x58, 0xaa, 0x02, 0x15, 0x4d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2e, 0x52, 0x65, 0x73, 0x74, 0x61, 0x6b, 0x69, diff --git a/api/milkyway/restaking/v1/models.pulsar.go b/api/milkyway/restaking/v1/models.pulsar.go index a9ad6818..855c4953 100644 --- a/api/milkyway/restaking/v1/models.pulsar.go +++ b/api/milkyway/restaking/v1/models.pulsar.go @@ -4966,7 +4966,7 @@ var file_milkyway_restaking_v1_models_proto_rawDesc = []byte{ 0x0b, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x4a, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2d, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, - 0x79, 0x2f, 0x76, 0x32, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, + 0x79, 0x2f, 0x76, 0x33, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x72, 0x65, 0x73, 0x74, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x2f, 0x76, 0x31, 0x3b, 0x72, 0x65, 0x73, 0x74, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4d, 0x52, 0x58, 0xaa, 0x02, 0x15, 0x4d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2e, 0x52, 0x65, 0x73, 0x74, diff --git a/api/milkyway/restaking/v1/params.pulsar.go b/api/milkyway/restaking/v1/params.pulsar.go index f902a3c1..24424c76 100644 --- a/api/milkyway/restaking/v1/params.pulsar.go +++ b/api/milkyway/restaking/v1/params.pulsar.go @@ -565,7 +565,8 @@ type Params struct { // types of restaking: pool, operator and service restaking. UnbondingTime int64 `protobuf:"varint,1,opt,name=unbonding_time,json=unbondingTime,proto3" json:"unbonding_time,omitempty"` // AllowedDenoms represents the list of denoms allowed for restaking - // and that will be considered when computing rewards. + // and that will be considered when computing rewards. If no denoms are set, + // all denoms will be considered as restakable. AllowedDenoms []string `protobuf:"bytes,2,rep,name=allowed_denoms,json=allowedDenoms,proto3" json:"allowed_denoms,omitempty"` } @@ -622,7 +623,7 @@ var file_milkyway_restaking_v1_params_proto_rawDesc = []byte{ 0x61, 0x72, 0x61, 0x6d, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x4a, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2d, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, - 0x76, 0x32, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, + 0x76, 0x33, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x72, 0x65, 0x73, 0x74, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x2f, 0x76, 0x31, 0x3b, 0x72, 0x65, 0x73, 0x74, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4d, 0x52, 0x58, 0xaa, 0x02, 0x15, 0x4d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2e, 0x52, 0x65, 0x73, 0x74, 0x61, 0x6b, diff --git a/api/milkyway/restaking/v1/query.pulsar.go b/api/milkyway/restaking/v1/query.pulsar.go index 90d929e4..32ed287f 100644 --- a/api/milkyway/restaking/v1/query.pulsar.go +++ b/api/milkyway/restaking/v1/query.pulsar.go @@ -9,9 +9,9 @@ import ( _ "github.com/cosmos/cosmos-proto" runtime "github.com/cosmos/cosmos-proto/runtime" _ "github.com/cosmos/gogoproto/gogoproto" - v1 "github.com/milkyway-labs/milkyway/v2/api/milkyway/operators/v1" - v11 "github.com/milkyway-labs/milkyway/v2/api/milkyway/pools/v1" - v12 "github.com/milkyway-labs/milkyway/v2/api/milkyway/services/v1" + v1 "github.com/milkyway-labs/milkyway/v3/api/milkyway/operators/v1" + v11 "github.com/milkyway-labs/milkyway/v3/api/milkyway/pools/v1" + v12 "github.com/milkyway-labs/milkyway/v3/api/milkyway/services/v1" _ "google.golang.org/genproto/googleapis/api/annotations" protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoiface "google.golang.org/protobuf/runtime/protoiface" @@ -33861,7 +33861,7 @@ var file_milkyway_restaking_v1_query_proto_rawDesc = []byte{ 0x76, 0x31, 0x42, 0x0a, 0x51, 0x75, 0x65, 0x72, 0x79, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x4a, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2d, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, - 0x77, 0x61, 0x79, 0x2f, 0x76, 0x32, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, + 0x77, 0x61, 0x79, 0x2f, 0x76, 0x33, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x72, 0x65, 0x73, 0x74, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x2f, 0x76, 0x31, 0x3b, 0x72, 0x65, 0x73, 0x74, 0x61, 0x6b, 0x69, 0x6e, 0x67, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4d, 0x52, 0x58, 0xaa, 0x02, 0x15, 0x4d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2e, 0x52, 0x65, diff --git a/api/milkyway/rewards/v1/genesis.pulsar.go b/api/milkyway/rewards/v1/genesis.pulsar.go index 39700914..3236864d 100644 --- a/api/milkyway/rewards/v1/genesis.pulsar.go +++ b/api/milkyway/rewards/v1/genesis.pulsar.go @@ -6041,7 +6041,7 @@ var file_milkyway_rewards_v1_genesis_proto_rawDesc = []byte{ 0x65, 0x6e, 0x65, 0x73, 0x69, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x46, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2d, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, - 0x2f, 0x76, 0x32, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, + 0x2f, 0x76, 0x33, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x72, 0x65, 0x77, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x3b, 0x72, 0x65, 0x77, 0x61, 0x72, 0x64, 0x73, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4d, 0x52, 0x58, 0xaa, 0x02, 0x13, 0x4d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2e, 0x52, 0x65, 0x77, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x56, diff --git a/api/milkyway/rewards/v1/messages.pulsar.go b/api/milkyway/rewards/v1/messages.pulsar.go index 64de39b6..9553a0ca 100644 --- a/api/milkyway/rewards/v1/messages.pulsar.go +++ b/api/milkyway/rewards/v1/messages.pulsar.go @@ -9,7 +9,7 @@ import ( _ "github.com/cosmos/cosmos-proto" runtime "github.com/cosmos/cosmos-proto/runtime" _ "github.com/cosmos/gogoproto/gogoproto" - v1 "github.com/milkyway-labs/milkyway/v2/api/milkyway/restaking/v1" + v1 "github.com/milkyway-labs/milkyway/v3/api/milkyway/restaking/v1" protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoiface "google.golang.org/protobuf/runtime/protoiface" protoimpl "google.golang.org/protobuf/runtime/protoimpl" @@ -7609,7 +7609,7 @@ var file_milkyway_rewards_v1_messages_proto_rawDesc = []byte{ 0x0d, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x46, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2d, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, - 0x77, 0x61, 0x79, 0x2f, 0x76, 0x32, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, + 0x77, 0x61, 0x79, 0x2f, 0x76, 0x33, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x72, 0x65, 0x77, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x3b, 0x72, 0x65, 0x77, 0x61, 0x72, 0x64, 0x73, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4d, 0x52, 0x58, 0xaa, 0x02, 0x13, 0x4d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2e, 0x52, 0x65, 0x77, 0x61, 0x72, 0x64, diff --git a/api/milkyway/rewards/v1/models.pulsar.go b/api/milkyway/rewards/v1/models.pulsar.go index 70c5ca6d..755eebda 100644 --- a/api/milkyway/rewards/v1/models.pulsar.go +++ b/api/milkyway/rewards/v1/models.pulsar.go @@ -8,7 +8,7 @@ import ( _ "github.com/cosmos/cosmos-proto" runtime "github.com/cosmos/cosmos-proto/runtime" _ "github.com/cosmos/gogoproto/gogoproto" - v1 "github.com/milkyway-labs/milkyway/v2/api/milkyway/restaking/v1" + v1 "github.com/milkyway-labs/milkyway/v3/api/milkyway/restaking/v1" protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoiface "google.golang.org/protobuf/runtime/protoiface" protoimpl "google.golang.org/protobuf/runtime/protoimpl" @@ -10787,7 +10787,7 @@ var file_milkyway_rewards_v1_models_proto_rawDesc = []byte{ 0x77, 0x61, 0x72, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x42, 0x0b, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x46, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2d, 0x6c, 0x61, 0x62, - 0x73, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x76, 0x32, 0x2f, 0x61, 0x70, + 0x73, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x76, 0x33, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x72, 0x65, 0x77, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x3b, 0x72, 0x65, 0x77, 0x61, 0x72, 0x64, 0x73, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4d, 0x52, 0x58, 0xaa, 0x02, 0x13, 0x4d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, diff --git a/api/milkyway/rewards/v1/params.pulsar.go b/api/milkyway/rewards/v1/params.pulsar.go index d1cb94d4..5df68d1f 100644 --- a/api/milkyway/rewards/v1/params.pulsar.go +++ b/api/milkyway/rewards/v1/params.pulsar.go @@ -585,7 +585,7 @@ var file_milkyway_rewards_v1_params_proto_rawDesc = []byte{ 0x31, 0x42, 0x0b, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x46, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2d, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, - 0x77, 0x61, 0x79, 0x2f, 0x76, 0x32, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, + 0x77, 0x61, 0x79, 0x2f, 0x76, 0x33, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x72, 0x65, 0x77, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x3b, 0x72, 0x65, 0x77, 0x61, 0x72, 0x64, 0x73, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4d, 0x52, 0x58, 0xaa, 0x02, 0x13, 0x4d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2e, 0x52, 0x65, 0x77, 0x61, 0x72, 0x64, diff --git a/api/milkyway/rewards/v1/query.pulsar.go b/api/milkyway/rewards/v1/query.pulsar.go index 03e64dd0..b752429a 100644 --- a/api/milkyway/rewards/v1/query.pulsar.go +++ b/api/milkyway/rewards/v1/query.pulsar.go @@ -12084,7 +12084,7 @@ var file_milkyway_rewards_v1_query_proto_rawDesc = []byte{ 0x31, 0x42, 0x0a, 0x51, 0x75, 0x65, 0x72, 0x79, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x46, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2d, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, - 0x61, 0x79, 0x2f, 0x76, 0x32, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, + 0x61, 0x79, 0x2f, 0x76, 0x33, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x72, 0x65, 0x77, 0x61, 0x72, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x3b, 0x72, 0x65, 0x77, 0x61, 0x72, 0x64, 0x73, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4d, 0x52, 0x58, 0xaa, 0x02, 0x13, 0x4d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2e, 0x52, 0x65, 0x77, 0x61, 0x72, 0x64, 0x73, diff --git a/api/milkyway/services/v1/genesis.pulsar.go b/api/milkyway/services/v1/genesis.pulsar.go index 1121d4fd..5a6218c1 100644 --- a/api/milkyway/services/v1/genesis.pulsar.go +++ b/api/milkyway/services/v1/genesis.pulsar.go @@ -1427,7 +1427,7 @@ var file_milkyway_services_v1_genesis_proto_rawDesc = []byte{ 0x76, 0x31, 0x42, 0x0c, 0x47, 0x65, 0x6e, 0x65, 0x73, 0x69, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x48, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2d, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x6d, 0x69, 0x6c, - 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x76, 0x32, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, + 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x76, 0x33, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x76, 0x31, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4d, 0x53, 0x58, 0xaa, 0x02, 0x14, 0x4d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2e, 0x53, 0x65, diff --git a/api/milkyway/services/v1/messages.pulsar.go b/api/milkyway/services/v1/messages.pulsar.go index 42269248..cb70200a 100644 --- a/api/milkyway/services/v1/messages.pulsar.go +++ b/api/milkyway/services/v1/messages.pulsar.go @@ -10229,7 +10229,7 @@ var file_milkyway_services_v1_messages_proto_rawDesc = []byte{ 0x31, 0x42, 0x0d, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x48, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2d, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x6d, 0x69, 0x6c, - 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x76, 0x32, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, + 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x76, 0x33, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x76, 0x31, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4d, 0x53, 0x58, 0xaa, 0x02, 0x14, 0x4d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2e, 0x53, 0x65, diff --git a/api/milkyway/services/v1/models.pulsar.go b/api/milkyway/services/v1/models.pulsar.go index d5c55566..155e1aaf 100644 --- a/api/milkyway/services/v1/models.pulsar.go +++ b/api/milkyway/services/v1/models.pulsar.go @@ -1971,7 +1971,7 @@ var file_milkyway_services_v1_models_proto_rawDesc = []byte{ 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x76, 0x31, 0x42, 0x0b, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x48, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2d, 0x6c, 0x61, 0x62, - 0x73, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x76, 0x32, 0x2f, 0x61, 0x70, + 0x73, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x76, 0x33, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x76, 0x31, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4d, 0x53, 0x58, 0xaa, 0x02, 0x14, 0x4d, 0x69, 0x6c, 0x6b, 0x79, 0x77, diff --git a/api/milkyway/services/v1/params.pulsar.go b/api/milkyway/services/v1/params.pulsar.go index 10f71fa0..14c93144 100644 --- a/api/milkyway/services/v1/params.pulsar.go +++ b/api/milkyway/services/v1/params.pulsar.go @@ -586,7 +586,7 @@ var file_milkyway_services_v1_params_proto_rawDesc = []byte{ 0x76, 0x31, 0x42, 0x0b, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x48, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2d, 0x6c, 0x61, 0x62, 0x73, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, - 0x79, 0x77, 0x61, 0x79, 0x2f, 0x76, 0x32, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, + 0x79, 0x77, 0x61, 0x79, 0x2f, 0x76, 0x33, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x76, 0x31, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4d, 0x53, 0x58, 0xaa, 0x02, 0x14, 0x4d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2e, 0x53, 0x65, 0x72, diff --git a/api/milkyway/services/v1/query.pulsar.go b/api/milkyway/services/v1/query.pulsar.go index 5cec2e69..88a91d14 100644 --- a/api/milkyway/services/v1/query.pulsar.go +++ b/api/milkyway/services/v1/query.pulsar.go @@ -3899,7 +3899,7 @@ var file_milkyway_services_v1_query_proto_rawDesc = []byte{ 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x76, 0x31, 0x42, 0x0a, 0x51, 0x75, 0x65, 0x72, 0x79, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x48, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2d, 0x6c, 0x61, 0x62, 0x73, - 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x76, 0x32, 0x2f, 0x61, 0x70, 0x69, + 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x76, 0x33, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, 0x79, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x76, 0x31, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4d, 0x53, 0x58, 0xaa, 0x02, 0x14, 0x4d, 0x69, 0x6c, 0x6b, 0x79, 0x77, 0x61, diff --git a/app/abci/abci_extensions.go b/app/abci/abci_extensions.go index f36c110a..09bae9e6 100644 --- a/app/abci/abci_extensions.go +++ b/app/abci/abci_extensions.go @@ -22,7 +22,7 @@ import ( oraclepreblock "github.com/skip-mev/connect/v2/abci/preblock/oracle" - "github.com/milkyway-labs/milkyway/v2/app/keepers" + "github.com/milkyway-labs/milkyway/v3/app/keepers" ) type SetupData struct { diff --git a/app/app.go b/app/app.go index 7a819b71..afec56aa 100644 --- a/app/app.go +++ b/app/app.go @@ -64,12 +64,12 @@ import ( feemarketkeeper "github.com/skip-mev/feemarket/x/feemarket/keeper" "github.com/spf13/cast" - milkywayante "github.com/milkyway-labs/milkyway/v2/ante" - milkywayabci "github.com/milkyway-labs/milkyway/v2/app/abci" - "github.com/milkyway-labs/milkyway/v2/app/keepers" - "github.com/milkyway-labs/milkyway/v2/app/upgrades" - _ "github.com/milkyway-labs/milkyway/v2/client/docs/statik" - liquidvestingtypes "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types" + milkywayante "github.com/milkyway-labs/milkyway/v3/ante" + milkywayabci "github.com/milkyway-labs/milkyway/v3/app/abci" + "github.com/milkyway-labs/milkyway/v3/app/keepers" + "github.com/milkyway-labs/milkyway/v3/app/upgrades" + _ "github.com/milkyway-labs/milkyway/v3/client/docs/statik" + liquidvestingtypes "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types" ) var ( diff --git a/app/app_test.go b/app/app_test.go index 8282fb0f..83f952d7 100644 --- a/app/app_test.go +++ b/app/app_test.go @@ -7,9 +7,9 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" "github.com/stretchr/testify/require" - milkyway "github.com/milkyway-labs/milkyway/v2/app" - milkywayhelpers "github.com/milkyway-labs/milkyway/v2/app/helpers" - liquidvestingtypes "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types" + milkyway "github.com/milkyway-labs/milkyway/v3/app" + milkywayhelpers "github.com/milkyway-labs/milkyway/v3/app/helpers" + liquidvestingtypes "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types" ) func TestMilkyWayApp_BlockedModuleAccountAddrs(t *testing.T) { diff --git a/app/encoding.go b/app/encoding.go index f3b5380f..e48ae498 100644 --- a/app/encoding.go +++ b/app/encoding.go @@ -4,8 +4,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" "github.com/cosmos/cosmos-sdk/std" - "github.com/milkyway-labs/milkyway/v2/app/keepers" - "github.com/milkyway-labs/milkyway/v2/app/params" + "github.com/milkyway-labs/milkyway/v3/app/keepers" + "github.com/milkyway-labs/milkyway/v3/app/params" ) // MakeEncodingConfig creates an EncodingConfig. diff --git a/app/genesis_account_fuzz_test.go b/app/genesis_account_fuzz_test.go index 6247c3a4..d1e6dabc 100644 --- a/app/genesis_account_fuzz_test.go +++ b/app/genesis_account_fuzz_test.go @@ -6,7 +6,7 @@ import ( fuzz "github.com/google/gofuzz" - milkyway "github.com/milkyway-labs/milkyway/v2/app" + milkyway "github.com/milkyway-labs/milkyway/v3/app" ) func TestFuzzGenesisAccountValidate(t *testing.T) { diff --git a/app/genesis_test.go b/app/genesis_test.go index ffd9086a..c31d8d95 100644 --- a/app/genesis_test.go +++ b/app/genesis_test.go @@ -13,7 +13,7 @@ import ( oracletypes "github.com/skip-mev/connect/v2/x/oracle/types" "github.com/stretchr/testify/require" - milkyway "github.com/milkyway-labs/milkyway/v2/app" + milkyway "github.com/milkyway-labs/milkyway/v3/app" ) func TestNewDefaultGenesisState(t *testing.T) { diff --git a/app/helpers/test_helpers.go b/app/helpers/test_helpers.go index 0ef4b87f..111bd707 100644 --- a/app/helpers/test_helpers.go +++ b/app/helpers/test_helpers.go @@ -31,7 +31,7 @@ import ( wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" - milkyway "github.com/milkyway-labs/milkyway/v2/app" + milkyway "github.com/milkyway-labs/milkyway/v3/app" ) // SimAppChainID hardcoded chainID for simulation diff --git a/app/keepers/keepers.go b/app/keepers/keepers.go index 681a167e..84951d69 100644 --- a/app/keepers/keepers.go +++ b/app/keepers/keepers.go @@ -81,21 +81,21 @@ import ( icsprovider "github.com/cosmos/interchain-security/v6/x/ccv/provider" icsproviderkeeper "github.com/cosmos/interchain-security/v6/x/ccv/provider/keeper" - assetskeeper "github.com/milkyway-labs/milkyway/v2/x/assets/keeper" - assetstypes "github.com/milkyway-labs/milkyway/v2/x/assets/types" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting" - liquidvestingkeeper "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/keeper" - liquidvestingtypes "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types" - operatorskeeper "github.com/milkyway-labs/milkyway/v2/x/operators/keeper" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - poolskeeper "github.com/milkyway-labs/milkyway/v2/x/pools/keeper" - poolstypes "github.com/milkyway-labs/milkyway/v2/x/pools/types" - restakingkeeper "github.com/milkyway-labs/milkyway/v2/x/restaking/keeper" - restakingtypes "github.com/milkyway-labs/milkyway/v2/x/restaking/types" - rewardskeeper "github.com/milkyway-labs/milkyway/v2/x/rewards/keeper" - rewardstypes "github.com/milkyway-labs/milkyway/v2/x/rewards/types" - serviceskeeper "github.com/milkyway-labs/milkyway/v2/x/services/keeper" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + assetskeeper "github.com/milkyway-labs/milkyway/v3/x/assets/keeper" + assetstypes "github.com/milkyway-labs/milkyway/v3/x/assets/types" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting" + liquidvestingkeeper "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/keeper" + liquidvestingtypes "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types" + operatorskeeper "github.com/milkyway-labs/milkyway/v3/x/operators/keeper" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + poolskeeper "github.com/milkyway-labs/milkyway/v3/x/pools/keeper" + poolstypes "github.com/milkyway-labs/milkyway/v3/x/pools/types" + restakingkeeper "github.com/milkyway-labs/milkyway/v3/x/restaking/keeper" + restakingtypes "github.com/milkyway-labs/milkyway/v3/x/restaking/types" + rewardskeeper "github.com/milkyway-labs/milkyway/v3/x/rewards/keeper" + rewardstypes "github.com/milkyway-labs/milkyway/v3/x/rewards/types" + serviceskeeper "github.com/milkyway-labs/milkyway/v3/x/services/keeper" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) type AppKeepers struct { diff --git a/app/keepers/keys.go b/app/keepers/keys.go index 20dfb502..8df3d72d 100644 --- a/app/keepers/keys.go +++ b/app/keepers/keys.go @@ -32,13 +32,13 @@ import ( wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" - assetstypes "github.com/milkyway-labs/milkyway/v2/x/assets/types" - liquidvestingtypes "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - poolstypes "github.com/milkyway-labs/milkyway/v2/x/pools/types" - restakingtypes "github.com/milkyway-labs/milkyway/v2/x/restaking/types" - rewardstypes "github.com/milkyway-labs/milkyway/v2/x/rewards/types" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + assetstypes "github.com/milkyway-labs/milkyway/v3/x/assets/types" + liquidvestingtypes "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + poolstypes "github.com/milkyway-labs/milkyway/v3/x/pools/types" + restakingtypes "github.com/milkyway-labs/milkyway/v3/x/restaking/types" + rewardstypes "github.com/milkyway-labs/milkyway/v3/x/rewards/types" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) func (appKeepers *AppKeepers) GenerateKeys() { diff --git a/app/keepers/modules.go b/app/keepers/modules.go index a2e68b83..96d8c0b0 100644 --- a/app/keepers/modules.go +++ b/app/keepers/modules.go @@ -30,13 +30,13 @@ import ( "github.com/skip-mev/connect/v2/x/oracle" "github.com/skip-mev/feemarket/x/feemarket" - "github.com/milkyway-labs/milkyway/v2/x/assets" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting" - "github.com/milkyway-labs/milkyway/v2/x/operators" - "github.com/milkyway-labs/milkyway/v2/x/pools" - "github.com/milkyway-labs/milkyway/v2/x/restaking" - "github.com/milkyway-labs/milkyway/v2/x/rewards" - "github.com/milkyway-labs/milkyway/v2/x/services" + "github.com/milkyway-labs/milkyway/v3/x/assets" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting" + "github.com/milkyway-labs/milkyway/v3/x/operators" + "github.com/milkyway-labs/milkyway/v3/x/pools" + "github.com/milkyway-labs/milkyway/v3/x/restaking" + "github.com/milkyway-labs/milkyway/v3/x/rewards" + "github.com/milkyway-labs/milkyway/v3/x/services" ) var AppModuleBasics = module.NewBasicManager( diff --git a/app/modules.go b/app/modules.go index 54a5b0dc..d2b0d27a 100644 --- a/app/modules.go +++ b/app/modules.go @@ -65,20 +65,20 @@ import ( "github.com/CosmWasm/wasmd/x/wasm" wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" - "github.com/milkyway-labs/milkyway/v2/x/assets" - assetstypes "github.com/milkyway-labs/milkyway/v2/x/assets/types" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting" - liquidvestingtypes "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types" - "github.com/milkyway-labs/milkyway/v2/x/operators" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - "github.com/milkyway-labs/milkyway/v2/x/pools" - poolstypes "github.com/milkyway-labs/milkyway/v2/x/pools/types" - "github.com/milkyway-labs/milkyway/v2/x/restaking" - restakingtypes "github.com/milkyway-labs/milkyway/v2/x/restaking/types" - "github.com/milkyway-labs/milkyway/v2/x/rewards" - rewardstypes "github.com/milkyway-labs/milkyway/v2/x/rewards/types" - "github.com/milkyway-labs/milkyway/v2/x/services" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/x/assets" + assetstypes "github.com/milkyway-labs/milkyway/v3/x/assets/types" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting" + liquidvestingtypes "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types" + "github.com/milkyway-labs/milkyway/v3/x/operators" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/x/pools" + poolstypes "github.com/milkyway-labs/milkyway/v3/x/pools/types" + "github.com/milkyway-labs/milkyway/v3/x/restaking" + restakingtypes "github.com/milkyway-labs/milkyway/v3/x/restaking/types" + "github.com/milkyway-labs/milkyway/v3/x/rewards" + rewardstypes "github.com/milkyway-labs/milkyway/v3/x/rewards/types" + "github.com/milkyway-labs/milkyway/v3/x/services" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) var MaccPerms = map[string][]string{ diff --git a/app/post.go b/app/post.go index ca6bfab6..6f669305 100644 --- a/app/post.go +++ b/app/post.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/milkyway-labs/milkyway/v2/ante" + "github.com/milkyway-labs/milkyway/v3/ante" ) // PostHandlerOptions are the options required for constructing a FeeMarket PostHandler. diff --git a/app/sim/sim_state.go b/app/sim/sim_state.go index 69378b5e..12e1c15d 100644 --- a/app/sim/sim_state.go +++ b/app/sim/sim_state.go @@ -22,7 +22,7 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - milkyway "github.com/milkyway-labs/milkyway/v2/app" + milkyway "github.com/milkyway-labs/milkyway/v3/app" ) // Simulation parameter constants diff --git a/app/sim/sim_utils.go b/app/sim/sim_utils.go index 22d55c39..4543df13 100644 --- a/app/sim/sim_utils.go +++ b/app/sim/sim_utils.go @@ -12,7 +12,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - milkyway "github.com/milkyway-labs/milkyway/v2/app" + milkyway "github.com/milkyway-labs/milkyway/v3/app" ) // SimulationOperations retrieves the simulation params from the provided file path diff --git a/app/sim_test.go b/app/sim_test.go index 6c7786db..3fd19833 100644 --- a/app/sim_test.go +++ b/app/sim_test.go @@ -25,10 +25,10 @@ import ( "github.com/cosmos/cosmos-sdk/x/simulation" simcli "github.com/cosmos/cosmos-sdk/x/simulation/client/cli" - "github.com/milkyway-labs/milkyway/v2/ante" - "github.com/milkyway-labs/milkyway/v2/app/sim" + "github.com/milkyway-labs/milkyway/v3/ante" + "github.com/milkyway-labs/milkyway/v3/app/sim" - milkyway "github.com/milkyway-labs/milkyway/v2/app" + milkyway "github.com/milkyway-labs/milkyway/v3/app" ) // AppChainID hardcoded chainID for simulation diff --git a/app/upgrades/types.go b/app/upgrades/types.go index acbf3c7c..528117c8 100644 --- a/app/upgrades/types.go +++ b/app/upgrades/types.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/milkyway-labs/milkyway/v2/app/keepers" + "github.com/milkyway-labs/milkyway/v3/app/keepers" ) // Upgrade defines a struct containing necessary fields that a SoftwareUpgradeProposal diff --git a/cmd/milkywayd/cmd/bech32_convert.go b/cmd/milkywayd/cmd/bech32_convert.go index d6ceff67..c2949f2d 100644 --- a/cmd/milkywayd/cmd/bech32_convert.go +++ b/cmd/milkywayd/cmd/bech32_convert.go @@ -5,7 +5,7 @@ import ( "github.com/spf13/cobra" - addressutil "github.com/milkyway-labs/milkyway/v2/pkg/address" + addressutil "github.com/milkyway-labs/milkyway/v3/pkg/address" ) var flagBech32Prefix = "prefix" diff --git a/cmd/milkywayd/cmd/root.go b/cmd/milkywayd/cmd/root.go index 538f2796..462db4fa 100644 --- a/cmd/milkywayd/cmd/root.go +++ b/cmd/milkywayd/cmd/root.go @@ -56,13 +56,13 @@ import ( genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types" oracleconfig "github.com/skip-mev/connect/v2/oracle/config" - genutilcli "github.com/milkyway-labs/milkyway/v2/x/genutil/client/cli" + genutilcli "github.com/milkyway-labs/milkyway/v3/x/genutil/client/cli" "github.com/CosmWasm/wasmd/x/wasm" wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" - milkyway "github.com/milkyway-labs/milkyway/v2/app" + milkyway "github.com/milkyway-labs/milkyway/v3/app" ) // NewRootCmd creates a new root command for simd. It is called once in the diff --git a/cmd/milkywayd/main.go b/cmd/milkywayd/main.go index d0c9a518..3ae5fa0e 100644 --- a/cmd/milkywayd/main.go +++ b/cmd/milkywayd/main.go @@ -5,8 +5,8 @@ import ( svrcmd "github.com/cosmos/cosmos-sdk/server/cmd" - milkywayapp "github.com/milkyway-labs/milkyway/v2/app" - "github.com/milkyway-labs/milkyway/v2/cmd/milkywayd/cmd" + milkywayapp "github.com/milkyway-labs/milkyway/v3/app" + "github.com/milkyway-labs/milkyway/v3/cmd/milkywayd/cmd" ) func main() { diff --git a/go.mod b/go.mod index 3e546e50..fc9e8d1e 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/milkyway-labs/milkyway/v2 +module github.com/milkyway-labs/milkyway/v3 go 1.23 diff --git a/proto/buf.gen.pulsar.yaml b/proto/buf.gen.pulsar.yaml index e7519c36..cbd17352 100644 --- a/proto/buf.gen.pulsar.yaml +++ b/proto/buf.gen.pulsar.yaml @@ -2,7 +2,7 @@ version: v1 managed: enabled: true go_package_prefix: - default: github.com/milkyway-labs/milkyway/v2/api + default: github.com/milkyway-labs/milkyway/v3/api except: - buf.build/googleapis/googleapis - buf.build/cosmos/gogo-proto diff --git a/proto/milkyway/assets/v1/genesis.proto b/proto/milkyway/assets/v1/genesis.proto index 1626273a..9db3d5a7 100644 --- a/proto/milkyway/assets/v1/genesis.proto +++ b/proto/milkyway/assets/v1/genesis.proto @@ -5,7 +5,7 @@ import "amino/amino.proto"; import "gogoproto/gogo.proto"; import "milkyway/assets/v1/models.proto"; -option go_package = "github.com/milkyway-labs/milkyway/v2/x/assets/types"; +option go_package = "github.com/milkyway-labs/milkyway/v3/x/assets/types"; // GenesisState defines the module's genesis state. message GenesisState { diff --git a/proto/milkyway/assets/v1/messages.proto b/proto/milkyway/assets/v1/messages.proto index c6564e28..8475fe9e 100644 --- a/proto/milkyway/assets/v1/messages.proto +++ b/proto/milkyway/assets/v1/messages.proto @@ -7,7 +7,7 @@ import "cosmos/msg/v1/msg.proto"; import "gogoproto/gogo.proto"; import "milkyway/assets/v1/models.proto"; -option go_package = "github.com/milkyway-labs/milkyway/v2/x/assets/types"; +option go_package = "github.com/milkyway-labs/milkyway/v3/x/assets/types"; // Msg defines the assets module's gRPC message service. service Msg { diff --git a/proto/milkyway/assets/v1/models.proto b/proto/milkyway/assets/v1/models.proto index 39ae3a1f..0a504d18 100644 --- a/proto/milkyway/assets/v1/models.proto +++ b/proto/milkyway/assets/v1/models.proto @@ -3,7 +3,7 @@ package milkyway.assets.v1; import "gogoproto/gogo.proto"; -option go_package = "github.com/milkyway-labs/milkyway/v2/x/assets/types"; +option go_package = "github.com/milkyway-labs/milkyway/v3/x/assets/types"; option (gogoproto.goproto_getters_all) = false; // Asset represents an asset that can be registered on the chain. diff --git a/proto/milkyway/assets/v1/query.proto b/proto/milkyway/assets/v1/query.proto index acba5a16..e2f34e1a 100644 --- a/proto/milkyway/assets/v1/query.proto +++ b/proto/milkyway/assets/v1/query.proto @@ -7,7 +7,7 @@ import "google/api/annotations.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; import "milkyway/assets/v1/models.proto"; -option go_package = "github.com/milkyway-labs/milkyway/v2/x/assets/types"; +option go_package = "github.com/milkyway-labs/milkyway/v3/x/assets/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/milkyway/liquidvesting/v1/genesis.proto b/proto/milkyway/liquidvesting/v1/genesis.proto index 9e0dc5e4..611ef0d3 100644 --- a/proto/milkyway/liquidvesting/v1/genesis.proto +++ b/proto/milkyway/liquidvesting/v1/genesis.proto @@ -6,7 +6,7 @@ import "google/protobuf/timestamp.proto"; import "milkyway/liquidvesting/v1/params.proto"; import "milkyway/liquidvesting/v1/models.proto"; -option go_package = "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types"; +option go_package = "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types"; // GenesisState defines the liquidvesting module's genesis state. message GenesisState { diff --git a/proto/milkyway/liquidvesting/v1/messages.proto b/proto/milkyway/liquidvesting/v1/messages.proto index c97dc562..9a8ebcd5 100644 --- a/proto/milkyway/liquidvesting/v1/messages.proto +++ b/proto/milkyway/liquidvesting/v1/messages.proto @@ -8,7 +8,7 @@ import "cosmos/base/v1beta1/coin.proto"; import "gogoproto/gogo.proto"; import "milkyway/liquidvesting/v1/params.proto"; -option go_package = "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types"; +option go_package = "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types"; // Msg defines the services module's gRPC message service. service Msg { diff --git a/proto/milkyway/liquidvesting/v1/models.proto b/proto/milkyway/liquidvesting/v1/models.proto index dfab3da8..9c5a1bba 100644 --- a/proto/milkyway/liquidvesting/v1/models.proto +++ b/proto/milkyway/liquidvesting/v1/models.proto @@ -7,7 +7,7 @@ import "google/protobuf/timestamp.proto"; import "amino/amino.proto"; import "cosmos_proto/cosmos.proto"; -option go_package = "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types"; +option go_package = "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types"; // UserInsuranceFund defines a user's insurance fund. message UserInsuranceFund { diff --git a/proto/milkyway/liquidvesting/v1/params.proto b/proto/milkyway/liquidvesting/v1/params.proto index 8e9760cd..8b08aede 100644 --- a/proto/milkyway/liquidvesting/v1/params.proto +++ b/proto/milkyway/liquidvesting/v1/params.proto @@ -4,7 +4,7 @@ package milkyway.liquidvesting.v1; import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; -option go_package = "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types"; +option go_package = "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types"; // Params defines the parameters for the module. message Params { diff --git a/proto/milkyway/liquidvesting/v1/query.proto b/proto/milkyway/liquidvesting/v1/query.proto index 0834b627..03210c9b 100644 --- a/proto/milkyway/liquidvesting/v1/query.proto +++ b/proto/milkyway/liquidvesting/v1/query.proto @@ -8,7 +8,7 @@ import "cosmos/base/v1beta1/coin.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; import "milkyway/liquidvesting/v1/params.proto"; -option go_package = "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types"; +option go_package = "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/milkyway/operators/v1/genesis.proto b/proto/milkyway/operators/v1/genesis.proto index 57ce5844..b3be002b 100644 --- a/proto/milkyway/operators/v1/genesis.proto +++ b/proto/milkyway/operators/v1/genesis.proto @@ -7,7 +7,7 @@ import "google/protobuf/duration.proto"; import "milkyway/operators/v1/models.proto"; import "milkyway/operators/v1/params.proto"; -option go_package = "github.com/milkyway-labs/milkyway/v2/x/operators/types"; +option go_package = "github.com/milkyway-labs/milkyway/v3/x/operators/types"; // GenesisState defines the operators module's genesis state. message GenesisState { diff --git a/proto/milkyway/operators/v1/messages.proto b/proto/milkyway/operators/v1/messages.proto index 79b121e4..a1d184e2 100644 --- a/proto/milkyway/operators/v1/messages.proto +++ b/proto/milkyway/operators/v1/messages.proto @@ -10,7 +10,7 @@ import "gogoproto/gogo.proto"; import "milkyway/operators/v1/params.proto"; import "milkyway/operators/v1/models.proto"; -option go_package = "github.com/milkyway-labs/milkyway/v2/x/operators/types"; +option go_package = "github.com/milkyway-labs/milkyway/v3/x/operators/types"; // Msg defines the avs module's gRPC message service. service Msg { diff --git a/proto/milkyway/operators/v1/models.proto b/proto/milkyway/operators/v1/models.proto index dd4711c4..ee2cff80 100644 --- a/proto/milkyway/operators/v1/models.proto +++ b/proto/milkyway/operators/v1/models.proto @@ -5,7 +5,7 @@ import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; import "cosmos/base/v1beta1/coin.proto"; -option go_package = "github.com/milkyway-labs/milkyway/v2/x/operators/types"; +option go_package = "github.com/milkyway-labs/milkyway/v3/x/operators/types"; option (gogoproto.goproto_getters_all) = false; // OperatorStatus defines the possible statuses of an operator diff --git a/proto/milkyway/operators/v1/params.proto b/proto/milkyway/operators/v1/params.proto index 7bad4b88..2dabb135 100644 --- a/proto/milkyway/operators/v1/params.proto +++ b/proto/milkyway/operators/v1/params.proto @@ -4,7 +4,7 @@ package milkyway.operators.v1; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; -option go_package = "github.com/milkyway-labs/milkyway/v2/x/operators/types"; +option go_package = "github.com/milkyway-labs/milkyway/v3/x/operators/types"; // Params defines the parameters for the operators module. message Params { diff --git a/proto/milkyway/operators/v1/query.proto b/proto/milkyway/operators/v1/query.proto index 65f76068..54cba127 100644 --- a/proto/milkyway/operators/v1/query.proto +++ b/proto/milkyway/operators/v1/query.proto @@ -7,7 +7,7 @@ import "cosmos/base/query/v1beta1/pagination.proto"; import "milkyway/operators/v1/models.proto"; import "milkyway/operators/v1/params.proto"; -option go_package = "github.com/milkyway-labs/milkyway/v2/x/operators/types"; +option go_package = "github.com/milkyway-labs/milkyway/v3/x/operators/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/milkyway/pools/v1/genesis.proto b/proto/milkyway/pools/v1/genesis.proto index 61cb2eb0..f324c5bf 100644 --- a/proto/milkyway/pools/v1/genesis.proto +++ b/proto/milkyway/pools/v1/genesis.proto @@ -4,7 +4,7 @@ package milkyway.pools.v1; import "gogoproto/gogo.proto"; import "milkyway/pools/v1/models.proto"; -option go_package = "github.com/milkyway-labs/milkyway/v2/x/pools/types"; +option go_package = "github.com/milkyway-labs/milkyway/v3/x/pools/types"; // GenesisState defines the pools module's genesis state. message GenesisState { diff --git a/proto/milkyway/pools/v1/models.proto b/proto/milkyway/pools/v1/models.proto index aa4a1d4d..8cb76e92 100644 --- a/proto/milkyway/pools/v1/models.proto +++ b/proto/milkyway/pools/v1/models.proto @@ -4,7 +4,7 @@ package milkyway.pools.v1; import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; -option go_package = "github.com/milkyway-labs/milkyway/v2/x/pools/types"; +option go_package = "github.com/milkyway-labs/milkyway/v3/x/pools/types"; option (gogoproto.goproto_getters_all) = false; // Pool defines the structure of a restaking pool diff --git a/proto/milkyway/pools/v1/query.proto b/proto/milkyway/pools/v1/query.proto index 4c80706e..18946e58 100644 --- a/proto/milkyway/pools/v1/query.proto +++ b/proto/milkyway/pools/v1/query.proto @@ -6,7 +6,7 @@ import "google/api/annotations.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; import "milkyway/pools/v1/models.proto"; -option go_package = "github.com/milkyway-labs/milkyway/v2/x/pools/types"; +option go_package = "github.com/milkyway-labs/milkyway/v3/x/pools/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/milkyway/restaking/v1/genesis.proto b/proto/milkyway/restaking/v1/genesis.proto index 5ed078a8..2b6b4d92 100644 --- a/proto/milkyway/restaking/v1/genesis.proto +++ b/proto/milkyway/restaking/v1/genesis.proto @@ -5,7 +5,7 @@ import "gogoproto/gogo.proto"; import "milkyway/restaking/v1/models.proto"; import "milkyway/restaking/v1/params.proto"; -option go_package = "github.com/milkyway-labs/milkyway/v2/x/restaking/types"; +option go_package = "github.com/milkyway-labs/milkyway/v3/x/restaking/types"; // OperatorJoinedServicesRecord represents the services joined by a // individual operator. diff --git a/proto/milkyway/restaking/v1/messages.proto b/proto/milkyway/restaking/v1/messages.proto index 2c937bce..ca9d683c 100644 --- a/proto/milkyway/restaking/v1/messages.proto +++ b/proto/milkyway/restaking/v1/messages.proto @@ -10,7 +10,7 @@ import "gogoproto/gogo.proto"; import "milkyway/restaking/v1/params.proto"; import "milkyway/restaking/v1/models.proto"; -option go_package = "github.com/milkyway-labs/milkyway/v2/x/restaking/types"; +option go_package = "github.com/milkyway-labs/milkyway/v3/x/restaking/types"; // Msg defines the restaking module's gRPC message service. service Msg { diff --git a/proto/milkyway/restaking/v1/models.proto b/proto/milkyway/restaking/v1/models.proto index 6e99c931..a3e0054c 100644 --- a/proto/milkyway/restaking/v1/models.proto +++ b/proto/milkyway/restaking/v1/models.proto @@ -7,7 +7,7 @@ import "amino/amino.proto"; import "cosmos_proto/cosmos.proto"; import "cosmos/base/v1beta1/coin.proto"; -option go_package = "github.com/milkyway-labs/milkyway/v2/x/restaking/types"; +option go_package = "github.com/milkyway-labs/milkyway/v3/x/restaking/types"; // DelegationType defines the type of delegation. enum DelegationType { diff --git a/proto/milkyway/restaking/v1/params.proto b/proto/milkyway/restaking/v1/params.proto index 2ccb13f7..ce81ce96 100644 --- a/proto/milkyway/restaking/v1/params.proto +++ b/proto/milkyway/restaking/v1/params.proto @@ -3,7 +3,7 @@ package milkyway.restaking.v1; import "gogoproto/gogo.proto"; -option go_package = "github.com/milkyway-labs/milkyway/v2/x/restaking/types"; +option go_package = "github.com/milkyway-labs/milkyway/v3/x/restaking/types"; // Params defines the parameters for the module. message Params { diff --git a/proto/milkyway/restaking/v1/query.proto b/proto/milkyway/restaking/v1/query.proto index 0b35527d..3d67358d 100644 --- a/proto/milkyway/restaking/v1/query.proto +++ b/proto/milkyway/restaking/v1/query.proto @@ -13,7 +13,7 @@ import "milkyway/operators/v1/models.proto"; import "milkyway/pools/v1/models.proto"; import "milkyway/services/v1/models.proto"; -option go_package = "github.com/milkyway-labs/milkyway/v2/x/restaking/types"; +option go_package = "github.com/milkyway-labs/milkyway/v3/x/restaking/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/milkyway/rewards/v1/genesis.proto b/proto/milkyway/rewards/v1/genesis.proto index e88ca24b..fd658010 100644 --- a/proto/milkyway/rewards/v1/genesis.proto +++ b/proto/milkyway/rewards/v1/genesis.proto @@ -9,7 +9,7 @@ import "gogoproto/gogo.proto"; import "milkyway/rewards/v1/params.proto"; import "milkyway/rewards/v1/models.proto"; -option go_package = "github.com/milkyway-labs/milkyway/v2/x/rewards/types"; +option go_package = "github.com/milkyway-labs/milkyway/v3/x/rewards/types"; // DelegatorWithdrawInfo is the address for where delegation rewards are // withdrawn to by default this struct is only used at genesis to feed in diff --git a/proto/milkyway/rewards/v1/messages.proto b/proto/milkyway/rewards/v1/messages.proto index b77add9c..f1da86c2 100644 --- a/proto/milkyway/rewards/v1/messages.proto +++ b/proto/milkyway/rewards/v1/messages.proto @@ -11,7 +11,7 @@ import "milkyway/restaking/v1/models.proto"; import "milkyway/rewards/v1/params.proto"; import "milkyway/rewards/v1/models.proto"; -option go_package = "github.com/milkyway-labs/milkyway/v2/x/rewards/types"; +option go_package = "github.com/milkyway-labs/milkyway/v3/x/rewards/types"; // Msg defines the services module's gRPC message service. service Msg { diff --git a/proto/milkyway/rewards/v1/models.proto b/proto/milkyway/rewards/v1/models.proto index ca1bc4bf..88cb8767 100644 --- a/proto/milkyway/rewards/v1/models.proto +++ b/proto/milkyway/rewards/v1/models.proto @@ -9,7 +9,7 @@ import "google/protobuf/any.proto"; import "gogoproto/gogo.proto"; import "milkyway/restaking/v1/models.proto"; -option go_package = "github.com/milkyway-labs/milkyway/v2/x/rewards/types"; +option go_package = "github.com/milkyway-labs/milkyway/v3/x/rewards/types"; option (gogoproto.goproto_getters_all) = false; // RewardsPlan represents a rewards allocation plan. diff --git a/proto/milkyway/rewards/v1/params.proto b/proto/milkyway/rewards/v1/params.proto index 570b967a..32c8c346 100644 --- a/proto/milkyway/rewards/v1/params.proto +++ b/proto/milkyway/rewards/v1/params.proto @@ -4,7 +4,7 @@ package milkyway.rewards.v1; import "cosmos/base/v1beta1/coin.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/milkyway-labs/milkyway/v2/x/rewards/types"; +option go_package = "github.com/milkyway-labs/milkyway/v3/x/rewards/types"; option (gogoproto.goproto_getters_all) = false; // Params defines the parameters for the module. diff --git a/proto/milkyway/rewards/v1/query.proto b/proto/milkyway/rewards/v1/query.proto index b41a8693..78d60084 100644 --- a/proto/milkyway/rewards/v1/query.proto +++ b/proto/milkyway/rewards/v1/query.proto @@ -10,7 +10,7 @@ import "cosmos/base/query/v1beta1/pagination.proto"; import "milkyway/rewards/v1/models.proto"; import "milkyway/rewards/v1/params.proto"; -option go_package = "github.com/milkyway-labs/milkyway/v2/x/rewards/types"; +option go_package = "github.com/milkyway-labs/milkyway/v3/x/rewards/types"; option (gogoproto.goproto_getters_all) = false; // Query defines the gRPC querier service. diff --git a/proto/milkyway/services/v1/genesis.proto b/proto/milkyway/services/v1/genesis.proto index 67fa639b..36c819e2 100644 --- a/proto/milkyway/services/v1/genesis.proto +++ b/proto/milkyway/services/v1/genesis.proto @@ -5,7 +5,7 @@ import "gogoproto/gogo.proto"; import "milkyway/services/v1/models.proto"; import "milkyway/services/v1/params.proto"; -option go_package = "github.com/milkyway-labs/milkyway/v2/x/services/types"; +option go_package = "github.com/milkyway-labs/milkyway/v3/x/services/types"; // GenesisState defines the services module's genesis state. message GenesisState { diff --git a/proto/milkyway/services/v1/messages.proto b/proto/milkyway/services/v1/messages.proto index 62463adf..e24e2ced 100644 --- a/proto/milkyway/services/v1/messages.proto +++ b/proto/milkyway/services/v1/messages.proto @@ -9,7 +9,7 @@ import "gogoproto/gogo.proto"; import "milkyway/services/v1/params.proto"; import "milkyway/services/v1/models.proto"; -option go_package = "github.com/milkyway-labs/milkyway/v2/x/services/types"; +option go_package = "github.com/milkyway-labs/milkyway/v3/x/services/types"; // Msg defines the services module's gRPC message service. service Msg { diff --git a/proto/milkyway/services/v1/models.proto b/proto/milkyway/services/v1/models.proto index 19c74000..9eae3267 100644 --- a/proto/milkyway/services/v1/models.proto +++ b/proto/milkyway/services/v1/models.proto @@ -5,7 +5,7 @@ import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; import "cosmos/base/v1beta1/coin.proto"; -option go_package = "github.com/milkyway-labs/milkyway/v2/x/services/types"; +option go_package = "github.com/milkyway-labs/milkyway/v3/x/services/types"; option (gogoproto.goproto_getters_all) = false; // ServiceStatus defines the status of a service diff --git a/proto/milkyway/services/v1/params.proto b/proto/milkyway/services/v1/params.proto index dd441044..da10541d 100644 --- a/proto/milkyway/services/v1/params.proto +++ b/proto/milkyway/services/v1/params.proto @@ -4,7 +4,7 @@ package milkyway.services.v1; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; -option go_package = "github.com/milkyway-labs/milkyway/v2/x/services/types"; +option go_package = "github.com/milkyway-labs/milkyway/v3/x/services/types"; // Params defines the parameters for the module. message Params { diff --git a/proto/milkyway/services/v1/query.proto b/proto/milkyway/services/v1/query.proto index a072b779..e4b37181 100644 --- a/proto/milkyway/services/v1/query.proto +++ b/proto/milkyway/services/v1/query.proto @@ -7,7 +7,7 @@ import "cosmos/base/query/v1beta1/pagination.proto"; import "milkyway/services/v1/models.proto"; import "milkyway/services/v1/params.proto"; -option go_package = "github.com/milkyway-labs/milkyway/v2/x/services/types"; +option go_package = "github.com/milkyway-labs/milkyway/v3/x/services/types"; // Query defines the gRPC querier service. service Query { diff --git a/scripts/protocgen.sh b/scripts/protocgen.sh index c7aa9b75..7588c244 100755 --- a/scripts/protocgen.sh +++ b/scripts/protocgen.sh @@ -20,5 +20,5 @@ cd .. # move proto files to the right places # # Note: Proto files are suffixed with the current binary version. -cp -r github.com/milkyway-labs/milkyway/v2/* ./ +cp -r github.com/milkyway-labs/milkyway/v3/* ./ rm -rf github.com diff --git a/testutils/storetesting/keeper.go b/testutils/storetesting/keeper.go index ad1564ac..fe5cf6a1 100644 --- a/testutils/storetesting/keeper.go +++ b/testutils/storetesting/keeper.go @@ -18,7 +18,7 @@ import ( distrtypes "github.com/cosmos/cosmos-sdk/x/distribution/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - milkyway "github.com/milkyway-labs/milkyway/v2/app" + milkyway "github.com/milkyway-labs/milkyway/v3/app" ) type BaseKeeperTestData struct { diff --git a/utils/ibc_test.go b/utils/ibc_test.go index 0d5900e3..8d49fdc6 100644 --- a/utils/ibc_test.go +++ b/utils/ibc_test.go @@ -7,7 +7,7 @@ import ( transfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" "github.com/stretchr/testify/require" - "github.com/milkyway-labs/milkyway/v2/utils" + "github.com/milkyway-labs/milkyway/v3/utils" ) func Test_DeserializeFungibleTokenPacketData(t *testing.T) { diff --git a/utils/restaking_test.go b/utils/restaking_test.go index 8e34953c..8c4b66d4 100644 --- a/utils/restaking_test.go +++ b/utils/restaking_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/milkyway-labs/milkyway/v2/utils" + "github.com/milkyway-labs/milkyway/v3/utils" ) func TestGetTokenDenomFromSharesDenom_IBCDenom(t *testing.T) { diff --git a/x/assets/autocli.go b/x/assets/autocli.go index 58a6b86f..f5c3e552 100644 --- a/x/assets/autocli.go +++ b/x/assets/autocli.go @@ -6,7 +6,7 @@ import ( autocliv1 "cosmossdk.io/api/cosmos/autocli/v1" "github.com/cosmos/cosmos-sdk/version" - assetsv1 "github.com/milkyway-labs/milkyway/v2/api/milkyway/assets/v1" + assetsv1 "github.com/milkyway-labs/milkyway/v3/api/milkyway/assets/v1" ) // AutoCLIOptions implements the autocli.HasAutoCLIConfig interface. diff --git a/x/assets/keeper/assets.go b/x/assets/keeper/assets.go index b0c36b09..c6e0afa5 100644 --- a/x/assets/keeper/assets.go +++ b/x/assets/keeper/assets.go @@ -5,7 +5,7 @@ import ( "cosmossdk.io/collections" - "github.com/milkyway-labs/milkyway/v2/x/assets/types" + "github.com/milkyway-labs/milkyway/v3/x/assets/types" ) // SetAsset stores an asset in the store diff --git a/x/assets/keeper/assets_test.go b/x/assets/keeper/assets_test.go index 3f383b8b..8cefaf65 100644 --- a/x/assets/keeper/assets_test.go +++ b/x/assets/keeper/assets_test.go @@ -3,7 +3,7 @@ package keeper_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/assets/types" + "github.com/milkyway-labs/milkyway/v3/x/assets/types" ) func (suite *KeeperTestSuite) TestKeeper_SetAsset() { diff --git a/x/assets/keeper/genesis.go b/x/assets/keeper/genesis.go index bc6cb9c1..51129eec 100644 --- a/x/assets/keeper/genesis.go +++ b/x/assets/keeper/genesis.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/assets/types" + "github.com/milkyway-labs/milkyway/v3/x/assets/types" ) // ExportGenesis returns the GenesisState associated with the given context diff --git a/x/assets/keeper/genesis_test.go b/x/assets/keeper/genesis_test.go index 885deba2..56fa3262 100644 --- a/x/assets/keeper/genesis_test.go +++ b/x/assets/keeper/genesis_test.go @@ -3,7 +3,7 @@ package keeper_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/assets/types" + "github.com/milkyway-labs/milkyway/v3/x/assets/types" ) func (suite *KeeperTestSuite) TestExportGenesis() { diff --git a/x/assets/keeper/grpc_query.go b/x/assets/keeper/grpc_query.go index 5c82811b..b0815841 100644 --- a/x/assets/keeper/grpc_query.go +++ b/x/assets/keeper/grpc_query.go @@ -11,7 +11,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - "github.com/milkyway-labs/milkyway/v2/x/assets/types" + "github.com/milkyway-labs/milkyway/v3/x/assets/types" ) var _ types.QueryServer = queryServer{} diff --git a/x/assets/keeper/grpc_query_test.go b/x/assets/keeper/grpc_query_test.go index 50728d76..15751905 100644 --- a/x/assets/keeper/grpc_query_test.go +++ b/x/assets/keeper/grpc_query_test.go @@ -4,8 +4,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - "github.com/milkyway-labs/milkyway/v2/x/assets/keeper" - "github.com/milkyway-labs/milkyway/v2/x/assets/types" + "github.com/milkyway-labs/milkyway/v3/x/assets/keeper" + "github.com/milkyway-labs/milkyway/v3/x/assets/types" ) func (suite *KeeperTestSuite) TestQuerier_Assets() { diff --git a/x/assets/keeper/keeper.go b/x/assets/keeper/keeper.go index c0cfb361..e8f4e417 100644 --- a/x/assets/keeper/keeper.go +++ b/x/assets/keeper/keeper.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/assets/types" + "github.com/milkyway-labs/milkyway/v3/x/assets/types" ) type Keeper struct { diff --git a/x/assets/keeper/keeper_test.go b/x/assets/keeper/keeper_test.go index a464c195..9ff7aaad 100644 --- a/x/assets/keeper/keeper_test.go +++ b/x/assets/keeper/keeper_test.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/suite" - "github.com/milkyway-labs/milkyway/v2/x/assets/keeper" - "github.com/milkyway-labs/milkyway/v2/x/assets/testutils" + "github.com/milkyway-labs/milkyway/v3/x/assets/keeper" + "github.com/milkyway-labs/milkyway/v3/x/assets/testutils" ) type KeeperTestSuite struct { diff --git a/x/assets/keeper/msg_server.go b/x/assets/keeper/msg_server.go index 47a7724c..604ed047 100644 --- a/x/assets/keeper/msg_server.go +++ b/x/assets/keeper/msg_server.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/milkyway-labs/milkyway/v2/x/assets/types" + "github.com/milkyway-labs/milkyway/v3/x/assets/types" ) var _ types.MsgServer = msgServer{} diff --git a/x/assets/keeper/msg_server_test.go b/x/assets/keeper/msg_server_test.go index 0e9820f5..1c6ecf8e 100644 --- a/x/assets/keeper/msg_server_test.go +++ b/x/assets/keeper/msg_server_test.go @@ -3,8 +3,8 @@ package keeper_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/assets/keeper" - "github.com/milkyway-labs/milkyway/v2/x/assets/types" + "github.com/milkyway-labs/milkyway/v3/x/assets/keeper" + "github.com/milkyway-labs/milkyway/v3/x/assets/types" ) func (suite *KeeperTestSuite) TestMsgServer_RegisterAsset() { diff --git a/x/assets/module.go b/x/assets/module.go index 89a115d0..d29bf41c 100644 --- a/x/assets/module.go +++ b/x/assets/module.go @@ -14,8 +14,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/milkyway-labs/milkyway/v2/x/assets/keeper" - "github.com/milkyway-labs/milkyway/v2/x/assets/types" + "github.com/milkyway-labs/milkyway/v3/x/assets/keeper" + "github.com/milkyway-labs/milkyway/v3/x/assets/types" ) const ( diff --git a/x/assets/testutils/keeper.go b/x/assets/testutils/keeper.go index 79f56626..b207d06c 100644 --- a/x/assets/testutils/keeper.go +++ b/x/assets/testutils/keeper.go @@ -8,9 +8,9 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/milkyway-labs/milkyway/v2/testutils/storetesting" - "github.com/milkyway-labs/milkyway/v2/x/assets/keeper" - "github.com/milkyway-labs/milkyway/v2/x/assets/types" + "github.com/milkyway-labs/milkyway/v3/testutils/storetesting" + "github.com/milkyway-labs/milkyway/v3/x/assets/keeper" + "github.com/milkyway-labs/milkyway/v3/x/assets/types" ) type KeeperTestData struct { diff --git a/x/assets/types/genesis.pb.go b/x/assets/types/genesis.pb.go index 45702a7a..1f95d528 100644 --- a/x/assets/types/genesis.pb.go +++ b/x/assets/types/genesis.pb.go @@ -89,9 +89,9 @@ var fileDescriptor_f17ee47d995cb1cb = []byte{ 0xac, 0x78, 0xbe, 0x41, 0x8b, 0x31, 0x08, 0xaa, 0xc7, 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, 0x61, 0x26, 0xea, 0xe6, 0x24, 0x26, 0x15, 0xc3, 0x79, 0xfa, 0x65, 0x46, 0xfa, 0x15, 0x30, + 0xf5, 0x61, 0x26, 0xea, 0xe6, 0x24, 0x26, 0x15, 0xc3, 0x79, 0xfa, 0x65, 0xc6, 0xfa, 0x15, 0x30, 0x67, 0x96, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0xdd, 0x68, 0x0c, 0x08, 0x00, 0x00, 0xff, - 0xff, 0x42, 0x66, 0xce, 0x76, 0x25, 0x01, 0x00, 0x00, + 0xff, 0x65, 0x03, 0xeb, 0xf7, 0x25, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/assets/types/genesis_test.go b/x/assets/types/genesis_test.go index 1c00b396..77b833b5 100644 --- a/x/assets/types/genesis_test.go +++ b/x/assets/types/genesis_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/milkyway-labs/milkyway/v2/x/assets/types" + "github.com/milkyway-labs/milkyway/v3/x/assets/types" ) func TestGenesis_Validate(t *testing.T) { diff --git a/x/assets/types/messages.pb.go b/x/assets/types/messages.pb.go index 3e4df4fe..e0ac4e05 100644 --- a/x/assets/types/messages.pb.go +++ b/x/assets/types/messages.pb.go @@ -255,8 +255,8 @@ var fileDescriptor_fa7f7c938a129c02 = []byte{ 0x87, 0x7b, 0x0c, 0x72, 0x9c, 0x4e, 0x4e, 0xe3, 0xb2, 0x28, 0xbd, 0xf0, 0x6b, 0x33, 0xaf, 0xa3, 0xbe, 0xb5, 0x58, 0x19, 0x68, 0xb9, 0x32, 0xd0, 0xf5, 0xca, 0x40, 0x7f, 0xd7, 0x86, 0xb2, 0x5c, 0x1b, 0xca, 0xc5, 0xda, 0x50, 0xbe, 0x76, 0xb8, 0x27, 0x47, 0xd3, 0x01, 0x19, 0x0a, 0x9f, 0x66, - 0xd6, 0xcd, 0xb1, 0x33, 0x80, 0x9d, 0xa2, 0xb3, 0x36, 0xfd, 0x99, 0x5d, 0x5c, 0x19, 0x4d, 0x18, - 0x0c, 0x9e, 0xc6, 0xb7, 0xb6, 0x73, 0x13, 0x00, 0x00, 0xff, 0xff, 0x8c, 0x24, 0x85, 0x5d, 0x6c, + 0xd6, 0xcd, 0xb1, 0x33, 0x80, 0x9d, 0xa2, 0xb3, 0x0e, 0xfd, 0x99, 0x5d, 0x5c, 0x19, 0x4d, 0x18, + 0x0c, 0x9e, 0xc6, 0xb7, 0xb6, 0x73, 0x13, 0x00, 0x00, 0xff, 0xff, 0xab, 0x41, 0xa0, 0xdc, 0x6c, 0x03, 0x00, 0x00, } diff --git a/x/assets/types/models.pb.go b/x/assets/types/models.pb.go index abe9d826..246f6fc6 100644 --- a/x/assets/types/models.pb.go +++ b/x/assets/types/models.pb.go @@ -87,8 +87,8 @@ var fileDescriptor_551852e014d32f36 = []byte{ 0x02, 0x4f, 0x3c, 0x94, 0x63, 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, 0xe3, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0x98, 0x2b, 0x75, 0x73, - 0x12, 0x93, 0x8a, 0xe1, 0x3c, 0xfd, 0x32, 0x23, 0xfd, 0x0a, 0x98, 0xcf, 0x4a, 0x2a, 0x0b, 0x52, - 0x8b, 0x93, 0xd8, 0xc0, 0x8e, 0x35, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0x80, 0x4e, 0x08, 0xed, + 0x12, 0x93, 0x8a, 0xe1, 0x3c, 0xfd, 0x32, 0x63, 0xfd, 0x0a, 0x98, 0xcf, 0x4a, 0x2a, 0x0b, 0x52, + 0x8b, 0x93, 0xd8, 0xc0, 0x8e, 0x35, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0xa7, 0x2b, 0x2d, 0x6c, 0xf9, 0x00, 0x00, 0x00, } diff --git a/x/assets/types/models_test.go b/x/assets/types/models_test.go index 259f47b6..995c6165 100644 --- a/x/assets/types/models_test.go +++ b/x/assets/types/models_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/milkyway-labs/milkyway/v2/x/assets/types" + "github.com/milkyway-labs/milkyway/v3/x/assets/types" ) func TestAsset_Validate(t *testing.T) { diff --git a/x/assets/types/query.pb.go b/x/assets/types/query.pb.go index 58766dcd..e2ba81e2 100644 --- a/x/assets/types/query.pb.go +++ b/x/assets/types/query.pb.go @@ -247,33 +247,33 @@ var fileDescriptor_2d64a9f39441c4d1 = []byte{ // 461 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x52, 0xbf, 0x6e, 0xd3, 0x40, 0x18, 0xf7, 0x05, 0x6c, 0xa9, 0xd7, 0xa9, 0x47, 0x85, 0x82, 0x55, 0xb9, 0x91, 0x05, 0x69, 0x88, - 0xc4, 0x9d, 0xec, 0x8a, 0x8d, 0x85, 0x0e, 0x30, 0x20, 0x24, 0xf0, 0xc8, 0x76, 0x4e, 0x4f, 0xc6, + 0xc4, 0x9d, 0x9c, 0x88, 0x8d, 0x85, 0x0e, 0x30, 0x20, 0x24, 0xf0, 0xc8, 0x76, 0x4e, 0x4f, 0xc6, 0xaa, 0xed, 0x73, 0x73, 0x17, 0x83, 0x85, 0xba, 0x74, 0x65, 0x41, 0x62, 0xe5, 0x01, 0x18, 0x79, - 0x8c, 0x8e, 0x95, 0x58, 0x98, 0x10, 0x4a, 0x90, 0x78, 0x0d, 0xe4, 0xbb, 0x73, 0xd3, 0x2a, 0x6e, - 0xb2, 0x44, 0x77, 0xf9, 0x7e, 0xff, 0xbe, 0x9f, 0x0f, 0x7a, 0x79, 0x9a, 0x9d, 0xd4, 0x1f, 0x68, - 0x4d, 0xa8, 0x10, 0x4c, 0x0a, 0x52, 0x05, 0xe4, 0x74, 0xc6, 0xa6, 0x35, 0x2e, 0xa7, 0x5c, 0x72, - 0x84, 0xda, 0x39, 0xd6, 0x73, 0x5c, 0x05, 0xee, 0x0e, 0xcd, 0xd3, 0x82, 0x13, 0xf5, 0xab, 0x61, - 0xee, 0x6e, 0xc2, 0x13, 0xae, 0x8e, 0xa4, 0x39, 0x99, 0x7f, 0xf7, 0x12, 0xce, 0x93, 0x8c, 0x11, - 0x5a, 0xa6, 0x84, 0x16, 0x05, 0x97, 0x54, 0xa6, 0xbc, 0x10, 0x66, 0x3a, 0x9e, 0x70, 0x91, 0x73, - 0x41, 0x62, 0x2a, 0x98, 0xf6, 0x24, 0x55, 0x10, 0x33, 0x49, 0x03, 0x52, 0xd2, 0x24, 0x2d, 0x14, - 0xd8, 0x60, 0xf7, 0x3b, 0x62, 0xe6, 0xfc, 0x98, 0x65, 0x46, 0xcc, 0x97, 0x10, 0xbd, 0x6d, 0x24, - 0x9e, 0xab, 0x71, 0xc4, 0x4e, 0x67, 0x4c, 0x48, 0x74, 0x1f, 0x3a, 0x32, 0x9d, 0x9c, 0xb0, 0x69, - 0x1f, 0x0c, 0xc0, 0x68, 0x2b, 0x32, 0x37, 0xf4, 0x02, 0xc2, 0xa5, 0x45, 0xbf, 0x37, 0x00, 0xa3, - 0xed, 0x70, 0x88, 0x75, 0x1e, 0xdc, 0xe4, 0xc1, 0xba, 0x03, 0x93, 0x07, 0xbf, 0xa1, 0x09, 0x33, - 0x9a, 0xd1, 0x35, 0xa6, 0xff, 0x0d, 0xc0, 0x7b, 0x37, 0x6c, 0x45, 0xc9, 0x0b, 0xc1, 0xd0, 0x33, - 0xe8, 0xe8, 0x9c, 0x7d, 0x30, 0xb8, 0x33, 0xda, 0x0e, 0x1f, 0xe0, 0xd5, 0x1a, 0xb1, 0xe2, 0x1c, - 0x6d, 0x5d, 0xfc, 0xde, 0xb7, 0xbe, 0xff, 0xfb, 0x31, 0x06, 0x91, 0xe1, 0xa0, 0x97, 0x1d, 0xe9, - 0x0e, 0x36, 0xa6, 0xd3, 0xd6, 0x37, 0xe2, 0x3d, 0x86, 0x3b, 0xcb, 0x74, 0x6d, 0x27, 0xbb, 0xd0, - 0x3e, 0x66, 0x05, 0xcf, 0x4d, 0x25, 0xfa, 0xe2, 0xbf, 0xba, 0xde, 0xdf, 0xd5, 0x1e, 0x4f, 0xa1, - 0xad, 0x32, 0x29, 0xec, 0xda, 0x35, 0xee, 0x36, 0x6b, 0x44, 0x1a, 0x1d, 0x7e, 0xee, 0x41, 0x5b, - 0xa9, 0xa1, 0x33, 0xe8, 0xe8, 0x6a, 0xd0, 0xb0, 0x8b, 0xbb, 0xfa, 0xc9, 0xdc, 0x83, 0x8d, 0x38, - 0x9d, 0xcd, 0xf7, 0xcf, 0x7f, 0xfe, 0xfd, 0xda, 0xdb, 0x43, 0x2e, 0xe9, 0x78, 0x1b, 0xa6, 0xc9, - 0x73, 0x00, 0x6d, 0x45, 0x43, 0x8f, 0xd6, 0xcb, 0xb6, 0xee, 0xc3, 0x4d, 0x30, 0x63, 0x3e, 0x56, - 0xe6, 0x0f, 0x91, 0x7f, 0xbb, 0x39, 0xf9, 0xa4, 0x9a, 0x3d, 0x3b, 0x7a, 0x7d, 0x31, 0xf7, 0xc0, - 0xe5, 0xdc, 0x03, 0x7f, 0xe6, 0x1e, 0xf8, 0xb2, 0xf0, 0xac, 0xcb, 0x85, 0x67, 0xfd, 0x5a, 0x78, - 0xd6, 0xbb, 0xc3, 0x24, 0x95, 0xef, 0x67, 0x31, 0x9e, 0xf0, 0xfc, 0x4a, 0xe7, 0x49, 0x46, 0x63, - 0xb1, 0x54, 0xad, 0x42, 0xf2, 0xb1, 0x15, 0x94, 0x75, 0xc9, 0x44, 0xec, 0xa8, 0x07, 0x7f, 0xf8, - 0x3f, 0x00, 0x00, 0xff, 0xff, 0xf4, 0xf5, 0x0e, 0x7d, 0xba, 0x03, 0x00, 0x00, + 0x8c, 0x8e, 0x95, 0x58, 0x98, 0x10, 0x4a, 0x90, 0x78, 0x0d, 0xe4, 0xbb, 0x73, 0xd3, 0x28, 0x6e, + 0xb2, 0x44, 0x77, 0xf9, 0x7e, 0xff, 0xbe, 0x9f, 0x0f, 0x7a, 0x59, 0x92, 0x9e, 0x56, 0x1f, 0x68, + 0x45, 0xa8, 0x10, 0x4c, 0x0a, 0x52, 0x06, 0xe4, 0x6c, 0xc6, 0xa6, 0x15, 0x2e, 0xa6, 0x5c, 0x72, + 0x84, 0x9a, 0x39, 0xd6, 0x73, 0x5c, 0x06, 0xee, 0x1e, 0xcd, 0x92, 0x9c, 0x13, 0xf5, 0xab, 0x61, + 0xee, 0x7e, 0xcc, 0x63, 0xae, 0x8e, 0xa4, 0x3e, 0x99, 0x7f, 0x0f, 0x62, 0xce, 0xe3, 0x94, 0x11, + 0x5a, 0x24, 0x84, 0xe6, 0x39, 0x97, 0x54, 0x26, 0x3c, 0x17, 0x66, 0x3a, 0x9c, 0x70, 0x91, 0x71, + 0x41, 0x22, 0x2a, 0x98, 0xf6, 0x24, 0x65, 0x10, 0x31, 0x49, 0x03, 0x52, 0xd0, 0x38, 0xc9, 0x15, + 0xd8, 0x60, 0x0f, 0x5b, 0x62, 0x66, 0xfc, 0x84, 0xa5, 0x46, 0xcc, 0x97, 0x10, 0xbd, 0xad, 0x25, + 0x9e, 0xab, 0x71, 0xc8, 0xce, 0x66, 0x4c, 0x48, 0x74, 0x1f, 0x3a, 0x32, 0x99, 0x9c, 0xb2, 0x69, + 0x17, 0xf4, 0xc0, 0x60, 0x27, 0x34, 0x37, 0xf4, 0x02, 0xc2, 0xa5, 0x45, 0xb7, 0xd3, 0x03, 0x83, + 0xdd, 0x51, 0x1f, 0xeb, 0x3c, 0xb8, 0xce, 0x83, 0x75, 0x07, 0x26, 0x0f, 0x7e, 0x43, 0x63, 0x66, + 0x34, 0xc3, 0x1b, 0x4c, 0xff, 0x1b, 0x80, 0xf7, 0x56, 0x6c, 0x45, 0xc1, 0x73, 0xc1, 0xd0, 0x33, + 0xe8, 0xe8, 0x9c, 0x5d, 0xd0, 0xbb, 0x33, 0xd8, 0x1d, 0x3d, 0xc0, 0xeb, 0x35, 0x62, 0xc5, 0x39, + 0xde, 0xb9, 0xfc, 0x7d, 0x68, 0x7d, 0xff, 0xf7, 0x63, 0x08, 0x42, 0xc3, 0x41, 0x2f, 0x5b, 0xd2, + 0x1d, 0x6d, 0x4d, 0xa7, 0xad, 0x57, 0xe2, 0x3d, 0x86, 0x7b, 0xcb, 0x74, 0x4d, 0x27, 0xfb, 0xd0, + 0x3e, 0x61, 0x39, 0xcf, 0x4c, 0x25, 0xfa, 0xe2, 0xbf, 0xba, 0xd9, 0xdf, 0xf5, 0x1e, 0x4f, 0xa1, + 0xad, 0x32, 0x29, 0xec, 0xc6, 0x35, 0xee, 0xd6, 0x6b, 0x84, 0x1a, 0x3d, 0xfa, 0xdc, 0x81, 0xb6, + 0x52, 0x43, 0xe7, 0xd0, 0xd1, 0xd5, 0xa0, 0x7e, 0x1b, 0x77, 0xfd, 0x93, 0xb9, 0x47, 0x5b, 0x71, + 0x3a, 0x9b, 0xef, 0x5f, 0xfc, 0xfc, 0xfb, 0xb5, 0x73, 0x80, 0x5c, 0xd2, 0xf2, 0x36, 0x4c, 0x93, + 0x17, 0x00, 0xda, 0x8a, 0x86, 0x1e, 0x6d, 0x96, 0x6d, 0xdc, 0xfb, 0xdb, 0x60, 0xc6, 0x7c, 0xa8, + 0xcc, 0x1f, 0x22, 0xff, 0x76, 0x73, 0xf2, 0x49, 0x35, 0x7b, 0x7e, 0xfc, 0xfa, 0x72, 0xee, 0x81, + 0xab, 0xb9, 0x07, 0xfe, 0xcc, 0x3d, 0xf0, 0x65, 0xe1, 0x59, 0x57, 0x0b, 0xcf, 0xfa, 0xb5, 0xf0, + 0xac, 0x77, 0xe3, 0x38, 0x91, 0xef, 0x67, 0x11, 0x9e, 0xf0, 0xec, 0x5a, 0xe7, 0x49, 0x4a, 0x23, + 0xb1, 0x54, 0x2d, 0xc7, 0xe4, 0x63, 0x23, 0x28, 0xab, 0x82, 0x89, 0xc8, 0x51, 0x0f, 0x7e, 0xfc, + 0x3f, 0x00, 0x00, 0xff, 0xff, 0xd3, 0x90, 0x2b, 0xfc, 0xba, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/assets/types/ticker_test.go b/x/assets/types/ticker_test.go index e4432bcb..3cf9ae31 100644 --- a/x/assets/types/ticker_test.go +++ b/x/assets/types/ticker_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/milkyway-labs/milkyway/v2/x/assets/types" + "github.com/milkyway-labs/milkyway/v3/x/assets/types" ) func TestValidateTicker(t *testing.T) { diff --git a/x/genutil/client/cli/init.go b/x/genutil/client/cli/init.go index d28c1e38..307e1ddb 100644 --- a/x/genutil/client/cli/init.go +++ b/x/genutil/client/cli/init.go @@ -25,7 +25,7 @@ import ( "github.com/cosmos/go-bip39" "github.com/spf13/cobra" - milkywayapp "github.com/milkyway-labs/milkyway/v2/app" + milkywayapp "github.com/milkyway-labs/milkyway/v3/app" ) type printInfo struct { diff --git a/x/liquidvesting/abci.go b/x/liquidvesting/abci.go index 8b877bf2..840773c4 100644 --- a/x/liquidvesting/abci.go +++ b/x/liquidvesting/abci.go @@ -6,8 +6,8 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/keeper" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/keeper" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types" ) // EndBlocker is called every block and is responsible for maturing unbonding delegations diff --git a/x/liquidvesting/autocli.go b/x/liquidvesting/autocli.go index 4a297c26..297dc56c 100644 --- a/x/liquidvesting/autocli.go +++ b/x/liquidvesting/autocli.go @@ -6,7 +6,7 @@ import ( autocliv1 "cosmossdk.io/api/cosmos/autocli/v1" "github.com/cosmos/cosmos-sdk/version" - liquidvestingv1 "github.com/milkyway-labs/milkyway/v2/api/milkyway/liquidvesting/v1" + liquidvestingv1 "github.com/milkyway-labs/milkyway/v3/api/milkyway/liquidvesting/v1" ) // AutoCLIOptions implements the autocli.HasAutoCLIConfig interface. diff --git a/x/liquidvesting/ibc_module.go b/x/liquidvesting/ibc_module.go index 47fe2d23..81f0fb0b 100644 --- a/x/liquidvesting/ibc_module.go +++ b/x/liquidvesting/ibc_module.go @@ -11,9 +11,9 @@ import ( porttypes "github.com/cosmos/ibc-go/v8/modules/core/05-port/types" ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" - "github.com/milkyway-labs/milkyway/v2/utils" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/keeper" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types" + "github.com/milkyway-labs/milkyway/v3/utils" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/keeper" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types" ) type IBCModule struct { diff --git a/x/liquidvesting/keeper/alias_functions.go b/x/liquidvesting/keeper/alias_functions.go index e3d09d92..1b659b28 100644 --- a/x/liquidvesting/keeper/alias_functions.go +++ b/x/liquidvesting/keeper/alias_functions.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types" ) func (k *Keeper) GetAllUsersInsuranceFundsEntries(ctx sdk.Context) ([]types.UserInsuranceFundEntry, error) { diff --git a/x/liquidvesting/keeper/alias_functions_test.go b/x/liquidvesting/keeper/alias_functions_test.go index 17de0654..a4568128 100644 --- a/x/liquidvesting/keeper/alias_functions_test.go +++ b/x/liquidvesting/keeper/alias_functions_test.go @@ -3,11 +3,11 @@ package keeper_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - poolstypes "github.com/milkyway-labs/milkyway/v2/x/pools/types" - restakingkeeper "github.com/milkyway-labs/milkyway/v2/x/restaking/keeper" - restakingtypes "github.com/milkyway-labs/milkyway/v2/x/restaking/types" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + poolstypes "github.com/milkyway-labs/milkyway/v3/x/pools/types" + restakingkeeper "github.com/milkyway-labs/milkyway/v3/x/restaking/keeper" + restakingtypes "github.com/milkyway-labs/milkyway/v3/x/restaking/types" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) func (suite *KeeperTestSuite) TestKeeper_GetAllUserRestakedLockedRepresentations() { diff --git a/x/liquidvesting/keeper/burn.go b/x/liquidvesting/keeper/burn.go index 40d08256..9351248e 100644 --- a/x/liquidvesting/keeper/burn.go +++ b/x/liquidvesting/keeper/burn.go @@ -11,7 +11,7 @@ import ( "github.com/cosmos/cosmos-sdk/runtime" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types" ) // IsBurner tells if a user have the permissions to burn tokens diff --git a/x/liquidvesting/keeper/burn_test.go b/x/liquidvesting/keeper/burn_test.go index 8fc0e2f8..e1eb4e66 100644 --- a/x/liquidvesting/keeper/burn_test.go +++ b/x/liquidvesting/keeper/burn_test.go @@ -4,7 +4,7 @@ import ( "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types" ) func (suite *KeeperTestSuite) TestKeeper_TestBurn() { diff --git a/x/liquidvesting/keeper/common_test.go b/x/liquidvesting/keeper/common_test.go index 631c151b..5f575831 100644 --- a/x/liquidvesting/keeper/common_test.go +++ b/x/liquidvesting/keeper/common_test.go @@ -17,16 +17,16 @@ import ( ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" "github.com/stretchr/testify/suite" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/keeper" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/testutils" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types" - operatorskeeper "github.com/milkyway-labs/milkyway/v2/x/operators/keeper" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - poolskeeper "github.com/milkyway-labs/milkyway/v2/x/pools/keeper" - poolstypes "github.com/milkyway-labs/milkyway/v2/x/pools/types" - restakingkeeper "github.com/milkyway-labs/milkyway/v2/x/restaking/keeper" - serviceskeeper "github.com/milkyway-labs/milkyway/v2/x/services/keeper" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/keeper" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/testutils" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types" + operatorskeeper "github.com/milkyway-labs/milkyway/v3/x/operators/keeper" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + poolskeeper "github.com/milkyway-labs/milkyway/v3/x/pools/keeper" + poolstypes "github.com/milkyway-labs/milkyway/v3/x/pools/types" + restakingkeeper "github.com/milkyway-labs/milkyway/v3/x/restaking/keeper" + serviceskeeper "github.com/milkyway-labs/milkyway/v3/x/services/keeper" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) const ( diff --git a/x/liquidvesting/keeper/end_blocker.go b/x/liquidvesting/keeper/end_blocker.go index fb6a5aa2..1f41f480 100644 --- a/x/liquidvesting/keeper/end_blocker.go +++ b/x/liquidvesting/keeper/end_blocker.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types" ) // CompleteBurnCoins runs the endblocker logic to burn the coins after the diff --git a/x/liquidvesting/keeper/end_blocker_test.go b/x/liquidvesting/keeper/end_blocker_test.go index 34026ff8..d07aefb4 100644 --- a/x/liquidvesting/keeper/end_blocker_test.go +++ b/x/liquidvesting/keeper/end_blocker_test.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types" - restakingtypes "github.com/milkyway-labs/milkyway/v2/x/restaking/types" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types" + restakingtypes "github.com/milkyway-labs/milkyway/v3/x/restaking/types" ) func (suite *KeeperTestSuite) TestKeeper_EndBlocker() { diff --git a/x/liquidvesting/keeper/genesis.go b/x/liquidvesting/keeper/genesis.go index ec041d32..cc392661 100644 --- a/x/liquidvesting/keeper/genesis.go +++ b/x/liquidvesting/keeper/genesis.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types" ) // ExportGenesis returns the GenesisState associated with the given context diff --git a/x/liquidvesting/keeper/genesis_test.go b/x/liquidvesting/keeper/genesis_test.go index 0e6ab008..169054d8 100644 --- a/x/liquidvesting/keeper/genesis_test.go +++ b/x/liquidvesting/keeper/genesis_test.go @@ -6,9 +6,9 @@ import ( "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types" - poolstypes "github.com/milkyway-labs/milkyway/v2/x/pools/types" - restakingtypes "github.com/milkyway-labs/milkyway/v2/x/restaking/types" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types" + poolstypes "github.com/milkyway-labs/milkyway/v3/x/pools/types" + restakingtypes "github.com/milkyway-labs/milkyway/v3/x/restaking/types" ) func (suite *KeeperTestSuite) TestKeeper_ExportGenesis() { diff --git a/x/liquidvesting/keeper/grpc_query.go b/x/liquidvesting/keeper/grpc_query.go index d232925f..f097540e 100644 --- a/x/liquidvesting/keeper/grpc_query.go +++ b/x/liquidvesting/keeper/grpc_query.go @@ -9,7 +9,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types" ) type Querier struct { diff --git a/x/liquidvesting/keeper/grpc_query_test.go b/x/liquidvesting/keeper/grpc_query_test.go index 6473d43c..71258b33 100644 --- a/x/liquidvesting/keeper/grpc_query_test.go +++ b/x/liquidvesting/keeper/grpc_query_test.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/keeper" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/keeper" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types" ) func (suite *KeeperTestSuite) TestQuerier_InsuranceFund() { diff --git a/x/liquidvesting/keeper/ibc.go b/x/liquidvesting/keeper/ibc.go index 2820bef8..37694631 100644 --- a/x/liquidvesting/keeper/ibc.go +++ b/x/liquidvesting/keeper/ibc.go @@ -9,7 +9,7 @@ import ( transfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types" ) // OnRecvPacket processes the packet received from the IBC handler diff --git a/x/liquidvesting/keeper/ibc_test.go b/x/liquidvesting/keeper/ibc_test.go index bde1451e..deed296d 100644 --- a/x/liquidvesting/keeper/ibc_test.go +++ b/x/liquidvesting/keeper/ibc_test.go @@ -6,7 +6,7 @@ import ( sdkmath "cosmossdk.io/math" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types" sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" diff --git a/x/liquidvesting/keeper/insurance_fund.go b/x/liquidvesting/keeper/insurance_fund.go index e75c0ed7..7509ed27 100644 --- a/x/liquidvesting/keeper/insurance_fund.go +++ b/x/liquidvesting/keeper/insurance_fund.go @@ -8,7 +8,7 @@ import ( "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types" ) // AddToUserInsuranceFund adds the provided amount to the user's insurance fund. diff --git a/x/liquidvesting/keeper/insurance_fund_test.go b/x/liquidvesting/keeper/insurance_fund_test.go index 44f47eef..dbbf6183 100644 --- a/x/liquidvesting/keeper/insurance_fund_test.go +++ b/x/liquidvesting/keeper/insurance_fund_test.go @@ -4,10 +4,10 @@ import ( "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types" - poolstypes "github.com/milkyway-labs/milkyway/v2/x/pools/types" - restakingkeeper "github.com/milkyway-labs/milkyway/v2/x/restaking/keeper" - restakingtypes "github.com/milkyway-labs/milkyway/v2/x/restaking/types" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types" + poolstypes "github.com/milkyway-labs/milkyway/v3/x/pools/types" + restakingkeeper "github.com/milkyway-labs/milkyway/v3/x/restaking/keeper" + restakingtypes "github.com/milkyway-labs/milkyway/v3/x/restaking/types" ) func (suite *KeeperTestSuite) TestKeeper_AddToInsuranceFund() { diff --git a/x/liquidvesting/keeper/keeper.go b/x/liquidvesting/keeper/keeper.go index 179b527f..98dcc606 100644 --- a/x/liquidvesting/keeper/keeper.go +++ b/x/liquidvesting/keeper/keeper.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types" ) type Keeper struct { diff --git a/x/liquidvesting/keeper/mint.go b/x/liquidvesting/keeper/mint.go index 18ddc920..1393dbe6 100644 --- a/x/liquidvesting/keeper/mint.go +++ b/x/liquidvesting/keeper/mint.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types" ) // IsMinter tells if a user have the permissions to mint tokens. diff --git a/x/liquidvesting/keeper/mint_test.go b/x/liquidvesting/keeper/mint_test.go index 409fc14a..1af35686 100644 --- a/x/liquidvesting/keeper/mint_test.go +++ b/x/liquidvesting/keeper/mint_test.go @@ -3,7 +3,7 @@ package keeper_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types" ) func (suite *KeeperTestSuite) TestKeeper_MintLockedRepresentation() { diff --git a/x/liquidvesting/keeper/msg_server.go b/x/liquidvesting/keeper/msg_server.go index 599f3a06..4cfd67e0 100644 --- a/x/liquidvesting/keeper/msg_server.go +++ b/x/liquidvesting/keeper/msg_server.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types" ) var _ types.MsgServer = msgServer{} diff --git a/x/liquidvesting/keeper/msg_server_test.go b/x/liquidvesting/keeper/msg_server_test.go index 6d451b23..ed82a2b7 100644 --- a/x/liquidvesting/keeper/msg_server_test.go +++ b/x/liquidvesting/keeper/msg_server_test.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/keeper" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/keeper" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types" ) func (suite *KeeperTestSuite) TestMsgServer_MintLockedRepresentation() { diff --git a/x/liquidvesting/keeper/params.go b/x/liquidvesting/keeper/params.go index b37ffaf3..0545dbbd 100644 --- a/x/liquidvesting/keeper/params.go +++ b/x/liquidvesting/keeper/params.go @@ -6,7 +6,7 @@ import ( "cosmossdk.io/collections" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types" ) func (k *Keeper) SetParams(ctx context.Context, params types.Params) error { diff --git a/x/liquidvesting/keeper/restake_restriction.go b/x/liquidvesting/keeper/restake_restriction.go index 301a8190..2aba1b4e 100644 --- a/x/liquidvesting/keeper/restake_restriction.go +++ b/x/liquidvesting/keeper/restake_restriction.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types" - restakingtypes "github.com/milkyway-labs/milkyway/v2/x/restaking/types" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types" + restakingtypes "github.com/milkyway-labs/milkyway/v3/x/restaking/types" ) func (k *Keeper) RestakeRestrictionFn(ctx context.Context, restakerAddress string, amount sdk.Coins, _ restakingtypes.DelegationTarget) error { diff --git a/x/liquidvesting/keeper/restake_restriction_test.go b/x/liquidvesting/keeper/restake_restriction_test.go index 9f5f2908..abd3cb5a 100644 --- a/x/liquidvesting/keeper/restake_restriction_test.go +++ b/x/liquidvesting/keeper/restake_restriction_test.go @@ -3,8 +3,8 @@ package keeper_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - restakingkeeper "github.com/milkyway-labs/milkyway/v2/x/restaking/keeper" - restakingtypes "github.com/milkyway-labs/milkyway/v2/x/restaking/types" + restakingkeeper "github.com/milkyway-labs/milkyway/v3/x/restaking/keeper" + restakingtypes "github.com/milkyway-labs/milkyway/v3/x/restaking/types" ) func (suite *KeeperTestSuite) TestRestakeRestriction_TestPoolRestaking() { diff --git a/x/liquidvesting/keeper/send_restriction.go b/x/liquidvesting/keeper/send_restriction.go index 16f8db75..8fecb8b7 100644 --- a/x/liquidvesting/keeper/send_restriction.go +++ b/x/liquidvesting/keeper/send_restriction.go @@ -6,7 +6,7 @@ import ( "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types" ) // SendRestrictionFn function that can be used in the x/bank module to block the diff --git a/x/liquidvesting/keeper/send_restriction_test.go b/x/liquidvesting/keeper/send_restriction_test.go index 6a2be922..99183a4e 100644 --- a/x/liquidvesting/keeper/send_restriction_test.go +++ b/x/liquidvesting/keeper/send_restriction_test.go @@ -6,11 +6,11 @@ import ( bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types" - liquidvestingtypes "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - poolstypes "github.com/milkyway-labs/milkyway/v2/x/pools/types" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types" + liquidvestingtypes "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + poolstypes "github.com/milkyway-labs/milkyway/v3/x/pools/types" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) func MustGetLockedDenom(denom string) string { diff --git a/x/liquidvesting/module.go b/x/liquidvesting/module.go index b5616f2c..f1bcd955 100644 --- a/x/liquidvesting/module.go +++ b/x/liquidvesting/module.go @@ -13,8 +13,8 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" "github.com/grpc-ecosystem/grpc-gateway/runtime" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/keeper" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/keeper" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types" ) const ( diff --git a/x/liquidvesting/testutils/keeper.go b/x/liquidvesting/testutils/keeper.go index ef15588e..9791c1a9 100644 --- a/x/liquidvesting/testutils/keeper.go +++ b/x/liquidvesting/testutils/keeper.go @@ -12,18 +12,18 @@ import ( stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" porttypes "github.com/cosmos/ibc-go/v8/modules/core/05-port/types" - "github.com/milkyway-labs/milkyway/v2/testutils/storetesting" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/keeper" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types" - operatorskeeper "github.com/milkyway-labs/milkyway/v2/x/operators/keeper" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - poolskeeper "github.com/milkyway-labs/milkyway/v2/x/pools/keeper" - poolstypes "github.com/milkyway-labs/milkyway/v2/x/pools/types" - restakingkeeper "github.com/milkyway-labs/milkyway/v2/x/restaking/keeper" - restakingtypes "github.com/milkyway-labs/milkyway/v2/x/restaking/types" - serviceskeeper "github.com/milkyway-labs/milkyway/v2/x/services/keeper" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/testutils/storetesting" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/keeper" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types" + operatorskeeper "github.com/milkyway-labs/milkyway/v3/x/operators/keeper" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + poolskeeper "github.com/milkyway-labs/milkyway/v3/x/pools/keeper" + poolstypes "github.com/milkyway-labs/milkyway/v3/x/pools/types" + restakingkeeper "github.com/milkyway-labs/milkyway/v3/x/restaking/keeper" + restakingtypes "github.com/milkyway-labs/milkyway/v3/x/restaking/types" + serviceskeeper "github.com/milkyway-labs/milkyway/v3/x/services/keeper" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) type KeeperTestData struct { diff --git a/x/liquidvesting/types/expected_keepers.go b/x/liquidvesting/types/expected_keepers.go index a4b6ced2..6b50d419 100644 --- a/x/liquidvesting/types/expected_keepers.go +++ b/x/liquidvesting/types/expected_keepers.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - restakingtypes "github.com/milkyway-labs/milkyway/v2/x/restaking/types" + restakingtypes "github.com/milkyway-labs/milkyway/v3/x/restaking/types" ) type AccountKeeper interface { diff --git a/x/liquidvesting/types/genesis.pb.go b/x/liquidvesting/types/genesis.pb.go index 6ab14e94..89d2ef2a 100644 --- a/x/liquidvesting/types/genesis.pb.go +++ b/x/liquidvesting/types/genesis.pb.go @@ -98,28 +98,28 @@ func init() { } var fileDescriptor_ec377133c71b10fb = []byte{ - // 329 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x90, 0xbd, 0x4e, 0xf3, 0x30, - 0x14, 0x86, 0x93, 0xf6, 0x53, 0xa5, 0x2f, 0x65, 0x8a, 0x3a, 0x94, 0x0e, 0x69, 0x41, 0x08, 0xba, - 0x10, 0xab, 0x65, 0x63, 0x41, 0x2a, 0x02, 0xd4, 0x0d, 0xf1, 0xb3, 0xb0, 0x54, 0x76, 0xe3, 0x1a, - 0x8b, 0xd8, 0x0e, 0x3e, 0x76, 0x20, 0x17, 0xc0, 0xce, 0x65, 0x75, 0xec, 0xc8, 0x84, 0x50, 0x7b, - 0x23, 0xa8, 0x69, 0x82, 0x44, 0xa5, 0x96, 0x2d, 0x27, 0x7e, 0xde, 0xe7, 0xb5, 0x8f, 0x77, 0x24, - 0x78, 0xfc, 0x94, 0xbd, 0xe0, 0x0c, 0xc5, 0xfc, 0xd9, 0xf2, 0x28, 0xa5, 0x60, 0xb8, 0x64, 0x28, - 0xed, 0x21, 0x46, 0x25, 0x05, 0x0e, 0x61, 0xa2, 0x95, 0x51, 0xfe, 0x6e, 0x09, 0x86, 0xbf, 0xc0, - 0x30, 0xed, 0xb5, 0x1a, 0x4c, 0x31, 0x95, 0x53, 0x68, 0xf9, 0xb5, 0x0a, 0xb4, 0xda, 0x4c, 0x29, - 0x16, 0x53, 0x94, 0x4f, 0xc4, 0x4e, 0x90, 0xe1, 0x82, 0x82, 0xc1, 0x22, 0x29, 0x80, 0xc3, 0xcd, - 0xd5, 0x09, 0xd6, 0x58, 0xc0, 0xdf, 0x9c, 0x50, 0x11, 0x8d, 0x0b, 0x6e, 0xff, 0xad, 0xe2, 0xed, - 0x5c, 0xad, 0xee, 0x7c, 0x6b, 0xb0, 0xa1, 0xfe, 0x99, 0x57, 0x5b, 0x89, 0x9a, 0x6e, 0xc7, 0xed, - 0xd6, 0xfb, 0x7b, 0xe1, 0xc6, 0x37, 0x84, 0xd7, 0x39, 0x38, 0xf8, 0x37, 0xfd, 0x6c, 0x3b, 0x37, - 0x45, 0xcc, 0x1f, 0x7a, 0x1e, 0xb1, 0x5a, 0x8e, 0xc6, 0x8a, 0x4b, 0x68, 0x56, 0x3a, 0xd5, 0x6e, - 0xbd, 0x7f, 0xb0, 0x45, 0x32, 0xb0, 0x5a, 0x9e, 0x2f, 0xd9, 0xc2, 0xf3, 0x9f, 0x94, 0x3f, 0x7c, - 0xee, 0x35, 0x2c, 0x50, 0x3d, 0xe2, 0x12, 0xac, 0xc6, 0x72, 0x4c, 0x47, 0x13, 0x2b, 0x23, 0x68, - 0x56, 0x73, 0x69, 0x6f, 0x8b, 0xf4, 0x1e, 0xa8, 0x1e, 0x96, 0xa9, 0x4b, 0x2b, 0xa3, 0x0b, 0x69, - 0x74, 0x56, 0x34, 0xf8, 0x76, 0xfd, 0x14, 0x06, 0x77, 0xd3, 0x79, 0xe0, 0xce, 0xe6, 0x81, 0xfb, - 0x35, 0x0f, 0xdc, 0xf7, 0x45, 0xe0, 0xcc, 0x16, 0x81, 0xf3, 0xb1, 0x08, 0x9c, 0x87, 0x53, 0xc6, - 0xcd, 0xa3, 0x25, 0xe1, 0x58, 0x09, 0x54, 0x16, 0x1e, 0xc7, 0x98, 0xc0, 0xcf, 0x84, 0xd2, 0x3e, - 0x7a, 0x5d, 0xdb, 0xb3, 0xc9, 0x12, 0x0a, 0xa4, 0x96, 0x2f, 0xf9, 0xe4, 0x3b, 0x00, 0x00, 0xff, - 0xff, 0xec, 0x8c, 0x45, 0x42, 0x31, 0x02, 0x00, 0x00, + // 328 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x90, 0x3d, 0x4f, 0xc2, 0x40, + 0x18, 0xc7, 0x5b, 0x30, 0x24, 0x16, 0xa7, 0x86, 0x01, 0x19, 0x0a, 0x1a, 0xa3, 0x2c, 0xf6, 0x02, + 0x6c, 0x2e, 0x26, 0x18, 0x35, 0x6c, 0xc6, 0x97, 0xc5, 0x85, 0x5c, 0xe9, 0x71, 0x5e, 0xec, 0xdd, + 0xd5, 0x7b, 0xee, 0xaa, 0xfd, 0x00, 0xee, 0x7e, 0x2c, 0x46, 0x46, 0x27, 0x63, 0xe0, 0x8b, 0x18, + 0xfa, 0x62, 0x22, 0x09, 0xb8, 0xf5, 0xe9, 0xfd, 0xfe, 0xbf, 0xff, 0xdd, 0xe3, 0x9c, 0x70, 0x16, + 0x3d, 0xa7, 0xaf, 0x38, 0x45, 0x11, 0x7b, 0x31, 0x2c, 0x4c, 0x08, 0x68, 0x26, 0x28, 0x4a, 0x7a, + 0x88, 0x12, 0x41, 0x80, 0x81, 0x1f, 0x2b, 0xa9, 0xa5, 0xbb, 0x5f, 0x82, 0xfe, 0x1f, 0xd0, 0x4f, + 0x7a, 0xad, 0x06, 0x95, 0x54, 0x66, 0x14, 0x5a, 0x7d, 0xe5, 0x81, 0x56, 0x9b, 0x4a, 0x49, 0x23, + 0x82, 0xb2, 0x29, 0x30, 0x53, 0xa4, 0x19, 0x27, 0xa0, 0x31, 0x8f, 0x0b, 0xe0, 0x78, 0x73, 0x75, + 0x8c, 0x15, 0xe6, 0xf0, 0x3f, 0xc7, 0x65, 0x48, 0xa2, 0x82, 0x3b, 0x7c, 0xaf, 0x38, 0x7b, 0xd7, + 0xf9, 0x9d, 0xef, 0x34, 0xd6, 0xc4, 0x3d, 0x77, 0x6a, 0xb9, 0xa8, 0x69, 0x77, 0xec, 0x6e, 0xbd, + 0x7f, 0xe0, 0x6f, 0x7c, 0x83, 0x7f, 0x93, 0x81, 0xc3, 0x9d, 0xd9, 0x57, 0xdb, 0xba, 0x2d, 0x62, + 0xee, 0xc8, 0x71, 0x02, 0xa3, 0xc4, 0x78, 0x22, 0x99, 0x80, 0x66, 0xa5, 0x53, 0xed, 0xd6, 0xfb, + 0x47, 0x5b, 0x24, 0x43, 0xa3, 0xc4, 0xc5, 0x8a, 0x2d, 0x3c, 0xbb, 0x41, 0xf9, 0xc3, 0x65, 0x4e, + 0xc3, 0x00, 0x51, 0x63, 0x26, 0xc0, 0x28, 0x2c, 0x26, 0x64, 0x3c, 0x35, 0x22, 0x84, 0x66, 0x35, + 0x93, 0xf6, 0xb6, 0x48, 0x1f, 0x80, 0xa8, 0x51, 0x99, 0xba, 0x32, 0x22, 0xbc, 0x14, 0x5a, 0xa5, + 0x45, 0x83, 0x6b, 0xd6, 0x4f, 0x61, 0x78, 0x3f, 0x5b, 0x78, 0xf6, 0x7c, 0xe1, 0xd9, 0xdf, 0x0b, + 0xcf, 0xfe, 0x58, 0x7a, 0xd6, 0x7c, 0xe9, 0x59, 0x9f, 0x4b, 0xcf, 0x7a, 0x3c, 0xa3, 0x4c, 0x3f, + 0x99, 0xc0, 0x9f, 0x48, 0x8e, 0xca, 0xc2, 0xd3, 0x08, 0x07, 0xf0, 0x3b, 0xa1, 0x64, 0x80, 0xde, + 0xd6, 0xf6, 0xac, 0xd3, 0x98, 0x40, 0x50, 0xcb, 0x96, 0x3c, 0xf8, 0x09, 0x00, 0x00, 0xff, 0xff, + 0x3d, 0x64, 0xa2, 0x4c, 0x31, 0x02, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/liquidvesting/types/ibc_hooks_test.go b/x/liquidvesting/types/ibc_hooks_test.go index 4f8d724b..5f3bef1e 100644 --- a/x/liquidvesting/types/ibc_hooks_test.go +++ b/x/liquidvesting/types/ibc_hooks_test.go @@ -6,7 +6,7 @@ import ( "cosmossdk.io/math" "github.com/stretchr/testify/require" - "github.com/milkyway-labs/milkyway/v2/x/liquidvesting/types" + "github.com/milkyway-labs/milkyway/v3/x/liquidvesting/types" ) func TestMsgDepositInsurance_Validate(t *testing.T) { diff --git a/x/liquidvesting/types/messages.pb.go b/x/liquidvesting/types/messages.pb.go index bb543559..37b3a9c7 100644 --- a/x/liquidvesting/types/messages.pb.go +++ b/x/liquidvesting/types/messages.pb.go @@ -487,9 +487,9 @@ var fileDescriptor_464962308475a38f = []byte{ 0x43, 0xb3, 0xc7, 0x1e, 0x6c, 0x29, 0x3d, 0xd8, 0x51, 0xdf, 0x42, 0xe5, 0xf4, 0xbe, 0x83, 0x7c, 0x85, 0xff, 0x5e, 0xf4, 0x7b, 0x25, 0xa5, 0xf6, 0x68, 0x67, 0x5f, 0x53, 0x76, 0xf7, 0x35, 0xe5, 0xc7, 0xbe, 0xa6, 0xbc, 0x39, 0xd0, 0x32, 0xbb, 0x07, 0x5a, 0xe6, 0xeb, 0x81, 0x96, 0x79, 0x5a, - 0x3d, 0x32, 0xdf, 0x83, 0xf0, 0x2b, 0x2d, 0xdc, 0x84, 0xf8, 0x64, 0x76, 0x2a, 0xe6, 0xf3, 0xa1, - 0xf7, 0x1a, 0xce, 0x7d, 0x33, 0x1b, 0xfe, 0xa5, 0xae, 0xfe, 0x0e, 0x00, 0x00, 0xff, 0xff, 0x98, - 0xfe, 0x3c, 0x95, 0x3e, 0x08, 0x00, 0x00, + 0x3d, 0x32, 0xdf, 0x83, 0xf0, 0x2b, 0x2d, 0xdc, 0x84, 0xf8, 0x64, 0x76, 0x56, 0xcd, 0xe7, 0x43, + 0xef, 0x35, 0x9c, 0xfb, 0x66, 0x36, 0xfc, 0x4b, 0x5d, 0xfd, 0x1d, 0x00, 0x00, 0xff, 0xff, 0x49, + 0x16, 0xdb, 0x9b, 0x3e, 0x08, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/liquidvesting/types/models.pb.go b/x/liquidvesting/types/models.pb.go index cd97516a..e3b5612c 100644 --- a/x/liquidvesting/types/models.pb.go +++ b/x/liquidvesting/types/models.pb.go @@ -237,36 +237,36 @@ var fileDescriptor_2106835df08f3d44 = []byte{ // 506 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x53, 0x31, 0x8f, 0xd3, 0x30, 0x14, 0x8e, 0x7b, 0xe8, 0xa0, 0x2e, 0x07, 0x34, 0x3a, 0xa1, 0xb4, 0x43, 0x52, 0x55, 0x08, 0x55, - 0x48, 0xb5, 0x69, 0xd9, 0x8e, 0x89, 0x9c, 0x0e, 0x09, 0x89, 0xa9, 0x94, 0x85, 0xa5, 0x72, 0x12, - 0x13, 0xac, 0x8b, 0xed, 0x12, 0x3b, 0x81, 0xf2, 0x0b, 0x18, 0x6f, 0x61, 0xbf, 0x11, 0x31, 0x31, - 0x30, 0xf2, 0x03, 0x6e, 0x3c, 0x31, 0x31, 0x71, 0xa8, 0x1d, 0xe0, 0x67, 0xa0, 0x24, 0x4e, 0x29, - 0x20, 0x24, 0x06, 0x6e, 0x49, 0xfc, 0x9e, 0xbf, 0xef, 0x7b, 0xcf, 0x9f, 0x9f, 0xe1, 0x4d, 0xce, - 0x92, 0xc3, 0xc5, 0x0b, 0xb2, 0xc0, 0x09, 0x7b, 0x9e, 0xb1, 0x28, 0xa7, 0x4a, 0x33, 0x11, 0xe3, - 0x7c, 0x84, 0xb9, 0x8c, 0x68, 0xa2, 0xd0, 0x3c, 0x95, 0x5a, 0xda, 0x9d, 0x1a, 0x87, 0x7e, 0xc1, - 0xa1, 0x7c, 0xd4, 0x75, 0x43, 0xa9, 0xb8, 0x54, 0x38, 0x20, 0x8a, 0xe2, 0x7c, 0x14, 0x50, 0x4d, - 0x46, 0x38, 0x94, 0x4c, 0x54, 0xd4, 0xee, 0x6e, 0x2c, 0x63, 0x59, 0x2e, 0x71, 0xb1, 0x32, 0x59, - 0x2f, 0x96, 0x32, 0x4e, 0x28, 0x2e, 0xa3, 0x20, 0x7b, 0x8a, 0x35, 0xe3, 0x54, 0x69, 0xc2, 0xe7, - 0x06, 0xd0, 0x26, 0x9c, 0x09, 0x89, 0xcb, 0xaf, 0x49, 0x75, 0xaa, 0x4a, 0xb3, 0x4a, 0xac, 0x0a, - 0xaa, 0xad, 0xfe, 0x2b, 0xd8, 0x7e, 0xac, 0x68, 0xfa, 0x40, 0xa8, 0x2c, 0x25, 0x22, 0xa4, 0xf7, - 0x33, 0x11, 0xd9, 0x14, 0x5e, 0x0c, 0x48, 0x52, 0x84, 0x0e, 0xe8, 0x6d, 0x0d, 0x5a, 0xe3, 0x0e, - 0x32, 0xa4, 0xa2, 0x57, 0x64, 0x7a, 0x45, 0xfb, 0x92, 0x09, 0xff, 0xf6, 0xc9, 0x17, 0xcf, 0x7a, - 0x77, 0xe6, 0x0d, 0x62, 0xa6, 0x9f, 0x65, 0x01, 0x0a, 0x25, 0x37, 0x15, 0xcc, 0x6f, 0xa8, 0xa2, - 0x43, 0xac, 0x17, 0x73, 0xaa, 0x4a, 0x82, 0x9a, 0xd4, 0xda, 0xfd, 0x37, 0x0d, 0xd8, 0xf4, 0xb3, - 0x54, 0x94, 0x69, 0xfb, 0x00, 0xb6, 0x23, 0x9a, 0xd0, 0x98, 0x68, 0x99, 0xce, 0x48, 0x14, 0xa5, - 0x54, 0x29, 0x07, 0xf4, 0xc0, 0xa0, 0xe9, 0x3b, 0x9f, 0x3e, 0x0c, 0x77, 0x4d, 0x07, 0xf7, 0xaa, - 0x9d, 0x47, 0x3a, 0x65, 0x22, 0x9e, 0x5c, 0x5b, 0x53, 0x4c, 0xde, 0x9e, 0xc0, 0xab, 0xa1, 0xe4, - 0xf3, 0x84, 0x6a, 0x26, 0xc5, 0xac, 0x30, 0xc7, 0x69, 0xf4, 0xc0, 0xa0, 0x35, 0xee, 0xa2, 0xca, - 0x39, 0x54, 0x3b, 0x87, 0xa6, 0xb5, 0x73, 0xfe, 0x4e, 0x71, 0x88, 0xa3, 0x33, 0x0f, 0xbc, 0xfd, - 0xf6, 0xfe, 0x16, 0x98, 0x5c, 0xf9, 0xa9, 0x50, 0x60, 0xec, 0x10, 0x6e, 0x13, 0x2e, 0x33, 0xa1, - 0x9d, 0xad, 0xff, 0x6f, 0x87, 0x91, 0xde, 0xbb, 0xf4, 0xfa, 0xd8, 0xb3, 0xbe, 0x1f, 0x7b, 0x56, - 0x7f, 0x0a, 0x77, 0xd6, 0xb6, 0x3c, 0x64, 0x4a, 0xdb, 0xfb, 0xf0, 0x42, 0x44, 0x34, 0x31, 0x97, - 0x71, 0x03, 0xfd, 0x75, 0xa6, 0xd0, 0x9a, 0xe7, 0x37, 0x8b, 0x46, 0xaa, 0xe3, 0x94, 0xe4, 0xfe, - 0x47, 0x00, 0xaf, 0xff, 0x71, 0xd5, 0x07, 0x42, 0xa7, 0x0b, 0xfb, 0x2e, 0xbc, 0x9c, 0x29, 0xfa, - 0xef, 0xae, 0xb7, 0x0a, 0x74, 0x6d, 0xf8, 0xc6, 0xb0, 0x34, 0xce, 0x6f, 0x58, 0xfc, 0xe9, 0xc9, - 0xd2, 0x05, 0xa7, 0x4b, 0x17, 0x7c, 0x5d, 0xba, 0xe0, 0x68, 0xe5, 0x5a, 0xa7, 0x2b, 0xd7, 0xfa, - 0xbc, 0x72, 0xad, 0x27, 0x7b, 0x1b, 0x62, 0xb5, 0x33, 0xc3, 0x84, 0x04, 0x6a, 0x1d, 0xe1, 0x7c, - 0x8c, 0x5f, 0xfe, 0xf6, 0x50, 0xcb, 0x22, 0xc1, 0x76, 0x39, 0x0c, 0x77, 0x7e, 0x04, 0x00, 0x00, - 0xff, 0xff, 0xb9, 0x1b, 0xe9, 0xd0, 0xcf, 0x03, 0x00, 0x00, + 0x48, 0xb5, 0xe9, 0xdd, 0x76, 0x4c, 0xe4, 0x74, 0x48, 0x48, 0x4c, 0xa5, 0x2c, 0x2c, 0x95, 0x93, + 0x98, 0x60, 0x5d, 0x6c, 0x97, 0xd8, 0x09, 0x94, 0x5f, 0xc0, 0x78, 0x0b, 0xfb, 0x8d, 0x88, 0x89, + 0x81, 0x91, 0x1f, 0x70, 0xe3, 0x89, 0x89, 0x89, 0x43, 0xed, 0x00, 0x3f, 0x03, 0x25, 0x71, 0xc2, + 0x01, 0x42, 0x62, 0x80, 0x25, 0xf1, 0x7b, 0xfe, 0xbe, 0xef, 0x3d, 0x7f, 0x7e, 0x86, 0x37, 0x39, + 0x4b, 0x0e, 0x97, 0xcf, 0xc9, 0x12, 0x27, 0xec, 0x59, 0xc6, 0xa2, 0x9c, 0x2a, 0xcd, 0x44, 0x8c, + 0xf3, 0x09, 0xe6, 0x32, 0xa2, 0x89, 0x42, 0x8b, 0x54, 0x6a, 0x69, 0xf7, 0x6a, 0x1c, 0xfa, 0x09, + 0x87, 0xf2, 0x49, 0xdf, 0x0d, 0xa5, 0xe2, 0x52, 0xe1, 0x80, 0x28, 0x8a, 0xf3, 0x49, 0x40, 0x35, + 0x99, 0xe0, 0x50, 0x32, 0x51, 0x51, 0xfb, 0xdb, 0xb1, 0x8c, 0x65, 0xb9, 0xc4, 0xc5, 0xca, 0x64, + 0xbd, 0x58, 0xca, 0x38, 0xa1, 0xb8, 0x8c, 0x82, 0xec, 0x09, 0xd6, 0x8c, 0x53, 0xa5, 0x09, 0x5f, + 0x18, 0x40, 0x97, 0x70, 0x26, 0x24, 0x2e, 0xbf, 0x26, 0xd5, 0xab, 0x2a, 0xcd, 0x2b, 0xb1, 0x2a, + 0xa8, 0xb6, 0x86, 0x2f, 0x61, 0xf7, 0x91, 0xa2, 0xe9, 0x7d, 0xa1, 0xb2, 0x94, 0x88, 0x90, 0xde, + 0xcb, 0x44, 0x64, 0x53, 0x78, 0x31, 0x20, 0x49, 0x11, 0x3a, 0x60, 0xb0, 0x31, 0xea, 0xec, 0xf4, + 0x90, 0x21, 0x15, 0xbd, 0x22, 0xd3, 0x2b, 0xda, 0x97, 0x4c, 0xf8, 0xb7, 0x4f, 0x3e, 0x7b, 0xd6, + 0xdb, 0x33, 0x6f, 0x14, 0x33, 0xfd, 0x34, 0x0b, 0x50, 0x28, 0xb9, 0xa9, 0x60, 0x7e, 0x63, 0x15, + 0x1d, 0x62, 0xbd, 0x5c, 0x50, 0x55, 0x12, 0xd4, 0xb4, 0xd6, 0x1e, 0xbe, 0x6e, 0xc1, 0xb6, 0x9f, + 0xa5, 0xa2, 0x4c, 0xdb, 0x07, 0xb0, 0x1b, 0xd1, 0x84, 0xc6, 0x44, 0xcb, 0x74, 0x4e, 0xa2, 0x28, + 0xa5, 0x4a, 0x39, 0x60, 0x00, 0x46, 0x6d, 0xdf, 0xf9, 0xf8, 0x7e, 0xbc, 0x6d, 0x3a, 0xb8, 0x5b, + 0xed, 0x3c, 0xd4, 0x29, 0x13, 0xf1, 0xf4, 0x5a, 0x43, 0x31, 0x79, 0x7b, 0x0a, 0xaf, 0x86, 0x92, + 0x2f, 0x12, 0xaa, 0x99, 0x14, 0xf3, 0xc2, 0x1c, 0xa7, 0x35, 0x00, 0xa3, 0xce, 0x4e, 0x1f, 0x55, + 0xce, 0xa1, 0xda, 0x39, 0x34, 0xab, 0x9d, 0xf3, 0xb7, 0x8a, 0x43, 0x1c, 0x9d, 0x79, 0xe0, 0xcd, + 0xd7, 0x77, 0xb7, 0xc0, 0xf4, 0xca, 0x0f, 0x85, 0x02, 0x63, 0x87, 0x70, 0x93, 0x70, 0x99, 0x09, + 0xed, 0x6c, 0xfc, 0x7b, 0x3b, 0x8c, 0xf4, 0xde, 0xa5, 0x57, 0xc7, 0x9e, 0xf5, 0xed, 0xd8, 0xb3, + 0x86, 0x33, 0xb8, 0xd5, 0xd8, 0xf2, 0x80, 0x29, 0x6d, 0xef, 0xc3, 0x0b, 0x11, 0xd1, 0xc4, 0x5c, + 0xc6, 0x0d, 0xf4, 0xc7, 0x99, 0x42, 0x0d, 0xcf, 0x6f, 0x17, 0x8d, 0x54, 0xc7, 0x29, 0xc9, 0xc3, + 0x0f, 0x00, 0x5e, 0xff, 0xed, 0xaa, 0x0f, 0x84, 0x4e, 0x97, 0xf6, 0x1d, 0x78, 0x39, 0x53, 0xf4, + 0xef, 0x5d, 0xef, 0x14, 0xe8, 0xda, 0xf0, 0x73, 0xc3, 0xd2, 0xfa, 0x7f, 0xc3, 0xe2, 0xcf, 0x4e, + 0x56, 0x2e, 0x38, 0x5d, 0xb9, 0xe0, 0xcb, 0xca, 0x05, 0x47, 0x6b, 0xd7, 0x3a, 0x5d, 0xbb, 0xd6, + 0xa7, 0xb5, 0x6b, 0x3d, 0xde, 0x3b, 0x27, 0x56, 0x3b, 0x33, 0x4e, 0x48, 0xa0, 0x9a, 0x08, 0xe7, + 0xbb, 0xf8, 0xc5, 0x2f, 0x0f, 0xb5, 0x2c, 0x12, 0x6c, 0x96, 0xc3, 0xb0, 0xfb, 0x3d, 0x00, 0x00, + 0xff, 0xff, 0x68, 0xf3, 0x0e, 0xde, 0xcf, 0x03, 0x00, 0x00, } func (m *UserInsuranceFund) Marshal() (dAtA []byte, err error) { diff --git a/x/liquidvesting/types/params.pb.go b/x/liquidvesting/types/params.pb.go index b4ba0f75..e3ad345d 100644 --- a/x/liquidvesting/types/params.pb.go +++ b/x/liquidvesting/types/params.pb.go @@ -119,7 +119,7 @@ var fileDescriptor_47e3045990d8fa3d = []byte{ // 356 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x91, 0xbf, 0x0e, 0xd2, 0x40, 0x1c, 0xc7, 0x5b, 0x50, 0x0c, 0x5d, 0xc4, 0xca, 0x50, 0x30, 0x29, 0xc4, 0xc1, 0xe0, 0x40, 0x2f, - 0xe0, 0xe6, 0x26, 0xe2, 0xe6, 0x40, 0xd0, 0xc9, 0xa5, 0xb9, 0xde, 0xfd, 0x72, 0x5c, 0x68, 0xef, + 0xc8, 0xe6, 0x26, 0xe2, 0xe6, 0x40, 0xd0, 0xc9, 0xa5, 0xb9, 0xde, 0xfd, 0x72, 0x5c, 0x68, 0xef, 0xea, 0xdd, 0xb5, 0xd8, 0xb7, 0xf0, 0x61, 0x78, 0x08, 0x46, 0xc2, 0x64, 0x1c, 0x88, 0x81, 0x17, 0x31, 0xa5, 0x2d, 0x89, 0x2e, 0x6c, 0xbf, 0x3f, 0xdf, 0xcf, 0x67, 0xf9, 0x3a, 0x6f, 0x12, 0x1e, 0x6f, 0x8b, 0x1d, 0x2e, 0x50, 0xcc, 0xbf, 0x67, 0x9c, 0xe6, 0xa0, 0x0d, 0x17, 0x0c, 0xe5, 0x33, @@ -129,16 +129,16 @@ var fileDescriptor_47e3045990d8fa3d = []byte{ 0x2e, 0x74, 0xa6, 0xb0, 0x20, 0x10, 0xa6, 0xa0, 0x08, 0x08, 0x83, 0x19, 0x78, 0xf6, 0xd8, 0x9e, 0x74, 0x17, 0xb3, 0xc3, 0x79, 0x64, 0xfd, 0x3e, 0x8f, 0x5e, 0x55, 0xb8, 0xa6, 0xdb, 0x80, 0x4b, 0x94, 0x60, 0xb3, 0x09, 0x3e, 0x03, 0xc3, 0xa4, 0x58, 0x02, 0x39, 0xed, 0xa7, 0x4e, 0x6d, 0x5f, - 0x02, 0x59, 0xbf, 0xbc, 0xeb, 0x56, 0x77, 0x9b, 0x3b, 0x77, 0x9e, 0x45, 0x99, 0x12, 0xa0, 0xb4, - 0xd7, 0x1a, 0xb7, 0x27, 0xdd, 0x85, 0x77, 0xda, 0x4f, 0xfb, 0x35, 0xf5, 0x81, 0x52, 0x05, 0x5a, - 0x7f, 0x31, 0x8a, 0x0b, 0xb6, 0x6e, 0x82, 0x25, 0x93, 0x70, 0x61, 0x4a, 0xa6, 0xfd, 0x88, 0xa9, - 0x83, 0xee, 0x27, 0xe7, 0x85, 0x51, 0x99, 0x36, 0x40, 0x43, 0x0a, 0x31, 0x30, 0x6c, 0x40, 0x7b, - 0x4f, 0x1e, 0xd0, 0xbd, 0x1a, 0x59, 0x36, 0x84, 0xfb, 0xd6, 0xe9, 0xe1, 0x38, 0x96, 0x3b, 0xa0, - 0x21, 0xd9, 0x60, 0x21, 0x20, 0xd6, 0xde, 0xd3, 0xd2, 0xb2, 0x7e, 0x5e, 0xdf, 0x3f, 0xd6, 0xe7, - 0xc5, 0xd7, 0xc3, 0xc5, 0xb7, 0x8f, 0x17, 0xdf, 0xfe, 0x73, 0xf1, 0xed, 0x9f, 0x57, 0xdf, 0x3a, - 0x5e, 0x7d, 0xeb, 0xd7, 0xd5, 0xb7, 0xbe, 0xbd, 0x67, 0xdc, 0x6c, 0xb2, 0x28, 0x20, 0x32, 0x41, - 0x4d, 0x77, 0xd3, 0x18, 0x47, 0xfa, 0xbe, 0xa1, 0x7c, 0x8e, 0x7e, 0xfc, 0x57, 0xbb, 0x29, 0x52, - 0xd0, 0x51, 0xe7, 0xd6, 0xd3, 0xbb, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x52, 0xea, 0x8c, 0x06, + 0x02, 0x59, 0xbf, 0xbc, 0xeb, 0x56, 0x77, 0x9b, 0xfb, 0xce, 0x79, 0x16, 0x65, 0x4a, 0x80, 0xd2, + 0x5e, 0x6b, 0xdc, 0x9e, 0x74, 0x17, 0xde, 0x69, 0x3f, 0xed, 0xd7, 0xd4, 0x07, 0x4a, 0x15, 0x68, + 0xfd, 0xc5, 0x28, 0x2e, 0xd8, 0xba, 0x09, 0x96, 0x4c, 0xc2, 0x85, 0x29, 0x99, 0xf6, 0x23, 0xa6, + 0x0e, 0xba, 0x9f, 0x9c, 0x17, 0x46, 0x65, 0xda, 0x00, 0x0d, 0x29, 0xc4, 0xc0, 0xb0, 0x01, 0xed, + 0x3d, 0x79, 0x40, 0xf7, 0x6a, 0x64, 0xd9, 0x10, 0xee, 0x5b, 0xa7, 0x87, 0xe3, 0x58, 0xee, 0x80, + 0x86, 0x64, 0x83, 0x85, 0x80, 0x58, 0x7b, 0x4f, 0x4b, 0xcb, 0xfa, 0x79, 0x7d, 0xff, 0x58, 0x9f, + 0x17, 0x5f, 0x0f, 0x17, 0xdf, 0x3e, 0x5e, 0x7c, 0xfb, 0xcf, 0xc5, 0xb7, 0x7f, 0x5e, 0x7d, 0xeb, + 0x78, 0xf5, 0xad, 0x5f, 0x57, 0xdf, 0xfa, 0xf6, 0x9e, 0x71, 0xb3, 0xc9, 0xa2, 0x80, 0xc8, 0x04, + 0x35, 0xdd, 0x4d, 0x63, 0x1c, 0xe9, 0xfb, 0x86, 0xf2, 0x39, 0xfa, 0xf1, 0x5f, 0xed, 0xa6, 0x48, + 0x41, 0x47, 0x9d, 0x5b, 0x4f, 0xf3, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x83, 0x02, 0x6b, 0x08, 0x1d, 0x02, 0x00, 0x00, } diff --git a/x/liquidvesting/types/query.pb.go b/x/liquidvesting/types/query.pb.go index fa70dbbe..10e5da76 100644 --- a/x/liquidvesting/types/query.pb.go +++ b/x/liquidvesting/types/query.pb.go @@ -585,56 +585,56 @@ func init() { } var fileDescriptor_0b32b8fa870c8abf = []byte{ - // 769 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x56, 0x4d, 0x4f, 0x13, 0x41, - 0x18, 0xee, 0x14, 0x2c, 0x61, 0xf0, 0x23, 0x8c, 0x98, 0x40, 0xd5, 0x85, 0xd6, 0x88, 0x80, 0x61, - 0x87, 0x56, 0x8d, 0x8a, 0x46, 0xa1, 0x2a, 0xea, 0x0d, 0x37, 0xea, 0xc1, 0x4b, 0x33, 0xdb, 0x1d, - 0x97, 0x0d, 0xed, 0x4e, 0xd9, 0xd9, 0xad, 0x36, 0xc6, 0x83, 0x9c, 0x3c, 0x1a, 0xfd, 0x13, 0xc6, - 0x8b, 0xfe, 0x08, 0x63, 0x38, 0x36, 0xf1, 0x62, 0x62, 0xa2, 0x06, 0x4c, 0xf4, 0x67, 0x98, 0x9d, - 0x9d, 0x85, 0x2e, 0x74, 0x5b, 0x4a, 0x84, 0x4b, 0xbb, 0x99, 0xf7, 0x7d, 0x9f, 0x79, 0x9e, 0xf7, - 0x6b, 0x17, 0x9e, 0xad, 0x58, 0xe5, 0xe5, 0xfa, 0x33, 0x52, 0xc7, 0x65, 0x6b, 0xc5, 0xb3, 0x8c, - 0x1a, 0xe5, 0xae, 0x65, 0x9b, 0xb8, 0x96, 0xc3, 0x2b, 0x1e, 0x75, 0xea, 0x6a, 0xd5, 0x61, 0x2e, - 0x43, 0x23, 0xa1, 0x9b, 0x1a, 0x71, 0x53, 0x6b, 0xb9, 0xf4, 0x20, 0xa9, 0x58, 0x36, 0xc3, 0xe2, - 0x37, 0xf0, 0x4e, 0x0f, 0x99, 0xcc, 0x64, 0xe2, 0x11, 0xfb, 0x4f, 0xf2, 0xf4, 0x94, 0xc9, 0x98, - 0x59, 0xa6, 0x98, 0x54, 0x2d, 0x4c, 0x6c, 0x9b, 0xb9, 0xc4, 0xb5, 0x98, 0xcd, 0xa5, 0x55, 0x29, - 0x31, 0x5e, 0x61, 0x1c, 0xeb, 0x84, 0x53, 0x5c, 0xcb, 0xe9, 0xd4, 0x25, 0x39, 0x5c, 0x62, 0x96, - 0x2d, 0xed, 0x53, 0xcd, 0x76, 0x41, 0x6d, 0xd3, 0xab, 0x4a, 0x4c, 0xcb, 0x16, 0x60, 0xd2, 0x77, - 0x3c, 0x5e, 0x54, 0x95, 0x38, 0xa4, 0x22, 0xef, 0xcc, 0x16, 0xe0, 0xe9, 0x07, 0x3e, 0xd2, 0x23, - 0x4e, 0x9d, 0xfb, 0x36, 0xf7, 0x1c, 0x62, 0x97, 0xe8, 0x82, 0x67, 0x1b, 0x1a, 0x5d, 0xf1, 0x28, - 0x77, 0x51, 0x06, 0x1e, 0xf6, 0x38, 0x75, 0x8a, 0xc4, 0x30, 0x1c, 0xca, 0xf9, 0x30, 0x18, 0x03, - 0x13, 0xfd, 0xda, 0x80, 0x7f, 0x36, 0x1f, 0x1c, 0x65, 0xff, 0x02, 0xa8, 0xc4, 0x81, 0xf0, 0x2a, - 0xb3, 0x39, 0x45, 0x14, 0xf6, 0xe9, 0xa4, 0xec, 0x1f, 0x0f, 0x83, 0xb1, 0x9e, 0x89, 0x81, 0xfc, - 0x88, 0x1a, 0x88, 0x51, 0x7d, 0x31, 0xaa, 0x94, 0xa1, 0xde, 0x62, 0x96, 0x5d, 0x98, 0x59, 0xfb, - 0x31, 0x9a, 0xf8, 0xf0, 0x73, 0x74, 0xc2, 0xb4, 0xdc, 0x25, 0x4f, 0x57, 0x4b, 0xac, 0x82, 0xa5, - 0xf2, 0xe0, 0x6f, 0x9a, 0x1b, 0xcb, 0xd8, 0xad, 0x57, 0x29, 0x17, 0x01, 0x5c, 0x0b, 0xb1, 0x51, - 0x11, 0xf6, 0x7a, 0x9c, 0x1a, 0xc3, 0xc9, 0xff, 0x7f, 0x87, 0x00, 0xce, 0x2e, 0xc5, 0x29, 0xe5, - 0x61, 0xbe, 0x16, 0x20, 0xdc, 0x2a, 0x86, 0xc8, 0xd6, 0x40, 0x7e, 0x3c, 0x42, 0x24, 0x68, 0xaa, - 0x90, 0xce, 0x22, 0x31, 0xa9, 0x8c, 0xd5, 0x9a, 0x22, 0xb3, 0xab, 0x49, 0x78, 0x62, 0xc7, 0x2d, - 0xb7, 0x89, 0x4b, 0x76, 0x51, 0x91, 0xe6, 0x74, 0x27, 0x0f, 0x20, 0xdd, 0x3d, 0xfb, 0x95, 0xee, - 0x06, 0x80, 0xa3, 0xb1, 0xf9, 0x96, 0xad, 0x65, 0xc0, 0x63, 0x56, 0x68, 0x29, 0x3e, 0xf5, 0x4d, - 0xb2, 0xc5, 0x66, 0xd4, 0xd8, 0x89, 0x55, 0x5b, 0x66, 0xb6, 0xd0, 0xef, 0xd3, 0x7c, 0xff, 0xe7, - 0xd3, 0x14, 0xd0, 0x8e, 0x5a, 0x91, 0xdb, 0xd0, 0xdd, 0x48, 0x59, 0x93, 0xa2, 0xac, 0xe7, 0x3a, - 0x96, 0x35, 0xa0, 0x18, 0xa9, 0xeb, 0x1d, 0x38, 0xb6, 0xa9, 0x48, 0xa3, 0xdc, 0x25, 0xcb, 0x44, - 0x2f, 0xd3, 0x79, 0xce, 0xa9, 0xcb, 0xbb, 0x98, 0xb9, 0xd7, 0x00, 0x66, 0xda, 0xe0, 0xc8, 0xdc, - 0x94, 0x60, 0x8a, 0x54, 0x98, 0x67, 0xbb, 0xfb, 0x31, 0x75, 0x12, 0x3a, 0x7b, 0x12, 0x8e, 0x08, - 0x26, 0xad, 0xd6, 0x47, 0xf6, 0x15, 0x80, 0xe9, 0x56, 0xd6, 0x83, 0x24, 0x38, 0x04, 0x91, 0xa0, - 0xb0, 0x28, 0x16, 0x5f, 0xc8, 0xec, 0x31, 0x3c, 0x1e, 0x39, 0x95, 0x8c, 0x6e, 0xc2, 0x54, 0xb0, - 0x20, 0xe5, 0xec, 0x66, 0xda, 0x74, 0x51, 0x10, 0x5a, 0xe8, 0xf5, 0x99, 0x69, 0x32, 0x2c, 0xff, - 0xa5, 0x0f, 0x1e, 0x12, 0xc0, 0xa8, 0x01, 0xe0, 0xe0, 0x8e, 0x46, 0x43, 0x57, 0xda, 0x00, 0xb6, - 0x5d, 0xc5, 0xe9, 0xab, 0x7b, 0x88, 0x0c, 0x54, 0x65, 0x17, 0x56, 0xbf, 0xfe, 0x7e, 0x97, 0x9c, - 0x43, 0x37, 0x70, 0xfc, 0x7b, 0x41, 0xb4, 0xdc, 0xb6, 0x51, 0xc2, 0x2f, 0x9a, 0x1b, 0xf1, 0x25, - 0xfa, 0x0c, 0x20, 0xda, 0x39, 0x8b, 0xa8, 0x7b, 0x66, 0x61, 0x19, 0xd2, 0xb3, 0x7b, 0x09, 0x95, - 0xaa, 0x2e, 0x0b, 0x55, 0x39, 0x84, 0xbb, 0x54, 0x85, 0xbe, 0x03, 0x38, 0xd4, 0x6a, 0x70, 0xd0, - 0xb5, 0xdd, 0xb0, 0x89, 0x19, 0xdb, 0xf4, 0xf5, 0xbd, 0x05, 0x4b, 0x31, 0xf7, 0x84, 0x98, 0x02, - 0x9a, 0xeb, 0x24, 0xc6, 0xd9, 0x44, 0x28, 0x12, 0x01, 0xb1, 0xbd, 0x48, 0x1f, 0x01, 0x3c, 0x12, - 0xed, 0xb9, 0x8b, 0x9d, 0x98, 0xb5, 0xec, 0xb7, 0x4b, 0x5d, 0x46, 0x49, 0x21, 0x39, 0x21, 0xe4, - 0x3c, 0x9a, 0x6c, 0x23, 0x24, 0x5a, 0x10, 0xf4, 0x16, 0xc0, 0x54, 0x30, 0x4c, 0x68, 0xba, 0xd3, - 0xa5, 0x91, 0x29, 0x4e, 0xab, 0xbb, 0x75, 0x97, 0xe4, 0x26, 0x05, 0xb9, 0x33, 0x28, 0x83, 0x3b, - 0x7d, 0x20, 0x15, 0x1e, 0xae, 0xad, 0x2b, 0xa0, 0xb1, 0xae, 0x80, 0x5f, 0xeb, 0x0a, 0x78, 0xb3, - 0xa1, 0x24, 0x1a, 0x1b, 0x4a, 0xe2, 0xdb, 0x86, 0x92, 0x78, 0x32, 0xdb, 0xb4, 0x82, 0x42, 0x98, - 0xe9, 0x32, 0xd1, 0xf9, 0x16, 0x68, 0x2d, 0x8f, 0x9f, 0x6f, 0x43, 0x16, 0xab, 0x49, 0x4f, 0x89, - 0xef, 0xae, 0x0b, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0x20, 0xf0, 0x9a, 0x26, 0x76, 0x0a, 0x00, - 0x00, + // 771 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x56, 0x4f, 0x4f, 0x13, 0x4d, + 0x18, 0xef, 0x14, 0xde, 0x12, 0x86, 0xf7, 0x4f, 0x98, 0x17, 0x13, 0xa8, 0xba, 0xd0, 0x35, 0x22, + 0x60, 0xd8, 0xa1, 0xa0, 0x51, 0xd1, 0x28, 0x54, 0x45, 0xbd, 0xe1, 0x46, 0x3d, 0x78, 0x69, 0x66, + 0xbb, 0xe3, 0xb2, 0xa1, 0xdd, 0x29, 0x3b, 0xbb, 0xd5, 0xc6, 0x78, 0x90, 0x93, 0x47, 0xa3, 0x5f, + 0xc2, 0x78, 0xd1, 0x0f, 0x61, 0x0c, 0xc7, 0x26, 0x5e, 0x4c, 0x4c, 0xd4, 0x80, 0x89, 0x7e, 0x0c, + 0xb3, 0xb3, 0xb3, 0xd0, 0x85, 0x6e, 0x4b, 0x89, 0x70, 0x69, 0x37, 0xf3, 0x3c, 0xcf, 0x6f, 0x7e, + 0xbf, 0xe7, 0xdf, 0x2e, 0x3c, 0x5d, 0xb1, 0xcb, 0xab, 0xf5, 0xc7, 0xa4, 0x8e, 0xcb, 0xf6, 0x9a, + 0x6f, 0x9b, 0x35, 0xca, 0x3d, 0xdb, 0xb1, 0x70, 0x2d, 0x8f, 0xd7, 0x7c, 0xea, 0xd6, 0xb5, 0xaa, + 0xcb, 0x3c, 0x86, 0x46, 0x22, 0x37, 0x2d, 0xe6, 0xa6, 0xd5, 0xf2, 0xd9, 0x41, 0x52, 0xb1, 0x1d, + 0x86, 0xc5, 0x6f, 0xe8, 0x9d, 0x1d, 0xb2, 0x98, 0xc5, 0xc4, 0x23, 0x0e, 0x9e, 0xe4, 0xe9, 0x09, + 0x8b, 0x31, 0xab, 0x4c, 0x31, 0xa9, 0xda, 0x98, 0x38, 0x0e, 0xf3, 0x88, 0x67, 0x33, 0x87, 0x4b, + 0xab, 0x52, 0x62, 0xbc, 0xc2, 0x38, 0x36, 0x08, 0xa7, 0xb8, 0x96, 0x37, 0xa8, 0x47, 0xf2, 0xb8, + 0xc4, 0x6c, 0x47, 0xda, 0xa7, 0x9a, 0xed, 0x82, 0xda, 0xb6, 0x57, 0x95, 0x58, 0xb6, 0x23, 0xc0, + 0xa4, 0xef, 0x78, 0xb2, 0xa8, 0x2a, 0x71, 0x49, 0x45, 0xde, 0xa9, 0x16, 0xe0, 0xc9, 0xbb, 0x01, + 0xd2, 0x7d, 0x4e, 0xdd, 0x3b, 0x0e, 0xf7, 0x5d, 0xe2, 0x94, 0xe8, 0x92, 0xef, 0x98, 0x3a, 0x5d, + 0xf3, 0x29, 0xf7, 0x50, 0x0e, 0xfe, 0xed, 0x73, 0xea, 0x16, 0x89, 0x69, 0xba, 0x94, 0xf3, 0x61, + 0x30, 0x06, 0x26, 0xfa, 0xf5, 0x81, 0xe0, 0x6c, 0x31, 0x3c, 0x52, 0x7f, 0x01, 0xa8, 0x24, 0x81, + 0xf0, 0x2a, 0x73, 0x38, 0x45, 0x14, 0xf6, 0x19, 0xa4, 0x1c, 0x1c, 0x0f, 0x83, 0xb1, 0x9e, 0x89, + 0x81, 0xd9, 0x11, 0x2d, 0x14, 0xa3, 0x05, 0x62, 0x34, 0x29, 0x43, 0xbb, 0xce, 0x6c, 0xa7, 0x30, + 0xb3, 0xf1, 0x75, 0x34, 0xf5, 0xf6, 0xdb, 0xe8, 0x84, 0x65, 0x7b, 0x2b, 0xbe, 0xa1, 0x95, 0x58, + 0x05, 0x4b, 0xe5, 0xe1, 0xdf, 0x34, 0x37, 0x57, 0xb1, 0x57, 0xaf, 0x52, 0x2e, 0x02, 0xb8, 0x1e, + 0x61, 0xa3, 0x22, 0xec, 0xf5, 0x39, 0x35, 0x87, 0xd3, 0x7f, 0xfe, 0x0e, 0x01, 0xac, 0xae, 0x24, + 0x29, 0xe5, 0x51, 0xbe, 0x96, 0x20, 0xdc, 0x29, 0x86, 0xc8, 0xd6, 0xc0, 0xec, 0x78, 0x8c, 0x48, + 0xd8, 0x54, 0x11, 0x9d, 0x65, 0x62, 0x51, 0x19, 0xab, 0x37, 0x45, 0xaa, 0xeb, 0x69, 0x78, 0x6c, + 0xcf, 0x2d, 0x37, 0x88, 0x47, 0xf6, 0x51, 0x91, 0xe6, 0x74, 0xa7, 0x8f, 0x20, 0xdd, 0x3d, 0x87, + 0x95, 0xee, 0x06, 0x80, 0xa3, 0x89, 0xf9, 0x96, 0xad, 0x65, 0xc2, 0xff, 0xec, 0xc8, 0x52, 0x7c, + 0x14, 0x98, 0x64, 0x8b, 0xcd, 0x68, 0x89, 0x13, 0xab, 0xb5, 0xcc, 0x6c, 0xa1, 0x3f, 0xa0, 0xf9, + 0xe6, 0xe7, 0xfb, 0x29, 0xa0, 0xff, 0x6b, 0xc7, 0x6e, 0x43, 0xb7, 0x62, 0x65, 0x4d, 0x8b, 0xb2, + 0x9e, 0xe9, 0x58, 0xd6, 0x90, 0x62, 0xac, 0xae, 0x37, 0xe1, 0xd8, 0xb6, 0x22, 0x9d, 0x72, 0x8f, + 0xac, 0x12, 0xa3, 0x4c, 0x17, 0x39, 0xa7, 0x1e, 0xef, 0x62, 0xe6, 0x5e, 0x00, 0x98, 0x6b, 0x83, + 0x23, 0x73, 0x53, 0x82, 0x19, 0x52, 0x61, 0xbe, 0xe3, 0x1d, 0xc6, 0xd4, 0x49, 0x68, 0xf5, 0x38, + 0x1c, 0x11, 0x4c, 0x5a, 0xad, 0x0f, 0xf5, 0x39, 0x80, 0xd9, 0x56, 0xd6, 0xa3, 0x24, 0x38, 0x04, + 0x91, 0xa0, 0xb0, 0x2c, 0x16, 0x5f, 0xc4, 0xec, 0x01, 0xfc, 0x3f, 0x76, 0x2a, 0x19, 0x5d, 0x83, + 0x99, 0x70, 0x41, 0xca, 0xd9, 0xcd, 0xb5, 0xe9, 0xa2, 0x30, 0xb4, 0xd0, 0x1b, 0x30, 0xd3, 0x65, + 0xd8, 0xec, 0xc7, 0x3e, 0xf8, 0x97, 0x00, 0x46, 0x0d, 0x00, 0x07, 0xf7, 0x34, 0x1a, 0xba, 0xd8, + 0x06, 0xb0, 0xed, 0x2a, 0xce, 0x5e, 0x3a, 0x40, 0x64, 0xa8, 0x4a, 0x5d, 0x5a, 0xff, 0xf4, 0xe3, + 0x75, 0x7a, 0x01, 0x5d, 0xc5, 0xc9, 0xef, 0x05, 0xd1, 0x72, 0xbb, 0x46, 0x09, 0x3f, 0x6d, 0x6e, + 0xc4, 0x67, 0xe8, 0x03, 0x80, 0x68, 0xef, 0x2c, 0xa2, 0xee, 0x99, 0x45, 0x65, 0xc8, 0xce, 0x1f, + 0x24, 0x54, 0xaa, 0xba, 0x20, 0x54, 0xe5, 0x11, 0xee, 0x52, 0x15, 0xfa, 0x02, 0xe0, 0x50, 0xab, + 0xc1, 0x41, 0x97, 0xf7, 0xc3, 0x26, 0x61, 0x6c, 0xb3, 0x57, 0x0e, 0x16, 0x2c, 0xc5, 0xdc, 0x16, + 0x62, 0x0a, 0x68, 0xa1, 0x93, 0x18, 0x77, 0x1b, 0xa1, 0x48, 0x04, 0xc4, 0xee, 0x22, 0xbd, 0x03, + 0xf0, 0x9f, 0x78, 0xcf, 0x9d, 0xeb, 0xc4, 0xac, 0x65, 0xbf, 0x9d, 0xef, 0x32, 0x4a, 0x0a, 0xc9, + 0x0b, 0x21, 0x67, 0xd1, 0x64, 0x1b, 0x21, 0xf1, 0x82, 0xa0, 0x57, 0x00, 0x66, 0xc2, 0x61, 0x42, + 0xd3, 0x9d, 0x2e, 0x8d, 0x4d, 0x71, 0x56, 0xdb, 0xaf, 0xbb, 0x24, 0x37, 0x29, 0xc8, 0x9d, 0x42, + 0x39, 0xdc, 0xe9, 0x03, 0xa9, 0x70, 0x6f, 0x63, 0x53, 0x01, 0x8d, 0x4d, 0x05, 0x7c, 0xdf, 0x54, + 0xc0, 0xcb, 0x2d, 0x25, 0xd5, 0xd8, 0x52, 0x52, 0x9f, 0xb7, 0x94, 0xd4, 0xc3, 0xf9, 0xa6, 0x15, + 0x14, 0xc1, 0x4c, 0x97, 0x89, 0xc1, 0x77, 0x40, 0x6b, 0x73, 0xf8, 0xc9, 0x2e, 0x64, 0xb1, 0x9a, + 0x8c, 0x8c, 0xf8, 0xee, 0x9a, 0xfb, 0x1d, 0x00, 0x00, 0xff, 0xff, 0xf1, 0x18, 0x7d, 0x28, 0x76, + 0x0a, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/operators/abci.go b/x/operators/abci.go index 52b3e32c..1d7b2f4a 100644 --- a/x/operators/abci.go +++ b/x/operators/abci.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/operators/keeper" - "github.com/milkyway-labs/milkyway/v2/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/x/operators/keeper" + "github.com/milkyway-labs/milkyway/v3/x/operators/types" ) // BeginBlocker is called at the beginning of every block. diff --git a/x/operators/abci_test.go b/x/operators/abci_test.go index e6ad6857..4a0a8de2 100644 --- a/x/operators/abci_test.go +++ b/x/operators/abci_test.go @@ -7,9 +7,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - "github.com/milkyway-labs/milkyway/v2/x/operators" - "github.com/milkyway-labs/milkyway/v2/x/operators/testutils" - "github.com/milkyway-labs/milkyway/v2/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/x/operators" + "github.com/milkyway-labs/milkyway/v3/x/operators/testutils" + "github.com/milkyway-labs/milkyway/v3/x/operators/types" ) func TestBeginBlocker(t *testing.T) { diff --git a/x/operators/autocli.go b/x/operators/autocli.go index aec16916..aad2fc79 100644 --- a/x/operators/autocli.go +++ b/x/operators/autocli.go @@ -6,8 +6,8 @@ import ( autocliv1 "cosmossdk.io/api/cosmos/autocli/v1" "github.com/cosmos/cosmos-sdk/version" - operatorsv1 "github.com/milkyway-labs/milkyway/v2/api/milkyway/operators/v1" - "github.com/milkyway-labs/milkyway/v2/x/operators/types" + operatorsv1 "github.com/milkyway-labs/milkyway/v3/api/milkyway/operators/v1" + "github.com/milkyway-labs/milkyway/v3/x/operators/types" ) // AutoCLIOptions implements the autocli.HasAutoCLIConfig interface. diff --git a/x/operators/client/cli/tx.go b/x/operators/client/cli/tx.go index 263e8a8c..875bf4ec 100644 --- a/x/operators/client/cli/tx.go +++ b/x/operators/client/cli/tx.go @@ -10,7 +10,7 @@ import ( "github.com/cosmos/cosmos-sdk/version" "github.com/spf13/cobra" - "github.com/milkyway-labs/milkyway/v2/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/x/operators/types" ) // GetTxCmd returns a new command to perform operators transactions diff --git a/x/operators/keeper/alias_functions.go b/x/operators/keeper/alias_functions.go index 02d681c9..6426e303 100644 --- a/x/operators/keeper/alias_functions.go +++ b/x/operators/keeper/alias_functions.go @@ -10,7 +10,7 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/x/operators/types" ) // createAccountIfNotExists creates an account if it does not exist diff --git a/x/operators/keeper/common_test.go b/x/operators/keeper/common_test.go index 442fcf2e..44415622 100644 --- a/x/operators/keeper/common_test.go +++ b/x/operators/keeper/common_test.go @@ -10,8 +10,8 @@ import ( minttypes "github.com/cosmos/cosmos-sdk/x/mint/types" "github.com/stretchr/testify/suite" - "github.com/milkyway-labs/milkyway/v2/x/operators/keeper" - "github.com/milkyway-labs/milkyway/v2/x/operators/testutils" + "github.com/milkyway-labs/milkyway/v3/x/operators/keeper" + "github.com/milkyway-labs/milkyway/v3/x/operators/testutils" ) func TestKeeperTestSuite(t *testing.T) { diff --git a/x/operators/keeper/genesis.go b/x/operators/keeper/genesis.go index 8b18b176..fd7a39aa 100644 --- a/x/operators/keeper/genesis.go +++ b/x/operators/keeper/genesis.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/x/operators/types" ) // ExportGenesis returns the GenesisState associated with the given context diff --git a/x/operators/keeper/genesis_test.go b/x/operators/keeper/genesis_test.go index de5a4ffb..556b816f 100644 --- a/x/operators/keeper/genesis_test.go +++ b/x/operators/keeper/genesis_test.go @@ -6,7 +6,7 @@ import ( sdkmath "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/x/operators/types" ) func (suite *KeeperTestSuite) TestKeeper_ExportGenesis() { diff --git a/x/operators/keeper/grpc_query.go b/x/operators/keeper/grpc_query.go index b57ce468..eb4e41ba 100644 --- a/x/operators/keeper/grpc_query.go +++ b/x/operators/keeper/grpc_query.go @@ -9,7 +9,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/milkyway-labs/milkyway/v2/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/x/operators/types" ) var _ types.QueryServer = &Keeper{} diff --git a/x/operators/keeper/grpc_query_test.go b/x/operators/keeper/grpc_query_test.go index a3d38415..707351b4 100644 --- a/x/operators/keeper/grpc_query_test.go +++ b/x/operators/keeper/grpc_query_test.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - "github.com/milkyway-labs/milkyway/v2/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/x/operators/types" ) func (suite *KeeperTestSuite) TestQueryServer_Operator() { diff --git a/x/operators/keeper/hooks.go b/x/operators/keeper/hooks.go index 6b1a680a..dfdbc89f 100644 --- a/x/operators/keeper/hooks.go +++ b/x/operators/keeper/hooks.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "github.com/milkyway-labs/milkyway/v2/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/x/operators/types" ) var _ types.OperatorsHooks = &Keeper{} diff --git a/x/operators/keeper/invariants.go b/x/operators/keeper/invariants.go index 97394ddc..4f512ed6 100644 --- a/x/operators/keeper/invariants.go +++ b/x/operators/keeper/invariants.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/x/operators/types" ) // RegisterInvariants registers all operators module invariants diff --git a/x/operators/keeper/invariants_test.go b/x/operators/keeper/invariants_test.go index 540a2a21..f372fd3c 100644 --- a/x/operators/keeper/invariants_test.go +++ b/x/operators/keeper/invariants_test.go @@ -3,8 +3,8 @@ package keeper_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/operators/keeper" - "github.com/milkyway-labs/milkyway/v2/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/x/operators/keeper" + "github.com/milkyway-labs/milkyway/v3/x/operators/types" ) func (suite *KeeperTestSuite) TestValidOperatorsInvariant() { diff --git a/x/operators/keeper/keeper.go b/x/operators/keeper/keeper.go index 6c70c6e0..10d51f76 100644 --- a/x/operators/keeper/keeper.go +++ b/x/operators/keeper/keeper.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/x/operators/types" ) type Keeper struct { diff --git a/x/operators/keeper/msg_server.go b/x/operators/keeper/msg_server.go index 9dac7563..d5c13e09 100644 --- a/x/operators/keeper/msg_server.go +++ b/x/operators/keeper/msg_server.go @@ -9,7 +9,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/milkyway-labs/milkyway/v2/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/x/operators/types" ) var _ types.MsgServer = msgServer{} diff --git a/x/operators/keeper/msg_server_test.go b/x/operators/keeper/msg_server_test.go index 84fbda15..e7d46f47 100644 --- a/x/operators/keeper/msg_server_test.go +++ b/x/operators/keeper/msg_server_test.go @@ -8,8 +8,8 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" distrtypes "github.com/cosmos/cosmos-sdk/x/distribution/types" - "github.com/milkyway-labs/milkyway/v2/x/operators/keeper" - "github.com/milkyway-labs/milkyway/v2/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/x/operators/keeper" + "github.com/milkyway-labs/milkyway/v3/x/operators/types" ) func (suite *KeeperTestSuite) TestMsgServer_RegisterOperator() { diff --git a/x/operators/keeper/operators.go b/x/operators/keeper/operators.go index b1129015..16adc5df 100644 --- a/x/operators/keeper/operators.go +++ b/x/operators/keeper/operators.go @@ -10,7 +10,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/milkyway-labs/milkyway/v2/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/x/operators/types" ) // SetNextOperatorID sets the next operator ID to be used when registering a new Operator diff --git a/x/operators/keeper/operators_test.go b/x/operators/keeper/operators_test.go index a5f8b202..e6218b39 100644 --- a/x/operators/keeper/operators_test.go +++ b/x/operators/keeper/operators_test.go @@ -6,7 +6,7 @@ import ( sdkmath "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/x/operators/types" ) func (suite *KeeperTestSuite) TestKeeper_SetNextOperatorID() { diff --git a/x/operators/keeper/params.go b/x/operators/keeper/params.go index 858fb499..77cd2091 100644 --- a/x/operators/keeper/params.go +++ b/x/operators/keeper/params.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "github.com/milkyway-labs/milkyway/v2/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/x/operators/types" ) // SetParams sets module parameters diff --git a/x/operators/keeper/params_test.go b/x/operators/keeper/params_test.go index 7711bbef..26f81b08 100644 --- a/x/operators/keeper/params_test.go +++ b/x/operators/keeper/params_test.go @@ -6,7 +6,7 @@ import ( sdkmath "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/x/operators/types" ) func (suite *KeeperTestSuite) TestKeeper_SetParams() { diff --git a/x/operators/module.go b/x/operators/module.go index 9a622bba..c42921f3 100644 --- a/x/operators/module.go +++ b/x/operators/module.go @@ -21,10 +21,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/milkyway-labs/milkyway/v2/x/operators/client/cli" - "github.com/milkyway-labs/milkyway/v2/x/operators/keeper" - "github.com/milkyway-labs/milkyway/v2/x/operators/simulation" - "github.com/milkyway-labs/milkyway/v2/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/x/operators/client/cli" + "github.com/milkyway-labs/milkyway/v3/x/operators/keeper" + "github.com/milkyway-labs/milkyway/v3/x/operators/simulation" + "github.com/milkyway-labs/milkyway/v3/x/operators/types" ) const ( diff --git a/x/operators/simulation/decoder.go b/x/operators/simulation/decoder.go index cc8e8181..0d4aa97d 100644 --- a/x/operators/simulation/decoder.go +++ b/x/operators/simulation/decoder.go @@ -7,8 +7,8 @@ import ( "github.com/cosmos/cosmos-sdk/types/kv" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/milkyway-labs/milkyway/v2/x/operators/keeper" - "github.com/milkyway-labs/milkyway/v2/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/x/operators/keeper" + "github.com/milkyway-labs/milkyway/v3/x/operators/types" ) // NewDecodeStore returns a decoder function closure that unmarshals the KVPair's diff --git a/x/operators/simulation/genesis.go b/x/operators/simulation/genesis.go index a48eebff..a8ea6d46 100644 --- a/x/operators/simulation/genesis.go +++ b/x/operators/simulation/genesis.go @@ -3,9 +3,9 @@ package simulation import ( "github.com/cosmos/cosmos-sdk/types/module" - "github.com/milkyway-labs/milkyway/v2/testutils/simtesting" - "github.com/milkyway-labs/milkyway/v2/utils" - "github.com/milkyway-labs/milkyway/v2/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/testutils/simtesting" + "github.com/milkyway-labs/milkyway/v3/utils" + "github.com/milkyway-labs/milkyway/v3/x/operators/types" ) // RandomizedGenState generates a random GenesisState for the operators module diff --git a/x/operators/simulation/msg_factory.go b/x/operators/simulation/msg_factory.go index 5aeb462c..8f93f89b 100644 --- a/x/operators/simulation/msg_factory.go +++ b/x/operators/simulation/msg_factory.go @@ -10,9 +10,9 @@ import ( bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" "github.com/cosmos/cosmos-sdk/x/simulation" - "github.com/milkyway-labs/milkyway/v2/testutils/simtesting" - "github.com/milkyway-labs/milkyway/v2/x/operators/keeper" - "github.com/milkyway-labs/milkyway/v2/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/testutils/simtesting" + "github.com/milkyway-labs/milkyway/v3/x/operators/keeper" + "github.com/milkyway-labs/milkyway/v3/x/operators/types" ) // Simulation operation weights constants diff --git a/x/operators/simulation/proposals.go b/x/operators/simulation/proposals.go index ab4f4844..cc4a9152 100644 --- a/x/operators/simulation/proposals.go +++ b/x/operators/simulation/proposals.go @@ -10,7 +10,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/simulation" stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" - "github.com/milkyway-labs/milkyway/v2/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/x/operators/types" ) const ( diff --git a/x/operators/simulation/utils.go b/x/operators/simulation/utils.go index a4f33a15..ec5d06c1 100644 --- a/x/operators/simulation/utils.go +++ b/x/operators/simulation/utils.go @@ -9,10 +9,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/milkyway-labs/milkyway/v2/testutils/simtesting" - "github.com/milkyway-labs/milkyway/v2/utils" - "github.com/milkyway-labs/milkyway/v2/x/operators/keeper" - "github.com/milkyway-labs/milkyway/v2/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/testutils/simtesting" + "github.com/milkyway-labs/milkyway/v3/utils" + "github.com/milkyway-labs/milkyway/v3/x/operators/keeper" + "github.com/milkyway-labs/milkyway/v3/x/operators/types" ) // RandomOperator returns a random operator diff --git a/x/operators/testutils/hooks_mocks.go b/x/operators/testutils/hooks_mocks.go index d5e605f0..56572097 100644 --- a/x/operators/testutils/hooks_mocks.go +++ b/x/operators/testutils/hooks_mocks.go @@ -3,7 +3,7 @@ package testutils import ( "context" - "github.com/milkyway-labs/milkyway/v2/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/x/operators/types" ) var _ types.OperatorsHooks = &MockHooks{} diff --git a/x/operators/testutils/keeper.go b/x/operators/testutils/keeper.go index 72035fd8..99cdfb7d 100644 --- a/x/operators/testutils/keeper.go +++ b/x/operators/testutils/keeper.go @@ -8,9 +8,9 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/milkyway-labs/milkyway/v2/testutils/storetesting" - "github.com/milkyway-labs/milkyway/v2/x/operators/keeper" - "github.com/milkyway-labs/milkyway/v2/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/testutils/storetesting" + "github.com/milkyway-labs/milkyway/v3/x/operators/keeper" + "github.com/milkyway-labs/milkyway/v3/x/operators/types" ) type KeeperTestData struct { diff --git a/x/operators/types/genesis.go b/x/operators/types/genesis.go index 3f488b3a..60ad6ad1 100644 --- a/x/operators/types/genesis.go +++ b/x/operators/types/genesis.go @@ -4,7 +4,7 @@ import ( "fmt" "time" - "github.com/milkyway-labs/milkyway/v2/utils" + "github.com/milkyway-labs/milkyway/v3/utils" ) func NewGenesisState( diff --git a/x/operators/types/genesis.pb.go b/x/operators/types/genesis.pb.go index 979753d9..f005883f 100644 --- a/x/operators/types/genesis.pb.go +++ b/x/operators/types/genesis.pb.go @@ -237,38 +237,38 @@ func init() { var fileDescriptor_2071f056fdcb6ee8 = []byte{ // 509 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x93, 0x4f, 0x8e, 0xd3, 0x30, - 0x14, 0xc6, 0x6b, 0x66, 0x18, 0x81, 0x0b, 0xa5, 0x98, 0x41, 0x53, 0x2a, 0x91, 0x54, 0x46, 0x48, - 0x95, 0x10, 0xb6, 0xa6, 0x48, 0x2c, 0x80, 0x55, 0x06, 0x09, 0xb1, 0x81, 0x51, 0x00, 0x21, 0xb1, - 0x09, 0x4e, 0x63, 0x42, 0x44, 0x12, 0x47, 0x89, 0xd3, 0x69, 0x17, 0xdc, 0x80, 0xc5, 0x9c, 0x82, - 0xb3, 0xcc, 0x72, 0x96, 0x88, 0x45, 0x41, 0xe9, 0x0d, 0x38, 0x01, 0x4a, 0xe2, 0xb8, 0xa5, 0x74, - 0xf8, 0xb3, 0xab, 0xeb, 0xdf, 0x7b, 0x9f, 0xbf, 0xf7, 0xbe, 0xc0, 0x5b, 0x51, 0x10, 0x7e, 0x98, - 0x1d, 0xb1, 0x19, 0x15, 0x09, 0x4f, 0x99, 0x14, 0x69, 0x46, 0x27, 0xfb, 0xd4, 0xe7, 0x31, 0xcf, - 0x82, 0x8c, 0x24, 0xa9, 0x90, 0x02, 0x5d, 0x6f, 0x20, 0xa2, 0x21, 0x32, 0xd9, 0xef, 0xef, 0xfa, - 0xc2, 0x17, 0x15, 0x41, 0xcb, 0x5f, 0x35, 0xdc, 0x37, 0x7d, 0x21, 0xfc, 0x90, 0xd3, 0xea, 0xe4, - 0xe6, 0xef, 0xa8, 0x0c, 0x22, 0x9e, 0x49, 0x16, 0x25, 0x0a, 0x30, 0xd6, 0x01, 0x2f, 0x4f, 0x99, - 0x0c, 0x44, 0xac, 0xee, 0xf1, 0xe6, 0x27, 0x45, 0xc2, 0xe3, 0x61, 0xf6, 0x67, 0x26, 0x61, 0x29, - 0x8b, 0x14, 0x83, 0xbf, 0x6e, 0xc1, 0x4b, 0x4f, 0x6a, 0x1f, 0x2f, 0x24, 0x93, 0x1c, 0x3d, 0x84, - 0x3b, 0x35, 0xd0, 0x03, 0x03, 0x30, 0x6c, 0x8f, 0x6e, 0x92, 0x8d, 0xbe, 0xc8, 0x61, 0x05, 0x59, - 0xdb, 0x27, 0x73, 0xb3, 0x65, 0xab, 0x12, 0xf4, 0x08, 0x76, 0x63, 0x3e, 0x95, 0x4e, 0x43, 0x3a, - 0x81, 0xd7, 0x3b, 0x37, 0x00, 0xc3, 0xcb, 0x16, 0x2a, 0xe6, 0x66, 0xe7, 0x19, 0x9f, 0xca, 0xe7, - 0xea, 0xea, 0xe9, 0x63, 0xbb, 0x13, 0xaf, 0x9e, 0x3d, 0xf4, 0x1a, 0x5e, 0xd4, 0x12, 0xbd, 0xad, - 0xc1, 0xd6, 0xb0, 0x3d, 0x32, 0xcf, 0x50, 0x6f, 0xaa, 0xac, 0x5e, 0xa9, 0xff, 0x63, 0x6e, 0x76, - 0x67, 0x2c, 0x0a, 0x1f, 0x60, 0x0d, 0x61, 0x7b, 0xd9, 0x0b, 0x7d, 0x84, 0xd7, 0xf2, 0xd8, 0x15, - 0xb1, 0x17, 0xc4, 0xbe, 0xb3, 0x94, 0xd8, 0xae, 0x24, 0x86, 0x67, 0x48, 0xbc, 0x6a, 0x2a, 0xb4, - 0x16, 0x56, 0x5a, 0xfd, 0x5a, 0x6b, 0x43, 0x4b, 0x6c, 0xa3, 0x7c, 0xbd, 0x2c, 0x43, 0x47, 0xb0, - 0xab, 0x09, 0x47, 0x0d, 0xf7, 0x7c, 0xa5, 0x7d, 0xe7, 0x2f, 0xf6, 0xea, 0x21, 0xdb, 0x7c, 0x2c, - 0x52, 0xcf, 0x32, 0x95, 0xfc, 0xde, 0x9a, 0x55, 0xd5, 0x12, 0xdb, 0x57, 0xf4, 0x5f, 0x75, 0x1d, - 0xfe, 0x0c, 0xe0, 0xd5, 0xdf, 0x6c, 0x20, 0x0a, 0xdb, 0xab, 0xfb, 0x01, 0xd5, 0x7e, 0x3a, 0xc5, - 0xdc, 0x84, 0x2b, 0xbb, 0x81, 0x62, 0xb9, 0x97, 0xb7, 0xf0, 0xc6, 0xd2, 0xeb, 0x58, 0x44, 0x49, - 0xc8, 0xcb, 0x24, 0x3a, 0x65, 0x66, 0xab, 0xf5, 0xb6, 0x47, 0x7d, 0x52, 0xe7, 0x95, 0x34, 0x79, - 0x25, 0x2f, 0x9b, 0x40, 0x5b, 0x17, 0xca, 0x77, 0x1f, 0x7f, 0x33, 0x81, 0xbd, 0xa7, 0xdb, 0x1c, - 0xe8, 0x2e, 0x25, 0x87, 0x3f, 0x01, 0xb8, 0xbb, 0xc9, 0xf3, 0xff, 0xbf, 0xf5, 0x40, 0xc7, 0xb7, - 0x7e, 0xd8, 0xed, 0x7f, 0x9a, 0xf0, 0xaf, 0x31, 0xb6, 0x0e, 0x4f, 0x0a, 0x03, 0x9c, 0x16, 0x06, - 0xf8, 0x5e, 0x18, 0xe0, 0x78, 0x61, 0xb4, 0x4e, 0x17, 0x46, 0xeb, 0xcb, 0xc2, 0x68, 0xbd, 0xb9, - 0xef, 0x07, 0xf2, 0x7d, 0xee, 0x92, 0xb1, 0x88, 0x68, 0xd3, 0xf8, 0x6e, 0xc8, 0xdc, 0x4c, 0x9f, - 0xe8, 0x64, 0x44, 0xa7, 0x2b, 0x1f, 0x9c, 0x9c, 0x25, 0x3c, 0x73, 0x77, 0xaa, 0xb9, 0xdc, 0xfb, - 0x19, 0x00, 0x00, 0xff, 0xff, 0x7d, 0x0f, 0xfb, 0x5c, 0x4a, 0x04, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x93, 0xc1, 0x6e, 0xd3, 0x30, + 0x18, 0xc7, 0x6b, 0x3a, 0x26, 0x70, 0xa1, 0x14, 0x33, 0xb4, 0x52, 0x89, 0xa4, 0x32, 0x42, 0xaa, + 0x84, 0xb0, 0xb5, 0x4e, 0xe2, 0x00, 0x9c, 0x32, 0x24, 0xc4, 0x05, 0xa6, 0x00, 0x42, 0xe2, 0x52, + 0x9c, 0xc6, 0x84, 0x88, 0x24, 0x8e, 0x12, 0xa7, 0x6b, 0x0f, 0xbc, 0x01, 0x87, 0x3d, 0x05, 0xcf, + 0xb2, 0xe3, 0x8e, 0x88, 0x43, 0x41, 0xe9, 0x1b, 0xf0, 0x04, 0x28, 0x89, 0xe3, 0x96, 0xd2, 0x01, + 0xbb, 0xd5, 0xf5, 0xef, 0xfb, 0xfe, 0xfe, 0x7f, 0xdf, 0x3f, 0xf0, 0x4e, 0xe8, 0x07, 0x1f, 0x67, + 0x47, 0x6c, 0x46, 0x45, 0xcc, 0x13, 0x26, 0x45, 0x92, 0xd2, 0xc9, 0x1e, 0xf5, 0x78, 0xc4, 0x53, + 0x3f, 0x25, 0x71, 0x22, 0xa4, 0x40, 0x37, 0x6b, 0x88, 0x68, 0x88, 0x4c, 0xf6, 0x7a, 0x3b, 0x9e, + 0xf0, 0x44, 0x49, 0xd0, 0xe2, 0x57, 0x05, 0xf7, 0x4c, 0x4f, 0x08, 0x2f, 0xe0, 0xb4, 0x3c, 0x39, + 0xd9, 0x7b, 0x2a, 0xfd, 0x90, 0xa7, 0x92, 0x85, 0xb1, 0x02, 0x8c, 0x75, 0xc0, 0xcd, 0x12, 0x26, + 0x7d, 0x11, 0xa9, 0x7b, 0xbc, 0xf9, 0x49, 0xa1, 0x70, 0x79, 0x90, 0xfe, 0x9d, 0x89, 0x59, 0xc2, + 0x42, 0xc5, 0xe0, 0x6f, 0x4d, 0x78, 0xe5, 0x69, 0xe5, 0xe3, 0xa5, 0x64, 0x92, 0xa3, 0x47, 0x70, + 0xbb, 0x02, 0xba, 0xa0, 0x0f, 0x06, 0xad, 0xe1, 0x6d, 0xb2, 0xd1, 0x17, 0x39, 0x2c, 0x21, 0x6b, + 0xeb, 0x64, 0x6e, 0x36, 0x6c, 0x55, 0x82, 0x1e, 0xc3, 0x4e, 0xc4, 0xa7, 0x72, 0x54, 0x93, 0x23, + 0xdf, 0xed, 0x5e, 0xe8, 0x83, 0xc1, 0x55, 0x0b, 0xe5, 0x73, 0xb3, 0xfd, 0x9c, 0x4f, 0xe5, 0x0b, + 0x75, 0xf5, 0xec, 0x89, 0xdd, 0x8e, 0x56, 0xcf, 0x2e, 0x7a, 0x03, 0x2f, 0x6b, 0x89, 0x6e, 0xb3, + 0xdf, 0x1c, 0xb4, 0x86, 0xe6, 0x19, 0xea, 0x75, 0x95, 0xd5, 0x2d, 0xf4, 0x7f, 0xce, 0xcd, 0xce, + 0x8c, 0x85, 0xc1, 0x43, 0xac, 0x21, 0x6c, 0x2f, 0x7b, 0xa1, 0x4f, 0xf0, 0x46, 0x16, 0x39, 0x22, + 0x72, 0xfd, 0xc8, 0x1b, 0x2d, 0x25, 0xb6, 0x4a, 0x89, 0xc1, 0x19, 0x12, 0xaf, 0xeb, 0x0a, 0xad, + 0x85, 0x95, 0x56, 0xaf, 0xd2, 0xda, 0xd0, 0x12, 0xdb, 0x28, 0x5b, 0x2f, 0x4b, 0xd1, 0x11, 0xec, + 0x68, 0x62, 0xa4, 0x86, 0x7b, 0xb1, 0xd4, 0xbe, 0xf7, 0x0f, 0x7b, 0xd5, 0x90, 0x6d, 0x3e, 0x16, + 0x89, 0x6b, 0x99, 0x4a, 0x7e, 0x77, 0xcd, 0xaa, 0x6a, 0x89, 0xed, 0x6b, 0xfa, 0xaf, 0xaa, 0x0e, + 0x7f, 0x01, 0xf0, 0xfa, 0x1f, 0x36, 0x10, 0x85, 0xad, 0xd5, 0xfd, 0x80, 0x72, 0x3f, 0xed, 0x7c, + 0x6e, 0xc2, 0x95, 0xdd, 0x40, 0xb1, 0xdc, 0xcb, 0x3b, 0x78, 0x6b, 0xe9, 0x75, 0x2c, 0xc2, 0x38, + 0xe0, 0x45, 0x12, 0x47, 0x45, 0x66, 0xcb, 0xf5, 0xb6, 0x86, 0x3d, 0x52, 0xe5, 0x95, 0xd4, 0x79, + 0x25, 0xaf, 0xea, 0x40, 0x5b, 0x97, 0x8a, 0x77, 0x1f, 0x7f, 0x37, 0x81, 0xbd, 0xab, 0xdb, 0x1c, + 0xe8, 0x2e, 0x05, 0x87, 0x3f, 0x03, 0xb8, 0xb3, 0xc9, 0xf3, 0xf9, 0xdf, 0x7a, 0xa0, 0xe3, 0x5b, + 0x3d, 0xec, 0xee, 0x7f, 0x4d, 0xf8, 0xf7, 0x18, 0x5b, 0x87, 0x27, 0xb9, 0x01, 0x4e, 0x73, 0x03, + 0xfc, 0xc8, 0x0d, 0x70, 0xbc, 0x30, 0x1a, 0xa7, 0x0b, 0xa3, 0xf1, 0x75, 0x61, 0x34, 0xde, 0x3e, + 0xf0, 0x7c, 0xf9, 0x21, 0x73, 0xc8, 0x58, 0x84, 0xb4, 0x6e, 0x7c, 0x3f, 0x60, 0x4e, 0xaa, 0x4f, + 0x74, 0xb2, 0x4f, 0xa7, 0x2b, 0x1f, 0x9c, 0x9c, 0xc5, 0x3c, 0x75, 0xb6, 0xcb, 0xb9, 0xec, 0xff, + 0x0a, 0x00, 0x00, 0xff, 0xff, 0x3c, 0x14, 0x77, 0x32, 0x4a, 0x04, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/operators/types/genesis_test.go b/x/operators/types/genesis_test.go index 35d8e919..fc78c97e 100644 --- a/x/operators/types/genesis_test.go +++ b/x/operators/types/genesis_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/milkyway-labs/milkyway/v2/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/x/operators/types" ) func TestGenesisState_Validate(t *testing.T) { diff --git a/x/operators/types/keys_test.go b/x/operators/types/keys_test.go index dbf3e275..b16327c6 100644 --- a/x/operators/types/keys_test.go +++ b/x/operators/types/keys_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/milkyway-labs/milkyway/v2/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/x/operators/types" ) func TestSplitInactivatingOperatorQueueKey(t *testing.T) { diff --git a/x/operators/types/messages.pb.go b/x/operators/types/messages.pb.go index b2d06989..6e05c755 100644 --- a/x/operators/types/messages.pb.go +++ b/x/operators/types/messages.pb.go @@ -906,67 +906,67 @@ var fileDescriptor_376ca0aafe99868c = []byte{ // 997 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x57, 0xcf, 0x6f, 0xe3, 0x44, 0x14, 0xae, 0xfb, 0x6b, 0xe9, 0x84, 0xb6, 0x5b, 0xd3, 0xd5, 0x26, 0xde, 0xad, 0xbd, 0xb2, 0xba, - 0xab, 0x10, 0x5a, 0xbb, 0x4d, 0x59, 0x24, 0xb2, 0xa7, 0x66, 0xcb, 0x01, 0x44, 0xd8, 0xca, 0x4b, + 0xab, 0x10, 0x5a, 0xbb, 0x3f, 0x58, 0x24, 0xb2, 0xa7, 0x66, 0xcb, 0x01, 0x44, 0xd8, 0xca, 0x4b, 0x25, 0xc4, 0x25, 0x9a, 0xc4, 0x53, 0xd7, 0x34, 0xf6, 0x44, 0x33, 0x4e, 0xb2, 0xb9, 0x21, 0xc4, 0x09, 0x09, 0x89, 0xbf, 0x81, 0xe3, 0x9e, 0x7a, 0xe0, 0x8e, 0xc4, 0x69, 0x8f, 0x0b, 0x27, 0x4e, 0x01, 0xa5, 0x87, 0x9e, 0x10, 0x52, 0xff, 0x02, 0xe4, 0xf1, 0xd8, 0x75, 0x1c, 0x3b, 0x34, 0x8b, - 0x54, 0x71, 0x69, 0x3b, 0xf3, 0xbe, 0x37, 0xef, 0x7d, 0xef, 0x3d, 0x7f, 0x33, 0x05, 0x9b, 0x8e, - 0xdd, 0x3a, 0xed, 0xf7, 0x60, 0x5f, 0xc7, 0x6d, 0x44, 0xa0, 0x87, 0x09, 0xd5, 0xbb, 0xbb, 0xba, - 0x83, 0x28, 0x85, 0x16, 0xa2, 0x5a, 0x9b, 0x60, 0x0f, 0x8b, 0x77, 0x42, 0x94, 0x16, 0xa1, 0xb4, - 0xee, 0xae, 0xb4, 0x06, 0x1d, 0xdb, 0xc5, 0x3a, 0xfb, 0x19, 0x20, 0xa5, 0x42, 0x13, 0x53, 0x07, - 0xd3, 0x3a, 0x5b, 0xe9, 0xc1, 0x82, 0x9b, 0xe4, 0x60, 0xa5, 0x37, 0x20, 0x45, 0x7a, 0x77, 0xb7, - 0x81, 0x3c, 0xb8, 0xab, 0x37, 0xb1, 0xed, 0x8e, 0xd9, 0xdd, 0xd3, 0xc8, 0xee, 0x2f, 0xb8, 0xfd, + 0x14, 0x71, 0x69, 0x3b, 0xf3, 0xbe, 0x37, 0xef, 0x7d, 0xef, 0x3d, 0x7f, 0x33, 0x05, 0x9b, 0x8e, + 0xdd, 0x3c, 0xeb, 0x75, 0x61, 0x4f, 0xc7, 0x2d, 0x44, 0xa0, 0x87, 0x09, 0xd5, 0x3b, 0xbb, 0xba, + 0x83, 0x28, 0x85, 0x16, 0xa2, 0x5a, 0x8b, 0x60, 0x0f, 0x8b, 0x77, 0x42, 0x94, 0x16, 0xa1, 0xb4, + 0xce, 0xae, 0xb4, 0x06, 0x1d, 0xdb, 0xc5, 0x3a, 0xfb, 0x19, 0x20, 0xa5, 0x42, 0x03, 0x53, 0x07, + 0xd3, 0x1a, 0x5b, 0xe9, 0xc1, 0x82, 0x9b, 0xe4, 0x60, 0xa5, 0xd7, 0x21, 0x45, 0x7a, 0x67, 0xb7, + 0x8e, 0x3c, 0xb8, 0xab, 0x37, 0xb0, 0xed, 0x8e, 0xd8, 0xdd, 0xb3, 0xc8, 0xee, 0x2f, 0xb8, 0xfd, 0x2e, 0xb7, 0x3b, 0xd4, 0x62, 0x29, 0x52, 0x8b, 0x1b, 0xd6, 0x2d, 0x6c, 0xe1, 0x20, 0xa0, 0xff, - 0x17, 0xdf, 0x55, 0xd3, 0x99, 0xb5, 0x21, 0x81, 0x0e, 0x9d, 0x8c, 0x71, 0xb0, 0x89, 0x5a, 0x1c, - 0xa3, 0x7e, 0x3b, 0x07, 0xde, 0xa9, 0x51, 0xcb, 0x40, 0x96, 0x4d, 0x3d, 0x44, 0x9e, 0x71, 0xa0, - 0xb8, 0x03, 0x16, 0x29, 0x72, 0x4d, 0x44, 0xf2, 0xc2, 0x03, 0xa1, 0xb8, 0x54, 0xcd, 0xff, 0xf6, - 0xd3, 0xf6, 0x3a, 0x27, 0xbc, 0x6f, 0x9a, 0x04, 0x51, 0xfa, 0xdc, 0x23, 0xb6, 0x6b, 0x19, 0x1c, - 0x27, 0x6e, 0x81, 0x5b, 0x0e, 0x76, 0xed, 0x53, 0x44, 0xf2, 0xb3, 0xcc, 0x45, 0xbc, 0x1c, 0x28, - 0x2b, 0x7d, 0xe8, 0xb4, 0x2a, 0x2a, 0x37, 0xa8, 0x46, 0x08, 0xf1, 0xd1, 0x3d, 0xd4, 0xa0, 0xb6, - 0x87, 0xf2, 0x73, 0x49, 0x34, 0x37, 0xa8, 0x46, 0x08, 0x11, 0x3f, 0x02, 0xb9, 0xb6, 0xdd, 0xf4, - 0x3a, 0x04, 0xd5, 0x3b, 0xa4, 0x95, 0x9f, 0x67, 0x1e, 0x9b, 0xc3, 0x81, 0x02, 0x0e, 0x83, 0xed, - 0x23, 0xe3, 0xd3, 0xcb, 0x81, 0x22, 0x06, 0xfe, 0x31, 0xa8, 0x6a, 0x00, 0xbe, 0x3a, 0x22, 0x2d, - 0xf1, 0x2b, 0x00, 0x8e, 0x11, 0xaa, 0x43, 0x07, 0x77, 0x5c, 0x2f, 0xbf, 0xf0, 0x60, 0xae, 0x98, - 0x2b, 0x17, 0x34, 0xce, 0xca, 0x6f, 0x9c, 0xc6, 0x1b, 0xa3, 0x3d, 0xc5, 0xb6, 0x5b, 0xdd, 0x79, - 0x35, 0x50, 0x66, 0x5e, 0xfe, 0xa1, 0x14, 0x2d, 0xdb, 0x3b, 0xe9, 0x34, 0xb4, 0x26, 0x76, 0x78, - 0xcf, 0xf9, 0xaf, 0x6d, 0x6a, 0x9e, 0xea, 0x5e, 0xbf, 0x8d, 0x28, 0x73, 0xa0, 0xc6, 0xd2, 0x31, - 0x42, 0xfb, 0xec, 0xf4, 0xca, 0xd6, 0x37, 0x17, 0x67, 0x25, 0x5e, 0x9b, 0xef, 0x2e, 0xce, 0x4a, - 0xf7, 0xa3, 0x66, 0xa4, 0x94, 0x5b, 0xfd, 0x02, 0xdc, 0x4b, 0xd9, 0x36, 0x10, 0x6d, 0x63, 0x97, - 0x22, 0xf1, 0x43, 0xb0, 0xea, 0xa2, 0x5e, 0x3d, 0x6c, 0x63, 0xdd, 0x36, 0x59, 0x5b, 0x96, 0xab, - 0x6b, 0xc3, 0x81, 0xb2, 0xfc, 0x19, 0xea, 0x85, 0x1e, 0x1f, 0x1f, 0x18, 0xcb, 0x6e, 0x6c, 0x69, - 0xaa, 0xbf, 0xcc, 0x82, 0xb5, 0x1a, 0xb5, 0x8e, 0xda, 0x26, 0xf4, 0xd0, 0x7f, 0x68, 0xaf, 0x0e, - 0x72, 0xf1, 0xf0, 0xb3, 0x2c, 0xfc, 0x8a, 0xdf, 0x82, 0x58, 0x6c, 0x80, 0xa3, 0xc0, 0xe2, 0xbb, - 0x57, 0xf3, 0x10, 0x74, 0x78, 0xf5, 0x72, 0xa0, 0xe4, 0x82, 0x0e, 0xb9, 0xd0, 0x41, 0xe9, 0xc3, - 0x30, 0x3f, 0xf5, 0x30, 0x2c, 0xbc, 0xd9, 0x30, 0x54, 0x4a, 0x89, 0x06, 0x49, 0xf1, 0x06, 0x8d, - 0x96, 0x4b, 0xbd, 0x07, 0x0a, 0x63, 0x9b, 0x61, 0x73, 0xd4, 0x97, 0x02, 0xb8, 0x53, 0xa3, 0xd6, - 0x01, 0x82, 0x4d, 0xcf, 0xee, 0xde, 0x6c, 0x95, 0x2b, 0x5a, 0x82, 0x85, 0x1c, 0x67, 0x31, 0x9e, + 0x17, 0xdf, 0x55, 0xd3, 0x99, 0xb5, 0x20, 0x81, 0x0e, 0x1d, 0x8f, 0x71, 0xb0, 0x89, 0x9a, 0x1c, + 0xa3, 0x7e, 0x3b, 0x07, 0xde, 0xa9, 0x52, 0xcb, 0x40, 0x96, 0x4d, 0x3d, 0x44, 0x9e, 0x71, 0xa0, + 0xb8, 0x03, 0x16, 0x29, 0x72, 0x4d, 0x44, 0xf2, 0xc2, 0x03, 0xa1, 0xb8, 0x54, 0xc9, 0xff, 0xf6, + 0xd3, 0xf6, 0x3a, 0x27, 0x7c, 0x60, 0x9a, 0x04, 0x51, 0xfa, 0xdc, 0x23, 0xb6, 0x6b, 0x19, 0x1c, + 0x27, 0x6e, 0x81, 0x5b, 0x0e, 0x76, 0xed, 0x33, 0x44, 0xf2, 0xb3, 0xcc, 0x45, 0xbc, 0xea, 0x2b, + 0x2b, 0x3d, 0xe8, 0x34, 0xcb, 0x2a, 0x37, 0xa8, 0x46, 0x08, 0xf1, 0xd1, 0x5d, 0x54, 0xa7, 0xb6, + 0x87, 0xf2, 0x73, 0x49, 0x34, 0x37, 0xa8, 0x46, 0x08, 0x11, 0x3f, 0x02, 0xb9, 0x96, 0xdd, 0xf0, + 0xda, 0x04, 0xd5, 0xda, 0xa4, 0x99, 0x9f, 0x67, 0x1e, 0x9b, 0x83, 0xbe, 0x02, 0x8e, 0x82, 0xed, + 0x63, 0xe3, 0xd3, 0xab, 0xbe, 0x22, 0x06, 0xfe, 0x31, 0xa8, 0x6a, 0x00, 0xbe, 0x3a, 0x26, 0x4d, + 0xf1, 0x2b, 0x00, 0x4e, 0x10, 0xaa, 0x41, 0x07, 0xb7, 0x5d, 0x2f, 0xbf, 0xf0, 0x60, 0xae, 0x98, + 0xdb, 0x2b, 0x68, 0x9c, 0x95, 0xdf, 0x38, 0x8d, 0x37, 0x46, 0x7b, 0x8a, 0x6d, 0xb7, 0xb2, 0xf3, + 0xaa, 0xaf, 0xcc, 0xbc, 0xfc, 0x43, 0x29, 0x5a, 0xb6, 0x77, 0xda, 0xae, 0x6b, 0x0d, 0xec, 0xf0, + 0x9e, 0xf3, 0x5f, 0xdb, 0xd4, 0x3c, 0xd3, 0xbd, 0x5e, 0x0b, 0x51, 0xe6, 0x40, 0x8d, 0xa5, 0x13, + 0x84, 0x0e, 0xd8, 0xe9, 0xe5, 0xad, 0x6f, 0x2e, 0xcf, 0x4b, 0xbc, 0x36, 0xdf, 0x5d, 0x9e, 0x97, + 0xee, 0x47, 0xcd, 0x48, 0x29, 0xb7, 0xfa, 0x05, 0xb8, 0x97, 0xb2, 0x6d, 0x20, 0xda, 0xc2, 0x2e, + 0x45, 0xe2, 0x87, 0x60, 0xd5, 0x45, 0xdd, 0x5a, 0xd8, 0xc6, 0x9a, 0x6d, 0xb2, 0xb6, 0x2c, 0x57, + 0xd6, 0x06, 0x7d, 0x65, 0xf9, 0x33, 0xd4, 0x0d, 0x3d, 0x3e, 0x3e, 0x34, 0x96, 0xdd, 0xd8, 0xd2, + 0x54, 0x7f, 0x99, 0x05, 0x6b, 0x55, 0x6a, 0x1d, 0xb7, 0x4c, 0xe8, 0xa1, 0xff, 0xd0, 0x5e, 0x1d, + 0xe4, 0xe2, 0xe1, 0x67, 0x59, 0xf8, 0x15, 0xbf, 0x05, 0xb1, 0xd8, 0x00, 0x47, 0x81, 0xc5, 0x77, + 0xaf, 0xe7, 0x21, 0xe8, 0xf0, 0xea, 0x55, 0x5f, 0xc9, 0x05, 0x1d, 0x72, 0xa1, 0x83, 0xd2, 0x87, + 0x61, 0x7e, 0xe2, 0x61, 0x58, 0x78, 0xb3, 0x61, 0x28, 0x97, 0x12, 0x0d, 0x92, 0xe2, 0x0d, 0x1a, + 0x2e, 0x97, 0x7a, 0x0f, 0x14, 0x46, 0x36, 0xc3, 0xe6, 0xa8, 0x2f, 0x05, 0x70, 0xa7, 0x4a, 0xad, + 0x43, 0x04, 0x1b, 0x9e, 0xdd, 0x99, 0x6e, 0x95, 0xcb, 0x5a, 0x82, 0x85, 0x1c, 0x67, 0x31, 0x9a, 0x92, 0xaa, 0x80, 0x8d, 0x54, 0x43, 0x92, 0x8d, 0xf1, 0xff, 0x63, 0x63, 0x64, 0xb1, 0x31, 0xb2, - 0xd9, 0xfc, 0x28, 0xb0, 0xe9, 0x3f, 0x40, 0x2d, 0x74, 0xb3, 0x4c, 0x26, 0x4e, 0xd7, 0x68, 0x3a, - 0x7c, 0xba, 0x46, 0x37, 0x23, 0x06, 0x7f, 0x09, 0x60, 0xbd, 0x46, 0xad, 0xe7, 0xc8, 0x0b, 0x4d, - 0x87, 0x4c, 0xe3, 0x6f, 0xe2, 0x13, 0x7e, 0x0a, 0x16, 0x83, 0x0b, 0x85, 0x7d, 0xc1, 0xb9, 0xf2, - 0x43, 0x2d, 0xf5, 0xa6, 0xd4, 0x46, 0x33, 0xab, 0xce, 0xfb, 0xba, 0x69, 0x70, 0xd7, 0xca, 0x76, - 0xa2, 0x12, 0x1b, 0xf1, 0x4a, 0x8c, 0xd1, 0x52, 0x65, 0x70, 0x3f, 0x6d, 0x3f, 0xaa, 0xc7, 0xdf, - 0x02, 0x03, 0x7c, 0x4e, 0xa0, 0x4b, 0x8f, 0xaf, 0xa4, 0xf2, 0x59, 0xcf, 0x45, 0x84, 0x9e, 0xd8, - 0xed, 0x9b, 0xa8, 0xcb, 0x63, 0xb0, 0xe4, 0xcb, 0x31, 0x34, 0x1d, 0xdb, 0xe5, 0xe2, 0x96, 0x1d, - 0xe5, 0x2d, 0x17, 0xf5, 0xf6, 0x7d, 0x64, 0xe5, 0x71, 0xa2, 0x12, 0x0f, 0xe3, 0x95, 0xc8, 0x24, - 0xa4, 0x3e, 0x02, 0x9b, 0x93, 0xec, 0x51, 0x65, 0x7e, 0x15, 0xc0, 0x6a, 0xa4, 0x52, 0x7c, 0x48, - 0x3e, 0x01, 0x4b, 0xb0, 0xe3, 0x9d, 0x60, 0x62, 0x7b, 0x7d, 0x5e, 0x8f, 0xad, 0xcb, 0x81, 0x72, - 0x3b, 0xd0, 0xc6, 0xc8, 0xa4, 0x66, 0x66, 0x7f, 0xe5, 0x2e, 0x3e, 0x89, 0xa6, 0x61, 0x96, 0x4d, - 0xc3, 0x46, 0xc6, 0x34, 0xa4, 0x4e, 0x01, 0xe3, 0x7e, 0x75, 0x98, 0x4f, 0x3f, 0xed, 0x79, 0x92, - 0xc8, 0x5f, 0x2d, 0x80, 0xbb, 0x89, 0xad, 0x90, 0x6e, 0xf9, 0xe7, 0x5b, 0x60, 0xae, 0x46, 0x2d, - 0x91, 0x80, 0xdb, 0x63, 0xaf, 0x97, 0x52, 0x46, 0x6a, 0x29, 0x77, 0xac, 0x54, 0xbe, 0x3e, 0x36, - 0xba, 0x8f, 0x5b, 0x60, 0x25, 0x71, 0xa1, 0x16, 0xb3, 0x4f, 0x19, 0x45, 0x4a, 0x3b, 0xd7, 0x45, - 0x46, 0xd1, 0x5e, 0x00, 0x31, 0xe5, 0x72, 0xd9, 0xca, 0x3e, 0x67, 0x1c, 0x2d, 0xbd, 0x3f, 0x0d, - 0x3a, 0x1e, 0xd9, 0x98, 0x2a, 0xb2, 0x31, 0x55, 0xe4, 0x6c, 0xe1, 0xf6, 0x2b, 0x9c, 0x10, 0xed, - 0xe2, 0x24, 0x06, 0x71, 0xe4, 0xa4, 0x0a, 0xa7, 0x8b, 0xac, 0xf8, 0xbd, 0x00, 0x0a, 0xd9, 0x8a, - 0xb2, 0x97, 0x7d, 0x5e, 0xa6, 0x93, 0xf4, 0xe4, 0x0d, 0x9c, 0xa2, 0x7c, 0x3a, 0x60, 0x6d, 0x5c, - 0xf0, 0xdf, 0xcb, 0x3e, 0x71, 0x0c, 0x2c, 0xed, 0x4d, 0x01, 0x8e, 0xc2, 0x1e, 0x83, 0xb7, 0x47, - 0xd4, 0xe3, 0xd1, 0xbf, 0x8d, 0x2a, 0x0f, 0xa6, 0x5d, 0x0f, 0x17, 0xc6, 0x91, 0x16, 0xbe, 0xbe, - 0x38, 0x2b, 0x09, 0xd5, 0xc3, 0x57, 0x43, 0x59, 0x78, 0x3d, 0x94, 0x85, 0x3f, 0x87, 0xb2, 0xf0, - 0xc3, 0xb9, 0x3c, 0xf3, 0xfa, 0x5c, 0x9e, 0xf9, 0xfd, 0x5c, 0x9e, 0xf9, 0xf2, 0x83, 0xd8, 0x8b, - 0x3b, 0x3c, 0x7a, 0xbb, 0x05, 0x1b, 0x34, 0x5a, 0xe9, 0xdd, 0xb2, 0xfe, 0x22, 0x26, 0x1c, 0xec, - 0x15, 0xde, 0x58, 0x64, 0xff, 0xd4, 0xec, 0xfd, 0x13, 0x00, 0x00, 0xff, 0xff, 0x40, 0x6f, 0x7e, - 0xad, 0xf8, 0x0d, 0x00, 0x00, + 0xd9, 0xfc, 0x28, 0xb0, 0xe9, 0x3f, 0x44, 0x4d, 0x34, 0x5d, 0x26, 0x63, 0xa7, 0x6b, 0x38, 0x1d, + 0x3e, 0x5d, 0xc3, 0x9b, 0x11, 0x83, 0xbf, 0x04, 0xb0, 0x5e, 0xa5, 0xd6, 0x73, 0xe4, 0x85, 0xa6, + 0x23, 0xa6, 0xf1, 0xd3, 0xf8, 0x84, 0x9f, 0x82, 0xc5, 0xe0, 0x42, 0x61, 0x5f, 0x70, 0x6e, 0xef, + 0xa1, 0x96, 0x7a, 0x53, 0x6a, 0xc3, 0x99, 0x55, 0xe6, 0x7d, 0xdd, 0x34, 0xb8, 0x6b, 0x79, 0x3b, + 0x51, 0x89, 0x8d, 0x78, 0x25, 0x46, 0x68, 0xa9, 0x32, 0xb8, 0x9f, 0xb6, 0x1f, 0xd5, 0xe3, 0x6f, + 0x81, 0x01, 0x3e, 0x27, 0xd0, 0xa5, 0x27, 0xd7, 0x52, 0xf9, 0xac, 0xeb, 0x22, 0x42, 0x4f, 0xed, + 0xd6, 0x34, 0xea, 0xf2, 0x18, 0x2c, 0xf9, 0x72, 0x0c, 0x4d, 0xc7, 0x76, 0xb9, 0xb8, 0x65, 0x47, + 0x79, 0xcb, 0x45, 0xdd, 0x03, 0x1f, 0x59, 0x7e, 0x9c, 0xa8, 0xc4, 0xc3, 0x78, 0x25, 0x32, 0x09, + 0xa9, 0x8f, 0xc0, 0xe6, 0x38, 0x7b, 0x54, 0x99, 0x5f, 0x05, 0xb0, 0x1a, 0xa9, 0x14, 0x1f, 0x92, + 0x4f, 0xc0, 0x12, 0x6c, 0x7b, 0xa7, 0x98, 0xd8, 0x5e, 0x8f, 0xd7, 0x63, 0xeb, 0xaa, 0xaf, 0xdc, + 0x0e, 0xb4, 0x31, 0x32, 0xa9, 0x99, 0xd9, 0x5f, 0xbb, 0x8b, 0x4f, 0xa2, 0x69, 0x98, 0x65, 0xd3, + 0xb0, 0x91, 0x31, 0x0d, 0xa9, 0x53, 0xc0, 0xb8, 0x5f, 0x1f, 0xe6, 0xd3, 0x4f, 0x7b, 0x9e, 0x24, + 0xf2, 0x57, 0x0b, 0xe0, 0x6e, 0x62, 0x2b, 0xa4, 0xbb, 0xf7, 0xf3, 0x2d, 0x30, 0x57, 0xa5, 0x96, + 0x48, 0xc0, 0xed, 0x91, 0xd7, 0x4b, 0x29, 0x23, 0xb5, 0x94, 0x3b, 0x56, 0xda, 0xbb, 0x39, 0x36, + 0xba, 0x8f, 0x9b, 0x60, 0x25, 0x71, 0xa1, 0x16, 0xb3, 0x4f, 0x19, 0x46, 0x4a, 0x3b, 0x37, 0x45, + 0x46, 0xd1, 0x5e, 0x00, 0x31, 0xe5, 0x72, 0xd9, 0xca, 0x3e, 0x67, 0x14, 0x2d, 0xbd, 0x3f, 0x09, + 0x3a, 0x1e, 0xd9, 0x98, 0x28, 0xb2, 0x31, 0x51, 0xe4, 0x6c, 0xe1, 0xf6, 0x2b, 0x9c, 0x10, 0xed, + 0xe2, 0x38, 0x06, 0x71, 0xe4, 0xb8, 0x0a, 0xa7, 0x8b, 0xac, 0xf8, 0xbd, 0x00, 0x0a, 0xd9, 0x8a, + 0xb2, 0x9f, 0x7d, 0x5e, 0xa6, 0x93, 0xf4, 0xe4, 0x0d, 0x9c, 0xa2, 0x7c, 0xda, 0x60, 0x6d, 0x54, + 0xf0, 0xdf, 0xcb, 0x3e, 0x71, 0x04, 0x2c, 0xed, 0x4f, 0x00, 0x8e, 0xc2, 0x9e, 0x80, 0xb7, 0x87, + 0xd4, 0xe3, 0xd1, 0xbf, 0x8d, 0x2a, 0x0f, 0xa6, 0xdd, 0x0c, 0x17, 0xc6, 0x91, 0x16, 0xbe, 0xbe, + 0x3c, 0x2f, 0x09, 0x95, 0xa3, 0x57, 0x03, 0x59, 0x78, 0x3d, 0x90, 0x85, 0x3f, 0x07, 0xb2, 0xf0, + 0xc3, 0x85, 0x3c, 0xf3, 0xfa, 0x42, 0x9e, 0xf9, 0xfd, 0x42, 0x9e, 0xf9, 0xf2, 0x83, 0xd8, 0x8b, + 0x3b, 0x3c, 0x7a, 0xbb, 0x09, 0xeb, 0x34, 0x5a, 0xe9, 0x9d, 0x7d, 0xfd, 0x45, 0x4c, 0x38, 0xd8, + 0x2b, 0xbc, 0xbe, 0xc8, 0xfe, 0xa9, 0xd9, 0xff, 0x27, 0x00, 0x00, 0xff, 0xff, 0x01, 0x74, 0xf2, + 0xc3, 0xf8, 0x0d, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/operators/types/messages_test.go b/x/operators/types/messages_test.go index 8a9ecd4c..a08778b1 100644 --- a/x/operators/types/messages_test.go +++ b/x/operators/types/messages_test.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - "github.com/milkyway-labs/milkyway/v2/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/x/operators/types" ) var msgRegisterOperator = types.NewMsgRegisterOperator( diff --git a/x/operators/types/models.go b/x/operators/types/models.go index ad9bfa6b..9f67af38 100644 --- a/x/operators/types/models.go +++ b/x/operators/types/models.go @@ -9,7 +9,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/milkyway-labs/milkyway/v2/utils" + "github.com/milkyway-labs/milkyway/v3/utils" ) // GetOperatorAddress generates an operator address from its id diff --git a/x/operators/types/models.pb.go b/x/operators/types/models.pb.go index 87f34aa5..faca72cf 100644 --- a/x/operators/types/models.pb.go +++ b/x/operators/types/models.pb.go @@ -177,43 +177,43 @@ var fileDescriptor_8fb40b1089c56c16 = []byte{ // 615 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x93, 0xc1, 0x6a, 0x1b, 0x3d, 0x10, 0xc7, 0x77, 0x9d, 0xc4, 0x49, 0x14, 0x3e, 0xc7, 0x88, 0x7c, 0x61, 0xe3, 0x84, 0xb5, 0x49, - 0x29, 0x98, 0x96, 0x48, 0xb5, 0x03, 0xbd, 0xf5, 0x60, 0xc7, 0x6e, 0x31, 0x84, 0xc4, 0xc8, 0x76, + 0x29, 0x98, 0x96, 0x48, 0x75, 0x02, 0xbd, 0xf5, 0x60, 0xc7, 0x6e, 0x31, 0x84, 0xc4, 0xc8, 0x76, 0x0f, 0x3d, 0xd4, 0xc8, 0xbb, 0xc2, 0x11, 0xf6, 0xae, 0x8c, 0x24, 0x3b, 0x35, 0xf4, 0x01, 0x7a, 0x29, 0x14, 0xfa, 0x08, 0xbd, 0xf5, 0xdc, 0x87, 0xc8, 0x31, 0xf4, 0x54, 0x7a, 0x70, 0x5b, 0xe7, - 0x45, 0x8a, 0x77, 0xb5, 0x49, 0x08, 0x29, 0xed, 0x69, 0x77, 0xf4, 0xff, 0xcf, 0xfc, 0x86, 0xd1, - 0x08, 0xec, 0x07, 0x7c, 0x38, 0x98, 0x9e, 0xd3, 0x29, 0x16, 0x23, 0x26, 0xa9, 0x16, 0x52, 0xe1, - 0x49, 0x09, 0x07, 0xc2, 0x67, 0x43, 0x85, 0x46, 0x52, 0x68, 0x01, 0xff, 0x4f, 0x3c, 0xe8, 0xda, - 0x83, 0x26, 0xa5, 0xdc, 0x56, 0x5f, 0xf4, 0x45, 0xe4, 0xc0, 0x8b, 0xbf, 0xd8, 0x9c, 0xdb, 0xf1, - 0x84, 0x0a, 0x84, 0xea, 0xc6, 0x42, 0x1c, 0x18, 0xc9, 0x8d, 0x23, 0xdc, 0xa3, 0x8a, 0xe1, 0x49, - 0xa9, 0xc7, 0x34, 0x2d, 0x61, 0x4f, 0xf0, 0x30, 0xd6, 0xf7, 0xdf, 0x2f, 0x83, 0xb5, 0x53, 0x43, - 0x80, 0xdb, 0x20, 0xc5, 0x7d, 0xc7, 0x2e, 0xd8, 0xc5, 0xff, 0xaa, 0xe9, 0xf9, 0x2c, 0x9f, 0x6a, - 0xd4, 0x48, 0x8a, 0xfb, 0xf0, 0x19, 0x48, 0x2b, 0x4d, 0xf5, 0x58, 0x39, 0xa9, 0x82, 0x5d, 0xcc, - 0x94, 0x1f, 0xa2, 0x7b, 0xbb, 0x43, 0x49, 0xa1, 0x56, 0x64, 0x26, 0x26, 0x09, 0x22, 0xb0, 0x42, - 0xfd, 0x80, 0x87, 0xce, 0x52, 0xc1, 0x2e, 0xae, 0x57, 0x9d, 0xaf, 0x5f, 0x0e, 0xb6, 0x4c, 0x93, - 0x15, 0xdf, 0x97, 0x4c, 0xa9, 0x96, 0x96, 0x3c, 0xec, 0x93, 0xd8, 0x06, 0x1d, 0xb0, 0x1a, 0x88, - 0x90, 0x0f, 0x98, 0x74, 0x96, 0x17, 0x19, 0x24, 0x09, 0x17, 0xca, 0x39, 0xeb, 0x29, 0xae, 0x99, - 0xb3, 0x12, 0x2b, 0x26, 0x84, 0x18, 0x6c, 0x8c, 0xb8, 0xa7, 0xc7, 0x92, 0x75, 0xc7, 0x72, 0xe8, - 0xa4, 0x23, 0x52, 0x66, 0x3e, 0xcb, 0x83, 0x66, 0x7c, 0xdc, 0x21, 0xc7, 0x04, 0x18, 0x4b, 0x47, - 0x0e, 0x61, 0x19, 0xac, 0xd2, 0x18, 0xee, 0xac, 0xfe, 0xa5, 0xad, 0xc4, 0x08, 0x3d, 0x90, 0xd6, - 0x62, 0xc0, 0x42, 0xe5, 0xac, 0x15, 0x96, 0x8a, 0x1b, 0xe5, 0x1d, 0x64, 0xfc, 0x8b, 0xe9, 0x22, - 0x33, 0x5d, 0x74, 0x24, 0x78, 0x58, 0x7d, 0x72, 0x31, 0xcb, 0x5b, 0x9f, 0x7f, 0xe4, 0x8b, 0x7d, - 0xae, 0xcf, 0xc6, 0x3d, 0xe4, 0x89, 0xc0, 0x5c, 0x8c, 0xf9, 0x1c, 0x28, 0x7f, 0x80, 0xf5, 0x74, - 0xc4, 0x54, 0x94, 0xa0, 0x88, 0x29, 0x0d, 0xdf, 0x82, 0xac, 0xcf, 0x86, 0xac, 0xbf, 0x18, 0x64, - 0x57, 0x9d, 0x51, 0xc9, 0x94, 0xb3, 0x1e, 0xe1, 0xf6, 0xee, 0xc5, 0xd5, 0x98, 0x17, 0x11, 0x0f, - 0x0d, 0xf1, 0xf1, 0x3f, 0x10, 0x4d, 0x8e, 0x22, 0x9b, 0xd7, 0xa8, 0x56, 0x44, 0xda, 0x7f, 0x0d, - 0x32, 0xc9, 0x2d, 0x36, 0xa9, 0xa4, 0x81, 0x82, 0xc7, 0x60, 0xd3, 0x13, 0x41, 0xc0, 0x95, 0xe2, - 0x22, 0xec, 0x4a, 0xaa, 0x59, 0xb4, 0x21, 0xeb, 0xd5, 0x07, 0x0b, 0xe0, 0xf7, 0x59, 0x7e, 0x37, - 0x2e, 0xaf, 0xfc, 0x01, 0xe2, 0x02, 0x07, 0x54, 0x9f, 0xa1, 0x63, 0xd6, 0xa7, 0xde, 0xb4, 0xc6, - 0x3c, 0x92, 0xb9, 0xc9, 0x25, 0x54, 0xb3, 0x47, 0x1f, 0xed, 0x1b, 0x40, 0xbc, 0x26, 0x30, 0x0f, - 0x76, 0x4f, 0x9b, 0x75, 0x52, 0x69, 0x9f, 0x92, 0x6e, 0xab, 0x5d, 0x69, 0x77, 0x5a, 0xdd, 0xce, - 0x49, 0xab, 0x59, 0x3f, 0x6a, 0x3c, 0x6f, 0xd4, 0x6b, 0x59, 0x0b, 0xe6, 0xc0, 0xf6, 0x5d, 0x43, - 0xe5, 0xa8, 0xdd, 0x78, 0x59, 0xcf, 0xda, 0xb0, 0x00, 0xf6, 0xee, 0x6a, 0x8d, 0x93, 0x48, 0xad, - 0xb4, 0x1b, 0x27, 0x2f, 0xb2, 0x29, 0xb8, 0x07, 0x9c, 0x3f, 0x38, 0xea, 0xd9, 0xa5, 0xdc, 0xf2, - 0xbb, 0x4f, 0xae, 0x55, 0x6d, 0x5f, 0xfc, 0x72, 0xad, 0x8b, 0xb9, 0x6b, 0x5f, 0xce, 0x5d, 0xfb, - 0xe7, 0xdc, 0xb5, 0x3f, 0x5c, 0xb9, 0xd6, 0xe5, 0x95, 0x6b, 0x7d, 0xbb, 0x72, 0xad, 0x57, 0x4f, - 0x6f, 0x4d, 0x34, 0x59, 0xfc, 0x83, 0x21, 0xed, 0xa9, 0xeb, 0x08, 0x4f, 0xca, 0xf8, 0xcd, 0xad, - 0xd7, 0x1c, 0x4d, 0xb9, 0x97, 0x8e, 0x9e, 0xd8, 0xe1, 0xef, 0x00, 0x00, 0x00, 0xff, 0xff, 0x3a, - 0xf5, 0x80, 0x3d, 0xf0, 0x03, 0x00, 0x00, + 0x45, 0x8a, 0x77, 0xb5, 0x4e, 0x08, 0x29, 0xed, 0x69, 0x77, 0xf4, 0xff, 0xcf, 0xfc, 0x86, 0xd1, + 0x08, 0xec, 0x07, 0x7c, 0xd0, 0x9f, 0x5c, 0xd0, 0x09, 0x16, 0x43, 0x26, 0xa9, 0x16, 0x52, 0xe1, + 0x71, 0x09, 0x07, 0xc2, 0x67, 0x03, 0x85, 0x86, 0x52, 0x68, 0x01, 0xff, 0x4f, 0x3c, 0x68, 0xe1, + 0x41, 0xe3, 0x52, 0x6e, 0xab, 0x27, 0x7a, 0x22, 0x72, 0xe0, 0xf9, 0x5f, 0x6c, 0xce, 0xed, 0x78, + 0x42, 0x05, 0x42, 0x75, 0x62, 0x21, 0x0e, 0x8c, 0xe4, 0xc6, 0x11, 0xee, 0x52, 0xc5, 0xf0, 0xb8, + 0xd4, 0x65, 0x9a, 0x96, 0xb0, 0x27, 0x78, 0x18, 0xeb, 0xfb, 0xef, 0x97, 0xc1, 0xda, 0x99, 0x21, + 0xc0, 0x6d, 0x90, 0xe2, 0xbe, 0x63, 0x17, 0xec, 0xe2, 0x7f, 0x95, 0xf4, 0x6c, 0x9a, 0x4f, 0xd5, + 0xab, 0x24, 0xc5, 0x7d, 0xf8, 0x0c, 0xa4, 0x95, 0xa6, 0x7a, 0xa4, 0x9c, 0x54, 0xc1, 0x2e, 0x66, + 0x0e, 0x1f, 0xa2, 0x7b, 0xbb, 0x43, 0x49, 0xa1, 0x66, 0x64, 0x26, 0x26, 0x09, 0x22, 0xb0, 0x42, + 0xfd, 0x80, 0x87, 0xce, 0x52, 0xc1, 0x2e, 0xae, 0x57, 0x9c, 0xaf, 0x5f, 0x0e, 0xb6, 0x4c, 0x93, + 0x65, 0xdf, 0x97, 0x4c, 0xa9, 0xa6, 0x96, 0x3c, 0xec, 0x91, 0xd8, 0x06, 0x1d, 0xb0, 0x1a, 0x88, + 0x90, 0xf7, 0x99, 0x74, 0x96, 0xe7, 0x19, 0x24, 0x09, 0xe7, 0xca, 0x05, 0xeb, 0x2a, 0xae, 0x99, + 0xb3, 0x12, 0x2b, 0x26, 0x84, 0x18, 0x6c, 0x0c, 0xb9, 0xa7, 0x47, 0x92, 0x75, 0x46, 0x72, 0xe0, + 0xa4, 0x23, 0x52, 0x66, 0x36, 0xcd, 0x83, 0x46, 0x7c, 0xdc, 0x26, 0x27, 0x04, 0x18, 0x4b, 0x5b, + 0x0e, 0xe0, 0x21, 0x58, 0xa5, 0x31, 0xdc, 0x59, 0xfd, 0x4b, 0x5b, 0x89, 0x11, 0x7a, 0x20, 0xad, + 0x45, 0x9f, 0x85, 0xca, 0x59, 0x2b, 0x2c, 0x15, 0x37, 0x0e, 0x77, 0x90, 0xf1, 0xcf, 0xa7, 0x8b, + 0xcc, 0x74, 0xd1, 0xb1, 0xe0, 0x61, 0xe5, 0xc9, 0xe5, 0x34, 0x6f, 0x7d, 0xfe, 0x91, 0x2f, 0xf6, + 0xb8, 0x3e, 0x1f, 0x75, 0x91, 0x27, 0x02, 0x73, 0x31, 0xe6, 0x73, 0xa0, 0xfc, 0x3e, 0xd6, 0x93, + 0x21, 0x53, 0x51, 0x82, 0x22, 0xa6, 0x34, 0x7c, 0x0b, 0xb2, 0x3e, 0x1b, 0xb0, 0xde, 0x7c, 0x90, + 0x1d, 0x75, 0x4e, 0x25, 0x53, 0xce, 0x7a, 0x84, 0xdb, 0xbb, 0x17, 0x57, 0x65, 0x5e, 0x44, 0x3c, + 0x32, 0xc4, 0xc7, 0xff, 0x40, 0x34, 0x39, 0x8a, 0x6c, 0x2e, 0x50, 0xcd, 0x88, 0xb4, 0xff, 0x1a, + 0x64, 0x92, 0x5b, 0x6c, 0x50, 0x49, 0x03, 0x05, 0x4f, 0xc0, 0xa6, 0x27, 0x82, 0x80, 0x2b, 0xc5, + 0x45, 0xd8, 0x91, 0x54, 0xb3, 0x68, 0x43, 0xd6, 0x2b, 0x0f, 0xe6, 0xc0, 0xef, 0xd3, 0xfc, 0x6e, + 0x5c, 0x5e, 0xf9, 0x7d, 0xc4, 0x05, 0x0e, 0xa8, 0x3e, 0x47, 0x27, 0xac, 0x47, 0xbd, 0x49, 0x95, + 0x79, 0x24, 0x73, 0x93, 0x4b, 0xa8, 0x66, 0x8f, 0x3e, 0xda, 0x37, 0x80, 0x78, 0x4d, 0x60, 0x1e, + 0xec, 0x9e, 0x35, 0x6a, 0xa4, 0xdc, 0x3a, 0x23, 0x9d, 0x66, 0xab, 0xdc, 0x6a, 0x37, 0x3b, 0xed, + 0xd3, 0x66, 0xa3, 0x76, 0x5c, 0x7f, 0x5e, 0xaf, 0x55, 0xb3, 0x16, 0xcc, 0x81, 0xed, 0xbb, 0x86, + 0xf2, 0x71, 0xab, 0xfe, 0xb2, 0x96, 0xb5, 0x61, 0x01, 0xec, 0xdd, 0xd5, 0xea, 0xa7, 0x91, 0x5a, + 0x6e, 0xd5, 0x4f, 0x5f, 0x64, 0x53, 0x70, 0x0f, 0x38, 0x7f, 0x70, 0xd4, 0xb2, 0x4b, 0xb9, 0xe5, + 0x77, 0x9f, 0x5c, 0xab, 0xd2, 0xba, 0xfc, 0xe5, 0x5a, 0x97, 0x33, 0xd7, 0xbe, 0x9a, 0xb9, 0xf6, + 0xcf, 0x99, 0x6b, 0x7f, 0xb8, 0x76, 0xad, 0xab, 0x6b, 0xd7, 0xfa, 0x76, 0xed, 0x5a, 0xaf, 0x9e, + 0xde, 0x9a, 0x68, 0xb2, 0xf8, 0x07, 0x03, 0xda, 0x55, 0x8b, 0x08, 0x8f, 0x8f, 0xf0, 0x9b, 0x5b, + 0xaf, 0x39, 0x9a, 0x72, 0x37, 0x1d, 0x3d, 0xb1, 0xa3, 0xdf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x7b, + 0xee, 0x0c, 0x53, 0xf0, 0x03, 0x00, 0x00, } func (m *Operator) Marshal() (dAtA []byte, err error) { diff --git a/x/operators/types/models_test.go b/x/operators/types/models_test.go index 45c2dba2..22ebfff4 100644 --- a/x/operators/types/models_test.go +++ b/x/operators/types/models_test.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - "github.com/milkyway-labs/milkyway/v2/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/x/operators/types" ) func TestParseOperatorID(t *testing.T) { diff --git a/x/operators/types/params.pb.go b/x/operators/types/params.pb.go index ba70e971..4d8b79a1 100644 --- a/x/operators/types/params.pb.go +++ b/x/operators/types/params.pb.go @@ -99,7 +99,7 @@ var fileDescriptor_c14ac199294977d8 = []byte{ // 319 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x4c, 0xd1, 0xc1, 0x4a, 0xc3, 0x30, 0x18, 0x07, 0xf0, 0xc6, 0xc9, 0x0e, 0xf5, 0xa2, 0x43, 0x71, 0x1b, 0x92, 0x8e, 0x9e, 0x76, 0x59, - 0x42, 0x27, 0x78, 0xf0, 0x38, 0xc1, 0xf3, 0x18, 0x9e, 0xbc, 0x8c, 0xb4, 0xfb, 0xac, 0x61, 0x4b, + 0x42, 0x1d, 0x78, 0xf0, 0x38, 0xc1, 0xf3, 0x18, 0x9e, 0xbc, 0x8c, 0xb4, 0xfb, 0xac, 0x61, 0x4b, 0x53, 0x92, 0x58, 0xed, 0x5b, 0x78, 0xf4, 0x0d, 0x04, 0x9f, 0x64, 0xc7, 0x1d, 0x3d, 0x6d, 0xd2, 0xe2, 0x0b, 0xf8, 0x04, 0xb2, 0x76, 0x2d, 0x3d, 0x25, 0xe1, 0xfb, 0xf3, 0xe3, 0xcf, 0x17, 0xdb, 0x15, 0x7c, 0xb5, 0x4c, 0x5f, 0x59, 0x4a, 0x65, 0x0c, 0x8a, 0x19, 0xa9, 0x34, 0x4d, 0x3c, 0x1a, @@ -107,16 +107,16 @@ var fileDescriptor_c14ac199294977d8 = []byte{ 0xe7, 0xa1, 0x0c, 0x65, 0x91, 0xa0, 0xfb, 0x5b, 0x19, 0xee, 0xe3, 0x40, 0x6a, 0x21, 0x35, 0xf5, 0x99, 0x06, 0x9a, 0x78, 0x3e, 0x18, 0xe6, 0xd1, 0x40, 0xf2, 0xa8, 0x9c, 0xbb, 0xbf, 0xc8, 0x6e, 0x4f, 0x0b, 0xbd, 0xf3, 0x89, 0xec, 0x5e, 0x25, 0xce, 0x15, 0x84, 0x5c, 0x1b, 0xc5, 0x0c, 0x97, - 0xd1, 0xfc, 0x09, 0xa0, 0x8b, 0x06, 0xad, 0xe1, 0xc9, 0xb8, 0x47, 0x4a, 0x8f, 0xec, 0x3d, 0x72, - 0xf0, 0xc8, 0x9d, 0xe4, 0xd1, 0x64, 0xba, 0xde, 0x3a, 0xd6, 0xdf, 0xd6, 0xb9, 0x4a, 0x99, 0x58, - 0xdd, 0xba, 0xb5, 0x14, 0x28, 0xa8, 0x15, 0xf7, 0x6b, 0xe7, 0x0c, 0x43, 0x6e, 0x9e, 0x5f, 0x7c, - 0x12, 0x48, 0x41, 0x0f, 0xe5, 0xca, 0x63, 0xa4, 0x17, 0x4b, 0x6a, 0xd2, 0x18, 0x74, 0x01, 0xea, - 0xd9, 0x65, 0x65, 0xcc, 0x1a, 0x65, 0xee, 0x01, 0x3a, 0x9e, 0x7d, 0xb6, 0x00, 0x16, 0x18, 0x9e, - 0x94, 0xb2, 0xe1, 0x02, 0xba, 0x47, 0x03, 0x34, 0x6c, 0x4d, 0x8e, 0x3f, 0x76, 0x0e, 0x9a, 0x9d, - 0x36, 0xc7, 0x0f, 0x5c, 0xc0, 0x64, 0xba, 0xce, 0x30, 0xda, 0x64, 0x18, 0xfd, 0x64, 0x18, 0xbd, - 0xe7, 0xd8, 0xda, 0xe4, 0xd8, 0xfa, 0xce, 0xb1, 0xf5, 0x78, 0xd3, 0xe8, 0x53, 0x6d, 0x76, 0xb4, - 0x62, 0xbe, 0xae, 0x5f, 0x34, 0x19, 0xd3, 0xb7, 0xc6, 0x87, 0x14, 0x1d, 0xfd, 0x76, 0xb1, 0xc0, - 0xeb, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0x93, 0x9e, 0xaa, 0x28, 0xb3, 0x01, 0x00, 0x00, + 0xd1, 0xfc, 0x09, 0xa0, 0x8b, 0x06, 0xad, 0xe1, 0xc9, 0x75, 0x8f, 0x94, 0x1e, 0xd9, 0x7b, 0xe4, + 0xe0, 0x91, 0x3b, 0xc9, 0xa3, 0xc9, 0x74, 0xbd, 0x75, 0xac, 0xbf, 0xad, 0x73, 0x95, 0x32, 0xb1, + 0xba, 0x75, 0x6b, 0x29, 0x50, 0x50, 0x2b, 0xee, 0xd7, 0xce, 0x19, 0x86, 0xdc, 0x3c, 0xbf, 0xf8, + 0x24, 0x90, 0x82, 0x1e, 0xca, 0x95, 0xc7, 0x48, 0x2f, 0x96, 0xd4, 0xa4, 0x31, 0xe8, 0x02, 0xd4, + 0xb3, 0xcb, 0xca, 0x98, 0x35, 0xca, 0xdc, 0x03, 0x74, 0x3c, 0xfb, 0x6c, 0x01, 0x2c, 0x30, 0x3c, + 0x29, 0x65, 0xc3, 0x05, 0x74, 0x8f, 0x06, 0x68, 0xd8, 0x9a, 0x1c, 0x7f, 0xec, 0x1c, 0x34, 0x3b, + 0x6d, 0x8e, 0x1f, 0xb8, 0x80, 0xc9, 0x74, 0x9d, 0x61, 0xb4, 0xc9, 0x30, 0xfa, 0xc9, 0x30, 0x7a, + 0xcf, 0xb1, 0xb5, 0xc9, 0xb1, 0xf5, 0x9d, 0x63, 0xeb, 0xf1, 0xa6, 0xd1, 0xa7, 0xda, 0xec, 0x68, + 0xc5, 0x7c, 0x5d, 0xbf, 0x68, 0x32, 0xa6, 0x6f, 0x8d, 0x0f, 0x29, 0x3a, 0xfa, 0xed, 0x62, 0x81, + 0xe3, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0xd2, 0x85, 0x26, 0x46, 0xb3, 0x01, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/operators/types/params_test.go b/x/operators/types/params_test.go index fbf8021d..eb036d3c 100644 --- a/x/operators/types/params_test.go +++ b/x/operators/types/params_test.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - "github.com/milkyway-labs/milkyway/v2/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/x/operators/types" ) func TestParams_Validate(t *testing.T) { diff --git a/x/operators/types/query.pb.go b/x/operators/types/query.pb.go index a5f75e5d..ea5969c8 100644 --- a/x/operators/types/query.pb.go +++ b/x/operators/types/query.pb.go @@ -411,43 +411,43 @@ func init() { func init() { proto.RegisterFile("milkyway/operators/v1/query.proto", fileDescriptor_d34b833547f80d63) } var fileDescriptor_d34b833547f80d63 = []byte{ - // 571 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x94, 0x41, 0x6f, 0x12, 0x4f, - 0x18, 0xc6, 0x99, 0xfe, 0xfb, 0x27, 0xed, 0xdb, 0x58, 0x93, 0x91, 0x9a, 0x06, 0xed, 0x82, 0x9b, - 0x54, 0x6b, 0xb5, 0x33, 0x82, 0xb1, 0x3d, 0x98, 0x1e, 0xac, 0x89, 0xc6, 0x93, 0x48, 0x3c, 0xf5, - 0xd2, 0x0c, 0x65, 0xb2, 0x6e, 0x64, 0x77, 0xb6, 0x3b, 0x0b, 0x4a, 0x8c, 0x17, 0x0f, 0x9e, 0x8d, - 0x9e, 0xbd, 0xfa, 0x11, 0xfc, 0x0c, 0x3d, 0x36, 0xf1, 0xe2, 0xc9, 0x18, 0xf0, 0x73, 0x18, 0xc3, - 0xec, 0xec, 0xc2, 0x90, 0x2d, 0x6c, 0x6f, 0x30, 0x3c, 0xcf, 0xfb, 0xfe, 0xe6, 0x79, 0x5f, 0x06, - 0x6e, 0x78, 0x6e, 0xe7, 0x75, 0xff, 0x0d, 0xeb, 0x53, 0x11, 0xf0, 0x90, 0x45, 0x22, 0x94, 0xb4, - 0x57, 0xa3, 0x27, 0x5d, 0x1e, 0xf6, 0x49, 0x10, 0x8a, 0x48, 0xe0, 0xb5, 0x44, 0x42, 0x52, 0x09, - 0xe9, 0xd5, 0xca, 0x25, 0x47, 0x38, 0x42, 0x29, 0xe8, 0xe8, 0x53, 0x2c, 0x2e, 0x5f, 0x77, 0x84, - 0x70, 0x3a, 0x9c, 0xb2, 0xc0, 0xa5, 0xcc, 0xf7, 0x45, 0xc4, 0x22, 0x57, 0xf8, 0x52, 0xff, 0xba, - 0x7d, 0x2c, 0xa4, 0x27, 0x24, 0x6d, 0x31, 0xc9, 0xe3, 0x1e, 0xb4, 0x57, 0x6b, 0xf1, 0x88, 0xd5, - 0x68, 0xc0, 0x1c, 0xd7, 0x57, 0x62, 0xad, 0xb5, 0xb3, 0xc9, 0x3c, 0xd1, 0xe6, 0x1d, 0x39, 0x5b, - 0x13, 0xb0, 0x90, 0x79, 0x5a, 0x63, 0xef, 0x41, 0xe9, 0xc5, 0xa8, 0xd3, 0x73, 0xad, 0x68, 0xf2, - 0x93, 0x2e, 0x97, 0x11, 0xae, 0xc0, 0x4a, 0x62, 0x3a, 0x72, 0xdb, 0xeb, 0xa8, 0x8a, 0xb6, 0x2e, - 0x35, 0x21, 0x39, 0x7a, 0xd6, 0xb6, 0x0f, 0x61, 0x6d, 0xca, 0x28, 0x03, 0xe1, 0x4b, 0x8e, 0x1f, - 0xc1, 0x52, 0x22, 0x53, 0xb6, 0x95, 0x7a, 0x85, 0x64, 0x66, 0x44, 0x12, 0xeb, 0xc1, 0xe2, 0xe9, - 0xaf, 0x4a, 0xa1, 0x99, 0xda, 0xec, 0x7d, 0x28, 0x1b, 0xb5, 0x1b, 0x8a, 0x38, 0x37, 0x9a, 0x84, - 0x6b, 0x99, 0x76, 0x0d, 0xf8, 0x12, 0x2e, 0xa7, 0xfe, 0x38, 0x0b, 0xcd, 0xb9, 0x39, 0x87, 0x33, - 0xae, 0xa3, 0x69, 0x57, 0x85, 0x71, 0x6a, 0x1f, 0x4d, 0xe5, 0x91, 0xe2, 0x3e, 0x01, 0x18, 0x4f, - 0x4f, 0x77, 0xba, 0x49, 0xe2, 0x51, 0x93, 0xd1, 0xa8, 0x49, 0xbc, 0x4e, 0x7a, 0xd4, 0xa4, 0xc1, - 0x1c, 0xae, 0xbd, 0xcd, 0x09, 0xa7, 0xfd, 0x0d, 0xc1, 0xd5, 0xe9, 0x0e, 0xfa, 0x46, 0x8f, 0x61, - 0x39, 0x05, 0x5e, 0x47, 0xd5, 0xff, 0xf2, 0x67, 0x3e, 0xf6, 0xe1, 0xa7, 0x06, 0xe7, 0x82, 0xe2, - 0xbc, 0x35, 0x97, 0x33, 0x26, 0x30, 0x40, 0x4b, 0x80, 0x15, 0xa7, 0x31, 0x35, 0xbb, 0x09, 0x57, - 0x8c, 0x53, 0x8d, 0xfe, 0x10, 0x8a, 0xc6, 0x0c, 0x36, 0xce, 0xe1, 0x36, 0xb2, 0xd7, 0x96, 0xfa, - 0xdf, 0x45, 0xf8, 0x5f, 0x15, 0xc5, 0x5f, 0x11, 0x2c, 0x25, 0x57, 0xc3, 0x77, 0xce, 0xa9, 0x91, - 0xb5, 0xe8, 0xe5, 0xbb, 0xf9, 0xc4, 0x31, 0xae, 0xbd, 0xfb, 0xe1, 0xc7, 0x9f, 0x2f, 0x0b, 0xf7, - 0x30, 0xa1, 0xd9, 0xff, 0xad, 0xf1, 0x97, 0x77, 0x13, 0x3b, 0xfa, 0x1e, 0x7f, 0x47, 0xb0, 0x6a, - 0xae, 0x11, 0xae, 0xe5, 0x69, 0x6c, 0x64, 0x58, 0xae, 0x5f, 0xc4, 0xa2, 0x89, 0xf7, 0x15, 0xf1, - 0x1e, 0x7e, 0x70, 0x31, 0x62, 0xfd, 0x4a, 0xe0, 0xcf, 0x08, 0x96, 0xd3, 0x85, 0xc3, 0xb9, 0xc2, - 0x4a, 0x71, 0x77, 0x72, 0xaa, 0x35, 0xe9, 0x96, 0x22, 0xb5, 0x71, 0x75, 0x1e, 0x29, 0xfe, 0x88, - 0xa0, 0xa8, 0x53, 0xbc, 0x3d, 0xab, 0x87, 0x99, 0xde, 0x76, 0x1e, 0xa9, 0x66, 0xd9, 0x54, 0x2c, - 0x15, 0xbc, 0x41, 0x67, 0xbd, 0xa1, 0x07, 0x8d, 0xd3, 0x81, 0x85, 0xce, 0x06, 0x16, 0xfa, 0x3d, - 0xb0, 0xd0, 0xa7, 0xa1, 0x55, 0x38, 0x1b, 0x5a, 0x85, 0x9f, 0x43, 0xab, 0x70, 0xb8, 0xeb, 0xb8, - 0xd1, 0xab, 0x6e, 0x8b, 0x1c, 0x0b, 0x2f, 0x2d, 0xb1, 0xd3, 0x61, 0x2d, 0x39, 0x2e, 0xd8, 0xab, - 0xd3, 0xb7, 0x13, 0x55, 0xa3, 0x7e, 0xc0, 0x65, 0xab, 0xa8, 0x9e, 0xe5, 0xfb, 0xff, 0x02, 0x00, - 0x00, 0xff, 0xff, 0xb0, 0xfa, 0xf4, 0x59, 0x7a, 0x06, 0x00, 0x00, + // 570 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x94, 0x31, 0x6f, 0xd3, 0x40, + 0x14, 0xc7, 0x73, 0xa5, 0x54, 0xed, 0xab, 0x28, 0xd2, 0x91, 0xa2, 0x2a, 0x50, 0x27, 0x58, 0x2a, + 0x94, 0x42, 0xef, 0x48, 0x2a, 0xda, 0x01, 0x75, 0xa0, 0x48, 0x20, 0x26, 0x42, 0xc4, 0xd4, 0xa5, + 0xba, 0x34, 0x27, 0x63, 0x11, 0xfb, 0x5c, 0x9f, 0x13, 0x88, 0x10, 0x0b, 0x03, 0x33, 0x82, 0x99, + 0x95, 0x8f, 0xc0, 0x67, 0xe8, 0x58, 0x89, 0x85, 0x09, 0xa1, 0x84, 0xcf, 0x81, 0x50, 0xce, 0x67, + 0x27, 0x17, 0xb9, 0x89, 0xbb, 0x25, 0x97, 0xff, 0xff, 0xbd, 0xdf, 0xfd, 0xdf, 0xcb, 0xc1, 0x2d, + 0xcf, 0x6d, 0xbf, 0xe9, 0xbd, 0x65, 0x3d, 0x2a, 0x02, 0x1e, 0xb2, 0x48, 0x84, 0x92, 0x76, 0xab, + 0xf4, 0xa4, 0xc3, 0xc3, 0x1e, 0x09, 0x42, 0x11, 0x09, 0xbc, 0x9a, 0x48, 0x48, 0x2a, 0x21, 0xdd, + 0x6a, 0xa9, 0xe8, 0x08, 0x47, 0x28, 0x05, 0x1d, 0x7e, 0x8a, 0xc5, 0xa5, 0x9b, 0x8e, 0x10, 0x4e, + 0x9b, 0x53, 0x16, 0xb8, 0x94, 0xf9, 0xbe, 0x88, 0x58, 0xe4, 0x0a, 0x5f, 0xea, 0x5f, 0xb7, 0x8e, + 0x85, 0xf4, 0x84, 0xa4, 0x4d, 0x26, 0x79, 0xdc, 0x83, 0x76, 0xab, 0x4d, 0x1e, 0xb1, 0x2a, 0x0d, + 0x98, 0xe3, 0xfa, 0x4a, 0xac, 0xb5, 0x76, 0x36, 0x99, 0x27, 0x5a, 0xbc, 0x2d, 0xa7, 0x6b, 0x02, + 0x16, 0x32, 0x4f, 0x6b, 0xec, 0x3d, 0x28, 0xbe, 0x1c, 0x76, 0x7a, 0xa1, 0x15, 0x0d, 0x7e, 0xd2, + 0xe1, 0x32, 0xc2, 0x65, 0x58, 0x4e, 0x4c, 0x47, 0x6e, 0x6b, 0x0d, 0x55, 0xd0, 0xe6, 0x95, 0x06, + 0x24, 0x47, 0xcf, 0x5b, 0xf6, 0x21, 0xac, 0x4e, 0x18, 0x65, 0x20, 0x7c, 0xc9, 0xf1, 0x63, 0x58, + 0x4c, 0x64, 0xca, 0xb6, 0x5c, 0x2b, 0x93, 0xcc, 0x8c, 0x48, 0x62, 0x3d, 0x98, 0x3f, 0xfd, 0x5d, + 0x2e, 0x34, 0x52, 0x9b, 0xbd, 0x0f, 0x25, 0xa3, 0x76, 0x5d, 0x11, 0xe7, 0x46, 0x93, 0x70, 0x23, + 0xd3, 0xae, 0x01, 0x5f, 0xc1, 0xd5, 0xd4, 0x1f, 0x67, 0xa1, 0x39, 0x37, 0x66, 0x70, 0xc6, 0x75, + 0x34, 0xed, 0x8a, 0x30, 0x4e, 0xed, 0xa3, 0x89, 0x3c, 0x52, 0xdc, 0xa7, 0x00, 0xa3, 0xe9, 0xe9, + 0x4e, 0xb7, 0x49, 0x3c, 0x6a, 0x32, 0x1c, 0x35, 0x89, 0xd7, 0x49, 0x8f, 0x9a, 0xd4, 0x99, 0xc3, + 0xb5, 0xb7, 0x31, 0xe6, 0xb4, 0xbf, 0x23, 0xb8, 0x3e, 0xd9, 0x41, 0xdf, 0xe8, 0x09, 0x2c, 0xa5, + 0xc0, 0x6b, 0xa8, 0x72, 0x29, 0x7f, 0xe6, 0x23, 0x1f, 0x7e, 0x66, 0x70, 0xce, 0x29, 0xce, 0x3b, + 0x33, 0x39, 0x63, 0x02, 0x03, 0xb4, 0x08, 0x58, 0x71, 0x1a, 0x53, 0xb3, 0x1b, 0x70, 0xcd, 0x38, + 0xd5, 0xe8, 0x8f, 0x60, 0xc1, 0x98, 0xc1, 0xfa, 0x39, 0xdc, 0x46, 0xf6, 0xda, 0x52, 0xfb, 0x37, + 0x0f, 0x97, 0x55, 0x51, 0xfc, 0x0d, 0xc1, 0x62, 0x72, 0x35, 0x7c, 0xef, 0x9c, 0x1a, 0x59, 0x8b, + 0x5e, 0xba, 0x9f, 0x4f, 0x1c, 0xe3, 0xda, 0xbb, 0x1f, 0x7f, 0xfe, 0xfd, 0x3a, 0xf7, 0x00, 0x13, + 0x9a, 0xfd, 0xdf, 0x1a, 0x7d, 0x79, 0x3f, 0xb6, 0xa3, 0x1f, 0xf0, 0x0f, 0x04, 0x2b, 0xe6, 0x1a, + 0xe1, 0x6a, 0x9e, 0xc6, 0x46, 0x86, 0xa5, 0xda, 0x45, 0x2c, 0x9a, 0x78, 0x5f, 0x11, 0xef, 0xe1, + 0x87, 0x17, 0x23, 0xd6, 0xaf, 0x04, 0xfe, 0x82, 0x60, 0x29, 0x5d, 0x38, 0x9c, 0x2b, 0xac, 0x14, + 0x77, 0x3b, 0xa7, 0x5a, 0x93, 0x6e, 0x2a, 0x52, 0x1b, 0x57, 0x66, 0x91, 0xe2, 0x4f, 0x08, 0x16, + 0x74, 0x8a, 0x77, 0xa7, 0xf5, 0x30, 0xd3, 0xdb, 0xca, 0x23, 0xd5, 0x2c, 0x1b, 0x8a, 0xa5, 0x8c, + 0xd7, 0xe9, 0xb4, 0x37, 0xf4, 0xa0, 0x7e, 0xda, 0xb7, 0xd0, 0x59, 0xdf, 0x42, 0x7f, 0xfa, 0x16, + 0xfa, 0x3c, 0xb0, 0x0a, 0x67, 0x03, 0xab, 0xf0, 0x6b, 0x60, 0x15, 0x0e, 0x77, 0x1d, 0x37, 0x7a, + 0xdd, 0x69, 0x92, 0x63, 0xe1, 0xa5, 0x25, 0xb6, 0xdb, 0xac, 0x29, 0x47, 0x05, 0xbb, 0x3b, 0xf4, + 0xdd, 0x58, 0xd5, 0xa8, 0x17, 0x70, 0xd9, 0x5c, 0x50, 0xcf, 0xf2, 0xce, 0xff, 0x00, 0x00, 0x00, + 0xff, 0xff, 0xf1, 0xe1, 0x78, 0x37, 0x7a, 0x06, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/pools/client/cli/query.go b/x/pools/client/cli/query.go index af28344b..f55d594a 100644 --- a/x/pools/client/cli/query.go +++ b/x/pools/client/cli/query.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/version" "github.com/spf13/cobra" - "github.com/milkyway-labs/milkyway/v2/x/pools/types" + "github.com/milkyway-labs/milkyway/v3/x/pools/types" ) // GetQueryCmd returns the command allowing to perform queries diff --git a/x/pools/keeper/alias_functions.go b/x/pools/keeper/alias_functions.go index a84f6f3c..a220e3f9 100644 --- a/x/pools/keeper/alias_functions.go +++ b/x/pools/keeper/alias_functions.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/pools/types" + "github.com/milkyway-labs/milkyway/v3/x/pools/types" ) // createAccountIfNotExists creates an account if it does not exist diff --git a/x/pools/keeper/alias_functions_test.go b/x/pools/keeper/alias_functions_test.go index 43114fc7..d4e11c15 100644 --- a/x/pools/keeper/alias_functions_test.go +++ b/x/pools/keeper/alias_functions_test.go @@ -3,7 +3,7 @@ package keeper_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/pools/types" + "github.com/milkyway-labs/milkyway/v3/x/pools/types" ) func (suite *KeeperTestSuite) TestKeeper_GetPoolForDenom() { diff --git a/x/pools/keeper/common_test.go b/x/pools/keeper/common_test.go index 676d742e..12746bee 100644 --- a/x/pools/keeper/common_test.go +++ b/x/pools/keeper/common_test.go @@ -21,9 +21,9 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" "github.com/stretchr/testify/suite" - milkyway "github.com/milkyway-labs/milkyway/v2/app" - "github.com/milkyway-labs/milkyway/v2/x/pools/keeper" - "github.com/milkyway-labs/milkyway/v2/x/pools/types" + milkyway "github.com/milkyway-labs/milkyway/v3/app" + "github.com/milkyway-labs/milkyway/v3/x/pools/keeper" + "github.com/milkyway-labs/milkyway/v3/x/pools/types" ) func TestKeeperTestSuite(t *testing.T) { diff --git a/x/pools/keeper/genesis.go b/x/pools/keeper/genesis.go index e2b4ec74..fa60ace8 100644 --- a/x/pools/keeper/genesis.go +++ b/x/pools/keeper/genesis.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/pools/types" + "github.com/milkyway-labs/milkyway/v3/x/pools/types" ) // ExportGenesis returns a new GenesisState instance containing the information currently present inside the store diff --git a/x/pools/keeper/genesis_test.go b/x/pools/keeper/genesis_test.go index 593387b4..bad0dc99 100644 --- a/x/pools/keeper/genesis_test.go +++ b/x/pools/keeper/genesis_test.go @@ -3,7 +3,7 @@ package keeper_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/pools/types" + "github.com/milkyway-labs/milkyway/v3/x/pools/types" ) func (suite *KeeperTestSuite) TestKeeper_ExportGenesis() { diff --git a/x/pools/keeper/grpc_query.go b/x/pools/keeper/grpc_query.go index 131366e6..b6c8d5c5 100644 --- a/x/pools/keeper/grpc_query.go +++ b/x/pools/keeper/grpc_query.go @@ -8,7 +8,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/milkyway-labs/milkyway/v2/x/pools/types" + "github.com/milkyway-labs/milkyway/v3/x/pools/types" ) var _ types.QueryServer = &Keeper{} diff --git a/x/pools/keeper/grpc_query_test.go b/x/pools/keeper/grpc_query_test.go index 85b83afc..07cac8a8 100644 --- a/x/pools/keeper/grpc_query_test.go +++ b/x/pools/keeper/grpc_query_test.go @@ -3,7 +3,7 @@ package keeper_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/pools/types" + "github.com/milkyway-labs/milkyway/v3/x/pools/types" ) func (suite *KeeperTestSuite) TestQueryServer_PoolByID() { diff --git a/x/pools/keeper/hooks.go b/x/pools/keeper/hooks.go index 791994c2..85beac64 100644 --- a/x/pools/keeper/hooks.go +++ b/x/pools/keeper/hooks.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "github.com/milkyway-labs/milkyway/v2/x/pools/types" + "github.com/milkyway-labs/milkyway/v3/x/pools/types" ) var _ types.PoolsHooks = &Keeper{} diff --git a/x/pools/keeper/invariants.go b/x/pools/keeper/invariants.go index f515cc00..82a29b6f 100644 --- a/x/pools/keeper/invariants.go +++ b/x/pools/keeper/invariants.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/utils" - "github.com/milkyway-labs/milkyway/v2/x/pools/types" + "github.com/milkyway-labs/milkyway/v3/utils" + "github.com/milkyway-labs/milkyway/v3/x/pools/types" ) // RegisterInvariants registers all pools module invariants diff --git a/x/pools/keeper/invariants_test.go b/x/pools/keeper/invariants_test.go index 2c08baef..5004301e 100644 --- a/x/pools/keeper/invariants_test.go +++ b/x/pools/keeper/invariants_test.go @@ -3,8 +3,8 @@ package keeper_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/pools/keeper" - "github.com/milkyway-labs/milkyway/v2/x/pools/types" + "github.com/milkyway-labs/milkyway/v3/x/pools/keeper" + "github.com/milkyway-labs/milkyway/v3/x/pools/types" ) func (suite *KeeperTestSuite) TestValidPoolsInvariant() { diff --git a/x/pools/keeper/keeper.go b/x/pools/keeper/keeper.go index 759abc85..cb1ceeed 100644 --- a/x/pools/keeper/keeper.go +++ b/x/pools/keeper/keeper.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/pools/types" + "github.com/milkyway-labs/milkyway/v3/x/pools/types" ) type Keeper struct { diff --git a/x/pools/keeper/pools.go b/x/pools/keeper/pools.go index 497a5faa..18c21ff4 100644 --- a/x/pools/keeper/pools.go +++ b/x/pools/keeper/pools.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/milkyway-labs/milkyway/v2/x/pools/types" + "github.com/milkyway-labs/milkyway/v3/x/pools/types" ) // SetNextPoolID sets the next pool ID to be used when registering a new Pool diff --git a/x/pools/keeper/pools_test.go b/x/pools/keeper/pools_test.go index 46e447be..c270724d 100644 --- a/x/pools/keeper/pools_test.go +++ b/x/pools/keeper/pools_test.go @@ -3,7 +3,7 @@ package keeper_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/pools/types" + "github.com/milkyway-labs/milkyway/v3/x/pools/types" ) func (suite *KeeperTestSuite) TestKeeper_SetNextPoolID() { diff --git a/x/pools/module.go b/x/pools/module.go index e86ad8e1..6a93d474 100644 --- a/x/pools/module.go +++ b/x/pools/module.go @@ -17,10 +17,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/milkyway-labs/milkyway/v2/x/pools/client/cli" + "github.com/milkyway-labs/milkyway/v3/x/pools/client/cli" - "github.com/milkyway-labs/milkyway/v2/x/pools/keeper" - "github.com/milkyway-labs/milkyway/v2/x/pools/types" + "github.com/milkyway-labs/milkyway/v3/x/pools/keeper" + "github.com/milkyway-labs/milkyway/v3/x/pools/types" ) const ( diff --git a/x/pools/types/genesis.pb.go b/x/pools/types/genesis.pb.go index df19021d..df1ee7b5 100644 --- a/x/pools/types/genesis.pb.go +++ b/x/pools/types/genesis.pb.go @@ -100,9 +100,9 @@ var fileDescriptor_d15ae23e1a0ffba4 = []byte{ 0xf3, 0x40, 0x0c, 0x04, 0x4b, 0x2a, 0x05, 0x41, 0xf4, 0x3a, 0xf9, 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, 0x51, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, - 0xae, 0x3e, 0xcc, 0x64, 0xdd, 0x9c, 0xc4, 0xa4, 0x62, 0x38, 0x4f, 0xbf, 0xcc, 0x48, 0xbf, 0x02, + 0xae, 0x3e, 0xcc, 0x64, 0xdd, 0x9c, 0xc4, 0xa4, 0x62, 0x38, 0x4f, 0xbf, 0xcc, 0x58, 0xbf, 0x02, 0xea, 0xed, 0x92, 0xca, 0x82, 0xd4, 0xe2, 0x24, 0x36, 0xb0, 0x9f, 0x8d, 0x01, 0x01, 0x00, 0x00, - 0xff, 0xff, 0xc0, 0xf0, 0x6d, 0x56, 0x5f, 0x01, 0x00, 0x00, + 0xff, 0xff, 0x14, 0x1a, 0x1e, 0xcd, 0x5f, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/pools/types/genesis_test.go b/x/pools/types/genesis_test.go index 0c627c85..4c90e85b 100644 --- a/x/pools/types/genesis_test.go +++ b/x/pools/types/genesis_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/milkyway-labs/milkyway/v2/x/pools/types" + "github.com/milkyway-labs/milkyway/v3/x/pools/types" ) func TestGenesis_Validate(t *testing.T) { diff --git a/x/pools/types/models.go b/x/pools/types/models.go index bf647b08..dd032552 100644 --- a/x/pools/types/models.go +++ b/x/pools/types/models.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/milkyway-labs/milkyway/v2/utils" + "github.com/milkyway-labs/milkyway/v3/utils" ) // GetPoolAddress generates a pool address from its id diff --git a/x/pools/types/models.pb.go b/x/pools/types/models.pb.go index b0a22576..6b0e8e8f 100644 --- a/x/pools/types/models.pb.go +++ b/x/pools/types/models.pb.go @@ -80,29 +80,29 @@ func init() { func init() { proto.RegisterFile("milkyway/pools/v1/models.proto", fileDescriptor_b29c6df2abe9a338) } var fileDescriptor_b29c6df2abe9a338 = []byte{ - // 346 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x64, 0x91, 0xc1, 0x6a, 0xea, 0x40, - 0x14, 0x86, 0x93, 0x5c, 0xf5, 0xd2, 0x81, 0xd2, 0x36, 0xd8, 0x92, 0x5a, 0x18, 0xa5, 0x2b, 0xa1, - 0x98, 0x41, 0xfb, 0x04, 0xb5, 0x6e, 0x84, 0x2e, 0x24, 0xee, 0x4a, 0x41, 0xc6, 0xcc, 0x10, 0x83, - 0x49, 0x8e, 0x64, 0xa6, 0xb6, 0x79, 0x86, 0x6e, 0xfa, 0x30, 0x3e, 0x84, 0x4b, 0x71, 0x55, 0xba, - 0x90, 0x36, 0xbe, 0x48, 0x71, 0x26, 0x4a, 0xa1, 0xbb, 0xf9, 0xe7, 0x3b, 0xff, 0xb7, 0x38, 0x07, - 0xe1, 0x38, 0x8c, 0xa6, 0xd9, 0x0b, 0xcd, 0xc8, 0x0c, 0x20, 0x12, 0x64, 0xde, 0x26, 0x31, 0x30, - 0x1e, 0x09, 0x77, 0x96, 0x82, 0x04, 0xfb, 0x6c, 0xcf, 0x5d, 0xc5, 0xdd, 0x79, 0xbb, 0x56, 0x0d, - 0x20, 0x00, 0x45, 0xc9, 0xee, 0xa5, 0x07, 0x6b, 0x97, 0x3e, 0x88, 0x18, 0xc4, 0x48, 0x03, 0x1d, - 0x34, 0xba, 0x7e, 0xb3, 0x50, 0x69, 0x00, 0x10, 0xd9, 0x17, 0xc8, 0x0a, 0x99, 0x63, 0x36, 0xcc, - 0xe6, 0x71, 0xb7, 0x92, 0x6f, 0xea, 0x56, 0xbf, 0xe7, 0x59, 0x21, 0xb3, 0xab, 0xa8, 0xcc, 0x78, - 0x02, 0xb1, 0x63, 0x35, 0xcc, 0xe6, 0x91, 0xa7, 0x83, 0xdd, 0x41, 0xff, 0x29, 0x63, 0x29, 0x17, - 0xc2, 0xf9, 0xb7, 0xfb, 0xef, 0x3a, 0xeb, 0x45, 0xab, 0x5a, 0x98, 0xef, 0x34, 0x19, 0xca, 0x34, - 0x4c, 0x02, 0x6f, 0x3f, 0x68, 0xdf, 0xa3, 0x8a, 0x84, 0x29, 0x4f, 0x84, 0x53, 0x52, 0x95, 0x9b, - 0xe5, 0xa6, 0x6e, 0x7c, 0x6e, 0xea, 0xe7, 0xba, 0x26, 0xd8, 0xd4, 0x0d, 0x81, 0xc4, 0x54, 0x4e, - 0xdc, 0x7e, 0x22, 0xd7, 0x8b, 0x16, 0x2a, 0x7c, 0xfd, 0x44, 0x7a, 0x45, 0xd5, 0x7e, 0x42, 0xa7, - 0x8c, 0x47, 0x3c, 0xa0, 0x12, 0xd2, 0x91, 0x98, 0xd0, 0x94, 0x0b, 0xa7, 0xac, 0x74, 0xed, 0x42, - 0x77, 0xf5, 0x57, 0xf7, 0xc0, 0x03, 0xea, 0x67, 0x3d, 0xee, 0xff, 0x92, 0xf6, 0xb8, 0xef, 0x9d, - 0x1c, 0x54, 0x43, 0x65, 0xea, 0x0e, 0x96, 0xdf, 0xd8, 0x58, 0xe6, 0xd8, 0x5c, 0xe5, 0xd8, 0xfc, - 0xca, 0xb1, 0xf9, 0xbe, 0xc5, 0xc6, 0x6a, 0x8b, 0x8d, 0x8f, 0x2d, 0x36, 0x1e, 0x3b, 0x41, 0x28, - 0x27, 0xcf, 0x63, 0xd7, 0x87, 0x98, 0xec, 0x57, 0xdf, 0x8a, 0xe8, 0x58, 0x1c, 0x12, 0x99, 0x77, - 0xc8, 0x6b, 0x71, 0x2d, 0x99, 0xcd, 0xb8, 0x18, 0x57, 0xd4, 0x9a, 0x6f, 0x7f, 0x02, 0x00, 0x00, - 0xff, 0xff, 0x27, 0x70, 0xca, 0xa3, 0xcc, 0x01, 0x00, 0x00, + // 345 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x64, 0x91, 0x41, 0x4e, 0xc2, 0x40, + 0x14, 0x86, 0xdb, 0x0a, 0x18, 0x27, 0x31, 0x6a, 0x83, 0xa6, 0x62, 0x32, 0x10, 0x57, 0x24, 0x86, + 0x4e, 0x80, 0x13, 0x88, 0x6c, 0x48, 0x5c, 0x90, 0xb2, 0x33, 0x26, 0x64, 0xe8, 0x4c, 0x4a, 0x43, + 0xdb, 0x47, 0x3a, 0x23, 0xda, 0x33, 0xb8, 0xf1, 0x30, 0x1c, 0x82, 0x25, 0x61, 0x65, 0x5c, 0x10, + 0x2d, 0x17, 0x31, 0x74, 0x5a, 0x62, 0xe2, 0x6e, 0xfe, 0xf9, 0xde, 0xff, 0x2d, 0xde, 0x43, 0x38, + 0xf4, 0x83, 0x59, 0xf2, 0x4a, 0x13, 0x32, 0x07, 0x08, 0x04, 0x59, 0xb4, 0x49, 0x08, 0x8c, 0x07, + 0xc2, 0x9e, 0xc7, 0x20, 0xc1, 0xbc, 0x28, 0xb8, 0x9d, 0x71, 0x7b, 0xd1, 0xae, 0x55, 0x3d, 0xf0, + 0x20, 0xa3, 0x64, 0xff, 0x52, 0x83, 0xb5, 0x6b, 0x17, 0x44, 0x08, 0x62, 0xac, 0x80, 0x0a, 0x0a, + 0xdd, 0xbe, 0x1b, 0xa8, 0x34, 0x04, 0x08, 0xcc, 0x2b, 0x64, 0xf8, 0xcc, 0xd2, 0x1b, 0x7a, 0xf3, + 0xb4, 0x57, 0x49, 0xb7, 0x75, 0x63, 0xd0, 0x77, 0x0c, 0x9f, 0x99, 0x55, 0x54, 0x66, 0x3c, 0x82, + 0xd0, 0x32, 0x1a, 0x7a, 0xf3, 0xc4, 0x51, 0xc1, 0xec, 0xa0, 0x63, 0xca, 0x58, 0xcc, 0x85, 0xb0, + 0x8e, 0xf6, 0xff, 0x3d, 0x6b, 0xb3, 0x6c, 0x55, 0x73, 0xf3, 0xbd, 0x22, 0x23, 0x19, 0xfb, 0x91, + 0xe7, 0x14, 0x83, 0xe6, 0x03, 0xaa, 0x48, 0x98, 0xf1, 0x48, 0x58, 0xa5, 0xac, 0x72, 0xb7, 0xda, + 0xd6, 0xb5, 0xaf, 0x6d, 0xfd, 0x52, 0xd5, 0x04, 0x9b, 0xd9, 0x3e, 0x90, 0x90, 0xca, 0xa9, 0x3d, + 0x88, 0xe4, 0x66, 0xd9, 0x42, 0xb9, 0x6f, 0x10, 0x49, 0x27, 0xaf, 0x9a, 0xcf, 0xe8, 0x9c, 0xf1, + 0x80, 0x7b, 0x54, 0x42, 0x3c, 0x16, 0x53, 0x1a, 0x73, 0x61, 0x95, 0x33, 0x5d, 0x3b, 0xd7, 0xdd, + 0xfc, 0xd7, 0x3d, 0x72, 0x8f, 0xba, 0x49, 0x9f, 0xbb, 0x7f, 0xa4, 0x7d, 0xee, 0x3a, 0x67, 0x07, + 0xd5, 0x28, 0x33, 0xf5, 0x86, 0xab, 0x1f, 0xac, 0xad, 0x52, 0xac, 0xaf, 0x53, 0xac, 0x7f, 0xa7, + 0x58, 0xff, 0xd8, 0x61, 0x6d, 0xbd, 0xc3, 0xda, 0xe7, 0x0e, 0x6b, 0x4f, 0x1d, 0xcf, 0x97, 0xd3, + 0x97, 0x89, 0xed, 0x42, 0x48, 0x8a, 0xd5, 0xb7, 0x02, 0x3a, 0x11, 0x87, 0x44, 0x16, 0x5d, 0xf2, + 0x96, 0x5f, 0x4b, 0x26, 0x73, 0x2e, 0x26, 0x95, 0x6c, 0xcd, 0xdd, 0xdf, 0x00, 0x00, 0x00, 0xff, + 0xff, 0xf3, 0x9a, 0xb9, 0x38, 0xcc, 0x01, 0x00, 0x00, } func (m *Pool) Marshal() (dAtA []byte, err error) { diff --git a/x/pools/types/models_test.go b/x/pools/types/models_test.go index caf70333..09d966bd 100644 --- a/x/pools/types/models_test.go +++ b/x/pools/types/models_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/milkyway-labs/milkyway/v2/x/pools/types" + "github.com/milkyway-labs/milkyway/v3/x/pools/types" ) func TestPool_Validate(t *testing.T) { diff --git a/x/pools/types/query.pb.go b/x/pools/types/query.pb.go index 45a8919f..26a8e765 100644 --- a/x/pools/types/query.pb.go +++ b/x/pools/types/query.pb.go @@ -283,36 +283,36 @@ func init() { proto.RegisterFile("milkyway/pools/v1/query.proto", fileDescriptor var fileDescriptor_bb7667236b657a7d = []byte{ // 490 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x93, 0x41, 0x6b, 0xd4, 0x40, - 0x14, 0xc7, 0x77, 0xda, 0x6e, 0xd5, 0x29, 0x1e, 0x3a, 0x2c, 0xec, 0x12, 0x34, 0x2e, 0xa1, 0x75, - 0x65, 0xa1, 0x33, 0x24, 0xfd, 0x06, 0xa5, 0x54, 0x0a, 0x1e, 0x6a, 0x8e, 0x7a, 0x90, 0x49, 0x33, - 0xc4, 0x60, 0x92, 0x97, 0x76, 0xb2, 0xd1, 0x50, 0x7a, 0x11, 0xbc, 0x8a, 0xe8, 0xc5, 0x8f, 0xd4, - 0x63, 0xc1, 0x8b, 0x27, 0x91, 0x5d, 0x3f, 0x88, 0x64, 0x66, 0xd2, 0x46, 0xb6, 0xbb, 0xeb, 0x69, + 0x14, 0xc7, 0x77, 0xda, 0xa6, 0xea, 0x14, 0x0f, 0x1d, 0x16, 0x76, 0x09, 0x1a, 0x97, 0xd0, 0xba, + 0xb2, 0xd0, 0x19, 0xb2, 0xfb, 0x0d, 0x4a, 0xa9, 0x14, 0x3c, 0xd4, 0x1c, 0xf5, 0x20, 0x93, 0x66, + 0x88, 0xc1, 0x24, 0x2f, 0xed, 0x64, 0xa3, 0xa1, 0xf4, 0x22, 0x78, 0x15, 0xd1, 0x8b, 0x1f, 0xa9, + 0xc7, 0x82, 0x17, 0x4f, 0x22, 0xbb, 0x7e, 0x10, 0xc9, 0xcc, 0xa4, 0x8d, 0x6c, 0xbb, 0xeb, 0x69, 0x67, 0x78, 0xff, 0xff, 0x7f, 0x7e, 0xfb, 0xde, 0x0b, 0x7e, 0x9c, 0xc6, 0xc9, 0xbb, 0xea, 0x3d, - 0xaf, 0x58, 0x0e, 0x90, 0x48, 0x56, 0xba, 0xec, 0x6c, 0x22, 0xce, 0x2b, 0x9a, 0x9f, 0x43, 0x01, - 0x64, 0xbb, 0x29, 0x53, 0x55, 0xa6, 0xa5, 0x6b, 0xf5, 0x22, 0x88, 0x40, 0x55, 0x59, 0x7d, 0xd2, - 0x42, 0xeb, 0x51, 0x04, 0x10, 0x25, 0x82, 0xf1, 0x3c, 0x66, 0x3c, 0xcb, 0xa0, 0xe0, 0x45, 0x0c, - 0x99, 0x34, 0xd5, 0xf1, 0x29, 0xc8, 0x14, 0x24, 0x0b, 0xb8, 0x14, 0x3a, 0x9f, 0x95, 0x6e, 0x20, - 0x0a, 0xee, 0xb2, 0x9c, 0x47, 0x71, 0xa6, 0xc4, 0x46, 0x6b, 0xcf, 0x13, 0xa5, 0x10, 0x8a, 0xc4, - 0x64, 0x39, 0x0c, 0xf7, 0x5e, 0xd6, 0x09, 0x27, 0x00, 0xc9, 0x41, 0x75, 0x1c, 0xfa, 0xe2, 0x6c, - 0x22, 0x64, 0x41, 0xfa, 0xf8, 0x5e, 0x6d, 0x78, 0x13, 0x87, 0x03, 0x34, 0x44, 0xcf, 0x1e, 0xfa, - 0x9b, 0xf5, 0xf5, 0x38, 0x74, 0x18, 0xee, 0xb7, 0x0c, 0x87, 0x22, 0x83, 0xb4, 0xf1, 0xf4, 0x70, - 0x37, 0xac, 0xef, 0xca, 0xf1, 0xc0, 0xd7, 0x17, 0xe7, 0x08, 0x6f, 0xdf, 0x18, 0x7c, 0x21, 0x73, - 0xc8, 0xa4, 0x20, 0x2e, 0xde, 0xa8, 0xf3, 0x94, 0x72, 0xcb, 0xeb, 0xd3, 0xb9, 0xc6, 0x50, 0x95, - 0xbf, 0x71, 0xf5, 0xeb, 0x49, 0xc7, 0x57, 0x52, 0xe7, 0x75, 0x2b, 0x47, 0x36, 0x4f, 0x1e, 0x61, - 0x7c, 0xfb, 0x97, 0x4d, 0xda, 0x53, 0xaa, 0xfb, 0x43, 0xeb, 0xfe, 0x50, 0xdd, 0x7f, 0xd3, 0x1f, - 0x7a, 0xc2, 0x23, 0x61, 0xbc, 0x7e, 0xcb, 0xe9, 0x7c, 0x45, 0x98, 0xb4, 0xd3, 0x0d, 0xe6, 0x3e, - 0xee, 0x2a, 0xa0, 0x01, 0x1a, 0xae, 0xaf, 0xe6, 0xd4, 0x5a, 0xf2, 0xfc, 0x1f, 0xa6, 0x35, 0xc5, - 0x34, 0x5a, 0xc9, 0xa4, 0x5f, 0x6c, 0x43, 0x79, 0xdf, 0xd7, 0x71, 0x57, 0x41, 0x91, 0x4f, 0x08, - 0xdf, 0x37, 0x13, 0x3a, 0x24, 0xa3, 0x3b, 0x28, 0xee, 0x9a, 0xa1, 0xb5, 0xb3, 0x4c, 0xd8, 0xbc, - 0xe8, 0x8c, 0x3f, 0xfe, 0xf8, 0xf3, 0x6d, 0x6d, 0x87, 0x38, 0x6c, 0x7e, 0x55, 0xf4, 0xe1, 0xc2, - 0x6c, 0xc2, 0x25, 0xf9, 0x8c, 0xf0, 0x56, 0x6b, 0xf0, 0x64, 0xbc, 0x1c, 0xa5, 0xbd, 0x1d, 0xff, - 0x49, 0xb3, 0xa7, 0x68, 0x46, 0x64, 0x77, 0x01, 0x0d, 0x53, 0x4b, 0xc5, 0x2e, 0xd4, 0xcf, 0x25, - 0x29, 0x71, 0x57, 0x4d, 0x8c, 0x2c, 0x4d, 0x6f, 0xd6, 0xc5, 0xda, 0x5d, 0xa1, 0x32, 0x10, 0x43, - 0x05, 0x61, 0x91, 0xc1, 0xa2, 0x96, 0x1c, 0xbc, 0xb8, 0x9a, 0xda, 0xe8, 0x7a, 0x6a, 0xa3, 0xdf, - 0x53, 0x1b, 0x7d, 0x99, 0xd9, 0x9d, 0xeb, 0x99, 0xdd, 0xf9, 0x39, 0xb3, 0x3b, 0xaf, 0xbc, 0x28, - 0x2e, 0xde, 0x4e, 0x02, 0x7a, 0x0a, 0xe9, 0x8d, 0x7b, 0x2f, 0xe1, 0x81, 0xbc, 0xcd, 0x2a, 0x3d, - 0xf6, 0xc1, 0x04, 0x16, 0x55, 0x2e, 0x64, 0xb0, 0xa9, 0xbe, 0xc5, 0xfd, 0xbf, 0x01, 0x00, 0x00, - 0xff, 0xff, 0xc4, 0x09, 0xc9, 0x4f, 0x3f, 0x04, 0x00, 0x00, + 0xaf, 0x58, 0x0e, 0x90, 0x48, 0x56, 0x7a, 0xec, 0x74, 0x2a, 0xce, 0x2a, 0x9a, 0x9f, 0x41, 0x01, + 0x64, 0xbb, 0x29, 0x53, 0x55, 0xa6, 0xa5, 0x67, 0x77, 0x23, 0x88, 0x40, 0x55, 0x59, 0x7d, 0xd2, + 0x42, 0xfb, 0x51, 0x04, 0x10, 0x25, 0x82, 0xf1, 0x3c, 0x66, 0x3c, 0xcb, 0xa0, 0xe0, 0x45, 0x0c, + 0x99, 0x34, 0xd5, 0xd1, 0x09, 0xc8, 0x14, 0x24, 0x0b, 0xb8, 0x14, 0x3a, 0x9f, 0x95, 0x5e, 0x20, + 0x0a, 0xee, 0xb1, 0x9c, 0x47, 0x71, 0xa6, 0xc4, 0x46, 0xeb, 0x2c, 0x12, 0xa5, 0x10, 0x8a, 0xc4, + 0x64, 0xb9, 0x0c, 0x77, 0x5f, 0xd6, 0x09, 0xc7, 0x00, 0xc9, 0x7e, 0x75, 0x14, 0xfa, 0xe2, 0x74, + 0x2a, 0x64, 0x41, 0x7a, 0xf8, 0x5e, 0x6d, 0x78, 0x13, 0x87, 0x7d, 0x34, 0x40, 0xcf, 0x1e, 0xfa, + 0x9b, 0xf5, 0xf5, 0x28, 0x74, 0x19, 0xee, 0xb5, 0x0c, 0x07, 0x22, 0x83, 0xb4, 0xf1, 0x74, 0xb1, + 0x15, 0xd6, 0x77, 0xe5, 0x78, 0xe0, 0xeb, 0x8b, 0x7b, 0x88, 0xb7, 0xaf, 0x0d, 0xbe, 0x90, 0x39, + 0x64, 0x52, 0x10, 0x0f, 0x6f, 0xd4, 0x79, 0x4a, 0xb9, 0x35, 0xee, 0xd1, 0x85, 0xc6, 0x50, 0x95, + 0xbf, 0x71, 0xf9, 0xeb, 0x49, 0xc7, 0x57, 0x52, 0xf7, 0x75, 0x2b, 0x47, 0x36, 0x4f, 0x1e, 0x62, + 0x7c, 0xf3, 0x97, 0x4d, 0xda, 0x53, 0xaa, 0xfb, 0x43, 0xeb, 0xfe, 0x50, 0xdd, 0x7f, 0xd3, 0x1f, + 0x7a, 0xcc, 0x23, 0x61, 0xbc, 0x7e, 0xcb, 0xe9, 0x7e, 0x45, 0x98, 0xb4, 0xd3, 0x0d, 0xe6, 0x04, + 0x5b, 0x0a, 0xa8, 0x8f, 0x06, 0xeb, 0xab, 0x39, 0xb5, 0x96, 0x3c, 0xff, 0x87, 0x69, 0x4d, 0x31, + 0x0d, 0x57, 0x32, 0xe9, 0x17, 0xdb, 0x50, 0xe3, 0xef, 0xeb, 0xd8, 0x52, 0x50, 0xe4, 0x13, 0xc2, + 0xf7, 0xcd, 0x84, 0x0e, 0xc8, 0xf0, 0x16, 0x8a, 0xdb, 0x66, 0x68, 0xef, 0x2c, 0x13, 0x36, 0x2f, + 0xba, 0xa3, 0x8f, 0x3f, 0xfe, 0x7c, 0x5b, 0xdb, 0x21, 0x2e, 0x5b, 0x5c, 0x15, 0x7d, 0x38, 0x37, + 0x9b, 0x70, 0x41, 0x3e, 0x23, 0xbc, 0xd5, 0x1a, 0x3c, 0x19, 0x2d, 0x47, 0x69, 0x6f, 0xc7, 0x7f, + 0xd2, 0xec, 0x29, 0x9a, 0x21, 0xd9, 0xbd, 0x83, 0x86, 0xa9, 0xa5, 0x62, 0xe7, 0xea, 0xe7, 0x82, + 0x94, 0xd8, 0x52, 0x13, 0x23, 0x4b, 0xd3, 0x9b, 0x75, 0xb1, 0x77, 0x57, 0xa8, 0x0c, 0xc4, 0x40, + 0x41, 0xd8, 0xa4, 0x7f, 0x57, 0x4b, 0xf6, 0x5f, 0x5c, 0xce, 0x1c, 0x74, 0x35, 0x73, 0xd0, 0xef, + 0x99, 0x83, 0xbe, 0xcc, 0x9d, 0xce, 0xd5, 0xdc, 0xe9, 0xfc, 0x9c, 0x3b, 0x9d, 0x57, 0xe3, 0x28, + 0x2e, 0xde, 0x4e, 0x03, 0x7a, 0x02, 0xe9, 0xb5, 0x7b, 0x2f, 0xe1, 0x81, 0xbc, 0xc9, 0x2a, 0x27, + 0xec, 0x83, 0x09, 0x2c, 0xaa, 0x5c, 0xc8, 0x60, 0x53, 0x7d, 0x8b, 0x93, 0xbf, 0x01, 0x00, 0x00, + 0xff, 0xff, 0x10, 0xe3, 0xba, 0xd4, 0x3f, 0x04, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/restaking/abci.go b/x/restaking/abci.go index f46bbfff..dc154c78 100644 --- a/x/restaking/abci.go +++ b/x/restaking/abci.go @@ -6,8 +6,8 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/restaking/keeper" - "github.com/milkyway-labs/milkyway/v2/x/restaking/types" + "github.com/milkyway-labs/milkyway/v3/x/restaking/keeper" + "github.com/milkyway-labs/milkyway/v3/x/restaking/types" ) // EndBlocker is called every block and is responsible for maturing unbonding delegations diff --git a/x/restaking/client/cli/query.go b/x/restaking/client/cli/query.go index c54121c7..83c4022a 100644 --- a/x/restaking/client/cli/query.go +++ b/x/restaking/client/cli/query.go @@ -8,10 +8,10 @@ import ( "github.com/cosmos/cosmos-sdk/version" "github.com/spf13/cobra" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - poolstypes "github.com/milkyway-labs/milkyway/v2/x/pools/types" - "github.com/milkyway-labs/milkyway/v2/x/restaking/types" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + poolstypes "github.com/milkyway-labs/milkyway/v3/x/pools/types" + "github.com/milkyway-labs/milkyway/v3/x/restaking/types" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) // GetQueryCmd returns the command allowing to perform queries diff --git a/x/restaking/client/cli/tx.go b/x/restaking/client/cli/tx.go index 2ebb144e..38d5a0c9 100644 --- a/x/restaking/client/cli/tx.go +++ b/x/restaking/client/cli/tx.go @@ -10,11 +10,11 @@ import ( "github.com/cosmos/cosmos-sdk/version" "github.com/spf13/cobra" - "github.com/milkyway-labs/milkyway/v2/utils" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - poolstypes "github.com/milkyway-labs/milkyway/v2/x/pools/types" - "github.com/milkyway-labs/milkyway/v2/x/restaking/types" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/utils" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + poolstypes "github.com/milkyway-labs/milkyway/v3/x/pools/types" + "github.com/milkyway-labs/milkyway/v3/x/restaking/types" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) // GetTxCmd returns a new command to perform restaking transactions diff --git a/x/restaking/keeper/alias_functions.go b/x/restaking/keeper/alias_functions.go index dbb864b4..ae6a80ef 100644 --- a/x/restaking/keeper/alias_functions.go +++ b/x/restaking/keeper/alias_functions.go @@ -12,11 +12,11 @@ import ( "github.com/cosmos/cosmos-sdk/runtime" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/utils" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - poolstypes "github.com/milkyway-labs/milkyway/v2/x/pools/types" - "github.com/milkyway-labs/milkyway/v2/x/restaking/types" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/utils" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + poolstypes "github.com/milkyway-labs/milkyway/v3/x/pools/types" + "github.com/milkyway-labs/milkyway/v3/x/restaking/types" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) // -------------------------------------------------------------------------------------------------------------------- diff --git a/x/restaking/keeper/alias_functions_test.go b/x/restaking/keeper/alias_functions_test.go index 959b7233..be002a8a 100644 --- a/x/restaking/keeper/alias_functions_test.go +++ b/x/restaking/keeper/alias_functions_test.go @@ -6,13 +6,13 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" sdkmath "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/restaking/types" + "github.com/milkyway-labs/milkyway/v3/x/restaking/types" ) func (suite *KeeperTestSuite) TestKeeper_GetAllOperatorsJoinedServicesRecord() { diff --git a/x/restaking/keeper/common_test.go b/x/restaking/keeper/common_test.go index c9ffdb3e..ce54cd09 100644 --- a/x/restaking/keeper/common_test.go +++ b/x/restaking/keeper/common_test.go @@ -11,11 +11,11 @@ import ( minttypes "github.com/cosmos/cosmos-sdk/x/mint/types" "github.com/stretchr/testify/suite" - operatorskeeper "github.com/milkyway-labs/milkyway/v2/x/operators/keeper" - poolskeeper "github.com/milkyway-labs/milkyway/v2/x/pools/keeper" - "github.com/milkyway-labs/milkyway/v2/x/restaking/keeper" - "github.com/milkyway-labs/milkyway/v2/x/restaking/testutils" - serviceskeeper "github.com/milkyway-labs/milkyway/v2/x/services/keeper" + operatorskeeper "github.com/milkyway-labs/milkyway/v3/x/operators/keeper" + poolskeeper "github.com/milkyway-labs/milkyway/v3/x/pools/keeper" + "github.com/milkyway-labs/milkyway/v3/x/restaking/keeper" + "github.com/milkyway-labs/milkyway/v3/x/restaking/testutils" + serviceskeeper "github.com/milkyway-labs/milkyway/v3/x/services/keeper" ) func TestKeeperTestSuite(t *testing.T) { diff --git a/x/restaking/keeper/end_blocker.go b/x/restaking/keeper/end_blocker.go index d7e0ca5a..8e3aa909 100644 --- a/x/restaking/keeper/end_blocker.go +++ b/x/restaking/keeper/end_blocker.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/restaking/types" + "github.com/milkyway-labs/milkyway/v3/x/restaking/types" ) // CompleteMatureUnbondingDelegations runs the endblocker logic for delegations diff --git a/x/restaking/keeper/end_blocker_test.go b/x/restaking/keeper/end_blocker_test.go index c96e12dd..40753825 100644 --- a/x/restaking/keeper/end_blocker_test.go +++ b/x/restaking/keeper/end_blocker_test.go @@ -6,10 +6,10 @@ import ( sdkmath "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - poolstypes "github.com/milkyway-labs/milkyway/v2/x/pools/types" - "github.com/milkyway-labs/milkyway/v2/x/restaking/types" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + poolstypes "github.com/milkyway-labs/milkyway/v3/x/pools/types" + "github.com/milkyway-labs/milkyway/v3/x/restaking/types" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) func (suite *KeeperTestSuite) TestKeeper_CompleteMatureUnbondingDelegations() { diff --git a/x/restaking/keeper/genesis.go b/x/restaking/keeper/genesis.go index e066dc73..2e197e7c 100644 --- a/x/restaking/keeper/genesis.go +++ b/x/restaking/keeper/genesis.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/restaking/types" + "github.com/milkyway-labs/milkyway/v3/x/restaking/types" ) // ExportGenesis returns a new GenesisState instance containing the information currently present inside the store diff --git a/x/restaking/keeper/genesis_test.go b/x/restaking/keeper/genesis_test.go index 9eed8f53..ff3bf24e 100644 --- a/x/restaking/keeper/genesis_test.go +++ b/x/restaking/keeper/genesis_test.go @@ -6,7 +6,7 @@ import ( sdkmath "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/restaking/types" + "github.com/milkyway-labs/milkyway/v3/x/restaking/types" ) func (suite *KeeperTestSuite) TestKeeper_ExportGenesis() { diff --git a/x/restaking/keeper/grpc_query.go b/x/restaking/keeper/grpc_query.go index 990cd310..7c63b28b 100644 --- a/x/restaking/keeper/grpc_query.go +++ b/x/restaking/keeper/grpc_query.go @@ -11,10 +11,10 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - poolstypes "github.com/milkyway-labs/milkyway/v2/x/pools/types" - "github.com/milkyway-labs/milkyway/v2/x/restaking/types" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + poolstypes "github.com/milkyway-labs/milkyway/v3/x/pools/types" + "github.com/milkyway-labs/milkyway/v3/x/restaking/types" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) type Querier struct { diff --git a/x/restaking/keeper/grpc_query_test.go b/x/restaking/keeper/grpc_query_test.go index 8be463e7..3ad62153 100644 --- a/x/restaking/keeper/grpc_query_test.go +++ b/x/restaking/keeper/grpc_query_test.go @@ -7,11 +7,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - poolstypes "github.com/milkyway-labs/milkyway/v2/x/pools/types" - "github.com/milkyway-labs/milkyway/v2/x/restaking/keeper" - "github.com/milkyway-labs/milkyway/v2/x/restaking/types" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + poolstypes "github.com/milkyway-labs/milkyway/v3/x/pools/types" + "github.com/milkyway-labs/milkyway/v3/x/restaking/keeper" + "github.com/milkyway-labs/milkyway/v3/x/restaking/types" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) func (suite *KeeperTestSuite) TestQuerier_OperatorJoinedServices() { diff --git a/x/restaking/keeper/hooks.go b/x/restaking/keeper/hooks.go index aafb1567..db541b6c 100644 --- a/x/restaking/keeper/hooks.go +++ b/x/restaking/keeper/hooks.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "github.com/milkyway-labs/milkyway/v2/x/restaking/types" + "github.com/milkyway-labs/milkyway/v3/x/restaking/types" ) var _ types.RestakingHooks = &Keeper{} diff --git a/x/restaking/keeper/invariants.go b/x/restaking/keeper/invariants.go index db68a9c0..606a7e82 100644 --- a/x/restaking/keeper/invariants.go +++ b/x/restaking/keeper/invariants.go @@ -5,10 +5,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - poolstypes "github.com/milkyway-labs/milkyway/v2/x/pools/types" - "github.com/milkyway-labs/milkyway/v2/x/restaking/types" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + poolstypes "github.com/milkyway-labs/milkyway/v3/x/pools/types" + "github.com/milkyway-labs/milkyway/v3/x/restaking/types" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) func RegisterInvariants(ir sdk.InvariantRegistry, k *Keeper) { diff --git a/x/restaking/keeper/keeper.go b/x/restaking/keeper/keeper.go index 5f9914b2..a79dbe5e 100644 --- a/x/restaking/keeper/keeper.go +++ b/x/restaking/keeper/keeper.go @@ -10,7 +10,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/restaking/types" + "github.com/milkyway-labs/milkyway/v3/x/restaking/types" ) type Keeper struct { diff --git a/x/restaking/keeper/msg_server.go b/x/restaking/keeper/msg_server.go index 22cc73f5..bfab594a 100644 --- a/x/restaking/keeper/msg_server.go +++ b/x/restaking/keeper/msg_server.go @@ -12,10 +12,10 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" "github.com/hashicorp/go-metrics" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - poolstypes "github.com/milkyway-labs/milkyway/v2/x/pools/types" - "github.com/milkyway-labs/milkyway/v2/x/restaking/types" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + poolstypes "github.com/milkyway-labs/milkyway/v3/x/pools/types" + "github.com/milkyway-labs/milkyway/v3/x/restaking/types" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) var _ types.MsgServer = msgServer{} diff --git a/x/restaking/keeper/msg_server_test.go b/x/restaking/keeper/msg_server_test.go index 4c43a89f..17472448 100644 --- a/x/restaking/keeper/msg_server_test.go +++ b/x/restaking/keeper/msg_server_test.go @@ -7,11 +7,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - poolstypes "github.com/milkyway-labs/milkyway/v2/x/pools/types" - "github.com/milkyway-labs/milkyway/v2/x/restaking/keeper" - "github.com/milkyway-labs/milkyway/v2/x/restaking/types" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + poolstypes "github.com/milkyway-labs/milkyway/v3/x/pools/types" + "github.com/milkyway-labs/milkyway/v3/x/restaking/keeper" + "github.com/milkyway-labs/milkyway/v3/x/restaking/types" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) func (suite *KeeperTestSuite) TestMsgServer_JoinService() { diff --git a/x/restaking/keeper/operator_restaking.go b/x/restaking/keeper/operator_restaking.go index a2ec3332..514cbe2b 100644 --- a/x/restaking/keeper/operator_restaking.go +++ b/x/restaking/keeper/operator_restaking.go @@ -9,8 +9,8 @@ import ( "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - "github.com/milkyway-labs/milkyway/v2/x/restaking/types" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/x/restaking/types" ) // AddServiceToOperatorJoinedServices adds the given service to the list of services joined by diff --git a/x/restaking/keeper/operator_restaking_test.go b/x/restaking/keeper/operator_restaking_test.go index 3ff22c66..b2f55c78 100644 --- a/x/restaking/keeper/operator_restaking_test.go +++ b/x/restaking/keeper/operator_restaking_test.go @@ -4,8 +4,8 @@ import ( sdkmath "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - "github.com/milkyway-labs/milkyway/v2/x/restaking/types" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/x/restaking/types" ) func (suite *KeeperTestSuite) TestKeeper_SaveOperatorDelegation() { diff --git a/x/restaking/keeper/operators_hooks.go b/x/restaking/keeper/operators_hooks.go index 13ee6242..0c3bd911 100644 --- a/x/restaking/keeper/operators_hooks.go +++ b/x/restaking/keeper/operators_hooks.go @@ -6,7 +6,7 @@ import ( "cosmossdk.io/collections" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" ) var _ operatorstypes.OperatorsHooks = &OperatorsHooks{} diff --git a/x/restaking/keeper/operators_hooks_test.go b/x/restaking/keeper/operators_hooks_test.go index 52e288c1..736473bc 100644 --- a/x/restaking/keeper/operators_hooks_test.go +++ b/x/restaking/keeper/operators_hooks_test.go @@ -3,7 +3,7 @@ package keeper_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) func (suite *KeeperTestSuite) TestOperatorHooks_BeforeOperatorDeleted() { diff --git a/x/restaking/keeper/params.go b/x/restaking/keeper/params.go index 942bc343..c9d0eb2b 100644 --- a/x/restaking/keeper/params.go +++ b/x/restaking/keeper/params.go @@ -5,7 +5,7 @@ import ( "slices" "time" - "github.com/milkyway-labs/milkyway/v2/x/restaking/types" + "github.com/milkyway-labs/milkyway/v3/x/restaking/types" ) // UnbondingTime returns the unbonding time. diff --git a/x/restaking/keeper/pool_restaking.go b/x/restaking/keeper/pool_restaking.go index 1b965ecc..4bb3b42e 100644 --- a/x/restaking/keeper/pool_restaking.go +++ b/x/restaking/keeper/pool_restaking.go @@ -7,8 +7,8 @@ import ( "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" - poolstypes "github.com/milkyway-labs/milkyway/v2/x/pools/types" - "github.com/milkyway-labs/milkyway/v2/x/restaking/types" + poolstypes "github.com/milkyway-labs/milkyway/v3/x/pools/types" + "github.com/milkyway-labs/milkyway/v3/x/restaking/types" ) // GetPoolDelegation retrieves the delegation for the given user and pool diff --git a/x/restaking/keeper/pool_restaking_test.go b/x/restaking/keeper/pool_restaking_test.go index 8bd7e8b7..b7f525c4 100644 --- a/x/restaking/keeper/pool_restaking_test.go +++ b/x/restaking/keeper/pool_restaking_test.go @@ -4,8 +4,8 @@ import ( sdkmath "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - poolstypes "github.com/milkyway-labs/milkyway/v2/x/pools/types" - "github.com/milkyway-labs/milkyway/v2/x/restaking/types" + poolstypes "github.com/milkyway-labs/milkyway/v3/x/pools/types" + "github.com/milkyway-labs/milkyway/v3/x/restaking/types" ) func (suite *KeeperTestSuite) TestKeeper_SavePoolDelegation() { diff --git a/x/restaking/keeper/restake_restriction.go b/x/restaking/keeper/restake_restriction.go index ed38495c..07e47aa0 100644 --- a/x/restaking/keeper/restake_restriction.go +++ b/x/restaking/keeper/restake_restriction.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/restaking/types" + "github.com/milkyway-labs/milkyway/v3/x/restaking/types" ) // SetRestakeRestriction sets a function that checks if a restake operation is allowed. diff --git a/x/restaking/keeper/service_restaking.go b/x/restaking/keeper/service_restaking.go index 36a603d7..0ad61821 100644 --- a/x/restaking/keeper/service_restaking.go +++ b/x/restaking/keeper/service_restaking.go @@ -9,9 +9,9 @@ import ( "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/utils" - "github.com/milkyway-labs/milkyway/v2/x/restaking/types" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/utils" + "github.com/milkyway-labs/milkyway/v3/x/restaking/types" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) // ServiceAllowedOperatorsIterator returns an iterator that iterates over all diff --git a/x/restaking/keeper/service_restaking_test.go b/x/restaking/keeper/service_restaking_test.go index 4c72dce0..7fed170e 100644 --- a/x/restaking/keeper/service_restaking_test.go +++ b/x/restaking/keeper/service_restaking_test.go @@ -4,8 +4,8 @@ import ( sdkmath "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/restaking/types" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/x/restaking/types" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) // -------------------------------------------------------------------------------------------------------------------- diff --git a/x/restaking/keeper/services_hooks.go b/x/restaking/keeper/services_hooks.go index 49c20f4b..54485ae7 100644 --- a/x/restaking/keeper/services_hooks.go +++ b/x/restaking/keeper/services_hooks.go @@ -5,7 +5,7 @@ import ( "cosmossdk.io/collections" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) type ServicesHooks struct { diff --git a/x/restaking/keeper/unbond.go b/x/restaking/keeper/unbond.go index 6d6b5834..7a292410 100644 --- a/x/restaking/keeper/unbond.go +++ b/x/restaking/keeper/unbond.go @@ -9,11 +9,11 @@ import ( storetypes "cosmossdk.io/store/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/utils" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - poolstypes "github.com/milkyway-labs/milkyway/v2/x/pools/types" - "github.com/milkyway-labs/milkyway/v2/x/restaking/types" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/utils" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + poolstypes "github.com/milkyway-labs/milkyway/v3/x/pools/types" + "github.com/milkyway-labs/milkyway/v3/x/restaking/types" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) // IncrementUnbondingID increments and returns a unique ID for an unbonding operation diff --git a/x/restaking/keeper/user_preferences.go b/x/restaking/keeper/user_preferences.go index e1e5c538..148f104b 100644 --- a/x/restaking/keeper/user_preferences.go +++ b/x/restaking/keeper/user_preferences.go @@ -8,7 +8,7 @@ import ( cosmoserrors "cosmossdk.io/errors" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/milkyway-labs/milkyway/v2/x/restaking/types" + "github.com/milkyway-labs/milkyway/v3/x/restaking/types" ) // SetUserPreferences sets the given preferences for the user having the given address diff --git a/x/restaking/keeper/user_preferences_test.go b/x/restaking/keeper/user_preferences_test.go index 60895dad..c03a10d4 100644 --- a/x/restaking/keeper/user_preferences_test.go +++ b/x/restaking/keeper/user_preferences_test.go @@ -3,7 +3,7 @@ package keeper_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/restaking/types" + "github.com/milkyway-labs/milkyway/v3/x/restaking/types" ) func (suite *KeeperTestSuite) TestKeeper_SetUserPreferences() { diff --git a/x/restaking/module.go b/x/restaking/module.go index 0bb6359e..2b83c6f1 100644 --- a/x/restaking/module.go +++ b/x/restaking/module.go @@ -17,9 +17,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/milkyway-labs/milkyway/v2/x/restaking/client/cli" - "github.com/milkyway-labs/milkyway/v2/x/restaking/keeper" - "github.com/milkyway-labs/milkyway/v2/x/restaking/types" + "github.com/milkyway-labs/milkyway/v3/x/restaking/client/cli" + "github.com/milkyway-labs/milkyway/v3/x/restaking/keeper" + "github.com/milkyway-labs/milkyway/v3/x/restaking/types" ) const ( diff --git a/x/restaking/testutils/hooks_mocks.go b/x/restaking/testutils/hooks_mocks.go index dd768ef0..0de802fd 100644 --- a/x/restaking/testutils/hooks_mocks.go +++ b/x/restaking/testutils/hooks_mocks.go @@ -3,7 +3,7 @@ package testutils import ( "context" - "github.com/milkyway-labs/milkyway/v2/x/restaking/types" + "github.com/milkyway-labs/milkyway/v3/x/restaking/types" ) var _ types.RestakingHooks = &MockHooks{} diff --git a/x/restaking/testutils/keeper.go b/x/restaking/testutils/keeper.go index c50573cf..1eeeb10f 100644 --- a/x/restaking/testutils/keeper.go +++ b/x/restaking/testutils/keeper.go @@ -8,15 +8,15 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/milkyway-labs/milkyway/v2/testutils/storetesting" - operatorskeeper "github.com/milkyway-labs/milkyway/v2/x/operators/keeper" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - poolskeeper "github.com/milkyway-labs/milkyway/v2/x/pools/keeper" - poolstypes "github.com/milkyway-labs/milkyway/v2/x/pools/types" - "github.com/milkyway-labs/milkyway/v2/x/restaking/keeper" - "github.com/milkyway-labs/milkyway/v2/x/restaking/types" - serviceskeeper "github.com/milkyway-labs/milkyway/v2/x/services/keeper" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/testutils/storetesting" + operatorskeeper "github.com/milkyway-labs/milkyway/v3/x/operators/keeper" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + poolskeeper "github.com/milkyway-labs/milkyway/v3/x/pools/keeper" + poolstypes "github.com/milkyway-labs/milkyway/v3/x/pools/types" + "github.com/milkyway-labs/milkyway/v3/x/restaking/keeper" + "github.com/milkyway-labs/milkyway/v3/x/restaking/types" + serviceskeeper "github.com/milkyway-labs/milkyway/v3/x/services/keeper" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) type KeeperTestData struct { diff --git a/x/restaking/types/expected_keepers.go b/x/restaking/types/expected_keepers.go index 62afe412..0d196961 100644 --- a/x/restaking/types/expected_keepers.go +++ b/x/restaking/types/expected_keepers.go @@ -6,9 +6,9 @@ import ( "cosmossdk.io/core/address" sdk "github.com/cosmos/cosmos-sdk/types" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - poolstypes "github.com/milkyway-labs/milkyway/v2/x/pools/types" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + poolstypes "github.com/milkyway-labs/milkyway/v3/x/pools/types" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) type AccountKeeper interface { diff --git a/x/restaking/types/genesis.go b/x/restaking/types/genesis.go index 40cdf30a..5a56eb73 100644 --- a/x/restaking/types/genesis.go +++ b/x/restaking/types/genesis.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/utils" + "github.com/milkyway-labs/milkyway/v3/utils" ) // NewGenesis creates a new genesis state diff --git a/x/restaking/types/genesis.pb.go b/x/restaking/types/genesis.pb.go index 33bb3c2a..45e14a10 100644 --- a/x/restaking/types/genesis.pb.go +++ b/x/restaking/types/genesis.pb.go @@ -362,45 +362,46 @@ func init() { } var fileDescriptor_0378bd63cae7d256 = []byte{ - // 608 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x94, 0xcb, 0x6e, 0xd3, 0x40, - 0x14, 0x86, 0xe3, 0x5e, 0xe9, 0x71, 0xcb, 0xc5, 0x4a, 0xa9, 0x89, 0x84, 0x93, 0x06, 0xa9, 0xaa, - 0x80, 0xda, 0x6a, 0x90, 0xd8, 0xb0, 0x6a, 0x15, 0x84, 0xc2, 0x02, 0x22, 0x47, 0x6c, 0x58, 0x60, - 0x39, 0xf1, 0x60, 0x4c, 0x1d, 0x8f, 0x35, 0xc7, 0x49, 0x09, 0x3c, 0x01, 0x3b, 0x5e, 0x84, 0xf7, - 0xe8, 0xb2, 0x4b, 0x56, 0x11, 0x72, 0x5e, 0x04, 0xd9, 0x9e, 0x71, 0xdc, 0x26, 0x8e, 0xc4, 0x2e, - 0xf1, 0xfc, 0xe7, 0xfb, 0x46, 0xe3, 0xdf, 0x03, 0x4f, 0x86, 0x9e, 0x7f, 0x31, 0xb9, 0xb4, 0x27, - 0x06, 0x23, 0x18, 0xd9, 0x17, 0x5e, 0xe0, 0x1a, 0xe3, 0x53, 0xc3, 0x25, 0x01, 0x41, 0x0f, 0xf5, - 0x90, 0xd1, 0x88, 0x2a, 0xfb, 0x22, 0xa4, 0xe7, 0x21, 0x7d, 0x7c, 0x5a, 0xab, 0xba, 0xd4, 0xa5, - 0x69, 0xc2, 0x48, 0x7e, 0x65, 0xe1, 0x5a, 0x73, 0x39, 0x71, 0x48, 0x1d, 0xe2, 0xe3, 0xea, 0x4c, - 0x68, 0x33, 0x7b, 0xc8, 0x33, 0xcd, 0xef, 0xf0, 0xf0, 0x7d, 0x48, 0x98, 0x1d, 0x51, 0xf6, 0x96, - 0x7a, 0x01, 0x71, 0x7a, 0x84, 0x8d, 0xbd, 0x01, 0x41, 0xc5, 0x00, 0x99, 0xf2, 0x15, 0xcb, 0x73, - 0x54, 0xa9, 0x21, 0x1d, 0xef, 0x9d, 0xdf, 0x8d, 0xa7, 0x75, 0x10, 0x03, 0x9d, 0xb6, 0x09, 0x22, - 0xd2, 0x71, 0x92, 0x01, 0xcc, 0x86, 0x2d, 0xcf, 0x41, 0x75, 0xad, 0xb1, 0x2e, 0x06, 0x38, 0xb3, - 0xd3, 0x46, 0x13, 0x78, 0xa4, 0xe3, 0x60, 0xf3, 0x07, 0x1c, 0xf0, 0x95, 0x33, 0xdf, 0xa7, 0x97, - 0xc4, 0x11, 0x60, 0x54, 0x9e, 0x03, 0xcc, 0x59, 0xdc, 0xbd, 0x17, 0x4f, 0xeb, 0x3b, 0x39, 0xca, - 0xdc, 0xc9, 0x49, 0x4a, 0x0b, 0x76, 0x0b, 0x5b, 0x15, 0xea, 0x7b, 0xf1, 0xb4, 0x2e, 0xcf, 0xf7, - 0x8a, 0xa6, 0x3c, 0xdf, 0x2c, 0x36, 0x7d, 0xa8, 0x72, 0x56, 0x8f, 0x0c, 0x46, 0xcc, 0x0b, 0xdc, - 0x2e, 0xa5, 0xfe, 0xff, 0x9a, 0x8f, 0xe0, 0x4e, 0x48, 0xa9, 0x5f, 0xb0, 0xca, 0xf1, 0xb4, 0xbe, - 0x9d, 0xa0, 0x12, 0xe3, 0x76, 0xb2, 0x98, 0xd8, 0x7e, 0x4a, 0x50, 0xfd, 0x80, 0x84, 0x75, 0x19, - 0xf9, 0x4c, 0x18, 0x09, 0x06, 0x04, 0x5f, 0x07, 0x11, 0x9b, 0x28, 0x87, 0xb0, 0x3b, 0x42, 0xc2, - 0x2c, 0xdb, 0x71, 0x18, 0x41, 0x4c, 0x85, 0x3b, 0xa6, 0x9c, 0x3c, 0x3b, 0xcb, 0x1e, 0x29, 0xef, - 0x40, 0x0e, 0xe7, 0x63, 0xea, 0x5a, 0x43, 0x3a, 0x96, 0x5b, 0x47, 0xfa, 0xd2, 0xb6, 0xe8, 0xb7, - 0x24, 0xe7, 0x1b, 0x57, 0xd3, 0x7a, 0xc5, 0x2c, 0x02, 0x9a, 0xbf, 0x37, 0x61, 0xf7, 0x4d, 0xd6, - 0xbc, 0x5e, 0x64, 0x47, 0x44, 0x79, 0x05, 0x5b, 0x59, 0x27, 0x52, 0xbb, 0xdc, 0x7a, 0x5c, 0xc2, - 0xee, 0xa6, 0x21, 0x8e, 0xe4, 0x23, 0x0a, 0x85, 0x47, 0xe2, 0x58, 0xd1, 0xfa, 0x9a, 0x56, 0xc8, - 0xe2, 0xe7, 0x93, 0x1d, 0x89, 0xdc, 0x3a, 0x29, 0xe1, 0x2d, 0x2f, 0x1e, 0xe7, 0x1f, 0xe4, 0xd4, - 0x5b, 0xbd, 0x64, 0x50, 0x13, 0x7c, 0xcb, 0xce, 0x7a, 0x63, 0xe5, 0x59, 0x75, 0x3d, 0x35, 0xea, - 0x25, 0xc6, 0x92, 0xba, 0x71, 0xa5, 0x2a, 0xb8, 0x0b, 0x75, 0xf4, 0xe0, 0x20, 0x77, 0x22, 0xaf, - 0x8b, 0x95, 0xbc, 0x5b, 0x54, 0x37, 0x52, 0xe1, 0xb3, 0xd5, 0xc2, 0x1b, 0x15, 0xe3, 0xb6, 0x7d, - 0x41, 0xbc, 0xd9, 0xbf, 0x0e, 0xc8, 0x0e, 0xf1, 0x89, 0x6b, 0x47, 0x1e, 0x0d, 0x50, 0xdd, 0x4c, - 0xf1, 0x87, 0x25, 0xf8, 0x76, 0x9e, 0x14, 0x2f, 0xba, 0x30, 0xab, 0x10, 0xd8, 0x1f, 0x05, 0x7d, - 0x1a, 0x38, 0xc9, 0x6e, 0x8b, 0xd0, 0xad, 0x14, 0xfa, 0xb4, 0xac, 0x42, 0x62, 0x66, 0x81, 0x5e, - 0x1d, 0x2d, 0x2e, 0xa1, 0xf2, 0x09, 0x1e, 0x24, 0x75, 0x45, 0xab, 0xd8, 0xd2, 0xed, 0x95, 0xc7, - 0xb2, 0xec, 0x53, 0xe0, 0x8e, 0xfb, 0x29, 0xab, 0x58, 0xe1, 0xee, 0x55, 0xac, 0x49, 0xd7, 0xb1, - 0x26, 0xfd, 0x8d, 0x35, 0xe9, 0xd7, 0x4c, 0xab, 0x5c, 0xcf, 0xb4, 0xca, 0x9f, 0x99, 0x56, 0xf9, - 0xf8, 0xd2, 0xf5, 0xa2, 0x2f, 0xa3, 0xbe, 0x3e, 0xa0, 0x43, 0x43, 0x88, 0x4e, 0x7c, 0xbb, 0x8f, - 0xf9, 0x3f, 0x63, 0xdc, 0x32, 0xbe, 0x15, 0xae, 0xbf, 0x68, 0x12, 0x12, 0xec, 0x6f, 0xa5, 0x77, - 0xdf, 0x8b, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xd7, 0xd4, 0x48, 0x01, 0x97, 0x05, 0x00, 0x00, + // 609 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x94, 0xcd, 0x6e, 0xd3, 0x4c, + 0x14, 0x86, 0xe3, 0xfe, 0x7e, 0x3d, 0x6e, 0x3f, 0xc0, 0x4a, 0xa9, 0x89, 0x84, 0x93, 0x06, 0xa9, + 0xaa, 0x80, 0xda, 0x6a, 0x2a, 0xb1, 0x61, 0xd5, 0x2a, 0x08, 0x85, 0x05, 0x44, 0x8e, 0xd8, 0xb0, + 0xc0, 0x72, 0xe2, 0xc1, 0x98, 0x3a, 0x1e, 0x6b, 0x8e, 0x93, 0x12, 0xb8, 0x02, 0x76, 0xdc, 0x08, + 0xf7, 0xd1, 0x65, 0x97, 0xac, 0x22, 0xe4, 0xdc, 0x08, 0xb2, 0x3d, 0xe3, 0xb8, 0x4d, 0x1c, 0x89, + 0x5d, 0xe2, 0x79, 0xcf, 0xf3, 0x8c, 0xc6, 0xaf, 0x07, 0x9e, 0x0c, 0x3d, 0xff, 0x72, 0x72, 0x65, + 0x4f, 0x0c, 0x46, 0x30, 0xb2, 0x2f, 0xbd, 0xc0, 0x35, 0xc6, 0xa7, 0x86, 0x4b, 0x02, 0x82, 0x1e, + 0xea, 0x21, 0xa3, 0x11, 0x55, 0xf6, 0x45, 0x48, 0xcf, 0x43, 0xfa, 0xf8, 0xb4, 0x56, 0x75, 0xa9, + 0x4b, 0xd3, 0x84, 0x91, 0xfc, 0xca, 0xc2, 0xb5, 0xe6, 0x72, 0xe2, 0x90, 0x3a, 0xc4, 0xc7, 0xd5, + 0x99, 0xd0, 0x66, 0xf6, 0x90, 0x67, 0x9a, 0xdf, 0xe0, 0xe1, 0xbb, 0x90, 0x30, 0x3b, 0xa2, 0xec, + 0x0d, 0xf5, 0x02, 0xe2, 0xf4, 0x08, 0x1b, 0x7b, 0x03, 0x82, 0x8a, 0x01, 0x32, 0xe5, 0x2b, 0x96, + 0xe7, 0xa8, 0x52, 0x43, 0x3a, 0xde, 0xbb, 0xf8, 0x3f, 0x9e, 0xd6, 0x41, 0x0c, 0x74, 0xda, 0x26, + 0x88, 0x48, 0xc7, 0x49, 0x06, 0x30, 0x1b, 0xb6, 0x3c, 0x07, 0xd5, 0xb5, 0xc6, 0xba, 0x18, 0xe0, + 0xcc, 0x4e, 0x1b, 0x4d, 0xe0, 0x91, 0x8e, 0x83, 0xcd, 0xef, 0x70, 0xc0, 0x57, 0xce, 0x7d, 0x9f, + 0x5e, 0x11, 0x47, 0x80, 0x51, 0x79, 0x0e, 0x30, 0x67, 0x71, 0xf7, 0x5e, 0x3c, 0xad, 0xef, 0xe4, + 0x28, 0x73, 0x27, 0x27, 0x29, 0x2d, 0xd8, 0x2d, 0x6c, 0x55, 0xa8, 0xef, 0xc5, 0xd3, 0xba, 0x3c, + 0xdf, 0x2b, 0x9a, 0xf2, 0x7c, 0xb3, 0xd8, 0xf4, 0xa1, 0xca, 0x59, 0x3d, 0x32, 0x18, 0x31, 0x2f, + 0x70, 0xbb, 0x94, 0xfa, 0xff, 0x6a, 0x3e, 0x82, 0xff, 0x42, 0x4a, 0xfd, 0x82, 0x55, 0x8e, 0xa7, + 0xf5, 0xed, 0x04, 0x95, 0x18, 0xb7, 0x93, 0xc5, 0xc4, 0xf6, 0x43, 0x82, 0xea, 0x7b, 0x24, 0xac, + 0xcb, 0xc8, 0x27, 0xc2, 0x48, 0x30, 0x20, 0xf8, 0x2a, 0x88, 0xd8, 0x44, 0x39, 0x84, 0xdd, 0x11, + 0x12, 0x66, 0xd9, 0x8e, 0xc3, 0x08, 0x62, 0x2a, 0xdc, 0x31, 0xe5, 0xe4, 0xd9, 0x79, 0xf6, 0x48, + 0x79, 0x0b, 0x72, 0x38, 0x1f, 0x53, 0xd7, 0x1a, 0xd2, 0xb1, 0xdc, 0x3a, 0xd2, 0x97, 0xb6, 0x45, + 0xbf, 0x23, 0xb9, 0xd8, 0xb8, 0x9e, 0xd6, 0x2b, 0x66, 0x11, 0xd0, 0xfc, 0xb5, 0x09, 0xbb, 0xaf, + 0xb3, 0xe6, 0xf5, 0x22, 0x3b, 0x22, 0xca, 0x4b, 0xd8, 0xca, 0x3a, 0x91, 0xda, 0xe5, 0xd6, 0xe3, + 0x12, 0x76, 0x37, 0x0d, 0x71, 0x24, 0x1f, 0x51, 0x28, 0x3c, 0x12, 0xc7, 0x8a, 0xd6, 0x97, 0xb4, + 0x42, 0x16, 0x3f, 0x9f, 0xec, 0x48, 0xe4, 0xd6, 0x49, 0x09, 0x6f, 0x79, 0xf1, 0x38, 0xff, 0x20, + 0xa7, 0xde, 0xe9, 0x25, 0x83, 0x9a, 0xe0, 0x5b, 0x76, 0xd6, 0x1b, 0x2b, 0xcf, 0xaa, 0xeb, 0xa9, + 0x51, 0x2f, 0x31, 0x96, 0xd4, 0x8d, 0x2b, 0x55, 0xc1, 0x5d, 0xa8, 0xa3, 0x07, 0x07, 0xb9, 0x13, + 0x79, 0x5d, 0xac, 0xe4, 0xdd, 0xa2, 0xba, 0x91, 0x0a, 0x9f, 0xad, 0x16, 0xde, 0xaa, 0x18, 0xb7, + 0xed, 0x0b, 0xe2, 0xed, 0xfe, 0x75, 0x40, 0x76, 0x88, 0x4f, 0x5c, 0x3b, 0xf2, 0x68, 0x80, 0xea, + 0x66, 0x8a, 0x3f, 0x2c, 0xc1, 0xb7, 0xf3, 0xa4, 0x78, 0xd1, 0x85, 0x59, 0x85, 0xc0, 0xfe, 0x28, + 0xe8, 0xd3, 0xc0, 0x49, 0x76, 0x5b, 0x84, 0x6e, 0xa5, 0xd0, 0xa7, 0x65, 0x15, 0x12, 0x33, 0x0b, + 0xf4, 0xea, 0x68, 0x71, 0x09, 0x95, 0x8f, 0xf0, 0x20, 0xa9, 0x2b, 0x5a, 0xc5, 0x96, 0x6e, 0xaf, + 0x3c, 0x96, 0x65, 0x9f, 0x02, 0x77, 0xdc, 0x4f, 0x59, 0xc5, 0x0a, 0x77, 0xaf, 0x63, 0x4d, 0xba, + 0x89, 0x35, 0xe9, 0x4f, 0xac, 0x49, 0x3f, 0x67, 0x5a, 0xe5, 0x66, 0xa6, 0x55, 0x7e, 0xcf, 0xb4, + 0xca, 0x87, 0x17, 0xae, 0x17, 0x7d, 0x1e, 0xf5, 0xf5, 0x01, 0x1d, 0x1a, 0x42, 0x74, 0xe2, 0xdb, + 0x7d, 0xcc, 0xff, 0x19, 0xe3, 0x33, 0xe3, 0x6b, 0xe1, 0xfa, 0x8b, 0x26, 0x21, 0xc1, 0xfe, 0x56, + 0x7a, 0xf7, 0x9d, 0xfd, 0x0d, 0x00, 0x00, 0xff, 0xff, 0x96, 0xcf, 0xc4, 0x6f, 0x97, 0x05, 0x00, + 0x00, } func (m *OperatorJoinedServices) Marshal() (dAtA []byte, err error) { diff --git a/x/restaking/types/genesis_test.go b/x/restaking/types/genesis_test.go index 5940cbfb..93380480 100644 --- a/x/restaking/types/genesis_test.go +++ b/x/restaking/types/genesis_test.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - "github.com/milkyway-labs/milkyway/v2/x/restaking/types" + "github.com/milkyway-labs/milkyway/v3/x/restaking/types" ) func TestGenesis_Validate(t *testing.T) { diff --git a/x/restaking/types/keys.go b/x/restaking/types/keys.go index f086a2c0..8a90a2c3 100644 --- a/x/restaking/types/keys.go +++ b/x/restaking/types/keys.go @@ -5,9 +5,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - poolstypes "github.com/milkyway-labs/milkyway/v2/x/pools/types" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + poolstypes "github.com/milkyway-labs/milkyway/v3/x/pools/types" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) const ( diff --git a/x/restaking/types/messages.pb.go b/x/restaking/types/messages.pb.go index 5af17523..1e661739 100644 --- a/x/restaking/types/messages.pb.go +++ b/x/restaking/types/messages.pb.go @@ -1351,88 +1351,88 @@ var fileDescriptor_9772be2b1a923bdb = []byte{ // 1335 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x57, 0x4f, 0x6c, 0x1b, 0xc5, 0x17, 0xf6, 0x3a, 0xfd, 0xf9, 0x27, 0x4f, 0xda, 0xb4, 0x5d, 0xda, 0x26, 0xd9, 0x36, 0x76, 0xd9, - 0x96, 0xd6, 0xa4, 0xce, 0x2e, 0x76, 0x49, 0x69, 0x0d, 0x1c, 0xe2, 0x46, 0x48, 0xae, 0x6a, 0xa8, + 0x96, 0xd6, 0xa4, 0xce, 0x2e, 0x4e, 0x48, 0x69, 0x0d, 0x1c, 0xe2, 0x46, 0x48, 0xae, 0x6a, 0x88, 0x9c, 0xf6, 0xc2, 0x25, 0x5a, 0x7b, 0x27, 0x9b, 0x55, 0x76, 0x77, 0xac, 0x9d, 0xb5, 0x93, 0xdc, 0x10, 0x42, 0x02, 0x71, 0xaa, 0xc4, 0x89, 0x0b, 0xca, 0x05, 0x09, 0x71, 0xca, 0x81, 0x0b, 0x37, 0x24, 0x2e, 0x15, 0xe2, 0x50, 0x38, 0x20, 0x4e, 0x69, 0xe5, 0x1c, 0x82, 0x38, 0x22, 0x71, 0x47, 0xbb, 0x3b, 0x3b, 0xde, 0xff, 0xb1, 0x23, 0x88, 0x72, 0x49, 0xbc, 0xf3, 0xbe, 0xf7, 0xe6, 0x7d, - 0xdf, 0xcc, 0xbc, 0x79, 0x03, 0xae, 0xeb, 0xaa, 0xb6, 0xb1, 0xbd, 0x29, 0x6d, 0x8b, 0x26, 0xc4, - 0x96, 0xb4, 0xa1, 0x1a, 0x8a, 0xd8, 0xaf, 0x88, 0x3a, 0xc4, 0x58, 0x52, 0x20, 0x16, 0xba, 0x26, - 0xb2, 0x10, 0x7b, 0xd1, 0x43, 0x09, 0x14, 0x25, 0xf4, 0x2b, 0x5c, 0x51, 0x41, 0x48, 0xd1, 0xa0, - 0xe8, 0x80, 0xda, 0xbd, 0x35, 0xd1, 0x52, 0x75, 0xdb, 0xae, 0x77, 0x5d, 0x3f, 0xee, 0xbc, 0xa4, - 0xab, 0x06, 0x12, 0x9d, 0xbf, 0x64, 0x68, 0xb6, 0x83, 0xb0, 0x8e, 0xf0, 0xaa, 0xf3, 0x25, 0xba, - 0x1f, 0xc4, 0x54, 0x70, 0xbf, 0xc4, 0xb6, 0x84, 0xa1, 0xd8, 0xaf, 0xb4, 0xa1, 0x25, 0x55, 0xc4, - 0x0e, 0x52, 0x0d, 0x62, 0x9f, 0x26, 0x76, 0x1d, 0xbb, 0x39, 0x62, 0x85, 0x18, 0x2e, 0x28, 0x48, - 0x41, 0x6e, 0x40, 0xfb, 0x17, 0x19, 0xe5, 0xe3, 0xa9, 0x75, 0x25, 0x53, 0xd2, 0x71, 0x3a, 0x46, - 0x47, 0x32, 0xd4, 0x08, 0x86, 0xff, 0x89, 0x01, 0x53, 0x4d, 0xac, 0x3c, 0x40, 0xaa, 0xb1, 0x02, - 0xcd, 0xbe, 0xda, 0x81, 0xec, 0x1b, 0x20, 0x87, 0xa1, 0x21, 0x43, 0x73, 0x86, 0xb9, 0xca, 0x94, - 0xf2, 0xf5, 0x99, 0x5f, 0xbf, 0x5b, 0xb8, 0x40, 0xb8, 0x2c, 0xc9, 0xb2, 0x09, 0x31, 0x5e, 0xb1, - 0x4c, 0xd5, 0x50, 0x5a, 0x04, 0xc7, 0x8a, 0x60, 0x12, 0x75, 0xa1, 0x29, 0x59, 0xc8, 0x5c, 0x55, - 0xe5, 0x99, 0xec, 0x55, 0xa6, 0x74, 0xa6, 0x3e, 0x35, 0xd8, 0x2b, 0x82, 0x0f, 0xc8, 0x70, 0x63, - 0xb9, 0x05, 0x3c, 0x48, 0x43, 0x66, 0xcb, 0x00, 0x60, 0x77, 0x36, 0x1b, 0x3f, 0xe1, 0xe0, 0xcf, - 0x0c, 0xf6, 0x8a, 0x79, 0x92, 0x43, 0x63, 0xb9, 0x95, 0x27, 0x80, 0x86, 0x5c, 0xbb, 0xf9, 0xf1, - 0xc1, 0xee, 0x3c, 0x99, 0xeb, 0xf3, 0x83, 0xdd, 0xf9, 0x69, 0xca, 0x2b, 0x98, 0x39, 0x3f, 0x03, - 0x2e, 0x05, 0x47, 0x5a, 0x10, 0x77, 0x91, 0x81, 0x21, 0xff, 0x33, 0x03, 0xce, 0x36, 0xb1, 0xf2, - 0x10, 0x4a, 0x7d, 0x78, 0x62, 0x79, 0x96, 0x42, 0x3c, 0x67, 0xfc, 0x3c, 0xfd, 0xa9, 0xf3, 0xb3, - 0x60, 0x3a, 0x34, 0x44, 0x99, 0xbe, 0x64, 0xc0, 0x6c, 0x13, 0x2b, 0x4b, 0xb2, 0xec, 0xe5, 0xf4, - 0x18, 0x2d, 0x69, 0x1a, 0xda, 0x7c, 0xa8, 0x62, 0xeb, 0x08, 0x9c, 0x83, 0x14, 0xb2, 0xe9, 0x14, - 0xc2, 0x0a, 0x4d, 0x1c, 0xa6, 0x50, 0xad, 0x1a, 0xe2, 0xcc, 0xfb, 0x39, 0xc7, 0x93, 0xe0, 0xaf, - 0x81, 0x57, 0x13, 0x8d, 0x54, 0x87, 0x3f, 0x19, 0x50, 0x68, 0x62, 0xa5, 0x05, 0x75, 0xd4, 0x87, - 0x1e, 0xf0, 0x3d, 0x13, 0xe9, 0x0e, 0x54, 0x3b, 0x91, 0x62, 0xbc, 0x15, 0x12, 0xe3, 0xa6, 0x5f, - 0x8c, 0x14, 0x26, 0x7c, 0x09, 0xdc, 0x48, 0x47, 0xf8, 0x0f, 0xc2, 0xc5, 0x26, 0x56, 0xea, 0xc8, - 0x34, 0xd1, 0xe6, 0x23, 0x84, 0xb4, 0x15, 0xd8, 0xe9, 0x99, 0xaa, 0xb5, 0xfd, 0x9f, 0xab, 0x71, - 0x0d, 0xfc, 0xbf, 0x8b, 0x90, 0x36, 0x54, 0x02, 0x0c, 0xf6, 0x8a, 0x39, 0x3b, 0x85, 0xc6, 0x72, - 0x2b, 0x67, 0x9b, 0x1a, 0x72, 0x4d, 0x08, 0x29, 0x50, 0xf0, 0x2b, 0x10, 0x4d, 0x9a, 0x2f, 0x82, - 0xb9, 0x58, 0x03, 0xe5, 0xfb, 0x1b, 0x03, 0xb8, 0x26, 0x56, 0xee, 0x43, 0x09, 0x43, 0x3f, 0xc0, - 0x75, 0x39, 0x19, 0xa4, 0x6f, 0x87, 0x48, 0x5f, 0xf3, 0x93, 0x4e, 0xc8, 0x9c, 0xbf, 0x0e, 0xf8, - 0x64, 0x2b, 0xa5, 0xff, 0xbd, 0x5b, 0xf7, 0x96, 0xa1, 0x06, 0x15, 0xc9, 0x72, 0x90, 0xec, 0x1d, - 0x90, 0x97, 0xdd, 0x6f, 0x74, 0x38, 0xed, 0x21, 0x94, 0x5d, 0x02, 0x39, 0x49, 0x47, 0x3d, 0xc3, - 0x72, 0x58, 0x4f, 0x56, 0x67, 0x05, 0xe2, 0x61, 0x5f, 0x69, 0x02, 0xb9, 0xd2, 0x84, 0xfb, 0x48, - 0x35, 0xea, 0x53, 0xcf, 0xf6, 0x8a, 0x19, 0x9b, 0xe9, 0x92, 0xe3, 0xd0, 0x22, 0x8e, 0xb5, 0x5b, - 0x36, 0xd3, 0x61, 0xc8, 0x48, 0x91, 0xf3, 0xe7, 0x49, 0x8a, 0x9c, 0x7f, 0x88, 0xd2, 0xfa, 0x2a, - 0x0b, 0x5e, 0xf1, 0xd9, 0xbc, 0x2d, 0x7f, 0x64, 0x6a, 0x63, 0x17, 0x76, 0x9d, 0x6a, 0x31, 0x71, - 0x75, 0x22, 0x5d, 0x8b, 0x5a, 0x50, 0x8b, 0x6f, 0x5f, 0x14, 0x4b, 0x8a, 0x6a, 0xad, 0xf7, 0xda, - 0x42, 0x07, 0xe9, 0xa4, 0x47, 0x20, 0xff, 0x16, 0xb0, 0xbc, 0x21, 0x5a, 0xdb, 0x5d, 0x88, 0x1d, - 0x57, 0x4c, 0x75, 0x13, 0xa3, 0xba, 0x5d, 0x89, 0xd3, 0xcd, 0xcb, 0x96, 0x9f, 0x03, 0x97, 0x63, - 0x86, 0xa9, 0x7e, 0x5f, 0x66, 0x01, 0xeb, 0xb3, 0x7b, 0x37, 0xe2, 0x51, 0xe5, 0x1b, 0xef, 0x4c, - 0x1c, 0xb3, 0x76, 0x42, 0x54, 0xbb, 0xcb, 0x71, 0xda, 0x79, 0x77, 0xeb, 0x15, 0xa7, 0x60, 0x84, - 0x46, 0xa9, 0x72, 0xbf, 0xb8, 0x07, 0xea, 0x49, 0x57, 0xb6, 0xf7, 0xa4, 0xd3, 0x6d, 0xb1, 0x0f, - 0x40, 0x5e, 0xea, 0x59, 0xeb, 0xc8, 0x3e, 0x7f, 0x44, 0xb6, 0xf2, 0x5f, 0x7b, 0xc5, 0x73, 0xdb, - 0x92, 0xae, 0xd5, 0x78, 0x6a, 0xe2, 0x93, 0xa5, 0xa4, 0x18, 0xf6, 0x6d, 0x90, 0x73, 0x7b, 0x38, - 0x72, 0xc8, 0xe6, 0x84, 0xd8, 0xee, 0x54, 0x70, 0xa7, 0xae, 0x9f, 0xb2, 0x05, 0x6a, 0x11, 0x97, - 0xda, 0xa2, 0x43, 0x95, 0x06, 0x0b, 0xde, 0xa7, 0xc3, 0x1e, 0x30, 0x94, 0x3f, 0x39, 0x68, 0xfe, - 0x21, 0x4a, 0xf7, 0x07, 0x06, 0x9c, 0xb7, 0x6d, 0x86, 0xfc, 0x6f, 0x54, 0x90, 0x77, 0x46, 0xaf, - 0x20, 0x79, 0x9b, 0xd8, 0x37, 0x07, 0xbb, 0xf3, 0x0c, 0x5d, 0xc8, 0xc5, 0xcf, 0x76, 0x8a, 0x99, - 0x3f, 0x76, 0x8a, 0x99, 0xe8, 0x82, 0x72, 0xfe, 0x05, 0x0d, 0x26, 0xcb, 0x7f, 0x9d, 0x75, 0x6e, - 0xbc, 0xe1, 0xe8, 0xf1, 0x57, 0x8b, 0xf5, 0xd1, 0x77, 0xfc, 0xa2, 0xcd, 0x7b, 0x9c, 0x7d, 0x1e, - 0xd4, 0xe8, 0x5e, 0xb2, 0x46, 0x85, 0x78, 0x8d, 0x68, 0xc9, 0xd8, 0xc9, 0x82, 0x0b, 0x01, 0xcb, - 0xf1, 0x56, 0x85, 0xe3, 0xd3, 0xe8, 0x6e, 0xb2, 0x46, 0x73, 0xf1, 0x1a, 0x79, 0xa5, 0x61, 0x23, - 0xb4, 0x93, 0xbc, 0x63, 0xc2, 0xb6, 0xc0, 0xd9, 0x0e, 0xd2, 0xbb, 0x1a, 0xb4, 0x54, 0x64, 0xac, - 0xda, 0x0f, 0x45, 0x47, 0xa8, 0xc9, 0x2a, 0x27, 0xb8, 0xaf, 0x48, 0xc1, 0x7b, 0x45, 0x0a, 0x8f, - 0xbd, 0x57, 0x64, 0xfd, 0x8c, 0x4d, 0xe3, 0xe9, 0x8b, 0x22, 0xe3, 0xa6, 0x37, 0x35, 0x8c, 0x60, - 0x63, 0xf8, 0x1f, 0xdd, 0x4e, 0x6d, 0x05, 0x5a, 0x4f, 0x30, 0x34, 0x1f, 0x99, 0x70, 0x0d, 0x9a, - 0xd0, 0xe8, 0x40, 0xcc, 0x96, 0xc1, 0xa9, 0x1e, 0x1e, 0xa1, 0x65, 0x71, 0x50, 0xec, 0xfb, 0x60, - 0xb2, 0x3b, 0x74, 0x26, 0x27, 0xef, 0x46, 0x42, 0x59, 0x09, 0x4d, 0x45, 0xea, 0x8b, 0x3f, 0x40, - 0xad, 0x6c, 0xcb, 0xe6, 0x84, 0x8e, 0xec, 0xaa, 0x68, 0xae, 0xa4, 0x41, 0x8b, 0x1a, 0x3c, 0xe9, - 0xaa, 0x7f, 0x9f, 0x06, 0x13, 0x4d, 0xac, 0xb0, 0x1d, 0x30, 0xe9, 0x7f, 0x84, 0xbe, 0x96, 0x90, - 0x60, 0xf0, 0x7d, 0xc7, 0x2d, 0x8c, 0x04, 0xa3, 0xeb, 0xb4, 0x06, 0x4e, 0x07, 0x9e, 0x80, 0x37, - 0x92, 0xdd, 0xfd, 0x38, 0x4e, 0x18, 0x0d, 0x47, 0xe7, 0xf9, 0x84, 0x01, 0x97, 0x92, 0x5e, 0x60, - 0xc9, 0xa1, 0xe2, 0x3d, 0xb8, 0xbb, 0xe3, 0x7a, 0xd0, 0x34, 0xbe, 0x60, 0xc0, 0xe5, 0xb4, 0x07, - 0xd0, 0x62, 0x72, 0xe4, 0x14, 0x37, 0xee, 0xdd, 0x23, 0xb9, 0xd1, 0xac, 0xb6, 0x00, 0x1b, 0xf3, - 0xfc, 0x28, 0x27, 0x07, 0x8d, 0xa2, 0xb9, 0x37, 0xc7, 0x41, 0xd3, 0x99, 0x3f, 0x65, 0xc0, 0x74, - 0xd2, 0x4b, 0xa0, 0x92, 0x1c, 0x31, 0xc1, 0x85, 0xbb, 0x37, 0xb6, 0x8b, 0x7f, 0x23, 0x06, 0x7a, - 0xf2, 0x94, 0x8d, 0xe8, 0xc7, 0xa5, 0x6d, 0xc4, 0xb8, 0x46, 0x99, 0x35, 0xc1, 0xb9, 0x48, 0x93, - 0x3c, 0x7f, 0x78, 0x0c, 0x0f, 0xcb, 0x55, 0x47, 0xc7, 0xd2, 0x39, 0x11, 0x38, 0x1b, 0x6e, 0x2c, - 0x5f, 0x3f, 0x3c, 0x8c, 0x77, 0xd4, 0x2a, 0x23, 0x43, 0xfd, 0x62, 0x06, 0xfa, 0xb1, 0x14, 0x31, - 0xfd, 0xb8, 0x34, 0x31, 0xe3, 0x9a, 0x21, 0x76, 0x1d, 0x4c, 0x85, 0x1a, 0xa1, 0x52, 0x4a, 0x84, - 0x00, 0x92, 0x2b, 0x8f, 0x82, 0xa4, 0x33, 0x75, 0x01, 0x1b, 0xd3, 0xaf, 0x8c, 0x14, 0x83, 0x2e, - 0xdd, 0x78, 0x33, 0x1a, 0xe0, 0x7c, 0xf4, 0xe6, 0xbf, 0x35, 0x4a, 0x08, 0x6f, 0xe1, 0xc6, 0x9b, - 0x6f, 0x0b, 0xb0, 0x71, 0x37, 0x5b, 0x72, 0x8c, 0x28, 0x3a, 0xad, 0x08, 0x24, 0x5f, 0x38, 0xdc, - 0xff, 0x3e, 0xb2, 0xaf, 0xdb, 0xfa, 0xa3, 0x67, 0x83, 0x02, 0xf3, 0x7c, 0x50, 0x60, 0x5e, 0x0e, - 0x0a, 0xcc, 0xd3, 0xfd, 0x42, 0xe6, 0xf9, 0x7e, 0x21, 0xf3, 0xfb, 0x7e, 0x21, 0xf3, 0xe1, 0x1d, - 0x5f, 0x5b, 0xe1, 0x4d, 0xb0, 0xa0, 0x49, 0x6d, 0x4c, 0xbf, 0xc4, 0x7e, 0x55, 0xdc, 0xf2, 0x35, - 0xd4, 0x4e, 0xab, 0xd1, 0xce, 0x39, 0x77, 0xfc, 0xed, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x6b, - 0xcc, 0x72, 0x07, 0x76, 0x16, 0x00, 0x00, + 0xdf, 0xcc, 0xbc, 0x79, 0x03, 0x6e, 0xea, 0xaa, 0xb6, 0xb9, 0xb3, 0x25, 0xed, 0x88, 0x26, 0xc4, + 0x96, 0xb4, 0xa9, 0x1a, 0x8a, 0xd8, 0xab, 0x88, 0x3a, 0xc4, 0x58, 0x52, 0x20, 0x16, 0x3a, 0x26, + 0xb2, 0x10, 0x7b, 0xd9, 0x43, 0x09, 0x14, 0x25, 0xf4, 0x2a, 0x5c, 0x51, 0x41, 0x48, 0xd1, 0xa0, + 0xe8, 0x80, 0x5a, 0xdd, 0x75, 0xd1, 0x52, 0x75, 0xdb, 0xae, 0x77, 0x5c, 0x3f, 0xee, 0xa2, 0xa4, + 0xab, 0x06, 0x12, 0x9d, 0xbf, 0x64, 0x68, 0xba, 0x8d, 0xb0, 0x8e, 0xf0, 0x9a, 0xf3, 0x25, 0xba, + 0x1f, 0xc4, 0x54, 0x70, 0xbf, 0xc4, 0x96, 0x84, 0xa1, 0xd8, 0xab, 0xb4, 0xa0, 0x25, 0x55, 0xc4, + 0x36, 0x52, 0x0d, 0x62, 0x9f, 0x24, 0x76, 0x1d, 0xbb, 0x39, 0x62, 0x85, 0x18, 0x2e, 0x29, 0x48, + 0x41, 0x6e, 0x40, 0xfb, 0x17, 0x19, 0xe5, 0xe3, 0xa9, 0x75, 0x24, 0x53, 0xd2, 0x71, 0x3a, 0x46, + 0x47, 0x32, 0xd4, 0x08, 0x86, 0xff, 0x89, 0x01, 0x13, 0x0d, 0xac, 0x3c, 0x44, 0xaa, 0xb1, 0x0a, + 0xcd, 0x9e, 0xda, 0x86, 0xec, 0x1b, 0x20, 0x87, 0xa1, 0x21, 0x43, 0x73, 0x8a, 0xb9, 0xce, 0x94, + 0xf2, 0xb5, 0xa9, 0x5f, 0xbf, 0x9b, 0xbb, 0x44, 0xb8, 0x2c, 0xc9, 0xb2, 0x09, 0x31, 0x5e, 0xb5, + 0x4c, 0xd5, 0x50, 0x9a, 0x04, 0xc7, 0x8a, 0x60, 0x1c, 0x75, 0xa0, 0x29, 0x59, 0xc8, 0x5c, 0x53, + 0xe5, 0xa9, 0xec, 0x75, 0xa6, 0x74, 0xae, 0x36, 0xd1, 0xdf, 0x2f, 0x82, 0x0f, 0xc8, 0x70, 0x7d, + 0xb9, 0x09, 0x3c, 0x48, 0x5d, 0x66, 0xcb, 0x00, 0x60, 0x77, 0x36, 0x1b, 0x3f, 0xe6, 0xe0, 0xcf, + 0xf5, 0xf7, 0x8b, 0x79, 0x92, 0x43, 0x7d, 0xb9, 0x99, 0x27, 0x80, 0xba, 0x5c, 0xbd, 0xfd, 0xf1, + 0xe1, 0xde, 0x2c, 0x99, 0xeb, 0xf3, 0xc3, 0xbd, 0xd9, 0x49, 0xca, 0x2b, 0x98, 0x39, 0x3f, 0x05, + 0xae, 0x04, 0x47, 0x9a, 0x10, 0x77, 0x90, 0x81, 0x21, 0xff, 0x33, 0x03, 0xce, 0x37, 0xb0, 0xf2, + 0x08, 0x4a, 0x3d, 0x78, 0x6a, 0x79, 0x96, 0x42, 0x3c, 0xa7, 0xfc, 0x3c, 0xfd, 0xa9, 0xf3, 0xd3, + 0x60, 0x32, 0x34, 0x44, 0x99, 0xbe, 0x64, 0xc0, 0x74, 0x03, 0x2b, 0x4b, 0xb2, 0xec, 0xe5, 0xf4, + 0x18, 0x2d, 0x69, 0x1a, 0xda, 0x7a, 0xa4, 0x62, 0xeb, 0x18, 0x9c, 0x83, 0x14, 0xb2, 0xe9, 0x14, + 0xc2, 0x0a, 0x8d, 0x1d, 0xa5, 0x50, 0x75, 0x3e, 0xc4, 0x99, 0xf7, 0x73, 0x8e, 0x27, 0xc1, 0xdf, + 0x00, 0xaf, 0x26, 0x1a, 0xa9, 0x0e, 0x7f, 0x32, 0xa0, 0xd0, 0xc0, 0x4a, 0x13, 0xea, 0xa8, 0x07, + 0x3d, 0xe0, 0x7b, 0x26, 0xd2, 0x1d, 0xa8, 0x76, 0x2a, 0xc5, 0x78, 0x2b, 0x24, 0xc6, 0x6d, 0xbf, + 0x18, 0x29, 0x4c, 0xf8, 0x12, 0xb8, 0x95, 0x8e, 0xf0, 0x1f, 0x84, 0xcb, 0x0d, 0xac, 0xd4, 0x90, + 0x69, 0xa2, 0xad, 0x15, 0x84, 0xb4, 0x55, 0xd8, 0xee, 0x9a, 0xaa, 0xb5, 0xf3, 0x9f, 0xab, 0x71, + 0x03, 0xfc, 0xbf, 0x83, 0x90, 0x36, 0x50, 0x02, 0xf4, 0xf7, 0x8b, 0x39, 0x3b, 0x85, 0xfa, 0x72, + 0x33, 0x67, 0x9b, 0xea, 0x72, 0x55, 0x08, 0x29, 0x50, 0xf0, 0x2b, 0x10, 0x4d, 0x9a, 0x2f, 0x82, + 0x99, 0x58, 0x03, 0xe5, 0xfb, 0x1b, 0x03, 0xb8, 0x06, 0x56, 0x1e, 0x40, 0x09, 0x43, 0x3f, 0xc0, + 0x75, 0x39, 0x1d, 0xa4, 0x17, 0x42, 0xa4, 0x6f, 0xf8, 0x49, 0x27, 0x64, 0xce, 0xdf, 0x04, 0x7c, + 0xb2, 0x95, 0xd2, 0xff, 0xde, 0xad, 0x7b, 0xcb, 0x50, 0x83, 0x8a, 0x64, 0x39, 0x48, 0xf6, 0x2e, + 0xc8, 0xcb, 0xee, 0x37, 0x3a, 0x9a, 0xf6, 0x00, 0xca, 0x2e, 0x81, 0x9c, 0xa4, 0xa3, 0xae, 0x61, + 0x39, 0xac, 0xc7, 0xe7, 0xa7, 0x05, 0xe2, 0x61, 0x5f, 0x69, 0x02, 0xb9, 0xd2, 0x84, 0x07, 0x48, + 0x35, 0x6a, 0x13, 0xcf, 0xf6, 0x8b, 0x19, 0x9b, 0xe9, 0x92, 0xe3, 0xd0, 0x24, 0x8e, 0xd5, 0x3b, + 0x36, 0xd3, 0x41, 0xc8, 0x48, 0x91, 0xf3, 0xe7, 0x49, 0x8a, 0x9c, 0x7f, 0x88, 0xd2, 0xfa, 0x2a, + 0x0b, 0x5e, 0xf1, 0xd9, 0xbc, 0x2d, 0x7f, 0x6c, 0x6a, 0x23, 0x17, 0x76, 0x9d, 0x6a, 0x31, 0x76, + 0x7d, 0x2c, 0x5d, 0x8b, 0x6a, 0x50, 0x8b, 0x6f, 0x5f, 0x14, 0x4b, 0x8a, 0x6a, 0x6d, 0x74, 0x5b, + 0x42, 0x1b, 0xe9, 0xa4, 0x47, 0x20, 0xff, 0xe6, 0xb0, 0xbc, 0x29, 0x5a, 0x3b, 0x1d, 0x88, 0x1d, + 0x57, 0x4c, 0x75, 0x13, 0xa3, 0xba, 0x5d, 0x8b, 0xd3, 0xcd, 0xcb, 0x96, 0x9f, 0x01, 0x57, 0x63, + 0x86, 0xa9, 0x7e, 0x5f, 0x66, 0x01, 0xeb, 0xb3, 0x7b, 0x37, 0xe2, 0x71, 0xe5, 0x1b, 0xed, 0x4c, + 0x9c, 0xb0, 0x76, 0x42, 0x54, 0xbb, 0xab, 0x71, 0xda, 0x79, 0x77, 0xeb, 0x35, 0xa7, 0x60, 0x84, + 0x46, 0xa9, 0x72, 0xbf, 0xb8, 0x07, 0xea, 0x49, 0x47, 0xb6, 0xf7, 0xa4, 0xd3, 0x6d, 0xb1, 0x0f, + 0x41, 0x5e, 0xea, 0x5a, 0x1b, 0xc8, 0x3e, 0x7f, 0x44, 0xb6, 0xf2, 0x5f, 0xfb, 0xc5, 0x0b, 0x3b, + 0x92, 0xae, 0x55, 0x79, 0x6a, 0xe2, 0x93, 0xa5, 0xa4, 0x18, 0xf6, 0x6d, 0x90, 0x73, 0x7b, 0x38, + 0x72, 0xc8, 0x66, 0x84, 0xd8, 0xee, 0x54, 0x70, 0xa7, 0xae, 0x9d, 0xb1, 0x05, 0x6a, 0x12, 0x97, + 0xea, 0xa2, 0x43, 0x95, 0x06, 0x0b, 0xde, 0xa7, 0x83, 0x1e, 0x30, 0x94, 0x3f, 0x39, 0x68, 0xfe, + 0x21, 0x4a, 0xf7, 0x07, 0x06, 0x5c, 0xb4, 0x6d, 0x86, 0xfc, 0x6f, 0x54, 0x90, 0x77, 0x86, 0xaf, + 0x20, 0x79, 0x9b, 0xd8, 0x37, 0x87, 0x7b, 0xb3, 0x0c, 0x5d, 0xc8, 0xc5, 0xcf, 0x76, 0x8b, 0x99, + 0x3f, 0x76, 0x8b, 0x99, 0xe8, 0x82, 0x72, 0xfe, 0x05, 0x0d, 0x26, 0xcb, 0x7f, 0x9d, 0x75, 0x6e, + 0xbc, 0xc1, 0xe8, 0xc9, 0x57, 0x8b, 0x8d, 0xe1, 0x77, 0xfc, 0xa2, 0xcd, 0x7b, 0x94, 0x7d, 0x1e, + 0xd4, 0xe8, 0x7e, 0xb2, 0x46, 0x85, 0x78, 0x8d, 0x68, 0xc9, 0xd8, 0xcd, 0x82, 0x4b, 0x01, 0xcb, + 0xc9, 0x56, 0x85, 0x93, 0xd3, 0xe8, 0x5e, 0xb2, 0x46, 0x33, 0xf1, 0x1a, 0x79, 0xa5, 0x61, 0x33, + 0xb4, 0x93, 0xbc, 0x63, 0xc2, 0x36, 0xc1, 0xf9, 0x36, 0xd2, 0x3b, 0x1a, 0xb4, 0x54, 0x64, 0xac, + 0xd9, 0x0f, 0x45, 0x47, 0xa8, 0xf1, 0x79, 0x4e, 0x70, 0x5f, 0x91, 0x82, 0xf7, 0x8a, 0x14, 0x1e, + 0x7b, 0xaf, 0xc8, 0xda, 0x39, 0x9b, 0xc6, 0xd3, 0x17, 0x45, 0xc6, 0x4d, 0x6f, 0x62, 0x10, 0xc1, + 0xc6, 0xf0, 0x3f, 0xba, 0x9d, 0xda, 0x2a, 0xb4, 0x9e, 0x60, 0x68, 0xae, 0x98, 0x70, 0x1d, 0x9a, + 0xd0, 0x68, 0x43, 0xcc, 0x96, 0xc1, 0x99, 0x2e, 0x1e, 0xa2, 0x65, 0x71, 0x50, 0xec, 0xfb, 0x60, + 0xbc, 0x33, 0x70, 0x26, 0x27, 0xef, 0x56, 0x42, 0x59, 0x09, 0x4d, 0x45, 0xea, 0x8b, 0x3f, 0x40, + 0xb5, 0x6c, 0xcb, 0xe6, 0x84, 0x8e, 0xec, 0xaa, 0x68, 0xae, 0xa4, 0x41, 0x8b, 0x1a, 0x3c, 0xe9, + 0xe6, 0xff, 0x3e, 0x0b, 0xc6, 0x1a, 0x58, 0x61, 0xdb, 0x60, 0xdc, 0xff, 0x08, 0x7d, 0x2d, 0x21, + 0xc1, 0xe0, 0xfb, 0x8e, 0x9b, 0x1b, 0x0a, 0x46, 0xd7, 0x69, 0x1d, 0x9c, 0x0d, 0x3c, 0x01, 0x6f, + 0x25, 0xbb, 0xfb, 0x71, 0x9c, 0x30, 0x1c, 0x8e, 0xce, 0xf3, 0x09, 0x03, 0xae, 0x24, 0xbd, 0xc0, + 0x92, 0x43, 0xc5, 0x7b, 0x70, 0xf7, 0x46, 0xf5, 0xa0, 0x69, 0x7c, 0xc1, 0x80, 0xab, 0x69, 0x0f, + 0xa0, 0xc5, 0xe4, 0xc8, 0x29, 0x6e, 0xdc, 0xbb, 0xc7, 0x72, 0xa3, 0x59, 0x6d, 0x03, 0x36, 0xe6, + 0xf9, 0x51, 0x4e, 0x0e, 0x1a, 0x45, 0x73, 0x6f, 0x8e, 0x82, 0xa6, 0x33, 0x7f, 0xca, 0x80, 0xc9, + 0xa4, 0x97, 0x40, 0x25, 0x39, 0x62, 0x82, 0x0b, 0x77, 0x7f, 0x64, 0x17, 0xff, 0x46, 0x0c, 0xf4, + 0xe4, 0x29, 0x1b, 0xd1, 0x8f, 0x4b, 0xdb, 0x88, 0x71, 0x8d, 0x32, 0x6b, 0x82, 0x0b, 0x91, 0x26, + 0x79, 0xf6, 0xe8, 0x18, 0x1e, 0x96, 0x9b, 0x1f, 0x1e, 0x4b, 0xe7, 0x44, 0xe0, 0x7c, 0xb8, 0xb1, + 0x7c, 0xfd, 0xe8, 0x30, 0xde, 0x51, 0xab, 0x0c, 0x0d, 0xf5, 0x8b, 0x19, 0xe8, 0xc7, 0x52, 0xc4, + 0xf4, 0xe3, 0xd2, 0xc4, 0x8c, 0x6b, 0x86, 0xd8, 0x0d, 0x30, 0x11, 0x6a, 0x84, 0x4a, 0x29, 0x11, + 0x02, 0x48, 0xae, 0x3c, 0x0c, 0x92, 0xce, 0xd4, 0x01, 0x6c, 0x4c, 0xbf, 0x32, 0x54, 0x0c, 0xba, + 0x74, 0xa3, 0xcd, 0x68, 0x80, 0x8b, 0xd1, 0x9b, 0xff, 0xce, 0x30, 0x21, 0xbc, 0x85, 0x1b, 0x6d, + 0xbe, 0x6d, 0xc0, 0xc6, 0xdd, 0x6c, 0xc9, 0x31, 0xa2, 0xe8, 0xb4, 0x22, 0x90, 0x7c, 0xe1, 0x70, + 0xff, 0xfb, 0xc8, 0xbe, 0x6e, 0x6b, 0x2b, 0xcf, 0xfa, 0x05, 0xe6, 0x79, 0xbf, 0xc0, 0xbc, 0xec, + 0x17, 0x98, 0xa7, 0x07, 0x85, 0xcc, 0xf3, 0x83, 0x42, 0xe6, 0xf7, 0x83, 0x42, 0xe6, 0xc3, 0xbb, + 0xbe, 0xb6, 0xc2, 0x9b, 0x60, 0x4e, 0x93, 0x5a, 0x98, 0x7e, 0x89, 0xbd, 0x05, 0x71, 0xdb, 0xd7, + 0x50, 0x3b, 0xad, 0x46, 0x2b, 0xe7, 0xdc, 0xf1, 0x0b, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0x2a, + 0xd7, 0xfe, 0x69, 0x76, 0x16, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/restaking/types/messages_test.go b/x/restaking/types/messages_test.go index cae6f3f1..8aa92daf 100644 --- a/x/restaking/types/messages_test.go +++ b/x/restaking/types/messages_test.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - "github.com/milkyway-labs/milkyway/v2/x/restaking/types" + "github.com/milkyway-labs/milkyway/v3/x/restaking/types" ) var msgUpdateOperatorParams = types.NewMsgJoinService(1, 1, "cosmos13t6y2nnugtshwuy0zkrq287a95lyy8vzleaxmd") diff --git a/x/restaking/types/models.go b/x/restaking/types/models.go index cc148f98..3c60f033 100644 --- a/x/restaking/types/models.go +++ b/x/restaking/types/models.go @@ -9,9 +9,9 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - poolstypes "github.com/milkyway-labs/milkyway/v2/x/pools/types" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + poolstypes "github.com/milkyway-labs/milkyway/v3/x/pools/types" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) // -------------------------------------------------------------------------------------------------------------------- diff --git a/x/restaking/types/models.pb.go b/x/restaking/types/models.pb.go index a024fe7d..81a129ca 100644 --- a/x/restaking/types/models.pb.go +++ b/x/restaking/types/models.pb.go @@ -468,64 +468,64 @@ func init() { var fileDescriptor_86f4cd48423b1e2f = []byte{ // 918 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x56, 0x41, 0x6f, 0x1b, 0x45, - 0x14, 0xf6, 0xda, 0x26, 0x4d, 0xc6, 0x49, 0xec, 0x0e, 0x81, 0x6c, 0xdc, 0xd6, 0x6b, 0x2c, 0x21, - 0x4c, 0x51, 0x76, 0x89, 0x2b, 0x21, 0x11, 0xb8, 0xd8, 0xf1, 0x42, 0x8d, 0xa2, 0xd8, 0xda, 0x6c, - 0x90, 0xe0, 0xb2, 0x1a, 0xef, 0x4e, 0x37, 0xa3, 0xd8, 0x33, 0xd6, 0xce, 0xd8, 0xe0, 0x7f, 0xd0, - 0x03, 0x87, 0xfe, 0x84, 0x0a, 0x38, 0x20, 0x0e, 0x88, 0x03, 0x3f, 0xa2, 0x37, 0x2a, 0x4e, 0x88, - 0x43, 0x8a, 0x9c, 0x43, 0xf9, 0x19, 0x68, 0x67, 0x77, 0xed, 0x95, 0x71, 0x44, 0x41, 0x45, 0x5c, - 0x12, 0xcf, 0x7b, 0xdf, 0xf7, 0x66, 0xbe, 0xf7, 0xbe, 0x67, 0x19, 0xd4, 0x86, 0x64, 0x70, 0x31, - 0xfd, 0x02, 0x4d, 0x8d, 0x00, 0x73, 0x81, 0x2e, 0x08, 0xf5, 0x8d, 0xc9, 0x81, 0x31, 0x64, 0x1e, - 0x1e, 0x70, 0x7d, 0x14, 0x30, 0xc1, 0xe0, 0x6b, 0x09, 0x46, 0x9f, 0x63, 0xf4, 0xc9, 0x41, 0x79, - 0xc7, 0x67, 0x3e, 0x93, 0x08, 0x23, 0xfc, 0x14, 0x81, 0xcb, 0x9a, 0xcf, 0x98, 0x3f, 0xc0, 0x86, - 0x3c, 0xf5, 0xc7, 0x0f, 0x0c, 0x41, 0x86, 0x21, 0x6b, 0x38, 0x8a, 0x01, 0x37, 0xd1, 0x90, 0x50, - 0x66, 0xc8, 0xbf, 0x71, 0x68, 0xcf, 0x65, 0x7c, 0xc8, 0xb8, 0x13, 0x15, 0x8b, 0x0e, 0x71, 0xaa, - 0x12, 0x9d, 0x8c, 0x3e, 0xe2, 0xd8, 0x98, 0x1c, 0xf4, 0xb1, 0x40, 0x07, 0x86, 0xcb, 0x08, 0x8d, - 0xf2, 0xb5, 0x6f, 0xb3, 0x00, 0xb4, 0xf1, 0x00, 0xfb, 0x48, 0x10, 0x46, 0xe1, 0xfb, 0x20, 0x2f, - 0xa6, 0x23, 0xac, 0x2a, 0x55, 0xa5, 0xbe, 0xdd, 0x78, 0x53, 0x5f, 0xf9, 0x72, 0x7d, 0x41, 0xb0, - 0xa7, 0x23, 0x6c, 0x49, 0x0a, 0xfc, 0x00, 0x6c, 0x8e, 0x39, 0x0e, 0x1c, 0xe4, 0x79, 0x01, 0xe6, - 0x5c, 0xcd, 0x56, 0x95, 0xfa, 0x46, 0x4b, 0xfd, 0xe5, 0xa7, 0xfd, 0x9d, 0xf8, 0x45, 0xcd, 0x28, - 0x73, 0x2a, 0x02, 0x42, 0x7d, 0xab, 0x10, 0xa2, 0xe3, 0x10, 0x7c, 0x1b, 0x6c, 0x08, 0x14, 0xf8, - 0x58, 0x38, 0xc4, 0x53, 0x73, 0x55, 0xa5, 0xbe, 0xd5, 0xda, 0x9c, 0x5d, 0x6a, 0xeb, 0xb6, 0x0c, - 0x76, 0xda, 0xd6, 0x7a, 0x94, 0xee, 0x78, 0x90, 0x80, 0x35, 0x7e, 0x8e, 0x02, 0xcc, 0xd5, 0x7c, - 0x35, 0x57, 0x2f, 0x34, 0x6e, 0xeb, 0x71, 0xf9, 0x50, 0xa2, 0x1e, 0x4b, 0xd4, 0xdb, 0xd8, 0x3d, - 0x62, 0x84, 0xb6, 0xee, 0x3d, 0xb9, 0xd4, 0x32, 0xdf, 0x3f, 0xd3, 0xde, 0xf1, 0x89, 0x38, 0x1f, - 0xf7, 0x75, 0x97, 0x0d, 0xe3, 0x06, 0xc5, 0xff, 0xf6, 0xb9, 0x77, 0x61, 0x84, 0x02, 0x78, 0xc2, - 0xe1, 0x56, 0x7c, 0xc1, 0xe1, 0xfa, 0xc3, 0xc7, 0x5a, 0xe6, 0x8f, 0xc7, 0x5a, 0xa6, 0xf6, 0xb3, - 0x02, 0xe0, 0x42, 0xb5, 0x85, 0xf9, 0x88, 0x51, 0x8e, 0xe1, 0x31, 0x00, 0xde, 0x3c, 0x2a, 0x9b, - 0x56, 0x68, 0xbc, 0xf1, 0xb7, 0x4d, 0x6b, 0x6d, 0x84, 0x8f, 0xfa, 0xee, 0xf9, 0x8f, 0x77, 0x15, - 0x2b, 0xc5, 0x87, 0x18, 0xdc, 0xe8, 0xa3, 0x01, 0xa2, 0x2e, 0x56, 0xb3, 0x52, 0xda, 0xde, 0x4a, - 0x69, 0x52, 0xd7, 0xbb, 0xb1, 0xae, 0xfa, 0x0b, 0xe8, 0x8a, 0x44, 0x25, 0xb5, 0x0f, 0xf3, 0x52, - 0xd1, 0xd7, 0x59, 0xf0, 0xea, 0x19, 0xed, 0x33, 0xea, 0x11, 0xea, 0xbf, 0x1c, 0x07, 0x98, 0xe0, - 0x66, 0xac, 0x86, 0xbd, 0xb8, 0x0d, 0x4a, 0x73, 0xca, 0xbf, 0xf0, 0x82, 0x0d, 0x6e, 0x60, 0x2a, - 0x02, 0x32, 0x37, 0x83, 0x71, 0xcd, 0x7b, 0x57, 0x28, 0x35, 0xa9, 0x08, 0xa6, 0xe9, 0x51, 0x24, - 0xa5, 0x52, 0x63, 0xff, 0x21, 0x07, 0xd4, 0xeb, 0xa8, 0xf0, 0x2d, 0x50, 0x74, 0x03, 0x2c, 0x03, - 0xce, 0x39, 0x26, 0xfe, 0xb9, 0x90, 0x4d, 0xcb, 0x59, 0xdb, 0x49, 0xf8, 0xbe, 0x8c, 0x42, 0x0b, - 0x14, 0x5d, 0x36, 0x1c, 0x0d, 0xb0, 0x84, 0x86, 0xfb, 0x2c, 0xbb, 0x52, 0x68, 0x94, 0xf5, 0x68, - 0xd9, 0xf5, 0x64, 0xd9, 0x75, 0x3b, 0x59, 0xf6, 0xd6, 0x56, 0xf8, 0xb0, 0x47, 0xcf, 0x34, 0x25, - 0x7a, 0xdc, 0xf6, 0xa2, 0x42, 0x88, 0x81, 0x02, 0x14, 0x09, 0x25, 0x82, 0xa0, 0x81, 0x93, 0x78, - 0x26, 0xf7, 0xf2, 0x3d, 0xb3, 0x1d, 0xdf, 0xd1, 0x8a, 0xae, 0x48, 0x3b, 0x34, 0xff, 0xdf, 0x39, - 0x14, 0x36, 0xc0, 0xe6, 0x38, 0xe9, 0x7a, 0x68, 0x82, 0x57, 0xaa, 0x4a, 0x3d, 0xdf, 0x2a, 0xce, - 0x2e, 0xb5, 0xc2, 0x7c, 0x1a, 0x9d, 0xb6, 0x55, 0x98, 0x83, 0x3a, 0x9e, 0x74, 0xb5, 0x52, 0x7b, - 0xae, 0x80, 0xb5, 0xb6, 0xdd, 0x46, 0x02, 0x41, 0x04, 0xf6, 0x16, 0x45, 0x16, 0x5b, 0xe6, 0xfc, - 0x73, 0x77, 0xef, 0x8e, 0xff, 0x6a, 0x01, 0xfb, 0x7f, 0x31, 0x7c, 0xca, 0x9a, 0x9f, 0x00, 0x10, - 0x09, 0x3d, 0x26, 0x5c, 0xc0, 0x0f, 0x41, 0xde, 0x43, 0x02, 0xa9, 0x8a, 0x9c, 0xca, 0x9d, 0xeb, - 0x74, 0x49, 0x42, 0xda, 0xf3, 0x92, 0x55, 0xfb, 0x4d, 0x01, 0xc5, 0x33, 0x8e, 0x83, 0x5e, 0x80, - 0x1f, 0xe0, 0x00, 0x53, 0x17, 0x73, 0xd8, 0x04, 0x77, 0x44, 0x30, 0xe6, 0xc2, 0xa1, 0x8c, 0x3a, - 0xc8, 0x75, 0x03, 0xec, 0x11, 0x81, 0x3d, 0x87, 0xe3, 0x60, 0x42, 0x5c, 0xcc, 0x65, 0x0b, 0xd7, - 0xad, 0xb2, 0x04, 0x9d, 0x30, 0xda, 0x9c, 0x43, 0x4e, 0x63, 0x04, 0x3c, 0x04, 0x7b, 0x51, 0x89, - 0x55, 0xf4, 0xac, 0xa4, 0xef, 0x4a, 0xc0, 0x0a, 0xee, 0x7d, 0xb0, 0x23, 0x53, 0x29, 0x8a, 0x43, - 0x3c, 0x2e, 0x4d, 0xbe, 0xd5, 0x7a, 0x7d, 0x76, 0xa9, 0x41, 0x3b, 0xca, 0x27, 0x94, 0x4e, 0x9b, - 0x5b, 0x50, 0x2c, 0xc5, 0x3c, 0x7e, 0xf7, 0x2b, 0x05, 0x6c, 0x2f, 0xcd, 0x4d, 0x03, 0xb7, 0xda, - 0xe6, 0xb1, 0xf9, 0x71, 0xd3, 0xee, 0x74, 0x4f, 0x1c, 0xfb, 0xb3, 0x9e, 0xe9, 0x9c, 0x9d, 0x9c, - 0xf6, 0xcc, 0xa3, 0xce, 0x47, 0x1d, 0xb3, 0x5d, 0xca, 0x40, 0x15, 0xec, 0x2c, 0x03, 0x7a, 0xdd, - 0xee, 0x71, 0x49, 0x81, 0xb7, 0x81, 0xba, 0x9c, 0xe9, 0xf6, 0x4c, 0xab, 0x69, 0x77, 0xad, 0x52, - 0x16, 0xde, 0x02, 0xbb, 0xcb, 0xd9, 0x53, 0xd3, 0xfa, 0xb4, 0x73, 0x64, 0x96, 0x72, 0xe5, 0xfc, - 0xc3, 0x6f, 0x2a, 0x99, 0x56, 0xef, 0xc9, 0xac, 0xa2, 0x3c, 0x9d, 0x55, 0x94, 0xdf, 0x67, 0x15, - 0xe5, 0xd1, 0x55, 0x25, 0xf3, 0xf4, 0xaa, 0x92, 0xf9, 0xf5, 0xaa, 0x92, 0xf9, 0xfc, 0xbd, 0xd4, - 0xa2, 0x24, 0xf3, 0xdb, 0x1f, 0xa0, 0x3e, 0x9f, 0x9f, 0x8c, 0x49, 0xc3, 0xf8, 0x32, 0xf5, 0x43, - 0x43, 0x2e, 0x4f, 0x7f, 0x4d, 0x7e, 0x7b, 0xdc, 0xfb, 0x33, 0x00, 0x00, 0xff, 0xff, 0x79, 0xc7, - 0x75, 0x7d, 0x8b, 0x08, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x56, 0x41, 0x6f, 0xe3, 0x44, + 0x14, 0x8e, 0x93, 0xd0, 0x6d, 0x27, 0x6d, 0x92, 0x1d, 0x0a, 0x75, 0xb3, 0xbb, 0x71, 0x88, 0x84, + 0x08, 0x8b, 0x6a, 0xd3, 0x54, 0x42, 0xa2, 0x70, 0x49, 0x1a, 0xc3, 0x06, 0x55, 0x4d, 0xe4, 0xba, + 0x48, 0x70, 0xb1, 0x26, 0xf6, 0xac, 0x3b, 0x6a, 0x32, 0x13, 0x79, 0x26, 0x81, 0xfc, 0x83, 0x3d, + 0x70, 0xd8, 0x9f, 0xb0, 0x02, 0x0e, 0x88, 0x03, 0xe2, 0xc0, 0x8f, 0xd8, 0x1b, 0x2b, 0x4e, 0x88, + 0x43, 0x17, 0xa5, 0x87, 0xe5, 0x67, 0x20, 0x8f, 0xed, 0x24, 0x0a, 0xa9, 0x58, 0x50, 0x11, 0x97, + 0x36, 0xf3, 0xde, 0xf7, 0xbd, 0x99, 0xef, 0xbd, 0xef, 0x45, 0x01, 0xd5, 0x01, 0xe9, 0x5f, 0x4c, + 0xbe, 0x40, 0x13, 0x23, 0xc0, 0x5c, 0xa0, 0x0b, 0x42, 0x7d, 0x63, 0xbc, 0x6f, 0x0c, 0x98, 0x87, + 0xfb, 0x5c, 0x1f, 0x06, 0x4c, 0x30, 0xf8, 0x5a, 0x82, 0xd1, 0x67, 0x18, 0x7d, 0xbc, 0x5f, 0xda, + 0xf6, 0x99, 0xcf, 0x24, 0xc2, 0x08, 0x3f, 0x45, 0xe0, 0x92, 0xe6, 0x33, 0xe6, 0xf7, 0xb1, 0x21, + 0x4f, 0xbd, 0xd1, 0x43, 0x43, 0x90, 0x41, 0xc8, 0x1a, 0x0c, 0x63, 0xc0, 0x6d, 0x34, 0x20, 0x94, + 0x19, 0xf2, 0x6f, 0x1c, 0xda, 0x75, 0x19, 0x1f, 0x30, 0xee, 0x44, 0xc5, 0xa2, 0x43, 0x9c, 0x2a, + 0x47, 0x27, 0xa3, 0x87, 0x38, 0x36, 0xc6, 0xfb, 0x3d, 0x2c, 0xd0, 0xbe, 0xe1, 0x32, 0x42, 0xa3, + 0x7c, 0xf5, 0xdb, 0x34, 0x00, 0x2d, 0xdc, 0xc7, 0x3e, 0x12, 0x84, 0x51, 0xf8, 0x3e, 0xc8, 0x8a, + 0xc9, 0x10, 0xab, 0x4a, 0x45, 0xa9, 0xe5, 0xeb, 0x6f, 0xea, 0x2b, 0x5f, 0xae, 0xcf, 0x09, 0xf6, + 0x64, 0x88, 0x2d, 0x49, 0x81, 0x1f, 0x80, 0xcd, 0x11, 0xc7, 0x81, 0x83, 0x3c, 0x2f, 0xc0, 0x9c, + 0xab, 0xe9, 0x8a, 0x52, 0xdb, 0x68, 0xaa, 0xbf, 0xfc, 0xb4, 0xb7, 0x1d, 0xbf, 0xa8, 0x11, 0x65, + 0x4e, 0x45, 0x40, 0xa8, 0x6f, 0xe5, 0x42, 0x74, 0x1c, 0x82, 0x6f, 0x83, 0x0d, 0x81, 0x02, 0x1f, + 0x0b, 0x87, 0x78, 0x6a, 0xa6, 0xa2, 0xd4, 0xb6, 0x9a, 0x9b, 0xd3, 0x4b, 0x6d, 0xdd, 0x96, 0xc1, + 0x76, 0xcb, 0x5a, 0x8f, 0xd2, 0x6d, 0x0f, 0x12, 0xb0, 0xc6, 0xcf, 0x51, 0x80, 0xb9, 0x9a, 0xad, + 0x64, 0x6a, 0xb9, 0xfa, 0x5d, 0x3d, 0x2e, 0x1f, 0x4a, 0xd4, 0x63, 0x89, 0x7a, 0x0b, 0xbb, 0x47, + 0x8c, 0xd0, 0xe6, 0xc1, 0xd3, 0x4b, 0x2d, 0xf5, 0xfd, 0x73, 0xed, 0x1d, 0x9f, 0x88, 0xf3, 0x51, + 0x4f, 0x77, 0xd9, 0x20, 0x6e, 0x50, 0xfc, 0x6f, 0x8f, 0x7b, 0x17, 0x46, 0x28, 0x80, 0x27, 0x1c, + 0x6e, 0xc5, 0x17, 0x1c, 0xae, 0x3f, 0x7a, 0xa2, 0xa5, 0xfe, 0x78, 0xa2, 0xa5, 0xaa, 0x3f, 0x2b, + 0x00, 0xce, 0x55, 0x5b, 0x98, 0x0f, 0x19, 0xe5, 0x18, 0x1e, 0x03, 0xe0, 0xcd, 0xa2, 0xb2, 0x69, + 0xb9, 0xfa, 0x1b, 0x7f, 0xdb, 0xb4, 0xe6, 0x46, 0xf8, 0xa8, 0xef, 0x5e, 0xfc, 0x78, 0x5f, 0xb1, + 0x16, 0xf8, 0x10, 0x83, 0x5b, 0x3d, 0xd4, 0x47, 0xd4, 0xc5, 0x6a, 0x5a, 0x4a, 0xdb, 0x5d, 0x29, + 0x4d, 0xea, 0x7a, 0x37, 0xd6, 0x55, 0x7b, 0x09, 0x5d, 0x91, 0xa8, 0xa4, 0xf6, 0x61, 0x56, 0x2a, + 0xfa, 0x3a, 0x0d, 0x5e, 0x3d, 0xa3, 0x3d, 0x46, 0x3d, 0x42, 0xfd, 0x9b, 0x71, 0x80, 0x09, 0x6e, + 0xc7, 0x6a, 0xd8, 0xcb, 0xdb, 0xa0, 0x38, 0xa3, 0xfc, 0x0b, 0x2f, 0xd8, 0xe0, 0x16, 0xa6, 0x22, + 0x20, 0x33, 0x33, 0x18, 0xd7, 0xbc, 0x77, 0x85, 0x52, 0x93, 0x8a, 0x60, 0xb2, 0x38, 0x8a, 0xa4, + 0xd4, 0xc2, 0xd8, 0x7f, 0xc8, 0x00, 0xf5, 0x3a, 0x2a, 0x7c, 0x0b, 0x14, 0xdc, 0x00, 0xcb, 0x80, + 0x73, 0x8e, 0x89, 0x7f, 0x2e, 0x64, 0xd3, 0x32, 0x56, 0x3e, 0x09, 0x3f, 0x90, 0x51, 0x68, 0x81, + 0x82, 0xcb, 0x06, 0xc3, 0x3e, 0x96, 0xd0, 0x70, 0x9f, 0x65, 0x57, 0x72, 0xf5, 0x92, 0x1e, 0x2d, + 0xbb, 0x9e, 0x2c, 0xbb, 0x6e, 0x27, 0xcb, 0xde, 0xdc, 0x0a, 0x1f, 0xf6, 0xf8, 0xb9, 0xa6, 0x44, + 0x8f, 0xcb, 0xcf, 0x2b, 0x84, 0x18, 0x28, 0x40, 0x81, 0x50, 0x22, 0x08, 0xea, 0x3b, 0x89, 0x67, + 0x32, 0x37, 0xef, 0x99, 0x7c, 0x7c, 0x47, 0x33, 0xba, 0x62, 0xd1, 0xa1, 0xd9, 0xff, 0xce, 0xa1, + 0xb0, 0x0e, 0x36, 0x47, 0x49, 0xd7, 0x43, 0x13, 0xbc, 0x52, 0x51, 0x6a, 0xd9, 0x66, 0x61, 0x7a, + 0xa9, 0xe5, 0x66, 0xd3, 0x68, 0xb7, 0xac, 0xdc, 0x0c, 0xd4, 0xf6, 0xa4, 0xab, 0x95, 0xea, 0x0b, + 0x05, 0xac, 0xb5, 0xec, 0x16, 0x12, 0x08, 0x22, 0xb0, 0x3b, 0x2f, 0x32, 0xdf, 0x32, 0xe7, 0x9f, + 0xbb, 0x7b, 0x67, 0xf4, 0x57, 0x0b, 0xd8, 0xff, 0x8b, 0xe1, 0x17, 0xac, 0xf9, 0x09, 0x00, 0x91, + 0xd0, 0x63, 0xc2, 0x05, 0xfc, 0x10, 0x64, 0x3d, 0x24, 0x90, 0xaa, 0xc8, 0xa9, 0xdc, 0xbb, 0x4e, + 0x97, 0x24, 0x2c, 0x7a, 0x5e, 0xb2, 0xaa, 0xbf, 0x29, 0xa0, 0x70, 0xc6, 0x71, 0xd0, 0x0d, 0xf0, + 0x43, 0x1c, 0x60, 0xea, 0x62, 0x0e, 0x1b, 0xe0, 0x9e, 0x08, 0x46, 0x5c, 0x38, 0x94, 0x51, 0x07, + 0xb9, 0x6e, 0x80, 0x3d, 0x22, 0xb0, 0xe7, 0x70, 0x1c, 0x8c, 0x89, 0x8b, 0xb9, 0x6c, 0xe1, 0xba, + 0x55, 0x92, 0xa0, 0x13, 0x46, 0x1b, 0x33, 0xc8, 0x69, 0x8c, 0x80, 0x87, 0x60, 0x37, 0x2a, 0xb1, + 0x8a, 0x9e, 0x96, 0xf4, 0x1d, 0x09, 0x58, 0xc1, 0x7d, 0x00, 0xb6, 0x65, 0x6a, 0x81, 0xe2, 0x10, + 0x8f, 0x4b, 0x93, 0x6f, 0x35, 0x5f, 0x9f, 0x5e, 0x6a, 0xd0, 0x8e, 0xf2, 0x09, 0xa5, 0xdd, 0xe2, + 0x16, 0x14, 0x4b, 0x31, 0x8f, 0xdf, 0xff, 0x4a, 0x01, 0xf9, 0xa5, 0xb9, 0x69, 0xe0, 0x4e, 0xcb, + 0x3c, 0x36, 0x3f, 0x6e, 0xd8, 0xed, 0xce, 0x89, 0x63, 0x7f, 0xd6, 0x35, 0x9d, 0xb3, 0x93, 0xd3, + 0xae, 0x79, 0xd4, 0xfe, 0xa8, 0x6d, 0xb6, 0x8a, 0x29, 0xa8, 0x82, 0xed, 0x65, 0x40, 0xb7, 0xd3, + 0x39, 0x2e, 0x2a, 0xf0, 0x2e, 0x50, 0x97, 0x33, 0x9d, 0xae, 0x69, 0x35, 0xec, 0x8e, 0x55, 0x4c, + 0xc3, 0x3b, 0x60, 0x67, 0x39, 0x7b, 0x6a, 0x5a, 0x9f, 0xb6, 0x8f, 0xcc, 0x62, 0xa6, 0x94, 0x7d, + 0xf4, 0x4d, 0x39, 0xd5, 0xec, 0x3e, 0x9d, 0x96, 0x95, 0x67, 0xd3, 0xb2, 0xf2, 0xfb, 0xb4, 0xac, + 0x3c, 0xbe, 0x2a, 0xa7, 0x9e, 0x5d, 0x95, 0x53, 0xbf, 0x5e, 0x95, 0x53, 0x9f, 0xbf, 0xb7, 0xb0, + 0x28, 0xc9, 0xfc, 0xf6, 0xfa, 0xa8, 0xc7, 0x67, 0x27, 0x63, 0x7c, 0x60, 0x7c, 0xb9, 0xf0, 0x43, + 0x43, 0x2e, 0x4f, 0x6f, 0x4d, 0x7e, 0x7b, 0x1c, 0xfc, 0x19, 0x00, 0x00, 0xff, 0xff, 0x38, 0xdc, + 0xf9, 0x13, 0x8b, 0x08, 0x00, 0x00, } func (this *UnbondingDelegationEntry) Equal(that interface{}) bool { diff --git a/x/restaking/types/models_test.go b/x/restaking/types/models_test.go index d08b523c..ddd6f783 100644 --- a/x/restaking/types/models_test.go +++ b/x/restaking/types/models_test.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - "github.com/milkyway-labs/milkyway/v2/x/restaking/types" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/x/restaking/types" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) func TestPoolDelegation_Validate(t *testing.T) { diff --git a/x/restaking/types/params.pb.go b/x/restaking/types/params.pb.go index d4ddb978..2ae43fb4 100644 --- a/x/restaking/types/params.pb.go +++ b/x/restaking/types/params.pb.go @@ -106,8 +106,8 @@ var fileDescriptor_342e630197fca2bb = []byte{ 0x82, 0x4e, 0x01, 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, 0x96, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0x0f, 0x73, 0xaf, 0x6e, 0x4e, 0x62, 0x52, - 0x31, 0x9c, 0xa7, 0x5f, 0x66, 0xa4, 0x5f, 0x81, 0xe4, 0xcd, 0x92, 0xca, 0x82, 0xd4, 0xe2, 0x24, - 0x36, 0xb0, 0xb3, 0x8d, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0xab, 0xbe, 0x3c, 0x3a, 0x09, 0x01, + 0x31, 0x9c, 0xa7, 0x5f, 0x66, 0xac, 0x5f, 0x81, 0xe4, 0xcd, 0x92, 0xca, 0x82, 0xd4, 0xe2, 0x24, + 0x36, 0xb0, 0xb3, 0x8d, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0xea, 0xa5, 0xb0, 0x54, 0x09, 0x01, 0x00, 0x00, } diff --git a/x/restaking/types/params_test.go b/x/restaking/types/params_test.go index c7fe1be1..6295f25d 100644 --- a/x/restaking/types/params_test.go +++ b/x/restaking/types/params_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/milkyway-labs/milkyway/v2/x/restaking/types" + "github.com/milkyway-labs/milkyway/v3/x/restaking/types" ) func TestParams_Validate(t *testing.T) { diff --git a/x/restaking/types/query.pb.go b/x/restaking/types/query.pb.go index c56faa73..2a7aee49 100644 --- a/x/restaking/types/query.pb.go +++ b/x/restaking/types/query.pb.go @@ -12,9 +12,9 @@ import ( _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" - types "github.com/milkyway-labs/milkyway/v2/x/operators/types" - types1 "github.com/milkyway-labs/milkyway/v2/x/pools/types" - types2 "github.com/milkyway-labs/milkyway/v2/x/services/types" + types "github.com/milkyway-labs/milkyway/v3/x/operators/types" + types1 "github.com/milkyway-labs/milkyway/v3/x/pools/types" + types2 "github.com/milkyway-labs/milkyway/v3/x/services/types" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" @@ -3382,145 +3382,145 @@ var fileDescriptor_946984316b0f92c4 = []byte{ // 2251 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x5b, 0xeb, 0x6f, 0x1c, 0x57, 0x15, 0xcf, 0x5d, 0xda, 0x3c, 0x8e, 0xfb, 0x48, 0x6e, 0x5c, 0xe2, 0xac, 0x1d, 0x3b, 0x9e, 0xa6, - 0x69, 0x62, 0x29, 0x3b, 0x5d, 0xc7, 0x79, 0x34, 0x2f, 0x3b, 0xae, 0xf3, 0x70, 0xf3, 0xb0, 0xb3, - 0x51, 0xdb, 0x10, 0x04, 0xab, 0xb1, 0x77, 0x58, 0x96, 0xae, 0x77, 0x36, 0x3b, 0xbb, 0x2e, 0x91, - 0x31, 0x42, 0x88, 0x28, 0x85, 0x42, 0x1f, 0x54, 0x7c, 0xe2, 0x1f, 0x40, 0x20, 0x28, 0x1f, 0x40, - 0xe2, 0x21, 0x2a, 0x5a, 0x24, 0x88, 0x10, 0x88, 0x96, 0x7e, 0x28, 0xa2, 0x15, 0x44, 0x49, 0x25, - 0xbe, 0x20, 0x01, 0x12, 0x7f, 0x00, 0x9a, 0x9d, 0x73, 0xe7, 0xce, 0xee, 0xdc, 0xb9, 0xf3, 0xd8, - 0xe9, 0xc6, 0xcb, 0x17, 0xcb, 0x9e, 0xb9, 0xe7, 0xde, 0xdf, 0xef, 0x77, 0xce, 0x7d, 0xcc, 0x39, - 0xd7, 0x30, 0xba, 0x54, 0x2a, 0x3f, 0x7f, 0xfd, 0x05, 0xed, 0xba, 0x5a, 0xd3, 0xcd, 0xba, 0xf6, - 0x7c, 0xa9, 0x52, 0x54, 0x97, 0xb3, 0xea, 0xb5, 0x86, 0x5e, 0xbb, 0x9e, 0xa9, 0xd6, 0x8c, 0xba, - 0x41, 0x1f, 0x61, 0x4d, 0x32, 0x4e, 0x93, 0xcc, 0x72, 0x36, 0x3d, 0xb6, 0x68, 0x98, 0x4b, 0x86, - 0xa9, 0x2e, 0x68, 0xa6, 0x6e, 0xb7, 0x57, 0x97, 0xb3, 0x0b, 0x7a, 0x5d, 0xcb, 0xaa, 0x55, 0xad, - 0x58, 0xaa, 0x68, 0xf5, 0x92, 0x51, 0xb1, 0xbb, 0x48, 0xf7, 0x17, 0x8d, 0xa2, 0xd1, 0xfc, 0x55, - 0xb5, 0x7e, 0xc3, 0xa7, 0x43, 0x45, 0xc3, 0x28, 0x96, 0x75, 0x55, 0xab, 0x96, 0x54, 0xad, 0x52, - 0x31, 0xea, 0x4d, 0x13, 0x13, 0xdf, 0x6e, 0xb7, 0xfb, 0xcf, 0xdb, 0x66, 0xf6, 0x1f, 0xf8, 0x6a, - 0x10, 0x87, 0x66, 0xa3, 0xba, 0xe1, 0xa6, 0xb7, 0x68, 0x4b, 0xa5, 0x8a, 0xa1, 0x36, 0x7f, 0xe2, - 0x23, 0x45, 0x4c, 0x72, 0xc9, 0x28, 0xe8, 0x65, 0x53, 0xde, 0xa6, 0xaa, 0xd5, 0xb4, 0x25, 0x6f, - 0x1b, 0xa3, 0xaa, 0xd7, 0xb4, 0xba, 0x51, 0x33, 0x3d, 0xfd, 0x0c, 0x3b, 0x6d, 0xaa, 0x86, 0x51, - 0xf6, 0xbe, 0xe7, 0x82, 0x9b, 0x7a, 0x6d, 0xb9, 0xb4, 0xa8, 0x7b, 0x9a, 0x28, 0xdf, 0x22, 0xa0, - 0x5c, 0xb2, 0x18, 0xcd, 0xe1, 0x28, 0x4f, 0x1b, 0xa5, 0x8a, 0x5e, 0xb8, 0x8c, 0xed, 0x73, 0xfa, - 0xb5, 0x86, 0x6e, 0xd6, 0xe9, 0x08, 0xf4, 0x31, 0x18, 0xf9, 0x52, 0x61, 0x80, 0xec, 0x24, 0x7b, - 0x1e, 0xcc, 0x01, 0x7b, 0x34, 0x5b, 0xa0, 0xa7, 0x01, 0xb8, 0x27, 0x06, 0x52, 0x3b, 0xc9, 0x9e, - 0xbe, 0xf1, 0xdd, 0x19, 0x54, 0xd2, 0x72, 0x5b, 0xc6, 0xd6, 0x0d, 0xdd, 0x96, 0x99, 0xd7, 0x8a, - 0x3a, 0x76, 0x9e, 0x73, 0x59, 0x2a, 0xaf, 0x10, 0x78, 0x54, 0x8a, 0xc7, 0xac, 0x1a, 0x15, 0x53, - 0xb7, 0x00, 0x21, 0xa7, 0x7c, 0xa9, 0x60, 0x0e, 0x90, 0x9d, 0x9f, 0xb0, 0x00, 0xe1, 0xa3, 0xd9, - 0x82, 0x49, 0xcf, 0x08, 0x00, 0x3d, 0x1e, 0x08, 0xc8, 0xee, 0xbd, 0x05, 0xd1, 0x37, 0x19, 0x22, - 0xc4, 0x70, 0xb2, 0x5c, 0x36, 0x5e, 0xd0, 0x0b, 0x0c, 0x9f, 0x23, 0xd1, 0x0e, 0x00, 0x8e, 0x08, - 0x15, 0xda, 0xe4, 0x00, 0x4a, 0x4c, 0xa0, 0x6f, 0x13, 0xd8, 0x25, 0x87, 0x83, 0x0a, 0x8d, 0xc2, - 0x03, 0x2e, 0x97, 0x31, 0x89, 0xfa, 0xb8, 0xcf, 0x12, 0xd4, 0xe8, 0xeb, 0x04, 0x76, 0xba, 0x41, - 0x5d, 0xd6, 0x17, 0x1b, 0xb5, 0x52, 0xa5, 0x38, 0x6f, 0x85, 0x65, 0x97, 0x05, 0xba, 0x49, 0x60, - 0x54, 0x82, 0x05, 0xd5, 0xd9, 0x0e, 0x1b, 0xad, 0x39, 0xe3, 0x52, 0x66, 0x83, 0xf5, 0x77, 0xa2, - 0xaa, 0xdc, 0x20, 0x30, 0xe4, 0x46, 0x72, 0xaf, 0x42, 0xe6, 0x87, 0x04, 0x76, 0xf8, 0xe0, 0x40, - 0x35, 0x9e, 0x82, 0x4d, 0xce, 0x2a, 0xd3, 0x94, 0xa3, 0x6f, 0x7c, 0x24, 0xe3, 0x2c, 0xc5, 0xce, - 0xab, 0xcc, 0x72, 0x36, 0xc3, 0x8c, 0xa7, 0xef, 0xbb, 0xf5, 0xb7, 0x91, 0x75, 0x39, 0x6e, 0x97, - 0x9c, 0x6e, 0x5f, 0x86, 0xc1, 0x26, 0x5c, 0xcb, 0x63, 0x33, 0x7a, 0x59, 0x2f, 0xda, 0x6b, 0x35, - 0x53, 0x6d, 0x1b, 0x6c, 0x40, 0xd7, 0xa1, 0x64, 0xeb, 0x6d, 0xcf, 0x25, 0xa6, 0xd7, 0x2f, 0x98, - 0xdf, 0x3c, 0x00, 0x50, 0xae, 0x4b, 0xd0, 0x57, 0xe0, 0x8f, 0x51, 0xb0, 0xbd, 0x19, 0xe1, 0xde, - 0x95, 0xe1, 0x1d, 0x30, 0x7b, 0x94, 0xce, 0xdd, 0x47, 0x72, 0xe2, 0x7d, 0x09, 0xd2, 0x02, 0xec, - 0x81, 0xda, 0x9d, 0x82, 0x2d, 0x08, 0xc7, 0xa8, 0xe5, 0xb5, 0x42, 0xa1, 0xa6, 0x9b, 0x66, 0x13, - 0xc6, 0xa6, 0xe9, 0x81, 0x3f, 0xff, 0x64, 0x5f, 0x3f, 0x22, 0x39, 0x69, 0xbf, 0xb9, 0x5c, 0xb7, - 0x66, 0x54, 0x6e, 0xb3, 0x63, 0x82, 0xcf, 0x95, 0x8a, 0xd0, 0x75, 0x8e, 0x70, 0x73, 0x00, 0x9c, - 0x74, 0x13, 0x41, 0x0c, 0xdd, 0x5c, 0x5d, 0x58, 0x93, 0x7d, 0x97, 0x33, 0xe0, 0x33, 0x95, 0x05, - 0xa3, 0x52, 0x28, 0x55, 0x8a, 0xf7, 0x22, 0x68, 0xde, 0x27, 0xf0, 0x58, 0x00, 0x12, 0x14, 0x41, - 0x87, 0x47, 0x1a, 0xec, 0x7d, 0xde, 0x1b, 0x47, 0x63, 0x3e, 0x7a, 0x08, 0xfa, 0x44, 0x41, 0xfa, - 0x1b, 0x82, 0xe1, 0x12, 0x5d, 0xc6, 0x1e, 0x95, 0x31, 0xeb, 0x56, 0x6c, 0xbd, 0x14, 0xe0, 0x6b, - 0x47, 0xe0, 0x45, 0xe8, 0x17, 0x09, 0x8c, 0xf1, 0x16, 0x5d, 0xdf, 0xad, 0x02, 0x7d, 0x95, 0x6f, - 0x10, 0x18, 0x69, 0x39, 0xa8, 0x08, 0x82, 0xae, 0x6b, 0xa7, 0xa6, 0x37, 0xd9, 0xfe, 0x2b, 0x04, - 0xd3, 0x03, 0xab, 0xd6, 0x8b, 0x04, 0x86, 0x7d, 0x08, 0x84, 0x16, 0x33, 0xa1, 0x30, 0xab, 0xf9, - 0xfa, 0xf5, 0xe3, 0x5b, 0xc6, 0x5e, 0x27, 0xb0, 0xa7, 0x65, 0x50, 0xd9, 0x52, 0xd6, 0xb5, 0xa8, - 0xfa, 0x80, 0xc0, 0xde, 0x10, 0xa8, 0x7a, 0x74, 0x59, 0x7b, 0x8d, 0xc0, 0xe3, 0x41, 0xec, 0xba, - 0x1d, 0x7b, 0xaf, 0x84, 0x88, 0x83, 0xee, 0x2e, 0x73, 0x37, 0xd9, 0xc4, 0xc4, 0xb3, 0xa3, 0x20, - 0x1e, 0xbb, 0x74, 0x8a, 0xfd, 0x15, 0x5b, 0x70, 0x45, 0x48, 0x7a, 0x60, 0x89, 0xbb, 0xd1, 0x76, - 0x0a, 0xf7, 0x46, 0x59, 0x80, 0x90, 0x09, 0xc5, 0xd8, 0x35, 0x3f, 0x87, 0x7e, 0x7c, 0xcb, 0xdb, - 0xab, 0x6c, 0xaa, 0xe1, 0x98, 0xb2, 0xd5, 0xad, 0x4b, 0xd1, 0xf4, 0x57, 0x36, 0xd3, 0xa4, 0x90, - 0x7a, 0x74, 0x69, 0x7b, 0x99, 0xc0, 0xee, 0x00, 0x72, 0xdd, 0x8d, 0xb9, 0x97, 0x83, 0x03, 0xa0, - 0xbb, 0xcb, 0xda, 0x4f, 0xd9, 0x59, 0x72, 0x86, 0x41, 0xf5, 0xf9, 0xd8, 0x14, 0x0a, 0x40, 0xa2, - 0x0a, 0x90, 0x58, 0xd8, 0xfe, 0x86, 0x7d, 0x65, 0xf8, 0xe3, 0xee, 0x81, 0xa5, 0xf0, 0x4d, 0x02, - 0xfb, 0xbc, 0x2c, 0x64, 0xab, 0xc2, 0x1a, 0x73, 0xc3, 0x6d, 0x02, 0x99, 0xb0, 0x04, 0x7a, 0x74, - 0x0d, 0xf9, 0x39, 0x5b, 0x20, 0x1d, 0x8a, 0x92, 0x0f, 0x9d, 0x35, 0xe6, 0x9e, 0xdf, 0xb1, 0x83, - 0xab, 0x1c, 0x7b, 0x0f, 0xcc, 0x94, 0xb7, 0x09, 0x64, 0xc5, 0x4c, 0x7a, 0x68, 0xb6, 0x7c, 0x44, - 0x60, 0x3c, 0x0a, 0x89, 0x1e, 0x9d, 0x31, 0x3f, 0x63, 0x9b, 0x9c, 0x43, 0xd3, 0xff, 0xcc, 0xbc, - 0xc6, 0x3c, 0xf4, 0x5b, 0xcf, 0x64, 0xef, 0xd1, 0x43, 0xf6, 0x5b, 0x04, 0x9e, 0x10, 0x12, 0xe9, - 0xa1, 0xe9, 0x72, 0xd7, 0x33, 0xe7, 0xff, 0x1f, 0xcf, 0xa8, 0x3f, 0x20, 0x98, 0xa8, 0x6e, 0xd9, - 0x42, 0xd7, 0xaa, 0x4f, 0xbe, 0x4b, 0x30, 0xb1, 0xdd, 0x8e, 0x16, 0xd5, 0xdf, 0x0f, 0xf7, 0x37, - 0x4b, 0xb0, 0xa8, 0xf6, 0x36, 0xae, 0x76, 0xf3, 0xb1, 0xa5, 0xb4, 0x65, 0x80, 0xd2, 0xda, 0x6d, - 0x93, 0xd3, 0x72, 0x05, 0xb6, 0x7b, 0xc1, 0x25, 0xac, 0xa4, 0x2b, 0xbb, 0x9b, 0x72, 0x67, 0x77, - 0x95, 0x39, 0x91, 0x1f, 0x1d, 0x61, 0xb2, 0x70, 0x9f, 0xd5, 0x0e, 0x4f, 0xef, 0x01, 0xba, 0x34, - 0x9b, 0x2a, 0x6f, 0xb0, 0x94, 0x83, 0x67, 0xbb, 0x58, 0xab, 0xd1, 0xf1, 0x06, 0x4b, 0x4d, 0x88, - 0x10, 0xaf, 0xc9, 0x12, 0xdb, 0x4d, 0x96, 0x8c, 0xf0, 0x20, 0x4e, 0x58, 0xe2, 0xb6, 0xcc, 0x59, - 0xaa, 0x3d, 0x73, 0xa6, 0x2c, 0xfa, 0x39, 0xdb, 0x51, 0xee, 0x24, 0x6c, 0x64, 0xed, 0x31, 0x8c, - 0x42, 0x0a, 0xe7, 0x98, 0x29, 0x3f, 0xf2, 0xd0, 0x6d, 0xbf, 0xe0, 0xb0, 0xc6, 0x22, 0xea, 0xfb, - 0x9e, 0x39, 0xe0, 0xb9, 0x01, 0x31, 0x09, 0x1b, 0xd9, 0xad, 0x0e, 0x8c, 0xa7, 0x1d, 0x5c, 0x16, - 0xf6, 0xc6, 0x52, 0x05, 0x2d, 0x99, 0x28, 0xec, 0x55, 0x72, 0xc1, 0xf4, 0x35, 0x56, 0x2f, 0x6d, - 0x07, 0x9b, 0xb0, 0xb8, 0xad, 0xb9, 0x8a, 0x54, 0x5b, 0xae, 0x42, 0xf9, 0xac, 0x8f, 0x8f, 0x1d, - 0xc5, 0x8e, 0xc3, 0x06, 0x6c, 0x8d, 0x71, 0x14, 0x4a, 0x30, 0x66, 0xa3, 0x4c, 0xe1, 0x16, 0xf0, - 0x8c, 0xa9, 0xd7, 0xe6, 0x6b, 0xfa, 0xe7, 0xf4, 0x9a, 0x5e, 0x71, 0x45, 0xd0, 0x28, 0x3c, 0xd0, - 0x30, 0xf5, 0x36, 0x7e, 0xb9, 0x3e, 0xeb, 0x19, 0xaf, 0x8e, 0x0e, 0x89, 0x7b, 0x40, 0x80, 0x17, - 0xa1, 0xaf, 0xca, 0x1f, 0x23, 0xc8, 0xdd, 0x7e, 0x3b, 0x77, 0x6b, 0x27, 0xec, 0x58, 0xe5, 0xea, - 0x40, 0xe9, 0x07, 0x6a, 0x17, 0xcc, 0x9a, 0x17, 0x8b, 0x10, 0xa8, 0xf2, 0x1c, 0x6c, 0x6d, 0x79, - 0x8a, 0x83, 0x4f, 0xc1, 0x7a, 0xfb, 0x02, 0x92, 0x57, 0x9c, 0x96, 0x71, 0x6d, 0xb3, 0xe9, 0x4d, - 0xd6, 0x70, 0xdf, 0xfb, 0xc7, 0x8f, 0xc7, 0x48, 0x0e, 0xed, 0xc6, 0xdf, 0x9d, 0x80, 0xfb, 0x9b, - 0x3d, 0xd3, 0x0f, 0x09, 0x7c, 0x52, 0x7c, 0x81, 0x87, 0x3e, 0xe9, 0xd3, 0x6d, 0xf0, 0x25, 0xa4, - 0xf4, 0x91, 0x38, 0xa6, 0x36, 0x3b, 0xe5, 0xdc, 0x8b, 0x16, 0xd4, 0xaf, 0xbe, 0xf7, 0xd1, 0xeb, - 0xa9, 0x29, 0x7a, 0x42, 0x15, 0x5f, 0xc0, 0xe2, 0x37, 0xad, 0x56, 0x5c, 0x8b, 0xd6, 0xaa, 0xfa, - 0x85, 0x66, 0x9f, 0x79, 0x67, 0xe6, 0xfc, 0x9d, 0xc0, 0x36, 0x9f, 0xeb, 0x37, 0x54, 0x0a, 0x52, - 0x7e, 0x85, 0x28, 0x7d, 0x34, 0x96, 0x6d, 0x14, 0x86, 0xce, 0x3d, 0xb0, 0x15, 0x3e, 0x93, 0x56, - 0x55, 0xcd, 0xee, 0x33, 0xcf, 0x37, 0x9a, 0xf7, 0x08, 0xf4, 0x8b, 0xee, 0xcf, 0xd0, 0x43, 0x21, - 0x20, 0x8a, 0x6e, 0xff, 0xa4, 0x0f, 0x47, 0x37, 0x44, 0x62, 0x67, 0x39, 0xb1, 0xe3, 0xf4, 0x68, - 0x24, 0x62, 0x26, 0x76, 0x98, 0xb7, 0x0f, 0x5c, 0x6f, 0x13, 0xd8, 0xdc, 0x7e, 0x07, 0x86, 0xee, - 0x0f, 0x01, 0xcc, 0xe3, 0xa9, 0x89, 0x68, 0x46, 0xc8, 0xe4, 0x29, 0xce, 0xe4, 0x30, 0x3d, 0x18, - 0x89, 0x09, 0x77, 0xcd, 0x2f, 0x09, 0x3c, 0xdc, 0x96, 0xf4, 0xa3, 0xe3, 0x32, 0x38, 0xe2, 0xcc, - 0x66, 0x7a, 0x7f, 0x24, 0x1b, 0x64, 0x30, 0xc9, 0x19, 0x4c, 0xd0, 0x71, 0x1f, 0x06, 0xf6, 0x65, - 0xc4, 0x15, 0x3c, 0x2e, 0xae, 0xaa, 0xee, 0x2f, 0xbd, 0x3f, 0x10, 0x78, 0xa8, 0xb5, 0x73, 0x9a, - 0x0d, 0x0f, 0x84, 0x61, 0x1f, 0x8f, 0x62, 0x82, 0xd0, 0x2f, 0x73, 0xe8, 0x67, 0xe9, 0xe9, 0xe8, - 0xd0, 0xd5, 0x15, 0xcf, 0x1e, 0xb6, 0x4a, 0x6f, 0x13, 0x18, 0xf0, 0x4b, 0xfd, 0xd1, 0xa3, 0x41, - 0x28, 0x25, 0x1f, 0xa5, 0xe9, 0x63, 0xf1, 0x8c, 0x91, 0xec, 0x2c, 0x27, 0x7b, 0x82, 0x1e, 0x0b, - 0x49, 0x56, 0xf8, 0xfd, 0x48, 0xff, 0x43, 0x60, 0x9b, 0xcf, 0x78, 0xf2, 0xc5, 0x4e, 0x7e, 0x5d, - 0x24, 0x7d, 0x34, 0x96, 0x2d, 0xf2, 0xfb, 0x0c, 0xe7, 0x97, 0xa3, 0xf3, 0x9d, 0xf0, 0x13, 0xba, - 0xf5, 0x4f, 0x04, 0xb6, 0x0a, 0x52, 0x86, 0xf4, 0x60, 0x98, 0x1d, 0x48, 0xe0, 0xcc, 0x43, 0x91, - 0xed, 0x90, 0xe7, 0x19, 0xce, 0xf3, 0x18, 0x3d, 0x12, 0x71, 0xdb, 0x72, 0x7b, 0xf1, 0x36, 0x01, - 0xea, 0x1d, 0x88, 0x1e, 0x88, 0x06, 0x8c, 0xf1, 0x39, 0x18, 0xd5, 0x0c, 0xe9, 0x7c, 0x9a, 0xd3, - 0x99, 0xa7, 0x17, 0xe3, 0xd3, 0x11, 0x3a, 0xed, 0xbf, 0x04, 0x86, 0x64, 0x89, 0x45, 0x3a, 0x19, - 0x06, 0xb5, 0x6c, 0x4e, 0x4e, 0xc5, 0xef, 0x00, 0x05, 0xb8, 0xc4, 0x05, 0x38, 0x4d, 0x67, 0x22, - 0x0a, 0x20, 0x9e, 0x9f, 0x37, 0x52, 0x30, 0x28, 0x19, 0x9b, 0x9e, 0x88, 0x09, 0x9a, 0x91, 0x9e, - 0x8c, 0x6d, 0x8f, 0x9c, 0x75, 0xce, 0xf9, 0x2a, 0xbd, 0x92, 0x04, 0x67, 0xa1, 0xfb, 0x7f, 0x4f, - 0x80, 0x7a, 0xb3, 0x96, 0xf2, 0x08, 0xf7, 0x4d, 0xd0, 0xca, 0x23, 0xdc, 0x3f, 0x39, 0xaa, 0x9c, - 0xe2, 0x64, 0x8f, 0xd0, 0xc3, 0x91, 0xb6, 0x78, 0xb7, 0x53, 0x3f, 0x20, 0xb0, 0xc5, 0x33, 0x0a, - 0x9d, 0x88, 0x04, 0x8a, 0x51, 0x39, 0x10, 0xd1, 0x0a, 0x99, 0x7c, 0x8a, 0x33, 0xb9, 0x48, 0xcf, - 0xc7, 0x65, 0x22, 0x74, 0xd5, 0xbf, 0x08, 0x0c, 0x4a, 0x72, 0x9a, 0xf2, 0x90, 0x0d, 0x4e, 0xe8, - 0xca, 0x43, 0x36, 0x44, 0x32, 0x55, 0x99, 0xe3, 0xdc, 0x67, 0xe8, 0x74, 0x24, 0xee, 0xe2, 0x49, - 0xfa, 0x95, 0x14, 0xa4, 0xfd, 0x07, 0xa6, 0xc7, 0xe3, 0x01, 0x66, 0x7c, 0x4f, 0xc4, 0x35, 0x47, - 0xba, 0x8b, 0x9c, 0xee, 0x15, 0xfa, 0x6c, 0xe7, 0x74, 0x7d, 0x8f, 0x4a, 0x7e, 0x55, 0x6b, 0xf9, - 0x51, 0x29, 0xa0, 0x46, 0x2f, 0x3f, 0x2a, 0x05, 0x15, 0xca, 0xc3, 0x1d, 0x95, 0x02, 0xc8, 0xd9, - 0x47, 0x0d, 0x6b, 0x29, 0x1e, 0x0d, 0xac, 0x08, 0xd3, 0x99, 0xd0, 0x70, 0x65, 0x31, 0x7e, 0xaa, - 0xc3, 0x5e, 0xa2, 0x9c, 0x8a, 0x83, 0xd8, 0xf3, 0x20, 0xb0, 0x75, 0xf8, 0x37, 0x81, 0x21, 0x59, - 0xe9, 0x55, 0xbe, 0x13, 0x87, 0x28, 0x38, 0xcb, 0x77, 0xe2, 0x30, 0x55, 0x5f, 0xe5, 0x02, 0x27, - 0x3e, 0x4d, 0xa7, 0x62, 0x12, 0xe7, 0x5f, 0x65, 0xdf, 0x49, 0xc1, 0x63, 0xa1, 0xca, 0x9b, 0xf4, - 0x6c, 0x24, 0xe8, 0xb2, 0x10, 0x98, 0x4d, 0xa0, 0x27, 0x54, 0xe3, 0x39, 0xae, 0xc6, 0x79, 0xfa, - 0x74, 0xc7, 0x61, 0xc0, 0x75, 0xf9, 0x27, 0x81, 0x41, 0x49, 0x51, 0x51, 0xbe, 0xd4, 0x07, 0x17, - 0x52, 0xd3, 0x93, 0xb1, 0xed, 0x91, 0xf9, 0x79, 0xce, 0xfc, 0x24, 0x9d, 0x8c, 0xc9, 0xdc, 0xc9, - 0x0c, 0xbd, 0x96, 0x82, 0x5d, 0x61, 0xca, 0x76, 0xf4, 0x4c, 0x14, 0xdc, 0xb2, 0x20, 0x38, 0xdb, - 0x79, 0x47, 0xa8, 0xc4, 0xb3, 0x5c, 0x89, 0x73, 0x74, 0xb6, 0xe3, 0x18, 0x70, 0x34, 0x79, 0x8b, - 0xc0, 0x43, 0xad, 0x65, 0x33, 0xf9, 0x27, 0xbf, 0xb0, 0x20, 0x28, 0xff, 0xe4, 0x17, 0x57, 0xe5, - 0xc2, 0x65, 0x8e, 0x1c, 0x12, 0xb2, 0x95, 0xfd, 0x16, 0x81, 0x07, 0x5b, 0x06, 0xa1, 0x4f, 0x84, - 0xc6, 0xc3, 0x18, 0x64, 0x23, 0x58, 0x20, 0x81, 0x1c, 0x27, 0x70, 0x86, 0x9e, 0xea, 0x80, 0x00, - 0xff, 0x0a, 0xa6, 0xef, 0x12, 0xa0, 0xde, 0x3a, 0x95, 0xfc, 0x9c, 0xec, 0x5b, 0x89, 0x93, 0x9f, - 0x93, 0xfd, 0xcb, 0x61, 0x91, 0xa6, 0x9d, 0x1f, 0x33, 0xbe, 0xca, 0x7c, 0x48, 0x60, 0x8b, 0x67, - 0x30, 0xf9, 0x71, 0xd9, 0xaf, 0xf0, 0x95, 0x3e, 0x10, 0xd1, 0x0a, 0x09, 0x5d, 0xe5, 0x84, 0xe6, - 0xe8, 0x85, 0x0e, 0x09, 0xb5, 0x7e, 0x04, 0xd1, 0x3f, 0xba, 0xe9, 0x39, 0x99, 0xf4, 0x89, 0x28, - 0x33, 0xdf, 0x8c, 0x46, 0x2f, 0x5e, 0xfe, 0x3c, 0x80, 0x9e, 0xb3, 0x22, 0xbc, 0x4f, 0x60, 0x73, - 0xfb, 0x50, 0xf2, 0x3c, 0xac, 0x4f, 0x65, 0x29, 0x3d, 0x11, 0xcd, 0x08, 0xc9, 0x5c, 0xe1, 0x64, - 0x2e, 0xd0, 0x73, 0x9d, 0x91, 0x69, 0x39, 0x0e, 0xd3, 0x5f, 0x13, 0x78, 0xb8, 0xad, 0x30, 0x23, - 0x4f, 0xce, 0x8a, 0x8b, 0x49, 0xf2, 0xe4, 0xac, 0x4f, 0xf9, 0x48, 0x99, 0xe1, 0xb4, 0x9e, 0xa4, - 0x87, 0x7c, 0x68, 0x35, 0x4c, 0xdd, 0x62, 0xe4, 0x2e, 0x55, 0xad, 0xaa, 0xae, 0xa2, 0x11, 0x7d, - 0x89, 0xc0, 0x7a, 0xbb, 0xc6, 0x43, 0xf7, 0x4a, 0x53, 0x74, 0xee, 0xa2, 0x52, 0x7a, 0x2c, 0x4c, - 0x53, 0xc4, 0x39, 0xc6, 0x71, 0x8e, 0xd0, 0x1d, 0xaa, 0xec, 0x9f, 0xe1, 0xa7, 0xe7, 0x6f, 0xdd, - 0x19, 0x26, 0xef, 0xdc, 0x19, 0x26, 0xb7, 0xef, 0x0c, 0x93, 0x57, 0xef, 0x0e, 0xaf, 0x7b, 0xe7, - 0xee, 0xf0, 0xba, 0xbf, 0xdc, 0x1d, 0x5e, 0x77, 0xf5, 0x60, 0xb1, 0x54, 0xff, 0x7c, 0x63, 0x21, - 0xb3, 0x68, 0x2c, 0x39, 0x5d, 0xec, 0x2b, 0x6b, 0x0b, 0x26, 0xef, 0x70, 0x79, 0x5c, 0xfd, 0xa2, - 0xab, 0xd7, 0xfa, 0xf5, 0xaa, 0x6e, 0x2e, 0xac, 0x6f, 0xfe, 0xe3, 0xfb, 0xfe, 0xff, 0x05, 0x00, - 0x00, 0xff, 0xff, 0x7f, 0xfb, 0xc3, 0xa9, 0x8e, 0x40, 0x00, 0x00, + 0x69, 0x62, 0x29, 0x3b, 0x5d, 0xdb, 0x79, 0x34, 0x2f, 0x3b, 0xae, 0xf3, 0x70, 0xf3, 0xb0, 0xb3, + 0x51, 0xdb, 0x10, 0x04, 0xd6, 0xd8, 0x3b, 0x2c, 0x4b, 0xd7, 0x3b, 0x9b, 0x9d, 0x5d, 0x97, 0xc8, + 0x18, 0x21, 0x44, 0x94, 0x42, 0xa1, 0x0f, 0x2a, 0x3e, 0xf1, 0x0f, 0x20, 0x10, 0x94, 0x0f, 0x20, + 0xf1, 0x10, 0x15, 0x2d, 0x12, 0x44, 0x08, 0x44, 0x4b, 0x3f, 0x14, 0xd1, 0x0a, 0xa2, 0xb8, 0x12, + 0x5f, 0x90, 0x00, 0x89, 0x3f, 0x00, 0xcd, 0xce, 0xb9, 0x73, 0x67, 0x77, 0xee, 0xdc, 0x79, 0xec, + 0x74, 0xe3, 0xe5, 0x8b, 0x65, 0xcf, 0xdc, 0x73, 0xef, 0xef, 0xf7, 0x3b, 0xe7, 0x3e, 0xe6, 0x9c, + 0x6b, 0x18, 0x5e, 0x2a, 0x96, 0x9e, 0xbf, 0xf1, 0x82, 0x76, 0x43, 0xad, 0xea, 0x66, 0x4d, 0x7b, + 0xbe, 0x58, 0x2e, 0xa8, 0xcb, 0x59, 0xf5, 0x7a, 0x5d, 0xaf, 0xde, 0xc8, 0x54, 0xaa, 0x46, 0xcd, + 0xa0, 0x8f, 0xb0, 0x26, 0x19, 0xa7, 0x49, 0x66, 0x39, 0x9b, 0x1e, 0x59, 0x34, 0xcc, 0x25, 0xc3, + 0x54, 0x17, 0x34, 0x53, 0xb7, 0xdb, 0xab, 0xcb, 0xd9, 0x05, 0xbd, 0xa6, 0x65, 0xd5, 0x8a, 0x56, + 0x28, 0x96, 0xb5, 0x5a, 0xd1, 0x28, 0xdb, 0x5d, 0xa4, 0x7b, 0x0b, 0x46, 0xc1, 0x68, 0xfc, 0xaa, + 0x5a, 0xbf, 0xe1, 0xd3, 0x81, 0x82, 0x61, 0x14, 0x4a, 0xba, 0xaa, 0x55, 0x8a, 0xaa, 0x56, 0x2e, + 0x1b, 0xb5, 0x86, 0x89, 0x89, 0x6f, 0x77, 0xda, 0xfd, 0xcf, 0xdb, 0x66, 0xf6, 0x1f, 0xf8, 0xaa, + 0x1f, 0x87, 0x66, 0xa3, 0xba, 0xe1, 0xa6, 0xb7, 0x69, 0x4b, 0xc5, 0xb2, 0xa1, 0x36, 0x7e, 0xe2, + 0x23, 0x45, 0x4c, 0x72, 0xc9, 0xc8, 0xeb, 0x25, 0x53, 0xde, 0xa6, 0xa2, 0x55, 0xb5, 0x25, 0x6f, + 0x1b, 0xa3, 0xa2, 0x57, 0xb5, 0x9a, 0x51, 0x35, 0x3d, 0xfd, 0x0c, 0x3a, 0x6d, 0x2a, 0x86, 0x51, + 0xf2, 0xbe, 0xe7, 0x82, 0x9b, 0x7a, 0x75, 0xb9, 0xb8, 0xa8, 0x7b, 0x9a, 0x28, 0xdf, 0x22, 0xa0, + 0x5c, 0xb6, 0x18, 0xcd, 0xe2, 0x28, 0x4f, 0x1b, 0xc5, 0xb2, 0x9e, 0xbf, 0x82, 0xed, 0x73, 0xfa, + 0xf5, 0xba, 0x6e, 0xd6, 0xe8, 0x10, 0xf4, 0x30, 0x18, 0xf3, 0xc5, 0x7c, 0x1f, 0xd9, 0x4d, 0xf6, + 0x3d, 0x98, 0x03, 0xf6, 0x68, 0x26, 0x4f, 0xcf, 0x00, 0x70, 0x4f, 0xf4, 0xa5, 0x76, 0x93, 0x7d, + 0x3d, 0xa3, 0x7b, 0x33, 0xa8, 0xa4, 0xe5, 0xb6, 0x8c, 0xad, 0x1b, 0xba, 0x2d, 0x33, 0xa7, 0x15, + 0x74, 0xec, 0x3c, 0xe7, 0xb2, 0x54, 0x5e, 0x21, 0xf0, 0xa8, 0x14, 0x8f, 0x59, 0x31, 0xca, 0xa6, + 0x6e, 0x01, 0x42, 0x4e, 0xf3, 0xc5, 0xbc, 0xd9, 0x47, 0x76, 0x7f, 0xc2, 0x02, 0x84, 0x8f, 0x66, + 0xf2, 0x26, 0x3d, 0x2b, 0x00, 0xf4, 0x78, 0x20, 0x20, 0xbb, 0xf7, 0x26, 0x44, 0xdf, 0x64, 0x88, + 0x10, 0xc3, 0xa9, 0x52, 0xc9, 0x78, 0x41, 0xcf, 0x33, 0x7c, 0x8e, 0x44, 0xbb, 0x00, 0x38, 0x22, + 0x54, 0x68, 0x8b, 0x03, 0x28, 0x31, 0x81, 0xbe, 0x4d, 0x60, 0x8f, 0x1c, 0x0e, 0x2a, 0x34, 0x0c, + 0x0f, 0xb8, 0x5c, 0xc6, 0x24, 0xea, 0xe1, 0x3e, 0x4b, 0x50, 0xa3, 0xaf, 0x13, 0xd8, 0xed, 0x06, + 0x75, 0x45, 0x5f, 0xac, 0x57, 0x8b, 0xe5, 0xc2, 0x9c, 0x15, 0x96, 0x1d, 0x16, 0xe8, 0x16, 0x81, + 0x61, 0x09, 0x16, 0x54, 0x67, 0x27, 0x6c, 0xb6, 0xe6, 0x8c, 0x4b, 0x99, 0x4d, 0xd6, 0xdf, 0x89, + 0xaa, 0x72, 0x93, 0xc0, 0x80, 0x1b, 0xc9, 0xbd, 0x0a, 0x99, 0x1f, 0x12, 0xd8, 0xe5, 0x83, 0x03, + 0xd5, 0x78, 0x0a, 0xb6, 0x38, 0xab, 0x4c, 0x43, 0x8e, 0x9e, 0xd1, 0xa1, 0x8c, 0xb3, 0x14, 0x3b, + 0xaf, 0x32, 0xcb, 0xd9, 0x0c, 0x33, 0x9e, 0xba, 0xef, 0xf6, 0xdf, 0x86, 0x36, 0xe4, 0xb8, 0x5d, + 0x72, 0xba, 0x7d, 0x19, 0xfa, 0x1b, 0x70, 0x2d, 0x8f, 0x4d, 0xeb, 0x25, 0xbd, 0x60, 0xaf, 0xd5, + 0x4c, 0xb5, 0x1d, 0xb0, 0x09, 0x5d, 0x87, 0x92, 0x6d, 0xb4, 0x3d, 0x97, 0x98, 0x5e, 0xbf, 0x60, + 0x7e, 0xf3, 0x00, 0x40, 0xb9, 0x2e, 0x43, 0x4f, 0x9e, 0x3f, 0x46, 0xc1, 0xf6, 0x67, 0x84, 0x7b, + 0x57, 0x86, 0x77, 0xc0, 0xec, 0x51, 0x3a, 0x77, 0x1f, 0xc9, 0x89, 0xf7, 0x25, 0x48, 0x0b, 0xb0, + 0x07, 0x6a, 0x77, 0x1a, 0xb6, 0x21, 0x1c, 0xa3, 0x3a, 0xaf, 0xe5, 0xf3, 0x55, 0xdd, 0x34, 0x1b, + 0x30, 0xb6, 0x4c, 0xf5, 0xfd, 0xf9, 0x27, 0x07, 0x7a, 0x11, 0xc9, 0x29, 0xfb, 0xcd, 0x95, 0x9a, + 0x35, 0xa3, 0x72, 0x5b, 0x1d, 0x13, 0x7c, 0xae, 0x94, 0x85, 0xae, 0x73, 0x84, 0x9b, 0x05, 0xe0, + 0xa4, 0x1b, 0x08, 0x62, 0xe8, 0xe6, 0xea, 0xc2, 0x9a, 0xec, 0x7b, 0x9c, 0x01, 0x9f, 0x29, 0x2f, + 0x18, 0xe5, 0x7c, 0xb1, 0x5c, 0xb8, 0x17, 0x41, 0xf3, 0x3e, 0x81, 0xc7, 0x02, 0x90, 0xa0, 0x08, + 0x3a, 0x3c, 0x52, 0x67, 0xef, 0xe7, 0xbd, 0x71, 0x34, 0xe2, 0xa3, 0x87, 0xa0, 0x4f, 0x14, 0xa4, + 0xb7, 0x2e, 0x18, 0x2e, 0xd1, 0x65, 0xec, 0x51, 0x19, 0xb3, 0x4e, 0xc5, 0xd6, 0x4b, 0x01, 0xbe, + 0x76, 0x04, 0x5e, 0x84, 0x5e, 0x91, 0xc0, 0x18, 0x6f, 0xd1, 0xf5, 0xdd, 0x2e, 0xd0, 0x57, 0xf9, + 0x06, 0x81, 0xa1, 0xa6, 0x83, 0x8a, 0x20, 0xe8, 0x3a, 0x76, 0x6a, 0x7a, 0x93, 0xed, 0xbf, 0x42, + 0x30, 0x5d, 0xb0, 0x6a, 0xbd, 0x48, 0x60, 0xd0, 0x87, 0x40, 0x68, 0x31, 0x13, 0x0a, 0xb3, 0xaa, + 0xaf, 0x5f, 0x3f, 0xbe, 0x65, 0xec, 0x75, 0x02, 0xfb, 0x9a, 0x06, 0x95, 0x2d, 0x65, 0x1d, 0x8b, + 0xaa, 0x0f, 0x08, 0xec, 0x0f, 0x81, 0xaa, 0x4b, 0x97, 0xb5, 0xd7, 0x08, 0x3c, 0x1e, 0xc4, 0xae, + 0xd3, 0xb1, 0xf7, 0x4a, 0x88, 0x38, 0xe8, 0xec, 0x32, 0x77, 0x8b, 0x4d, 0x4c, 0x3c, 0x3b, 0x0a, + 0xe2, 0xb1, 0x43, 0xa7, 0xd8, 0x5f, 0xb1, 0x05, 0x57, 0x84, 0xa4, 0x0b, 0x96, 0xb8, 0x9b, 0x2d, + 0xa7, 0x70, 0x6f, 0x94, 0x05, 0x08, 0x99, 0x50, 0x8c, 0x5d, 0xf7, 0x73, 0xe8, 0xc7, 0xb7, 0xbc, + 0xbd, 0xca, 0xa6, 0x1a, 0x8e, 0x29, 0x5b, 0xdd, 0x3a, 0x14, 0x4d, 0x7f, 0x65, 0x33, 0x4d, 0x0a, + 0xa9, 0x4b, 0x97, 0xb6, 0x97, 0x09, 0xec, 0x0d, 0x20, 0xd7, 0xd9, 0x98, 0x7b, 0x39, 0x38, 0x00, + 0x3a, 0xbb, 0xac, 0xfd, 0x94, 0x9d, 0x25, 0xa7, 0x19, 0x54, 0x9f, 0x8f, 0x4d, 0xa1, 0x00, 0x24, + 0xaa, 0x00, 0x89, 0x85, 0xed, 0x6f, 0xd8, 0x57, 0x86, 0x3f, 0xee, 0x2e, 0x58, 0x0a, 0xdf, 0x24, + 0x70, 0xc0, 0xcb, 0x42, 0xb6, 0x2a, 0xac, 0x33, 0x37, 0xdc, 0x21, 0x90, 0x09, 0x4b, 0xa0, 0x4b, + 0xd7, 0x90, 0x9f, 0xb3, 0x05, 0xd2, 0xa1, 0x28, 0xf9, 0xd0, 0x59, 0x67, 0xee, 0xf9, 0x1d, 0x3b, + 0xb8, 0xca, 0xb1, 0x77, 0xc1, 0x4c, 0x79, 0x9b, 0x40, 0x56, 0xcc, 0xa4, 0x8b, 0x66, 0xcb, 0x47, + 0x04, 0x46, 0xa3, 0x90, 0xe8, 0xd2, 0x19, 0xf3, 0x33, 0xb6, 0xc9, 0x39, 0x34, 0xfd, 0xcf, 0xcc, + 0xeb, 0xcc, 0x43, 0xbf, 0xf5, 0x4c, 0xf6, 0x2e, 0x3d, 0x64, 0xbf, 0x45, 0xe0, 0x09, 0x21, 0x91, + 0x2e, 0x9a, 0x2e, 0x6b, 0x9e, 0x39, 0xff, 0xff, 0x78, 0x46, 0xfd, 0x01, 0xc1, 0x44, 0x75, 0xd3, + 0x16, 0xba, 0x5e, 0x7d, 0xf2, 0x5d, 0x82, 0x89, 0xed, 0x56, 0xb4, 0xa8, 0xfe, 0x18, 0xdc, 0xdf, + 0x28, 0xc1, 0xa2, 0xda, 0x3b, 0xb8, 0xda, 0x8d, 0xc7, 0x96, 0xd2, 0x96, 0x01, 0x4a, 0x6b, 0xb7, + 0x4d, 0x4e, 0xcb, 0x15, 0xd8, 0xe9, 0x05, 0x97, 0xb0, 0x92, 0xae, 0xec, 0x6e, 0xca, 0x9d, 0xdd, + 0x55, 0x66, 0x45, 0x7e, 0x74, 0x84, 0xc9, 0xc2, 0x7d, 0x56, 0x3b, 0x3c, 0xbd, 0x07, 0xe8, 0xd2, + 0x68, 0xaa, 0xbc, 0xc1, 0x52, 0x0e, 0x9e, 0xed, 0x62, 0xbd, 0x46, 0xc7, 0x1b, 0x2c, 0x35, 0x21, + 0x42, 0xbc, 0x2e, 0x4b, 0x6c, 0xb7, 0x58, 0x32, 0xc2, 0x83, 0x38, 0x61, 0x89, 0x5b, 0x32, 0x67, + 0xa9, 0xd6, 0xcc, 0x99, 0xb2, 0xe8, 0xe7, 0x6c, 0x47, 0xb9, 0x53, 0xb0, 0x99, 0xb5, 0xc7, 0x30, + 0x0a, 0x29, 0x9c, 0x63, 0xa6, 0xfc, 0xc8, 0x43, 0xb7, 0xf5, 0x82, 0xc3, 0x3a, 0x8b, 0xa8, 0xef, + 0x7b, 0xe6, 0x80, 0xe7, 0x06, 0xc4, 0x04, 0x6c, 0x66, 0xb7, 0x3a, 0x30, 0x9e, 0x76, 0x71, 0x59, + 0xd8, 0x1b, 0x4b, 0x15, 0xb4, 0x64, 0xa2, 0xb0, 0x57, 0xc9, 0x05, 0xd3, 0xd7, 0x58, 0xbd, 0xb4, + 0x15, 0x6c, 0xc2, 0xe2, 0x36, 0xe7, 0x2a, 0x52, 0x2d, 0xb9, 0x0a, 0xe5, 0xb3, 0x3e, 0x3e, 0x76, + 0x14, 0x3b, 0x01, 0x9b, 0xb0, 0x35, 0xc6, 0x51, 0x28, 0xc1, 0x98, 0x8d, 0x32, 0x89, 0x5b, 0xc0, + 0x33, 0xa6, 0x5e, 0x9d, 0xab, 0xea, 0x9f, 0xd3, 0xab, 0x7a, 0xd9, 0x15, 0x41, 0xc3, 0xf0, 0x40, + 0xdd, 0xd4, 0x5b, 0xf8, 0xe5, 0x7a, 0xac, 0x67, 0xbc, 0x3a, 0x3a, 0x20, 0xee, 0x01, 0x01, 0x5e, + 0x82, 0x9e, 0x0a, 0x7f, 0x8c, 0x20, 0xf7, 0xfa, 0xed, 0xdc, 0xcd, 0x9d, 0xb0, 0x63, 0x95, 0xab, + 0x03, 0xa5, 0x17, 0xa8, 0x5d, 0x30, 0x6b, 0x5c, 0x2c, 0x42, 0xa0, 0xca, 0x73, 0xb0, 0xbd, 0xe9, + 0x29, 0x0e, 0x3e, 0x09, 0x1b, 0xed, 0x0b, 0x48, 0x5e, 0x71, 0x9a, 0xc6, 0xb5, 0xcd, 0xa6, 0xb6, + 0x58, 0xc3, 0x7d, 0xef, 0x1f, 0x3f, 0x1e, 0x21, 0x39, 0xb4, 0x1b, 0x7d, 0x77, 0x1c, 0xee, 0x6f, + 0xf4, 0x4c, 0x3f, 0x24, 0xf0, 0x49, 0xf1, 0x05, 0x1e, 0xfa, 0xa4, 0x4f, 0xb7, 0xc1, 0x97, 0x90, + 0xd2, 0x47, 0xe3, 0x98, 0xda, 0xec, 0x94, 0xf3, 0x2f, 0x5a, 0x50, 0xbf, 0xfa, 0xde, 0x47, 0xaf, + 0xa7, 0x26, 0xe9, 0x49, 0x55, 0x7c, 0x01, 0x8b, 0xdf, 0xb4, 0x5a, 0x71, 0x2d, 0x5a, 0xab, 0xea, + 0x17, 0x1a, 0x7d, 0xce, 0x3b, 0x33, 0xe7, 0xef, 0x04, 0x76, 0xf8, 0x5c, 0xbf, 0xa1, 0x52, 0x90, + 0xf2, 0x2b, 0x44, 0xe9, 0x63, 0xb1, 0x6c, 0xa3, 0x30, 0x74, 0xee, 0x81, 0xad, 0xf0, 0x99, 0xb4, + 0xaa, 0x6a, 0x76, 0x9f, 0xf3, 0x7c, 0xa3, 0x79, 0x8f, 0x40, 0xaf, 0xe8, 0xfe, 0x0c, 0x3d, 0x1c, + 0x02, 0xa2, 0xe8, 0xf6, 0x4f, 0xfa, 0x48, 0x74, 0x43, 0x24, 0x76, 0x8e, 0x13, 0x3b, 0x41, 0x8f, + 0x45, 0x22, 0x66, 0x62, 0x87, 0xf3, 0xf6, 0x81, 0xeb, 0x6d, 0x02, 0x5b, 0x5b, 0xef, 0xc0, 0xd0, + 0xb1, 0x10, 0xc0, 0x3c, 0x9e, 0x1a, 0x8f, 0x66, 0x84, 0x4c, 0x9e, 0xe2, 0x4c, 0x8e, 0xd0, 0x43, + 0x91, 0x98, 0x70, 0xd7, 0xfc, 0x92, 0xc0, 0xc3, 0x2d, 0x49, 0x3f, 0x3a, 0x2a, 0x83, 0x23, 0xce, + 0x6c, 0xa6, 0xc7, 0x22, 0xd9, 0x20, 0x83, 0x09, 0xce, 0x60, 0x9c, 0x8e, 0xfa, 0x30, 0xb0, 0x2f, + 0x23, 0xae, 0xe0, 0x71, 0x71, 0x55, 0x75, 0x7f, 0xe9, 0xfd, 0x81, 0xc0, 0x43, 0xcd, 0x9d, 0xd3, + 0x6c, 0x78, 0x20, 0x0c, 0xfb, 0x68, 0x14, 0x13, 0x84, 0x7e, 0x85, 0x43, 0x3f, 0x47, 0xcf, 0x44, + 0x87, 0xae, 0xae, 0x78, 0xf6, 0xb0, 0x55, 0x7a, 0x87, 0x40, 0x9f, 0x5f, 0xea, 0x8f, 0x1e, 0x0b, + 0x42, 0x29, 0xf9, 0x28, 0x4d, 0x1f, 0x8f, 0x67, 0x8c, 0x64, 0x67, 0x38, 0xd9, 0x93, 0xf4, 0x78, + 0x48, 0xb2, 0xc2, 0xef, 0x47, 0xfa, 0x1f, 0x02, 0x3b, 0x7c, 0xc6, 0x93, 0x2f, 0x76, 0xf2, 0xeb, + 0x22, 0xe9, 0x63, 0xb1, 0x6c, 0x91, 0xdf, 0x67, 0x38, 0xbf, 0x1c, 0x9d, 0x6b, 0x87, 0x9f, 0xd0, + 0xad, 0x7f, 0x22, 0xb0, 0x5d, 0x90, 0x32, 0xa4, 0x87, 0xc2, 0xec, 0x40, 0x02, 0x67, 0x1e, 0x8e, + 0x6c, 0x87, 0x3c, 0xcf, 0x72, 0x9e, 0xc7, 0xe9, 0xd1, 0x88, 0xdb, 0x96, 0xdb, 0x8b, 0x77, 0x08, + 0x50, 0xef, 0x40, 0xf4, 0x60, 0x34, 0x60, 0x8c, 0xcf, 0xa1, 0xa8, 0x66, 0x48, 0xe7, 0xd3, 0x9c, + 0xce, 0x1c, 0xbd, 0x14, 0x9f, 0x8e, 0xd0, 0x69, 0xff, 0x25, 0x30, 0x20, 0x4b, 0x2c, 0xd2, 0x89, + 0x30, 0xa8, 0x65, 0x73, 0x72, 0x32, 0x7e, 0x07, 0x28, 0xc0, 0x65, 0x2e, 0xc0, 0x19, 0x3a, 0x1d, + 0x51, 0x00, 0xf1, 0xfc, 0xbc, 0x99, 0x82, 0x7e, 0xc9, 0xd8, 0xf4, 0x64, 0x4c, 0xd0, 0x8c, 0xf4, + 0x44, 0x6c, 0x7b, 0xe4, 0xac, 0x73, 0xce, 0xd7, 0xe8, 0xd5, 0x24, 0x38, 0x0b, 0xdd, 0xff, 0x7b, + 0x02, 0xd4, 0x9b, 0xb5, 0x94, 0x47, 0xb8, 0x6f, 0x82, 0x56, 0x1e, 0xe1, 0xfe, 0xc9, 0x51, 0xe5, + 0x34, 0x27, 0x7b, 0x94, 0x1e, 0x89, 0xb4, 0xc5, 0xbb, 0x9d, 0xfa, 0x01, 0x81, 0x6d, 0x9e, 0x51, + 0xe8, 0x78, 0x24, 0x50, 0x8c, 0xca, 0xc1, 0x88, 0x56, 0xc8, 0xe4, 0x53, 0x9c, 0xc9, 0x25, 0x7a, + 0x21, 0x2e, 0x13, 0xa1, 0xab, 0xfe, 0x45, 0xa0, 0x5f, 0x92, 0xd3, 0x94, 0x87, 0x6c, 0x70, 0x42, + 0x57, 0x1e, 0xb2, 0x21, 0x92, 0xa9, 0xca, 0x2c, 0xe7, 0x3e, 0x4d, 0xa7, 0x22, 0x71, 0x17, 0x4f, + 0xd2, 0xaf, 0xa4, 0x20, 0xed, 0x3f, 0x30, 0x3d, 0x11, 0x0f, 0x30, 0xe3, 0x7b, 0x32, 0xae, 0x39, + 0xd2, 0x5d, 0xe4, 0x74, 0xaf, 0xd2, 0x67, 0xdb, 0xa7, 0xeb, 0x7b, 0x54, 0xf2, 0xab, 0x5a, 0xcb, + 0x8f, 0x4a, 0x01, 0x35, 0x7a, 0xf9, 0x51, 0x29, 0xa8, 0x50, 0x1e, 0xee, 0xa8, 0x14, 0x40, 0xce, + 0x3e, 0x6a, 0x58, 0x4b, 0xf1, 0x70, 0x60, 0x45, 0x98, 0x4e, 0x87, 0x86, 0x2b, 0x8b, 0xf1, 0xd3, + 0x6d, 0xf6, 0x12, 0xe5, 0x54, 0x1c, 0xc4, 0x9e, 0x07, 0x81, 0xad, 0xc3, 0xbf, 0x09, 0x0c, 0xc8, + 0x4a, 0xaf, 0xf2, 0x9d, 0x38, 0x44, 0xc1, 0x59, 0xbe, 0x13, 0x87, 0xa9, 0xfa, 0x2a, 0x17, 0x39, + 0xf1, 0x29, 0x3a, 0x19, 0x93, 0x38, 0xff, 0x2a, 0xfb, 0x4e, 0x0a, 0x1e, 0x0b, 0x55, 0xde, 0xa4, + 0xe7, 0x22, 0x41, 0x97, 0x85, 0xc0, 0x4c, 0x02, 0x3d, 0xa1, 0x1a, 0xcf, 0x71, 0x35, 0x2e, 0xd0, + 0xa7, 0xdb, 0x0e, 0x03, 0xae, 0xcb, 0x3f, 0x09, 0xf4, 0x4b, 0x8a, 0x8a, 0xf2, 0xa5, 0x3e, 0xb8, + 0x90, 0x9a, 0x9e, 0x88, 0x6d, 0x8f, 0xcc, 0x2f, 0x70, 0xe6, 0xa7, 0xe8, 0x44, 0x4c, 0xe6, 0x4e, + 0x66, 0xe8, 0xb5, 0x14, 0xec, 0x09, 0x53, 0xb6, 0xa3, 0x67, 0xa3, 0xe0, 0x96, 0x05, 0xc1, 0xb9, + 0xf6, 0x3b, 0x42, 0x25, 0x9e, 0xe5, 0x4a, 0x9c, 0xa7, 0x33, 0x6d, 0xc7, 0x80, 0xa3, 0xc9, 0x5b, + 0x04, 0x1e, 0x6a, 0x2e, 0x9b, 0xc9, 0x3f, 0xf9, 0x85, 0x05, 0x41, 0xf9, 0x27, 0xbf, 0xb8, 0x2a, + 0x17, 0x2e, 0x73, 0xe4, 0x90, 0x90, 0xad, 0xec, 0xb7, 0x09, 0x3c, 0xd8, 0x34, 0x08, 0x7d, 0x22, + 0x34, 0x1e, 0xc6, 0x20, 0x1b, 0xc1, 0x02, 0x09, 0xe4, 0x38, 0x81, 0xb3, 0xf4, 0x74, 0x1b, 0x04, + 0xf8, 0x57, 0x30, 0x7d, 0x97, 0x00, 0xf5, 0xd6, 0xa9, 0xe4, 0xe7, 0x64, 0xdf, 0x4a, 0x9c, 0xfc, + 0x9c, 0xec, 0x5f, 0x0e, 0x8b, 0x34, 0xed, 0xfc, 0x98, 0xf1, 0x55, 0xe6, 0x43, 0x02, 0xdb, 0x3c, + 0x83, 0xc9, 0x8f, 0xcb, 0x7e, 0x85, 0xaf, 0xf4, 0xc1, 0x88, 0x56, 0x48, 0xe8, 0x1a, 0x27, 0x34, + 0x4b, 0x2f, 0xb6, 0x49, 0xa8, 0xf9, 0x23, 0x88, 0xfe, 0xd1, 0x4d, 0xcf, 0xc9, 0xa4, 0x8f, 0x47, + 0x99, 0xf9, 0x66, 0x34, 0x7a, 0xf1, 0xf2, 0xe7, 0x01, 0xf4, 0x9c, 0x15, 0xe1, 0x7d, 0x02, 0x5b, + 0x5b, 0x87, 0x92, 0xe7, 0x61, 0x7d, 0x2a, 0x4b, 0xe9, 0xf1, 0x68, 0x46, 0x48, 0xe6, 0x2a, 0x27, + 0x73, 0x91, 0x9e, 0x6f, 0x8f, 0x4c, 0xd3, 0x71, 0x98, 0xfe, 0x9a, 0xc0, 0xc3, 0x2d, 0x85, 0x19, + 0x79, 0x72, 0x56, 0x5c, 0x4c, 0x92, 0x27, 0x67, 0x7d, 0xca, 0x47, 0xca, 0x34, 0xa7, 0xf5, 0x24, + 0x3d, 0xec, 0x43, 0xab, 0x6e, 0xea, 0x16, 0x23, 0x77, 0xa9, 0x6a, 0x55, 0x75, 0x15, 0x8d, 0xe8, + 0x4b, 0x04, 0x36, 0xda, 0x35, 0x1e, 0xba, 0x5f, 0x9a, 0xa2, 0x73, 0x17, 0x95, 0xd2, 0x23, 0x61, + 0x9a, 0x22, 0xce, 0x11, 0x8e, 0x73, 0x88, 0xee, 0x52, 0x65, 0xff, 0x0c, 0x3f, 0x35, 0x77, 0xfb, + 0xee, 0x20, 0x79, 0xe7, 0xee, 0x20, 0xb9, 0x73, 0x77, 0x90, 0xbc, 0xba, 0x36, 0xb8, 0xe1, 0x9d, + 0xb5, 0xc1, 0x0d, 0x7f, 0x59, 0x1b, 0xdc, 0x70, 0xed, 0x50, 0xa1, 0x58, 0xfb, 0x7c, 0x7d, 0x21, + 0xb3, 0x68, 0x2c, 0x39, 0x5d, 0x1c, 0x28, 0x69, 0x0b, 0x26, 0xef, 0x70, 0x79, 0x4c, 0xfd, 0xa2, + 0xab, 0xd7, 0xda, 0x8d, 0x8a, 0x6e, 0x2e, 0x6c, 0x6c, 0xfc, 0xe3, 0xfb, 0xd8, 0xff, 0x02, 0x00, + 0x00, 0xff, 0xff, 0x3e, 0xe0, 0x4f, 0xc7, 0x8e, 0x40, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/rewards/autocli.go b/x/rewards/autocli.go index 5b4a046c..2309fed6 100644 --- a/x/rewards/autocli.go +++ b/x/rewards/autocli.go @@ -6,7 +6,7 @@ import ( autocliv1 "cosmossdk.io/api/cosmos/autocli/v1" "github.com/cosmos/cosmos-sdk/version" - rewardsv1 "github.com/milkyway-labs/milkyway/v2/api/milkyway/rewards/v1" + rewardsv1 "github.com/milkyway-labs/milkyway/v3/api/milkyway/rewards/v1" ) // AutoCLIOptions implements the autocli.HasAutoCLIConfig interface. diff --git a/x/rewards/client/cli/tx.go b/x/rewards/client/cli/tx.go index 897e70fc..1657f769 100644 --- a/x/rewards/client/cli/tx.go +++ b/x/rewards/client/cli/tx.go @@ -10,7 +10,7 @@ import ( "github.com/cosmos/cosmos-sdk/version" "github.com/spf13/cobra" - "github.com/milkyway-labs/milkyway/v2/x/rewards/types" + "github.com/milkyway-labs/milkyway/v3/x/rewards/types" ) // GetTxCmd returns a new command to perform operators transactions diff --git a/x/rewards/client/cli/utils.go b/x/rewards/client/cli/utils.go index 020be313..d311bb5e 100644 --- a/x/rewards/client/cli/utils.go +++ b/x/rewards/client/cli/utils.go @@ -10,8 +10,8 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" - restakingtypes "github.com/milkyway-labs/milkyway/v2/x/restaking/types" - "github.com/milkyway-labs/milkyway/v2/x/rewards/types" + restakingtypes "github.com/milkyway-labs/milkyway/v3/x/restaking/types" + "github.com/milkyway-labs/milkyway/v3/x/rewards/types" ) type rewardsPlanJSON struct { diff --git a/x/rewards/client/cli/utils_test.go b/x/rewards/client/cli/utils_test.go index 6e08e372..5661dc37 100644 --- a/x/rewards/client/cli/utils_test.go +++ b/x/rewards/client/cli/utils_test.go @@ -10,9 +10,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - milkywayapp "github.com/milkyway-labs/milkyway/v2/app" - "github.com/milkyway-labs/milkyway/v2/x/rewards/client/cli" - "github.com/milkyway-labs/milkyway/v2/x/rewards/types" + milkywayapp "github.com/milkyway-labs/milkyway/v3/app" + "github.com/milkyway-labs/milkyway/v3/x/rewards/client/cli" + "github.com/milkyway-labs/milkyway/v3/x/rewards/types" ) func TestCLIUtils_parseRewardsPlan(t *testing.T) { diff --git a/x/rewards/keeper/alias_functions.go b/x/rewards/keeper/alias_functions.go index 448b3d90..568393b5 100644 --- a/x/rewards/keeper/alias_functions.go +++ b/x/rewards/keeper/alias_functions.go @@ -8,9 +8,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - restakingtypes "github.com/milkyway-labs/milkyway/v2/x/restaking/types" - "github.com/milkyway-labs/milkyway/v2/x/rewards/types" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + restakingtypes "github.com/milkyway-labs/milkyway/v3/x/restaking/types" + "github.com/milkyway-labs/milkyway/v3/x/rewards/types" ) // DeleteHistoricalRewards deletes all historical rewards for a target diff --git a/x/rewards/keeper/allocation.go b/x/rewards/keeper/allocation.go index 91251d74..09330e43 100644 --- a/x/rewards/keeper/allocation.go +++ b/x/rewards/keeper/allocation.go @@ -13,12 +13,12 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" gogotypes "github.com/cosmos/gogoproto/types" - "github.com/milkyway-labs/milkyway/v2/utils" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - poolstypes "github.com/milkyway-labs/milkyway/v2/x/pools/types" - restakingtypes "github.com/milkyway-labs/milkyway/v2/x/restaking/types" - "github.com/milkyway-labs/milkyway/v2/x/rewards/types" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/utils" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + poolstypes "github.com/milkyway-labs/milkyway/v3/x/pools/types" + restakingtypes "github.com/milkyway-labs/milkyway/v3/x/restaking/types" + "github.com/milkyway-labs/milkyway/v3/x/rewards/types" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) // DistributionInfo stores information about a delegation target and its diff --git a/x/rewards/keeper/allocation_test.go b/x/rewards/keeper/allocation_test.go index 2b2e41e3..fe0d4845 100644 --- a/x/rewards/keeper/allocation_test.go +++ b/x/rewards/keeper/allocation_test.go @@ -3,11 +3,11 @@ package keeper_test import ( "time" - "github.com/milkyway-labs/milkyway/v2/app/testutil" - "github.com/milkyway-labs/milkyway/v2/utils" - restakingtypes "github.com/milkyway-labs/milkyway/v2/x/restaking/types" - "github.com/milkyway-labs/milkyway/v2/x/rewards/keeper" - "github.com/milkyway-labs/milkyway/v2/x/rewards/types" + "github.com/milkyway-labs/milkyway/v3/app/testutil" + "github.com/milkyway-labs/milkyway/v3/utils" + restakingtypes "github.com/milkyway-labs/milkyway/v3/x/restaking/types" + "github.com/milkyway-labs/milkyway/v3/x/rewards/keeper" + "github.com/milkyway-labs/milkyway/v3/x/rewards/types" ) func (suite *KeeperTestSuite) TestAllocateRewards_InactivePlan() { diff --git a/x/rewards/keeper/common_test.go b/x/rewards/keeper/common_test.go index 339bf62a..d5a96309 100644 --- a/x/rewards/keeper/common_test.go +++ b/x/rewards/keeper/common_test.go @@ -18,20 +18,20 @@ import ( oracletypes "github.com/skip-mev/connect/v2/x/oracle/types" "github.com/stretchr/testify/suite" - "github.com/milkyway-labs/milkyway/v2/app/testutil" - "github.com/milkyway-labs/milkyway/v2/utils" - assetskeeper "github.com/milkyway-labs/milkyway/v2/x/assets/keeper" - assetstypes "github.com/milkyway-labs/milkyway/v2/x/assets/types" - operatorskeeper "github.com/milkyway-labs/milkyway/v2/x/operators/keeper" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - poolskeeper "github.com/milkyway-labs/milkyway/v2/x/pools/keeper" - restakingkeeper "github.com/milkyway-labs/milkyway/v2/x/restaking/keeper" - restakingtypes "github.com/milkyway-labs/milkyway/v2/x/restaking/types" - "github.com/milkyway-labs/milkyway/v2/x/rewards/keeper" - "github.com/milkyway-labs/milkyway/v2/x/rewards/testutils" - rewardstypes "github.com/milkyway-labs/milkyway/v2/x/rewards/types" - serviceskeeper "github.com/milkyway-labs/milkyway/v2/x/services/keeper" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/app/testutil" + "github.com/milkyway-labs/milkyway/v3/utils" + assetskeeper "github.com/milkyway-labs/milkyway/v3/x/assets/keeper" + assetstypes "github.com/milkyway-labs/milkyway/v3/x/assets/types" + operatorskeeper "github.com/milkyway-labs/milkyway/v3/x/operators/keeper" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + poolskeeper "github.com/milkyway-labs/milkyway/v3/x/pools/keeper" + restakingkeeper "github.com/milkyway-labs/milkyway/v3/x/restaking/keeper" + restakingtypes "github.com/milkyway-labs/milkyway/v3/x/restaking/types" + "github.com/milkyway-labs/milkyway/v3/x/rewards/keeper" + "github.com/milkyway-labs/milkyway/v3/x/rewards/testutils" + rewardstypes "github.com/milkyway-labs/milkyway/v3/x/rewards/types" + serviceskeeper "github.com/milkyway-labs/milkyway/v3/x/services/keeper" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) type KeeperTestSuite struct { diff --git a/x/rewards/keeper/delegation.go b/x/rewards/keeper/delegation.go index 6f5191c9..594eb4b2 100644 --- a/x/rewards/keeper/delegation.go +++ b/x/rewards/keeper/delegation.go @@ -10,8 +10,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - restakingtypes "github.com/milkyway-labs/milkyway/v2/x/restaking/types" - "github.com/milkyway-labs/milkyway/v2/x/rewards/types" + restakingtypes "github.com/milkyway-labs/milkyway/v3/x/restaking/types" + "github.com/milkyway-labs/milkyway/v3/x/rewards/types" ) // initializeDelegation initializes a delegation for a target diff --git a/x/rewards/keeper/genesis.go b/x/rewards/keeper/genesis.go index c1bc930e..af6b170c 100644 --- a/x/rewards/keeper/genesis.go +++ b/x/rewards/keeper/genesis.go @@ -6,7 +6,7 @@ import ( "cosmossdk.io/collections" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/rewards/types" + "github.com/milkyway-labs/milkyway/v3/x/rewards/types" ) // ExportGenesis returns the GenesisState associated with the given context diff --git a/x/rewards/keeper/grpc_query.go b/x/rewards/keeper/grpc_query.go index 1bd66aea..4ce08b26 100644 --- a/x/rewards/keeper/grpc_query.go +++ b/x/rewards/keeper/grpc_query.go @@ -10,8 +10,8 @@ import ( "cosmossdk.io/errors" "github.com/cosmos/cosmos-sdk/types/query" - restakingtypes "github.com/milkyway-labs/milkyway/v2/x/restaking/types" - "github.com/milkyway-labs/milkyway/v2/x/rewards/types" + restakingtypes "github.com/milkyway-labs/milkyway/v3/x/restaking/types" + "github.com/milkyway-labs/milkyway/v3/x/rewards/types" ) var _ types.QueryServer = queryServer{} diff --git a/x/rewards/keeper/grpc_query_test.go b/x/rewards/keeper/grpc_query_test.go index fbced441..f14e1b6b 100644 --- a/x/rewards/keeper/grpc_query_test.go +++ b/x/rewards/keeper/grpc_query_test.go @@ -6,11 +6,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - "github.com/milkyway-labs/milkyway/v2/app/testutil" - "github.com/milkyway-labs/milkyway/v2/utils" - restakingtypes "github.com/milkyway-labs/milkyway/v2/x/restaking/types" - "github.com/milkyway-labs/milkyway/v2/x/rewards/keeper" - "github.com/milkyway-labs/milkyway/v2/x/rewards/types" + "github.com/milkyway-labs/milkyway/v3/app/testutil" + "github.com/milkyway-labs/milkyway/v3/utils" + restakingtypes "github.com/milkyway-labs/milkyway/v3/x/restaking/types" + "github.com/milkyway-labs/milkyway/v3/x/rewards/keeper" + "github.com/milkyway-labs/milkyway/v3/x/rewards/types" ) func (suite *KeeperTestSuite) TestQuerier_RewardsPlans() { diff --git a/x/rewards/keeper/hooks.go b/x/rewards/keeper/hooks.go index 67de03e9..ff1e17c7 100644 --- a/x/rewards/keeper/hooks.go +++ b/x/rewards/keeper/hooks.go @@ -5,8 +5,8 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - restakingtypes "github.com/milkyway-labs/milkyway/v2/x/restaking/types" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + restakingtypes "github.com/milkyway-labs/milkyway/v3/x/restaking/types" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) // AfterDelegationTargetCreated is called after a delegation target is created diff --git a/x/rewards/keeper/invariants.go b/x/rewards/keeper/invariants.go index 1ca2c66c..e89a773e 100644 --- a/x/rewards/keeper/invariants.go +++ b/x/rewards/keeper/invariants.go @@ -7,11 +7,11 @@ import ( "cosmossdk.io/collections" sdk "github.com/cosmos/cosmos-sdk/types" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - poolstypes "github.com/milkyway-labs/milkyway/v2/x/pools/types" - restakingtypes "github.com/milkyway-labs/milkyway/v2/x/restaking/types" - "github.com/milkyway-labs/milkyway/v2/x/rewards/types" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + poolstypes "github.com/milkyway-labs/milkyway/v3/x/pools/types" + restakingtypes "github.com/milkyway-labs/milkyway/v3/x/restaking/types" + "github.com/milkyway-labs/milkyway/v3/x/rewards/types" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) // RegisterInvariants registers all module invariants diff --git a/x/rewards/keeper/invariants_test.go b/x/rewards/keeper/invariants_test.go index e248bbdc..9107124f 100644 --- a/x/rewards/keeper/invariants_test.go +++ b/x/rewards/keeper/invariants_test.go @@ -4,11 +4,11 @@ import ( "cosmossdk.io/collections" sdk "github.com/cosmos/cosmos-sdk/types" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - poolstypes "github.com/milkyway-labs/milkyway/v2/x/pools/types" - "github.com/milkyway-labs/milkyway/v2/x/rewards/keeper" - "github.com/milkyway-labs/milkyway/v2/x/rewards/types" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + poolstypes "github.com/milkyway-labs/milkyway/v3/x/pools/types" + "github.com/milkyway-labs/milkyway/v3/x/rewards/keeper" + "github.com/milkyway-labs/milkyway/v3/x/rewards/types" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) func (suite *KeeperTestSuite) TestInvariants_ReferenceCountInvariant() { diff --git a/x/rewards/keeper/keeper.go b/x/rewards/keeper/keeper.go index 177f5c73..2a15326f 100644 --- a/x/rewards/keeper/keeper.go +++ b/x/rewards/keeper/keeper.go @@ -12,7 +12,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" gogotypes "github.com/cosmos/gogoproto/types" - "github.com/milkyway-labs/milkyway/v2/x/rewards/types" + "github.com/milkyway-labs/milkyway/v3/x/rewards/types" ) type Keeper struct { diff --git a/x/rewards/keeper/msg_server.go b/x/rewards/keeper/msg_server.go index a8c57635..053359ee 100644 --- a/x/rewards/keeper/msg_server.go +++ b/x/rewards/keeper/msg_server.go @@ -9,9 +9,9 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - "github.com/milkyway-labs/milkyway/v2/x/rewards/types" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/x/rewards/types" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) var _ types.MsgServer = msgServer{} diff --git a/x/rewards/keeper/msg_server_test.go b/x/rewards/keeper/msg_server_test.go index 4297fea7..1d18dc68 100644 --- a/x/rewards/keeper/msg_server_test.go +++ b/x/rewards/keeper/msg_server_test.go @@ -8,13 +8,13 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" distrtypes "github.com/cosmos/cosmos-sdk/x/distribution/types" - "github.com/milkyway-labs/milkyway/v2/app/testutil" - "github.com/milkyway-labs/milkyway/v2/utils" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - restakingtypes "github.com/milkyway-labs/milkyway/v2/x/restaking/types" - "github.com/milkyway-labs/milkyway/v2/x/rewards/keeper" - "github.com/milkyway-labs/milkyway/v2/x/rewards/types" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/app/testutil" + "github.com/milkyway-labs/milkyway/v3/utils" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + restakingtypes "github.com/milkyway-labs/milkyway/v3/x/restaking/types" + "github.com/milkyway-labs/milkyway/v3/x/rewards/keeper" + "github.com/milkyway-labs/milkyway/v3/x/rewards/types" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) func (suite *KeeperTestSuite) TestMsgCreateRewardsPlan() { diff --git a/x/rewards/keeper/opertors_hooks.go b/x/rewards/keeper/opertors_hooks.go index 2d02ad06..edbf2787 100644 --- a/x/rewards/keeper/opertors_hooks.go +++ b/x/rewards/keeper/opertors_hooks.go @@ -3,8 +3,8 @@ package keeper import ( "context" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - restakingtypes "github.com/milkyway-labs/milkyway/v2/x/restaking/types" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + restakingtypes "github.com/milkyway-labs/milkyway/v3/x/restaking/types" ) var _ operatorstypes.OperatorsHooks = OperatorsHooks{} diff --git a/x/rewards/keeper/oracle.go b/x/rewards/keeper/oracle.go index 9354c368..388a7c66 100644 --- a/x/rewards/keeper/oracle.go +++ b/x/rewards/keeper/oracle.go @@ -10,8 +10,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" connecttypes "github.com/skip-mev/connect/v2/pkg/types" - assetstypes "github.com/milkyway-labs/milkyway/v2/x/assets/types" - "github.com/milkyway-labs/milkyway/v2/x/rewards/types" + assetstypes "github.com/milkyway-labs/milkyway/v3/x/assets/types" + "github.com/milkyway-labs/milkyway/v3/x/rewards/types" ) func (k *Keeper) GetAssetAndPrice(ctx context.Context, denom string) (assetstypes.Asset, math.LegacyDec, error) { diff --git a/x/rewards/keeper/oracle_test.go b/x/rewards/keeper/oracle_test.go index 7436ee89..bfa9e351 100644 --- a/x/rewards/keeper/oracle_test.go +++ b/x/rewards/keeper/oracle_test.go @@ -1,7 +1,7 @@ package keeper_test import ( - "github.com/milkyway-labs/milkyway/v2/utils" + "github.com/milkyway-labs/milkyway/v3/utils" ) func (suite *KeeperTestSuite) TestGetAssetAndPrice() { diff --git a/x/rewards/keeper/pool_service_shares.go b/x/rewards/keeper/pool_service_shares.go index a31280f2..b5dfe43c 100644 --- a/x/rewards/keeper/pool_service_shares.go +++ b/x/rewards/keeper/pool_service_shares.go @@ -3,7 +3,7 @@ package keeper import ( "context" - restakingtypes "github.com/milkyway-labs/milkyway/v2/x/restaking/types" + restakingtypes "github.com/milkyway-labs/milkyway/v3/x/restaking/types" ) // AfterUserTrustedServiceUpdated is called after a user's trust in a service is diff --git a/x/rewards/keeper/pools_hooks.go b/x/rewards/keeper/pools_hooks.go index 23273e73..915904fa 100644 --- a/x/rewards/keeper/pools_hooks.go +++ b/x/rewards/keeper/pools_hooks.go @@ -3,8 +3,8 @@ package keeper import ( "context" - poolstypes "github.com/milkyway-labs/milkyway/v2/x/pools/types" - restakingtypes "github.com/milkyway-labs/milkyway/v2/x/restaking/types" + poolstypes "github.com/milkyway-labs/milkyway/v3/x/pools/types" + restakingtypes "github.com/milkyway-labs/milkyway/v3/x/restaking/types" ) var ( diff --git a/x/rewards/keeper/restaking_hooks.go b/x/rewards/keeper/restaking_hooks.go index 4723eb5b..ab8a6ead 100644 --- a/x/rewards/keeper/restaking_hooks.go +++ b/x/rewards/keeper/restaking_hooks.go @@ -3,7 +3,7 @@ package keeper import ( "context" - restakingtypes "github.com/milkyway-labs/milkyway/v2/x/restaking/types" + restakingtypes "github.com/milkyway-labs/milkyway/v3/x/restaking/types" ) var _ restakingtypes.RestakingHooks = RestakingHooks{} diff --git a/x/rewards/keeper/rewards_plan.go b/x/rewards/keeper/rewards_plan.go index 010c5cee..3eda7d43 100644 --- a/x/rewards/keeper/rewards_plan.go +++ b/x/rewards/keeper/rewards_plan.go @@ -9,8 +9,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/milkyway-labs/milkyway/v2/x/rewards/types" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/x/rewards/types" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) func (k *Keeper) CreateRewardsPlan( diff --git a/x/rewards/keeper/rewards_plan_test.go b/x/rewards/keeper/rewards_plan_test.go index e6ea78d9..b355f9d8 100644 --- a/x/rewards/keeper/rewards_plan_test.go +++ b/x/rewards/keeper/rewards_plan_test.go @@ -5,10 +5,10 @@ import ( "cosmossdk.io/collections" - "github.com/milkyway-labs/milkyway/v2/app/testutil" - "github.com/milkyway-labs/milkyway/v2/utils" - rewardskeeper "github.com/milkyway-labs/milkyway/v2/x/rewards/keeper" - "github.com/milkyway-labs/milkyway/v2/x/rewards/types" + "github.com/milkyway-labs/milkyway/v3/app/testutil" + "github.com/milkyway-labs/milkyway/v3/utils" + rewardskeeper "github.com/milkyway-labs/milkyway/v3/x/rewards/keeper" + "github.com/milkyway-labs/milkyway/v3/x/rewards/types" ) func (suite *KeeperTestSuite) TestCreateRewardsPlan_PoolOrOperatorNotFound() { diff --git a/x/rewards/keeper/services_hooks.go b/x/rewards/keeper/services_hooks.go index 9ae5ff13..d36a5ae8 100644 --- a/x/rewards/keeper/services_hooks.go +++ b/x/rewards/keeper/services_hooks.go @@ -3,8 +3,8 @@ package keeper import ( "context" - restakingtypes "github.com/milkyway-labs/milkyway/v2/x/restaking/types" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + restakingtypes "github.com/milkyway-labs/milkyway/v3/x/restaking/types" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) var _ servicestypes.ServicesHooks = ServicesHooks{} diff --git a/x/rewards/keeper/services_hoos_test.go b/x/rewards/keeper/services_hoos_test.go index 220a36f2..3a77099d 100644 --- a/x/rewards/keeper/services_hoos_test.go +++ b/x/rewards/keeper/services_hoos_test.go @@ -1,7 +1,7 @@ package keeper_test import ( - "github.com/milkyway-labs/milkyway/v2/utils" + "github.com/milkyway-labs/milkyway/v3/utils" ) func (suite *KeeperTestSuite) TestServicesHooks_BeforeServiceDeleted() { diff --git a/x/rewards/keeper/target.go b/x/rewards/keeper/target.go index b0ab5313..1737ee03 100644 --- a/x/rewards/keeper/target.go +++ b/x/rewards/keeper/target.go @@ -8,11 +8,11 @@ import ( "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - poolstypes "github.com/milkyway-labs/milkyway/v2/x/pools/types" - restakingtypes "github.com/milkyway-labs/milkyway/v2/x/restaking/types" - "github.com/milkyway-labs/milkyway/v2/x/rewards/types" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + poolstypes "github.com/milkyway-labs/milkyway/v3/x/pools/types" + restakingtypes "github.com/milkyway-labs/milkyway/v3/x/restaking/types" + "github.com/milkyway-labs/milkyway/v3/x/rewards/types" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) // DelegationTarget is a wrapper around the delegation target that holds the diff --git a/x/rewards/keeper/withdraw.go b/x/rewards/keeper/withdraw.go index 43b978a3..2aafa757 100644 --- a/x/rewards/keeper/withdraw.go +++ b/x/rewards/keeper/withdraw.go @@ -8,8 +8,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - "github.com/milkyway-labs/milkyway/v2/x/rewards/types" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + "github.com/milkyway-labs/milkyway/v3/x/rewards/types" ) // SetWithdrawAddress sets a new address that will receive the rewards upon withdrawal diff --git a/x/rewards/module.go b/x/rewards/module.go index cd291c1e..76c9107e 100644 --- a/x/rewards/module.go +++ b/x/rewards/module.go @@ -15,9 +15,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/milkyway-labs/milkyway/v2/x/rewards/client/cli" - "github.com/milkyway-labs/milkyway/v2/x/rewards/keeper" - "github.com/milkyway-labs/milkyway/v2/x/rewards/types" + "github.com/milkyway-labs/milkyway/v3/x/rewards/client/cli" + "github.com/milkyway-labs/milkyway/v3/x/rewards/keeper" + "github.com/milkyway-labs/milkyway/v3/x/rewards/types" ) const ( diff --git a/x/rewards/testutils/keeper.go b/x/rewards/testutils/keeper.go index f4cc491a..81f68897 100644 --- a/x/rewards/testutils/keeper.go +++ b/x/rewards/testutils/keeper.go @@ -13,19 +13,19 @@ import ( oracletypes "github.com/skip-mev/connect/v2/x/oracle/types" "github.com/stretchr/testify/require" - "github.com/milkyway-labs/milkyway/v2/testutils/storetesting" - assetskeeper "github.com/milkyway-labs/milkyway/v2/x/assets/keeper" - assetstypes "github.com/milkyway-labs/milkyway/v2/x/assets/types" - operatorskeeper "github.com/milkyway-labs/milkyway/v2/x/operators/keeper" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - poolskeeper "github.com/milkyway-labs/milkyway/v2/x/pools/keeper" - poolstypes "github.com/milkyway-labs/milkyway/v2/x/pools/types" - restakingkeeper "github.com/milkyway-labs/milkyway/v2/x/restaking/keeper" - restakingtypes "github.com/milkyway-labs/milkyway/v2/x/restaking/types" - rewardskeeper "github.com/milkyway-labs/milkyway/v2/x/rewards/keeper" - rewardstypes "github.com/milkyway-labs/milkyway/v2/x/rewards/types" - serviceskeeper "github.com/milkyway-labs/milkyway/v2/x/services/keeper" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/testutils/storetesting" + assetskeeper "github.com/milkyway-labs/milkyway/v3/x/assets/keeper" + assetstypes "github.com/milkyway-labs/milkyway/v3/x/assets/types" + operatorskeeper "github.com/milkyway-labs/milkyway/v3/x/operators/keeper" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + poolskeeper "github.com/milkyway-labs/milkyway/v3/x/pools/keeper" + poolstypes "github.com/milkyway-labs/milkyway/v3/x/pools/types" + restakingkeeper "github.com/milkyway-labs/milkyway/v3/x/restaking/keeper" + restakingtypes "github.com/milkyway-labs/milkyway/v3/x/restaking/types" + rewardskeeper "github.com/milkyway-labs/milkyway/v3/x/rewards/keeper" + rewardstypes "github.com/milkyway-labs/milkyway/v3/x/rewards/types" + serviceskeeper "github.com/milkyway-labs/milkyway/v3/x/services/keeper" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) type KeeperTestData struct { diff --git a/x/rewards/types/dec_pool_test.go b/x/rewards/types/dec_pool_test.go index 5288e3e7..60f147cd 100644 --- a/x/rewards/types/dec_pool_test.go +++ b/x/rewards/types/dec_pool_test.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/suite" - "github.com/milkyway-labs/milkyway/v2/x/rewards/types" + "github.com/milkyway-labs/milkyway/v3/x/rewards/types" ) type decpoolTestSuite struct { diff --git a/x/rewards/types/expected_keepers.go b/x/rewards/types/expected_keepers.go index ceef2088..1a394403 100644 --- a/x/rewards/types/expected_keepers.go +++ b/x/rewards/types/expected_keepers.go @@ -8,11 +8,11 @@ import ( connecttypes "github.com/skip-mev/connect/v2/pkg/types" oracletypes "github.com/skip-mev/connect/v2/x/oracle/types" - assetstypes "github.com/milkyway-labs/milkyway/v2/x/assets/types" - operatorstypes "github.com/milkyway-labs/milkyway/v2/x/operators/types" - poolstypes "github.com/milkyway-labs/milkyway/v2/x/pools/types" - restakingtypes "github.com/milkyway-labs/milkyway/v2/x/restaking/types" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + assetstypes "github.com/milkyway-labs/milkyway/v3/x/assets/types" + operatorstypes "github.com/milkyway-labs/milkyway/v3/x/operators/types" + poolstypes "github.com/milkyway-labs/milkyway/v3/x/pools/types" + restakingtypes "github.com/milkyway-labs/milkyway/v3/x/restaking/types" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) type AccountKeeper interface { diff --git a/x/rewards/types/genesis.go b/x/rewards/types/genesis.go index 22fc03da..fab99062 100644 --- a/x/rewards/types/genesis.go +++ b/x/rewards/types/genesis.go @@ -6,7 +6,7 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" - "github.com/milkyway-labs/milkyway/v2/utils" + "github.com/milkyway-labs/milkyway/v3/utils" ) func NewGenesisState( diff --git a/x/rewards/types/genesis.pb.go b/x/rewards/types/genesis.pb.go index b8536c97..e6ba5f09 100644 --- a/x/rewards/types/genesis.pb.go +++ b/x/rewards/types/genesis.pb.go @@ -506,73 +506,73 @@ func init() { func init() { proto.RegisterFile("milkyway/rewards/v1/genesis.proto", fileDescriptor_95f74caade7824f2) } var fileDescriptor_95f74caade7824f2 = []byte{ - // 1042 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0x4f, 0x6f, 0x1b, 0x45, - 0x14, 0xf7, 0x26, 0x26, 0x7f, 0x26, 0x49, 0x13, 0x4f, 0x9d, 0xb0, 0x4d, 0x2b, 0xaf, 0x49, 0x24, - 0x14, 0x2a, 0xe2, 0x25, 0xa1, 0x07, 0xe0, 0x56, 0xc7, 0x40, 0x2c, 0xa4, 0x36, 0x72, 0x22, 0x55, - 0xaa, 0x84, 0x96, 0xf1, 0xee, 0x64, 0x3d, 0x62, 0x77, 0x67, 0x35, 0x33, 0x76, 0x92, 0x6f, 0xc0, - 0x05, 0xa9, 0x07, 0x3e, 0x40, 0x8f, 0x08, 0x09, 0x89, 0x43, 0x2f, 0xdc, 0x38, 0xf6, 0x58, 0x55, - 0x1c, 0x38, 0xa5, 0xc8, 0x39, 0xc0, 0x07, 0xe0, 0x03, 0xa0, 0x9d, 0x9d, 0xfd, 0xe3, 0x78, 0x53, - 0x07, 0x95, 0x5e, 0x2c, 0xcf, 0xcc, 0xef, 0xbd, 0xf7, 0x7b, 0xef, 0xcd, 0xef, 0xed, 0x80, 0xf7, - 0x7c, 0xe2, 0x7d, 0x7b, 0x76, 0x82, 0xce, 0x4c, 0x86, 0x4f, 0x10, 0x73, 0xb8, 0x39, 0xd8, 0x31, - 0x5d, 0x1c, 0x60, 0x4e, 0x78, 0x23, 0x64, 0x54, 0x50, 0x78, 0x33, 0x81, 0x34, 0x14, 0xa4, 0x31, - 0xd8, 0x59, 0xaf, 0x20, 0x9f, 0x04, 0xd4, 0x94, 0xbf, 0x31, 0x6e, 0xfd, 0x96, 0x4d, 0xb9, 0x4f, - 0xb9, 0x25, 0x57, 0x66, 0xbc, 0x50, 0x47, 0xb5, 0x78, 0x65, 0x76, 0x11, 0xc7, 0xe6, 0x60, 0xa7, - 0x8b, 0x05, 0xda, 0x31, 0x6d, 0x4a, 0x02, 0x75, 0x6e, 0xb8, 0x94, 0xba, 0x1e, 0x36, 0xe5, 0xaa, - 0xdb, 0x3f, 0x36, 0x05, 0xf1, 0x31, 0x17, 0xc8, 0x0f, 0x15, 0xa0, 0xea, 0x52, 0x97, 0xc6, 0x8e, - 0xa3, 0x7f, 0x6a, 0xb7, 0x5e, 0x44, 0x3e, 0x44, 0x0c, 0xf9, 0xfc, 0x75, 0x08, 0x9f, 0x3a, 0xd8, - 0x53, 0x88, 0x8d, 0x9f, 0x35, 0xb0, 0xda, 0xc2, 0x1e, 0x76, 0x91, 0xa0, 0xec, 0x11, 0x11, 0x3d, - 0x87, 0xa1, 0x93, 0x76, 0x70, 0x4c, 0xe1, 0xe7, 0xa0, 0xe2, 0x24, 0x07, 0x16, 0x72, 0x1c, 0x86, - 0x39, 0xd7, 0xb5, 0xba, 0xb6, 0x35, 0xdf, 0xd4, 0x5f, 0x3e, 0xdb, 0xae, 0xaa, 0x0c, 0xef, 0xc7, - 0x27, 0x87, 0x82, 0x91, 0xc0, 0xed, 0xac, 0xa4, 0x26, 0x6a, 0x1f, 0xee, 0x81, 0x95, 0x13, 0xe5, - 0x36, 0xf5, 0x32, 0x35, 0xc1, 0xcb, 0x72, 0x62, 0xa1, 0xb6, 0x3f, 0x9b, 0xfb, 0xee, 0xa9, 0x51, - 0xfa, 0xfb, 0xa9, 0x51, 0xda, 0xf8, 0x5d, 0x03, 0xfa, 0xc3, 0xbe, 0xe0, 0x02, 0x05, 0x4e, 0x04, - 0x8d, 0xd3, 0xea, 0x60, 0x9b, 0x32, 0x07, 0xee, 0x83, 0xaa, 0x8a, 0x4f, 0x68, 0x60, 0x09, 0xc4, - 0x5c, 0x2c, 0x2c, 0xe2, 0x48, 0xd6, 0x4b, 0xcd, 0xb5, 0xe1, 0xb9, 0x01, 0x5b, 0xe9, 0xf9, 0x91, - 0x3c, 0x6e, 0xb7, 0x3a, 0xd0, 0xb9, 0xbc, 0xe7, 0x40, 0x07, 0xdc, 0xa4, 0x59, 0x14, 0x4b, 0x55, - 0x4f, 0x9f, 0xaa, 0x4f, 0x6f, 0x2d, 0xec, 0xde, 0x69, 0x14, 0x5c, 0x89, 0x46, 0x0b, 0xdb, 0x07, - 0x94, 0x7a, 0xcd, 0xd5, 0xe7, 0xe7, 0x46, 0xe9, 0xa7, 0x57, 0xc6, 0x9c, 0xda, 0xe0, 0x3f, 0xfe, - 0xf5, 0xcb, 0x5d, 0xad, 0x03, 0xe9, 0x18, 0xeb, 0x5c, 0x5a, 0x2f, 0x35, 0xf0, 0xee, 0x3e, 0xe1, - 0x82, 0x32, 0x62, 0x23, 0xef, 0x6d, 0x65, 0xb5, 0x06, 0x66, 0x42, 0xcc, 0x08, 0x75, 0x64, 0x07, - 0xca, 0x1d, 0xb5, 0x82, 0x5f, 0x81, 0xd9, 0x24, 0xc3, 0xe9, 0xba, 0xb6, 0xb5, 0xb0, 0xfb, 0x7e, - 0x61, 0x86, 0x63, 0x04, 0x9b, 0xf3, 0x51, 0xae, 0x71, 0x7e, 0x89, 0x87, 0x5c, 0x52, 0xcf, 0x34, - 0x50, 0xdd, 0xeb, 0x33, 0x86, 0x03, 0xf1, 0xb6, 0x32, 0xda, 0xcf, 0x98, 0x4f, 0x49, 0xe6, 0x9b, - 0x85, 0xcc, 0x47, 0x59, 0x4c, 0xa0, 0xfd, 0xc3, 0x14, 0xb8, 0x9d, 0x4a, 0xe2, 0x50, 0x20, 0x26, - 0x48, 0xe0, 0x46, 0x92, 0x50, 0xec, 0xff, 0x27, 0x61, 0x5c, 0x55, 0x84, 0xa9, 0xff, 0x5c, 0x84, - 0xc7, 0x60, 0x89, 0x2b, 0x9a, 0x16, 0x09, 0x8e, 0xa9, 0x6a, 0xe2, 0xdd, 0x2b, 0xae, 0x69, 0x41, - 0x66, 0xf9, 0x8a, 0x2c, 0xf2, 0xdc, 0x41, 0xae, 0x2c, 0xbf, 0x6a, 0x60, 0xf3, 0x61, 0x88, 0x99, - 0xcc, 0xc1, 0xb6, 0xfb, 0x7e, 0xdf, 0x43, 0x02, 0x3b, 0x7b, 0xd4, 0xf7, 0x09, 0xe7, 0x84, 0x06, - 0xaa, 0x3c, 0x26, 0x58, 0xa0, 0x0a, 0x96, 0xf5, 0xf4, 0xc6, 0xf0, 0xdc, 0x00, 0x89, 0x75, 0xbb, - 0xd5, 0x01, 0x09, 0xa4, 0xed, 0xc0, 0x47, 0x60, 0x01, 0x65, 0xfe, 0x54, 0x1f, 0x8b, 0xc9, 0x17, - 0xc6, 0xcd, 0x93, 0xcf, 0x7b, 0xca, 0x71, 0xff, 0x6d, 0x3a, 0x9d, 0x72, 0x51, 0xe1, 0xce, 0x42, - 0x1c, 0x93, 0xe5, 0x90, 0x14, 0x0b, 0x5d, 0x93, 0x42, 0xdf, 0x2e, 0x24, 0x71, 0xd5, 0xf8, 0xc9, - 0xf3, 0x28, 0x50, 0x3b, 0x3c, 0x06, 0xb0, 0x97, 0x2a, 0xe8, 0xd2, 0x48, 0xf9, 0xf0, 0x7a, 0x82, - 0x1b, 0x0f, 0x54, 0xe9, 0x5d, 0xc6, 0xc0, 0xaf, 0xc1, 0xb2, 0x1d, 0xdf, 0x77, 0x2b, 0x53, 0x75, - 0x14, 0xe4, 0x83, 0x6b, 0x68, 0x63, 0x3c, 0xc2, 0x0d, 0x7b, 0x04, 0x00, 0xfb, 0x40, 0xcf, 0xae, - 0xff, 0xc8, 0xbd, 0xe3, 0x7a, 0x59, 0xc6, 0xf9, 0xe8, 0xfa, 0x17, 0x6f, 0x3c, 0xdc, 0x9a, 0x53, - 0x84, 0xe3, 0x1b, 0xff, 0xcc, 0x82, 0xc5, 0x2f, 0xe3, 0x0f, 0xf3, 0xa1, 0x40, 0x02, 0xc3, 0x4f, - 0xc1, 0x4c, 0xfc, 0xad, 0x93, 0x57, 0x6c, 0x61, 0xf7, 0x76, 0x61, 0xd4, 0x03, 0x09, 0x69, 0x96, - 0xa3, 0x00, 0x1d, 0x65, 0x00, 0xbf, 0x00, 0xd5, 0x00, 0x9f, 0xa6, 0xe5, 0xb1, 0x42, 0x0f, 0x05, - 0x89, 0xf4, 0xca, 0xcd, 0xd5, 0xe1, 0xb9, 0x51, 0x79, 0x80, 0x4f, 0x93, 0x8c, 0x0f, 0x3c, 0x14, - 0xb4, 0x5b, 0x9d, 0x4a, 0x70, 0x69, 0x2b, 0x9a, 0x9b, 0x4b, 0x79, 0x17, 0x49, 0x9d, 0xeb, 0x85, - 0x4c, 0x72, 0xa6, 0x8a, 0xce, 0x22, 0xcb, 0xb6, 0x38, 0x44, 0xe0, 0x8e, 0x87, 0x78, 0x46, 0x0a, - 0x79, 0x1e, 0xb5, 0xd5, 0x70, 0x20, 0x3e, 0xd6, 0xcb, 0x32, 0xcb, 0xf5, 0x46, 0xfc, 0x56, 0x68, - 0x24, 0x6f, 0x85, 0xc6, 0x51, 0xf2, 0x56, 0x68, 0x96, 0x9f, 0xbc, 0x32, 0xb4, 0xce, 0xad, 0xc8, - 0x8b, 0x0a, 0x76, 0x3f, 0xf5, 0x11, 0xa1, 0x20, 0xcd, 0xb7, 0x2e, 0xfd, 0x2a, 0xc7, 0xad, 0x7b, - 0x47, 0x52, 0x9f, 0x30, 0x33, 0xf2, 0x0f, 0x84, 0xe2, 0xa6, 0xe5, 0x11, 0x3c, 0x9a, 0x4c, 0x61, - 0xf4, 0x09, 0xb4, 0x58, 0x2c, 0x37, 0x7d, 0x66, 0xf2, 0x64, 0x1a, 0x15, 0xe8, 0xc8, 0x64, 0x92, - 0xbe, 0x12, 0xe5, 0x76, 0x41, 0x25, 0x19, 0x22, 0x99, 0xff, 0xd9, 0x37, 0xf1, 0xbf, 0x92, 0xfa, - 0x4b, 0x62, 0x7c, 0x03, 0x56, 0x38, 0x66, 0x03, 0x62, 0xe3, 0x2c, 0xc4, 0xdc, 0x9b, 0x84, 0x58, - 0x4e, 0xdc, 0x25, 0x11, 0xbe, 0xd7, 0x40, 0x3d, 0x1d, 0x97, 0xb9, 0xe1, 0x65, 0xd9, 0xe9, 0x7c, - 0xe3, 0xfa, 0xbc, 0xec, 0xcd, 0x27, 0xc5, 0xd3, 0x68, 0xf2, 0x48, 0xce, 0x13, 0xa8, 0xd1, 0xd7, - 0xe1, 0x25, 0x9f, 0xcd, 0xa8, 0xcc, 0x96, 0x22, 0x6a, 0x09, 0x2a, 0x90, 0x67, 0xe5, 0x14, 0xdf, - 0x43, 0x0c, 0x73, 0x1d, 0x48, 0x4a, 0xf7, 0x8a, 0x35, 0x47, 0xa9, 0x77, 0x18, 0x9b, 0x1f, 0x45, - 0xd6, 0x99, 0xf2, 0xa5, 0x6d, 0x9e, 0x8e, 0x11, 0x4e, 0xc0, 0x3e, 0x78, 0x3e, 0xac, 0x69, 0x2f, - 0x86, 0x35, 0xed, 0xcf, 0x61, 0x4d, 0x7b, 0x72, 0x51, 0x2b, 0xbd, 0xb8, 0xa8, 0x95, 0xfe, 0xb8, - 0xa8, 0x95, 0x1e, 0xdf, 0x73, 0x89, 0xe8, 0xf5, 0xbb, 0x0d, 0x9b, 0xfa, 0x66, 0xc2, 0x62, 0xdb, - 0x43, 0x5d, 0x9e, 0xae, 0xcc, 0xc1, 0xae, 0x79, 0x9a, 0xbe, 0x7c, 0xc5, 0x59, 0x88, 0x79, 0x77, - 0x46, 0xea, 0xe6, 0xe3, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x99, 0xd5, 0xbc, 0x91, 0xf9, 0x0b, - 0x00, 0x00, + // 1044 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xcf, 0x6e, 0xdb, 0xc6, + 0x13, 0x16, 0x6d, 0xfd, 0xfc, 0x67, 0x6d, 0xc7, 0xd6, 0x46, 0xf6, 0x8f, 0x71, 0x02, 0x51, 0xb5, + 0x81, 0xc2, 0x0d, 0x6a, 0xb1, 0x76, 0x72, 0x68, 0x7b, 0x8b, 0xac, 0xb6, 0x16, 0x0a, 0x24, 0x86, + 0x6c, 0x20, 0x40, 0x80, 0x82, 0x5d, 0x91, 0x6b, 0x6a, 0x51, 0x92, 0x4b, 0xec, 0xae, 0x64, 0xfb, + 0x0d, 0x7a, 0x29, 0x90, 0x43, 0x1f, 0x20, 0xc7, 0xa2, 0x40, 0x81, 0x1e, 0x72, 0xe9, 0xad, 0xc7, + 0x1c, 0x83, 0xa0, 0x87, 0x9e, 0x9c, 0x42, 0x3e, 0xb4, 0x0f, 0xd0, 0x07, 0x28, 0xb8, 0x5c, 0xfe, + 0x91, 0x45, 0x47, 0x2e, 0xd2, 0x5c, 0x04, 0xed, 0xee, 0x37, 0x33, 0xdf, 0xcc, 0xec, 0x37, 0x5c, + 0xf0, 0x9e, 0x4f, 0xbc, 0x6f, 0xce, 0x4e, 0xd0, 0x99, 0xc9, 0xf0, 0x09, 0x62, 0x0e, 0x37, 0x07, + 0x3b, 0xa6, 0x8b, 0x03, 0xcc, 0x09, 0x6f, 0x84, 0x8c, 0x0a, 0x0a, 0x6f, 0x26, 0x90, 0x86, 0x82, + 0x34, 0x06, 0x3b, 0xeb, 0x15, 0xe4, 0x93, 0x80, 0x9a, 0xf2, 0x37, 0xc6, 0xad, 0xdf, 0xb2, 0x29, + 0xf7, 0x29, 0xb7, 0xe4, 0xca, 0x8c, 0x17, 0xea, 0xa8, 0x16, 0xaf, 0xcc, 0x2e, 0xe2, 0xd8, 0x1c, + 0xec, 0x74, 0xb1, 0x40, 0x3b, 0xa6, 0x4d, 0x49, 0xa0, 0xce, 0x0d, 0x97, 0x52, 0xd7, 0xc3, 0xa6, + 0x5c, 0x75, 0xfb, 0xc7, 0xa6, 0x20, 0x3e, 0xe6, 0x02, 0xf9, 0xa1, 0x02, 0x54, 0x5d, 0xea, 0xd2, + 0xd8, 0x71, 0xf4, 0x4f, 0xed, 0xd6, 0x8b, 0xc8, 0x87, 0x88, 0x21, 0x9f, 0xbf, 0x09, 0xe1, 0x53, + 0x07, 0x7b, 0x0a, 0xb1, 0xf1, 0x93, 0x06, 0x56, 0x5b, 0xd8, 0xc3, 0x2e, 0x12, 0x94, 0x3d, 0x26, + 0xa2, 0xe7, 0x30, 0x74, 0xd2, 0x0e, 0x8e, 0x29, 0xfc, 0x0c, 0x54, 0x9c, 0xe4, 0xc0, 0x42, 0x8e, + 0xc3, 0x30, 0xe7, 0xba, 0x56, 0xd7, 0xb6, 0xe6, 0x9b, 0xfa, 0xab, 0xe7, 0xdb, 0x55, 0x95, 0xe1, + 0x83, 0xf8, 0xe4, 0x50, 0x30, 0x12, 0xb8, 0x9d, 0x95, 0xd4, 0x44, 0xed, 0xc3, 0x3d, 0xb0, 0x72, + 0xa2, 0xdc, 0xa6, 0x5e, 0xa6, 0x26, 0x78, 0x59, 0x4e, 0x2c, 0xd4, 0xf6, 0xa7, 0x73, 0xdf, 0x3e, + 0x33, 0x4a, 0x7f, 0x3d, 0x33, 0x4a, 0x1b, 0xbf, 0x69, 0x40, 0x7f, 0xd4, 0x17, 0x5c, 0xa0, 0xc0, + 0x89, 0xa0, 0x71, 0x5a, 0x1d, 0x6c, 0x53, 0xe6, 0xc0, 0x7d, 0x50, 0x55, 0xf1, 0x09, 0x0d, 0x2c, + 0x81, 0x98, 0x8b, 0x85, 0x45, 0x1c, 0xc9, 0x7a, 0xa9, 0xb9, 0x36, 0x3c, 0x37, 0x60, 0x2b, 0x3d, + 0x3f, 0x92, 0xc7, 0xed, 0x56, 0x07, 0x3a, 0x97, 0xf7, 0x1c, 0xe8, 0x80, 0x9b, 0x34, 0x8b, 0x62, + 0xa9, 0xea, 0xe9, 0x53, 0xf5, 0xe9, 0xad, 0x85, 0xdd, 0x3b, 0x8d, 0x82, 0x2b, 0xd1, 0x68, 0x61, + 0xfb, 0x80, 0x52, 0xaf, 0xb9, 0xfa, 0xe2, 0xdc, 0x28, 0xfd, 0xf8, 0xda, 0x98, 0x53, 0x1b, 0xfc, + 0x87, 0x3f, 0x7f, 0xbe, 0xab, 0x75, 0x20, 0x1d, 0x63, 0x9d, 0x4b, 0xeb, 0x95, 0x06, 0xfe, 0xbf, + 0x4f, 0xb8, 0xa0, 0x8c, 0xd8, 0xc8, 0x7b, 0x57, 0x59, 0xad, 0x81, 0x99, 0x10, 0x33, 0x42, 0x1d, + 0xd9, 0x81, 0x72, 0x47, 0xad, 0xe0, 0x97, 0x60, 0x36, 0xc9, 0x70, 0xba, 0xae, 0x6d, 0x2d, 0xec, + 0xbe, 0x5f, 0x98, 0xe1, 0x18, 0xc1, 0xe6, 0x7c, 0x94, 0x6b, 0x9c, 0x5f, 0xe2, 0x21, 0x97, 0xd4, + 0x73, 0x0d, 0x54, 0xf7, 0xfa, 0x8c, 0xe1, 0x40, 0xbc, 0xab, 0x8c, 0xf6, 0x33, 0xe6, 0x53, 0x92, + 0xf9, 0x66, 0x21, 0xf3, 0x51, 0x16, 0x13, 0x68, 0x7f, 0x3f, 0x05, 0x6e, 0xa7, 0x92, 0x38, 0x14, + 0x88, 0x09, 0x12, 0xb8, 0x91, 0x24, 0x14, 0xfb, 0xff, 0x48, 0x18, 0x57, 0x15, 0x61, 0xea, 0x5f, + 0x17, 0xe1, 0x09, 0x58, 0xe2, 0x8a, 0xa6, 0x45, 0x82, 0x63, 0xaa, 0x9a, 0x78, 0xf7, 0x8a, 0x6b, + 0x5a, 0x90, 0x59, 0xbe, 0x22, 0x8b, 0x3c, 0x77, 0x90, 0x2b, 0xcb, 0x2f, 0x1a, 0xd8, 0x7c, 0x14, + 0x62, 0x26, 0x73, 0xb0, 0xed, 0xbe, 0xdf, 0xf7, 0x90, 0xc0, 0xce, 0x1e, 0xf5, 0x7d, 0xc2, 0x39, + 0xa1, 0x81, 0x2a, 0x8f, 0x09, 0x16, 0xa8, 0x82, 0x65, 0x3d, 0xbd, 0x31, 0x3c, 0x37, 0x40, 0x62, + 0xdd, 0x6e, 0x75, 0x40, 0x02, 0x69, 0x3b, 0xf0, 0x31, 0x58, 0x40, 0x99, 0x3f, 0xd5, 0xc7, 0x62, + 0xf2, 0x85, 0x71, 0xf3, 0xe4, 0xf3, 0x9e, 0x72, 0xdc, 0x7f, 0x9d, 0x4e, 0xa7, 0x5c, 0x54, 0xb8, + 0xb3, 0x10, 0xc7, 0x64, 0x39, 0x24, 0xc5, 0x42, 0xd7, 0xa4, 0xd0, 0xb7, 0x0b, 0x49, 0x5c, 0x35, + 0x7e, 0xf2, 0x3c, 0x0a, 0xd4, 0x0e, 0x8f, 0x01, 0xec, 0xa5, 0x0a, 0xba, 0x34, 0x52, 0x3e, 0xbc, + 0x9e, 0xe0, 0xc6, 0x03, 0x55, 0x7a, 0x97, 0x31, 0xf0, 0x2b, 0xb0, 0x6c, 0xc7, 0xf7, 0xdd, 0xca, + 0x54, 0x1d, 0x05, 0xf9, 0xe0, 0x1a, 0xda, 0x18, 0x8f, 0x70, 0xc3, 0x1e, 0x01, 0xc0, 0x3e, 0xd0, + 0xb3, 0xeb, 0x3f, 0x72, 0xef, 0xb8, 0x5e, 0x96, 0x71, 0x3e, 0xba, 0xfe, 0xc5, 0x1b, 0x0f, 0xb7, + 0xe6, 0x14, 0xe1, 0xf8, 0xc6, 0xdf, 0xb3, 0x60, 0xf1, 0x8b, 0xf8, 0xc3, 0x7c, 0x28, 0x90, 0xc0, + 0xf0, 0x13, 0x30, 0x13, 0x7f, 0xeb, 0xe4, 0x15, 0x5b, 0xd8, 0xbd, 0x5d, 0x18, 0xf5, 0x40, 0x42, + 0x9a, 0xe5, 0x28, 0x40, 0x47, 0x19, 0xc0, 0xcf, 0x41, 0x35, 0xc0, 0xa7, 0x69, 0x79, 0xac, 0xd0, + 0x43, 0x41, 0x22, 0xbd, 0x72, 0x73, 0x75, 0x78, 0x6e, 0x54, 0x1e, 0xe2, 0xd3, 0x24, 0xe3, 0x03, + 0x0f, 0x05, 0xed, 0x56, 0xa7, 0x12, 0x5c, 0xda, 0x8a, 0xe6, 0xe6, 0x52, 0xde, 0x45, 0x52, 0xe7, + 0x7a, 0x21, 0x93, 0x9c, 0xa9, 0xa2, 0xb3, 0xc8, 0xb2, 0x2d, 0x0e, 0x11, 0xb8, 0xe3, 0x21, 0x9e, + 0x91, 0x42, 0x9e, 0x47, 0x6d, 0x35, 0x1c, 0x88, 0x8f, 0xf5, 0xb2, 0xcc, 0x72, 0xbd, 0x11, 0xbf, + 0x15, 0x1a, 0xc9, 0x5b, 0xa1, 0x71, 0x94, 0xbc, 0x15, 0x9a, 0xe5, 0xa7, 0xaf, 0x0d, 0xad, 0x73, + 0x2b, 0xf2, 0xa2, 0x82, 0x3d, 0x48, 0x7d, 0x44, 0x28, 0x48, 0xf3, 0xad, 0x4b, 0xbf, 0xca, 0x71, + 0xeb, 0xfe, 0x27, 0xa9, 0x4f, 0x98, 0x19, 0xf9, 0x07, 0x42, 0x71, 0xd3, 0xf2, 0x08, 0x1e, 0x4d, + 0xa6, 0x30, 0xfa, 0x04, 0x5a, 0x2c, 0x96, 0x9b, 0x3e, 0x33, 0x79, 0x32, 0x8d, 0x0a, 0x74, 0x64, + 0x32, 0x49, 0x5f, 0x89, 0x72, 0xbb, 0xa0, 0x92, 0x0c, 0x91, 0xcc, 0xff, 0xec, 0xdb, 0xf8, 0x5f, + 0x49, 0xfd, 0x25, 0x31, 0xbe, 0x06, 0x2b, 0x1c, 0xb3, 0x01, 0xb1, 0x71, 0x16, 0x62, 0xee, 0x6d, + 0x42, 0x2c, 0x27, 0xee, 0x92, 0x08, 0xdf, 0x69, 0xa0, 0x9e, 0x8e, 0xcb, 0xdc, 0xf0, 0xb2, 0xec, + 0x74, 0xbe, 0x71, 0x7d, 0x5e, 0xf6, 0xe6, 0xe3, 0xe2, 0x69, 0x34, 0x79, 0x24, 0xe7, 0x09, 0xd4, + 0xe8, 0x9b, 0xf0, 0x92, 0xcf, 0x66, 0x54, 0x66, 0x4b, 0x11, 0xb5, 0x04, 0x15, 0xc8, 0xb3, 0x72, + 0x8a, 0xef, 0x21, 0x86, 0xb9, 0x0e, 0x24, 0xa5, 0xfb, 0xc5, 0x9a, 0xa3, 0xd4, 0x3b, 0x8c, 0xcd, + 0x8f, 0x22, 0xeb, 0x4c, 0xf9, 0xd2, 0x36, 0x4f, 0xc7, 0x08, 0x27, 0x60, 0x1f, 0xbe, 0x18, 0xd6, + 0xb4, 0x97, 0xc3, 0x9a, 0xf6, 0xc7, 0xb0, 0xa6, 0x3d, 0xbd, 0xa8, 0x95, 0x5e, 0x5e, 0xd4, 0x4a, + 0xbf, 0x5f, 0xd4, 0x4a, 0x4f, 0xee, 0xbb, 0x44, 0xf4, 0xfa, 0xdd, 0x86, 0x4d, 0x7d, 0x33, 0x61, + 0xb1, 0xed, 0xa1, 0x2e, 0x4f, 0x57, 0xe6, 0xe0, 0x9e, 0x79, 0x9a, 0xbe, 0x7c, 0xc5, 0x59, 0x88, + 0x79, 0x77, 0x46, 0xea, 0xe6, 0xde, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x97, 0x45, 0x37, 0x34, + 0xf9, 0x0b, 0x00, 0x00, } func (m *DelegatorWithdrawInfo) Marshal() (dAtA []byte, err error) { diff --git a/x/rewards/types/genesis_test.go b/x/rewards/types/genesis_test.go index bff4f1cc..ad758097 100644 --- a/x/rewards/types/genesis_test.go +++ b/x/rewards/types/genesis_test.go @@ -6,9 +6,9 @@ import ( "github.com/stretchr/testify/require" - "github.com/milkyway-labs/milkyway/v2/testutils" - "github.com/milkyway-labs/milkyway/v2/utils" - "github.com/milkyway-labs/milkyway/v2/x/rewards/types" + "github.com/milkyway-labs/milkyway/v3/testutils" + "github.com/milkyway-labs/milkyway/v3/utils" + "github.com/milkyway-labs/milkyway/v3/x/rewards/types" ) func TestGenesisState_Validate(t *testing.T) { diff --git a/x/rewards/types/messages.go b/x/rewards/types/messages.go index ef94631a..31797964 100644 --- a/x/rewards/types/messages.go +++ b/x/rewards/types/messages.go @@ -7,7 +7,7 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" - restakingtypes "github.com/milkyway-labs/milkyway/v2/x/restaking/types" + restakingtypes "github.com/milkyway-labs/milkyway/v3/x/restaking/types" ) // NewMsgCreateRewardsPlan creates a new MsgCreateRewardsPlan instance diff --git a/x/rewards/types/messages.pb.go b/x/rewards/types/messages.pb.go index b168cd31..bf246f95 100644 --- a/x/rewards/types/messages.pb.go +++ b/x/rewards/types/messages.pb.go @@ -15,7 +15,7 @@ import ( grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" github_com_cosmos_gogoproto_types "github.com/cosmos/gogoproto/types" - types1 "github.com/milkyway-labs/milkyway/v2/x/restaking/types" + types1 "github.com/milkyway-labs/milkyway/v3/x/restaking/types" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" @@ -596,82 +596,82 @@ func init() { } var fileDescriptor_1bde47e6c27c581f = []byte{ - // 1192 bytes of a gzipped FileDescriptorProto + // 1193 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x56, 0xcf, 0x6f, 0x1b, 0x45, - 0x14, 0xf6, 0xe6, 0x87, 0x5b, 0x4f, 0xda, 0xfc, 0xd8, 0xa6, 0x89, 0xb3, 0x6d, 0xbd, 0x66, 0xa1, - 0x25, 0x44, 0xcd, 0x6e, 0xe3, 0x42, 0x11, 0x46, 0x02, 0xd5, 0x76, 0x2b, 0x7c, 0x48, 0xa8, 0x36, + 0x14, 0xf6, 0xe6, 0x87, 0x5b, 0x4f, 0xda, 0x26, 0xd9, 0xa6, 0x89, 0xb3, 0x6d, 0xbd, 0x66, 0xa1, + 0x25, 0x44, 0xcd, 0x6e, 0xe3, 0x40, 0x11, 0x46, 0x02, 0xd5, 0x76, 0x2b, 0x7c, 0x48, 0xa8, 0x36, 0x2d, 0x48, 0x20, 0x61, 0xad, 0x3d, 0x93, 0xcd, 0x12, 0xef, 0x8e, 0xd9, 0x19, 0xc7, 0xf8, 0x86, 0xe0, 0x82, 0x10, 0x87, 0x9e, 0xb9, 0x50, 0x71, 0x42, 0x9c, 0x72, 0x80, 0x13, 0x27, 0x90, 0x40, 0x3d, 0x56, 0x9c, 0x90, 0x90, 0x5c, 0xe4, 0x1c, 0xc2, 0x9f, 0x81, 0x76, 0x76, 0x76, 0xb3, 0xb1, 0x77, 0x93, 0x18, 0x38, 0x20, 0xc1, 0x25, 0xf1, 0xcc, 0xfb, 0xde, 0x37, 0x6f, 0xde, 0x7b, 0xdf, 0xdb, 0x01, 0x8a, 0x6d, 0x35, 0x77, 0xba, 0x1d, 0xa3, 0xab, 0xb9, 0xa8, 0x63, 0xb8, 0x90, 0x68, - 0xbb, 0x6b, 0x9a, 0x8d, 0x08, 0x31, 0x4c, 0x44, 0xd4, 0x96, 0x8b, 0x29, 0x16, 0x2f, 0x04, 0x18, - 0x95, 0x63, 0xd4, 0xdd, 0x35, 0x69, 0xce, 0xb0, 0x2d, 0x07, 0x6b, 0xec, 0xaf, 0x8f, 0x93, 0x96, - 0x1a, 0x98, 0xd8, 0x98, 0xd4, 0xd8, 0x4a, 0xf3, 0x17, 0xdc, 0x94, 0xf3, 0x57, 0x5a, 0xdd, 0x20, - 0x48, 0xdb, 0x5d, 0xab, 0x23, 0x6a, 0xac, 0x69, 0x0d, 0x6c, 0x39, 0xdc, 0xbe, 0xc8, 0xed, 0x36, + 0xbb, 0xab, 0x9a, 0x8d, 0x08, 0x31, 0x4c, 0x44, 0xd4, 0x96, 0x8b, 0x29, 0x16, 0x2f, 0x06, 0x18, + 0x95, 0x63, 0xd4, 0xdd, 0x55, 0x69, 0xd6, 0xb0, 0x2d, 0x07, 0x6b, 0xec, 0xaf, 0x8f, 0x93, 0x16, + 0x1b, 0x98, 0xd8, 0x98, 0xd4, 0xd8, 0x4a, 0xf3, 0x17, 0xdc, 0x94, 0xf3, 0x57, 0x5a, 0xdd, 0x20, + 0x48, 0xdb, 0x5d, 0xad, 0x23, 0x6a, 0xac, 0x6a, 0x0d, 0x6c, 0x39, 0xdc, 0xbe, 0xc0, 0xed, 0x36, 0x31, 0x59, 0x00, 0xc4, 0xe4, 0x06, 0xd9, 0xc4, 0xd8, 0x6c, 0x22, 0x8d, 0xad, 0xea, 0xed, 0x2d, - 0x8d, 0x5a, 0x36, 0x22, 0xd4, 0xb0, 0x5b, 0x1c, 0x30, 0x6f, 0x62, 0x13, 0xfb, 0x27, 0x7a, 0xbf, + 0x8d, 0x5a, 0x36, 0x22, 0xd4, 0xb0, 0x5b, 0x1c, 0x30, 0x67, 0x62, 0x13, 0xfb, 0x27, 0x7a, 0xbf, 0xf8, 0x6e, 0xf4, 0x5a, 0x84, 0x1a, 0x3b, 0x96, 0xe3, 0xf3, 0x62, 0x88, 0x9a, 0x41, 0x4c, 0xf9, - 0xb8, 0xab, 0xb7, 0x0c, 0xd7, 0xb0, 0x8f, 0x45, 0x44, 0x39, 0x94, 0xef, 0xd3, 0x60, 0x7e, 0x9d, - 0x98, 0x65, 0x17, 0x19, 0x14, 0xe9, 0x3e, 0xe8, 0x5e, 0xd3, 0x70, 0xc4, 0x1b, 0x20, 0x4d, 0x90, - 0x03, 0x91, 0x9b, 0x15, 0xf2, 0xc2, 0x72, 0xa6, 0x94, 0xfd, 0xe5, 0xdb, 0xd5, 0x79, 0x9e, 0x92, + 0xb8, 0xab, 0xb7, 0x0c, 0xd7, 0xb0, 0x8f, 0x45, 0x44, 0x39, 0x94, 0xef, 0xd3, 0x60, 0x6e, 0x9d, + 0x98, 0x65, 0x17, 0x19, 0x14, 0xe9, 0x3e, 0xe8, 0x5e, 0xd3, 0x70, 0xc4, 0x9b, 0x20, 0x4d, 0x90, + 0x03, 0x91, 0x9b, 0x15, 0xf2, 0xc2, 0x52, 0xa6, 0x94, 0xfd, 0xe5, 0xdb, 0x95, 0x39, 0x9e, 0x92, 0xdb, 0x10, 0xba, 0x88, 0x90, 0x4d, 0xea, 0x5a, 0x8e, 0xa9, 0x73, 0x9c, 0x98, 0x07, 0x53, 0x10, - 0x91, 0x86, 0x6b, 0xb5, 0xa8, 0x85, 0x9d, 0xec, 0x98, 0xe7, 0xa6, 0x47, 0xb7, 0xc4, 0xeb, 0x00, - 0x10, 0xe4, 0xee, 0x5a, 0x0d, 0x54, 0xb3, 0x60, 0x76, 0x3c, 0x2f, 0x2c, 0x9f, 0x2f, 0x9d, 0xef, + 0x91, 0x86, 0x6b, 0xb5, 0xa8, 0x85, 0x9d, 0xec, 0x98, 0xe7, 0xa6, 0x47, 0xb7, 0xc4, 0x1b, 0x00, + 0x10, 0xe4, 0xee, 0x5a, 0x0d, 0x54, 0xb3, 0x60, 0x76, 0x3c, 0x2f, 0x2c, 0x9d, 0x2f, 0x9d, 0xef, 0xf7, 0xe4, 0xcc, 0xa6, 0xbf, 0x5b, 0xad, 0xe8, 0x19, 0x0e, 0xa8, 0x42, 0xb1, 0x01, 0xd2, 0x86, - 0x8d, 0xdb, 0x0e, 0xcd, 0x4e, 0xe4, 0xc7, 0x97, 0xa7, 0x0a, 0x4b, 0x2a, 0x3f, 0xde, 0xab, 0x81, - 0xca, 0x6b, 0xa0, 0x96, 0xb1, 0xe5, 0x94, 0x6e, 0x3c, 0xee, 0xc9, 0xa9, 0x6f, 0x9e, 0xca, 0xcb, - 0xa6, 0x45, 0xb7, 0xdb, 0x75, 0xb5, 0x81, 0x6d, 0x5e, 0x3e, 0xfe, 0x6f, 0x95, 0xc0, 0x1d, 0x8d, + 0x8d, 0xdb, 0x0e, 0xcd, 0x4e, 0xe4, 0xc7, 0x97, 0xa6, 0x0a, 0x8b, 0x2a, 0x3f, 0xde, 0xab, 0x81, + 0xca, 0x6b, 0xa0, 0x96, 0xb1, 0xe5, 0x94, 0x6e, 0x3e, 0xee, 0xc9, 0xa9, 0x6f, 0x9e, 0xca, 0x4b, + 0xa6, 0x45, 0xb7, 0xdb, 0x75, 0xb5, 0x81, 0x6d, 0x5e, 0x3e, 0xfe, 0x6f, 0x85, 0xc0, 0x1d, 0x8d, 0x76, 0x5b, 0x88, 0x30, 0x07, 0xa2, 0x73, 0x6a, 0xb1, 0x0c, 0x00, 0xa1, 0x86, 0x4b, 0x6b, 0x5e, - 0x59, 0xb2, 0x93, 0x79, 0x61, 0x79, 0xaa, 0x20, 0xa9, 0x7e, 0xcd, 0xd4, 0xa0, 0x66, 0xea, 0xfd, + 0x59, 0xb2, 0x93, 0x79, 0x61, 0x69, 0xaa, 0x20, 0xa9, 0x7e, 0xcd, 0xd4, 0xa0, 0x66, 0xea, 0xfd, 0xa0, 0x66, 0xa5, 0xb3, 0xde, 0x49, 0x0f, 0x9f, 0xca, 0x82, 0x9e, 0x61, 0x7e, 0x9e, 0x45, 0x7c, 0x1d, 0x9c, 0x45, 0x0e, 0xf4, 0x29, 0xd2, 0x23, 0x50, 0x9c, 0x41, 0x0e, 0x64, 0x04, 0x6f, 0x01, 0xb1, 0x85, 0x71, 0x93, 0xd4, 0xa0, 0x45, 0xa8, 0x6b, 0xd5, 0xdb, 0x2c, 0x83, 0x67, 0x18, 0xd5, - 0x33, 0x6a, 0x4c, 0xf7, 0xaa, 0x95, 0x08, 0xb0, 0x34, 0xe1, 0x31, 0xea, 0x73, 0x8c, 0x22, 0x6a, - 0x10, 0xdf, 0x03, 0x0b, 0xb8, 0x85, 0x5c, 0x83, 0x62, 0x77, 0x80, 0xfb, 0xec, 0x68, 0xdc, 0x17, - 0x43, 0x9a, 0x23, 0xfc, 0xef, 0x02, 0xb1, 0x4d, 0xd0, 0x20, 0x77, 0x86, 0x71, 0x5f, 0x8b, 0xe5, + 0x33, 0x6a, 0x4c, 0xf7, 0xaa, 0x95, 0x08, 0xb0, 0x34, 0xe1, 0x31, 0xea, 0xb3, 0x8c, 0x22, 0x6a, + 0x10, 0xdf, 0x03, 0xf3, 0xb8, 0x85, 0x5c, 0x83, 0x62, 0x77, 0x80, 0xfb, 0xec, 0x68, 0xdc, 0x97, + 0x42, 0x9a, 0x23, 0xfc, 0xef, 0x02, 0xb1, 0x4d, 0xd0, 0x20, 0x77, 0x86, 0x71, 0x5f, 0x8f, 0xe5, 0x7e, 0xe0, 0xc1, 0xe3, 0x82, 0x6f, 0x0f, 0x1a, 0xc4, 0xf7, 0x01, 0xd8, 0x42, 0xa8, 0xc6, 0x7b, 0x00, 0xfc, 0xf3, 0x3d, 0x90, 0xd9, 0x42, 0xe8, 0x36, 0x63, 0x2f, 0xbe, 0xf4, 0xe9, 0x23, 0x39, - 0xf5, 0xc7, 0x23, 0x39, 0xf5, 0xf1, 0xc1, 0xde, 0x0a, 0x6f, 0xe8, 0xcf, 0x0e, 0xf6, 0x56, 0xae, - 0x84, 0x02, 0x8a, 0x13, 0x89, 0xd2, 0x00, 0x97, 0xe3, 0xf6, 0x75, 0x44, 0x5a, 0xd8, 0x21, 0x48, - 0x2c, 0x83, 0x0b, 0x0e, 0xea, 0xd4, 0xf8, 0xfd, 0x6b, 0xad, 0xa6, 0xe1, 0x78, 0x9d, 0xef, 0x29, - 0x6a, 0xa2, 0x34, 0xdf, 0xef, 0xc9, 0xb3, 0x1b, 0xa8, 0x13, 0x71, 0xac, 0x56, 0xf4, 0x59, 0xe7, - 0xe8, 0x0e, 0x54, 0xbe, 0x9b, 0x04, 0xe2, 0x3a, 0x31, 0xef, 0x40, 0x8b, 0xfe, 0x3d, 0x81, 0x2e, - 0x80, 0x31, 0x0b, 0x32, 0x5d, 0x4e, 0x94, 0xd2, 0xfd, 0x9e, 0x3c, 0x56, 0xad, 0xe8, 0x63, 0x16, - 0x1c, 0x14, 0xee, 0xf8, 0xb0, 0x70, 0xff, 0x97, 0xe2, 0x7f, 0x5a, 0x8a, 0xc5, 0x9b, 0x09, 0xf2, - 0xb8, 0x14, 0x95, 0xc7, 0x40, 0x83, 0x2a, 0x97, 0x81, 0x34, 0xbc, 0x1b, 0x48, 0x43, 0xf9, 0x59, - 0x00, 0x17, 0xd7, 0x89, 0xb9, 0x89, 0xe8, 0xdb, 0x16, 0xdd, 0x86, 0xae, 0xd1, 0xe1, 0x4d, 0xfb, - 0x17, 0x1a, 0xbb, 0x0c, 0x66, 0x3b, 0x9c, 0xa4, 0x66, 0xf8, 0x08, 0xff, 0xf3, 0x73, 0x8c, 0xef, - 0x4c, 0xe7, 0xe8, 0xb1, 0xc5, 0x5b, 0x09, 0x77, 0xcc, 0x45, 0xef, 0x38, 0x1c, 0xae, 0x22, 0x83, - 0x2b, 0xb1, 0x86, 0xf0, 0xa6, 0x3f, 0x8d, 0xb1, 0x44, 0x04, 0xe6, 0x0a, 0x6a, 0x22, 0xd3, 0xab, - 0x9f, 0x9f, 0x15, 0xf1, 0x0e, 0x98, 0x83, 0xc1, 0x56, 0x18, 0xfd, 0x49, 0x37, 0x9f, 0x0d, 0x5d, - 0x82, 0xac, 0x6d, 0x80, 0x19, 0xbe, 0x67, 0x61, 0xa7, 0xe6, 0xe9, 0x8b, 0xa5, 0x60, 0xba, 0x70, - 0x35, 0x5a, 0x7c, 0xfe, 0x94, 0x60, 0xad, 0x15, 0xa2, 0xef, 0x77, 0x5b, 0x48, 0x9f, 0x86, 0x47, - 0xd6, 0xe2, 0x1b, 0x60, 0x3e, 0xca, 0x67, 0xb8, 0x26, 0xa2, 0x87, 0x5f, 0xed, 0x85, 0x7e, 0x4f, - 0x16, 0x23, 0x0c, 0xcc, 0x5c, 0xad, 0xe8, 0x22, 0x1c, 0xdc, 0x83, 0xc5, 0xbb, 0xd1, 0xc4, 0x0e, - 0xdf, 0xd5, 0xcb, 0xf1, 0xb3, 0xd1, 0x1c, 0x27, 0x24, 0x4a, 0xf9, 0x52, 0x00, 0x4a, 0xb2, 0x39, - 0x9c, 0xb9, 0xdd, 0x70, 0x56, 0x09, 0x27, 0xcd, 0xaa, 0xbb, 0xa3, 0xce, 0xaa, 0x2f, 0x0e, 0xf6, - 0x56, 0xce, 0x79, 0xc7, 0x36, 0xba, 0x35, 0xef, 0xf1, 0x47, 0xbe, 0x3e, 0xd8, 0x5b, 0x11, 0x82, - 0x09, 0xa6, 0xfc, 0x28, 0xb0, 0x5e, 0x08, 0x22, 0x7c, 0x93, 0x0b, 0xb5, 0x8c, 0x6d, 0xdb, 0x22, - 0xc4, 0x53, 0xe9, 0xe8, 0xbd, 0xad, 0x81, 0xa9, 0x40, 0xf0, 0x35, 0x3e, 0xbd, 0xcf, 0x97, 0xa6, - 0xfb, 0x3d, 0x19, 0x04, 0xf4, 0xd5, 0x8a, 0x0e, 0x02, 0x48, 0x15, 0x16, 0x5f, 0x4b, 0xe8, 0xe3, - 0x6b, 0x71, 0x39, 0x1e, 0x0e, 0x51, 0xf9, 0x4a, 0x00, 0x57, 0x8f, 0x45, 0xfc, 0x1b, 0x32, 0xfd, - 0x83, 0x00, 0x66, 0xd6, 0x89, 0xf9, 0xa0, 0x05, 0x0d, 0x8a, 0xee, 0xb1, 0x27, 0xaf, 0x78, 0x0b, - 0x64, 0x8c, 0x36, 0xdd, 0xc6, 0xae, 0x45, 0xbb, 0x27, 0xa6, 0xf7, 0x10, 0x2a, 0xbe, 0x02, 0xd2, - 0xfe, 0xa3, 0x99, 0x25, 0x77, 0xaa, 0x70, 0x29, 0x76, 0x5a, 0xfa, 0x87, 0xf0, 0x11, 0xc9, 0x1d, - 0x8a, 0xaf, 0x46, 0x73, 0x7d, 0x48, 0xe9, 0xa5, 0x7b, 0xf8, 0xe9, 0x3d, 0x10, 0xaf, 0xb2, 0x04, - 0x16, 0x07, 0xb6, 0x82, 0xcc, 0x16, 0x7e, 0x9b, 0x04, 0xe3, 0xeb, 0xc4, 0x14, 0x3f, 0x00, 0x73, - 0xc3, 0x2f, 0xf3, 0x17, 0x62, 0xe3, 0x8b, 0x7b, 0x87, 0x48, 0x6b, 0xa7, 0x86, 0x86, 0x45, 0xdd, - 0x01, 0x33, 0x83, 0x2f, 0x8d, 0xe7, 0x93, 0x58, 0x06, 0x80, 0x92, 0x76, 0x4a, 0x60, 0x78, 0x18, - 0x05, 0x62, 0xcc, 0x07, 0x60, 0x25, 0x89, 0x66, 0x18, 0x2b, 0x15, 0x4e, 0x8f, 0x0d, 0x4f, 0xfd, - 0x44, 0x00, 0x8b, 0x49, 0xd3, 0x38, 0xf1, 0x0a, 0x09, 0x0e, 0xd2, 0xcb, 0x23, 0x3a, 0x84, 0x51, - 0x7c, 0x2e, 0x00, 0xe9, 0x98, 0x49, 0x51, 0x38, 0x89, 0x77, 0xd8, 0x47, 0x2a, 0x8e, 0xee, 0x13, - 0x86, 0x53, 0x07, 0xe7, 0x8e, 0xa8, 0xe9, 0xb9, 0x24, 0xae, 0x28, 0x4a, 0xba, 0x7e, 0x1a, 0x54, - 0x70, 0x86, 0x34, 0xf9, 0x91, 0x27, 0xe2, 0xd2, 0xc6, 0xe3, 0x7e, 0x4e, 0x78, 0xd2, 0xcf, 0x09, - 0xbf, 0xf7, 0x73, 0xc2, 0xc3, 0xfd, 0x5c, 0xea, 0xc9, 0x7e, 0x2e, 0xf5, 0xeb, 0x7e, 0x2e, 0xf5, - 0xce, 0x8b, 0x91, 0xf1, 0x10, 0x10, 0xaf, 0x36, 0x8d, 0x3a, 0x09, 0x57, 0xda, 0x6e, 0x41, 0xfb, - 0x30, 0x94, 0x14, 0x1b, 0x18, 0xf5, 0x34, 0x7b, 0xd9, 0xdd, 0xfc, 0x33, 0x00, 0x00, 0xff, 0xff, - 0x96, 0x5b, 0xf5, 0xfe, 0x0b, 0x10, 0x00, 0x00, + 0xf5, 0xc7, 0x23, 0x39, 0xf5, 0xf1, 0xc1, 0xde, 0x32, 0x6f, 0xe8, 0xcf, 0x0e, 0xf6, 0x96, 0xaf, + 0x86, 0x02, 0x8a, 0x13, 0x89, 0xd2, 0x00, 0x57, 0xe2, 0xf6, 0x75, 0x44, 0x5a, 0xd8, 0x21, 0x48, + 0x2c, 0x83, 0x8b, 0x0e, 0xea, 0xd4, 0xf8, 0xfd, 0x6b, 0xad, 0xa6, 0xe1, 0x78, 0x9d, 0xef, 0x29, + 0x6a, 0xa2, 0x34, 0xd7, 0xef, 0xc9, 0x33, 0x1b, 0xa8, 0x13, 0x71, 0xac, 0x56, 0xf4, 0x19, 0xe7, + 0xe8, 0x0e, 0x54, 0xbe, 0x9b, 0x04, 0xe2, 0x3a, 0x31, 0xef, 0x40, 0x8b, 0xfe, 0x3d, 0x81, 0xce, + 0x83, 0x31, 0x0b, 0x32, 0x5d, 0x4e, 0x94, 0xd2, 0xfd, 0x9e, 0x3c, 0x56, 0xad, 0xe8, 0x63, 0x16, + 0x1c, 0x14, 0xee, 0xf8, 0xb0, 0x70, 0xff, 0x97, 0xe2, 0x7f, 0x5a, 0x8a, 0xc5, 0xb5, 0x04, 0x79, + 0x5c, 0x8e, 0xca, 0x63, 0xa0, 0x41, 0x95, 0x2b, 0x40, 0x1a, 0xde, 0x0d, 0xa4, 0xa1, 0xfc, 0x2c, + 0x80, 0x4b, 0xeb, 0xc4, 0xdc, 0x44, 0xf4, 0x6d, 0x8b, 0x6e, 0x43, 0xd7, 0xe8, 0xf0, 0xa6, 0xfd, + 0x0b, 0x8d, 0x5d, 0x06, 0x33, 0x1d, 0x4e, 0x52, 0x33, 0x7c, 0x84, 0xff, 0xf9, 0x39, 0xc6, 0x77, + 0xba, 0x73, 0xf4, 0xd8, 0xe2, 0xad, 0x84, 0x3b, 0xe6, 0xa2, 0x77, 0x1c, 0x0e, 0x57, 0x91, 0xc1, + 0xd5, 0x58, 0x43, 0x78, 0xd3, 0x9f, 0xc6, 0x58, 0x22, 0x02, 0x73, 0x05, 0x35, 0x91, 0xe9, 0xd5, + 0xcf, 0xcf, 0x8a, 0x78, 0x07, 0xcc, 0xc2, 0x60, 0x2b, 0x8c, 0xfe, 0xa4, 0x9b, 0xcf, 0x84, 0x2e, + 0x41, 0xd6, 0x36, 0xc0, 0x34, 0xdf, 0xb3, 0xb0, 0x53, 0xf3, 0xf4, 0xc5, 0x52, 0x70, 0xa1, 0x70, + 0x2d, 0x5a, 0x7c, 0xfe, 0x94, 0x60, 0xad, 0x15, 0xa2, 0xef, 0x77, 0x5b, 0x48, 0xbf, 0x00, 0x8f, + 0xac, 0xc5, 0x37, 0xc0, 0x5c, 0x94, 0xcf, 0x70, 0x4d, 0x44, 0x0f, 0xbf, 0xda, 0xf3, 0xfd, 0x9e, + 0x2c, 0x46, 0x18, 0x98, 0xb9, 0x5a, 0xd1, 0x45, 0x38, 0xb8, 0x07, 0x8b, 0x77, 0xa3, 0x89, 0x1d, + 0xbe, 0xab, 0x97, 0xe3, 0x67, 0xa3, 0x39, 0x4e, 0x48, 0x94, 0xf2, 0xa5, 0x00, 0x94, 0x64, 0x73, + 0x38, 0x73, 0xbb, 0xe1, 0xac, 0x12, 0x4e, 0x9a, 0x55, 0x77, 0x47, 0x9d, 0x55, 0x5f, 0x1c, 0xec, + 0x2d, 0x9f, 0xf3, 0x8e, 0x6d, 0x74, 0x6b, 0xde, 0xe3, 0x8f, 0x7c, 0x7d, 0xb0, 0xb7, 0x2c, 0x04, + 0x13, 0x4c, 0xf9, 0x51, 0x60, 0xbd, 0x10, 0x44, 0xf8, 0x26, 0x17, 0x6a, 0x19, 0xdb, 0xb6, 0x45, + 0x88, 0xa7, 0xd2, 0xd1, 0x7b, 0x5b, 0x03, 0x53, 0x81, 0xe0, 0x6b, 0x7c, 0x7a, 0x9f, 0x2f, 0x5d, + 0xe8, 0xf7, 0x64, 0x10, 0xd0, 0x57, 0x2b, 0x3a, 0x08, 0x20, 0x55, 0x58, 0x7c, 0x2d, 0xa1, 0x8f, + 0xaf, 0xc7, 0xe5, 0x78, 0x38, 0x44, 0xe5, 0x2b, 0x01, 0x5c, 0x3b, 0x16, 0xf1, 0x6f, 0xc8, 0xf4, + 0x0f, 0x02, 0x98, 0x5e, 0x27, 0xe6, 0x83, 0x16, 0x34, 0x28, 0xba, 0xc7, 0x9e, 0xbc, 0xe2, 0x2d, + 0x90, 0x31, 0xda, 0x74, 0x1b, 0xbb, 0x16, 0xed, 0x9e, 0x98, 0xde, 0x43, 0xa8, 0xf8, 0x0a, 0x48, + 0xfb, 0x8f, 0x66, 0x96, 0xdc, 0xa9, 0xc2, 0xe5, 0xd8, 0x69, 0xe9, 0x1f, 0xc2, 0x47, 0x24, 0x77, + 0x28, 0xbe, 0x1a, 0xcd, 0xf5, 0x21, 0xa5, 0x97, 0xee, 0xe1, 0xa7, 0xf7, 0x40, 0xbc, 0xca, 0x22, + 0x58, 0x18, 0xd8, 0x0a, 0x32, 0x5b, 0xf8, 0x6d, 0x12, 0x8c, 0xaf, 0x13, 0x53, 0xfc, 0x00, 0xcc, + 0x0e, 0xbf, 0xcc, 0x5f, 0x88, 0x8d, 0x2f, 0xee, 0x1d, 0x22, 0xad, 0x9e, 0x1a, 0x1a, 0x16, 0x75, + 0x07, 0x4c, 0x0f, 0xbe, 0x34, 0x9e, 0x4f, 0x62, 0x19, 0x00, 0x4a, 0xda, 0x29, 0x81, 0xe1, 0x61, + 0x14, 0x88, 0x31, 0x1f, 0x80, 0xe5, 0x24, 0x9a, 0x61, 0xac, 0x54, 0x38, 0x3d, 0x36, 0x3c, 0xf5, + 0x13, 0x01, 0x2c, 0x24, 0x4d, 0xe3, 0xc4, 0x2b, 0x24, 0x38, 0x48, 0x2f, 0x8f, 0xe8, 0x10, 0x46, + 0xf1, 0xb9, 0x00, 0xa4, 0x63, 0x26, 0x45, 0xe1, 0x24, 0xde, 0x61, 0x1f, 0xa9, 0x38, 0xba, 0x4f, + 0x18, 0x4e, 0x1d, 0x9c, 0x3b, 0xa2, 0xa6, 0xe7, 0x92, 0xb8, 0xa2, 0x28, 0xe9, 0xc6, 0x69, 0x50, + 0xc1, 0x19, 0xd2, 0xe4, 0x47, 0x9e, 0x88, 0x4b, 0x1b, 0x8f, 0xfb, 0x39, 0xe1, 0x49, 0x3f, 0x27, + 0xfc, 0xde, 0xcf, 0x09, 0x0f, 0xf7, 0x73, 0xa9, 0x27, 0xfb, 0xb9, 0xd4, 0xaf, 0xfb, 0xb9, 0xd4, + 0x3b, 0x2f, 0x46, 0xc6, 0x43, 0x40, 0xbc, 0xd2, 0x34, 0xea, 0x24, 0x5c, 0x69, 0xbb, 0x6b, 0xda, + 0x87, 0xa1, 0xa4, 0xd8, 0xc0, 0xa8, 0xa7, 0xd9, 0xcb, 0x6e, 0xed, 0xcf, 0x00, 0x00, 0x00, 0xff, + 0xff, 0x98, 0xcb, 0x7e, 0x5b, 0x0b, 0x10, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/rewards/types/messages_test.go b/x/rewards/types/messages_test.go index 16623b1e..76f1746d 100644 --- a/x/rewards/types/messages_test.go +++ b/x/rewards/types/messages_test.go @@ -8,8 +8,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - restakingtypes "github.com/milkyway-labs/milkyway/v2/x/restaking/types" - "github.com/milkyway-labs/milkyway/v2/x/rewards/types" + restakingtypes "github.com/milkyway-labs/milkyway/v3/x/restaking/types" + "github.com/milkyway-labs/milkyway/v3/x/rewards/types" ) var msgCreateRewardsPlan = types.NewMsgCreateRewardsPlan( diff --git a/x/rewards/types/models.go b/x/rewards/types/models.go index a6850586..cfb43cfd 100644 --- a/x/rewards/types/models.go +++ b/x/rewards/types/models.go @@ -11,8 +11,8 @@ import ( "github.com/cosmos/cosmos-sdk/types/address" "github.com/cosmos/gogoproto/proto" - "github.com/milkyway-labs/milkyway/v2/utils" - restakingtypes "github.com/milkyway-labs/milkyway/v2/x/restaking/types" + "github.com/milkyway-labs/milkyway/v3/utils" + restakingtypes "github.com/milkyway-labs/milkyway/v3/x/restaking/types" ) // MaxRewardsPlanDescriptionLength is the maximum length of a rewards plan description. diff --git a/x/rewards/types/models.pb.go b/x/rewards/types/models.pb.go index db78426a..0dec4aca 100644 --- a/x/rewards/types/models.pb.go +++ b/x/rewards/types/models.pb.go @@ -13,7 +13,7 @@ import ( _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" github_com_cosmos_gogoproto_types "github.com/cosmos/gogoproto/types" - types1 "github.com/milkyway-labs/milkyway/v2/x/restaking/types" + types1 "github.com/milkyway-labs/milkyway/v3/x/restaking/types" _ "google.golang.org/protobuf/types/known/timestamppb" io "io" math "math" @@ -826,92 +826,92 @@ func init() { func init() { proto.RegisterFile("milkyway/rewards/v1/models.proto", fileDescriptor_fcf66d1f3415f5b6) } var fileDescriptor_fcf66d1f3415f5b6 = []byte{ - // 1358 bytes of a gzipped FileDescriptorProto + // 1359 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0xcd, 0x6f, 0x1b, 0x45, 0x14, 0xcf, 0x3a, 0x8e, 0x13, 0x8f, 0x13, 0xb7, 0x59, 0x92, 0xc8, 0x0d, 0xc8, 0x6b, 0x16, 0x28, - 0xe6, 0xc3, 0x36, 0x49, 0x91, 0x90, 0xca, 0x01, 0xe2, 0xb8, 0x6a, 0xad, 0x4a, 0x10, 0x6d, 0x5b, + 0xe6, 0xc3, 0x36, 0x69, 0x91, 0x90, 0xca, 0x01, 0xe2, 0xb8, 0x6a, 0xad, 0x4a, 0x10, 0x6d, 0x5b, 0x2a, 0x15, 0x89, 0xd5, 0x78, 0x67, 0xea, 0x8c, 0xea, 0xdd, 0x71, 0x67, 0xd6, 0x2e, 0xe6, 0xd8, 0x13, 0x42, 0x20, 0x55, 0xe2, 0x0f, 0x00, 0x6e, 0xa8, 0x27, 0x0e, 0x15, 0x7f, 0x02, 0xaa, 0x7a, - 0xaa, 0x38, 0x71, 0x72, 0xc0, 0x3d, 0x80, 0x38, 0x70, 0xe8, 0x5f, 0x80, 0xe6, 0x63, 0x9d, 0xcd, + 0xaa, 0x38, 0x71, 0x72, 0xc0, 0x3d, 0x80, 0x38, 0x70, 0xc8, 0x5f, 0x80, 0xe6, 0x63, 0x9d, 0xcd, 0xc6, 0xf9, 0x30, 0xe2, 0x92, 0xec, 0xcc, 0x7b, 0xef, 0xf7, 0x3e, 0xe6, 0x37, 0x6f, 0x9e, 0x41, - 0xc9, 0x27, 0x9d, 0x3b, 0x83, 0x7b, 0x70, 0x50, 0x63, 0xf8, 0x1e, 0x64, 0x88, 0xd7, 0xfa, 0x1b, + 0xc9, 0x27, 0x9d, 0xbb, 0x83, 0xfb, 0x70, 0x50, 0x63, 0xf8, 0x3e, 0x64, 0x88, 0xd7, 0xfa, 0x1b, 0x35, 0x9f, 0x22, 0xdc, 0xe1, 0xd5, 0x2e, 0xa3, 0x21, 0x35, 0x5f, 0x88, 0x34, 0xaa, 0x5a, 0xa3, 0xda, 0xdf, 0x58, 0x5f, 0x86, 0x3e, 0x09, 0x68, 0x4d, 0xfe, 0x55, 0x7a, 0xeb, 0xe7, 0x3c, 0xca, 0x7d, 0xca, 0x5d, 0xb9, 0xaa, 0xa9, 0x85, 0x16, 0x15, 0xd5, 0xaa, 0xd6, 0x82, 0x1c, 0xd7, 0xfa, 0x1b, 0x2d, 0x1c, 0xc2, 0x8d, 0x9a, 0x47, 0x49, 0xa0, 0xe5, 0x56, 0x9b, 0xd2, 0x76, 0x07, 0xd7, - 0xe4, 0xaa, 0xd5, 0xbb, 0x5d, 0x0b, 0x89, 0x8f, 0x79, 0x08, 0xfd, 0x6e, 0x84, 0x9d, 0x54, 0x80, + 0xe4, 0xaa, 0xd5, 0xbb, 0x53, 0x0b, 0x89, 0x8f, 0x79, 0x08, 0xfd, 0x6e, 0x84, 0x9d, 0x54, 0x80, 0xc1, 0x40, 0x8b, 0x56, 0xda, 0xb4, 0x4d, 0x95, 0x4f, 0xf1, 0xa5, 0x77, 0xed, 0x58, 0x5a, 0x3c, - 0x84, 0x77, 0x48, 0xd0, 0x4e, 0x26, 0x66, 0xff, 0x32, 0x07, 0x72, 0x8e, 0x4a, 0x69, 0xa7, 0x03, + 0x84, 0x77, 0x49, 0xd0, 0x4e, 0x26, 0x66, 0xff, 0x32, 0x07, 0x72, 0x8e, 0x4a, 0x69, 0xbb, 0x03, 0x03, 0x73, 0x0d, 0xa4, 0x08, 0x2a, 0x18, 0x25, 0xa3, 0x9c, 0xae, 0x67, 0x46, 0x43, 0x2b, 0xd5, 0x6c, 0x38, 0x29, 0x82, 0xcc, 0x12, 0xc8, 0x21, 0xcc, 0x3d, 0x46, 0xba, 0x21, 0xa1, 0x41, 0x21, 0x55, 0x32, 0xca, 0x59, 0x27, 0xbe, 0x65, 0xbe, 0x0d, 0x00, 0xc7, 0xac, 0x4f, 0x3c, 0xec, 0x12, - 0x54, 0x98, 0x2d, 0x19, 0xe5, 0xa5, 0xfa, 0xd2, 0x68, 0x68, 0x65, 0xaf, 0xa9, 0xdd, 0x66, 0xc3, - 0xc9, 0x6a, 0x85, 0x26, 0x32, 0xef, 0x82, 0x3c, 0xf4, 0x69, 0x2f, 0x08, 0xdd, 0x2e, 0x66, 0x2e, - 0x82, 0x83, 0x42, 0xba, 0x34, 0x5b, 0xce, 0x6d, 0x9e, 0xab, 0xea, 0xa2, 0x89, 0x32, 0x55, 0x75, - 0x99, 0xaa, 0xdb, 0x94, 0x04, 0xf5, 0x77, 0x1e, 0x0f, 0xad, 0x99, 0x87, 0x7b, 0x56, 0xb9, 0x4d, - 0xc2, 0xdd, 0x5e, 0xab, 0xea, 0x51, 0x5f, 0x57, 0x58, 0xff, 0xab, 0x70, 0x74, 0xa7, 0x16, 0x0e, - 0xba, 0x98, 0x4b, 0x03, 0xee, 0x2c, 0x2a, 0x17, 0x3b, 0x98, 0x35, 0xe0, 0xc0, 0xdc, 0x06, 0x80, - 0x87, 0x90, 0x85, 0xae, 0x28, 0x6c, 0x61, 0xae, 0x64, 0x94, 0x73, 0x9b, 0xeb, 0x55, 0x55, 0xd4, - 0x6a, 0x54, 0xd4, 0xea, 0xf5, 0xa8, 0xea, 0xf5, 0x05, 0xe1, 0xef, 0xc1, 0x9e, 0x65, 0x38, 0x59, - 0x69, 0x27, 0x24, 0xe6, 0x07, 0x60, 0x01, 0x07, 0x48, 0x41, 0x64, 0xa6, 0x80, 0x98, 0xc7, 0x01, - 0x92, 0x00, 0xef, 0x83, 0x45, 0x4d, 0x21, 0xb7, 0x4b, 0x69, 0xa7, 0x30, 0x2f, 0x2a, 0x59, 0x2f, - 0xfc, 0xfa, 0xa8, 0xb2, 0xa2, 0x33, 0xdf, 0x42, 0x88, 0x61, 0xce, 0xaf, 0x85, 0x8c, 0x04, 0x6d, - 0x27, 0xa7, 0xb5, 0x77, 0x28, 0xed, 0x98, 0x9f, 0x00, 0x53, 0x18, 0x71, 0x17, 0x11, 0x1e, 0x32, - 0xd2, 0xea, 0xc9, 0xc3, 0x58, 0x90, 0x71, 0xbc, 0x5c, 0x9d, 0xc0, 0xd1, 0x6a, 0x23, 0xa6, 0x58, - 0x4f, 0x8b, 0x70, 0x9c, 0x65, 0x09, 0x11, 0x17, 0x98, 0x9f, 0x81, 0x35, 0xda, 0xc5, 0x0c, 0x86, - 0x94, 0x25, 0xb0, 0xb3, 0xd3, 0x61, 0xaf, 0x8e, 0x61, 0x0e, 0xe0, 0x7f, 0x0a, 0xcc, 0x1e, 0xc7, - 0x49, 0x6c, 0x20, 0xb1, 0xcf, 0x4f, 0xc4, 0xbe, 0x21, 0xd4, 0x27, 0x05, 0xdf, 0x4b, 0x0a, 0x2e, - 0xa6, 0xff, 0xfa, 0xde, 0x32, 0xec, 0xa7, 0x06, 0x58, 0x3c, 0xe0, 0xf3, 0x23, 0x70, 0x06, 0xe1, - 0x0e, 0x6e, 0x43, 0xb1, 0x72, 0x05, 0x2d, 0x24, 0xad, 0xf3, 0x9b, 0xaf, 0xc5, 0x1d, 0xea, 0x7b, - 0x21, 0xd3, 0x19, 0x6b, 0x5f, 0x1f, 0x74, 0xb1, 0x93, 0x47, 0x07, 0xd6, 0xe6, 0x1a, 0xc8, 0xdc, - 0xc3, 0xa4, 0xbd, 0x1b, 0x4a, 0xf2, 0x2f, 0x39, 0x7a, 0x65, 0x3a, 0x20, 0x2d, 0xc1, 0x67, 0x65, - 0x36, 0x2b, 0x87, 0xd8, 0xb0, 0x15, 0x0c, 0xea, 0xe5, 0x27, 0x8f, 0x2a, 0xaf, 0x9e, 0x54, 0x42, - 0xe9, 0x55, 0x62, 0xe9, 0x94, 0xb6, 0xc0, 0x6a, 0x52, 0x5e, 0x87, 0x9c, 0x78, 0x17, 0x4f, 0x0d, - 0x67, 0x7f, 0x63, 0x80, 0x42, 0x72, 0xf3, 0xa6, 0x8c, 0x1b, 0x23, 0xf3, 0x32, 0x98, 0x57, 0x39, - 0xf0, 0x82, 0x21, 0x2f, 0xdf, 0xeb, 0x27, 0x1e, 0xb3, 0xb2, 0xd5, 0x67, 0x11, 0x59, 0x4f, 0x11, - 0x4f, 0x1f, 0x98, 0x87, 0xe1, 0xcc, 0x2b, 0x60, 0x25, 0x7e, 0x54, 0x90, 0xb5, 0x71, 0xe8, 0xea, - 0x36, 0xb4, 0x54, 0x5f, 0x1b, 0x0d, 0x2d, 0x33, 0x76, 0x38, 0x52, 0xdc, 0x6c, 0x38, 0x26, 0x4a, - 0xee, 0xa1, 0xa3, 0x0e, 0xc9, 0xbe, 0x0c, 0x5e, 0x4c, 0xc6, 0x72, 0xa9, 0x0d, 0x3b, 0x24, 0x84, - 0x8c, 0xc0, 0x60, 0x8a, 0x04, 0xbe, 0x32, 0xc0, 0xf2, 0x21, 0x6e, 0xc6, 0xdc, 0x1a, 0x07, 0xb8, - 0x71, 0x53, 0x73, 0x23, 0x75, 0x0c, 0x37, 0x2a, 0x4f, 0x1e, 0x55, 0xde, 0x38, 0xd5, 0x15, 0x38, - 0x44, 0x90, 0xab, 0x60, 0x7d, 0xa2, 0x92, 0x62, 0xc9, 0x74, 0xc0, 0xf6, 0x3f, 0x06, 0x58, 0xbe, - 0x42, 0x78, 0x48, 0x19, 0xf1, 0x60, 0x47, 0xbf, 0x09, 0xe6, 0xb7, 0x06, 0x28, 0x78, 0x3d, 0xbf, - 0xd7, 0x81, 0x21, 0xe9, 0x63, 0x57, 0xa1, 0xb8, 0x4c, 0x54, 0x3d, 0x62, 0x4d, 0x69, 0x22, 0x6b, - 0x74, 0xd7, 0x17, 0x6d, 0xab, 0xfe, 0x9e, 0xa0, 0xcb, 0xf3, 0xa1, 0x65, 0x0d, 0xa0, 0xdf, 0xb9, - 0x68, 0x1f, 0x85, 0x67, 0x3f, 0xdc, 0xb3, 0x16, 0x63, 0x76, 0xdc, 0x59, 0xdb, 0x57, 0x55, 0x01, - 0x39, 0x52, 0xd1, 0xdc, 0x06, 0x67, 0x18, 0xbe, 0x8d, 0x19, 0x0e, 0x3c, 0xec, 0x7a, 0xa2, 0xc7, - 0xab, 0xf3, 0xae, 0xaf, 0x3f, 0x1f, 0x5a, 0x6b, 0xca, 0x4b, 0x42, 0xc1, 0x76, 0xf2, 0xe3, 0x9d, - 0x6d, 0xb9, 0xf1, 0xb5, 0x01, 0xf2, 0xdb, 0x3d, 0xc6, 0x70, 0x10, 0x46, 0xd9, 0xb6, 0xc0, 0xbc, - 0x4e, 0xe1, 0xd4, 0xb9, 0x9d, 0xd7, 0xb9, 0xe5, 0x23, 0xaf, 0x52, 0xeb, 0x70, 0x2a, 0x11, 0xb0, - 0xe0, 0x4a, 0x17, 0x33, 0x42, 0x91, 0x0c, 0x39, 0xed, 0xe8, 0x95, 0xdd, 0x05, 0xe6, 0xc7, 0xbd, - 0x90, 0x87, 0x30, 0x40, 0xa2, 0xef, 0x6b, 0xed, 0x5b, 0xc9, 0x88, 0x5e, 0x9a, 0x7c, 0x47, 0xb1, - 0x27, 0xa3, 0xb1, 0x8f, 0x8c, 0x66, 0x41, 0xab, 0xec, 0x47, 0x62, 0x07, 0x60, 0x75, 0xcb, 0xd3, - 0x15, 0xc6, 0x68, 0x9b, 0xfa, 0x3e, 0xe1, 0x5c, 0xd0, 0xf9, 0x06, 0xc8, 0x79, 0xe3, 0xd5, 0xe9, - 0x1c, 0xaf, 0xea, 0xc7, 0x79, 0xec, 0xe6, 0xc7, 0x3f, 0x7f, 0x7a, 0xd3, 0x70, 0xe2, 0x38, 0xf6, - 0x77, 0x29, 0xb0, 0xaa, 0xef, 0x31, 0x65, 0xd7, 0xc4, 0x93, 0x4a, 0x82, 0x76, 0x33, 0xb8, 0x4d, - 0xc5, 0x79, 0x76, 0x19, 0xee, 0x13, 0xda, 0xe3, 0xae, 0x2e, 0x8e, 0x1a, 0x41, 0x62, 0xe7, 0x99, - 0x50, 0xb0, 0x9d, 0x7c, 0xb4, 0xb3, 0x23, 0x37, 0xcc, 0x2f, 0x40, 0x46, 0x74, 0x73, 0xcc, 0x0b, - 0x29, 0x1d, 0xf0, 0xa4, 0x51, 0xa2, 0x81, 0x3d, 0x39, 0x4d, 0x34, 0x74, 0xa5, 0x96, 0x14, 0xba, - 0xb2, 0x14, 0x85, 0x7a, 0xeb, 0x14, 0xe3, 0x85, 0x06, 0xe1, 0x8e, 0xf6, 0x68, 0x5e, 0x02, 0x99, - 0x5d, 0xd5, 0x00, 0x66, 0x65, 0xdc, 0x95, 0xbf, 0x87, 0xd6, 0x19, 0x8f, 0x61, 0xd5, 0xd1, 0x94, - 0x68, 0x3f, 0x95, 0x84, 0xc0, 0x76, 0xb4, 0xb1, 0x7d, 0x3f, 0x05, 0xce, 0xed, 0x77, 0xba, 0x71, - 0xad, 0x14, 0x19, 0xfe, 0xf7, 0x17, 0xed, 0xa8, 0xb6, 0x9b, 0x9a, 0xba, 0xed, 0x5e, 0x05, 0x19, - 0xc5, 0x89, 0xc2, 0xec, 0x7f, 0xe7, 0x8a, 0x86, 0xb0, 0xf7, 0x0c, 0x60, 0x89, 0x6d, 0x7d, 0x7d, - 0xae, 0xd3, 0x10, 0x76, 0xf6, 0x69, 0xb3, 0x0b, 0x19, 0xe6, 0xe6, 0x2b, 0x60, 0x5e, 0x4c, 0x31, - 0xfb, 0x8f, 0x04, 0x18, 0x0d, 0xad, 0x8c, 0xb0, 0x6a, 0x36, 0x9c, 0x8c, 0x10, 0x35, 0x51, 0x62, - 0x22, 0x4d, 0x9d, 0x30, 0x91, 0x12, 0x90, 0xe1, 0x12, 0x7c, 0x9c, 0xc3, 0x71, 0xf4, 0xb9, 0xa0, - 0x73, 0x98, 0x92, 0x2d, 0xd2, 0x81, 0xfd, 0x83, 0x01, 0xd2, 0x72, 0x9e, 0x3b, 0x0f, 0xe6, 0x10, - 0x0e, 0xa8, 0x2f, 0x93, 0xc8, 0xd6, 0xcf, 0x3e, 0x1f, 0x5a, 0x8b, 0x8a, 0x22, 0x72, 0xdb, 0x76, - 0x94, 0xd8, 0xbc, 0x0b, 0xe6, 0xc4, 0x2f, 0x85, 0x88, 0xd9, 0xc7, 0x0c, 0xc9, 0x1f, 0x6a, 0x5a, + 0x54, 0x98, 0x2d, 0x19, 0xe5, 0xa5, 0xfa, 0xd2, 0x68, 0x68, 0x65, 0xaf, 0xab, 0xdd, 0x66, 0xc3, + 0xc9, 0x6a, 0x85, 0x26, 0x32, 0xef, 0x81, 0x3c, 0xf4, 0x69, 0x2f, 0x08, 0xdd, 0x2e, 0x66, 0x2e, + 0x82, 0x83, 0x42, 0xba, 0x34, 0x5b, 0xce, 0x5d, 0x38, 0x57, 0xd5, 0x45, 0x13, 0x65, 0xaa, 0xea, + 0x32, 0x55, 0xb7, 0x28, 0x09, 0xea, 0xef, 0x3c, 0x19, 0x5a, 0x33, 0x8f, 0x76, 0xad, 0x72, 0x9b, + 0x84, 0x3b, 0xbd, 0x56, 0xd5, 0xa3, 0xbe, 0xae, 0xb0, 0xfe, 0x57, 0xe1, 0xe8, 0x6e, 0x2d, 0x1c, + 0x74, 0x31, 0x97, 0x06, 0xdc, 0x59, 0x54, 0x2e, 0xb6, 0x31, 0x6b, 0xc0, 0x81, 0xb9, 0x05, 0x00, + 0x0f, 0x21, 0x0b, 0x5d, 0x51, 0xd8, 0xc2, 0x5c, 0xc9, 0x28, 0xe7, 0x2e, 0xac, 0x57, 0x55, 0x51, + 0xab, 0x51, 0x51, 0xab, 0x37, 0xa2, 0xaa, 0xd7, 0x17, 0x84, 0xbf, 0x87, 0xbb, 0x96, 0xe1, 0x64, + 0xa5, 0x9d, 0x90, 0x98, 0x1f, 0x80, 0x05, 0x1c, 0x20, 0x05, 0x91, 0x99, 0x02, 0x62, 0x1e, 0x07, + 0x48, 0x02, 0xbc, 0x0f, 0x16, 0x35, 0x85, 0xdc, 0x2e, 0xa5, 0x9d, 0xc2, 0xbc, 0xa8, 0x64, 0xbd, + 0xf0, 0xeb, 0xe3, 0xca, 0x8a, 0xce, 0x7c, 0x13, 0x21, 0x86, 0x39, 0xbf, 0x1e, 0x32, 0x12, 0xb4, + 0x9d, 0x9c, 0xd6, 0xde, 0xa6, 0xb4, 0x63, 0x7e, 0x02, 0x4c, 0x61, 0xc4, 0x5d, 0x44, 0x78, 0xc8, + 0x48, 0xab, 0x27, 0x0f, 0x63, 0x41, 0xc6, 0xf1, 0x72, 0x75, 0x02, 0x47, 0xab, 0x8d, 0x98, 0x62, + 0x3d, 0x2d, 0xc2, 0x71, 0x96, 0x25, 0x44, 0x5c, 0x60, 0x7e, 0x06, 0xd6, 0x68, 0x17, 0x33, 0x18, + 0x52, 0x96, 0xc0, 0xce, 0x4e, 0x87, 0xbd, 0x3a, 0x86, 0x39, 0x80, 0xff, 0x29, 0x30, 0x7b, 0x1c, + 0x27, 0xb1, 0x81, 0xc4, 0x3e, 0x3f, 0x11, 0xfb, 0xa6, 0x50, 0x9f, 0x14, 0x7c, 0x2f, 0x29, 0xb8, + 0x94, 0xfe, 0xeb, 0x7b, 0xcb, 0xb0, 0x9f, 0x19, 0x60, 0xf1, 0x80, 0xcf, 0x8f, 0xc0, 0x19, 0x84, + 0x3b, 0xb8, 0x0d, 0xc5, 0xca, 0x15, 0xb4, 0x90, 0xb4, 0xce, 0x5f, 0x78, 0x2d, 0xee, 0x50, 0xdf, + 0x0b, 0x99, 0xce, 0x58, 0xfb, 0xc6, 0xa0, 0x8b, 0x9d, 0x3c, 0x3a, 0xb0, 0x36, 0xd7, 0x40, 0xe6, + 0x3e, 0x26, 0xed, 0x9d, 0x50, 0x92, 0x7f, 0xc9, 0xd1, 0x2b, 0xd3, 0x01, 0x69, 0x09, 0x3e, 0x2b, + 0xb3, 0x59, 0x39, 0xc4, 0x86, 0xcd, 0x60, 0x50, 0x2f, 0x3f, 0x7d, 0x5c, 0x79, 0xf5, 0xa4, 0x12, + 0x4a, 0xaf, 0x12, 0x4b, 0xa7, 0xb4, 0x09, 0x56, 0x93, 0xf2, 0x3a, 0xe4, 0xc4, 0xbb, 0x74, 0x6a, + 0x38, 0xfb, 0x1b, 0x03, 0x14, 0x92, 0x9b, 0xb7, 0x64, 0xdc, 0x18, 0x99, 0x57, 0xc0, 0xbc, 0xca, + 0x81, 0x17, 0x0c, 0x79, 0xf9, 0x5e, 0x3f, 0xf1, 0x98, 0x95, 0xad, 0x3e, 0x8b, 0xc8, 0x7a, 0x8a, + 0x78, 0xfa, 0xc0, 0x3c, 0x0c, 0x67, 0x5e, 0x05, 0x2b, 0xf1, 0xa3, 0x82, 0xac, 0x8d, 0x43, 0x57, + 0xb7, 0xa1, 0xa5, 0xfa, 0xda, 0x68, 0x68, 0x99, 0xb1, 0xc3, 0x91, 0xe2, 0x66, 0xc3, 0x31, 0x51, + 0x72, 0x0f, 0x1d, 0x75, 0x48, 0xf6, 0x15, 0xf0, 0x62, 0x32, 0x96, 0xcb, 0x6d, 0xd8, 0x21, 0x21, + 0x64, 0x04, 0x06, 0x53, 0x24, 0xf0, 0x95, 0x01, 0x96, 0x0f, 0x71, 0x33, 0xe6, 0xd6, 0x38, 0xc0, + 0x8d, 0x5b, 0x9a, 0x1b, 0xa9, 0x63, 0xb8, 0x51, 0x79, 0xfa, 0xb8, 0xf2, 0xc6, 0xa9, 0xae, 0xc0, + 0x21, 0x82, 0x5c, 0x03, 0xeb, 0x13, 0x95, 0x14, 0x4b, 0xa6, 0x03, 0xb6, 0xff, 0x31, 0xc0, 0xf2, + 0x55, 0xc2, 0x43, 0xca, 0x88, 0x07, 0x3b, 0xfa, 0x4d, 0x30, 0xbf, 0x35, 0x40, 0xc1, 0xeb, 0xf9, + 0xbd, 0x0e, 0x0c, 0x49, 0x1f, 0xbb, 0x0a, 0xc5, 0x65, 0xa2, 0xea, 0x11, 0x6b, 0x4a, 0x13, 0x59, + 0xa3, 0xbb, 0xbe, 0x68, 0x5b, 0xf5, 0xf7, 0x04, 0x5d, 0xf6, 0x86, 0x96, 0x35, 0x80, 0x7e, 0xe7, + 0x92, 0x7d, 0x14, 0x9e, 0xfd, 0x68, 0xd7, 0x5a, 0x8c, 0xd9, 0x71, 0x67, 0x6d, 0x5f, 0x55, 0x05, + 0xe4, 0x48, 0x45, 0x73, 0x0b, 0x9c, 0x61, 0xf8, 0x0e, 0x66, 0x38, 0xf0, 0xb0, 0xeb, 0x89, 0x1e, + 0xaf, 0xce, 0xbb, 0xbe, 0xbe, 0x37, 0xb4, 0xd6, 0x94, 0x97, 0x84, 0x82, 0xed, 0xe4, 0xc7, 0x3b, + 0x5b, 0x72, 0xe3, 0x6b, 0x03, 0xe4, 0xb7, 0x7a, 0x8c, 0xe1, 0x20, 0x8c, 0xb2, 0x6d, 0x81, 0x79, + 0x9d, 0xc2, 0xa9, 0x73, 0x3b, 0xaf, 0x73, 0xcb, 0x47, 0x5e, 0xa5, 0xd6, 0xe1, 0x54, 0x22, 0x60, + 0xc1, 0x95, 0x2e, 0x66, 0x84, 0x22, 0x19, 0x72, 0xda, 0xd1, 0x2b, 0xbb, 0x0b, 0xcc, 0x8f, 0x7b, + 0x21, 0x0f, 0x61, 0x80, 0x44, 0xdf, 0xd7, 0xda, 0xb7, 0x93, 0x11, 0xbd, 0x34, 0xf9, 0x8e, 0x62, + 0x4f, 0x46, 0x63, 0x1f, 0x19, 0xcd, 0x82, 0x56, 0xd9, 0x8f, 0xc4, 0x0e, 0xc0, 0xea, 0xa6, 0xa7, + 0x2b, 0x8c, 0xd1, 0x16, 0xf5, 0x7d, 0xc2, 0xb9, 0xa0, 0xf3, 0x4d, 0x90, 0xf3, 0xc6, 0xab, 0xd3, + 0x39, 0x5e, 0xd5, 0x8f, 0xf3, 0xd8, 0xcd, 0x8f, 0x7f, 0xfe, 0xf4, 0xa6, 0xe1, 0xc4, 0x71, 0xec, + 0xef, 0x52, 0x60, 0x55, 0xdf, 0x63, 0xca, 0xae, 0x8b, 0x27, 0x95, 0x04, 0xed, 0x66, 0x70, 0x87, + 0x8a, 0xf3, 0xec, 0x32, 0xdc, 0x27, 0xb4, 0xc7, 0x5d, 0x5d, 0x1c, 0x35, 0x82, 0xc4, 0xce, 0x33, + 0xa1, 0x60, 0x3b, 0xf9, 0x68, 0x67, 0x5b, 0x6e, 0x98, 0x5f, 0x80, 0x8c, 0xe8, 0xe6, 0x98, 0x17, + 0x52, 0x3a, 0xe0, 0x49, 0xa3, 0x44, 0x03, 0x7b, 0x72, 0x9a, 0x68, 0xe8, 0x4a, 0x2d, 0x29, 0x74, + 0x65, 0x29, 0x0a, 0xf5, 0xd6, 0x29, 0xc6, 0x0b, 0x0d, 0xc2, 0x1d, 0xed, 0xd1, 0xbc, 0x0c, 0x32, + 0x3b, 0xaa, 0x01, 0xcc, 0xca, 0xb8, 0x2b, 0x7f, 0x0f, 0xad, 0x33, 0x1e, 0xc3, 0xaa, 0xa3, 0x29, + 0xd1, 0x7e, 0x2a, 0x09, 0x81, 0xed, 0x68, 0x63, 0xfb, 0x41, 0x0a, 0x9c, 0xdb, 0xef, 0x74, 0xe3, + 0x5a, 0x29, 0x32, 0xfc, 0xef, 0x2f, 0xda, 0x51, 0x6d, 0x37, 0x35, 0x75, 0xdb, 0xbd, 0x06, 0x32, + 0x8a, 0x13, 0x85, 0xd9, 0xff, 0xce, 0x15, 0x0d, 0x61, 0xef, 0x1a, 0xc0, 0x12, 0xdb, 0xfa, 0xfa, + 0xdc, 0xa0, 0x21, 0xec, 0xec, 0xd3, 0x66, 0x07, 0x32, 0xcc, 0xcd, 0x57, 0xc0, 0xbc, 0x98, 0x62, + 0xf6, 0x1f, 0x09, 0x30, 0x1a, 0x5a, 0x19, 0x61, 0xd5, 0x6c, 0x38, 0x19, 0x21, 0x6a, 0xa2, 0xc4, + 0x44, 0x9a, 0x3a, 0x61, 0x22, 0x25, 0x20, 0xc3, 0x25, 0xf8, 0x38, 0x87, 0xe3, 0xe8, 0x73, 0x51, + 0xe7, 0x30, 0x25, 0x5b, 0xa4, 0x03, 0xfb, 0x07, 0x03, 0xa4, 0xe5, 0x3c, 0x77, 0x1e, 0xcc, 0x21, + 0x1c, 0x50, 0x5f, 0x26, 0x91, 0xad, 0x9f, 0xdd, 0x1b, 0x5a, 0x8b, 0x8a, 0x22, 0x72, 0xdb, 0x76, + 0x94, 0xd8, 0xbc, 0x07, 0xe6, 0xc4, 0x2f, 0x85, 0x88, 0xd9, 0xc7, 0x0c, 0xc9, 0x1f, 0x6a, 0x5a, 0x6b, 0x18, 0x69, 0x65, 0x4f, 0x35, 0x34, 0x2b, 0x4f, 0xf6, 0xcf, 0x06, 0x98, 0xd7, 0xe7, 0x73, - 0xea, 0x30, 0xef, 0x1b, 0x20, 0x8b, 0xb0, 0xe7, 0xc6, 0x63, 0x3d, 0xbe, 0x8c, 0x97, 0x75, 0xb8, + 0xea, 0x30, 0x1f, 0x18, 0x20, 0x8b, 0xb0, 0xe7, 0xc6, 0x63, 0x3d, 0xbe, 0x8c, 0x57, 0x74, 0xb8, 0x67, 0x23, 0x38, 0x6d, 0x3c, 0xf5, 0x45, 0x5c, 0x40, 0xfa, 0xcb, 0xfe, 0xd2, 0x00, 0xb9, 0x58, - 0xe7, 0x4d, 0xb0, 0xc0, 0x38, 0x81, 0x05, 0x57, 0x55, 0x06, 0x72, 0x44, 0x1e, 0x67, 0x70, 0x1c, - 0x99, 0xcf, 0x26, 0xc9, 0x2c, 0x43, 0x91, 0x5f, 0x75, 0xe7, 0xf1, 0x1f, 0xc5, 0x99, 0xc7, 0xa3, - 0xa2, 0xf1, 0x74, 0x54, 0x34, 0x7e, 0x1f, 0x15, 0x8d, 0x07, 0xcf, 0x8a, 0x33, 0x4f, 0x9f, 0x15, - 0x67, 0x7e, 0x7b, 0x56, 0x9c, 0xb9, 0xf5, 0x6e, 0x2c, 0xbf, 0xc8, 0x43, 0xa5, 0x03, 0x5b, 0x7c, - 0xbc, 0xaa, 0xf5, 0x37, 0x6b, 0x9f, 0x8f, 0x7f, 0x93, 0xca, 0x8c, 0x5b, 0x19, 0x39, 0x3c, 0x5c, - 0xf8, 0x37, 0x00, 0x00, 0xff, 0xff, 0xb3, 0x2d, 0xc3, 0x28, 0xb4, 0x0e, 0x00, 0x00, + 0xe7, 0x4d, 0xb0, 0xc0, 0x38, 0x81, 0x05, 0xd7, 0x54, 0x06, 0x72, 0x44, 0x1e, 0x67, 0x70, 0x1c, + 0x99, 0xcf, 0x26, 0xc9, 0x2c, 0x43, 0x91, 0x5f, 0x75, 0xe7, 0xc9, 0x1f, 0xc5, 0x99, 0x27, 0xa3, + 0xa2, 0xf1, 0x6c, 0x54, 0x34, 0x7e, 0x1f, 0x15, 0x8d, 0x87, 0xcf, 0x8b, 0x33, 0xcf, 0x9e, 0x17, + 0x67, 0x7e, 0x7b, 0x5e, 0x9c, 0xb9, 0xfd, 0x6e, 0x2c, 0xbf, 0xc8, 0x43, 0xa5, 0x03, 0x5b, 0x7c, + 0xbc, 0xaa, 0xf5, 0x2f, 0xd6, 0x3e, 0x1f, 0xff, 0x26, 0x95, 0x19, 0xb7, 0x32, 0x72, 0x78, 0xb8, + 0xf8, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xbd, 0xbd, 0x48, 0x8d, 0xb4, 0x0e, 0x00, 0x00, } func (this *RewardsPlan) Equal(that interface{}) bool { diff --git a/x/rewards/types/models_test.go b/x/rewards/types/models_test.go index 2d9321fd..7d9edb77 100644 --- a/x/rewards/types/models_test.go +++ b/x/rewards/types/models_test.go @@ -12,8 +12,8 @@ import ( "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/utils" - "github.com/milkyway-labs/milkyway/v2/x/rewards/types" + "github.com/milkyway-labs/milkyway/v3/utils" + "github.com/milkyway-labs/milkyway/v3/x/rewards/types" ) func TestRewardsPlan_Validate(t *testing.T) { diff --git a/x/rewards/types/params.pb.go b/x/rewards/types/params.pb.go index eb28217e..cf32f0c5 100644 --- a/x/rewards/types/params.pb.go +++ b/x/rewards/types/params.pb.go @@ -77,7 +77,7 @@ var fileDescriptor_d0e2cca7ddea4eaf = []byte{ // 275 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x4c, 0x90, 0xbd, 0x4e, 0xc3, 0x30, 0x14, 0x85, 0x63, 0x21, 0x75, 0x08, 0x5b, 0x41, 0x88, 0x76, 0x70, 0x2b, 0xa6, 0x2e, 0xf5, 0x25, - 0x85, 0x27, 0x68, 0x25, 0xe6, 0xaa, 0x23, 0x4b, 0x74, 0x93, 0x9a, 0x10, 0x35, 0xc9, 0x8d, 0x62, + 0x94, 0x27, 0x68, 0x25, 0xe6, 0xaa, 0x23, 0x4b, 0x74, 0x93, 0x9a, 0x10, 0x35, 0xc9, 0x8d, 0x62, 0x93, 0x92, 0x17, 0x60, 0x86, 0xd7, 0xe0, 0x49, 0x32, 0x76, 0x64, 0xe2, 0x27, 0x79, 0x11, 0x54, 0xc7, 0xad, 0x3a, 0xf9, 0xda, 0x3a, 0xe7, 0x7c, 0xbe, 0xc7, 0x1d, 0xa7, 0x71, 0xb2, 0xa9, 0xb6, 0x58, 0x41, 0x21, 0xb7, 0x58, 0xac, 0x15, 0x94, 0x1e, 0xe4, 0x58, 0x60, 0xaa, 0x44, 0x5e, 0x90, @@ -85,13 +85,13 @@ var fileDescriptor_d0e2cca7ddea4eaf = []byte{ 0x92, 0x50, 0x7a, 0x81, 0xd4, 0xe8, 0x41, 0x48, 0x71, 0xd6, 0x99, 0x86, 0x97, 0x11, 0x45, 0x64, 0x46, 0xd8, 0x4f, 0xdd, 0xeb, 0xcd, 0x07, 0x73, 0x7b, 0x4b, 0x93, 0xdd, 0x7f, 0x63, 0xee, 0xc0, 0xe6, 0xf9, 0x79, 0x82, 0x99, 0x1f, 0x16, 0x12, 0x75, 0x4c, 0x99, 0xff, 0x24, 0xe5, 0x35, 0x1b, - 0x9f, 0x4d, 0xce, 0x67, 0x03, 0xd1, 0x51, 0xc4, 0x9e, 0x22, 0x2c, 0x45, 0x2c, 0x28, 0xce, 0xe6, - 0xb7, 0xf5, 0xf7, 0xc8, 0xf9, 0xfc, 0x19, 0x4d, 0xa2, 0x58, 0x3f, 0xbf, 0x04, 0x22, 0xa4, 0x14, - 0xec, 0x97, 0xba, 0x63, 0xaa, 0xd6, 0x1b, 0xd0, 0x55, 0x2e, 0x95, 0x31, 0xa8, 0xd5, 0x95, 0xa5, - 0x2d, 0x13, 0xcc, 0x16, 0x96, 0xf5, 0x20, 0xe5, 0x7c, 0x55, 0xff, 0x71, 0xa7, 0x6e, 0x38, 0xdb, - 0x35, 0x9c, 0xfd, 0x36, 0x9c, 0xbd, 0xb7, 0xdc, 0xd9, 0xb5, 0xdc, 0xf9, 0x6a, 0xb9, 0xf3, 0x78, - 0x7f, 0x92, 0x7f, 0xe8, 0x61, 0x9a, 0x60, 0xa0, 0x8e, 0x37, 0x28, 0x67, 0xf0, 0x7a, 0x2c, 0xcf, - 0x10, 0x83, 0x9e, 0x59, 0xf7, 0xee, 0x3f, 0x00, 0x00, 0xff, 0xff, 0x25, 0x68, 0x4c, 0x61, 0x5d, + 0x9f, 0x4d, 0xce, 0xef, 0x06, 0xa2, 0xa3, 0x88, 0x3d, 0x45, 0x58, 0x8a, 0x58, 0x50, 0x9c, 0xcd, + 0x6f, 0xeb, 0xef, 0x91, 0xf3, 0xf9, 0x33, 0x9a, 0x44, 0xb1, 0x7e, 0x7e, 0x09, 0x44, 0x48, 0x29, + 0xd8, 0x2f, 0x75, 0xc7, 0x54, 0xad, 0x37, 0xa0, 0xab, 0x5c, 0x2a, 0x63, 0x50, 0xab, 0x2b, 0x4b, + 0x5b, 0x26, 0x98, 0x2d, 0x2c, 0xeb, 0x41, 0xca, 0xf9, 0xaa, 0xfe, 0xe3, 0x4e, 0xdd, 0x70, 0xb6, + 0x6b, 0x38, 0xfb, 0x6d, 0x38, 0x7b, 0x6f, 0xb9, 0xb3, 0x6b, 0xb9, 0xf3, 0xd5, 0x72, 0xe7, 0xf1, + 0xfe, 0x24, 0xff, 0xd0, 0xc3, 0x34, 0xc1, 0x40, 0x1d, 0x6f, 0x50, 0xce, 0xe0, 0xf5, 0x58, 0x9e, + 0x21, 0x06, 0x3d, 0xb3, 0xee, 0xec, 0x3f, 0x00, 0x00, 0xff, 0xff, 0x2b, 0xf8, 0xc7, 0xc4, 0x5d, 0x01, 0x00, 0x00, } diff --git a/x/rewards/types/params_test.go b/x/rewards/types/params_test.go index 27ff08e6..77963207 100644 --- a/x/rewards/types/params_test.go +++ b/x/rewards/types/params_test.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - "github.com/milkyway-labs/milkyway/v2/x/rewards/types" + "github.com/milkyway-labs/milkyway/v3/x/rewards/types" ) func TestParams_Validate(t *testing.T) { diff --git a/x/rewards/types/pool_test.go b/x/rewards/types/pool_test.go index 2c9aeb55..b106c08c 100644 --- a/x/rewards/types/pool_test.go +++ b/x/rewards/types/pool_test.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/suite" - "github.com/milkyway-labs/milkyway/v2/x/rewards/types" + "github.com/milkyway-labs/milkyway/v3/x/rewards/types" ) var ( diff --git a/x/rewards/types/query.pb.go b/x/rewards/types/query.pb.go index 44370633..c24452a3 100644 --- a/x/rewards/types/query.pb.go +++ b/x/rewards/types/query.pb.go @@ -1030,87 +1030,87 @@ func init() { func init() { proto.RegisterFile("milkyway/rewards/v1/query.proto", fileDescriptor_f900c2389df7beb1) } var fileDescriptor_f900c2389df7beb1 = []byte{ - // 1272 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x58, 0xcf, 0x6f, 0x1b, 0x45, - 0x18, 0xcd, 0x98, 0x36, 0x25, 0x93, 0x54, 0xb4, 0x93, 0x84, 0x3a, 0xdb, 0xd6, 0x09, 0xdb, 0x36, - 0x89, 0xa2, 0x66, 0x57, 0x49, 0x23, 0xd2, 0x24, 0x14, 0x12, 0x27, 0x04, 0x2c, 0x5a, 0x35, 0xb5, - 0xa9, 0x10, 0x70, 0x88, 0xd6, 0xde, 0x95, 0xbb, 0xb0, 0xde, 0x71, 0x77, 0xd7, 0x76, 0xa3, 0x28, - 0x12, 0x82, 0x2b, 0x12, 0x48, 0x70, 0xe1, 0xc6, 0x11, 0x71, 0xe2, 0x80, 0x38, 0x73, 0xe0, 0x90, - 0x0b, 0x52, 0x05, 0x17, 0x0e, 0x40, 0x69, 0x82, 0xc4, 0x85, 0x0b, 0xff, 0x01, 0xda, 0xd9, 0x6f, - 0xd7, 0x6b, 0x7b, 0x76, 0x37, 0x71, 0xea, 0x4b, 0x64, 0xcf, 0x7c, 0x3f, 0xde, 0x7b, 0x33, 0x9f, - 0xe7, 0x29, 0x78, 0xbc, 0xa2, 0x1b, 0x1f, 0xee, 0x34, 0x94, 0x1d, 0xd9, 0xd2, 0x1a, 0x8a, 0xa5, - 0xda, 0x72, 0x7d, 0x4e, 0x7e, 0x58, 0xd3, 0xac, 0x1d, 0xa9, 0x6a, 0x51, 0x87, 0x92, 0x61, 0x3f, - 0x40, 0x82, 0x00, 0xa9, 0x3e, 0x27, 0x5c, 0x2a, 0x53, 0x5a, 0x36, 0x34, 0x59, 0xa9, 0xea, 0xb2, - 0x62, 0x9a, 0xd4, 0x51, 0x1c, 0x9d, 0x9a, 0xb6, 0x97, 0x22, 0x8c, 0x94, 0x69, 0x99, 0xb2, 0x8f, - 0xb2, 0xfb, 0x09, 0x56, 0xc7, 0x4a, 0xd4, 0xae, 0x50, 0x7b, 0xdb, 0xdb, 0xf0, 0xbe, 0xc0, 0xd6, - 0x79, 0xa5, 0xa2, 0x9b, 0x54, 0x66, 0x7f, 0x61, 0x29, 0xe3, 0x05, 0xc8, 0x45, 0xc5, 0xd6, 0xe4, - 0xfa, 0x5c, 0x51, 0x73, 0x94, 0x39, 0xb9, 0x44, 0x75, 0x13, 0xf6, 0x67, 0xc2, 0xfb, 0x0c, 0x6f, - 0x10, 0x55, 0x55, 0xca, 0xba, 0xc9, 0x00, 0x41, 0xec, 0x04, 0x8f, 0x63, 0x85, 0xaa, 0x9a, 0x61, - 0xc7, 0x45, 0x54, 0x15, 0x4b, 0xa9, 0x40, 0x84, 0x38, 0x82, 0xc9, 0x3d, 0xb7, 0xcb, 0x16, 0x5b, - 0xcc, 0x6b, 0x0f, 0x6b, 0x9a, 0xed, 0x88, 0x5b, 0x78, 0xb8, 0x65, 0xd5, 0xae, 0x52, 0xd3, 0xd6, - 0xc8, 0x12, 0xee, 0xf7, 0x92, 0xd3, 0x68, 0x02, 0x4d, 0x0f, 0xce, 0x5f, 0x94, 0x38, 0x22, 0x4a, - 0x5e, 0x52, 0xf6, 0xd4, 0xfe, 0x9f, 0xe3, 0x7d, 0x79, 0x48, 0x10, 0x8b, 0x38, 0xcd, 0x2a, 0xe6, - 0xbd, 0xb8, 0x2d, 0x43, 0x31, 0xfd, 0x6e, 0x64, 0x13, 0xe3, 0x26, 0x37, 0x28, 0x3d, 0x29, 0x81, - 0x92, 0xae, 0x10, 0x92, 0x77, 0x70, 0x20, 0x84, 0xb4, 0xa5, 0x94, 0x35, 0xc8, 0xcd, 0x87, 0x32, - 0xc5, 0x1f, 0x10, 0x1e, 0xe3, 0x34, 0x01, 0xf0, 0x5b, 0xf8, 0x2c, 0x80, 0xdc, 0xae, 0xba, 0x1b, - 0x69, 0x34, 0xf1, 0xdc, 0xf4, 0xe0, 0xfc, 0x04, 0x97, 0x43, 0xa8, 0x42, 0x76, 0xc0, 0x25, 0xf2, - 0xcd, 0x3f, 0xdf, 0xcd, 0xa0, 0xfc, 0x90, 0x15, 0xaa, 0x4c, 0xde, 0x68, 0xc1, 0x9d, 0x62, 0xb8, - 0xa7, 0x12, 0x71, 0x7b, 0x70, 0x5a, 0x80, 0xcf, 0xe3, 0x0b, 0xed, 0xb8, 0x7d, 0x6d, 0x2e, 0xe0, - 0x33, 0x2e, 0xda, 0x6d, 0x5d, 0x65, 0xc2, 0x9c, 0xca, 0xf7, 0xbb, 0x5f, 0x73, 0xaa, 0xa8, 0x75, - 0x0a, 0x1a, 0x50, 0xcd, 0xe1, 0xa1, 0x30, 0x55, 0x80, 0x96, 0xcc, 0xd4, 0x3b, 0xb2, 0xc1, 0x10, - 0x49, 0xf1, 0x16, 0x16, 0xbd, 0x9b, 0x40, 0xa9, 0x71, 0xb7, 0xe6, 0xd8, 0x8e, 0x62, 0xaa, 0xba, - 0x59, 0x86, 0xac, 0x30, 0x4a, 0x4a, 0x0d, 0x1f, 0xe5, 0xd9, 0x7c, 0xbf, 0xfb, 0x35, 0xa7, 0x8a, - 0x36, 0xbe, 0x12, 0x9b, 0x0e, 0x80, 0x6f, 0xe3, 0x33, 0xd0, 0x14, 0x8e, 0x7f, 0x8a, 0x8b, 0xb5, - 0xb3, 0x42, 0xf8, 0x70, 0xfc, 0x12, 0x62, 0x0e, 0x4f, 0xb2, 0xa6, 0x77, 0xab, 0x9a, 0xa5, 0x38, - 0xd4, 0x8a, 0xc6, 0x3d, 0x8e, 0x07, 0x29, 0x04, 0x35, 0xb1, 0x63, 0x7f, 0x29, 0xa7, 0x8a, 0x0d, - 0x3c, 0x95, 0x58, 0xaa, 0x27, 0x1c, 0x36, 0xf1, 0x35, 0xd6, 0xb8, 0xa0, 0x59, 0x75, 0xbd, 0xa4, - 0x45, 0x53, 0xb8, 0x8c, 0xb1, 0xed, 0xc5, 0x34, 0x19, 0x0c, 0xc0, 0x4a, 0x4e, 0x15, 0xeb, 0xa0, - 0x45, 0x4c, 0x9d, 0x9e, 0xe0, 0x5f, 0xc3, 0x99, 0x16, 0xe1, 0xd6, 0x69, 0xa5, 0xa2, 0xdb, 0xb6, - 0x4e, 0xcd, 0x23, 0x6b, 0xff, 0x08, 0x8f, 0x47, 0x96, 0x00, 0xcc, 0xf7, 0x31, 0x2e, 0x05, 0xab, - 0x00, 0x7b, 0x86, 0x0b, 0x7b, 0xad, 0x54, 0xaa, 0x55, 0x6a, 0x86, 0xe2, 0x68, 0x6a, 0xb3, 0x4e, - 0x18, 0x79, 0xa8, 0x90, 0xf8, 0x09, 0xc2, 0x2f, 0x05, 0xd7, 0x76, 0x43, 0x33, 0xb4, 0x32, 0x9b, - 0xd3, 0x36, 0xe5, 0x5f, 0xc7, 0xe7, 0x55, 0x6f, 0x8f, 0x5a, 0xdb, 0x8a, 0xaa, 0x5a, 0x9a, 0xed, - 0x49, 0x37, 0x90, 0x4d, 0xff, 0xf2, 0xfd, 0xec, 0x08, 0xfc, 0x10, 0xac, 0x79, 0x3b, 0x05, 0xc7, - 0x72, 0x25, 0x3b, 0x17, 0xa4, 0xc0, 0x7a, 0x78, 0x76, 0x52, 0x6d, 0xb3, 0x23, 0xc6, 0x81, 0x00, - 0x09, 0xee, 0x84, 0x8f, 0xcd, 0xfd, 0x41, 0xbb, 0xc4, 0xe5, 0xbf, 0xa1, 0x95, 0xdc, 0x3a, 0xd9, - 0x51, 0x97, 0xf1, 0xb7, 0x4f, 0xc6, 0x9f, 0x87, 0x05, 0xbb, 0xed, 0xdc, 0x3e, 0x43, 0x70, 0xf1, - 0x7c, 0xd5, 0x7b, 0x4d, 0xbf, 0xed, 0x1a, 0xa4, 0x38, 0x23, 0x38, 0x99, 0x04, 0xa8, 0x37, 0x52, - 0x7c, 0x8a, 0xf0, 0xd5, 0xf0, 0xec, 0xf4, 0x5a, 0x89, 0xd6, 0x49, 0x4e, 0x75, 0x4e, 0xf2, 0xb5, - 0x04, 0x34, 0xbd, 0x91, 0xe1, 0x03, 0x98, 0x85, 0x0d, 0x1f, 0xef, 0xdb, 0xd4, 0x51, 0x8c, 0x9e, - 0x48, 0x20, 0xfe, 0x84, 0xe0, 0xce, 0x47, 0x34, 0x03, 0x86, 0x85, 0x76, 0x86, 0x52, 0x04, 0x43, - 0x5f, 0xa2, 0xa0, 0x9c, 0x57, 0x89, 0xf7, 0x8b, 0x45, 0x72, 0xf8, 0xb4, 0xe3, 0x36, 0x4b, 0xa7, - 0xba, 0x17, 0xcd, 0xab, 0x20, 0x56, 0xe0, 0xe2, 0x04, 0x6d, 0xdf, 0xd1, 0x9d, 0x07, 0xaa, 0xa5, - 0x34, 0x80, 0xe7, 0x33, 0x56, 0xcd, 0x80, 0x9b, 0x11, 0xdd, 0x0e, 0x74, 0x5b, 0xc7, 0xe7, 0x1a, - 0xb0, 0x75, 0xe4, 0x76, 0x2f, 0x34, 0x5a, 0x8b, 0xcd, 0x7f, 0x39, 0x8c, 0x4f, 0xb3, 0x76, 0xe4, - 0x23, 0x84, 0xfb, 0x3d, 0xb3, 0x47, 0xf8, 0x6f, 0x45, 0xa7, 0xb3, 0x14, 0xa6, 0x93, 0x03, 0x3d, - 0xb0, 0xe2, 0x95, 0x8f, 0x7f, 0xfd, 0xfb, 0x8b, 0xd4, 0x65, 0x72, 0x51, 0x8e, 0x36, 0xb1, 0xe4, - 0x2b, 0x84, 0x87, 0xc2, 0x6e, 0x8f, 0xcc, 0x46, 0xd7, 0xe7, 0x58, 0x4f, 0x41, 0x3a, 0x6a, 0x38, - 0x80, 0x9a, 0x61, 0xa0, 0xae, 0x12, 0x91, 0x0b, 0xaa, 0xc5, 0x5f, 0x92, 0xaf, 0x11, 0x1e, 0x0c, - 0x15, 0x21, 0xd7, 0x8f, 0xd4, 0xcb, 0x47, 0x36, 0x7b, 0xc4, 0x68, 0x00, 0xb6, 0xc0, 0x80, 0x49, - 0xe4, 0x7a, 0x32, 0x30, 0x79, 0x17, 0x1c, 0xe5, 0x1e, 0xf9, 0x19, 0xe1, 0x17, 0xf9, 0xd6, 0x8c, - 0x2c, 0xc6, 0x1c, 0x54, 0x9c, 0x17, 0x14, 0x6e, 0x1e, 0x3f, 0x11, 0x38, 0xac, 0x32, 0x0e, 0xcb, - 0xe4, 0x26, 0xff, 0xc4, 0xdd, 0x31, 0x93, 0x77, 0xe1, 0xad, 0xdc, 0x93, 0x69, 0xb3, 0xd0, 0xb6, - 0x3f, 0xc3, 0x4f, 0x11, 0x16, 0xa2, 0xad, 0x1a, 0x59, 0x89, 0x86, 0x96, 0xe8, 0x15, 0x85, 0x57, - 0xba, 0x4b, 0x06, 0x6e, 0x6f, 0x32, 0x6e, 0x59, 0xb2, 0xca, 0xe5, 0xe6, 0x3f, 0x77, 0xb6, 0xbc, - 0x1b, 0x7a, 0x0c, 0xf9, 0x1c, 0x7f, 0x47, 0x78, 0x2c, 0xd2, 0xcd, 0x91, 0xe5, 0x68, 0x94, 0x49, - 0x56, 0x52, 0x58, 0xe9, 0x2a, 0x17, 0x08, 0x6e, 0x32, 0x82, 0xab, 0xe4, 0x55, 0x2e, 0x41, 0x78, - 0xc6, 0x6c, 0x79, 0xb7, 0xf9, 0xc4, 0xf1, 0xe9, 0xfd, 0x88, 0x30, 0xe9, 0x74, 0x7c, 0xe4, 0x46, - 0xb2, 0xfa, 0x1d, 0x16, 0x53, 0x58, 0x38, 0x5e, 0x12, 0x30, 0x79, 0x8d, 0x31, 0x59, 0x22, 0x8b, - 0xc7, 0x3a, 0xaa, 0xa6, 0x7d, 0x24, 0x7f, 0x20, 0x3c, 0xca, 0x35, 0x6d, 0xe4, 0xe5, 0xf8, 0xd9, - 0x88, 0x72, 0x18, 0xc2, 0xe2, 0xb1, 0xf3, 0x80, 0x4b, 0x81, 0x71, 0xb9, 0x43, 0xde, 0xe2, 0x72, - 0x09, 0x5e, 0x12, 0x5b, 0xde, 0xed, 0x78, 0x88, 0xf6, 0x82, 0xc8, 0xb6, 0xc9, 0x23, 0xff, 0x21, - 0x3c, 0x16, 0xe9, 0xc6, 0xe2, 0x6e, 0x60, 0x92, 0xa7, 0x14, 0x56, 0xba, 0xca, 0x05, 0xae, 0xef, - 0x33, 0xae, 0xf7, 0x49, 0xe1, 0x24, 0x5c, 0x23, 0x8e, 0x97, 0xfc, 0x8b, 0x70, 0x3a, 0xca, 0x79, - 0x91, 0xa5, 0xc4, 0xc1, 0x89, 0x64, 0xbc, 0xdc, 0x4d, 0x2a, 0x10, 0x7e, 0x97, 0x11, 0x2e, 0x90, - 0x7b, 0x27, 0x21, 0xcc, 0x9d, 0x4c, 0xf7, 0x61, 0x18, 0xe5, 0x7a, 0xb0, 0xb8, 0x2b, 0x1c, 0xe7, - 0x10, 0xe3, 0xae, 0x70, 0xac, 0xd9, 0x13, 0xd7, 0x19, 0xcb, 0x5b, 0x64, 0xe5, 0x04, 0x2c, 0xc9, - 0x13, 0x84, 0xd3, 0x51, 0xf6, 0x28, 0xee, 0xf8, 0x12, 0x1c, 0x5c, 0xdc, 0xf1, 0x25, 0xb9, 0x31, - 0xf1, 0x36, 0x23, 0xb6, 0x49, 0x36, 0xba, 0x21, 0xd6, 0xee, 0xe3, 0xb2, 0xf9, 0xfd, 0xa7, 0x99, - 0xbe, 0xfd, 0x83, 0x0c, 0x7a, 0x7c, 0x90, 0x41, 0x7f, 0x1d, 0x64, 0xd0, 0xe7, 0x87, 0x99, 0xbe, - 0xc7, 0x87, 0x99, 0xbe, 0xdf, 0x0e, 0x33, 0x7d, 0xef, 0x2d, 0x94, 0x75, 0xe7, 0x41, 0xad, 0x28, - 0x95, 0x68, 0x25, 0xe8, 0x36, 0x6b, 0x28, 0x45, 0xbb, 0xd9, 0xbb, 0x3e, 0x2f, 0x3f, 0x0a, 0x00, - 0x38, 0x3b, 0x55, 0xcd, 0x2e, 0xf6, 0xb3, 0xff, 0x11, 0xde, 0xf8, 0x3f, 0x00, 0x00, 0xff, 0xff, - 0xa5, 0xe7, 0x02, 0xc7, 0x4d, 0x15, 0x00, 0x00, + // 1274 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x58, 0xcd, 0x6f, 0x1b, 0xc5, + 0x1b, 0xce, 0xf8, 0xd7, 0xa6, 0xbf, 0x4c, 0x52, 0xd1, 0x4e, 0x12, 0xea, 0x6c, 0x5b, 0x27, 0x6c, + 0xdb, 0x24, 0x8a, 0x9a, 0x5d, 0xe5, 0x43, 0xa4, 0x49, 0x28, 0x24, 0x4e, 0x08, 0x58, 0xb4, 0x6a, + 0x6a, 0x53, 0x21, 0xe0, 0x10, 0xad, 0xbd, 0x2b, 0x77, 0x61, 0xbd, 0xe3, 0xee, 0xae, 0xed, 0x46, + 0x51, 0x24, 0x04, 0x57, 0x24, 0x90, 0xe0, 0xc2, 0x8d, 0x23, 0xe2, 0xc4, 0x01, 0x71, 0xe6, 0xc0, + 0x21, 0x17, 0xa4, 0x0a, 0x2e, 0x1c, 0x80, 0xd2, 0x04, 0x89, 0x0b, 0x17, 0xfe, 0x03, 0xb4, 0xb3, + 0xef, 0xae, 0xd7, 0xf6, 0xec, 0x6e, 0xe2, 0xe0, 0x4b, 0x64, 0xcf, 0xbc, 0x1f, 0xcf, 0xf3, 0xcc, + 0xbc, 0x9e, 0x47, 0xc1, 0xe3, 0x15, 0xdd, 0x78, 0x7f, 0xb7, 0xa1, 0xec, 0xca, 0x96, 0xd6, 0x50, + 0x2c, 0xd5, 0x96, 0xeb, 0x73, 0xf2, 0xa3, 0x9a, 0x66, 0xed, 0x4a, 0x55, 0x8b, 0x3a, 0x94, 0x0c, + 0xfb, 0x01, 0x12, 0x04, 0x48, 0xf5, 0x39, 0xe1, 0x4a, 0x99, 0xd2, 0xb2, 0xa1, 0xc9, 0x4a, 0x55, + 0x97, 0x15, 0xd3, 0xa4, 0x8e, 0xe2, 0xe8, 0xd4, 0xb4, 0xbd, 0x14, 0x61, 0xa4, 0x4c, 0xcb, 0x94, + 0x7d, 0x94, 0xdd, 0x4f, 0xb0, 0x3a, 0x56, 0xa2, 0x76, 0x85, 0xda, 0x3b, 0xde, 0x86, 0xf7, 0x05, + 0xb6, 0x2e, 0x2a, 0x15, 0xdd, 0xa4, 0x32, 0xfb, 0x0b, 0x4b, 0x19, 0x2f, 0x40, 0x2e, 0x2a, 0xb6, + 0x26, 0xd7, 0xe7, 0x8a, 0x9a, 0xa3, 0xcc, 0xc9, 0x25, 0xaa, 0x9b, 0xb0, 0x3f, 0x13, 0xde, 0x67, + 0x78, 0x83, 0xa8, 0xaa, 0x52, 0xd6, 0x4d, 0x06, 0x08, 0x62, 0x27, 0x78, 0x1c, 0x2b, 0x54, 0xd5, + 0x0c, 0x3b, 0x2e, 0xa2, 0xaa, 0x58, 0x4a, 0x05, 0x22, 0xc4, 0x11, 0x4c, 0xee, 0xbb, 0x5d, 0xb6, + 0xd9, 0x62, 0x5e, 0x7b, 0x54, 0xd3, 0x6c, 0x47, 0xdc, 0xc6, 0xc3, 0x2d, 0xab, 0x76, 0x95, 0x9a, + 0xb6, 0x46, 0x96, 0x71, 0xbf, 0x97, 0x9c, 0x46, 0x13, 0x68, 0x7a, 0x70, 0xfe, 0xb2, 0xc4, 0x11, + 0x51, 0xf2, 0x92, 0xb2, 0x67, 0x0e, 0x7e, 0x1f, 0xef, 0xcb, 0x43, 0x82, 0x58, 0xc4, 0x69, 0x56, + 0x31, 0xef, 0xc5, 0x6d, 0x1b, 0x8a, 0xe9, 0x77, 0x23, 0x5b, 0x18, 0x37, 0xb9, 0x41, 0xe9, 0x49, + 0x09, 0x94, 0x74, 0x85, 0x90, 0xbc, 0x83, 0x03, 0x21, 0xa4, 0x6d, 0xa5, 0xac, 0x41, 0x6e, 0x3e, + 0x94, 0x29, 0x7e, 0x87, 0xf0, 0x18, 0xa7, 0x09, 0x80, 0xdf, 0xc6, 0xe7, 0x01, 0xe4, 0x4e, 0xd5, + 0xdd, 0x48, 0xa3, 0x89, 0xff, 0x4d, 0x0f, 0xce, 0x4f, 0x70, 0x39, 0x84, 0x2a, 0x64, 0x07, 0x5c, + 0x22, 0x5f, 0xfd, 0xf5, 0xcd, 0x0c, 0xca, 0x0f, 0x59, 0xa1, 0xca, 0xe4, 0xb5, 0x16, 0xdc, 0x29, + 0x86, 0x7b, 0x2a, 0x11, 0xb7, 0x07, 0xa7, 0x05, 0xf8, 0x3c, 0xbe, 0xd4, 0x8e, 0xdb, 0xd7, 0xe6, + 0x12, 0x3e, 0xe7, 0xa2, 0xdd, 0xd1, 0x55, 0x26, 0xcc, 0x99, 0x7c, 0xbf, 0xfb, 0x35, 0xa7, 0x8a, + 0x5a, 0xa7, 0xa0, 0x01, 0xd5, 0x1c, 0x1e, 0x0a, 0x53, 0x05, 0x68, 0xc9, 0x4c, 0xbd, 0x23, 0x1b, + 0x0c, 0x91, 0x14, 0x6f, 0x63, 0xd1, 0xbb, 0x09, 0x94, 0x1a, 0xf7, 0x6a, 0x8e, 0xed, 0x28, 0xa6, + 0xaa, 0x9b, 0x65, 0xc8, 0x0a, 0xa3, 0xa4, 0xd4, 0xf0, 0x51, 0x9e, 0xcf, 0xf7, 0xbb, 0x5f, 0x73, + 0xaa, 0x68, 0xe3, 0x6b, 0xb1, 0xe9, 0x00, 0xf8, 0x0e, 0x3e, 0x07, 0x4d, 0xe1, 0xf8, 0xa7, 0xb8, + 0x58, 0x3b, 0x2b, 0x84, 0x0f, 0xc7, 0x2f, 0x21, 0xe6, 0xf0, 0x24, 0x6b, 0x7a, 0xaf, 0xaa, 0x59, + 0x8a, 0x43, 0xad, 0x68, 0xdc, 0xe3, 0x78, 0x90, 0x42, 0x50, 0x13, 0x3b, 0xf6, 0x97, 0x72, 0xaa, + 0xd8, 0xc0, 0x53, 0x89, 0xa5, 0x7a, 0xc2, 0x61, 0x0b, 0xdf, 0x60, 0x8d, 0x0b, 0x9a, 0x55, 0xd7, + 0x4b, 0x5a, 0x34, 0x85, 0xab, 0x18, 0xdb, 0x5e, 0x4c, 0x93, 0xc1, 0x00, 0xac, 0xe4, 0x54, 0xb1, + 0x0e, 0x5a, 0xc4, 0xd4, 0xe9, 0x09, 0xfe, 0x75, 0x9c, 0x69, 0x11, 0x6e, 0x83, 0x56, 0x2a, 0xba, + 0x6d, 0xeb, 0xd4, 0x3c, 0xb6, 0xf6, 0x8f, 0xf1, 0x78, 0x64, 0x09, 0xc0, 0xfc, 0x00, 0xe3, 0x52, + 0xb0, 0x0a, 0xb0, 0x67, 0xb8, 0xb0, 0xd7, 0x4b, 0xa5, 0x5a, 0xa5, 0x66, 0x28, 0x8e, 0xa6, 0x36, + 0xeb, 0x84, 0x91, 0x87, 0x0a, 0x89, 0x1f, 0x21, 0xfc, 0x42, 0x70, 0x6d, 0x37, 0x35, 0x43, 0x2b, + 0xb3, 0x39, 0x6d, 0x53, 0xfe, 0x55, 0x7c, 0x51, 0xf5, 0xf6, 0xa8, 0xb5, 0xa3, 0xa8, 0xaa, 0xa5, + 0xd9, 0x9e, 0x74, 0x03, 0xd9, 0xf4, 0x4f, 0xdf, 0xce, 0x8e, 0xc0, 0x0f, 0xc1, 0xba, 0xb7, 0x53, + 0x70, 0x2c, 0x57, 0xb2, 0x0b, 0x41, 0x0a, 0xac, 0x87, 0x67, 0x27, 0xd5, 0x36, 0x3b, 0x62, 0x1c, + 0x08, 0x90, 0xe0, 0x6e, 0xf8, 0xd8, 0xdc, 0x1f, 0xb4, 0x2b, 0x5c, 0xfe, 0x9b, 0x5a, 0xc9, 0xad, + 0x93, 0x1d, 0x75, 0x19, 0x7f, 0xfd, 0x74, 0xfc, 0xff, 0xb0, 0x60, 0xb7, 0x9d, 0xdb, 0x27, 0x08, + 0x2e, 0x9e, 0xaf, 0x7a, 0xaf, 0xe9, 0xb7, 0x5d, 0x83, 0x14, 0x67, 0x04, 0x27, 0x93, 0x00, 0xf5, + 0x46, 0x8a, 0x8f, 0x11, 0xbe, 0x1e, 0x9e, 0x9d, 0x5e, 0x2b, 0xd1, 0x3a, 0xc9, 0xa9, 0xce, 0x49, + 0xbe, 0x91, 0x80, 0xa6, 0x37, 0x32, 0xbc, 0x07, 0xb3, 0xb0, 0xe9, 0xe3, 0x7d, 0x93, 0x3a, 0x8a, + 0xd1, 0x13, 0x09, 0xc4, 0x1f, 0x10, 0xdc, 0xf9, 0x88, 0x66, 0xc0, 0xb0, 0xd0, 0xce, 0x50, 0x8a, + 0x60, 0xe8, 0x4b, 0x14, 0x94, 0xf3, 0x2a, 0xf1, 0x7e, 0xb1, 0x48, 0x0e, 0x9f, 0x75, 0xdc, 0x66, + 0xe9, 0x54, 0xf7, 0xa2, 0x79, 0x15, 0xc4, 0x0a, 0x5c, 0x9c, 0xa0, 0xed, 0x5b, 0xba, 0xf3, 0x50, + 0xb5, 0x94, 0x06, 0xf0, 0xfc, 0x8f, 0x55, 0x33, 0xe0, 0x66, 0x44, 0xb7, 0x03, 0xdd, 0x36, 0xf0, + 0x85, 0x06, 0x6c, 0x1d, 0xbb, 0xdd, 0x73, 0x8d, 0xd6, 0x62, 0xf3, 0x9f, 0x0f, 0xe3, 0xb3, 0xac, + 0x1d, 0xf9, 0x00, 0xe1, 0x7e, 0xcf, 0xec, 0x11, 0xfe, 0x5b, 0xd1, 0xe9, 0x2c, 0x85, 0xe9, 0xe4, + 0x40, 0x0f, 0xac, 0x78, 0xed, 0xc3, 0x9f, 0xff, 0xfc, 0x2c, 0x75, 0x95, 0x5c, 0x96, 0xa3, 0x4d, + 0x2c, 0xf9, 0x02, 0xe1, 0xa1, 0xb0, 0xdb, 0x23, 0xb3, 0xd1, 0xf5, 0x39, 0xd6, 0x53, 0x90, 0x8e, + 0x1b, 0x0e, 0xa0, 0x66, 0x18, 0xa8, 0xeb, 0x44, 0xe4, 0x82, 0x6a, 0xf1, 0x97, 0xe4, 0x4b, 0x84, + 0x07, 0x43, 0x45, 0xc8, 0xcd, 0x63, 0xf5, 0xf2, 0x91, 0xcd, 0x1e, 0x33, 0x1a, 0x80, 0x2d, 0x32, + 0x60, 0x12, 0xb9, 0x99, 0x0c, 0x4c, 0xde, 0x03, 0x47, 0xb9, 0x4f, 0x7e, 0x44, 0xf8, 0x79, 0xbe, + 0x35, 0x23, 0x4b, 0x31, 0x07, 0x15, 0xe7, 0x05, 0x85, 0x5b, 0x27, 0x4f, 0x04, 0x0e, 0x6b, 0x8c, + 0xc3, 0x0a, 0xb9, 0xc5, 0x3f, 0x71, 0x77, 0xcc, 0xe4, 0x3d, 0x78, 0x2b, 0xf7, 0x65, 0xda, 0x2c, + 0xb4, 0xe3, 0xcf, 0xf0, 0x33, 0x84, 0x85, 0x68, 0xab, 0x46, 0x56, 0xa3, 0xa1, 0x25, 0x7a, 0x45, + 0xe1, 0xa5, 0xee, 0x92, 0x81, 0xdb, 0xeb, 0x8c, 0x5b, 0x96, 0xac, 0x71, 0xb9, 0xf9, 0xcf, 0x9d, + 0x2d, 0xef, 0x85, 0x1e, 0x43, 0x3e, 0xc7, 0x5f, 0x11, 0x1e, 0x8b, 0x74, 0x73, 0x64, 0x25, 0x1a, + 0x65, 0x92, 0x95, 0x14, 0x56, 0xbb, 0xca, 0x05, 0x82, 0x5b, 0x8c, 0xe0, 0x1a, 0x79, 0x99, 0x4b, + 0x10, 0x9e, 0x31, 0x5b, 0xde, 0x6b, 0x3e, 0x71, 0x7c, 0x7a, 0xdf, 0x23, 0x4c, 0x3a, 0x1d, 0x1f, + 0x59, 0x48, 0x56, 0xbf, 0xc3, 0x62, 0x0a, 0x8b, 0x27, 0x4b, 0x02, 0x26, 0xaf, 0x30, 0x26, 0xcb, + 0x64, 0xe9, 0x44, 0x47, 0xd5, 0xb4, 0x8f, 0xe4, 0x37, 0x84, 0x47, 0xb9, 0xa6, 0x8d, 0xbc, 0x18, + 0x3f, 0x1b, 0x51, 0x0e, 0x43, 0x58, 0x3a, 0x71, 0x1e, 0x70, 0x29, 0x30, 0x2e, 0x77, 0xc9, 0x1b, + 0x5c, 0x2e, 0xc1, 0x4b, 0x62, 0xcb, 0x7b, 0x1d, 0x0f, 0xd1, 0x7e, 0x10, 0xd9, 0x36, 0x79, 0xe4, + 0x1f, 0x84, 0xc7, 0x22, 0xdd, 0x58, 0xdc, 0x0d, 0x4c, 0xf2, 0x94, 0xc2, 0x6a, 0x57, 0xb9, 0xc0, + 0xf5, 0x5d, 0xc6, 0xf5, 0x01, 0x29, 0x9c, 0x86, 0x6b, 0xc4, 0xf1, 0x92, 0xbf, 0x11, 0x4e, 0x47, + 0x39, 0x2f, 0xb2, 0x9c, 0x38, 0x38, 0x91, 0x8c, 0x57, 0xba, 0x49, 0x05, 0xc2, 0x6f, 0x33, 0xc2, + 0x05, 0x72, 0xff, 0x34, 0x84, 0xb9, 0x93, 0xe9, 0x3e, 0x0c, 0xa3, 0x5c, 0x0f, 0x16, 0x77, 0x85, + 0xe3, 0x1c, 0x62, 0xdc, 0x15, 0x8e, 0x35, 0x7b, 0xe2, 0x06, 0x63, 0x79, 0x9b, 0xac, 0x9e, 0x82, + 0x25, 0x79, 0x8a, 0x70, 0x3a, 0xca, 0x1e, 0xc5, 0x1d, 0x5f, 0x82, 0x83, 0x8b, 0x3b, 0xbe, 0x24, + 0x37, 0x26, 0xde, 0x61, 0xc4, 0xb6, 0xc8, 0x66, 0x37, 0xc4, 0xda, 0x7d, 0x5c, 0x36, 0x7f, 0xf0, + 0x2c, 0xd3, 0x77, 0x70, 0x98, 0x41, 0x4f, 0x0e, 0x33, 0xe8, 0x8f, 0xc3, 0x0c, 0xfa, 0xf4, 0x28, + 0xd3, 0xf7, 0xe4, 0x28, 0xd3, 0xf7, 0xcb, 0x51, 0xa6, 0xef, 0x9d, 0xc5, 0xb2, 0xee, 0x3c, 0xac, + 0x15, 0xa5, 0x12, 0xad, 0x04, 0xdd, 0x66, 0x0d, 0xa5, 0x68, 0x37, 0x7b, 0xd7, 0x17, 0xe4, 0xc7, + 0x01, 0x00, 0x67, 0xb7, 0xaa, 0xd9, 0xc5, 0x7e, 0xf6, 0x3f, 0xc2, 0x85, 0x7f, 0x03, 0x00, 0x00, + 0xff, 0xff, 0xab, 0x77, 0x89, 0x62, 0x4d, 0x15, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/services/autocli.go b/x/services/autocli.go index 4f4aaf4f..5a9d2368 100644 --- a/x/services/autocli.go +++ b/x/services/autocli.go @@ -6,8 +6,8 @@ import ( autocliv1 "cosmossdk.io/api/cosmos/autocli/v1" "github.com/cosmos/cosmos-sdk/version" - servicesv1 "github.com/milkyway-labs/milkyway/v2/api/milkyway/services/v1" - "github.com/milkyway-labs/milkyway/v2/x/services/types" + servicesv1 "github.com/milkyway-labs/milkyway/v3/api/milkyway/services/v1" + "github.com/milkyway-labs/milkyway/v3/x/services/types" ) // AutoCLIOptions implements the autocli.HasAutoCLIConfig interface. diff --git a/x/services/client/cli/tx.go b/x/services/client/cli/tx.go index 7ba56156..140ca69b 100644 --- a/x/services/client/cli/tx.go +++ b/x/services/client/cli/tx.go @@ -10,7 +10,7 @@ import ( "github.com/cosmos/cosmos-sdk/version" "github.com/spf13/cobra" - "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/x/services/types" ) // GetTxCmd returns a new command to perform services transactions diff --git a/x/services/keeper/alias_functions.go b/x/services/keeper/alias_functions.go index 56eb4db7..ce29f37e 100644 --- a/x/services/keeper/alias_functions.go +++ b/x/services/keeper/alias_functions.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/x/services/types" ) // createAccountIfNotExists creates an account if it does not exist diff --git a/x/services/keeper/common_test.go b/x/services/keeper/common_test.go index 60ddc1a1..60171b68 100644 --- a/x/services/keeper/common_test.go +++ b/x/services/keeper/common_test.go @@ -10,8 +10,8 @@ import ( minttypes "github.com/cosmos/cosmos-sdk/x/mint/types" "github.com/stretchr/testify/suite" - "github.com/milkyway-labs/milkyway/v2/x/services/keeper" - "github.com/milkyway-labs/milkyway/v2/x/services/testutils" + "github.com/milkyway-labs/milkyway/v3/x/services/keeper" + "github.com/milkyway-labs/milkyway/v3/x/services/testutils" ) func TestKeeperTestSuite(t *testing.T) { diff --git a/x/services/keeper/genesis.go b/x/services/keeper/genesis.go index e753dc81..469b38c1 100644 --- a/x/services/keeper/genesis.go +++ b/x/services/keeper/genesis.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/x/services/types" ) // ExportGenesis returns the GenesisState associated with the given context diff --git a/x/services/keeper/genesis_test.go b/x/services/keeper/genesis_test.go index c280ea9c..1645a7d5 100644 --- a/x/services/keeper/genesis_test.go +++ b/x/services/keeper/genesis_test.go @@ -4,7 +4,7 @@ import ( sdkmath "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/x/services/types" ) func (suite *KeeperTestSuite) TestKeeper_ExportGenesis() { diff --git a/x/services/keeper/grpc_query.go b/x/services/keeper/grpc_query.go index 44fdce1c..85998faf 100644 --- a/x/services/keeper/grpc_query.go +++ b/x/services/keeper/grpc_query.go @@ -7,7 +7,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/x/services/types" ) var _ types.QueryServer = &Keeper{} diff --git a/x/services/keeper/grpc_query_test.go b/x/services/keeper/grpc_query_test.go index 1892dc02..c7a623f5 100644 --- a/x/services/keeper/grpc_query_test.go +++ b/x/services/keeper/grpc_query_test.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/x/services/types" ) func (suite *KeeperTestSuite) TestKeeper_Services() { diff --git a/x/services/keeper/hooks.go b/x/services/keeper/hooks.go index 93e8a1f2..cb78e626 100644 --- a/x/services/keeper/hooks.go +++ b/x/services/keeper/hooks.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/x/services/types" ) // Implement ServicesHooks interface diff --git a/x/services/keeper/invariants.go b/x/services/keeper/invariants.go index 0f69eaf5..110c0bd5 100644 --- a/x/services/keeper/invariants.go +++ b/x/services/keeper/invariants.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/x/services/types" ) // RegisterInvariants registers all services module invariants diff --git a/x/services/keeper/invariants_test.go b/x/services/keeper/invariants_test.go index fc75a728..a3a7c2a6 100644 --- a/x/services/keeper/invariants_test.go +++ b/x/services/keeper/invariants_test.go @@ -3,8 +3,8 @@ package keeper_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/services/keeper" - "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/x/services/keeper" + "github.com/milkyway-labs/milkyway/v3/x/services/types" ) func (suite *KeeperTestSuite) TestValidServicesInvariant() { diff --git a/x/services/keeper/keeper.go b/x/services/keeper/keeper.go index a868e6ce..8aa7d594 100644 --- a/x/services/keeper/keeper.go +++ b/x/services/keeper/keeper.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/x/services/types" ) type Keeper struct { diff --git a/x/services/keeper/msg_server.go b/x/services/keeper/msg_server.go index 67002ee2..cc7d2a8f 100644 --- a/x/services/keeper/msg_server.go +++ b/x/services/keeper/msg_server.go @@ -9,7 +9,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/x/services/types" ) var _ types.MsgServer = msgServer{} diff --git a/x/services/keeper/msg_server_test.go b/x/services/keeper/msg_server_test.go index 6eb9ccdf..a2148edb 100644 --- a/x/services/keeper/msg_server_test.go +++ b/x/services/keeper/msg_server_test.go @@ -6,8 +6,8 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" distrtypes "github.com/cosmos/cosmos-sdk/x/distribution/types" - "github.com/milkyway-labs/milkyway/v2/x/services/keeper" - "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/x/services/keeper" + "github.com/milkyway-labs/milkyway/v3/x/services/types" ) func (suite *KeeperTestSuite) TestMsgServer_CreateService() { diff --git a/x/services/keeper/params.go b/x/services/keeper/params.go index 24926fe9..7dd602d5 100644 --- a/x/services/keeper/params.go +++ b/x/services/keeper/params.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/x/services/types" ) // SetParams sets module parameters diff --git a/x/services/keeper/params_test.go b/x/services/keeper/params_test.go index 3b77ee4f..56ca898b 100644 --- a/x/services/keeper/params_test.go +++ b/x/services/keeper/params_test.go @@ -4,7 +4,7 @@ import ( sdkmath "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/x/services/types" ) func (suite *KeeperTestSuite) TestKeeper_SetParams() { diff --git a/x/services/keeper/services.go b/x/services/keeper/services.go index 8d5c31b4..15359333 100644 --- a/x/services/keeper/services.go +++ b/x/services/keeper/services.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/x/services/types" ) // SetNextServiceID sets the next service ID to be used when registering a new Service diff --git a/x/services/keeper/services_test.go b/x/services/keeper/services_test.go index d2e78893..1bd95d58 100644 --- a/x/services/keeper/services_test.go +++ b/x/services/keeper/services_test.go @@ -4,7 +4,7 @@ import ( sdkmath "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/x/services/types" ) func (suite *KeeperTestSuite) TestKeeper_SetNextServiceID() { diff --git a/x/services/module.go b/x/services/module.go index 5eceef03..ab5fb8c4 100644 --- a/x/services/module.go +++ b/x/services/module.go @@ -20,10 +20,10 @@ import ( authkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper" bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" - "github.com/milkyway-labs/milkyway/v2/x/services/client/cli" - "github.com/milkyway-labs/milkyway/v2/x/services/keeper" - "github.com/milkyway-labs/milkyway/v2/x/services/simulation" - "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/x/services/client/cli" + "github.com/milkyway-labs/milkyway/v3/x/services/keeper" + "github.com/milkyway-labs/milkyway/v3/x/services/simulation" + "github.com/milkyway-labs/milkyway/v3/x/services/types" ) const ( diff --git a/x/services/simulation/decoder.go b/x/services/simulation/decoder.go index 5a8375be..f70c12da 100644 --- a/x/services/simulation/decoder.go +++ b/x/services/simulation/decoder.go @@ -7,8 +7,8 @@ import ( "github.com/cosmos/cosmos-sdk/types/kv" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/milkyway-labs/milkyway/v2/x/services/keeper" - "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/x/services/keeper" + "github.com/milkyway-labs/milkyway/v3/x/services/types" ) // NewDecodeStore returns a decoder function closure that unmarshals the KVPair's diff --git a/x/services/simulation/genesis.go b/x/services/simulation/genesis.go index a98585cb..e7da7fcc 100644 --- a/x/services/simulation/genesis.go +++ b/x/services/simulation/genesis.go @@ -3,7 +3,7 @@ package simulation import ( "github.com/cosmos/cosmos-sdk/types/module" - "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/x/services/types" ) // RandomizedGenState generates a random GenesisState for the services module diff --git a/x/services/simulation/msg_factory.go b/x/services/simulation/msg_factory.go index 5932b27d..a84e866f 100644 --- a/x/services/simulation/msg_factory.go +++ b/x/services/simulation/msg_factory.go @@ -11,9 +11,9 @@ import ( bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" "github.com/cosmos/cosmos-sdk/x/simulation" - "github.com/milkyway-labs/milkyway/v2/testutils/simtesting" - "github.com/milkyway-labs/milkyway/v2/x/services/keeper" - "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/testutils/simtesting" + "github.com/milkyway-labs/milkyway/v3/x/services/keeper" + "github.com/milkyway-labs/milkyway/v3/x/services/types" ) // Simulation operation weights constants diff --git a/x/services/simulation/proposals.go b/x/services/simulation/proposals.go index a8d80fac..b97fe52a 100644 --- a/x/services/simulation/proposals.go +++ b/x/services/simulation/proposals.go @@ -9,8 +9,8 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" "github.com/cosmos/cosmos-sdk/x/simulation" - "github.com/milkyway-labs/milkyway/v2/x/services/keeper" - "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/x/services/keeper" + "github.com/milkyway-labs/milkyway/v3/x/services/types" ) // Simulation operation weights constants diff --git a/x/services/simulation/utils.go b/x/services/simulation/utils.go index 88b9b92a..d797ca18 100644 --- a/x/services/simulation/utils.go +++ b/x/services/simulation/utils.go @@ -6,10 +6,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/milkyway-labs/milkyway/v2/testutils/simtesting" - "github.com/milkyway-labs/milkyway/v2/utils" - "github.com/milkyway-labs/milkyway/v2/x/services/keeper" - "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/testutils/simtesting" + "github.com/milkyway-labs/milkyway/v3/utils" + "github.com/milkyway-labs/milkyway/v3/x/services/keeper" + "github.com/milkyway-labs/milkyway/v3/x/services/types" ) // RandomService returns a random service diff --git a/x/services/testutils/hooks_mocks.go b/x/services/testutils/hooks_mocks.go index bd8fd88d..3bc0c4bd 100644 --- a/x/services/testutils/hooks_mocks.go +++ b/x/services/testutils/hooks_mocks.go @@ -3,7 +3,7 @@ package testutils import ( "context" - "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/x/services/types" ) var _ types.ServicesHooks = &MockHooks{} diff --git a/x/services/testutils/keeper.go b/x/services/testutils/keeper.go index f06ae224..9a62a7fa 100644 --- a/x/services/testutils/keeper.go +++ b/x/services/testutils/keeper.go @@ -15,12 +15,12 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" "go.uber.org/mock/gomock" - milkyway "github.com/milkyway-labs/milkyway/v2/app" - "github.com/milkyway-labs/milkyway/v2/testutils/storetesting" - poolskeeper "github.com/milkyway-labs/milkyway/v2/x/pools/keeper" - poolstypes "github.com/milkyway-labs/milkyway/v2/x/pools/types" - "github.com/milkyway-labs/milkyway/v2/x/services/keeper" - servicestypes "github.com/milkyway-labs/milkyway/v2/x/services/types" + milkyway "github.com/milkyway-labs/milkyway/v3/app" + "github.com/milkyway-labs/milkyway/v3/testutils/storetesting" + poolskeeper "github.com/milkyway-labs/milkyway/v3/x/pools/keeper" + poolstypes "github.com/milkyway-labs/milkyway/v3/x/pools/types" + "github.com/milkyway-labs/milkyway/v3/x/services/keeper" + servicestypes "github.com/milkyway-labs/milkyway/v3/x/services/types" ) type KeeperTestData struct { diff --git a/x/services/types/genesis.go b/x/services/types/genesis.go index e5263830..92884e1d 100644 --- a/x/services/types/genesis.go +++ b/x/services/types/genesis.go @@ -3,7 +3,7 @@ package types import ( "fmt" - "github.com/milkyway-labs/milkyway/v2/utils" + "github.com/milkyway-labs/milkyway/v3/utils" ) // NewGenesisState returns a new GenesisState instance diff --git a/x/services/types/genesis.pb.go b/x/services/types/genesis.pb.go index 4bc1a0a1..fe95625e 100644 --- a/x/services/types/genesis.pb.go +++ b/x/services/types/genesis.pb.go @@ -187,8 +187,8 @@ var fileDescriptor_6ecc30a12329c1a6 = []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, 0xd3, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0x98, 0xb1, 0xba, 0x39, 0x89, 0x49, 0xc5, 0x70, 0x9e, 0x7e, - 0x99, 0x91, 0x7e, 0x05, 0x22, 0x65, 0x94, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x93, 0x85, - 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0x46, 0xf1, 0x8a, 0x6f, 0xae, 0x02, 0x00, 0x00, + 0x99, 0xb1, 0x7e, 0x05, 0x22, 0x65, 0x94, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x93, 0x85, + 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0xd1, 0x57, 0x97, 0x88, 0xae, 0x02, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/services/types/genesis_test.go b/x/services/types/genesis_test.go index 2851c2c0..1e9a5cc6 100644 --- a/x/services/types/genesis_test.go +++ b/x/services/types/genesis_test.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/x/services/types" ) func TestValidateGenesis(t *testing.T) { diff --git a/x/services/types/messages.pb.go b/x/services/types/messages.pb.go index f7674de8..ac6e9cf7 100644 --- a/x/services/types/messages.pb.go +++ b/x/services/types/messages.pb.go @@ -1114,78 +1114,78 @@ func init() { } var fileDescriptor_47bb30a8b53f4868 = []byte{ - // 1131 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x57, 0xbf, 0x73, 0xe3, 0xd4, - 0x13, 0x8f, 0xf2, 0xc3, 0xdf, 0xaf, 0xd7, 0x71, 0x92, 0x13, 0x19, 0xce, 0xd1, 0x25, 0xf6, 0x9d, - 0x72, 0x09, 0xb9, 0x10, 0x4b, 0xb1, 0x8f, 0x63, 0x38, 0x53, 0xc5, 0x17, 0x0a, 0x18, 0xcc, 0x65, - 0x14, 0xd2, 0xd0, 0x78, 0x64, 0xeb, 0x45, 0x11, 0xb1, 0x24, 0x8f, 0x9e, 0x6c, 0xe3, 0x8e, 0xa1, - 0x62, 0x28, 0x6e, 0xf8, 0x07, 0x28, 0x28, 0x68, 0xa8, 0x52, 0x50, 0x50, 0x51, 0x5f, 0xc7, 0x0d, - 0x43, 0x41, 0x65, 0x18, 0xa7, 0xc8, 0x0c, 0x65, 0x66, 0x68, 0xa8, 0x18, 0x3f, 0x3d, 0xc9, 0x92, - 0x6c, 0x09, 0x27, 0x70, 0xa1, 0xb9, 0xcb, 0xdb, 0xfd, 0xec, 0xdb, 0xfd, 0xec, 0xae, 0x77, 0x9f, - 0x60, 0x5d, 0xd7, 0x1a, 0xa7, 0xdd, 0x8e, 0xdc, 0x15, 0x31, 0xb2, 0xda, 0x5a, 0x1d, 0x61, 0xb1, - 0x5d, 0x10, 0x75, 0x84, 0xb1, 0xac, 0x22, 0x2c, 0x34, 0x2d, 0xd3, 0x36, 0xd9, 0x65, 0x17, 0x24, - 0xb8, 0x20, 0xa1, 0x5d, 0xe0, 0x6e, 0xc9, 0xba, 0x66, 0x98, 0x22, 0xf9, 0xd7, 0x01, 0x72, 0x2b, - 0x75, 0x13, 0xeb, 0x26, 0xae, 0x92, 0x93, 0xe8, 0x1c, 0xa8, 0x2a, 0xeb, 0x9c, 0xc4, 0x9a, 0x8c, - 0x91, 0xd8, 0x2e, 0xd4, 0x90, 0x2d, 0x17, 0xc4, 0xba, 0xa9, 0x19, 0x54, 0x7f, 0x9b, 0xea, 0x75, - 0xac, 0x92, 0x08, 0xb0, 0x4a, 0x15, 0xcb, 0xaa, 0xa9, 0x9a, 0xce, 0x85, 0x83, 0xbf, 0xa8, 0xf4, - 0xde, 0xd8, 0xb8, 0x9b, 0xb2, 0x25, 0xeb, 0x38, 0x16, 0xa2, 0x9b, 0x0a, 0x6a, 0x50, 0x08, 0xff, - 0xfd, 0x0c, 0x2c, 0x55, 0xb0, 0xfa, 0xc4, 0x42, 0xb2, 0x8d, 0x0e, 0x1d, 0x14, 0xbb, 0x0b, 0x09, - 0x8c, 0x0c, 0x05, 0x59, 0x19, 0xe6, 0x2e, 0xb3, 0x95, 0x2c, 0x67, 0x7e, 0xfa, 0x2e, 0xbf, 0x4c, - 0xb9, 0xec, 0x29, 0x8a, 0x85, 0x30, 0x3e, 0xb4, 0x2d, 0xcd, 0x50, 0x25, 0x8a, 0x63, 0xd7, 0x61, - 0xd6, 0x90, 0x75, 0x94, 0x99, 0x26, 0xf8, 0xc5, 0xcb, 0x5e, 0x2e, 0xd5, 0x95, 0xf5, 0x46, 0x89, - 0x1f, 0x48, 0x79, 0x89, 0x28, 0xd9, 0xb7, 0x20, 0xa5, 0x20, 0x5c, 0xb7, 0xb4, 0xa6, 0xad, 0x99, - 0x46, 0x66, 0x86, 0x60, 0x5f, 0xbd, 0xec, 0xe5, 0x58, 0x07, 0xeb, 0x53, 0xf2, 0x92, 0x1f, 0xca, - 0xee, 0xc0, 0xff, 0x3a, 0xa8, 0x86, 0x35, 0x1b, 0x65, 0x66, 0x89, 0x15, 0x7b, 0xd9, 0xcb, 0x2d, - 0x38, 0x56, 0x54, 0xc1, 0x4b, 0x2e, 0x84, 0x7d, 0x07, 0x52, 0x4d, 0xad, 0x6e, 0xb7, 0x2c, 0x54, - 0x6d, 0x59, 0x8d, 0xcc, 0x1c, 0xb1, 0xb8, 0xdf, 0xef, 0xe5, 0xe0, 0xc0, 0x11, 0x1f, 0x49, 0xef, - 0x0f, 0xbd, 0xfa, 0xa0, 0xbc, 0x04, 0xf4, 0x74, 0x64, 0x35, 0xd8, 0x8f, 0x01, 0x8e, 0x11, 0xaa, - 0xca, 0xba, 0xd9, 0x32, 0xec, 0x4c, 0xe2, 0xee, 0xcc, 0x56, 0xaa, 0xb8, 0x22, 0xd0, 0x34, 0x0c, - 0x8a, 0x28, 0xd0, 0x22, 0x0a, 0x4f, 0x4c, 0xcd, 0x28, 0xef, 0x3e, 0xef, 0xe5, 0xa6, 0xbe, 0xfd, - 0x35, 0xb7, 0xa5, 0x6a, 0xf6, 0x49, 0xab, 0x26, 0xd4, 0x4d, 0x9d, 0xd6, 0x9f, 0xfe, 0x97, 0xc7, - 0xca, 0xa9, 0x68, 0x77, 0x9b, 0x08, 0x13, 0x03, 0x2c, 0x25, 0x8f, 0x11, 0xda, 0x23, 0xb7, 0x97, - 0x8a, 0x9f, 0x5d, 0x9c, 0x6d, 0xd3, 0x64, 0x7e, 0x71, 0x71, 0xb6, 0xcd, 0x8f, 0x56, 0x2e, 0x5c, - 0x25, 0x5e, 0x82, 0x4c, 0x58, 0x26, 0x21, 0xdc, 0x34, 0x0d, 0x8c, 0xd8, 0x37, 0x61, 0xc1, 0x40, - 0x9d, 0x2a, 0x35, 0xae, 0x6a, 0x0a, 0xa9, 0x64, 0xba, 0xbc, 0xd4, 0xef, 0xe5, 0xe6, 0x3f, 0x40, - 0x1d, 0x8a, 0x7f, 0x77, 0x5f, 0x9a, 0x37, 0x86, 0x27, 0x85, 0xff, 0x73, 0x9a, 0xb4, 0xc3, 0x51, - 0x53, 0xf9, 0x47, 0xed, 0xb0, 0x03, 0xe0, 0x73, 0x3d, 0x4d, 0x5c, 0xa7, 0xfb, 0xbd, 0x5c, 0x72, - 0xe8, 0x37, 0x89, 0x5d, 0xa7, 0x5e, 0xf3, 0xcc, 0x5c, 0xa1, 0x79, 0x66, 0xaf, 0xd5, 0x3c, 0x73, - 0x57, 0x6e, 0x9e, 0xc4, 0xf5, 0x9a, 0x67, 0xc2, 0x82, 0x06, 0xf2, 0xcc, 0x73, 0xa4, 0xa0, 0x01, - 0x99, 0x5b, 0x50, 0xfe, 0x6b, 0x06, 0xd8, 0x0a, 0x56, 0xf7, 0xea, 0xb6, 0xd6, 0xbe, 0xb9, 0xd2, - 0x94, 0x5e, 0x0f, 0xd1, 0xb8, 0xe3, 0xd1, 0x18, 0x0d, 0x86, 0x5f, 0x05, 0x6e, 0x54, 0xea, 0x31, - 0xf8, 0x86, 0x81, 0xe5, 0x0a, 0x56, 0xf7, 0x91, 0x7c, 0xc3, 0x1c, 0xf2, 0x21, 0x0e, 0x6b, 0x7e, - 0x0e, 0x23, 0xe1, 0xf0, 0x59, 0x58, 0x1d, 0x27, 0xf7, 0x78, 0x7c, 0xc5, 0x90, 0x9f, 0xc8, 0x3e, - 0x6a, 0xa0, 0x9b, 0xe3, 0xf0, 0x20, 0xc4, 0x61, 0x25, 0xc8, 0xc1, 0x17, 0x0a, 0xed, 0xa2, 0x80, - 0xcc, 0x8b, 0xfd, 0x77, 0x06, 0xee, 0x54, 0xb0, 0xfa, 0xa1, 0x25, 0x1b, 0xf8, 0x18, 0x59, 0x54, - 0xfd, 0xb4, 0x63, 0x20, 0x0b, 0x9f, 0x68, 0xcd, 0x97, 0xfe, 0x4b, 0x7f, 0x04, 0xc9, 0xc1, 0x58, - 0x92, 0x15, 0x5d, 0x73, 0xe7, 0x7f, 0xb4, 0x8b, 0xff, 0x1b, 0xa8, 0xb3, 0x37, 0x40, 0x96, 0xde, - 0x08, 0xb1, 0xbf, 0xef, 0x67, 0x1f, 0x45, 0x86, 0xdf, 0x80, 0xf5, 0x18, 0xb5, 0x97, 0x93, 0x3f, - 0x18, 0x78, 0xa5, 0x82, 0xd5, 0x43, 0x64, 0x53, 0xc8, 0x01, 0x59, 0xa1, 0x2f, 0x3d, 0x17, 0x07, - 0xb0, 0xe0, 0xa2, 0x9d, 0xa5, 0x4d, 0x12, 0x92, 0x2a, 0xae, 0x0b, 0xe3, 0xde, 0x1a, 0x42, 0x20, - 0xb8, 0xf2, 0xec, 0x60, 0xd9, 0x48, 0x69, 0xec, 0x17, 0x96, 0x76, 0x42, 0x69, 0x5a, 0xf5, 0xa7, - 0x29, 0xcc, 0x8f, 0x5f, 0x23, 0xad, 0x10, 0x16, 0x7b, 0x69, 0xf9, 0x91, 0x81, 0x45, 0x6f, 0x1a, - 0xd1, 0x94, 0xbc, 0x07, 0x49, 0xb9, 0x65, 0x9f, 0x98, 0x96, 0x66, 0x77, 0x69, 0x56, 0x76, 0x2e, - 0x7b, 0xb9, 0x25, 0x67, 0x16, 0x7a, 0x2a, 0x3e, 0x32, 0x53, 0x43, 0x73, 0xb6, 0x04, 0x09, 0x4a, - 0x7b, 0x9a, 0xd0, 0x5e, 0x1d, 0x4f, 0x3b, 0xc0, 0x97, 0x5a, 0x38, 0xfd, 0x30, 0xbc, 0x6b, 0xc0, - 0xf5, 0x5e, 0xcc, 0x7c, 0xa5, 0x84, 0x57, 0xe0, 0x76, 0x48, 0xe4, 0x91, 0xfd, 0xc1, 0x9d, 0xae, - 0x75, 0x0b, 0x29, 0x9a, 0x9b, 0x91, 0x7f, 0x95, 0xef, 0xd5, 0x7e, 0xef, 0xc2, 0x28, 0xc3, 0xd0, - 0xe8, 0x0d, 0x44, 0xea, 0x8d, 0xde, 0x80, 0xd4, 0xa3, 0xf7, 0x33, 0x03, 0x6b, 0x15, 0xac, 0x4a, - 0xa8, 0x6d, 0x9e, 0xba, 0x33, 0xc1, 0xc5, 0xca, 0x64, 0x47, 0xfe, 0x77, 0x4c, 0x1f, 0x8f, 0x32, - 0xdd, 0xf4, 0x33, 0x8d, 0x0e, 0x9a, 0x7f, 0x0d, 0x36, 0x62, 0x01, 0x2e, 0xff, 0xe2, 0xb3, 0x24, - 0xcc, 0x54, 0xb0, 0xca, 0xaa, 0x90, 0x0e, 0x3e, 0x74, 0x37, 0xc7, 0x37, 0x5d, 0xf8, 0x59, 0xc5, - 0x09, 0x93, 0xe1, 0xbc, 0xe7, 0x97, 0x0a, 0xe9, 0xe0, 0x13, 0x2a, 0xda, 0x51, 0x00, 0x17, 0xe3, - 0x68, 0xec, 0xb3, 0x80, 0xd5, 0x61, 0x31, 0xfc, 0x24, 0xd8, 0x8a, 0xbc, 0x22, 0x84, 0xe4, 0x76, - 0x27, 0x45, 0x7a, 0xee, 0x30, 0xdc, 0x1a, 0xdd, 0xdf, 0xdb, 0x91, 0xd7, 0x8c, 0x60, 0xb9, 0xe2, - 0xe4, 0x58, 0x7f, 0x32, 0x83, 0xcb, 0x76, 0x33, 0xe6, 0x12, 0x1f, 0x2e, 0x26, 0x99, 0x63, 0xb7, - 0x23, 0xfb, 0x39, 0x03, 0x99, 0xc8, 0xd5, 0x58, 0x88, 0xbc, 0x2c, 0xca, 0x84, 0x7b, 0x7c, 0x65, - 0x13, 0x2f, 0x94, 0x26, 0x2c, 0x8d, 0x2c, 0xa4, 0x07, 0x91, 0xd7, 0x85, 0xa1, 0x5c, 0x61, 0x62, - 0xa8, 0xe7, 0x51, 0x81, 0xf9, 0xc0, 0xac, 0xdf, 0xf8, 0x9b, 0x4e, 0xa4, 0x9e, 0xf2, 0x13, 0xc1, - 0x82, 0xfd, 0x1a, 0x1c, 0xb2, 0x71, 0xfd, 0x1a, 0x40, 0xc6, 0xf6, 0xeb, 0xd8, 0xc1, 0xc7, 0x3e, - 0x63, 0x80, 0x8b, 0x99, 0x7a, 0x0f, 0x23, 0x2f, 0x8c, 0x36, 0xe2, 0xde, 0xbe, 0x86, 0x91, 0x1b, - 0x10, 0x37, 0xf7, 0xe9, 0xc5, 0xd9, 0x36, 0x53, 0x7e, 0xfa, 0xbc, 0x9f, 0x65, 0x5e, 0xf4, 0xb3, - 0xcc, 0x6f, 0xfd, 0x2c, 0xf3, 0xe5, 0x79, 0x76, 0xea, 0xc5, 0x79, 0x76, 0xea, 0x97, 0xf3, 0xec, - 0xd4, 0x47, 0x8f, 0x7c, 0x5f, 0x8f, 0xae, 0x9f, 0x7c, 0x43, 0xae, 0x61, 0xef, 0x24, 0xb6, 0x8b, - 0xe2, 0x27, 0xc3, 0x2d, 0x47, 0x3e, 0x28, 0x6b, 0x09, 0xf2, 0x35, 0xff, 0xf0, 0xaf, 0x00, 0x00, - 0x00, 0xff, 0xff, 0x6c, 0x09, 0xfa, 0xec, 0xcd, 0x10, 0x00, 0x00, + // 1129 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x57, 0xbf, 0x73, 0xe3, 0x54, + 0x10, 0x8e, 0xf2, 0x0b, 0xbc, 0x8e, 0x93, 0x9c, 0xc8, 0x70, 0x8e, 0x2e, 0xb1, 0xef, 0x94, 0x4b, + 0xc8, 0x85, 0x58, 0x8a, 0x1d, 0x8e, 0xe1, 0x4c, 0x15, 0x5f, 0x28, 0x60, 0x30, 0x97, 0x51, 0x48, + 0x43, 0xe3, 0x91, 0xad, 0x17, 0x45, 0xc4, 0x92, 0x3c, 0x7a, 0xb2, 0x8d, 0x3b, 0x86, 0x8a, 0xa1, + 0xb8, 0xe1, 0x1f, 0xa0, 0xa0, 0xa0, 0xa1, 0x4a, 0x41, 0x41, 0x45, 0x7d, 0x1d, 0x37, 0x0c, 0x05, + 0x95, 0x61, 0x9c, 0x22, 0x33, 0x94, 0x99, 0xa1, 0xa1, 0x62, 0xfc, 0xf4, 0x24, 0x4b, 0xb2, 0x25, + 0x9c, 0xc0, 0xe5, 0x9a, 0xbb, 0xbc, 0xdd, 0x6f, 0xdf, 0xee, 0xb7, 0xbb, 0xde, 0x7d, 0x82, 0x35, + 0x5d, 0xab, 0x9f, 0x76, 0xda, 0x72, 0x47, 0xc4, 0xc8, 0x6a, 0x69, 0x35, 0x84, 0xc5, 0x56, 0x5e, + 0xd4, 0x11, 0xc6, 0xb2, 0x8a, 0xb0, 0xd0, 0xb0, 0x4c, 0xdb, 0x64, 0x97, 0x5c, 0x90, 0xe0, 0x82, + 0x84, 0x56, 0x9e, 0xbb, 0x25, 0xeb, 0x9a, 0x61, 0x8a, 0xe4, 0x5f, 0x07, 0xc8, 0x2d, 0xd7, 0x4c, + 0xac, 0x9b, 0xb8, 0x42, 0x4e, 0xa2, 0x73, 0xa0, 0xaa, 0x8c, 0x73, 0x12, 0xab, 0x32, 0x46, 0x62, + 0x2b, 0x5f, 0x45, 0xb6, 0x9c, 0x17, 0x6b, 0xa6, 0x66, 0x50, 0xfd, 0x6d, 0xaa, 0xd7, 0xb1, 0x4a, + 0x22, 0xc0, 0x2a, 0x55, 0x2c, 0xa9, 0xa6, 0x6a, 0x3a, 0x17, 0xf6, 0xff, 0xa2, 0xd2, 0x7b, 0x23, + 0xe3, 0x6e, 0xc8, 0x96, 0xac, 0xe3, 0x58, 0x88, 0x6e, 0x2a, 0xa8, 0x4e, 0x21, 0xfc, 0x8f, 0x53, + 0xb0, 0x58, 0xc6, 0xea, 0x63, 0x0b, 0xc9, 0x36, 0x3a, 0x74, 0x50, 0xec, 0x0e, 0xcc, 0x62, 0x64, + 0x28, 0xc8, 0x4a, 0x33, 0x77, 0x99, 0xcd, 0x44, 0x29, 0xfd, 0xcb, 0x0f, 0xb9, 0x25, 0xca, 0x65, + 0x4f, 0x51, 0x2c, 0x84, 0xf1, 0xa1, 0x6d, 0x69, 0x86, 0x2a, 0x51, 0x1c, 0xbb, 0x06, 0xd3, 0x86, + 0xac, 0xa3, 0xf4, 0x24, 0xc1, 0x2f, 0x5c, 0x76, 0xb3, 0xc9, 0x8e, 0xac, 0xd7, 0x8b, 0x7c, 0x5f, + 0xca, 0x4b, 0x44, 0xc9, 0xbe, 0x03, 0x49, 0x05, 0xe1, 0x9a, 0xa5, 0x35, 0x6c, 0xcd, 0x34, 0xd2, + 0x53, 0x04, 0xfb, 0xfa, 0x65, 0x37, 0xcb, 0x3a, 0x58, 0x9f, 0x92, 0x97, 0xfc, 0x50, 0x76, 0x1b, + 0x5e, 0x69, 0xa3, 0x2a, 0xd6, 0x6c, 0x94, 0x9e, 0x26, 0x56, 0xec, 0x65, 0x37, 0x3b, 0xef, 0x58, + 0x51, 0x05, 0x2f, 0xb9, 0x10, 0xf6, 0x3d, 0x48, 0x36, 0xb4, 0x9a, 0xdd, 0xb4, 0x50, 0xa5, 0x69, + 0xd5, 0xd3, 0x33, 0xc4, 0xe2, 0x7e, 0xaf, 0x9b, 0x85, 0x03, 0x47, 0x7c, 0x24, 0x7d, 0x38, 0xf0, + 0xea, 0x83, 0xf2, 0x12, 0xd0, 0xd3, 0x91, 0x55, 0x67, 0x3f, 0x05, 0x38, 0x46, 0xa8, 0x22, 0xeb, + 0x66, 0xd3, 0xb0, 0xd3, 0xb3, 0x77, 0xa7, 0x36, 0x93, 0x85, 0x65, 0x81, 0xa6, 0xa1, 0x5f, 0x44, + 0x81, 0x16, 0x51, 0x78, 0x6c, 0x6a, 0x46, 0x69, 0xe7, 0x59, 0x37, 0x3b, 0xf1, 0xfd, 0xef, 0xd9, + 0x4d, 0x55, 0xb3, 0x4f, 0x9a, 0x55, 0xa1, 0x66, 0xea, 0xb4, 0xfe, 0xf4, 0xbf, 0x1c, 0x56, 0x4e, + 0x45, 0xbb, 0xd3, 0x40, 0x98, 0x18, 0x60, 0x29, 0x71, 0x8c, 0xd0, 0x1e, 0xb9, 0xbd, 0x58, 0xf8, + 0xe2, 0xe2, 0x6c, 0x8b, 0x26, 0xf3, 0xab, 0x8b, 0xb3, 0x2d, 0x7e, 0xb8, 0x72, 0xe1, 0x2a, 0xf1, + 0x12, 0xa4, 0xc3, 0x32, 0x09, 0xe1, 0x86, 0x69, 0x60, 0xc4, 0xbe, 0x0d, 0xf3, 0x06, 0x6a, 0x57, + 0xa8, 0x71, 0x45, 0x53, 0x48, 0x25, 0x53, 0xa5, 0xc5, 0x5e, 0x37, 0x3b, 0xf7, 0x11, 0x6a, 0x53, + 0xfc, 0xfb, 0xfb, 0xd2, 0x9c, 0x31, 0x38, 0x29, 0xfc, 0xdf, 0x93, 0xa4, 0x1d, 0x8e, 0x1a, 0xca, + 0x7f, 0x6a, 0x87, 0x6d, 0x00, 0x9f, 0xeb, 0x49, 0xe2, 0x3a, 0xd5, 0xeb, 0x66, 0x13, 0x03, 0xbf, + 0x09, 0xec, 0x3a, 0xf5, 0x9a, 0x67, 0xea, 0x0a, 0xcd, 0x33, 0x7d, 0xad, 0xe6, 0x99, 0xb9, 0x72, + 0xf3, 0xcc, 0x5e, 0xaf, 0x79, 0xc6, 0x2c, 0x68, 0x20, 0xcf, 0x3c, 0x47, 0x0a, 0x1a, 0x90, 0xb9, + 0x05, 0xe5, 0xbf, 0x65, 0x80, 0x2d, 0x63, 0x75, 0xaf, 0x66, 0x6b, 0xad, 0x9b, 0x2b, 0x4d, 0xf1, + 0xcd, 0x10, 0x8d, 0x3b, 0x1e, 0x8d, 0xe1, 0x60, 0xf8, 0x15, 0xe0, 0x86, 0xa5, 0x1e, 0x83, 0xef, + 0x18, 0x58, 0x2a, 0x63, 0x75, 0x1f, 0xc9, 0x37, 0xcc, 0x21, 0x17, 0xe2, 0xb0, 0xea, 0xe7, 0x30, + 0x14, 0x0e, 0x9f, 0x81, 0x95, 0x51, 0x72, 0x8f, 0xc7, 0x37, 0x0c, 0xf9, 0x89, 0xec, 0xa3, 0x3a, + 0xba, 0x39, 0x0e, 0x0f, 0x42, 0x1c, 0x96, 0x83, 0x1c, 0x7c, 0xa1, 0xd0, 0x2e, 0x0a, 0xc8, 0xbc, + 0xd8, 0xff, 0x64, 0xe0, 0x4e, 0x19, 0xab, 0x1f, 0x5b, 0xb2, 0x81, 0x8f, 0x91, 0x45, 0xd5, 0x4f, + 0xda, 0x06, 0xb2, 0xf0, 0x89, 0xd6, 0x78, 0xe1, 0xbf, 0xf4, 0x87, 0x90, 0xe8, 0x8f, 0x25, 0x59, + 0xd1, 0x35, 0x77, 0xfe, 0x47, 0xbb, 0x78, 0xd5, 0x40, 0xed, 0xbd, 0x3e, 0xb2, 0xf8, 0x56, 0x88, + 0xfd, 0x7d, 0x3f, 0xfb, 0x28, 0x32, 0xfc, 0x3a, 0xac, 0xc5, 0xa8, 0xbd, 0x9c, 0xfc, 0xc5, 0xc0, + 0x6b, 0x65, 0xac, 0x1e, 0x22, 0x9b, 0x42, 0x0e, 0xc8, 0x0a, 0x7d, 0xe1, 0xb9, 0x38, 0x80, 0x79, + 0x17, 0xed, 0x2c, 0x6d, 0x92, 0x90, 0x64, 0x61, 0x4d, 0x18, 0xf5, 0xd6, 0x10, 0x02, 0xc1, 0x95, + 0xa6, 0xfb, 0xcb, 0x46, 0x4a, 0x61, 0xbf, 0xb0, 0xb8, 0x1d, 0x4a, 0xd3, 0x8a, 0x3f, 0x4d, 0x61, + 0x7e, 0xfc, 0x2a, 0x69, 0x85, 0xb0, 0xd8, 0x4b, 0xcb, 0xcf, 0x0c, 0x2c, 0x78, 0xd3, 0x88, 0xa6, + 0xe4, 0x03, 0x48, 0xc8, 0x4d, 0xfb, 0xc4, 0xb4, 0x34, 0xbb, 0x43, 0xb3, 0xb2, 0x7d, 0xd9, 0xcd, + 0x2e, 0x3a, 0xb3, 0xd0, 0x53, 0xf1, 0x91, 0x99, 0x1a, 0x98, 0xb3, 0x45, 0x98, 0xa5, 0xb4, 0x27, + 0x09, 0xed, 0x95, 0xd1, 0xb4, 0x03, 0x7c, 0xa9, 0x85, 0xd3, 0x0f, 0x83, 0xbb, 0xfa, 0x5c, 0xef, + 0xc5, 0xcc, 0x57, 0x4a, 0x78, 0x19, 0x6e, 0x87, 0x44, 0x1e, 0xd9, 0x9f, 0xdc, 0xe9, 0x5a, 0xb3, + 0x90, 0xa2, 0xb9, 0x19, 0xf9, 0x5f, 0xf9, 0x5e, 0xed, 0xf7, 0x2e, 0x0c, 0x33, 0x0c, 0x8d, 0xde, + 0x40, 0xa4, 0xde, 0xe8, 0x0d, 0x48, 0x3d, 0x7a, 0xbf, 0x32, 0xb0, 0x5a, 0xc6, 0xaa, 0x84, 0x5a, + 0xe6, 0xa9, 0x3b, 0x13, 0x5c, 0xac, 0x4c, 0x76, 0xe4, 0xcb, 0x63, 0xfa, 0x68, 0x98, 0xe9, 0x86, + 0x9f, 0x69, 0x74, 0xd0, 0xfc, 0x1b, 0xb0, 0x1e, 0x0b, 0x70, 0xf9, 0x17, 0x9e, 0x26, 0x60, 0xaa, + 0x8c, 0x55, 0x56, 0x85, 0x54, 0xf0, 0xa1, 0xbb, 0x31, 0xba, 0xe9, 0xc2, 0xcf, 0x2a, 0x4e, 0x18, + 0x0f, 0xe7, 0x3d, 0xbf, 0x54, 0x48, 0x05, 0x9f, 0x50, 0xd1, 0x8e, 0x02, 0xb8, 0x18, 0x47, 0x23, + 0x9f, 0x05, 0xac, 0x0e, 0x0b, 0xe1, 0x27, 0xc1, 0x66, 0xe4, 0x15, 0x21, 0x24, 0xb7, 0x33, 0x2e, + 0xd2, 0x73, 0x87, 0xe1, 0xd6, 0xf0, 0xfe, 0xde, 0x8a, 0xbc, 0x66, 0x08, 0xcb, 0x15, 0xc6, 0xc7, + 0xfa, 0x93, 0x19, 0x5c, 0xb6, 0x1b, 0x31, 0x97, 0xf8, 0x70, 0x31, 0xc9, 0x1c, 0xb9, 0x1d, 0xd9, + 0x2f, 0x19, 0x48, 0x47, 0xae, 0xc6, 0x7c, 0xe4, 0x65, 0x51, 0x26, 0xdc, 0xa3, 0x2b, 0x9b, 0x78, + 0xa1, 0x34, 0x60, 0x71, 0x68, 0x21, 0x3d, 0x88, 0xbc, 0x2e, 0x0c, 0xe5, 0xf2, 0x63, 0x43, 0x3d, + 0x8f, 0x0a, 0xcc, 0x05, 0x66, 0xfd, 0xfa, 0xbf, 0x74, 0x22, 0xf5, 0x94, 0x1b, 0x0b, 0x16, 0xec, + 0xd7, 0xe0, 0x90, 0x8d, 0xeb, 0xd7, 0x00, 0x32, 0xb6, 0x5f, 0x47, 0x0e, 0x3e, 0xf6, 0x29, 0x03, + 0x5c, 0xcc, 0xd4, 0xdb, 0x8d, 0xbc, 0x30, 0xda, 0x88, 0x7b, 0xf7, 0x1a, 0x46, 0x6e, 0x40, 0xdc, + 0xcc, 0xe7, 0x17, 0x67, 0x5b, 0x4c, 0xe9, 0xc9, 0xb3, 0x5e, 0x86, 0x79, 0xde, 0xcb, 0x30, 0x7f, + 0xf4, 0x32, 0xcc, 0xd7, 0xe7, 0x99, 0x89, 0xe7, 0xe7, 0x99, 0x89, 0xdf, 0xce, 0x33, 0x13, 0x9f, + 0x3c, 0xf4, 0x7d, 0x3d, 0xba, 0x7e, 0x72, 0x75, 0xb9, 0x8a, 0xbd, 0x93, 0xd8, 0xda, 0x15, 0x3f, + 0x1b, 0x6c, 0x39, 0xf2, 0x41, 0x59, 0x9d, 0x25, 0x5f, 0xf3, 0xbb, 0xff, 0x04, 0x00, 0x00, 0xff, + 0xff, 0xfb, 0xaf, 0xe7, 0x0b, 0xcd, 0x10, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/services/types/messages_test.go b/x/services/types/messages_test.go index 50df6543..95777906 100644 --- a/x/services/types/messages_test.go +++ b/x/services/types/messages_test.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/x/services/types" ) var msgCreateService = types.NewMsgCreateService( diff --git a/x/services/types/models.go b/x/services/types/models.go index a4f71fdc..04266558 100644 --- a/x/services/types/models.go +++ b/x/services/types/models.go @@ -9,7 +9,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/milkyway-labs/milkyway/v2/utils" + "github.com/milkyway-labs/milkyway/v3/utils" ) // GetServiceAddress generates a service address from its id diff --git a/x/services/types/models.pb.go b/x/services/types/models.pb.go index 545794f3..654539f3 100644 --- a/x/services/types/models.pb.go +++ b/x/services/types/models.pb.go @@ -183,43 +183,43 @@ var fileDescriptor_4411e719afee9a70 = []byte{ // 617 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x93, 0xcf, 0x6e, 0xd3, 0x4e, 0x10, 0xc7, 0xed, 0x24, 0x4d, 0xda, 0x8d, 0xda, 0x5f, 0xb4, 0xea, 0xaf, 0x6c, 0x03, 0x72, 0x4c, - 0x11, 0x92, 0x05, 0xaa, 0x4d, 0x52, 0xc1, 0x85, 0x53, 0xfe, 0x18, 0x29, 0x12, 0xaa, 0x2a, 0x3b, + 0x11, 0x92, 0x05, 0xaa, 0x4d, 0x5a, 0xc1, 0x85, 0x53, 0xfe, 0x18, 0x29, 0x12, 0xaa, 0x2a, 0x3b, 0xe9, 0x81, 0x4b, 0xb4, 0xf1, 0xae, 0xd2, 0x55, 0x6d, 0x6f, 0xe4, 0xdd, 0xa4, 0x54, 0xe2, 0x01, 0xe0, 0xc6, 0x3b, 0x70, 0xe3, 0xcc, 0x33, 0xa0, 0x1e, 0x2b, 0x4e, 0x9c, 0x0a, 0xa4, 0x2f, 0x82, - 0xba, 0xde, 0x94, 0xaa, 0xaa, 0x04, 0x27, 0xef, 0xcc, 0xf7, 0x33, 0xfb, 0x1d, 0x8d, 0x77, 0xc0, - 0xc3, 0x84, 0xc5, 0xc7, 0xa7, 0x27, 0xf8, 0xd4, 0x13, 0x34, 0x9b, 0xb3, 0x88, 0x0a, 0x6f, 0xde, - 0xf4, 0x12, 0x4e, 0x68, 0x2c, 0xdc, 0x69, 0xc6, 0x25, 0x87, 0x9b, 0x4b, 0xc4, 0x5d, 0x22, 0xee, - 0xbc, 0x59, 0xdf, 0x9c, 0xf0, 0x09, 0x57, 0x80, 0x77, 0x75, 0xca, 0xd9, 0xfa, 0x76, 0xc4, 0x45, - 0xc2, 0xc5, 0x28, 0x17, 0xf2, 0x40, 0x4b, 0x56, 0x1e, 0x79, 0x63, 0x2c, 0xa8, 0x37, 0x6f, 0x8e, - 0xa9, 0xc4, 0x4d, 0x2f, 0xe2, 0x2c, 0xcd, 0xf5, 0x9d, 0xaf, 0x25, 0x50, 0x09, 0x73, 0x03, 0xb8, - 0x05, 0x0a, 0x8c, 0x20, 0xd3, 0x36, 0x9d, 0xf5, 0x4e, 0x79, 0x71, 0xd1, 0x28, 0xf4, 0x7b, 0x41, - 0x81, 0x11, 0xf8, 0x12, 0x94, 0x85, 0xc4, 0x72, 0x26, 0x50, 0xc1, 0x36, 0x9d, 0x8d, 0xd6, 0x23, - 0xf7, 0xae, 0xde, 0x5c, 0x7d, 0x4d, 0xa8, 0xd0, 0x40, 0x97, 0x40, 0x17, 0xac, 0x60, 0x92, 0xb0, - 0x14, 0x15, 0x6d, 0xd3, 0x59, 0xeb, 0xa0, 0x6f, 0x5f, 0x76, 0x37, 0x75, 0x87, 0x6d, 0x42, 0x32, - 0x2a, 0x44, 0x28, 0x33, 0x96, 0x4e, 0x82, 0x1c, 0x83, 0x10, 0x94, 0x52, 0x9c, 0x50, 0x54, 0xba, - 0xc2, 0x03, 0x75, 0x86, 0x36, 0xa8, 0x12, 0x2a, 0xa2, 0x8c, 0x4d, 0x25, 0xe3, 0x29, 0x5a, 0x51, - 0xd2, 0xcd, 0x14, 0x44, 0xa0, 0x72, 0x42, 0xc7, 0x82, 0x49, 0x8a, 0xca, 0x4a, 0x5d, 0x86, 0xd0, - 0x03, 0xd5, 0x29, 0x8b, 0xe4, 0x2c, 0xa3, 0xa3, 0x59, 0x16, 0xa3, 0x8a, 0xea, 0x62, 0x63, 0x71, - 0xd1, 0x00, 0x07, 0x79, 0x7a, 0x18, 0xbc, 0x0e, 0x80, 0x46, 0x86, 0x59, 0x0c, 0x5b, 0xa0, 0x82, - 0xf3, 0xc6, 0xd0, 0xea, 0x5f, 0x5a, 0x5e, 0x82, 0x30, 0x02, 0x65, 0xc9, 0x8f, 0x69, 0x2a, 0xd0, - 0x9a, 0x5d, 0x74, 0xaa, 0xad, 0x6d, 0x57, 0xf3, 0x57, 0x63, 0x77, 0xf5, 0xd8, 0xdd, 0x2e, 0x67, - 0x69, 0xe7, 0xd9, 0xd9, 0x45, 0xc3, 0xf8, 0xfc, 0xa3, 0xe1, 0x4c, 0x98, 0x3c, 0x9a, 0x8d, 0xdd, - 0x88, 0x27, 0xfa, 0x8f, 0xe9, 0xcf, 0xae, 0x20, 0xc7, 0x9e, 0x3c, 0x9d, 0x52, 0xa1, 0x0a, 0x44, - 0xa0, 0xaf, 0x86, 0xef, 0x40, 0x8d, 0xd0, 0x98, 0x4e, 0xb0, 0xe4, 0xd9, 0x48, 0x1c, 0xe1, 0x8c, - 0x0a, 0x04, 0x94, 0xdd, 0x83, 0x3b, 0xed, 0x7a, 0x34, 0x52, 0x8e, 0x7b, 0xda, 0xf1, 0xe9, 0x3f, - 0x38, 0xea, 0x1a, 0x11, 0xfc, 0x77, 0x6d, 0x15, 0x2a, 0x27, 0x68, 0x01, 0x80, 0xa3, 0x28, 0xa3, - 0x84, 0x49, 0x4a, 0x50, 0xd5, 0x36, 0x9d, 0xd5, 0xe0, 0x46, 0x66, 0xe7, 0x05, 0x58, 0xd7, 0x0f, - 0xe0, 0x00, 0x67, 0x38, 0x11, 0xf0, 0x31, 0xd8, 0xc0, 0x71, 0xcc, 0x4f, 0x28, 0x19, 0x11, 0x9a, - 0xf2, 0x44, 0x20, 0xd3, 0x2e, 0x3a, 0x6b, 0xc1, 0xba, 0xce, 0xf6, 0x54, 0xf2, 0xc9, 0x07, 0xf3, - 0xba, 0x30, 0x7f, 0x39, 0xd0, 0x02, 0xf5, 0xd0, 0x0f, 0x0e, 0xfb, 0x5d, 0x7f, 0x14, 0x0e, 0xda, - 0x83, 0x61, 0x38, 0x1a, 0xee, 0x87, 0x07, 0x7e, 0xb7, 0xff, 0xaa, 0xef, 0xf7, 0x6a, 0x06, 0xac, - 0x83, 0xad, 0x5b, 0x7a, 0x37, 0xf0, 0xdb, 0x03, 0xbf, 0x57, 0x33, 0xe1, 0x36, 0xf8, 0xff, 0x96, - 0xd6, 0xee, 0x0e, 0xfa, 0x87, 0x7e, 0xad, 0x00, 0xef, 0x83, 0x7b, 0xb7, 0xa4, 0xfe, 0xbe, 0x16, - 0x8b, 0xf5, 0xd2, 0xfb, 0x4f, 0x96, 0xd1, 0x09, 0xcf, 0x7e, 0x59, 0xc6, 0xd9, 0xc2, 0x32, 0xcf, - 0x17, 0x96, 0xf9, 0x73, 0x61, 0x99, 0x1f, 0x2f, 0x2d, 0xe3, 0xfc, 0xd2, 0x32, 0xbe, 0x5f, 0x5a, - 0xc6, 0x9b, 0xe7, 0x37, 0xe6, 0xb7, 0x5c, 0x80, 0xdd, 0x18, 0x8f, 0xc5, 0x75, 0xe4, 0xcd, 0x5b, - 0xde, 0xdb, 0x3f, 0x2b, 0xad, 0x46, 0x3a, 0x2e, 0xab, 0x45, 0xdb, 0xfb, 0x1d, 0x00, 0x00, 0xff, - 0xff, 0xf9, 0xb0, 0xd0, 0xa8, 0xf4, 0x03, 0x00, 0x00, + 0xba, 0xde, 0x94, 0x2a, 0xaa, 0x04, 0x27, 0xef, 0xcc, 0xf7, 0x33, 0xfb, 0x1d, 0x8d, 0x77, 0xc0, + 0xc3, 0x84, 0xc5, 0x27, 0x67, 0xa7, 0xf8, 0xcc, 0x13, 0x34, 0x9b, 0xb1, 0x88, 0x0a, 0x6f, 0xd6, + 0xf4, 0x12, 0x4e, 0x68, 0x2c, 0xdc, 0x49, 0xc6, 0x25, 0x87, 0x9b, 0x0b, 0xc4, 0x5d, 0x20, 0xee, + 0xac, 0x59, 0xdf, 0x1c, 0xf3, 0x31, 0x57, 0x80, 0x77, 0x7d, 0xca, 0xd9, 0xfa, 0x76, 0xc4, 0x45, + 0xc2, 0xc5, 0x30, 0x17, 0xf2, 0x40, 0x4b, 0x56, 0x1e, 0x79, 0x23, 0x2c, 0xa8, 0x37, 0x6b, 0x8e, + 0xa8, 0xc4, 0x4d, 0x2f, 0xe2, 0x2c, 0xcd, 0xf5, 0x9d, 0xaf, 0x25, 0x50, 0x09, 0x73, 0x03, 0xb8, + 0x05, 0x0a, 0x8c, 0x20, 0xd3, 0x36, 0x9d, 0xf5, 0x76, 0x79, 0x7e, 0xd9, 0x28, 0xf4, 0xba, 0x41, + 0x81, 0x11, 0xf8, 0x12, 0x94, 0x85, 0xc4, 0x72, 0x2a, 0x50, 0xc1, 0x36, 0x9d, 0x8d, 0xbd, 0x47, + 0xee, 0x5d, 0xbd, 0xb9, 0xfa, 0x9a, 0x50, 0xa1, 0x81, 0x2e, 0x81, 0x2e, 0x58, 0xc1, 0x24, 0x61, + 0x29, 0x2a, 0xda, 0xa6, 0xb3, 0xd6, 0x46, 0xdf, 0xbe, 0xec, 0x6e, 0xea, 0x0e, 0x5b, 0x84, 0x64, + 0x54, 0x88, 0x50, 0x66, 0x2c, 0x1d, 0x07, 0x39, 0x06, 0x21, 0x28, 0xa5, 0x38, 0xa1, 0xa8, 0x74, + 0x8d, 0x07, 0xea, 0x0c, 0x6d, 0x50, 0x25, 0x54, 0x44, 0x19, 0x9b, 0x48, 0xc6, 0x53, 0xb4, 0xa2, + 0xa4, 0xdb, 0x29, 0x88, 0x40, 0xe5, 0x94, 0x8e, 0x04, 0x93, 0x14, 0x95, 0x95, 0xba, 0x08, 0xa1, + 0x07, 0xaa, 0x13, 0x16, 0xc9, 0x69, 0x46, 0x87, 0xd3, 0x2c, 0x46, 0x15, 0xd5, 0xc5, 0xc6, 0xfc, + 0xb2, 0x01, 0x0e, 0xf3, 0xf4, 0x20, 0x78, 0x1d, 0x00, 0x8d, 0x0c, 0xb2, 0x18, 0xee, 0x81, 0x0a, + 0xce, 0x1b, 0x43, 0xab, 0x7f, 0x69, 0x79, 0x01, 0xc2, 0x08, 0x94, 0x25, 0x3f, 0xa1, 0xa9, 0x40, + 0x6b, 0x76, 0xd1, 0xa9, 0xee, 0x6d, 0xbb, 0x9a, 0xbf, 0x1e, 0xbb, 0xab, 0xc7, 0xee, 0x76, 0x38, + 0x4b, 0xdb, 0xcf, 0xce, 0x2f, 0x1b, 0xc6, 0xe7, 0x1f, 0x0d, 0x67, 0xcc, 0xe4, 0xf1, 0x74, 0xe4, + 0x46, 0x3c, 0xd1, 0x7f, 0x4c, 0x7f, 0x76, 0x05, 0x39, 0xf1, 0xe4, 0xd9, 0x84, 0x0a, 0x55, 0x20, + 0x02, 0x7d, 0x35, 0x7c, 0x07, 0x6a, 0x84, 0xc6, 0x74, 0x8c, 0x25, 0xcf, 0x86, 0xe2, 0x18, 0x67, + 0x54, 0x20, 0xa0, 0xec, 0x1e, 0xdc, 0x69, 0xd7, 0xa5, 0x91, 0x72, 0xdc, 0xd7, 0x8e, 0x4f, 0xff, + 0xc1, 0x51, 0xd7, 0x88, 0xe0, 0xbf, 0x1b, 0xab, 0x50, 0x39, 0x41, 0x0b, 0x00, 0x1c, 0x45, 0x19, + 0x25, 0x4c, 0x52, 0x82, 0xaa, 0xb6, 0xe9, 0xac, 0x06, 0xb7, 0x32, 0x3b, 0x2f, 0xc0, 0xba, 0x7e, + 0x00, 0x87, 0x38, 0xc3, 0x89, 0x80, 0x8f, 0xc1, 0x06, 0x8e, 0x63, 0x7e, 0x4a, 0xc9, 0x90, 0xd0, + 0x94, 0x27, 0x02, 0x99, 0x76, 0xd1, 0x59, 0x0b, 0xd6, 0x75, 0xb6, 0xab, 0x92, 0x4f, 0x3e, 0x98, + 0x37, 0x85, 0xf9, 0xcb, 0x81, 0x16, 0xa8, 0x87, 0x7e, 0x70, 0xd4, 0xeb, 0xf8, 0xc3, 0xb0, 0xdf, + 0xea, 0x0f, 0xc2, 0xe1, 0xe0, 0x20, 0x3c, 0xf4, 0x3b, 0xbd, 0x57, 0x3d, 0xbf, 0x5b, 0x33, 0x60, + 0x1d, 0x6c, 0x2d, 0xe9, 0x9d, 0xc0, 0x6f, 0xf5, 0xfd, 0x6e, 0xcd, 0x84, 0xdb, 0xe0, 0xff, 0x25, + 0xad, 0xd5, 0xe9, 0xf7, 0x8e, 0xfc, 0x5a, 0x01, 0xde, 0x07, 0xf7, 0x96, 0xa4, 0xde, 0x81, 0x16, + 0x8b, 0xf5, 0xd2, 0xfb, 0x4f, 0x96, 0xd1, 0x0e, 0xcf, 0x7f, 0x59, 0xc6, 0xf9, 0xdc, 0x32, 0x2f, + 0xe6, 0x96, 0xf9, 0x73, 0x6e, 0x99, 0x1f, 0xaf, 0x2c, 0xe3, 0xe2, 0xca, 0x32, 0xbe, 0x5f, 0x59, + 0xc6, 0x9b, 0xe7, 0xb7, 0xe6, 0xb7, 0x58, 0x80, 0xdd, 0x18, 0x8f, 0xc4, 0x4d, 0xe4, 0xcd, 0xf6, + 0xbd, 0xb7, 0x7f, 0x56, 0x5a, 0x8d, 0x74, 0x54, 0x56, 0x8b, 0xb6, 0xff, 0x3b, 0x00, 0x00, 0xff, + 0xff, 0x6e, 0x16, 0xcd, 0x4f, 0xf4, 0x03, 0x00, 0x00, } func (m *Service) Marshal() (dAtA []byte, err error) { diff --git a/x/services/types/models_test.go b/x/services/types/models_test.go index e9b63898..b1fa9048 100644 --- a/x/services/types/models_test.go +++ b/x/services/types/models_test.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/x/services/types" ) func TestParseServiceID(t *testing.T) { diff --git a/x/services/types/params.pb.go b/x/services/types/params.pb.go index 6c897d84..b7cabf97 100644 --- a/x/services/types/params.pb.go +++ b/x/services/types/params.pb.go @@ -97,8 +97,8 @@ var fileDescriptor_e59659c9aefe294d = []byte{ 0x90, 0x4c, 0x71, 0x4b, 0x4d, 0x75, 0xf2, 0x3f, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0x53, 0x24, 0xb3, 0x61, 0xc1, 0xa4, 0x9b, 0x93, 0x98, 0x54, 0x0c, 0xe7, 0xe9, 0x97, - 0x19, 0xe9, 0x57, 0x20, 0x02, 0x17, 0x6c, 0x5d, 0x12, 0x1b, 0x38, 0x34, 0x8c, 0x01, 0x01, 0x00, - 0x00, 0xff, 0xff, 0xaa, 0x4f, 0xe5, 0xe7, 0x7e, 0x01, 0x00, 0x00, + 0x19, 0xeb, 0x57, 0x20, 0x02, 0x17, 0x6c, 0x5d, 0x12, 0x1b, 0x38, 0x34, 0x8c, 0x01, 0x01, 0x00, + 0x00, 0xff, 0xff, 0x3d, 0xe9, 0xf8, 0x00, 0x7e, 0x01, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/services/types/params_test.go b/x/services/types/params_test.go index 0cf729ae..b886f275 100644 --- a/x/services/types/params_test.go +++ b/x/services/types/params_test.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - "github.com/milkyway-labs/milkyway/v2/x/services/types" + "github.com/milkyway-labs/milkyway/v3/x/services/types" ) func TestParams_Validate(t *testing.T) { diff --git a/x/services/types/query.pb.go b/x/services/types/query.pb.go index ba4d9f31..817ce0e2 100644 --- a/x/services/types/query.pb.go +++ b/x/services/types/query.pb.go @@ -411,41 +411,41 @@ func init() { proto.RegisterFile("milkyway/services/v1/query.proto", fileDescrip var fileDescriptor_fbb3d1e27b44d645 = []byte{ // 569 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x94, 0x41, 0x6f, 0x12, 0x41, - 0x18, 0x86, 0x99, 0x5a, 0xdb, 0xfa, 0x35, 0x78, 0x18, 0x31, 0xa9, 0x1b, 0xba, 0xe2, 0x6a, 0x2a, - 0x6d, 0xd3, 0x1d, 0xa1, 0xf5, 0x42, 0x62, 0x4c, 0x7a, 0xd0, 0x78, 0x92, 0x62, 0xbc, 0x78, 0xd0, - 0x0c, 0x30, 0x59, 0x37, 0xc2, 0xce, 0x96, 0x59, 0x50, 0x62, 0xbc, 0xe8, 0xd1, 0x8b, 0x89, 0xf1, - 0x07, 0xf8, 0x07, 0xfc, 0x1d, 0x3d, 0x36, 0xf1, 0xe2, 0xc9, 0x18, 0xe8, 0x0f, 0x31, 0xcc, 0x7e, - 0x0b, 0x8c, 0xd9, 0xc0, 0x7a, 0xdb, 0x0c, 0xef, 0xfb, 0xbd, 0xcf, 0xbc, 0xf9, 0x18, 0x28, 0x75, - 0xfd, 0xce, 0x9b, 0xe1, 0x5b, 0x3e, 0x64, 0x4a, 0xf4, 0x06, 0x7e, 0x4b, 0x28, 0x36, 0xa8, 0xb0, - 0xd3, 0xbe, 0xe8, 0x0d, 0xdd, 0xb0, 0x27, 0x23, 0x49, 0x0b, 0x89, 0xc2, 0x4d, 0x14, 0xee, 0xa0, - 0x62, 0x15, 0x3c, 0xe9, 0x49, 0x2d, 0x60, 0x93, 0xaf, 0x58, 0x6b, 0x15, 0x3d, 0x29, 0xbd, 0x8e, - 0x60, 0x3c, 0xf4, 0x19, 0x0f, 0x02, 0x19, 0xf1, 0xc8, 0x97, 0x81, 0xc2, 0x5f, 0xf7, 0x5a, 0x52, - 0x75, 0xa5, 0x62, 0x4d, 0xae, 0x44, 0x1c, 0xc1, 0x06, 0x95, 0xa6, 0x88, 0x78, 0x85, 0x85, 0xdc, - 0xf3, 0x03, 0x2d, 0x46, 0xed, 0xad, 0x54, 0xae, 0xae, 0x6c, 0x8b, 0x8e, 0x5a, 0x28, 0x09, 0x79, - 0x8f, 0x77, 0x51, 0xe2, 0x14, 0x80, 0x9e, 0x4c, 0x72, 0xea, 0xfa, 0xb0, 0x21, 0x4e, 0xfb, 0x42, - 0x45, 0xce, 0x09, 0x5c, 0x33, 0x4e, 0x55, 0x28, 0x03, 0x25, 0x68, 0x0d, 0xd6, 0x62, 0xf3, 0x16, - 0x29, 0x91, 0xf2, 0x66, 0xb5, 0xe8, 0xa6, 0xdd, 0xdc, 0x8d, 0x5d, 0xc7, 0xab, 0x67, 0xbf, 0x6f, - 0xe6, 0x1a, 0xe8, 0x70, 0x5e, 0x42, 0x41, 0x8f, 0x7c, 0x86, 0x42, 0x8c, 0xa2, 0x8f, 0x00, 0x66, - 0x57, 0xc3, 0xb9, 0x3b, 0x6e, 0xdc, 0x83, 0x3b, 0xe9, 0xc1, 0x8d, 0xab, 0xc6, 0x1e, 0xdc, 0x3a, - 0xf7, 0x04, 0x7a, 0x1b, 0x73, 0x4e, 0xe7, 0x3b, 0x81, 0xeb, 0xff, 0x04, 0x20, 0xf5, 0x43, 0xd8, - 0x48, 0xe8, 0xb6, 0x48, 0xe9, 0x52, 0x79, 0xb3, 0xba, 0x9d, 0xce, 0x8d, 0x4e, 0x04, 0x9f, 0x9a, - 0xe8, 0x63, 0x03, 0x71, 0x45, 0x23, 0xde, 0x5d, 0x8a, 0x18, 0xa7, 0x1b, 0x8c, 0x47, 0x58, 0x2b, - 0x06, 0x25, 0x15, 0x6c, 0x03, 0x60, 0xd6, 0x2b, 0xbf, 0xad, 0x2b, 0xc8, 0x37, 0xae, 0xe0, 0xc9, - 0x93, 0xb6, 0xf3, 0xdc, 0x6c, 0x6e, 0x7a, 0xaf, 0x07, 0xb0, 0x8e, 0x22, 0xac, 0x2d, 0xd3, 0xb5, - 0x12, 0x8f, 0x53, 0x83, 0x1b, 0xf3, 0x63, 0x8d, 0x05, 0x58, 0x86, 0x14, 0x80, 0x95, 0xe6, 0x45, - 0xb0, 0x3a, 0x5c, 0x4d, 0xcc, 0xc6, 0xba, 0xdc, 0x5e, 0xc8, 0x67, 0x6c, 0x4d, 0x5e, 0xcd, 0x1f, - 0x56, 0x2f, 0x56, 0xe1, 0xb2, 0x0e, 0xa4, 0xdf, 0x08, 0xac, 0xa3, 0x81, 0xee, 0xa6, 0xcf, 0x4b, - 0xa9, 0xd8, 0xda, 0xcb, 0x22, 0x8d, 0xf1, 0x9d, 0xc3, 0x8f, 0x3f, 0x2f, 0xbe, 0xae, 0x1c, 0xd0, - 0x7d, 0x96, 0xfa, 0xf7, 0x99, 0x7e, 0xbf, 0x9f, 0x35, 0xf4, 0x81, 0x7e, 0x26, 0xb0, 0x91, 0x6c, - 0x1e, 0xcd, 0x90, 0x96, 0x34, 0x6d, 0xed, 0x67, 0xd2, 0x22, 0xda, 0x8e, 0x46, 0x2b, 0x51, 0x7b, - 0x31, 0x1a, 0xfd, 0x41, 0x20, 0x6f, 0xd4, 0x4a, 0xd9, 0xf2, 0x18, 0x63, 0x03, 0xac, 0x7b, 0xd9, - 0x0d, 0x08, 0x57, 0xd3, 0x70, 0x47, 0xb4, 0xfa, 0x1f, 0xbd, 0xe1, 0x63, 0x44, 0x3f, 0x11, 0x58, - 0x43, 0xd2, 0xf2, 0x82, 0x60, 0x13, 0x71, 0x37, 0x83, 0x12, 0xd9, 0xee, 0x68, 0x36, 0x9b, 0x16, - 0xd9, 0x82, 0x27, 0xf1, 0xf8, 0xe9, 0xd9, 0xc8, 0x26, 0xe7, 0x23, 0x9b, 0xfc, 0x19, 0xd9, 0xe4, - 0xcb, 0xd8, 0xce, 0x9d, 0x8f, 0xed, 0xdc, 0xaf, 0xb1, 0x9d, 0x7b, 0x71, 0xdf, 0xf3, 0xa3, 0xd7, - 0xfd, 0xa6, 0xdb, 0x92, 0xdd, 0xe9, 0x84, 0x83, 0x0e, 0x6f, 0xaa, 0xd9, 0xbc, 0x41, 0x95, 0xbd, - 0x9b, 0x0d, 0x8d, 0x86, 0xa1, 0x50, 0xcd, 0x35, 0xfd, 0xc8, 0x1e, 0xfe, 0x0d, 0x00, 0x00, 0xff, - 0xff, 0xfa, 0xee, 0x6f, 0xab, 0x44, 0x06, 0x00, 0x00, + 0x18, 0x86, 0x99, 0x5a, 0x69, 0xfd, 0x1a, 0x3c, 0x8c, 0x98, 0xd4, 0x0d, 0x5d, 0x71, 0x35, 0x95, + 0xb6, 0xe9, 0x8e, 0x40, 0xbd, 0x90, 0x18, 0x93, 0x1e, 0x34, 0x9e, 0xa4, 0x18, 0x2f, 0x1e, 0x34, + 0x03, 0x4c, 0xd6, 0x8d, 0xb0, 0xb3, 0x65, 0x16, 0x94, 0x18, 0x2f, 0x7a, 0xf4, 0x62, 0x62, 0xfc, + 0x01, 0xfe, 0x01, 0x7f, 0x47, 0x8f, 0x4d, 0xbc, 0x78, 0x32, 0x06, 0xfa, 0x43, 0x0c, 0xb3, 0xdf, + 0x02, 0x6b, 0x36, 0xcb, 0x7a, 0xdb, 0x0c, 0xef, 0xfb, 0xbd, 0xcf, 0xbc, 0xf9, 0x18, 0x28, 0xf7, + 0xdd, 0xde, 0x9b, 0xf1, 0x5b, 0x3e, 0x66, 0x4a, 0x0c, 0x46, 0x6e, 0x47, 0x28, 0x36, 0xaa, 0xb2, + 0xd3, 0xa1, 0x18, 0x8c, 0x6d, 0x7f, 0x20, 0x03, 0x49, 0x8b, 0x91, 0xc2, 0x8e, 0x14, 0xf6, 0xa8, + 0x6a, 0x14, 0x1d, 0xe9, 0x48, 0x2d, 0x60, 0xb3, 0xaf, 0x50, 0x6b, 0x94, 0x1c, 0x29, 0x9d, 0x9e, + 0x60, 0xdc, 0x77, 0x19, 0xf7, 0x3c, 0x19, 0xf0, 0xc0, 0x95, 0x9e, 0xc2, 0x5f, 0xf7, 0x3b, 0x52, + 0xf5, 0xa5, 0x62, 0x6d, 0xae, 0x44, 0x18, 0xc1, 0x46, 0xd5, 0xb6, 0x08, 0x78, 0x95, 0xf9, 0xdc, + 0x71, 0x3d, 0x2d, 0x46, 0xed, 0xad, 0x44, 0xae, 0xbe, 0xec, 0x8a, 0x9e, 0x4a, 0x95, 0xf8, 0x7c, + 0xc0, 0xfb, 0x28, 0xb1, 0x8a, 0x40, 0x4f, 0x66, 0x39, 0x4d, 0x7d, 0xd8, 0x12, 0xa7, 0x43, 0xa1, + 0x02, 0xeb, 0x04, 0xae, 0xc5, 0x4e, 0x95, 0x2f, 0x3d, 0x25, 0x68, 0x03, 0xf2, 0xa1, 0x79, 0x9b, + 0x94, 0x49, 0x65, 0xab, 0x56, 0xb2, 0x93, 0x6e, 0x6e, 0x87, 0xae, 0xe3, 0xf5, 0xb3, 0xdf, 0x37, + 0x73, 0x2d, 0x74, 0x58, 0x2f, 0xa1, 0xa8, 0x47, 0x3e, 0x43, 0x21, 0x46, 0xd1, 0x47, 0x00, 0x8b, + 0xab, 0xe1, 0xdc, 0x5d, 0x3b, 0xec, 0xc1, 0x9e, 0xf5, 0x60, 0x87, 0x55, 0x63, 0x0f, 0x76, 0x93, + 0x3b, 0x02, 0xbd, 0xad, 0x25, 0xa7, 0xf5, 0x9d, 0xc0, 0xf5, 0x7f, 0x02, 0x90, 0xfa, 0x21, 0x6c, + 0x46, 0x74, 0xdb, 0xa4, 0x7c, 0xa9, 0xb2, 0x55, 0xdb, 0x49, 0xe6, 0x46, 0x27, 0x82, 0xcf, 0x4d, + 0xf4, 0x71, 0x0c, 0x71, 0x4d, 0x23, 0xde, 0x5d, 0x89, 0x18, 0xa6, 0xc7, 0x18, 0x8f, 0xb0, 0x56, + 0x0c, 0x8a, 0x2a, 0xd8, 0x01, 0xc0, 0xac, 0x57, 0x6e, 0x57, 0x57, 0x50, 0x68, 0x5d, 0xc1, 0x93, + 0x27, 0x5d, 0xeb, 0x79, 0xbc, 0xb9, 0xf9, 0xbd, 0x1e, 0xc0, 0x06, 0x8a, 0xb0, 0xb6, 0x4c, 0xd7, + 0x8a, 0x3c, 0x56, 0x03, 0x6e, 0x2c, 0x8f, 0x8d, 0x2d, 0xc0, 0x2a, 0x24, 0x0f, 0x8c, 0x24, 0x2f, + 0x82, 0x35, 0xe1, 0x6a, 0x64, 0x8e, 0xad, 0xcb, 0xed, 0x54, 0xbe, 0xd8, 0xd6, 0x14, 0xd4, 0xf2, + 0x61, 0xed, 0x62, 0x1d, 0x2e, 0xeb, 0x40, 0xfa, 0x8d, 0xc0, 0x06, 0x1a, 0xe8, 0x5e, 0xf2, 0xbc, + 0x84, 0x8a, 0x8d, 0xfd, 0x2c, 0xd2, 0x10, 0xdf, 0xaa, 0x7f, 0xfc, 0x79, 0xf1, 0x75, 0xed, 0x90, + 0x1e, 0xb0, 0xc4, 0xbf, 0xcf, 0xfc, 0xfb, 0xfd, 0xa2, 0xa1, 0x0f, 0xf4, 0x33, 0x81, 0xcd, 0x68, + 0xf3, 0x68, 0x86, 0xb4, 0xa8, 0x69, 0xe3, 0x20, 0x93, 0x16, 0xd1, 0x76, 0x35, 0x5a, 0x99, 0x9a, + 0xe9, 0x68, 0xf4, 0x07, 0x81, 0x42, 0xac, 0x56, 0xca, 0x56, 0xc7, 0xc4, 0x36, 0xc0, 0xb8, 0x97, + 0xdd, 0x80, 0x70, 0x0d, 0x0d, 0x77, 0x44, 0x6b, 0xff, 0xd1, 0x1b, 0x3e, 0x46, 0xf4, 0x13, 0x81, + 0x3c, 0x92, 0x56, 0x52, 0x82, 0xe3, 0x88, 0x7b, 0x19, 0x94, 0xc8, 0x76, 0x47, 0xb3, 0x99, 0xb4, + 0xc4, 0x52, 0x9e, 0xc4, 0xe3, 0xa7, 0x67, 0x13, 0x93, 0x9c, 0x4f, 0x4c, 0xf2, 0x67, 0x62, 0x92, + 0x2f, 0x53, 0x33, 0x77, 0x3e, 0x35, 0x73, 0xbf, 0xa6, 0x66, 0xee, 0xc5, 0x7d, 0xc7, 0x0d, 0x5e, + 0x0f, 0xdb, 0x76, 0x47, 0xf6, 0xe7, 0x13, 0x0e, 0x7b, 0xbc, 0xad, 0x16, 0xf3, 0x46, 0x75, 0xf6, + 0x6e, 0x31, 0x34, 0x18, 0xfb, 0x42, 0xb5, 0xf3, 0xfa, 0x91, 0xad, 0xff, 0x0d, 0x00, 0x00, 0xff, + 0xff, 0x6d, 0x48, 0x72, 0x4c, 0x44, 0x06, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used.