Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions proto/cosmos/adminmodule/adminmodule/tx.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
syntax = "proto3";
package cosmos.adminmodule.adminmodule;

import "amino/amino.proto";
import "gogoproto/gogo.proto";
import "google/protobuf/any.proto";
import "cosmos_proto/cosmos.proto";
Expand All @@ -20,6 +21,7 @@ service Msg {
}

message MsgDeleteAdmin {
option (amino.name) = "adminmodule/MsgDeleteAdmin";
option (cosmos.msg.v1.signer) = "creator";

string creator = 1;
Expand All @@ -30,6 +32,7 @@ message MsgDeleteAdminResponse {
}

message MsgAddAdmin {
option (amino.name) = "adminmodule/MsgAddAdmin";
option (cosmos.msg.v1.signer) = "creator";

string creator = 1;
Expand All @@ -42,6 +45,7 @@ message MsgAddAdminResponse {
// MsgSubmitProposalLegacy defines an sdk.Msg type that supports submitting arbitrary
// proposal Content.
message MsgSubmitProposalLegacy {
option (amino.name) = "adminmodule/MsgSubmitProposalLegacy";
option (cosmos.msg.v1.signer) = "proposer";

option (gogoproto.equal) = false;
Expand All @@ -61,6 +65,7 @@ message MsgSubmitProposalLegacyResponse {
// MsgSubmitProposal defines an sdk.Msg type that supports submitting arbitrary
// proposal Content.
message MsgSubmitProposal {
option (amino.name) = "adminmodule/MsgSubmitProposal";
option (cosmos.msg.v1.signer) = "proposer";

option (gogoproto.equal) = false;
Expand Down