diff --git a/proto/desmos/posts/v3/msgs.proto b/proto/desmos/posts/v3/msgs.proto index 3675d62f9c..d967890c2b 100644 --- a/proto/desmos/posts/v3/msgs.proto +++ b/proto/desmos/posts/v3/msgs.proto @@ -1,6 +1,7 @@ syntax = "proto3"; package desmos.posts.v3; +import "amino/amino.proto"; import "gogoproto/gogo.proto"; import "google/protobuf/any.proto"; import "google/protobuf/timestamp.proto"; @@ -79,6 +80,7 @@ service Msg { // MsgCreatePost represents the message to be used to create a post. message MsgCreatePost { option (cosmos.msg.v1.signer) = "author"; + option (amino.name) = "desmos/MsgCreatePost"; // Id of the subspace inside which the post must be created uint64 subspace_id = 1 [ @@ -155,6 +157,7 @@ message MsgCreatePostResponse { // MsgEditPost represents the message to be used to edit a post. message MsgEditPost { option (cosmos.msg.v1.signer) = "editor"; + option (amino.name) = "desmos/MsgEditPost"; // Id of the subspace inside which the post is uint64 subspace_id = 1 [ @@ -200,6 +203,7 @@ message MsgEditPostResponse { // MsgDeletePost represents the message used when deleting a post. message MsgDeletePost { option (cosmos.msg.v1.signer) = "signer"; + option (amino.name) = "desmos/MsgDeletePost"; // Id of the subspace containing the post uint64 subspace_id = 1 [ @@ -227,6 +231,7 @@ message MsgDeletePostResponse {} // used when adding an attachment to post message MsgAddPostAttachment { option (cosmos.msg.v1.signer) = "editor"; + option (amino.name) = "desmos/MsgAddPostAttachment"; // Id of the subspace containing the post uint64 subspace_id = 1 [ @@ -273,6 +278,7 @@ message MsgAddPostAttachmentResponse { // removing an attachment from a post message MsgRemovePostAttachment { option (cosmos.msg.v1.signer) = "editor"; + option (amino.name) = "desmos/MsgRemovePostAttachment"; // Id of the subspace containing the post uint64 subspace_id = 1 [ @@ -313,6 +319,7 @@ message MsgRemovePostAttachmentResponse { // MsgAnswerPoll represents the message used to answer a poll message MsgAnswerPoll { option (cosmos.msg.v1.signer) = "signer"; + option (amino.name) = "desmos/MsgAnswerPoll"; // Id of the subspace containing the post uint64 subspace_id = 1 [ @@ -351,6 +358,8 @@ message MsgAnswerPollResponse {} // Since: Desmos 5.0.0 message MsgUpdateParams { option (cosmos.msg.v1.signer) = "authority"; + option (amino.name) = "desmos/x/posts/MsgUpdateParams"; + // authority is the address that controls the module (defaults to x/gov unless // overwritten). @@ -376,6 +385,7 @@ message MsgUpdateParamsResponse {} // Since: Desmos 6.0.0 message MsgMovePost { option (cosmos.msg.v1.signer) = "owner"; + option (amino.name) = "desmos/MsgMovePost"; // Id of the subspace where the post is currently located uint64 subspace_id = 1 [ @@ -425,6 +435,7 @@ message MsgMovePostResponse { // Since: Desmos 6.0.0 message MsgRequestPostOwnerTransfer { option (cosmos.msg.v1.signer) = "sender"; + option (amino.name) = "desmos/MsgRequestPostOwnerTransfer"; // Id of the subspace that holds the post which ownership should be transfered uint64 subspace_id = 1 [ @@ -463,6 +474,7 @@ message MsgRequestPostOwnerTransferResponse {} // Since: Desmos 6.0.0 message MsgCancelPostOwnerTransferRequest { option (cosmos.msg.v1.signer) = "sender"; + option (amino.name) = "desmos/MsgCancelPostOwnerTransferRequest"; // Id of the subspace that holds the post for which the request should be // canceled @@ -496,6 +508,7 @@ message MsgCancelPostOwnerTransferRequestResponse {} // Since: Desmos 6.0.0 message MsgAcceptPostOwnerTransferRequest { option (cosmos.msg.v1.signer) = "receiver"; + option (amino.name) = "desmos/MsgAcceptPostOwnerTransferRequest"; // Id of the subspace holding the post for which the request will be accepted uint64 subspace_id = 1 [ @@ -528,6 +541,7 @@ message MsgAcceptPostOwnerTransferRequestResponse {} // Since: Desmos 6.0.0 message MsgRefusePostOwnerTransferRequest { option (cosmos.msg.v1.signer) = "receiver"; + option (amino.name) = "desmos/MsgRefusePostOwnerTransferRequest"; // Id of the subspace holding the post for which the request will be refused uint64 subspace_id = 1 [ diff --git a/proto/desmos/profiles/v3/msgs_app_links.proto b/proto/desmos/profiles/v3/msgs_app_links.proto index 8363ed097b..dd80446e04 100644 --- a/proto/desmos/profiles/v3/msgs_app_links.proto +++ b/proto/desmos/profiles/v3/msgs_app_links.proto @@ -5,6 +5,7 @@ option go_package = "github.com/desmos-labs/desmos/v5/x/profiles/types"; import "desmos/profiles/v3/models_app_links.proto"; +import "amino/amino.proto"; import "gogoproto/gogo.proto"; import "cosmos/msg/v1/msg.proto"; import "cosmos_proto/cosmos.proto"; @@ -14,6 +15,7 @@ import "ibc/core/client/v1/client.proto"; // centralized application account (eg. Twitter, GitHub, etc). message MsgLinkApplication { option (cosmos.msg.v1.signer) = "sender"; + option (amino.name) = "desmos/MsgLinkApplication"; // The sender of the connection request string sender = 1 [ @@ -61,6 +63,7 @@ message MsgLinkApplicationResponse {} // profile message MsgUnlinkApplication { option (cosmos.msg.v1.signer) = "signer"; + option (amino.name) = "desmos/MsgUnlinkApplication"; // Application represents the name of the application to unlink string application = 1 [ (gogoproto.moretags) = "yaml:\"application\"" ]; diff --git a/proto/desmos/profiles/v3/msgs_chain_links.proto b/proto/desmos/profiles/v3/msgs_chain_links.proto index af8bb3af0b..9c4c91052e 100644 --- a/proto/desmos/profiles/v3/msgs_chain_links.proto +++ b/proto/desmos/profiles/v3/msgs_chain_links.proto @@ -1,6 +1,7 @@ syntax = "proto3"; package desmos.profiles.v3; +import "amino/amino.proto"; import "gogoproto/gogo.proto"; import "google/protobuf/any.proto"; import "cosmos_proto/cosmos.proto"; @@ -12,6 +13,7 @@ option go_package = "github.com/desmos-labs/desmos/v5/x/profiles/types"; // MsgLinkChainAccount represents a message to link an account to a profile. message MsgLinkChainAccount { option (cosmos.msg.v1.signer) = "signer"; + option (amino.name) = "desmos/MsgLinkChainAccount"; // ChainAddress contains the details of the external chain address to be // linked @@ -49,6 +51,7 @@ message MsgLinkChainAccountResponse {} // profile. message MsgUnlinkChainAccount { option (cosmos.msg.v1.signer) = "owner"; + option (amino.name) = "desmos/MsgUnlinkChainAccount"; // Owner represents the Desmos profile from which to remove the link string owner = 1 [ @@ -73,6 +76,7 @@ message MsgUnlinkChainAccountResponse {} // address for a specific chain message MsgSetDefaultExternalAddress { option (cosmos.msg.v1.signer) = "signer"; + option (amino.name) = "desmos/MsgSetDefaultExternalAddress"; // Name of the chain for which to set the default address string chain_name = 1; diff --git a/proto/desmos/profiles/v3/msgs_dtag_requests.proto b/proto/desmos/profiles/v3/msgs_dtag_requests.proto index 1053f0b058..79018d97f1 100644 --- a/proto/desmos/profiles/v3/msgs_dtag_requests.proto +++ b/proto/desmos/profiles/v3/msgs_dtag_requests.proto @@ -1,6 +1,7 @@ syntax = "proto3"; package desmos.profiles.v3; +import "amino/amino.proto"; import "gogoproto/gogo.proto"; import "cosmos/msg/v1/msg.proto"; import "cosmos_proto/cosmos.proto"; @@ -11,6 +12,7 @@ option go_package = "github.com/desmos-labs/desmos/v5/x/profiles/types"; // transfer to another user. message MsgRequestDTagTransfer { option (cosmos.msg.v1.signer) = "sender"; + option (amino.name) = "desmos/MsgRequestDTagTransfer"; // Receiver contains the address of the request receiver that owns the DTag to // transfer if the request is accepted @@ -31,6 +33,7 @@ message MsgRequestDTagTransferResponse {} // transfer request. message MsgCancelDTagTransferRequest { option (cosmos.msg.v1.signer) = "sender"; + option (amino.name) = "desmos/MsgCancelDTagTransferRequest"; // Receiver contains the address of the request receiver string receiver = 1 [ @@ -55,6 +58,7 @@ message MsgCancelDTagTransferRequestResponse {} // transfer request. message MsgAcceptDTagTransferRequest { option (cosmos.msg.v1.signer) = "receiver"; + option (amino.name) = "desmos/MsgAcceptDTagTransferRequest"; // NewDTag represents the DTag that the request receiver will obtain if they // accept the request @@ -86,6 +90,7 @@ message MsgAcceptDTagTransferRequestResponse {} // transfer request. message MsgRefuseDTagTransferRequest { option (cosmos.msg.v1.signer) = "receiver"; + option (amino.name) = "desmos/MsgRefuseDTagTransferRequest"; // Sender represents the request sender string sender = 1 [ diff --git a/proto/desmos/profiles/v3/msgs_params.proto b/proto/desmos/profiles/v3/msgs_params.proto index 1010939574..c63c2406e3 100644 --- a/proto/desmos/profiles/v3/msgs_params.proto +++ b/proto/desmos/profiles/v3/msgs_params.proto @@ -1,6 +1,7 @@ syntax = "proto3"; package desmos.profiles.v3; +import "amino/amino.proto"; import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; import "cosmos/msg/v1/msg.proto"; @@ -14,6 +15,7 @@ option go_package = "github.com/desmos-labs/desmos/v5/x/profiles/types"; // Since: Desmos 5.0.0 message MsgUpdateParams { option (cosmos.msg.v1.signer) = "authority"; + option (amino.name) = "desmos/x/profiles/MsgUpdateParams"; // authority is the address that controls the module (defaults to x/gov unless // overwritten). diff --git a/proto/desmos/profiles/v3/msgs_profile.proto b/proto/desmos/profiles/v3/msgs_profile.proto index 7fd3bfa8b8..191d873f0b 100644 --- a/proto/desmos/profiles/v3/msgs_profile.proto +++ b/proto/desmos/profiles/v3/msgs_profile.proto @@ -1,6 +1,7 @@ syntax = "proto3"; package desmos.profiles.v3; +import "amino/amino.proto"; import "gogoproto/gogo.proto"; import "cosmos/msg/v1/msg.proto"; import "cosmos_proto/cosmos.proto"; @@ -10,6 +11,7 @@ option go_package = "github.com/desmos-labs/desmos/v5/x/profiles/types"; // MsgSaveProfile represents a message to save a profile. message MsgSaveProfile { option (cosmos.msg.v1.signer) = "creator"; + option (amino.name) = "desmos/MsgSaveProfile"; // DTag of the profile. If it shouldn't be changed, [do-no-modify] can be used // instead. @@ -50,6 +52,7 @@ message MsgSaveProfileResponse {} // MsgDeleteProfile represents the message used to delete an existing profile. message MsgDeleteProfile { option (cosmos.msg.v1.signer) = "creator"; + option (amino.name) = "desmos/MsgDeleteProfile"; // Address associated to the profile to be deleted string creator = 1 [ diff --git a/proto/desmos/reactions/v1/msgs.proto b/proto/desmos/reactions/v1/msgs.proto index f3fc06cee1..953c4f9664 100644 --- a/proto/desmos/reactions/v1/msgs.proto +++ b/proto/desmos/reactions/v1/msgs.proto @@ -1,6 +1,7 @@ syntax = "proto3"; package desmos.reactions.v1; +import "amino/amino.proto"; import "gogoproto/gogo.proto"; import "google/protobuf/any.proto"; import "cosmos/msg/v1/msg.proto"; @@ -38,6 +39,7 @@ service Msg { // MsgAddReaction represents the message to be used to add a post reaction message MsgAddReaction { option (cosmos.msg.v1.signer) = "user"; + option (amino.name) = "desmos/MsgAddReaction"; // Id of the subspace inside which the post to react to is uint64 subspace_id = 1 [ @@ -77,6 +79,7 @@ message MsgAddReactionResponse { // existing reaction from a post message MsgRemoveReaction { option (cosmos.msg.v1.signer) = "user"; + option (amino.name) = "desmos/MsgRemoveReaction"; // Id of the subspace inside which the reaction to remove is uint64 subspace_id = 1 [ @@ -110,6 +113,7 @@ message MsgRemoveReactionResponse {} // register a new supported reaction message MsgAddRegisteredReaction { option (cosmos.msg.v1.signer) = "user"; + option (amino.name) = "desmos/MsgAddRegisteredReaction"; // Id of the subspace inside which this reaction should be registered uint64 subspace_id = 1 [ @@ -145,6 +149,7 @@ message MsgAddRegisteredReactionResponse { // registered reaction message MsgEditRegisteredReaction { option (cosmos.msg.v1.signer) = "user"; + option (amino.name) = "desmos/MsgEditRegisteredReaction"; // Id of the subspace inside which the reaction to edit is uint64 subspace_id = 1 [ @@ -180,6 +185,7 @@ message MsgEditRegisteredReactionResponse {} // remove an existing registered reaction message MsgRemoveRegisteredReaction { option (cosmos.msg.v1.signer) = "user"; + option (amino.name) = "desmos/MsgRemoveRegisteredReaction"; // Id of the subspace from which to remove the registered reaction uint64 subspace_id = 1 [ @@ -208,6 +214,7 @@ message MsgRemoveRegisteredReactionResponse {} // a subspace reactions params message MsgSetReactionsParams { option (cosmos.msg.v1.signer) = "user"; + option (amino.name) = "desmos/MsgSetReactionsParams"; // Id of the subspace for which to set the params uint64 subspace_id = 1 [ diff --git a/proto/desmos/relationships/v1/msgs.proto b/proto/desmos/relationships/v1/msgs.proto index c2b386b89a..ac1dea3114 100644 --- a/proto/desmos/relationships/v1/msgs.proto +++ b/proto/desmos/relationships/v1/msgs.proto @@ -1,6 +1,7 @@ syntax = "proto3"; package desmos.relationships.v1; +import "amino/amino.proto"; import "gogoproto/gogo.proto"; import "cosmos/msg/v1/msg.proto"; import "cosmos_proto/cosmos.proto"; @@ -28,6 +29,7 @@ service Msg { // between two users on a specific subspace. message MsgCreateRelationship { option (cosmos.msg.v1.signer) = "signer"; + option (amino.name) = "desmos/MsgCreateRelationship"; // User creating the relationship string signer = 1 [ @@ -58,6 +60,7 @@ message MsgCreateRelationshipResponse {} // between two users. message MsgDeleteRelationship { option (cosmos.msg.v1.signer) = "signer"; + option (amino.name) = "desmos/MsgDeleteRelationship"; // User that created the relationship string signer = 1 [ @@ -88,6 +91,7 @@ message MsgDeleteRelationshipResponse {} // optional reason. message MsgBlockUser { option (cosmos.msg.v1.signer) = "blocker"; + option (amino.name) = "desmos/MsgBlockUser"; // Address of the user blocking the other user string blocker = 1 [ @@ -119,6 +123,7 @@ message MsgBlockUserResponse {} // MsgUnblockUser represents a message to unblock a previously blocked user. message MsgUnblockUser { option (cosmos.msg.v1.signer) = "blocker"; + option (amino.name) = "desmos/MsgUnblockUser"; // Address of the user that blocked another user string blocker = 1 [ diff --git a/proto/desmos/reports/v1/msgs.proto b/proto/desmos/reports/v1/msgs.proto index 897269eff6..c99f4d7d9f 100644 --- a/proto/desmos/reports/v1/msgs.proto +++ b/proto/desmos/reports/v1/msgs.proto @@ -1,6 +1,7 @@ syntax = "proto3"; package desmos.reports.v1; +import "amino/amino.proto"; import "gogoproto/gogo.proto"; import "google/protobuf/any.proto"; import "google/protobuf/timestamp.proto"; @@ -43,6 +44,7 @@ service Msg { // MsgCreateReport represents the message to be used to create a report message MsgCreateReport { option (cosmos.msg.v1.signer) = "reporter"; + option (amino.name) = "desmos/MsgCreateReport"; // Id of the subspace for which the report should be stored uint64 subspace_id = 1 [ @@ -91,6 +93,7 @@ message MsgCreateReportResponse { // MsgDeleteReport represents the message to be used when deleting a report message MsgDeleteReport { option (cosmos.msg.v1.signer) = "signer"; + option (amino.name) = "desmos/MsgDeleteReport"; // Id of the subspace that contains the report to be deleted uint64 subspace_id = 1 [ @@ -118,6 +121,7 @@ message MsgDeleteReportResponse {} // support one reason from the module params message MsgSupportStandardReason { option (cosmos.msg.v1.signer) = "signer"; + option (amino.name) = "desmos/MsgSupportStandardReason"; // Id of the subspace for which to support the reason uint64 subspace_id = 1 [ @@ -152,6 +156,7 @@ message MsgSupportStandardReasonResponse { // reason message MsgAddReason { option (cosmos.msg.v1.signer) = "signer"; + option (amino.name) = "desmos/MsgAddReason"; // Id of the subspace for which to add the reason uint64 subspace_id = 1 [ @@ -185,6 +190,7 @@ message MsgAddReasonResponse { // reporting reason message MsgRemoveReason { option (cosmos.msg.v1.signer) = "signer"; + option (amino.name) = "desmos/MsgRemoveReason"; // Id of the subspace from which to remove the reason uint64 subspace_id = 1 [ @@ -213,6 +219,7 @@ message MsgRemoveReasonResponse {} // Since: Desmos 5.0.0 message MsgUpdateParams { option (cosmos.msg.v1.signer) = "authority"; + option (amino.name) = "desmos/x/reports/MsgUpdateParams"; // authority is the address that controls the module (defaults to x/gov unless // overwritten). diff --git a/proto/desmos/subspaces/v3/msgs.proto b/proto/desmos/subspaces/v3/msgs.proto index 1874b072fe..b90d979148 100644 --- a/proto/desmos/subspaces/v3/msgs.proto +++ b/proto/desmos/subspaces/v3/msgs.proto @@ -1,6 +1,7 @@ syntax = "proto3"; package desmos.subspaces.v3; +import "amino/amino.proto"; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; import "cosmos_proto/cosmos.proto"; @@ -95,6 +96,7 @@ service Msg { // MsgCreateSubspace represents the message used to create a subspace message MsgCreateSubspace { option (cosmos.msg.v1.signer) = "creator"; + option (amino.name) = "desmos/MsgCreateSubspace"; // Name of the subspace string name = 1 [ (gogoproto.moretags) = "yaml:\"name\"" ]; @@ -128,6 +130,7 @@ message MsgCreateSubspaceResponse { // MsgEditSubspace represents the message used to edit a subspace fields message MsgEditSubspace { option (cosmos.msg.v1.signer) = "signer"; + option (amino.name) = "desmos/MsgEditSubspace"; // Id of the subspace to edit uint64 subspace_id = 1 [ @@ -163,6 +166,7 @@ message MsgEditSubspaceResponse {} // MsgDeleteSubspace represents the message used to delete a subspace message MsgDeleteSubspace { option (cosmos.msg.v1.signer) = "signer"; + option (amino.name) = "desmos/MsgDeleteSubspace"; // Id of the subspace to delete uint64 subspace_id = 1 [ @@ -186,6 +190,7 @@ message MsgDeleteSubspaceResponse {} // section message MsgCreateSection { option (cosmos.msg.v1.signer) = "creator"; + option (amino.name) = "desmos/MsgCreateSection"; // Id of the subspace inside which the section will be placed uint64 subspace_id = 1 [ @@ -225,6 +230,7 @@ message MsgCreateSectionResponse { // section message MsgEditSection { option (cosmos.msg.v1.signer) = "editor"; + option (amino.name) = "desmos/MsgEditSection"; // Id of the subspace inside which the section to be edited is uint64 subspace_id = 1 [ @@ -258,6 +264,7 @@ message MsgEditSectionResponse {} // another parent message MsgMoveSection { option (cosmos.msg.v1.signer) = "signer"; + option (amino.name) = "desmos/MsgMoveSection"; // Id of the subspace inside which the section lies uint64 subspace_id = 1 [ @@ -290,6 +297,7 @@ message MsgMoveSectionResponse {} // MsgDeleteSection represents the message to be used when deleting a section message MsgDeleteSection { option (cosmos.msg.v1.signer) = "signer"; + option (amino.name) = "desmos/MsgDeleteSection"; // Id of the subspace inside which the section to be deleted is uint64 subspace_id = 1 [ @@ -318,6 +326,7 @@ message MsgDeleteSectionResponse {} // MsgCreateUserGroup represents the message used to create a user group message MsgCreateUserGroup { option (cosmos.msg.v1.signer) = "creator"; + option (amino.name) = "desmos/MsgCreateUserGroup"; // Id of the subspace inside which the group will be created uint64 subspace_id = 1 [ @@ -363,6 +372,7 @@ message MsgCreateUserGroupResponse { // MsgEditUserGroup represents the message used to edit a user group message MsgEditUserGroup { option (cosmos.msg.v1.signer) = "signer"; + option (amino.name) = "desmos/MsgEditUserGroup"; // Id of the subspace inside which the group to be edited is uint64 subspace_id = 1 [ @@ -396,6 +406,7 @@ message MsgEditUserGroupResponse {} // section to anoter message MsgMoveUserGroup { option (cosmos.msg.v1.signer) = "signer"; + option (amino.name) = "desmos/MsgMoveUserGroup"; // Id of the subspace inside which the group to move is uint64 subspace_id = 1 [ @@ -429,6 +440,7 @@ message MsgMoveUserGroupResponse {} // of a user group message MsgSetUserGroupPermissions { option (cosmos.msg.v1.signer) = "signer"; + option (amino.name) = "desmos/MsgSetUserGroupPermissions"; // Id of the subspace inside which the group is uint64 subspace_id = 1 [ @@ -460,6 +472,7 @@ message MsgSetUserGroupPermissionsResponse {} // MsgDeleteUserGroup represents the message used to delete a user group message MsgDeleteUserGroup { option (cosmos.msg.v1.signer) = "signer"; + option (amino.name) = "desmos/MsgDeleteUserGroup"; // Id of the subspace inside which the group to delete is uint64 subspace_id = 1 [ @@ -489,6 +502,7 @@ message MsgDeleteUserGroupResponse {} // group message MsgAddUserToUserGroup { option (cosmos.msg.v1.signer) = "signer"; + option (amino.name) = "desmos/MsgAddUserToUserGroup"; // Id of the subspace inside which the group is uint64 subspace_id = 1 [ @@ -523,6 +537,7 @@ message MsgAddUserToUserGroupResponse {} // a user group message MsgRemoveUserFromUserGroup { option (cosmos.msg.v1.signer) = "signer"; + option (amino.name) = "desmos/MsgRemoveUserFromUserGroup"; // Id of the subspace inside which the group to remove the user from is uint64 subspace_id = 1 [ @@ -559,6 +574,7 @@ message MsgRemoveUserFromUserGroupResponse {} // specific user message MsgSetUserPermissions { option (cosmos.msg.v1.signer) = "signer"; + option (amino.name) = "desmos/MsgSetUserPermissions"; // Id of the subspace inside which to set the permissions uint64 subspace_id = 1 [ @@ -602,6 +618,7 @@ message MsgSetUserPermissionsResponse {} // Since: Desmos 6.0.0 message MsgUpdateSubspaceFeeTokens { option (cosmos.msg.v1.signer) = "authority"; + option (amino.name) = "desmos/MsgUpdateSubspaceFeeTokens"; // Id of the subspace where the list of allowed fee tokens will be updated uint64 subspace_id = 1 [ diff --git a/proto/desmos/subspaces/v3/msgs_feegrant.proto b/proto/desmos/subspaces/v3/msgs_feegrant.proto index 4bc62acaa7..ae0e7b2450 100644 --- a/proto/desmos/subspaces/v3/msgs_feegrant.proto +++ b/proto/desmos/subspaces/v3/msgs_feegrant.proto @@ -1,6 +1,7 @@ syntax = "proto3"; package desmos.subspaces.v3; +import "amino/amino.proto"; import "gogoproto/gogo.proto"; import "google/protobuf/any.proto"; import "cosmos/msg/v1/msg.proto"; @@ -12,6 +13,7 @@ option go_package = "github.com/desmos-labs/desmos/v5/x/subspaces/types"; // from the treasury inside the given subspace message MsgGrantAllowance { option (cosmos.msg.v1.signer) = "granter"; + option (amino.name) = "desmos/MsgGrantAllowance"; // Id of the subspace inside which where the allowance should be granted uint64 subspace_id = 1 [ @@ -48,6 +50,7 @@ message MsgGrantAllowanceResponse {} // subspace message MsgRevokeAllowance { option (cosmos.msg.v1.signer) = "granter"; + option (amino.name) = "desmos/MsgRevokeAllowance"; // If of the subspace inside which the allowance to be deleted is uint64 subspace_id = 1 [ diff --git a/proto/desmos/subspaces/v3/msgs_treasury.proto b/proto/desmos/subspaces/v3/msgs_treasury.proto index 7a62dfc8d2..0a93d0c5fe 100644 --- a/proto/desmos/subspaces/v3/msgs_treasury.proto +++ b/proto/desmos/subspaces/v3/msgs_treasury.proto @@ -2,6 +2,7 @@ syntax = "proto3"; package desmos.subspaces.v3; +import "amino/amino.proto"; import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; import "cosmos/msg/v1/msg.proto"; @@ -13,6 +14,7 @@ option go_package = "github.com/desmos-labs/desmos/v5/x/subspaces/types"; // treasury to a user message MsgGrantTreasuryAuthorization { option (cosmos.msg.v1.signer) = "granter"; + option (amino.name) = "desmos/MsgGrantTreasuryAuthorization"; // Id of the subspace where the authorization should be granted uint64 subspace_id = 1 [ @@ -45,6 +47,7 @@ message MsgGrantTreasuryAuthorizationResponse {} // from a user message MsgRevokeTreasuryAuthorization { option (cosmos.msg.v1.signer) = "granter"; + option (amino.name) = "desmos/MsgRevokeTreasuryAuthorization"; // Id of the subspace from which the authorization should be revoked uint64 subspace_id = 1 [ diff --git a/x/posts/types/msgs.pb.go b/x/posts/types/msgs.pb.go index b89e25cb53..7e767c3da4 100644 --- a/x/posts/types/msgs.pb.go +++ b/x/posts/types/msgs.pb.go @@ -9,6 +9,7 @@ import ( _ "github.com/cosmos/cosmos-proto" types "github.com/cosmos/cosmos-sdk/codec/types" _ "github.com/cosmos/cosmos-sdk/types/msgservice" + _ "github.com/cosmos/cosmos-sdk/types/tx/amino" _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" @@ -1548,107 +1549,113 @@ func init() { func init() { proto.RegisterFile("desmos/posts/v3/msgs.proto", fileDescriptor_c5bb13e2c778488f) } var fileDescriptor_c5bb13e2c778488f = []byte{ - // 1593 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x59, 0xcb, 0x6e, 0xdb, 0x46, - 0x17, 0x36, 0x25, 0x5b, 0xb1, 0x46, 0x96, 0xe4, 0x30, 0xca, 0x6f, 0x59, 0xbf, 0x7f, 0x51, 0x61, - 0x92, 0x1f, 0xca, 0xc5, 0x52, 0xa3, 0x34, 0x28, 0xe0, 0x02, 0x05, 0x24, 0xc7, 0x68, 0x15, 0x54, - 0x6d, 0x40, 0x3b, 0x9b, 0x74, 0x21, 0xd0, 0xe2, 0x98, 0x61, 0x41, 0x91, 0x2a, 0x67, 0xac, 0xd8, - 0x9b, 0xa2, 0xe8, 0x13, 0x64, 0xd3, 0x17, 0x28, 0xfa, 0x00, 0x29, 0x10, 0xf4, 0x09, 0xba, 0x08, - 0x0a, 0x14, 0x08, 0xba, 0x6a, 0x17, 0x65, 0x0a, 0x65, 0x91, 0x75, 0xb4, 0xeb, 0xae, 0x98, 0x0b, - 0x2f, 0x92, 0x68, 0xd9, 0x69, 0x54, 0x38, 0x40, 0x57, 0xe6, 0xcc, 0xf9, 0xce, 0x99, 0x33, 0xdf, - 0xb9, 0xcc, 0x8c, 0x0c, 0x0a, 0x1a, 0x44, 0x5d, 0x1b, 0x55, 0x7b, 0x36, 0xc2, 0xa8, 0xda, 0xbf, - 0x59, 0xed, 0x22, 0x1d, 0x55, 0x7a, 0x8e, 0x8d, 0x6d, 0x31, 0xcb, 0x64, 0x15, 0x2a, 0xab, 0xf4, - 0x6f, 0x16, 0x72, 0xba, 0xad, 0xdb, 0x54, 0x56, 0x25, 0x5f, 0x0c, 0x56, 0x58, 0xd5, 0x6d, 0x5b, - 0x37, 0x61, 0x95, 0x8e, 0x76, 0xf7, 0xf7, 0xaa, 0xaa, 0x75, 0xc8, 0x45, 0xd2, 0xb8, 0x08, 0x1b, - 0x5d, 0x88, 0xb0, 0xda, 0xed, 0x79, 0xba, 0x1d, 0x9b, 0x2c, 0xd1, 0x66, 0x46, 0xd9, 0x80, 0x8b, - 0x56, 0xd8, 0x88, 0x38, 0x54, 0xed, 0xdf, 0x20, 0x7f, 0xb8, 0x60, 0x6d, 0xc2, 0x65, 0x5b, 0x83, - 0x26, 0x57, 0x93, 0x9f, 0x27, 0x40, 0xba, 0x85, 0xf4, 0x4d, 0x07, 0xaa, 0x18, 0xde, 0xb5, 0x11, - 0x16, 0xb7, 0x40, 0x0a, 0xed, 0xef, 0xa2, 0x9e, 0xda, 0x81, 0x6d, 0x43, 0xcb, 0x0b, 0x25, 0xa1, - 0x3c, 0xdf, 0xb8, 0x34, 0x70, 0x25, 0xb0, 0xcd, 0xa7, 0x9b, 0xb7, 0x87, 0xae, 0x24, 0x1e, 0xaa, - 0x5d, 0x73, 0x43, 0x0e, 0x41, 0x65, 0x05, 0x78, 0xa3, 0xa6, 0x26, 0xd6, 0x01, 0x40, 0xb0, 0x83, - 0x0d, 0xdb, 0x22, 0x56, 0x62, 0x25, 0xa1, 0x9c, 0x6e, 0xc8, 0x03, 0x57, 0x4a, 0x6e, 0xb3, 0x59, - 0x6a, 0xe4, 0x2c, 0x37, 0xe2, 0x03, 0x65, 0x25, 0xc9, 0x07, 0x4d, 0x8d, 0x78, 0x02, 0x0f, 0x30, - 0x74, 0x2c, 0xd5, 0x24, 0x36, 0xe2, 0x25, 0xa1, 0x9c, 0x64, 0x9e, 0x6c, 0xf1, 0xe9, 0xb0, 0x27, - 0x21, 0xa8, 0xac, 0x00, 0x6f, 0xd4, 0xd4, 0xc4, 0x8b, 0x60, 0x1e, 0xc3, 0x03, 0x9c, 0x9f, 0xa7, - 0xfa, 0xd9, 0xa1, 0x2b, 0xa5, 0x98, 0x06, 0x99, 0x95, 0x15, 0x2a, 0x14, 0xef, 0x80, 0x45, 0x68, - 0x61, 0x03, 0x1b, 0x10, 0xe5, 0x17, 0x4a, 0x42, 0x39, 0x55, 0x5b, 0xad, 0x8c, 0xc5, 0xb3, 0xb2, - 0xc5, 0x01, 0x8d, 0x73, 0x43, 0x57, 0xca, 0xf2, 0x55, 0xf9, 0x9c, 0xac, 0xf8, 0xfa, 0x74, 0x41, - 0x55, 0x47, 0xf9, 0x44, 0x29, 0x3e, 0xb6, 0xa0, 0xaa, 0x23, 0xb2, 0xa0, 0xaa, 0x23, 0x11, 0x81, - 0x94, 0x8a, 0xb1, 0xda, 0x79, 0xd0, 0x85, 0x16, 0x46, 0xf9, 0x33, 0xa5, 0x78, 0x39, 0x55, 0xcb, - 0x55, 0x58, 0x06, 0x54, 0xbc, 0x0c, 0xa8, 0xd4, 0xad, 0xc3, 0xc6, 0xfb, 0xc1, 0x26, 0x43, 0x2a, - 0xf2, 0x4f, 0x4f, 0xd6, 0x2f, 0x8c, 0xbb, 0x58, 0xf7, 0xe5, 0x9b, 0xb6, 0x85, 0xa1, 0x85, 0x95, - 0xf0, 0x2a, 0x62, 0x1d, 0x24, 0xd4, 0x7d, 0xfc, 0xc0, 0x76, 0xf2, 0x8b, 0x94, 0x8c, 0x2b, 0x43, - 0x57, 0x4a, 0x73, 0xcb, 0x74, 0x5e, 0xfe, 0xe5, 0xc9, 0x7a, 0x8e, 0xe7, 0x55, 0x5d, 0xd3, 0x1c, - 0x88, 0xd0, 0x36, 0x76, 0x0c, 0x4b, 0x57, 0xb8, 0xa2, 0x78, 0x0f, 0x64, 0x3b, 0xb6, 0xd5, 0x87, - 0x0e, 0x52, 0xbd, 0xe0, 0x26, 0x69, 0x8a, 0x5c, 0x1f, 0xb8, 0x52, 0x66, 0x33, 0x24, 0xa2, 0xc1, - 0xf9, 0x0f, 0xb3, 0x3e, 0xa6, 0x22, 0x2b, 0x99, 0xf0, 0x4c, 0x53, 0x13, 0xdb, 0x20, 0xe3, 0xc0, - 0x9e, 0x79, 0xd8, 0x46, 0x10, 0x63, 0xc3, 0xd2, 0x51, 0x1e, 0x94, 0x84, 0x72, 0xa6, 0xf6, 0xbf, - 0x89, 0x28, 0x28, 0x04, 0xb6, 0xcd, 0x50, 0x8d, 0xd5, 0xa1, 0x2b, 0x9d, 0x67, 0x4b, 0x8c, 0xaa, - 0xcb, 0x4a, 0xda, 0x09, 0x01, 0x91, 0xf8, 0x39, 0x58, 0x76, 0xe0, 0x1e, 0x74, 0xa0, 0xd5, 0x81, - 0x5a, 0x9b, 0x5a, 0xcb, 0xa7, 0x28, 0xe9, 0xc5, 0x89, 0x25, 0x48, 0x1d, 0x28, 0x1e, 0xb8, 0x21, - 0x3d, 0x75, 0xa5, 0xb9, 0xa1, 0x2b, 0xad, 0x78, 0xeb, 0x8c, 0x5a, 0x91, 0x95, 0x6c, 0x30, 0x45, - 0x34, 0xd1, 0x46, 0xea, 0xeb, 0x97, 0x8f, 0xaf, 0x72, 0xc2, 0xe4, 0xef, 0x05, 0x70, 0x7e, 0xa4, - 0xc2, 0x14, 0x88, 0x7a, 0xb6, 0x85, 0xa0, 0x78, 0x0b, 0x9c, 0x21, 0x16, 0x82, 0x2a, 0x5b, 0x1b, - 0xb8, 0x52, 0x82, 0x40, 0x28, 0x75, 0x19, 0xb6, 0x1e, 0x87, 0xc8, 0x4a, 0x82, 0x7c, 0x35, 0x35, - 0x51, 0x05, 0xe9, 0x0e, 0x31, 0x46, 0xa8, 0xd4, 0x54, 0x0c, 0x69, 0x71, 0xa5, 0x6a, 0x85, 0x89, - 0xdc, 0xd9, 0xf1, 0xba, 0x47, 0xa3, 0xc4, 0xb7, 0x90, 0xe3, 0xd1, 0x08, 0xab, 0xcb, 0x8f, 0x9e, - 0x4b, 0x82, 0xb2, 0xe4, 0xcd, 0xdd, 0x26, 0x53, 0xaf, 0x62, 0x20, 0xd5, 0x42, 0xfa, 0x96, 0x66, - 0xe0, 0x59, 0xf6, 0x84, 0xd0, 0x86, 0x63, 0xaf, 0xb1, 0x61, 0xaf, 0x80, 0xe3, 0x27, 0x2d, 0xe0, - 0xf9, 0x19, 0x15, 0xf0, 0xc2, 0xb4, 0x02, 0xae, 0x83, 0x04, 0xd4, 0x0c, 0x6c, 0x3b, 0xf9, 0xc4, - 0x78, 0x2d, 0xb1, 0xf9, 0x29, 0xb5, 0xc4, 0x00, 0x3c, 0x4f, 0x38, 0xda, 0x04, 0xe7, 0x42, 0x94, - 0xfb, 0x49, 0x72, 0x0f, 0x24, 0x09, 0x80, 0x45, 0x5a, 0x38, 0x36, 0xd2, 0x6b, 0x3c, 0xd2, 0xcb, - 0x81, 0x27, 0xa1, 0x28, 0x2f, 0x92, 0x31, 0x8d, 0xf0, 0xef, 0x02, 0xed, 0xfb, 0xb7, 0xa1, 0x09, - 0x67, 0xdb, 0xf7, 0xff, 0x66, 0x8c, 0xeb, 0x20, 0x81, 0x0c, 0xdd, 0x82, 0x0e, 0x8f, 0x72, 0x88, - 0x4d, 0x36, 0x3f, 0x85, 0x4d, 0x06, 0xe0, 0x6c, 0x72, 0xf4, 0x0a, 0x2d, 0xba, 0x60, 0x7b, 0x1e, - 0x9f, 0xf2, 0xcf, 0x31, 0x90, 0x6b, 0x21, 0xbd, 0xae, 0xd1, 0x5a, 0x0d, 0xfa, 0xe5, 0x29, 0xef, - 0x5f, 0x07, 0x67, 0x3a, 0xac, 0x63, 0x53, 0x02, 0x8e, 0x3a, 0x0a, 0xde, 0x0b, 0x4c, 0x70, 0xf8, - 0x09, 0x8f, 0x01, 0xcf, 0x7a, 0x28, 0x6d, 0xe7, 0x67, 0x92, 0xb6, 0x3f, 0x0a, 0x60, 0x2d, 0x8a, - 0x4f, 0x3f, 0x81, 0x5b, 0x20, 0x1d, 0x1c, 0x41, 0x1e, 0xb3, 0xe9, 0x46, 0x79, 0xe0, 0x4a, 0x4b, - 0x01, 0x9c, 0x92, 0x93, 0x1b, 0x3f, 0xe4, 0x28, 0x45, 0x4b, 0xc1, 0xb8, 0xa9, 0x8d, 0xd6, 0x43, - 0x6c, 0x66, 0xf5, 0xf0, 0x43, 0x0c, 0xac, 0xb4, 0x90, 0xae, 0xc0, 0xae, 0xdd, 0x87, 0x6f, 0x55, - 0x66, 0x4c, 0xf0, 0x17, 0x7f, 0x23, 0xfe, 0x66, 0x1d, 0xff, 0x03, 0x20, 0x1d, 0xc1, 0xdb, 0x3f, - 0xdd, 0xc2, 0x7e, 0x8b, 0xd1, 0x16, 0x56, 0xb7, 0xd0, 0x43, 0xe8, 0xdc, 0xb5, 0x4d, 0xf3, 0x94, - 0x03, 0x45, 0xd5, 0x4c, 0x33, 0x08, 0x11, 0x57, 0x33, 0xcd, 0x51, 0x35, 0xd3, 0xf4, 0xd4, 0x4c, - 0x72, 0x3d, 0xdd, 0x04, 0x59, 0x95, 0x6e, 0x01, 0xb5, 0x0d, 0x4b, 0x83, 0x07, 0xf4, 0xfc, 0x8a, - 0x97, 0xd3, 0x8d, 0x42, 0x70, 0x7d, 0x1a, 0x03, 0xc8, 0x4a, 0x86, 0xcf, 0x34, 0xd9, 0x44, 0xa8, - 0x7d, 0x2e, 0xcc, 0xb0, 0x7d, 0x06, 0xd4, 0xfa, 0xed, 0xf3, 0x3b, 0x01, 0x64, 0x5b, 0x48, 0xbf, - 0xd7, 0x23, 0x11, 0xb9, 0xab, 0x3a, 0x6a, 0x17, 0x89, 0x77, 0x40, 0x92, 0xdd, 0x75, 0x0c, 0x7c, - 0x48, 0x49, 0x4f, 0x36, 0xae, 0x07, 0xf1, 0xf3, 0x45, 0x47, 0xbb, 0x10, 0xa8, 0x8b, 0xb7, 0x40, - 0xa2, 0x47, 0xad, 0xf2, 0xda, 0x5e, 0x99, 0xbc, 0x9c, 0x51, 0x71, 0x63, 0x9e, 0x64, 0x89, 0xc2, - 0xc1, 0x1b, 0x19, 0xe2, 0x7c, 0x60, 0x46, 0x5e, 0xa5, 0xd5, 0x1c, 0xf6, 0xd2, 0xdf, 0xc1, 0x37, - 0x71, 0x7a, 0xb7, 0x69, 0xf1, 0x7c, 0x3d, 0xe5, 0xa4, 0x69, 0x03, 0x11, 0xab, 0x8e, 0x0e, 0x71, - 0x3b, 0xec, 0x44, 0x9c, 0x5a, 0xb8, 0x31, 0x70, 0xa5, 0xe5, 0x1d, 0x2a, 0x1d, 0x71, 0x65, 0xd5, - 0xbb, 0x8c, 0x8c, 0xeb, 0xc9, 0xca, 0x32, 0x1e, 0x85, 0x6b, 0xe2, 0x67, 0xe0, 0xac, 0x07, 0x0c, - 0x9e, 0x63, 0xf3, 0x34, 0x3f, 0xab, 0x03, 0x57, 0xca, 0x72, 0xfb, 0xa1, 0x47, 0x59, 0x7e, 0xd4, - 0x7c, 0xe8, 0x6d, 0x96, 0xc5, 0x23, 0x60, 0x4d, 0xfc, 0x00, 0x2c, 0xd8, 0x0f, 0x83, 0xac, 0x2b, - 0x0f, 0x5d, 0x69, 0x89, 0x69, 0xd3, 0xe9, 0xa3, 0x23, 0xce, 0xd4, 0x36, 0x00, 0x09, 0x1b, 0xfb, - 0x96, 0x3f, 0xa6, 0xf7, 0x1f, 0x2f, 0x2c, 0x6f, 0x78, 0x49, 0x96, 0x9f, 0xc4, 0xc0, 0x7f, 0x69, - 0x5f, 0xfa, 0x62, 0x1f, 0x22, 0x7a, 0xa3, 0xfa, 0x94, 0xac, 0xb2, 0xe3, 0xa8, 0x16, 0xda, 0x83, - 0xce, 0x29, 0x47, 0xfd, 0x43, 0xb0, 0xe8, 0xc0, 0x0e, 0x34, 0xfa, 0xfe, 0x7d, 0xe7, 0x5a, 0x70, - 0x23, 0xf5, 0x24, 0x47, 0xb3, 0xe7, 0x2b, 0xd3, 0xba, 0x87, 0x96, 0x06, 0x23, 0xba, 0x39, 0x9b, - 0x9f, 0x56, 0xf7, 0x14, 0xe0, 0xd5, 0x3d, 0x43, 0x5f, 0x06, 0x17, 0xa7, 0xb0, 0xe6, 0xd7, 0xd0, - 0x2b, 0x01, 0x5c, 0x20, 0x6f, 0x1a, 0xd5, 0xea, 0x40, 0x33, 0x02, 0x46, 0xd5, 0xdf, 0x82, 0x1b, - 0x25, 0xa3, 0x26, 0x3e, 0x13, 0x6a, 0xae, 0x81, 0x2b, 0xc7, 0x6e, 0xd9, 0x27, 0xe8, 0x4f, 0x46, - 0x50, 0xbd, 0xd3, 0x81, 0x3d, 0xfc, 0x96, 0x12, 0x34, 0xab, 0x24, 0xdc, 0x48, 0x13, 0x9a, 0xfc, - 0x21, 0x27, 0x6a, 0xfa, 0xd6, 0xc7, 0x89, 0x52, 0xe0, 0xde, 0x3e, 0x82, 0xff, 0x4a, 0xa2, 0xa6, - 0x6f, 0xdd, 0x23, 0xaa, 0xf6, 0x2d, 0x00, 0xf1, 0x16, 0xd2, 0xc5, 0x1d, 0x00, 0x42, 0x3f, 0xd6, - 0x4d, 0xfe, 0x76, 0x31, 0xf2, 0x53, 0x43, 0xe1, 0xff, 0xd3, 0xe5, 0x7e, 0x97, 0xfd, 0x04, 0x2c, - 0xfa, 0x8f, 0xfd, 0xb5, 0x28, 0x1d, 0x4f, 0x5a, 0xb8, 0x34, 0x4d, 0xea, 0xdb, 0xdb, 0x01, 0x20, - 0xf4, 0xb4, 0x8c, 0xf4, 0x32, 0x90, 0x47, 0x7b, 0x39, 0xf9, 0x76, 0x13, 0x0d, 0x70, 0x76, 0xf2, - 0xdd, 0x76, 0x39, 0x4a, 0x79, 0x02, 0x56, 0x58, 0x3f, 0x11, 0xcc, 0x5f, 0xca, 0x01, 0xb9, 0xc8, - 0xb7, 0x40, 0x39, 0xca, 0x4c, 0x14, 0xb2, 0xf0, 0xce, 0x49, 0x91, 0x61, 0xd2, 0x42, 0x97, 0xd9, - 0x48, 0xd2, 0x02, 0x79, 0x34, 0x69, 0x93, 0x37, 0x36, 0xf1, 0x3e, 0x58, 0x1a, 0xb9, 0xad, 0x95, - 0xa2, 0xf4, 0xc2, 0x88, 0x42, 0xf9, 0x38, 0x44, 0x38, 0x6d, 0xfc, 0x7b, 0x54, 0x64, 0xda, 0x78, - 0xd2, 0xe8, 0xb4, 0x99, 0x38, 0xec, 0xbf, 0x04, 0xf9, 0x23, 0x4f, 0xec, 0xeb, 0xd1, 0x7c, 0x46, - 0xa3, 0x0b, 0xef, 0xbe, 0x0e, 0xda, 0x5f, 0xff, 0x91, 0x00, 0x8a, 0xc7, 0x1c, 0x6a, 0xb5, 0xc8, - 0x8a, 0x9a, 0xaa, 0x53, 0xd8, 0x78, 0x7d, 0x9d, 0x11, 0x97, 0x8e, 0x39, 0x46, 0x22, 0x5d, 0x9a, - 0xae, 0x13, 0xed, 0xd2, 0xc9, 0x7a, 0x36, 0x75, 0xe9, 0x98, 0x86, 0x5d, 0x8b, 0xa6, 0x7f, 0x9a, - 0x4e, 0xb4, 0x4b, 0x27, 0xeb, 0x8e, 0x85, 0x85, 0xaf, 0x5e, 0x3e, 0xbe, 0x2a, 0x34, 0x3e, 0x7a, - 0x3a, 0x28, 0x0a, 0xcf, 0x06, 0x45, 0xe1, 0x8f, 0x41, 0x51, 0x78, 0xf4, 0xa2, 0x38, 0xf7, 0xec, - 0x45, 0x71, 0xee, 0xd7, 0x17, 0xc5, 0xb9, 0xfb, 0x15, 0xdd, 0xc0, 0x0f, 0xf6, 0x77, 0x2b, 0x1d, - 0xbb, 0x5b, 0x65, 0xcb, 0xac, 0x9b, 0xea, 0x2e, 0xe2, 0xdf, 0xd5, 0xfe, 0xad, 0xea, 0x01, 0xff, - 0x0f, 0x09, 0x3e, 0xec, 0x41, 0xb4, 0x9b, 0xa0, 0x0f, 0xd3, 0x9b, 0x7f, 0x05, 0x00, 0x00, 0xff, - 0xff, 0xb3, 0x39, 0x53, 0xe3, 0xf1, 0x19, 0x00, 0x00, + // 1692 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x58, 0xcb, 0x6f, 0xdb, 0x46, + 0x1a, 0x37, 0x25, 0x5b, 0xb1, 0x47, 0x96, 0x65, 0x33, 0xca, 0x5a, 0x56, 0xbc, 0xa2, 0xc2, 0x24, + 0x0b, 0xe5, 0x61, 0x69, 0xa3, 0x6c, 0xb0, 0x0b, 0x2d, 0xb0, 0x80, 0xe4, 0x18, 0x5b, 0x05, 0x55, + 0x1b, 0xd0, 0xce, 0x25, 0x3d, 0x08, 0xb4, 0x38, 0x66, 0x58, 0x50, 0xa4, 0xca, 0x19, 0x3b, 0xf6, + 0xa5, 0x28, 0x7a, 0x2a, 0x7a, 0xca, 0x5f, 0xd0, 0x43, 0x0f, 0x3d, 0xf5, 0x90, 0x02, 0xf9, 0x13, + 0x0a, 0x34, 0xe8, 0x29, 0xe8, 0xa9, 0x45, 0x01, 0xb5, 0x50, 0x0e, 0x39, 0xf5, 0xa2, 0x43, 0xd1, + 0x63, 0x31, 0x0f, 0x3e, 0x44, 0xd1, 0xb4, 0x93, 0x38, 0x70, 0x80, 0x5e, 0x6c, 0xce, 0xf7, 0x9a, + 0x6f, 0x7e, 0xdf, 0x63, 0xbe, 0x11, 0x28, 0x68, 0x10, 0xf5, 0x6c, 0x54, 0xed, 0xdb, 0x08, 0xa3, + 0xea, 0xde, 0xcd, 0x6a, 0x0f, 0xe9, 0xa8, 0xd2, 0x77, 0x6c, 0x6c, 0x8b, 0x59, 0xc6, 0xab, 0x50, + 0x5e, 0x65, 0xef, 0x66, 0x61, 0x49, 0xed, 0x19, 0x96, 0x5d, 0xa5, 0x7f, 0x99, 0x4c, 0x21, 0xa7, + 0xdb, 0xba, 0x4d, 0x3f, 0xab, 0xe4, 0x8b, 0x53, 0x57, 0x74, 0xdb, 0xd6, 0x4d, 0x58, 0xa5, 0xab, + 0xed, 0xdd, 0x9d, 0xaa, 0x6a, 0x1d, 0x70, 0x96, 0x14, 0x66, 0x61, 0xa3, 0x07, 0x11, 0x56, 0x7b, + 0x7d, 0x57, 0xb7, 0x6b, 0x93, 0x5d, 0x3b, 0xcc, 0x28, 0x5b, 0x70, 0xd6, 0x32, 0x5b, 0x11, 0x1f, + 0xab, 0x7b, 0x37, 0xc8, 0x3f, 0xce, 0x58, 0x9d, 0x38, 0x85, 0xad, 0x41, 0x93, 0xab, 0xc9, 0x7f, + 0xa4, 0x40, 0xa6, 0x8d, 0xf4, 0x75, 0x07, 0xaa, 0x18, 0xde, 0xb5, 0x11, 0x16, 0x37, 0x40, 0x1a, + 0xed, 0x6e, 0xa3, 0xbe, 0xda, 0x85, 0x1d, 0x43, 0xcb, 0x0b, 0x25, 0xa1, 0x3c, 0xdd, 0xbc, 0x34, + 0x1c, 0x48, 0x60, 0x93, 0x93, 0x5b, 0xb7, 0x47, 0x03, 0x49, 0x3c, 0x50, 0x7b, 0x66, 0x5d, 0x0e, + 0x88, 0xca, 0x0a, 0x70, 0x57, 0x2d, 0x4d, 0x6c, 0x00, 0x80, 0x60, 0x17, 0x1b, 0xb6, 0x45, 0xac, + 0x24, 0x4a, 0x42, 0x39, 0xd3, 0x94, 0x87, 0x03, 0x69, 0x6e, 0x93, 0x51, 0xa9, 0x91, 0x25, 0x6e, + 0xc4, 0x13, 0x94, 0x95, 0x39, 0xbe, 0x68, 0x69, 0xc4, 0x13, 0xb8, 0x8f, 0xa1, 0x63, 0xa9, 0x26, + 0xb1, 0x91, 0x2c, 0x09, 0xe5, 0x39, 0xe6, 0xc9, 0x06, 0x27, 0x07, 0x3d, 0x09, 0x88, 0xca, 0x0a, + 0x70, 0x57, 0x2d, 0x4d, 0xbc, 0x08, 0xa6, 0x31, 0xdc, 0xc7, 0xf9, 0x69, 0xaa, 0x9f, 0x1d, 0x0d, + 0xa4, 0x34, 0xd3, 0x20, 0x54, 0x59, 0xa1, 0x4c, 0xf1, 0x0e, 0x98, 0x85, 0x16, 0x36, 0xb0, 0x01, + 0x51, 0x7e, 0xa6, 0x24, 0x94, 0xd3, 0xb5, 0x95, 0x4a, 0x28, 0xc4, 0x95, 0x0d, 0x2e, 0xd0, 0x3c, + 0x3b, 0x1a, 0x48, 0x59, 0xbe, 0x2b, 0xa7, 0xc9, 0x8a, 0xa7, 0x4f, 0x37, 0x54, 0x75, 0x94, 0x4f, + 0x95, 0x92, 0xa1, 0x0d, 0x55, 0x1d, 0x91, 0x0d, 0x55, 0x1d, 0x89, 0x08, 0xa4, 0x55, 0x8c, 0xd5, + 0xee, 0x83, 0x1e, 0xb4, 0x30, 0xca, 0x9f, 0x29, 0x25, 0xcb, 0xe9, 0x5a, 0xae, 0xc2, 0x32, 0xa0, + 0xe2, 0x66, 0x40, 0xa5, 0x61, 0x1d, 0x34, 0xff, 0xeb, 0x1f, 0x32, 0xa0, 0x22, 0x7f, 0xff, 0x64, + 0xed, 0x42, 0xd8, 0xc5, 0x86, 0xc7, 0x5f, 0xb7, 0x2d, 0x0c, 0x2d, 0xac, 0x04, 0x77, 0x11, 0x1b, + 0x20, 0xa5, 0xee, 0xe2, 0x07, 0xb6, 0x93, 0x9f, 0xa5, 0x60, 0x5c, 0x19, 0x0d, 0xa4, 0x0c, 0xb7, + 0x4c, 0xe9, 0xf2, 0x0f, 0x4f, 0xd6, 0x72, 0x3c, 0xaf, 0x1a, 0x9a, 0xe6, 0x40, 0x84, 0x36, 0xb1, + 0x63, 0x58, 0xba, 0xc2, 0x15, 0xc5, 0x7b, 0x20, 0xdb, 0xb5, 0xad, 0x3d, 0xe8, 0x20, 0xd5, 0x0d, + 0xee, 0x1c, 0x4d, 0x91, 0xeb, 0xc3, 0x81, 0xb4, 0xb0, 0x1e, 0x60, 0xd1, 0xe0, 0xfc, 0x8d, 0x59, + 0x0f, 0xa9, 0xc8, 0xca, 0x42, 0x90, 0xd2, 0xd2, 0xc4, 0x0e, 0x58, 0x70, 0x60, 0xdf, 0x3c, 0xe8, + 0x20, 0x88, 0xb1, 0x61, 0xe9, 0x28, 0x0f, 0x4a, 0x42, 0x79, 0xa1, 0xf6, 0xf7, 0x89, 0x28, 0x28, + 0x44, 0x6c, 0x93, 0x49, 0x35, 0x57, 0x46, 0x03, 0xe9, 0x1c, 0xdb, 0x62, 0x5c, 0x5d, 0x56, 0x32, + 0x4e, 0x40, 0x10, 0x89, 0x1f, 0x82, 0x45, 0x07, 0xee, 0x40, 0x07, 0x5a, 0x5d, 0xa8, 0x75, 0xa8, + 0xb5, 0x7c, 0x9a, 0x82, 0x5e, 0x9c, 0xd8, 0x82, 0xd4, 0x81, 0xe2, 0x0a, 0x37, 0xa5, 0xa7, 0x03, + 0x69, 0x6a, 0x34, 0x90, 0x96, 0xdd, 0x7d, 0xc6, 0xad, 0xc8, 0x4a, 0xd6, 0x27, 0x11, 0x4d, 0x54, + 0xbf, 0xf4, 0xe9, 0x8b, 0xc7, 0x57, 0x39, 0x60, 0x9f, 0xbf, 0x78, 0x7c, 0x35, 0xc7, 0x4b, 0x70, + 0xac, 0xd0, 0xe4, 0x6f, 0x04, 0x70, 0x6e, 0x8c, 0xa2, 0x40, 0xd4, 0xb7, 0x2d, 0x04, 0xc5, 0x5b, + 0xe0, 0x0c, 0x31, 0xed, 0x97, 0xdf, 0xea, 0x70, 0x20, 0xa5, 0x88, 0x08, 0xc5, 0x74, 0x81, 0x39, + 0xc2, 0x45, 0x64, 0x25, 0x45, 0xbe, 0x5a, 0x9a, 0xa8, 0x82, 0x4c, 0x97, 0x18, 0x23, 0x18, 0x6b, + 0x2a, 0x86, 0xb4, 0xea, 0xd2, 0xb5, 0xc2, 0x44, 0x52, 0x6d, 0xb9, 0x6d, 0xa5, 0x59, 0xe2, 0x67, + 0xcb, 0xf1, 0x30, 0x05, 0xd5, 0xe5, 0x47, 0xbf, 0x48, 0x82, 0x32, 0xef, 0xd2, 0x6e, 0x13, 0xd2, + 0x67, 0x49, 0x90, 0x6e, 0x23, 0x7d, 0x43, 0x33, 0xf0, 0x49, 0x36, 0x8b, 0xc0, 0x81, 0x13, 0x2f, + 0x71, 0x60, 0xb7, 0xb2, 0x93, 0xc7, 0xad, 0xec, 0xe9, 0x13, 0xaa, 0xec, 0x99, 0xb8, 0xca, 0x6e, + 0x80, 0x14, 0xd4, 0x0c, 0x6c, 0x3b, 0xf9, 0x54, 0xb8, 0xc8, 0x18, 0x3d, 0xa6, 0xc8, 0x98, 0x40, + 0x5d, 0xa6, 0x09, 0xc4, 0x16, 0x24, 0x81, 0x44, 0x3f, 0x81, 0x5c, 0xe8, 0x65, 0x13, 0x9c, 0x0d, + 0x2c, 0xbd, 0xdc, 0xb9, 0x07, 0xe6, 0x88, 0x1e, 0x4b, 0x00, 0xe1, 0xc8, 0x04, 0x58, 0xe5, 0x09, + 0xb0, 0xe8, 0x3b, 0x18, 0x08, 0xfe, 0x2c, 0x59, 0xd3, 0xc0, 0xff, 0x2e, 0xd0, 0x7b, 0xe2, 0x36, + 0x34, 0xe1, 0xc9, 0xde, 0x13, 0xaf, 0x18, 0xfa, 0x06, 0x48, 0x21, 0x43, 0xb7, 0xa0, 0xc3, 0x83, + 0x1f, 0x00, 0x99, 0xd1, 0x63, 0x40, 0x66, 0x02, 0xbc, 0x4a, 0xd9, 0x22, 0x54, 0xa5, 0xfe, 0x31, + 0xe5, 0x65, 0x5a, 0xa4, 0x3e, 0xc1, 0x05, 0x5a, 0xfe, 0x2d, 0x01, 0x72, 0x6d, 0xa4, 0x37, 0x34, + 0x5a, 0xf4, 0x7e, 0xe3, 0x3d, 0x65, 0x60, 0x74, 0x70, 0xa6, 0xcb, 0x5a, 0x3f, 0x45, 0xe6, 0xb0, + 0x3b, 0xe5, 0xdf, 0xbe, 0x09, 0x2e, 0x7e, 0xcc, 0xfb, 0xc4, 0xb5, 0x1e, 0x48, 0xf3, 0xe9, 0x57, + 0x4d, 0xf3, 0x6b, 0xa1, 0x34, 0x3f, 0xef, 0x47, 0x60, 0x02, 0x56, 0xf9, 0x5b, 0x01, 0xac, 0x46, + 0x31, 0xbc, 0xcc, 0x6f, 0x83, 0x8c, 0x7f, 0xd7, 0xb9, 0xc8, 0x67, 0x9a, 0xe5, 0xe1, 0x40, 0x9a, + 0xf7, 0xc5, 0x29, 0x78, 0xb9, 0xf0, 0x6d, 0x4a, 0x21, 0x9c, 0xf7, 0xd7, 0x2d, 0x6d, 0xbc, 0x90, + 0x12, 0x27, 0x56, 0x48, 0x3f, 0x25, 0xc0, 0x72, 0x1b, 0xe9, 0x0a, 0xec, 0xd9, 0x7b, 0xf0, 0xad, + 0xca, 0x9c, 0x09, 0xfc, 0x92, 0xaf, 0x85, 0xdf, 0x09, 0xe4, 0x47, 0x25, 0x94, 0x1f, 0x45, 0x3f, + 0x3f, 0xa2, 0xf0, 0x93, 0xf7, 0x81, 0x74, 0x08, 0xeb, 0x4d, 0xb7, 0xc7, 0x51, 0x82, 0xb6, 0xc7, + 0x86, 0x85, 0x1e, 0x42, 0xe7, 0xae, 0x6d, 0x9a, 0xa7, 0x1c, 0x4b, 0xaa, 0x66, 0x9a, 0x7e, 0x14, + 0xb9, 0x9a, 0x69, 0x8e, 0xab, 0x99, 0xa6, 0xab, 0x66, 0x92, 0x51, 0x79, 0x1d, 0x64, 0x55, 0x7a, + 0x04, 0xd4, 0x31, 0x2c, 0x0d, 0xee, 0xd3, 0x2b, 0x33, 0x59, 0xce, 0x34, 0x0b, 0xfe, 0x28, 0x17, + 0x12, 0x90, 0x95, 0x05, 0x4e, 0x69, 0x31, 0x42, 0xa0, 0x35, 0xcf, 0xbc, 0x81, 0xd6, 0xec, 0x43, + 0xcc, 0x5b, 0xb3, 0x4f, 0xf0, 0x5a, 0xf3, 0x77, 0x02, 0xc8, 0xb6, 0x91, 0x7e, 0xaf, 0x4f, 0x42, + 0x75, 0x57, 0x75, 0xd4, 0x1e, 0x12, 0xef, 0x80, 0x39, 0x36, 0x90, 0x19, 0xf8, 0x80, 0x46, 0x63, + 0xae, 0x79, 0xdd, 0x0f, 0xac, 0xc7, 0x3a, 0xdc, 0x37, 0x5f, 0x5d, 0xbc, 0x05, 0x52, 0x7d, 0x6a, + 0x95, 0xf7, 0x85, 0xe5, 0xc9, 0x09, 0x92, 0xb2, 0x9b, 0xd3, 0x24, 0x7d, 0x14, 0x2e, 0x5c, 0xbf, + 0x41, 0x4e, 0xe5, 0x9b, 0x09, 0x66, 0xf4, 0x3e, 0x7f, 0x9e, 0x85, 0xbc, 0x96, 0x57, 0x68, 0xb3, + 0x08, 0x92, 0xbc, 0x43, 0x7e, 0xcd, 0x46, 0xb1, 0x36, 0xcf, 0xf5, 0x53, 0x4e, 0xb8, 0x0e, 0x10, + 0xb1, 0xea, 0xe8, 0x10, 0x77, 0x82, 0x4e, 0x24, 0xa9, 0x85, 0x1b, 0xc3, 0x81, 0xb4, 0xb8, 0x45, + 0xb9, 0x63, 0xae, 0xac, 0xb8, 0xb3, 0x53, 0x58, 0x4f, 0x56, 0x16, 0xf1, 0xb8, 0xb8, 0x26, 0x7e, + 0x00, 0x96, 0x5c, 0x41, 0xff, 0x59, 0x39, 0x4d, 0x73, 0xbb, 0x3a, 0x1c, 0x48, 0x59, 0x6e, 0x3f, + 0xf0, 0xb8, 0xcc, 0x8f, 0x9b, 0x0f, 0xbc, 0x31, 0xb3, 0x78, 0x4c, 0x58, 0x13, 0xff, 0x07, 0x66, + 0xec, 0x87, 0x7e, 0xc6, 0x96, 0x47, 0x03, 0x69, 0x9e, 0x69, 0x53, 0xf2, 0xe1, 0x49, 0xc1, 0xd4, + 0xea, 0x17, 0x48, 0x64, 0xd9, 0x77, 0x68, 0x5c, 0x73, 0xc3, 0x23, 0xbf, 0x4b, 0xc7, 0x35, 0x77, + 0xf9, 0x9a, 0xa3, 0xbe, 0xfc, 0x73, 0x02, 0x9c, 0xa7, 0xad, 0xee, 0xa3, 0x5d, 0x88, 0xe8, 0x00, + 0xf8, 0x3e, 0xd9, 0x7c, 0xcb, 0x51, 0x2d, 0xb4, 0x03, 0x9d, 0x53, 0x4e, 0x86, 0xff, 0x83, 0x59, + 0x07, 0x76, 0xa1, 0xb1, 0xe7, 0x8d, 0x67, 0xd7, 0xfc, 0xb9, 0xda, 0xe5, 0x1c, 0x0e, 0xaa, 0xa7, + 0x4c, 0x5b, 0x09, 0xb4, 0x34, 0x18, 0x71, 0x87, 0x30, 0x7a, 0x5c, 0x2b, 0xa1, 0x02, 0xf5, 0x1a, + 0x6b, 0x25, 0x74, 0x41, 0x62, 0x23, 0x07, 0xef, 0x90, 0x68, 0xf4, 0xe4, 0xcb, 0xe0, 0x62, 0x0c, + 0xdb, 0xab, 0xc0, 0x2f, 0x12, 0xe0, 0x02, 0x79, 0xc0, 0xa9, 0x56, 0x17, 0x9a, 0x11, 0x62, 0x54, + 0xfd, 0x2d, 0x98, 0x93, 0x19, 0x82, 0xc9, 0x57, 0x45, 0xf0, 0x3f, 0x21, 0x04, 0xcb, 0x81, 0xd7, + 0x6c, 0xec, 0xd1, 0xe5, 0x6b, 0xe0, 0xca, 0x91, 0x42, 0x1e, 0x9a, 0x5f, 0x31, 0x34, 0x1b, 0xdd, + 0x2e, 0xec, 0xe3, 0xb7, 0x14, 0xcd, 0x93, 0x4a, 0xec, 0x7a, 0x9d, 0x60, 0xea, 0x2d, 0x43, 0xa8, + 0xc6, 0x43, 0xc0, 0x51, 0x8d, 0x17, 0x0a, 0xa3, 0xaa, 0xc0, 0x9d, 0x5d, 0x04, 0xff, 0xd2, 0xa8, + 0xc6, 0x43, 0xc0, 0x51, 0x8d, 0x17, 0x72, 0x51, 0xad, 0x7d, 0x09, 0x40, 0xb2, 0x8d, 0x74, 0x71, + 0x0b, 0x80, 0xc0, 0x2f, 0xa7, 0x93, 0x3f, 0x24, 0x8d, 0xfd, 0xbc, 0x53, 0xf8, 0x47, 0x3c, 0xdf, + 0xbb, 0x13, 0xde, 0x03, 0xb3, 0xde, 0x0f, 0x2c, 0xab, 0x51, 0x3a, 0x2e, 0xb7, 0x70, 0x29, 0x8e, + 0xeb, 0xd9, 0xdb, 0x02, 0x20, 0xf0, 0x6e, 0x8f, 0xf4, 0xd2, 0xe7, 0x47, 0x7b, 0x39, 0xf9, 0xfe, + 0x15, 0x0d, 0xb0, 0x34, 0xf9, 0xf6, 0xbd, 0x1c, 0xa5, 0x3c, 0x21, 0x56, 0x58, 0x3b, 0x96, 0x98, + 0xb7, 0x95, 0x03, 0x72, 0x91, 0xef, 0xa5, 0x72, 0x94, 0x99, 0x28, 0xc9, 0xc2, 0x3f, 0x8f, 0x2b, + 0x19, 0x04, 0x2d, 0x30, 0xcd, 0x47, 0x82, 0xe6, 0xf3, 0xa3, 0x41, 0x9b, 0x9c, 0x4c, 0xc5, 0xfb, + 0x60, 0x7e, 0x6c, 0x2a, 0x2d, 0x45, 0xe9, 0x05, 0x25, 0x0a, 0xe5, 0xa3, 0x24, 0x82, 0x69, 0xe3, + 0x0d, 0x83, 0x91, 0x69, 0xe3, 0x72, 0xa3, 0xd3, 0x66, 0x62, 0x34, 0xf9, 0x18, 0xe4, 0x0f, 0x9d, + 0x2f, 0xae, 0x47, 0xe3, 0x19, 0x2d, 0x5d, 0xf8, 0xd7, 0xcb, 0x48, 0x7b, 0xfb, 0x3f, 0x12, 0x40, + 0xf1, 0x88, 0xbb, 0xb5, 0x16, 0x59, 0x51, 0xb1, 0x3a, 0x85, 0xfa, 0xcb, 0xeb, 0x8c, 0xb9, 0x74, + 0xc4, 0x05, 0x15, 0xe9, 0x52, 0xbc, 0x4e, 0xb4, 0x4b, 0xc7, 0x6b, 0xf0, 0xd4, 0xa5, 0x23, 0xba, + 0x7b, 0x2d, 0x1a, 0xfe, 0x38, 0x9d, 0x68, 0x97, 0x8e, 0xd7, 0x1d, 0x0b, 0x33, 0x9f, 0xbc, 0x78, + 0x7c, 0x55, 0x68, 0xbe, 0xf3, 0x74, 0x58, 0x14, 0x9e, 0x0d, 0x8b, 0xc2, 0xaf, 0xc3, 0xa2, 0xf0, + 0xe8, 0x79, 0x71, 0xea, 0xd9, 0xf3, 0xe2, 0xd4, 0x8f, 0xcf, 0x8b, 0x53, 0xf7, 0x2b, 0xba, 0x81, + 0x1f, 0xec, 0x6e, 0x57, 0xba, 0x76, 0xaf, 0xca, 0xb6, 0x59, 0x33, 0xd5, 0x6d, 0xc4, 0xbf, 0xab, + 0x7b, 0xb7, 0xbc, 0xf7, 0x10, 0x3e, 0xe8, 0x43, 0xb4, 0x9d, 0xa2, 0x2f, 0xf3, 0x9b, 0x7f, 0x06, + 0x00, 0x00, 0xff, 0xff, 0x92, 0x29, 0x38, 0x0b, 0x91, 0x1b, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/profiles/types/msgs_app_links.pb.go b/x/profiles/types/msgs_app_links.pb.go index 94a2338fcd..da2f9216de 100644 --- a/x/profiles/types/msgs_app_links.pb.go +++ b/x/profiles/types/msgs_app_links.pb.go @@ -7,6 +7,7 @@ import ( fmt "fmt" _ "github.com/cosmos/cosmos-proto" _ "github.com/cosmos/cosmos-sdk/types/msgservice" + _ "github.com/cosmos/cosmos-sdk/types/tx/amino" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" types "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" @@ -284,44 +285,46 @@ func init() { } var fileDescriptor_29dfbdba444598ee = []byte{ - // 595 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x53, 0xbf, 0x6e, 0xd4, 0x30, - 0x18, 0xbf, 0x40, 0x29, 0x3d, 0x9f, 0x5a, 0x4a, 0x38, 0x20, 0x3d, 0x95, 0xa4, 0xf2, 0x42, 0x8b, - 0xd4, 0x44, 0x47, 0x85, 0x40, 0x9d, 0x68, 0x60, 0x00, 0x41, 0x05, 0x0a, 0xb0, 0xb0, 0x04, 0x5f, - 0x62, 0x72, 0x56, 0x13, 0x3b, 0x8a, 0x7d, 0x27, 0xba, 0xf2, 0x04, 0x7d, 0x14, 0x06, 0x1e, 0xa2, - 0x63, 0x61, 0x62, 0x8a, 0x50, 0x3b, 0xb0, 0xe7, 0x09, 0x50, 0x6c, 0xe7, 0xfe, 0x70, 0x15, 0x53, - 0x3e, 0xff, 0xfe, 0xd8, 0xf9, 0x3e, 0xff, 0x0c, 0xee, 0xc7, 0x98, 0x67, 0x8c, 0x7b, 0x79, 0xc1, - 0x3e, 0x93, 0x14, 0x73, 0x6f, 0xbc, 0xe7, 0x65, 0x3c, 0xe1, 0x21, 0xca, 0xf3, 0x30, 0x25, 0xf4, - 0x88, 0xbb, 0x79, 0xc1, 0x04, 0x33, 0x4d, 0x25, 0x74, 0x1b, 0xa1, 0x3b, 0xde, 0xeb, 0xed, 0x5c, - 0x66, 0x66, 0x31, 0x4e, 0x17, 0xec, 0xbd, 0x6e, 0xc2, 0x12, 0x26, 0x4b, 0xaf, 0xae, 0x34, 0x7a, - 0x37, 0x62, 0x72, 0x83, 0x8c, 0x27, 0xde, 0xb8, 0x5f, 0x7f, 0x34, 0xb1, 0xa1, 0x88, 0x50, 0x39, - 0xd4, 0x42, 0x53, 0x0e, 0x19, 0x44, 0x5e, 0xc4, 0x0a, 0xec, 0x45, 0x29, 0xc1, 0x54, 0xd4, 0x46, - 0x55, 0x29, 0x01, 0x3c, 0x59, 0x02, 0xe6, 0x21, 0x4f, 0x5e, 0x13, 0x7a, 0x74, 0x90, 0xe7, 0x29, - 0x89, 0x90, 0x20, 0x8c, 0x9a, 0x07, 0x60, 0x99, 0x63, 0x1a, 0xe3, 0xc2, 0x32, 0xb6, 0x8c, 0xed, - 0xb6, 0xbf, 0x53, 0x95, 0xce, 0xea, 0x31, 0xca, 0xd2, 0x7d, 0xa8, 0x70, 0xf8, 0xf3, 0xfb, 0x6e, - 0x57, 0x1f, 0x75, 0x10, 0xc7, 0x05, 0xe6, 0xfc, 0x9d, 0x28, 0x08, 0x4d, 0x02, 0x6d, 0x34, 0xdf, - 0x80, 0x76, 0xdd, 0x53, 0x18, 0x23, 0x81, 0xac, 0x2b, 0x5b, 0xc6, 0x76, 0xe7, 0xa1, 0xe5, 0x2e, - 0xce, 0xc5, 0x7d, 0x8e, 0x04, 0xf2, 0xad, 0xd3, 0xd2, 0x69, 0x55, 0xa5, 0xb3, 0xae, 0xce, 0x98, - 0x18, 0x61, 0xb0, 0x52, 0xd7, 0xb5, 0xc6, 0xec, 0x83, 0x76, 0x84, 0xd2, 0x54, 0x6d, 0x78, 0x55, - 0xfe, 0x56, 0x77, 0x6a, 0x99, 0x50, 0x30, 0x58, 0xa9, 0x6b, 0x69, 0x79, 0x0c, 0x3a, 0x9c, 0x8d, - 0x8a, 0x08, 0x87, 0x39, 0x2b, 0x84, 0xb5, 0x24, 0x4d, 0x77, 0xaa, 0xd2, 0x31, 0x75, 0x2f, 0x53, - 0x12, 0x06, 0x40, 0xad, 0xde, 0xb2, 0x42, 0x98, 0x4f, 0xc1, 0x9a, 0xe6, 0xa2, 0x21, 0xa2, 0x14, - 0xa7, 0xd6, 0x35, 0xe9, 0xdd, 0xa8, 0x4a, 0xe7, 0xf6, 0x9c, 0x57, 0xf3, 0x30, 0x58, 0x55, 0xc0, - 0x33, 0xb5, 0x36, 0x3f, 0x81, 0x35, 0x41, 0x32, 0xcc, 0x46, 0x22, 0x1c, 0x62, 0x92, 0x0c, 0x85, - 0xb5, 0x2c, 0x67, 0xd0, 0x73, 0xc9, 0x20, 0x72, 0xeb, 0x2b, 0x71, 0xf5, 0x45, 0x8c, 0xfb, 0xee, - 0x0b, 0xa9, 0xf0, 0xef, 0xe9, 0x29, 0xe8, 0x13, 0xe6, 0xfd, 0x30, 0x58, 0xd5, 0x80, 0x52, 0x9b, - 0x2f, 0xc1, 0xcd, 0x46, 0x51, 0x7f, 0xb9, 0x40, 0x59, 0x6e, 0x5d, 0xdf, 0x32, 0xb6, 0x97, 0xfc, - 0xcd, 0xaa, 0x74, 0xac, 0xf9, 0x4d, 0x26, 0x12, 0x18, 0xac, 0x6b, 0xec, 0x7d, 0x03, 0xed, 0x77, - 0xbe, 0xfe, 0xf9, 0xf6, 0x40, 0x5f, 0x1c, 0xdc, 0x04, 0xbd, 0xc5, 0x44, 0x04, 0x98, 0xe7, 0x8c, - 0x72, 0x0c, 0x7f, 0x18, 0xa0, 0x7b, 0xc8, 0x93, 0x0f, 0x34, 0xfd, 0x27, 0x32, 0x4f, 0x40, 0x07, - 0x4d, 0x97, 0x3a, 0x37, 0x33, 0xb3, 0x9e, 0x21, 0x61, 0x30, 0x2b, 0x35, 0x3d, 0xb0, 0x32, 0xe2, - 0xb8, 0xa0, 0x28, 0xc3, 0x32, 0x28, 0x6d, 0xff, 0x56, 0x55, 0x3a, 0x37, 0x94, 0xad, 0x61, 0x60, - 0x30, 0x11, 0xc9, 0x74, 0x92, 0x84, 0xe2, 0x42, 0xc7, 0x60, 0x36, 0x9d, 0x12, 0xff, 0x5f, 0x3a, - 0xa5, 0xa0, 0xe9, 0x58, 0xa9, 0x6d, 0xb0, 0x79, 0x59, 0x4b, 0x4d, 0xcf, 0xfe, 0xab, 0xd3, 0x73, - 0xdb, 0x38, 0x3b, 0xb7, 0x8d, 0xdf, 0xe7, 0xb6, 0x71, 0x72, 0x61, 0xb7, 0xce, 0x2e, 0xec, 0xd6, - 0xaf, 0x0b, 0xbb, 0xf5, 0xb1, 0x9f, 0x10, 0x31, 0x1c, 0x0d, 0xdc, 0x88, 0x65, 0x9e, 0xca, 0xf6, - 0x6e, 0x8a, 0x06, 0x5c, 0xd7, 0xde, 0xf8, 0x91, 0xf7, 0x65, 0xfa, 0xe0, 0xc5, 0x71, 0x8e, 0xf9, - 0x60, 0x59, 0x3e, 0xbc, 0xbd, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x16, 0x93, 0x9c, 0x9b, 0x4d, + // 627 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x54, 0x4d, 0x6f, 0xd3, 0x3e, + 0x18, 0x6f, 0xfe, 0xff, 0x31, 0x56, 0x4f, 0x1b, 0x5b, 0x28, 0x90, 0x95, 0x91, 0x4c, 0xbe, 0xb0, + 0x0d, 0x2d, 0x56, 0x99, 0x10, 0x68, 0x27, 0x56, 0x38, 0x80, 0x60, 0x02, 0x05, 0xb8, 0x70, 0x29, + 0x6e, 0x62, 0x52, 0x6b, 0x89, 0x1d, 0xc5, 0x6e, 0xc5, 0xae, 0x1c, 0x39, 0xf1, 0x49, 0xd0, 0x0e, + 0x7c, 0x88, 0x1d, 0x27, 0x4e, 0x9c, 0x22, 0xb4, 0x1d, 0x76, 0x26, 0x9f, 0x00, 0xc5, 0x76, 0xdf, + 0xe8, 0xc4, 0xa5, 0x7e, 0x9e, 0xdf, 0x8b, 0x5d, 0x3f, 0xfe, 0xb5, 0xe0, 0x6e, 0x44, 0x44, 0xca, + 0x05, 0xca, 0x72, 0xfe, 0x91, 0x26, 0x44, 0xa0, 0xc1, 0x2e, 0x4a, 0x45, 0x2c, 0x3a, 0x38, 0xcb, + 0x3a, 0x09, 0x65, 0x87, 0xc2, 0xcf, 0x72, 0x2e, 0xb9, 0x6d, 0x6b, 0xa1, 0x3f, 0x14, 0xfa, 0x83, + 0xdd, 0xe6, 0xd6, 0x65, 0x66, 0x1e, 0x91, 0x64, 0xc6, 0xde, 0x5c, 0xc5, 0x29, 0x65, 0x1c, 0xa9, + 0x4f, 0x03, 0x35, 0x62, 0x1e, 0x73, 0x55, 0xa2, 0xaa, 0x32, 0xe8, 0xad, 0x90, 0xab, 0x3d, 0x53, + 0x11, 0xa3, 0x41, 0xab, 0x5a, 0x0c, 0xb1, 0xa6, 0x89, 0x8e, 0x76, 0xe8, 0xc6, 0x50, 0x1e, 0xed, + 0x86, 0x28, 0xe4, 0x39, 0x41, 0x61, 0x42, 0x09, 0x93, 0x95, 0x51, 0x57, 0x5a, 0x00, 0xbf, 0xcd, + 0x01, 0xfb, 0x40, 0xc4, 0x2f, 0x29, 0x3b, 0xdc, 0xcf, 0xb2, 0x84, 0x86, 0x58, 0x52, 0xce, 0xec, + 0x7d, 0x30, 0x2f, 0x08, 0x8b, 0x48, 0xee, 0x58, 0x1b, 0xd6, 0x66, 0xbd, 0xbd, 0x55, 0x16, 0xde, + 0xd2, 0x11, 0x4e, 0x93, 0x3d, 0xa8, 0x71, 0xf8, 0xe3, 0xfb, 0x4e, 0xc3, 0x1c, 0xb5, 0x1f, 0x45, + 0x39, 0x11, 0xe2, 0x8d, 0xcc, 0x29, 0x8b, 0x03, 0x63, 0xb4, 0x5f, 0x81, 0x7a, 0x75, 0xcd, 0x4e, + 0x84, 0x25, 0x76, 0xfe, 0xdb, 0xb0, 0x36, 0x17, 0xef, 0x3b, 0xfe, 0xec, 0xa8, 0xfc, 0xa7, 0x58, + 0xe2, 0xb6, 0x73, 0x52, 0x78, 0xb5, 0xb2, 0xf0, 0x56, 0xf4, 0x19, 0x23, 0x23, 0x0c, 0x16, 0xaa, + 0xba, 0xd2, 0xd8, 0x2d, 0x50, 0x0f, 0x71, 0x92, 0xe8, 0x0d, 0xff, 0x57, 0x5f, 0xab, 0x31, 0xb6, + 0x8c, 0x28, 0x18, 0x2c, 0x54, 0xb5, 0xb2, 0x3c, 0x04, 0x8b, 0x82, 0xf7, 0xf3, 0x90, 0x74, 0x32, + 0x9e, 0x4b, 0x67, 0x4e, 0x99, 0x6e, 0x96, 0x85, 0x67, 0x9b, 0xbb, 0x8c, 0x49, 0x18, 0x00, 0xdd, + 0xbd, 0xe6, 0xb9, 0xb4, 0x1f, 0x83, 0x65, 0xc3, 0x85, 0x3d, 0xcc, 0x18, 0x49, 0x9c, 0x2b, 0xca, + 0xbb, 0x56, 0x16, 0xde, 0x8d, 0x29, 0xaf, 0xe1, 0x61, 0xb0, 0xa4, 0x81, 0x27, 0xba, 0xb7, 0x3f, + 0x80, 0x65, 0x49, 0x53, 0xc2, 0xfb, 0xb2, 0xd3, 0x23, 0x34, 0xee, 0x49, 0x67, 0x5e, 0xcd, 0xa0, + 0xe9, 0xd3, 0x6e, 0xe8, 0x57, 0x4f, 0xe2, 0x9b, 0x87, 0x18, 0xb4, 0xfc, 0x67, 0x4a, 0xd1, 0xbe, + 0x63, 0xa6, 0x60, 0x4e, 0x98, 0xf6, 0xc3, 0x60, 0xc9, 0x00, 0x5a, 0x6d, 0x3f, 0x07, 0xab, 0x43, + 0x45, 0xb5, 0x0a, 0x89, 0xd3, 0xcc, 0xb9, 0xba, 0x61, 0x6d, 0xce, 0xb5, 0xd7, 0xcb, 0xc2, 0x73, + 0xa6, 0x37, 0x19, 0x49, 0x60, 0xb0, 0x62, 0xb0, 0xb7, 0x43, 0x68, 0x6f, 0xeb, 0xf3, 0xc5, 0xf1, + 0xb6, 0x79, 0xb8, 0x2f, 0x17, 0xc7, 0xdb, 0x6b, 0x26, 0xbe, 0xb3, 0xc9, 0x80, 0xeb, 0xa0, 0x39, + 0x8b, 0x06, 0x44, 0x64, 0x9c, 0x09, 0x02, 0x7f, 0x5b, 0xa0, 0x71, 0x20, 0xe2, 0x77, 0x2c, 0xf9, + 0x2b, 0x50, 0x8f, 0xc0, 0x22, 0x1e, 0xb7, 0x26, 0x55, 0x13, 0x2f, 0x31, 0x41, 0xc2, 0x60, 0x52, + 0x6a, 0x23, 0xb0, 0xd0, 0x17, 0x24, 0x67, 0x38, 0x25, 0x2a, 0x46, 0xf5, 0xf6, 0xf5, 0xb2, 0xf0, + 0xae, 0x69, 0xdb, 0x90, 0x81, 0xc1, 0x48, 0xa4, 0xb2, 0x4b, 0x63, 0x46, 0x72, 0x13, 0x92, 0xc9, + 0xec, 0x2a, 0xfc, 0x5f, 0xd9, 0x55, 0x82, 0xbd, 0x7b, 0x7a, 0x1e, 0xaa, 0xa9, 0xe6, 0x71, 0x7b, + 0x3c, 0x8f, 0x99, 0xab, 0x41, 0x17, 0xac, 0x5f, 0x86, 0x0f, 0x67, 0xd2, 0x7e, 0x71, 0x72, 0xe6, + 0x5a, 0xa7, 0x67, 0xae, 0xf5, 0xeb, 0xcc, 0xb5, 0xbe, 0x9e, 0xbb, 0xb5, 0xd3, 0x73, 0xb7, 0xf6, + 0xf3, 0xdc, 0xad, 0xbd, 0x6f, 0xc5, 0x54, 0xf6, 0xfa, 0x5d, 0x3f, 0xe4, 0x29, 0xd2, 0x27, 0xec, + 0x24, 0xb8, 0x2b, 0x4c, 0x8d, 0x06, 0x0f, 0xd0, 0xa7, 0xf1, 0x3f, 0x88, 0x3c, 0xca, 0x88, 0xe8, + 0xce, 0xab, 0x9f, 0xed, 0xee, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x7d, 0xd2, 0xdf, 0xfc, 0x9e, 0x04, 0x00, 0x00, } diff --git a/x/profiles/types/msgs_chain_links.pb.go b/x/profiles/types/msgs_chain_links.pb.go index 43a983613c..4898428a37 100644 --- a/x/profiles/types/msgs_chain_links.pb.go +++ b/x/profiles/types/msgs_chain_links.pb.go @@ -8,6 +8,7 @@ import ( _ "github.com/cosmos/cosmos-proto" types "github.com/cosmos/cosmos-sdk/codec/types" _ "github.com/cosmos/cosmos-sdk/types/msgservice" + _ "github.com/cosmos/cosmos-sdk/types/tx/amino" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" io "io" @@ -358,45 +359,47 @@ func init() { } var fileDescriptor_52cd1f5b825f2f4e = []byte{ - // 595 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x53, 0x3f, 0x6f, 0xd3, 0x4e, - 0x18, 0x8e, 0x7f, 0xfd, 0xb5, 0x52, 0xae, 0xed, 0x50, 0x37, 0x81, 0x34, 0x25, 0x76, 0x75, 0x42, - 0x28, 0x01, 0xc5, 0xa6, 0x04, 0x96, 0x20, 0x21, 0xc5, 0x2d, 0x13, 0x0d, 0x42, 0xae, 0x58, 0x58, - 0xa2, 0x8b, 0x73, 0xbe, 0x5a, 0xb5, 0xef, 0x22, 0x9f, 0x13, 0x9a, 0x95, 0x4f, 0x80, 0x04, 0x1f, - 0x84, 0xa1, 0x1f, 0x81, 0xa1, 0x62, 0xaa, 0x98, 0x98, 0x2c, 0x94, 0x0c, 0xec, 0xf9, 0x04, 0xc8, - 0x77, 0x76, 0xd2, 0x80, 0x41, 0x62, 0xb2, 0xdf, 0x3f, 0xcf, 0xf3, 0x3e, 0xcf, 0xbd, 0x77, 0xa0, - 0x31, 0xc0, 0x3c, 0x60, 0xdc, 0x1c, 0x86, 0xcc, 0xf5, 0x7c, 0xcc, 0xcd, 0x71, 0xcb, 0x0c, 0x38, - 0xe1, 0x3d, 0xe7, 0x0c, 0x79, 0xb4, 0xe7, 0x7b, 0xf4, 0x9c, 0x1b, 0xc3, 0x90, 0x45, 0x4c, 0x55, - 0x65, 0xab, 0x91, 0xb5, 0x1a, 0xe3, 0x56, 0xb5, 0x44, 0x18, 0x61, 0xa2, 0x6c, 0x26, 0x7f, 0xb2, - 0xb3, 0xba, 0x47, 0x18, 0x23, 0x3e, 0x36, 0x45, 0xd4, 0x1f, 0xb9, 0x26, 0xa2, 0x93, 0xac, 0xe4, - 0xb0, 0x84, 0xa4, 0x27, 0x31, 0x32, 0x48, 0x4b, 0xb7, 0x65, 0x94, 0x8c, 0x37, 0xc7, 0x87, 0xc9, - 0x27, 0x2d, 0x3c, 0xc8, 0xd3, 0xc8, 0x06, 0xd8, 0xcf, 0x51, 0x09, 0x3f, 0xac, 0x81, 0xdd, 0x2e, - 0x27, 0x27, 0x1e, 0x3d, 0x3f, 0x4a, 0x8a, 0x1d, 0xc7, 0x61, 0x23, 0x1a, 0xa9, 0x63, 0xb0, 0x2d, - 0x9b, 0xd1, 0x60, 0x10, 0x62, 0xce, 0x2b, 0xca, 0x81, 0x52, 0xdf, 0x7c, 0x54, 0x32, 0xa4, 0x56, - 0x23, 0xd3, 0x6a, 0x74, 0xe8, 0xc4, 0x7a, 0x3a, 0x8f, 0xf5, 0xf2, 0x04, 0x05, 0x7e, 0x1b, 0x72, - 0x36, 0x0a, 0x1d, 0x9c, 0xa1, 0xe0, 0x97, 0xcb, 0xa6, 0xf6, 0xfb, 0x39, 0x18, 0x1d, 0x59, 0x3e, - 0x46, 0x11, 0xb2, 0xb7, 0xc4, 0x9c, 0x34, 0xa3, 0x9e, 0x80, 0xf5, 0x61, 0xc8, 0x98, 0x5b, 0xf9, - 0x4f, 0xcc, 0xdb, 0x33, 0x72, 0xd0, 0xaf, 0x92, 0x06, 0x6b, 0xff, 0x2a, 0xd6, 0x0b, 0xf3, 0x58, - 0xdf, 0x5d, 0x19, 0x2c, 0xc0, 0xd0, 0x96, 0x24, 0xaa, 0x0b, 0x24, 0x7b, 0xcf, 0x61, 0xd4, 0xf5, - 0x48, 0x65, 0x4d, 0x90, 0xea, 0x79, 0xa4, 0xc2, 0xfd, 0x91, 0x68, 0xb3, 0x60, 0x4a, 0x5d, 0x5d, - 0xa1, 0xbe, 0xc9, 0x04, 0xed, 0x4d, 0x67, 0x09, 0x50, 0x3b, 0x60, 0x83, 0x7b, 0x84, 0xe2, 0xb0, - 0xf2, 0xff, 0x81, 0x52, 0x2f, 0x5a, 0x8d, 0x79, 0xac, 0x6f, 0xa7, 0x60, 0x91, 0x87, 0x5f, 0x2f, - 0x9b, 0xa5, 0x74, 0x7d, 0xa9, 0xd5, 0xd3, 0x28, 0xf4, 0x28, 0xb1, 0x53, 0x60, 0x7b, 0xf3, 0xdd, - 0x8f, 0x4f, 0xf7, 0xd3, 0x00, 0xd6, 0xc0, 0x7e, 0xce, 0x52, 0x6c, 0xcc, 0x87, 0x8c, 0x72, 0x0c, - 0x3f, 0x2b, 0xa0, 0xdc, 0xe5, 0xe4, 0x35, 0xf5, 0x7f, 0x5d, 0xdb, 0x33, 0xb0, 0xce, 0xde, 0x26, - 0x3a, 0x14, 0xa1, 0xa3, 0x3e, 0x8f, 0xf5, 0x2d, 0xa9, 0x43, 0xa4, 0xff, 0x2c, 0x43, 0xc2, 0xd4, - 0xc7, 0x00, 0x48, 0x9b, 0x14, 0x05, 0x58, 0xec, 0xa0, 0x68, 0x95, 0xe7, 0xb1, 0xbe, 0x23, 0x49, - 0x96, 0x35, 0x68, 0x17, 0x45, 0xf0, 0x12, 0x05, 0x58, 0x6d, 0x80, 0x8d, 0x08, 0x85, 0x04, 0x47, - 0xe2, 0x80, 0x8b, 0xd6, 0xce, 0xd2, 0xbe, 0xcc, 0x43, 0x3b, 0x6d, 0x68, 0x83, 0xc4, 0xa6, 0x1c, - 0x06, 0x75, 0x50, 0xcb, 0x75, 0xb1, 0xf0, 0xf9, 0x51, 0x01, 0x77, 0xba, 0x9c, 0x9c, 0xe2, 0xe8, - 0x18, 0xbb, 0x68, 0xe4, 0x47, 0xcf, 0x2f, 0x22, 0x1c, 0x52, 0xe4, 0x67, 0xb7, 0xa5, 0xb6, 0x22, - 0x57, 0x78, 0xbe, 0xa9, 0xeb, 0xd6, 0x42, 0x97, 0x70, 0x92, 0x89, 0x50, 0x1f, 0x2e, 0xd6, 0x25, - 0xf5, 0x56, 0xfe, 0x6d, 0x3b, 0xf7, 0xc0, 0xdd, 0xbf, 0xa9, 0xca, 0xe4, 0x5b, 0x2f, 0xae, 0xa6, - 0x9a, 0x72, 0x3d, 0xd5, 0x94, 0xef, 0x53, 0x4d, 0x79, 0x3f, 0xd3, 0x0a, 0xd7, 0x33, 0xad, 0xf0, - 0x6d, 0xa6, 0x15, 0xde, 0x1c, 0x12, 0x2f, 0x3a, 0x1b, 0xf5, 0x0d, 0x87, 0x05, 0xa6, 0xbc, 0x8b, - 0x4d, 0x1f, 0xf5, 0x79, 0xfa, 0x6f, 0x8e, 0x9f, 0x98, 0x17, 0xcb, 0xe7, 0x1b, 0x4d, 0x86, 0x98, - 0xf7, 0x37, 0xc4, 0x8b, 0x6b, 0xfd, 0x0c, 0x00, 0x00, 0xff, 0xff, 0x29, 0x90, 0xc6, 0xab, 0x82, - 0x04, 0x00, 0x00, + // 630 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x54, 0x3f, 0x4f, 0xdb, 0x4e, + 0x18, 0x8e, 0x7f, 0xfc, 0x40, 0xca, 0x01, 0x03, 0x06, 0xda, 0x10, 0xc0, 0x46, 0xd7, 0xaa, 0xe2, + 0x8f, 0xb0, 0x4b, 0xd3, 0x2e, 0x54, 0xaa, 0x14, 0x43, 0xa7, 0x42, 0x55, 0x19, 0x75, 0xe9, 0x12, + 0x5d, 0x9c, 0xf3, 0x61, 0x61, 0xdf, 0x45, 0x3e, 0x27, 0x25, 0x6b, 0xc7, 0x4e, 0xfd, 0x28, 0xa8, + 0x62, 0xec, 0x07, 0x40, 0x9d, 0x50, 0xa7, 0x4e, 0x56, 0x05, 0xaa, 0xd8, 0xf3, 0x09, 0x2a, 0xdf, + 0x9d, 0x31, 0x01, 0xd3, 0x2e, 0x70, 0xef, 0xbf, 0xe7, 0x7d, 0xde, 0xe7, 0x49, 0x02, 0xd6, 0x3a, + 0x98, 0x47, 0x8c, 0xdb, 0xdd, 0x98, 0xf9, 0x41, 0x88, 0xb9, 0xdd, 0x6f, 0xd8, 0x11, 0x27, 0xbc, + 0xe5, 0x1d, 0xa2, 0x80, 0xb6, 0xc2, 0x80, 0x1e, 0x71, 0xab, 0x1b, 0xb3, 0x84, 0xe9, 0xba, 0x6c, + 0xb5, 0xf2, 0x56, 0xab, 0xdf, 0xa8, 0xcf, 0xa0, 0x28, 0xa0, 0xcc, 0x16, 0x7f, 0x65, 0x5b, 0x7d, + 0x8e, 0x30, 0xc2, 0xc4, 0xd3, 0xce, 0x5e, 0x2a, 0xbb, 0x40, 0x18, 0x23, 0x21, 0xb6, 0x45, 0xd4, + 0xee, 0xf9, 0x36, 0xa2, 0x83, 0xbc, 0xe4, 0xb1, 0x0c, 0xb7, 0x25, 0x67, 0x64, 0xa0, 0x4a, 0x0f, + 0x65, 0x94, 0x31, 0xb2, 0xfb, 0x5b, 0xd9, 0x3f, 0x55, 0xd8, 0x28, 0xa3, 0xcd, 0x3a, 0x38, 0x2c, + 0x21, 0x0e, 0xbf, 0x8e, 0x81, 0xd9, 0x7d, 0x4e, 0xf6, 0x02, 0x7a, 0xb4, 0x93, 0x15, 0x9b, 0x9e, + 0xc7, 0x7a, 0x34, 0xd1, 0xfb, 0x60, 0x5a, 0x36, 0xa3, 0x4e, 0x27, 0xc6, 0x9c, 0xd7, 0xb4, 0x15, + 0x6d, 0x75, 0xf2, 0xd9, 0x9c, 0x25, 0xb9, 0x5a, 0x39, 0x57, 0xab, 0x49, 0x07, 0xce, 0xcb, 0x61, + 0x6a, 0xce, 0x0f, 0x50, 0x14, 0x6e, 0x43, 0xce, 0x7a, 0xb1, 0x87, 0xf3, 0x29, 0xf8, 0xfd, 0x74, + 0xd3, 0xb8, 0x2b, 0x8d, 0xd5, 0x94, 0xe5, 0x5d, 0x94, 0x20, 0x77, 0x4a, 0xec, 0x51, 0x19, 0x7d, + 0x0f, 0x8c, 0x77, 0x63, 0xc6, 0xfc, 0xda, 0x7f, 0x62, 0xdf, 0x82, 0x55, 0x32, 0xfd, 0x2e, 0x6b, + 0x70, 0x16, 0xcf, 0x52, 0xb3, 0x32, 0x4c, 0xcd, 0xd9, 0x91, 0xc5, 0x62, 0x18, 0xba, 0x12, 0x44, + 0xf7, 0x81, 0x44, 0x6f, 0x79, 0x8c, 0xfa, 0x01, 0xa9, 0x8d, 0x09, 0x50, 0xb3, 0x0c, 0x54, 0x5c, + 0xbf, 0x23, 0xda, 0x1c, 0xa8, 0xa0, 0xeb, 0x23, 0xd0, 0x37, 0x91, 0xa0, 0x3b, 0xe9, 0x15, 0x03, + 0x7a, 0x13, 0x4c, 0xf0, 0x80, 0x50, 0x1c, 0xd7, 0xfe, 0x5f, 0xd1, 0x56, 0xab, 0xce, 0xda, 0x30, + 0x35, 0xa7, 0xd5, 0xb0, 0xc8, 0xc3, 0x1f, 0xa7, 0x9b, 0x73, 0xca, 0x3e, 0x75, 0xea, 0x41, 0x12, + 0x07, 0x94, 0xb8, 0x6a, 0x70, 0x7b, 0xfd, 0xd3, 0xd5, 0xc9, 0xba, 0x0a, 0x3e, 0x5f, 0x9d, 0xac, + 0xd7, 0x95, 0x8b, 0x25, 0xe6, 0xc0, 0x65, 0xb0, 0x58, 0x92, 0x76, 0x31, 0xef, 0x32, 0xca, 0x31, + 0xfc, 0xad, 0x81, 0xf9, 0x7d, 0x4e, 0xde, 0xd3, 0xf0, 0xb6, 0xab, 0xaf, 0xc0, 0x38, 0xfb, 0x98, + 0xd1, 0xd4, 0x04, 0xcd, 0xd5, 0x61, 0x6a, 0x4e, 0x49, 0x9a, 0x22, 0x7d, 0x3f, 0x4b, 0x39, 0xa6, + 0x3f, 0x07, 0x40, 0xaa, 0x40, 0x51, 0x84, 0x85, 0x45, 0x55, 0x67, 0x7e, 0x98, 0x9a, 0x33, 0x12, + 0xa4, 0xa8, 0x41, 0xb7, 0x2a, 0x82, 0xb7, 0x28, 0xc2, 0xfa, 0x1a, 0x98, 0x48, 0x50, 0x4c, 0x70, + 0x22, 0xf4, 0xaf, 0x3a, 0x33, 0x85, 0x3a, 0x32, 0x0f, 0x5d, 0xd5, 0xb0, 0xbd, 0x91, 0xa9, 0x20, + 0x97, 0x65, 0x22, 0x2c, 0x15, 0x22, 0xdc, 0xbd, 0x06, 0x9a, 0x60, 0xb9, 0xb4, 0x70, 0x2d, 0xc4, + 0x37, 0x0d, 0x2c, 0xed, 0x73, 0x72, 0x80, 0x93, 0x5d, 0xec, 0xa3, 0x5e, 0x98, 0xbc, 0x3e, 0x4e, + 0x70, 0x4c, 0x51, 0x98, 0x7f, 0xda, 0x96, 0x47, 0xee, 0x11, 0xa2, 0xdc, 0x24, 0xfe, 0xe0, 0x9a, + 0xb8, 0x38, 0x35, 0x67, 0xa9, 0x3f, 0xbd, 0xb6, 0x5b, 0x1e, 0x54, 0xfb, 0xa7, 0xbb, 0x8d, 0x5b, + 0xee, 0x3e, 0x2a, 0x0e, 0xbb, 0x97, 0x1d, 0x7c, 0x02, 0x1e, 0xff, 0xad, 0x9e, 0x9f, 0xe9, 0xbc, + 0x39, 0xbb, 0x30, 0xb4, 0xf3, 0x0b, 0x43, 0xfb, 0x75, 0x61, 0x68, 0x5f, 0x2e, 0x8d, 0xca, 0xf9, + 0xa5, 0x51, 0xf9, 0x79, 0x69, 0x54, 0x3e, 0x6c, 0x91, 0x20, 0x39, 0xec, 0xb5, 0x2d, 0x8f, 0x45, + 0xb6, 0xdc, 0xb8, 0x19, 0xa2, 0x36, 0x57, 0x6f, 0xbb, 0xff, 0xc2, 0x3e, 0x2e, 0x7e, 0x26, 0x92, + 0x41, 0x17, 0xf3, 0xf6, 0x84, 0xf8, 0x66, 0x37, 0xfe, 0x04, 0x00, 0x00, 0xff, 0xff, 0x42, 0x1b, + 0x9a, 0x0e, 0xfd, 0x04, 0x00, 0x00, } func (m *MsgLinkChainAccount) Marshal() (dAtA []byte, err error) { diff --git a/x/profiles/types/msgs_dtag_requests.pb.go b/x/profiles/types/msgs_dtag_requests.pb.go index b873434c2e..d9398b23dc 100644 --- a/x/profiles/types/msgs_dtag_requests.pb.go +++ b/x/profiles/types/msgs_dtag_requests.pb.go @@ -7,6 +7,7 @@ import ( fmt "fmt" _ "github.com/cosmos/cosmos-proto" _ "github.com/cosmos/cosmos-sdk/types/msgservice" + _ "github.com/cosmos/cosmos-sdk/types/tx/amino" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" io "io" @@ -429,36 +430,38 @@ func init() { } var fileDescriptor_00569a18db7c139d = []byte{ - // 456 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x94, 0x31, 0x6f, 0xd3, 0x40, - 0x14, 0xc7, 0x73, 0x45, 0x6a, 0xcb, 0xa1, 0x0a, 0x61, 0x2a, 0x28, 0x15, 0xba, 0x54, 0x16, 0x42, - 0x94, 0xaa, 0x39, 0x55, 0x11, 0x03, 0xd9, 0x52, 0x2a, 0x31, 0xa0, 0x32, 0x98, 0x4e, 0x2c, 0x91, - 0x63, 0xbf, 0x1c, 0x96, 0x6c, 0x9f, 0xb9, 0x77, 0x71, 0xe8, 0x08, 0x9f, 0x80, 0x8f, 0xc2, 0x80, - 0x84, 0xf8, 0x06, 0x8c, 0x15, 0x13, 0x53, 0x84, 0x9c, 0x81, 0xbd, 0xe2, 0x03, 0x20, 0xfb, 0x6c, - 0x87, 0x52, 0x87, 0xa5, 0x99, 0x72, 0x2f, 0xef, 0x77, 0xe7, 0xf7, 0xfb, 0xcb, 0x3e, 0xba, 0xe7, - 0x03, 0x46, 0x12, 0x79, 0xa2, 0xe4, 0x28, 0x08, 0x01, 0x79, 0xda, 0xe5, 0x11, 0x0a, 0x1c, 0xf8, - 0xda, 0x15, 0x03, 0x05, 0x6f, 0xc7, 0x80, 0x1a, 0x3b, 0x89, 0x92, 0x5a, 0x5a, 0x96, 0x81, 0x3b, - 0x15, 0xdc, 0x49, 0xbb, 0xdb, 0x9b, 0x42, 0x0a, 0x59, 0xb4, 0x79, 0xbe, 0x32, 0xe4, 0xf6, 0x5d, - 0x4f, 0x16, 0xc7, 0x46, 0x28, 0x78, 0x7a, 0x90, 0xff, 0x94, 0x8d, 0x7b, 0xa6, 0x31, 0x30, 0x3b, - 0x4c, 0x61, 0x5a, 0xf6, 0x7b, 0x42, 0xef, 0x1c, 0xa3, 0x70, 0xcc, 0x33, 0x8f, 0x4e, 0x5c, 0x71, - 0xa2, 0xdc, 0x18, 0x47, 0xa0, 0x2c, 0x4e, 0xd7, 0x15, 0x78, 0x10, 0xa4, 0xa0, 0xb6, 0xc8, 0x0e, - 0x79, 0x74, 0xfd, 0xf0, 0xf6, 0xf9, 0xb4, 0x7d, 0xf3, 0xd4, 0x8d, 0xc2, 0x9e, 0x5d, 0x75, 0x6c, - 0xa7, 0x86, 0xac, 0x5d, 0xba, 0x8a, 0x10, 0xfb, 0xa0, 0xb6, 0x56, 0x0a, 0xfc, 0xd6, 0xf9, 0xb4, - 0xbd, 0x61, 0x70, 0xf3, 0xbf, 0xed, 0x94, 0x40, 0xef, 0xc6, 0x87, 0x5f, 0x9f, 0x1e, 0x97, 0x85, - 0xbd, 0x43, 0x59, 0xf3, 0x08, 0x0e, 0x60, 0x22, 0x63, 0x04, 0xfb, 0x0b, 0xa1, 0xf7, 0x8f, 0x51, - 0x3c, 0x73, 0x63, 0x0f, 0xc2, 0x8b, 0x44, 0xb1, 0xc9, 0x7a, 0x7e, 0x69, 0xd6, 0xbd, 0x86, 0x59, - 0xbf, 0x7f, 0xde, 0xdf, 0x2c, 0xed, 0xfb, 0xbe, 0xaf, 0x00, 0xf1, 0x95, 0x56, 0x41, 0x2c, 0xfe, - 0x72, 0xe8, 0xff, 0xe3, 0xb0, 0x7b, 0xc9, 0x61, 0xe1, 0x21, 0x8d, 0x6e, 0x0f, 0xe9, 0x83, 0xff, - 0x0d, 0x5e, 0x1b, 0xfe, 0x36, 0x86, 0x7d, 0xcf, 0x83, 0x44, 0x37, 0x19, 0x3e, 0xa5, 0xeb, 0x31, - 0x4c, 0x8a, 0x37, 0xa4, 0x34, 0x64, 0xd9, 0xb4, 0xbd, 0xf6, 0x12, 0x26, 0x39, 0x3d, 0x97, 0xad, - 0x20, 0xdb, 0x59, 0x8b, 0x61, 0x72, 0xa4, 0x5d, 0xb1, 0x04, 0xa7, 0x0b, 0xf9, 0x5e, 0xbb, 0x42, - 0xbe, 0xbd, 0x8d, 0x3c, 0x9c, 0xba, 0x2c, 0xe3, 0x59, 0x68, 0x5d, 0xc7, 0xf3, 0xd5, 0xc4, 0xe3, - 0xc0, 0x68, 0x8c, 0xd0, 0x14, 0xcf, 0xdc, 0x91, 0x2c, 0xc3, 0x71, 0x65, 0xe9, 0x8e, 0x0b, 0x47, - 0xaf, 0x1c, 0x0f, 0x5f, 0x7c, 0xcb, 0x18, 0x39, 0xcb, 0x18, 0xf9, 0x99, 0x31, 0xf2, 0x71, 0xc6, - 0x5a, 0x67, 0x33, 0xd6, 0xfa, 0x31, 0x63, 0xad, 0xd7, 0x07, 0x22, 0xd0, 0x6f, 0xc6, 0xc3, 0x8e, - 0x27, 0x23, 0x6e, 0x6e, 0x83, 0xfd, 0xd0, 0x1d, 0x62, 0xb9, 0xe6, 0xe9, 0x13, 0xfe, 0x6e, 0x7e, - 0x97, 0xe8, 0xd3, 0x04, 0x70, 0xb8, 0x5a, 0x7c, 0xde, 0xdd, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, - 0xc2, 0xf3, 0x59, 0x64, 0x6b, 0x04, 0x00, 0x00, + // 494 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x94, 0xb1, 0x6e, 0xd3, 0x40, + 0x18, 0xc7, 0xe3, 0x20, 0xb5, 0xc5, 0x12, 0x42, 0x35, 0x15, 0x94, 0x0a, 0x9c, 0xca, 0x20, 0x44, + 0x5b, 0x25, 0xa7, 0x2a, 0xea, 0x40, 0xb6, 0x94, 0x4a, 0x0c, 0xa8, 0x0c, 0xa6, 0x13, 0x4b, 0xe4, + 0xd8, 0x5f, 0x0e, 0x4b, 0xf1, 0x9d, 0xb9, 0xef, 0xe2, 0xd0, 0x95, 0x91, 0x89, 0x07, 0x60, 0xe3, + 0x05, 0x3a, 0xf0, 0x10, 0x8c, 0x15, 0x13, 0x53, 0x80, 0x64, 0xe8, 0xde, 0x27, 0x40, 0xb9, 0x3b, + 0x27, 0x34, 0xb5, 0x59, 0x68, 0x97, 0xe4, 0xfb, 0xee, 0xff, 0x3f, 0xdf, 0xfd, 0x7f, 0x77, 0x3a, + 0x7b, 0x27, 0x02, 0x4c, 0x38, 0x92, 0x54, 0xf0, 0x5e, 0xdc, 0x07, 0x24, 0x59, 0x93, 0x24, 0x48, + 0xb1, 0x13, 0xc9, 0x80, 0x76, 0x04, 0xbc, 0x1b, 0x00, 0x4a, 0x6c, 0xa4, 0x82, 0x4b, 0xee, 0x38, + 0xda, 0xdc, 0xc8, 0xcd, 0x8d, 0xac, 0xb9, 0xb1, 0x1a, 0x24, 0x31, 0xe3, 0x44, 0xfd, 0x6a, 0xdb, + 0xc6, 0x1a, 0xe5, 0x94, 0xab, 0x92, 0x4c, 0x2b, 0x33, 0x7a, 0x2f, 0xe4, 0x6a, 0xa5, 0x04, 0x29, + 0xc9, 0x76, 0xa7, 0x7f, 0x46, 0xb8, 0xaf, 0x85, 0x8e, 0x9e, 0xa1, 0x1b, 0x2d, 0x79, 0x5f, 0x2c, + 0xfb, 0xee, 0x21, 0x52, 0x5f, 0x6f, 0xe3, 0xe0, 0x28, 0xa0, 0x47, 0x22, 0x60, 0xd8, 0x03, 0xe1, + 0x10, 0x7b, 0x45, 0x40, 0x08, 0x71, 0x06, 0x62, 0xdd, 0xda, 0xb4, 0x9e, 0xde, 0xdc, 0xbf, 0x73, + 0x3e, 0xaa, 0xdd, 0x3e, 0x0e, 0x92, 0x7e, 0xcb, 0xcb, 0x15, 0xcf, 0x9f, 0x99, 0x9c, 0x2d, 0x7b, + 0x09, 0x81, 0x45, 0x20, 0xd6, 0xab, 0xca, 0xbe, 0x7a, 0x3e, 0xaa, 0xdd, 0xd2, 0x76, 0x3d, 0xee, + 0xf9, 0xc6, 0xd0, 0xaa, 0x7f, 0x38, 0x3b, 0xd9, 0x36, 0xcd, 0xc7, 0xb3, 0x93, 0xed, 0x87, 0x06, + 0x52, 0xf1, 0x56, 0xbc, 0x4d, 0xdb, 0x2d, 0x56, 0x7c, 0xc0, 0x94, 0x33, 0x04, 0xef, 0xa7, 0x65, + 0x3f, 0x38, 0x44, 0xfa, 0x3c, 0x60, 0x21, 0xf4, 0x2f, 0x3a, 0xd4, 0x24, 0xe7, 0xc5, 0xa5, 0x34, + 0x3b, 0x05, 0x69, 0xbe, 0x7f, 0xad, 0xaf, 0x19, 0x3e, 0xed, 0x28, 0x12, 0x80, 0xf8, 0x5a, 0x8a, + 0x98, 0xd1, 0xbf, 0x52, 0xb6, 0x17, 0x52, 0x6e, 0x5d, 0x4a, 0x59, 0xfa, 0x91, 0x3c, 0x7d, 0x73, + 0x21, 0xfd, 0xa3, 0x79, 0xfa, 0xd2, 0x00, 0xde, 0x13, 0xfb, 0xf1, 0xbf, 0xf4, 0x19, 0x89, 0xcf, + 0x55, 0x45, 0xa2, 0x1d, 0x86, 0x90, 0xca, 0x22, 0x12, 0xcf, 0xec, 0x15, 0x06, 0x43, 0x75, 0xfd, + 0x0c, 0x09, 0x77, 0x3c, 0xaa, 0x2d, 0xbf, 0x82, 0xe1, 0xd4, 0x3d, 0x87, 0x92, 0x9b, 0x3c, 0x7f, + 0x99, 0xc1, 0xf0, 0x40, 0x06, 0xf4, 0x0a, 0xb2, 0x5f, 0x38, 0x87, 0x1b, 0xff, 0x71, 0x0e, 0xad, + 0xbd, 0x29, 0xc4, 0x59, 0xbb, 0x80, 0xb1, 0x34, 0xbd, 0xc1, 0x58, 0xaa, 0xcf, 0x30, 0xfe, 0xd6, + 0x17, 0xca, 0x87, 0xde, 0x00, 0xa1, 0x08, 0xe3, 0x9c, 0x85, 0x75, 0x15, 0x2c, 0xaa, 0xd7, 0xc6, + 0xa2, 0x34, 0x82, 0x61, 0x51, 0xaa, 0xe7, 0x2c, 0xf6, 0x5f, 0x7e, 0x1b, 0xbb, 0xd6, 0xe9, 0xd8, + 0xb5, 0x7e, 0x8d, 0x5d, 0xeb, 0xd3, 0xc4, 0xad, 0x9c, 0x4e, 0xdc, 0xca, 0x8f, 0x89, 0x5b, 0x79, + 0xb3, 0x4b, 0x63, 0xf9, 0x76, 0xd0, 0x6d, 0x84, 0x3c, 0x21, 0x7a, 0xc5, 0x7a, 0x3f, 0xe8, 0xa2, + 0xa9, 0x49, 0xb6, 0x47, 0xde, 0xcf, 0x1f, 0x3e, 0x79, 0x9c, 0x02, 0x76, 0x97, 0xd4, 0xc3, 0xd3, + 0xfc, 0x13, 0x00, 0x00, 0xff, 0xff, 0xd8, 0x18, 0x6c, 0xcc, 0x18, 0x05, 0x00, 0x00, } func (m *MsgRequestDTagTransfer) Marshal() (dAtA []byte, err error) { diff --git a/x/profiles/types/msgs_params.pb.go b/x/profiles/types/msgs_params.pb.go index 512ebb266c..1610c36a94 100644 --- a/x/profiles/types/msgs_params.pb.go +++ b/x/profiles/types/msgs_params.pb.go @@ -7,6 +7,7 @@ import ( fmt "fmt" _ "github.com/cosmos/cosmos-proto" _ "github.com/cosmos/cosmos-sdk/types/msgservice" + _ "github.com/cosmos/cosmos-sdk/types/tx/amino" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" io "io" @@ -135,26 +136,27 @@ func init() { } var fileDescriptor_218946f21050b13e = []byte{ - // 299 bytes of a gzipped FileDescriptorProto + // 320 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x49, 0x49, 0x2d, 0xce, 0xcd, 0x2f, 0xd6, 0x2f, 0x28, 0xca, 0x4f, 0xcb, 0xcc, 0x49, 0x2d, 0xd6, 0x2f, 0x33, 0xd6, 0xcf, 0x2d, 0x4e, 0x2f, 0x8e, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, - 0x17, 0x12, 0x82, 0xa8, 0xd2, 0x83, 0xa9, 0xd2, 0x2b, 0x33, 0x96, 0x12, 0x49, 0xcf, 0x4f, 0xcf, - 0x07, 0x4b, 0xeb, 0x83, 0x58, 0x10, 0x95, 0x52, 0x92, 0xc9, 0xf9, 0x20, 0x95, 0xf1, 0x10, 0x09, - 0x08, 0x07, 0x2a, 0x25, 0x0e, 0xe1, 0x81, 0x8c, 0xd7, 0x2f, 0x33, 0x04, 0x51, 0x50, 0x09, 0x35, - 0x6c, 0x6e, 0xc8, 0x4f, 0x49, 0xcd, 0x41, 0x75, 0x85, 0xd2, 0x64, 0x46, 0x2e, 0x7e, 0xdf, 0xe2, - 0xf4, 0xd0, 0x82, 0x94, 0xc4, 0x92, 0xd4, 0x00, 0xb0, 0x8c, 0x90, 0x19, 0x17, 0x67, 0x62, 0x69, - 0x49, 0x46, 0x7e, 0x51, 0x66, 0x49, 0xa5, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0xa7, 0x93, 0xc4, 0xa5, - 0x2d, 0xba, 0x22, 0x50, 0x9b, 0x1d, 0x53, 0x52, 0x8a, 0x52, 0x8b, 0x8b, 0x83, 0x4b, 0x8a, 0x32, - 0xf3, 0xd2, 0x83, 0x10, 0x4a, 0x85, 0x2c, 0xb8, 0xd8, 0x20, 0x66, 0x4b, 0x30, 0x29, 0x30, 0x6a, - 0x70, 0x1b, 0x49, 0xe9, 0x61, 0x7a, 0x51, 0x0f, 0x62, 0x87, 0x13, 0xcb, 0x89, 0x7b, 0xf2, 0x0c, - 0x41, 0x50, 0xf5, 0x56, 0x7c, 0x4d, 0xcf, 0x37, 0x68, 0x21, 0x4c, 0x52, 0x92, 0xe4, 0x12, 0x47, - 0x73, 0x54, 0x50, 0x6a, 0x71, 0x41, 0x7e, 0x5e, 0x71, 0xaa, 0x93, 0xf7, 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, 0xa6, 0x67, 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, - 0xe7, 0xea, 0x43, 0x2c, 0xd6, 0xcd, 0x49, 0x4c, 0x2a, 0x86, 0xb2, 0xf5, 0xcb, 0x4c, 0xf5, 0x2b, - 0x10, 0xc1, 0x51, 0x52, 0x59, 0x90, 0x5a, 0x9c, 0xc4, 0x06, 0x0e, 0x04, 0x63, 0x40, 0x00, 0x00, - 0x00, 0xff, 0xff, 0xde, 0xcb, 0x20, 0x55, 0xb2, 0x01, 0x00, 0x00, + 0x17, 0x12, 0x82, 0xa8, 0xd2, 0x83, 0xa9, 0xd2, 0x2b, 0x33, 0x96, 0x12, 0x4c, 0xcc, 0xcd, 0xcc, + 0xcb, 0xd7, 0x07, 0x93, 0x10, 0x65, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0xa6, 0x3e, 0x88, + 0x05, 0x15, 0x95, 0x4c, 0xce, 0x07, 0x69, 0x8e, 0x87, 0x48, 0x40, 0x38, 0x50, 0x29, 0x71, 0x08, + 0x0f, 0x64, 0xa3, 0x7e, 0x99, 0x21, 0x88, 0x82, 0x4a, 0xa8, 0x61, 0x73, 0x56, 0x7e, 0x4a, 0x6a, + 0x0e, 0xaa, 0xc3, 0x94, 0x76, 0x32, 0x72, 0xf1, 0xfb, 0x16, 0xa7, 0x87, 0x16, 0xa4, 0x24, 0x96, + 0xa4, 0x06, 0x80, 0x65, 0x84, 0xcc, 0xb8, 0x38, 0x13, 0x4b, 0x4b, 0x32, 0xf2, 0x8b, 0x32, 0x4b, + 0x2a, 0x25, 0x18, 0x15, 0x18, 0x35, 0x38, 0x9d, 0x24, 0x2e, 0x6d, 0xd1, 0x15, 0x81, 0xda, 0xec, + 0x98, 0x92, 0x52, 0x94, 0x5a, 0x5c, 0x1c, 0x5c, 0x52, 0x94, 0x99, 0x97, 0x1e, 0x84, 0x50, 0x2a, + 0x64, 0xc1, 0xc5, 0x06, 0x31, 0x5b, 0x82, 0x49, 0x81, 0x51, 0x83, 0xdb, 0x48, 0x4a, 0x0f, 0xd3, + 0xd7, 0x7a, 0x10, 0x3b, 0x9c, 0x58, 0x4e, 0xdc, 0x93, 0x67, 0x08, 0x82, 0xaa, 0xb7, 0x32, 0x69, + 0x7a, 0xbe, 0x41, 0x0b, 0x61, 0x52, 0xd7, 0xf3, 0x0d, 0x5a, 0x8a, 0x50, 0x0f, 0x54, 0x20, 0xbc, + 0x80, 0xe6, 0x4e, 0x25, 0x49, 0x2e, 0x71, 0x34, 0xa1, 0xa0, 0xd4, 0xe2, 0x82, 0xfc, 0xbc, 0xe2, + 0x54, 0x27, 0xef, 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, 0x4c, 0xcf, + 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x87, 0x58, 0xa1, 0x9b, 0x93, 0x98, 0x54, + 0x0c, 0x65, 0xeb, 0x97, 0x99, 0x22, 0xdb, 0x58, 0x52, 0x59, 0x90, 0x5a, 0x9c, 0xc4, 0x06, 0x0e, + 0x2a, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0x51, 0xc3, 0x7f, 0x41, 0xeb, 0x01, 0x00, 0x00, } func (m *MsgUpdateParams) Marshal() (dAtA []byte, err error) { diff --git a/x/profiles/types/msgs_profile.pb.go b/x/profiles/types/msgs_profile.pb.go index 83ddfddf46..a9e6ebd7ab 100644 --- a/x/profiles/types/msgs_profile.pb.go +++ b/x/profiles/types/msgs_profile.pb.go @@ -7,6 +7,7 @@ import ( fmt "fmt" _ "github.com/cosmos/cosmos-proto" _ "github.com/cosmos/cosmos-sdk/types/msgservice" + _ "github.com/cosmos/cosmos-sdk/types/tx/amino" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" io "io" @@ -253,35 +254,36 @@ func init() { } var fileDescriptor_5ea75cf4ca5bb3a3 = []byte{ - // 436 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x92, 0xbf, 0x8e, 0xd3, 0x40, - 0x10, 0xc6, 0xe3, 0xbb, 0x70, 0xc0, 0x72, 0xf8, 0x90, 0x89, 0xee, 0x16, 0x17, 0xf6, 0x69, 0x25, - 0x24, 0x74, 0xe8, 0xbc, 0x3a, 0x45, 0x34, 0x27, 0x51, 0x70, 0xa4, 0x43, 0x27, 0x45, 0x0e, 0x15, - 0x4d, 0xe4, 0x3f, 0x9b, 0xc5, 0xc2, 0xf6, 0x5a, 0xbb, 0x1b, 0x8b, 0xb4, 0x3c, 0x01, 0x8f, 0x42, - 0xc1, 0x43, 0x50, 0x46, 0x54, 0x54, 0x16, 0x72, 0x0a, 0xa8, 0xfd, 0x04, 0xc8, 0xbb, 0x76, 0x20, - 0xa9, 0xa9, 0xbc, 0x33, 0xdf, 0xef, 0x9b, 0x1d, 0xcf, 0x0e, 0x78, 0x1a, 0x13, 0x91, 0x31, 0x81, - 0x0b, 0xce, 0x16, 0x49, 0x4a, 0x04, 0x2e, 0xc7, 0x38, 0x13, 0x54, 0xcc, 0xbb, 0x84, 0x57, 0x70, - 0x26, 0x99, 0x65, 0x69, 0xcc, 0xeb, 0x31, 0xaf, 0x1c, 0xdb, 0x23, 0xca, 0x28, 0x53, 0x32, 0x6e, - 0x4f, 0x9a, 0xb4, 0xcf, 0x22, 0xa6, 0x0a, 0x66, 0x82, 0xe2, 0xf2, 0xaa, 0xfd, 0x74, 0xc2, 0x13, - 0x2d, 0xcc, 0xb5, 0x43, 0x07, 0x5a, 0x42, 0xbf, 0x0f, 0x80, 0x79, 0x2b, 0xe8, 0x2c, 0x28, 0xc9, - 0x54, 0x5f, 0x60, 0x3d, 0x07, 0xc3, 0x58, 0x06, 0x14, 0x1a, 0xe7, 0xc6, 0xb3, 0xfb, 0x37, 0x67, - 0x75, 0xe5, 0x0e, 0x27, 0x6f, 0x03, 0xda, 0x54, 0xee, 0x83, 0x55, 0x90, 0xa5, 0xd7, 0xa8, 0x55, - 0x91, 0xaf, 0x20, 0x0b, 0x83, 0x7b, 0x79, 0x12, 0x7d, 0xc8, 0x83, 0x8c, 0xc0, 0x03, 0x65, 0x78, - 0xdc, 0x54, 0xee, 0x89, 0x06, 0x7b, 0x05, 0xf9, 0x5b, 0xc8, 0x3a, 0x07, 0x87, 0x61, 0xc2, 0xe0, - 0xa1, 0x62, 0xcd, 0xa6, 0x72, 0x81, 0x66, 0xc3, 0x84, 0x21, 0xbf, 0x95, 0xac, 0xd7, 0xe0, 0xa4, - 0xfb, 0xd7, 0x79, 0x91, 0x44, 0x72, 0xc9, 0x09, 0x1c, 0x2a, 0xda, 0x6e, 0x2a, 0xf7, 0x54, 0xd3, - 0x7b, 0x00, 0xf2, 0xcd, 0x2e, 0x33, 0xd5, 0x09, 0xeb, 0x25, 0x78, 0x18, 0xb1, 0x92, 0xf0, 0x6d, - 0x89, 0x3b, 0xaa, 0x04, 0x6c, 0x2a, 0x77, 0xa4, 0x4b, 0xec, 0xc8, 0xc8, 0x3f, 0x56, 0x71, 0x6f, - 0x9f, 0x80, 0xbb, 0x11, 0x27, 0x81, 0x64, 0x1c, 0x1e, 0x29, 0xe3, 0x45, 0x53, 0xb9, 0x66, 0x67, - 0xd4, 0x02, 0xfa, 0xfe, 0xf5, 0x72, 0xd4, 0xcd, 0xf2, 0x55, 0x1c, 0x73, 0x22, 0xc4, 0x4c, 0xf2, - 0x24, 0xa7, 0x7e, 0x6f, 0xbd, 0x3e, 0xfe, 0xf4, 0xeb, 0xcb, 0x45, 0x1f, 0x21, 0x08, 0x4e, 0x77, - 0x27, 0xed, 0x13, 0x51, 0xb0, 0x5c, 0x10, 0xb4, 0x00, 0x8f, 0x6e, 0x05, 0x9d, 0x90, 0x94, 0xc8, - 0xed, 0x2b, 0xfc, 0xd3, 0x81, 0xf1, 0xbf, 0x3a, 0xb0, 0x01, 0xdc, 0xbf, 0xa7, 0xef, 0xe1, 0xe6, - 0xcd, 0xb7, 0xda, 0x31, 0xd6, 0xb5, 0x63, 0xfc, 0xac, 0x1d, 0xe3, 0xf3, 0xc6, 0x19, 0xac, 0x37, - 0xce, 0xe0, 0xc7, 0xc6, 0x19, 0xbc, 0xbb, 0xa2, 0x89, 0x7c, 0xbf, 0x0c, 0xbd, 0x88, 0x65, 0x58, - 0xef, 0xe2, 0x65, 0x1a, 0x84, 0xa2, 0x3b, 0xe3, 0xf2, 0x05, 0xfe, 0xf8, 0x77, 0x87, 0xe5, 0xaa, - 0x20, 0x22, 0x3c, 0x52, 0xcb, 0x35, 0xfe, 0x13, 0x00, 0x00, 0xff, 0xff, 0x1f, 0xa0, 0x1a, 0x01, - 0xe3, 0x02, 0x00, 0x00, + // 464 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x93, 0x31, 0x6f, 0x13, 0x31, + 0x18, 0x86, 0x73, 0x24, 0x14, 0x30, 0x90, 0xc2, 0x11, 0x1a, 0x93, 0xe1, 0xae, 0xb2, 0x04, 0xaa, + 0x82, 0x1a, 0xab, 0x8a, 0x58, 0x2a, 0x31, 0x50, 0xb2, 0xa1, 0x4a, 0xd5, 0x95, 0x89, 0x25, 0xf2, + 0x5d, 0x8c, 0xb1, 0xc8, 0x9d, 0x4f, 0xb6, 0x7b, 0xa2, 0x6b, 0x46, 0x26, 0x7e, 0x4a, 0x07, 0x7e, + 0x04, 0x63, 0xc5, 0xc4, 0x74, 0x42, 0xc9, 0xd0, 0xfd, 0x7e, 0x01, 0x8a, 0xed, 0x4b, 0x48, 0xc6, + 0x2e, 0x89, 0xfd, 0xbe, 0xcf, 0xfb, 0x7d, 0xdf, 0xf9, 0x7c, 0xe0, 0xe5, 0x84, 0xaa, 0x54, 0x28, + 0x9c, 0x4b, 0xf1, 0x99, 0x4f, 0xa9, 0xc2, 0xc5, 0x10, 0xa7, 0x8a, 0xa9, 0xb1, 0x13, 0x06, 0xb9, + 0x14, 0x5a, 0xf8, 0xbe, 0xc5, 0x06, 0x35, 0x36, 0x28, 0x86, 0xbd, 0xa7, 0x24, 0xe5, 0x99, 0xc0, + 0xe6, 0xd7, 0x62, 0xbd, 0x0e, 0x13, 0x4c, 0x98, 0x25, 0x5e, 0xae, 0x9c, 0xda, 0x4d, 0x84, 0xe9, + 0x91, 0x2a, 0x86, 0x8b, 0xa3, 0xe5, 0x9f, 0x33, 0x5e, 0x58, 0x63, 0x6c, 0x13, 0x76, 0x63, 0x2d, + 0x34, 0x6b, 0x82, 0xf6, 0xa9, 0x62, 0xe7, 0xa4, 0xa0, 0x67, 0xb6, 0xa7, 0xff, 0x1a, 0xb4, 0x26, + 0x9a, 0x30, 0xe8, 0xed, 0x7b, 0x07, 0x0f, 0x4e, 0xba, 0xf3, 0x32, 0x6c, 0x8d, 0x3e, 0x12, 0x56, + 0x95, 0xe1, 0xc3, 0x4b, 0x92, 0x4e, 0x8f, 0xd1, 0xd2, 0x45, 0x91, 0x81, 0x7c, 0x0c, 0xee, 0x67, + 0x3c, 0xf9, 0x9a, 0x91, 0x94, 0xc2, 0x3b, 0x26, 0xf0, 0xac, 0x2a, 0xc3, 0x5d, 0x0b, 0xd6, 0x0e, + 0x8a, 0x56, 0x90, 0xbf, 0x0f, 0x9a, 0x31, 0x17, 0xb0, 0x69, 0xd8, 0x76, 0x55, 0x86, 0xc0, 0xb2, + 0x31, 0x17, 0x28, 0x5a, 0x5a, 0xfe, 0x7b, 0xb0, 0xeb, 0x1e, 0x7f, 0x9c, 0xf3, 0x44, 0x5f, 0x48, + 0x0a, 0x5b, 0x86, 0xee, 0x55, 0x65, 0xb8, 0x67, 0xe9, 0x2d, 0x00, 0x45, 0x6d, 0xa7, 0x9c, 0x59, + 0xc1, 0x7f, 0x0b, 0x1e, 0x27, 0xa2, 0xa0, 0x72, 0x55, 0xe2, 0xae, 0x29, 0x01, 0xab, 0x32, 0xec, + 0xd8, 0x12, 0x1b, 0x36, 0x8a, 0x1e, 0x99, 0x7d, 0x1d, 0x1f, 0x81, 0x7b, 0x89, 0xa4, 0x44, 0x0b, + 0x09, 0x77, 0x4c, 0xb0, 0x5f, 0x95, 0x61, 0xdb, 0x05, 0xad, 0x81, 0x7e, 0xff, 0x3c, 0xec, 0xb8, + 0xb3, 0x7c, 0x37, 0x99, 0x48, 0xaa, 0xd4, 0xb9, 0x96, 0x3c, 0x63, 0x51, 0x1d, 0x3d, 0x7e, 0x35, + 0xbb, 0xb9, 0xea, 0xd7, 0xbb, 0xef, 0x37, 0x57, 0xfd, 0xe7, 0xee, 0x16, 0x6c, 0x9e, 0x38, 0x82, + 0x60, 0x6f, 0x53, 0x89, 0xa8, 0xca, 0x45, 0xa6, 0x28, 0x9a, 0x79, 0xe0, 0xc9, 0xa9, 0x62, 0x23, + 0x3a, 0xa5, 0x7a, 0xf5, 0x82, 0xfe, 0x1b, 0xce, 0xbb, 0xfd, 0x70, 0x07, 0xdb, 0xc3, 0x75, 0xd7, + 0xc3, 0x6d, 0xf4, 0x43, 0x3d, 0x00, 0xb7, 0xb5, 0x7a, 0xc0, 0x93, 0x0f, 0xbf, 0xe6, 0x81, 0x77, + 0x3d, 0x0f, 0xbc, 0xbf, 0xf3, 0xc0, 0xfb, 0xb1, 0x08, 0x1a, 0xd7, 0x8b, 0xa0, 0xf1, 0x67, 0x11, + 0x34, 0x3e, 0x1d, 0x31, 0xae, 0xbf, 0x5c, 0xc4, 0x83, 0x44, 0xa4, 0xd8, 0x56, 0x3e, 0x9c, 0x92, + 0x58, 0xb9, 0x35, 0x2e, 0xde, 0xe0, 0x6f, 0xeb, 0xaf, 0x41, 0x5f, 0xe6, 0x54, 0xc5, 0x3b, 0xe6, + 0x4e, 0x0e, 0xff, 0x05, 0x00, 0x00, 0xff, 0xff, 0x93, 0x57, 0x84, 0xa6, 0x2d, 0x03, 0x00, 0x00, } func (m *MsgSaveProfile) Marshal() (dAtA []byte, err error) { diff --git a/x/reactions/types/msgs.pb.go b/x/reactions/types/msgs.pb.go index 082c157244..bfc513053e 100644 --- a/x/reactions/types/msgs.pb.go +++ b/x/reactions/types/msgs.pb.go @@ -9,6 +9,7 @@ import ( _ "github.com/cosmos/cosmos-proto" types "github.com/cosmos/cosmos-sdk/codec/types" _ "github.com/cosmos/cosmos-sdk/types/msgservice" + _ "github.com/cosmos/cosmos-sdk/types/tx/amino" _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" @@ -736,62 +737,67 @@ func init() { func init() { proto.RegisterFile("desmos/reactions/v1/msgs.proto", fileDescriptor_de4e0bd9e58b59f1) } var fileDescriptor_de4e0bd9e58b59f1 = []byte{ - // 880 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x57, 0xcb, 0x6f, 0xd3, 0x48, - 0x18, 0x8f, 0x93, 0xb4, 0xbb, 0x99, 0xb4, 0xd1, 0xae, 0x9b, 0x76, 0x53, 0x77, 0x1b, 0xa7, 0xd3, - 0x7d, 0x44, 0x5d, 0xc5, 0xde, 0x06, 0x05, 0x41, 0x11, 0x12, 0x0d, 0x14, 0x29, 0x12, 0x91, 0x2a, - 0x17, 0xf5, 0xc0, 0xc5, 0x72, 0x32, 0x53, 0x27, 0x52, 0x92, 0x89, 0x3c, 0x4e, 0xd4, 0x1c, 0x90, - 0x10, 0x07, 0xb8, 0x82, 0xb8, 0x82, 0xc4, 0x99, 0x13, 0x87, 0x5e, 0xf8, 0x0f, 0x2a, 0x4e, 0x85, - 0x13, 0x27, 0x0b, 0xa5, 0x07, 0xee, 0xf9, 0x0b, 0x50, 0xfc, 0x22, 0x0f, 0xbb, 0xf4, 0x91, 0x4a, - 0x88, 0xdb, 0x8c, 0xbf, 0xdf, 0xf7, 0xfa, 0x7d, 0xbf, 0xcc, 0x4c, 0x40, 0x12, 0x61, 0x5a, 0x27, - 0x54, 0xd4, 0xb0, 0x52, 0xd6, 0xab, 0xa4, 0x41, 0xc5, 0xf6, 0xba, 0x58, 0xa7, 0x2a, 0x15, 0x9a, - 0x1a, 0xd1, 0x09, 0x3b, 0x67, 0xd9, 0x05, 0xd7, 0x2e, 0xb4, 0xd7, 0xb9, 0xb8, 0x4a, 0x54, 0x62, - 0xda, 0xc5, 0xfe, 0xca, 0x82, 0x72, 0x8b, 0x2a, 0x21, 0x6a, 0x0d, 0x8b, 0xe6, 0xae, 0xd4, 0xda, - 0x13, 0x95, 0x46, 0xc7, 0x36, 0xfd, 0x51, 0x26, 0x66, 0x96, 0x3a, 0x55, 0xed, 0xf8, 0x8e, 0x8f, - 0x65, 0x90, 0xad, 0x60, 0xd6, 0xc6, 0x36, 0xa5, 0x3c, 0x2b, 0x23, 0x08, 0xd7, 0x6c, 0x04, 0x7c, - 0x17, 0x04, 0xb1, 0x22, 0x55, 0x37, 0x11, 0x92, 0x6c, 0x0c, 0xbb, 0x05, 0xa2, 0xb4, 0x55, 0xa2, - 0x4d, 0xa5, 0x8c, 0xe5, 0x2a, 0x4a, 0x30, 0x29, 0x26, 0x1d, 0xce, 0xff, 0xd5, 0x35, 0x78, 0xb0, - 0x63, 0x7f, 0x2e, 0xdc, 0xe9, 0x19, 0x3c, 0xdb, 0x51, 0xea, 0xb5, 0x0d, 0x38, 0x00, 0x85, 0x12, - 0x70, 0x76, 0x05, 0xc4, 0xe6, 0xc0, 0x2f, 0x4d, 0x42, 0xf5, 0x7e, 0x88, 0xa0, 0x19, 0xe2, 0xcf, - 0xae, 0xc1, 0x4f, 0x6f, 0x13, 0xaa, 0x9b, 0xee, 0x31, 0xcb, 0xdd, 0x86, 0x40, 0x69, 0xba, 0xbf, - 0x2a, 0x20, 0x56, 0x01, 0x53, 0x6d, 0xa5, 0xd6, 0xc2, 0x89, 0x50, 0x8a, 0x49, 0x47, 0xb3, 0x71, - 0xc1, 0x62, 0x44, 0x70, 0x18, 0x11, 0x36, 0x1b, 0x9d, 0x7c, 0xae, 0x67, 0xf0, 0x33, 0x56, 0x00, - 0x13, 0x0c, 0xdf, 0x1f, 0x64, 0x56, 0x3c, 0x58, 0x16, 0x9c, 0xa6, 0x76, 0xfb, 0x28, 0xc9, 0x8a, - 0xcc, 0xde, 0x00, 0xe1, 0x16, 0xc5, 0x5a, 0x22, 0x9c, 0x62, 0xd2, 0x91, 0xfc, 0xbf, 0x3d, 0x83, - 0x8f, 0x5a, 0xb1, 0xfa, 0x5f, 0xe1, 0xc7, 0x83, 0x4c, 0xdc, 0x26, 0x71, 0x13, 0x21, 0x0d, 0x53, - 0xba, 0xa3, 0x6b, 0xd5, 0x86, 0x2a, 0x99, 0x4e, 0x1b, 0x91, 0xc7, 0x5f, 0xde, 0xae, 0x99, 0x4b, - 0x28, 0x83, 0x85, 0x61, 0xea, 0x24, 0x4c, 0x9b, 0xa4, 0x41, 0x71, 0x9f, 0x42, 0xa7, 0x0c, 0x87, - 0xc2, 0x59, 0x8b, 0x42, 0x07, 0x3a, 0x48, 0xe1, 0x00, 0x14, 0x4a, 0xc0, 0xd9, 0x15, 0x10, 0x7c, - 0x1d, 0x04, 0xbf, 0x17, 0xa9, 0x2a, 0xe1, 0x3a, 0x69, 0xe3, 0x1f, 0x64, 0x3e, 0x23, 0xad, 0x85, - 0xce, 0xd7, 0xda, 0xc4, 0x66, 0xb0, 0x04, 0x16, 0xc7, 0x18, 0x72, 0xc6, 0x00, 0xdf, 0x04, 0x41, - 0xc2, 0x99, 0x90, 0x5a, 0xa5, 0x3a, 0xd6, 0xf0, 0xc4, 0x65, 0x7e, 0x0b, 0xc4, 0x68, 0x85, 0x68, - 0x7a, 0x45, 0x69, 0x20, 0xb9, 0x4c, 0x10, 0x36, 0xd9, 0x8c, 0xe4, 0x17, 0x7b, 0x06, 0x3f, 0x6f, - 0xfb, 0x0e, 0xd9, 0xa1, 0x34, 0xeb, 0x7e, 0xb8, 0x4d, 0x10, 0x66, 0x6f, 0x82, 0x59, 0x54, 0xa5, - 0xcd, 0x9a, 0xd2, 0x91, 0xbf, 0x29, 0x3f, 0x92, 0x4f, 0xf4, 0x0c, 0x3e, 0x6e, 0x05, 0x18, 0x32, - 0x43, 0x69, 0xc6, 0xde, 0xef, 0x4e, 0x54, 0xcd, 0x2f, 0x18, 0x90, 0xf2, 0x23, 0xcb, 0x15, 0x36, - 0x01, 0x0b, 0x9a, 0x6b, 0x95, 0xc7, 0x35, 0x7e, 0xbd, 0x6b, 0xf0, 0xf1, 0x71, 0x7f, 0x93, 0xc9, - 0x65, 0x47, 0x12, 0x5e, 0xfe, 0x50, 0x8a, 0x6b, 0xe3, 0x6e, 0x08, 0xbe, 0x0c, 0x99, 0x03, 0xde, - 0x42, 0x55, 0xfd, 0xf2, 0x66, 0xe8, 0xdf, 0x55, 0xf0, 0x52, 0xba, 0xf2, 0x10, 0x4d, 0xe8, 0xa2, - 0xa2, 0x09, 0x9f, 0x4b, 0x34, 0x53, 0x17, 0x14, 0xcd, 0x2a, 0x58, 0xf1, 0x9d, 0x8e, 0xfb, 0x33, - 0x7c, 0x15, 0x04, 0x4b, 0x03, 0x3f, 0xd2, 0x9f, 0x66, 0x8a, 0x0e, 0x89, 0xa1, 0x0b, 0x92, 0xf8, - 0x37, 0x58, 0x3d, 0x81, 0x1e, 0x97, 0xc6, 0xe7, 0x21, 0x30, 0x5f, 0xa4, 0xea, 0x0e, 0xd6, 0x1d, - 0x13, 0xdd, 0x56, 0x34, 0xa5, 0x4e, 0x27, 0x45, 0xe0, 0x53, 0x06, 0xcc, 0x79, 0x30, 0x60, 0xd2, - 0x17, 0xcd, 0x66, 0x05, 0xef, 0x0b, 0x76, 0xb4, 0x5e, 0x53, 0x60, 0x56, 0x61, 0x79, 0x78, 0x68, - 0xf0, 0x81, 0x9e, 0xc1, 0x73, 0xbe, 0xf4, 0x42, 0x89, 0x1d, 0xe7, 0x96, 0x95, 0x41, 0x64, 0x4f, - 0xc3, 0x58, 0xd6, 0xf1, 0xbe, 0x6e, 0x3f, 0x04, 0xd2, 0x9e, 0xe9, 0xef, 0x6a, 0x18, 0xdf, 0xc7, - 0xfb, 0xfa, 0x60, 0xd2, 0x84, 0x9d, 0xf4, 0x37, 0x2b, 0xa9, 0x1b, 0x08, 0x4a, 0xbf, 0xee, 0xd9, - 0xf0, 0x89, 0x1d, 0x9a, 0x3c, 0x58, 0xf6, 0x1c, 0x89, 0x33, 0xb4, 0xec, 0x87, 0x29, 0x10, 0x2a, - 0x52, 0x95, 0x95, 0x41, 0x74, 0xf0, 0x8d, 0xb5, 0xea, 0xd9, 0xcd, 0xf0, 0x6b, 0x82, 0xfb, 0xef, - 0x14, 0x20, 0xf7, 0x64, 0xae, 0x80, 0xd8, 0xc8, 0x3b, 0xe1, 0x1f, 0x3f, 0xf7, 0x61, 0x1c, 0x27, - 0x9c, 0x0e, 0xe7, 0x66, 0x7a, 0x08, 0xe6, 0xbd, 0x6f, 0xd4, 0xcc, 0x89, 0xf5, 0x8e, 0xc2, 0xb9, - 0xdc, 0x99, 0xe0, 0x6e, 0xfa, 0x47, 0x0c, 0x58, 0xf0, 0xb9, 0x0e, 0x7c, 0x3b, 0xf1, 0xc6, 0x73, - 0x57, 0xcf, 0x86, 0x77, 0x4b, 0x78, 0xc2, 0x80, 0x84, 0xef, 0x69, 0xf6, 0xff, 0xf7, 0xe8, 0x1c, - 0x2b, 0xe3, 0xda, 0x59, 0x3d, 0xdc, 0x42, 0x74, 0xc0, 0x7a, 0x1c, 0x07, 0x6b, 0x7e, 0xf1, 0xc6, - 0xb1, 0x5c, 0xf6, 0xf4, 0x58, 0x27, 0x6b, 0xfe, 0xde, 0x61, 0x37, 0xc9, 0x1c, 0x75, 0x93, 0xcc, - 0xe7, 0x6e, 0x92, 0x79, 0x76, 0x9c, 0x0c, 0x1c, 0x1d, 0x27, 0x03, 0x9f, 0x8e, 0x93, 0x81, 0x07, - 0x59, 0xb5, 0xaa, 0x57, 0x5a, 0x25, 0xa1, 0x4c, 0xea, 0xa2, 0x15, 0x37, 0x53, 0x53, 0x4a, 0xd4, - 0x5e, 0x8b, 0xed, 0x9c, 0xb8, 0x3f, 0xf0, 0x5f, 0x44, 0xef, 0x34, 0x31, 0x2d, 0x4d, 0x9b, 0x2f, - 0xfb, 0x2b, 0x5f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x0b, 0xd2, 0x0d, 0x61, 0x46, 0x0d, 0x00, 0x00, + // 949 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x57, 0x41, 0x8f, 0xdb, 0x44, + 0x14, 0x5e, 0x27, 0xbb, 0x0b, 0x3b, 0xe9, 0xae, 0xa8, 0x9b, 0x2c, 0x5e, 0xb7, 0x8d, 0xd3, 0x09, + 0x94, 0x28, 0x28, 0x76, 0x1b, 0x14, 0x04, 0x45, 0x48, 0x6c, 0xa0, 0x48, 0x91, 0x88, 0x54, 0x79, + 0x51, 0x0f, 0x5c, 0x2c, 0x27, 0x33, 0xeb, 0x58, 0x8a, 0x33, 0x91, 0xc7, 0x89, 0x36, 0x07, 0x24, + 0xc4, 0x01, 0x24, 0x4e, 0x48, 0xfc, 0x91, 0x0a, 0xf5, 0xca, 0x01, 0x89, 0x43, 0xc5, 0x01, 0x15, + 0xb8, 0x70, 0xb2, 0x50, 0xf6, 0xd0, 0x7b, 0x7e, 0x01, 0x8a, 0x3d, 0x76, 0xe2, 0xd8, 0x2e, 0xbb, + 0x49, 0x2b, 0x21, 0x2e, 0xd1, 0xcc, 0xbc, 0xef, 0xbd, 0x37, 0xf3, 0x7d, 0xef, 0x8d, 0x27, 0xa0, + 0x88, 0x30, 0xb5, 0x08, 0x55, 0x6c, 0xac, 0x77, 0x1d, 0x93, 0x0c, 0xa8, 0x32, 0xbe, 0xab, 0x58, + 0xd4, 0xa0, 0xf2, 0xd0, 0x26, 0x0e, 0xe1, 0xaf, 0xf9, 0x76, 0x39, 0xb4, 0xcb, 0xe3, 0xbb, 0xe2, + 0x55, 0xdd, 0x32, 0x07, 0x44, 0xf1, 0x7e, 0x7d, 0x9c, 0x98, 0x37, 0x88, 0x41, 0xbc, 0xa1, 0x32, + 0x1f, 0xb1, 0xd5, 0x23, 0x83, 0x10, 0xa3, 0x8f, 0x15, 0x6f, 0xd6, 0x19, 0x9d, 0x2a, 0xfa, 0x60, + 0xc2, 0x4c, 0xaf, 0x77, 0x89, 0x97, 0xd8, 0xa2, 0x06, 0x4b, 0x19, 0xf8, 0xf8, 0x06, 0xcd, 0x0f, + 0xe6, 0x4f, 0x98, 0xa9, 0x94, 0xb8, 0x59, 0x82, 0x70, 0x9f, 0x21, 0xe0, 0x9f, 0x19, 0x70, 0xd0, + 0xa6, 0xc6, 0x31, 0x42, 0x2a, 0xc3, 0xf0, 0xf7, 0x41, 0x8e, 0x8e, 0x3a, 0x74, 0xa8, 0x77, 0xb1, + 0x66, 0x22, 0x81, 0x2b, 0x71, 0x95, 0xed, 0xe6, 0x1b, 0x53, 0x57, 0x02, 0x27, 0x6c, 0xb9, 0xf5, + 0xc9, 0xcc, 0x95, 0xf8, 0x89, 0x6e, 0xf5, 0xef, 0xc1, 0x25, 0x28, 0x54, 0x41, 0x30, 0x6b, 0x21, + 0xbe, 0x01, 0x5e, 0x19, 0x12, 0xea, 0xcc, 0x43, 0x64, 0xbc, 0x10, 0x37, 0xa6, 0xae, 0xb4, 0xfb, + 0x80, 0x50, 0xc7, 0x73, 0x3f, 0xf0, 0xdd, 0x19, 0x04, 0xaa, 0xbb, 0xf3, 0x51, 0x0b, 0xf1, 0x3a, + 0xd8, 0x19, 0xeb, 0xfd, 0x11, 0x16, 0xb2, 0x25, 0xae, 0x92, 0xab, 0xe7, 0x65, 0x9f, 0x11, 0x39, + 0x60, 0x44, 0x3e, 0x1e, 0x4c, 0x9a, 0x8d, 0x99, 0x2b, 0x5d, 0xf1, 0x03, 0x78, 0x60, 0xf8, 0xeb, + 0xe3, 0xda, 0xad, 0x04, 0xe2, 0xe5, 0xe0, 0x50, 0x0f, 0xe7, 0x28, 0xd5, 0x8f, 0xcc, 0x7f, 0x00, + 0xb6, 0x47, 0x14, 0xdb, 0xc2, 0x76, 0x89, 0xab, 0xec, 0x35, 0xdf, 0x9a, 0xb9, 0x52, 0xce, 0x8f, + 0x35, 0x5f, 0x85, 0x7f, 0x3c, 0xae, 0xe5, 0x19, 0x89, 0xc7, 0x08, 0xd9, 0x98, 0xd2, 0x13, 0xc7, + 0x36, 0x07, 0x86, 0xea, 0x39, 0xdd, 0x2b, 0x7f, 0xfd, 0xec, 0x51, 0xd5, 0x1b, 0x7e, 0xf7, 0xec, + 0x51, 0xb5, 0xc0, 0x08, 0x8e, 0x52, 0x08, 0x35, 0x70, 0x18, 0x5d, 0x51, 0x31, 0x1d, 0x92, 0x01, + 0xc5, 0x73, 0x72, 0x83, 0x0d, 0x06, 0xe4, 0xee, 0xfb, 0xe4, 0x06, 0xd0, 0x65, 0x72, 0x97, 0xa0, + 0x50, 0x05, 0xc1, 0xac, 0x85, 0xe0, 0x4f, 0x19, 0x70, 0xb5, 0x4d, 0x0d, 0x15, 0x5b, 0x64, 0x8c, + 0xff, 0x23, 0xca, 0xad, 0x1c, 0x2d, 0xbb, 0xde, 0xd1, 0x36, 0x53, 0xe7, 0x76, 0x44, 0x1d, 0x61, + 0xa1, 0x4e, 0x94, 0x29, 0x78, 0x1d, 0x1c, 0xc5, 0x16, 0x03, 0x8d, 0xe0, 0x6f, 0x19, 0x20, 0x04, + 0xf2, 0x19, 0x26, 0x75, 0xb0, 0x8d, 0x5f, 0x78, 0x77, 0x7c, 0x04, 0x0e, 0x68, 0x8f, 0xd8, 0x4e, + 0x4f, 0x1f, 0x20, 0xad, 0x4b, 0x10, 0xf6, 0xa8, 0xde, 0x6b, 0x1e, 0xcd, 0x5c, 0xa9, 0xc0, 0x7c, + 0x23, 0x76, 0xa8, 0xee, 0x87, 0x0b, 0x1f, 0x13, 0x84, 0xf9, 0x0f, 0xc1, 0x3e, 0x32, 0xe9, 0xb0, + 0xaf, 0x4f, 0xb4, 0x45, 0xc3, 0xec, 0x35, 0x85, 0x99, 0x2b, 0xe5, 0xfd, 0x00, 0x11, 0x33, 0x54, + 0xaf, 0xb0, 0xf9, 0xc3, 0xcd, 0x9b, 0xa0, 0x16, 0xa1, 0x59, 0x5a, 0x69, 0x82, 0x55, 0xce, 0xe0, + 0x0f, 0x1c, 0x28, 0xa5, 0x19, 0xc3, 0xce, 0x20, 0xe0, 0xd0, 0x0e, 0xad, 0x5a, 0xbc, 0x49, 0xde, + 0x9f, 0xba, 0x52, 0x3e, 0xee, 0xef, 0xb1, 0x7d, 0x33, 0xa8, 0xa9, 0x24, 0x7f, 0xa8, 0xe6, 0xed, + 0xb8, 0x1b, 0x82, 0x3f, 0x67, 0xbd, 0x22, 0xb8, 0x8f, 0x4c, 0xe7, 0xe5, 0xe9, 0x9c, 0x7e, 0xaa, + 0xcc, 0x4b, 0x39, 0x55, 0x42, 0x61, 0x65, 0x37, 0x2d, 0xac, 0xed, 0xb5, 0x0a, 0x6b, 0x67, 0x9d, + 0xc2, 0x92, 0x23, 0x85, 0x55, 0x5a, 0x14, 0x56, 0xb2, 0x4a, 0xb0, 0x0c, 0x6e, 0xa5, 0x1a, 0xc3, + 0x7e, 0xfe, 0x25, 0x03, 0xae, 0x2f, 0x75, 0xfb, 0xff, 0x46, 0xea, 0x80, 0xe9, 0xec, 0x3a, 0x4c, + 0xdf, 0x89, 0x30, 0x0d, 0xe3, 0x37, 0x65, 0x8c, 0xeb, 0x37, 0x41, 0xf9, 0x39, 0xe6, 0x90, 0xed, + 0x1f, 0xb3, 0xa0, 0xd0, 0xa6, 0xc6, 0x09, 0x76, 0x02, 0x13, 0x7d, 0xa0, 0xdb, 0xba, 0x45, 0x5f, + 0x14, 0xcf, 0xdf, 0x72, 0xe0, 0x5a, 0x02, 0x51, 0x1e, 0xcb, 0xb9, 0x7a, 0x5d, 0x4e, 0x7e, 0x07, + 0xac, 0xee, 0xd7, 0x2b, 0x56, 0x7f, 0x63, 0x4d, 0xf8, 0xc4, 0x95, 0xb6, 0x66, 0xae, 0x24, 0xa6, + 0xaa, 0x00, 0x55, 0x3e, 0x2e, 0x01, 0xaf, 0x81, 0xbd, 0x53, 0x1b, 0x63, 0xcd, 0xc1, 0x67, 0x0e, + 0x7b, 0xaf, 0x54, 0x12, 0xd3, 0x7f, 0x6a, 0x63, 0xfc, 0x39, 0x3e, 0x73, 0x96, 0x93, 0x0a, 0x2c, + 0xe9, 0x6b, 0x7e, 0xd2, 0x30, 0x10, 0x54, 0x5f, 0x3d, 0x65, 0xf0, 0xcd, 0x2e, 0xe9, 0x6a, 0x44, + 0xe1, 0x1b, 0x0b, 0x85, 0xe3, 0xd2, 0x40, 0x09, 0xdc, 0x4c, 0x34, 0x04, 0xaa, 0xd6, 0x7f, 0xdf, + 0x01, 0xd9, 0x36, 0x35, 0x78, 0x0d, 0xe4, 0x96, 0xdf, 0x8a, 0xe5, 0xc4, 0xe3, 0x46, 0xdf, 0x3e, + 0xe2, 0xdb, 0x17, 0x00, 0x85, 0x9f, 0x81, 0x1e, 0x38, 0x58, 0x79, 0xd5, 0xdc, 0x4e, 0x73, 0x8f, + 0xe2, 0x44, 0xf9, 0x62, 0xb8, 0x30, 0xd3, 0x97, 0xa0, 0x90, 0xfc, 0x89, 0xaf, 0x3d, 0x77, 0xbf, + 0xab, 0x70, 0xb1, 0x71, 0x29, 0x78, 0x98, 0xfe, 0x2b, 0x0e, 0x1c, 0xa6, 0x7c, 0x7b, 0x52, 0x4f, + 0x92, 0x8c, 0x17, 0xdf, 0xbd, 0x1c, 0x3e, 0xdc, 0xc2, 0x37, 0x1c, 0x10, 0x52, 0x6f, 0xc5, 0x3b, + 0xff, 0x46, 0x67, 0x6c, 0x1b, 0xef, 0x5d, 0xd6, 0x23, 0xdc, 0x88, 0x03, 0xf8, 0x84, 0xfb, 0xa2, + 0x9a, 0x16, 0x2f, 0x8e, 0x15, 0xeb, 0x17, 0xc7, 0x06, 0x59, 0x9b, 0x9f, 0x3d, 0x99, 0x16, 0xb9, + 0xa7, 0xd3, 0x22, 0xf7, 0xf7, 0xb4, 0xc8, 0x7d, 0x7f, 0x5e, 0xdc, 0x7a, 0x7a, 0x5e, 0xdc, 0xfa, + 0xeb, 0xbc, 0xb8, 0xf5, 0x45, 0xdd, 0x30, 0x9d, 0xde, 0xa8, 0x23, 0x77, 0x89, 0xa5, 0xf8, 0x71, + 0x6b, 0x7d, 0xbd, 0x43, 0xd9, 0x58, 0x19, 0x37, 0x94, 0xb3, 0xa5, 0xff, 0x54, 0xce, 0x64, 0x88, + 0x69, 0x67, 0xd7, 0xfb, 0x87, 0xf2, 0xce, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x30, 0x22, 0x4c, + 0x46, 0x21, 0x0e, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/relationships/types/msgs.pb.go b/x/relationships/types/msgs.pb.go index 81003a7de0..8570bd1ead 100644 --- a/x/relationships/types/msgs.pb.go +++ b/x/relationships/types/msgs.pb.go @@ -8,6 +8,7 @@ import ( fmt "fmt" _ "github.com/cosmos/cosmos-proto" _ "github.com/cosmos/cosmos-sdk/types/msgservice" + _ "github.com/cosmos/cosmos-sdk/types/tx/amino" _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" @@ -464,42 +465,45 @@ func init() { } var fileDescriptor_96a11e032a59b620 = []byte{ - // 556 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x95, 0x4f, 0x8b, 0xd3, 0x40, - 0x18, 0xc6, 0x37, 0xed, 0x52, 0xe9, 0xb4, 0x2e, 0x38, 0xd6, 0xdd, 0x5a, 0x30, 0x59, 0x82, 0xe2, - 0xee, 0x42, 0x13, 0x56, 0x71, 0x0f, 0x7b, 0xdb, 0x5a, 0x0f, 0x7b, 0x28, 0x48, 0xcb, 0x5e, 0xbc, - 0x2c, 0x49, 0x33, 0xcc, 0x06, 0x9b, 0x4c, 0x98, 0x37, 0x2d, 0x16, 0x3c, 0xe9, 0x17, 0xf0, 0xec, - 0xa7, 0xf0, 0xe0, 0x87, 0xf0, 0x22, 0x2c, 0x9e, 0x3c, 0x05, 0x69, 0x0f, 0x9e, 0xed, 0x27, 0x90, - 0x66, 0x26, 0x69, 0xba, 0xfd, 0xe3, 0x2a, 0x08, 0x82, 0xb7, 0x99, 0x79, 0x9f, 0xf7, 0x79, 0x67, - 0x7e, 0xc9, 0x3b, 0x83, 0x74, 0x87, 0x80, 0xc7, 0xc0, 0xe4, 0xa4, 0x67, 0x85, 0x2e, 0xf3, 0xe1, - 0xc2, 0x0d, 0xc0, 0x1c, 0x1c, 0x9a, 0x1e, 0x50, 0x30, 0x02, 0xce, 0x42, 0x86, 0x77, 0x84, 0xc6, - 0x98, 0xd3, 0x18, 0x83, 0xc3, 0x5a, 0x85, 0x32, 0xca, 0x62, 0x8d, 0x39, 0x1d, 0x09, 0x79, 0x6d, - 0xa7, 0xcb, 0x62, 0x4b, 0x0f, 0xa8, 0x34, 0x92, 0x81, 0xbb, 0x22, 0x70, 0x2e, 0x32, 0xc4, 0x44, - 0x84, 0xf4, 0xb7, 0x39, 0x74, 0xa7, 0x05, 0xf4, 0x29, 0x27, 0x56, 0x48, 0xda, 0x99, 0x3a, 0xf8, - 0x04, 0x15, 0xc0, 0xa5, 0x3e, 0xe1, 0x55, 0x65, 0x57, 0xd9, 0x2b, 0x36, 0xf6, 0x27, 0x91, 0x76, - 0x73, 0x68, 0x79, 0xbd, 0x63, 0x5d, 0xac, 0xeb, 0x5f, 0x3e, 0xd6, 0x2b, 0xd2, 0xec, 0xc4, 0x71, - 0x38, 0x01, 0xe8, 0x84, 0xdc, 0xf5, 0x69, 0x5b, 0x26, 0xe2, 0x0e, 0x2a, 0x77, 0x59, 0xdf, 0x0f, - 0x09, 0x0f, 0x2c, 0x1e, 0x0e, 0xab, 0xb9, 0xd8, 0xc8, 0x9c, 0x44, 0xda, 0x6d, 0x61, 0x94, 0x8d, - 0xae, 0xb6, 0x9b, 0x33, 0xc1, 0xcf, 0x50, 0x09, 0xfa, 0x36, 0x04, 0x56, 0x97, 0x9c, 0xbb, 0x4e, - 0x35, 0xbf, 0xab, 0xec, 0x6d, 0x36, 0xee, 0x8f, 0x22, 0x0d, 0x75, 0xe4, 0xf2, 0x69, 0x73, 0x12, - 0x69, 0x58, 0x6e, 0x75, 0x26, 0xd5, 0xdb, 0x28, 0x99, 0x9d, 0x3a, 0xc7, 0xa5, 0x37, 0xdf, 0x3f, - 0x1c, 0xc8, 0x8d, 0xea, 0x1a, 0xba, 0xb7, 0x14, 0x42, 0x9b, 0x40, 0xc0, 0x7c, 0x20, 0x09, 0xa6, - 0x26, 0xe9, 0x91, 0xff, 0x1e, 0xd3, 0x22, 0x84, 0x14, 0xd3, 0xfb, 0x1c, 0x2a, 0xb7, 0x80, 0x36, - 0x7a, 0xac, 0xfb, 0xf2, 0x0c, 0x08, 0xc7, 0x4d, 0x74, 0xc3, 0x9e, 0x4e, 0x52, 0x3c, 0x07, 0x93, - 0x48, 0xdb, 0x12, 0x35, 0x65, 0x60, 0xf5, 0x81, 0x92, 0xd4, 0x99, 0x8b, 0x23, 0xd9, 0x2c, 0xb8, - 0x38, 0xbf, 0x74, 0x71, 0xf0, 0x3e, 0x2a, 0x70, 0x62, 0x01, 0xf3, 0x63, 0x18, 0xc5, 0xc6, 0xad, - 0xd9, 0x97, 0x12, 0xeb, 0x7a, 0x5b, 0x0a, 0xae, 0xc2, 0xdb, 0xfc, 0x43, 0x78, 0xe5, 0x29, 0xbc, - 0xe4, 0x14, 0xfa, 0x36, 0xaa, 0x64, 0xd9, 0xa4, 0xd0, 0x7e, 0x28, 0x68, 0xab, 0x05, 0xf4, 0xcc, - 0xb7, 0xff, 0x49, 0x6c, 0x7f, 0x85, 0x45, 0x15, 0x6d, 0xcf, 0x1f, 0x39, 0xa1, 0xf1, 0xe8, 0x73, - 0x1e, 0xe5, 0x5b, 0x40, 0xf1, 0x6b, 0x84, 0x97, 0x5c, 0x4a, 0x86, 0xb1, 0xe2, 0x4a, 0x34, 0x96, - 0xf6, 0x6f, 0xed, 0xe8, 0xf7, 0xf4, 0xc9, 0x2e, 0xa6, 0xd5, 0x97, 0xf4, 0xfa, 0xda, 0xea, 0x8b, - 0xfa, 0xf5, 0xd5, 0x57, 0xb7, 0x11, 0xb6, 0x50, 0x71, 0xd6, 0x42, 0x0f, 0xd6, 0x99, 0xa4, 0xb2, - 0x5a, 0xfd, 0x5a, 0xb2, 0xb4, 0x04, 0x45, 0xa5, 0xec, 0x0f, 0xf7, 0x70, 0x5d, 0x76, 0x46, 0x58, - 0x33, 0xaf, 0x29, 0x4c, 0x0a, 0x35, 0x9e, 0x7f, 0x1a, 0xa9, 0xca, 0xe5, 0x48, 0x55, 0xbe, 0x8d, - 0x54, 0xe5, 0xdd, 0x58, 0xdd, 0xb8, 0x1c, 0xab, 0x1b, 0x5f, 0xc7, 0xea, 0xc6, 0x8b, 0x23, 0xea, - 0x86, 0x17, 0x7d, 0xdb, 0xe8, 0x32, 0xcf, 0x14, 0xa6, 0xf5, 0x9e, 0x65, 0x83, 0x1c, 0x9b, 0x83, - 0x27, 0xe6, 0xab, 0x2b, 0xaf, 0x63, 0x38, 0x0c, 0x08, 0xd8, 0x85, 0xf8, 0xe5, 0x7a, 0xfc, 0x33, - 0x00, 0x00, 0xff, 0xff, 0x3b, 0xb0, 0xc0, 0x61, 0x42, 0x07, 0x00, 0x00, + // 598 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x95, 0xbf, 0x6f, 0xd3, 0x40, + 0x14, 0xc7, 0xe3, 0xa4, 0x0a, 0xca, 0xb5, 0x54, 0xaa, 0x9b, 0xb6, 0x21, 0x02, 0xbb, 0xb2, 0x0a, + 0xb4, 0x11, 0xb1, 0x55, 0x10, 0x1d, 0xba, 0x35, 0x84, 0xa1, 0x43, 0x24, 0x94, 0xa8, 0x0b, 0x4b, + 0x65, 0xc7, 0xa7, 0xab, 0x45, 0xec, 0xb3, 0xfc, 0x9c, 0x88, 0x48, 0x4c, 0x8c, 0xb0, 0xf0, 0x47, + 0xf0, 0x07, 0x54, 0x88, 0x3f, 0x82, 0x05, 0xa9, 0x62, 0x62, 0x8a, 0x50, 0x32, 0x74, 0xcf, 0x5f, + 0x80, 0xe2, 0x3b, 0xff, 0x48, 0xe2, 0x84, 0x82, 0x18, 0x18, 0x58, 0xa2, 0xbb, 0xf7, 0xbe, 0xf7, + 0x7d, 0xef, 0x3e, 0x8e, 0x9f, 0x91, 0x62, 0x62, 0xb0, 0x29, 0x68, 0x1e, 0xee, 0xe8, 0xbe, 0x45, + 0x1d, 0xb8, 0xb0, 0x5c, 0xd0, 0x7a, 0x87, 0x9a, 0x0d, 0x04, 0x54, 0xd7, 0xa3, 0x3e, 0x15, 0x77, + 0x98, 0x46, 0x9d, 0xd2, 0xa8, 0xbd, 0xc3, 0xf2, 0x86, 0x6e, 0x5b, 0x0e, 0xd5, 0x82, 0x5f, 0xa6, + 0x2d, 0x17, 0x09, 0x25, 0x34, 0x58, 0x6a, 0x93, 0x15, 0x8f, 0xee, 0xb4, 0x69, 0x50, 0xc5, 0x06, + 0xc2, 0xbd, 0x79, 0xe2, 0x0e, 0x4b, 0x9c, 0xb3, 0x13, 0x6c, 0xc3, 0x52, 0xca, 0xc7, 0x2c, 0xda, + 0x6a, 0x00, 0x79, 0xe6, 0x61, 0xdd, 0xc7, 0xcd, 0x44, 0x69, 0xf1, 0x04, 0xe5, 0xc1, 0x22, 0x0e, + 0xf6, 0x4a, 0xc2, 0xae, 0xb0, 0x5f, 0xa8, 0x1d, 0x8c, 0x07, 0xf2, 0xed, 0xbe, 0x6e, 0x77, 0x8e, + 0x15, 0x16, 0x57, 0xbe, 0x7d, 0xae, 0x16, 0xb9, 0xd9, 0x89, 0x69, 0x7a, 0x18, 0xa0, 0xe5, 0x7b, + 0x96, 0x43, 0x9a, 0xfc, 0xa0, 0xd8, 0x42, 0x6b, 0x6d, 0xda, 0x75, 0x7c, 0xec, 0xb9, 0xba, 0xe7, + 0xf7, 0x4b, 0xd9, 0xc0, 0x48, 0x1b, 0x0f, 0xe4, 0x4d, 0x66, 0x94, 0xcc, 0x2e, 0xb6, 0x9b, 0x32, + 0x11, 0x9f, 0xa3, 0x55, 0xe8, 0x1a, 0xe0, 0xea, 0x6d, 0x7c, 0x6e, 0x99, 0xa5, 0xdc, 0xae, 0xb0, + 0xbf, 0x52, 0xdb, 0x1b, 0x0e, 0x64, 0xd4, 0xe2, 0xe1, 0xd3, 0xfa, 0x78, 0x20, 0x8b, 0xbc, 0xd5, + 0x58, 0xaa, 0x34, 0x51, 0xb8, 0x3b, 0x35, 0x8f, 0x1f, 0xbd, 0xbd, 0xbe, 0xac, 0xf0, 0x46, 0xdf, + 0x5d, 0x5f, 0x56, 0xee, 0xf2, 0x47, 0x94, 0x0a, 0x43, 0x91, 0xd1, 0xbd, 0xd4, 0x44, 0x13, 0x83, + 0x4b, 0x1d, 0xc0, 0x21, 0xc7, 0x3a, 0xee, 0xe0, 0xff, 0x1c, 0x39, 0xc7, 0x79, 0x18, 0x9c, 0xe3, + 0x7c, 0x22, 0xe2, 0xf8, 0x29, 0x8b, 0xd6, 0x1a, 0x40, 0x6a, 0x1d, 0xda, 0x7e, 0x75, 0x06, 0xd8, + 0x13, 0xeb, 0xe8, 0x96, 0x31, 0xd9, 0x44, 0xfc, 0x2a, 0xe3, 0x81, 0xbc, 0xce, 0x9a, 0xe2, 0x89, + 0xc5, 0x37, 0x0e, 0x8f, 0xc6, 0x2e, 0x26, 0x87, 0x37, 0xe7, 0x62, 0xfe, 0xd2, 0xc5, 0x14, 0x0f, + 0x50, 0xde, 0xc3, 0x3a, 0x50, 0x27, 0xa0, 0x55, 0xa8, 0x6d, 0xc4, 0x8f, 0x92, 0xc5, 0x95, 0x26, + 0x17, 0xcc, 0xd2, 0x5d, 0xf9, 0x43, 0xba, 0x7b, 0x13, 0xba, 0xe1, 0x2d, 0x26, 0x78, 0x37, 0x63, + 0xbc, 0x11, 0x23, 0x65, 0x1b, 0x15, 0x93, 0xfb, 0x08, 0xe6, 0xfb, 0x2c, 0x5a, 0x6f, 0x00, 0x39, + 0x73, 0x8c, 0x7f, 0x12, 0xe7, 0x5f, 0x62, 0xf4, 0x60, 0x96, 0xd1, 0x56, 0xcc, 0x28, 0x71, 0x75, + 0xa5, 0x84, 0xb6, 0xa7, 0x23, 0x21, 0xa7, 0xc7, 0x5f, 0x73, 0x28, 0xd7, 0x00, 0x22, 0xbe, 0x41, + 0x62, 0xca, 0x20, 0x54, 0xd5, 0x05, 0x93, 0x59, 0x4d, 0x1d, 0x09, 0xe5, 0xa3, 0xdf, 0xd3, 0x87, + 0x5d, 0x4c, 0xaa, 0xa7, 0x8c, 0x8f, 0xa5, 0xd5, 0xe7, 0xf5, 0xcb, 0xab, 0x2f, 0x7e, 0xf1, 0x44, + 0x1d, 0x15, 0xe2, 0x97, 0xee, 0xfe, 0x32, 0x93, 0x48, 0x56, 0xae, 0xde, 0x48, 0x16, 0x95, 0x20, + 0x68, 0x35, 0xf9, 0x57, 0x7c, 0xb8, 0xec, 0x74, 0x42, 0x58, 0xd6, 0x6e, 0x28, 0x0c, 0x0b, 0xd5, + 0x5e, 0x7c, 0x19, 0x4a, 0xc2, 0xd5, 0x50, 0x12, 0x7e, 0x0c, 0x25, 0xe1, 0xc3, 0x48, 0xca, 0x5c, + 0x8d, 0xa4, 0xcc, 0xf7, 0x91, 0x94, 0x79, 0x79, 0x44, 0x2c, 0xff, 0xa2, 0x6b, 0xa8, 0x6d, 0x6a, + 0x6b, 0xcc, 0xb4, 0xda, 0xd1, 0x0d, 0xe0, 0x6b, 0xad, 0xf7, 0x54, 0x7b, 0x3d, 0xf3, 0x91, 0xf6, + 0xfb, 0x2e, 0x06, 0x23, 0x1f, 0x7c, 0x2d, 0x9f, 0xfc, 0x0c, 0x00, 0x00, 0xff, 0xff, 0xb5, 0x52, + 0xe7, 0x88, 0xc9, 0x07, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/reports/types/msgs.pb.go b/x/reports/types/msgs.pb.go index cd15330f0e..d1fc2fb4b0 100644 --- a/x/reports/types/msgs.pb.go +++ b/x/reports/types/msgs.pb.go @@ -9,6 +9,7 @@ import ( _ "github.com/cosmos/cosmos-proto" types "github.com/cosmos/cosmos-sdk/codec/types" _ "github.com/cosmos/cosmos-sdk/types/msgservice" + _ "github.com/cosmos/cosmos-sdk/types/tx/amino" _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" @@ -725,66 +726,70 @@ func init() { func init() { proto.RegisterFile("desmos/reports/v1/msgs.proto", fileDescriptor_c7165cc8d939a535) } var fileDescriptor_c7165cc8d939a535 = []byte{ - // 940 bytes of a gzipped FileDescriptorProto + // 1002 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0x4d, 0x6f, 0xe3, 0x44, - 0x18, 0xae, 0xd3, 0xb4, 0x6c, 0xa6, 0xc9, 0x6e, 0xb0, 0x02, 0xeb, 0x46, 0xc8, 0x8e, 0x06, 0x04, - 0xa5, 0x4b, 0x6d, 0xba, 0x15, 0x1f, 0xaa, 0xc4, 0xa1, 0x26, 0x08, 0x05, 0xa9, 0x12, 0x72, 0xb7, - 0x17, 0x0e, 0x1b, 0x4d, 0xe2, 0xc1, 0xb5, 0x14, 0x7b, 0x2c, 0xcf, 0xa4, 0x22, 0x37, 0xc4, 0x05, - 0x8e, 0x2b, 0x7e, 0xc9, 0x1e, 0xf6, 0xc6, 0x1f, 0x58, 0x71, 0x5a, 0x71, 0xe2, 0x64, 0x50, 0x7a, - 0xe8, 0x3d, 0xbf, 0x00, 0xd9, 0x33, 0xfe, 0x6a, 0x6d, 0x55, 0x95, 0xc2, 0x2d, 0x33, 0xef, 0x33, - 0xcf, 0xfb, 0xbe, 0xcf, 0xfb, 0xe1, 0x80, 0xf7, 0x6c, 0x4c, 0x3d, 0x42, 0x8d, 0x10, 0x07, 0x24, - 0x64, 0xd4, 0xb8, 0x3c, 0x34, 0x3c, 0xea, 0x50, 0x3d, 0x08, 0x09, 0x23, 0xf2, 0xdb, 0xdc, 0xaa, - 0x0b, 0xab, 0x7e, 0x79, 0xd8, 0xef, 0x39, 0xc4, 0x21, 0x89, 0xd5, 0x88, 0x7f, 0x71, 0x60, 0x7f, - 0xd7, 0x21, 0xc4, 0x99, 0x61, 0x23, 0x39, 0x4d, 0xe6, 0x3f, 0x1a, 0xc8, 0x5f, 0x08, 0x93, 0x76, - 0xd3, 0xc4, 0x5c, 0x0f, 0x53, 0x86, 0xbc, 0x20, 0x7d, 0x3b, 0x25, 0xb1, 0x93, 0x31, 0x27, 0xe5, - 0x07, 0x61, 0x7a, 0xcc, 0x4f, 0x71, 0x48, 0x22, 0x32, 0x61, 0x50, 0x2b, 0xc2, 0x26, 0x36, 0x9e, - 0x89, 0x87, 0xf0, 0xb7, 0x4d, 0xf0, 0xe8, 0x94, 0x3a, 0x5f, 0x87, 0x18, 0x31, 0x6c, 0x25, 0x20, - 0xf9, 0x1b, 0xb0, 0x43, 0xe7, 0x13, 0x1a, 0xa0, 0x29, 0x1e, 0xbb, 0xb6, 0x22, 0x0d, 0xa4, 0xbd, - 0xa6, 0xf9, 0xc1, 0x32, 0xd2, 0xc0, 0x99, 0xb8, 0x1e, 0x0d, 0x57, 0x91, 0x26, 0x2f, 0x90, 0x37, - 0x3b, 0x86, 0x05, 0x28, 0xb4, 0x40, 0x7a, 0x1a, 0xd9, 0x31, 0x4d, 0x88, 0x11, 0x25, 0x3e, 0x1d, - 0xbb, 0x36, 0x55, 0x1a, 0x83, 0xcd, 0xbd, 0x0e, 0xa7, 0xb1, 0xf8, 0xf5, 0x68, 0x48, 0x73, 0x9a, - 0x02, 0x14, 0x5a, 0x40, 0x9c, 0x46, 0x36, 0x95, 0x3f, 0x01, 0x6f, 0x79, 0x98, 0x52, 0xe4, 0x60, - 0x65, 0x73, 0x20, 0xed, 0xb5, 0x4c, 0x79, 0x15, 0x69, 0x0f, 0xf9, 0x23, 0x61, 0x80, 0x56, 0x0a, - 0x91, 0xbf, 0x05, 0x0f, 0x78, 0xaa, 0x38, 0x54, 0x9a, 0x09, 0xfc, 0xc9, 0x2a, 0xd2, 0x1e, 0xa5, - 0x3e, 0xb8, 0x05, 0xfe, 0xf5, 0xea, 0xa0, 0x27, 0xf4, 0x3b, 0xb1, 0xed, 0x10, 0x53, 0x7a, 0xc6, - 0x42, 0xd7, 0x77, 0xac, 0xec, 0xb1, 0x8c, 0xc0, 0x36, 0x43, 0xa1, 0x83, 0x99, 0xb2, 0x35, 0x90, - 0xf6, 0x76, 0x9e, 0xf6, 0x74, 0x5e, 0x1e, 0x3d, 0x2d, 0x8f, 0x7e, 0xe2, 0x2f, 0xcc, 0xa3, 0x55, - 0xa4, 0x75, 0x38, 0x39, 0x47, 0xc3, 0x3f, 0x5f, 0x1d, 0xa8, 0xb7, 0x9a, 0x41, 0xe7, 0xca, 0x3e, - 0x4b, 0x20, 0x96, 0x20, 0x3e, 0xee, 0xfc, 0x72, 0xfd, 0x72, 0x3f, 0xf3, 0x08, 0xff, 0x90, 0xc0, - 0xe3, 0x1b, 0xa5, 0xb0, 0x30, 0x0d, 0x88, 0x4f, 0xb1, 0xfc, 0x15, 0x68, 0x71, 0x5c, 0x5e, 0x90, - 0xc1, 0x32, 0xd2, 0x1e, 0x70, 0x58, 0x52, 0x8e, 0x6e, 0x31, 0xc7, 0xa4, 0x18, 0x82, 0x7a, 0x64, - 0xcb, 0x08, 0x74, 0xa6, 0x31, 0xad, 0x4b, 0xfc, 0xb1, 0x8d, 0x18, 0x56, 0x1a, 0x49, 0x4e, 0xfd, - 0x5b, 0x39, 0x3d, 0x4b, 0x5b, 0xce, 0x1c, 0xbc, 0x8e, 0xb4, 0x8d, 0x55, 0xa4, 0xf5, 0x38, 0x6d, - 0xe9, 0x39, 0x7c, 0xf1, 0x8f, 0x26, 0x59, 0xed, 0xf4, 0x6e, 0x18, 0x5f, 0x5d, 0x4b, 0x49, 0x23, - 0x0d, 0xf1, 0x0c, 0xaf, 0xbb, 0x91, 0x4a, 0xc9, 0x37, 0xee, 0x9d, 0xfc, 0x09, 0xd8, 0xa6, 0xae, - 0xe3, 0xe3, 0x50, 0xf4, 0xcf, 0xc7, 0x79, 0xcd, 0xf8, 0x7d, 0x7d, 0x3b, 0x88, 0x87, 0xc7, 0x3b, - 0x71, 0xa5, 0xc4, 0x01, 0xee, 0x26, 0x65, 0x2a, 0x26, 0x9a, 0x96, 0x09, 0xfe, 0xde, 0x00, 0xca, - 0x29, 0x75, 0xce, 0xe6, 0x41, 0x7c, 0x7d, 0xc6, 0x90, 0x6f, 0xa3, 0xd0, 0xe6, 0xed, 0xbe, 0x2e, - 0x35, 0xc6, 0x40, 0xa6, 0x82, 0x78, 0xcc, 0xc7, 0x24, 0x95, 0xa5, 0x63, 0x1e, 0x2e, 0x23, 0xad, - 0x5b, 0x76, 0x9b, 0x70, 0xee, 0x0a, 0xce, 0x5b, 0xef, 0xa0, 0xd5, 0xa5, 0x65, 0xf8, 0xfa, 0xf5, - 0xba, 0x00, 0x83, 0x3a, 0x4d, 0xb2, 0xfe, 0x1e, 0x96, 0x77, 0x85, 0x94, 0x64, 0xf3, 0xfe, 0x32, - 0xd2, 0x5a, 0xd9, 0xae, 0xb8, 0x7b, 0x55, 0xc0, 0x5f, 0x1b, 0xa0, 0x7d, 0x4a, 0x9d, 0x13, 0x7b, - 0xcd, 0x92, 0x7f, 0x08, 0xb6, 0x98, 0xcb, 0x66, 0x7c, 0x6c, 0x5a, 0x66, 0x77, 0x15, 0x69, 0x6d, - 0x31, 0xf4, 0xf1, 0x35, 0xb4, 0xb8, 0x59, 0xfe, 0x12, 0xec, 0xd8, 0x98, 0x4e, 0x43, 0x37, 0x88, - 0xc7, 0x42, 0xc8, 0xf7, 0x6e, 0xee, 0xa0, 0x60, 0x84, 0x56, 0x11, 0x5a, 0xd0, 0xbc, 0xb9, 0x16, - 0xcd, 0xcf, 0x41, 0xaf, 0x28, 0x44, 0x79, 0x8f, 0xa4, 0x3d, 0xc3, 0x55, 0x16, 0xa3, 0x94, 0xf5, - 0x4a, 0xb7, 0x28, 0x72, 0x3a, 0x4a, 0xbc, 0x35, 0xd2, 0x21, 0xb7, 0xb0, 0x47, 0x2e, 0xf1, 0x7a, - 0x35, 0x2e, 0x45, 0xd6, 0xb8, 0x6f, 0x64, 0xff, 0xd3, 0x90, 0x17, 0x13, 0xcd, 0x87, 0x9c, 0x8b, - 0x70, 0x1e, 0xc4, 0xab, 0xf0, 0x7b, 0x14, 0x22, 0x8f, 0xca, 0x9f, 0x83, 0x16, 0x9a, 0xb3, 0x0b, - 0x12, 0xba, 0x6c, 0x91, 0x48, 0xd0, 0x32, 0x95, 0x5a, 0x87, 0x39, 0x54, 0xfe, 0x02, 0x6c, 0x07, - 0x09, 0x83, 0xd8, 0xc8, 0xbb, 0xfa, 0xed, 0x6f, 0x07, 0x77, 0x61, 0x36, 0xe3, 0x85, 0x6c, 0x09, - 0xf8, 0xf1, 0xc3, 0x38, 0xd8, 0x9c, 0x48, 0xc4, 0x5b, 0x8c, 0x29, 0x8d, 0xf7, 0x69, 0xd4, 0x04, - 0x9b, 0xa7, 0xd4, 0x91, 0x9f, 0x83, 0x76, 0xe9, 0x33, 0x0f, 0x2b, 0x7c, 0xdd, 0xf8, 0xfe, 0xf4, - 0xf7, 0xef, 0xc6, 0x64, 0xbd, 0xf5, 0x1c, 0xb4, 0x4b, 0xdb, 0xbf, 0x86, 0xbf, 0x88, 0xa9, 0xe3, - 0xaf, 0x5a, 0xae, 0xf2, 0x02, 0xbc, 0x53, 0xbd, 0x58, 0x9f, 0x54, 0x93, 0x54, 0x82, 0xfb, 0x47, - 0xf7, 0x00, 0x67, 0xae, 0xcf, 0x41, 0x2b, 0x5f, 0x2a, 0x5a, 0x35, 0x43, 0x06, 0xe8, 0x7f, 0x74, - 0x07, 0xa0, 0xa8, 0x58, 0x69, 0x94, 0x6a, 0x14, 0x2b, 0x62, 0xea, 0x14, 0xab, 0xea, 0xd4, 0x98, - 0xbf, 0xd4, 0xa5, 0x35, 0xfc, 0x45, 0x4c, 0x1d, 0x7f, 0x55, 0x67, 0xf5, 0xb7, 0x7e, 0xbe, 0x7e, - 0xb9, 0x2f, 0x99, 0xdf, 0xbd, 0x5e, 0xaa, 0xd2, 0x9b, 0xa5, 0x2a, 0xfd, 0xbb, 0x54, 0xa5, 0x17, - 0x57, 0xea, 0xc6, 0x9b, 0x2b, 0x75, 0xe3, 0xef, 0x2b, 0x75, 0xe3, 0x87, 0x4f, 0x1d, 0x97, 0x5d, - 0xcc, 0x27, 0xfa, 0x94, 0x78, 0x06, 0xa7, 0x3d, 0x98, 0xa1, 0x09, 0x15, 0xbf, 0x8d, 0xcb, 0xcf, - 0x8c, 0x9f, 0xb2, 0x7f, 0xa6, 0x6c, 0x11, 0x60, 0x3a, 0xd9, 0x4e, 0xfe, 0x8a, 0x1c, 0xfd, 0x17, - 0x00, 0x00, 0xff, 0xff, 0xab, 0xfb, 0x5c, 0x38, 0x6f, 0x0b, 0x00, 0x00, + 0x18, 0xae, 0xd3, 0xb4, 0x6c, 0xa6, 0x29, 0x9b, 0x35, 0x61, 0x37, 0x8d, 0x50, 0x1c, 0xcd, 0xa2, + 0x25, 0x74, 0xa9, 0x4d, 0xb7, 0xe2, 0x43, 0x95, 0x38, 0xd4, 0x04, 0xa1, 0x20, 0x55, 0x42, 0xee, + 0xf6, 0xc2, 0x61, 0xa3, 0x49, 0x3c, 0xb8, 0x96, 0xe2, 0x0f, 0x79, 0x9c, 0x8a, 0xdc, 0xd0, 0x1e, + 0x39, 0xed, 0x3f, 0xe0, 0xc0, 0x1f, 0xe8, 0x61, 0x05, 0x07, 0xfe, 0xc0, 0x8a, 0x53, 0xc5, 0x89, + 0x93, 0x41, 0xe9, 0xa1, 0xf7, 0xfc, 0x02, 0xe4, 0x99, 0xb1, 0x3d, 0x4e, 0x6d, 0x55, 0x45, 0xe1, + 0x12, 0x65, 0xde, 0xf7, 0x99, 0x67, 0xe6, 0x7d, 0xde, 0x8f, 0x31, 0x78, 0xcf, 0xc4, 0xc4, 0xf1, + 0x88, 0x16, 0x60, 0xdf, 0x0b, 0x42, 0xa2, 0x9d, 0xef, 0x6b, 0x0e, 0xb1, 0x88, 0xea, 0x07, 0x5e, + 0xe8, 0xc9, 0x0f, 0x98, 0x57, 0xe5, 0x5e, 0xf5, 0x7c, 0xbf, 0xfd, 0x00, 0x39, 0xb6, 0xeb, 0x69, + 0xf4, 0x97, 0xa1, 0xda, 0x4d, 0xcb, 0xb3, 0x3c, 0xfa, 0x57, 0x8b, 0xff, 0x71, 0xeb, 0x8e, 0xe5, + 0x79, 0xd6, 0x04, 0x6b, 0x74, 0x35, 0x9a, 0x7e, 0xaf, 0x21, 0x77, 0xc6, 0x5d, 0xca, 0xb2, 0x2b, + 0xb4, 0x1d, 0x4c, 0x42, 0xe4, 0xf8, 0xc9, 0xde, 0xb1, 0x17, 0x9f, 0x3b, 0x64, 0xa4, 0x6c, 0xc1, + 0x5d, 0x8f, 0xd8, 0x2a, 0xbe, 0x25, 0xbf, 0x2c, 0x77, 0x74, 0x0a, 0x22, 0xf1, 0x4c, 0x3c, 0xe1, + 0x1b, 0xe1, 0x2f, 0xeb, 0xe0, 0xfe, 0x31, 0xb1, 0xbe, 0x0c, 0x30, 0x0a, 0xb1, 0x41, 0x41, 0xf2, + 0x57, 0x60, 0x8b, 0x4c, 0x47, 0xc4, 0x47, 0x63, 0x3c, 0xb4, 0xcd, 0x96, 0xd4, 0x95, 0x7a, 0x55, + 0xfd, 0xfd, 0x79, 0xa4, 0x80, 0x13, 0x6e, 0x1e, 0xf4, 0x17, 0x91, 0x22, 0xcf, 0x90, 0x33, 0x39, + 0x84, 0x02, 0x14, 0x1a, 0x20, 0x59, 0x0d, 0xcc, 0x98, 0x26, 0xc0, 0x88, 0x78, 0x2e, 0x19, 0xda, + 0x26, 0x69, 0x55, 0xba, 0xeb, 0xbd, 0x6d, 0x46, 0x63, 0x30, 0xf3, 0xa0, 0x4f, 0x32, 0x1a, 0x01, + 0x0a, 0x0d, 0xc0, 0x57, 0x03, 0x93, 0xc8, 0x1f, 0x81, 0xb7, 0x1c, 0x4c, 0x08, 0xb2, 0x70, 0x6b, + 0xbd, 0x2b, 0xf5, 0x6a, 0xba, 0xbc, 0x88, 0x94, 0xb7, 0xd9, 0x26, 0xee, 0x80, 0x46, 0x02, 0x91, + 0xbf, 0x06, 0xf7, 0x58, 0xa8, 0x38, 0x68, 0x55, 0x29, 0xfc, 0xe9, 0x22, 0x52, 0xee, 0x27, 0x67, + 0x30, 0x0f, 0xfc, 0xf3, 0xf5, 0x5e, 0x93, 0xeb, 0x77, 0x64, 0x9a, 0x01, 0x26, 0xe4, 0x24, 0x0c, + 0x6c, 0xd7, 0x32, 0xd2, 0xcd, 0x32, 0x02, 0x9b, 0x21, 0x0a, 0x2c, 0x1c, 0xb6, 0x36, 0xba, 0x52, + 0x6f, 0xeb, 0x59, 0x53, 0x65, 0xe9, 0x51, 0x93, 0xf4, 0xa8, 0x47, 0xee, 0x4c, 0x3f, 0x58, 0x44, + 0xca, 0x36, 0x23, 0x67, 0x68, 0xf8, 0xc7, 0xeb, 0xbd, 0xce, 0x8d, 0xfa, 0x50, 0x99, 0xb2, 0xcf, + 0x29, 0xc4, 0xe0, 0xc4, 0x87, 0xbd, 0x97, 0xd7, 0x17, 0xbb, 0xe9, 0x89, 0x3f, 0x5d, 0x5f, 0xec, + 0x3e, 0xe4, 0xd9, 0x5a, 0xca, 0x08, 0xfc, 0x5d, 0x02, 0x8f, 0x96, 0x6c, 0x06, 0x26, 0xbe, 0xe7, + 0x12, 0x2c, 0x7f, 0x01, 0x6a, 0x8c, 0x22, 0xcb, 0x55, 0x77, 0x1e, 0x29, 0xf7, 0x18, 0x8c, 0x66, + 0xaa, 0x21, 0x86, 0x4f, 0xf3, 0xc4, 0x4f, 0x1d, 0x98, 0x32, 0x02, 0xdb, 0xe3, 0x98, 0xd6, 0xf6, + 0xdc, 0xa1, 0x89, 0x42, 0xdc, 0xaa, 0xd0, 0x70, 0xdb, 0x37, 0xc2, 0x7d, 0x9e, 0x54, 0xa3, 0xde, + 0x7d, 0x13, 0x29, 0x6b, 0x8b, 0x48, 0x69, 0x32, 0xda, 0xdc, 0x76, 0xf8, 0xea, 0x6f, 0x45, 0x32, + 0xea, 0x89, 0xad, 0x1f, 0x9b, 0x5e, 0x56, 0x68, 0x8d, 0xf5, 0xf1, 0x04, 0xaf, 0xba, 0xc6, 0x72, + 0xc1, 0x57, 0xee, 0x1c, 0xfc, 0x11, 0xd8, 0x24, 0xb6, 0xe5, 0xe2, 0x80, 0x97, 0xd6, 0x87, 0x59, + 0x3a, 0x99, 0xbd, 0xbc, 0x52, 0xf8, 0xc6, 0xc3, 0x27, 0x71, 0x12, 0xf9, 0x62, 0x29, 0x85, 0x62, + 0xc0, 0x70, 0x87, 0x66, 0x50, 0x34, 0x25, 0x19, 0x84, 0xbf, 0x56, 0x40, 0xeb, 0x98, 0x58, 0x27, + 0x53, 0x3f, 0x36, 0x9f, 0x84, 0xc8, 0x35, 0x51, 0x60, 0xb2, 0x26, 0x59, 0x95, 0x50, 0x43, 0x20, + 0x13, 0x4e, 0x3c, 0x64, 0xcd, 0x95, 0x28, 0xb6, 0xad, 0xef, 0xcf, 0x23, 0xa5, 0x91, 0x3f, 0x96, + 0x72, 0xee, 0x70, 0xce, 0x1b, 0xfb, 0xa0, 0xd1, 0x20, 0x79, 0xf8, 0x4a, 0xa4, 0xd4, 0x96, 0xa4, + 0x54, 0x32, 0x29, 0x0b, 0xb5, 0x81, 0x67, 0xa0, 0x5b, 0xe6, 0x4b, 0xdb, 0xa3, 0x9f, 0x9f, 0x42, + 0x12, 0x8d, 0xf8, 0xf1, 0x3c, 0x52, 0x6a, 0xe9, 0x14, 0xba, 0x7d, 0x08, 0xc1, 0x9f, 0x2b, 0xa0, + 0x7e, 0x4c, 0xac, 0x23, 0x73, 0xc5, 0x69, 0x79, 0x02, 0x36, 0x42, 0x3b, 0x9c, 0xb0, 0xae, 0xab, + 0xe9, 0x8d, 0x45, 0xa4, 0xd4, 0xf9, 0x38, 0x89, 0xcd, 0xd0, 0x60, 0x6e, 0xf9, 0x73, 0xb0, 0x65, + 0x62, 0x32, 0x0e, 0x6c, 0x3f, 0xee, 0x2a, 0x2e, 0xf1, 0xc3, 0xec, 0x00, 0xc1, 0x09, 0x0d, 0x11, + 0x2a, 0xe4, 0xa5, 0xfa, 0x5f, 0xf3, 0xf2, 0x78, 0x29, 0x2f, 0xef, 0x64, 0x79, 0x49, 0x05, 0x81, + 0xa7, 0xa0, 0x29, 0xae, 0xf3, 0xe3, 0x29, 0xa9, 0x37, 0xa6, 0x3e, 0xef, 0xd0, 0xb4, 0xce, 0x1a, + 0xa2, 0xf8, 0x49, 0x87, 0xb2, 0xb2, 0x4a, 0x66, 0x87, 0x81, 0x1d, 0xef, 0x1c, 0xaf, 0x56, 0xfb, + 0xdc, 0xcd, 0x2a, 0x77, 0xbd, 0xd9, 0xff, 0x3c, 0x3b, 0xc4, 0x80, 0xf9, 0xec, 0x10, 0x4d, 0xe9, + 0xec, 0xf8, 0x4d, 0xa2, 0xfa, 0x9c, 0xfa, 0xf1, 0xf0, 0xfd, 0x16, 0x05, 0xc8, 0x21, 0xf2, 0xa7, + 0xa0, 0x86, 0xa6, 0xe1, 0x99, 0x17, 0xd8, 0xe1, 0x8c, 0xaa, 0x53, 0xd3, 0x5b, 0xa5, 0x77, 0xc9, + 0xa0, 0xf2, 0x67, 0x60, 0xd3, 0xa7, 0x0c, 0xfc, 0x0d, 0xd8, 0x51, 0x6f, 0x3e, 0x64, 0xec, 0x08, + 0xbd, 0x1a, 0x3f, 0x01, 0x06, 0x87, 0x1f, 0x1e, 0xc4, 0x71, 0x64, 0x44, 0x71, 0x28, 0x5d, 0x1e, + 0xca, 0x0f, 0xe9, 0x97, 0xc7, 0xd2, 0x2d, 0x79, 0x50, 0xa2, 0x29, 0x09, 0xea, 0x59, 0x54, 0x05, + 0xeb, 0xc7, 0xc4, 0x92, 0x5f, 0x80, 0x7a, 0xee, 0xc3, 0x04, 0x16, 0x5c, 0x68, 0xe9, 0x59, 0x6c, + 0xef, 0xde, 0x8e, 0x49, 0x6b, 0xf3, 0x05, 0xa8, 0xe7, 0x1e, 0xa5, 0x12, 0x7e, 0x11, 0x53, 0xc6, + 0x5f, 0x34, 0xd8, 0xe5, 0x19, 0x78, 0xb7, 0x78, 0xa8, 0x3f, 0x2d, 0x26, 0x29, 0x04, 0xb7, 0x0f, + 0xee, 0x00, 0x4e, 0x8f, 0x3e, 0x05, 0xb5, 0x6c, 0x58, 0x29, 0xc5, 0x0c, 0x29, 0xa0, 0xfd, 0xc1, + 0x2d, 0x00, 0x51, 0xb1, 0x5c, 0x2b, 0x96, 0x28, 0x26, 0x62, 0xca, 0x14, 0x2b, 0x2a, 0xe7, 0x98, + 0x3f, 0x57, 0xca, 0x25, 0xfc, 0x22, 0xa6, 0x8c, 0xbf, 0xa8, 0xb2, 0xda, 0x1b, 0x3f, 0x5e, 0x5f, + 0xec, 0x4a, 0xfa, 0x37, 0x6f, 0xe6, 0x1d, 0xe9, 0x72, 0xde, 0x91, 0xfe, 0x99, 0x77, 0xa4, 0x57, + 0x57, 0x9d, 0xb5, 0xcb, 0xab, 0xce, 0xda, 0x5f, 0x57, 0x9d, 0xb5, 0xef, 0x3e, 0xb6, 0xec, 0xf0, + 0x6c, 0x3a, 0x52, 0xc7, 0x9e, 0xa3, 0x31, 0xda, 0xbd, 0x09, 0x1a, 0x11, 0xfe, 0x5f, 0x3b, 0xff, + 0x44, 0xa8, 0xe8, 0x70, 0xe6, 0x63, 0x32, 0xda, 0xa4, 0x5f, 0x48, 0x07, 0xff, 0x06, 0x00, 0x00, + 0xff, 0xff, 0x17, 0x3b, 0xe8, 0xab, 0x34, 0x0c, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/subspaces/types/msgs.pb.go b/x/subspaces/types/msgs.pb.go index 5d10ea8f53..456952f486 100644 --- a/x/subspaces/types/msgs.pb.go +++ b/x/subspaces/types/msgs.pb.go @@ -10,6 +10,7 @@ import ( github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" _ "github.com/cosmos/cosmos-sdk/types/msgservice" + _ "github.com/cosmos/cosmos-sdk/types/tx/amino" _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" @@ -1908,106 +1909,114 @@ func init() { func init() { proto.RegisterFile("desmos/subspaces/v3/msgs.proto", fileDescriptor_35d68359a074bdd9) } var fileDescriptor_35d68359a074bdd9 = []byte{ - // 1570 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x59, 0x4b, 0x6f, 0x1b, 0x45, - 0x1c, 0x8f, 0x1f, 0x49, 0x9a, 0x71, 0xe2, 0xb4, 0xdb, 0x97, 0xb3, 0x2d, 0xde, 0x68, 0xdb, 0x90, - 0x34, 0x10, 0x5b, 0x4d, 0x04, 0x94, 0x54, 0x20, 0xd9, 0x7d, 0x29, 0x82, 0xb4, 0xd5, 0xb6, 0x15, - 0x12, 0x12, 0xb2, 0xd6, 0xde, 0xa9, 0xb3, 0x8a, 0xbd, 0x6b, 0xed, 0xac, 0x1d, 0xc2, 0x11, 0x24, - 0x4e, 0x48, 0xf0, 0x0d, 0xb8, 0x21, 0x54, 0x2e, 0x1c, 0x40, 0x7c, 0x00, 0x0e, 0x14, 0x21, 0xa4, - 0x8a, 0x13, 0xa7, 0x05, 0x39, 0x12, 0x45, 0x82, 0x93, 0x3f, 0x01, 0xda, 0x99, 0xf1, 0xec, 0xac, - 0xe3, 0xb1, 0x9d, 0xb0, 0x40, 0x10, 0x9c, 0xbc, 0x3b, 0xf3, 0xfb, 0x3f, 0xe6, 0xf7, 0x7f, 0xcc, - 0xec, 0x18, 0x64, 0x0d, 0x88, 0xea, 0x36, 0xca, 0xa3, 0x66, 0x19, 0x35, 0xf4, 0x0a, 0x44, 0xf9, - 0xd6, 0x5a, 0xbe, 0x8e, 0xaa, 0x28, 0xd7, 0x70, 0x6c, 0xd7, 0x96, 0x4e, 0x92, 0xf9, 0x1c, 0x9b, - 0xcf, 0xb5, 0xd6, 0xe4, 0x53, 0x55, 0xbb, 0x6a, 0xe3, 0xf9, 0xbc, 0xff, 0x44, 0xa0, 0x72, 0xb6, - 0x62, 0x63, 0x55, 0x65, 0x1d, 0xc1, 0x7c, 0xeb, 0x72, 0x19, 0xba, 0xfa, 0xe5, 0x7c, 0xc5, 0x36, - 0x2d, 0x3a, 0x3f, 0x47, 0xe6, 0x4b, 0x44, 0x90, 0xbc, 0xd0, 0xa9, 0xb3, 0x54, 0xb4, 0x8e, 0xaa, - 0xf9, 0xd6, 0x65, 0xff, 0x87, 0x4e, 0x2c, 0x8a, 0xdc, 0x2b, 0xb9, 0x0e, 0xd4, 0x51, 0xd3, 0xd9, - 0x1d, 0x0a, 0x7c, 0x08, 0x61, 0xd5, 0xd1, 0x2d, 0x97, 0x00, 0xd5, 0xf7, 0xe3, 0xe0, 0xc4, 0x26, - 0xaa, 0x5e, 0x73, 0xa0, 0xee, 0xc2, 0x7b, 0x14, 0x2d, 0x5d, 0x00, 0x49, 0x4b, 0xaf, 0xc3, 0x4c, - 0x6c, 0x3e, 0xb6, 0x34, 0x55, 0x9c, 0xed, 0x78, 0x4a, 0x6a, 0x57, 0xaf, 0xd7, 0xd6, 0x55, 0x7f, - 0x54, 0xd5, 0xf0, 0xa4, 0x74, 0x05, 0xa4, 0x0c, 0x88, 0x2a, 0x8e, 0xd9, 0x70, 0x4d, 0xdb, 0xca, - 0xc4, 0x31, 0xf6, 0x4c, 0xc7, 0x53, 0x24, 0x82, 0xe5, 0x26, 0x55, 0x8d, 0x87, 0x4a, 0xaf, 0x82, - 0x71, 0x7b, 0xc7, 0x82, 0x4e, 0x26, 0x81, 0x65, 0x96, 0x3a, 0x9e, 0x32, 0x4d, 0x64, 0xf0, 0xb0, - 0xfa, 0xc3, 0x17, 0x2b, 0xa7, 0x28, 0x21, 0x05, 0xc3, 0x70, 0x20, 0x42, 0xf7, 0x5c, 0xc7, 0xb4, - 0xaa, 0x1a, 0x11, 0x93, 0xae, 0x83, 0xc9, 0x8a, 0xef, 0xb0, 0xed, 0x64, 0x92, 0x58, 0xc3, 0x72, - 0xc7, 0x53, 0xd2, 0x44, 0x03, 0x9d, 0x10, 0xeb, 0xe8, 0x8a, 0xae, 0x4f, 0xbf, 0xfb, 0xf4, 0xf3, - 0xe5, 0xee, 0x9b, 0x5a, 0x06, 0x73, 0xfb, 0x78, 0xd0, 0x20, 0x6a, 0xd8, 0x16, 0x82, 0xd2, 0x0d, - 0x90, 0xea, 0x32, 0x59, 0x32, 0x0d, 0x4c, 0x4b, 0xb2, 0x78, 0xb1, 0xed, 0x29, 0xa0, 0x0b, 0xdd, - 0xb8, 0x1e, 0x2c, 0x9c, 0x83, 0xaa, 0x1a, 0xe8, 0xbe, 0x6d, 0x18, 0xea, 0x37, 0x71, 0x30, 0xbb, - 0x89, 0xaa, 0x37, 0x0c, 0xd3, 0x65, 0x54, 0x47, 0xa3, 0x9a, 0x45, 0x2c, 0x7e, 0x80, 0x88, 0x25, - 0x0e, 0x11, 0xb1, 0xe4, 0xe1, 0x22, 0x56, 0x00, 0x13, 0xc8, 0xac, 0xfa, 0x0a, 0xc6, 0xb1, 0x82, - 0x4b, 0x1d, 0x4f, 0x99, 0xa1, 0x4b, 0xc2, 0xe3, 0x62, 0x0d, 0x54, 0x70, 0x3d, 0xe5, 0x87, 0x8b, - 0xbe, 0xa8, 0x73, 0xe0, 0x6c, 0x0f, 0x91, 0xdd, 0x58, 0xa9, 0x8f, 0x62, 0x38, 0xa3, 0xaf, 0xc3, - 0x1a, 0xe4, 0x32, 0x3a, 0x22, 0x9a, 0x83, 0x75, 0xc4, 0x23, 0x59, 0xc7, 0x39, 0x9c, 0x75, 0x61, - 0x5f, 0xd9, 0x4a, 0xbe, 0x8b, 0x83, 0xe3, 0x41, 0x4e, 0xc2, 0x0a, 0x8e, 0xc4, 0xbf, 0x23, 0x5f, - 0x5e, 0x01, 0x53, 0x0d, 0xdd, 0x81, 0x96, 0xeb, 0xfb, 0xe8, 0xe7, 0xcc, 0x4c, 0x71, 0xbe, 0xed, - 0x29, 0xc7, 0xee, 0xe2, 0x41, 0xec, 0xe1, 0x71, 0xa2, 0x83, 0xc1, 0x54, 0xed, 0x18, 0x79, 0xde, - 0x30, 0xf8, 0x02, 0x1f, 0x8f, 0xaa, 0xc0, 0xdf, 0x02, 0x99, 0x5e, 0x32, 0x59, 0x7d, 0x17, 0x00, - 0x40, 0x64, 0xa8, 0xcb, 0xe9, 0x4c, 0x51, 0x6d, 0x7b, 0xca, 0x14, 0x05, 0x62, 0x87, 0x4f, 0x50, - 0x4a, 0x19, 0x50, 0xd5, 0xa6, 0xe8, 0xcb, 0x86, 0xa1, 0x7e, 0x1b, 0x07, 0xe9, 0x6e, 0x4a, 0x46, - 0x1b, 0xaa, 0xb0, 0x73, 0xf1, 0x43, 0x38, 0xc7, 0xa2, 0x9d, 0x38, 0x40, 0xb4, 0x93, 0xa3, 0x47, - 0xbb, 0x00, 0x26, 0xa0, 0x61, 0x06, 0xd1, 0xe2, 0xaa, 0x82, 0x8c, 0x0f, 0xa8, 0x0a, 0x02, 0xa0, - 0x55, 0x41, 0xd1, 0x19, 0x70, 0x26, 0x4c, 0x25, 0x2b, 0x89, 0xaf, 0x08, 0xcb, 0x9b, 0x76, 0x0b, - 0x1e, 0x3d, 0x96, 0x5f, 0x03, 0x33, 0x16, 0xdc, 0x29, 0x05, 0x89, 0x9f, 0xc0, 0x5a, 0x16, 0xdb, - 0x9e, 0x92, 0xba, 0x0d, 0x77, 0xb8, 0xdc, 0x3f, 0x45, 0xd9, 0xe7, 0xd1, 0xaa, 0x96, 0xb2, 0x18, - 0x88, 0xef, 0x34, 0xc9, 0x48, 0x3a, 0x0d, 0xe1, 0x94, 0x23, 0x8e, 0x71, 0xfa, 0x7b, 0x0c, 0xb7, - 0x19, 0xda, 0x84, 0x8e, 0x1c, 0xab, 0x01, 0x11, 0x89, 0x48, 0x88, 0x90, 0x71, 0x1f, 0x08, 0xad, - 0x96, 0x51, 0xf1, 0x34, 0x01, 0x24, 0xd6, 0x24, 0x1e, 0x20, 0xe8, 0xdc, 0x72, 0xec, 0x66, 0xe3, - 0xbf, 0x53, 0xc8, 0x77, 0xc0, 0x49, 0x03, 0x3e, 0xd4, 0x9b, 0x35, 0xb7, 0xd4, 0x80, 0x4e, 0xdd, - 0x44, 0xc8, 0xb4, 0x2d, 0x94, 0x19, 0x9f, 0x4f, 0x2c, 0x4d, 0x15, 0xb3, 0x1d, 0x4f, 0x91, 0xbb, - 0x1a, 0xf6, 0x81, 0x54, 0x4d, 0xa2, 0xa3, 0x77, 0x83, 0x41, 0xe9, 0x1a, 0x98, 0x35, 0x2d, 0xd3, - 0x35, 0xf5, 0x5a, 0xa9, 0x0e, 0xeb, 0x65, 0xe8, 0xa0, 0xcc, 0x04, 0x56, 0x26, 0x77, 0x3c, 0xe5, - 0x0c, 0x51, 0xd6, 0x03, 0x50, 0xb5, 0x34, 0x1d, 0xd9, 0x24, 0x03, 0xfc, 0x6e, 0x30, 0x19, 0xd5, - 0x6e, 0xf0, 0x06, 0x90, 0xf7, 0x07, 0x9a, 0xed, 0x07, 0x2f, 0x83, 0x63, 0x55, 0x7f, 0x20, 0xd8, - 0x0d, 0xb2, 0x6d, 0x4f, 0x99, 0xc4, 0x20, 0x1c, 0xa5, 0x59, 0x62, 0xbd, 0x0b, 0x52, 0xb5, 0x49, - 0xfc, 0xb8, 0x61, 0xa8, 0x5f, 0x93, 0x4d, 0xdb, 0x6f, 0x5e, 0x91, 0x27, 0x10, 0xef, 0x56, 0xfc, - 0x40, 0x6e, 0xfd, 0x0d, 0x3b, 0x40, 0xa4, 0xe7, 0x3b, 0x52, 0xa4, 0x21, 0x12, 0x59, 0x91, 0x7e, - 0x49, 0x18, 0xf6, 0x5b, 0xd9, 0x51, 0x62, 0xf8, 0x0e, 0x48, 0xfb, 0xfd, 0x9c, 0xab, 0x70, 0xd2, - 0xfe, 0x2f, 0xb5, 0x3d, 0x65, 0xfa, 0x36, 0xdc, 0xe1, 0x8b, 0xfc, 0x74, 0xd0, 0xff, 0xf9, 0x42, - 0x9f, 0xb6, 0x02, 0x58, 0xf4, 0x3b, 0x00, 0xe1, 0x34, 0x44, 0x1b, 0xe3, 0xf4, 0xd3, 0x38, 0xae, - 0x87, 0x7b, 0x30, 0xe0, 0x9b, 0x2f, 0xe3, 0x7f, 0x9e, 0xdd, 0x2b, 0x20, 0xc5, 0x77, 0xa4, 0x04, - 0x6e, 0x22, 0x5c, 0x6a, 0x86, 0x3a, 0x11, 0x0f, 0x8d, 0x9c, 0xc6, 0x8b, 0x40, 0x15, 0x33, 0xc5, - 0x08, 0xfd, 0x25, 0x86, 0x77, 0x12, 0xb2, 0xcd, 0x1c, 0xa5, 0x34, 0x8d, 0x7a, 0x3b, 0x3d, 0x8f, - 0x13, 0xa7, 0x67, 0x9d, 0x8c, 0x86, 0x4f, 0xe2, 0xe0, 0xf4, 0x26, 0xaa, 0x16, 0x0c, 0xc3, 0x9f, - 0xbb, 0x6f, 0x1f, 0x25, 0x26, 0xae, 0x82, 0x64, 0x13, 0x31, 0x1e, 0x16, 0x83, 0x96, 0xe8, 0x8f, - 0x8a, 0x59, 0xc0, 0x42, 0x91, 0x67, 0x95, 0x02, 0x9e, 0xe9, 0xcb, 0x13, 0x63, 0xf2, 0x33, 0x52, - 0xa1, 0x1a, 0xac, 0xd3, 0x02, 0xbe, 0xe9, 0xd8, 0xf5, 0xff, 0xe9, 0x1c, 0x58, 0xa4, 0x02, 0xb2, - 0x18, 0xa7, 0xbf, 0x92, 0xec, 0xa4, 0xb5, 0xfc, 0x17, 0x34, 0xbc, 0x08, 0x4e, 0x7c, 0x7f, 0x8a, - 0xd6, 0x9e, 0xae, 0x99, 0x3c, 0x4c, 0xd7, 0x1c, 0x8f, 0x30, 0xbf, 0xf7, 0x33, 0xcd, 0x62, 0xf1, - 0x3d, 0xc9, 0xef, 0x07, 0x0d, 0x83, 0xbb, 0x80, 0xbb, 0x09, 0xe1, 0x7d, 0x7b, 0x1b, 0x46, 0x17, - 0x90, 0x8f, 0x63, 0xe0, 0xb4, 0x6e, 0x18, 0xa6, 0x4f, 0xae, 0x5e, 0x2b, 0x3d, 0x84, 0xb0, 0xe4, - 0x62, 0x03, 0x99, 0xf8, 0x7c, 0x62, 0x29, 0xb5, 0x3a, 0x97, 0xa3, 0x4b, 0x2a, 0xeb, 0x08, 0xe6, - 0xe8, 0xad, 0x6d, 0xee, 0x9a, 0x6d, 0x5a, 0xc5, 0xbb, 0x8f, 0x3d, 0x65, 0xac, 0xe3, 0x29, 0xe7, - 0x89, 0x89, 0xbe, 0x5a, 0xd4, 0x47, 0x3f, 0x29, 0x4b, 0x55, 0xd3, 0xdd, 0x6a, 0x96, 0x73, 0x15, - 0xbb, 0x4e, 0x6f, 0x75, 0xe9, 0xcf, 0x0a, 0x32, 0xb6, 0xf3, 0xee, 0x6e, 0x03, 0x22, 0xac, 0x10, - 0x69, 0x27, 0x03, 0x1d, 0xc1, 0x42, 0x5f, 0x04, 0x53, 0x7a, 0xd3, 0xdd, 0xb2, 0x1d, 0xd3, 0xdd, - 0xa5, 0x41, 0xcf, 0x08, 0xa9, 0x0e, 0xa0, 0xeb, 0x69, 0x9f, 0xed, 0xe0, 0x9d, 0x56, 0x80, 0x80, - 0xce, 0x2e, 0xeb, 0xab, 0xbf, 0x9d, 0x00, 0x89, 0x4d, 0x54, 0x95, 0xb6, 0x40, 0xba, 0xe7, 0x0a, - 0xf8, 0xd9, 0x5c, 0x9f, 0xab, 0xee, 0xdc, 0xbe, 0x2b, 0x52, 0x39, 0x37, 0x1a, 0x8e, 0x1d, 0xad, - 0xcb, 0x60, 0x3a, 0x74, 0xff, 0x79, 0x51, 0x24, 0xcf, 0xa3, 0xe4, 0xe7, 0x47, 0x41, 0x31, 0x1b, - 0x5b, 0x20, 0xdd, 0x73, 0xfd, 0x27, 0x5c, 0x4d, 0x18, 0x27, 0x5e, 0x4d, 0xff, 0x2b, 0x3a, 0x09, - 0x82, 0x99, 0xf0, 0xf5, 0xdc, 0xc2, 0x10, 0x3a, 0x08, 0x4c, 0x5e, 0x19, 0x09, 0xc6, 0xcc, 0x94, - 0x40, 0x8a, 0xbf, 0x58, 0xba, 0x30, 0x90, 0x0d, 0x6a, 0xe2, 0xb9, 0x11, 0x40, 0xbc, 0x01, 0xfe, - 0x4e, 0x45, 0x68, 0x80, 0x03, 0x89, 0x0d, 0xf4, 0xb9, 0x64, 0xf0, 0x89, 0x0a, 0x5f, 0x30, 0x2c, - 0x0c, 0x61, 0x7a, 0x18, 0x51, 0x7d, 0x3f, 0xe0, 0xa5, 0x6d, 0x30, 0xdb, 0xfb, 0xf1, 0xbe, 0x38, - 0x98, 0x6a, 0x06, 0x94, 0xf3, 0x23, 0x02, 0xf9, 0x35, 0x85, 0x3f, 0xf3, 0x16, 0x06, 0x51, 0x1e, - 0x18, 0x5a, 0x19, 0x09, 0xc6, 0x9b, 0x09, 0x7f, 0xeb, 0x2c, 0x0c, 0x22, 0x7e, 0x04, 0x33, 0x7d, - 0x3f, 0x01, 0xa4, 0xf7, 0x62, 0xe0, 0xac, 0xe8, 0xfc, 0x2f, 0xa4, 0x46, 0x20, 0x20, 0xbf, 0x74, - 0x40, 0x01, 0x3e, 0x80, 0xbd, 0x67, 0xe6, 0xc5, 0xc1, 0x29, 0x30, 0x42, 0x00, 0x05, 0xa7, 0x53, - 0xc9, 0x05, 0x52, 0x9f, 0x93, 0xe9, 0xb2, 0x48, 0xcd, 0x7e, 0xac, 0xbc, 0x3a, 0x3a, 0x36, 0x44, - 0xb4, 0xe8, 0x18, 0x27, 0x5c, 0x82, 0x40, 0x40, 0x4c, 0xf4, 0x90, 0xb3, 0x8f, 0xbf, 0xf6, 0x3e, - 0xe7, 0x9e, 0xe5, 0x21, 0x71, 0xe3, 0x63, 0xbc, 0x3a, 0x3a, 0x96, 0x59, 0xfd, 0x20, 0x06, 0xe4, - 0x5b, 0x8e, 0x6e, 0xb9, 0xf7, 0xe9, 0xff, 0x95, 0x05, 0xb2, 0x61, 0xbd, 0xa3, 0xe3, 0xa6, 0x20, - 0x54, 0x29, 0x96, 0x91, 0xd7, 0x0f, 0x2e, 0xc3, 0xdc, 0xf9, 0x30, 0x06, 0xce, 0x69, 0xb0, 0x65, - 0x6f, 0xc3, 0xfe, 0xfe, 0xac, 0x89, 0xd9, 0x15, 0x0a, 0xc9, 0x57, 0x0f, 0x21, 0xc4, 0x6f, 0x5d, - 0xd8, 0xef, 0x42, 0xad, 0x66, 0xef, 0xe8, 0xd6, 0xa0, 0xad, 0x2b, 0x8c, 0x13, 0x6f, 0x5d, 0x61, - 0x1c, 0x5f, 0x69, 0xc4, 0xa1, 0xc0, 0xd4, 0xe2, 0x60, 0xcf, 0x03, 0x5b, 0xf9, 0x11, 0x81, 0xa1, - 0x9c, 0x17, 0x1d, 0xed, 0x84, 0xca, 0x04, 0x02, 0xe2, 0x9c, 0x1f, 0x72, 0xda, 0x29, 0xbe, 0xfe, - 0xb8, 0x9d, 0x8d, 0x3d, 0x69, 0x67, 0x63, 0x3f, 0xb7, 0xb3, 0xb1, 0x8f, 0xf6, 0xb2, 0x63, 0x4f, - 0xf6, 0xb2, 0x63, 0x3f, 0xee, 0x65, 0xc7, 0xde, 0x5c, 0xe5, 0x0e, 0x6d, 0x44, 0xf9, 0x4a, 0x4d, - 0x2f, 0x23, 0xfa, 0x9c, 0x6f, 0xbd, 0x90, 0x7f, 0x9b, 0xfb, 0x2f, 0x1d, 0x1f, 0xe2, 0xca, 0x13, - 0xf8, 0x1f, 0xf4, 0xb5, 0x3f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x09, 0x90, 0xc3, 0xa3, 0x34, 0x20, - 0x00, 0x00, + // 1699 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x5a, 0x4b, 0x6f, 0xdb, 0xc6, + 0x16, 0xb6, 0x1e, 0xb6, 0xe3, 0x91, 0x1f, 0x31, 0x13, 0xdb, 0x32, 0x93, 0x2b, 0xfa, 0x32, 0x71, + 0xfc, 0xb8, 0xb1, 0x04, 0xdb, 0xf7, 0xde, 0xa6, 0x0e, 0x5a, 0x40, 0xca, 0x0b, 0x46, 0xeb, 0x24, + 0x60, 0x12, 0x14, 0x28, 0x50, 0x08, 0x94, 0x38, 0x91, 0x09, 0x4b, 0xa4, 0xc0, 0xa1, 0xe4, 0xba, + 0xcb, 0x3e, 0x80, 0xb6, 0x28, 0xd0, 0xfe, 0x83, 0x2e, 0xba, 0xeb, 0x2a, 0x8b, 0xfe, 0x87, 0x66, + 0x55, 0xa4, 0x5d, 0x75, 0xc5, 0x14, 0xf2, 0x22, 0x8b, 0xee, 0xd4, 0x3f, 0x50, 0x70, 0x66, 0x44, + 0x0e, 0x29, 0x8d, 0x24, 0x2b, 0x4a, 0xeb, 0xa2, 0xdd, 0xd8, 0xe4, 0x99, 0xef, 0x9c, 0x99, 0xf9, + 0xce, 0x6b, 0x38, 0x36, 0x48, 0x69, 0x10, 0x55, 0x4c, 0x94, 0x41, 0xb5, 0x02, 0xaa, 0xaa, 0x45, + 0x88, 0x32, 0xf5, 0xed, 0x4c, 0x05, 0x95, 0x50, 0xba, 0x6a, 0x99, 0xb6, 0x29, 0x9c, 0x23, 0xe3, + 0x69, 0x6f, 0x3c, 0x5d, 0xdf, 0x16, 0x67, 0xd5, 0x8a, 0x6e, 0x98, 0x19, 0xfc, 0x93, 0xe0, 0xc4, + 0xf3, 0x25, 0xb3, 0x64, 0xe2, 0xc7, 0x8c, 0xfb, 0x44, 0xa5, 0xa9, 0xa2, 0x89, 0xad, 0x17, 0x54, + 0x04, 0x33, 0xf5, 0xcd, 0x02, 0xb4, 0xd5, 0xcd, 0x4c, 0xd1, 0xd4, 0x0d, 0x3a, 0xbe, 0x48, 0xc6, + 0xf3, 0x44, 0x91, 0xbc, 0xd0, 0xa1, 0x05, 0xaa, 0x5a, 0x41, 0xa5, 0x4c, 0x7d, 0xd3, 0xfd, 0x45, + 0x07, 0x56, 0x78, 0x2b, 0xce, 0xdb, 0x16, 0x54, 0x51, 0xcd, 0x3a, 0xea, 0x09, 0x7c, 0x0c, 0x61, + 0xc9, 0x52, 0x0d, 0x9b, 0x00, 0xe5, 0x6f, 0xa2, 0x60, 0x76, 0x0f, 0x95, 0x6e, 0x58, 0x50, 0xb5, + 0xe1, 0x03, 0x8a, 0x16, 0x2e, 0x81, 0xb8, 0xa1, 0x56, 0x60, 0x32, 0xb2, 0x14, 0x59, 0x9d, 0xc8, + 0xcd, 0x34, 0x1d, 0x29, 0x71, 0xa4, 0x56, 0xca, 0x3b, 0xb2, 0x2b, 0x95, 0x15, 0x3c, 0x28, 0x5c, + 0x03, 0x09, 0x0d, 0xa2, 0xa2, 0xa5, 0x57, 0x6d, 0xdd, 0x34, 0x92, 0x51, 0x8c, 0x9d, 0x6f, 0x3a, + 0x92, 0x40, 0xb0, 0xcc, 0xa0, 0xac, 0xb0, 0x50, 0xe1, 0x4d, 0x30, 0x6a, 0x1e, 0x1a, 0xd0, 0x4a, + 0xc6, 0xb0, 0xce, 0x6a, 0xd3, 0x91, 0x26, 0x89, 0x0e, 0x16, 0xcb, 0x3f, 0x7d, 0xb7, 0x71, 0x9e, + 0x12, 0x92, 0xd5, 0x34, 0x0b, 0x22, 0xf4, 0xc0, 0xb6, 0x74, 0xa3, 0xa4, 0x10, 0x35, 0xe1, 0x26, + 0x18, 0x2f, 0xba, 0x0b, 0x36, 0xad, 0x64, 0x1c, 0x5b, 0x58, 0x6f, 0x3a, 0xd2, 0x34, 0xb1, 0x40, + 0x07, 0xf8, 0x36, 0x5a, 0xaa, 0x3b, 0x6b, 0x1f, 0xbe, 0x78, 0xb2, 0xde, 0x7a, 0xfb, 0xfc, 0xc5, + 0x93, 0xf5, 0x24, 0x25, 0xad, 0x8d, 0x0f, 0xb9, 0x00, 0x16, 0xdb, 0x84, 0x0a, 0x44, 0x55, 0xd3, + 0x40, 0x50, 0xb8, 0x05, 0x12, 0x2d, 0x9a, 0xf3, 0xba, 0x86, 0x39, 0x8b, 0xe7, 0x2e, 0x37, 0x1c, + 0x09, 0xb4, 0xa0, 0xbb, 0x37, 0x7d, 0x56, 0x18, 0xa8, 0xac, 0x80, 0xd6, 0xdb, 0xae, 0x26, 0x37, + 0xa2, 0x60, 0x66, 0x0f, 0x95, 0x6e, 0x69, 0xba, 0xed, 0xf9, 0x61, 0x38, 0xa6, 0x3d, 0x77, 0x46, + 0x4f, 0xe0, 0xce, 0xd8, 0x00, 0xee, 0x8c, 0x0f, 0xe6, 0xce, 0x2c, 0x18, 0x43, 0x7a, 0xc9, 0x35, + 0x30, 0x8a, 0x0d, 0xac, 0x35, 0x1d, 0x69, 0x8a, 0x6e, 0x09, 0xcb, 0xf9, 0x16, 0xa8, 0xe2, 0xce, + 0x15, 0xd7, 0x97, 0xf4, 0xc5, 0x75, 0xe5, 0xbc, 0xef, 0x4a, 0x96, 0x50, 0x79, 0x11, 0x2c, 0x84, + 0x44, 0x2d, 0x37, 0xca, 0xdf, 0x47, 0x70, 0x26, 0xdc, 0x84, 0x65, 0xc8, 0x64, 0xc2, 0x90, 0x3c, + 0xe0, 0x6f, 0x31, 0x3a, 0xe8, 0x16, 0x57, 0x43, 0x5b, 0x64, 0xa2, 0x35, 0xb8, 0x66, 0xf9, 0x02, + 0x8e, 0xd6, 0xa0, 0xd0, 0xdb, 0xe6, 0x8b, 0x28, 0x38, 0xeb, 0xc7, 0x32, 0x2c, 0x62, 0x0f, 0xfe, + 0x35, 0xe2, 0xec, 0x0d, 0x30, 0x51, 0x55, 0x2d, 0x68, 0xd8, 0xee, 0x1a, 0xdd, 0x58, 0x9b, 0xca, + 0x2d, 0x35, 0x1c, 0xe9, 0xcc, 0x7d, 0x2c, 0xc4, 0x2b, 0x3c, 0x4b, 0x6c, 0x78, 0x30, 0x59, 0x39, + 0x43, 0x9e, 0x77, 0x35, 0xb6, 0x6a, 0x8c, 0x0e, 0x5e, 0x35, 0x56, 0xc3, 0x55, 0x63, 0xa1, 0xad, + 0x6a, 0x10, 0x52, 0xe5, 0xf7, 0x40, 0x32, 0x2c, 0xf3, 0x6a, 0x46, 0x16, 0x00, 0x44, 0x44, 0x2d, + 0xbe, 0xa7, 0x72, 0x72, 0xc3, 0x91, 0x26, 0x28, 0x10, 0x6f, 0x66, 0x96, 0xd2, 0xed, 0x01, 0x65, + 0x65, 0x82, 0xbe, 0xec, 0x6a, 0xf2, 0x71, 0x14, 0x4c, 0xb7, 0x62, 0x79, 0xb8, 0x6e, 0x0c, 0x2e, + 0x2e, 0x3a, 0xc0, 0xe2, 0xbc, 0x48, 0x88, 0x9d, 0x20, 0x12, 0xe2, 0xfd, 0x47, 0x42, 0x16, 0x8c, + 0x41, 0x4d, 0xf7, 0x3d, 0xc9, 0xa4, 0x13, 0x91, 0x77, 0x49, 0x27, 0x02, 0xd8, 0x59, 0xc6, 0xe9, + 0x44, 0x5e, 0x5c, 0x37, 0xce, 0x85, 0x2a, 0x06, 0x75, 0x62, 0x12, 0xcc, 0x07, 0x25, 0x5e, 0x22, + 0xfd, 0x48, 0xf8, 0xdf, 0x33, 0xeb, 0xf0, 0xf4, 0xf1, 0xff, 0x16, 0x98, 0x32, 0xe0, 0x61, 0xde, + 0x4f, 0x97, 0x18, 0xb6, 0xb2, 0xd2, 0x70, 0xa4, 0xc4, 0x5d, 0x78, 0xc8, 0x64, 0xcc, 0x79, 0xea, + 0x17, 0x16, 0x2d, 0x2b, 0x09, 0xc3, 0x03, 0xb1, 0xc5, 0x2b, 0x3e, 0x68, 0xf1, 0x5a, 0x0e, 0x15, + 0x2f, 0x86, 0x6d, 0x86, 0x40, 0xca, 0x36, 0x23, 0xf1, 0xd8, 0xfe, 0x94, 0x94, 0x2d, 0x5a, 0xd4, + 0x4e, 0x1d, 0xdf, 0x3e, 0x45, 0xb1, 0x41, 0x29, 0x5a, 0x09, 0x51, 0xb4, 0xd0, 0x56, 0xdf, 0x29, + 0x49, 0x22, 0xae, 0x2b, 0x01, 0x99, 0x47, 0xd3, 0x27, 0x71, 0x20, 0x78, 0x45, 0xe7, 0x11, 0x82, + 0xd6, 0x1d, 0xcb, 0xac, 0x55, 0xff, 0x3e, 0x85, 0xe1, 0x1e, 0x38, 0xa7, 0xc1, 0xc7, 0x6a, 0xad, + 0x6c, 0xe7, 0xab, 0xd0, 0xaa, 0xe8, 0x08, 0xe9, 0xa6, 0x81, 0x92, 0xa3, 0x4b, 0xb1, 0xd5, 0x89, + 0x5c, 0xaa, 0xe9, 0x48, 0x62, 0xcb, 0x42, 0x1b, 0x48, 0x56, 0x04, 0x2a, 0xbd, 0xef, 0x0b, 0x85, + 0x1b, 0x60, 0x46, 0x37, 0x74, 0x5b, 0x57, 0xcb, 0xf9, 0x0a, 0xac, 0x14, 0xa0, 0x85, 0x92, 0x63, + 0xd8, 0x98, 0xd8, 0x74, 0xa4, 0x79, 0x62, 0x2c, 0x04, 0x90, 0x95, 0x69, 0x2a, 0xd9, 0x23, 0x02, + 0xb6, 0xf3, 0x8c, 0x0f, 0xde, 0x79, 0xd6, 0xc3, 0x9d, 0x67, 0x31, 0xdc, 0x79, 0x3c, 0x87, 0xcb, + 0xef, 0x00, 0xb1, 0x5d, 0xea, 0x75, 0x9f, 0xd7, 0xc1, 0x99, 0x92, 0x2b, 0xf0, 0x7b, 0x4f, 0xaa, + 0xe1, 0x48, 0xe3, 0x18, 0x84, 0x7d, 0x38, 0x43, 0xd6, 0xd6, 0x02, 0xc9, 0xca, 0x38, 0x7e, 0xdc, + 0xd5, 0xe4, 0xe7, 0x24, 0x0f, 0xdd, 0x82, 0x38, 0xf4, 0xf0, 0x62, 0x97, 0x15, 0x3d, 0xd1, 0xb2, + 0xfe, 0x80, 0x7e, 0xf3, 0xb2, 0x27, 0xd4, 0x2e, 0xe9, 0x1d, 0x20, 0x93, 0xa6, 0x77, 0x40, 0xc6, + 0xf6, 0x9c, 0xb3, 0xb4, 0x40, 0x9e, 0x26, 0xf6, 0xef, 0x81, 0x69, 0xb7, 0x7f, 0x30, 0xb5, 0x81, + 0xb4, 0x9b, 0xb5, 0x86, 0x23, 0x4d, 0xde, 0x85, 0x87, 0x6c, 0x79, 0x98, 0xf3, 0xfb, 0x0d, 0x5b, + 0x22, 0x26, 0x0d, 0x1f, 0x36, 0x94, 0x8e, 0xd3, 0x85, 0xef, 0x00, 0x7d, 0x94, 0xef, 0x80, 0xcc, + 0xe3, 0xfb, 0x87, 0x28, 0xce, 0xa3, 0x07, 0xd0, 0xf7, 0x05, 0x5b, 0x1c, 0xfe, 0x7c, 0xe6, 0xaf, + 0x81, 0x04, 0x5b, 0xe7, 0x62, 0xb8, 0x34, 0x31, 0x21, 0x1d, 0xa8, 0x6f, 0x2c, 0x74, 0x18, 0x14, + 0x6f, 0x86, 0x28, 0xfe, 0xb7, 0x4f, 0x31, 0x87, 0x31, 0xf9, 0x32, 0x90, 0xf9, 0xa3, 0x1e, 0xed, + 0x1f, 0x47, 0x71, 0x17, 0x23, 0x2d, 0xee, 0x34, 0x05, 0xfa, 0x10, 0xda, 0xfc, 0x5a, 0x88, 0xb4, + 0xc5, 0x70, 0x9b, 0xf7, 0x23, 0xf3, 0x22, 0x0e, 0xbe, 0x90, 0xd4, 0xff, 0x5e, 0x8d, 0x82, 0xb9, + 0x3d, 0x54, 0xca, 0x6a, 0x9a, 0x3b, 0xf6, 0xd0, 0x3c, 0x4d, 0x3c, 0x5d, 0x07, 0xf1, 0x1a, 0xf2, + 0x58, 0x5a, 0xf1, 0xcb, 0xb1, 0x2b, 0xe5, 0x73, 0x84, 0x95, 0x86, 0x11, 0x99, 0x57, 0x43, 0x24, + 0x5f, 0xf4, 0x49, 0x6e, 0xe7, 0x4b, 0x96, 0xc0, 0xbf, 0x3a, 0x0e, 0xb0, 0x65, 0xd7, 0xf5, 0x84, + 0x02, 0x2b, 0xb4, 0x4a, 0xdc, 0xb6, 0xcc, 0xca, 0x3f, 0x7c, 0xf7, 0x55, 0x09, 0x38, 0xa4, 0xd1, + 0x4a, 0xc0, 0x19, 0xf5, 0x98, 0xff, 0x2c, 0x86, 0x83, 0x9c, 0x16, 0x8c, 0x57, 0x50, 0x7b, 0x87, + 0x70, 0xa4, 0x7d, 0x29, 0xf2, 0x43, 0x05, 0x3c, 0x3e, 0x48, 0x01, 0x1f, 0x7d, 0x05, 0x69, 0xd2, + 0xce, 0x38, 0x4d, 0x93, 0xf6, 0x01, 0xcf, 0x59, 0xbf, 0x91, 0x34, 0x79, 0x54, 0xd5, 0x98, 0x6b, + 0xd2, 0xdb, 0x10, 0x3e, 0x34, 0x0f, 0xe0, 0xf0, 0x3c, 0xf6, 0x75, 0x04, 0xcc, 0xa9, 0x9a, 0xa6, + 0xbb, 0xec, 0xab, 0xe5, 0xfc, 0x63, 0x08, 0xf3, 0x36, 0x9e, 0x20, 0x19, 0x5d, 0x8a, 0xad, 0x26, + 0xb6, 0x16, 0xd3, 0x74, 0xcf, 0x05, 0x15, 0xc1, 0x34, 0xbd, 0x78, 0x4f, 0xdf, 0x30, 0x75, 0x23, + 0x77, 0xff, 0xa9, 0x23, 0x8d, 0x34, 0x1d, 0xe9, 0x22, 0x99, 0xa2, 0xa3, 0x15, 0xf9, 0xdb, 0xe7, + 0xd2, 0x6a, 0x49, 0xb7, 0xf7, 0x6b, 0x85, 0x74, 0xd1, 0xac, 0xd0, 0x8b, 0x79, 0xfa, 0x6b, 0x03, + 0x69, 0x07, 0x19, 0xfb, 0xa8, 0x0a, 0x11, 0x36, 0x88, 0x94, 0x73, 0xbe, 0x0d, 0x7f, 0xa3, 0xff, + 0x07, 0x13, 0x6a, 0xcd, 0xde, 0x37, 0x2d, 0xdd, 0x3e, 0xa2, 0x51, 0x91, 0xe4, 0xfa, 0xc2, 0x87, + 0xee, 0xfc, 0xd7, 0x75, 0x87, 0xff, 0x1e, 0x4a, 0x24, 0x0e, 0xad, 0x34, 0x91, 0x38, 0xa3, 0x2d, + 0xdf, 0x6c, 0xfd, 0x3a, 0x0b, 0x62, 0x7b, 0xa8, 0x24, 0xec, 0x83, 0xe9, 0xd0, 0x5d, 0xff, 0x95, + 0x74, 0x87, 0x3f, 0x73, 0xa4, 0xdb, 0xae, 0xbb, 0xc5, 0x74, 0x7f, 0x38, 0xef, 0x23, 0xa3, 0x00, + 0x26, 0x03, 0x77, 0xd9, 0x97, 0x79, 0xfa, 0x2c, 0x4a, 0xbc, 0xda, 0x0f, 0xca, 0x9b, 0x63, 0x1f, + 0x4c, 0x87, 0xee, 0x6b, 0xb9, 0xbb, 0x09, 0xe2, 0xf8, 0xbb, 0xe9, 0x7c, 0x6d, 0x2a, 0x40, 0x30, + 0x15, 0xbc, 0x32, 0x5d, 0xee, 0x41, 0x07, 0x81, 0x89, 0x1b, 0x7d, 0xc1, 0xbc, 0x69, 0xf2, 0x20, + 0xc1, 0x5e, 0xe8, 0x5d, 0xea, 0xca, 0x06, 0x9d, 0xe2, 0x3f, 0x7d, 0x80, 0xd8, 0x09, 0xd8, 0x1b, + 0x2b, 0xee, 0x04, 0x0c, 0x88, 0x3f, 0x41, 0x87, 0x8b, 0x1a, 0x97, 0xa8, 0xe0, 0x25, 0xcd, 0x72, + 0x0f, 0xa6, 0x7b, 0x11, 0xd5, 0xf1, 0xa2, 0x43, 0x38, 0x00, 0x33, 0xe1, 0x4b, 0x8e, 0x95, 0xee, + 0x54, 0x7b, 0x40, 0x31, 0xd3, 0x27, 0x90, 0xdd, 0x53, 0xf0, 0x83, 0x77, 0xb9, 0x1b, 0xe5, 0xfe, + 0x44, 0x1b, 0x7d, 0xc1, 0xd8, 0x69, 0x82, 0x5f, 0x76, 0xcb, 0xdd, 0x88, 0xef, 0x63, 0x9a, 0x8e, + 0x1f, 0x35, 0xc2, 0x47, 0x11, 0xb0, 0xc0, 0xfb, 0xa2, 0xe1, 0x52, 0xc3, 0x51, 0x10, 0x5f, 0x3b, + 0xa1, 0x02, 0xeb, 0xc0, 0xf0, 0xf9, 0x7e, 0xa5, 0x7b, 0x08, 0xf4, 0xe1, 0x40, 0xce, 0x59, 0x59, + 0xb0, 0x81, 0xd0, 0xe1, 0x9c, 0xbc, 0xce, 0x33, 0xd3, 0x8e, 0x15, 0xb7, 0xfa, 0xc7, 0x06, 0x88, + 0xe6, 0x9d, 0x19, 0xb9, 0x5b, 0xe0, 0x28, 0xf0, 0x89, 0xee, 0x71, 0x84, 0x72, 0xf7, 0xde, 0xe1, + 0xf8, 0xb4, 0xde, 0xc3, 0x6f, 0xac, 0x8f, 0xb7, 0xfa, 0xc7, 0x7a, 0xb3, 0x7e, 0x11, 0x01, 0xe2, + 0x1d, 0x4b, 0x35, 0xec, 0x87, 0xf4, 0x0f, 0xd3, 0x59, 0xd2, 0xd6, 0x3e, 0x50, 0x71, 0x51, 0xe0, + 0x9a, 0xe4, 0xeb, 0x88, 0x3b, 0x27, 0xd7, 0xf1, 0x96, 0xf3, 0x65, 0x04, 0x5c, 0x50, 0x60, 0xdd, + 0x3c, 0x80, 0x9d, 0xd7, 0xb3, 0xcd, 0x67, 0x97, 0xab, 0x24, 0x5e, 0x1f, 0x40, 0x89, 0x6d, 0x5d, + 0x78, 0xdd, 0xd9, 0x72, 0xd9, 0x3c, 0x54, 0x8d, 0x6e, 0xad, 0x2b, 0x88, 0xe3, 0xb7, 0xae, 0x20, + 0x8e, 0xcd, 0x34, 0xb2, 0x20, 0x7f, 0xaa, 0x95, 0xee, 0x2b, 0xf7, 0xe7, 0xca, 0xf4, 0x09, 0x0c, + 0xc4, 0x3c, 0xef, 0x00, 0xc8, 0x35, 0xc6, 0x51, 0xe0, 0xc7, 0x7c, 0x8f, 0xd3, 0x4e, 0xee, 0xed, + 0xa7, 0x8d, 0x54, 0xe4, 0x59, 0x23, 0x15, 0xf9, 0xa5, 0x91, 0x8a, 0x7c, 0x75, 0x9c, 0x1a, 0x79, + 0x76, 0x9c, 0x1a, 0xf9, 0xf9, 0x38, 0x35, 0xf2, 0xee, 0x16, 0x73, 0xb4, 0x23, 0xc6, 0x37, 0xca, + 0x6a, 0x01, 0xd1, 0xe7, 0x4c, 0xfd, 0x7f, 0x99, 0xf7, 0x99, 0x7f, 0x9a, 0xc0, 0x47, 0xbd, 0xc2, + 0x18, 0xfe, 0x57, 0x89, 0xed, 0xdf, 0x03, 0x00, 0x00, 0xff, 0xff, 0x59, 0x6f, 0xeb, 0x67, 0x30, + 0x22, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/subspaces/types/msgs_feegrant.pb.go b/x/subspaces/types/msgs_feegrant.pb.go index d89023cdfd..4aa21fcb2b 100644 --- a/x/subspaces/types/msgs_feegrant.pb.go +++ b/x/subspaces/types/msgs_feegrant.pb.go @@ -8,6 +8,7 @@ import ( _ "github.com/cosmos/cosmos-proto" types "github.com/cosmos/cosmos-sdk/codec/types" _ "github.com/cosmos/cosmos-sdk/types/msgservice" + _ "github.com/cosmos/cosmos-sdk/types/tx/amino" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" io "io" @@ -253,35 +254,37 @@ func init() { } var fileDescriptor_c9368a6a8079b960 = []byte{ - // 446 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x53, 0xc1, 0x6e, 0xd3, 0x40, - 0x10, 0x8d, 0xdb, 0x0a, 0xd4, 0x2d, 0x42, 0x60, 0x22, 0x91, 0xa6, 0xc8, 0x89, 0x56, 0x48, 0x44, - 0x95, 0xb2, 0xab, 0x34, 0xe2, 0x92, 0x5b, 0xa2, 0xa2, 0x2a, 0x12, 0xbd, 0xb8, 0x37, 0x2e, 0xd1, - 0x3a, 0x9e, 0x2e, 0x11, 0xb6, 0x37, 0xf2, 0x38, 0x86, 0x1c, 0xe1, 0x0b, 0x10, 0x5f, 0xc2, 0xa1, - 0x1f, 0x81, 0x38, 0x55, 0x9c, 0x38, 0x45, 0xc8, 0x39, 0x70, 0xcf, 0x17, 0x20, 0x7b, 0xbd, 0xa6, - 0x6a, 0x10, 0x3f, 0xd0, 0x93, 0x67, 0xfc, 0x66, 0xe6, 0xcd, 0x7b, 0xa3, 0x25, 0x2f, 0x7c, 0xc0, - 0x50, 0x21, 0xc7, 0x85, 0x87, 0x73, 0x31, 0x05, 0xe4, 0x69, 0x9f, 0x87, 0x28, 0x71, 0x72, 0x09, - 0x20, 0x63, 0x11, 0x25, 0x6c, 0x1e, 0xab, 0x44, 0xd9, 0x4f, 0x74, 0x21, 0xab, 0x0a, 0x59, 0xda, - 0x6f, 0xd6, 0xa5, 0x92, 0xaa, 0xc0, 0x79, 0x1e, 0xe9, 0xd2, 0xe6, 0xa1, 0x54, 0x4a, 0x06, 0xc0, - 0x8b, 0xcc, 0x5b, 0x5c, 0x72, 0x11, 0x2d, 0x4b, 0xe8, 0xe9, 0x54, 0x15, 0x74, 0x21, 0x4a, 0x9e, - 0xf6, 0xf2, 0x8f, 0xe9, 0xd1, 0xc0, 0x44, 0x0f, 0xd3, 0x89, 0x86, 0xe8, 0xc7, 0x5d, 0xf2, 0xf8, - 0x1c, 0xe5, 0x59, 0xbe, 0xcc, 0x30, 0x08, 0xd4, 0x7b, 0x11, 0x4d, 0xc1, 0x7e, 0x45, 0x0e, 0xcc, - 0x2a, 0x93, 0x99, 0xdf, 0xb0, 0xda, 0x56, 0x67, 0x6f, 0xf4, 0x3c, 0x5b, 0xb5, 0xc8, 0x45, 0xf9, - 0x7b, 0x7c, 0xba, 0x59, 0xb5, 0xec, 0xa5, 0x08, 0x83, 0x01, 0xbd, 0x51, 0x4a, 0x5d, 0x62, 0xb2, - 0xb1, 0x6f, 0x9f, 0x92, 0xfb, 0x85, 0x4a, 0x88, 0x1b, 0x3b, 0x6d, 0xab, 0xb3, 0x3f, 0x3a, 0xde, - 0xac, 0x5a, 0x0f, 0x75, 0x53, 0x09, 0xd0, 0x1f, 0x57, 0xdd, 0x7a, 0xb9, 0xd1, 0xd0, 0xf7, 0x63, - 0x40, 0xbc, 0x48, 0xe2, 0x59, 0x24, 0x5d, 0xd3, 0x6a, 0x0b, 0x33, 0x05, 0x1a, 0xbb, 0x6d, 0xab, - 0x73, 0x70, 0x52, 0x67, 0xda, 0x03, 0x66, 0x3c, 0x60, 0xc3, 0x68, 0x39, 0xea, 0xdd, 0x9e, 0x0d, - 0xf4, 0xfb, 0x55, 0xf7, 0xe8, 0x1f, 0xce, 0xb2, 0x33, 0x8d, 0x1b, 0x0a, 0xb0, 0x23, 0xb2, 0x2f, - 0x8c, 0xf8, 0xc6, 0xde, 0x7f, 0x48, 0x06, 0x9b, 0x55, 0xeb, 0x91, 0x26, 0xa9, 0x1a, 0x72, 0x1a, - 0x5a, 0x4a, 0xa8, 0xee, 0x9a, 0xf6, 0x3c, 0x48, 0x44, 0x8f, 0x55, 0x9e, 0x8e, 0xdd, 0xbf, 0x14, - 0x83, 0x07, 0x9f, 0x7e, 0x7f, 0x3d, 0x36, 0x02, 0xe9, 0x11, 0x39, 0xdc, 0x3a, 0x81, 0x0b, 0x38, - 0x57, 0x11, 0x02, 0xfd, 0xb2, 0x43, 0xec, 0x73, 0x94, 0x2e, 0xa4, 0xea, 0x1d, 0xdc, 0xd9, 0x0b, - 0xdd, 0x72, 0xec, 0x19, 0x69, 0x6e, 0x7b, 0x62, 0x2c, 0x1b, 0xbd, 0xfe, 0x96, 0x39, 0xd6, 0x75, - 0xe6, 0x58, 0xbf, 0x32, 0xc7, 0xfa, 0xbc, 0x76, 0x6a, 0xd7, 0x6b, 0xa7, 0xf6, 0x73, 0xed, 0xd4, - 0xde, 0x9c, 0xc8, 0x59, 0xf2, 0x76, 0xe1, 0xb1, 0xa9, 0x0a, 0xb9, 0xa6, 0xed, 0x06, 0xc2, 0xc3, - 0x32, 0xe6, 0xe9, 0x4b, 0xfe, 0xe1, 0xc6, 0x63, 0x4d, 0x96, 0x73, 0x40, 0xef, 0x5e, 0xa1, 0xa1, - 0xff, 0x27, 0x00, 0x00, 0xff, 0xff, 0x87, 0x6d, 0x6c, 0xf7, 0xcd, 0x03, 0x00, 0x00, + // 472 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x53, 0xbf, 0x6a, 0xdb, 0x40, + 0x18, 0xb7, 0x92, 0xd0, 0x92, 0x0b, 0x94, 0x46, 0x35, 0x54, 0x76, 0x8a, 0x6c, 0x8e, 0x42, 0x5d, + 0x83, 0xef, 0x70, 0x4c, 0x17, 0x6f, 0x36, 0x29, 0xc1, 0xd0, 0x2c, 0xca, 0xd6, 0xc5, 0x9c, 0xac, + 0x2f, 0x57, 0x53, 0x49, 0x67, 0x74, 0xb2, 0x5a, 0xaf, 0x1d, 0x3b, 0xf5, 0x09, 0xfa, 0x0c, 0x1e, + 0xf2, 0x10, 0xa5, 0x53, 0xe8, 0xd4, 0xc9, 0x14, 0x7b, 0xc8, 0xee, 0x27, 0x28, 0xd6, 0xdd, 0x29, + 0xc1, 0x2e, 0x7d, 0x81, 0x2c, 0xd2, 0xf7, 0xff, 0xf7, 0xfd, 0x7e, 0x9f, 0x84, 0x5e, 0x05, 0x20, + 0x23, 0x21, 0xa9, 0x9c, 0xfa, 0x72, 0xc2, 0x46, 0x20, 0x69, 0xd6, 0xa1, 0x91, 0xe4, 0x72, 0x78, + 0x05, 0xc0, 0x13, 0x16, 0xa7, 0x64, 0x92, 0x88, 0x54, 0xd8, 0xcf, 0x54, 0x21, 0x29, 0x0a, 0x49, + 0xd6, 0xa9, 0x1e, 0xb3, 0x68, 0x1c, 0x0b, 0x9a, 0x3f, 0x55, 0x5d, 0xb5, 0xcc, 0x05, 0x17, 0xb9, + 0x49, 0x37, 0x96, 0x8e, 0x56, 0xb8, 0x10, 0x3c, 0x04, 0x9a, 0x7b, 0xfe, 0xf4, 0x8a, 0xb2, 0x78, + 0xa6, 0x53, 0xcf, 0x47, 0x22, 0xdf, 0x20, 0x92, 0x9c, 0x66, 0xed, 0xcd, 0xcb, 0xf4, 0xa8, 0xc4, + 0x50, 0x0d, 0x53, 0x8e, 0x4a, 0xe1, 0xef, 0xfb, 0xe8, 0xf8, 0x42, 0xf2, 0xf3, 0xcd, 0x7e, 0xbd, + 0x30, 0x14, 0x9f, 0x58, 0x3c, 0x02, 0xfb, 0x2d, 0x3a, 0x32, 0xdb, 0x0d, 0xc7, 0x81, 0x63, 0xd5, + 0xad, 0xc6, 0x41, 0xff, 0xe5, 0x72, 0x51, 0x43, 0x97, 0x3a, 0x3c, 0x38, 0x5b, 0x2f, 0x6a, 0xf6, + 0x8c, 0x45, 0x61, 0x17, 0xdf, 0x2b, 0xc5, 0x1e, 0x32, 0xde, 0x20, 0xb0, 0xcf, 0xd0, 0xe3, 0x9c, + 0x38, 0x24, 0xce, 0x5e, 0xdd, 0x6a, 0x1c, 0xf6, 0x9b, 0xeb, 0x45, 0xed, 0x89, 0x6a, 0xd2, 0x09, + 0xfc, 0xeb, 0xba, 0x55, 0xd6, 0x1b, 0xf5, 0x82, 0x20, 0x01, 0x29, 0x2f, 0xd3, 0x64, 0x1c, 0x73, + 0xcf, 0xb4, 0xda, 0xcc, 0x4c, 0x01, 0x67, 0xbf, 0x6e, 0x35, 0x8e, 0x4e, 0xcb, 0x44, 0x69, 0x40, + 0x8c, 0x06, 0xa4, 0x17, 0xcf, 0xfa, 0xed, 0xed, 0xd9, 0x80, 0x7f, 0x5e, 0xb7, 0x4e, 0xfe, 0x21, + 0x36, 0x39, 0x57, 0x79, 0x03, 0x01, 0x76, 0x8c, 0x0e, 0x99, 0x21, 0xef, 0x1c, 0xfc, 0x07, 0xa4, + 0xbb, 0x5e, 0xd4, 0x9e, 0x2a, 0x90, 0xa2, 0x61, 0x03, 0x83, 0x35, 0x85, 0xe2, 0xd4, 0x59, 0xdb, + 0x87, 0x94, 0xb5, 0x49, 0xa1, 0xe9, 0xc0, 0xbb, 0x83, 0xe8, 0xbe, 0xfe, 0x72, 0x3b, 0x6f, 0x1a, + 0x82, 0x5f, 0x6f, 0xe7, 0x4d, 0x47, 0x7f, 0x3c, 0x3b, 0xa7, 0xc0, 0x27, 0xa8, 0xb2, 0x13, 0xf4, + 0x40, 0x4e, 0x44, 0x2c, 0x01, 0xcf, 0xf7, 0x90, 0x7d, 0x21, 0xb9, 0x07, 0x99, 0xf8, 0x08, 0x0f, + 0xf6, 0x7c, 0xdd, 0xe6, 0xb6, 0x9c, 0x95, 0x3b, 0x39, 0xb7, 0xb4, 0xc1, 0x2f, 0x50, 0x75, 0x37, + 0x6a, 0x04, 0xed, 0xbf, 0xfb, 0xb1, 0x74, 0xad, 0x9b, 0xa5, 0x6b, 0xfd, 0x59, 0xba, 0xd6, 0xb7, + 0x95, 0x5b, 0xba, 0x59, 0xb9, 0xa5, 0xdf, 0x2b, 0xb7, 0xf4, 0xfe, 0x94, 0x8f, 0xd3, 0x0f, 0x53, + 0x9f, 0x8c, 0x44, 0x44, 0xd5, 0xf4, 0x56, 0xc8, 0x7c, 0xa9, 0x6d, 0x9a, 0xbd, 0xa1, 0x9f, 0xef, + 0xfd, 0xfa, 0xe9, 0x6c, 0x02, 0xd2, 0x7f, 0x94, 0x33, 0xec, 0xfc, 0x0d, 0x00, 0x00, 0xff, 0xff, + 0x80, 0x86, 0xa9, 0xa9, 0x1b, 0x04, 0x00, 0x00, } func (m *MsgGrantAllowance) Marshal() (dAtA []byte, err error) { diff --git a/x/subspaces/types/msgs_treasury.pb.go b/x/subspaces/types/msgs_treasury.pb.go index 918c4c7ac1..41de054c8f 100644 --- a/x/subspaces/types/msgs_treasury.pb.go +++ b/x/subspaces/types/msgs_treasury.pb.go @@ -7,6 +7,7 @@ import ( fmt "fmt" _ "github.com/cosmos/cosmos-proto" _ "github.com/cosmos/cosmos-sdk/types/msgservice" + _ "github.com/cosmos/cosmos-sdk/types/tx/amino" authz "github.com/cosmos/cosmos-sdk/x/authz" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" @@ -264,36 +265,38 @@ func init() { } var fileDescriptor_652ce4e8348c6ab3 = []byte{ - // 461 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x93, 0x3f, 0x6f, 0xd3, 0x40, - 0x18, 0xc6, 0xe3, 0x50, 0x40, 0xbd, 0x46, 0x0c, 0x6e, 0xa4, 0x86, 0x22, 0xec, 0xe8, 0x04, 0x34, - 0xaa, 0x54, 0x9f, 0xd2, 0x88, 0x81, 0x6e, 0xb5, 0x8a, 0xaa, 0x4a, 0x74, 0x71, 0xcb, 0xc2, 0x62, - 0x9d, 0xe3, 0xd3, 0xc5, 0x22, 0xce, 0x59, 0xf7, 0x9e, 0x2d, 0xd2, 0x91, 0x4f, 0xc0, 0x47, 0x61, - 0x60, 0xe4, 0x03, 0x94, 0xad, 0x62, 0x62, 0xb2, 0x50, 0x32, 0xb0, 0xe7, 0x13, 0x20, 0xfb, 0xce, - 0x10, 0x21, 0x54, 0x3e, 0x00, 0x93, 0xdf, 0xd7, 0xcf, 0xf3, 0xfe, 0xb9, 0x9f, 0xf4, 0xa2, 0xbd, - 0x98, 0x41, 0x2a, 0x80, 0x40, 0x1e, 0x41, 0x46, 0xc7, 0x0c, 0x48, 0x31, 0x22, 0x29, 0x70, 0x08, - 0x95, 0x64, 0x14, 0x72, 0x39, 0xf7, 0x32, 0x29, 0x94, 0xb0, 0xb7, 0xb5, 0xd1, 0xfb, 0x65, 0xf4, - 0x8a, 0xd1, 0x6e, 0x97, 0x0b, 0x2e, 0x6a, 0x9d, 0x54, 0x91, 0xb6, 0xee, 0x3e, 0x1c, 0x8b, 0xca, - 0x1a, 0x6a, 0x41, 0x27, 0x46, 0xda, 0xd1, 0x59, 0x35, 0x81, 0x14, 0xc3, 0xea, 0x63, 0x84, 0xbe, - 0x11, 0x68, 0xae, 0x26, 0x57, 0xa4, 0x18, 0x46, 0x4c, 0xd1, 0xa1, 0xce, 0xb4, 0x03, 0x7f, 0x69, - 0xa3, 0xc7, 0xe7, 0xc0, 0x4f, 0x25, 0x9d, 0xa9, 0x4b, 0xb3, 0xdb, 0x71, 0xae, 0x26, 0x42, 0x26, - 0x57, 0x54, 0x25, 0x62, 0x66, 0xbf, 0x44, 0x5b, 0xcd, 0x76, 0x61, 0x12, 0xf7, 0xac, 0xbe, 0x35, - 0xd8, 0xf0, 0x9f, 0x2c, 0x4a, 0x17, 0x5d, 0x98, 0xdf, 0x67, 0x27, 0xab, 0xd2, 0xb5, 0xe7, 0x34, - 0x9d, 0x1e, 0xe1, 0x35, 0x2b, 0x0e, 0x50, 0x93, 0x9d, 0xc5, 0xf6, 0x09, 0xba, 0xcf, 0xab, 0x21, - 0x4c, 0xf6, 0xda, 0x7d, 0x6b, 0xb0, 0xe9, 0xef, 0xaf, 0x4a, 0xf7, 0x81, 0x2e, 0x32, 0x02, 0xfe, - 0xfa, 0xe9, 0xa0, 0x6b, 0x1e, 0x76, 0x1c, 0xc7, 0x92, 0x01, 0x5c, 0x28, 0x99, 0xcc, 0x78, 0xd0, - 0x94, 0xfe, 0xee, 0xc2, 0x7a, 0x77, 0xfe, 0xde, 0x85, 0xfd, 0xb3, 0x0b, 0xb3, 0x4f, 0xd1, 0xdd, - 0x3a, 0xec, 0x6d, 0xf4, 0xad, 0xc1, 0xd6, 0xe1, 0x23, 0xcf, 0xd8, 0x35, 0x18, 0x83, 0xc9, 0xab, - 0x99, 0xf8, 0xdd, 0xeb, 0xd2, 0x6d, 0xad, 0x4a, 0xb7, 0xb3, 0x36, 0x04, 0x07, 0xba, 0xfe, 0xa8, - 0xf3, 0xfe, 0xc7, 0xc7, 0xfd, 0x66, 0x39, 0xbc, 0x87, 0x9e, 0xde, 0x8a, 0x32, 0x60, 0x90, 0x89, - 0x19, 0x30, 0xfc, 0xb9, 0x8d, 0x9c, 0x73, 0xe0, 0x01, 0x2b, 0xc4, 0x5b, 0xf6, 0xdf, 0x50, 0x7f, - 0x81, 0x3a, 0x29, 0xf0, 0x50, 0xcd, 0x33, 0x16, 0xe6, 0x72, 0x5a, 0xc3, 0xdf, 0xf4, 0x77, 0x56, - 0xa5, 0xbb, 0xad, 0x5b, 0xad, 0xab, 0x38, 0x40, 0x29, 0xf0, 0xcb, 0x79, 0xc6, 0x5e, 0xcb, 0xe9, - 0x1f, 0x9c, 0x07, 0xe8, 0xd9, 0xed, 0xf4, 0x1a, 0xd0, 0xfe, 0xab, 0xeb, 0x85, 0x63, 0xdd, 0x2c, - 0x1c, 0xeb, 0xfb, 0xc2, 0xb1, 0x3e, 0x2c, 0x9d, 0xd6, 0xcd, 0xd2, 0x69, 0x7d, 0x5b, 0x3a, 0xad, - 0x37, 0x87, 0x3c, 0x51, 0x93, 0x3c, 0xf2, 0xc6, 0x22, 0x25, 0xfa, 0x06, 0x0f, 0xa6, 0x34, 0x02, - 0x13, 0x93, 0xe2, 0x39, 0x79, 0xb7, 0x76, 0xbd, 0xd5, 0x56, 0x10, 0xdd, 0xab, 0x4f, 0x66, 0xf4, - 0x33, 0x00, 0x00, 0xff, 0xff, 0xc0, 0x7b, 0xb5, 0x4d, 0xde, 0x03, 0x00, 0x00, + // 489 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x54, 0x4d, 0x6b, 0xd4, 0x40, + 0x18, 0xde, 0xac, 0x55, 0xe9, 0xb4, 0x08, 0x6e, 0x17, 0xba, 0x56, 0x4c, 0x96, 0xd0, 0xda, 0x65, + 0xa1, 0x19, 0xb6, 0x4b, 0x05, 0xf7, 0xd6, 0x50, 0x29, 0x05, 0x7b, 0x49, 0xeb, 0xc5, 0x4b, 0x48, + 0x36, 0xc3, 0x6c, 0x70, 0x93, 0x09, 0xf3, 0x4e, 0x82, 0xdb, 0xa3, 0x47, 0x4f, 0xfe, 0x94, 0x1e, + 0xfc, 0x11, 0x3d, 0x16, 0x4f, 0x9e, 0x82, 0xec, 0x82, 0xbd, 0xe7, 0x17, 0x48, 0x32, 0x13, 0xbb, + 0x88, 0xac, 0x3f, 0xc0, 0x4b, 0xf2, 0xbe, 0xf3, 0x3c, 0xef, 0x47, 0x9e, 0x27, 0x09, 0xda, 0x0f, + 0x08, 0x44, 0x0c, 0x30, 0xa4, 0x3e, 0x24, 0xde, 0x98, 0x00, 0xce, 0x86, 0x38, 0x02, 0x0a, 0xae, + 0xe0, 0xc4, 0x83, 0x94, 0xcf, 0xac, 0x84, 0x33, 0xc1, 0x5a, 0x5b, 0x92, 0x68, 0xfd, 0x26, 0x5a, + 0xd9, 0x70, 0xe7, 0xa9, 0x17, 0x85, 0x31, 0xc3, 0xd5, 0x55, 0xf2, 0x76, 0xda, 0x94, 0x51, 0x56, + 0x85, 0xb8, 0x8c, 0xd4, 0xe9, 0xb3, 0x31, 0x2b, 0xab, 0x5d, 0x09, 0xc8, 0x44, 0x41, 0xdb, 0x32, + 0x2b, 0x87, 0xe2, 0x6c, 0x50, 0xde, 0x14, 0xd0, 0x55, 0x80, 0x97, 0x8a, 0xc9, 0x15, 0xce, 0x06, + 0x3e, 0x11, 0xde, 0x40, 0x66, 0x92, 0x61, 0x16, 0x4d, 0xf4, 0xe2, 0x1c, 0xe8, 0x29, 0xf7, 0x62, + 0x71, 0xa9, 0xd6, 0x3d, 0x4e, 0xc5, 0x84, 0xf1, 0xf0, 0xca, 0x13, 0x21, 0x8b, 0x5b, 0x6f, 0xd0, + 0x46, 0xbd, 0xb0, 0x1b, 0x06, 0x1d, 0xad, 0xab, 0xf5, 0xd6, 0xec, 0xdd, 0x79, 0x6e, 0xa0, 0x0b, + 0x75, 0x7c, 0x76, 0x52, 0xe4, 0x46, 0x6b, 0xe6, 0x45, 0xd3, 0x91, 0xb9, 0x44, 0x35, 0x1d, 0x54, + 0x67, 0x67, 0x41, 0xeb, 0x04, 0x3d, 0xa6, 0xe5, 0x10, 0xc2, 0x3b, 0xcd, 0xae, 0xd6, 0x5b, 0xb7, + 0xfb, 0x45, 0x6e, 0x3c, 0x91, 0x45, 0x0a, 0x30, 0xbf, 0x7d, 0x3d, 0x68, 0xab, 0x07, 0x3b, 0x0e, + 0x02, 0x4e, 0x00, 0x2e, 0x04, 0x0f, 0x63, 0xea, 0xd4, 0xa5, 0xf7, 0x5d, 0x48, 0xe7, 0xc1, 0xdf, + 0xbb, 0x90, 0x7f, 0x76, 0x21, 0xad, 0x53, 0xf4, 0xb0, 0x0a, 0x3b, 0x6b, 0x5d, 0xad, 0xb7, 0x71, + 0xf8, 0xdc, 0x52, 0x74, 0x29, 0x8c, 0x92, 0xc9, 0xaa, 0x34, 0xb1, 0xdb, 0x37, 0xb9, 0xd1, 0x28, + 0x72, 0x63, 0x73, 0x69, 0x88, 0xe9, 0xc8, 0xfa, 0xd1, 0xd1, 0xa7, 0xbb, 0xeb, 0x7e, 0xbd, 0xdc, + 0xe7, 0xbb, 0xeb, 0xfe, 0xae, 0x7a, 0x17, 0x56, 0x4a, 0x6a, 0xee, 0xa3, 0xbd, 0x95, 0x04, 0x87, + 0x40, 0xc2, 0x62, 0x20, 0xe6, 0xcf, 0x26, 0xd2, 0xcf, 0x81, 0x3a, 0x24, 0x63, 0x1f, 0xc8, 0x7f, + 0x63, 0xcf, 0x6b, 0xb4, 0x19, 0x01, 0x75, 0xc5, 0x2c, 0x21, 0x6e, 0xca, 0xa7, 0x95, 0x4b, 0xeb, + 0xf6, 0x76, 0x91, 0x1b, 0x5b, 0xb2, 0xd5, 0x32, 0x6a, 0x3a, 0x28, 0x02, 0x7a, 0x39, 0x4b, 0xc8, + 0x3b, 0x3e, 0x1d, 0xbd, 0xfa, 0xd3, 0x90, 0xbd, 0x7b, 0x43, 0x56, 0xa8, 0x68, 0xf6, 0xd0, 0xcb, + 0xd5, 0x8c, 0xda, 0x12, 0xfb, 0xed, 0xcd, 0x5c, 0xd7, 0x6e, 0xe7, 0xba, 0xf6, 0x63, 0xae, 0x6b, + 0x5f, 0x16, 0x7a, 0xe3, 0x76, 0xa1, 0x37, 0xbe, 0x2f, 0xf4, 0xc6, 0xfb, 0x43, 0x1a, 0x8a, 0x49, + 0xea, 0x5b, 0x63, 0x16, 0x61, 0x39, 0xf5, 0x60, 0xea, 0xf9, 0xa0, 0x62, 0x9c, 0x1d, 0xe1, 0x8f, + 0x4b, 0xff, 0x88, 0x72, 0x7f, 0xf0, 0x1f, 0x55, 0x5f, 0xe1, 0xf0, 0x57, 0x00, 0x00, 0x00, 0xff, + 0xff, 0x0d, 0xc8, 0xb4, 0x8f, 0x44, 0x04, 0x00, 0x00, } func (m *MsgGrantTreasuryAuthorization) Marshal() (dAtA []byte, err error) {