governancev1alpha1

package
v2.5.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 28, 2024 License: Apache-2.0 Imports: 23 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrInvalidLengthGovernance        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowGovernance          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupGovernance = fmt.Errorf("proto: unexpected end of group")
)
View Source
var Vote_Vote_name = map[int32]string{
	0: "VOTE_UNSPECIFIED",
	1: "VOTE_ABSTAIN",
	2: "VOTE_YES",
	3: "VOTE_NO",
}
View Source
var Vote_Vote_value = map[string]int32{
	"VOTE_UNSPECIFIED": 0,
	"VOTE_ABSTAIN":     1,
	"VOTE_YES":         2,
	"VOTE_NO":          3,
}

Functions

func RegisterQueryServiceServer

func RegisterQueryServiceServer(s grpc1.Server, srv QueryServiceServer)

Types

type AllTalliedDelegatorVotesForProposalRequest

type AllTalliedDelegatorVotesForProposalRequest struct {
	// The expected chain id (empty string if no expectation).
	ChainId string `protobuf:"bytes,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	// The proposal id to request information on.
	ProposalId uint64 `protobuf:"varint,2,opt,name=proposal_id,json=proposalId,proto3" json:"proposal_id,omitempty"`
}

func (*AllTalliedDelegatorVotesForProposalRequest) Descriptor

func (*AllTalliedDelegatorVotesForProposalRequest) GetChainId

func (*AllTalliedDelegatorVotesForProposalRequest) GetProposalId

func (*AllTalliedDelegatorVotesForProposalRequest) Marshal

func (m *AllTalliedDelegatorVotesForProposalRequest) Marshal() (dAtA []byte, err error)

func (*AllTalliedDelegatorVotesForProposalRequest) MarshalTo

func (m *AllTalliedDelegatorVotesForProposalRequest) MarshalTo(dAtA []byte) (int, error)

func (*AllTalliedDelegatorVotesForProposalRequest) MarshalToSizedBuffer

func (m *AllTalliedDelegatorVotesForProposalRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*AllTalliedDelegatorVotesForProposalRequest) ProtoMessage

func (*AllTalliedDelegatorVotesForProposalRequest) Reset

func (*AllTalliedDelegatorVotesForProposalRequest) Size

func (*AllTalliedDelegatorVotesForProposalRequest) String

func (*AllTalliedDelegatorVotesForProposalRequest) Unmarshal

func (*AllTalliedDelegatorVotesForProposalRequest) XXX_DiscardUnknown

func (m *AllTalliedDelegatorVotesForProposalRequest) XXX_DiscardUnknown()

func (*AllTalliedDelegatorVotesForProposalRequest) XXX_Marshal

func (m *AllTalliedDelegatorVotesForProposalRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AllTalliedDelegatorVotesForProposalRequest) XXX_Merge

func (*AllTalliedDelegatorVotesForProposalRequest) XXX_Size

func (*AllTalliedDelegatorVotesForProposalRequest) XXX_Unmarshal

type AllTalliedDelegatorVotesForProposalResponse

type AllTalliedDelegatorVotesForProposalResponse struct {
	// The tally of delegator votes for a given validator for the proposal.
	Tally *Tally `protobuf:"bytes,1,opt,name=tally,proto3" json:"tally,omitempty"`
	// The validator identity associated with the tally.
	IdentityKey *v1alpha12.IdentityKey `protobuf:"bytes,2,opt,name=identity_key,json=identityKey,proto3" json:"identity_key,omitempty"`
}

func (*AllTalliedDelegatorVotesForProposalResponse) Descriptor

func (*AllTalliedDelegatorVotesForProposalResponse) GetIdentityKey

func (*AllTalliedDelegatorVotesForProposalResponse) GetTally

func (*AllTalliedDelegatorVotesForProposalResponse) Marshal

func (m *AllTalliedDelegatorVotesForProposalResponse) Marshal() (dAtA []byte, err error)

func (*AllTalliedDelegatorVotesForProposalResponse) MarshalTo

func (*AllTalliedDelegatorVotesForProposalResponse) MarshalToSizedBuffer

func (m *AllTalliedDelegatorVotesForProposalResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*AllTalliedDelegatorVotesForProposalResponse) ProtoMessage

func (*AllTalliedDelegatorVotesForProposalResponse) Reset

func (*AllTalliedDelegatorVotesForProposalResponse) Size

func (*AllTalliedDelegatorVotesForProposalResponse) String

func (*AllTalliedDelegatorVotesForProposalResponse) Unmarshal

func (*AllTalliedDelegatorVotesForProposalResponse) XXX_DiscardUnknown

func (m *AllTalliedDelegatorVotesForProposalResponse) XXX_DiscardUnknown()

func (*AllTalliedDelegatorVotesForProposalResponse) XXX_Marshal

func (m *AllTalliedDelegatorVotesForProposalResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AllTalliedDelegatorVotesForProposalResponse) XXX_Merge

func (*AllTalliedDelegatorVotesForProposalResponse) XXX_Size

func (*AllTalliedDelegatorVotesForProposalResponse) XXX_Unmarshal

type ChangedAppParameters

type ChangedAppParameters struct {
	// Chain module parameters.
	ChainParams *v1alpha17.ChainParameters `protobuf:"bytes,1,opt,name=chain_params,json=chainParams,proto3" json:"chain_params,omitempty"`
	// Community Pool module parameters.
	CommunityPoolParams *v1alpha18.CommunityPoolParameters `protobuf:"bytes,2,opt,name=community_pool_params,json=communityPoolParams,proto3" json:"community_pool_params,omitempty"`
	// Governance module parameters.
	GovernanceParams *GovernanceParameters `protobuf:"bytes,3,opt,name=governance_params,json=governanceParams,proto3" json:"governance_params,omitempty"`
	// IBC module parameters.
	IbcParams *v1alpha19.IbcParameters `protobuf:"bytes,4,opt,name=ibc_params,json=ibcParams,proto3" json:"ibc_params,omitempty"`
	// Stake module parameters.
	StakeParams *v1alpha16.StakeParameters `protobuf:"bytes,5,opt,name=stake_params,json=stakeParams,proto3" json:"stake_params,omitempty"`
	// Fee module parameters.
	FeeParams *v1alpha110.FeeParameters `protobuf:"bytes,6,opt,name=fee_params,json=feeParams,proto3" json:"fee_params,omitempty"`
	// Distributions module parameters.
	DistributionsParams *v1alpha111.DistributionsParameters `protobuf:"bytes,7,opt,name=distributions_params,json=distributionsParams,proto3" json:"distributions_params,omitempty"`
}

Note: must be kept in sync with AppParameters. Each field here is optional.

func (*ChangedAppParameters) Descriptor

func (*ChangedAppParameters) Descriptor() ([]byte, []int)

func (*ChangedAppParameters) GetChainParams

func (m *ChangedAppParameters) GetChainParams() *v1alpha17.ChainParameters

func (*ChangedAppParameters) GetCommunityPoolParams

func (m *ChangedAppParameters) GetCommunityPoolParams() *v1alpha18.CommunityPoolParameters

func (*ChangedAppParameters) GetDistributionsParams

func (m *ChangedAppParameters) GetDistributionsParams() *v1alpha111.DistributionsParameters

func (*ChangedAppParameters) GetFeeParams

func (m *ChangedAppParameters) GetFeeParams() *v1alpha110.FeeParameters

func (*ChangedAppParameters) GetGovernanceParams

func (m *ChangedAppParameters) GetGovernanceParams() *GovernanceParameters

func (*ChangedAppParameters) GetIbcParams

func (m *ChangedAppParameters) GetIbcParams() *v1alpha19.IbcParameters

func (*ChangedAppParameters) GetStakeParams

func (m *ChangedAppParameters) GetStakeParams() *v1alpha16.StakeParameters

func (*ChangedAppParameters) Marshal

func (m *ChangedAppParameters) Marshal() (dAtA []byte, err error)

func (*ChangedAppParameters) MarshalTo

func (m *ChangedAppParameters) MarshalTo(dAtA []byte) (int, error)

func (*ChangedAppParameters) MarshalToSizedBuffer

func (m *ChangedAppParameters) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ChangedAppParameters) ProtoMessage

func (*ChangedAppParameters) ProtoMessage()

func (*ChangedAppParameters) Reset

func (m *ChangedAppParameters) Reset()

func (*ChangedAppParameters) Size

func (m *ChangedAppParameters) Size() (n int)

func (*ChangedAppParameters) String

func (m *ChangedAppParameters) String() string

func (*ChangedAppParameters) Unmarshal

func (m *ChangedAppParameters) Unmarshal(dAtA []byte) error

func (*ChangedAppParameters) XXX_DiscardUnknown

func (m *ChangedAppParameters) XXX_DiscardUnknown()

func (*ChangedAppParameters) XXX_Marshal

func (m *ChangedAppParameters) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ChangedAppParameters) XXX_Merge

func (m *ChangedAppParameters) XXX_Merge(src proto.Message)

func (*ChangedAppParameters) XXX_Size

func (m *ChangedAppParameters) XXX_Size() int

func (*ChangedAppParameters) XXX_Unmarshal

func (m *ChangedAppParameters) XXX_Unmarshal(b []byte) error

type ChangedAppParametersSet

type ChangedAppParametersSet struct {
	// The set of app parameters at the time the proposal was submitted.
	Old *ChangedAppParameters `protobuf:"bytes,1,opt,name=old,proto3" json:"old,omitempty"`
	// The new set of parameters the proposal is trying to enact.
	New *ChangedAppParameters `protobuf:"bytes,2,opt,name=new,proto3" json:"new,omitempty"`
}

func (*ChangedAppParametersSet) Descriptor

func (*ChangedAppParametersSet) Descriptor() ([]byte, []int)

func (*ChangedAppParametersSet) GetNew

func (*ChangedAppParametersSet) GetOld

func (*ChangedAppParametersSet) Marshal

func (m *ChangedAppParametersSet) Marshal() (dAtA []byte, err error)

func (*ChangedAppParametersSet) MarshalTo

func (m *ChangedAppParametersSet) MarshalTo(dAtA []byte) (int, error)

func (*ChangedAppParametersSet) MarshalToSizedBuffer

func (m *ChangedAppParametersSet) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ChangedAppParametersSet) ProtoMessage

func (*ChangedAppParametersSet) ProtoMessage()

func (*ChangedAppParametersSet) Reset

func (m *ChangedAppParametersSet) Reset()

func (*ChangedAppParametersSet) Size

func (m *ChangedAppParametersSet) Size() (n int)

func (*ChangedAppParametersSet) String

func (m *ChangedAppParametersSet) String() string

func (*ChangedAppParametersSet) Unmarshal

func (m *ChangedAppParametersSet) Unmarshal(dAtA []byte) error

func (*ChangedAppParametersSet) XXX_DiscardUnknown

func (m *ChangedAppParametersSet) XXX_DiscardUnknown()

func (*ChangedAppParametersSet) XXX_Marshal

func (m *ChangedAppParametersSet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ChangedAppParametersSet) XXX_Merge

func (m *ChangedAppParametersSet) XXX_Merge(src proto.Message)

func (*ChangedAppParametersSet) XXX_Size

func (m *ChangedAppParametersSet) XXX_Size() int

func (*ChangedAppParametersSet) XXX_Unmarshal

func (m *ChangedAppParametersSet) XXX_Unmarshal(b []byte) error

type CommunityPoolDeposit

type CommunityPoolDeposit struct {
	// The value to deposit into the Community Pool.
	Value *v1alpha13.Value `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
}

func (*CommunityPoolDeposit) Descriptor

func (*CommunityPoolDeposit) Descriptor() ([]byte, []int)

func (*CommunityPoolDeposit) GetValue

func (m *CommunityPoolDeposit) GetValue() *v1alpha13.Value

func (*CommunityPoolDeposit) Marshal

func (m *CommunityPoolDeposit) Marshal() (dAtA []byte, err error)

func (*CommunityPoolDeposit) MarshalTo

func (m *CommunityPoolDeposit) MarshalTo(dAtA []byte) (int, error)

func (*CommunityPoolDeposit) MarshalToSizedBuffer

func (m *CommunityPoolDeposit) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CommunityPoolDeposit) ProtoMessage

func (*CommunityPoolDeposit) ProtoMessage()

func (*CommunityPoolDeposit) Reset

func (m *CommunityPoolDeposit) Reset()

func (*CommunityPoolDeposit) Size

func (m *CommunityPoolDeposit) Size() (n int)

func (*CommunityPoolDeposit) String

func (m *CommunityPoolDeposit) String() string

func (*CommunityPoolDeposit) Unmarshal

func (m *CommunityPoolDeposit) Unmarshal(dAtA []byte) error

func (*CommunityPoolDeposit) XXX_DiscardUnknown

func (m *CommunityPoolDeposit) XXX_DiscardUnknown()

func (*CommunityPoolDeposit) XXX_Marshal

func (m *CommunityPoolDeposit) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CommunityPoolDeposit) XXX_Merge

func (m *CommunityPoolDeposit) XXX_Merge(src proto.Message)

func (*CommunityPoolDeposit) XXX_Size

func (m *CommunityPoolDeposit) XXX_Size() int

func (*CommunityPoolDeposit) XXX_Unmarshal

func (m *CommunityPoolDeposit) XXX_Unmarshal(b []byte) error

type CommunityPoolOutput

type CommunityPoolOutput struct {
	// The value to output from the Community Pool.
	Value *v1alpha13.Value `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	// The address to send the output to.
	Address *v1alpha12.Address `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
}

func (*CommunityPoolOutput) Descriptor

func (*CommunityPoolOutput) Descriptor() ([]byte, []int)

func (*CommunityPoolOutput) GetAddress

func (m *CommunityPoolOutput) GetAddress() *v1alpha12.Address

func (*CommunityPoolOutput) GetValue

func (m *CommunityPoolOutput) GetValue() *v1alpha13.Value

func (*CommunityPoolOutput) Marshal

func (m *CommunityPoolOutput) Marshal() (dAtA []byte, err error)

func (*CommunityPoolOutput) MarshalTo

func (m *CommunityPoolOutput) MarshalTo(dAtA []byte) (int, error)

func (*CommunityPoolOutput) MarshalToSizedBuffer

func (m *CommunityPoolOutput) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CommunityPoolOutput) ProtoMessage

func (*CommunityPoolOutput) ProtoMessage()

func (*CommunityPoolOutput) Reset

func (m *CommunityPoolOutput) Reset()

func (*CommunityPoolOutput) Size

func (m *CommunityPoolOutput) Size() (n int)

func (*CommunityPoolOutput) String

func (m *CommunityPoolOutput) String() string

func (*CommunityPoolOutput) Unmarshal

func (m *CommunityPoolOutput) Unmarshal(dAtA []byte) error

func (*CommunityPoolOutput) XXX_DiscardUnknown

func (m *CommunityPoolOutput) XXX_DiscardUnknown()

func (*CommunityPoolOutput) XXX_Marshal

func (m *CommunityPoolOutput) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CommunityPoolOutput) XXX_Merge

func (m *CommunityPoolOutput) XXX_Merge(src proto.Message)

func (*CommunityPoolOutput) XXX_Size

func (m *CommunityPoolOutput) XXX_Size() int

func (*CommunityPoolOutput) XXX_Unmarshal

func (m *CommunityPoolOutput) XXX_Unmarshal(b []byte) error

type CommunityPoolSpend

