diff --git a/Makefile b/Makefile index f878b86e8..8b1ee80af 100644 --- a/Makefile +++ b/Makefile @@ -127,7 +127,7 @@ docker-test: build-linux test: - go test -v -race github.com/public-awesome/stargaze/v13/x/... + go test -v -race github.com/public-awesome/stargaze/v14/x/... test-pfm: cd e2e && go test -v -race -run TestPacketForwardMiddleware . diff --git a/app/ante.go b/app/ante.go index 907576cb6..51750f46f 100644 --- a/app/ante.go +++ b/app/ante.go @@ -16,8 +16,8 @@ import ( ibcore "github.com/cosmos/ibc-go/v8/modules/core/keeper" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - globalfeeante "github.com/public-awesome/stargaze/v13/x/globalfee/ante" - globalfeekeeper "github.com/public-awesome/stargaze/v13/x/globalfee/keeper" + globalfeeante "github.com/public-awesome/stargaze/v14/x/globalfee/ante" + globalfeekeeper "github.com/public-awesome/stargaze/v14/x/globalfee/keeper" ) // HandlerOptions extend the SDK's AnteHandler options by requiring the IBC diff --git a/app/app.go b/app/app.go index 016c96b12..e25288552 100644 --- a/app/app.go +++ b/app/app.go @@ -101,12 +101,12 @@ import ( ibckeeper "github.com/cosmos/ibc-go/v8/modules/core/keeper" ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" - "github.com/public-awesome/stargaze/v13/x/mint" - mintkeeper "github.com/public-awesome/stargaze/v13/x/mint/keeper" - minttypes "github.com/public-awesome/stargaze/v13/x/mint/types" - "github.com/public-awesome/stargaze/v13/x/tokenfactory" - tokenfactorykeeper "github.com/public-awesome/stargaze/v13/x/tokenfactory/keeper" - tokenfactorytypes "github.com/public-awesome/stargaze/v13/x/tokenfactory/types" + "github.com/public-awesome/stargaze/v14/x/mint" + mintkeeper "github.com/public-awesome/stargaze/v14/x/mint/keeper" + minttypes "github.com/public-awesome/stargaze/v14/x/mint/types" + "github.com/public-awesome/stargaze/v14/x/tokenfactory" + tokenfactorykeeper "github.com/public-awesome/stargaze/v14/x/tokenfactory/keeper" + tokenfactorytypes "github.com/public-awesome/stargaze/v14/x/tokenfactory/types" "github.com/spf13/cast" "github.com/cosmos/cosmos-sdk/x/authz" @@ -118,20 +118,20 @@ import ( wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" wasmvm "github.com/CosmWasm/wasmvm" vestingtypes "github.com/cosmos/cosmos-sdk/x/auth/vesting/types" - "github.com/public-awesome/stargaze/v13/docs" - sgwasm "github.com/public-awesome/stargaze/v13/internal/wasm" - allocmodule "github.com/public-awesome/stargaze/v13/x/alloc" - allocmodulekeeper "github.com/public-awesome/stargaze/v13/x/alloc/keeper" - allocmoduletypes "github.com/public-awesome/stargaze/v13/x/alloc/types" - allocwasm "github.com/public-awesome/stargaze/v13/x/alloc/wasm" + "github.com/public-awesome/stargaze/v14/docs" + sgwasm "github.com/public-awesome/stargaze/v14/internal/wasm" + allocmodule "github.com/public-awesome/stargaze/v14/x/alloc" + allocmodulekeeper "github.com/public-awesome/stargaze/v14/x/alloc/keeper" + allocmoduletypes "github.com/public-awesome/stargaze/v14/x/alloc/types" + allocwasm "github.com/public-awesome/stargaze/v14/x/alloc/wasm" - cronmodule "github.com/public-awesome/stargaze/v13/x/cron" - cronmodulekeeper "github.com/public-awesome/stargaze/v13/x/cron/keeper" - cronmoduletypes "github.com/public-awesome/stargaze/v13/x/cron/types" + cronmodule "github.com/public-awesome/stargaze/v14/x/cron" + cronmodulekeeper "github.com/public-awesome/stargaze/v14/x/cron/keeper" + cronmoduletypes "github.com/public-awesome/stargaze/v14/x/cron/types" - globalfeemodule "github.com/public-awesome/stargaze/v13/x/globalfee" - globalfeemodulekeeper "github.com/public-awesome/stargaze/v13/x/globalfee/keeper" - globalfeemoduletypes "github.com/public-awesome/stargaze/v13/x/globalfee/types" + globalfeemodule "github.com/public-awesome/stargaze/v14/x/globalfee" + globalfeemodulekeeper "github.com/public-awesome/stargaze/v14/x/globalfee/keeper" + globalfeemoduletypes "github.com/public-awesome/stargaze/v14/x/globalfee/types" ibchooks "github.com/cosmos/ibc-apps/modules/ibc-hooks/v8" ibchookskeeper "github.com/cosmos/ibc-apps/modules/ibc-hooks/v8/keeper" @@ -150,10 +150,10 @@ import ( icahostkeeper "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/keeper" icahosttypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" - stargazerest "github.com/public-awesome/stargaze/v13/internal/rest" + stargazerest "github.com/public-awesome/stargaze/v14/internal/rest" sdk "github.com/cosmos/cosmos-sdk/types" - sgstatesync "github.com/public-awesome/stargaze/v13/internal/statesync" + sgstatesync "github.com/public-awesome/stargaze/v14/internal/statesync" ) const ( diff --git a/app/app_test.go b/app/app_test.go index 1e84be76a..116175512 100644 --- a/app/app_test.go +++ b/app/app_test.go @@ -3,7 +3,7 @@ package app_test import ( "testing" - "github.com/public-awesome/stargaze/v13/testutil/simapp" + "github.com/public-awesome/stargaze/v14/testutil/simapp" ) func TestAnteHandler(t *testing.T) { diff --git a/app/encoding.go b/app/encoding.go index cac6ed49c..1a1e6b908 100644 --- a/app/encoding.go +++ b/app/encoding.go @@ -2,7 +2,7 @@ package app import ( "github.com/cosmos/cosmos-sdk/std" - "github.com/public-awesome/stargaze/v13/app/params" + "github.com/public-awesome/stargaze/v14/app/params" ) // MakeEncodingConfig creates a new EncodingConfig with all modules registered diff --git a/app/upgrades.go b/app/upgrades.go index dd9ae0b29..0d3cb5108 100644 --- a/app/upgrades.go +++ b/app/upgrades.go @@ -25,10 +25,10 @@ package app // ibctmmigrations "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint/migrations" -// alloctypes "github.com/public-awesome/stargaze/v13/x/alloc/types" -// globalfeetypes "github.com/public-awesome/stargaze/v13/x/globalfee/types" -// minttypes "github.com/public-awesome/stargaze/v13/x/mint/types" -// tokenfactorytypes "github.com/public-awesome/stargaze/v13/x/tokenfactory/types" +// alloctypes "github.com/public-awesome/stargaze/v14/x/alloc/types" +// globalfeetypes "github.com/public-awesome/stargaze/v14/x/globalfee/types" +// minttypes "github.com/public-awesome/stargaze/v14/x/mint/types" +// tokenfactorytypes "github.com/public-awesome/stargaze/v14/x/tokenfactory/types" // ) // // next upgrade name diff --git a/app/wasm.go b/app/wasm.go index 8a99a4d2f..3b5406202 100644 --- a/app/wasm.go +++ b/app/wasm.go @@ -4,7 +4,7 @@ import ( "strings" wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" - tokenfactorytypes "github.com/public-awesome/stargaze/v13/x/tokenfactory/types" + tokenfactorytypes "github.com/public-awesome/stargaze/v14/x/tokenfactory/types" ) var wasmCapabilities = []string{ diff --git a/cmd/starsd/cmd/root.go b/cmd/starsd/cmd/root.go index 194bee4f7..84d949ec8 100644 --- a/cmd/starsd/cmd/root.go +++ b/cmd/starsd/cmd/root.go @@ -40,8 +40,8 @@ import ( wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" codectypes "github.com/cosmos/cosmos-sdk/codec/types" simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims" - "github.com/public-awesome/stargaze/v13/app" - "github.com/public-awesome/stargaze/v13/app/params" + "github.com/public-awesome/stargaze/v14/app" + "github.com/public-awesome/stargaze/v14/app/params" ) const EnvironmentPrefix = "STARGAZE" diff --git a/cmd/starsd/main.go b/cmd/starsd/main.go index 284733236..07745286d 100644 --- a/cmd/starsd/main.go +++ b/cmd/starsd/main.go @@ -5,8 +5,8 @@ import ( "os" svrcmd "github.com/cosmos/cosmos-sdk/server/cmd" - "github.com/public-awesome/stargaze/v13/app" - "github.com/public-awesome/stargaze/v13/cmd/starsd/cmd" + "github.com/public-awesome/stargaze/v14/app" + "github.com/public-awesome/stargaze/v14/cmd/starsd/cmd" ) func main() { diff --git a/go.mod b/go.mod index 2c6ba03d9..7188608ee 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/public-awesome/stargaze/v13 +module github.com/public-awesome/stargaze/v14 go 1.21 diff --git a/proto/osmosis/tokenfactory/v1beta1/genesis.proto b/proto/osmosis/tokenfactory/v1beta1/genesis.proto index 70c5c3ca8..f1c04f67a 100644 --- a/proto/osmosis/tokenfactory/v1beta1/genesis.proto +++ b/proto/osmosis/tokenfactory/v1beta1/genesis.proto @@ -4,7 +4,7 @@ package osmosis.tokenfactory.v1beta1; import "gogoproto/gogo.proto"; import "osmosis/tokenfactory/v1beta1/tokenfactory.proto"; -option go_package = "github.com/public-awesome/stargaze/v13/x/tokenfactory/types"; +option go_package = "github.com/public-awesome/stargaze/v14/x/tokenfactory/types"; // GenesisState defines the tokenfactory module's genesis state. message GenesisState { diff --git a/proto/osmosis/tokenfactory/v1beta1/query.proto b/proto/osmosis/tokenfactory/v1beta1/query.proto index eb2040329..4655266e5 100644 --- a/proto/osmosis/tokenfactory/v1beta1/query.proto +++ b/proto/osmosis/tokenfactory/v1beta1/query.proto @@ -1,12 +1,12 @@ syntax = "proto3"; package osmosis.tokenfactory.v1beta1; +import "cosmos/base/query/v1beta1/pagination.proto"; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -import "cosmos/base/query/v1beta1/pagination.proto"; import "osmosis/tokenfactory/v1beta1/tokenfactory.proto"; -option go_package = "github.com/public-awesome/stargaze/v13/x/tokenfactory/types"; +option go_package = "github.com/public-awesome/stargaze/v14/x/tokenfactory/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/osmosis/tokenfactory/v1beta1/tokenfactory.proto b/proto/osmosis/tokenfactory/v1beta1/tokenfactory.proto index c80e71c79..078d69d3a 100644 --- a/proto/osmosis/tokenfactory/v1beta1/tokenfactory.proto +++ b/proto/osmosis/tokenfactory/v1beta1/tokenfactory.proto @@ -1,11 +1,11 @@ syntax = "proto3"; package osmosis.tokenfactory.v1beta1; -import "gogoproto/gogo.proto"; -import "cosmos_proto/cosmos.proto"; import "cosmos/base/v1beta1/coin.proto"; +import "cosmos_proto/cosmos.proto"; +import "gogoproto/gogo.proto"; -option go_package = "github.com/public-awesome/stargaze/v13/x/tokenfactory/types"; +option go_package = "github.com/public-awesome/stargaze/v14/x/tokenfactory/types"; // DenomAuthorityMetadata specifies metadata for addresses that have specific // capabilities over a token factory denom. Right now there is only one Admin diff --git a/proto/osmosis/tokenfactory/v1beta1/tx.proto b/proto/osmosis/tokenfactory/v1beta1/tx.proto index 9a8f0275b..cfc834b3c 100644 --- a/proto/osmosis/tokenfactory/v1beta1/tx.proto +++ b/proto/osmosis/tokenfactory/v1beta1/tx.proto @@ -1,21 +1,26 @@ syntax = "proto3"; package osmosis.tokenfactory.v1beta1; -import "gogoproto/gogo.proto"; -import "cosmos/base/v1beta1/coin.proto"; import "cosmos/bank/v1beta1/bank.proto"; +import "cosmos/base/v1beta1/coin.proto"; import "cosmos/msg/v1/msg.proto"; +import "gogoproto/gogo.proto"; -option go_package = "github.com/public-awesome/stargaze/v13/x/tokenfactory/types"; +option go_package = "github.com/public-awesome/stargaze/v14/x/tokenfactory/types"; // Msg defines the tokefactory module's gRPC message service. service Msg { + option (cosmos.msg.v1.service) = true; + // CreateDenom rpc CreateDenom(MsgCreateDenom) returns (MsgCreateDenomResponse); + // Mint rpc Mint(MsgMint) returns (MsgMintResponse); + // Burn rpc Burn(MsgBurn) returns (MsgBurnResponse); + // ChangeAdmin rpc ChangeAdmin(MsgChangeAdmin) returns (MsgChangeAdminResponse); - rpc SetDenomMetadata(MsgSetDenomMetadata) - returns (MsgSetDenomMetadataResponse); + // SetDenomMetadata + rpc SetDenomMetadata(MsgSetDenomMetadata) returns (MsgSetDenomMetadataResponse); } // MsgCreateDenom defines the message structure for the CreateDenom gRPC service @@ -29,29 +34,27 @@ service Msg { // denom does not indicate the current admin. message MsgCreateDenom { option (cosmos.msg.v1.signer) = "sender"; - string sender = 1 [ (gogoproto.moretags) = "yaml:\"sender\"" ]; + string sender = 1 [(gogoproto.moretags) = "yaml:\"sender\""]; // subdenom can be up to 44 "alphanumeric" characters long. - string subdenom = 2 [ (gogoproto.moretags) = "yaml:\"subdenom\"" ]; + string subdenom = 2 [(gogoproto.moretags) = "yaml:\"subdenom\""]; } // MsgCreateDenomResponse is the return value of MsgCreateDenom // It returns the full string of the newly created denom message MsgCreateDenomResponse { - string new_token_denom = 1 - [ (gogoproto.moretags) = "yaml:\"new_token_denom\"" ]; + string new_token_denom = 1 [(gogoproto.moretags) = "yaml:\"new_token_denom\""]; } // MsgMint is the sdk.Msg type for allowing an admin account to mint // more of a token. For now, we only support minting to the sender account message MsgMint { option (cosmos.msg.v1.signer) = "sender"; - string sender = 1 [ (gogoproto.moretags) = "yaml:\"sender\"" ]; + string sender = 1 [(gogoproto.moretags) = "yaml:\"sender\""]; cosmos.base.v1beta1.Coin amount = 2 [ (gogoproto.moretags) = "yaml:\"amount\"", (gogoproto.nullable) = false ]; - string mintToAddress = 3 - [ (gogoproto.moretags) = "yaml:\"mint_to_address\"" ]; + string mintToAddress = 3 [(gogoproto.moretags) = "yaml:\"mint_to_address\""]; } message MsgMintResponse {} @@ -60,13 +63,12 @@ message MsgMintResponse {} // a token. For now, we only support burning from the sender account. message MsgBurn { option (cosmos.msg.v1.signer) = "sender"; - string sender = 1 [ (gogoproto.moretags) = "yaml:\"sender\"" ]; + string sender = 1 [(gogoproto.moretags) = "yaml:\"sender\""]; cosmos.base.v1beta1.Coin amount = 2 [ (gogoproto.moretags) = "yaml:\"amount\"", (gogoproto.nullable) = false ]; - string burnFromAddress = 3 - [ (gogoproto.moretags) = "yaml:\"burn_from_address\"" ]; + string burnFromAddress = 3 [(gogoproto.moretags) = "yaml:\"burn_from_address\""]; } message MsgBurnResponse {} @@ -75,9 +77,9 @@ message MsgBurnResponse {} // adminship of a denom to a new account message MsgChangeAdmin { option (cosmos.msg.v1.signer) = "sender"; - string sender = 1 [ (gogoproto.moretags) = "yaml:\"sender\"" ]; - string denom = 2 [ (gogoproto.moretags) = "yaml:\"denom\"" ]; - string new_admin = 3 [ (gogoproto.moretags) = "yaml:\"new_admin\"" ]; + string sender = 1 [(gogoproto.moretags) = "yaml:\"sender\""]; + string denom = 2 [(gogoproto.moretags) = "yaml:\"denom\""]; + string new_admin = 3 [(gogoproto.moretags) = "yaml:\"new_admin\""]; } // MsgChangeAdminResponse defines the response structure for an executed @@ -88,7 +90,7 @@ message MsgChangeAdminResponse {} // the denom's bank metadata message MsgSetDenomMetadata { option (cosmos.msg.v1.signer) = "sender"; - string sender = 1 [ (gogoproto.moretags) = "yaml:\"sender\"" ]; + string sender = 1 [(gogoproto.moretags) = "yaml:\"sender\""]; cosmos.bank.v1beta1.Metadata metadata = 2 [ (gogoproto.moretags) = "yaml:\"metadata\"", (gogoproto.nullable) = false diff --git a/proto/publicawesome/stargaze/alloc/v1beta1/genesis.proto b/proto/publicawesome/stargaze/alloc/v1beta1/genesis.proto index cbd3eacfa..12bb527a0 100644 --- a/proto/publicawesome/stargaze/alloc/v1beta1/genesis.proto +++ b/proto/publicawesome/stargaze/alloc/v1beta1/genesis.proto @@ -5,7 +5,7 @@ import "gogoproto/gogo.proto"; import "publicawesome/stargaze/alloc/v1beta1/params.proto"; // this line is used by starport scaffolding # genesis/proto/import -option go_package = "github.com/public-awesome/stargaze/v13/x/alloc/types"; +option go_package = "github.com/public-awesome/stargaze/v14/x/alloc/types"; // GenesisState defines the alloc module's genesis state. message GenesisState { diff --git a/proto/publicawesome/stargaze/alloc/v1beta1/params.proto b/proto/publicawesome/stargaze/alloc/v1beta1/params.proto index cf88f6b96..211f72aea 100644 --- a/proto/publicawesome/stargaze/alloc/v1beta1/params.proto +++ b/proto/publicawesome/stargaze/alloc/v1beta1/params.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package publicawesome.stargaze.alloc.v1beta1; -option go_package = "github.com/public-awesome/stargaze/v13/x/alloc/types"; +option go_package = "github.com/public-awesome/stargaze/v14/x/alloc/types"; import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; diff --git a/proto/publicawesome/stargaze/alloc/v1beta1/query.proto b/proto/publicawesome/stargaze/alloc/v1beta1/query.proto index 8030dc20c..94a5fc3ef 100644 --- a/proto/publicawesome/stargaze/alloc/v1beta1/query.proto +++ b/proto/publicawesome/stargaze/alloc/v1beta1/query.proto @@ -6,7 +6,7 @@ import "google/api/annotations.proto"; import "publicawesome/stargaze/alloc/v1beta1/params.proto"; // this line is used by starport scaffolding # 1 -option go_package = "github.com/public-awesome/stargaze/v13/x/alloc/types"; +option go_package = "github.com/public-awesome/stargaze/v14/x/alloc/types"; // QueryParamsRequest is the request type for the Query/Params RPC method. message QueryParamsRequest {} diff --git a/proto/publicawesome/stargaze/alloc/v1beta1/tx.proto b/proto/publicawesome/stargaze/alloc/v1beta1/tx.proto index 4eba87d08..4dd936965 100644 --- a/proto/publicawesome/stargaze/alloc/v1beta1/tx.proto +++ b/proto/publicawesome/stargaze/alloc/v1beta1/tx.proto @@ -7,7 +7,7 @@ import "cosmos/msg/v1/msg.proto"; // this line is used by starport scaffolding # proto/tx/import -option go_package = "github.com/public-awesome/stargaze/v13/x/alloc/types"; +option go_package = "github.com/public-awesome/stargaze/v14/x/alloc/types"; // Msg defines the alloc Msg service. service Msg { diff --git a/proto/publicawesome/stargaze/cron/v1/cron.proto b/proto/publicawesome/stargaze/cron/v1/cron.proto index f4075f0cb..858c75d47 100644 --- a/proto/publicawesome/stargaze/cron/v1/cron.proto +++ b/proto/publicawesome/stargaze/cron/v1/cron.proto @@ -3,7 +3,7 @@ package publicawesome.stargaze.cron.v1; import "gogoproto/gogo.proto"; -option go_package = "github.com/public-awesome/stargaze/v13/x/cron/types"; +option go_package = "github.com/public-awesome/stargaze/v14/x/cron/types"; // Params holds parameters for the cron module. message Params { diff --git a/proto/publicawesome/stargaze/cron/v1/genesis.proto b/proto/publicawesome/stargaze/cron/v1/genesis.proto index 3abce690f..efe0916fa 100644 --- a/proto/publicawesome/stargaze/cron/v1/genesis.proto +++ b/proto/publicawesome/stargaze/cron/v1/genesis.proto @@ -4,7 +4,7 @@ package publicawesome.stargaze.cron.v1; import "gogoproto/gogo.proto"; import "publicawesome/stargaze/cron/v1/cron.proto"; -option go_package = "github.com/public-awesome/stargaze/v13/x/cron/types"; +option go_package = "github.com/public-awesome/stargaze/v14/x/cron/types"; // GenesisState defines the cron module's genesis state. message GenesisState { diff --git a/proto/publicawesome/stargaze/cron/v1/proposal.proto b/proto/publicawesome/stargaze/cron/v1/proposal.proto index cf9fb8003..0ee79cbb7 100644 --- a/proto/publicawesome/stargaze/cron/v1/proposal.proto +++ b/proto/publicawesome/stargaze/cron/v1/proposal.proto @@ -5,7 +5,7 @@ import "amino/amino.proto"; import "cosmos_proto/cosmos.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/public-awesome/stargaze/v13/x/cron/types"; +option go_package = "github.com/public-awesome/stargaze/v14/x/cron/types"; // Deprecated: Do not use. To promote a contract, a // MsgPromoteToPrivilegedContract can be invoked from the x/gov module via a v1 @@ -16,11 +16,11 @@ message PromoteToPrivilegedContractProposal { option (cosmos_proto.implements_interface) = "cosmos.gov.v1beta1.Content"; // Title is a short summary - string title = 1 [(gogoproto.moretags) = "yaml:\"title\""]; + string title = 1 [ (gogoproto.moretags) = "yaml:\"title\"" ]; // Description is a human readable text - string description = 2 [(gogoproto.moretags) = "yaml:\"description\""]; + string description = 2 [ (gogoproto.moretags) = "yaml:\"description\"" ]; // Contract is the bech32 address of the smart contract - string contract = 3 [(gogoproto.moretags) = "yaml:\"contract\""]; + string contract = 3 [ (gogoproto.moretags) = "yaml:\"contract\"" ]; } // Deprecated: Do not use. To demote a contract, a @@ -32,9 +32,9 @@ message DemotePrivilegedContractProposal { option (cosmos_proto.implements_interface) = "cosmos.gov.v1beta1.Content"; // Title is a short summary - string title = 1 [(gogoproto.moretags) = "yaml:\"title\""]; + string title = 1 [ (gogoproto.moretags) = "yaml:\"title\"" ]; // Description is a human readable text - string description = 2 [(gogoproto.moretags) = "yaml:\"description\""]; + string description = 2 [ (gogoproto.moretags) = "yaml:\"description\"" ]; // Contract is the bech32 address of the smart contract - string contract = 3 [(gogoproto.moretags) = "yaml:\"contract\""]; + string contract = 3 [ (gogoproto.moretags) = "yaml:\"contract\"" ]; } diff --git a/proto/publicawesome/stargaze/cron/v1/query.proto b/proto/publicawesome/stargaze/cron/v1/query.proto index 7ffad1b7c..f0810389f 100644 --- a/proto/publicawesome/stargaze/cron/v1/query.proto +++ b/proto/publicawesome/stargaze/cron/v1/query.proto @@ -5,12 +5,13 @@ import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "publicawesome/stargaze/cron/v1/cron.proto"; -option go_package = "github.com/public-awesome/stargaze/v13/x/cron/types"; +option go_package = "github.com/public-awesome/stargaze/v14/x/cron/types"; // Query defines the gRPC querier service. service Query { // ListPrivileged queries the contracts which have the priviledge status - rpc ListPrivileged(QueryListPrivilegedRequest) returns (QueryListPrivilegedResponse) { + rpc ListPrivileged(QueryListPrivilegedRequest) + returns (QueryListPrivilegedResponse) { option (google.api.http).get = "/stargaze/cron/v1/list-privileged"; } @@ -28,7 +29,8 @@ message QueryListPrivilegedRequest {} message QueryListPrivilegedResponse { // contract_addresses holds all the smart contract addresses which have // privilege status. - repeated string contract_addresses = 1 [(gogoproto.jsontag) = "privileged_contract_addresses,omitempty"]; + repeated string contract_addresses = 1 + [ (gogoproto.jsontag) = "privileged_contract_addresses,omitempty" ]; } // QueryParamsRequest is request type for the Query/Params RPC diff --git a/proto/publicawesome/stargaze/cron/v1/tx.proto b/proto/publicawesome/stargaze/cron/v1/tx.proto index 28893966e..18874a1be 100644 --- a/proto/publicawesome/stargaze/cron/v1/tx.proto +++ b/proto/publicawesome/stargaze/cron/v1/tx.proto @@ -1,11 +1,11 @@ syntax = "proto3"; package publicawesome.stargaze.cron.v1; -import "gogoproto/gogo.proto"; import "cosmos/msg/v1/msg.proto"; +import "gogoproto/gogo.proto"; import "publicawesome/stargaze/cron/v1/cron.proto"; -option go_package = "github.com/public-awesome/stargaze/v13/x/cron/types"; +option go_package = "github.com/public-awesome/stargaze/v14/x/cron/types"; // Msg defines the alloc Msg service. service Msg { diff --git a/proto/publicawesome/stargaze/globalfee/v1/genesis.proto b/proto/publicawesome/stargaze/globalfee/v1/genesis.proto index c06bac256..c0c48d9be 100644 --- a/proto/publicawesome/stargaze/globalfee/v1/genesis.proto +++ b/proto/publicawesome/stargaze/globalfee/v1/genesis.proto @@ -4,7 +4,7 @@ package publicawesome.stargaze.globalfee.v1; import "publicawesome/stargaze/globalfee/v1/globalfee.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/public-awesome/stargaze/v13/x/globalfee/types"; +option go_package = "github.com/public-awesome/stargaze/v14/x/globalfee/types"; // GenesisState defines the globalfee module's genesis state. message GenesisState { diff --git a/proto/publicawesome/stargaze/globalfee/v1/globalfee.proto b/proto/publicawesome/stargaze/globalfee/v1/globalfee.proto index 8fa381595..a74074508 100644 --- a/proto/publicawesome/stargaze/globalfee/v1/globalfee.proto +++ b/proto/publicawesome/stargaze/globalfee/v1/globalfee.proto @@ -4,7 +4,7 @@ package publicawesome.stargaze.globalfee.v1; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; -option go_package = "github.com/public-awesome/stargaze/v13/x/globalfee/types"; +option go_package = "github.com/public-awesome/stargaze/v14/x/globalfee/types"; // Params holds parameters for the globalfee module. message Params { diff --git a/proto/publicawesome/stargaze/globalfee/v1/proposal.proto b/proto/publicawesome/stargaze/globalfee/v1/proposal.proto index 5f521a682..45c7063cc 100644 --- a/proto/publicawesome/stargaze/globalfee/v1/proposal.proto +++ b/proto/publicawesome/stargaze/globalfee/v1/proposal.proto @@ -6,7 +6,7 @@ import "cosmos_proto/cosmos.proto"; import "gogoproto/gogo.proto"; import "publicawesome/stargaze/globalfee/v1/globalfee.proto"; -option go_package = "github.com/public-awesome/stargaze/v13/x/globalfee/types"; +option go_package = "github.com/public-awesome/stargaze/v14/x/globalfee/types"; // SetCodeAuthorizationProposal ... message SetCodeAuthorizationProposal { @@ -14,9 +14,10 @@ message SetCodeAuthorizationProposal { option (amino.name) = "globalfee/SetCodeAuthorizationProposal"; option (cosmos_proto.implements_interface) = "cosmos.gov.v1beta1.Content"; - string title = 1 [(gogoproto.moretags) = "yaml:\"title\""]; - string description = 2 [(gogoproto.moretags) = "yaml:\"description\""]; - CodeAuthorization code_authorization = 3 [(gogoproto.moretags) = "yaml:\"code_authorization\""]; + string title = 1 [ (gogoproto.moretags) = "yaml:\"title\"" ]; + string description = 2 [ (gogoproto.moretags) = "yaml:\"description\"" ]; + CodeAuthorization code_authorization = 3 + [ (gogoproto.moretags) = "yaml:\"code_authorization\"" ]; } // RemoveCodeAuthorizationProposal @@ -25,8 +26,8 @@ message RemoveCodeAuthorizationProposal { option (amino.name) = "globalfee/RemoveCodeAuthorizationProposal"; option (cosmos_proto.implements_interface) = "cosmos.gov.v1beta1.Content"; - string title = 1 [(gogoproto.moretags) = "yaml:\"title\""]; - string description = 2 [(gogoproto.moretags) = "yaml:\"description\""]; + string title = 1 [ (gogoproto.moretags) = "yaml:\"title\"" ]; + string description = 2 [ (gogoproto.moretags) = "yaml:\"description\"" ]; uint64 code_id = 3 [ (gogoproto.customname) = "CodeID", (gogoproto.moretags) = "yaml:\"code_id\"" @@ -39,9 +40,10 @@ message SetContractAuthorizationProposal { option (amino.name) = "globalfee/SetContractAuthorizationProposal"; option (cosmos_proto.implements_interface) = "cosmos.gov.v1beta1.Content"; - string title = 1 [(gogoproto.moretags) = "yaml:\"title\""]; - string description = 2 [(gogoproto.moretags) = "yaml:\"description\""]; - ContractAuthorization contract_authorization = 3 [(gogoproto.moretags) = "yaml:\"contract_authorization\""]; + string title = 1 [ (gogoproto.moretags) = "yaml:\"title\"" ]; + string description = 2 [ (gogoproto.moretags) = "yaml:\"description\"" ]; + ContractAuthorization contract_authorization = 3 + [ (gogoproto.moretags) = "yaml:\"contract_authorization\"" ]; } // RemoveCodeAuthorizationProposal ... @@ -50,7 +52,8 @@ message RemoveContractAuthorizationProposal { option (amino.name) = "globalfee/RemoveContractAuthorizationProposal"; option (cosmos_proto.implements_interface) = "cosmos.gov.v1beta1.Content"; - string title = 1 [(gogoproto.moretags) = "yaml:\"title\""]; - string description = 2 [(gogoproto.moretags) = "yaml:\"description\""]; - string contract_address = 3 [(gogoproto.moretags) = "yaml:\"contract_address\""]; + string title = 1 [ (gogoproto.moretags) = "yaml:\"title\"" ]; + string description = 2 [ (gogoproto.moretags) = "yaml:\"description\"" ]; + string contract_address = 3 + [ (gogoproto.moretags) = "yaml:\"contract_address\"" ]; } diff --git a/proto/publicawesome/stargaze/globalfee/v1/query.proto b/proto/publicawesome/stargaze/globalfee/v1/query.proto index 33d22882d..8eea4674a 100644 --- a/proto/publicawesome/stargaze/globalfee/v1/query.proto +++ b/proto/publicawesome/stargaze/globalfee/v1/query.proto @@ -4,7 +4,7 @@ package publicawesome.stargaze.globalfee.v1; import "google/api/annotations.proto"; import "publicawesome/stargaze/globalfee/v1/globalfee.proto"; -option go_package = "github.com/public-awesome/stargaze/v13/x/globalfee/types"; +option go_package = "github.com/public-awesome/stargaze/v14/x/globalfee/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/publicawesome/stargaze/globalfee/v1/tx.proto b/proto/publicawesome/stargaze/globalfee/v1/tx.proto index a0c58956c..e6d883e48 100644 --- a/proto/publicawesome/stargaze/globalfee/v1/tx.proto +++ b/proto/publicawesome/stargaze/globalfee/v1/tx.proto @@ -5,12 +5,12 @@ import "gogoproto/gogo.proto"; import "cosmos/msg/v1/msg.proto"; import "publicawesome/stargaze/globalfee/v1/globalfee.proto"; -option go_package = "github.com/public-awesome/stargaze/v13/x/globalfee/types"; +option go_package = "github.com/public-awesome/stargaze/v14/x/globalfee/types"; // Msg defines the alloc Msg service. service Msg { option (cosmos.msg.v1.service) = true; - + rpc SetCodeAuthorization(MsgSetCodeAuthorization) returns (MsgSetCodeAuthorizationResponse); diff --git a/proto/publicawesome/stargaze/mint/v1beta1/genesis.proto b/proto/publicawesome/stargaze/mint/v1beta1/genesis.proto index 21f9cdd8e..494c72a4e 100644 --- a/proto/publicawesome/stargaze/mint/v1beta1/genesis.proto +++ b/proto/publicawesome/stargaze/mint/v1beta1/genesis.proto @@ -4,7 +4,7 @@ package publicawesome.stargaze.mint.v1beta1; import "gogoproto/gogo.proto"; import "publicawesome/stargaze/mint/v1beta1/mint.proto"; -option go_package = "github.com/public-awesome/stargaze/v13/x/mint/types"; +option go_package = "github.com/public-awesome/stargaze/v14/x/mint/types"; // GenesisState defines the mint module's genesis state. message GenesisState { diff --git a/proto/publicawesome/stargaze/mint/v1beta1/mint.proto b/proto/publicawesome/stargaze/mint/v1beta1/mint.proto index d140a8614..ee8ce141f 100644 --- a/proto/publicawesome/stargaze/mint/v1beta1/mint.proto +++ b/proto/publicawesome/stargaze/mint/v1beta1/mint.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package publicawesome.stargaze.mint.v1beta1; -option go_package = "github.com/public-awesome/stargaze/v13/x/mint/types"; +option go_package = "github.com/public-awesome/stargaze/v14/x/mint/types"; import "gogoproto/gogo.proto"; import "google/protobuf/timestamp.proto"; diff --git a/proto/publicawesome/stargaze/mint/v1beta1/query.proto b/proto/publicawesome/stargaze/mint/v1beta1/query.proto index 678db7b8d..6a6d20bab 100644 --- a/proto/publicawesome/stargaze/mint/v1beta1/query.proto +++ b/proto/publicawesome/stargaze/mint/v1beta1/query.proto @@ -6,7 +6,7 @@ import "google/api/annotations.proto"; import "publicawesome/stargaze/mint/v1beta1/mint.proto"; import "cosmos_proto/cosmos.proto"; -option go_package = "github.com/public-awesome/stargaze/v13/x/mint/types"; +option go_package = "github.com/public-awesome/stargaze/v14/x/mint/types"; // Query provides defines the gRPC querier service. service Query { diff --git a/proto/publicawesome/stargaze/mint/v1beta1/tx.proto b/proto/publicawesome/stargaze/mint/v1beta1/tx.proto index 86b61a1dc..2f687d217 100644 --- a/proto/publicawesome/stargaze/mint/v1beta1/tx.proto +++ b/proto/publicawesome/stargaze/mint/v1beta1/tx.proto @@ -3,9 +3,7 @@ package publicawesome.stargaze.mint.v1beta1; import "cosmos/msg/v1/msg.proto"; -option go_package = "github.com/public-awesome/stargaze/v13/x/mint/types"; +option go_package = "github.com/public-awesome/stargaze/v14/x/mint/types"; // Msg defines the mint Msg service. -service Msg { - option (cosmos.msg.v1.service) = true; -} +service Msg { option (cosmos.msg.v1.service) = true; } diff --git a/scripts/protocgen.sh b/scripts/protocgen.sh index c9c9ab88c..c8c832eef 100755 --- a/scripts/protocgen.sh +++ b/scripts/protocgen.sh @@ -26,5 +26,5 @@ buf generate --template buf.gen.doc.yaml cd .. # move proto files to the right places -cp -r github.com/public-awesome/stargaze/v13/* ./ +cp -r github.com/public-awesome/stargaze/v14/* ./ rm -rf github.com diff --git a/testutil/keeper/cron.go b/testutil/keeper/cron.go index ebd7ad604..ae6ed9907 100644 --- a/testutil/keeper/cron.go +++ b/testutil/keeper/cron.go @@ -16,8 +16,8 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" paramskeeper "github.com/cosmos/cosmos-sdk/x/params/keeper" - "github.com/public-awesome/stargaze/v13/x/cron/keeper" - "github.com/public-awesome/stargaze/v13/x/cron/types" + "github.com/public-awesome/stargaze/v14/x/cron/keeper" + "github.com/public-awesome/stargaze/v14/x/cron/types" "github.com/stretchr/testify/require" ) diff --git a/testutil/keeper/globalfee.go b/testutil/keeper/globalfee.go index a871812c5..2f2be0d48 100644 --- a/testutil/keeper/globalfee.go +++ b/testutil/keeper/globalfee.go @@ -11,9 +11,9 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" paramskeeper "github.com/cosmos/cosmos-sdk/x/params/keeper" - "github.com/public-awesome/stargaze/v13/app" - "github.com/public-awesome/stargaze/v13/x/globalfee/keeper" - "github.com/public-awesome/stargaze/v13/x/globalfee/types" + "github.com/public-awesome/stargaze/v14/app" + "github.com/public-awesome/stargaze/v14/x/globalfee/keeper" + "github.com/public-awesome/stargaze/v14/x/globalfee/types" "github.com/stretchr/testify/require" "cosmossdk.io/log" diff --git a/testutil/network/network.go b/testutil/network/network.go index 713f34a83..f88a3c28a 100644 --- a/testutil/network/network.go +++ b/testutil/network/network.go @@ -19,7 +19,7 @@ package network // sdk "github.com/cosmos/cosmos-sdk/types" // authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" -// "github.com/public-awesome/stargaze/v13/app" +// "github.com/public-awesome/stargaze/v14/app" // ) // type ( diff --git a/testutil/simapp/simapp.go b/testutil/simapp/simapp.go index 71eba542e..ca842b5bf 100644 --- a/testutil/simapp/simapp.go +++ b/testutil/simapp/simapp.go @@ -24,7 +24,7 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" sdkmath "cosmossdk.io/math" - stargazeapp "github.com/public-awesome/stargaze/v13/app" + stargazeapp "github.com/public-awesome/stargaze/v14/app" ) // New creates application instance with in-memory database and disabled logging. diff --git a/x/alloc/abci.go b/x/alloc/abci.go index 55853f7cc..94df256ea 100644 --- a/x/alloc/abci.go +++ b/x/alloc/abci.go @@ -6,8 +6,8 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/x/alloc/keeper" - "github.com/public-awesome/stargaze/v13/x/alloc/types" + "github.com/public-awesome/stargaze/v14/x/alloc/keeper" + "github.com/public-awesome/stargaze/v14/x/alloc/types" ) // BeginBlocker to distribute specific rewards on every begin block diff --git a/x/alloc/client/cli/query.go b/x/alloc/client/cli/query.go index 55644aeee..dad44ea4e 100644 --- a/x/alloc/client/cli/query.go +++ b/x/alloc/client/cli/query.go @@ -13,7 +13,7 @@ import ( // "github.com/cosmos/cosmos-sdk/client/flags" // sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/x/alloc/types" + "github.com/public-awesome/stargaze/v14/x/alloc/types" ) // GetQueryCmd returns the cli query commands for this module diff --git a/x/alloc/client/cli/tx.go b/x/alloc/client/cli/tx.go index 33e456965..1d758b928 100644 --- a/x/alloc/client/cli/tx.go +++ b/x/alloc/client/cli/tx.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" // "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/public-awesome/stargaze/v13/x/alloc/types" + "github.com/public-awesome/stargaze/v14/x/alloc/types" ) // GetTxCmd returns the transaction commands for this module diff --git a/x/alloc/client/cli/tx_create_vesting_account.go b/x/alloc/client/cli/tx_create_vesting_account.go index 977f1cb90..c6a37efd3 100644 --- a/x/alloc/client/cli/tx_create_vesting_account.go +++ b/x/alloc/client/cli/tx_create_vesting_account.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/client/tx" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/x/alloc/types" + "github.com/public-awesome/stargaze/v14/x/alloc/types" ) var _ = strconv.Itoa(0) diff --git a/x/alloc/genesis.go b/x/alloc/genesis.go index 82b6cf7ac..3d8c1d3a5 100644 --- a/x/alloc/genesis.go +++ b/x/alloc/genesis.go @@ -2,8 +2,8 @@ package alloc import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/x/alloc/keeper" - "github.com/public-awesome/stargaze/v13/x/alloc/types" + "github.com/public-awesome/stargaze/v14/x/alloc/keeper" + "github.com/public-awesome/stargaze/v14/x/alloc/types" ) // InitGenesis initializes the alloc module's state from a provided genesis diff --git a/x/alloc/keeper/grpc_query.go b/x/alloc/keeper/grpc_query.go index be70e21fc..1cfdf31a2 100644 --- a/x/alloc/keeper/grpc_query.go +++ b/x/alloc/keeper/grpc_query.go @@ -4,7 +4,7 @@ import ( "context" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/x/alloc/types" + "github.com/public-awesome/stargaze/v14/x/alloc/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/alloc/keeper/keeper.go b/x/alloc/keeper/keeper.go index 8ff79a159..a6e6fa855 100644 --- a/x/alloc/keeper/keeper.go +++ b/x/alloc/keeper/keeper.go @@ -10,7 +10,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/public-awesome/stargaze/v13/x/alloc/types" + "github.com/public-awesome/stargaze/v14/x/alloc/types" ) type ( diff --git a/x/alloc/keeper/keeper_test.go b/x/alloc/keeper/keeper_test.go index 309017c07..e2b274e6b 100644 --- a/x/alloc/keeper/keeper_test.go +++ b/x/alloc/keeper/keeper_test.go @@ -11,10 +11,10 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" minttypes "github.com/cosmos/cosmos-sdk/x/mint/types" - "github.com/public-awesome/stargaze/v13/app" - "github.com/public-awesome/stargaze/v13/testutil/simapp" - "github.com/public-awesome/stargaze/v13/x/alloc/keeper" - "github.com/public-awesome/stargaze/v13/x/alloc/types" + "github.com/public-awesome/stargaze/v14/app" + "github.com/public-awesome/stargaze/v14/testutil/simapp" + "github.com/public-awesome/stargaze/v14/x/alloc/keeper" + "github.com/public-awesome/stargaze/v14/x/alloc/types" "github.com/stretchr/testify/suite" ) diff --git a/x/alloc/keeper/migrations.go b/x/alloc/keeper/migrations.go index dd456a0f4..93fdc4bff 100644 --- a/x/alloc/keeper/migrations.go +++ b/x/alloc/keeper/migrations.go @@ -2,8 +2,8 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - v3 "github.com/public-awesome/stargaze/v13/x/alloc/migrations/v3" - v4 "github.com/public-awesome/stargaze/v13/x/alloc/migrations/v4" + v3 "github.com/public-awesome/stargaze/v14/x/alloc/migrations/v3" + v4 "github.com/public-awesome/stargaze/v14/x/alloc/migrations/v4" ) // Migrator is a struct for handling in-place store migrations. diff --git a/x/alloc/keeper/msg_server.go b/x/alloc/keeper/msg_server.go index 1a528a6b1..76c30cabf 100644 --- a/x/alloc/keeper/msg_server.go +++ b/x/alloc/keeper/msg_server.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/public-awesome/stargaze/v13/x/alloc/types" + "github.com/public-awesome/stargaze/v14/x/alloc/types" ) type msgServer struct { diff --git a/x/alloc/keeper/msg_server_create_vesting_account.go b/x/alloc/keeper/msg_server_create_vesting_account.go index d63a7ff6a..9e42be525 100644 --- a/x/alloc/keeper/msg_server_create_vesting_account.go +++ b/x/alloc/keeper/msg_server_create_vesting_account.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "github.com/public-awesome/stargaze/v13/x/alloc/types" + "github.com/public-awesome/stargaze/v14/x/alloc/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" diff --git a/x/alloc/keeper/msg_server_fund_fee_collector.go b/x/alloc/keeper/msg_server_fund_fee_collector.go index 54e28569c..7377a4c31 100644 --- a/x/alloc/keeper/msg_server_fund_fee_collector.go +++ b/x/alloc/keeper/msg_server_fund_fee_collector.go @@ -4,7 +4,7 @@ import ( "context" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/x/alloc/types" + "github.com/public-awesome/stargaze/v14/x/alloc/types" ) func (k msgServer) FundFairburnPool(goCtx context.Context, msg *types.MsgFundFairburnPool) (*types.MsgFundFairburnPoolResponse, error) { diff --git a/x/alloc/keeper/params.go b/x/alloc/keeper/params.go index a347f10b8..68d07b386 100644 --- a/x/alloc/keeper/params.go +++ b/x/alloc/keeper/params.go @@ -2,7 +2,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/x/alloc/types" + "github.com/public-awesome/stargaze/v14/x/alloc/types" ) // GetParams returns the total set of alloc module parameters. diff --git a/x/alloc/migrations/v3/store.go b/x/alloc/migrations/v3/store.go index 2b6b625f1..303cff332 100644 --- a/x/alloc/migrations/v3/store.go +++ b/x/alloc/migrations/v3/store.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/public-awesome/stargaze/v13/x/alloc/types" + "github.com/public-awesome/stargaze/v14/x/alloc/types" ) // MigrateStore performs in-place store migrations from v2 to v3 diff --git a/x/alloc/migrations/v3/store_test.go b/x/alloc/migrations/v3/store_test.go index 4b6f7c7d1..772791367 100644 --- a/x/alloc/migrations/v3/store_test.go +++ b/x/alloc/migrations/v3/store_test.go @@ -6,9 +6,9 @@ import ( "cosmossdk.io/store" sdk "github.com/cosmos/cosmos-sdk/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - stargazeapp "github.com/public-awesome/stargaze/v13/app" - v3 "github.com/public-awesome/stargaze/v13/x/alloc/migrations/v3" - "github.com/public-awesome/stargaze/v13/x/alloc/types" + stargazeapp "github.com/public-awesome/stargaze/v14/app" + v3 "github.com/public-awesome/stargaze/v14/x/alloc/migrations/v3" + "github.com/public-awesome/stargaze/v14/x/alloc/types" "github.com/stretchr/testify/require" "cosmossdk.io/log" diff --git a/x/alloc/migrations/v4/migration.go b/x/alloc/migrations/v4/migration.go index 7d3c95d6b..20ab43447 100644 --- a/x/alloc/migrations/v4/migration.go +++ b/x/alloc/migrations/v4/migration.go @@ -5,8 +5,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/x/alloc/exported" - "github.com/public-awesome/stargaze/v13/x/alloc/types" + "github.com/public-awesome/stargaze/v14/x/alloc/exported" + "github.com/public-awesome/stargaze/v14/x/alloc/types" ) // MigrateStore migrates the x/alloc module state from the consensus version 3 to diff --git a/x/alloc/migrations/v4/migration_test.go b/x/alloc/migrations/v4/migration_test.go index b0612846f..a10971823 100644 --- a/x/alloc/migrations/v4/migration_test.go +++ b/x/alloc/migrations/v4/migration_test.go @@ -10,10 +10,10 @@ import ( moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" storetypes "cosmossdk.io/store/types" - "github.com/public-awesome/stargaze/v13/x/alloc" - "github.com/public-awesome/stargaze/v13/x/alloc/exported" - v4 "github.com/public-awesome/stargaze/v13/x/alloc/migrations/v4" - "github.com/public-awesome/stargaze/v13/x/alloc/types" + "github.com/public-awesome/stargaze/v14/x/alloc" + "github.com/public-awesome/stargaze/v14/x/alloc/exported" + v4 "github.com/public-awesome/stargaze/v14/x/alloc/migrations/v4" + "github.com/public-awesome/stargaze/v14/x/alloc/types" ) type mockSubspace struct { diff --git a/x/alloc/module.go b/x/alloc/module.go index 03f33580f..e7a7ad102 100644 --- a/x/alloc/module.go +++ b/x/alloc/module.go @@ -17,9 +17,9 @@ import ( cdctypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/public-awesome/stargaze/v13/x/alloc/client/cli" - "github.com/public-awesome/stargaze/v13/x/alloc/keeper" - "github.com/public-awesome/stargaze/v13/x/alloc/types" + "github.com/public-awesome/stargaze/v14/x/alloc/client/cli" + "github.com/public-awesome/stargaze/v14/x/alloc/keeper" + "github.com/public-awesome/stargaze/v14/x/alloc/types" ) var ( diff --git a/x/alloc/types/genesis.pb.go b/x/alloc/types/genesis.pb.go index d16e069b8..4ea231974 100644 --- a/x/alloc/types/genesis.pb.go +++ b/x/alloc/types/genesis.pb.go @@ -90,9 +90,9 @@ var fileDescriptor_02c3ee26b870c3a4 = []byte{ 0xdc, 0xa3, 0x17, 0x00, 0xd6, 0xe3, 0xc4, 0x72, 0xe2, 0x9e, 0x3c, 0x43, 0x10, 0xd4, 0x04, 0x27, 0xbf, 0x13, 0x8f, 0xe4, 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x71, 0xc2, 0x63, 0x39, 0x86, 0x0b, 0x8f, 0xe5, 0x18, 0x6e, 0x3c, 0x96, 0x63, 0x88, 0x32, 0x49, 0xcf, 0x2c, 0xc9, - 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x87, 0x98, 0xaf, 0x8b, 0xe1, 0xe8, 0x32, 0x43, 0x63, + 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x87, 0x98, 0xaf, 0x8b, 0xe1, 0xe8, 0x32, 0x43, 0x13, 0xfd, 0x0a, 0xa8, 0xd3, 0x4b, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0x4e, 0x36, 0x06, 0x04, - 0x00, 0x00, 0xff, 0xff, 0xf7, 0xb8, 0xd0, 0xb0, 0x57, 0x01, 0x00, 0x00, + 0x00, 0x00, 0xff, 0xff, 0x59, 0x20, 0x69, 0xc6, 0x57, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/alloc/types/genesis_test.go b/x/alloc/types/genesis_test.go index 501c10c2a..71da2bff7 100644 --- a/x/alloc/types/genesis_test.go +++ b/x/alloc/types/genesis_test.go @@ -3,7 +3,7 @@ package types_test import ( "testing" - "github.com/public-awesome/stargaze/v13/x/alloc/types" + "github.com/public-awesome/stargaze/v14/x/alloc/types" "github.com/stretchr/testify/require" ) diff --git a/x/alloc/types/message_create_vesting_account_test.go b/x/alloc/types/message_create_vesting_account_test.go index be2c1e4df..8a61a4b86 100644 --- a/x/alloc/types/message_create_vesting_account_test.go +++ b/x/alloc/types/message_create_vesting_account_test.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/public-awesome/stargaze/v13/testutil/sample" + "github.com/public-awesome/stargaze/v14/testutil/sample" "github.com/stretchr/testify/require" ) diff --git a/x/alloc/types/params.pb.go b/x/alloc/types/params.pb.go index f32daf6c3..e3aefb520 100644 --- a/x/alloc/types/params.pb.go +++ b/x/alloc/types/params.pb.go @@ -201,7 +201,7 @@ var fileDescriptor_7716a10c05d88367 = []byte{ // 627 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x54, 0xcf, 0x4e, 0xd4, 0x40, 0x18, 0xdf, 0x02, 0x62, 0x1c, 0x02, 0x42, 0xa3, 0xa1, 0x60, 0xd2, 0x4a, 0x83, 0x09, 0x1a, 0x69, - 0xb3, 0xa0, 0x17, 0x13, 0x0f, 0xd4, 0xbd, 0x68, 0xd0, 0x90, 0x5e, 0x4c, 0xb8, 0x34, 0xd3, 0x76, + 0xb3, 0x88, 0x17, 0x13, 0x0f, 0xd4, 0xbd, 0x68, 0xd0, 0x90, 0x5e, 0x4c, 0xb8, 0x34, 0xd3, 0x76, 0x28, 0x13, 0xda, 0x4e, 0x9d, 0x99, 0xee, 0xba, 0x1c, 0x7c, 0x00, 0x4f, 0x1e, 0xbc, 0xf9, 0x06, 0xde, 0x4c, 0x78, 0x08, 0x8e, 0xc4, 0x93, 0xf1, 0xb0, 0x1a, 0x78, 0x03, 0xae, 0x5e, 0x4c, 0x3b, 0xd3, 0x02, 0x5b, 0xd7, 0x6c, 0xf4, 0xd4, 0x69, 0xbe, 0xf9, 0xfd, 0xf9, 0xe6, 0xfb, 0xe5, 0x03, @@ -235,9 +235,9 @@ var fileDescriptor_7716a10c05d88367 = []byte{ 0xd2, 0x86, 0x4c, 0x78, 0x83, 0xc1, 0xfc, 0xfc, 0xc3, 0x58, 0x8b, 0x30, 0xdf, 0xcf, 0x7d, 0x2b, 0x20, 0x89, 0xdc, 0x52, 0xf2, 0xb3, 0xce, 0xc2, 0x03, 0x9b, 0xf7, 0x33, 0xc4, 0x4a, 0x32, 0xe6, 0xce, 0x5f, 0xe0, 0xb7, 0x4a, 0xb8, 0xf3, 0xea, 0xf8, 0x54, 0x57, 0x4e, 0x4e, 0x75, 0xe5, 0xe7, - 0xa9, 0xae, 0x7c, 0x38, 0xd3, 0x5b, 0x27, 0x67, 0x7a, 0xeb, 0xdb, 0x99, 0xde, 0xda, 0x7d, 0x74, - 0x89, 0x55, 0xbc, 0xe0, 0x7a, 0x63, 0xf1, 0x76, 0xdb, 0x9b, 0xf6, 0x5b, 0xb9, 0x7e, 0x4b, 0x1d, - 0x7f, 0xba, 0xdc, 0x7f, 0x9b, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0x50, 0xb9, 0x6d, 0xd4, 0xab, + 0xa9, 0xae, 0x7c, 0x38, 0xd3, 0x5b, 0x27, 0x67, 0x7a, 0xeb, 0xdb, 0x99, 0xde, 0xda, 0xdd, 0xbc, + 0xc4, 0x2a, 0x5e, 0x70, 0xbd, 0xb1, 0x78, 0xbb, 0xed, 0x4d, 0xfb, 0xad, 0x5c, 0xbf, 0xa5, 0x8e, + 0x3f, 0x5d, 0xee, 0xbf, 0x47, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0xfe, 0x21, 0xd4, 0xa2, 0xab, 0x05, 0x00, 0x00, } diff --git a/x/alloc/types/query.pb.go b/x/alloc/types/query.pb.go index fe2fbe831..3173763b8 100644 --- a/x/alloc/types/query.pb.go +++ b/x/alloc/types/query.pb.go @@ -139,9 +139,9 @@ var fileDescriptor_58039ea0b6f4fac0 = []byte{ 0xe2, 0x2b, 0x25, 0xb5, 0xa6, 0xcb, 0x4f, 0x26, 0x33, 0x29, 0x08, 0xc9, 0xe1, 0x0f, 0x30, 0x27, 0xbf, 0x13, 0x8f, 0xe4, 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x71, 0xc2, 0x63, 0x39, 0x86, 0x0b, 0x8f, 0xe5, 0x18, 0x6e, 0x3c, 0x96, 0x63, 0x88, 0x32, 0x49, 0xcf, 0x2c, 0xc9, - 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x87, 0x38, 0x43, 0x17, 0x23, 0x0e, 0xca, 0x0c, 0x8d, - 0xf5, 0x2b, 0xa0, 0x06, 0x97, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x63, 0xc0, 0x18, 0x10, - 0x00, 0x00, 0xff, 0xff, 0x86, 0xb2, 0x18, 0xb6, 0x42, 0x02, 0x00, 0x00, + 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x87, 0x38, 0x43, 0x17, 0x23, 0x0e, 0xca, 0x0c, 0x4d, + 0xf4, 0x2b, 0xa0, 0x06, 0x97, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x63, 0xc0, 0x18, 0x10, + 0x00, 0x00, 0xff, 0xff, 0x28, 0x2a, 0xa1, 0xc0, 0x42, 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/alloc/types/tx.pb.go b/x/alloc/types/tx.pb.go index 50da4b55b..c5c372d31 100644 --- a/x/alloc/types/tx.pb.go +++ b/x/alloc/types/tx.pb.go @@ -245,43 +245,43 @@ func init() { } var fileDescriptor_53ae35fccc219a05 = []byte{ - // 570 bytes of a gzipped FileDescriptorProto + // 569 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x94, 0xbf, 0x6f, 0xd3, 0x40, 0x14, 0xc7, 0x7d, 0x09, 0x4d, 0x9b, 0x2b, 0x12, 0xe0, 0xb4, 0x24, 0x04, 0x61, 0x07, 0x8b, 0x21, - 0xaa, 0x94, 0x33, 0x69, 0xbb, 0x10, 0x89, 0x21, 0xa9, 0xe8, 0x16, 0x84, 0x2c, 0xc4, 0xc0, 0x52, - 0x9d, 0xed, 0x87, 0xb1, 0xb0, 0x7d, 0x91, 0xef, 0x12, 0x1a, 0x26, 0xc4, 0x02, 0x63, 0xff, 0x00, - 0x86, 0x6c, 0x48, 0x4c, 0xfd, 0x0b, 0x98, 0x3b, 0x76, 0x64, 0x0a, 0x28, 0x19, 0xda, 0x39, 0x7f, - 0x01, 0xf2, 0xaf, 0x36, 0xa5, 0xad, 0x54, 0x81, 0x3a, 0x5d, 0x9e, 0xbe, 0xef, 0x73, 0xf7, 0xde, - 0xf7, 0xc5, 0x0f, 0x37, 0x7a, 0x7d, 0xd3, 0x73, 0x2d, 0xfa, 0x1e, 0x38, 0xf3, 0x41, 0xe7, 0x82, - 0x86, 0x0e, 0xfd, 0x00, 0x3a, 0xf5, 0x3c, 0x66, 0xe9, 0x83, 0xa6, 0x09, 0x82, 0x36, 0x75, 0xb1, - 0x4b, 0x7a, 0x21, 0x13, 0x4c, 0x7e, 0x74, 0x26, 0x9d, 0x64, 0xe9, 0x24, 0x4e, 0x27, 0x69, 0x7a, - 0x75, 0xc5, 0x61, 0x0e, 0x8b, 0x01, 0x3d, 0xfa, 0x95, 0xb0, 0x55, 0xc5, 0x62, 0xdc, 0x67, 0x5c, - 0x37, 0x29, 0x87, 0x93, 0x9b, 0x2d, 0xe6, 0x06, 0xa9, 0x5e, 0x4e, 0x75, 0x9f, 0x3b, 0xfa, 0xa0, - 0x19, 0x1d, 0x89, 0xa0, 0x7d, 0xce, 0xe3, 0x72, 0x97, 0x3b, 0x5b, 0x21, 0x50, 0x01, 0xaf, 0x80, - 0x0b, 0x37, 0x70, 0xda, 0x96, 0xc5, 0xfa, 0x81, 0x90, 0x5b, 0xf8, 0xe6, 0x9b, 0x90, 0xf9, 0x3b, - 0xd4, 0xb6, 0x43, 0xe0, 0xbc, 0x82, 0x6a, 0xa8, 0x5e, 0xec, 0x94, 0x67, 0x63, 0xb5, 0x34, 0xa4, - 0xbe, 0xd7, 0xd2, 0xe6, 0x55, 0xcd, 0x58, 0x8e, 0xc2, 0x76, 0x12, 0xc9, 0x9b, 0x18, 0x0b, 0x76, - 0x42, 0xe6, 0x62, 0x72, 0x75, 0x36, 0x56, 0xef, 0x24, 0xe4, 0xa9, 0xa6, 0x19, 0x45, 0xc1, 0x32, - 0xca, 0xc2, 0x05, 0xea, 0x47, 0x6f, 0x57, 0xf2, 0xb5, 0x7c, 0x7d, 0x79, 0xfd, 0x1e, 0x49, 0xea, - 0x26, 0x51, 0x5f, 0x99, 0x05, 0x64, 0x8b, 0xb9, 0x41, 0xe7, 0xf1, 0xc1, 0x58, 0x95, 0xbe, 0xff, - 0x52, 0xeb, 0x8e, 0x2b, 0xde, 0xf6, 0x4d, 0x62, 0x31, 0x5f, 0x4f, 0x9b, 0x4c, 0x8e, 0x06, 0xb7, - 0xdf, 0xe9, 0x62, 0xd8, 0x03, 0x1e, 0x03, 0xdc, 0x48, 0xaf, 0x8e, 0x4a, 0x8b, 0xbc, 0x15, 0x3b, - 0xc2, 0xf5, 0xa1, 0x72, 0xa3, 0x86, 0xea, 0xf9, 0xf9, 0xd2, 0x4e, 0x35, 0xcd, 0x28, 0xc6, 0xc1, - 0x4b, 0xd7, 0x07, 0x99, 0xe0, 0x25, 0x08, 0xec, 0x84, 0x59, 0x88, 0x99, 0xd2, 0x6c, 0xac, 0xde, - 0x4a, 0x98, 0x4c, 0xd1, 0x8c, 0x45, 0x08, 0xec, 0x38, 0xbf, 0x82, 0x17, 0x6d, 0xf0, 0xe8, 0x10, - 0xec, 0x4a, 0xa1, 0x86, 0xea, 0x4b, 0x46, 0x16, 0xb6, 0x56, 0x8f, 0x47, 0x2a, 0xfa, 0x74, 0xb4, - 0xbf, 0x76, 0xc6, 0x5d, 0xed, 0x21, 0x56, 0x2f, 0x19, 0x84, 0x01, 0xbc, 0xc7, 0x02, 0x0e, 0xda, - 0x37, 0x84, 0x4b, 0x5d, 0xee, 0x6c, 0xf7, 0x03, 0x7b, 0x9b, 0xba, 0xa1, 0xd9, 0x0f, 0x83, 0x17, - 0x8c, 0x79, 0xf2, 0x5d, 0x5c, 0xe0, 0x10, 0xd8, 0x10, 0x26, 0x23, 0x32, 0xd2, 0x68, 0xce, 0xce, - 0xdc, 0xb5, 0xd9, 0xd9, 0x2a, 0x7d, 0x19, 0xa9, 0xd2, 0xf1, 0x48, 0x95, 0xa2, 0x96, 0xd2, 0x97, - 0xb5, 0x07, 0xf8, 0xfe, 0x05, 0x85, 0x66, 0x8d, 0xac, 0xff, 0xc8, 0xe1, 0x7c, 0x97, 0x3b, 0xf2, - 0x57, 0x84, 0x57, 0x2e, 0xfc, 0xeb, 0x3d, 0x25, 0x57, 0xf9, 0x18, 0xc8, 0x25, 0x86, 0x55, 0x9f, - 0xfd, 0x17, 0x9e, 0x95, 0x29, 0xef, 0x21, 0x7c, 0xfb, 0x9c, 0xd9, 0x4f, 0xae, 0x7c, 0xf7, 0xdf, - 0x68, 0xb5, 0xfd, 0xcf, 0x68, 0x56, 0x52, 0x75, 0xe1, 0xe3, 0xd1, 0xfe, 0x1a, 0xea, 0x3c, 0x3f, - 0x98, 0x28, 0xe8, 0x70, 0xa2, 0xa0, 0xdf, 0x13, 0x05, 0xed, 0x4d, 0x15, 0xe9, 0x70, 0xaa, 0x48, - 0x3f, 0xa7, 0x8a, 0xf4, 0x7a, 0x73, 0x6e, 0x80, 0xc9, 0x6b, 0x8d, 0x73, 0x0b, 0x68, 0xd0, 0xdc, - 0xd0, 0x77, 0xd3, 0x35, 0x14, 0x8f, 0xd4, 0x2c, 0xc4, 0xdb, 0x60, 0xe3, 0x4f, 0x00, 0x00, 0x00, - 0xff, 0xff, 0x83, 0x39, 0xae, 0xcf, 0xb3, 0x04, 0x00, 0x00, + 0xaa, 0x94, 0x33, 0x29, 0x59, 0x88, 0xc4, 0x90, 0x54, 0x74, 0x0b, 0x42, 0x16, 0x62, 0x60, 0xa9, + 0xce, 0xf6, 0xc3, 0x58, 0xd8, 0xbe, 0xc8, 0x77, 0x09, 0x0d, 0x13, 0x62, 0x81, 0xb1, 0x7f, 0x00, + 0x43, 0x36, 0x24, 0xa6, 0xfe, 0x05, 0xcc, 0x1d, 0x3b, 0x32, 0x05, 0x94, 0x0c, 0xed, 0x9c, 0xbf, + 0x00, 0xf9, 0x57, 0x9b, 0xd2, 0x56, 0xaa, 0x40, 0x4c, 0x97, 0xa7, 0xef, 0xfb, 0xdc, 0xbd, 0xf7, + 0x7d, 0xf1, 0xc3, 0x8d, 0xfe, 0xc0, 0xf4, 0x5c, 0x8b, 0xbe, 0x03, 0xce, 0x7c, 0xd0, 0xb9, 0xa0, + 0xa1, 0x43, 0xdf, 0x83, 0x4e, 0x3d, 0x8f, 0x59, 0xfa, 0xb0, 0x69, 0x82, 0xa0, 0x4d, 0x5d, 0xec, + 0x92, 0x7e, 0xc8, 0x04, 0x93, 0x1f, 0x9c, 0x49, 0x27, 0x59, 0x3a, 0x89, 0xd3, 0x49, 0x9a, 0x5e, + 0x5d, 0x73, 0x98, 0xc3, 0x62, 0x40, 0x8f, 0x7e, 0x25, 0x6c, 0x55, 0xb1, 0x18, 0xf7, 0x19, 0xd7, + 0x4d, 0xca, 0xe1, 0xe4, 0x66, 0x8b, 0xb9, 0x41, 0xaa, 0x97, 0x53, 0xdd, 0xe7, 0x8e, 0x3e, 0x6c, + 0x46, 0x47, 0x22, 0x68, 0x9f, 0xf2, 0xb8, 0xdc, 0xe3, 0xce, 0x56, 0x08, 0x54, 0xc0, 0x4b, 0xe0, + 0xc2, 0x0d, 0x9c, 0x8e, 0x65, 0xb1, 0x41, 0x20, 0xe4, 0x36, 0xbe, 0xfe, 0x3a, 0x64, 0xfe, 0x0e, + 0xb5, 0xed, 0x10, 0x38, 0xaf, 0xa0, 0x1a, 0xaa, 0x17, 0xbb, 0xe5, 0xf9, 0x44, 0x2d, 0x8d, 0xa8, + 0xef, 0xb5, 0xb5, 0x45, 0x55, 0x33, 0x56, 0xa3, 0xb0, 0x93, 0x44, 0x72, 0x0b, 0x63, 0xc1, 0x4e, + 0xc8, 0x5c, 0x4c, 0xae, 0xcf, 0x27, 0xea, 0xad, 0x84, 0x3c, 0xd5, 0x34, 0xa3, 0x28, 0x58, 0x46, + 0x59, 0xb8, 0x40, 0xfd, 0xe8, 0xed, 0x4a, 0xbe, 0x96, 0xaf, 0xaf, 0x6e, 0xde, 0x21, 0x49, 0xdd, + 0x24, 0xea, 0x2b, 0xb3, 0x80, 0x6c, 0x31, 0x37, 0xe8, 0x3e, 0x3c, 0x98, 0xa8, 0xd2, 0xb7, 0x9f, + 0x6a, 0xdd, 0x71, 0xc5, 0x9b, 0x81, 0x49, 0x2c, 0xe6, 0xeb, 0x69, 0x93, 0xc9, 0xd1, 0xe0, 0xf6, + 0x5b, 0x5d, 0x8c, 0xfa, 0xc0, 0x63, 0x80, 0x1b, 0xe9, 0xd5, 0x51, 0x69, 0x91, 0xb7, 0x62, 0x47, + 0xb8, 0x3e, 0x54, 0xae, 0xd5, 0x50, 0x3d, 0xbf, 0x58, 0xda, 0xa9, 0xa6, 0x19, 0xc5, 0x38, 0x78, + 0xe1, 0xfa, 0x20, 0x13, 0xbc, 0x02, 0x81, 0x9d, 0x30, 0x4b, 0x31, 0x53, 0x9a, 0x4f, 0xd4, 0x1b, + 0x09, 0x93, 0x29, 0x9a, 0xb1, 0x0c, 0x81, 0x1d, 0xe7, 0x57, 0xf0, 0xb2, 0x0d, 0x1e, 0x1d, 0x81, + 0x5d, 0x29, 0xd4, 0x50, 0x7d, 0xc5, 0xc8, 0xc2, 0xf6, 0xfa, 0xf1, 0x58, 0x45, 0x1f, 0x8f, 0xf6, + 0x37, 0xce, 0xb8, 0xab, 0xdd, 0xc7, 0xea, 0x25, 0x83, 0x30, 0x80, 0xf7, 0x59, 0xc0, 0x41, 0xfb, + 0x8a, 0x70, 0xa9, 0xc7, 0x9d, 0xed, 0x41, 0x60, 0x6f, 0x53, 0x37, 0x34, 0x07, 0x61, 0xf0, 0x9c, + 0x31, 0x4f, 0xbe, 0x8d, 0x0b, 0x1c, 0x02, 0x1b, 0xc2, 0x64, 0x44, 0x46, 0x1a, 0x2d, 0xd8, 0x99, + 0xfb, 0x6f, 0x76, 0xb6, 0x4b, 0x9f, 0xc7, 0xaa, 0x74, 0x3c, 0x56, 0xa5, 0xa8, 0xa5, 0xf4, 0x65, + 0xed, 0x1e, 0xbe, 0x7b, 0x41, 0xa1, 0x59, 0x23, 0x9b, 0xdf, 0x73, 0x38, 0xdf, 0xe3, 0x8e, 0xfc, + 0x05, 0xe1, 0xb5, 0x0b, 0xff, 0x7a, 0x4f, 0xc8, 0x55, 0x3e, 0x06, 0x72, 0x89, 0x61, 0xd5, 0xa7, + 0xff, 0x84, 0x67, 0x65, 0xca, 0x7b, 0x08, 0xdf, 0x3c, 0x67, 0xf6, 0xe3, 0x2b, 0xdf, 0xfd, 0x27, + 0x5a, 0xed, 0xfc, 0x35, 0x9a, 0x95, 0x54, 0x5d, 0xfa, 0x70, 0xb4, 0xbf, 0x81, 0xba, 0xcf, 0x0e, + 0xa6, 0x0a, 0x3a, 0x9c, 0x2a, 0xe8, 0xd7, 0x54, 0x41, 0x7b, 0x33, 0x45, 0x3a, 0x9c, 0x29, 0xd2, + 0x8f, 0x99, 0x22, 0xbd, 0x6a, 0x2d, 0x0c, 0x30, 0x79, 0xad, 0x71, 0x6e, 0x01, 0x0d, 0x9b, 0x2d, + 0x7d, 0x37, 0x5d, 0x43, 0xf1, 0x48, 0xcd, 0x42, 0xbc, 0x0d, 0x1e, 0xfd, 0x0e, 0x00, 0x00, 0xff, + 0xff, 0x2d, 0xa1, 0x17, 0xb9, 0xb3, 0x04, 0x00, 0x00, } func (this *MsgCreateVestingAccount) Equal(that interface{}) bool { diff --git a/x/alloc/wasm/encoder.go b/x/alloc/wasm/encoder.go index c947fad6e..8dcf0461f 100644 --- a/x/alloc/wasm/encoder.go +++ b/x/alloc/wasm/encoder.go @@ -9,8 +9,8 @@ import ( wasmvmtypes "github.com/CosmWasm/wasmvm/types" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - sgwasm "github.com/public-awesome/stargaze/v13/internal/wasm" - "github.com/public-awesome/stargaze/v13/x/alloc/types" + sgwasm "github.com/public-awesome/stargaze/v14/internal/wasm" + "github.com/public-awesome/stargaze/v14/x/alloc/types" ) var _ sgwasm.Encoder = Encoder diff --git a/x/cron/abci.go b/x/cron/abci.go index 47110b599..d45e19411 100644 --- a/x/cron/abci.go +++ b/x/cron/abci.go @@ -11,9 +11,9 @@ import ( abci "github.com/cometbft/cometbft/abci/types" "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/x/cron/contract" - "github.com/public-awesome/stargaze/v13/x/cron/keeper" - "github.com/public-awesome/stargaze/v13/x/cron/types" + "github.com/public-awesome/stargaze/v14/x/cron/contract" + "github.com/public-awesome/stargaze/v14/x/cron/keeper" + "github.com/public-awesome/stargaze/v14/x/cron/types" ) // BeginBlocker sends a BeginBlock SudoMsg to all privileged contracts diff --git a/x/cron/client/cli/query.go b/x/cron/client/cli/query.go index f95ea7236..abe04a80f 100644 --- a/x/cron/client/cli/query.go +++ b/x/cron/client/cli/query.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/public-awesome/stargaze/v13/x/cron/types" + "github.com/public-awesome/stargaze/v14/x/cron/types" ) // GetQueryCmd returns the cli query commands for this module diff --git a/x/cron/client/cli/tx.go b/x/cron/client/cli/tx.go index b41831222..376f281e9 100644 --- a/x/cron/client/cli/tx.go +++ b/x/cron/client/cli/tx.go @@ -10,7 +10,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/client/tx" - "github.com/public-awesome/stargaze/v13/x/cron/types" + "github.com/public-awesome/stargaze/v14/x/cron/types" ) var DefaultRelativePacketTimeoutTimestamp = uint64((time.Duration(10) * time.Minute).Nanoseconds()) diff --git a/x/cron/genesis.go b/x/cron/genesis.go index a6e4e3af7..4d1b39753 100644 --- a/x/cron/genesis.go +++ b/x/cron/genesis.go @@ -2,8 +2,8 @@ package cron import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/x/cron/keeper" - "github.com/public-awesome/stargaze/v13/x/cron/types" + "github.com/public-awesome/stargaze/v14/x/cron/keeper" + "github.com/public-awesome/stargaze/v14/x/cron/types" ) // InitGenesis initializes the module's state from a provided genesis state. diff --git a/x/cron/keeper/grpc_query.go b/x/cron/keeper/grpc_query.go index 7eaf7a342..f19b20edd 100644 --- a/x/cron/keeper/grpc_query.go +++ b/x/cron/keeper/grpc_query.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/x/cron/types" + "github.com/public-awesome/stargaze/v14/x/cron/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/cron/keeper/keeper.go b/x/cron/keeper/keeper.go index 39573c239..65312de60 100644 --- a/x/cron/keeper/keeper.go +++ b/x/cron/keeper/keeper.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/public-awesome/stargaze/v13/x/cron/types" + "github.com/public-awesome/stargaze/v14/x/cron/types" ) type ( diff --git a/x/cron/keeper/msg_server.go b/x/cron/keeper/msg_server.go index 9e0b7221f..0a91355a0 100644 --- a/x/cron/keeper/msg_server.go +++ b/x/cron/keeper/msg_server.go @@ -6,7 +6,7 @@ import ( errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/x/cron/types" + "github.com/public-awesome/stargaze/v14/x/cron/types" ) type msgServer struct { diff --git a/x/cron/keeper/msg_server_test.go b/x/cron/keeper/msg_server_test.go index efe08c655..51e7b2e5b 100644 --- a/x/cron/keeper/msg_server_test.go +++ b/x/cron/keeper/msg_server_test.go @@ -4,10 +4,10 @@ import ( "testing" sdk "github.com/cosmos/cosmos-sdk/types" - keepertest "github.com/public-awesome/stargaze/v13/testutil/keeper" - "github.com/public-awesome/stargaze/v13/testutil/sample" - "github.com/public-awesome/stargaze/v13/x/cron/keeper" - "github.com/public-awesome/stargaze/v13/x/cron/types" + keepertest "github.com/public-awesome/stargaze/v14/testutil/keeper" + "github.com/public-awesome/stargaze/v14/testutil/sample" + "github.com/public-awesome/stargaze/v14/x/cron/keeper" + "github.com/public-awesome/stargaze/v14/x/cron/types" "github.com/stretchr/testify/require" ) diff --git a/x/cron/keeper/params.go b/x/cron/keeper/params.go index 5aacfb29f..1ae273bb5 100644 --- a/x/cron/keeper/params.go +++ b/x/cron/keeper/params.go @@ -2,7 +2,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/x/cron/types" + "github.com/public-awesome/stargaze/v14/x/cron/types" ) // SetParams sets the total set of minting parameters. diff --git a/x/cron/keeper/privileged.go b/x/cron/keeper/privileged.go index 021481997..a9dd1ec67 100644 --- a/x/cron/keeper/privileged.go +++ b/x/cron/keeper/privileged.go @@ -5,7 +5,7 @@ import ( wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/x/cron/types" + "github.com/public-awesome/stargaze/v14/x/cron/types" ) // SetPrivileged checks if the given contract exists and adds it to the list of privilege contracts diff --git a/x/cron/keeper/privileged_test.go b/x/cron/keeper/privileged_test.go index 75b1764e8..21698912a 100644 --- a/x/cron/keeper/privileged_test.go +++ b/x/cron/keeper/privileged_test.go @@ -4,8 +4,8 @@ import ( "testing" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/testutil/keeper" - "github.com/public-awesome/stargaze/v13/testutil/sample" + "github.com/public-awesome/stargaze/v14/testutil/keeper" + "github.com/public-awesome/stargaze/v14/testutil/sample" ) func Test_SetPrivileged(t *testing.T) { diff --git a/x/cron/module.go b/x/cron/module.go index f2ee043c9..d3ea4b288 100644 --- a/x/cron/module.go +++ b/x/cron/module.go @@ -17,9 +17,9 @@ import ( cdctypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/public-awesome/stargaze/v13/x/cron/client/cli" - "github.com/public-awesome/stargaze/v13/x/cron/keeper" - "github.com/public-awesome/stargaze/v13/x/cron/types" + "github.com/public-awesome/stargaze/v14/x/cron/client/cli" + "github.com/public-awesome/stargaze/v14/x/cron/keeper" + "github.com/public-awesome/stargaze/v14/x/cron/types" ) var ( diff --git a/x/cron/types/cron.pb.go b/x/cron/types/cron.pb.go index 74b11d5f7..1a29ef1fc 100644 --- a/x/cron/types/cron.pb.go +++ b/x/cron/types/cron.pb.go @@ -89,9 +89,9 @@ var fileDescriptor_72b37a39eca21e75 = []byte{ 0xb0, 0xb0, 0x23, 0x4c, 0xd4, 0x8a, 0x65, 0xc6, 0x02, 0x79, 0x06, 0x27, 0xdf, 0x13, 0x8f, 0xe4, 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x71, 0xc2, 0x63, 0x39, 0x86, 0x0b, 0x8f, 0xe5, 0x18, 0x6e, 0x3c, 0x96, 0x63, 0x88, 0x32, 0x4e, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, - 0xce, 0xcf, 0xd5, 0x87, 0xb8, 0x49, 0x17, 0xc3, 0xfd, 0x65, 0x86, 0xc6, 0xfa, 0x15, 0x10, 0x5f, + 0xce, 0xcf, 0xd5, 0x87, 0xb8, 0x49, 0x17, 0xc3, 0xfd, 0x65, 0x86, 0x26, 0xfa, 0x15, 0x10, 0x5f, 0x94, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x9d, 0x63, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, - 0xc5, 0xca, 0x03, 0xc7, 0xf1, 0x00, 0x00, 0x00, + 0x85, 0xf4, 0xda, 0xa2, 0xf1, 0x00, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/cron/types/genesis.pb.go b/x/cron/types/genesis.pb.go index e39f74e2a..c9b260a20 100644 --- a/x/cron/types/genesis.pb.go +++ b/x/cron/types/genesis.pb.go @@ -89,24 +89,24 @@ func init() { var fileDescriptor_f7d580a3451651a1 = []byte{ // 291 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0x29, 0x28, 0x4d, 0xca, - 0xc9, 0x4c, 0x4e, 0x2c, 0x4f, 0x2d, 0xce, 0xcf, 0x4d, 0xd5, 0x2f, 0x2e, 0x49, 0x2c, 0x4a, 0x4f, - 0xac, 0x4a, 0xd5, 0x4f, 0x2e, 0xca, 0xcf, 0xd3, 0x2f, 0x33, 0xd4, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, - 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x92, 0x43, 0x51, 0xad, 0x07, 0x53, 0xad, - 0x07, 0x52, 0xad, 0x57, 0x66, 0x28, 0x25, 0x92, 0x9e, 0x9f, 0x9e, 0x0f, 0x56, 0xaa, 0x0f, 0x62, - 0x41, 0x74, 0x49, 0x69, 0x12, 0xb0, 0x03, 0xac, 0x1b, 0xac, 0x54, 0xe9, 0x26, 0x23, 0x17, 0x8f, - 0x3b, 0xc4, 0xca, 0xe0, 0x92, 0xc4, 0x92, 0x54, 0xa1, 0x7c, 0x2e, 0xd9, 0x82, 0xa2, 0xcc, 0xb2, - 0xcc, 0x9c, 0xd4, 0xf4, 0xd4, 0x94, 0xf8, 0xe4, 0xfc, 0xbc, 0x92, 0xa2, 0xc4, 0xe4, 0x92, 0xf8, - 0xc4, 0x94, 0x94, 0xa2, 0xd4, 0xe2, 0xe2, 0xd4, 0x62, 0x09, 0x46, 0x05, 0x66, 0x0d, 0x4e, 0x27, - 0xed, 0x57, 0xf7, 0xe4, 0xd5, 0xf1, 0x2a, 0xd4, 0xc9, 0xcf, 0xcd, 0x2c, 0x49, 0xcd, 0x2d, 0x28, - 0xa9, 0x0c, 0x92, 0x46, 0x28, 0x74, 0x86, 0xaa, 0x73, 0x84, 0x29, 0x13, 0x8a, 0xe0, 0x62, 0x2b, - 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0x96, 0x60, 0x52, 0x60, 0xd4, 0xe0, 0x36, 0x52, 0xd3, 0xc3, 0xef, - 0x67, 0xbd, 0x00, 0xb0, 0x6a, 0x27, 0x89, 0x13, 0xf7, 0xe4, 0x19, 0x5e, 0xdd, 0x93, 0x17, 0x80, - 0xe8, 0x46, 0xb2, 0x0e, 0x6a, 0x9e, 0x93, 0xef, 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, 0x31, - 0x3e, 0x78, 0x24, 0xc7, 0x38, 0xe1, 0xb1, 0x1c, 0xc3, 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, - 0x31, 0x44, 0x19, 0xa7, 0x67, 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0x43, 0x6c, - 0xd3, 0xc5, 0x08, 0xac, 0x32, 0x43, 0x63, 0xfd, 0x0a, 0x48, 0x90, 0x95, 0x54, 0x16, 0xa4, 0x16, - 0x27, 0xb1, 0x81, 0x43, 0xcc, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0xcf, 0xd5, 0x7e, 0xea, 0xc2, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0xd0, 0xc1, 0x4a, 0xc3, 0x30, + 0x1c, 0x06, 0xf0, 0x46, 0x61, 0x60, 0xf5, 0x20, 0xc3, 0x43, 0x99, 0x98, 0x0e, 0x0f, 0x3a, 0x71, + 0x26, 0xd4, 0xf9, 0x02, 0xd6, 0x83, 0x27, 0x41, 0xf4, 0x22, 0x5e, 0x46, 0xda, 0xfe, 0x89, 0x81, + 0xb5, 0x09, 0x49, 0x56, 0x9d, 0x4f, 0xe1, 0x63, 0xed, 0xb8, 0xa3, 0x5e, 0x8a, 0xb4, 0xb7, 0x3d, + 0x85, 0xac, 0xdd, 0x50, 0x11, 0xe6, 0x2d, 0x87, 0xdf, 0x97, 0x8f, 0xff, 0xe7, 0xf6, 0xd5, 0x38, + 0x1a, 0x89, 0x98, 0x3d, 0x83, 0x91, 0x29, 0x50, 0x63, 0x99, 0xe6, 0xec, 0x15, 0x68, 0xac, 0x65, + 0x46, 0xf3, 0x80, 0x72, 0xc8, 0xc0, 0x08, 0x43, 0x94, 0x96, 0x56, 0xb6, 0xf1, 0x2f, 0x4d, 0x56, + 0x9a, 0x2c, 0x34, 0xc9, 0x83, 0xce, 0x1e, 0x97, 0x5c, 0xd6, 0x94, 0x2e, 0x5e, 0x4d, 0xaa, 0x73, + 0xf2, 0x4f, 0x47, 0x9d, 0xae, 0xe9, 0xe1, 0x07, 0x72, 0x77, 0xae, 0x9b, 0xca, 0x7b, 0xcb, 0x2c, + 0xb4, 0xa5, 0x7b, 0xa0, 0xb4, 0xc8, 0xc5, 0x08, 0x38, 0x24, 0xc3, 0x58, 0x66, 0x56, 0xb3, 0xd8, + 0x0e, 0x59, 0x92, 0x68, 0x30, 0x06, 0x8c, 0x87, 0xba, 0x9b, 0xbd, 0xad, 0xf0, 0x74, 0x5e, 0xf8, + 0xc7, 0x6b, 0x61, 0x5f, 0xa6, 0xc2, 0x42, 0xaa, 0xec, 0xe4, 0x6e, 0xff, 0x1b, 0x5e, 0x2d, 0xdd, + 0xe5, 0x8a, 0xb5, 0x1f, 0xdc, 0x96, 0x62, 0x9a, 0xa5, 0xc6, 0xdb, 0xe8, 0xa2, 0xde, 0xf6, 0xf9, + 0x11, 0x59, 0x7f, 0x33, 0xb9, 0xad, 0x75, 0xe8, 0x4d, 0x0b, 0xdf, 0x99, 0x17, 0xfe, 0x6e, 0x93, + 0xfe, 0x51, 0xb7, 0xfc, 0x2f, 0xbc, 0x99, 0x96, 0x18, 0xcd, 0x4a, 0x8c, 0x3e, 0x4b, 0x8c, 0xde, + 0x2a, 0xec, 0xcc, 0x2a, 0xec, 0xbc, 0x57, 0xd8, 0x79, 0x1c, 0x70, 0x61, 0x9f, 0xc6, 0x11, 0x89, + 0x65, 0x4a, 0x9b, 0xb6, 0xb3, 0x3f, 0x63, 0xe5, 0xc1, 0x05, 0x7d, 0x69, 0x26, 0xb3, 0x13, 0x05, + 0x26, 0x6a, 0xd5, 0x8b, 0x0d, 0xbe, 0x02, 0x00, 0x00, 0xff, 0xff, 0x8f, 0xeb, 0xa7, 0x8f, 0xc2, 0x01, 0x00, 0x00, } diff --git a/x/cron/types/genesis_test.go b/x/cron/types/genesis_test.go index 2bd2fc14d..dc42040a5 100644 --- a/x/cron/types/genesis_test.go +++ b/x/cron/types/genesis_test.go @@ -3,7 +3,7 @@ package types_test import ( "testing" - "github.com/public-awesome/stargaze/v13/x/cron/types" + "github.com/public-awesome/stargaze/v14/x/cron/types" "github.com/stretchr/testify/require" ) diff --git a/x/cron/types/params_test.go b/x/cron/types/params_test.go index 7576b32af..5c9dbf5a9 100644 --- a/x/cron/types/params_test.go +++ b/x/cron/types/params_test.go @@ -3,7 +3,7 @@ package types_test import ( "testing" - "github.com/public-awesome/stargaze/v13/x/cron/types" + "github.com/public-awesome/stargaze/v14/x/cron/types" "github.com/stretchr/testify/require" ) diff --git a/x/cron/types/proposal.pb.go b/x/cron/types/proposal.pb.go index cce11026a..9639a6835 100644 --- a/x/cron/types/proposal.pb.go +++ b/x/cron/types/proposal.pb.go @@ -193,9 +193,9 @@ var fileDescriptor_d17d2b53c25d70a5 = []byte{ 0x1c, 0x0c, 0x84, 0x3c, 0x27, 0xc1, 0xe8, 0xe4, 0x7b, 0xe2, 0x91, 0x1c, 0xe3, 0x85, 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, 0x31, 0x4e, 0x78, 0x2c, 0xc7, 0x70, 0xe1, 0xb1, 0x1c, 0xc3, 0x8d, 0xc7, 0x72, 0x0c, 0x51, 0xc6, 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0xfa, 0x90, - 0x64, 0xa9, 0x8b, 0x91, 0x8c, 0xcb, 0x0c, 0x8d, 0xf5, 0x2b, 0x20, 0x89, 0xb9, 0xa4, 0xb2, 0x20, - 0xb5, 0x38, 0x89, 0x0d, 0x9c, 0xc6, 0x8c, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x2a, 0xdf, 0xc3, - 0x3b, 0xf8, 0x02, 0x00, 0x00, + 0x64, 0xa9, 0x8b, 0x91, 0x8c, 0xcb, 0x0c, 0x4d, 0xf4, 0x2b, 0x20, 0x89, 0xb9, 0xa4, 0xb2, 0x20, + 0xb5, 0x38, 0x89, 0x0d, 0x9c, 0xc6, 0x8c, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x6a, 0xe1, 0x1a, + 0x5e, 0xf8, 0x02, 0x00, 0x00, } func (m *PromoteToPrivilegedContractProposal) Marshal() (dAtA []byte, err error) { diff --git a/x/cron/types/query.pb.go b/x/cron/types/query.pb.go index 1bd439f3d..1539851ca 100644 --- a/x/cron/types/query.pb.go +++ b/x/cron/types/query.pb.go @@ -214,31 +214,31 @@ var fileDescriptor_5f13a70ad4f0f33e = []byte{ // 421 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x52, 0xc1, 0x8e, 0xd3, 0x30, 0x14, 0x8c, 0x17, 0x51, 0x09, 0x23, 0x21, 0x30, 0x7b, 0x88, 0xc2, 0x2a, 0x2d, 0x41, 0x82, 0x5d, - 0x60, 0x63, 0xb5, 0xb9, 0xc1, 0x89, 0x9e, 0x41, 0x5a, 0xf6, 0x84, 0xf6, 0xb2, 0x72, 0x53, 0x2b, - 0x58, 0x4a, 0x62, 0xaf, 0xed, 0x04, 0xc2, 0x91, 0x2f, 0x40, 0xea, 0xaf, 0xf0, 0x11, 0x3d, 0x56, - 0x82, 0x03, 0xa7, 0x0a, 0xb5, 0x9c, 0xfa, 0x15, 0xa8, 0x76, 0x02, 0x44, 0x01, 0x0a, 0x7b, 0x8b, - 0x3c, 0x33, 0x6f, 0xe6, 0x4d, 0x1e, 0x7c, 0x28, 0x8a, 0x49, 0xca, 0x62, 0xf2, 0x86, 0x2a, 0x9e, - 0x51, 0xac, 0x34, 0x91, 0x09, 0x79, 0x47, 0x71, 0x2c, 0x79, 0x8e, 0xcb, 0x21, 0xbe, 0x28, 0xa8, - 0xac, 0x42, 0x21, 0xb9, 0xe6, 0xc8, 0x6f, 0x71, 0xc3, 0x86, 0x1b, 0x6e, 0xb9, 0x61, 0x39, 0xf4, - 0xf6, 0x13, 0x9e, 0x70, 0x43, 0xc5, 0xdb, 0x2f, 0xab, 0xf2, 0x0e, 0x12, 0xce, 0x93, 0x94, 0x62, - 0x22, 0x18, 0x26, 0x79, 0xce, 0x35, 0xd1, 0x8c, 0xe7, 0xaa, 0x46, 0x8f, 0x76, 0xf8, 0x9b, 0xd9, - 0x86, 0x1a, 0x1c, 0x40, 0xef, 0xe5, 0x36, 0xcd, 0x73, 0xa6, 0xf4, 0x89, 0x64, 0x25, 0x4b, 0x69, - 0x42, 0xa7, 0xa7, 0xf4, 0xa2, 0xa0, 0x4a, 0x07, 0x15, 0xbc, 0xf3, 0x5b, 0x54, 0x09, 0x9e, 0x2b, - 0x8a, 0xce, 0x20, 0x8a, 0x79, 0xae, 0x25, 0x89, 0xf5, 0x39, 0x99, 0x4e, 0x25, 0x55, 0x8a, 0x2a, - 0x17, 0x0c, 0xae, 0x1c, 0x5e, 0x1b, 0x3f, 0xda, 0x2c, 0xfb, 0x0f, 0xc4, 0x0f, 0xcd, 0x79, 0x97, - 0xf8, 0x98, 0x67, 0x4c, 0xd3, 0x4c, 0xe8, 0xea, 0xf4, 0x56, 0x83, 0x3e, 0x6b, 0xc0, 0x60, 0x1f, - 0x22, 0x63, 0x7d, 0x42, 0x24, 0xc9, 0x54, 0x13, 0x88, 0xc3, 0xdb, 0xad, 0xd7, 0x3a, 0xc8, 0x2b, - 0xd8, 0x13, 0xe6, 0xc5, 0x05, 0x03, 0x70, 0x78, 0x7d, 0x74, 0x3f, 0xfc, 0x7b, 0xab, 0xa1, 0xd5, - 0x8f, 0xdd, 0xf9, 0xb2, 0xef, 0x6c, 0x96, 0xfd, 0x9b, 0x56, 0xfd, 0x4b, 0xa2, 0x7a, 0xde, 0xe8, - 0xf3, 0x1e, 0xbc, 0x6a, 0x1c, 0xd1, 0x47, 0x00, 0x6f, 0xb4, 0x7b, 0x40, 0x4f, 0x76, 0xd9, 0xfc, - 0xb9, 0x5a, 0xef, 0xe9, 0xa5, 0xb4, 0x76, 0xdf, 0xe0, 0xe8, 0xfd, 0xa7, 0x6f, 0xb3, 0xbd, 0x7b, - 0xe8, 0x6e, 0xf7, 0xdf, 0xa6, 0x4c, 0xe9, 0xe3, 0x9f, 0xbd, 0xa3, 0x19, 0x80, 0x3d, 0xbb, 0x2d, - 0x1a, 0xfd, 0x93, 0x65, 0xab, 0x70, 0x2f, 0xfa, 0x2f, 0x4d, 0x1d, 0x6f, 0x60, 0xe2, 0x79, 0xc8, - 0xed, 0xc6, 0xb3, 0xb5, 0x8e, 0x5f, 0xcc, 0x57, 0x3e, 0x58, 0xac, 0x7c, 0xf0, 0x75, 0xe5, 0x83, - 0x0f, 0x6b, 0xdf, 0x59, 0xac, 0x7d, 0xe7, 0xcb, 0xda, 0x77, 0xce, 0xa2, 0x84, 0xe9, 0xd7, 0xc5, - 0x24, 0x8c, 0x79, 0x86, 0xad, 0xf5, 0x71, 0xe7, 0x8e, 0xcb, 0x61, 0x84, 0xdf, 0xda, 0x91, 0xba, - 0x12, 0x54, 0x4d, 0x7a, 0xe6, 0x98, 0xa3, 0xef, 0x01, 0x00, 0x00, 0xff, 0xff, 0x05, 0xfa, 0x6c, - 0x05, 0x79, 0x03, 0x00, 0x00, + 0x60, 0x63, 0xb5, 0xe5, 0x04, 0x27, 0x7a, 0x06, 0x69, 0xd9, 0x13, 0xda, 0x4b, 0xe5, 0xa6, 0x56, + 0xb0, 0x94, 0xc4, 0xae, 0xed, 0x04, 0xc2, 0x91, 0x2f, 0x40, 0xea, 0xaf, 0xf0, 0x11, 0x3d, 0x56, + 0x82, 0x03, 0xa7, 0x0a, 0xb5, 0x9c, 0xfa, 0x15, 0xa8, 0x76, 0x02, 0x44, 0x01, 0x0a, 0xdc, 0x22, + 0xcf, 0xcc, 0x9b, 0x79, 0x93, 0x07, 0xef, 0x8b, 0x7c, 0x92, 0xb0, 0x88, 0xbc, 0xa6, 0x8a, 0xa7, + 0x14, 0x2b, 0x4d, 0x64, 0x4c, 0xde, 0x52, 0x1c, 0x49, 0x9e, 0xe1, 0xa2, 0x8f, 0x67, 0x39, 0x95, + 0x65, 0x28, 0x24, 0xd7, 0x1c, 0xf9, 0x0d, 0x6e, 0x58, 0x73, 0xc3, 0x1d, 0x37, 0x2c, 0xfa, 0xde, + 0x61, 0xcc, 0x63, 0x6e, 0xa8, 0x78, 0xf7, 0x65, 0x55, 0xde, 0x51, 0xcc, 0x79, 0x9c, 0x50, 0x4c, + 0x04, 0xc3, 0x24, 0xcb, 0xb8, 0x26, 0x9a, 0xf1, 0x4c, 0x55, 0xe8, 0xc9, 0x1e, 0x7f, 0x33, 0xdb, + 0x50, 0x83, 0x23, 0xe8, 0xbd, 0xd8, 0xa5, 0x79, 0xc6, 0x94, 0x3e, 0x93, 0xac, 0x60, 0x09, 0x8d, + 0xe9, 0xf4, 0x9c, 0xce, 0x72, 0xaa, 0x74, 0x50, 0xc2, 0x5b, 0xbf, 0x44, 0x95, 0xe0, 0x99, 0xa2, + 0xe8, 0x02, 0xa2, 0x88, 0x67, 0x5a, 0x92, 0x48, 0x8f, 0xc9, 0x74, 0x2a, 0xa9, 0x52, 0x54, 0xb9, + 0xa0, 0x77, 0xe9, 0xf8, 0xca, 0xe8, 0xc1, 0x76, 0xd5, 0xbd, 0x27, 0xbe, 0x6b, 0xc6, 0x6d, 0xe2, + 0x43, 0x9e, 0x32, 0x4d, 0x53, 0xa1, 0xcb, 0xf3, 0x1b, 0x35, 0xfa, 0xb4, 0x06, 0x83, 0x43, 0x88, + 0x8c, 0xf5, 0x19, 0x91, 0x24, 0x55, 0x75, 0x20, 0x0e, 0x6f, 0x36, 0x5e, 0xab, 0x20, 0x2f, 0x61, + 0x47, 0x98, 0x17, 0x17, 0xf4, 0xc0, 0xf1, 0xd5, 0xc1, 0xdd, 0xf0, 0xcf, 0xad, 0x86, 0x56, 0x3f, + 0x72, 0x17, 0xab, 0xae, 0xb3, 0x5d, 0x75, 0xaf, 0x5b, 0xf5, 0x4f, 0x89, 0xaa, 0x79, 0x83, 0x4f, + 0x07, 0xf0, 0xb2, 0x71, 0x44, 0x1f, 0x00, 0xbc, 0xd6, 0xec, 0x01, 0x3d, 0xde, 0x67, 0xf3, 0xfb, + 0x6a, 0xbd, 0x27, 0xff, 0xa5, 0xb5, 0xfb, 0x06, 0x27, 0xef, 0x3e, 0x7e, 0x9d, 0x1f, 0xdc, 0x41, + 0xb7, 0xdb, 0xff, 0x36, 0x61, 0x4a, 0x9f, 0xfe, 0xe8, 0x1d, 0xcd, 0x01, 0xec, 0xd8, 0x6d, 0xd1, + 0xe0, 0xaf, 0x2c, 0x1b, 0x85, 0x7b, 0xc3, 0x7f, 0xd2, 0x54, 0xf1, 0x7a, 0x26, 0x9e, 0x87, 0xdc, + 0x76, 0x3c, 0x5b, 0xeb, 0xe8, 0xf9, 0x62, 0xed, 0x83, 0xe5, 0xda, 0x07, 0x5f, 0xd6, 0x3e, 0x78, + 0xbf, 0xf1, 0x9d, 0xe5, 0xc6, 0x77, 0x3e, 0x6f, 0x7c, 0xe7, 0x62, 0x18, 0x33, 0xfd, 0x2a, 0x9f, + 0x84, 0x11, 0x4f, 0xb1, 0xb5, 0x3e, 0x6d, 0xdd, 0x71, 0xd1, 0x7f, 0x84, 0xdf, 0xd8, 0x91, 0xba, + 0x14, 0x54, 0x4d, 0x3a, 0xe6, 0x98, 0x87, 0xdf, 0x02, 0x00, 0x00, 0xff, 0xff, 0x45, 0xc4, 0xb5, + 0x60, 0x79, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/cron/types/tx.pb.go b/x/cron/types/tx.pb.go index 13f36eb3d..3064e89da 100644 --- a/x/cron/types/tx.pb.go +++ b/x/cron/types/tx.pb.go @@ -320,35 +320,35 @@ func init() { } var fileDescriptor_35ccf9aea279ac0f = []byte{ - // 446 bytes of a gzipped FileDescriptorProto + // 447 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x94, 0x4d, 0x8b, 0xd3, 0x40, 0x18, 0xc7, 0x33, 0x2e, 0x2e, 0xee, 0x28, 0x2a, 0x41, 0xd8, 0x1a, 0x97, 0xa9, 0xf4, 0xb0, 0x6f, - 0x68, 0x86, 0x6e, 0x0f, 0x82, 0x07, 0x85, 0x55, 0xd6, 0x53, 0xa0, 0x14, 0x05, 0xf1, 0x36, 0xcd, + 0x68, 0x86, 0xee, 0x0a, 0x82, 0x07, 0x85, 0x55, 0xd6, 0x53, 0xa0, 0x14, 0x05, 0xf1, 0x36, 0xcd, 0x0e, 0xd3, 0x68, 0xa7, 0x4f, 0x98, 0x99, 0xc6, 0xd6, 0x93, 0xf8, 0x09, 0xbc, 0xfa, 0x01, 0x04, 0x8f, 0xfd, 0x18, 0x3d, 0xf6, 0xa8, 0x97, 0x22, 0xed, 0xa1, 0xe0, 0xa7, 0x90, 0x24, 0x4d, 0x6b, - 0x2d, 0x24, 0x95, 0xe2, 0x2d, 0xc9, 0xfc, 0x5f, 0x7e, 0xe1, 0x19, 0x1e, 0x7c, 0x14, 0x76, 0x9b, - 0xed, 0xc0, 0x67, 0xef, 0xb9, 0x06, 0xc9, 0xa9, 0x36, 0x4c, 0x09, 0xf6, 0x81, 0x53, 0x5f, 0x41, - 0x87, 0x46, 0x55, 0x6a, 0x7a, 0x6e, 0xa8, 0xc0, 0x80, 0x4d, 0x56, 0x84, 0x6e, 0x26, 0x74, 0x63, - 0xa1, 0x1b, 0x55, 0x9d, 0x3b, 0x02, 0x04, 0x24, 0x52, 0x1a, 0x3f, 0xa5, 0x2e, 0x67, 0xdf, 0x07, - 0x2d, 0x41, 0x53, 0xa9, 0x45, 0x9c, 0x26, 0xb5, 0x98, 0x1f, 0x9c, 0x14, 0xf4, 0x26, 0xb1, 0x89, - 0xb4, 0xf2, 0x16, 0x13, 0x4f, 0x8b, 0xba, 0x02, 0x09, 0x86, 0xbf, 0x84, 0xba, 0x0a, 0xa2, 0xa0, - 0xcd, 0x05, 0xbf, 0x7c, 0x06, 0x1d, 0xa3, 0x98, 0x6f, 0xec, 0x03, 0xbc, 0xc7, 0xba, 0xa6, 0x05, - 0x2a, 0x30, 0xfd, 0x12, 0xba, 0x8f, 0x8e, 0xf7, 0x1a, 0xcb, 0x0f, 0xb6, 0x83, 0xaf, 0xf9, 0x73, - 0x65, 0xe9, 0x4a, 0x72, 0xb8, 0x78, 0x7f, 0x7c, 0xf3, 0xd3, 0x6c, 0x70, 0xba, 0xd4, 0x56, 0x8e, - 0xf1, 0x61, 0x7e, 0x57, 0x83, 0xeb, 0x10, 0x3a, 0x9a, 0x57, 0xde, 0xe1, 0xb2, 0xa7, 0xc5, 0x73, - 0x1e, 0x0b, 0x2f, 0x14, 0xc8, 0xff, 0x8a, 0x75, 0x82, 0x8f, 0x0a, 0xca, 0x16, 0x5c, 0x5f, 0x10, - 0xbe, 0xe5, 0x69, 0xf1, 0x2a, 0xbc, 0x64, 0x86, 0xd7, 0x99, 0x62, 0x52, 0x17, 0x80, 0xbc, 0xc6, - 0xbb, 0x61, 0xa2, 0x4b, 0x30, 0xae, 0x9f, 0x1d, 0xba, 0xf9, 0xa3, 0x76, 0xd3, 0xd4, 0xf3, 0xd2, - 0x70, 0x5c, 0xb6, 0x7e, 0x8d, 0xcb, 0xb7, 0x53, 0xf7, 0x03, 0x90, 0x81, 0xe1, 0x32, 0x34, 0xfd, - 0xc6, 0x3c, 0x6f, 0xed, 0x37, 0xee, 0xe2, 0xfd, 0xbf, 0xd0, 0x32, 0xec, 0xb3, 0x1f, 0x3b, 0x78, - 0xc7, 0xd3, 0xc2, 0xfe, 0x8a, 0xf0, 0xbd, 0xbc, 0x51, 0x3f, 0x29, 0x82, 0xcb, 0x1f, 0x9f, 0x73, - 0xb1, 0x9d, 0x3f, 0xe3, 0xb5, 0xbf, 0x21, 0x7c, 0x90, 0x3b, 0xfc, 0xa7, 0x1b, 0x14, 0xe5, 0x05, - 0x38, 0x2f, 0xb6, 0x0c, 0x58, 0xa0, 0xf6, 0xf0, 0x8d, 0x95, 0xdb, 0x40, 0x37, 0x08, 0xfe, 0xd3, - 0xe0, 0x3c, 0xfa, 0x47, 0x43, 0xd6, 0xec, 0x5c, 0xfd, 0x38, 0x1b, 0x9c, 0xa2, 0x73, 0x6f, 0x38, - 0x21, 0x68, 0x34, 0x21, 0xe8, 0xe7, 0x84, 0xa0, 0xcf, 0x53, 0x62, 0x8d, 0xa6, 0xc4, 0xfa, 0x3e, - 0x25, 0xd6, 0x9b, 0x9a, 0x08, 0x4c, 0xab, 0xdb, 0x74, 0x7d, 0x90, 0x34, 0xed, 0x78, 0xb8, 0xb6, - 0x11, 0xa2, 0x6a, 0x8d, 0xf6, 0xd2, 0xbd, 0x60, 0xfa, 0x21, 0xd7, 0xcd, 0xdd, 0x64, 0x2d, 0xd4, - 0x7e, 0x07, 0x00, 0x00, 0xff, 0xff, 0x3c, 0x5f, 0xe6, 0x2e, 0xbb, 0x04, 0x00, 0x00, + 0x2d, 0x24, 0x95, 0xb2, 0xb7, 0xc9, 0xe4, 0xff, 0xf2, 0x0b, 0x4f, 0x78, 0xf0, 0x41, 0xd8, 0x69, + 0xb4, 0x02, 0x9f, 0x7d, 0xe0, 0x1a, 0x24, 0xa7, 0xda, 0x30, 0x25, 0xd8, 0x47, 0x4e, 0x7d, 0x05, + 0x6d, 0x1a, 0x55, 0xa9, 0xe9, 0xba, 0xa1, 0x02, 0x03, 0x36, 0x59, 0x12, 0xba, 0x99, 0xd0, 0x8d, + 0x85, 0x6e, 0x54, 0x75, 0x76, 0x7d, 0xd0, 0x12, 0x34, 0x95, 0x5a, 0xc4, 0x3e, 0xa9, 0x45, 0x6a, + 0x74, 0xee, 0x08, 0x10, 0x90, 0x1c, 0x69, 0x7c, 0x9a, 0xdd, 0x1e, 0x15, 0xf4, 0x26, 0xb1, 0x89, + 0xb4, 0xf2, 0x0e, 0x13, 0x4f, 0x8b, 0x9a, 0x02, 0x09, 0x86, 0xbf, 0x82, 0x9a, 0x0a, 0xa2, 0xa0, + 0xc5, 0x05, 0xbf, 0x78, 0x0e, 0x6d, 0xa3, 0x98, 0x6f, 0xec, 0x3d, 0xbc, 0xc3, 0x3a, 0xa6, 0x09, + 0x2a, 0x30, 0xbd, 0x12, 0xba, 0x8f, 0x0e, 0x77, 0xea, 0x8b, 0x0b, 0xdb, 0xc1, 0xd7, 0xfc, 0x99, + 0xb2, 0x74, 0x25, 0x79, 0x39, 0x7f, 0x7e, 0x72, 0xf3, 0xf3, 0xb4, 0x7f, 0xbc, 0xd0, 0x56, 0x0e, + 0xf1, 0x7e, 0x7e, 0x57, 0x9d, 0xeb, 0x10, 0xda, 0x9a, 0x57, 0xde, 0xe3, 0xb2, 0xa7, 0xc5, 0x0b, + 0x1e, 0x0b, 0xcf, 0x15, 0xc8, 0x4b, 0xc5, 0x3a, 0xc2, 0x07, 0x05, 0x65, 0x73, 0xae, 0xaf, 0x08, + 0xdf, 0xf2, 0xb4, 0x78, 0x1d, 0x5e, 0x30, 0xc3, 0x6b, 0x4c, 0x31, 0xa9, 0x0b, 0x40, 0xde, 0xe0, + 0xed, 0x30, 0xd1, 0x25, 0x18, 0xd7, 0x4f, 0xf6, 0xdd, 0xfc, 0x51, 0xbb, 0x69, 0xea, 0x59, 0x69, + 0x30, 0x2a, 0x5b, 0xbf, 0x47, 0xe5, 0xdb, 0xa9, 0xfb, 0x01, 0xc8, 0xc0, 0x70, 0x19, 0x9a, 0x5e, + 0x7d, 0x96, 0xb7, 0xf2, 0x19, 0x77, 0xf1, 0xee, 0x3f, 0x68, 0x19, 0xf6, 0xc9, 0xcf, 0x2d, 0xbc, + 0xe5, 0x69, 0x61, 0x7f, 0x43, 0xf8, 0x5e, 0xde, 0xa8, 0x9f, 0x16, 0xc1, 0xe5, 0x8f, 0xcf, 0x39, + 0xdf, 0xcc, 0x9f, 0xf1, 0xda, 0xdf, 0x11, 0xde, 0xcb, 0x1d, 0xfe, 0xb3, 0x35, 0x8a, 0xf2, 0x02, + 0x9c, 0x97, 0x1b, 0x06, 0xcc, 0x51, 0xbb, 0xf8, 0xc6, 0xd2, 0xdf, 0x40, 0xd7, 0x08, 0xfe, 0xdb, + 0xe0, 0x3c, 0xfe, 0x4f, 0x43, 0xd6, 0xec, 0x5c, 0xfd, 0x34, 0xed, 0x1f, 0xa3, 0x33, 0x6f, 0x30, + 0x26, 0x68, 0x38, 0x26, 0xe8, 0xd7, 0x98, 0xa0, 0x2f, 0x13, 0x62, 0x0d, 0x27, 0xc4, 0xfa, 0x31, + 0x21, 0xd6, 0xdb, 0x53, 0x11, 0x98, 0x66, 0xa7, 0xe1, 0xfa, 0x20, 0x69, 0xda, 0xf1, 0x70, 0x65, + 0x23, 0x44, 0xd5, 0x47, 0xb4, 0x9b, 0xee, 0x05, 0xd3, 0x0b, 0xb9, 0x6e, 0x6c, 0x27, 0x6b, 0xe1, + 0xf4, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x57, 0x70, 0xe2, 0xdb, 0xbb, 0x04, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/globalfee/ante/fee.go b/x/globalfee/ante/fee.go index 279ec9b63..e23dc21f9 100644 --- a/x/globalfee/ante/fee.go +++ b/x/globalfee/ante/fee.go @@ -11,7 +11,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/public-awesome/stargaze/v13/x/globalfee/types" + "github.com/public-awesome/stargaze/v14/x/globalfee/types" ) var _ sdk.AnteDecorator = FeeDecorator{} diff --git a/x/globalfee/ante/fee_setup_test.go b/x/globalfee/ante/fee_setup_test.go index 7b2b54cc1..f947dfc7c 100644 --- a/x/globalfee/ante/fee_setup_test.go +++ b/x/globalfee/ante/fee_setup_test.go @@ -20,10 +20,10 @@ import ( xauthsigning "github.com/cosmos/cosmos-sdk/x/auth/signing" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - stargazeapp "github.com/public-awesome/stargaze/v13/app" - "github.com/public-awesome/stargaze/v13/testutil/simapp" - "github.com/public-awesome/stargaze/v13/x/globalfee/ante" - "github.com/public-awesome/stargaze/v13/x/globalfee/types" + stargazeapp "github.com/public-awesome/stargaze/v14/app" + "github.com/public-awesome/stargaze/v14/testutil/simapp" + "github.com/public-awesome/stargaze/v14/x/globalfee/ante" + "github.com/public-awesome/stargaze/v14/x/globalfee/types" "github.com/stretchr/testify/suite" ) diff --git a/x/globalfee/client/cli/query.go b/x/globalfee/client/cli/query.go index df75d3a44..643084429 100644 --- a/x/globalfee/client/cli/query.go +++ b/x/globalfee/client/cli/query.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/public-awesome/stargaze/v13/x/globalfee/types" + "github.com/public-awesome/stargaze/v14/x/globalfee/types" "github.com/spf13/cobra" ) diff --git a/x/globalfee/client/cli/tx.go b/x/globalfee/client/cli/tx.go index b6937d6c6..b7d7c6f03 100644 --- a/x/globalfee/client/cli/tx.go +++ b/x/globalfee/client/cli/tx.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/client/tx" - "github.com/public-awesome/stargaze/v13/x/globalfee/types" + "github.com/public-awesome/stargaze/v14/x/globalfee/types" "github.com/spf13/cobra" ) diff --git a/x/globalfee/genesis.go b/x/globalfee/genesis.go index 5f4e23679..0e99b50e6 100644 --- a/x/globalfee/genesis.go +++ b/x/globalfee/genesis.go @@ -2,8 +2,8 @@ package globalfee import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/x/globalfee/keeper" - "github.com/public-awesome/stargaze/v13/x/globalfee/types" + "github.com/public-awesome/stargaze/v14/x/globalfee/keeper" + "github.com/public-awesome/stargaze/v14/x/globalfee/types" ) // InitGenesis initializes the module genesis state. diff --git a/x/globalfee/keeper/code_authorization.go b/x/globalfee/keeper/code_authorization.go index 2ed00127f..08f47c296 100644 --- a/x/globalfee/keeper/code_authorization.go +++ b/x/globalfee/keeper/code_authorization.go @@ -3,7 +3,7 @@ package keeper import ( "cosmossdk.io/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/x/globalfee/types" + "github.com/public-awesome/stargaze/v14/x/globalfee/types" ) // IterateCodeAuthorizations executes the given func on all the code authorizations diff --git a/x/globalfee/keeper/code_authorization_test.go b/x/globalfee/keeper/code_authorization_test.go index e77ea428a..96e5a2cd4 100644 --- a/x/globalfee/keeper/code_authorization_test.go +++ b/x/globalfee/keeper/code_authorization_test.go @@ -3,8 +3,8 @@ package keeper_test import ( "testing" - "github.com/public-awesome/stargaze/v13/testutil/keeper" - "github.com/public-awesome/stargaze/v13/x/globalfee/types" + "github.com/public-awesome/stargaze/v14/testutil/keeper" + "github.com/public-awesome/stargaze/v14/x/globalfee/types" "github.com/stretchr/testify/require" ) diff --git a/x/globalfee/keeper/contract_authorization.go b/x/globalfee/keeper/contract_authorization.go index 51f8e3530..f95c5dd96 100644 --- a/x/globalfee/keeper/contract_authorization.go +++ b/x/globalfee/keeper/contract_authorization.go @@ -3,7 +3,7 @@ package keeper import ( "cosmossdk.io/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/x/globalfee/types" + "github.com/public-awesome/stargaze/v14/x/globalfee/types" ) // IterateContractAuthorizations executes the given func on all the contract authorizations diff --git a/x/globalfee/keeper/contract_authorization_test.go b/x/globalfee/keeper/contract_authorization_test.go index 5513fac6d..0080d6a64 100644 --- a/x/globalfee/keeper/contract_authorization_test.go +++ b/x/globalfee/keeper/contract_authorization_test.go @@ -4,9 +4,9 @@ import ( "testing" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/testutil/keeper" - "github.com/public-awesome/stargaze/v13/testutil/sample" - "github.com/public-awesome/stargaze/v13/x/globalfee/types" + "github.com/public-awesome/stargaze/v14/testutil/keeper" + "github.com/public-awesome/stargaze/v14/testutil/sample" + "github.com/public-awesome/stargaze/v14/x/globalfee/types" "github.com/stretchr/testify/require" ) diff --git a/x/globalfee/keeper/grpc_keeper.go b/x/globalfee/keeper/grpc_keeper.go index 1bf71bbc0..bbba3ab63 100644 --- a/x/globalfee/keeper/grpc_keeper.go +++ b/x/globalfee/keeper/grpc_keeper.go @@ -4,7 +4,7 @@ import ( "context" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/x/globalfee/types" + "github.com/public-awesome/stargaze/v14/x/globalfee/types" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" ) diff --git a/x/globalfee/keeper/keeper.go b/x/globalfee/keeper/keeper.go index d07786e12..7d9790628 100644 --- a/x/globalfee/keeper/keeper.go +++ b/x/globalfee/keeper/keeper.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" paramTypes "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/public-awesome/stargaze/v13/x/globalfee/types" + "github.com/public-awesome/stargaze/v14/x/globalfee/types" storetypes "cosmossdk.io/store/types" ) diff --git a/x/globalfee/keeper/migrations.go b/x/globalfee/keeper/migrations.go index 0565335da..824bf0748 100644 --- a/x/globalfee/keeper/migrations.go +++ b/x/globalfee/keeper/migrations.go @@ -2,7 +2,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - v2 "github.com/public-awesome/stargaze/v13/x/globalfee/migrations/v2" + v2 "github.com/public-awesome/stargaze/v14/x/globalfee/migrations/v2" ) // Migrator is a struct for handling in-place store migrations. diff --git a/x/globalfee/keeper/msg_server.go b/x/globalfee/keeper/msg_server.go index d80cb2ba7..792599c02 100644 --- a/x/globalfee/keeper/msg_server.go +++ b/x/globalfee/keeper/msg_server.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" errorsmod "cosmossdk.io/errors" - "github.com/public-awesome/stargaze/v13/x/globalfee/types" + "github.com/public-awesome/stargaze/v14/x/globalfee/types" ) type msgServer struct { diff --git a/x/globalfee/keeper/msg_server_test.go b/x/globalfee/keeper/msg_server_test.go index cbc338a1b..a0a04c3c9 100644 --- a/x/globalfee/keeper/msg_server_test.go +++ b/x/globalfee/keeper/msg_server_test.go @@ -4,10 +4,10 @@ import ( "testing" sdk "github.com/cosmos/cosmos-sdk/types" - keepertest "github.com/public-awesome/stargaze/v13/testutil/keeper" - "github.com/public-awesome/stargaze/v13/testutil/sample" - "github.com/public-awesome/stargaze/v13/x/globalfee/keeper" - "github.com/public-awesome/stargaze/v13/x/globalfee/types" + keepertest "github.com/public-awesome/stargaze/v14/testutil/keeper" + "github.com/public-awesome/stargaze/v14/testutil/sample" + "github.com/public-awesome/stargaze/v14/x/globalfee/keeper" + "github.com/public-awesome/stargaze/v14/x/globalfee/types" "github.com/stretchr/testify/require" ) diff --git a/x/globalfee/keeper/params.go b/x/globalfee/keeper/params.go index cd6fdd9e2..0f74fc61a 100644 --- a/x/globalfee/keeper/params.go +++ b/x/globalfee/keeper/params.go @@ -2,7 +2,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/x/globalfee/types" + "github.com/public-awesome/stargaze/v14/x/globalfee/types" ) // SetParams sets the total set of minting parameters. diff --git a/x/globalfee/migrations/v2/migration.go b/x/globalfee/migrations/v2/migration.go index 9d99452c8..badbcea45 100644 --- a/x/globalfee/migrations/v2/migration.go +++ b/x/globalfee/migrations/v2/migration.go @@ -5,8 +5,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/x/globalfee/exported" - "github.com/public-awesome/stargaze/v13/x/globalfee/types" + "github.com/public-awesome/stargaze/v14/x/globalfee/exported" + "github.com/public-awesome/stargaze/v14/x/globalfee/types" ) // MigrateStore migrates the x/globalfee module state from the consensus version 1 to diff --git a/x/globalfee/migrations/v2/migration_test.go b/x/globalfee/migrations/v2/migration_test.go index 04a9fdb89..da6042326 100644 --- a/x/globalfee/migrations/v2/migration_test.go +++ b/x/globalfee/migrations/v2/migration_test.go @@ -10,10 +10,10 @@ import ( moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" storetype "cosmossdk.io/store/types" - "github.com/public-awesome/stargaze/v13/x/globalfee" - "github.com/public-awesome/stargaze/v13/x/globalfee/exported" - v2 "github.com/public-awesome/stargaze/v13/x/globalfee/migrations/v2" - "github.com/public-awesome/stargaze/v13/x/globalfee/types" + "github.com/public-awesome/stargaze/v14/x/globalfee" + "github.com/public-awesome/stargaze/v14/x/globalfee/exported" + v2 "github.com/public-awesome/stargaze/v14/x/globalfee/migrations/v2" + "github.com/public-awesome/stargaze/v14/x/globalfee/types" ) type mockSubspace struct { diff --git a/x/globalfee/module.go b/x/globalfee/module.go index ae380323a..8eea12442 100644 --- a/x/globalfee/module.go +++ b/x/globalfee/module.go @@ -16,9 +16,9 @@ import ( "github.com/grpc-ecosystem/grpc-gateway/runtime" "github.com/spf13/cobra" - "github.com/public-awesome/stargaze/v13/x/globalfee/client/cli" - "github.com/public-awesome/stargaze/v13/x/globalfee/keeper" - "github.com/public-awesome/stargaze/v13/x/globalfee/types" + "github.com/public-awesome/stargaze/v14/x/globalfee/client/cli" + "github.com/public-awesome/stargaze/v14/x/globalfee/keeper" + "github.com/public-awesome/stargaze/v14/x/globalfee/types" ) var ( diff --git a/x/globalfee/types/code_authorization_test.go b/x/globalfee/types/code_authorization_test.go index 71d0a8da1..909fcb90d 100644 --- a/x/globalfee/types/code_authorization_test.go +++ b/x/globalfee/types/code_authorization_test.go @@ -3,7 +3,7 @@ package types_test import ( "testing" - "github.com/public-awesome/stargaze/v13/x/globalfee/types" + "github.com/public-awesome/stargaze/v14/x/globalfee/types" "github.com/stretchr/testify/require" ) diff --git a/x/globalfee/types/contract_authorization_test.go b/x/globalfee/types/contract_authorization_test.go index af25f0866..dac11f664 100644 --- a/x/globalfee/types/contract_authorization_test.go +++ b/x/globalfee/types/contract_authorization_test.go @@ -3,7 +3,7 @@ package types_test import ( "testing" - "github.com/public-awesome/stargaze/v13/x/globalfee/types" + "github.com/public-awesome/stargaze/v14/x/globalfee/types" "github.com/stretchr/testify/require" ) diff --git a/x/globalfee/types/genesis.pb.go b/x/globalfee/types/genesis.pb.go index 2a2405e59..e1f118bd5 100644 --- a/x/globalfee/types/genesis.pb.go +++ b/x/globalfee/types/genesis.pb.go @@ -96,28 +96,28 @@ func init() { } var fileDescriptor_764fb49e2246b6f6 = []byte{ - // 334 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x92, 0x41, 0x4b, 0x02, 0x41, - 0x14, 0x80, 0x77, 0x12, 0x3c, 0xac, 0x1d, 0x62, 0x8b, 0x12, 0xa1, 0xd5, 0x8a, 0xc0, 0xa8, 0x66, - 0x58, 0x85, 0x88, 0x6e, 0xd9, 0xa1, 0x6b, 0xd8, 0x2d, 0x88, 0x98, 0x1d, 0xa7, 0x75, 0xc0, 0xf5, - 0x2d, 0x3b, 0x4f, 0x4b, 0x7f, 0x44, 0xf4, 0x0b, 0xea, 0xef, 0x78, 0xf4, 0xd8, 0x49, 0x42, 0x6f, - 0xfd, 0x8a, 0x68, 0x77, 0x93, 0xd5, 0x0c, 0xf6, 0xf6, 0x18, 0xf8, 0xbe, 0xf7, 0xc1, 0x3c, 0xd3, - 0x09, 0x7a, 0x6e, 0x47, 0x09, 0xfe, 0x24, 0x35, 0xf8, 0x92, 0x69, 0xe4, 0xa1, 0xc7, 0x87, 0x92, - 0x79, 0x1d, 0x70, 0x79, 0xe7, 0x51, 0x4a, 0xd6, 0x77, 0x98, 0x27, 0xbb, 0x52, 0x2b, 0x4d, 0x83, - 0x10, 0x10, 0xac, 0x83, 0x05, 0x84, 0xfe, 0x22, 0x74, 0x8e, 0xd0, 0xbe, 0x53, 0xaa, 0x67, 0xf2, - 0xce, 0x89, 0xc8, 0x5c, 0xda, 0xf2, 0xc0, 0x83, 0x68, 0x64, 0x3f, 0x53, 0xfc, 0xba, 0xff, 0x9e, - 0x33, 0xd7, 0xaf, 0xe3, 0x82, 0x5b, 0xe4, 0x28, 0xad, 0x7b, 0x33, 0x1f, 0xf0, 0x90, 0xfb, 0xba, - 0x48, 0x2a, 0xa4, 0x5a, 0xa8, 0x1d, 0xd3, 0x0c, 0x45, 0xf4, 0x26, 0x42, 0x1a, 0xc5, 0xd1, 0xa4, - 0x6c, 0x7c, 0x4d, 0xca, 0x1b, 0xb1, 0xe2, 0x04, 0x7c, 0x85, 0xd2, 0x0f, 0x70, 0xd0, 0x4c, 0xa4, - 0xd6, 0x0b, 0x31, 0x37, 0x05, 0xb4, 0xe4, 0x03, 0xef, 0x61, 0x1b, 0x42, 0x35, 0xe4, 0xa8, 0xa0, - 0xab, 0x8b, 0x6b, 0x95, 0x5c, 0xb5, 0x50, 0x3b, 0xcb, 0xb4, 0xec, 0x0a, 0x5a, 0xf2, 0x32, 0x8d, - 0x37, 0x0e, 0x93, 0xbd, 0xbb, 0x2b, 0xd4, 0xa9, 0x08, 0x4b, 0x2c, 0x93, 0xda, 0x7a, 0x23, 0xe6, - 0x8e, 0x80, 0x2e, 0x86, 0x5c, 0xe0, 0x72, 0x54, 0x2e, 0x8a, 0xba, 0xc8, 0x18, 0x15, 0x3b, 0x16, - 0xc3, 0x8e, 0x92, 0xb0, 0xbd, 0x7f, 0x56, 0xa4, 0xe2, 0xb6, 0xc5, 0x2a, 0x83, 0x6e, 0x34, 0x47, - 0x53, 0x9b, 0x8c, 0xa7, 0x36, 0xf9, 0x9c, 0xda, 0xe4, 0x75, 0x66, 0x1b, 0xe3, 0x99, 0x6d, 0x7c, - 0xcc, 0x6c, 0xe3, 0xee, 0xdc, 0x53, 0xd8, 0xee, 0xb9, 0x54, 0x80, 0xcf, 0xe2, 0xc4, 0xd3, 0x3f, - 0x27, 0xd1, 0x77, 0xea, 0xec, 0x39, 0x75, 0x18, 0x38, 0x08, 0xa4, 0x76, 0xf3, 0xd1, 0xe7, 0xd7, - 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0xee, 0xa5, 0x6f, 0x18, 0xa1, 0x02, 0x00, 0x00, + // 336 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x92, 0x41, 0x4b, 0x3a, 0x41, + 0x14, 0xc0, 0x77, 0xfe, 0x82, 0x87, 0xf5, 0x7f, 0x88, 0x2d, 0x4a, 0x84, 0x56, 0x2b, 0x02, 0xa3, + 0x9a, 0x61, 0x35, 0x22, 0xba, 0x65, 0x87, 0xae, 0x61, 0xb7, 0x20, 0x62, 0x76, 0x9c, 0xd6, 0x01, + 0xd7, 0xb7, 0xec, 0x3c, 0x2d, 0xfd, 0x10, 0xd1, 0x27, 0xa8, 0xaf, 0xe3, 0xd1, 0x63, 0x27, 0x09, + 0xbd, 0xf5, 0x29, 0xa2, 0xdd, 0x4d, 0x56, 0x33, 0xd8, 0xdb, 0x63, 0xe0, 0xf7, 0x7b, 0x3f, 0x98, + 0x67, 0x3a, 0x41, 0xcf, 0xed, 0x28, 0xc1, 0x1f, 0xa5, 0x06, 0x5f, 0x32, 0x8d, 0x3c, 0xf4, 0xf8, + 0x50, 0x32, 0xaf, 0x03, 0x2e, 0xef, 0x3c, 0x48, 0xc9, 0xfa, 0x0e, 0xf3, 0x64, 0x57, 0x6a, 0xa5, + 0x69, 0x10, 0x02, 0x82, 0xb5, 0xb7, 0x80, 0xd0, 0x1f, 0x84, 0xce, 0x11, 0xda, 0x77, 0x4a, 0xf5, + 0x4c, 0xde, 0x39, 0x11, 0x99, 0x4b, 0x1b, 0x1e, 0x78, 0x10, 0x8d, 0xec, 0x7b, 0x8a, 0x5f, 0x77, + 0xdf, 0x72, 0xe6, 0xff, 0xab, 0xb8, 0xe0, 0x06, 0x39, 0x4a, 0xeb, 0xce, 0xcc, 0x07, 0x3c, 0xe4, + 0xbe, 0x2e, 0x92, 0x0a, 0xa9, 0x16, 0x6a, 0x87, 0x34, 0x43, 0x11, 0xbd, 0x8e, 0x90, 0x46, 0x71, + 0x34, 0x29, 0x1b, 0x9f, 0x93, 0xf2, 0x5a, 0xac, 0x38, 0x02, 0x5f, 0xa1, 0xf4, 0x03, 0x1c, 0x34, + 0x13, 0xa9, 0xf5, 0x4c, 0xcc, 0x75, 0x01, 0x2d, 0x79, 0xcf, 0x7b, 0xd8, 0x86, 0x50, 0x0d, 0x39, + 0x2a, 0xe8, 0xea, 0xe2, 0xbf, 0x4a, 0xae, 0x5a, 0xa8, 0x9d, 0x66, 0x5a, 0x76, 0x09, 0x2d, 0x79, + 0x91, 0xc6, 0x1b, 0xfb, 0xc9, 0xde, 0xed, 0x15, 0xea, 0x54, 0x84, 0x25, 0x96, 0x49, 0x6d, 0xbd, + 0x12, 0x73, 0x4b, 0x40, 0x17, 0x43, 0x2e, 0x70, 0x39, 0x2a, 0x17, 0x45, 0x9d, 0x67, 0x8c, 0x8a, + 0x1d, 0x8b, 0x61, 0x07, 0x49, 0xd8, 0xce, 0x1f, 0x2b, 0x52, 0x71, 0x9b, 0x62, 0x95, 0x41, 0x37, + 0x9a, 0xa3, 0xa9, 0x4d, 0xc6, 0x53, 0x9b, 0x7c, 0x4c, 0x6d, 0xf2, 0x32, 0xb3, 0x8d, 0xf1, 0xcc, + 0x36, 0xde, 0x67, 0xb6, 0x71, 0x7b, 0xe6, 0x29, 0x6c, 0xf7, 0x5c, 0x2a, 0xc0, 0x67, 0x71, 0xe2, + 0xf1, 0xaf, 0x93, 0xe8, 0x3b, 0x27, 0xec, 0x29, 0x75, 0x18, 0x38, 0x08, 0xa4, 0x76, 0xf3, 0xd1, + 0xe7, 0xd7, 0xbf, 0x02, 0x00, 0x00, 0xff, 0xff, 0x68, 0xe3, 0xba, 0xca, 0xa1, 0x02, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/globalfee/types/genesis_test.go b/x/globalfee/types/genesis_test.go index a12900f91..9a31203e9 100644 --- a/x/globalfee/types/genesis_test.go +++ b/x/globalfee/types/genesis_test.go @@ -3,7 +3,7 @@ package types_test import ( "testing" - "github.com/public-awesome/stargaze/v13/x/globalfee/types" + "github.com/public-awesome/stargaze/v14/x/globalfee/types" "github.com/stretchr/testify/require" ) diff --git a/x/globalfee/types/globalfee.pb.go b/x/globalfee/types/globalfee.pb.go index 4e45b4e62..9f8f08bfe 100644 --- a/x/globalfee/types/globalfee.pb.go +++ b/x/globalfee/types/globalfee.pb.go @@ -202,35 +202,35 @@ func init() { var fileDescriptor_5b74e65c141ff46e = []byte{ // 471 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x92, 0x3f, 0x6f, 0xd3, 0x40, - 0x18, 0xc6, 0xe3, 0xb6, 0x4a, 0x95, 0x43, 0x82, 0x62, 0x8a, 0x08, 0x25, 0xb2, 0x23, 0xb3, 0x44, - 0xa2, 0xf5, 0xc9, 0x44, 0x48, 0xa8, 0x5b, 0x9d, 0x0a, 0xd4, 0xad, 0xf2, 0xc8, 0x12, 0x9d, 0xef, - 0x0e, 0xe7, 0x84, 0xcf, 0xaf, 0xe5, 0xbb, 0x84, 0xa6, 0x13, 0x5f, 0x00, 0x89, 0x91, 0x91, 0x99, - 0xcf, 0xc0, 0x07, 0xe8, 0xd8, 0x91, 0xc9, 0xa0, 0x64, 0x63, 0xcc, 0x27, 0x40, 0xfe, 0xa7, 0x34, - 0xca, 0xd4, 0xc9, 0x67, 0x3f, 0xbf, 0xf7, 0x7d, 0x5e, 0xbf, 0xf7, 0xa0, 0x61, 0x3a, 0x0d, 0x63, - 0x41, 0xc9, 0x67, 0xae, 0x40, 0x72, 0xac, 0x34, 0xc9, 0x22, 0x72, 0xcd, 0x71, 0x14, 0x43, 0x48, - 0xe2, 0x8f, 0x9c, 0xe3, 0x99, 0xb7, 0x7e, 0x71, 0xd3, 0x0c, 0x34, 0x98, 0x2f, 0x37, 0x8a, 0xdc, - 0xa6, 0xc8, 0x5d, 0x73, 0x33, 0xef, 0xe8, 0x30, 0x82, 0x08, 0x4a, 0x1e, 0x17, 0xa7, 0xaa, 0xf4, - 0xc8, 0xa2, 0xa0, 0x24, 0x28, 0x1c, 0x12, 0x55, 0xb4, 0x0e, 0xb9, 0x26, 0x1e, 0xa6, 0x20, 0x92, - 0x4a, 0x77, 0xbe, 0xec, 0xa0, 0xf6, 0x25, 0xc9, 0x88, 0x54, 0xa6, 0x87, 0x0e, 0xd3, 0x4c, 0xcc, - 0x44, 0xcc, 0x23, 0xce, 0xc6, 0x84, 0xb1, 0x8c, 0x2b, 0xc5, 0x55, 0xd7, 0xe8, 0xef, 0x0e, 0x3a, - 0xc1, 0x93, 0xb5, 0x76, 0xd6, 0x48, 0xe6, 0x2f, 0x03, 0x99, 0x52, 0x24, 0x42, 0x4e, 0xe5, 0x38, - 0x22, 0x6a, 0x9c, 0x66, 0x82, 0x72, 0xd5, 0xdd, 0xe9, 0xef, 0x0e, 0x1e, 0xbc, 0xee, 0xb9, 0x95, - 0xb7, 0x5b, 0x78, 0xbb, 0xb5, 0xb7, 0x7b, 0xce, 0xe9, 0x08, 0x44, 0xe2, 0xa7, 0x37, 0xb9, 0xdd, - 0xfa, 0x97, 0xdb, 0xbd, 0xed, 0xfa, 0x63, 0x90, 0x42, 0x73, 0x99, 0xea, 0xf9, 0x2a, 0xb7, 0x9f, - 0xcf, 0x89, 0x8c, 0x4f, 0x9d, 0x6d, 0xca, 0xf9, 0xf9, 0xc7, 0x7e, 0x15, 0x09, 0x3d, 0x99, 0x86, - 0x2e, 0x05, 0x89, 0xeb, 0x1f, 0xad, 0x1e, 0x27, 0x8a, 0x7d, 0xc2, 0x7a, 0x9e, 0x72, 0xd5, 0x18, - 0xaa, 0xe0, 0xa0, 0xee, 0xf1, 0x9e, 0xa8, 0xcb, 0xb2, 0xc3, 0xe9, 0xde, 0xf7, 0x1f, 0x76, 0xcb, - 0xb9, 0x42, 0x8f, 0x47, 0xc0, 0xf8, 0xd9, 0x54, 0x4f, 0x20, 0x13, 0xd7, 0x44, 0x0b, 0x48, 0xcc, - 0x37, 0x68, 0x9f, 0x02, 0xe3, 0x63, 0xc1, 0xba, 0x46, 0xdf, 0x18, 0xec, 0xf9, 0xbd, 0x45, 0x6e, - 0xb7, 0x0b, 0xee, 0xe2, 0x7c, 0x95, 0xdb, 0x0f, 0xab, 0xa9, 0x6a, 0xc4, 0x09, 0xda, 0xc5, 0xe9, - 0x82, 0x99, 0xc7, 0x68, 0x5f, 0x72, 0x3d, 0x01, 0x56, 0x2d, 0xa1, 0xe3, 0x9b, 0x6b, 0xb8, 0x16, - 0x9c, 0xa0, 0x41, 0x9c, 0xaf, 0x06, 0x7a, 0x3a, 0x82, 0x44, 0x67, 0x84, 0xea, 0x4d, 0xfb, 0x77, - 0xe8, 0x80, 0xd6, 0x42, 0x73, 0x13, 0xe5, 0x1c, 0x1d, 0xff, 0xc5, 0x2a, 0xb7, 0x9f, 0x35, 0xee, - 0x9b, 0x84, 0x13, 0x3c, 0x6a, 0x3e, 0xd5, 0x57, 0x74, 0xbf, 0x79, 0xfc, 0xe0, 0x66, 0x61, 0x19, - 0xb7, 0x0b, 0xcb, 0xf8, 0xbb, 0xb0, 0x8c, 0x6f, 0x4b, 0xab, 0x75, 0xbb, 0xb4, 0x5a, 0xbf, 0x97, - 0x56, 0xeb, 0xc3, 0xdb, 0x3b, 0x8b, 0xae, 0xc2, 0x78, 0xb2, 0x15, 0xe1, 0x99, 0x37, 0xc4, 0x57, - 0x77, 0x82, 0x5c, 0xae, 0x3f, 0x6c, 0x97, 0x39, 0x1b, 0xfe, 0x0f, 0x00, 0x00, 0xff, 0xff, 0x0a, - 0xe1, 0x28, 0x2c, 0xf9, 0x02, 0x00, 0x00, + 0x18, 0xc6, 0xed, 0xb6, 0x4a, 0xd5, 0x43, 0x82, 0x62, 0x8a, 0x08, 0x25, 0xb2, 0x23, 0xb3, 0x44, + 0xa2, 0xf5, 0xc9, 0x14, 0x24, 0xd4, 0xad, 0x4e, 0x05, 0xea, 0x56, 0x79, 0x64, 0x89, 0xce, 0x77, + 0x87, 0x73, 0xc2, 0xe7, 0xd7, 0xf2, 0x5d, 0x42, 0xd3, 0x89, 0x2f, 0x80, 0xc4, 0xc8, 0xc8, 0xcc, + 0x67, 0xe0, 0x03, 0x74, 0xec, 0xc8, 0x64, 0x50, 0xb2, 0x31, 0xe6, 0x13, 0x20, 0xff, 0x53, 0x1a, + 0x65, 0x62, 0xf2, 0xd9, 0xcf, 0xef, 0x7d, 0x9f, 0xd7, 0xef, 0x3d, 0xe8, 0x24, 0x9b, 0x44, 0x89, + 0xa0, 0xe4, 0x13, 0x57, 0x20, 0x39, 0x56, 0x9a, 0xe4, 0x31, 0xb9, 0xe6, 0x38, 0x4e, 0x20, 0x22, + 0xc9, 0x07, 0xce, 0xf1, 0xd4, 0x5f, 0xbd, 0x78, 0x59, 0x0e, 0x1a, 0xac, 0xe7, 0x6b, 0x45, 0x5e, + 0x5b, 0xe4, 0xad, 0xb8, 0xa9, 0x7f, 0x78, 0x10, 0x43, 0x0c, 0x15, 0x8f, 0xcb, 0x53, 0x5d, 0x7a, + 0x68, 0x53, 0x50, 0x12, 0x14, 0x8e, 0x88, 0x2a, 0x5b, 0x47, 0x5c, 0x13, 0x1f, 0x53, 0x10, 0x69, + 0xad, 0xbb, 0x9f, 0xb7, 0x50, 0xe7, 0x92, 0xe4, 0x44, 0x2a, 0xcb, 0x47, 0x07, 0x59, 0x2e, 0xa6, + 0x22, 0xe1, 0x31, 0x67, 0x23, 0xc2, 0x58, 0xce, 0x95, 0xe2, 0xaa, 0x6b, 0xf6, 0xb7, 0x07, 0x7b, + 0xe1, 0xa3, 0x95, 0x76, 0xd6, 0x4a, 0xd6, 0x4f, 0x13, 0x59, 0x52, 0xa4, 0x42, 0x4e, 0xe4, 0x28, + 0x26, 0x6a, 0x94, 0xe5, 0x82, 0x72, 0xd5, 0xdd, 0xea, 0x6f, 0x0f, 0xee, 0xbd, 0xec, 0x79, 0xb5, + 0xb7, 0x57, 0x7a, 0x7b, 0x8d, 0xb7, 0x77, 0xce, 0xe9, 0x10, 0x44, 0x1a, 0x64, 0x37, 0x85, 0x63, + 0xfc, 0x2d, 0x9c, 0xde, 0x66, 0xfd, 0x11, 0x48, 0xa1, 0xb9, 0xcc, 0xf4, 0x6c, 0x59, 0x38, 0x4f, + 0x67, 0x44, 0x26, 0xa7, 0xee, 0x26, 0xe5, 0xfe, 0xf8, 0xed, 0xbc, 0x88, 0x85, 0x1e, 0x4f, 0x22, + 0x8f, 0x82, 0xc4, 0xcd, 0x8f, 0xd6, 0x8f, 0x63, 0xc5, 0x3e, 0x62, 0x3d, 0xcb, 0xb8, 0x6a, 0x0d, + 0x55, 0xb8, 0xdf, 0xf4, 0x78, 0x47, 0xd4, 0x65, 0xd5, 0xe1, 0x74, 0xe7, 0xdb, 0x77, 0xc7, 0x70, + 0xaf, 0xd0, 0xc3, 0x21, 0x30, 0x7e, 0x36, 0xd1, 0x63, 0xc8, 0xc5, 0x35, 0xd1, 0x02, 0x52, 0xeb, + 0x35, 0xda, 0xa5, 0xc0, 0xf8, 0x48, 0xb0, 0xae, 0xd9, 0x37, 0x07, 0x3b, 0x41, 0x6f, 0x5e, 0x38, + 0x9d, 0x92, 0xbb, 0x38, 0x5f, 0x16, 0xce, 0xfd, 0x7a, 0xaa, 0x06, 0x71, 0xc3, 0x4e, 0x79, 0xba, + 0x60, 0xd6, 0x11, 0xda, 0x95, 0x5c, 0x8f, 0x81, 0xd5, 0x4b, 0xd8, 0x0b, 0xac, 0x15, 0xdc, 0x08, + 0x6e, 0xd8, 0x22, 0xee, 0x17, 0x13, 0x3d, 0x1e, 0x42, 0xaa, 0x73, 0x42, 0xf5, 0xba, 0xfd, 0x5b, + 0xb4, 0x4f, 0x1b, 0xa1, 0xbd, 0x89, 0x6a, 0x8e, 0xbd, 0xe0, 0xd9, 0xb2, 0x70, 0x9e, 0xb4, 0xee, + 0xeb, 0x84, 0x1b, 0x3e, 0x68, 0x3f, 0x35, 0x57, 0xf4, 0x7f, 0xf3, 0x04, 0xe1, 0xcd, 0xdc, 0x36, + 0x6f, 0xe7, 0xb6, 0xf9, 0x67, 0x6e, 0x9b, 0x5f, 0x17, 0xb6, 0x71, 0xbb, 0xb0, 0x8d, 0x5f, 0x0b, + 0xdb, 0x78, 0xff, 0xe6, 0xce, 0xa2, 0xeb, 0x30, 0x1e, 0x6f, 0x44, 0x78, 0xea, 0xbf, 0xc2, 0x57, + 0x77, 0x82, 0x5c, 0xad, 0x3f, 0xea, 0x54, 0x39, 0x3b, 0xf9, 0x17, 0x00, 0x00, 0xff, 0xff, 0x8c, + 0xa7, 0xfd, 0xfe, 0xf9, 0x02, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/globalfee/types/params_test.go b/x/globalfee/types/params_test.go index 92f11b2dd..fb118a0ac 100644 --- a/x/globalfee/types/params_test.go +++ b/x/globalfee/types/params_test.go @@ -5,7 +5,7 @@ import ( sdkmath "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/x/globalfee/types" + "github.com/public-awesome/stargaze/v14/x/globalfee/types" "github.com/stretchr/testify/require" ) diff --git a/x/globalfee/types/proposal.pb.go b/x/globalfee/types/proposal.pb.go index d51434cc5..d2d2ef785 100644 --- a/x/globalfee/types/proposal.pb.go +++ b/x/globalfee/types/proposal.pb.go @@ -289,42 +289,42 @@ func init() { } var fileDescriptor_b49a370918ffdc3b = []byte{ - // 546 bytes of a gzipped FileDescriptorProto + // 547 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x94, 0x31, 0x6f, 0xd3, 0x40, - 0x14, 0xc7, 0x73, 0x01, 0x82, 0x7a, 0x45, 0xd0, 0x5a, 0x50, 0xdc, 0xd0, 0xda, 0xe1, 0x2a, 0x55, - 0xa5, 0x52, 0x6c, 0xa5, 0x11, 0xa8, 0xf2, 0x86, 0x41, 0x48, 0x15, 0x12, 0x20, 0xb3, 0xb1, 0x54, - 0x67, 0xfb, 0x70, 0x2d, 0xd9, 0x3e, 0xcb, 0xbe, 0x18, 0xda, 0x99, 0xa9, 0x13, 0x03, 0xdf, 0x80, - 0x2f, 0xc0, 0xc0, 0x87, 0x40, 0x4c, 0x1d, 0x18, 0x98, 0x2c, 0x94, 0x0c, 0x2c, 0x4c, 0xfe, 0x04, - 0xc8, 0x67, 0xa7, 0x71, 0x93, 0x28, 0xc9, 0x96, 0xc5, 0xba, 0x7b, 0xef, 0xfd, 0xef, 0xbd, 0xf7, - 0xf3, 0xd3, 0x83, 0x07, 0x61, 0xcf, 0xf4, 0x5c, 0x0b, 0x7f, 0x20, 0x31, 0xf5, 0x89, 0x1a, 0x33, - 0x1c, 0x39, 0xf8, 0x8c, 0xa8, 0x8e, 0x47, 0x4d, 0xec, 0xbd, 0x27, 0x44, 0x4d, 0x3a, 0x6a, 0x18, - 0xd1, 0x90, 0xc6, 0xd8, 0x53, 0xc2, 0x88, 0x32, 0x2a, 0xec, 0x5c, 0xd1, 0x28, 0x43, 0x8d, 0x72, - 0xa9, 0x51, 0x92, 0x4e, 0x73, 0x1d, 0xfb, 0x6e, 0x40, 0x55, 0xfe, 0x2d, 0x74, 0xcd, 0x4d, 0x8b, - 0xc6, 0x3e, 0x8d, 0x8f, 0xf9, 0x4d, 0x2d, 0x2e, 0xa5, 0xeb, 0xae, 0x43, 0x1d, 0x5a, 0xd8, 0xf3, - 0x53, 0x69, 0xed, 0x2e, 0x52, 0xdc, 0x28, 0x2b, 0x17, 0xa1, 0x5f, 0x75, 0xb8, 0xf5, 0x96, 0xb0, - 0x67, 0xd4, 0x26, 0x4f, 0x7b, 0xec, 0x84, 0x46, 0xee, 0x19, 0x66, 0x2e, 0x0d, 0xde, 0x94, 0x4d, - 0x08, 0xbb, 0xf0, 0x06, 0x73, 0x99, 0x47, 0x44, 0xd0, 0x02, 0x7b, 0x2b, 0xfa, 0x5a, 0x96, 0xca, - 0xb7, 0x4e, 0xb1, 0xef, 0x69, 0x88, 0x9b, 0x91, 0x51, 0xb8, 0x85, 0x43, 0xb8, 0x6a, 0x93, 0xd8, - 0x8a, 0xdc, 0x30, 0x97, 0x8b, 0x75, 0x1e, 0xbd, 0x91, 0xa5, 0xb2, 0x50, 0x44, 0x57, 0x9c, 0xc8, - 0xa8, 0x86, 0x0a, 0x9f, 0x00, 0x14, 0x2c, 0x6a, 0x93, 0x63, 0x5c, 0x2d, 0x40, 0xbc, 0xd6, 0x02, - 0x7b, 0xab, 0x07, 0x4f, 0x94, 0x05, 0xf0, 0x29, 0x13, 0xe5, 0xeb, 0xdb, 0x59, 0x2a, 0x6f, 0x16, - 0x99, 0x27, 0xdf, 0x46, 0xc6, 0xba, 0x35, 0xae, 0xd0, 0x5e, 0xfe, 0xfc, 0xde, 0x6e, 0x96, 0x98, - 0x1d, 0x9a, 0x28, 0x49, 0xc7, 0x24, 0x0c, 0xe7, 0x6f, 0x07, 0x8c, 0x04, 0xec, 0xfc, 0xef, 0xb7, - 0xfd, 0xdd, 0x11, 0xca, 0x59, 0xcc, 0x44, 0x80, 0xce, 0xeb, 0x50, 0x36, 0x88, 0x4f, 0x13, 0xb2, - 0x4c, 0xb2, 0x8f, 0xe1, 0x4d, 0xde, 0xbc, 0x6b, 0x73, 0x9a, 0xd7, 0xf5, 0xad, 0x7e, 0x2a, 0x37, - 0xf2, 0x8a, 0x8e, 0x9e, 0x67, 0xa9, 0x7c, 0xbb, 0xc2, 0xc7, 0xb5, 0x91, 0xd1, 0xc8, 0x4f, 0x47, - 0xb6, 0xf6, 0x6a, 0x3e, 0x89, 0x47, 0x23, 0x12, 0x73, 0xda, 0x14, 0x01, 0xfa, 0x57, 0x87, 0x2d, - 0xce, 0x2b, 0x60, 0x11, 0xb6, 0xd8, 0xb2, 0x68, 0x7c, 0x01, 0x70, 0xc3, 0x2a, 0x6b, 0x98, 0x3a, - 0x6b, 0xda, 0x82, 0xb3, 0x36, 0xa5, 0x0d, 0xfd, 0x61, 0x96, 0xca, 0xdb, 0x43, 0x9e, 0xd3, 0x72, - 0x20, 0xe3, 0x9e, 0x35, 0x4d, 0xa9, 0xbd, 0x9e, 0x4f, 0x7b, 0x7f, 0x6c, 0xee, 0x66, 0x70, 0x14, - 0x01, 0xfa, 0x5a, 0x87, 0x3b, 0xc3, 0x9f, 0xb2, 0x5c, 0xe2, 0x2f, 0xe0, 0xda, 0x08, 0x86, 0x6d, - 0x47, 0x24, 0x8e, 0x39, 0xea, 0x15, 0xfd, 0x41, 0x96, 0xca, 0xf7, 0xc7, 0x71, 0x15, 0x11, 0xc8, - 0xb8, 0x73, 0x09, 0xaa, 0xb0, 0x68, 0xc6, 0x7c, 0x44, 0xed, 0xc9, 0x81, 0x9c, 0x49, 0x49, 0x37, - 0x7e, 0xf4, 0x25, 0x70, 0xd1, 0x97, 0xc0, 0x9f, 0xbe, 0x04, 0x3e, 0x0f, 0xa4, 0xda, 0xc5, 0x40, - 0xaa, 0xfd, 0x1e, 0x48, 0xb5, 0x77, 0x87, 0x8e, 0xcb, 0x4e, 0x7a, 0xa6, 0x62, 0x51, 0x5f, 0x2d, - 0x06, 0xa2, 0x3d, 0xb1, 0x53, 0x93, 0x4e, 0x57, 0xfd, 0x58, 0xd9, 0xac, 0xec, 0x34, 0x24, 0xb1, - 0xd9, 0xe0, 0x3b, 0xb5, 0xfb, 0x3f, 0x00, 0x00, 0xff, 0xff, 0x30, 0x4f, 0x18, 0x4b, 0x27, 0x06, - 0x00, 0x00, + 0x14, 0xc7, 0x7b, 0x06, 0x82, 0x7a, 0x45, 0xd0, 0x5a, 0x50, 0xdc, 0xd0, 0xda, 0xe1, 0x2a, 0x55, + 0xa5, 0x52, 0x6c, 0xa5, 0x05, 0x54, 0x79, 0xc3, 0x20, 0xa4, 0x0a, 0x09, 0x90, 0xd9, 0x58, 0xaa, + 0xb3, 0x7d, 0xb8, 0x96, 0x6c, 0x9f, 0x65, 0x5f, 0x0c, 0xed, 0xcc, 0xd4, 0x89, 0x81, 0x6f, 0xc0, + 0x17, 0x60, 0xe0, 0x43, 0x20, 0xa6, 0x0e, 0x0c, 0x4c, 0x16, 0x4a, 0x06, 0x16, 0x26, 0x7f, 0x02, + 0xe4, 0xb3, 0xd3, 0x98, 0x24, 0x4a, 0xb2, 0x65, 0xb1, 0xee, 0xde, 0x7b, 0xff, 0x7b, 0xef, 0xfd, + 0xfc, 0xf4, 0xe0, 0x7e, 0xd4, 0xb5, 0x7c, 0xcf, 0xc6, 0xef, 0x49, 0x42, 0x03, 0xa2, 0x25, 0x0c, + 0xc7, 0x2e, 0x3e, 0x23, 0x9a, 0xeb, 0x53, 0x0b, 0xfb, 0xef, 0x08, 0xd1, 0xd2, 0x8e, 0x16, 0xc5, + 0x34, 0xa2, 0x09, 0xf6, 0xd5, 0x28, 0xa6, 0x8c, 0x8a, 0xdb, 0xff, 0x69, 0xd4, 0x81, 0x46, 0xbd, + 0xd4, 0xa8, 0x69, 0xa7, 0xb9, 0x86, 0x03, 0x2f, 0xa4, 0x1a, 0xff, 0x96, 0xba, 0xe6, 0x86, 0x4d, + 0x93, 0x80, 0x26, 0xc7, 0xfc, 0xa6, 0x95, 0x97, 0xca, 0x75, 0xdb, 0xa5, 0x2e, 0x2d, 0xed, 0xc5, + 0xa9, 0xb2, 0x1e, 0xcc, 0x53, 0xdc, 0x30, 0x2b, 0x17, 0xa1, 0x9f, 0x02, 0xdc, 0x7c, 0x43, 0xd8, + 0x53, 0xea, 0x90, 0x27, 0x5d, 0x76, 0x42, 0x63, 0xef, 0x0c, 0x33, 0x8f, 0x86, 0xaf, 0xab, 0x26, + 0xc4, 0x1d, 0x78, 0x8d, 0x79, 0xcc, 0x27, 0x12, 0x68, 0x81, 0xdd, 0x65, 0x63, 0x35, 0xcf, 0x94, + 0x1b, 0xa7, 0x38, 0xf0, 0x75, 0xc4, 0xcd, 0xc8, 0x2c, 0xdd, 0xe2, 0x21, 0x5c, 0x71, 0x48, 0x62, + 0xc7, 0x5e, 0x54, 0xc8, 0x25, 0x81, 0x47, 0xaf, 0xe7, 0x99, 0x22, 0x96, 0xd1, 0x35, 0x27, 0x32, + 0xeb, 0xa1, 0xe2, 0x47, 0x00, 0x45, 0x9b, 0x3a, 0xe4, 0x18, 0xd7, 0x0b, 0x90, 0xae, 0xb4, 0xc0, + 0xee, 0xca, 0xfe, 0x63, 0x75, 0x0e, 0x7c, 0xea, 0x58, 0xf9, 0xc6, 0x56, 0x9e, 0x29, 0x1b, 0x65, + 0xe6, 0xf1, 0xb7, 0x91, 0xb9, 0x66, 0x8f, 0x2a, 0xf4, 0x17, 0x3f, 0xbe, 0xb5, 0x9b, 0x15, 0x66, + 0x97, 0xa6, 0x6a, 0xda, 0xb1, 0x08, 0xc3, 0xc5, 0xdb, 0x21, 0x23, 0x21, 0x3b, 0xff, 0xf3, 0x75, + 0x6f, 0x67, 0x88, 0x72, 0x1a, 0x33, 0x09, 0xa0, 0x73, 0x01, 0x2a, 0x26, 0x09, 0x68, 0x4a, 0x16, + 0x49, 0xf6, 0x11, 0xbc, 0xce, 0x9b, 0xf7, 0x1c, 0x4e, 0xf3, 0xaa, 0xb1, 0xd9, 0xcb, 0x94, 0x46, + 0x51, 0xd1, 0xd1, 0xb3, 0x3c, 0x53, 0x6e, 0xd6, 0xf8, 0x78, 0x0e, 0x32, 0x1b, 0xc5, 0xe9, 0xc8, + 0xd1, 0x5f, 0xce, 0x26, 0xf1, 0x60, 0x48, 0x62, 0x46, 0x9b, 0x12, 0x40, 0x7f, 0x05, 0xd8, 0xe2, + 0xbc, 0x42, 0x16, 0x63, 0x9b, 0x2d, 0x8a, 0xc6, 0x67, 0x00, 0xd7, 0xed, 0xaa, 0x86, 0x89, 0xb3, + 0xa6, 0xcf, 0x39, 0x6b, 0x13, 0xda, 0x30, 0xee, 0xe7, 0x99, 0xb2, 0x35, 0xe0, 0x39, 0x29, 0x07, + 0x32, 0xef, 0xd8, 0x93, 0x94, 0xfa, 0xab, 0xd9, 0xb4, 0xf7, 0x46, 0xe6, 0x6e, 0x0a, 0x47, 0x09, + 0xa0, 0x2f, 0x02, 0xdc, 0x1e, 0xfc, 0x94, 0xc5, 0x12, 0x7f, 0x0e, 0x57, 0x87, 0x30, 0x1c, 0x27, + 0x26, 0x49, 0xc2, 0x51, 0x2f, 0x1b, 0xf7, 0xf2, 0x4c, 0xb9, 0x3b, 0x8a, 0xab, 0x8c, 0x40, 0xe6, + 0xad, 0x4b, 0x50, 0xa5, 0x45, 0x37, 0x67, 0x23, 0x6a, 0x8f, 0x0f, 0xe4, 0x54, 0x4a, 0x86, 0xf9, + 0xbd, 0x27, 0x83, 0x8b, 0x9e, 0x0c, 0x7e, 0xf7, 0x64, 0xf0, 0xa9, 0x2f, 0x2f, 0x5d, 0xf4, 0xe5, + 0xa5, 0x5f, 0x7d, 0x79, 0xe9, 0xed, 0xa1, 0xeb, 0xb1, 0x93, 0xae, 0xa5, 0xda, 0x34, 0xd0, 0xca, + 0x81, 0x68, 0x8f, 0xed, 0xd4, 0xb4, 0xf3, 0x50, 0xfb, 0x50, 0xdb, 0xac, 0xec, 0x34, 0x22, 0x89, + 0xd5, 0xe0, 0x3b, 0xf5, 0xe0, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xb6, 0x09, 0xcd, 0x99, 0x27, + 0x06, 0x00, 0x00, } func (m *SetCodeAuthorizationProposal) Marshal() (dAtA []byte, err error) { diff --git a/x/globalfee/types/query.pb.go b/x/globalfee/types/query.pb.go index b6c883509..ab5254d25 100644 --- a/x/globalfee/types/query.pb.go +++ b/x/globalfee/types/query.pb.go @@ -388,43 +388,43 @@ func init() { } var fileDescriptor_28fbf6368ed5b177 = []byte{ - // 561 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x55, 0x4d, 0x6f, 0xd3, 0x30, - 0x18, 0xae, 0x07, 0x74, 0xda, 0x3b, 0x89, 0x0f, 0x0f, 0x58, 0x15, 0xb6, 0x30, 0x82, 0x26, 0x86, - 0xd0, 0x12, 0xb5, 0x15, 0x50, 0x0d, 0x09, 0xb6, 0x56, 0xe2, 0xe3, 0x82, 0x20, 0xc7, 0x5d, 0x26, - 0x37, 0x31, 0x69, 0xa4, 0x36, 0xce, 0x62, 0xa7, 0xb0, 0xa1, 0x5d, 0xf8, 0x05, 0x48, 0xfc, 0x03, - 0x7e, 0xca, 0x4e, 0x1c, 0x27, 0x71, 0x81, 0x1b, 0x6a, 0xf9, 0x05, 0x5c, 0xb9, 0xa0, 0x3a, 0xee, - 0x46, 0xd6, 0x64, 0x64, 0xec, 0x98, 0xd7, 0x7a, 0xbe, 0xf2, 0xfa, 0x91, 0xc1, 0x0a, 0xe3, 0x76, - 0xd7, 0x77, 0xc8, 0x5b, 0xca, 0x59, 0x8f, 0x5a, 0x5c, 0x90, 0xc8, 0x23, 0xbb, 0xd4, 0xf2, 0xba, - 0xac, 0x4d, 0xba, 0x6f, 0x28, 0xb5, 0xfa, 0x55, 0x6b, 0x3b, 0xa6, 0xd1, 0x8e, 0x19, 0x46, 0x4c, - 0x30, 0x7c, 0x3b, 0x05, 0x30, 0xc7, 0x00, 0xf3, 0x10, 0x60, 0xf6, 0xab, 0xda, 0x82, 0xc7, 0x98, - 0xd7, 0xa5, 0x16, 0x09, 0x7d, 0x8b, 0x04, 0x01, 0x13, 0x44, 0xf8, 0x2c, 0xe0, 0x09, 0x85, 0x56, - 0x2f, 0xa2, 0x79, 0xc4, 0x27, 0x41, 0x46, 0x03, 0x16, 0x5f, 0x8f, 0x6c, 0xb4, 0x98, 0x4b, 0x37, - 0x62, 0xd1, 0x61, 0x91, 0xbf, 0x2b, 0x59, 0x6d, 0xba, 0x1d, 0x53, 0x2e, 0xf0, 0x3c, 0x4c, 0x3b, - 0xcc, 0xa5, 0x5b, 0xbe, 0x5b, 0x41, 0x4b, 0x68, 0xe5, 0xbc, 0x5d, 0x1e, 0x7d, 0xbe, 0x70, 0x8d, - 0x35, 0xd0, 0xf3, 0x90, 0x3c, 0x64, 0x01, 0xa7, 0xb8, 0x02, 0xd3, 0x3d, 0x2a, 0x3a, 0xcc, 0xe5, - 0x15, 0xb4, 0x74, 0x6e, 0x65, 0xc6, 0x1e, 0x7f, 0x1a, 0x2f, 0xe1, 0x96, 0xc2, 0x06, 0x22, 0x22, - 0x8e, 0xc8, 0x54, 0xbe, 0x0b, 0x97, 0x1d, 0x75, 0xbe, 0x45, 0x5c, 0x37, 0xa2, 0x9c, 0x4b, 0x0b, - 0x33, 0xf6, 0xa5, 0xf1, 0x7c, 0x23, 0x19, 0x1b, 0x8f, 0xc1, 0x38, 0x89, 0xef, 0x9f, 0x7e, 0xae, - 0x02, 0x96, 0xf8, 0x57, 0x24, 0x22, 0x3d, 0xae, 0x0c, 0x18, 0x9b, 0x30, 0x97, 0x9a, 0x2a, 0x9a, - 0x16, 0x94, 0x43, 0x39, 0x91, 0x6e, 0x66, 0x6b, 0xf7, 0xcc, 0x02, 0xbb, 0x33, 0x15, 0x89, 0x82, - 0x1a, 0x0b, 0xa0, 0x49, 0xee, 0x94, 0xd3, 0x43, 0xe5, 0xdf, 0x08, 0x6e, 0x64, 0x1e, 0x2b, 0x0b, - 0x1e, 0xcc, 0xc9, 0xa5, 0x90, 0xd4, 0xb1, 0x4c, 0x35, 0x5b, 0x7b, 0x50, 0xc8, 0xcf, 0xe4, 0xda, - 0xb0, 0x73, 0x7c, 0xc4, 0x31, 0x87, 0xf9, 0xa3, 0x1d, 0xa4, 0xc5, 0xa6, 0xa4, 0xd8, 0x5a, 0x41, - 0xb1, 0xac, 0xbd, 0x5c, 0x77, 0xb2, 0xc6, 0xbc, 0xb6, 0x5f, 0x86, 0x0b, 0x32, 0x3d, 0xfe, 0x8e, - 0xe0, 0xca, 0x84, 0x51, 0xdc, 0x2c, 0xa4, 0x79, 0xe2, 0xb5, 0xd6, 0x5a, 0x67, 0xe2, 0x48, 0xd6, - 0x60, 0x3c, 0xfa, 0xf0, 0xf5, 0xe7, 0xa7, 0xa9, 0xfb, 0xb8, 0x9e, 0x53, 0xb6, 0xc9, 0x1d, 0x59, - 0xef, 0x55, 0x99, 0xf6, 0xf0, 0x2f, 0x04, 0xd7, 0x32, 0xff, 0x0b, 0x7e, 0x7a, 0x1a, 0x6f, 0xf9, - 0x05, 0xd2, 0x9e, 0x9d, 0x99, 0x47, 0xe5, 0x7c, 0x2e, 0x73, 0x36, 0xf1, 0x7a, 0x6e, 0xce, 0xac, - 0x2b, 0x32, 0xca, 0x9a, 0xae, 0xef, 0x1e, 0xfe, 0x8c, 0xa0, 0x9c, 0x34, 0x01, 0x3f, 0x2c, 0xee, - 0x2e, 0x55, 0x4b, 0xad, 0x71, 0x7a, 0xa0, 0xca, 0xb1, 0x2c, 0x73, 0xdc, 0xc4, 0x8b, 0x39, 0x39, - 0x92, 0x6e, 0xe2, 0x7d, 0x04, 0x17, 0x8f, 0xf5, 0xe0, 0x49, 0x71, 0xcd, 0xcc, 0x46, 0x6b, 0xeb, - 0xff, 0x4f, 0xa0, 0xcc, 0xaf, 0x4a, 0xf3, 0x77, 0xf0, 0x72, 0x8e, 0xf9, 0x74, 0x3d, 0x9b, 0xf6, - 0x97, 0x81, 0x8e, 0x0e, 0x06, 0x3a, 0xfa, 0x31, 0xd0, 0xd1, 0xc7, 0xa1, 0x5e, 0x3a, 0x18, 0xea, - 0xa5, 0x6f, 0x43, 0xbd, 0xb4, 0xd9, 0xf0, 0x7c, 0xd1, 0x89, 0xdb, 0xa6, 0xc3, 0x7a, 0xea, 0x99, - 0x5a, 0x9d, 0x78, 0x33, 0xfa, 0xd5, 0xba, 0xf5, 0xee, 0x2f, 0x7e, 0xb1, 0x13, 0x52, 0xde, 0x2e, - 0xcb, 0x37, 0xa3, 0xfe, 0x27, 0x00, 0x00, 0xff, 0xff, 0x8c, 0x73, 0xab, 0x5c, 0xde, 0x06, 0x00, - 0x00, + // 563 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x55, 0xcb, 0x6e, 0xd3, 0x4c, + 0x14, 0xce, 0xf4, 0xff, 0x49, 0xd5, 0x53, 0x89, 0xcb, 0x14, 0x68, 0x64, 0x5a, 0x53, 0x8c, 0x2a, + 0x8a, 0x50, 0x6d, 0x25, 0xe1, 0x12, 0x15, 0x09, 0xda, 0x44, 0xe2, 0xb2, 0x41, 0xe0, 0x65, 0x37, + 0xd5, 0xc4, 0x1e, 0x1c, 0x4b, 0x89, 0xc7, 0xf5, 0x8c, 0x03, 0x2d, 0xea, 0x86, 0x27, 0x40, 0xe2, + 0x0d, 0x78, 0x94, 0xae, 0x58, 0x56, 0x62, 0x03, 0x3b, 0x94, 0xf0, 0x04, 0x6c, 0xd9, 0xa0, 0x8c, + 0x27, 0x2d, 0x6e, 0xec, 0xe2, 0xd2, 0xa5, 0xcf, 0xe8, 0xbb, 0xf9, 0xcc, 0xa7, 0x01, 0x2b, 0x8c, + 0xdb, 0x5d, 0xdf, 0x21, 0x6f, 0x28, 0x67, 0x3d, 0x6a, 0x71, 0x41, 0x22, 0x8f, 0xec, 0x52, 0xcb, + 0xeb, 0xb2, 0x36, 0xe9, 0xbe, 0xa6, 0xd4, 0xea, 0x57, 0xad, 0xed, 0x98, 0x46, 0x3b, 0x66, 0x18, + 0x31, 0xc1, 0xf0, 0xcd, 0x14, 0xc0, 0x1c, 0x03, 0xcc, 0x43, 0x80, 0xd9, 0xaf, 0x6a, 0x0b, 0x1e, + 0x63, 0x5e, 0x97, 0x5a, 0x24, 0xf4, 0x2d, 0x12, 0x04, 0x4c, 0x10, 0xe1, 0xb3, 0x80, 0x27, 0x14, + 0x5a, 0xbd, 0x88, 0xe6, 0x11, 0x9f, 0x04, 0x19, 0x0d, 0x58, 0x7c, 0x35, 0xb2, 0xd1, 0x62, 0x2e, + 0xdd, 0x88, 0x45, 0x87, 0x45, 0xfe, 0xae, 0x64, 0xb5, 0xe9, 0x76, 0x4c, 0xb9, 0xc0, 0xf3, 0x30, + 0xed, 0x30, 0x97, 0x6e, 0xf9, 0x6e, 0x05, 0x2d, 0xa1, 0x95, 0xff, 0xed, 0xf2, 0xe8, 0xf3, 0xb9, + 0x6b, 0xac, 0x81, 0x9e, 0x87, 0xe4, 0x21, 0x0b, 0x38, 0xc5, 0x15, 0x98, 0xee, 0x51, 0xd1, 0x61, + 0x2e, 0xaf, 0xa0, 0xa5, 0xff, 0x56, 0x66, 0xec, 0xf1, 0xa7, 0xf1, 0x02, 0x6e, 0x28, 0x6c, 0x20, + 0x22, 0xe2, 0x88, 0x4c, 0xe5, 0xdb, 0x70, 0xd1, 0x51, 0xe7, 0x5b, 0xc4, 0x75, 0x23, 0xca, 0xb9, + 0xb4, 0x30, 0x63, 0x5f, 0x18, 0xcf, 0x37, 0x92, 0xb1, 0xf1, 0x08, 0x8c, 0x93, 0xf8, 0xfe, 0xea, + 0xe7, 0x32, 0x60, 0x89, 0x7f, 0x49, 0x22, 0xd2, 0xe3, 0xca, 0x80, 0xb1, 0x09, 0x73, 0xa9, 0xa9, + 0xa2, 0x69, 0x41, 0x39, 0x94, 0x13, 0xe9, 0x66, 0xb6, 0x76, 0xc7, 0x2c, 0xb0, 0x3b, 0x53, 0x91, + 0x28, 0xa8, 0xb1, 0x00, 0x9a, 0xe4, 0x4e, 0x39, 0x3d, 0x54, 0xfe, 0x85, 0xe0, 0x5a, 0xe6, 0xb1, + 0xb2, 0xe0, 0xc1, 0x9c, 0x5c, 0x0a, 0x49, 0x1d, 0xcb, 0x54, 0xb3, 0xb5, 0xfb, 0x85, 0xfc, 0x4c, + 0xae, 0x0d, 0x3b, 0xc7, 0x47, 0x1c, 0x73, 0x98, 0x3f, 0xda, 0x41, 0x5a, 0x6c, 0x4a, 0x8a, 0xad, + 0x15, 0x14, 0xcb, 0xda, 0xcb, 0x55, 0x27, 0x6b, 0xcc, 0x6b, 0xfb, 0x65, 0x38, 0x27, 0xd3, 0xe3, + 0x6f, 0x08, 0x2e, 0x4d, 0x18, 0xc5, 0xcd, 0x42, 0x9a, 0x27, 0x5e, 0x6b, 0xad, 0x75, 0x26, 0x8e, + 0x64, 0x0d, 0xc6, 0xc3, 0xf7, 0x5f, 0x7e, 0x7c, 0x9c, 0xba, 0x87, 0xeb, 0x39, 0x65, 0x9b, 0xdc, + 0x91, 0xf5, 0x4e, 0x95, 0x69, 0x0f, 0xff, 0x44, 0x70, 0x25, 0xf3, 0xbf, 0xe0, 0x27, 0xa7, 0xf1, + 0x96, 0x5f, 0x20, 0xed, 0xe9, 0x99, 0x79, 0x54, 0xce, 0x67, 0x32, 0x67, 0x13, 0xaf, 0xe7, 0xe6, + 0xcc, 0xba, 0x22, 0xa3, 0xac, 0xe9, 0xfa, 0xee, 0xe1, 0x4f, 0x08, 0xca, 0x49, 0x13, 0xf0, 0x83, + 0xe2, 0xee, 0x52, 0xb5, 0xd4, 0x1a, 0xa7, 0x07, 0xaa, 0x1c, 0xcb, 0x32, 0xc7, 0x75, 0xbc, 0x98, + 0x93, 0x23, 0xe9, 0x26, 0xde, 0x47, 0x70, 0xfe, 0x58, 0x0f, 0x1e, 0x17, 0xd7, 0xcc, 0x6c, 0xb4, + 0xb6, 0xfe, 0xef, 0x04, 0xca, 0xfc, 0xaa, 0x34, 0x7f, 0x0b, 0x2f, 0xe7, 0x98, 0x4f, 0xd7, 0xb3, + 0x69, 0x7f, 0x1e, 0xe8, 0xe8, 0x60, 0xa0, 0xa3, 0xef, 0x03, 0x1d, 0x7d, 0x18, 0xea, 0xa5, 0x83, + 0xa1, 0x5e, 0xfa, 0x3a, 0xd4, 0x4b, 0x9b, 0x0d, 0xcf, 0x17, 0x9d, 0xb8, 0x6d, 0x3a, 0xac, 0xa7, + 0x9e, 0xa9, 0xd5, 0x89, 0x37, 0xa3, 0x5f, 0xbd, 0x6b, 0xbd, 0xfd, 0x83, 0x5f, 0xec, 0x84, 0x94, + 0xb7, 0xcb, 0xf2, 0xcd, 0xa8, 0xff, 0x0e, 0x00, 0x00, 0xff, 0xff, 0x0a, 0x35, 0x7e, 0x8e, 0xde, + 0x06, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/globalfee/types/tx.pb.go b/x/globalfee/types/tx.pb.go index b82e1eb61..7a7e26843 100644 --- a/x/globalfee/types/tx.pb.go +++ b/x/globalfee/types/tx.pb.go @@ -490,45 +490,45 @@ func init() { } var fileDescriptor_52e10c19bbdb4807 = []byte{ - // 598 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x95, 0x5f, 0x6b, 0xd3, 0x50, - 0x18, 0xc6, 0x7b, 0xfc, 0x13, 0xd9, 0x3b, 0x61, 0x33, 0xcc, 0xad, 0x66, 0x90, 0xce, 0x56, 0xa5, - 0xce, 0x99, 0xd0, 0x55, 0x44, 0xc6, 0x40, 0xed, 0x06, 0x3a, 0xa4, 0x20, 0x11, 0x6f, 0x04, 0x91, - 0xd3, 0xe4, 0xec, 0x2c, 0xd0, 0xf4, 0xc4, 0x9c, 0xd3, 0xba, 0xed, 0x4a, 0xf6, 0x09, 0xbc, 0xf1, - 0xc6, 0x5b, 0xd1, 0xdb, 0xed, 0xc6, 0xef, 0xb0, 0xcb, 0x5d, 0x7a, 0x55, 0xa4, 0xbd, 0x18, 0xf8, - 0x29, 0xa4, 0x69, 0x9a, 0x35, 0x2e, 0x29, 0xa9, 0xf5, 0x2e, 0x39, 0xe7, 0x7d, 0x9f, 0xe7, 0xf7, - 0xbc, 0xf0, 0x72, 0x60, 0xc5, 0x6d, 0xd6, 0xea, 0xb6, 0x89, 0x3f, 0x10, 0xce, 0x1c, 0xa2, 0x73, - 0x81, 0x3d, 0x8a, 0xf7, 0x89, 0x4e, 0xeb, 0xac, 0x86, 0xeb, 0xdb, 0x84, 0xe8, 0xad, 0x92, 0x2e, - 0x76, 0x35, 0xd7, 0x63, 0x82, 0xc9, 0x85, 0x48, 0xb5, 0x36, 0xa8, 0xd6, 0xc2, 0x6a, 0xad, 0x55, - 0x52, 0xe6, 0x28, 0xa3, 0xcc, 0xaf, 0xd7, 0x7b, 0x5f, 0xfd, 0x56, 0x65, 0xc1, 0x64, 0xdc, 0x61, - 0x5c, 0x77, 0x38, 0xed, 0x49, 0x3a, 0x9c, 0x06, 0x17, 0xe5, 0x34, 0x04, 0x67, 0x06, 0x7e, 0x53, - 0xfe, 0x1b, 0x82, 0x85, 0x2a, 0xa7, 0xaf, 0x88, 0xd8, 0x60, 0x16, 0x79, 0xda, 0x14, 0x3b, 0xcc, - 0xb3, 0xf7, 0xb1, 0xb0, 0x59, 0x43, 0x9e, 0x07, 0x89, 0x93, 0x86, 0x45, 0xbc, 0x2c, 0x5a, 0x42, - 0xc5, 0x29, 0x23, 0xf8, 0x93, 0x09, 0xc8, 0x26, 0xb3, 0xc8, 0x3b, 0x3c, 0x5c, 0x9d, 0xbd, 0xb0, - 0x84, 0x8a, 0xd3, 0xab, 0x0f, 0xb5, 0x14, 0xc9, 0xb4, 0x73, 0x5e, 0xc6, 0x35, 0xf3, 0xef, 0xa3, - 0xb5, 0xe9, 0x83, 0xd3, 0xa3, 0xe5, 0xc0, 0x33, 0x7f, 0x13, 0x72, 0x09, 0x98, 0x06, 0xe1, 0x2e, - 0x6b, 0x70, 0x92, 0xdf, 0x06, 0xa5, 0xca, 0xa9, 0x41, 0x1c, 0xd6, 0x22, 0xe9, 0xc3, 0x14, 0xe0, - 0x8a, 0x1f, 0xc6, 0xb6, 0xfc, 0x04, 0x97, 0x2a, 0xd0, 0x69, 0xe7, 0xa4, 0x5e, 0xff, 0xd6, 0xa6, - 0x21, 0xf5, 0xae, 0xb6, 0xac, 0x28, 0xca, 0x2d, 0xc8, 0x27, 0xfb, 0x84, 0x34, 0x3f, 0x10, 0x2c, - 0x0e, 0x88, 0x1b, 0xc2, 0xc3, 0xa6, 0x48, 0xc7, 0xf3, 0x1e, 0xe6, 0xcd, 0xa0, 0x21, 0x76, 0xc0, - 0x6b, 0x29, 0x07, 0x1c, 0xe3, 0x69, 0x5c, 0x37, 0xe3, 0x8e, 0xa3, 0xe9, 0x6e, 0x43, 0x61, 0x04, - 0x76, 0x18, 0xcf, 0x05, 0x75, 0x68, 0x08, 0xe3, 0x04, 0xbc, 0x0b, 0xb3, 0x67, 0x01, 0x2d, 0xcb, - 0x23, 0x9c, 0xfb, 0xd1, 0xa6, 0x8c, 0x99, 0x10, 0xaf, 0x7f, 0x1c, 0x05, 0x2b, 0xc2, 0x9d, 0xd1, - 0x8e, 0x21, 0xdb, 0x67, 0x04, 0x33, 0x55, 0x4e, 0x5f, 0xbb, 0x16, 0x16, 0xe4, 0x25, 0xf6, 0xb0, - 0xc3, 0x13, 0x69, 0xde, 0x82, 0xe4, 0xfa, 0x15, 0xc1, 0x78, 0xef, 0xa5, 0x1a, 0x6f, 0x5f, 0xb4, - 0x92, 0x3d, 0x6e, 0xe7, 0x32, 0xbf, 0xdb, 0xb9, 0xd9, 0xbe, 0xc4, 0x0a, 0x73, 0x6c, 0x41, 0x1c, - 0x57, 0xec, 0x19, 0x81, 0x68, 0x34, 0xc1, 0x0d, 0x7f, 0xd5, 0x86, 0xb1, 0x06, 0xc8, 0xab, 0x87, - 0x12, 0x5c, 0xac, 0x72, 0x2a, 0x7f, 0x41, 0x30, 0x17, 0xbb, 0x8b, 0xeb, 0xa9, 0xb8, 0x12, 0x56, - 0x44, 0xd9, 0x9c, 0xa4, 0x7b, 0x00, 0x29, 0x7f, 0x45, 0xb0, 0x90, 0xb4, 0x5e, 0x8f, 0xd3, 0x3a, - 0x24, 0x08, 0x28, 0xcf, 0x26, 0x14, 0x08, 0x29, 0xbf, 0x23, 0xc8, 0x26, 0x6e, 0xdd, 0x93, 0xb1, - 0x06, 0x11, 0xa3, 0xa0, 0x3c, 0x9f, 0x54, 0x21, 0x04, 0x3d, 0x44, 0xb0, 0x38, 0x6a, 0x81, 0x36, - 0xc6, 0x9d, 0x48, 0x1c, 0xee, 0x8b, 0xff, 0x20, 0x12, 0x12, 0x1f, 0x20, 0xb8, 0x1a, 0xd9, 0xaa, - 0x07, 0x69, 0xd5, 0x87, 0xbb, 0x94, 0xf5, 0x7f, 0xe9, 0x1a, 0x40, 0x28, 0x97, 0x3f, 0x9e, 0x1e, - 0x2d, 0xa3, 0x8a, 0x71, 0xdc, 0x51, 0xd1, 0x49, 0x47, 0x45, 0xbf, 0x3a, 0x2a, 0xfa, 0xd4, 0x55, - 0x33, 0x27, 0x5d, 0x35, 0xf3, 0xb3, 0xab, 0x66, 0xde, 0x3c, 0xa2, 0xb6, 0xd8, 0x69, 0xd6, 0x34, - 0x93, 0x39, 0x7a, 0xdf, 0xe8, 0xfe, 0xb9, 0x37, 0xb1, 0x55, 0x2a, 0xeb, 0xbb, 0x43, 0x2f, 0xa3, - 0xd8, 0x73, 0x09, 0xaf, 0x49, 0xfe, 0x9b, 0x58, 0xfe, 0x13, 0x00, 0x00, 0xff, 0xff, 0x1e, 0x70, - 0x7b, 0x99, 0xcc, 0x07, 0x00, 0x00, + // 599 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x95, 0x51, 0x6b, 0xd3, 0x5e, + 0x18, 0xc6, 0x7b, 0xfe, 0x7f, 0x8d, 0xec, 0x9d, 0xb0, 0x19, 0xe6, 0x5a, 0x33, 0x48, 0x67, 0xab, + 0x52, 0xe7, 0x4c, 0xe8, 0x36, 0x44, 0xc6, 0x40, 0xed, 0x06, 0x3a, 0xa4, 0x20, 0x11, 0x6f, 0x04, + 0x91, 0xd3, 0xe4, 0xec, 0x2c, 0xd0, 0xf4, 0xc4, 0x9c, 0xd3, 0xba, 0xed, 0x4a, 0xf6, 0x09, 0xbc, + 0xf1, 0xc6, 0x5b, 0xd1, 0xdb, 0xed, 0xc6, 0xef, 0xb0, 0xcb, 0x5d, 0x7a, 0x55, 0xa4, 0xbd, 0x18, + 0xf8, 0x29, 0xa4, 0x69, 0x9a, 0x35, 0x2e, 0x29, 0xa9, 0xf5, 0x2e, 0x39, 0xe7, 0x7d, 0x9f, 0xe7, + 0xf7, 0xbc, 0xf0, 0x72, 0x60, 0xd9, 0x6d, 0xd6, 0xea, 0xb6, 0x89, 0xdf, 0x13, 0xce, 0x1c, 0xa2, + 0x73, 0x81, 0x3d, 0x8a, 0x0f, 0x88, 0x4e, 0xeb, 0xac, 0x86, 0xeb, 0x3b, 0x84, 0xe8, 0xad, 0xb2, + 0x2e, 0xf6, 0x34, 0xd7, 0x63, 0x82, 0xc9, 0xc5, 0x48, 0xb5, 0x36, 0xa8, 0xd6, 0xc2, 0x6a, 0xad, + 0x55, 0x56, 0xe6, 0x28, 0xa3, 0xcc, 0xaf, 0xd7, 0x7b, 0x5f, 0xfd, 0x56, 0x25, 0x6b, 0x32, 0xee, + 0x30, 0xae, 0x3b, 0x9c, 0xf6, 0x24, 0x1d, 0x4e, 0x83, 0x8b, 0xd5, 0x34, 0x04, 0xe7, 0x06, 0x7e, + 0x53, 0xe1, 0x2b, 0x82, 0x6c, 0x95, 0xd3, 0x97, 0x44, 0x6c, 0x32, 0x8b, 0x3c, 0x69, 0x8a, 0x5d, + 0xe6, 0xd9, 0x07, 0x58, 0xd8, 0xac, 0x21, 0xcf, 0x83, 0xc4, 0x49, 0xc3, 0x22, 0x5e, 0x0e, 0x2d, + 0xa2, 0xd2, 0x94, 0x11, 0xfc, 0xc9, 0x04, 0x64, 0x93, 0x59, 0xe4, 0x2d, 0x1e, 0xae, 0xce, 0xfd, + 0xb7, 0x88, 0x4a, 0xd3, 0x2b, 0x0f, 0xb4, 0x14, 0xc9, 0xb4, 0x0b, 0x5e, 0xc6, 0x35, 0xf3, 0xcf, + 0xa3, 0xf5, 0xe9, 0xc3, 0xb3, 0xe3, 0xa5, 0xc0, 0xb3, 0x70, 0x13, 0xf2, 0x09, 0x98, 0x06, 0xe1, + 0x2e, 0x6b, 0x70, 0x52, 0xd8, 0x01, 0xa5, 0xca, 0xa9, 0x41, 0x1c, 0xd6, 0x22, 0xe9, 0xc3, 0x14, + 0xe1, 0x8a, 0x1f, 0xc6, 0xb6, 0xfc, 0x04, 0x97, 0x2a, 0xd0, 0x69, 0xe7, 0xa5, 0x5e, 0xff, 0xf6, + 0x96, 0x21, 0xf5, 0xae, 0xb6, 0xad, 0x28, 0xca, 0x2d, 0x28, 0x24, 0xfb, 0x84, 0x34, 0xdf, 0x11, + 0x2c, 0x0c, 0x88, 0x1b, 0xc2, 0xc3, 0xa6, 0x48, 0xc7, 0xf3, 0x0e, 0xe6, 0xcd, 0xa0, 0x21, 0x76, + 0xc0, 0xeb, 0x29, 0x07, 0x1c, 0xe3, 0x69, 0x5c, 0x37, 0xe3, 0x8e, 0xa3, 0xe9, 0x6e, 0x43, 0x71, + 0x04, 0x76, 0x18, 0xcf, 0x05, 0x75, 0x68, 0x08, 0xe3, 0x04, 0xbc, 0x0b, 0xb3, 0xe7, 0x01, 0x2d, + 0xcb, 0x23, 0x9c, 0xfb, 0xd1, 0xa6, 0x8c, 0x99, 0x10, 0xaf, 0x7f, 0x1c, 0x05, 0x2b, 0xc1, 0x9d, + 0xd1, 0x8e, 0x21, 0xdb, 0x27, 0x04, 0x33, 0x55, 0x4e, 0x5f, 0xb9, 0x16, 0x16, 0xe4, 0x05, 0xf6, + 0xb0, 0xc3, 0x13, 0x69, 0xde, 0x80, 0xe4, 0xfa, 0x15, 0xc1, 0x78, 0xef, 0xa5, 0x1a, 0x6f, 0x5f, + 0xb4, 0x92, 0x3b, 0x69, 0xe7, 0x33, 0xbf, 0xda, 0xf9, 0xd9, 0xbe, 0xc4, 0x32, 0x73, 0x6c, 0x41, + 0x1c, 0x57, 0xec, 0x1b, 0x81, 0x68, 0x34, 0xc1, 0x0d, 0x7f, 0xd5, 0x86, 0xb1, 0x06, 0xc8, 0x2b, + 0x47, 0x12, 0xfc, 0x5f, 0xe5, 0x54, 0xfe, 0x8c, 0x60, 0x2e, 0x76, 0x17, 0x37, 0x52, 0x71, 0x25, + 0xac, 0x88, 0xb2, 0x35, 0x49, 0xf7, 0x00, 0x52, 0xfe, 0x82, 0x20, 0x9b, 0xb4, 0x5e, 0x8f, 0xd2, + 0x3a, 0x24, 0x08, 0x28, 0x4f, 0x27, 0x14, 0x08, 0x29, 0xbf, 0x21, 0xc8, 0x25, 0x6e, 0xdd, 0xe3, + 0xb1, 0x06, 0x11, 0xa3, 0xa0, 0x3c, 0x9b, 0x54, 0x21, 0x04, 0x3d, 0x42, 0xb0, 0x30, 0x6a, 0x81, + 0x36, 0xc7, 0x9d, 0x48, 0x1c, 0xee, 0xf3, 0x7f, 0x20, 0x12, 0x12, 0x1f, 0x22, 0xb8, 0x1a, 0xd9, + 0xaa, 0xb5, 0xb4, 0xea, 0xc3, 0x5d, 0xca, 0xc6, 0xdf, 0x74, 0x0d, 0x20, 0x94, 0xcb, 0x1f, 0xce, + 0x8e, 0x97, 0x50, 0xc5, 0x38, 0xe9, 0xa8, 0xe8, 0xb4, 0xa3, 0xa2, 0x9f, 0x1d, 0x15, 0x7d, 0xec, + 0xaa, 0x99, 0xd3, 0xae, 0x9a, 0xf9, 0xd1, 0x55, 0x33, 0xaf, 0x1f, 0x52, 0x5b, 0xec, 0x36, 0x6b, + 0x9a, 0xc9, 0x1c, 0xbd, 0x6f, 0x74, 0xff, 0xc2, 0x9b, 0xd8, 0x2a, 0xaf, 0xe9, 0x7b, 0x43, 0x2f, + 0xa3, 0xd8, 0x77, 0x09, 0xaf, 0x49, 0xfe, 0x9b, 0xb8, 0xfa, 0x3b, 0x00, 0x00, 0xff, 0xff, 0x98, + 0x36, 0xae, 0x4b, 0xcc, 0x07, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/mint/abci.go b/x/mint/abci.go index 669a0edba..74502d002 100644 --- a/x/mint/abci.go +++ b/x/mint/abci.go @@ -5,8 +5,8 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/x/mint/keeper" - "github.com/public-awesome/stargaze/v13/x/mint/types" + "github.com/public-awesome/stargaze/v14/x/mint/keeper" + "github.com/public-awesome/stargaze/v14/x/mint/types" ) // BeginBlocker mints new tokens for the previous block. diff --git a/x/mint/client/cli/query.go b/x/mint/client/cli/query.go index c8f8d5db8..77f03b301 100644 --- a/x/mint/client/cli/query.go +++ b/x/mint/client/cli/query.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/public-awesome/stargaze/v13/x/mint/types" + "github.com/public-awesome/stargaze/v14/x/mint/types" ) // GetQueryCmd returns the cli query commands for the minting module. diff --git a/x/mint/genesis.go b/x/mint/genesis.go index 88bd6ba9b..39716f22a 100644 --- a/x/mint/genesis.go +++ b/x/mint/genesis.go @@ -2,8 +2,8 @@ package mint import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/x/mint/keeper" - "github.com/public-awesome/stargaze/v13/x/mint/types" + "github.com/public-awesome/stargaze/v14/x/mint/keeper" + "github.com/public-awesome/stargaze/v14/x/mint/types" ) // InitGenesis new mint genesis diff --git a/x/mint/keeper/grpc_query.go b/x/mint/keeper/grpc_query.go index d51bff470..4f48f2e0d 100644 --- a/x/mint/keeper/grpc_query.go +++ b/x/mint/keeper/grpc_query.go @@ -4,7 +4,7 @@ import ( "context" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/x/mint/types" + "github.com/public-awesome/stargaze/v14/x/mint/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/mint/keeper/grpc_query_test.go b/x/mint/keeper/grpc_query_test.go index 5ec481a9e..cbea2d6e0 100644 --- a/x/mint/keeper/grpc_query_test.go +++ b/x/mint/keeper/grpc_query_test.go @@ -8,9 +8,9 @@ import ( "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/app" - "github.com/public-awesome/stargaze/v13/testutil/simapp" - "github.com/public-awesome/stargaze/v13/x/mint/types" + "github.com/public-awesome/stargaze/v14/app" + "github.com/public-awesome/stargaze/v14/testutil/simapp" + "github.com/public-awesome/stargaze/v14/x/mint/types" ) type MintTestSuite struct { diff --git a/x/mint/keeper/keeper.go b/x/mint/keeper/keeper.go index 042a77ffe..4d8143c53 100644 --- a/x/mint/keeper/keeper.go +++ b/x/mint/keeper/keeper.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/public-awesome/stargaze/v13/x/mint/types" + "github.com/public-awesome/stargaze/v14/x/mint/types" ) // Keeper of the mint store diff --git a/x/mint/keeper/migrations.go b/x/mint/keeper/migrations.go index c5a26c952..bf99e8b24 100644 --- a/x/mint/keeper/migrations.go +++ b/x/mint/keeper/migrations.go @@ -2,7 +2,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - v2 "github.com/public-awesome/stargaze/v13/x/mint/migrations/v2" + v2 "github.com/public-awesome/stargaze/v14/x/mint/migrations/v2" ) // Migrator is a struct for handling in-place store migrations. diff --git a/x/mint/migrations/v2/migration.go b/x/mint/migrations/v2/migration.go index 48cd54fb5..601316c70 100644 --- a/x/mint/migrations/v2/migration.go +++ b/x/mint/migrations/v2/migration.go @@ -5,8 +5,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/x/mint/exported" - "github.com/public-awesome/stargaze/v13/x/mint/types" + "github.com/public-awesome/stargaze/v14/x/mint/exported" + "github.com/public-awesome/stargaze/v14/x/mint/types" ) // MigrateStore migrates the x/mint module state from the consensus version 1 to diff --git a/x/mint/migrations/v2/migration_test.go b/x/mint/migrations/v2/migration_test.go index 597874983..21317977c 100644 --- a/x/mint/migrations/v2/migration_test.go +++ b/x/mint/migrations/v2/migration_test.go @@ -10,10 +10,10 @@ import ( moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" storetypes "cosmossdk.io/store/types" - "github.com/public-awesome/stargaze/v13/x/mint" - "github.com/public-awesome/stargaze/v13/x/mint/exported" - v2 "github.com/public-awesome/stargaze/v13/x/mint/migrations/v2" - "github.com/public-awesome/stargaze/v13/x/mint/types" + "github.com/public-awesome/stargaze/v14/x/mint" + "github.com/public-awesome/stargaze/v14/x/mint/exported" + v2 "github.com/public-awesome/stargaze/v14/x/mint/migrations/v2" + "github.com/public-awesome/stargaze/v14/x/mint/types" ) type mockSubspace struct { diff --git a/x/mint/module.go b/x/mint/module.go index 72a92dcfa..b043725b4 100644 --- a/x/mint/module.go +++ b/x/mint/module.go @@ -15,9 +15,9 @@ import ( cdctypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/public-awesome/stargaze/v13/x/mint/client/cli" - "github.com/public-awesome/stargaze/v13/x/mint/keeper" - "github.com/public-awesome/stargaze/v13/x/mint/types" + "github.com/public-awesome/stargaze/v14/x/mint/client/cli" + "github.com/public-awesome/stargaze/v14/x/mint/keeper" + "github.com/public-awesome/stargaze/v14/x/mint/types" ) var ( diff --git a/x/mint/module_test.go b/x/mint/module_test.go index 4f7b2e5e8..8873cf83a 100644 --- a/x/mint/module_test.go +++ b/x/mint/module_test.go @@ -9,7 +9,7 @@ package mint_test // "github.com/cosmos/cosmos-sdk/simapp" // authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" -// "github.com/public-awesome/stargaze/v13/x/mint/types" +// "github.com/public-awesome/stargaze/v14/x/mint/types" // ) // func TestItCreatesModuleAccountOnInitBlock(t *testing.T) { diff --git a/x/mint/types/genesis.pb.go b/x/mint/types/genesis.pb.go index c1393be81..58c945c9b 100644 --- a/x/mint/types/genesis.pb.go +++ b/x/mint/types/genesis.pb.go @@ -101,8 +101,8 @@ var fileDescriptor_7c915b337406c46f = []byte{ 0xc4, 0x00, 0x27, 0xdf, 0x13, 0x8f, 0xe4, 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x71, 0xc2, 0x63, 0x39, 0x86, 0x0b, 0x8f, 0xe5, 0x18, 0x6e, 0x3c, 0x96, 0x63, 0x88, 0x32, 0x4e, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x87, 0x18, 0xaf, 0x8b, 0xe1, 0xf9, - 0x32, 0x43, 0x63, 0xfd, 0x0a, 0x48, 0x10, 0x94, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x3d, - 0x6f, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x2b, 0xb7, 0xf8, 0x97, 0x9c, 0x01, 0x00, 0x00, + 0x32, 0x43, 0x13, 0xfd, 0x0a, 0x48, 0x10, 0x94, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x3d, + 0x6f, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x6b, 0x89, 0x21, 0xf2, 0x9c, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/mint/types/mint.pb.go b/x/mint/types/mint.pb.go index ab68defdf..9384569f0 100644 --- a/x/mint/types/mint.pb.go +++ b/x/mint/types/mint.pb.go @@ -148,35 +148,35 @@ var fileDescriptor_f9149e07b0cf6d43 = []byte{ // 493 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x93, 0x41, 0x6f, 0xd3, 0x30, 0x14, 0xc7, 0x6b, 0x56, 0x2a, 0xd5, 0x08, 0x6d, 0x8b, 0x10, 0xcb, 0x8a, 0x96, 0x54, 0xe1, 0xd2, - 0xcb, 0x1c, 0x95, 0xde, 0x76, 0x23, 0xaa, 0x38, 0xad, 0x52, 0x55, 0x81, 0x04, 0x5c, 0x22, 0x27, - 0xf5, 0x32, 0x6b, 0x71, 0x1c, 0xd9, 0x4e, 0x47, 0x77, 0xe6, 0x03, 0x8c, 0x1b, 0x47, 0x3e, 0x04, - 0x1f, 0x62, 0xc7, 0x89, 0xd3, 0xc4, 0x21, 0xa0, 0xf6, 0x1b, 0xf4, 0x13, 0xa0, 0xd8, 0x2d, 0x13, - 0xa9, 0x90, 0x76, 0xcb, 0x7b, 0xfe, 0xbd, 0xf7, 0xfe, 0xfe, 0xc7, 0x0f, 0xa2, 0xbc, 0x88, 0x52, - 0x1a, 0xe3, 0x4b, 0x22, 0x39, 0x23, 0xbe, 0x54, 0x58, 0x24, 0xf8, 0x8a, 0xf8, 0x8c, 0x66, 0xca, - 0x9f, 0xf5, 0x23, 0xa2, 0x70, 0x5f, 0x07, 0x28, 0x17, 0x5c, 0x71, 0xeb, 0xe5, 0x3f, 0x3c, 0xda, - 0xf0, 0x48, 0x23, 0x6b, 0xbe, 0xf3, 0x2c, 0xe1, 0x09, 0xd7, 0xbc, 0x5f, 0x7d, 0x99, 0xd2, 0x8e, - 0x9b, 0x70, 0x9e, 0xa4, 0xc4, 0xd7, 0x51, 0x54, 0x9c, 0xf9, 0x8a, 0x32, 0x22, 0x15, 0x66, 0xf9, - 0x1a, 0x38, 0x8c, 0xb9, 0x64, 0x5c, 0x86, 0xa6, 0xd2, 0x04, 0xe6, 0xc8, 0xfb, 0x0c, 0x60, 0x6b, - 0x44, 0x33, 0x45, 0x84, 0x75, 0x05, 0xf7, 0x71, 0x96, 0x15, 0x38, 0xad, 0xb8, 0x19, 0x95, 0x94, - 0x67, 0xd2, 0x06, 0x5d, 0xd0, 0x6b, 0x07, 0xa3, 0x9b, 0xd2, 0x6d, 0xfc, 0x2c, 0xdd, 0x17, 0xa6, - 0x56, 0x4e, 0x2f, 0x10, 0xe5, 0x3e, 0xc3, 0xea, 0x1c, 0x9d, 0x92, 0x04, 0xc7, 0xf3, 0x21, 0x89, - 0x57, 0xa5, 0x6b, 0xcf, 0x31, 0x4b, 0x4f, 0xbc, 0xad, 0x2e, 0xde, 0x8f, 0xef, 0xc7, 0x70, 0x3d, - 0x76, 0x48, 0xe2, 0xc9, 0x9e, 0x21, 0xc6, 0xf7, 0xc0, 0xdd, 0x0e, 0x6c, 0x8d, 0xb1, 0xc0, 0x4c, - 0x5a, 0x47, 0x10, 0x56, 0x77, 0x0e, 0xa7, 0x24, 0xe3, 0xcc, 0xcc, 0x9f, 0xb4, 0xab, 0xcc, 0xb0, - 0x4a, 0x58, 0xef, 0x21, 0xac, 0xbc, 0x51, 0x61, 0x75, 0x49, 0xfb, 0x51, 0x17, 0xf4, 0x9e, 0xbc, - 0xea, 0x20, 0xe3, 0x00, 0xda, 0x38, 0x80, 0xde, 0x6e, 0x1c, 0x08, 0x8e, 0x2a, 0xe9, 0xab, 0xd2, - 0xdd, 0x37, 0xda, 0xee, 0x6b, 0xbd, 0xeb, 0x5f, 0x2e, 0x98, 0xb4, 0x75, 0xa2, 0xc2, 0xad, 0x2f, - 0x00, 0x1e, 0xd2, 0x8c, 0x2a, 0x8a, 0xd3, 0x70, 0xdb, 0x88, 0x1d, 0x6d, 0xc4, 0xbb, 0x87, 0x19, - 0xd1, 0x35, 0xc3, 0xfe, 0xdb, 0xad, 0x6e, 0xc8, 0xc1, 0x9a, 0x7c, 0x5d, 0xf3, 0xc5, 0xba, 0x84, - 0x7b, 0x82, 0x4c, 0x8b, 0x58, 0x51, 0x9e, 0x85, 0x67, 0x38, 0x56, 0x5c, 0xd8, 0x4d, 0xad, 0xe4, - 0xf4, 0x61, 0x4a, 0x0e, 0x8c, 0x92, 0x7a, 0x93, 0xba, 0x80, 0xdd, 0xbf, 0xc0, 0x1b, 0x7d, 0x6e, - 0x05, 0x70, 0x37, 0x4a, 0x79, 0x7c, 0x21, 0xc3, 0x9c, 0x88, 0x70, 0x4e, 0xb0, 0xb0, 0x1f, 0x77, - 0x41, 0xaf, 0x19, 0x74, 0x56, 0xa5, 0xfb, 0xdc, 0x34, 0xad, 0x01, 0xde, 0xe4, 0xa9, 0xc9, 0x8c, - 0x89, 0xf8, 0x40, 0xb0, 0x38, 0x69, 0x7e, 0xfd, 0xe6, 0x36, 0x82, 0xd1, 0xcd, 0xc2, 0x01, 0xb7, - 0x0b, 0x07, 0xfc, 0x5e, 0x38, 0xe0, 0x7a, 0xe9, 0x34, 0x6e, 0x97, 0x4e, 0xe3, 0x6e, 0xe9, 0x34, - 0x3e, 0x0e, 0x12, 0xaa, 0xce, 0x8b, 0x08, 0xc5, 0x9c, 0xf9, 0xe6, 0xf5, 0x1f, 0x6f, 0xad, 0xcb, - 0xac, 0x3f, 0xf0, 0x3f, 0x99, 0xa5, 0x51, 0xf3, 0x9c, 0xc8, 0xa8, 0xa5, 0xff, 0xf1, 0xe0, 0x4f, - 0x00, 0x00, 0x00, 0xff, 0xff, 0x40, 0xfc, 0x9e, 0x55, 0x60, 0x03, 0x00, 0x00, + 0xcb, 0x1c, 0x95, 0x71, 0xda, 0x8d, 0xa8, 0xe2, 0xb4, 0x4a, 0x55, 0x05, 0x12, 0x70, 0x89, 0x9c, + 0xd4, 0xcb, 0xac, 0xc5, 0x71, 0x64, 0x3b, 0x1d, 0xdd, 0x99, 0x0f, 0x30, 0x6e, 0x1c, 0xf9, 0x10, + 0x7c, 0x88, 0x1d, 0x27, 0x4e, 0x13, 0x87, 0x80, 0xda, 0x6f, 0xd0, 0x4f, 0x80, 0x62, 0xb7, 0x4c, + 0xa4, 0x9a, 0xb4, 0x5b, 0xde, 0xf3, 0xef, 0xbd, 0xf7, 0xf7, 0x3f, 0x7e, 0x10, 0xe5, 0x45, 0x94, + 0xd2, 0x18, 0x5f, 0x10, 0xc9, 0x19, 0xf1, 0xa5, 0xc2, 0x22, 0xc1, 0x97, 0xc4, 0x67, 0x34, 0x53, + 0xfe, 0xb4, 0x1f, 0x11, 0x85, 0xfb, 0x3a, 0x40, 0xb9, 0xe0, 0x8a, 0x5b, 0x2f, 0xff, 0xe3, 0xd1, + 0x9a, 0x47, 0x1a, 0x59, 0xf1, 0x9d, 0x67, 0x09, 0x4f, 0xb8, 0xe6, 0xfd, 0xea, 0xcb, 0x94, 0x76, + 0xdc, 0x84, 0xf3, 0x24, 0x25, 0xbe, 0x8e, 0xa2, 0xe2, 0xd4, 0x57, 0x94, 0x11, 0xa9, 0x30, 0xcb, + 0x57, 0xc0, 0x7e, 0xcc, 0x25, 0xe3, 0x32, 0x34, 0x95, 0x26, 0x30, 0x47, 0xde, 0x17, 0x00, 0x5b, + 0x43, 0x9a, 0x29, 0x22, 0xac, 0x4b, 0xb8, 0x8b, 0xb3, 0xac, 0xc0, 0x69, 0xc5, 0x4d, 0xa9, 0xa4, + 0x3c, 0x93, 0x36, 0xe8, 0x82, 0x5e, 0x3b, 0x18, 0x5e, 0x97, 0x6e, 0xe3, 0x57, 0xe9, 0xbe, 0x30, + 0xb5, 0x72, 0x72, 0x8e, 0x28, 0xf7, 0x19, 0x56, 0x67, 0xe8, 0x84, 0x24, 0x38, 0x9e, 0x0d, 0x48, + 0xbc, 0x2c, 0x5d, 0x7b, 0x86, 0x59, 0x7a, 0xec, 0x6d, 0x74, 0xf1, 0x7e, 0xfe, 0x38, 0x84, 0xab, + 0xb1, 0x03, 0x12, 0x8f, 0x77, 0x0c, 0x31, 0xba, 0x03, 0x6e, 0xb7, 0x60, 0x6b, 0x84, 0x05, 0x66, + 0xd2, 0x3a, 0x80, 0xb0, 0xba, 0x73, 0x38, 0x21, 0x19, 0x67, 0x66, 0xfe, 0xb8, 0x5d, 0x65, 0x06, + 0x55, 0xc2, 0xfa, 0x00, 0x61, 0xe5, 0x8d, 0x0a, 0xab, 0x4b, 0xda, 0x8f, 0xba, 0xa0, 0xf7, 0xe4, + 0x55, 0x07, 0x19, 0x07, 0xd0, 0xda, 0x01, 0xf4, 0x6e, 0xed, 0x40, 0x70, 0x50, 0x49, 0x5f, 0x96, + 0xee, 0xae, 0xd1, 0x76, 0x57, 0xeb, 0x5d, 0xfd, 0x76, 0xc1, 0xb8, 0xad, 0x13, 0x15, 0x6e, 0x7d, + 0x05, 0x70, 0x9f, 0x66, 0x54, 0x51, 0x9c, 0x86, 0x9b, 0x46, 0x6c, 0x69, 0x23, 0xde, 0x3f, 0xcc, + 0x88, 0xae, 0x19, 0x76, 0x6f, 0xb7, 0xba, 0x21, 0x7b, 0x2b, 0xf2, 0x4d, 0xcd, 0x17, 0xeb, 0x02, + 0xee, 0x08, 0x32, 0x29, 0x62, 0x45, 0x79, 0x16, 0x9e, 0xe2, 0x58, 0x71, 0x61, 0x37, 0xb5, 0x92, + 0x93, 0x87, 0x29, 0xd9, 0x33, 0x4a, 0xea, 0x4d, 0xea, 0x02, 0xb6, 0xff, 0x01, 0x6f, 0xf5, 0xb9, + 0x15, 0xc0, 0xed, 0x28, 0xe5, 0xf1, 0xb9, 0x0c, 0x73, 0x22, 0xc2, 0x19, 0xc1, 0xc2, 0x7e, 0xdc, + 0x05, 0xbd, 0x66, 0xd0, 0x59, 0x96, 0xee, 0x73, 0xd3, 0xb4, 0x06, 0x78, 0xe3, 0xa7, 0x26, 0x33, + 0x22, 0xe2, 0x23, 0xc1, 0xe2, 0xb8, 0xf9, 0xed, 0xbb, 0xdb, 0x08, 0x86, 0xd7, 0x73, 0x07, 0xdc, + 0xcc, 0x1d, 0xf0, 0x67, 0xee, 0x80, 0xab, 0x85, 0xd3, 0xb8, 0x59, 0x38, 0x8d, 0xdb, 0x85, 0xd3, + 0xf8, 0x74, 0x94, 0x50, 0x75, 0x56, 0x44, 0x28, 0xe6, 0xcc, 0x37, 0xaf, 0xff, 0x70, 0x63, 0x5d, + 0xa6, 0xfd, 0xd7, 0xfe, 0x67, 0xb3, 0x34, 0x6a, 0x96, 0x13, 0x19, 0xb5, 0xf4, 0x3f, 0x3e, 0xfa, + 0x1b, 0x00, 0x00, 0xff, 0xff, 0x00, 0xc2, 0x47, 0x30, 0x60, 0x03, 0x00, 0x00, } func (m *Minter) Marshal() (dAtA []byte, err error) { diff --git a/x/mint/types/query.pb.go b/x/mint/types/query.pb.go index e1eebb262..42555aa08 100644 --- a/x/mint/types/query.pb.go +++ b/x/mint/types/query.pb.go @@ -207,31 +207,31 @@ var fileDescriptor_c85ad7db0e77dd07 = []byte{ // 436 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x93, 0xc1, 0xae, 0xd2, 0x40, 0x14, 0x86, 0x5b, 0xa2, 0x2c, 0x46, 0x17, 0x38, 0xb2, 0xd0, 0x0a, 0xc5, 0xd4, 0x98, 0x10, 0x0d, - 0x33, 0x16, 0x16, 0xba, 0xa5, 0x61, 0x63, 0xa2, 0x09, 0xb2, 0x74, 0xa1, 0x4e, 0xeb, 0xa4, 0x34, - 0xd2, 0x4e, 0xe9, 0x4c, 0x51, 0xdc, 0x98, 0xf8, 0x04, 0x26, 0xbe, 0x81, 0xcf, 0xe0, 0x43, 0x90, - 0xb8, 0x21, 0xba, 0x31, 0x2e, 0x88, 0x81, 0xfb, 0x14, 0x77, 0x75, 0xd3, 0x99, 0x61, 0x01, 0xa4, - 0x49, 0x6f, 0xee, 0x0e, 0xe6, 0xcc, 0x7f, 0xfe, 0xff, 0x3b, 0xa7, 0x03, 0x70, 0x9a, 0xfb, 0xb3, - 0x28, 0x20, 0x1f, 0x29, 0x67, 0x31, 0xc5, 0x5c, 0x90, 0x2c, 0x24, 0x9f, 0x29, 0x8e, 0xa3, 0x44, - 0xe0, 0x85, 0xeb, 0x53, 0x41, 0x5c, 0x3c, 0xcf, 0x69, 0xb6, 0x44, 0x69, 0xc6, 0x04, 0x83, 0x0f, - 0x0e, 0x04, 0x68, 0x2f, 0x40, 0x85, 0x00, 0x69, 0x81, 0xd5, 0x0c, 0x59, 0xc8, 0xe4, 0x7d, 0x5c, - 0xfc, 0x52, 0x52, 0xab, 0x15, 0x32, 0x16, 0xce, 0x28, 0x26, 0x69, 0x84, 0x49, 0x92, 0x30, 0x41, - 0x44, 0xc4, 0x12, 0xae, 0xab, 0xa8, 0x4a, 0x12, 0xe9, 0xa2, 0xee, 0xdf, 0x0d, 0x18, 0x8f, 0x19, - 0x7f, 0xab, 0x6c, 0xd4, 0x1f, 0x55, 0x72, 0x9a, 0x00, 0xbe, 0x2a, 0x22, 0x8f, 0x49, 0x46, 0x62, - 0x3e, 0xa1, 0xf3, 0x9c, 0x72, 0xe1, 0xbc, 0x03, 0xb7, 0x0f, 0x4e, 0x79, 0xca, 0x12, 0x4e, 0xe1, - 0x73, 0x50, 0x4f, 0xe5, 0xc9, 0x1d, 0xf3, 0xbe, 0xd9, 0xbd, 0xd1, 0x7f, 0x8c, 0x2a, 0x10, 0x22, - 0xd5, 0xc4, 0xbb, 0xb6, 0xda, 0x74, 0x8c, 0x89, 0x6e, 0xe0, 0xd8, 0xa0, 0x25, 0x1d, 0x86, 0x49, - 0x92, 0x93, 0xd9, 0x38, 0x63, 0x8b, 0x88, 0x17, 0x84, 0xfb, 0x04, 0x5f, 0x40, 0xbb, 0xa4, 0xae, - 0xb3, 0xbc, 0x01, 0xb7, 0x88, 0xac, 0x15, 0x54, 0xba, 0x28, 0x63, 0xdd, 0xf4, 0xdc, 0xc2, 0xe9, - 0xdf, 0xa6, 0x73, 0x4f, 0x91, 0xf2, 0xf7, 0x1f, 0x50, 0xc4, 0x70, 0x4c, 0xc4, 0x14, 0xbd, 0xa0, - 0x21, 0x09, 0x96, 0x23, 0x1a, 0xfc, 0xfe, 0xd9, 0x03, 0x7a, 0x10, 0x23, 0x1a, 0x4c, 0x1a, 0xe4, - 0xc8, 0xa7, 0x7f, 0x5e, 0x03, 0xd7, 0x65, 0x02, 0xf8, 0xc3, 0x04, 0x75, 0xc5, 0x00, 0x9f, 0x56, - 0x02, 0x3e, 0x1d, 0xa8, 0xf5, 0xec, 0xf2, 0x42, 0xc5, 0xe9, 0x3c, 0xfc, 0xfa, 0xe7, 0xec, 0x7b, - 0xad, 0x03, 0xdb, 0x25, 0x6b, 0x56, 0xf3, 0x84, 0xbf, 0x4c, 0xd0, 0x38, 0x9e, 0x15, 0x1c, 0x56, - 0x77, 0x2d, 0xd9, 0x83, 0xe5, 0x5d, 0xa5, 0x85, 0x46, 0x78, 0x22, 0x11, 0x1e, 0xc1, 0x6e, 0x09, - 0xc2, 0xc9, 0x1e, 0xbd, 0x97, 0xab, 0xad, 0x6d, 0xae, 0xb7, 0xb6, 0xf9, 0x7f, 0x6b, 0x9b, 0xdf, - 0x76, 0xb6, 0xb1, 0xde, 0xd9, 0xc6, 0xdf, 0x9d, 0x6d, 0xbc, 0x1e, 0x84, 0x91, 0x98, 0xe6, 0x3e, - 0x0a, 0x58, 0xac, 0xdf, 0x63, 0xef, 0xe4, 0x19, 0x2c, 0xdc, 0x01, 0xfe, 0xa4, 0x2c, 0xc4, 0x32, - 0xa5, 0xdc, 0xaf, 0xcb, 0x6f, 0x7d, 0x70, 0x11, 0x00, 0x00, 0xff, 0xff, 0x4d, 0x52, 0xc7, 0xa3, + 0x33, 0x16, 0x4c, 0x74, 0x4b, 0xc3, 0xc6, 0x44, 0x13, 0x64, 0xe9, 0x42, 0x9d, 0xd6, 0x49, 0x69, + 0xa4, 0x9d, 0xd2, 0x99, 0xa2, 0xb8, 0x31, 0xf1, 0x09, 0x4c, 0x7c, 0x03, 0x9f, 0xc1, 0x87, 0x20, + 0x71, 0x43, 0x74, 0x63, 0x5c, 0x10, 0x03, 0x3e, 0xc5, 0x5d, 0xdd, 0x74, 0x66, 0x58, 0x00, 0x69, + 0xd2, 0x9b, 0xbb, 0x83, 0x39, 0xf3, 0x9f, 0xff, 0xff, 0xce, 0xe9, 0x00, 0x9c, 0xe6, 0xfe, 0x2c, + 0x0a, 0xc8, 0x07, 0xca, 0x59, 0x4c, 0x31, 0x17, 0x24, 0x0b, 0xc9, 0x27, 0x8a, 0xe3, 0x28, 0x11, + 0x78, 0xe1, 0xfa, 0x54, 0x10, 0x17, 0xcf, 0x73, 0x9a, 0x2d, 0x51, 0x9a, 0x31, 0xc1, 0xe0, 0xbd, + 0x03, 0x01, 0xda, 0x0b, 0x50, 0x21, 0x40, 0x5a, 0x60, 0x35, 0x43, 0x16, 0x32, 0x79, 0x1f, 0x17, + 0xbf, 0x94, 0xd4, 0x6a, 0x85, 0x8c, 0x85, 0x33, 0x8a, 0x49, 0x1a, 0x61, 0x92, 0x24, 0x4c, 0x10, + 0x11, 0xb1, 0x84, 0xeb, 0x2a, 0xaa, 0x92, 0x44, 0xba, 0xa8, 0xfb, 0xb7, 0x03, 0xc6, 0x63, 0xc6, + 0xdf, 0x28, 0x1b, 0xf5, 0x47, 0x95, 0x9c, 0x26, 0x80, 0x2f, 0x8b, 0xc8, 0x63, 0x92, 0x91, 0x98, + 0x4f, 0xe8, 0x3c, 0xa7, 0x5c, 0x38, 0x6f, 0xc1, 0xcd, 0x83, 0x53, 0x9e, 0xb2, 0x84, 0x53, 0xf8, + 0x0c, 0xd4, 0x53, 0x79, 0x72, 0xcb, 0xbc, 0x6b, 0x76, 0xaf, 0xf5, 0x1f, 0xa2, 0x0a, 0x84, 0x48, + 0x35, 0xf1, 0xae, 0xac, 0x36, 0x1d, 0x63, 0xa2, 0x1b, 0x38, 0x36, 0x68, 0x49, 0x87, 0x61, 0x92, + 0xe4, 0x64, 0x36, 0xce, 0xd8, 0x22, 0xe2, 0x05, 0xe1, 0x3e, 0xc1, 0x67, 0xd0, 0x2e, 0xa9, 0xeb, + 0x2c, 0xaf, 0xc1, 0x0d, 0x22, 0x6b, 0x05, 0x95, 0x2e, 0xca, 0x58, 0xd7, 0x3d, 0xb7, 0x70, 0xfa, + 0xbb, 0xe9, 0xdc, 0x51, 0xa4, 0xfc, 0xdd, 0x7b, 0x14, 0x31, 0x1c, 0x13, 0x31, 0x45, 0xcf, 0x69, + 0x48, 0x82, 0xe5, 0x88, 0x06, 0xbf, 0x7e, 0xf4, 0x80, 0x1e, 0xc4, 0x88, 0x06, 0x93, 0x06, 0x39, + 0xf2, 0xe9, 0x9f, 0xd5, 0xc0, 0x55, 0x99, 0x00, 0x7e, 0x37, 0x41, 0x5d, 0x31, 0xc0, 0x27, 0x95, + 0x80, 0x4f, 0x07, 0x6a, 0x3d, 0xbd, 0xb8, 0x50, 0x71, 0x3a, 0xf7, 0xbf, 0xfc, 0xfe, 0xff, 0xad, + 0xd6, 0x81, 0xed, 0x92, 0x35, 0xab, 0x79, 0xc2, 0x9f, 0x26, 0x68, 0x1c, 0xcf, 0x0a, 0x0e, 0xab, + 0xbb, 0x96, 0xec, 0xc1, 0xf2, 0x2e, 0xd3, 0x42, 0x23, 0x3c, 0x92, 0x08, 0x0f, 0x60, 0xb7, 0x04, + 0xe1, 0x64, 0x8f, 0xde, 0x8b, 0xd5, 0xd6, 0x36, 0xd7, 0x5b, 0xdb, 0xfc, 0xb7, 0xb5, 0xcd, 0xaf, + 0x3b, 0xdb, 0x58, 0xef, 0x6c, 0xe3, 0xcf, 0xce, 0x36, 0x5e, 0x0d, 0xc2, 0x48, 0x4c, 0x73, 0x1f, + 0x05, 0x2c, 0xd6, 0xef, 0xb1, 0x77, 0xf2, 0x0c, 0x16, 0xee, 0x63, 0xfc, 0x51, 0x59, 0x88, 0x65, + 0x4a, 0xb9, 0x5f, 0x97, 0xdf, 0xfa, 0xe0, 0x3c, 0x00, 0x00, 0xff, 0xff, 0x0d, 0x6c, 0x1e, 0xc6, 0xc2, 0x03, 0x00, 0x00, } diff --git a/x/mint/types/tx.pb.go b/x/mint/types/tx.pb.go index 2892aa94c..57116d420 100644 --- a/x/mint/types/tx.pb.go +++ b/x/mint/types/tx.pb.go @@ -39,8 +39,8 @@ var fileDescriptor_fd5f47f6a4b3dad2 = []byte{ 0x58, 0x1b, 0x9e, 0x6f, 0xd0, 0x62, 0x74, 0xf2, 0x3d, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xe3, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0x88, - 0x85, 0xba, 0x18, 0xee, 0x2b, 0x33, 0x34, 0xd6, 0xaf, 0x80, 0xb8, 0xb2, 0xa4, 0xb2, 0x20, 0xb5, - 0x38, 0x89, 0x0d, 0x6c, 0x87, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0x04, 0xe3, 0xdd, 0xfe, 0xd1, + 0x85, 0xba, 0x18, 0xee, 0x2b, 0x33, 0x34, 0xd1, 0xaf, 0x80, 0xb8, 0xb2, 0xa4, 0xb2, 0x20, 0xb5, + 0x38, 0x89, 0x0d, 0x6c, 0x87, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0x44, 0xdd, 0x04, 0x9b, 0xd1, 0x00, 0x00, 0x00, } diff --git a/x/tokenfactory/client/cli/query.go b/x/tokenfactory/client/cli/query.go index 78d612dec..66c3cb9f9 100644 --- a/x/tokenfactory/client/cli/query.go +++ b/x/tokenfactory/client/cli/query.go @@ -3,7 +3,7 @@ package cli import ( "fmt" - "github.com/public-awesome/stargaze/v13/x/tokenfactory/types" + "github.com/public-awesome/stargaze/v14/x/tokenfactory/types" "github.com/spf13/cobra" "github.com/cosmos/cosmos-sdk/client" diff --git a/x/tokenfactory/client/cli/tx.go b/x/tokenfactory/client/cli/tx.go index 8ff17eada..6c8f50820 100644 --- a/x/tokenfactory/client/cli/tx.go +++ b/x/tokenfactory/client/cli/tx.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/client/tx" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/x/tokenfactory/types" + "github.com/public-awesome/stargaze/v14/x/tokenfactory/types" "github.com/spf13/cobra" ) diff --git a/x/tokenfactory/keeper/admins.go b/x/tokenfactory/keeper/admins.go index 23e4ffd42..efd9e6069 100644 --- a/x/tokenfactory/keeper/admins.go +++ b/x/tokenfactory/keeper/admins.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/gogoproto/proto" - "github.com/public-awesome/stargaze/v13/x/tokenfactory/types" + "github.com/public-awesome/stargaze/v14/x/tokenfactory/types" ) // GetAuthorityMetadata returns the authority metadata for a specific denom diff --git a/x/tokenfactory/keeper/admins_test.go b/x/tokenfactory/keeper/admins_test.go index 6415b8501..e3dfd0cd0 100644 --- a/x/tokenfactory/keeper/admins_test.go +++ b/x/tokenfactory/keeper/admins_test.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/public-awesome/stargaze/v13/x/tokenfactory/types" + "github.com/public-awesome/stargaze/v14/x/tokenfactory/types" ) func (suite *KeeperTestSuite) TestAdminMsgs() { diff --git a/x/tokenfactory/keeper/bank_actions.go b/x/tokenfactory/keeper/bank_actions.go index 01923081d..772d30251 100644 --- a/x/tokenfactory/keeper/bank_actions.go +++ b/x/tokenfactory/keeper/bank_actions.go @@ -2,7 +2,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/x/tokenfactory/types" + "github.com/public-awesome/stargaze/v14/x/tokenfactory/types" ) func (k Keeper) mintTo(ctx sdk.Context, amount sdk.Coin, mintTo string) error { diff --git a/x/tokenfactory/keeper/create_denom.go b/x/tokenfactory/keeper/create_denom.go index 87b0e6689..437051e5f 100644 --- a/x/tokenfactory/keeper/create_denom.go +++ b/x/tokenfactory/keeper/create_denom.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/public-awesome/stargaze/v13/x/tokenfactory/types" + "github.com/public-awesome/stargaze/v14/x/tokenfactory/types" ) // ConvertToBaseToken converts a fee amount in a whitelisted fee token to the base fee token amount diff --git a/x/tokenfactory/keeper/create_denom_test.go b/x/tokenfactory/keeper/create_denom_test.go index b53610083..42fb555f9 100644 --- a/x/tokenfactory/keeper/create_denom_test.go +++ b/x/tokenfactory/keeper/create_denom_test.go @@ -5,7 +5,7 @@ import ( "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/x/tokenfactory/types" + "github.com/public-awesome/stargaze/v14/x/tokenfactory/types" ) func (suite *KeeperTestSuite) TestMsgCreateDenom() { diff --git a/x/tokenfactory/keeper/genesis.go b/x/tokenfactory/keeper/genesis.go index acff848c5..d680fd29a 100644 --- a/x/tokenfactory/keeper/genesis.go +++ b/x/tokenfactory/keeper/genesis.go @@ -2,7 +2,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/x/tokenfactory/types" + "github.com/public-awesome/stargaze/v14/x/tokenfactory/types" ) // InitGenesis initializes the tokenfactory module's state from a provided genesis diff --git a/x/tokenfactory/keeper/genesis_test.go b/x/tokenfactory/keeper/genesis_test.go index 4b0531884..a27dca2cc 100644 --- a/x/tokenfactory/keeper/genesis_test.go +++ b/x/tokenfactory/keeper/genesis_test.go @@ -3,7 +3,7 @@ package keeper_test import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/public-awesome/stargaze/v13/x/tokenfactory/types" + "github.com/public-awesome/stargaze/v14/x/tokenfactory/types" ) func (suite *KeeperTestSuite) TestGenesis() { diff --git a/x/tokenfactory/keeper/grpc_query.go b/x/tokenfactory/keeper/grpc_query.go index cac63ff6c..e66a8cfd0 100644 --- a/x/tokenfactory/keeper/grpc_query.go +++ b/x/tokenfactory/keeper/grpc_query.go @@ -4,7 +4,7 @@ import ( "context" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/x/tokenfactory/types" + "github.com/public-awesome/stargaze/v14/x/tokenfactory/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/tokenfactory/keeper/keeper.go b/x/tokenfactory/keeper/keeper.go index 08e73e5ba..8d8bbfd6d 100644 --- a/x/tokenfactory/keeper/keeper.go +++ b/x/tokenfactory/keeper/keeper.go @@ -4,7 +4,7 @@ import ( "fmt" log "cosmossdk.io/log" - "github.com/public-awesome/stargaze/v13/x/tokenfactory/types" + "github.com/public-awesome/stargaze/v14/x/tokenfactory/types" "cosmossdk.io/store/prefix" storetypes "cosmossdk.io/store/types" diff --git a/x/tokenfactory/keeper/keeper_test.go b/x/tokenfactory/keeper/keeper_test.go index 5a064d6ea..170389678 100644 --- a/x/tokenfactory/keeper/keeper_test.go +++ b/x/tokenfactory/keeper/keeper_test.go @@ -9,10 +9,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" minttypes "github.com/cosmos/cosmos-sdk/x/mint/types" - stargazeapp "github.com/public-awesome/stargaze/v13/app" - "github.com/public-awesome/stargaze/v13/testutil/simapp" - "github.com/public-awesome/stargaze/v13/x/tokenfactory/keeper" - "github.com/public-awesome/stargaze/v13/x/tokenfactory/types" + stargazeapp "github.com/public-awesome/stargaze/v14/app" + "github.com/public-awesome/stargaze/v14/testutil/simapp" + "github.com/public-awesome/stargaze/v14/x/tokenfactory/keeper" + "github.com/public-awesome/stargaze/v14/x/tokenfactory/types" "github.com/stretchr/testify/suite" ) diff --git a/x/tokenfactory/keeper/migrations.go b/x/tokenfactory/keeper/migrations.go index 649064ffc..44da0ce83 100644 --- a/x/tokenfactory/keeper/migrations.go +++ b/x/tokenfactory/keeper/migrations.go @@ -2,7 +2,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - v2 "github.com/public-awesome/stargaze/v13/x/tokenfactory/migrations/v2" + v2 "github.com/public-awesome/stargaze/v14/x/tokenfactory/migrations/v2" ) // Migrator is a struct for handling in-place store migrations. diff --git a/x/tokenfactory/keeper/msg_server.go b/x/tokenfactory/keeper/msg_server.go index d25f14548..d48bca880 100644 --- a/x/tokenfactory/keeper/msg_server.go +++ b/x/tokenfactory/keeper/msg_server.go @@ -4,7 +4,7 @@ import ( "context" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/x/tokenfactory/types" + "github.com/public-awesome/stargaze/v14/x/tokenfactory/types" ) type msgServer struct { diff --git a/x/tokenfactory/keeper/msg_server_test.go b/x/tokenfactory/keeper/msg_server_test.go index 489d3e312..2d3132714 100644 --- a/x/tokenfactory/keeper/msg_server_test.go +++ b/x/tokenfactory/keeper/msg_server_test.go @@ -6,7 +6,7 @@ import ( sdkmath "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/public-awesome/stargaze/v13/x/tokenfactory/types" + "github.com/public-awesome/stargaze/v14/x/tokenfactory/types" ) // TestMintDenomMsg tests TypeMsgMint message is emitted on a successful mint diff --git a/x/tokenfactory/keeper/params.go b/x/tokenfactory/keeper/params.go index a242c8cdf..2bbfc1a56 100644 --- a/x/tokenfactory/keeper/params.go +++ b/x/tokenfactory/keeper/params.go @@ -2,7 +2,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/x/tokenfactory/types" + "github.com/public-awesome/stargaze/v14/x/tokenfactory/types" ) // GetParams returns the total set params. diff --git a/x/tokenfactory/migrations/v2/migration.go b/x/tokenfactory/migrations/v2/migration.go index 22bdb0dcd..c59c96f24 100644 --- a/x/tokenfactory/migrations/v2/migration.go +++ b/x/tokenfactory/migrations/v2/migration.go @@ -5,8 +5,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/x/tokenfactory/exported" - "github.com/public-awesome/stargaze/v13/x/tokenfactory/types" + "github.com/public-awesome/stargaze/v14/x/tokenfactory/exported" + "github.com/public-awesome/stargaze/v14/x/tokenfactory/types" ) // MigrateStore migrates the x/tokenfactory module state from the consensus version 1 to diff --git a/x/tokenfactory/migrations/v2/migration_test.go b/x/tokenfactory/migrations/v2/migration_test.go index b133e4409..e5fd83cc6 100644 --- a/x/tokenfactory/migrations/v2/migration_test.go +++ b/x/tokenfactory/migrations/v2/migration_test.go @@ -10,10 +10,10 @@ import ( moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" storetypes "cosmossdk.io/store/types" - "github.com/public-awesome/stargaze/v13/x/tokenfactory" - "github.com/public-awesome/stargaze/v13/x/tokenfactory/exported" - v2 "github.com/public-awesome/stargaze/v13/x/tokenfactory/migrations/v2" - "github.com/public-awesome/stargaze/v13/x/tokenfactory/types" + "github.com/public-awesome/stargaze/v14/x/tokenfactory" + "github.com/public-awesome/stargaze/v14/x/tokenfactory/exported" + v2 "github.com/public-awesome/stargaze/v14/x/tokenfactory/migrations/v2" + "github.com/public-awesome/stargaze/v14/x/tokenfactory/types" ) type mockSubspace struct { diff --git a/x/tokenfactory/module.go b/x/tokenfactory/module.go index b9e4565d1..50b5bc07f 100644 --- a/x/tokenfactory/module.go +++ b/x/tokenfactory/module.go @@ -21,9 +21,9 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" "github.com/gorilla/mux" "github.com/grpc-ecosystem/grpc-gateway/runtime" - "github.com/public-awesome/stargaze/v13/x/tokenfactory/client/cli" - "github.com/public-awesome/stargaze/v13/x/tokenfactory/keeper" - "github.com/public-awesome/stargaze/v13/x/tokenfactory/types" + "github.com/public-awesome/stargaze/v14/x/tokenfactory/client/cli" + "github.com/public-awesome/stargaze/v14/x/tokenfactory/keeper" + "github.com/public-awesome/stargaze/v14/x/tokenfactory/types" "github.com/spf13/cobra" ) diff --git a/x/tokenfactory/types/denoms_test.go b/x/tokenfactory/types/denoms_test.go index 09ea5d237..40d70aff3 100644 --- a/x/tokenfactory/types/denoms_test.go +++ b/x/tokenfactory/types/denoms_test.go @@ -3,7 +3,7 @@ package types_test import ( "testing" - "github.com/public-awesome/stargaze/v13/x/tokenfactory/types" + "github.com/public-awesome/stargaze/v14/x/tokenfactory/types" "github.com/stretchr/testify/require" ) diff --git a/x/tokenfactory/types/genesis_test.go b/x/tokenfactory/types/genesis_test.go index 661cf32e8..8841ab301 100644 --- a/x/tokenfactory/types/genesis_test.go +++ b/x/tokenfactory/types/genesis_test.go @@ -3,7 +3,7 @@ package types_test import ( "testing" - "github.com/public-awesome/stargaze/v13/x/tokenfactory/types" + "github.com/public-awesome/stargaze/v14/x/tokenfactory/types" "github.com/stretchr/testify/require" ) diff --git a/x/tokenfactory/types/msgs_test.go b/x/tokenfactory/types/msgs_test.go index d0e6b7d60..ba8df3636 100644 --- a/x/tokenfactory/types/msgs_test.go +++ b/x/tokenfactory/types/msgs_test.go @@ -5,7 +5,7 @@ import ( "testing" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/public-awesome/stargaze/v13/x/tokenfactory/types" + "github.com/public-awesome/stargaze/v14/x/tokenfactory/types" "github.com/stretchr/testify/require" "cosmossdk.io/math"