2022-01-08 01:59:34 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
package cosmos.gov.v1beta1;
|
|
|
|
|
|
|
|
import "cosmos/base/v1beta1/coin.proto";
|
|
|
|
import "cosmos/gov/v1beta1/gov.proto";
|
|
|
|
import "cosmos_proto/cosmos.proto";
|
|
|
|
import "gogoproto/gogo.proto";
|
|
|
|
import "google/protobuf/any.proto";
|
2023-04-04 00:08:45 +00:00
|
|
|
import "cosmos/msg/v1/msg.proto";
|
2024-02-06 22:54:10 +00:00
|
|
|
import "amino/amino.proto";
|
2023-04-04 00:08:45 +00:00
|
|
|
|
|
|
|
option go_package = "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1";
|
2022-01-08 01:59:34 +00:00
|
|
|
|
|
|
|
// Msg defines the bank Msg service.
|
|
|
|
service Msg {
|
2024-02-06 22:54:10 +00:00
|
|
|
option (cosmos.msg.v1.service) = true;
|
|
|
|
|
2022-01-08 01:59:34 +00:00
|
|
|
// SubmitProposal defines a method to create new proposal given a content.
|
|
|
|
rpc SubmitProposal(MsgSubmitProposal) returns (MsgSubmitProposalResponse);
|
|
|
|
|
|
|
|
// Vote defines a method to add a vote on a specific proposal.
|
|
|
|
rpc Vote(MsgVote) returns (MsgVoteResponse);
|
|
|
|
|
|
|
|
// VoteWeighted defines a method to add a weighted vote on a specific proposal.
|
|
|
|
//
|
|
|
|
// Since: cosmos-sdk 0.43
|
|
|
|
rpc VoteWeighted(MsgVoteWeighted) returns (MsgVoteWeightedResponse);
|
|
|
|
|
|
|
|
// Deposit defines a method to add deposit on a specific proposal.
|
|
|
|
rpc Deposit(MsgDeposit) returns (MsgDepositResponse);
|
|
|
|
}
|
|
|
|
|
|
|
|
// MsgSubmitProposal defines an sdk.Msg type that supports submitting arbitrary
|
|
|
|
// proposal Content.
|
|
|
|
message MsgSubmitProposal {
|
2023-04-04 00:08:45 +00:00
|
|
|
option (cosmos.msg.v1.signer) = "proposer";
|
2024-02-06 22:54:10 +00:00
|
|
|
option (amino.name) = "cosmos-sdk/MsgSubmitProposal";
|
2023-04-04 00:08:45 +00:00
|
|
|
|
2022-01-08 01:59:34 +00:00
|
|
|
option (gogoproto.equal) = false;
|
|
|
|
option (gogoproto.goproto_stringer) = false;
|
|
|
|
option (gogoproto.stringer) = false;
|
|
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
|
2024-02-06 22:54:10 +00:00
|
|
|
// content is the proposal's content.
|
|
|
|
google.protobuf.Any content = 1 [(cosmos_proto.accepts_interface) = "cosmos.gov.v1beta1.Content"];
|
|
|
|
// initial_deposit is the deposit value that must be paid at proposal submission.
|
|
|
|
repeated cosmos.base.v1beta1.Coin initial_deposit = 2 [
|
|
|
|
(gogoproto.nullable) = false,
|
|
|
|
(amino.dont_omitempty) = true,
|
|
|
|
(gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"
|
|
|
|
];
|
|
|
|
|
|
|
|
// proposer is the account address of the proposer.
|
2023-04-04 00:08:45 +00:00
|
|
|
string proposer = 3 [(cosmos_proto.scalar) = "cosmos.AddressString"];
|
2022-01-08 01:59:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// MsgSubmitProposalResponse defines the Msg/SubmitProposal response type.
|
|
|
|
message MsgSubmitProposalResponse {
|
2024-02-06 22:54:10 +00:00
|
|
|
// proposal_id defines the unique id of the proposal.
|
|
|
|
uint64 proposal_id = 1 [(gogoproto.jsontag) = "proposal_id", (amino.dont_omitempty) = true];
|
2022-01-08 01:59:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// MsgVote defines a message to cast a vote.
|
|
|
|
message MsgVote {
|
2023-04-04 00:08:45 +00:00
|
|
|
option (cosmos.msg.v1.signer) = "voter";
|
2024-02-06 22:54:10 +00:00
|
|
|
option (amino.name) = "cosmos-sdk/MsgVote";
|
2023-04-04 00:08:45 +00:00
|
|
|
|
2022-01-08 01:59:34 +00:00
|
|
|
option (gogoproto.equal) = false;
|
|
|
|
option (gogoproto.goproto_stringer) = false;
|
|
|
|
option (gogoproto.stringer) = false;
|
|
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
|
2024-02-06 22:54:10 +00:00
|
|
|
// proposal_id defines the unique id of the proposal.
|
2023-04-04 00:08:45 +00:00
|
|
|
uint64 proposal_id = 1;
|
2024-02-06 22:54:10 +00:00
|
|
|
|
|
|
|
// voter is the voter address for the proposal.
|
2023-04-04 00:08:45 +00:00
|
|
|
string voter = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"];
|
2024-02-06 22:54:10 +00:00
|
|
|
|
|
|
|
// option defines the vote option.
|
2022-01-08 01:59:34 +00:00
|
|
|
VoteOption option = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
// MsgVoteResponse defines the Msg/Vote response type.
|
|
|
|
message MsgVoteResponse {}
|
|
|
|
|
|
|
|
// MsgVoteWeighted defines a message to cast a vote.
|
|
|
|
//
|
|
|
|
// Since: cosmos-sdk 0.43
|
|
|
|
message MsgVoteWeighted {
|
2023-04-04 00:08:45 +00:00
|
|
|
option (cosmos.msg.v1.signer) = "voter";
|
2024-02-06 22:54:10 +00:00
|
|
|
option (amino.name) = "cosmos-sdk/MsgVoteWeighted";
|
2023-04-04 00:08:45 +00:00
|
|
|
|
2022-01-08 01:59:34 +00:00
|
|
|
option (gogoproto.equal) = false;
|
|
|
|
option (gogoproto.goproto_stringer) = false;
|
|
|
|
option (gogoproto.stringer) = false;
|
|
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
|
2024-02-06 22:54:10 +00:00
|
|
|
// proposal_id defines the unique id of the proposal.
|
|
|
|
uint64 proposal_id = 1 [(gogoproto.jsontag) = "proposal_id", (amino.dont_omitempty) = true];
|
|
|
|
|
|
|
|
// voter is the voter address for the proposal.
|
2023-04-04 00:08:45 +00:00
|
|
|
string voter = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"];
|
2024-02-06 22:54:10 +00:00
|
|
|
|
|
|
|
// options defines the weighted vote options.
|
|
|
|
repeated WeightedVoteOption options = 3 [(gogoproto.nullable) = false, (amino.dont_omitempty) = true];
|
2022-01-08 01:59:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// MsgVoteWeightedResponse defines the Msg/VoteWeighted response type.
|
|
|
|
//
|
|
|
|
// Since: cosmos-sdk 0.43
|
|
|
|
message MsgVoteWeightedResponse {}
|
|
|
|
|
|
|
|
// MsgDeposit defines a message to submit a deposit to an existing proposal.
|
|
|
|
message MsgDeposit {
|
2023-04-04 00:08:45 +00:00
|
|
|
option (cosmos.msg.v1.signer) = "depositor";
|
2024-02-06 22:54:10 +00:00
|
|
|
option (amino.name) = "cosmos-sdk/MsgDeposit";
|
2023-04-04 00:08:45 +00:00
|
|
|
|
2022-01-08 01:59:34 +00:00
|
|
|
option (gogoproto.equal) = false;
|
|
|
|
option (gogoproto.goproto_stringer) = false;
|
|
|
|
option (gogoproto.stringer) = false;
|
|
|
|
option (gogoproto.goproto_getters) = false;
|
|
|
|
|
2024-02-06 22:54:10 +00:00
|
|
|
// proposal_id defines the unique id of the proposal.
|
|
|
|
uint64 proposal_id = 1 [(gogoproto.jsontag) = "proposal_id", (amino.dont_omitempty) = true];
|
|
|
|
|
|
|
|
// depositor defines the deposit addresses from the proposals.
|
2023-04-04 00:08:45 +00:00
|
|
|
string depositor = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"];
|
2024-02-06 22:54:10 +00:00
|
|
|
|
|
|
|
// amount to be deposited by depositor.
|
|
|
|
repeated cosmos.base.v1beta1.Coin amount = 3 [
|
|
|
|
(gogoproto.nullable) = false,
|
|
|
|
(amino.dont_omitempty) = true,
|
|
|
|
(gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"
|
|
|
|
];
|
2022-01-08 01:59:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// MsgDepositResponse defines the Msg/Deposit response type.
|
|
|
|
message MsgDepositResponse {}
|