type CommunityPoolSpend struct {
	// The value to spend from the Community Pool.
	Value *v1alpha13.Value `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
}

func (*CommunityPoolSpend) Descriptor

func (*CommunityPoolSpend) Descriptor() ([]byte, []int)

func (*CommunityPoolSpend) GetValue

func (m *CommunityPoolSpend) GetValue() *v1alpha13.Value

func (*CommunityPoolSpend) Marshal

func (m *CommunityPoolSpend) Marshal() (dAtA []byte, err error)

func (*CommunityPoolSpend) MarshalTo

func (m *CommunityPoolSpend) MarshalTo(dAtA []byte) (int, error)

func (*CommunityPoolSpend) MarshalToSizedBuffer

func (m *CommunityPoolSpend) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CommunityPoolSpend) ProtoMessage

func (*CommunityPoolSpend) ProtoMessage()

func (*CommunityPoolSpend) Reset

func (m *CommunityPoolSpend) Reset()

func (*CommunityPoolSpend) Size

func (m *CommunityPoolSpend) Size() (n int)

func (*CommunityPoolSpend) String

func (m *CommunityPoolSpend) String() string

func (*CommunityPoolSpend) Unmarshal

func (m *CommunityPoolSpend) Unmarshal(dAtA []byte) error

func (*CommunityPoolSpend) XXX_DiscardUnknown

func (m *CommunityPoolSpend) XXX_DiscardUnknown()

func (*CommunityPoolSpend) XXX_Marshal

func (m *CommunityPoolSpend) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CommunityPoolSpend) XXX_Merge

func (m *CommunityPoolSpend) XXX_Merge(src proto.Message)

func (*CommunityPoolSpend) XXX_Size

func (m *CommunityPoolSpend) XXX_Size() int

func (*CommunityPoolSpend) XXX_Unmarshal

func (m *CommunityPoolSpend) XXX_Unmarshal(b []byte) error

type DelegatorVote

type DelegatorVote struct {
	// The effecting data for the vote.
	Body *DelegatorVoteBody `protobuf:"bytes,1,opt,name=body,proto3" json:"body,omitempty"`
	// The vote authorization signature is authorizing data.
	AuthSig *v1alpha11.SpendAuthSignature `protobuf:"bytes,2,opt,name=auth_sig,json=authSig,proto3" json:"auth_sig,omitempty"`
	// The vote proof is authorizing data.
	Proof *ZKDelegatorVoteProof `protobuf:"bytes,3,opt,name=proof,proto3" json:"proof,omitempty"`
}

func (*DelegatorVote) Descriptor

func (*DelegatorVote) Descriptor() ([]byte, []int)

func (*DelegatorVote) GetAuthSig

func (m *DelegatorVote) GetAuthSig() *v1alpha11.SpendAuthSignature

func (*DelegatorVote) GetBody

func (m *DelegatorVote) GetBody() *DelegatorVoteBody

func (*DelegatorVote) GetProof

func (m *DelegatorVote) GetProof() *ZKDelegatorVoteProof

func (*DelegatorVote) Marshal

func (m *DelegatorVote) Marshal() (dAtA []byte, err error)

func (*DelegatorVote) MarshalTo

func (m *DelegatorVote) MarshalTo(dAtA []byte) (int, error)

func (*DelegatorVote) MarshalToSizedBuffer

func (m *DelegatorVote) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DelegatorVote) ProtoMessage

func (*DelegatorVote) ProtoMessage()

func (*DelegatorVote) Reset

func (m *DelegatorVote) Reset()

func (*DelegatorVote) Size

func (m *DelegatorVote) Size() (n int)

func (*DelegatorVote) String

func (m *DelegatorVote) String() string

func (*DelegatorVote) Unmarshal

func (m *DelegatorVote) Unmarshal(dAtA []byte) error

func (*DelegatorVote) XXX_DiscardUnknown

func (m *DelegatorVote) XXX_DiscardUnknown()

func (*DelegatorVote) XXX_Marshal

func (m *DelegatorVote) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DelegatorVote) XXX_Merge

func (m *DelegatorVote) XXX_Merge(src proto.Message)

func (*DelegatorVote) XXX_Size

func (m *DelegatorVote) XXX_Size() int

func (*DelegatorVote) XXX_Unmarshal

func (m *DelegatorVote) XXX_Unmarshal(b []byte) error

type DelegatorVoteBody

type DelegatorVoteBody struct {
	// The proposal being voted on.
	Proposal uint64 `protobuf:"varint,1,opt,name=proposal,proto3" json:"proposal,omitempty"`
	// The start position of the proposal in the TCT.
	StartPosition uint64 `protobuf:"varint,2,opt,name=start_position,json=startPosition,proto3" json:"start_position,omitempty"`
	// The vote.
	Vote *Vote `protobuf:"bytes,3,opt,name=vote,proto3" json:"vote,omitempty"`
	// The value of the delegation note.
	Value *v1alpha13.Value `protobuf:"bytes,4,opt,name=value,proto3" json:"value,omitempty"`
	// The amount of the delegation note, in unbonded penumbra.
	UnbondedAmount *v1alpha1.Amount `protobuf:"bytes,5,opt,name=unbonded_amount,json=unbondedAmount,proto3" json:"unbonded_amount,omitempty"`
	// The nullifier of the input note.
	Nullifier *v1alpha14.Nullifier `protobuf:"bytes,6,opt,name=nullifier,proto3" json:"nullifier,omitempty"`
	// The randomized validating key for the spend authorization signature.
	Rk *v1alpha11.SpendVerificationKey `protobuf:"bytes,7,opt,name=rk,proto3" json:"rk,omitempty"`
}

func (*DelegatorVoteBody) Descriptor

func (*DelegatorVoteBody) Descriptor() ([]byte, []int)

func (*DelegatorVoteBody) GetNullifier

func (m *DelegatorVoteBody) GetNullifier() *v1alpha14.Nullifier

func (*DelegatorVoteBody) GetProposal

func (m *DelegatorVoteBody) GetProposal() uint64

func (*DelegatorVoteBody) GetRk

func (*DelegatorVoteBody) GetStartPosition

func (m *DelegatorVoteBody) GetStartPosition() uint64

func (*DelegatorVoteBody) GetUnbondedAmount

func (m *DelegatorVoteBody) GetUnbondedAmount() *v1alpha1.Amount

func (*DelegatorVoteBody) GetValue

func (m *DelegatorVoteBody) GetValue() *v1alpha13.Value

func (*DelegatorVoteBody) GetVote

func (m *DelegatorVoteBody) GetVote() *Vote

func (*DelegatorVoteBody) Marshal

func (m *DelegatorVoteBody) Marshal() (dAtA []byte, err error)

func (*DelegatorVoteBody) MarshalTo

func (m *DelegatorVoteBody) MarshalTo(dAtA []byte) (int, error)

func (*DelegatorVoteBody) MarshalToSizedBuffer

func (m *DelegatorVoteBody) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DelegatorVoteBody) ProtoMessage

func (*DelegatorVoteBody) ProtoMessage()

func (*DelegatorVoteBody) Reset

func (m *DelegatorVoteBody) Reset()

func (*DelegatorVoteBody) Size

func (m *DelegatorVoteBody) Size() (n int)

func (*DelegatorVoteBody) String

func (m *DelegatorVoteBody) String() string

func (*DelegatorVoteBody) Unmarshal

func (m *DelegatorVoteBody) Unmarshal(dAtA []byte) error

func (*DelegatorVoteBody) XXX_DiscardUnknown

func (m *DelegatorVoteBody) XXX_DiscardUnknown()

func (*DelegatorVoteBody) XXX_Marshal

func (m *DelegatorVoteBody) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DelegatorVoteBody) XXX_Merge

func (m *DelegatorVoteBody) XXX_Merge(src proto.Message)

func (*DelegatorVoteBody) XXX_Size

func (m *DelegatorVoteBody) XXX_Size() int

func (*DelegatorVoteBody) XXX_Unmarshal

func (m *DelegatorVoteBody) XXX_Unmarshal(b []byte) error

type DelegatorVotePlan

type DelegatorVotePlan struct {
	// The proposal to vote on.
	Proposal uint64 `protobuf:"varint,1,opt,name=proposal,proto3" json:"proposal,omitempty"`
	// The start position of the proposal in the TCT.
	StartPosition uint64 `protobuf:"varint,2,opt,name=start_position,json=startPosition,proto3" json:"start_position,omitempty"`
	// The vote to cast.
	Vote *Vote `protobuf:"bytes,3,opt,name=vote,proto3" json:"vote,omitempty"`
	// The delegation note to prove that we can vote.
	StakedNote *v1alpha15.Note `protobuf:"bytes,4,opt,name=staked_note,json=stakedNote,proto3" json:"staked_note,omitempty"`
	// The position of that delegation note.
	StakedNotePosition uint64 `protobuf:"varint,5,opt,name=staked_note_position,json=stakedNotePosition,proto3" json:"staked_note_position,omitempty"`
	// The unbonded amount equivalent to the delegation note.
	UnbondedAmount *v1alpha1.Amount `protobuf:"bytes,6,opt,name=unbonded_amount,json=unbondedAmount,proto3" json:"unbonded_amount,omitempty"`
	// The randomizer to use for the proof of spend capability.
	Randomizer []byte `protobuf:"bytes,7,opt,name=randomizer,proto3" json:"randomizer,omitempty"`
	// The first blinding factor to use for the ZK delegator vote proof.
	ProofBlindingR []byte `protobuf:"bytes,8,opt,name=proof_blinding_r,json=proofBlindingR,proto3" json:"proof_blinding_r,omitempty"`
	// The second blinding factor to use for the ZK delegator vote proof.
	ProofBlindingS []byte `protobuf:"bytes,9,opt,name=proof_blinding_s,json=proofBlindingS,proto3" json:"proof_blinding_s,omitempty"`
}

func (*DelegatorVotePlan) Descriptor

func (*DelegatorVotePlan) Descriptor() ([]byte, []int)

func (*DelegatorVotePlan) GetProofBlindingR

func (m *DelegatorVotePlan) GetProofBlindingR() []byte

func (*DelegatorVotePlan) GetProofBlindingS

func (m *DelegatorVotePlan) GetProofBlindingS() []byte

func (*DelegatorVotePlan) GetProposal

func (m *DelegatorVotePlan) GetProposal() uint64

func (*DelegatorVotePlan) GetRandomizer

func (m *DelegatorVotePlan) GetRandomizer() []byte

func (*DelegatorVotePlan) GetStakedNote

func (m *DelegatorVotePlan) GetStakedNote() *v1alpha15.Note

func (*DelegatorVotePlan) GetStakedNotePosition

func (m *DelegatorVotePlan) GetStakedNotePosition() uint64

func (*DelegatorVotePlan) GetStartPosition

func (m *DelegatorVotePlan) GetStartPosition() uint64

func (*DelegatorVotePlan) GetUnbondedAmount

func (m *DelegatorVotePlan) GetUnbondedAmount() *v1alpha1.Amount

func (*DelegatorVotePlan) GetVote

func (m *DelegatorVotePlan) GetVote() *Vote

func (*DelegatorVotePlan) Marshal

func (m *DelegatorVotePlan) Marshal() (dAtA []byte, err error)

func (*DelegatorVotePlan) MarshalTo

func (m *DelegatorVotePlan) MarshalTo(dAtA []byte) (int, error)

func (*DelegatorVotePlan) MarshalToSizedBuffer

func (m *DelegatorVotePlan) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DelegatorVotePlan) ProtoMessage

func (*DelegatorVotePlan) ProtoMessage()

func (*DelegatorVotePlan) Reset

func (m *DelegatorVotePlan) Reset()

func (*DelegatorVotePlan) Size

func (m *DelegatorVotePlan) Size() (n int)

func (*DelegatorVotePlan) String

func (m *DelegatorVotePlan) String() string

func (*DelegatorVotePlan) Unmarshal

func (m *DelegatorVotePlan) Unmarshal(dAtA []byte) error

func (*DelegatorVotePlan) XXX_DiscardUnknown

func (m *DelegatorVotePlan) XXX_DiscardUnknown()

func (*DelegatorVotePlan) XXX_Marshal

func (m *DelegatorVotePlan) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DelegatorVotePlan) XXX_Merge

func (m *DelegatorVotePlan) XXX_Merge(src proto.Message)

func (*DelegatorVotePlan) XXX_Size

func (m *DelegatorVotePlan) XXX_Size() int

func (*DelegatorVotePlan) XXX_Unmarshal

func (m *DelegatorVotePlan) XXX_Unmarshal(b []byte) error

type DelegatorVoteView

type DelegatorVoteView struct {
	// Types that are valid to be assigned to DelegatorVote:
	//	*DelegatorVoteView_Visible_
	//	*DelegatorVoteView_Opaque_
	DelegatorVote isDelegatorVoteView_DelegatorVote `protobuf_oneof:"delegator_vote"`
}

func (*DelegatorVoteView) Descriptor

func (*DelegatorVoteView) Descriptor() ([]byte, []int)

func (*DelegatorVoteView) GetDelegatorVote

func (m *DelegatorVoteView) GetDelegatorVote() isDelegatorVoteView_DelegatorVote

func (*DelegatorVoteView) GetOpaque

func (*DelegatorVoteView) GetVisible

func (*DelegatorVoteView) Marshal

func (m *DelegatorVoteView) Marshal() (dAtA []byte, err error)

func (*DelegatorVoteView) MarshalTo

func (m *DelegatorVoteView) MarshalTo(dAtA []byte) (int, error)

func (*DelegatorVoteView) MarshalToSizedBuffer

func (m *DelegatorVoteView) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DelegatorVoteView) ProtoMessage

func (*DelegatorVoteView) ProtoMessage()

func (*DelegatorVoteView) Reset

func (m *DelegatorVoteView) Reset()

func (*DelegatorVoteView) Size

func (m *DelegatorVoteView) Size() (n int)

func (*DelegatorVoteView) String

func (m *DelegatorVoteView) String() string

func (*DelegatorVoteView) Unmarshal

func (m *DelegatorVoteView) Unmarshal(dAtA []byte) error

func (*DelegatorVoteView) XXX_DiscardUnknown

func (m *DelegatorVoteView) XXX_DiscardUnknown()

func (*DelegatorVoteView) XXX_Marshal

func (m *DelegatorVoteView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DelegatorVoteView) XXX_Merge

func (m *DelegatorVoteView) XXX_Merge(src proto.Message)

func (*DelegatorVoteView) XXX_OneofWrappers

func (*DelegatorVoteView) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*DelegatorVoteView) XXX_Size

func (m *DelegatorVoteView) XXX_Size() int

func (*DelegatorVoteView) XXX_Unmarshal

func (m *DelegatorVoteView) XXX_Unmarshal(b []byte) error

type DelegatorVoteView_Opaque

type DelegatorVoteView_Opaque struct {
	DelegatorVote *DelegatorVote `protobuf:"bytes,1,opt,name=delegator_vote,json=delegatorVote,proto3" json:"delegator_vote,omitempty"`
}

func (*DelegatorVoteView_Opaque) Descriptor

func (*DelegatorVoteView_Opaque) Descriptor() ([]byte, []int)

func (*DelegatorVoteView_Opaque) GetDelegatorVote

func (m *DelegatorVoteView_Opaque) GetDelegatorVote() *DelegatorVote

func (*DelegatorVoteView_Opaque) Marshal

func (m *DelegatorVoteView_Opaque) Marshal() (dAtA []byte, err error)

func (*DelegatorVoteView_Opaque) MarshalTo

func (m *DelegatorVoteView_Opaque) MarshalTo(dAtA []byte) (int, error)

func (*DelegatorVoteView_Opaque) MarshalToSizedBuffer

func (m *DelegatorVoteView_Opaque) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DelegatorVoteView_Opaque) ProtoMessage

func (*DelegatorVoteView_Opaque) ProtoMessage()

func (*DelegatorVoteView_Opaque) Reset

func (m *DelegatorVoteView_Opaque) Reset()

func (*DelegatorVoteView_Opaque) Size

func (m *DelegatorVoteView_Opaque) Size() (n int)

func (*DelegatorVoteView_Opaque) String

func (m *DelegatorVoteView_Opaque) String() string

func (*DelegatorVoteView_Opaque) Unmarshal

func (m *DelegatorVoteView_Opaque) Unmarshal(dAtA []byte) error

func (*DelegatorVoteView_Opaque) XXX_DiscardUnknown

func (m *DelegatorVoteView_Opaque) XXX_DiscardUnknown()

func (*DelegatorVoteView_Opaque) XXX_Marshal

func (m *DelegatorVoteView_Opaque) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DelegatorVoteView_Opaque) XXX_Merge

func (m *DelegatorVoteView_Opaque) XXX_Merge(src proto.Message)

func (*DelegatorVoteView_Opaque) XXX_Size

func (m *DelegatorVoteView_Opaque) XXX_Size() int

func (*DelegatorVoteView_Opaque) XXX_Unmarshal

func (m *DelegatorVoteView_Opaque) XXX_Unmarshal(b []byte) error

type DelegatorVoteView_Opaque_

type DelegatorVoteView_Opaque_ struct {
	Opaque *DelegatorVoteView_Opaque `protobuf:"bytes,2,opt,name=opaque,proto3,oneof" json:"opaque,omitempty"`
}

func (*DelegatorVoteView_Opaque_) MarshalTo

func (m *DelegatorVoteView_Opaque_) MarshalTo(dAtA []byte) (int, error)

func (*DelegatorVoteView_Opaque_) MarshalToSizedBuffer

func (m *DelegatorVoteView_Opaque_) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DelegatorVoteView_Opaque_) Size

func (m *DelegatorVoteView_Opaque_) Size() (n int)

type DelegatorVoteView_Visible

type DelegatorVoteView_Visible struct {
	DelegatorVote *DelegatorVote      `protobuf:"bytes,1,opt,name=delegator_vote,json=delegatorVote,proto3" json:"delegator_vote,omitempty"`
	Note          *v1alpha15.NoteView `protobuf:"bytes,2,opt,name=note,proto3" json:"note,omitempty"`
}

func (*DelegatorVoteView_Visible) Descriptor

func (*DelegatorVoteView_Visible) Descriptor() ([]byte, []int)

func (*DelegatorVoteView_Visible) GetDelegatorVote

func (m *DelegatorVoteView_Visible) GetDelegatorVote() *DelegatorVote

func (*DelegatorVoteView_Visible) GetNote

func (*DelegatorVoteView_Visible) Marshal

func (m *DelegatorVoteView_Visible) Marshal() (dAtA []byte, err error)

func (*DelegatorVoteView_Visible) MarshalTo

func (m *DelegatorVoteView_Visible) MarshalTo(dAtA []byte) (int, error)

func (*DelegatorVoteView_Visible) MarshalToSizedBuffer

func (m *DelegatorVoteView_Visible) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DelegatorVoteView_Visible) ProtoMessage

func (*DelegatorVoteView_Visible) ProtoMessage()

func (*DelegatorVoteView_Visible) Reset

func (m *DelegatorVoteView_Visible) Reset()

func (*DelegatorVoteView_Visible) Size

func (m *DelegatorVoteView_Visible) Size() (n int)

func (*DelegatorVoteView_Visible) String

func (m *DelegatorVoteView_Visible) String() string

func (*DelegatorVoteView_Visible) Unmarshal

func (m *DelegatorVoteView_Visible) Unmarshal(dAtA []byte) error

func (*DelegatorVoteView_Visible) XXX_DiscardUnknown

func (m *DelegatorVoteView_Visible) XXX_DiscardUnknown()

func (*DelegatorVoteView_Visible) XXX_Marshal

func (m *DelegatorVoteView_Visible) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DelegatorVoteView_Visible) XXX_Merge

func (m *DelegatorVoteView_Visible) XXX_Merge(src proto.Message)

func (*DelegatorVoteView_Visible) XXX_Size

func (m *DelegatorVoteView_Visible) XXX_Size() int

func (*DelegatorVoteView_Visible) XXX_Unmarshal

func (m *DelegatorVoteView_Visible) XXX_Unmarshal(b []byte) error

type DelegatorVoteView_Visible_

type DelegatorVoteView_Visible_ struct {
	Visible *DelegatorVoteView_Visible `protobuf:"bytes,1,opt,name=visible,proto3,oneof" json:"visible,omitempty"`
}

func (*DelegatorVoteView_Visible_) MarshalTo

func (m *DelegatorVoteView_Visible_) MarshalTo(dAtA []byte) (int, error)

func (*DelegatorVoteView_Visible_) MarshalToSizedBuffer

func (m *DelegatorVoteView_Visible_) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DelegatorVoteView_Visible_) Size

func (m *DelegatorVoteView_Visible_) Size() (n int)

type GenesisContent

type GenesisContent struct {
	// Governance parameters.
	GovernanceParams *GovernanceParameters `protobuf:"bytes,1,opt,name=governance_params,json=governanceParams,proto3" json:"governance_params,omitempty"`
}

Governance genesis state.

func (*GenesisContent) Descriptor

func (*GenesisContent) Descriptor() ([]byte, []int)

func (*GenesisContent) GetGovernanceParams

func (m *GenesisContent) GetGovernanceParams() *GovernanceParameters

func (*GenesisContent) Marshal

func (m *GenesisContent) Marshal() (dAtA []byte, err error)

func (*GenesisContent) MarshalTo

func (m *GenesisContent) MarshalTo(dAtA []byte) (int, error)

func (*GenesisContent) MarshalToSizedBuffer

func (m *GenesisContent) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GenesisContent) ProtoMessage

func (*GenesisContent) ProtoMessage()

func (*GenesisContent) Reset

func (m *GenesisContent) Reset()

func (*GenesisContent) Size

func (m *GenesisContent) Size() (n int)

func (*GenesisContent) String

func (m *GenesisContent) String() string

func (*GenesisContent) Unmarshal

func (m *GenesisContent) Unmarshal(dAtA []byte) error

func (*GenesisContent) XXX_DiscardUnknown

func (m *GenesisContent) XXX_DiscardUnknown()

func (*GenesisContent) XXX_Marshal

func (m *GenesisContent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GenesisContent) XXX_Merge

func (m *GenesisContent) XXX_Merge(src proto.Message)

func (*GenesisContent) XXX_Size

func (m *GenesisContent) XXX_Size() int

func (*GenesisContent) XXX_Unmarshal

func (m *GenesisContent) XXX_Unmarshal(b []byte) error

type GovernanceParameters

type GovernanceParameters struct {
	// The number of blocks during which a proposal is voted on.
	ProposalVotingBlocks uint64 `protobuf:"varint,1,opt,name=proposal_voting_blocks,json=proposalVotingBlocks,proto3" json:"proposal_voting_blocks,omitempty"`
	// The deposit required to create a proposal.
	ProposalDepositAmount *v1alpha1.Amount `` /* 126-byte string literal not displayed */
	// The quorum required for a proposal to be considered valid, as a fraction of the total stake
	// weight of the network.
	ProposalValidQuorum string `protobuf:"bytes,3,opt,name=proposal_valid_quorum,json=proposalValidQuorum,proto3" json:"proposal_valid_quorum,omitempty"`
	// The threshold for a proposal to pass voting, as a ratio of "yes" votes over "no" votes.
	ProposalPassThreshold string `` /* 126-byte string literal not displayed */
	// The threshold for a proposal to be slashed, regardless of whether the "yes" and "no" votes
	// would have passed it, as a ratio of "no" votes over all total votes.
	ProposalSlashThreshold string `` /* 129-byte string literal not displayed */
}

Governance configuration data.

func (*GovernanceParameters) Descriptor

func (*GovernanceParameters) Descriptor() ([]byte, []int)

func (*GovernanceParameters) GetProposalDepositAmount

func (m *GovernanceParameters) GetProposalDepositAmount() *v1alpha1.Amount

func (*GovernanceParameters) GetProposalPassThreshold

func (m *GovernanceParameters) GetProposalPassThreshold() string

func (*GovernanceParameters) GetProposalSlashThreshold

func (m *GovernanceParameters) GetProposalSlashThreshold() string

func (*GovernanceParameters) GetProposalValidQuorum

func (m *GovernanceParameters) GetProposalValidQuorum() string

func (*GovernanceParameters) GetProposalVotingBlocks

func (m *GovernanceParameters) GetProposalVotingBlocks() uint64

func (*GovernanceParameters) Marshal

func (m *GovernanceParameters) Marshal() (dAtA []byte, err error)

func (*GovernanceParameters) MarshalTo

func (m *GovernanceParameters) MarshalTo(dAtA []byte) (int, error)

func (*GovernanceParameters) MarshalToSizedBuffer

func (m *GovernanceParameters) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GovernanceParameters) ProtoMessage

func (*GovernanceParameters) ProtoMessage()

func (*GovernanceParameters) Reset

func (m *GovernanceParameters) Reset()

func (*GovernanceParameters) Size

func (m *GovernanceParameters) Size() (n int)

func (*GovernanceParameters) String

func (m *GovernanceParameters) String() string

func (*GovernanceParameters) Unmarshal

func (m *GovernanceParameters) Unmarshal(dAtA []byte) error

func (*GovernanceParameters) XXX_DiscardUnknown

func (m *GovernanceParameters) XXX_DiscardUnknown()

func (*GovernanceParameters) XXX_Marshal

func (m *GovernanceParameters) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GovernanceParameters) XXX_Merge

func (m *GovernanceParameters) XXX_Merge(src proto.Message)

func (*GovernanceParameters) XXX_Size

func (m *GovernanceParameters) XXX_Size() int

func (*GovernanceParameters) XXX_Unmarshal

func (m *GovernanceParameters) XXX_Unmarshal(b []byte) error

type NextProposalIdRequest

type NextProposalIdRequest struct {
	// The expected chain id (empty string if no expectation).
	ChainId string `protobuf:"bytes,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
}

func (*NextProposalIdRequest) Descriptor

func (*NextProposalIdRequest) Descriptor() ([]byte, []int)

func (*NextProposalIdRequest) GetChainId

func (m *NextProposalIdRequest) GetChainId() string

func (*NextProposalIdRequest) Marshal

func (m *NextProposalIdRequest) Marshal() (dAtA []byte, err error)

func (*NextProposalIdRequest) MarshalTo

func (m *NextProposalIdRequest) MarshalTo(dAtA []byte) (int, error)

func (*NextProposalIdRequest) MarshalToSizedBuffer

func (m *NextProposalIdRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*NextProposalIdRequest) ProtoMessage

func (*NextProposalIdRequest) ProtoMessage()

func (*NextProposalIdRequest) Reset

func (m *NextProposalIdRequest) Reset()

func (*NextProposalIdRequest) Size

func (m *NextProposalIdRequest) Size() (n int)

func (*NextProposalIdRequest) String

func (m *NextProposalIdRequest) String() string

func (*NextProposalIdRequest) Unmarshal

func (m *NextProposalIdRequest) Unmarshal(dAtA []byte) error

func (*NextProposalIdRequest) XXX_DiscardUnknown

func (m *NextProposalIdRequest) XXX_DiscardUnknown()

func (*NextProposalIdRequest) XXX_Marshal

func (m *NextProposalIdRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*NextProposalIdRequest) XXX_Merge

func (m *NextProposalIdRequest) XXX_Merge(src proto.Message)

func (*NextProposalIdRequest) XXX_Size

func (m *NextProposalIdRequest) XXX_Size() int

func (*NextProposalIdRequest) XXX_Unmarshal

func (m *NextProposalIdRequest) XXX_Unmarshal(b []byte) error

type NextProposalIdResponse

type NextProposalIdResponse struct {
	// The next proposal ID.
	NextProposalId uint64 `protobuf:"varint,1,opt,name=next_proposal_id,json=nextProposalId,proto3" json:"next_proposal_id,omitempty"`
}

func (*NextProposalIdResponse) Descriptor

func (*NextProposalIdResponse) Descriptor() ([]byte, []int)

func (*NextProposalIdResponse) GetNextProposalId

func (m *NextProposalIdResponse) GetNextProposalId() uint64

func (*NextProposalIdResponse) Marshal

func (m *NextProposalIdResponse) Marshal() (dAtA []byte, err error)

func (*NextProposalIdResponse) MarshalTo

func (m *NextProposalIdResponse) MarshalTo(dAtA []byte) (int, error)

func (*NextProposalIdResponse) MarshalToSizedBuffer

func (m *NextProposalIdResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*NextProposalIdResponse) ProtoMessage

func (*NextProposalIdResponse) ProtoMessage()

func (*NextProposalIdResponse) Reset

func (m *NextProposalIdResponse) Reset()

func (*NextProposalIdResponse) Size

func (m *NextProposalIdResponse) Size() (n int)

func (*NextProposalIdResponse) String

func (m *NextProposalIdResponse) String() string

func (*NextProposalIdResponse) Unmarshal

func (m *NextProposalIdResponse) Unmarshal(dAtA []byte) error

func (*NextProposalIdResponse) XXX_DiscardUnknown

func (m *NextProposalIdResponse) XXX_DiscardUnknown()

func (*NextProposalIdResponse) XXX_Marshal

func (m *NextProposalIdResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*NextProposalIdResponse) XXX_Merge

func (m *NextProposalIdResponse) XXX_Merge(src proto.Message)

func (*NextProposalIdResponse) XXX_Size

func (m *NextProposalIdResponse) XXX_Size() int

func (*NextProposalIdResponse) XXX_Unmarshal

func (m *NextProposalIdResponse) XXX_Unmarshal(b []byte) error

type Proposal

type Proposal struct {
	// The unique identifier of the proposal.
	Id uint64 `protobuf:"varint,4,opt,name=id,proto3" json:"id,omitempty"`
	// A short title for the proposal.
	Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	// A natural-language description of the effect of the proposal and its justification.
	Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	// The different kinds of proposal. Only one of these should be set.
	Signaling          *Proposal_Signaling          `protobuf:"bytes,5,opt,name=signaling,proto3" json:"signaling,omitempty"`
	Emergency          *Proposal_Emergency          `protobuf:"bytes,6,opt,name=emergency,proto3" json:"emergency,omitempty"`
	ParameterChange    *Proposal_ParameterChange    `protobuf:"bytes,7,opt,name=parameter_change,json=parameterChange,proto3" json:"parameter_change,omitempty"`
	CommunityPoolSpend *Proposal_CommunityPoolSpend `protobuf:"bytes,8,opt,name=community_pool_spend,json=communityPoolSpend,proto3" json:"community_pool_spend,omitempty"`
	UpgradePlan        *Proposal_UpgradePlan        `protobuf:"bytes,9,opt,name=upgrade_plan,json=upgradePlan,proto3" json:"upgrade_plan,omitempty"`
	FreezeIbcClient    *Proposal_FreezeIbcClient    `protobuf:"bytes,10,opt,name=freeze_ibc_client,json=freezeIbcClient,proto3" json:"freeze_ibc_client,omitempty"`
	UnfreezeIbcClient  *Proposal_UnfreezeIbcClient  `protobuf:"bytes,11,opt,name=unfreeze_ibc_client,json=unfreezeIbcClient,proto3" json:"unfreeze_ibc_client,omitempty"`
}

A proposal to be voted upon.

func (*Proposal) Descriptor

func (*Proposal) Descriptor() ([]byte, []int)

func (*Proposal) GetCommunityPoolSpend

func (m *Proposal) GetCommunityPoolSpend() *Proposal_CommunityPoolSpend

func (*Proposal) GetDescription

func (m *Proposal) GetDescription() string

func (*Proposal) GetEmergency

func (m *Proposal) GetEmergency() *Proposal_Emergency

func (*Proposal) GetFreezeIbcClient

func (m *Proposal) GetFreezeIbcClient() *Proposal_FreezeIbcClient

func (*Proposal) GetId

func (m *Proposal) GetId() uint64

func (*Proposal) GetParameterChange

func (m *Proposal) GetParameterChange() *Proposal_ParameterChange

func (*Proposal) GetSignaling

func (m *Proposal) GetSignaling() *Proposal_Signaling

func (*Proposal) GetTitle

func (m *Proposal) GetTitle() string

func (*Proposal) GetUnfreezeIbcClient

func (m *Proposal) GetUnfreezeIbcClient() *Proposal_UnfreezeIbcClient

func (*Proposal) GetUpgradePlan

func (m *Proposal) GetUpgradePlan() *Proposal_UpgradePlan

func (*Proposal) Marshal

func (m *Proposal) Marshal() (dAtA []byte, err error)

func (*Proposal) MarshalTo

func (m *Proposal) MarshalTo(dAtA []byte) (int, error)

func (*Proposal) MarshalToSizedBuffer

func (m *Proposal) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Proposal) ProtoMessage

func (*Proposal) ProtoMessage()

func (*Proposal) Reset

func (m *Proposal) Reset()

func (*Proposal) Size

func (m *Proposal) Size() (n int)

func (*Proposal) String

func (m *Proposal) String() string

func (*Proposal) Unmarshal

func (m *Proposal) Unmarshal(dAtA []byte) error

func (*Proposal) XXX_DiscardUnknown

func (m *Proposal) XXX_DiscardUnknown()

func (*Proposal) XXX_Marshal

func (m *Proposal) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Proposal) XXX_Merge

func (m *Proposal) XXX_Merge(src proto.Message)

func (*Proposal) XXX_Size

func (m *Proposal) XXX_Size() int

func (*Proposal) XXX_Unmarshal

func (m *Proposal) XXX_Unmarshal(b []byte) error

type ProposalDataRequest

type ProposalDataRequest struct {
	// The expected chain id (empty string if no expectation).
	ChainId string `protobuf:"bytes,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	// The proposal id to request information on.
	ProposalId uint64 `protobuf:"varint,2,opt,name=proposal_id,json=proposalId,proto3" json:"proposal_id,omitempty"`
}

func (*ProposalDataRequest) Descriptor

func (*ProposalDataRequest) Descriptor() ([]byte, []int)

func (*ProposalDataRequest) GetChainId

func (m *ProposalDataRequest) GetChainId() string

func (*ProposalDataRequest) GetProposalId

func (m *ProposalDataRequest) GetProposalId() uint64

func (*ProposalDataRequest) Marshal

func (m *ProposalDataRequest) Marshal() (dAtA []byte, err error)

func (*ProposalDataRequest) MarshalTo

func (m *ProposalDataRequest) MarshalTo(dAtA []byte) (int, error)

func (*ProposalDataRequest) MarshalToSizedBuffer

func (m *ProposalDataRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ProposalDataRequest) ProtoMessage

func (*ProposalDataRequest) ProtoMessage()

func (*ProposalDataRequest) Reset

func (m *ProposalDataRequest) Reset()

func (*ProposalDataRequest) Size

func (m *ProposalDataRequest) Size() (n int)

func (*ProposalDataRequest) String

func (m *ProposalDataRequest) String() string

func (*ProposalDataRequest) Unmarshal

func (m *ProposalDataRequest) Unmarshal(dAtA []byte) error

func (*ProposalDataRequest) XXX_DiscardUnknown

func (m *ProposalDataRequest) XXX_DiscardUnknown()

func (*ProposalDataRequest) XXX_Marshal

func (m *ProposalDataRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ProposalDataRequest) XXX_Merge

func (m *ProposalDataRequest) XXX_Merge(src proto.Message)

func (*ProposalDataRequest) XXX_Size

func (m *ProposalDataRequest) XXX_Size() int

func (*ProposalDataRequest) XXX_Unmarshal

func (m *ProposalDataRequest) XXX_Unmarshal(b []byte) error

type ProposalDataResponse

type ProposalDataResponse struct {
	// The proposal metadata.
	Proposal *Proposal `protobuf:"bytes,1,opt,name=proposal,proto3" json:"proposal,omitempty"`
	// The block height at which the proposal started voting.
	StartBlockHeight uint64 `protobuf:"varint,2,opt,name=start_block_height,json=startBlockHeight,proto3" json:"start_block_height,omitempty"`
	// The block height at which the proposal ends voting.
	EndBlockHeight uint64 `protobuf:"varint,3,opt,name=end_block_height,json=endBlockHeight,proto3" json:"end_block_height,omitempty"`
	// The position of the state commitment tree at which the proposal is considered to have started voting.
	StartPosition uint64 `protobuf:"varint,4,opt,name=start_position,json=startPosition,proto3" json:"start_position,omitempty"`
	// The current state of the proposal.
	State *ProposalState `protobuf:"bytes,5,opt,name=state,proto3" json:"state,omitempty"`
	// The deposit amount paid for the proposal.
	ProposalDepositAmount *v1alpha1.Amount `` /* 126-byte string literal not displayed */
}

func (*ProposalDataResponse) Descriptor

func (*ProposalDataResponse) Descriptor() ([]byte, []int)

func (*ProposalDataResponse) GetEndBlockHeight

func (m *ProposalDataResponse) GetEndBlockHeight() uint64

func (*ProposalDataResponse) GetProposal

func (m *ProposalDataResponse) GetProposal() *Proposal

func (*ProposalDataResponse) GetProposalDepositAmount

func (m *ProposalDataResponse) GetProposalDepositAmount() *v1alpha1.Amount

func (*ProposalDataResponse) GetStartBlockHeight

func (m *ProposalDataResponse) GetStartBlockHeight() uint64

func (*ProposalDataResponse) GetStartPosition

func (m *ProposalDataResponse) GetStartPosition() uint64

func (*ProposalDataResponse) GetState

func (m *ProposalDataResponse) GetState() *ProposalState

func (*ProposalDataResponse) Marshal

func (m *ProposalDataResponse) Marshal() (dAtA []byte, err error)

func (*ProposalDataResponse) MarshalTo

func (m *ProposalDataResponse) MarshalTo(dAtA []byte) (int, error)

func (*ProposalDataResponse) MarshalToSizedBuffer

func (m *ProposalDataResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ProposalDataResponse) ProtoMessage

func (*ProposalDataResponse) ProtoMessage()

func (*ProposalDataResponse) Reset

func (m *ProposalDataResponse) Reset()

func (*ProposalDataResponse) Size

func (m *ProposalDataResponse) Size() (n int)

func (*ProposalDataResponse) String

func (m *ProposalDataResponse) String() string

func (*ProposalDataResponse) Unmarshal

func (m *ProposalDataResponse) Unmarshal(dAtA []byte) error

func (*ProposalDataResponse) XXX_DiscardUnknown

func (m *ProposalDataResponse) XXX_DiscardUnknown()

func (*ProposalDataResponse) XXX_Marshal

func (m *ProposalDataResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ProposalDataResponse) XXX_Merge

func (m *ProposalDataResponse) XXX_Merge(src proto.Message)

func (*ProposalDataResponse) XXX_Size

func (m *ProposalDataResponse) XXX_Size() int

func (*ProposalDataResponse) XXX_Unmarshal

func (m *ProposalDataResponse) XXX_Unmarshal(b []byte) error

type ProposalDepositClaim

type ProposalDepositClaim struct {
	// The proposal to claim the deposit for.
	Proposal uint64 `protobuf:"varint,1,opt,name=proposal,proto3" json:"proposal,omitempty"`
	// The expected deposit amount.
	DepositAmount *v1alpha1.Amount `protobuf:"bytes,2,opt,name=deposit_amount,json=depositAmount,proto3" json:"deposit_amount,omitempty"`
	// The outcome of the proposal.
	Outcome *ProposalOutcome `protobuf:"bytes,3,opt,name=outcome,proto3" json:"outcome,omitempty"`
}

func (*ProposalDepositClaim) Descriptor

func (*ProposalDepositClaim) Descriptor() ([]byte, []int)

func (*ProposalDepositClaim) GetDepositAmount

func (m *ProposalDepositClaim) GetDepositAmount() *v1alpha1.Amount

func (*ProposalDepositClaim) GetOutcome

func (m *ProposalDepositClaim) GetOutcome() *ProposalOutcome

func (*ProposalDepositClaim) GetProposal

func (m *ProposalDepositClaim) GetProposal() uint64

func (*ProposalDepositClaim) Marshal

func (m *ProposalDepositClaim) Marshal() (dAtA []byte, err error)

func (*ProposalDepositClaim) MarshalTo

func (m *ProposalDepositClaim) MarshalTo(dAtA []byte) (int, error)

func (*ProposalDepositClaim) MarshalToSizedBuffer

func (m *ProposalDepositClaim) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ProposalDepositClaim) ProtoMessage

func (*ProposalDepositClaim) ProtoMessage()

func (*ProposalDepositClaim) Reset

func (m *ProposalDepositClaim) Reset()

func (*ProposalDepositClaim) Size

func (m *ProposalDepositClaim) Size() (n int)

func (*ProposalDepositClaim) String

func (m *ProposalDepositClaim) String() string

func (*ProposalDepositClaim) Unmarshal

func (m *ProposalDepositClaim) Unmarshal(dAtA []byte) error

func (*ProposalDepositClaim) XXX_DiscardUnknown

func (m *ProposalDepositClaim) XXX_DiscardUnknown()

func (*ProposalDepositClaim) XXX_Marshal

func (m *ProposalDepositClaim) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ProposalDepositClaim) XXX_Merge

func (m *ProposalDepositClaim) XXX_Merge(src proto.Message)

func (*ProposalDepositClaim) XXX_Size

func (m *ProposalDepositClaim) XXX_Size() int

func (*ProposalDepositClaim) XXX_Unmarshal

func (m *ProposalDepositClaim) XXX_Unmarshal(b []byte) error

type ProposalInfoRequest

type ProposalInfoRequest struct {
	// The expected chain id (empty string if no expectation).
	ChainId string `protobuf:"bytes,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	// The proposal id to request information on.
	ProposalId uint64 `protobuf:"varint,2,opt,name=proposal_id,json=proposalId,proto3" json:"proposal_id,omitempty"`
}

func (*ProposalInfoRequest) Descriptor

func (*ProposalInfoRequest) Descriptor() ([]byte, []int)

func (*ProposalInfoRequest) GetChainId

func (m *ProposalInfoRequest) GetChainId() string

func (*ProposalInfoRequest) GetProposalId

func (m *ProposalInfoRequest) GetProposalId() uint64

func (*ProposalInfoRequest) Marshal

func (m *ProposalInfoRequest) Marshal() (dAtA []byte, err error)

func (*ProposalInfoRequest) MarshalTo

func (m *ProposalInfoRequest) MarshalTo(dAtA []byte) (int, error)

func (*ProposalInfoRequest) MarshalToSizedBuffer

func (m *ProposalInfoRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ProposalInfoRequest) ProtoMessage

func (*ProposalInfoRequest) ProtoMessage()

func (*ProposalInfoRequest) Reset

func (m *ProposalInfoRequest) Reset()

func (*ProposalInfoRequest) Size

func (m *ProposalInfoRequest) Size() (n int)

func (*ProposalInfoRequest) String

func (m *ProposalInfoRequest) String() string

func (*ProposalInfoRequest) Unmarshal

func (m *ProposalInfoRequest) Unmarshal(dAtA []byte) error

func (*ProposalInfoRequest) XXX_DiscardUnknown

func (m *ProposalInfoRequest) XXX_DiscardUnknown()

func (*ProposalInfoRequest) XXX_Marshal

func (m *ProposalInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ProposalInfoRequest) XXX_Merge

func (m *ProposalInfoRequest) XXX_Merge(src proto.Message)

func (*ProposalInfoRequest) XXX_Size

func (m *ProposalInfoRequest) XXX_Size() int

func (*ProposalInfoRequest) XXX_Unmarshal

func (m *ProposalInfoRequest) XXX_Unmarshal(b []byte) error

type ProposalInfoResponse

type ProposalInfoResponse struct {
	// The block height at which the proposal started voting.
	StartBlockHeight uint64 `protobuf:"varint,1,opt,name=start_block_height,json=startBlockHeight,proto3" json:"start_block_height,omitempty"`
	// The position of the state commitment tree at which the proposal is considered to have started voting.
	StartPosition uint64 `protobuf:"varint,2,opt,name=start_position,json=startPosition,proto3" json:"start_position,omitempty"`
}

func (*ProposalInfoResponse) Descriptor

func (*ProposalInfoResponse) Descriptor() ([]byte, []int)

func (*ProposalInfoResponse) GetStartBlockHeight

func (m *ProposalInfoResponse) GetStartBlockHeight() uint64

func (*ProposalInfoResponse) GetStartPosition

func (m *ProposalInfoResponse) GetStartPosition() uint64

func (*ProposalInfoResponse) Marshal

func (m *ProposalInfoResponse) Marshal() (dAtA []byte, err error)

func (*ProposalInfoResponse) MarshalTo

func (m *ProposalInfoResponse) MarshalTo(dAtA []byte) (int, error)

func (*ProposalInfoResponse) MarshalToSizedBuffer

func (m *ProposalInfoResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ProposalInfoResponse) ProtoMessage

func (*ProposalInfoResponse) ProtoMessage()

func (*ProposalInfoResponse) Reset

func (m *ProposalInfoResponse) Reset()

func (*ProposalInfoResponse) Size

func (m *ProposalInfoResponse) Size() (n int)

func (*ProposalInfoResponse) String

func (m *ProposalInfoResponse) String() string

func (*ProposalInfoResponse) Unmarshal

func (m *ProposalInfoResponse) Unmarshal(dAtA []byte) error

func (*ProposalInfoResponse) XXX_DiscardUnknown

func (m *ProposalInfoResponse) XXX_DiscardUnknown()

func (*ProposalInfoResponse) XXX_Marshal

func (m *ProposalInfoResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ProposalInfoResponse) XXX_Merge

func (m *ProposalInfoResponse) XXX_Merge(src proto.Message)

func (*ProposalInfoResponse) XXX_Size

func (m *ProposalInfoResponse) XXX_Size() int

func (*ProposalInfoResponse) XXX_Unmarshal

func (m *ProposalInfoResponse) XXX_Unmarshal(b []byte) error

type ProposalListRequest

type ProposalListRequest struct {
	// The expected chain id (empty string if no expectation).
	ChainId string `protobuf:"bytes,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	// Whether to include proposals that are no longer active.;
	Inactive bool `protobuf:"varint,2,opt,name=inactive,proto3" json:"inactive,omitempty"`
}

Requests the list of all proposals.

func (*ProposalListRequest) Descriptor

func (*ProposalListRequest) Descriptor() ([]byte, []int)

func (*ProposalListRequest) GetChainId

func (m *ProposalListRequest) GetChainId() string

func (*ProposalListRequest) GetInactive

func (m *ProposalListRequest) GetInactive() bool

func (*ProposalListRequest) Marshal

func (m *ProposalListRequest) Marshal() (dAtA []byte, err error)

func (*ProposalListRequest) MarshalTo

func (m *ProposalListRequest) MarshalTo(dAtA []byte) (int, error)

func (*ProposalListRequest) MarshalToSizedBuffer

func (m *ProposalListRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ProposalListRequest) ProtoMessage

func (*ProposalListRequest) ProtoMessage()

func (*ProposalListRequest) Reset

func (m *ProposalListRequest) Reset()

func (*ProposalListRequest) Size

func (m *ProposalListRequest) Size() (n int)

func (*ProposalListRequest) String

func (m *ProposalListRequest) String() string

func (*ProposalListRequest) Unmarshal

func (m *ProposalListRequest) Unmarshal(dAtA []byte) error

func (*ProposalListRequest) XXX_DiscardUnknown

func (m *ProposalListRequest) XXX_DiscardUnknown()

func (*ProposalListRequest) XXX_Marshal

func (m *ProposalListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ProposalListRequest) XXX_Merge

func (m *ProposalListRequest) XXX_Merge(src proto.Message)

func (*ProposalListRequest) XXX_Size

func (m *ProposalListRequest) XXX_Size() int

func (*ProposalListRequest) XXX_Unmarshal

func (m *ProposalListRequest) XXX_Unmarshal(b []byte) error

type ProposalListResponse

type ProposalListResponse struct {
	// The proposal metadata.
	Proposal *Proposal `protobuf:"bytes,1,opt,name=proposal,proto3" json:"proposal,omitempty"`
	// The block height at which the proposal started voting.
	StartBlockHeight uint64 `protobuf:"varint,2,opt,name=start_block_height,json=startBlockHeight,proto3" json:"start_block_height,omitempty"`
	// The block height at which the proposal ends voting.
	EndBlockHeight uint64 `protobuf:"varint,3,opt,name=end_block_height,json=endBlockHeight,proto3" json:"end_block_height,omitempty"`
	// The position of the state commitment tree at which the proposal is considered to have started voting.
	StartPosition uint64 `protobuf:"varint,4,opt,name=start_position,json=startPosition,proto3" json:"start_position,omitempty"`
	// The current state of the proposal.
	State *ProposalState `protobuf:"bytes,5,opt,name=state,proto3" json:"state,omitempty"`
}

The data for a single proposal.

func (*ProposalListResponse) Descriptor

func (*ProposalListResponse) Descriptor() ([]byte, []int)

func (*ProposalListResponse) GetEndBlockHeight

func (m *ProposalListResponse) GetEndBlockHeight() uint64

func (*ProposalListResponse) GetProposal

func (m *ProposalListResponse) GetProposal() *Proposal

func (*ProposalListResponse) GetStartBlockHeight

func (m *ProposalListResponse) GetStartBlockHeight() uint64

func (*ProposalListResponse) GetStartPosition

func (m *ProposalListResponse) GetStartPosition() uint64

func (*ProposalListResponse) GetState

func (m *ProposalListResponse) GetState() *ProposalState

func (*ProposalListResponse) Marshal

func (m *ProposalListResponse) Marshal() (dAtA []byte, err error)

func (*ProposalListResponse) MarshalTo

func (m *ProposalListResponse) MarshalTo(dAtA []byte) (int, error)

func (*ProposalListResponse) MarshalToSizedBuffer

func (m *ProposalListResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ProposalListResponse) ProtoMessage

func (*ProposalListResponse) ProtoMessage()

func (*ProposalListResponse) Reset

func (m *ProposalListResponse) Reset()

func (*ProposalListResponse) Size

func (m *ProposalListResponse) Size() (n int)

func (*ProposalListResponse) String

func (m *ProposalListResponse) String() string

func (*ProposalListResponse) Unmarshal

func (m *ProposalListResponse) Unmarshal(dAtA []byte) error

func (*ProposalListResponse) XXX_DiscardUnknown

func (m *ProposalListResponse) XXX_DiscardUnknown()

func (*ProposalListResponse) XXX_Marshal

func (m *ProposalListResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ProposalListResponse) XXX_Merge

func (m *ProposalListResponse) XXX_Merge(src proto.Message)

func (*ProposalListResponse) XXX_Size

func (m *ProposalListResponse) XXX_Size() int

func (*ProposalListResponse) XXX_Unmarshal

func (m *ProposalListResponse) XXX_Unmarshal(b []byte) error

type ProposalOutcome

type ProposalOutcome struct {
	// Types that are valid to be assigned to Outcome:
	//	*ProposalOutcome_Passed_
	//	*ProposalOutcome_Failed_
	//	*ProposalOutcome_Slashed_
	Outcome isProposalOutcome_Outcome `protobuf_oneof:"outcome"`
}

The outcome of a concluded proposal.

func (*ProposalOutcome) Descriptor

func (*ProposalOutcome) Descriptor() ([]byte, []int)

func (*ProposalOutcome) GetFailed

func (m *ProposalOutcome) GetFailed() *ProposalOutcome_Failed

func (*ProposalOutcome) GetOutcome

func (m *ProposalOutcome) GetOutcome() isProposalOutcome_Outcome

func (*ProposalOutcome) GetPassed

func (m *ProposalOutcome) GetPassed() *ProposalOutcome_Passed

func (*ProposalOutcome) GetSlashed

func (m *ProposalOutcome) GetSlashed() *ProposalOutcome_Slashed

func (*ProposalOutcome) Marshal

func (m *ProposalOutcome) Marshal() (dAtA []byte, err error)

func (*ProposalOutcome) MarshalTo

func (m *ProposalOutcome) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOutcome) MarshalToSizedBuffer

func (m *ProposalOutcome) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ProposalOutcome) ProtoMessage

func (*ProposalOutcome) ProtoMessage()

func (*ProposalOutcome) Reset

func (m *ProposalOutcome) Reset()

func (*ProposalOutcome) Size

func (m *ProposalOutcome) Size() (n int)

func (*ProposalOutcome) String

func (m *ProposalOutcome) String() string

func (*ProposalOutcome) Unmarshal

func (m *ProposalOutcome) Unmarshal(dAtA []byte) error

func (*ProposalOutcome) XXX_DiscardUnknown

func (m *ProposalOutcome) XXX_DiscardUnknown()

func (*ProposalOutcome) XXX_Marshal

func (m *ProposalOutcome) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ProposalOutcome) XXX_Merge

func (m *ProposalOutcome) XXX_Merge(src proto.Message)

func (*ProposalOutcome) XXX_OneofWrappers

func (*ProposalOutcome) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*ProposalOutcome) XXX_Size

func (m *ProposalOutcome) XXX_Size() int

func (*ProposalOutcome) XXX_Unmarshal

func (m *ProposalOutcome) XXX_Unmarshal(b []byte) error

type ProposalOutcome_Failed

type ProposalOutcome_Failed struct {
	// Present if the proposal was withdrawn during the voting period.
	Withdrawn *ProposalOutcome_Withdrawn `protobuf:"bytes,1,opt,name=withdrawn,proto3" json:"withdrawn,omitempty"`
}

The proposal did not pass.

func (*ProposalOutcome_Failed) Descriptor

func (*ProposalOutcome_Failed) Descriptor() ([]byte, []int)

func (*ProposalOutcome_Failed) GetWithdrawn

func (*ProposalOutcome_Failed) Marshal

func (m *ProposalOutcome_Failed) Marshal() (dAtA []byte, err error)

func (*ProposalOutcome_Failed) MarshalTo

func (m *ProposalOutcome_Failed) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOutcome_Failed) MarshalToSizedBuffer

func (m *ProposalOutcome_Failed) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ProposalOutcome_Failed) ProtoMessage

func (*ProposalOutcome_Failed) ProtoMessage()

func (*ProposalOutcome_Failed) Reset

func (m *ProposalOutcome_Failed) Reset()

func (*ProposalOutcome_Failed) Size

func (m *ProposalOutcome_Failed) Size() (n int)

func (*ProposalOutcome_Failed) String

func (m *ProposalOutcome_Failed) String() string

func (*ProposalOutcome_Failed) Unmarshal

func (m *ProposalOutcome_Failed) Unmarshal(dAtA []byte) error

func (*ProposalOutcome_Failed) XXX_DiscardUnknown

func (m *ProposalOutcome_Failed) XXX_DiscardUnknown()

func (*ProposalOutcome_Failed) XXX_Marshal

func (m *ProposalOutcome_Failed) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ProposalOutcome_Failed) XXX_Merge

func (m *ProposalOutcome_Failed) XXX_Merge(src proto.Message)

func (*ProposalOutcome_Failed) XXX_Size

func (m *ProposalOutcome_Failed) XXX_Size() int

func (*ProposalOutcome_Failed) XXX_Unmarshal

func (m *ProposalOutcome_Failed) XXX_Unmarshal(b []byte) error

type ProposalOutcome_Failed_

type ProposalOutcome_Failed_ struct {
	Failed *ProposalOutcome_Failed `protobuf:"bytes,2,opt,name=failed,proto3,oneof" json:"failed,omitempty"`
}

func (*ProposalOutcome_Failed_) MarshalTo

func (m *ProposalOutcome_Failed_) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOutcome_Failed_) MarshalToSizedBuffer

func (m *ProposalOutcome_Failed_) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ProposalOutcome_Failed_) Size

func (m *ProposalOutcome_Failed_) Size() (n int)

type ProposalOutcome_Passed

type ProposalOutcome_Passed struct {
}

The proposal was passed.

func (*ProposalOutcome_Passed) Descriptor

func (*ProposalOutcome_Passed) Descriptor() ([]byte, []int)

func (*ProposalOutcome_Passed) Marshal

func (m *ProposalOutcome_Passed) Marshal() (dAtA []byte, err error)

func (*ProposalOutcome_Passed) MarshalTo

func (m *ProposalOutcome_Passed) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOutcome_Passed) MarshalToSizedBuffer

func (m *ProposalOutcome_Passed) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ProposalOutcome_Passed) ProtoMessage

func (*ProposalOutcome_Passed) ProtoMessage()

func (*ProposalOutcome_Passed) Reset

func (m *ProposalOutcome_Passed) Reset()

func (*ProposalOutcome_Passed) Size

func (m *ProposalOutcome_Passed) Size() (n int)

func (*ProposalOutcome_Passed) String

func (m *ProposalOutcome_Passed) String() string

func (*ProposalOutcome_Passed) Unmarshal

func (m *ProposalOutcome_Passed) Unmarshal(dAtA []byte) error

func (*ProposalOutcome_Passed) XXX_DiscardUnknown

func (m *ProposalOutcome_Passed) XXX_DiscardUnknown()

func (*ProposalOutcome_Passed) XXX_Marshal

func (m *ProposalOutcome_Passed) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ProposalOutcome_Passed) XXX_Merge

func (m *ProposalOutcome_Passed) XXX_Merge(src proto.Message)

func (*ProposalOutcome_Passed) XXX_Size

func (m *ProposalOutcome_Passed) XXX_Size() int

func (*ProposalOutcome_Passed) XXX_Unmarshal

func (m *ProposalOutcome_Passed) XXX_Unmarshal(b []byte) error

type ProposalOutcome_Passed_

type ProposalOutcome_Passed_ struct {
	Passed *ProposalOutcome_Passed `protobuf:"bytes,1,opt,name=passed,proto3,oneof" json:"passed,omitempty"`
}

func (*ProposalOutcome_Passed_) MarshalTo

func (m *ProposalOutcome_Passed_) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOutcome_Passed_) MarshalToSizedBuffer

func (m *ProposalOutcome_Passed_) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ProposalOutcome_Passed_) Size

func (m *ProposalOutcome_Passed_) Size() (n int)

type ProposalOutcome_Slashed

type ProposalOutcome_Slashed struct {
	// Present if the proposal was withdrawn during the voting period.
	Withdrawn *ProposalOutcome_Withdrawn `protobuf:"bytes,1,opt,name=withdrawn,proto3" json:"withdrawn,omitempty"`
}

The proposal did not pass, and was slashed.

func (*ProposalOutcome_Slashed) Descriptor

func (*ProposalOutcome_Slashed) Descriptor() ([]byte, []int)

func (*ProposalOutcome_Slashed) GetWithdrawn

func (*ProposalOutcome_Slashed) Marshal

func (m *ProposalOutcome_Slashed) Marshal() (dAtA []byte, err error)

func (*ProposalOutcome_Slashed) MarshalTo

func (m *ProposalOutcome_Slashed) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOutcome_Slashed) MarshalToSizedBuffer

func (m *ProposalOutcome_Slashed) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ProposalOutcome_Slashed) ProtoMessage

func (*ProposalOutcome_Slashed) ProtoMessage()

func (*ProposalOutcome_Slashed) Reset

func (m *ProposalOutcome_Slashed) Reset()

func (*ProposalOutcome_Slashed) Size

func (m *ProposalOutcome_Slashed) Size() (n int)

func (*ProposalOutcome_Slashed) String

func (m *ProposalOutcome_Slashed) String() string

func (*ProposalOutcome_Slashed) Unmarshal

func (m *ProposalOutcome_Slashed) Unmarshal(dAtA []byte) error

func (*ProposalOutcome_Slashed) XXX_DiscardUnknown

func (m *ProposalOutcome_Slashed) XXX_DiscardUnknown()

func (*ProposalOutcome_Slashed) XXX_Marshal

func (m *ProposalOutcome_Slashed) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ProposalOutcome_Slashed) XXX_Merge

func (m *ProposalOutcome_Slashed) XXX_Merge(src proto.Message)

func (*ProposalOutcome_Slashed) XXX_Size

func (m *ProposalOutcome_Slashed) XXX_Size() int

func (*ProposalOutcome_Slashed) XXX_Unmarshal

func (m *ProposalOutcome_Slashed) XXX_Unmarshal(b []byte) error

type ProposalOutcome_Slashed_

type ProposalOutcome_Slashed_ struct {
	Slashed *ProposalOutcome_Slashed `protobuf:"bytes,3,opt,name=slashed,proto3,oneof" json:"slashed,omitempty"`
}

func (*ProposalOutcome_Slashed_) MarshalTo

func (m *ProposalOutcome_Slashed_) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOutcome_Slashed_) MarshalToSizedBuffer

func (m *ProposalOutcome_Slashed_) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ProposalOutcome_Slashed_) Size

func (m *ProposalOutcome_Slashed_) Size() (n int)

type ProposalOutcome_Withdrawn

type ProposalOutcome_Withdrawn struct {
	// The reason for withdrawing the proposal during the voting period.
	Reason string `protobuf:"bytes,1,opt,name=reason,proto3" json:"reason,omitempty"`
}

Whether or not the proposal was withdrawn.

func (*ProposalOutcome_Withdrawn) Descriptor

func (*ProposalOutcome_Withdrawn) Descriptor() ([]byte, []int)

func (*ProposalOutcome_Withdrawn) GetReason

func (m *ProposalOutcome_Withdrawn) GetReason() string

func (*ProposalOutcome_Withdrawn) Marshal

func (m *ProposalOutcome_Withdrawn) Marshal() (dAtA []byte, err error)

func (*ProposalOutcome_Withdrawn) MarshalTo

func (m *ProposalOutcome_Withdrawn) MarshalTo(dAtA []byte) (int, error)

func (*ProposalOutcome_Withdrawn) MarshalToSizedBuffer

func (m *ProposalOutcome_Withdrawn) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ProposalOutcome_Withdrawn) ProtoMessage

func (*ProposalOutcome_Withdrawn) ProtoMessage()

func (*ProposalOutcome_Withdrawn) Reset

func (m *ProposalOutcome_Withdrawn) Reset()

func (*ProposalOutcome_Withdrawn) Size

func (m *ProposalOutcome_Withdrawn) Size() (n int)

func (*ProposalOutcome_Withdrawn) String

func (m *ProposalOutcome_Withdrawn) String() string

func (*ProposalOutcome_Withdrawn) Unmarshal

func (m *ProposalOutcome_Withdrawn) Unmarshal(dAtA []byte) error

func (*ProposalOutcome_Withdrawn) XXX_DiscardUnknown

func (m *ProposalOutcome_Withdrawn) XXX_DiscardUnknown()

func (*ProposalOutcome_Withdrawn) XXX_Marshal

func (m *ProposalOutcome_Withdrawn) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ProposalOutcome_Withdrawn) XXX_Merge

func (m *ProposalOutcome_Withdrawn) XXX_Merge(src proto.Message)

func (*ProposalOutcome_Withdrawn) XXX_Size

func (m *ProposalOutcome_Withdrawn) XXX_Size() int

func (*ProposalOutcome_Withdrawn) XXX_Unmarshal

func (m *ProposalOutcome_Withdrawn) XXX_Unmarshal(b []byte) error

type ProposalRateDataRequest

type ProposalRateDataRequest struct {
	// The expected chain id (empty string if no expectation).
	ChainId string `protobuf:"bytes,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	// The proposal id to request information on.
	ProposalId uint64 `protobuf:"varint,2,opt,name=proposal_id,json=proposalId,proto3" json:"proposal_id,omitempty"`
}

Requests the validator rate data for a proposal.

func (*ProposalRateDataRequest) Descriptor

func (*ProposalRateDataRequest) Descriptor() ([]byte, []int)

func (*ProposalRateDataRequest) GetChainId

func (m *ProposalRateDataRequest) GetChainId() string

func (*ProposalRateDataRequest) GetProposalId

func (m *ProposalRateDataRequest) GetProposalId() uint64

func (*ProposalRateDataRequest) Marshal

func (m *ProposalRateDataRequest) Marshal() (dAtA []byte, err error)

func (*ProposalRateDataRequest) MarshalTo

func (m *ProposalRateDataRequest) MarshalTo(dAtA []byte) (int, error)

func (*ProposalRateDataRequest) MarshalToSizedBuffer

func (m *ProposalRateDataRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ProposalRateDataRequest) ProtoMessage

func (*ProposalRateDataRequest) ProtoMessage()

func (*ProposalRateDataRequest) Reset

func (m *ProposalRateDataRequest) Reset()

func (*ProposalRateDataRequest) Size

func (m *ProposalRateDataRequest) Size() (n int)

func (*ProposalRateDataRequest) String

func (m *ProposalRateDataRequest) String() string

func (*ProposalRateDataRequest) Unmarshal

func (m *ProposalRateDataRequest) Unmarshal(dAtA []byte) error

func (*ProposalRateDataRequest) XXX_DiscardUnknown

func (m *ProposalRateDataRequest) XXX_DiscardUnknown()

func (*ProposalRateDataRequest) XXX_Marshal

func (m *ProposalRateDataRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ProposalRateDataRequest) XXX_Merge

func (m *ProposalRateDataRequest) XXX_Merge(src proto.Message)

func (*ProposalRateDataRequest) XXX_Size

func (m *ProposalRateDataRequest) XXX_Size() int

func (*ProposalRateDataRequest) XXX_Unmarshal

func (m *ProposalRateDataRequest) XXX_Unmarshal(b []byte) error

type ProposalRateDataResponse

type ProposalRateDataResponse struct {
	RateData *v1alpha16.RateData `protobuf:"bytes,1,opt,name=rate_data,json=rateData,proto3" json:"rate_data,omitempty"`
}

The rate data for a single validator.

func (*ProposalRateDataResponse) Descriptor

func (*ProposalRateDataResponse) Descriptor() ([]byte, []int)

func (*ProposalRateDataResponse) GetRateData

func (m *ProposalRateDataResponse) GetRateData() *v1alpha16.RateData

func (*ProposalRateDataResponse) Marshal

func (m *ProposalRateDataResponse) Marshal() (dAtA []byte, err error)

func (*ProposalRateDataResponse) MarshalTo

func (m *ProposalRateDataResponse) MarshalTo(dAtA []byte) (int, error)

func (*ProposalRateDataResponse) MarshalToSizedBuffer

func (m *ProposalRateDataResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ProposalRateDataResponse) ProtoMessage

func (*ProposalRateDataResponse) ProtoMessage()

func (*ProposalRateDataResponse) Reset

func (m *ProposalRateDataResponse) Reset()

func (*ProposalRateDataResponse) Size

func (m *ProposalRateDataResponse) Size() (n int)

func (*ProposalRateDataResponse) String

func (m *ProposalRateDataResponse) String() string

func (*ProposalRateDataResponse) Unmarshal

func (m *ProposalRateDataResponse) Unmarshal(dAtA []byte) error

func (*ProposalRateDataResponse) XXX_DiscardUnknown

func (m *ProposalRateDataResponse) XXX_DiscardUnknown()

func (*ProposalRateDataResponse) XXX_Marshal

func (m *ProposalRateDataResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ProposalRateDataResponse) XXX_Merge

func (m *ProposalRateDataResponse) XXX_Merge(src proto.Message)

func (*ProposalRateDataResponse) XXX_Size

func (m *ProposalRateDataResponse) XXX_Size() int

func (*ProposalRateDataResponse) XXX_Unmarshal

func (m *ProposalRateDataResponse) XXX_Unmarshal(b []byte) error

type ProposalState

type ProposalState struct {
	// The state of the proposal.
	//
	// Types that are valid to be assigned to State:
	//	*ProposalState_Voting_
	//	*ProposalState_Withdrawn_
	//	*ProposalState_Finished_
	//	*ProposalState_Claimed_
	State isProposalState_State `protobuf_oneof:"state"`
}

The current state of a proposal.

func (*ProposalState) Descriptor

func (*ProposalState) Descriptor() ([]byte, []int)

func (*ProposalState) GetClaimed

func (m *ProposalState) GetClaimed() *ProposalState_Claimed

func (*ProposalState) GetFinished

func (m *ProposalState) GetFinished() *ProposalState_Finished

func (*ProposalState) GetState

func (m *ProposalState) GetState() isProposalState_State

func (*ProposalState) GetVoting

func (m *ProposalState) GetVoting() *ProposalState_Voting

func (*ProposalState) GetWithdrawn

func (m *ProposalState) GetWithdrawn() *ProposalState_Withdrawn

func (*ProposalState) Marshal

func (m *ProposalState) Marshal() (dAtA []byte, err error)

func (*ProposalState) MarshalTo

func (m *ProposalState) MarshalTo(dAtA []byte) (int, error)

func (*ProposalState) MarshalToSizedBuffer

func (m *ProposalState) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ProposalState) ProtoMessage

func (*ProposalState) ProtoMessage()

func (*ProposalState) Reset

func (m *ProposalState) Reset()

func (*ProposalState) Size

func (m *ProposalState) Size() (n int)

func (*ProposalState) String

func (m *ProposalState) String() string

func (*ProposalState) Unmarshal

func (m *ProposalState) Unmarshal(dAtA []byte) error

func (*ProposalState) XXX_DiscardUnknown

func (m *ProposalState) XXX_DiscardUnknown()

func (*ProposalState) XXX_Marshal

func (m *ProposalState) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ProposalState) XXX_Merge

func (m *ProposalState) XXX_Merge(src proto.Message)

func (*ProposalState) XXX_OneofWrappers

func (*ProposalState) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*ProposalState) XXX_Size

func (m *ProposalState) XXX_Size() int

func (*ProposalState) XXX_Unmarshal

func (m *ProposalState) XXX_Unmarshal(b []byte) error

type ProposalState_Claimed

type ProposalState_Claimed struct {
	Outcome *ProposalOutcome `protobuf:"bytes,1,opt,name=outcome,proto3" json:"outcome,omitempty"`
}

The voting period has ended, and the original proposer has claimed their deposit.

func (*ProposalState_Claimed) Descriptor

func (*ProposalState_Claimed) Descriptor() ([]byte, []int)

func (*ProposalState_Claimed) GetOutcome

func (m *ProposalState_Claimed) GetOutcome() *ProposalOutcome

func (*ProposalState_Claimed) Marshal

func (m *ProposalState_Claimed) Marshal() (dAtA []byte, err error)

func (*ProposalState_Claimed) MarshalTo

func (m *ProposalState_Claimed) MarshalTo(dAtA []byte) (int, error)

func (*ProposalState_Claimed) MarshalToSizedBuffer

func (m *ProposalState_Claimed) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ProposalState_Claimed) ProtoMessage

func (*ProposalState_Claimed) ProtoMessage()

func (*ProposalState_Claimed) Reset

func (m *ProposalState_Claimed) Reset()

func (*ProposalState_Claimed) Size

func (m *ProposalState_Claimed) Size() (n int)

func (*ProposalState_Claimed) String

func (m *ProposalState_Claimed) String() string

func (*ProposalState_Claimed) Unmarshal

func (m *ProposalState_Claimed) Unmarshal(dAtA []byte) error

func (*ProposalState_Claimed) XXX_DiscardUnknown

func (m *ProposalState_Claimed) XXX_DiscardUnknown()

func (*ProposalState_Claimed) XXX_Marshal

func (m *ProposalState_Claimed) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ProposalState_Claimed) XXX_Merge

func (m *ProposalState_Claimed) XXX_Merge(src proto.Message)

func (*ProposalState_Claimed) XXX_Size

func (m *ProposalState_Claimed) XXX_Size() int

func (*ProposalState_Claimed) XXX_Unmarshal

func (m *ProposalState_Claimed) XXX_Unmarshal(b []byte) error

type ProposalState_Claimed_

type ProposalState_Claimed_ struct {
	Claimed *ProposalState_Claimed `protobuf:"bytes,5,opt,name=claimed,proto3,oneof" json:"claimed,omitempty"`
}

func (*ProposalState_Claimed_) MarshalTo

func (m *ProposalState_Claimed_) MarshalTo(dAtA []byte) (int, error)

func (*ProposalState_Claimed_) MarshalToSizedBuffer

func (m *ProposalState_Claimed_) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ProposalState_Claimed_) Size

func (m *ProposalState_Claimed_) Size() (n int)

type ProposalState_Finished

type ProposalState_Finished struct {
	Outcome *ProposalOutcome `protobuf:"bytes,1,opt,name=outcome,proto3" json:"outcome,omitempty"`
}

The voting period has ended, and the proposal has been assigned an outcome.

func (*ProposalState_Finished) Descriptor

func (*ProposalState_Finished) Descriptor() ([]byte, []int)

func (*ProposalState_Finished) GetOutcome

func (m *ProposalState_Finished) GetOutcome() *ProposalOutcome

func (*ProposalState_Finished) Marshal

func (m *ProposalState_Finished) Marshal() (dAtA []byte, err error)

func (*ProposalState_Finished) MarshalTo

func (m *ProposalState_Finished) MarshalTo(dAtA []byte) (int, error)

func (*ProposalState_Finished) MarshalToSizedBuffer

func (m *ProposalState_Finished) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ProposalState_Finished) ProtoMessage

func (*ProposalState_Finished) ProtoMessage()

func (*ProposalState_Finished) Reset

func (m *ProposalState_Finished) Reset()

func (*ProposalState_Finished) Size

func (m *ProposalState_Finished) Size() (n int)

func (*ProposalState_Finished) String

func (m *ProposalState_Finished) String() string

func (*ProposalState_Finished) Unmarshal

func (m *ProposalState_Finished) Unmarshal(dAtA []byte) error

func (*ProposalState_Finished) XXX_DiscardUnknown

func (m *ProposalState_Finished) XXX_DiscardUnknown()

func (*ProposalState_Finished) XXX_Marshal

func (m *ProposalState_Finished) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ProposalState_Finished) XXX_Merge

func (m *ProposalState_Finished) XXX_Merge(src proto.Message)

func (*ProposalState_Finished) XXX_Size

func (m *ProposalState_Finished) XXX_Size() int

func (*ProposalState_Finished) XXX_Unmarshal

func (m *ProposalState_Finished) XXX_Unmarshal(b []byte) error

type ProposalState_Finished_

type ProposalState_Finished_ struct {
	Finished *ProposalState_Finished `protobuf:"bytes,4,opt,name=finished,proto3,oneof" json:"finished,omitempty"`
}

func (*ProposalState_Finished_) MarshalTo

func (m *ProposalState_Finished_) MarshalTo(dAtA []byte) (int, error)

func (*ProposalState_Finished_) MarshalToSizedBuffer

func (m *ProposalState_Finished_) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ProposalState_Finished_) Size

func (m *ProposalState_Finished_) Size() (n int)

type ProposalState_Voting

type ProposalState_Voting struct {
}

Voting is in progress and the proposal has not yet concluded voting or been withdrawn.

func (*ProposalState_Voting) Descriptor

func (*ProposalState_Voting) Descriptor() ([]byte, []int)

func (*ProposalState_Voting) Marshal

func (m *ProposalState_Voting) Marshal() (dAtA []byte, err error)

func (*ProposalState_Voting) MarshalTo

func (m *ProposalState_Voting) MarshalTo(dAtA []byte) (int, error)

func (*ProposalState_Voting) MarshalToSizedBuffer

func (m *ProposalState_Voting) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ProposalState_Voting) ProtoMessage

func (*ProposalState_Voting) ProtoMessage()

func (*ProposalState_Voting) Reset

func (m *ProposalState_Voting) Reset()

func (*ProposalState_Voting) Size

func (m *ProposalState_Voting) Size() (n int)

func (*ProposalState_Voting) String

func (m *ProposalState_Voting) String() string

func (*ProposalState_Voting) Unmarshal

func (m *ProposalState_Voting) Unmarshal(dAtA []byte) error

func (*ProposalState_Voting) XXX_DiscardUnknown

func (m *ProposalState_Voting) XXX_DiscardUnknown()

func (*ProposalState_Voting) XXX_Marshal

func (m *ProposalState_Voting) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ProposalState_Voting) XXX_Merge

func (m *ProposalState_Voting) XXX_Merge(src proto.Message)

func (*ProposalState_Voting) XXX_Size

func (m *ProposalState_Voting) XXX_Size() int

func (*ProposalState_Voting) XXX_Unmarshal

func (m *ProposalState_Voting) XXX_Unmarshal(b []byte) error

type ProposalState_Voting_

type ProposalState_Voting_ struct {
	Voting *ProposalState_Voting `protobuf:"bytes,2,opt,name=voting,proto3,oneof" json:"voting,omitempty"`
}

func (*ProposalState_Voting_) MarshalTo

func (m *ProposalState_Voting_) MarshalTo(dAtA []byte) (int, error)

func (*ProposalState_Voting_) MarshalToSizedBuffer

func (m *ProposalState_Voting_) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ProposalState_Voting_) Size

func (m *ProposalState_Voting_) Size() (n int)

type ProposalState_Withdrawn

type ProposalState_Withdrawn struct {
	// The reason for the withdrawal.
	Reason string `protobuf:"bytes,1,opt,name=reason,proto3" json:"reason,omitempty"`
}

The proposal has been withdrawn but the voting period is not yet concluded.

func (*ProposalState_Withdrawn) Descriptor

func (*ProposalState_Withdrawn) Descriptor() ([]byte, []int)

func (*ProposalState_Withdrawn) GetReason

func (m *ProposalState_Withdrawn) GetReason() string

func (*ProposalState_Withdrawn) Marshal

func (m *ProposalState_Withdrawn) Marshal() (dAtA []byte, err error)

func (*ProposalState_Withdrawn) MarshalTo

func (m *ProposalState_Withdrawn) MarshalTo(dAtA []byte) (int, error)

func (*ProposalState_Withdrawn) MarshalToSizedBuffer

func (m *ProposalState_Withdrawn) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ProposalState_Withdrawn) ProtoMessage

func (*ProposalState_Withdrawn) ProtoMessage()

func (*ProposalState_Withdrawn) Reset

func (m *ProposalState_Withdrawn) Reset()

func (*ProposalState_Withdrawn) Size

func (m *ProposalState_Withdrawn) Size() (n int)

func (*ProposalState_Withdrawn) String

func (m *ProposalState_Withdrawn) String() string

func (*ProposalState_Withdrawn) Unmarshal

func (m *ProposalState_Withdrawn) Unmarshal(dAtA []byte) error

func (*ProposalState_Withdrawn) XXX_DiscardUnknown

func (m *ProposalState_Withdrawn) XXX_DiscardUnknown()

func (*ProposalState_Withdrawn) XXX_Marshal

func (m *ProposalState_Withdrawn) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ProposalState_Withdrawn) XXX_Merge

func (m *ProposalState_Withdrawn) XXX_Merge(src proto.Message)

func (*ProposalState_Withdrawn) XXX_Size

func (m *ProposalState_Withdrawn) XXX_Size() int

func (*ProposalState_Withdrawn) XXX_Unmarshal

func (m *ProposalState_Withdrawn) XXX_Unmarshal(b []byte) error

type ProposalState_Withdrawn_

type ProposalState_Withdrawn_ struct {
	Withdrawn *ProposalState_Withdrawn `protobuf:"bytes,3,opt,name=withdrawn,proto3,oneof" json:"withdrawn,omitempty"`
}

func (*ProposalState_Withdrawn_) MarshalTo

func (m *ProposalState_Withdrawn_) MarshalTo(dAtA []byte) (int, error)

func (*ProposalState_Withdrawn_) MarshalToSizedBuffer

func (m *ProposalState_Withdrawn_) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ProposalState_Withdrawn_) Size

func (m *ProposalState_Withdrawn_) Size() (n int)

type ProposalSubmit

type ProposalSubmit struct {
	// The proposal to be submitted.
	Proposal *Proposal `protobuf:"bytes,1,opt,name=proposal,proto3" json:"proposal,omitempty"`
	// The amount of the proposal deposit.
	DepositAmount *v1alpha1.Amount `protobuf:"bytes,3,opt,name=deposit_amount,json=depositAmount,proto3" json:"deposit_amount,omitempty"`
}

func (*ProposalSubmit) Descriptor

func (*ProposalSubmit) Descriptor() ([]byte, []int)

func (*ProposalSubmit) GetDepositAmount

func (m *ProposalSubmit) GetDepositAmount() *v1alpha1.Amount

func (*ProposalSubmit) GetProposal

func (m *ProposalSubmit) GetProposal() *Proposal

func (*ProposalSubmit) Marshal

func (m *ProposalSubmit) Marshal() (dAtA []byte, err error)

func (*ProposalSubmit) MarshalTo

func (m *ProposalSubmit) MarshalTo(dAtA []byte) (int, error)

func (*ProposalSubmit) MarshalToSizedBuffer

func (m *ProposalSubmit) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ProposalSubmit) ProtoMessage

func (*ProposalSubmit) ProtoMessage()

func (*ProposalSubmit) Reset

func (m *ProposalSubmit) Reset()

func (*ProposalSubmit) Size

func (m *ProposalSubmit) Size() (n int)

func (*ProposalSubmit) String

func (m *ProposalSubmit) String() string

func (*ProposalSubmit) Unmarshal

func (m *ProposalSubmit) Unmarshal(dAtA []byte) error

func (*ProposalSubmit) XXX_DiscardUnknown

func (m *ProposalSubmit) XXX_DiscardUnknown()

func (*ProposalSubmit) XXX_Marshal

func (m *ProposalSubmit) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ProposalSubmit) XXX_Merge

func (m *ProposalSubmit) XXX_Merge(src proto.Message)

func (*ProposalSubmit) XXX_Size

func (m *ProposalSubmit) XXX_Size() int

func (*ProposalSubmit) XXX_Unmarshal

func (m *ProposalSubmit) XXX_Unmarshal(b []byte) error

type ProposalWithdraw

type ProposalWithdraw struct {
	// The proposal to be withdrawn.
	Proposal uint64 `protobuf:"varint,1,opt,name=proposal,proto3" json:"proposal,omitempty"`
	// The reason for the proposal being withdrawn.
	Reason string `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
}

func (*ProposalWithdraw) Descriptor

func (*ProposalWithdraw) Descriptor() ([]byte, []int)

func (*ProposalWithdraw) GetProposal

func (m *ProposalWithdraw) GetProposal() uint64

func (*ProposalWithdraw) GetReason

func (m *ProposalWithdraw) GetReason() string

func (*ProposalWithdraw) Marshal

func (m *ProposalWithdraw) Marshal() (dAtA []byte, err error)

func (*ProposalWithdraw) MarshalTo

func (m *ProposalWithdraw) MarshalTo(dAtA []byte) (int, error)

func (*ProposalWithdraw) MarshalToSizedBuffer

func (m *ProposalWithdraw) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ProposalWithdraw) ProtoMessage

func (*ProposalWithdraw) ProtoMessage()

func (*ProposalWithdraw) Reset

func (m *ProposalWithdraw) Reset()

func (*ProposalWithdraw) Size

func (m *ProposalWithdraw) Size() (n int)

func (*ProposalWithdraw) String

func (m *ProposalWithdraw) String() string

func (*ProposalWithdraw) Unmarshal

func (m *ProposalWithdraw) Unmarshal(dAtA []byte) error

func (*ProposalWithdraw) XXX_DiscardUnknown

func (m *ProposalWithdraw) XXX_DiscardUnknown()

func (*ProposalWithdraw) XXX_Marshal

func (m *ProposalWithdraw) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ProposalWithdraw) XXX_Merge

func (m *ProposalWithdraw) XXX_Merge(src proto.Message)

func (*ProposalWithdraw) XXX_Size

func (m *ProposalWithdraw) XXX_Size() int

func (*ProposalWithdraw) XXX_Unmarshal

func (m *ProposalWithdraw) XXX_Unmarshal(b []byte) error

type Proposal_CommunityPoolSpend

type Proposal_CommunityPoolSpend struct {
	// The transaction plan to be executed at the time the proposal is passed. This must be a
	// transaction plan which can be executed by the Community Pool, which means it can't require any witness
	// data or authorization signatures, but it may use the `CommunityPoolSpend` action.
	TransactionPlan *types.Any `protobuf:"bytes,2,opt,name=transaction_plan,json=transactionPlan,proto3" json:"transaction_plan,omitempty"`
}

A Community Pool spend proposal describes zero or more transactions to execute on behalf of the Community Pool, with access to its funds, and zero or more scheduled transactions from previous passed proposals to cancel.

func (*Proposal_CommunityPoolSpend) Descriptor

func (*Proposal_CommunityPoolSpend) Descriptor() ([]byte, []int)

func (*Proposal_CommunityPoolSpend) GetTransactionPlan

func (m *Proposal_CommunityPoolSpend) GetTransactionPlan() *types.Any

func (*Proposal_CommunityPoolSpend) Marshal

func (m *Proposal_CommunityPoolSpend) Marshal() (dAtA []byte, err error)

func (*Proposal_CommunityPoolSpend) MarshalTo

func (m *Proposal_CommunityPoolSpend) MarshalTo(dAtA []byte) (int, error)

func (*Proposal_CommunityPoolSpend) MarshalToSizedBuffer

func (m *Proposal_CommunityPoolSpend) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Proposal_CommunityPoolSpend) ProtoMessage

func (*Proposal_CommunityPoolSpend) ProtoMessage()

func (*Proposal_CommunityPoolSpend) Reset

func (m *Proposal_CommunityPoolSpend) Reset()

func (*Proposal_CommunityPoolSpend) Size

func (m *Proposal_CommunityPoolSpend) Size() (n int)

func (*Proposal_CommunityPoolSpend) String

func (m *Proposal_CommunityPoolSpend) String() string

func (*Proposal_CommunityPoolSpend) Unmarshal

func (m *Proposal_CommunityPoolSpend) Unmarshal(dAtA []byte) error

func (*Proposal_CommunityPoolSpend) XXX_DiscardUnknown

func (m *Proposal_CommunityPoolSpend) XXX_DiscardUnknown()

func (*Proposal_CommunityPoolSpend) XXX_Marshal

func (m *Proposal_CommunityPoolSpend) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Proposal_CommunityPoolSpend) XXX_Merge

func (m *Proposal_CommunityPoolSpend) XXX_Merge(src proto.Message)

func (*Proposal_CommunityPoolSpend) XXX_Size

func (m *Proposal_CommunityPoolSpend) XXX_Size() int

func (*Proposal_CommunityPoolSpend) XXX_Unmarshal

func (m *Proposal_CommunityPoolSpend) XXX_Unmarshal(b []byte) error

type Proposal_Emergency

type Proposal_Emergency struct {
	// If `true`, the chain will halt immediately when the proposal is passed.
	HaltChain bool `protobuf:"varint,1,opt,name=halt_chain,json=haltChain,proto3" json:"halt_chain,omitempty"`
}

An emergency proposal can be passed instantaneously by a 2/3 majority of validators, without waiting for the voting period to expire.

If the boolean `halt_chain` is set to `true`, then the chain will halt immediately when the proposal is passed.

func (*Proposal_Emergency) Descriptor

func (*Proposal_Emergency) Descriptor() ([]byte, []int)

func (*Proposal_Emergency) GetHaltChain

func (m *Proposal_Emergency) GetHaltChain() bool

func (*Proposal_Emergency) Marshal

func (m *Proposal_Emergency) Marshal() (dAtA []byte, err error)

func (*Proposal_Emergency) MarshalTo

func (m *Proposal_Emergency) MarshalTo(dAtA []byte) (int, error)

func (*Proposal_Emergency) MarshalToSizedBuffer

func (m *Proposal_Emergency) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Proposal_Emergency) ProtoMessage

func (*Proposal_Emergency) ProtoMessage()

func (*Proposal_Emergency) Reset

func (m *Proposal_Emergency) Reset()

func (*Proposal_Emergency) Size

func (m *Proposal_Emergency) Size() (n int)

func (*Proposal_Emergency) String

func (m *Proposal_Emergency) String() string

func (*Proposal_Emergency) Unmarshal

func (m *Proposal_Emergency) Unmarshal(dAtA []byte) error

func (*Proposal_Emergency) XXX_DiscardUnknown

func (m *Proposal_Emergency) XXX_DiscardUnknown()

func (*Proposal_Emergency) XXX_Marshal

func (m *Proposal_Emergency) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Proposal_Emergency) XXX_Merge

func (m *Proposal_Emergency) XXX_Merge(src proto.Message)

func (*Proposal_Emergency) XXX_Size

func (m *Proposal_Emergency) XXX_Size() int

func (*Proposal_Emergency) XXX_Unmarshal

func (m *Proposal_Emergency) XXX_Unmarshal(b []byte) error

type Proposal_FreezeIbcClient

type Proposal_FreezeIbcClient struct {
	ClientId string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
}

Freeze an existing IBC client.

func (*Proposal_FreezeIbcClient) Descriptor

func (*Proposal_FreezeIbcClient) Descriptor() ([]byte, []int)

func (*Proposal_FreezeIbcClient) GetClientId

func (m *Proposal_FreezeIbcClient) GetClientId() string

func (*Proposal_FreezeIbcClient) Marshal

func (m *Proposal_FreezeIbcClient) Marshal() (dAtA []byte, err error)

func (*Proposal_FreezeIbcClient) MarshalTo

func (m *Proposal_FreezeIbcClient) MarshalTo(dAtA []byte) (int, error)

func (*Proposal_FreezeIbcClient) MarshalToSizedBuffer

func (m *Proposal_FreezeIbcClient) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Proposal_FreezeIbcClient) ProtoMessage

func (*Proposal_FreezeIbcClient) ProtoMessage()

func (*Proposal_FreezeIbcClient) Reset

func (m *Proposal_FreezeIbcClient) Reset()

func (*Proposal_FreezeIbcClient) Size

func (m *Proposal_FreezeIbcClient) Size() (n int)

func (*Proposal_FreezeIbcClient) String

func (m *Proposal_FreezeIbcClient) String() string

func (*Proposal_FreezeIbcClient) Unmarshal

func (m *Proposal_FreezeIbcClient) Unmarshal(dAtA []byte) error

func (*Proposal_FreezeIbcClient) XXX_DiscardUnknown

func (m *Proposal_FreezeIbcClient) XXX_DiscardUnknown()

func (*Proposal_FreezeIbcClient) XXX_Marshal

func (m *Proposal_FreezeIbcClient) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Proposal_FreezeIbcClient) XXX_Merge

func (m *Proposal_FreezeIbcClient) XXX_Merge(src proto.Message)

func (*Proposal_FreezeIbcClient) XXX_Size

func (m *Proposal_FreezeIbcClient) XXX_Size() int

func (*Proposal_FreezeIbcClient) XXX_Unmarshal

func (m *Proposal_FreezeIbcClient) XXX_Unmarshal(b []byte) error

type Proposal_ParameterChange

type Proposal_ParameterChange struct {
	// The old app parameters to be replaced: even if the proposal passes, the update will not be
	// applied if the app parameters have changed *at all* from these app parameters. Usually,
	// this should be set to the current app parameters at time of proposal.
	OldParameters *ChangedAppParameters `protobuf:"bytes,1,opt,name=old_parameters,json=oldParameters,proto3" json:"old_parameters,omitempty"`
	// The new app parameters to be set: the *entire* app parameters will be replaced with these
	// at the time the proposal is passed, for every component's parameters that is set. If a component's
	// parameters are not set, then they were not changed by the proposal, and will not be updated.
	NewParameters *ChangedAppParameters `protobuf:"bytes,2,opt,name=new_parameters,json=newParameters,proto3" json:"new_parameters,omitempty"`
}

A parameter change proposal describes a replacement of the app parameters, which should take effect when the proposal is passed.

func (*Proposal_ParameterChange) Descriptor

func (*Proposal_ParameterChange) Descriptor() ([]byte, []int)

func (*Proposal_ParameterChange) GetNewParameters

func (m *Proposal_ParameterChange) GetNewParameters() *ChangedAppParameters

func (*Proposal_ParameterChange) GetOldParameters

func (m *Proposal_ParameterChange) GetOldParameters() *ChangedAppParameters

func (*Proposal_ParameterChange) Marshal

func (m *Proposal_ParameterChange) Marshal() (dAtA []byte, err error)

func (*Proposal_ParameterChange) MarshalTo

func (m *Proposal_ParameterChange) MarshalTo(dAtA []byte) (int, error)

func (*Proposal_ParameterChange) MarshalToSizedBuffer

func (m *Proposal_ParameterChange) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Proposal_ParameterChange) ProtoMessage

func (*Proposal_ParameterChange) ProtoMessage()

func (*Proposal_ParameterChange) Reset

func (m *Proposal_ParameterChange) Reset()

func (*Proposal_ParameterChange) Size

func (m *Proposal_ParameterChange) Size() (n int)

func (*Proposal_ParameterChange) String

func (m *Proposal_ParameterChange) String() string

func (*Proposal_ParameterChange) Unmarshal

func (m *Proposal_ParameterChange) Unmarshal(dAtA []byte) error

func (*Proposal_ParameterChange) XXX_DiscardUnknown

func (m *Proposal_ParameterChange) XXX_DiscardUnknown()

func (*Proposal_ParameterChange) XXX_Marshal

func (m *Proposal_ParameterChange) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Proposal_ParameterChange) XXX_Merge

func (m *Proposal_ParameterChange) XXX_Merge(src proto.Message)

func (*Proposal_ParameterChange) XXX_Size

func (m *Proposal_ParameterChange) XXX_Size() int

func (*Proposal_ParameterChange) XXX_Unmarshal

func (m *Proposal_ParameterChange) XXX_Unmarshal(b []byte) error

type Proposal_Signaling

type Proposal_Signaling struct {
	// The commit to be voted upon, if any is relevant.
	Commit string `protobuf:"bytes,1,opt,name=commit,proto3" json:"commit,omitempty"`
}

A signaling proposal is meant to register a vote on-chain, but does not have an automatic effect when passed.

It optionally contains a reference to a commit which contains code to upgrade the chain.

func (*Proposal_Signaling) Descriptor

func (*Proposal_Signaling) Descriptor() ([]byte, []int)

func (*Proposal_Signaling) GetCommit

func (m *Proposal_Signaling) GetCommit() string

func (*Proposal_Signaling) Marshal

func (m *Proposal_Signaling) Marshal() (dAtA []byte, err error)

func (*Proposal_Signaling) MarshalTo

func (m *Proposal_Signaling) MarshalTo(dAtA []byte) (int, error)

func (*Proposal_Signaling) MarshalToSizedBuffer

func (m *Proposal_Signaling) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Proposal_Signaling) ProtoMessage

func (*Proposal_Signaling) ProtoMessage()

func (*Proposal_Signaling) Reset

func (m *Proposal_Signaling) Reset()

func (*Proposal_Signaling) Size

func (m *Proposal_Signaling) Size() (n int)

func (*Proposal_Signaling) String

func (m *Proposal_Signaling) String() string

func (*Proposal_Signaling) Unmarshal

func (m *Proposal_Signaling) Unmarshal(dAtA []byte) error

func (*Proposal_Signaling) XXX_DiscardUnknown

func (m *Proposal_Signaling) XXX_DiscardUnknown()

func (*Proposal_Signaling) XXX_Marshal

func (m *Proposal_Signaling) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Proposal_Signaling) XXX_Merge

func (m *Proposal_Signaling) XXX_Merge(src proto.Message)

func (*Proposal_Signaling) XXX_Size

func (m *Proposal_Signaling) XXX_Size() int

func (*Proposal_Signaling) XXX_Unmarshal

func (m *Proposal_Signaling) XXX_Unmarshal(b []byte) error

type Proposal_UnfreezeIbcClient

type Proposal_UnfreezeIbcClient struct {
	ClientId string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
}

Unfreeze an existing IBC client.

func (*Proposal_UnfreezeIbcClient) Descriptor

func (*Proposal_UnfreezeIbcClient) Descriptor() ([]byte, []int)

func (*Proposal_UnfreezeIbcClient) GetClientId

func (m *Proposal_UnfreezeIbcClient) GetClientId() string

func (*Proposal_UnfreezeIbcClient) Marshal

func (m *Proposal_UnfreezeIbcClient) Marshal() (dAtA []byte, err error)

func (*Proposal_UnfreezeIbcClient) MarshalTo

func (m *Proposal_UnfreezeIbcClient) MarshalTo(dAtA []byte) (int, error)

func (*Proposal_UnfreezeIbcClient) MarshalToSizedBuffer

func (m *Proposal_UnfreezeIbcClient) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Proposal_UnfreezeIbcClient) ProtoMessage

func (*Proposal_UnfreezeIbcClient) ProtoMessage()

func (*Proposal_UnfreezeIbcClient) Reset

func (m *Proposal_UnfreezeIbcClient) Reset()

func (*Proposal_UnfreezeIbcClient) Size

func (m *Proposal_UnfreezeIbcClient) Size() (n int)

func (*Proposal_UnfreezeIbcClient) String

func (m *Proposal_UnfreezeIbcClient) String() string

func (*Proposal_UnfreezeIbcClient) Unmarshal

func (m *Proposal_UnfreezeIbcClient) Unmarshal(dAtA []byte) error

func (*Proposal_UnfreezeIbcClient) XXX_DiscardUnknown

func (m *Proposal_UnfreezeIbcClient) XXX_DiscardUnknown()

func (*Proposal_UnfreezeIbcClient) XXX_Marshal

func (m *Proposal_UnfreezeIbcClient) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Proposal_UnfreezeIbcClient) XXX_Merge

func (m *Proposal_UnfreezeIbcClient) XXX_Merge(src proto.Message)

func (*Proposal_UnfreezeIbcClient) XXX_Size

func (m *Proposal_UnfreezeIbcClient) XXX_Size() int

func (*Proposal_UnfreezeIbcClient) XXX_Unmarshal

func (m *Proposal_UnfreezeIbcClient) XXX_Unmarshal(b []byte) error

type Proposal_UpgradePlan

type Proposal_UpgradePlan struct {
	Height uint64 `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
}

An upgrade plan describes a candidate upgrade to be executed at a certain height. If passed, the chain will halt at the specified height.

func (*Proposal_UpgradePlan) Descriptor

func (*Proposal_UpgradePlan) Descriptor() ([]byte, []int)

func (*Proposal_UpgradePlan) GetHeight

func (m *Proposal_UpgradePlan) GetHeight() uint64

func (*Proposal_UpgradePlan) Marshal

func (m *Proposal_UpgradePlan) Marshal() (dAtA []byte, err error)

func (*Proposal_UpgradePlan) MarshalTo

func (m *Proposal_UpgradePlan) MarshalTo(dAtA []byte) (int, error)

func (*Proposal_UpgradePlan) MarshalToSizedBuffer

func (m *Proposal_UpgradePlan) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Proposal_UpgradePlan) ProtoMessage

func (*Proposal_UpgradePlan) ProtoMessage()

func (*Proposal_UpgradePlan) Reset

func (m *Proposal_UpgradePlan) Reset()

func (*Proposal_UpgradePlan) Size

func (m *Proposal_UpgradePlan) Size() (n int)

func (*Proposal_UpgradePlan) String

func (m *Proposal_UpgradePlan) String() string

func (*Proposal_UpgradePlan) Unmarshal

func (m *Proposal_UpgradePlan) Unmarshal(dAtA []byte) error

func (*Proposal_UpgradePlan) XXX_DiscardUnknown

func (m *Proposal_UpgradePlan) XXX_DiscardUnknown()

func (*Proposal_UpgradePlan) XXX_Marshal

func (m *Proposal_UpgradePlan) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Proposal_UpgradePlan) XXX_Merge

func (m *Proposal_UpgradePlan) XXX_Merge(src proto.Message)

func (*Proposal_UpgradePlan) XXX_Size

func (m *Proposal_UpgradePlan) XXX_Size() int

func (*Proposal_UpgradePlan) XXX_Unmarshal

func (m *Proposal_UpgradePlan) XXX_Unmarshal(b []byte) error

type QueryServiceClient

QueryServiceClient is the client API for QueryService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewQueryServiceClient

func NewQueryServiceClient(cc grpc1.ClientConn) QueryServiceClient

type QueryService_AllTalliedDelegatorVotesForProposalClient

type QueryService_AllTalliedDelegatorVotesForProposalClient interface {
	Recv() (*AllTalliedDelegatorVotesForProposalResponse, error)
	grpc.ClientStream
}

type QueryService_AllTalliedDelegatorVotesForProposalServer

type QueryService_AllTalliedDelegatorVotesForProposalServer interface {
	Send(*AllTalliedDelegatorVotesForProposalResponse) error
	grpc.ServerStream
}

type QueryService_ProposalListClient

type QueryService_ProposalListClient interface {
	Recv() (*ProposalListResponse, error)
	grpc.ClientStream
}

type QueryService_ProposalListServer

type QueryService_ProposalListServer interface {
	Send(*ProposalListResponse) error
	grpc.ServerStream
}

type QueryService_ProposalRateDataClient

type QueryService_ProposalRateDataClient interface {
	Recv() (*ProposalRateDataResponse, error)
	grpc.ClientStream
}

type QueryService_ProposalRateDataServer

type QueryService_ProposalRateDataServer interface {
	Send(*ProposalRateDataResponse) error
	grpc.ServerStream
}

type QueryService_ValidatorVotesClient

type QueryService_ValidatorVotesClient interface {
	Recv() (*ValidatorVotesResponse, error)
	grpc.ClientStream
}

type QueryService_ValidatorVotesServer

type QueryService_ValidatorVotesServer interface {
	Send(*ValidatorVotesResponse) error
	grpc.ServerStream
}

type Tally

type Tally struct {
	// The number of votes in favor of the proposal.
	Yes uint64 `protobuf:"varint,1,opt,name=yes,proto3" json:"yes,omitempty"`
	// The number of votes against the proposal.
	No uint64 `protobuf:"varint,2,opt,name=no,proto3" json:"no,omitempty"`
	// The number of abstentions.
	Abstain uint64 `protobuf:"varint,3,opt,name=abstain,proto3" json:"abstain,omitempty"`
}

A tally of votes on a proposal.

func (*Tally) Descriptor

func (*Tally) Descriptor() ([]byte, []int)

func (*Tally) GetAbstain

func (m *Tally) GetAbstain() uint64

func (*Tally) GetNo

func (m *Tally) GetNo() uint64

func (*Tally) GetYes

func (m *Tally) GetYes() uint64

func (*Tally) Marshal

func (m *Tally) Marshal() (dAtA []byte, err error)

func (*Tally) MarshalTo

func (m *Tally) MarshalTo(dAtA []byte) (int, error)

func (*Tally) MarshalToSizedBuffer

func (m *Tally) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Tally) ProtoMessage

func (*Tally) ProtoMessage()

func (*Tally) Reset

func (m *Tally) Reset()

func (*Tally) Size

func (m *Tally) Size() (n int)

func (*Tally) String

func (m *Tally) String() string

func (*Tally) Unmarshal

func (m *Tally) Unmarshal(dAtA []byte) error

func (*Tally) XXX_DiscardUnknown

func (m *Tally) XXX_DiscardUnknown()

func (*Tally) XXX_Marshal

func (m *Tally) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Tally) XXX_Merge

func (m *Tally) XXX_Merge(src proto.Message)

func (*Tally) XXX_Size

func (m *Tally) XXX_Size() int

func (*Tally) XXX_Unmarshal

func (m *Tally) XXX_Unmarshal(b []byte) error

type UnimplementedQueryServiceServer

type UnimplementedQueryServiceServer struct {
}

UnimplementedQueryServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedQueryServiceServer) NextProposalId

func (*UnimplementedQueryServiceServer) ProposalData

func (*UnimplementedQueryServiceServer) ProposalInfo

func (*UnimplementedQueryServiceServer) ProposalList

func (*UnimplementedQueryServiceServer) ProposalRateData

func (*UnimplementedQueryServiceServer) ValidatorVotes

func (*UnimplementedQueryServiceServer) VotingPowerAtProposalStart

type ValidatorVote

type ValidatorVote struct {
	// The effecting data for the vote.
	Body *ValidatorVoteBody `protobuf:"bytes,1,opt,name=body,proto3" json:"body,omitempty"`
	// The vote authorization signature is authorizing data.
	AuthSig *v1alpha11.SpendAuthSignature `protobuf:"bytes,2,opt,name=auth_sig,json=authSig,proto3" json:"auth_sig,omitempty"`
}

func (*ValidatorVote) Descriptor

func (*ValidatorVote) Descriptor() ([]byte, []int)

func (*ValidatorVote) GetAuthSig

func (m *ValidatorVote) GetAuthSig() *v1alpha11.SpendAuthSignature

func (*ValidatorVote) GetBody

func (m *ValidatorVote) GetBody() *ValidatorVoteBody

func (*ValidatorVote) Marshal

func (m *ValidatorVote) Marshal() (dAtA []byte, err error)

func (*ValidatorVote) MarshalTo

func (m *ValidatorVote) MarshalTo(dAtA []byte) (int, error)

func (*ValidatorVote) MarshalToSizedBuffer

func (m *ValidatorVote) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ValidatorVote) ProtoMessage

func (*ValidatorVote) ProtoMessage()

func (*ValidatorVote) Reset

func (m *ValidatorVote) Reset()

func (*ValidatorVote) Size

func (m *ValidatorVote) Size() (n int)

func (*ValidatorVote) String

func (m *ValidatorVote) String() string

func (*ValidatorVote) Unmarshal

func (m *ValidatorVote) Unmarshal(dAtA []byte) error

func (*ValidatorVote) XXX_DiscardUnknown

func (m *ValidatorVote) XXX_DiscardUnknown()

func (*ValidatorVote) XXX_Marshal

func (m *ValidatorVote) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ValidatorVote) XXX_Merge

func (m *ValidatorVote) XXX_Merge(src proto.Message)

func (*ValidatorVote) XXX_Size

func (m *ValidatorVote) XXX_Size() int

func (*ValidatorVote) XXX_Unmarshal

func (m *ValidatorVote) XXX_Unmarshal(b []byte) error

type ValidatorVoteBody

type ValidatorVoteBody struct {
	// The proposal being voted on.
	Proposal uint64 `protobuf:"varint,1,opt,name=proposal,proto3" json:"proposal,omitempty"`
	// The vote.
	Vote *Vote `protobuf:"bytes,2,opt,name=vote,proto3" json:"vote,omitempty"`
	// The validator identity.
	IdentityKey *v1alpha12.IdentityKey `protobuf:"bytes,3,opt,name=identity_key,json=identityKey,proto3" json:"identity_key,omitempty"`
	// The validator governance key.
	GovernanceKey *v1alpha12.GovernanceKey `protobuf:"bytes,4,opt,name=governance_key,json=governanceKey,proto3" json:"governance_key,omitempty"`
	// A justification of the vote.
	Reason *ValidatorVoteReason `protobuf:"bytes,5,opt,name=reason,proto3" json:"reason,omitempty"`
}

func (*ValidatorVoteBody) Descriptor

func (*ValidatorVoteBody) Descriptor() ([]byte, []int)

func (*ValidatorVoteBody) GetGovernanceKey

func (m *ValidatorVoteBody) GetGovernanceKey() *v1alpha12.GovernanceKey

func (*ValidatorVoteBody) GetIdentityKey

func (m *ValidatorVoteBody) GetIdentityKey() *v1alpha12.IdentityKey

func (*ValidatorVoteBody) GetProposal

func (m *ValidatorVoteBody) GetProposal() uint64

func (*ValidatorVoteBody) GetReason

func (m *ValidatorVoteBody) GetReason() *ValidatorVoteReason

func (*ValidatorVoteBody) GetVote

func (m *ValidatorVoteBody) GetVote() *Vote

func (*ValidatorVoteBody) Marshal

func (m *ValidatorVoteBody) Marshal() (dAtA []byte, err error)

func (*ValidatorVoteBody) MarshalTo

func (m *ValidatorVoteBody) MarshalTo(dAtA []byte) (int, error)

func (*ValidatorVoteBody) MarshalToSizedBuffer

func (m *ValidatorVoteBody) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ValidatorVoteBody) ProtoMessage

func (*ValidatorVoteBody) ProtoMessage()

func (*ValidatorVoteBody) Reset

func (m *ValidatorVoteBody) Reset()

func (*ValidatorVoteBody) Size

func (m *ValidatorVoteBody) Size() (n int)

func (*ValidatorVoteBody) String

func (m *ValidatorVoteBody) String() string

func (*ValidatorVoteBody) Unmarshal

func (m *ValidatorVoteBody) Unmarshal(dAtA []byte) error

func (*ValidatorVoteBody) XXX_DiscardUnknown

func (m *ValidatorVoteBody) XXX_DiscardUnknown()

func (*ValidatorVoteBody) XXX_Marshal

func (m *ValidatorVoteBody) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ValidatorVoteBody) XXX_Merge

func (m *ValidatorVoteBody) XXX_Merge(src proto.Message)

func (*ValidatorVoteBody) XXX_Size

func (m *ValidatorVoteBody) XXX_Size() int

func (*ValidatorVoteBody) XXX_Unmarshal

func (m *ValidatorVoteBody) XXX_Unmarshal(b []byte) error

type ValidatorVoteReason

type ValidatorVoteReason struct {
	Reason string `protobuf:"bytes,1,opt,name=reason,proto3" json:"reason,omitempty"`
}

func (*ValidatorVoteReason) Descriptor

func (*ValidatorVoteReason) Descriptor() ([]byte, []int)

func (*ValidatorVoteReason) GetReason

func (m *ValidatorVoteReason) GetReason() string

func (*ValidatorVoteReason) Marshal

func (m *ValidatorVoteReason) Marshal() (dAtA []byte, err error)

func (*ValidatorVoteReason) MarshalTo

func (m *ValidatorVoteReason) MarshalTo(dAtA []byte) (int, error)

func (*ValidatorVoteReason) MarshalToSizedBuffer

func (m *ValidatorVoteReason) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ValidatorVoteReason) ProtoMessage

func (*ValidatorVoteReason) ProtoMessage()

func (*ValidatorVoteReason) Reset

func (m *ValidatorVoteReason) Reset()

func (*ValidatorVoteReason) Size

func (m *ValidatorVoteReason) Size() (n int)

func (*ValidatorVoteReason) String

func (m *ValidatorVoteReason) String() string

func (*ValidatorVoteReason) Unmarshal

func (m *ValidatorVoteReason) Unmarshal(dAtA []byte) error

func (*ValidatorVoteReason) XXX_DiscardUnknown

func (m *ValidatorVoteReason) XXX_DiscardUnknown()

func (*ValidatorVoteReason) XXX_Marshal

func (m *ValidatorVoteReason) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ValidatorVoteReason) XXX_Merge

func (m *ValidatorVoteReason) XXX_Merge(src proto.Message)

func (*ValidatorVoteReason) XXX_Size

func (m *ValidatorVoteReason) XXX_Size() int

func (*ValidatorVoteReason) XXX_Unmarshal

func (m *ValidatorVoteReason) XXX_Unmarshal(b []byte) error

type ValidatorVotesRequest

type ValidatorVotesRequest struct {
	// The expected chain id (empty string if no expectation).
	ChainId string `protobuf:"bytes,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	// The proposal id to request information on.
	ProposalId uint64 `protobuf:"varint,2,opt,name=proposal_id,json=proposalId,proto3" json:"proposal_id,omitempty"`
}

Requests the list of all validator votes for a given proposal.

func (*ValidatorVotesRequest) Descriptor

func (*ValidatorVotesRequest) Descriptor() ([]byte, []int)

func (*ValidatorVotesRequest) GetChainId

func (m *ValidatorVotesRequest) GetChainId() string

func (*ValidatorVotesRequest) GetProposalId

func (m *ValidatorVotesRequest) GetProposalId() uint64

func (*ValidatorVotesRequest) Marshal

func (m *ValidatorVotesRequest) Marshal() (dAtA []byte, err error)

func (*ValidatorVotesRequest) MarshalTo

func (m *ValidatorVotesRequest) MarshalTo(dAtA []byte) (int, error)

func (*ValidatorVotesRequest) MarshalToSizedBuffer

func (m *ValidatorVotesRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ValidatorVotesRequest) ProtoMessage

func (*ValidatorVotesRequest) ProtoMessage()

func (*ValidatorVotesRequest) Reset

func (m *ValidatorVotesRequest) Reset()

func (*ValidatorVotesRequest) Size

func (m *ValidatorVotesRequest) Size() (n int)

func (*ValidatorVotesRequest) String

func (m *ValidatorVotesRequest) String() string

func (*ValidatorVotesRequest) Unmarshal

func (m *ValidatorVotesRequest) Unmarshal(dAtA []byte) error

func (*ValidatorVotesRequest) XXX_DiscardUnknown

func (m *ValidatorVotesRequest) XXX_DiscardUnknown()

func (*ValidatorVotesRequest) XXX_Marshal

func (m *ValidatorVotesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ValidatorVotesRequest) XXX_Merge

func (m *ValidatorVotesRequest) XXX_Merge(src proto.Message)

func (*ValidatorVotesRequest) XXX_Size

func (m *ValidatorVotesRequest) XXX_Size() int

func (*ValidatorVotesRequest) XXX_Unmarshal

func (m *ValidatorVotesRequest) XXX_Unmarshal(b []byte) error

type ValidatorVotesResponse

type ValidatorVotesResponse struct {
	// The vote.
	Vote *Vote `protobuf:"bytes,1,opt,name=vote,proto3" json:"vote,omitempty"`
	// The validator identity.
	IdentityKey *v1alpha12.IdentityKey `protobuf:"bytes,2,opt,name=identity_key,json=identityKey,proto3" json:"identity_key,omitempty"`
}

The data for a single validator vote.

func (*ValidatorVotesResponse) Descriptor

func (*ValidatorVotesResponse) Descriptor() ([]byte, []int)

func (*ValidatorVotesResponse) GetIdentityKey

func (m *ValidatorVotesResponse) GetIdentityKey() *v1alpha12.IdentityKey

func (*ValidatorVotesResponse) GetVote

func (m *ValidatorVotesResponse) GetVote() *Vote

func (*ValidatorVotesResponse) Marshal

func (m *ValidatorVotesResponse) Marshal() (dAtA []byte, err error)

func (*ValidatorVotesResponse) MarshalTo

func (m *ValidatorVotesResponse) MarshalTo(dAtA []byte) (int, error)

func (*ValidatorVotesResponse) MarshalToSizedBuffer

func (m *ValidatorVotesResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ValidatorVotesResponse) ProtoMessage

func (*ValidatorVotesResponse) ProtoMessage()

func (*ValidatorVotesResponse) Reset

func (m *ValidatorVotesResponse) Reset()

func (*ValidatorVotesResponse) Size

func (m *ValidatorVotesResponse) Size() (n int)

func (*ValidatorVotesResponse) String

func (m *ValidatorVotesResponse) String() string

func (*ValidatorVotesResponse) Unmarshal

func (m *ValidatorVotesResponse) Unmarshal(dAtA []byte) error

func (*ValidatorVotesResponse) XXX_DiscardUnknown

func (m *ValidatorVotesResponse) XXX_DiscardUnknown()

func (*ValidatorVotesResponse) XXX_Marshal

func (m *ValidatorVotesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ValidatorVotesResponse) XXX_Merge

func (m *ValidatorVotesResponse) XXX_Merge(src proto.Message)

func (*ValidatorVotesResponse) XXX_Size

func (m *ValidatorVotesResponse) XXX_Size() int

func (*ValidatorVotesResponse) XXX_Unmarshal

func (m *ValidatorVotesResponse) XXX_Unmarshal(b []byte) error

type Vote

type Vote struct {
	// The vote.
	Vote Vote_Vote `protobuf:"varint,1,opt,name=vote,proto3,enum=penumbra.core.component.governance.v1alpha1.Vote_Vote" json:"vote,omitempty"`
}

A vote on a proposal.

func (*Vote) Descriptor

func (*Vote) Descriptor() ([]byte, []int)

func (*Vote) GetVote

func (m *Vote) GetVote() Vote_Vote

func (*Vote) Marshal

func (m *Vote) Marshal() (dAtA []byte, err error)

func (*Vote) MarshalTo

func (m *Vote) MarshalTo(dAtA []byte) (int, error)

func (*Vote) MarshalToSizedBuffer

func (m *Vote) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Vote) ProtoMessage

func (*Vote) ProtoMessage()

func (*Vote) Reset

func (m *Vote) Reset()

func (*Vote) Size

func (m *Vote) Size() (n int)

func (*Vote) String

func (m *Vote) String() string

func (*Vote) Unmarshal

func (m *Vote) Unmarshal(dAtA []byte) error

func (*Vote) XXX_DiscardUnknown

func (m *Vote) XXX_DiscardUnknown()

func (*Vote) XXX_Marshal

func (m *Vote) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Vote) XXX_Merge

func (m *Vote) XXX_Merge(src proto.Message)

func (*Vote) XXX_Size

func (m *Vote) XXX_Size() int

func (*Vote) XXX_Unmarshal

func (m *Vote) XXX_Unmarshal(b []byte) error

type Vote_Vote

type Vote_Vote int32

A vote.

const (
	Vote_VOTE_UNSPECIFIED Vote_Vote = 0
	Vote_VOTE_ABSTAIN     Vote_Vote = 1
	Vote_VOTE_YES         Vote_Vote = 2
	Vote_VOTE_NO          Vote_Vote = 3
)

func (Vote_Vote) EnumDescriptor

func (Vote_Vote) EnumDescriptor() ([]byte, []int)

func (Vote_Vote) String

func (x Vote_Vote) String() string

type VotingPowerAtProposalStartRequest

type VotingPowerAtProposalStartRequest struct {
	// The expected chain id (empty string if no expectation).
	ChainId string `protobuf:"bytes,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	// The proposal id to request information on.
	ProposalId uint64 `protobuf:"varint,2,opt,name=proposal_id,json=proposalId,proto3" json:"proposal_id,omitempty"`
	// The validator identity key to request information on.
	IdentityKey *v1alpha12.IdentityKey `protobuf:"bytes,3,opt,name=identity_key,json=identityKey,proto3" json:"identity_key,omitempty"`
}

func (*VotingPowerAtProposalStartRequest) Descriptor

func (*VotingPowerAtProposalStartRequest) Descriptor() ([]byte, []int)

func (*VotingPowerAtProposalStartRequest) GetChainId

func (m *VotingPowerAtProposalStartRequest) GetChainId() string

func (*VotingPowerAtProposalStartRequest) GetIdentityKey

func (*VotingPowerAtProposalStartRequest) GetProposalId

func (m *VotingPowerAtProposalStartRequest) GetProposalId() uint64

func (*VotingPowerAtProposalStartRequest) Marshal

func (m *VotingPowerAtProposalStartRequest) Marshal() (dAtA []byte, err error)

func (*VotingPowerAtProposalStartRequest) MarshalTo

func (m *VotingPowerAtProposalStartRequest) MarshalTo(dAtA []byte) (int, error)

func (*VotingPowerAtProposalStartRequest) MarshalToSizedBuffer

func (m *VotingPowerAtProposalStartRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*VotingPowerAtProposalStartRequest) ProtoMessage

func (*VotingPowerAtProposalStartRequest) ProtoMessage()

func (*VotingPowerAtProposalStartRequest) Reset

func (*VotingPowerAtProposalStartRequest) Size

func (m *VotingPowerAtProposalStartRequest) Size() (n int)

func (*VotingPowerAtProposalStartRequest) String

func (*VotingPowerAtProposalStartRequest) Unmarshal

func (m *VotingPowerAtProposalStartRequest) Unmarshal(dAtA []byte) error

func (*VotingPowerAtProposalStartRequest) XXX_DiscardUnknown

func (m *VotingPowerAtProposalStartRequest) XXX_DiscardUnknown()

func (*VotingPowerAtProposalStartRequest) XXX_Marshal

func (m *VotingPowerAtProposalStartRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*VotingPowerAtProposalStartRequest) XXX_Merge

func (*VotingPowerAtProposalStartRequest) XXX_Size

func (m *VotingPowerAtProposalStartRequest) XXX_Size() int

func (*VotingPowerAtProposalStartRequest) XXX_Unmarshal

func (m *VotingPowerAtProposalStartRequest) XXX_Unmarshal(b []byte) error

type VotingPowerAtProposalStartResponse

type VotingPowerAtProposalStartResponse struct {
	// The voting power for the given identity key at the start of the proposal.
	// TODO: since we don't support optional fields in our protos any more,
	// this will be set to 0 if the validator was not active at the start of the proposal.
	// Is this potentially an issue?
	VotingPower uint64 `protobuf:"varint,1,opt,name=voting_power,json=votingPower,proto3" json:"voting_power,omitempty"`
}

func (*VotingPowerAtProposalStartResponse) Descriptor

func (*VotingPowerAtProposalStartResponse) Descriptor() ([]byte, []int)

func (*VotingPowerAtProposalStartResponse) GetVotingPower

func (m *VotingPowerAtProposalStartResponse) GetVotingPower() uint64

func (*VotingPowerAtProposalStartResponse) Marshal

func (m *VotingPowerAtProposalStartResponse) Marshal() (dAtA []byte, err error)

func (*VotingPowerAtProposalStartResponse) MarshalTo

func (m *VotingPowerAtProposalStartResponse) MarshalTo(dAtA []byte) (int, error)

func (*VotingPowerAtProposalStartResponse) MarshalToSizedBuffer

func (m *VotingPowerAtProposalStartResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*VotingPowerAtProposalStartResponse) ProtoMessage

func (*VotingPowerAtProposalStartResponse) ProtoMessage()

func (*VotingPowerAtProposalStartResponse) Reset

func (*VotingPowerAtProposalStartResponse) Size

func (*VotingPowerAtProposalStartResponse) String

func (*VotingPowerAtProposalStartResponse) Unmarshal

func (m *VotingPowerAtProposalStartResponse) Unmarshal(dAtA []byte) error

func (*VotingPowerAtProposalStartResponse) XXX_DiscardUnknown

func (m *VotingPowerAtProposalStartResponse) XXX_DiscardUnknown()

func (*VotingPowerAtProposalStartResponse) XXX_Marshal

func (m *VotingPowerAtProposalStartResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*VotingPowerAtProposalStartResponse) XXX_Merge

func (*VotingPowerAtProposalStartResponse) XXX_Size

func (*VotingPowerAtProposalStartResponse) XXX_Unmarshal

func (m *VotingPowerAtProposalStartResponse) XXX_Unmarshal(b []byte) error

type ZKDelegatorVoteProof

type ZKDelegatorVoteProof struct {
	Inner []byte `protobuf:"bytes,1,opt,name=inner,proto3" json:"inner,omitempty"`
}

A Penumbra ZK delegator vote proof.

func (*ZKDelegatorVoteProof) Descriptor

func (*ZKDelegatorVoteProof) Descriptor() ([]byte, []int)

func (*ZKDelegatorVoteProof) GetInner

func (m *ZKDelegatorVoteProof) GetInner() []byte

func (*ZKDelegatorVoteProof) Marshal

func (m *ZKDelegatorVoteProof) Marshal() (dAtA []byte, err error)

func (*ZKDelegatorVoteProof) MarshalTo

func (m *ZKDelegatorVoteProof) MarshalTo(dAtA []byte) (int, error)

func (*ZKDelegatorVoteProof) MarshalToSizedBuffer

func (m *ZKDelegatorVoteProof) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*ZKDelegatorVoteProof) ProtoMessage

func (*ZKDelegatorVoteProof) ProtoMessage()

func (*ZKDelegatorVoteProof) Reset

func (m *ZKDelegatorVoteProof) Reset()

func (*ZKDelegatorVoteProof) Size

func (m *ZKDelegatorVoteProof) Size() (n int)

func (*ZKDelegatorVoteProof) String

func (m *ZKDelegatorVoteProof) String() string

func (*ZKDelegatorVoteProof) Unmarshal

func (m *ZKDelegatorVoteProof) Unmarshal(dAtA []byte) error

func (*ZKDelegatorVoteProof) XXX_DiscardUnknown

func (m *ZKDelegatorVoteProof) XXX_DiscardUnknown()

func (*ZKDelegatorVoteProof) XXX_Marshal

func (m *ZKDelegatorVoteProof) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ZKDelegatorVoteProof) XXX_Merge

func (m *ZKDelegatorVoteProof) XXX_Merge(src proto.Message)

func (*ZKDelegatorVoteProof) XXX_Size

func (m *ZKDelegatorVoteProof) XXX_Size() int

func (*ZKDelegatorVoteProof) XXX_Unmarshal

func (m *ZKDelegatorVoteProof) XXX_Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL