dposv3

package
v0.0.0-...-0b06f50 Latest Latest
Warning

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

Go to latest
Published: Jun 12, 2020 License: BSD-3-Clause Imports: 4 Imported by: 3

Documentation

Index

Constants

This section is empty.

Variables

View Source
var Candidate_CandidateState_name = map[int32]string{
	0: "REGISTERED",
	1: "UNREGISTERING",
	2: "ABOUT_TO_CHANGE_FEE",
	3: "CHANGING_FEE",
}
View Source
var Candidate_CandidateState_value = map[string]int32{
	"REGISTERED":          0,
	"UNREGISTERING":       1,
	"ABOUT_TO_CHANGE_FEE": 2,
	"CHANGING_FEE":        3,
}
View Source
var Delegation_DelegationState_name = map[int32]string{
	0: "BONDING",
	1: "BONDED",
	2: "UNBONDING",
	3: "REDELEGATING",
}
View Source
var Delegation_DelegationState_value = map[string]int32{
	"BONDING":      0,
	"BONDED":       1,
	"UNBONDING":    2,
	"REDELEGATING": 3,
}
View Source
var LocktimeTier_name = map[int32]string{
	0: "TIER_ZERO",
	1: "TIER_ONE",
	2: "TIER_TWO",
	3: "TIER_THREE",
}
View Source
var LocktimeTier_value = map[string]int32{
	"TIER_ZERO":  0,
	"TIER_ONE":   1,
	"TIER_TWO":   2,
	"TIER_THREE": 3,
}

Functions

This section is empty.

Types

type BatchRequest

type BatchRequest struct {
	// Types that are valid to be assigned to Payload:
	//	*BatchRequest_WhitelistCandidate
	Payload              isBatchRequest_Payload `protobuf_oneof:"payload"`
	Meta                 *BatchRequestMeta      `protobuf:"bytes,2,opt,name=meta" json:"meta,omitempty"`
	XXX_NoUnkeyedLiteral struct{}               `json:"-"`
	XXX_unrecognized     []byte                 `json:"-"`
	XXX_sizecache        int32                  `json:"-"`
}

Oracle request batch

func (*BatchRequest) Descriptor

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

func (*BatchRequest) GetMeta

func (m *BatchRequest) GetMeta() *BatchRequestMeta

func (*BatchRequest) GetPayload

func (m *BatchRequest) GetPayload() isBatchRequest_Payload

func (*BatchRequest) GetWhitelistCandidate

func (m *BatchRequest) GetWhitelistCandidate() *WhitelistCandidateRequest

func (*BatchRequest) ProtoMessage

func (*BatchRequest) ProtoMessage()

func (*BatchRequest) Reset

func (m *BatchRequest) Reset()

func (*BatchRequest) String

func (m *BatchRequest) String() string

func (*BatchRequest) XXX_DiscardUnknown

func (m *BatchRequest) XXX_DiscardUnknown()

func (*BatchRequest) XXX_Marshal

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

func (*BatchRequest) XXX_Merge

func (dst *BatchRequest) XXX_Merge(src proto.Message)

func (*BatchRequest) XXX_OneofFuncs

func (*BatchRequest) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{})

XXX_OneofFuncs is for the internal use of the proto package.

func (*BatchRequest) XXX_Size

func (m *BatchRequest) XXX_Size() int

func (*BatchRequest) XXX_Unmarshal

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

type BatchRequestMeta

type BatchRequestMeta struct {
	BlockNumber          uint64   `protobuf:"varint,1,opt,name=block_number,json=blockNumber,proto3" json:"block_number,omitempty"`
	TxIndex              uint64   `protobuf:"varint,2,opt,name=tx_index,json=txIndex,proto3" json:"tx_index,omitempty"`
	LogIndex             uint64   `protobuf:"varint,3,opt,name=log_index,json=logIndex,proto3" json:"log_index,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*BatchRequestMeta) Descriptor

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

func (*BatchRequestMeta) GetBlockNumber

func (m *BatchRequestMeta) GetBlockNumber() uint64

func (*BatchRequestMeta) GetLogIndex

func (m *BatchRequestMeta) GetLogIndex() uint64

func (*BatchRequestMeta) GetTxIndex

func (m *BatchRequestMeta) GetTxIndex() uint64

func (*BatchRequestMeta) ProtoMessage

func (*BatchRequestMeta) ProtoMessage()

func (*BatchRequestMeta) Reset

func (m *BatchRequestMeta) Reset()

func (*BatchRequestMeta) String

func (m *BatchRequestMeta) String() string

func (*BatchRequestMeta) XXX_DiscardUnknown

func (m *BatchRequestMeta) XXX_DiscardUnknown()

func (*BatchRequestMeta) XXX_Marshal

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

func (*BatchRequestMeta) XXX_Merge

func (dst *BatchRequestMeta) XXX_Merge(src proto.Message)

func (*BatchRequestMeta) XXX_Size

func (m *BatchRequestMeta) XXX_Size() int

func (*BatchRequestMeta) XXX_Unmarshal

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

type BatchRequest_WhitelistCandidate

type BatchRequest_WhitelistCandidate struct {
	WhitelistCandidate *WhitelistCandidateRequest `protobuf:"bytes,1,opt,name=whitelist_candidate,json=whitelistCandidate,oneof"`
}

type Candidate

type Candidate struct {
	Address               *types.Address           `protobuf:"bytes,1,opt,name=address" json:"address,omitempty"`
	PubKey                []byte                   `protobuf:"bytes,2,opt,name=pub_key,json=pubKey,proto3" json:"pub_key,omitempty"`
	Fee                   uint64                   `protobuf:"varint,3,opt,name=fee,proto3" json:"fee,omitempty"`
	NewFee                uint64                   `protobuf:"varint,4,opt,name=new_fee,json=newFee,proto3" json:"new_fee,omitempty"`
	State                 Candidate_CandidateState `protobuf:"varint,5,opt,name=state,proto3,enum=dposv3.Candidate_CandidateState" json:"state,omitempty"`
	Name                  string                   `protobuf:"bytes,6,opt,name=name,proto3" json:"name,omitempty"`
	Description           string                   `protobuf:"bytes,7,opt,name=description,proto3" json:"description,omitempty"`
	Website               string                   `protobuf:"bytes,8,opt,name=website,proto3" json:"website,omitempty"`
	MaxReferralPercentage uint64                   `` /* 127-byte string literal not displayed */
	XXX_NoUnkeyedLiteral  struct{}                 `json:"-"`
	XXX_unrecognized      []byte                   `json:"-"`
	XXX_sizecache         int32                    `json:"-"`
}

func (*Candidate) Descriptor

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

func (*Candidate) GetAddress

func (m *Candidate) GetAddress() *types.Address

func (*Candidate) GetDescription

func (m *Candidate) GetDescription() string

func (*Candidate) GetFee

func (m *Candidate) GetFee() uint64

func (*Candidate) GetMaxReferralPercentage

func (m *Candidate) GetMaxReferralPercentage() uint64

func (*Candidate) GetName

func (m *Candidate) GetName() string

func (*Candidate) GetNewFee

func (m *Candidate) GetNewFee() uint64

func (*Candidate) GetPubKey

func (m *Candidate) GetPubKey() []byte

func (*Candidate) GetState

func (m *Candidate) GetState() Candidate_CandidateState

func (*Candidate) GetWebsite

func (m *Candidate) GetWebsite() string

func (*Candidate) ProtoMessage

func (*Candidate) ProtoMessage()

func (*Candidate) Reset

func (m *Candidate) Reset()

func (*Candidate) String

func (m *Candidate) String() string

func (*Candidate) XXX_DiscardUnknown

func (m *Candidate) XXX_DiscardUnknown()

func (*Candidate) XXX_Marshal

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

func (*Candidate) XXX_Merge

func (dst *Candidate) XXX_Merge(src proto.Message)

func (*Candidate) XXX_Size

func (m *Candidate) XXX_Size() int

func (*Candidate) XXX_Unmarshal

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

type CandidateList

type CandidateList struct {
	Candidates           []*Candidate `protobuf:"bytes,1,rep,name=candidates" json:"candidates,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*CandidateList) Descriptor

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

func (*CandidateList) GetCandidates

func (m *CandidateList) GetCandidates() []*Candidate

func (*CandidateList) ProtoMessage

func (*CandidateList) ProtoMessage()

func (*CandidateList) Reset

func (m *CandidateList) Reset()

func (*CandidateList) String

func (m *CandidateList) String() string

func (*CandidateList) XXX_DiscardUnknown

func (m *CandidateList) XXX_DiscardUnknown()

func (*CandidateList) XXX_Marshal

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

func (*CandidateList) XXX_Merge

func (dst *CandidateList) XXX_Merge(src proto.Message)

func (*CandidateList) XXX_Size

func (m *CandidateList) XXX_Size() int

func (*CandidateList) XXX_Unmarshal

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

type CandidateStatistic

type CandidateStatistic struct {
	Statistic            *ValidatorStatistic `protobuf:"bytes,1,opt,name=statistic" json:"statistic,omitempty"`
	Candidate            *Candidate          `protobuf:"bytes,2,opt,name=candidate" json:"candidate,omitempty"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

func (*CandidateStatistic) Descriptor

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

func (*CandidateStatistic) GetCandidate

func (m *CandidateStatistic) GetCandidate() *Candidate

func (*CandidateStatistic) GetStatistic

func (m *CandidateStatistic) GetStatistic() *ValidatorStatistic

func (*CandidateStatistic) ProtoMessage

func (*CandidateStatistic) ProtoMessage()

func (*CandidateStatistic) Reset

func (m *CandidateStatistic) Reset()

func (*CandidateStatistic) String

func (m *CandidateStatistic) String() string

func (*CandidateStatistic) XXX_DiscardUnknown

func (m *CandidateStatistic) XXX_DiscardUnknown()

func (*CandidateStatistic) XXX_Marshal

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

func (*CandidateStatistic) XXX_Merge

func (dst *CandidateStatistic) XXX_Merge(src proto.Message)

func (*CandidateStatistic) XXX_Size

func (m *CandidateStatistic) XXX_Size() int

func (*CandidateStatistic) XXX_Unmarshal

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

type Candidate_CandidateState

type Candidate_CandidateState int32
const (
	Candidate_REGISTERED          Candidate_CandidateState = 0
	Candidate_UNREGISTERING       Candidate_CandidateState = 1
	Candidate_ABOUT_TO_CHANGE_FEE Candidate_CandidateState = 2
	Candidate_CHANGING_FEE        Candidate_CandidateState = 3
)

func (Candidate_CandidateState) EnumDescriptor

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

func (Candidate_CandidateState) String

func (x Candidate_CandidateState) String() string

type ChangeCandidateFeeRequest

type ChangeCandidateFeeRequest struct {
	Fee                  uint64   `protobuf:"varint,1,opt,name=fee,proto3" json:"fee,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ChangeCandidateFeeRequest) Descriptor

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

func (*ChangeCandidateFeeRequest) GetFee

func (m *ChangeCandidateFeeRequest) GetFee() uint64

func (*ChangeCandidateFeeRequest) ProtoMessage

func (*ChangeCandidateFeeRequest) ProtoMessage()

func (*ChangeCandidateFeeRequest) Reset

func (m *ChangeCandidateFeeRequest) Reset()

func (*ChangeCandidateFeeRequest) String

func (m *ChangeCandidateFeeRequest) String() string

func (*ChangeCandidateFeeRequest) XXX_DiscardUnknown

func (m *ChangeCandidateFeeRequest) XXX_DiscardUnknown()

func (*ChangeCandidateFeeRequest) XXX_Marshal

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

func (*ChangeCandidateFeeRequest) XXX_Merge

func (dst *ChangeCandidateFeeRequest) XXX_Merge(src proto.Message)

func (*ChangeCandidateFeeRequest) XXX_Size

func (m *ChangeCandidateFeeRequest) XXX_Size() int

func (*ChangeCandidateFeeRequest) XXX_Unmarshal

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

type ChangeWhitelistInfoRequest

type ChangeWhitelistInfoRequest struct {
	CandidateAddress     *types.Address `protobuf:"bytes,1,opt,name=candidate_address,json=candidateAddress" json:"candidate_address,omitempty"`
	Amount               *types.BigUInt `protobuf:"bytes,2,opt,name=amount" json:"amount,omitempty"`
	LocktimeTier         LocktimeTier   `protobuf:"varint,3,opt,name=locktime_tier,json=locktimeTier,proto3,enum=dposv3.LocktimeTier" json:"locktime_tier,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*ChangeWhitelistInfoRequest) Descriptor

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

func (*ChangeWhitelistInfoRequest) GetAmount

func (m *ChangeWhitelistInfoRequest) GetAmount() *types.BigUInt

func (*ChangeWhitelistInfoRequest) GetCandidateAddress

func (m *ChangeWhitelistInfoRequest) GetCandidateAddress() *types.Address

func (*ChangeWhitelistInfoRequest) GetLocktimeTier

func (m *ChangeWhitelistInfoRequest) GetLocktimeTier() LocktimeTier

func (*ChangeWhitelistInfoRequest) ProtoMessage

func (*ChangeWhitelistInfoRequest) ProtoMessage()

func (*ChangeWhitelistInfoRequest) Reset

func (m *ChangeWhitelistInfoRequest) Reset()

func (*ChangeWhitelistInfoRequest) String

func (m *ChangeWhitelistInfoRequest) String() string

func (*ChangeWhitelistInfoRequest) XXX_DiscardUnknown

func (m *ChangeWhitelistInfoRequest) XXX_DiscardUnknown()

func (*ChangeWhitelistInfoRequest) XXX_Marshal

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

func (*ChangeWhitelistInfoRequest) XXX_Merge

func (dst *ChangeWhitelistInfoRequest) XXX_Merge(src proto.Message)

func (*ChangeWhitelistInfoRequest) XXX_Size

func (m *ChangeWhitelistInfoRequest) XXX_Size() int

func (*ChangeWhitelistInfoRequest) XXX_Unmarshal

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

type CheckAllDelegationsRequest

type CheckAllDelegationsRequest struct {
	DelegatorAddress     *types.Address `protobuf:"bytes,1,opt,name=delegator_address,json=delegatorAddress" json:"delegator_address,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*CheckAllDelegationsRequest) Descriptor

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

func (*CheckAllDelegationsRequest) GetDelegatorAddress

func (m *CheckAllDelegationsRequest) GetDelegatorAddress() *types.Address

func (*CheckAllDelegationsRequest) ProtoMessage

func (*CheckAllDelegationsRequest) ProtoMessage()

func (*CheckAllDelegationsRequest) Reset

func (m *CheckAllDelegationsRequest) Reset()

func (*CheckAllDelegationsRequest) String

func (m *CheckAllDelegationsRequest) String() string

func (*CheckAllDelegationsRequest) XXX_DiscardUnknown

func (m *CheckAllDelegationsRequest) XXX_DiscardUnknown()

func (*CheckAllDelegationsRequest) XXX_Marshal

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

func (*CheckAllDelegationsRequest) XXX_Merge

func (dst *CheckAllDelegationsRequest) XXX_Merge(src proto.Message)

func (*CheckAllDelegationsRequest) XXX_Size

func (m *CheckAllDelegationsRequest) XXX_Size() int

func (*CheckAllDelegationsRequest) XXX_Unmarshal

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

type CheckAllDelegationsResponse

type CheckAllDelegationsResponse struct {
	Amount               *types.BigUInt `protobuf:"bytes,1,opt,name=amount" json:"amount,omitempty"`
	WeightedAmount       *types.BigUInt `protobuf:"bytes,2,opt,name=weighted_amount,json=weightedAmount" json:"weighted_amount,omitempty"`
	Delegations          []*Delegation  `protobuf:"bytes,3,rep,name=delegations" json:"delegations,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*CheckAllDelegationsResponse) Descriptor

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

func (*CheckAllDelegationsResponse) GetAmount

func (m *CheckAllDelegationsResponse) GetAmount() *types.BigUInt

func (*CheckAllDelegationsResponse) GetDelegations

func (m *CheckAllDelegationsResponse) GetDelegations() []*Delegation

func (*CheckAllDelegationsResponse) GetWeightedAmount

func (m *CheckAllDelegationsResponse) GetWeightedAmount() *types.BigUInt

func (*CheckAllDelegationsResponse) ProtoMessage

func (*CheckAllDelegationsResponse) ProtoMessage()

func (*CheckAllDelegationsResponse) Reset

func (m *CheckAllDelegationsResponse) Reset()

func (*CheckAllDelegationsResponse) String

func (m *CheckAllDelegationsResponse) String() string

func (*CheckAllDelegationsResponse) XXX_DiscardUnknown

func (m *CheckAllDelegationsResponse) XXX_DiscardUnknown()

func (*CheckAllDelegationsResponse) XXX_Marshal

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

func (*CheckAllDelegationsResponse) XXX_Merge

func (dst *CheckAllDelegationsResponse) XXX_Merge(src proto.Message)

func (*CheckAllDelegationsResponse) XXX_Size

func (m *CheckAllDelegationsResponse) XXX_Size() int

func (*CheckAllDelegationsResponse) XXX_Unmarshal

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

type CheckDelegationRequest

type CheckDelegationRequest struct {
	ValidatorAddress     *types.Address `protobuf:"bytes,1,opt,name=validator_address,json=validatorAddress" json:"validator_address,omitempty"`
	DelegatorAddress     *types.Address `protobuf:"bytes,2,opt,name=delegator_address,json=delegatorAddress" json:"delegator_address,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*CheckDelegationRequest) Descriptor

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

func (*CheckDelegationRequest) GetDelegatorAddress

func (m *CheckDelegationRequest) GetDelegatorAddress() *types.Address

func (*CheckDelegationRequest) GetValidatorAddress

func (m *CheckDelegationRequest) GetValidatorAddress() *types.Address

func (*CheckDelegationRequest) ProtoMessage

func (*CheckDelegationRequest) ProtoMessage()

func (*CheckDelegationRequest) Reset

func (m *CheckDelegationRequest) Reset()

func (*CheckDelegationRequest) String

func (m *CheckDelegationRequest) String() string

func (*CheckDelegationRequest) XXX_DiscardUnknown

func (m *CheckDelegationRequest) XXX_DiscardUnknown()

func (*CheckDelegationRequest) XXX_Marshal

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

func (*CheckDelegationRequest) XXX_Merge

func (dst *CheckDelegationRequest) XXX_Merge(src proto.Message)

func (*CheckDelegationRequest) XXX_Size

func (m *CheckDelegationRequest) XXX_Size() int

func (*CheckDelegationRequest) XXX_Unmarshal

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

type CheckDelegationResponse

type CheckDelegationResponse struct {
	Amount               *types.BigUInt `protobuf:"bytes,1,opt,name=amount" json:"amount,omitempty"`
	WeightedAmount       *types.BigUInt `protobuf:"bytes,2,opt,name=weighted_amount,json=weightedAmount" json:"weighted_amount,omitempty"`
	Delegations          []*Delegation  `protobuf:"bytes,3,rep,name=delegations" json:"delegations,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*CheckDelegationResponse) Descriptor

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

func (*CheckDelegationResponse) GetAmount

func (m *CheckDelegationResponse) GetAmount() *types.BigUInt

func (*CheckDelegationResponse) GetDelegations

func (m *CheckDelegationResponse) GetDelegations() []*Delegation

func (*CheckDelegationResponse) GetWeightedAmount

func (m *CheckDelegationResponse) GetWeightedAmount() *types.BigUInt

func (*CheckDelegationResponse) ProtoMessage

func (*CheckDelegationResponse) ProtoMessage()

func (*CheckDelegationResponse) Reset

func (m *CheckDelegationResponse) Reset()

func (*CheckDelegationResponse) String

func (m *CheckDelegationResponse) String() string

func (*CheckDelegationResponse) XXX_DiscardUnknown

func (m *CheckDelegationResponse) XXX_DiscardUnknown()

func (*CheckDelegationResponse) XXX_Marshal

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

func (*CheckDelegationResponse) XXX_Merge

func (dst *CheckDelegationResponse) XXX_Merge(src proto.Message)

func (*CheckDelegationResponse) XXX_Size

func (m *CheckDelegationResponse) XXX_Size() int

func (*CheckDelegationResponse) XXX_Unmarshal

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

type CheckDelegatorRewardsRequest

type CheckDelegatorRewardsRequest struct {
	Delegator            *types.Address `protobuf:"bytes,1,opt,name=delegator" json:"delegator,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*CheckDelegatorRewardsRequest) Descriptor

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

func (*CheckDelegatorRewardsRequest) GetDelegator

func (m *CheckDelegatorRewardsRequest) GetDelegator() *types.Address

func (*CheckDelegatorRewardsRequest) ProtoMessage

func (*CheckDelegatorRewardsRequest) ProtoMessage()

func (*CheckDelegatorRewardsRequest) Reset

func (m *CheckDelegatorRewardsRequest) Reset()

func (*CheckDelegatorRewardsRequest) String

func (*CheckDelegatorRewardsRequest) XXX_DiscardUnknown

func (m *CheckDelegatorRewardsRequest) XXX_DiscardUnknown()

func (*CheckDelegatorRewardsRequest) XXX_Marshal

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

func (*CheckDelegatorRewardsRequest) XXX_Merge

func (dst *CheckDelegatorRewardsRequest) XXX_Merge(src proto.Message)

func (*CheckDelegatorRewardsRequest) XXX_Size

func (m *CheckDelegatorRewardsRequest) XXX_Size() int

func (*CheckDelegatorRewardsRequest) XXX_Unmarshal

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

type CheckDelegatorRewardsResponse

type CheckDelegatorRewardsResponse struct {
	Amount               *types.BigUInt `protobuf:"bytes,1,opt,name=amount" json:"amount,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*CheckDelegatorRewardsResponse) Descriptor

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

func (*CheckDelegatorRewardsResponse) GetAmount

func (*CheckDelegatorRewardsResponse) ProtoMessage

func (*CheckDelegatorRewardsResponse) ProtoMessage()

func (*CheckDelegatorRewardsResponse) Reset

func (m *CheckDelegatorRewardsResponse) Reset()

func (*CheckDelegatorRewardsResponse) String

func (*CheckDelegatorRewardsResponse) XXX_DiscardUnknown

func (m *CheckDelegatorRewardsResponse) XXX_DiscardUnknown()

func (*CheckDelegatorRewardsResponse) XXX_Marshal

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

func (*CheckDelegatorRewardsResponse) XXX_Merge

func (dst *CheckDelegatorRewardsResponse) XXX_Merge(src proto.Message)

func (*CheckDelegatorRewardsResponse) XXX_Size

func (m *CheckDelegatorRewardsResponse) XXX_Size() int

func (*CheckDelegatorRewardsResponse) XXX_Unmarshal

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

type CheckRewardDelegationRequest

type CheckRewardDelegationRequest struct {
	ValidatorAddress     *types.Address `protobuf:"bytes,1,opt,name=validator_address,json=validatorAddress" json:"validator_address,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*CheckRewardDelegationRequest) Descriptor

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

func (*CheckRewardDelegationRequest) GetValidatorAddress

func (m *CheckRewardDelegationRequest) GetValidatorAddress() *types.Address

func (*CheckRewardDelegationRequest) ProtoMessage

func (*CheckRewardDelegationRequest) ProtoMessage()

func (*CheckRewardDelegationRequest) Reset

func (m *CheckRewardDelegationRequest) Reset()

func (*CheckRewardDelegationRequest) String

func (*CheckRewardDelegationRequest) XXX_DiscardUnknown

func (m *CheckRewardDelegationRequest) XXX_DiscardUnknown()

func (*CheckRewardDelegationRequest) XXX_Marshal

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

func (*CheckRewardDelegationRequest) XXX_Merge

func (dst *CheckRewardDelegationRequest) XXX_Merge(src proto.Message)

func (*CheckRewardDelegationRequest) XXX_Size

func (m *CheckRewardDelegationRequest) XXX_Size() int

func (*CheckRewardDelegationRequest) XXX_Unmarshal

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

type CheckRewardDelegationResponse

type CheckRewardDelegationResponse struct {
	Delegation           *Delegation `protobuf:"bytes,1,opt,name=delegation" json:"delegation,omitempty"`
	XXX_NoUnkeyedLiteral struct{}    `json:"-"`
	XXX_unrecognized     []byte      `json:"-"`
	XXX_sizecache        int32       `json:"-"`
}

func (*CheckRewardDelegationResponse) Descriptor

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

func (*CheckRewardDelegationResponse) GetDelegation

func (m *CheckRewardDelegationResponse) GetDelegation() *Delegation

func (*CheckRewardDelegationResponse) ProtoMessage

func (*CheckRewardDelegationResponse) ProtoMessage()

func (*CheckRewardDelegationResponse) Reset

func (m *CheckRewardDelegationResponse) Reset()

func (*CheckRewardDelegationResponse) String

func (*CheckRewardDelegationResponse) XXX_DiscardUnknown

func (m *CheckRewardDelegationResponse) XXX_DiscardUnknown()

func (*CheckRewardDelegationResponse) XXX_Marshal

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

func (*CheckRewardDelegationResponse) XXX_Merge

func (dst *CheckRewardDelegationResponse) XXX_Merge(src proto.Message)

func (*CheckRewardDelegationResponse) XXX_Size

func (m *CheckRewardDelegationResponse) XXX_Size() int

func (*CheckRewardDelegationResponse) XXX_Unmarshal

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

type CheckRewardsRequest

type CheckRewardsRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CheckRewardsRequest) Descriptor

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

func (*CheckRewardsRequest) ProtoMessage

func (*CheckRewardsRequest) ProtoMessage()

func (*CheckRewardsRequest) Reset

func (m *CheckRewardsRequest) Reset()

func (*CheckRewardsRequest) String

func (m *CheckRewardsRequest) String() string

func (*CheckRewardsRequest) XXX_DiscardUnknown

func (m *CheckRewardsRequest) XXX_DiscardUnknown()

func (*CheckRewardsRequest) XXX_Marshal

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

func (*CheckRewardsRequest) XXX_Merge

func (dst *CheckRewardsRequest) XXX_Merge(src proto.Message)

func (*CheckRewardsRequest) XXX_Size

func (m *CheckRewardsRequest) XXX_Size() int

func (*CheckRewardsRequest) XXX_Unmarshal

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

type CheckRewardsResponse

type CheckRewardsResponse struct {
	TotalRewardDistribution *types.BigUInt `protobuf:"bytes,1,opt,name=total_reward_distribution,json=totalRewardDistribution" json:"total_reward_distribution,omitempty"`
	XXX_NoUnkeyedLiteral    struct{}       `json:"-"`
	XXX_unrecognized        []byte         `json:"-"`
	XXX_sizecache           int32          `json:"-"`
}

func (*CheckRewardsResponse) Descriptor

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

func (*CheckRewardsResponse) GetTotalRewardDistribution

func (m *CheckRewardsResponse) GetTotalRewardDistribution() *types.BigUInt

func (*CheckRewardsResponse) ProtoMessage

func (*CheckRewardsResponse) ProtoMessage()

func (*CheckRewardsResponse) Reset

func (m *CheckRewardsResponse) Reset()

func (*CheckRewardsResponse) String

func (m *CheckRewardsResponse) String() string

func (*CheckRewardsResponse) XXX_DiscardUnknown

func (m *CheckRewardsResponse) XXX_DiscardUnknown()

func (*CheckRewardsResponse) XXX_Marshal

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

func (*CheckRewardsResponse) XXX_Merge

func (dst *CheckRewardsResponse) XXX_Merge(src proto.Message)

func (*CheckRewardsResponse) XXX_Size

func (m *CheckRewardsResponse) XXX_Size() int

func (*CheckRewardsResponse) XXX_Unmarshal

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

type ClaimDelegatorRewardsRequest

type ClaimDelegatorRewardsRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ClaimDelegatorRewardsRequest) Descriptor

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

func (*ClaimDelegatorRewardsRequest) ProtoMessage

func (*ClaimDelegatorRewardsRequest) ProtoMessage()

func (*ClaimDelegatorRewardsRequest) Reset

func (m *ClaimDelegatorRewardsRequest) Reset()

func (*ClaimDelegatorRewardsRequest) String

func (*ClaimDelegatorRewardsRequest) XXX_DiscardUnknown

func (m *ClaimDelegatorRewardsRequest) XXX_DiscardUnknown()

func (*ClaimDelegatorRewardsRequest) XXX_Marshal

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

func (*ClaimDelegatorRewardsRequest) XXX_Merge

func (dst *ClaimDelegatorRewardsRequest) XXX_Merge(src proto.Message)

func (*ClaimDelegatorRewardsRequest) XXX_Size

func (m *ClaimDelegatorRewardsRequest) XXX_Size() int

func (*ClaimDelegatorRewardsRequest) XXX_Unmarshal

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

type ClaimDelegatorRewardsResponse

type ClaimDelegatorRewardsResponse struct {
	Amount               *types.BigUInt `protobuf:"bytes,1,opt,name=amount" json:"amount,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*ClaimDelegatorRewardsResponse) Descriptor

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

func (*ClaimDelegatorRewardsResponse) GetAmount

func (*ClaimDelegatorRewardsResponse) ProtoMessage

func (*ClaimDelegatorRewardsResponse) ProtoMessage()

func (*ClaimDelegatorRewardsResponse) Reset

func (m *ClaimDelegatorRewardsResponse) Reset()

func (*ClaimDelegatorRewardsResponse) String

func (*ClaimDelegatorRewardsResponse) XXX_DiscardUnknown

func (m *ClaimDelegatorRewardsResponse) XXX_DiscardUnknown()

func (*ClaimDelegatorRewardsResponse) XXX_Marshal

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

func (*ClaimDelegatorRewardsResponse) XXX_Merge

func (dst *ClaimDelegatorRewardsResponse) XXX_Merge(src proto.Message)

func (*ClaimDelegatorRewardsResponse) XXX_Size

func (m *ClaimDelegatorRewardsResponse) XXX_Size() int

func (*ClaimDelegatorRewardsResponse) XXX_Unmarshal

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

type ConsolidateDelegationsRequest

type ConsolidateDelegationsRequest struct {
	ValidatorAddress     *types.Address `protobuf:"bytes,1,opt,name=validator_address,json=validatorAddress" json:"validator_address,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*ConsolidateDelegationsRequest) Descriptor

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

func (*ConsolidateDelegationsRequest) GetValidatorAddress

func (m *ConsolidateDelegationsRequest) GetValidatorAddress() *types.Address

func (*ConsolidateDelegationsRequest) ProtoMessage

func (*ConsolidateDelegationsRequest) ProtoMessage()

func (*ConsolidateDelegationsRequest) Reset

func (m *ConsolidateDelegationsRequest) Reset()

func (*ConsolidateDelegationsRequest) String

func (*ConsolidateDelegationsRequest) XXX_DiscardUnknown

func (m *ConsolidateDelegationsRequest) XXX_DiscardUnknown()

func (*ConsolidateDelegationsRequest) XXX_Marshal

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

func (*ConsolidateDelegationsRequest) XXX_Merge

func (dst *ConsolidateDelegationsRequest) XXX_Merge(src proto.Message)

func (*ConsolidateDelegationsRequest) XXX_Size

func (m *ConsolidateDelegationsRequest) XXX_Size() int

func (*ConsolidateDelegationsRequest) XXX_Unmarshal

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

type DPOSInitRequest

type DPOSInitRequest struct {
	Params               *Params            `protobuf:"bytes,1,opt,name=params" json:"params,omitempty"`
	Validators           []*types.Validator `protobuf:"bytes,2,rep,name=validators" json:"validators,omitempty"`
	InitCandidates       bool               `protobuf:"varint,3,opt,name=init_candidates,json=initCandidates,proto3" json:"init_candidates,omitempty"`
	XXX_NoUnkeyedLiteral struct{}           `json:"-"`
	XXX_unrecognized     []byte             `json:"-"`
	XXX_sizecache        int32              `json:"-"`
}

func (*DPOSInitRequest) Descriptor

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

func (*DPOSInitRequest) GetInitCandidates

func (m *DPOSInitRequest) GetInitCandidates() bool

func (*DPOSInitRequest) GetParams

func (m *DPOSInitRequest) GetParams() *Params

func (*DPOSInitRequest) GetValidators

func (m *DPOSInitRequest) GetValidators() []*types.Validator

func (*DPOSInitRequest) ProtoMessage

func (*DPOSInitRequest) ProtoMessage()

func (*DPOSInitRequest) Reset

func (m *DPOSInitRequest) Reset()

func (*DPOSInitRequest) String

func (m *DPOSInitRequest) String() string

func (*DPOSInitRequest) XXX_DiscardUnknown

func (m *DPOSInitRequest) XXX_DiscardUnknown()

func (*DPOSInitRequest) XXX_Marshal

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

func (*DPOSInitRequest) XXX_Merge

func (dst *DPOSInitRequest) XXX_Merge(src proto.Message)

func (*DPOSInitRequest) XXX_Size

func (m *DPOSInitRequest) XXX_Size() int

func (*DPOSInitRequest) XXX_Unmarshal

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

type DelegateRequest

type DelegateRequest struct {
	ValidatorAddress     *types.Address `protobuf:"bytes,1,opt,name=validator_address,json=validatorAddress" json:"validator_address,omitempty"`
	Amount               *types.BigUInt `protobuf:"bytes,2,opt,name=amount" json:"amount,omitempty"`
	LocktimeTier         uint64         `protobuf:"varint,3,opt,name=locktime_tier,json=locktimeTier,proto3" json:"locktime_tier,omitempty"`
	Referrer             string         `protobuf:"bytes,4,opt,name=referrer,proto3" json:"referrer,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*DelegateRequest) Descriptor

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

func (*DelegateRequest) GetAmount

func (m *DelegateRequest) GetAmount() *types.BigUInt

func (*DelegateRequest) GetLocktimeTier

func (m *DelegateRequest) GetLocktimeTier() uint64

func (*DelegateRequest) GetReferrer

func (m *DelegateRequest) GetReferrer() string

func (*DelegateRequest) GetValidatorAddress

func (m *DelegateRequest) GetValidatorAddress() *types.Address

func (*DelegateRequest) ProtoMessage

func (*DelegateRequest) ProtoMessage()

func (*DelegateRequest) Reset

func (m *DelegateRequest) Reset()

func (*DelegateRequest) String

func (m *DelegateRequest) String() string

func (*DelegateRequest) XXX_DiscardUnknown

func (m *DelegateRequest) XXX_DiscardUnknown()

func (*DelegateRequest) XXX_Marshal

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

func (*DelegateRequest) XXX_Merge

func (dst *DelegateRequest) XXX_Merge(src proto.Message)

func (*DelegateRequest) XXX_Size

func (m *DelegateRequest) XXX_Size() int

func (*DelegateRequest) XXX_Unmarshal

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

type Delegation

type Delegation struct {
	Delegator            *types.Address             `protobuf:"bytes,1,opt,name=delegator" json:"delegator,omitempty"`
	Validator            *types.Address             `protobuf:"bytes,2,opt,name=validator" json:"validator,omitempty"`
	UpdateValidator      *types.Address             `protobuf:"bytes,3,opt,name=update_validator,json=updateValidator" json:"update_validator,omitempty"`
	Index                uint64                     `protobuf:"varint,4,opt,name=index,proto3" json:"index,omitempty"`
	Amount               *types.BigUInt             `protobuf:"bytes,6,opt,name=amount" json:"amount,omitempty"`
	UpdateAmount         *types.BigUInt             `protobuf:"bytes,7,opt,name=update_amount,json=updateAmount" json:"update_amount,omitempty"`
	LocktimeTier         LocktimeTier               `protobuf:"varint,8,opt,name=locktime_tier,json=locktimeTier,proto3,enum=dposv3.LocktimeTier" json:"locktime_tier,omitempty"`
	UpdateLocktimeTier   LocktimeTier               `` /* 143-byte string literal not displayed */
	LockTime             uint64                     `protobuf:"varint,10,opt,name=lock_time,json=lockTime,proto3" json:"lock_time,omitempty"`
	State                Delegation_DelegationState `protobuf:"varint,11,opt,name=state,proto3,enum=dposv3.Delegation_DelegationState" json:"state,omitempty"`
	Referrer             string                     `protobuf:"bytes,12,opt,name=referrer,proto3" json:"referrer,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
}

func (*Delegation) Descriptor

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

func (*Delegation) GetAmount

func (m *Delegation) GetAmount() *types.BigUInt

func (*Delegation) GetDelegator

func (m *Delegation) GetDelegator() *types.Address

func (*Delegation) GetIndex

func (m *Delegation) GetIndex() uint64

func (*Delegation) GetLockTime

func (m *Delegation) GetLockTime() uint64

func (*Delegation) GetLocktimeTier

func (m *Delegation) GetLocktimeTier() LocktimeTier

func (*Delegation) GetReferrer

func (m *Delegation) GetReferrer() string

func (*Delegation) GetState

func (m *Delegation) GetState() Delegation_DelegationState

func (*Delegation) GetUpdateAmount

func (m *Delegation) GetUpdateAmount() *types.BigUInt

func (*Delegation) GetUpdateLocktimeTier

func (m *Delegation) GetUpdateLocktimeTier() LocktimeTier

func (*Delegation) GetUpdateValidator

func (m *Delegation) GetUpdateValidator() *types.Address

func (*Delegation) GetValidator

func (m *Delegation) GetValidator() *types.Address

func (*Delegation) ProtoMessage

func (*Delegation) ProtoMessage()

func (*Delegation) Reset

func (m *Delegation) Reset()

func (*Delegation) String

func (m *Delegation) String() string

func (*Delegation) XXX_DiscardUnknown

func (m *Delegation) XXX_DiscardUnknown()

func (*Delegation) XXX_Marshal

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

func (*Delegation) XXX_Merge

func (dst *Delegation) XXX_Merge(src proto.Message)

func (*Delegation) XXX_Size

func (m *Delegation) XXX_Size() int

func (*Delegation) XXX_Unmarshal

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

type DelegationIndex

type DelegationIndex struct {
	Validator            *types.Address `protobuf:"bytes,1,opt,name=validator" json:"validator,omitempty"`
	Delegator            *types.Address `protobuf:"bytes,2,opt,name=delegator" json:"delegator,omitempty"`
	Index                uint64         `protobuf:"varint,3,opt,name=index,proto3" json:"index,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*DelegationIndex) Descriptor

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

func (*DelegationIndex) GetDelegator

func (m *DelegationIndex) GetDelegator() *types.Address

func (*DelegationIndex) GetIndex

func (m *DelegationIndex) GetIndex() uint64

func (*DelegationIndex) GetValidator

func (m *DelegationIndex) GetValidator() *types.Address

func (*DelegationIndex) ProtoMessage

func (*DelegationIndex) ProtoMessage()

func (*DelegationIndex) Reset

func (m *DelegationIndex) Reset()

func (*DelegationIndex) String

func (m *DelegationIndex) String() string

func (*DelegationIndex) XXX_DiscardUnknown

func (m *DelegationIndex) XXX_DiscardUnknown()

func (*DelegationIndex) XXX_Marshal

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

func (*DelegationIndex) XXX_Merge

func (dst *DelegationIndex) XXX_Merge(src proto.Message)

func (*DelegationIndex) XXX_Size

func (m *DelegationIndex) XXX_Size() int

func (*DelegationIndex) XXX_Unmarshal

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

type DelegationList

type DelegationList struct {
	Delegations          []*DelegationIndex `protobuf:"bytes,1,rep,name=delegations" json:"delegations,omitempty"`
	XXX_NoUnkeyedLiteral struct{}           `json:"-"`
	XXX_unrecognized     []byte             `json:"-"`
	XXX_sizecache        int32              `json:"-"`
}

func (*DelegationList) Descriptor

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

func (*DelegationList) GetDelegations

func (m *DelegationList) GetDelegations() []*DelegationIndex

func (*DelegationList) ProtoMessage

func (*DelegationList) ProtoMessage()

func (*DelegationList) Reset

func (m *DelegationList) Reset()

func (*DelegationList) String

func (m *DelegationList) String() string

func (*DelegationList) XXX_DiscardUnknown

func (m *DelegationList) XXX_DiscardUnknown()

func (*DelegationList) XXX_Marshal

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

func (*DelegationList) XXX_Merge

func (dst *DelegationList) XXX_Merge(src proto.Message)

func (*DelegationList) XXX_Size

func (m *DelegationList) XXX_Size() int

func (*DelegationList) XXX_Unmarshal

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

type Delegation_DelegationState

type Delegation_DelegationState int32
const (
	Delegation_BONDING      Delegation_DelegationState = 0
	Delegation_BONDED       Delegation_DelegationState = 1
	Delegation_UNBONDING    Delegation_DelegationState = 2
	Delegation_REDELEGATING Delegation_DelegationState = 3
)

func (Delegation_DelegationState) EnumDescriptor

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

func (Delegation_DelegationState) String

type DowntimeRecord

type DowntimeRecord struct {
	Validator            *types.Address `protobuf:"bytes,1,opt,name=validator" json:"validator,omitempty"`
	Periods              []uint64       `protobuf:"varint,2,rep,packed,name=periods" json:"periods,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*DowntimeRecord) Descriptor

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

func (*DowntimeRecord) GetPeriods

func (m *DowntimeRecord) GetPeriods() []uint64

func (*DowntimeRecord) GetValidator

func (m *DowntimeRecord) GetValidator() *types.Address

func (*DowntimeRecord) ProtoMessage

func (*DowntimeRecord) ProtoMessage()

func (*DowntimeRecord) Reset

func (m *DowntimeRecord) Reset()

func (*DowntimeRecord) String

func (m *DowntimeRecord) String() string

func (*DowntimeRecord) XXX_DiscardUnknown

func (m *DowntimeRecord) XXX_DiscardUnknown()

func (*DowntimeRecord) XXX_Marshal

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

func (*DowntimeRecord) XXX_Merge

func (dst *DowntimeRecord) XXX_Merge(src proto.Message)

func (*DowntimeRecord) XXX_Size

func (m *DowntimeRecord) XXX_Size() int

func (*DowntimeRecord) XXX_Unmarshal

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

type DowntimeRecordRequest

type DowntimeRecordRequest struct {
	Validator            *types.Address `protobuf:"bytes,1,opt,name=validator" json:"validator,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*DowntimeRecordRequest) Descriptor

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

func (*DowntimeRecordRequest) GetValidator

func (m *DowntimeRecordRequest) GetValidator() *types.Address

func (*DowntimeRecordRequest) ProtoMessage

func (*DowntimeRecordRequest) ProtoMessage()

func (*DowntimeRecordRequest) Reset

func (m *DowntimeRecordRequest) Reset()

func (*DowntimeRecordRequest) String

func (m *DowntimeRecordRequest) String() string

func (*DowntimeRecordRequest) XXX_DiscardUnknown

func (m *DowntimeRecordRequest) XXX_DiscardUnknown()

func (*DowntimeRecordRequest) XXX_Marshal

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

func (*DowntimeRecordRequest) XXX_Merge

func (dst *DowntimeRecordRequest) XXX_Merge(src proto.Message)

func (*DowntimeRecordRequest) XXX_Size

func (m *DowntimeRecordRequest) XXX_Size() int

func (*DowntimeRecordRequest) XXX_Unmarshal

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

type DowntimeRecordResponse

type DowntimeRecordResponse struct {
	DowntimeRecords      []*DowntimeRecord `protobuf:"bytes,1,rep,name=downtime_records,json=downtimeRecords" json:"downtime_records,omitempty"`
	PeriodLength         uint64            `protobuf:"varint,2,opt,name=period_length,json=periodLength,proto3" json:"period_length,omitempty"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*DowntimeRecordResponse) Descriptor

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

func (*DowntimeRecordResponse) GetDowntimeRecords

func (m *DowntimeRecordResponse) GetDowntimeRecords() []*DowntimeRecord

func (*DowntimeRecordResponse) GetPeriodLength

func (m *DowntimeRecordResponse) GetPeriodLength() uint64

func (*DowntimeRecordResponse) ProtoMessage

func (*DowntimeRecordResponse) ProtoMessage()

func (*DowntimeRecordResponse) Reset

func (m *DowntimeRecordResponse) Reset()

func (*DowntimeRecordResponse) String

func (m *DowntimeRecordResponse) String() string

func (*DowntimeRecordResponse) XXX_DiscardUnknown

func (m *DowntimeRecordResponse) XXX_DiscardUnknown()

func (*DowntimeRecordResponse) XXX_Marshal

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

func (*DowntimeRecordResponse) XXX_Merge

func (dst *DowntimeRecordResponse) XXX_Merge(src proto.Message)

func (*DowntimeRecordResponse) XXX_Size

func (m *DowntimeRecordResponse) XXX_Size() int

func (*DowntimeRecordResponse) XXX_Unmarshal

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

type DposCandidateFeeChangeEvent

type DposCandidateFeeChangeEvent struct {
	Address              *types.Address `protobuf:"bytes,1,opt,name=address" json:"address,omitempty"`
	NewFee               uint64         `protobuf:"varint,2,opt,name=new_fee,json=newFee,proto3" json:"new_fee,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*DposCandidateFeeChangeEvent) Descriptor

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

func (*DposCandidateFeeChangeEvent) GetAddress

func (m *DposCandidateFeeChangeEvent) GetAddress() *types.Address

func (*DposCandidateFeeChangeEvent) GetNewFee

func (m *DposCandidateFeeChangeEvent) GetNewFee() uint64

func (*DposCandidateFeeChangeEvent) ProtoMessage

func (*DposCandidateFeeChangeEvent) ProtoMessage()

func (*DposCandidateFeeChangeEvent) Reset

func (m *DposCandidateFeeChangeEvent) Reset()

func (*DposCandidateFeeChangeEvent) String

func (m *DposCandidateFeeChangeEvent) String() string

func (*DposCandidateFeeChangeEvent) XXX_DiscardUnknown

func (m *DposCandidateFeeChangeEvent) XXX_DiscardUnknown()

func (*DposCandidateFeeChangeEvent) XXX_Marshal

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

func (*DposCandidateFeeChangeEvent) XXX_Merge

func (dst *DposCandidateFeeChangeEvent) XXX_Merge(src proto.Message)

func (*DposCandidateFeeChangeEvent) XXX_Size

func (m *DposCandidateFeeChangeEvent) XXX_Size() int

func (*DposCandidateFeeChangeEvent) XXX_Unmarshal

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

type DposCandidateRegistersEvent

type DposCandidateRegistersEvent struct {
	Address              *types.Address `protobuf:"bytes,1,opt,name=address" json:"address,omitempty"`
	Fee                  uint64         `protobuf:"varint,2,opt,name=fee,proto3" json:"fee,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*DposCandidateRegistersEvent) Descriptor

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

func (*DposCandidateRegistersEvent) GetAddress

func (m *DposCandidateRegistersEvent) GetAddress() *types.Address

func (*DposCandidateRegistersEvent) GetFee

func (m *DposCandidateRegistersEvent) GetFee() uint64

func (*DposCandidateRegistersEvent) ProtoMessage

func (*DposCandidateRegistersEvent) ProtoMessage()

func (*DposCandidateRegistersEvent) Reset

func (m *DposCandidateRegistersEvent) Reset()

func (*DposCandidateRegistersEvent) String

func (m *DposCandidateRegistersEvent) String() string

func (*DposCandidateRegistersEvent) XXX_DiscardUnknown

func (m *DposCandidateRegistersEvent) XXX_DiscardUnknown()

func (*DposCandidateRegistersEvent) XXX_Marshal

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

func (*DposCandidateRegistersEvent) XXX_Merge

func (dst *DposCandidateRegistersEvent) XXX_Merge(src proto.Message)

func (*DposCandidateRegistersEvent) XXX_Size

func (m *DposCandidateRegistersEvent) XXX_Size() int

func (*DposCandidateRegistersEvent) XXX_Unmarshal

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

type DposCandidateUnregistersEvent

type DposCandidateUnregistersEvent struct {
	Address              *types.Address `protobuf:"bytes,1,opt,name=address" json:"address,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*DposCandidateUnregistersEvent) Descriptor

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

func (*DposCandidateUnregistersEvent) GetAddress

func (m *DposCandidateUnregistersEvent) GetAddress() *types.Address

func (*DposCandidateUnregistersEvent) ProtoMessage

func (*DposCandidateUnregistersEvent) ProtoMessage()

func (*DposCandidateUnregistersEvent) Reset

func (m *DposCandidateUnregistersEvent) Reset()

func (*DposCandidateUnregistersEvent) String

func (*DposCandidateUnregistersEvent) XXX_DiscardUnknown

func (m *DposCandidateUnregistersEvent) XXX_DiscardUnknown()

func (*DposCandidateUnregistersEvent) XXX_Marshal

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

func (*DposCandidateUnregistersEvent) XXX_Merge

func (dst *DposCandidateUnregistersEvent) XXX_Merge(src proto.Message)

func (*DposCandidateUnregistersEvent) XXX_Size

func (m *DposCandidateUnregistersEvent) XXX_Size() int

func (*DposCandidateUnregistersEvent) XXX_Unmarshal

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

type DposDelegatorClaimsRewardsEvent

type DposDelegatorClaimsRewardsEvent struct {
	Delegator            *types.Address   `protobuf:"bytes,1,opt,name=delegator" json:"delegator,omitempty"`
	Validators           []*types.Address `protobuf:"bytes,2,rep,name=validators" json:"validators,omitempty"`
	Amounts              []*types.BigUInt `protobuf:"bytes,3,rep,name=amounts" json:"amounts,omitempty"`
	TotalRewardsClaimed  *types.BigUInt   `protobuf:"bytes,4,opt,name=total_rewards_claimed,json=totalRewardsClaimed" json:"total_rewards_claimed,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

func (*DposDelegatorClaimsRewardsEvent) Descriptor

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

func (*DposDelegatorClaimsRewardsEvent) GetAmounts

func (m *DposDelegatorClaimsRewardsEvent) GetAmounts() []*types.BigUInt

func (*DposDelegatorClaimsRewardsEvent) GetDelegator

func (m *DposDelegatorClaimsRewardsEvent) GetDelegator() *types.Address

func (*DposDelegatorClaimsRewardsEvent) GetTotalRewardsClaimed

func (m *DposDelegatorClaimsRewardsEvent) GetTotalRewardsClaimed() *types.BigUInt

func (*DposDelegatorClaimsRewardsEvent) GetValidators

func (m *DposDelegatorClaimsRewardsEvent) GetValidators() []*types.Address

func (*DposDelegatorClaimsRewardsEvent) ProtoMessage

func (*DposDelegatorClaimsRewardsEvent) ProtoMessage()

func (*DposDelegatorClaimsRewardsEvent) Reset

func (*DposDelegatorClaimsRewardsEvent) String

func (*DposDelegatorClaimsRewardsEvent) XXX_DiscardUnknown

func (m *DposDelegatorClaimsRewardsEvent) XXX_DiscardUnknown()

func (*DposDelegatorClaimsRewardsEvent) XXX_Marshal

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

func (*DposDelegatorClaimsRewardsEvent) XXX_Merge

func (dst *DposDelegatorClaimsRewardsEvent) XXX_Merge(src proto.Message)

func (*DposDelegatorClaimsRewardsEvent) XXX_Size

func (m *DposDelegatorClaimsRewardsEvent) XXX_Size() int

func (*DposDelegatorClaimsRewardsEvent) XXX_Unmarshal

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

type DposDelegatorConsolidatesEvent

type DposDelegatorConsolidatesEvent struct {
	NewDelegation                  *Delegation   `protobuf:"bytes,1,opt,name=new_delegation,json=newDelegation" json:"new_delegation,omitempty"`
	ConsolidatedDelegations        []*Delegation `protobuf:"bytes,2,rep,name=consolidated_delegations,json=consolidatedDelegations" json:"consolidated_delegations,omitempty"`
	UnconsolidatedDelegationsCount int64         `` /* 154-byte string literal not displayed */
	XXX_NoUnkeyedLiteral           struct{}      `json:"-"`
	XXX_unrecognized               []byte        `json:"-"`
	XXX_sizecache                  int32         `json:"-"`
}

func (*DposDelegatorConsolidatesEvent) Descriptor

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

func (*DposDelegatorConsolidatesEvent) GetConsolidatedDelegations

func (m *DposDelegatorConsolidatesEvent) GetConsolidatedDelegations() []*Delegation

func (*DposDelegatorConsolidatesEvent) GetNewDelegation

func (m *DposDelegatorConsolidatesEvent) GetNewDelegation() *Delegation

func (*DposDelegatorConsolidatesEvent) GetUnconsolidatedDelegationsCount

func (m *DposDelegatorConsolidatesEvent) GetUnconsolidatedDelegationsCount() int64

func (*DposDelegatorConsolidatesEvent) ProtoMessage

func (*DposDelegatorConsolidatesEvent) ProtoMessage()

func (*DposDelegatorConsolidatesEvent) Reset

func (m *DposDelegatorConsolidatesEvent) Reset()

func (*DposDelegatorConsolidatesEvent) String

func (*DposDelegatorConsolidatesEvent) XXX_DiscardUnknown

func (m *DposDelegatorConsolidatesEvent) XXX_DiscardUnknown()

func (*DposDelegatorConsolidatesEvent) XXX_Marshal

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

func (*DposDelegatorConsolidatesEvent) XXX_Merge

func (dst *DposDelegatorConsolidatesEvent) XXX_Merge(src proto.Message)

func (*DposDelegatorConsolidatesEvent) XXX_Size

func (m *DposDelegatorConsolidatesEvent) XXX_Size() int

func (*DposDelegatorConsolidatesEvent) XXX_Unmarshal

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

type DposDelegatorDelegatesEvent

type DposDelegatorDelegatesEvent struct {
	Delegation           *Delegation `protobuf:"bytes,1,opt,name=delegation" json:"delegation,omitempty"`
	XXX_NoUnkeyedLiteral struct{}    `json:"-"`
	XXX_unrecognized     []byte      `json:"-"`
	XXX_sizecache        int32       `json:"-"`
}

func (*DposDelegatorDelegatesEvent) Descriptor

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

func (*DposDelegatorDelegatesEvent) GetDelegation

func (m *DposDelegatorDelegatesEvent) GetDelegation() *Delegation

func (*DposDelegatorDelegatesEvent) ProtoMessage

func (*DposDelegatorDelegatesEvent) ProtoMessage()

func (*DposDelegatorDelegatesEvent) Reset

func (m *DposDelegatorDelegatesEvent) Reset()

func (*DposDelegatorDelegatesEvent) String

func (m *DposDelegatorDelegatesEvent) String() string

func (*DposDelegatorDelegatesEvent) XXX_DiscardUnknown

func (m *DposDelegatorDelegatesEvent) XXX_DiscardUnknown()

func (*DposDelegatorDelegatesEvent) XXX_Marshal

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

func (*DposDelegatorDelegatesEvent) XXX_Merge

func (dst *DposDelegatorDelegatesEvent) XXX_Merge(src proto.Message)

func (*DposDelegatorDelegatesEvent) XXX_Size

func (m *DposDelegatorDelegatesEvent) XXX_Size() int

func (*DposDelegatorDelegatesEvent) XXX_Unmarshal

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

type DposDelegatorRedelegatesEvent

type DposDelegatorRedelegatesEvent struct {
	Delegation           *Delegation `protobuf:"bytes,1,opt,name=delegation" json:"delegation,omitempty"`
	XXX_NoUnkeyedLiteral struct{}    `json:"-"`
	XXX_unrecognized     []byte      `json:"-"`
	XXX_sizecache        int32       `json:"-"`
}

func (*DposDelegatorRedelegatesEvent) Descriptor

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

func (*DposDelegatorRedelegatesEvent) GetDelegation

func (m *DposDelegatorRedelegatesEvent) GetDelegation() *Delegation

func (*DposDelegatorRedelegatesEvent) ProtoMessage

func (*DposDelegatorRedelegatesEvent) ProtoMessage()

func (*DposDelegatorRedelegatesEvent) Reset

func (m *DposDelegatorRedelegatesEvent) Reset()

func (*DposDelegatorRedelegatesEvent) String

func (*DposDelegatorRedelegatesEvent) XXX_DiscardUnknown

func (m *DposDelegatorRedelegatesEvent) XXX_DiscardUnknown()

func (*DposDelegatorRedelegatesEvent) XXX_Marshal

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

func (*DposDelegatorRedelegatesEvent) XXX_Merge

func (dst *DposDelegatorRedelegatesEvent) XXX_Merge(src proto.Message)

func (*DposDelegatorRedelegatesEvent) XXX_Size

func (m *DposDelegatorRedelegatesEvent) XXX_Size() int

func (*DposDelegatorRedelegatesEvent) XXX_Unmarshal

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

type DposDelegatorUnbondsEvent

type DposDelegatorUnbondsEvent struct {
	Delegation           *Delegation `protobuf:"bytes,1,opt,name=delegation" json:"delegation,omitempty"`
	XXX_NoUnkeyedLiteral struct{}    `json:"-"`
	XXX_unrecognized     []byte      `json:"-"`
	XXX_sizecache        int32       `json:"-"`
}

func (*DposDelegatorUnbondsEvent) Descriptor

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

func (*DposDelegatorUnbondsEvent) GetDelegation

func (m *DposDelegatorUnbondsEvent) GetDelegation() *Delegation

func (*DposDelegatorUnbondsEvent) ProtoMessage

func (*DposDelegatorUnbondsEvent) ProtoMessage()

func (*DposDelegatorUnbondsEvent) Reset

func (m *DposDelegatorUnbondsEvent) Reset()

func (*DposDelegatorUnbondsEvent) String

func (m *DposDelegatorUnbondsEvent) String() string

func (*DposDelegatorUnbondsEvent) XXX_DiscardUnknown

func (m *DposDelegatorUnbondsEvent) XXX_DiscardUnknown()

func (*DposDelegatorUnbondsEvent) XXX_Marshal

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

func (*DposDelegatorUnbondsEvent) XXX_Merge

func (dst *DposDelegatorUnbondsEvent) XXX_Merge(src proto.Message)

func (*DposDelegatorUnbondsEvent) XXX_Size

func (m *DposDelegatorUnbondsEvent) XXX_Size() int

func (*DposDelegatorUnbondsEvent) XXX_Unmarshal

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

type DposElectionEvent

type DposElectionEvent struct {
	BlockNumber          uint64   `protobuf:"varint,1,opt,name=block_number,json=blockNumber,proto3" json:"block_number,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DposElectionEvent) Descriptor

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

func (*DposElectionEvent) GetBlockNumber

func (m *DposElectionEvent) GetBlockNumber() uint64

func (*DposElectionEvent) ProtoMessage

func (*DposElectionEvent) ProtoMessage()

func (*DposElectionEvent) Reset

func (m *DposElectionEvent) Reset()

func (*DposElectionEvent) String

func (m *DposElectionEvent) String() string

func (*DposElectionEvent) XXX_DiscardUnknown

func (m *DposElectionEvent) XXX_DiscardUnknown()

func (*DposElectionEvent) XXX_Marshal

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

func (*DposElectionEvent) XXX_Merge

func (dst *DposElectionEvent) XXX_Merge(src proto.Message)

func (*DposElectionEvent) XXX_Size

func (m *DposElectionEvent) XXX_Size() int

func (*DposElectionEvent) XXX_Unmarshal

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

type DposJailEvent

type DposJailEvent struct {
	Validator            *types.Address `protobuf:"bytes,1,opt,name=validator" json:"validator,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*DposJailEvent) Descriptor

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

func (*DposJailEvent) GetValidator

func (m *DposJailEvent) GetValidator() *types.Address

func (*DposJailEvent) ProtoMessage

func (*DposJailEvent) ProtoMessage()

func (*DposJailEvent) Reset

func (m *DposJailEvent) Reset()

func (*DposJailEvent) String

func (m *DposJailEvent) String() string

func (*DposJailEvent) XXX_DiscardUnknown

func (m *DposJailEvent) XXX_DiscardUnknown()

func (*DposJailEvent) XXX_Marshal

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

func (*DposJailEvent) XXX_Merge

func (dst *DposJailEvent) XXX_Merge(src proto.Message)

func (*DposJailEvent) XXX_Size

func (m *DposJailEvent) XXX_Size() int

func (*DposJailEvent) XXX_Unmarshal

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

type DposReferrerRegistersEvent

type DposReferrerRegistersEvent struct {
	Name                 string         `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Address              *types.Address `protobuf:"bytes,2,opt,name=address" json:"address,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*DposReferrerRegistersEvent) Descriptor

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

func (*DposReferrerRegistersEvent) GetAddress

func (m *DposReferrerRegistersEvent) GetAddress() *types.Address

func (*DposReferrerRegistersEvent) GetName

func (m *DposReferrerRegistersEvent) GetName() string

func (*DposReferrerRegistersEvent) ProtoMessage

func (*DposReferrerRegistersEvent) ProtoMessage()

func (*DposReferrerRegistersEvent) Reset

func (m *DposReferrerRegistersEvent) Reset()

func (*DposReferrerRegistersEvent) String

func (m *DposReferrerRegistersEvent) String() string

func (*DposReferrerRegistersEvent) XXX_DiscardUnknown

func (m *DposReferrerRegistersEvent) XXX_DiscardUnknown()

func (*DposReferrerRegistersEvent) XXX_Marshal

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

func (*DposReferrerRegistersEvent) XXX_Merge

func (dst *DposReferrerRegistersEvent) XXX_Merge(src proto.Message)

func (*DposReferrerRegistersEvent) XXX_Size

func (m *DposReferrerRegistersEvent) XXX_Size() int

func (*DposReferrerRegistersEvent) XXX_Unmarshal

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

type DposSlashDelegationEvent

type DposSlashDelegationEvent struct {
	Validator            *types.Address `protobuf:"bytes,1,opt,name=validator" json:"validator,omitempty"`
	Delegator            *types.Address `protobuf:"bytes,2,opt,name=delegator" json:"delegator,omitempty"`
	DelegationAmount     *types.BigUInt `protobuf:"bytes,3,opt,name=delegation_amount,json=delegationAmount" json:"delegation_amount,omitempty"`
	DelegationIndex      uint64         `protobuf:"varint,4,opt,name=delegation_index,json=delegationIndex,proto3" json:"delegation_index,omitempty"`
	SlashAmount          *types.BigUInt `protobuf:"bytes,5,opt,name=slash_amount,json=slashAmount" json:"slash_amount,omitempty"`
	SlashPercentage      *types.BigUInt `protobuf:"bytes,6,opt,name=slash_percentage,json=slashPercentage" json:"slash_percentage,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*DposSlashDelegationEvent) Descriptor

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

func (*DposSlashDelegationEvent) GetDelegationAmount

func (m *DposSlashDelegationEvent) GetDelegationAmount() *types.BigUInt

func (*DposSlashDelegationEvent) GetDelegationIndex

func (m *DposSlashDelegationEvent) GetDelegationIndex() uint64

func (*DposSlashDelegationEvent) GetDelegator

func (m *DposSlashDelegationEvent) GetDelegator() *types.Address

func (*DposSlashDelegationEvent) GetSlashAmount

func (m *DposSlashDelegationEvent) GetSlashAmount() *types.BigUInt

func (*DposSlashDelegationEvent) GetSlashPercentage

func (m *DposSlashDelegationEvent) GetSlashPercentage() *types.BigUInt

func (*DposSlashDelegationEvent) GetValidator

func (m *DposSlashDelegationEvent) GetValidator() *types.Address

func (*DposSlashDelegationEvent) ProtoMessage

func (*DposSlashDelegationEvent) ProtoMessage()

func (*DposSlashDelegationEvent) Reset

func (m *DposSlashDelegationEvent) Reset()

func (*DposSlashDelegationEvent) String

func (m *DposSlashDelegationEvent) String() string

func (*DposSlashDelegationEvent) XXX_DiscardUnknown

func (m *DposSlashDelegationEvent) XXX_DiscardUnknown()

func (*DposSlashDelegationEvent) XXX_Marshal

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

func (*DposSlashDelegationEvent) XXX_Merge

func (dst *DposSlashDelegationEvent) XXX_Merge(src proto.Message)

func (*DposSlashDelegationEvent) XXX_Size

func (m *DposSlashDelegationEvent) XXX_Size() int

func (*DposSlashDelegationEvent) XXX_Unmarshal

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

type DposSlashEvent

type DposSlashEvent struct {
	Validator            *types.Address `protobuf:"bytes,1,opt,name=validator" json:"validator,omitempty"`
	SlashPercentage      *types.BigUInt `protobuf:"bytes,2,opt,name=slash_percentage,json=slashPercentage" json:"slash_percentage,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*DposSlashEvent) Descriptor

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

func (*DposSlashEvent) GetSlashPercentage

func (m *DposSlashEvent) GetSlashPercentage() *types.BigUInt

func (*DposSlashEvent) GetValidator

func (m *DposSlashEvent) GetValidator() *types.Address

func (*DposSlashEvent) ProtoMessage

func (*DposSlashEvent) ProtoMessage()

func (*DposSlashEvent) Reset

func (m *DposSlashEvent) Reset()

func (*DposSlashEvent) String

func (m *DposSlashEvent) String() string

func (*DposSlashEvent) XXX_DiscardUnknown

func (m *DposSlashEvent) XXX_DiscardUnknown()

func (*DposSlashEvent) XXX_Marshal

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

func (*DposSlashEvent) XXX_Merge

func (dst *DposSlashEvent) XXX_Merge(src proto.Message)

func (*DposSlashEvent) XXX_Size

func (m *DposSlashEvent) XXX_Size() int

func (*DposSlashEvent) XXX_Unmarshal

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

type DposSlashWhitelistAmountEvent

type DposSlashWhitelistAmountEvent struct {
	Validator            *types.Address `protobuf:"bytes,1,opt,name=validator" json:"validator,omitempty"`
	WhitelistAmount      *types.BigUInt `protobuf:"bytes,2,opt,name=whitelist_amount,json=whitelistAmount" json:"whitelist_amount,omitempty"`
	SlashAmount          *types.BigUInt `protobuf:"bytes,3,opt,name=slash_amount,json=slashAmount" json:"slash_amount,omitempty"`
	SlashPercentage      *types.BigUInt `protobuf:"bytes,4,opt,name=slash_percentage,json=slashPercentage" json:"slash_percentage,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*DposSlashWhitelistAmountEvent) Descriptor

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

func (*DposSlashWhitelistAmountEvent) GetSlashAmount

func (m *DposSlashWhitelistAmountEvent) GetSlashAmount() *types.BigUInt

func (*DposSlashWhitelistAmountEvent) GetSlashPercentage

func (m *DposSlashWhitelistAmountEvent) GetSlashPercentage() *types.BigUInt

func (*DposSlashWhitelistAmountEvent) GetValidator

func (m *DposSlashWhitelistAmountEvent) GetValidator() *types.Address

func (*DposSlashWhitelistAmountEvent) GetWhitelistAmount

func (m *DposSlashWhitelistAmountEvent) GetWhitelistAmount() *types.BigUInt

func (*DposSlashWhitelistAmountEvent) ProtoMessage

func (*DposSlashWhitelistAmountEvent) ProtoMessage()

func (*DposSlashWhitelistAmountEvent) Reset

func (m *DposSlashWhitelistAmountEvent) Reset()

func (*DposSlashWhitelistAmountEvent) String

func (*DposSlashWhitelistAmountEvent) XXX_DiscardUnknown

func (m *DposSlashWhitelistAmountEvent) XXX_DiscardUnknown()

func (*DposSlashWhitelistAmountEvent) XXX_Marshal

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

func (*DposSlashWhitelistAmountEvent) XXX_Merge

func (dst *DposSlashWhitelistAmountEvent) XXX_Merge(src proto.Message)

func (*DposSlashWhitelistAmountEvent) XXX_Size

func (m *DposSlashWhitelistAmountEvent) XXX_Size() int

func (*DposSlashWhitelistAmountEvent) XXX_Unmarshal

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

type DposUnjailEvent

type DposUnjailEvent struct {
	Validator            *types.Address `protobuf:"bytes,1,opt,name=validator" json:"validator,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*DposUnjailEvent) Descriptor

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

func (*DposUnjailEvent) GetValidator

func (m *DposUnjailEvent) GetValidator() *types.Address

func (*DposUnjailEvent) ProtoMessage

func (*DposUnjailEvent) ProtoMessage()

func (*DposUnjailEvent) Reset

func (m *DposUnjailEvent) Reset()

func (*DposUnjailEvent) String

func (m *DposUnjailEvent) String() string

func (*DposUnjailEvent) XXX_DiscardUnknown

func (m *DposUnjailEvent) XXX_DiscardUnknown()

func (*DposUnjailEvent) XXX_Marshal

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

func (*DposUnjailEvent) XXX_Merge

func (dst *DposUnjailEvent) XXX_Merge(src proto.Message)

func (*DposUnjailEvent) XXX_Size

func (m *DposUnjailEvent) XXX_Size() int

func (*DposUnjailEvent) XXX_Unmarshal

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

type DposUpdateCandidateInfoEvent

type DposUpdateCandidateInfoEvent struct {
	Address              *types.Address `protobuf:"bytes,1,opt,name=address" json:"address,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*DposUpdateCandidateInfoEvent) Descriptor

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

func (*DposUpdateCandidateInfoEvent) GetAddress

func (m *DposUpdateCandidateInfoEvent) GetAddress() *types.Address

func (*DposUpdateCandidateInfoEvent) ProtoMessage

func (*DposUpdateCandidateInfoEvent) ProtoMessage()

func (*DposUpdateCandidateInfoEvent) Reset

func (m *DposUpdateCandidateInfoEvent) Reset()

func (*DposUpdateCandidateInfoEvent) String

func (*DposUpdateCandidateInfoEvent) XXX_DiscardUnknown

func (m *DposUpdateCandidateInfoEvent) XXX_DiscardUnknown()

func (*DposUpdateCandidateInfoEvent) XXX_Marshal

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

func (*DposUpdateCandidateInfoEvent) XXX_Merge

func (dst *DposUpdateCandidateInfoEvent) XXX_Merge(src proto.Message)

func (*DposUpdateCandidateInfoEvent) XXX_Size

func (m *DposUpdateCandidateInfoEvent) XXX_Size() int

func (*DposUpdateCandidateInfoEvent) XXX_Unmarshal

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

type EnableValidatorJailingRequest

type EnableValidatorJailingRequest struct {
	JailOfflineValidators bool     `` /* 127-byte string literal not displayed */
	XXX_NoUnkeyedLiteral  struct{} `json:"-"`
	XXX_unrecognized      []byte   `json:"-"`
	XXX_sizecache         int32    `json:"-"`
}

func (*EnableValidatorJailingRequest) Descriptor

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

func (*EnableValidatorJailingRequest) GetJailOfflineValidators

func (m *EnableValidatorJailingRequest) GetJailOfflineValidators() bool

func (*EnableValidatorJailingRequest) ProtoMessage

func (*EnableValidatorJailingRequest) ProtoMessage()

func (*EnableValidatorJailingRequest) Reset

func (m *EnableValidatorJailingRequest) Reset()

func (*EnableValidatorJailingRequest) String

func (*EnableValidatorJailingRequest) XXX_DiscardUnknown

func (m *EnableValidatorJailingRequest) XXX_DiscardUnknown()

func (*EnableValidatorJailingRequest) XXX_Marshal

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

func (*EnableValidatorJailingRequest) XXX_Merge

func (dst *EnableValidatorJailingRequest) XXX_Merge(src proto.Message)

func (*EnableValidatorJailingRequest) XXX_Size

func (m *EnableValidatorJailingRequest) XXX_Size() int

func (*EnableValidatorJailingRequest) XXX_Unmarshal

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

type GetRequestBatchTallyRequest

type GetRequestBatchTallyRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetRequestBatchTallyRequest) Descriptor

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

func (*GetRequestBatchTallyRequest) ProtoMessage

func (*GetRequestBatchTallyRequest) ProtoMessage()

func (*GetRequestBatchTallyRequest) Reset

func (m *GetRequestBatchTallyRequest) Reset()

func (*GetRequestBatchTallyRequest) String

func (m *GetRequestBatchTallyRequest) String() string

func (*GetRequestBatchTallyRequest) XXX_DiscardUnknown

func (m *GetRequestBatchTallyRequest) XXX_DiscardUnknown()

func (*GetRequestBatchTallyRequest) XXX_Marshal

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

func (*GetRequestBatchTallyRequest) XXX_Merge

func (dst *GetRequestBatchTallyRequest) XXX_Merge(src proto.Message)

func (*GetRequestBatchTallyRequest) XXX_Size

func (m *GetRequestBatchTallyRequest) XXX_Size() int

func (*GetRequestBatchTallyRequest) XXX_Unmarshal

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

type GetStateRequest

type GetStateRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetStateRequest) Descriptor

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

func (*GetStateRequest) ProtoMessage

func (*GetStateRequest) ProtoMessage()

func (*GetStateRequest) Reset

func (m *GetStateRequest) Reset()

func (*GetStateRequest) String

func (m *GetStateRequest) String() string

func (*GetStateRequest) XXX_DiscardUnknown

func (m *GetStateRequest) XXX_DiscardUnknown()

func (*GetStateRequest) XXX_Marshal

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

func (*GetStateRequest) XXX_Merge

func (dst *GetStateRequest) XXX_Merge(src proto.Message)

func (*GetStateRequest) XXX_Size

func (m *GetStateRequest) XXX_Size() int

func (*GetStateRequest) XXX_Unmarshal

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

type GetStateResponse

type GetStateResponse struct {
	State                *State   `protobuf:"bytes,1,opt,name=state" json:"state,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetStateResponse) Descriptor

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

func (*GetStateResponse) GetState

func (m *GetStateResponse) GetState() *State

func (*GetStateResponse) ProtoMessage

func (*GetStateResponse) ProtoMessage()

func (*GetStateResponse) Reset

func (m *GetStateResponse) Reset()

func (*GetStateResponse) String

func (m *GetStateResponse) String() string

func (*GetStateResponse) XXX_DiscardUnknown

func (m *GetStateResponse) XXX_DiscardUnknown()

func (*GetStateResponse) XXX_Marshal

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

func (*GetStateResponse) XXX_Merge

func (dst *GetStateResponse) XXX_Merge(src proto.Message)

func (*GetStateResponse) XXX_Size

func (m *GetStateResponse) XXX_Size() int

func (*GetStateResponse) XXX_Unmarshal

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

type IgnoreUnbondLocktimeRequest

type IgnoreUnbondLocktimeRequest struct {
	Ignore               bool     `protobuf:"varint,1,opt,name=ignore,proto3" json:"ignore,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*IgnoreUnbondLocktimeRequest) Descriptor

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

func (*IgnoreUnbondLocktimeRequest) GetIgnore

func (m *IgnoreUnbondLocktimeRequest) GetIgnore() bool

func (*IgnoreUnbondLocktimeRequest) ProtoMessage

func (*IgnoreUnbondLocktimeRequest) ProtoMessage()

func (*IgnoreUnbondLocktimeRequest) Reset

func (m *IgnoreUnbondLocktimeRequest) Reset()

func (*IgnoreUnbondLocktimeRequest) String

func (m *IgnoreUnbondLocktimeRequest) String() string

func (*IgnoreUnbondLocktimeRequest) XXX_DiscardUnknown

func (m *IgnoreUnbondLocktimeRequest) XXX_DiscardUnknown()

func (*IgnoreUnbondLocktimeRequest) XXX_Marshal

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

func (*IgnoreUnbondLocktimeRequest) XXX_Merge

func (dst *IgnoreUnbondLocktimeRequest) XXX_Merge(src proto.Message)

func (*IgnoreUnbondLocktimeRequest) XXX_Size

func (m *IgnoreUnbondLocktimeRequest) XXX_Size() int

func (*IgnoreUnbondLocktimeRequest) XXX_Unmarshal

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

type InitializationState

type InitializationState struct {
	State                *State                `protobuf:"bytes,1,opt,name=state" json:"state,omitempty"`
	Candidates           []*Candidate          `protobuf:"bytes,2,rep,name=candidates" json:"candidates,omitempty"`
	Delegations          []*Delegation         `protobuf:"bytes,3,rep,name=delegations" json:"delegations,omitempty"`
	Statistics           []*ValidatorStatistic `protobuf:"bytes,4,rep,name=statistics" json:"statistics,omitempty"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

func (*InitializationState) Descriptor

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

func (*InitializationState) GetCandidates

func (m *InitializationState) GetCandidates() []*Candidate

func (*InitializationState) GetDelegations

func (m *InitializationState) GetDelegations() []*Delegation

func (*InitializationState) GetState

func (m *InitializationState) GetState() *State

func (*InitializationState) GetStatistics

func (m *InitializationState) GetStatistics() []*ValidatorStatistic

func (*InitializationState) ProtoMessage

func (*InitializationState) ProtoMessage()

func (*InitializationState) Reset

func (m *InitializationState) Reset()

func (*InitializationState) String

func (m *InitializationState) String() string

func (*InitializationState) XXX_DiscardUnknown

func (m *InitializationState) XXX_DiscardUnknown()

func (*InitializationState) XXX_Marshal

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

func (*InitializationState) XXX_Merge

func (dst *InitializationState) XXX_Merge(src proto.Message)

func (*InitializationState) XXX_Size

func (m *InitializationState) XXX_Size() int

func (*InitializationState) XXX_Unmarshal

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

type ListAllDelegationsRequest

type ListAllDelegationsRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ListAllDelegationsRequest) Descriptor

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

func (*ListAllDelegationsRequest) ProtoMessage

func (*ListAllDelegationsRequest) ProtoMessage()

func (*ListAllDelegationsRequest) Reset

func (m *ListAllDelegationsRequest) Reset()

func (*ListAllDelegationsRequest) String

func (m *ListAllDelegationsRequest) String() string

func (*ListAllDelegationsRequest) XXX_DiscardUnknown

func (m *ListAllDelegationsRequest) XXX_DiscardUnknown()

func (*ListAllDelegationsRequest) XXX_Marshal

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

func (*ListAllDelegationsRequest) XXX_Merge

func (dst *ListAllDelegationsRequest) XXX_Merge(src proto.Message)

func (*ListAllDelegationsRequest) XXX_Size

func (m *ListAllDelegationsRequest) XXX_Size() int

func (*ListAllDelegationsRequest) XXX_Unmarshal

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

type ListAllDelegationsResponse

type ListAllDelegationsResponse struct {
	ListResponses        []*ListDelegationsResponse `protobuf:"bytes,1,rep,name=list_responses,json=listResponses" json:"list_responses,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
}

func (*ListAllDelegationsResponse) Descriptor

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

func (*ListAllDelegationsResponse) GetListResponses

func (m *ListAllDelegationsResponse) GetListResponses() []*ListDelegationsResponse

func (*ListAllDelegationsResponse) ProtoMessage

func (*ListAllDelegationsResponse) ProtoMessage()

func (*ListAllDelegationsResponse) Reset

func (m *ListAllDelegationsResponse) Reset()

func (*ListAllDelegationsResponse) String

func (m *ListAllDelegationsResponse) String() string

func (*ListAllDelegationsResponse) XXX_DiscardUnknown

func (m *ListAllDelegationsResponse) XXX_DiscardUnknown()

func (*ListAllDelegationsResponse) XXX_Marshal

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

func (*ListAllDelegationsResponse) XXX_Merge

func (dst *ListAllDelegationsResponse) XXX_Merge(src proto.Message)

func (*ListAllDelegationsResponse) XXX_Size

func (m *ListAllDelegationsResponse) XXX_Size() int

func (*ListAllDelegationsResponse) XXX_Unmarshal

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

type ListCandidatesRequest

type ListCandidatesRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ListCandidatesRequest) Descriptor

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

func (*ListCandidatesRequest) ProtoMessage

func (*ListCandidatesRequest) ProtoMessage()

func (*ListCandidatesRequest) Reset

func (m *ListCandidatesRequest) Reset()

func (*ListCandidatesRequest) String

func (m *ListCandidatesRequest) String() string

func (*ListCandidatesRequest) XXX_DiscardUnknown

func (m *ListCandidatesRequest) XXX_DiscardUnknown()

func (*ListCandidatesRequest) XXX_Marshal

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

func (*ListCandidatesRequest) XXX_Merge

func (dst *ListCandidatesRequest) XXX_Merge(src proto.Message)

func (*ListCandidatesRequest) XXX_Size

func (m *ListCandidatesRequest) XXX_Size() int

func (*ListCandidatesRequest) XXX_Unmarshal

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

type ListCandidatesResponse

type ListCandidatesResponse struct {
	Candidates           []*CandidateStatistic `protobuf:"bytes,1,rep,name=candidates" json:"candidates,omitempty"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

func (*ListCandidatesResponse) Descriptor

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

func (*ListCandidatesResponse) GetCandidates

func (m *ListCandidatesResponse) GetCandidates() []*CandidateStatistic

func (*ListCandidatesResponse) ProtoMessage

func (*ListCandidatesResponse) ProtoMessage()

func (*ListCandidatesResponse) Reset

func (m *ListCandidatesResponse) Reset()

func (*ListCandidatesResponse) String

func (m *ListCandidatesResponse) String() string

func (*ListCandidatesResponse) XXX_DiscardUnknown

func (m *ListCandidatesResponse) XXX_DiscardUnknown()

func (*ListCandidatesResponse) XXX_Marshal

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

func (*ListCandidatesResponse) XXX_Merge

func (dst *ListCandidatesResponse) XXX_Merge(src proto.Message)

func (*ListCandidatesResponse) XXX_Size

func (m *ListCandidatesResponse) XXX_Size() int

func (*ListCandidatesResponse) XXX_Unmarshal

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

type ListDelegationsRequest

type ListDelegationsRequest struct {
	Candidate            *types.Address `protobuf:"bytes,1,opt,name=candidate" json:"candidate,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*ListDelegationsRequest) Descriptor

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

func (*ListDelegationsRequest) GetCandidate

func (m *ListDelegationsRequest) GetCandidate() *types.Address

func (*ListDelegationsRequest) ProtoMessage

func (*ListDelegationsRequest) ProtoMessage()

func (*ListDelegationsRequest) Reset

func (m *ListDelegationsRequest) Reset()

func (*ListDelegationsRequest) String

func (m *ListDelegationsRequest) String() string

func (*ListDelegationsRequest) XXX_DiscardUnknown

func (m *ListDelegationsRequest) XXX_DiscardUnknown()

func (*ListDelegationsRequest) XXX_Marshal

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

func (*ListDelegationsRequest) XXX_Merge

func (dst *ListDelegationsRequest) XXX_Merge(src proto.Message)

func (*ListDelegationsRequest) XXX_Size

func (m *ListDelegationsRequest) XXX_Size() int

func (*ListDelegationsRequest) XXX_Unmarshal

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

type ListDelegationsResponse

type ListDelegationsResponse struct {
	Delegations          []*Delegation  `protobuf:"bytes,1,rep,name=delegations" json:"delegations,omitempty"`
	DelegationTotal      *types.BigUInt `protobuf:"bytes,2,opt,name=delegation_total,json=delegationTotal" json:"delegation_total,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*ListDelegationsResponse) Descriptor

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

func (*ListDelegationsResponse) GetDelegationTotal

func (m *ListDelegationsResponse) GetDelegationTotal() *types.BigUInt

func (*ListDelegationsResponse) GetDelegations

func (m *ListDelegationsResponse) GetDelegations() []*Delegation

func (*ListDelegationsResponse) ProtoMessage

func (*ListDelegationsResponse) ProtoMessage()

func (*ListDelegationsResponse) Reset

func (m *ListDelegationsResponse) Reset()

func (*ListDelegationsResponse) String

func (m *ListDelegationsResponse) String() string

func (*ListDelegationsResponse) XXX_DiscardUnknown

func (m *ListDelegationsResponse) XXX_DiscardUnknown()

func (*ListDelegationsResponse) XXX_Marshal

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

func (*ListDelegationsResponse) XXX_Merge

func (dst *ListDelegationsResponse) XXX_Merge(src proto.Message)

func (*ListDelegationsResponse) XXX_Size

func (m *ListDelegationsResponse) XXX_Size() int

func (*ListDelegationsResponse) XXX_Unmarshal

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

type ListReferrersRequest

type ListReferrersRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ListReferrersRequest) Descriptor

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

func (*ListReferrersRequest) ProtoMessage

func (*ListReferrersRequest) ProtoMessage()

func (*ListReferrersRequest) Reset

func (m *ListReferrersRequest) Reset()

func (*ListReferrersRequest) String

func (m *ListReferrersRequest) String() string

func (*ListReferrersRequest) XXX_DiscardUnknown

func (m *ListReferrersRequest) XXX_DiscardUnknown()

func (*ListReferrersRequest) XXX_Marshal

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

func (*ListReferrersRequest) XXX_Merge

func (dst *ListReferrersRequest) XXX_Merge(src proto.Message)

func (*ListReferrersRequest) XXX_Size

func (m *ListReferrersRequest) XXX_Size() int

func (*ListReferrersRequest) XXX_Unmarshal

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

type ListReferrersResponse

type ListReferrersResponse struct {
	Referrers            []*Referrer `protobuf:"bytes,1,rep,name=referrers" json:"referrers,omitempty"`
	XXX_NoUnkeyedLiteral struct{}    `json:"-"`
	XXX_unrecognized     []byte      `json:"-"`
	XXX_sizecache        int32       `json:"-"`
}

func (*ListReferrersResponse) Descriptor

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

func (*ListReferrersResponse) GetReferrers

func (m *ListReferrersResponse) GetReferrers() []*Referrer

func (*ListReferrersResponse) ProtoMessage

func (*ListReferrersResponse) ProtoMessage()

func (*ListReferrersResponse) Reset

func (m *ListReferrersResponse) Reset()

func (*ListReferrersResponse) String

func (m *ListReferrersResponse) String() string

func (*ListReferrersResponse) XXX_DiscardUnknown

func (m *ListReferrersResponse) XXX_DiscardUnknown()

func (*ListReferrersResponse) XXX_Marshal

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

func (*ListReferrersResponse) XXX_Merge

func (dst *ListReferrersResponse) XXX_Merge(src proto.Message)

func (*ListReferrersResponse) XXX_Size

func (m *ListReferrersResponse) XXX_Size() int

func (*ListReferrersResponse) XXX_Unmarshal

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

type ListValidatorsRequest

type ListValidatorsRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ListValidatorsRequest) Descriptor

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

func (*ListValidatorsRequest) ProtoMessage

func (*ListValidatorsRequest) ProtoMessage()

func (*ListValidatorsRequest) Reset

func (m *ListValidatorsRequest) Reset()

func (*ListValidatorsRequest) String

func (m *ListValidatorsRequest) String() string

func (*ListValidatorsRequest) XXX_DiscardUnknown

func (m *ListValidatorsRequest) XXX_DiscardUnknown()

func (*ListValidatorsRequest) XXX_Marshal

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

func (*ListValidatorsRequest) XXX_Merge

func (dst *ListValidatorsRequest) XXX_Merge(src proto.Message)

func (*ListValidatorsRequest) XXX_Size

func (m *ListValidatorsRequest) XXX_Size() int

func (*ListValidatorsRequest) XXX_Unmarshal

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

type ListValidatorsResponse

type ListValidatorsResponse struct {
	Statistics           []*ValidatorStatistic `protobuf:"bytes,1,rep,name=statistics" json:"statistics,omitempty"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

func (*ListValidatorsResponse) Descriptor

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

func (*ListValidatorsResponse) GetStatistics

func (m *ListValidatorsResponse) GetStatistics() []*ValidatorStatistic

func (*ListValidatorsResponse) ProtoMessage

func (*ListValidatorsResponse) ProtoMessage()

func (*ListValidatorsResponse) Reset

func (m *ListValidatorsResponse) Reset()

func (*ListValidatorsResponse) String

func (m *ListValidatorsResponse) String() string

func (*ListValidatorsResponse) XXX_DiscardUnknown

func (m *ListValidatorsResponse) XXX_DiscardUnknown()

func (*ListValidatorsResponse) XXX_Marshal

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

func (*ListValidatorsResponse) XXX_Merge

func (dst *ListValidatorsResponse) XXX_Merge(src proto.Message)

func (*ListValidatorsResponse) XXX_Size

func (m *ListValidatorsResponse) XXX_Size() int

func (*ListValidatorsResponse) XXX_Unmarshal

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

type LocktimeTier

type LocktimeTier int32
const (
	LocktimeTier_TIER_ZERO  LocktimeTier = 0
	LocktimeTier_TIER_ONE   LocktimeTier = 1
	LocktimeTier_TIER_TWO   LocktimeTier = 2
	LocktimeTier_TIER_THREE LocktimeTier = 3
)

func (LocktimeTier) EnumDescriptor

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

func (LocktimeTier) String

func (x LocktimeTier) String() string

type Params

type Params struct {
	ValidatorCount              uint64         `protobuf:"varint,1,opt,name=validator_count,json=validatorCount,proto3" json:"validator_count,omitempty"`
	ElectionCycleLength         int64          `protobuf:"varint,2,opt,name=election_cycle_length,json=electionCycleLength,proto3" json:"election_cycle_length,omitempty"`
	CoinContractAddress         *types.Address `protobuf:"bytes,3,opt,name=coin_contract_address,json=coinContractAddress" json:"coin_contract_address,omitempty"`
	OracleAddress               *types.Address `protobuf:"bytes,4,opt,name=oracle_address,json=oracleAddress" json:"oracle_address,omitempty"`
	MaxYearlyReward             *types.BigUInt `protobuf:"bytes,5,opt,name=max_yearly_reward,json=maxYearlyReward" json:"max_yearly_reward,omitempty"`
	RegistrationRequirement     *types.BigUInt `protobuf:"bytes,6,opt,name=registration_requirement,json=registrationRequirement" json:"registration_requirement,omitempty"`
	CrashSlashingPercentage     *types.BigUInt `protobuf:"bytes,7,opt,name=crash_slashing_percentage,json=crashSlashingPercentage" json:"crash_slashing_percentage,omitempty"`
	ByzantineSlashingPercentage *types.BigUInt `` /* 137-byte string literal not displayed */
	MinCandidateFee             uint64         `protobuf:"varint,9,opt,name=min_candidate_fee,json=minCandidateFee,proto3" json:"min_candidate_fee,omitempty"`
	DowntimePeriod              uint64         `protobuf:"varint,10,opt,name=downtime_period,json=downtimePeriod,proto3" json:"downtime_period,omitempty"`
	MaxDowntimePercentage       *types.BigUInt `protobuf:"bytes,11,opt,name=max_downtime_percentage,json=maxDowntimePercentage" json:"max_downtime_percentage,omitempty"`
	JailOfflineValidators       bool           `` /* 128-byte string literal not displayed */
	IgnoreUnbondLocktime        bool           `protobuf:"varint,13,opt,name=ignore_unbond_locktime,json=ignoreUnbondLocktime,proto3" json:"ignore_unbond_locktime,omitempty"`
	XXX_NoUnkeyedLiteral        struct{}       `json:"-"`
	XXX_unrecognized            []byte         `json:"-"`
	XXX_sizecache               int32          `json:"-"`
}

func (*Params) Descriptor

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

func (*Params) GetByzantineSlashingPercentage

func (m *Params) GetByzantineSlashingPercentage() *types.BigUInt

func (*Params) GetCoinContractAddress

func (m *Params) GetCoinContractAddress() *types.Address

func (*Params) GetCrashSlashingPercentage

func (m *Params) GetCrashSlashingPercentage() *types.BigUInt

func (*Params) GetDowntimePeriod

func (m *Params) GetDowntimePeriod() uint64

func (*Params) GetElectionCycleLength

func (m *Params) GetElectionCycleLength() int64

func (*Params) GetIgnoreUnbondLocktime

func (m *Params) GetIgnoreUnbondLocktime() bool

func (*Params) GetJailOfflineValidators

func (m *Params) GetJailOfflineValidators() bool

func (*Params) GetMaxDowntimePercentage

func (m *Params) GetMaxDowntimePercentage() *types.BigUInt

func (*Params) GetMaxYearlyReward

func (m *Params) GetMaxYearlyReward() *types.BigUInt

func (*Params) GetMinCandidateFee

func (m *Params) GetMinCandidateFee() uint64

func (*Params) GetOracleAddress

func (m *Params) GetOracleAddress() *types.Address

func (*Params) GetRegistrationRequirement

func (m *Params) GetRegistrationRequirement() *types.BigUInt

func (*Params) GetValidatorCount

func (m *Params) GetValidatorCount() uint64

func (*Params) ProtoMessage

func (*Params) ProtoMessage()

func (*Params) Reset

func (m *Params) Reset()

func (*Params) String

func (m *Params) String() string

func (*Params) XXX_DiscardUnknown

func (m *Params) XXX_DiscardUnknown()

func (*Params) XXX_Marshal

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

func (*Params) XXX_Merge

func (dst *Params) XXX_Merge(src proto.Message)

func (*Params) XXX_Size

func (m *Params) XXX_Size() int

func (*Params) XXX_Unmarshal

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

type RedelegateRequest

type RedelegateRequest struct {
	ValidatorAddress       *types.Address `protobuf:"bytes,1,opt,name=validator_address,json=validatorAddress" json:"validator_address,omitempty"`
	FormerValidatorAddress *types.Address `protobuf:"bytes,2,opt,name=former_validator_address,json=formerValidatorAddress" json:"former_validator_address,omitempty"`
	Index                  uint64         `protobuf:"varint,3,opt,name=index,proto3" json:"index,omitempty"`
	Amount                 *types.BigUInt `protobuf:"bytes,4,opt,name=amount" json:"amount,omitempty"`
	NewLocktimeTier        uint64         `protobuf:"varint,5,opt,name=new_locktime_tier,json=newLocktimeTier,proto3" json:"new_locktime_tier,omitempty"`
	Referrer               string         `protobuf:"bytes,6,opt,name=referrer,proto3" json:"referrer,omitempty"`
	DelegatorAddress       *types.Address `protobuf:"bytes,7,opt,name=delegator_address,json=delegatorAddress" json:"delegator_address,omitempty"`
	XXX_NoUnkeyedLiteral   struct{}       `json:"-"`
	XXX_unrecognized       []byte         `json:"-"`
	XXX_sizecache          int32          `json:"-"`
}

func (*RedelegateRequest) Descriptor

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

func (*RedelegateRequest) GetAmount

func (m *RedelegateRequest) GetAmount() *types.BigUInt

func (*RedelegateRequest) GetDelegatorAddress

func (m *RedelegateRequest) GetDelegatorAddress() *types.Address

func (*RedelegateRequest) GetFormerValidatorAddress

func (m *RedelegateRequest) GetFormerValidatorAddress() *types.Address

func (*RedelegateRequest) GetIndex

func (m *RedelegateRequest) GetIndex() uint64

func (*RedelegateRequest) GetNewLocktimeTier

func (m *RedelegateRequest) GetNewLocktimeTier() uint64

func (*RedelegateRequest) GetReferrer

func (m *RedelegateRequest) GetReferrer() string

func (*RedelegateRequest) GetValidatorAddress

func (m *RedelegateRequest) GetValidatorAddress() *types.Address

func (*RedelegateRequest) ProtoMessage

func (*RedelegateRequest) ProtoMessage()

func (*RedelegateRequest) Reset

func (m *RedelegateRequest) Reset()

func (*RedelegateRequest) String

func (m *RedelegateRequest) String() string

func (*RedelegateRequest) XXX_DiscardUnknown

func (m *RedelegateRequest) XXX_DiscardUnknown()

func (*RedelegateRequest) XXX_Marshal

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

func (*RedelegateRequest) XXX_Merge

func (dst *RedelegateRequest) XXX_Merge(src proto.Message)

func (*RedelegateRequest) XXX_Size

func (m *RedelegateRequest) XXX_Size() int

func (*RedelegateRequest) XXX_Unmarshal

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

type Referrer

type Referrer struct {
	ReferrerAddress      *types.Address `protobuf:"bytes,1,opt,name=referrer_address,json=referrerAddress" json:"referrer_address,omitempty"`
	Name                 string         `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*Referrer) Descriptor

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

func (*Referrer) GetName

func (m *Referrer) GetName() string

func (*Referrer) GetReferrerAddress

func (m *Referrer) GetReferrerAddress() *types.Address

func (*Referrer) ProtoMessage

func (*Referrer) ProtoMessage()

func (*Referrer) Reset

func (m *Referrer) Reset()

func (*Referrer) String

func (m *Referrer) String() string

func (*Referrer) XXX_DiscardUnknown

func (m *Referrer) XXX_DiscardUnknown()

func (*Referrer) XXX_Marshal

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

func (*Referrer) XXX_Merge

func (dst *Referrer) XXX_Merge(src proto.Message)

func (*Referrer) XXX_Size

func (m *Referrer) XXX_Size() int

func (*Referrer) XXX_Unmarshal

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

type RegisterCandidateRequest

type RegisterCandidateRequest struct {
	PubKey                []byte   `protobuf:"bytes,1,opt,name=pub_key,json=pubKey,proto3" json:"pub_key,omitempty"`
	Fee                   uint64   `protobuf:"varint,2,opt,name=fee,proto3" json:"fee,omitempty"`
	Name                  string   `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	Description           string   `protobuf:"bytes,4,opt,name=description,proto3" json:"description,omitempty"`
	Website               string   `protobuf:"bytes,5,opt,name=website,proto3" json:"website,omitempty"`
	LocktimeTier          uint64   `protobuf:"varint,6,opt,name=locktime_tier,json=locktimeTier,proto3" json:"locktime_tier,omitempty"`
	MaxReferralPercentage uint64   `` /* 127-byte string literal not displayed */
	XXX_NoUnkeyedLiteral  struct{} `json:"-"`
	XXX_unrecognized      []byte   `json:"-"`
	XXX_sizecache         int32    `json:"-"`
}

func (*RegisterCandidateRequest) Descriptor

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

func (*RegisterCandidateRequest) GetDescription

func (m *RegisterCandidateRequest) GetDescription() string

func (*RegisterCandidateRequest) GetFee

func (m *RegisterCandidateRequest) GetFee() uint64

func (*RegisterCandidateRequest) GetLocktimeTier

func (m *RegisterCandidateRequest) GetLocktimeTier() uint64

func (*RegisterCandidateRequest) GetMaxReferralPercentage

func (m *RegisterCandidateRequest) GetMaxReferralPercentage() uint64

func (*RegisterCandidateRequest) GetName

func (m *RegisterCandidateRequest) GetName() string

func (*RegisterCandidateRequest) GetPubKey

func (m *RegisterCandidateRequest) GetPubKey() []byte

func (*RegisterCandidateRequest) GetWebsite

func (m *RegisterCandidateRequest) GetWebsite() string

func (*RegisterCandidateRequest) ProtoMessage

func (*RegisterCandidateRequest) ProtoMessage()

func (*RegisterCandidateRequest) Reset

func (m *RegisterCandidateRequest) Reset()

func (*RegisterCandidateRequest) String

func (m *RegisterCandidateRequest) String() string

func (*RegisterCandidateRequest) XXX_DiscardUnknown

func (m *RegisterCandidateRequest) XXX_DiscardUnknown()

func (*RegisterCandidateRequest) XXX_Marshal

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

func (*RegisterCandidateRequest) XXX_Merge

func (dst *RegisterCandidateRequest) XXX_Merge(src proto.Message)

func (*RegisterCandidateRequest) XXX_Size

func (m *RegisterCandidateRequest) XXX_Size() int

func (*RegisterCandidateRequest) XXX_Unmarshal

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

type RegisterReferrerRequest

type RegisterReferrerRequest struct {
	Name                 string         `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Address              *types.Address `protobuf:"bytes,2,opt,name=address" json:"address,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*RegisterReferrerRequest) Descriptor

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

func (*RegisterReferrerRequest) GetAddress

func (m *RegisterReferrerRequest) GetAddress() *types.Address

func (*RegisterReferrerRequest) GetName

func (m *RegisterReferrerRequest) GetName() string

func (*RegisterReferrerRequest) ProtoMessage

func (*RegisterReferrerRequest) ProtoMessage()

func (*RegisterReferrerRequest) Reset

func (m *RegisterReferrerRequest) Reset()

func (*RegisterReferrerRequest) String

func (m *RegisterReferrerRequest) String() string

func (*RegisterReferrerRequest) XXX_DiscardUnknown

func (m *RegisterReferrerRequest) XXX_DiscardUnknown()

func (*RegisterReferrerRequest) XXX_Marshal

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

func (*RegisterReferrerRequest) XXX_Merge

func (dst *RegisterReferrerRequest) XXX_Merge(src proto.Message)

func (*RegisterReferrerRequest) XXX_Size

func (m *RegisterReferrerRequest) XXX_Size() int

func (*RegisterReferrerRequest) XXX_Unmarshal

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

type RemoveWhitelistedCandidateRequest

type RemoveWhitelistedCandidateRequest struct {
	CandidateAddress     *types.Address `protobuf:"bytes,1,opt,name=candidate_address,json=candidateAddress" json:"candidate_address,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*RemoveWhitelistedCandidateRequest) Descriptor

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

func (*RemoveWhitelistedCandidateRequest) GetCandidateAddress

func (m *RemoveWhitelistedCandidateRequest) GetCandidateAddress() *types.Address

func (*RemoveWhitelistedCandidateRequest) ProtoMessage

func (*RemoveWhitelistedCandidateRequest) ProtoMessage()

func (*RemoveWhitelistedCandidateRequest) Reset

func (*RemoveWhitelistedCandidateRequest) String

func (*RemoveWhitelistedCandidateRequest) XXX_DiscardUnknown

func (m *RemoveWhitelistedCandidateRequest) XXX_DiscardUnknown()

func (*RemoveWhitelistedCandidateRequest) XXX_Marshal

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

func (*RemoveWhitelistedCandidateRequest) XXX_Merge

func (dst *RemoveWhitelistedCandidateRequest) XXX_Merge(src proto.Message)

func (*RemoveWhitelistedCandidateRequest) XXX_Size

func (m *RemoveWhitelistedCandidateRequest) XXX_Size() int

func (*RemoveWhitelistedCandidateRequest) XXX_Unmarshal

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

type RequestBatch

type RequestBatch struct {
	Batch                []*BatchRequest `protobuf:"bytes,1,rep,name=batch" json:"batch,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*RequestBatch) Descriptor

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

func (*RequestBatch) GetBatch

func (m *RequestBatch) GetBatch() []*BatchRequest

func (*RequestBatch) ProtoMessage

func (*RequestBatch) ProtoMessage()

func (*RequestBatch) Reset

func (m *RequestBatch) Reset()

func (*RequestBatch) String

func (m *RequestBatch) String() string

func (*RequestBatch) XXX_DiscardUnknown

func (m *RequestBatch) XXX_DiscardUnknown()

func (*RequestBatch) XXX_Marshal

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

func (*RequestBatch) XXX_Merge

func (dst *RequestBatch) XXX_Merge(src proto.Message)

func (*RequestBatch) XXX_Size

func (m *RequestBatch) XXX_Size() int

func (*RequestBatch) XXX_Unmarshal

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

type RequestBatchTally

type RequestBatchTally struct {
	LastSeenBlockNumber  uint64   `protobuf:"varint,1,opt,name=last_seen_block_number,json=lastSeenBlockNumber,proto3" json:"last_seen_block_number,omitempty"`
	LastSeenTxIndex      uint64   `protobuf:"varint,2,opt,name=last_seen_tx_index,json=lastSeenTxIndex,proto3" json:"last_seen_tx_index,omitempty"`
	LastSeenLogIndex     uint64   `protobuf:"varint,3,opt,name=last_seen_log_index,json=lastSeenLogIndex,proto3" json:"last_seen_log_index,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RequestBatchTally) Descriptor

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

func (*RequestBatchTally) GetLastSeenBlockNumber

func (m *RequestBatchTally) GetLastSeenBlockNumber() uint64

func (*RequestBatchTally) GetLastSeenLogIndex

func (m *RequestBatchTally) GetLastSeenLogIndex() uint64

func (*RequestBatchTally) GetLastSeenTxIndex

func (m *RequestBatchTally) GetLastSeenTxIndex() uint64

func (*RequestBatchTally) ProtoMessage

func (*RequestBatchTally) ProtoMessage()

func (*RequestBatchTally) Reset

func (m *RequestBatchTally) Reset()

func (*RequestBatchTally) String

func (m *RequestBatchTally) String() string

func (*RequestBatchTally) XXX_DiscardUnknown

func (m *RequestBatchTally) XXX_DiscardUnknown()

func (*RequestBatchTally) XXX_Marshal

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

func (*RequestBatchTally) XXX_Merge

func (dst *RequestBatchTally) XXX_Merge(src proto.Message)

func (*RequestBatchTally) XXX_Size

func (m *RequestBatchTally) XXX_Size() int

func (*RequestBatchTally) XXX_Unmarshal

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

type SetDowntimePeriodRequest

type SetDowntimePeriodRequest struct {
	DowntimePeriod       uint64   `protobuf:"varint,1,opt,name=downtime_period,json=downtimePeriod,proto3" json:"downtime_period,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SetDowntimePeriodRequest) Descriptor

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

func (*SetDowntimePeriodRequest) GetDowntimePeriod

func (m *SetDowntimePeriodRequest) GetDowntimePeriod() uint64

func (*SetDowntimePeriodRequest) ProtoMessage

func (*SetDowntimePeriodRequest) ProtoMessage()

func (*SetDowntimePeriodRequest) Reset

func (m *SetDowntimePeriodRequest) Reset()

func (*SetDowntimePeriodRequest) String

func (m *SetDowntimePeriodRequest) String() string

func (*SetDowntimePeriodRequest) XXX_DiscardUnknown

func (m *SetDowntimePeriodRequest) XXX_DiscardUnknown()

func (*SetDowntimePeriodRequest) XXX_Marshal

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

func (*SetDowntimePeriodRequest) XXX_Merge

func (dst *SetDowntimePeriodRequest) XXX_Merge(src proto.Message)

func (*SetDowntimePeriodRequest) XXX_Size

func (m *SetDowntimePeriodRequest) XXX_Size() int

func (*SetDowntimePeriodRequest) XXX_Unmarshal

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

type SetElectionCycleRequest

type SetElectionCycleRequest struct {
	ElectionCycle        int64    `protobuf:"varint,1,opt,name=election_cycle,json=electionCycle,proto3" json:"election_cycle,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SetElectionCycleRequest) Descriptor

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

func (*SetElectionCycleRequest) GetElectionCycle

func (m *SetElectionCycleRequest) GetElectionCycle() int64

func (*SetElectionCycleRequest) ProtoMessage

func (*SetElectionCycleRequest) ProtoMessage()

func (*SetElectionCycleRequest) Reset

func (m *SetElectionCycleRequest) Reset()

func (*SetElectionCycleRequest) String

func (m *SetElectionCycleRequest) String() string

func (*SetElectionCycleRequest) XXX_DiscardUnknown

func (m *SetElectionCycleRequest) XXX_DiscardUnknown()

func (*SetElectionCycleRequest) XXX_Marshal

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

func (*SetElectionCycleRequest) XXX_Merge

func (dst *SetElectionCycleRequest) XXX_Merge(src proto.Message)

func (*SetElectionCycleRequest) XXX_Size

func (m *SetElectionCycleRequest) XXX_Size() int

func (*SetElectionCycleRequest) XXX_Unmarshal

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

type SetMaxDowntimePercentageRequest

type SetMaxDowntimePercentageRequest struct {
	MaxDowntimePercentage *types.BigUInt `protobuf:"bytes,1,opt,name=max_downtime_percentage,json=maxDowntimePercentage" json:"max_downtime_percentage,omitempty"`
	XXX_NoUnkeyedLiteral  struct{}       `json:"-"`
	XXX_unrecognized      []byte         `json:"-"`
	XXX_sizecache         int32          `json:"-"`
}

func (*SetMaxDowntimePercentageRequest) Descriptor

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

func (*SetMaxDowntimePercentageRequest) GetMaxDowntimePercentage

func (m *SetMaxDowntimePercentageRequest) GetMaxDowntimePercentage() *types.BigUInt

func (*SetMaxDowntimePercentageRequest) ProtoMessage

func (*SetMaxDowntimePercentageRequest) ProtoMessage()

func (*SetMaxDowntimePercentageRequest) Reset

func (*SetMaxDowntimePercentageRequest) String

func (*SetMaxDowntimePercentageRequest) XXX_DiscardUnknown

func (m *SetMaxDowntimePercentageRequest) XXX_DiscardUnknown()

func (*SetMaxDowntimePercentageRequest) XXX_Marshal

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

func (*SetMaxDowntimePercentageRequest) XXX_Merge

func (dst *SetMaxDowntimePercentageRequest) XXX_Merge(src proto.Message)

func (*SetMaxDowntimePercentageRequest) XXX_Size

func (m *SetMaxDowntimePercentageRequest) XXX_Size() int

func (*SetMaxDowntimePercentageRequest) XXX_Unmarshal

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

type SetMaxYearlyRewardRequest

type SetMaxYearlyRewardRequest struct {
	MaxYearlyReward      *types.BigUInt `protobuf:"bytes,1,opt,name=max_yearly_reward,json=maxYearlyReward" json:"max_yearly_reward,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*SetMaxYearlyRewardRequest) Descriptor

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

func (*SetMaxYearlyRewardRequest) GetMaxYearlyReward

func (m *SetMaxYearlyRewardRequest) GetMaxYearlyReward() *types.BigUInt

func (*SetMaxYearlyRewardRequest) ProtoMessage

func (*SetMaxYearlyRewardRequest) ProtoMessage()

func (*SetMaxYearlyRewardRequest) Reset

func (m *SetMaxYearlyRewardRequest) Reset()

func (*SetMaxYearlyRewardRequest) String

func (m *SetMaxYearlyRewardRequest) String() string

func (*SetMaxYearlyRewardRequest) XXX_DiscardUnknown

func (m *SetMaxYearlyRewardRequest) XXX_DiscardUnknown()

func (*SetMaxYearlyRewardRequest) XXX_Marshal

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

func (*SetMaxYearlyRewardRequest) XXX_Merge

func (dst *SetMaxYearlyRewardRequest) XXX_Merge(src proto.Message)

func (*SetMaxYearlyRewardRequest) XXX_Size

func (m *SetMaxYearlyRewardRequest) XXX_Size() int

func (*SetMaxYearlyRewardRequest) XXX_Unmarshal

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

type SetMinCandidateFeeRequest

type SetMinCandidateFeeRequest struct {
	MinCandidateFee      uint64   `protobuf:"varint,1,opt,name=min_candidate_fee,json=minCandidateFee,proto3" json:"min_candidate_fee,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SetMinCandidateFeeRequest) Descriptor

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

func (*SetMinCandidateFeeRequest) GetMinCandidateFee

func (m *SetMinCandidateFeeRequest) GetMinCandidateFee() uint64

func (*SetMinCandidateFeeRequest) ProtoMessage

func (*SetMinCandidateFeeRequest) ProtoMessage()

func (*SetMinCandidateFeeRequest) Reset

func (m *SetMinCandidateFeeRequest) Reset()

func (*SetMinCandidateFeeRequest) String

func (m *SetMinCandidateFeeRequest) String() string

func (*SetMinCandidateFeeRequest) XXX_DiscardUnknown

func (m *SetMinCandidateFeeRequest) XXX_DiscardUnknown()

func (*SetMinCandidateFeeRequest) XXX_Marshal

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

func (*SetMinCandidateFeeRequest) XXX_Merge

func (dst *SetMinCandidateFeeRequest) XXX_Merge(src proto.Message)

func (*SetMinCandidateFeeRequest) XXX_Size

func (m *SetMinCandidateFeeRequest) XXX_Size() int

func (*SetMinCandidateFeeRequest) XXX_Unmarshal

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

type SetOracleAddressRequest

type SetOracleAddressRequest struct {
	OracleAddress        *types.Address `protobuf:"bytes,1,opt,name=oracle_address,json=oracleAddress" json:"oracle_address,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*SetOracleAddressRequest) Descriptor

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

func (*SetOracleAddressRequest) GetOracleAddress

func (m *SetOracleAddressRequest) GetOracleAddress() *types.Address

func (*SetOracleAddressRequest) ProtoMessage

func (*SetOracleAddressRequest) ProtoMessage()

func (*SetOracleAddressRequest) Reset

func (m *SetOracleAddressRequest) Reset()

func (*SetOracleAddressRequest) String

func (m *SetOracleAddressRequest) String() string

func (*SetOracleAddressRequest) XXX_DiscardUnknown

func (m *SetOracleAddressRequest) XXX_DiscardUnknown()

func (*SetOracleAddressRequest) XXX_Marshal

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

func (*SetOracleAddressRequest) XXX_Merge

func (dst *SetOracleAddressRequest) XXX_Merge(src proto.Message)

func (*SetOracleAddressRequest) XXX_Size

func (m *SetOracleAddressRequest) XXX_Size() int

func (*SetOracleAddressRequest) XXX_Unmarshal

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

type SetRegistrationRequirementRequest

type SetRegistrationRequirementRequest struct {
	RegistrationRequirement *types.BigUInt `protobuf:"bytes,1,opt,name=registration_requirement,json=registrationRequirement" json:"registration_requirement,omitempty"`
	XXX_NoUnkeyedLiteral    struct{}       `json:"-"`
	XXX_unrecognized        []byte         `json:"-"`
	XXX_sizecache           int32          `json:"-"`
}

func (*SetRegistrationRequirementRequest) Descriptor

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

func (*SetRegistrationRequirementRequest) GetRegistrationRequirement

func (m *SetRegistrationRequirementRequest) GetRegistrationRequirement() *types.BigUInt

func (*SetRegistrationRequirementRequest) ProtoMessage

func (*SetRegistrationRequirementRequest) ProtoMessage()

func (*SetRegistrationRequirementRequest) Reset

func (*SetRegistrationRequirementRequest) String

func (*SetRegistrationRequirementRequest) XXX_DiscardUnknown

func (m *SetRegistrationRequirementRequest) XXX_DiscardUnknown()

func (*SetRegistrationRequirementRequest) XXX_Marshal

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

func (*SetRegistrationRequirementRequest) XXX_Merge

func (dst *SetRegistrationRequirementRequest) XXX_Merge(src proto.Message)

func (*SetRegistrationRequirementRequest) XXX_Size

func (m *SetRegistrationRequirementRequest) XXX_Size() int

func (*SetRegistrationRequirementRequest) XXX_Unmarshal

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

type SetSlashingPercentagesRequest

type SetSlashingPercentagesRequest struct {
	CrashSlashingPercentage     *types.BigUInt `protobuf:"bytes,1,opt,name=crash_slashing_percentage,json=crashSlashingPercentage" json:"crash_slashing_percentage,omitempty"`
	ByzantineSlashingPercentage *types.BigUInt `` /* 137-byte string literal not displayed */
	XXX_NoUnkeyedLiteral        struct{}       `json:"-"`
	XXX_unrecognized            []byte         `json:"-"`
	XXX_sizecache               int32          `json:"-"`
}

func (*SetSlashingPercentagesRequest) Descriptor

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

func (*SetSlashingPercentagesRequest) GetByzantineSlashingPercentage

func (m *SetSlashingPercentagesRequest) GetByzantineSlashingPercentage() *types.BigUInt

func (*SetSlashingPercentagesRequest) GetCrashSlashingPercentage

func (m *SetSlashingPercentagesRequest) GetCrashSlashingPercentage() *types.BigUInt

func (*SetSlashingPercentagesRequest) ProtoMessage

func (*SetSlashingPercentagesRequest) ProtoMessage()

func (*SetSlashingPercentagesRequest) Reset

func (m *SetSlashingPercentagesRequest) Reset()

func (*SetSlashingPercentagesRequest) String

func (*SetSlashingPercentagesRequest) XXX_DiscardUnknown

func (m *SetSlashingPercentagesRequest) XXX_DiscardUnknown()

func (*SetSlashingPercentagesRequest) XXX_Marshal

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

func (*SetSlashingPercentagesRequest) XXX_Merge

func (dst *SetSlashingPercentagesRequest) XXX_Merge(src proto.Message)

func (*SetSlashingPercentagesRequest) XXX_Size

func (m *SetSlashingPercentagesRequest) XXX_Size() int

func (*SetSlashingPercentagesRequest) XXX_Unmarshal

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

type SetValidatorCountRequest

type SetValidatorCountRequest struct {
	ValidatorCount       int64    `protobuf:"varint,1,opt,name=validator_count,json=validatorCount,proto3" json:"validator_count,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SetValidatorCountRequest) Descriptor

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

func (*SetValidatorCountRequest) GetValidatorCount

func (m *SetValidatorCountRequest) GetValidatorCount() int64

func (*SetValidatorCountRequest) ProtoMessage

func (*SetValidatorCountRequest) ProtoMessage()

func (*SetValidatorCountRequest) Reset

func (m *SetValidatorCountRequest) Reset()

func (*SetValidatorCountRequest) String

func (m *SetValidatorCountRequest) String() string

func (*SetValidatorCountRequest) XXX_DiscardUnknown

func (m *SetValidatorCountRequest) XXX_DiscardUnknown()

func (*SetValidatorCountRequest) XXX_Marshal

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

func (*SetValidatorCountRequest) XXX_Merge

func (dst *SetValidatorCountRequest) XXX_Merge(src proto.Message)

func (*SetValidatorCountRequest) XXX_Size

func (m *SetValidatorCountRequest) XXX_Size() int

func (*SetValidatorCountRequest) XXX_Unmarshal

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

type State

type State struct {
	Params                    *Params            `protobuf:"bytes,1,opt,name=params" json:"params,omitempty"`
	Validators                []*types.Validator `protobuf:"bytes,2,rep,name=validators" json:"validators,omitempty"`
	LastElectionTime          int64              `protobuf:"varint,3,opt,name=last_election_time,json=lastElectionTime,proto3" json:"last_election_time,omitempty"`
	TotalValidatorDelegations *types.BigUInt     `` /* 131-byte string literal not displayed */
	TotalRewardDistribution   *types.BigUInt     `protobuf:"bytes,5,opt,name=total_reward_distribution,json=totalRewardDistribution" json:"total_reward_distribution,omitempty"`
	XXX_NoUnkeyedLiteral      struct{}           `json:"-"`
	XXX_unrecognized          []byte             `json:"-"`
	XXX_sizecache             int32              `json:"-"`
}

func (*State) Descriptor

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

func (*State) GetLastElectionTime

func (m *State) GetLastElectionTime() int64

func (*State) GetParams

func (m *State) GetParams() *Params

func (*State) GetTotalRewardDistribution

func (m *State) GetTotalRewardDistribution() *types.BigUInt

func (*State) GetTotalValidatorDelegations

func (m *State) GetTotalValidatorDelegations() *types.BigUInt

func (*State) GetValidators

func (m *State) GetValidators() []*types.Validator

func (*State) ProtoMessage

func (*State) ProtoMessage()

func (*State) Reset

func (m *State) Reset()

func (*State) String

func (m *State) String() string

func (*State) XXX_DiscardUnknown

func (m *State) XXX_DiscardUnknown()

func (*State) XXX_Marshal

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

func (*State) XXX_Merge

func (dst *State) XXX_Merge(src proto.Message)

func (*State) XXX_Size

func (m *State) XXX_Size() int

func (*State) XXX_Unmarshal

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

type TimeUntilElectionRequest

type TimeUntilElectionRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*TimeUntilElectionRequest) Descriptor

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

func (*TimeUntilElectionRequest) ProtoMessage

func (*TimeUntilElectionRequest) ProtoMessage()

func (*TimeUntilElectionRequest) Reset

func (m *TimeUntilElectionRequest) Reset()

func (*TimeUntilElectionRequest) String

func (m *TimeUntilElectionRequest) String() string

func (*TimeUntilElectionRequest) XXX_DiscardUnknown

func (m *TimeUntilElectionRequest) XXX_DiscardUnknown()

func (*TimeUntilElectionRequest) XXX_Marshal

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

func (*TimeUntilElectionRequest) XXX_Merge

func (dst *TimeUntilElectionRequest) XXX_Merge(src proto.Message)

func (*TimeUntilElectionRequest) XXX_Size

func (m *TimeUntilElectionRequest) XXX_Size() int

func (*TimeUntilElectionRequest) XXX_Unmarshal

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

type TimeUntilElectionResponse

type TimeUntilElectionResponse struct {
	TimeUntilElection    int64    `protobuf:"varint,1,opt,name=time_until_election,json=timeUntilElection,proto3" json:"time_until_election,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*TimeUntilElectionResponse) Descriptor

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

func (*TimeUntilElectionResponse) GetTimeUntilElection

func (m *TimeUntilElectionResponse) GetTimeUntilElection() int64

func (*TimeUntilElectionResponse) ProtoMessage

func (*TimeUntilElectionResponse) ProtoMessage()

func (*TimeUntilElectionResponse) Reset

func (m *TimeUntilElectionResponse) Reset()

func (*TimeUntilElectionResponse) String

func (m *TimeUntilElectionResponse) String() string

func (*TimeUntilElectionResponse) XXX_DiscardUnknown

func (m *TimeUntilElectionResponse) XXX_DiscardUnknown()

func (*TimeUntilElectionResponse) XXX_Marshal

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

func (*TimeUntilElectionResponse) XXX_Merge

func (dst *TimeUntilElectionResponse) XXX_Merge(src proto.Message)

func (*TimeUntilElectionResponse) XXX_Size

func (m *TimeUntilElectionResponse) XXX_Size() int

func (*TimeUntilElectionResponse) XXX_Unmarshal

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

type TotalDelegationRequest

type TotalDelegationRequest struct {
	DelegatorAddress     *types.Address `protobuf:"bytes,1,opt,name=delegator_address,json=delegatorAddress" json:"delegator_address,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*TotalDelegationRequest) Descriptor

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

func (*TotalDelegationRequest) GetDelegatorAddress

func (m *TotalDelegationRequest) GetDelegatorAddress() *types.Address

func (*TotalDelegationRequest) ProtoMessage

func (*TotalDelegationRequest) ProtoMessage()

func (*TotalDelegationRequest) Reset

func (m *TotalDelegationRequest) Reset()

func (*TotalDelegationRequest) String

func (m *TotalDelegationRequest) String() string

func (*TotalDelegationRequest) XXX_DiscardUnknown

func (m *TotalDelegationRequest) XXX_DiscardUnknown()

func (*TotalDelegationRequest) XXX_Marshal

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

func (*TotalDelegationRequest) XXX_Merge

func (dst *TotalDelegationRequest) XXX_Merge(src proto.Message)

func (*TotalDelegationRequest) XXX_Size

func (m *TotalDelegationRequest) XXX_Size() int

func (*TotalDelegationRequest) XXX_Unmarshal

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

type TotalDelegationResponse

type TotalDelegationResponse struct {
	Amount               *types.BigUInt `protobuf:"bytes,1,opt,name=amount" json:"amount,omitempty"`
	WeightedAmount       *types.BigUInt `protobuf:"bytes,2,opt,name=weighted_amount,json=weightedAmount" json:"weighted_amount,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*TotalDelegationResponse) Descriptor

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

func (*TotalDelegationResponse) GetAmount

func (m *TotalDelegationResponse) GetAmount() *types.BigUInt

func (*TotalDelegationResponse) GetWeightedAmount

func (m *TotalDelegationResponse) GetWeightedAmount() *types.BigUInt

func (*TotalDelegationResponse) ProtoMessage

func (*TotalDelegationResponse) ProtoMessage()

func (*TotalDelegationResponse) Reset

func (m *TotalDelegationResponse) Reset()

func (*TotalDelegationResponse) String

func (m *TotalDelegationResponse) String() string

func (*TotalDelegationResponse) XXX_DiscardUnknown

func (m *TotalDelegationResponse) XXX_DiscardUnknown()

func (*TotalDelegationResponse) XXX_Marshal

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

func (*TotalDelegationResponse) XXX_Merge

func (dst *TotalDelegationResponse) XXX_Merge(src proto.Message)

func (*TotalDelegationResponse) XXX_Size

func (m *TotalDelegationResponse) XXX_Size() int

func (*TotalDelegationResponse) XXX_Unmarshal

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

type UnbondAllRequest

type UnbondAllRequest struct {
	ValidatorAddress     *types.Address `protobuf:"bytes,1,opt,name=validator_address,json=validatorAddress" json:"validator_address,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*UnbondAllRequest) Descriptor

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

func (*UnbondAllRequest) GetValidatorAddress

func (m *UnbondAllRequest) GetValidatorAddress() *types.Address

func (*UnbondAllRequest) ProtoMessage

func (*UnbondAllRequest) ProtoMessage()

func (*UnbondAllRequest) Reset

func (m *UnbondAllRequest) Reset()

func (*UnbondAllRequest) String

func (m *UnbondAllRequest) String() string

func (*UnbondAllRequest) XXX_DiscardUnknown

func (m *UnbondAllRequest) XXX_DiscardUnknown()

func (*UnbondAllRequest) XXX_Marshal

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

func (*UnbondAllRequest) XXX_Merge

func (dst *UnbondAllRequest) XXX_Merge(src proto.Message)

func (*UnbondAllRequest) XXX_Size

func (m *UnbondAllRequest) XXX_Size() int

func (*UnbondAllRequest) XXX_Unmarshal

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

type UnbondRequest

type UnbondRequest struct {
	ValidatorAddress     *types.Address `protobuf:"bytes,1,opt,name=validator_address,json=validatorAddress" json:"validator_address,omitempty"`
	Amount               *types.BigUInt `protobuf:"bytes,2,opt,name=amount" json:"amount,omitempty"`
	Index                uint64         `protobuf:"varint,3,opt,name=index,proto3" json:"index,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*UnbondRequest) Descriptor

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

func (*UnbondRequest) GetAmount

func (m *UnbondRequest) GetAmount() *types.BigUInt

func (*UnbondRequest) GetIndex

func (m *UnbondRequest) GetIndex() uint64

func (*UnbondRequest) GetValidatorAddress

func (m *UnbondRequest) GetValidatorAddress() *types.Address

func (*UnbondRequest) ProtoMessage

func (*UnbondRequest) ProtoMessage()

func (*UnbondRequest) Reset

func (m *UnbondRequest) Reset()

func (*UnbondRequest) String

func (m *UnbondRequest) String() string

func (*UnbondRequest) XXX_DiscardUnknown

func (m *UnbondRequest) XXX_DiscardUnknown()

func (*UnbondRequest) XXX_Marshal

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

func (*UnbondRequest) XXX_Merge

func (dst *UnbondRequest) XXX_Merge(src proto.Message)

func (*UnbondRequest) XXX_Size

func (m *UnbondRequest) XXX_Size() int

func (*UnbondRequest) XXX_Unmarshal

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

type UnjailRequest

type UnjailRequest struct {
	Validator            *types.Address `protobuf:"bytes,1,opt,name=validator" json:"validator,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*UnjailRequest) Descriptor

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

func (*UnjailRequest) GetValidator

func (m *UnjailRequest) GetValidator() *types.Address

func (*UnjailRequest) ProtoMessage

func (*UnjailRequest) ProtoMessage()

func (*UnjailRequest) Reset

func (m *UnjailRequest) Reset()

func (*UnjailRequest) String

func (m *UnjailRequest) String() string

func (*UnjailRequest) XXX_DiscardUnknown

func (m *UnjailRequest) XXX_DiscardUnknown()

func (*UnjailRequest) XXX_Marshal

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

func (*UnjailRequest) XXX_Merge

func (dst *UnjailRequest) XXX_Merge(src proto.Message)

func (*UnjailRequest) XXX_Size

func (m *UnjailRequest) XXX_Size() int

func (*UnjailRequest) XXX_Unmarshal

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

type UnregisterCandidateRequest

type UnregisterCandidateRequest struct {
	Candidate            *types.Address `protobuf:"bytes,1,opt,name=candidate" json:"candidate,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*UnregisterCandidateRequest) Descriptor

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

func (*UnregisterCandidateRequest) GetCandidate

func (m *UnregisterCandidateRequest) GetCandidate() *types.Address

func (*UnregisterCandidateRequest) ProtoMessage

func (*UnregisterCandidateRequest) ProtoMessage()

func (*UnregisterCandidateRequest) Reset

func (m *UnregisterCandidateRequest) Reset()

func (*UnregisterCandidateRequest) String

func (m *UnregisterCandidateRequest) String() string

func (*UnregisterCandidateRequest) XXX_DiscardUnknown

func (m *UnregisterCandidateRequest) XXX_DiscardUnknown()

func (*UnregisterCandidateRequest) XXX_Marshal

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

func (*UnregisterCandidateRequest) XXX_Merge

func (dst *UnregisterCandidateRequest) XXX_Merge(src proto.Message)

func (*UnregisterCandidateRequest) XXX_Size

func (m *UnregisterCandidateRequest) XXX_Size() int

func (*UnregisterCandidateRequest) XXX_Unmarshal

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

type UpdateCandidateInfoRequest

type UpdateCandidateInfoRequest struct {
	Name                  string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Description           string   `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	Website               string   `protobuf:"bytes,3,opt,name=website,proto3" json:"website,omitempty"`
	MaxReferralPercentage uint64   `` /* 127-byte string literal not displayed */
	XXX_NoUnkeyedLiteral  struct{} `json:"-"`
	XXX_unrecognized      []byte   `json:"-"`
	XXX_sizecache         int32    `json:"-"`
}

func (*UpdateCandidateInfoRequest) Descriptor

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

func (*UpdateCandidateInfoRequest) GetDescription

func (m *UpdateCandidateInfoRequest) GetDescription() string

func (*UpdateCandidateInfoRequest) GetMaxReferralPercentage

func (m *UpdateCandidateInfoRequest) GetMaxReferralPercentage() uint64

func (*UpdateCandidateInfoRequest) GetName

func (m *UpdateCandidateInfoRequest) GetName() string

func (*UpdateCandidateInfoRequest) GetWebsite

func (m *UpdateCandidateInfoRequest) GetWebsite() string

func (*UpdateCandidateInfoRequest) ProtoMessage

func (*UpdateCandidateInfoRequest) ProtoMessage()

func (*UpdateCandidateInfoRequest) Reset

func (m *UpdateCandidateInfoRequest) Reset()

func (*UpdateCandidateInfoRequest) String

func (m *UpdateCandidateInfoRequest) String() string

func (*UpdateCandidateInfoRequest) XXX_DiscardUnknown

func (m *UpdateCandidateInfoRequest) XXX_DiscardUnknown()

func (*UpdateCandidateInfoRequest) XXX_Marshal

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

func (*UpdateCandidateInfoRequest) XXX_Merge

func (dst *UpdateCandidateInfoRequest) XXX_Merge(src proto.Message)

func (*UpdateCandidateInfoRequest) XXX_Size

func (m *UpdateCandidateInfoRequest) XXX_Size() int

func (*UpdateCandidateInfoRequest) XXX_Unmarshal

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

type ValidatorStatistic

type ValidatorStatistic struct {
	Address               *types.Address `protobuf:"bytes,1,opt,name=address" json:"address,omitempty"`
	WhitelistAmount       *types.BigUInt `protobuf:"bytes,2,opt,name=whitelist_amount,json=whitelistAmount" json:"whitelist_amount,omitempty"`
	LocktimeTier          LocktimeTier   `protobuf:"varint,3,opt,name=locktime_tier,json=locktimeTier,proto3,enum=dposv3.LocktimeTier" json:"locktime_tier,omitempty"`
	DelegationTotal       *types.BigUInt `protobuf:"bytes,4,opt,name=delegation_total,json=delegationTotal" json:"delegation_total,omitempty"`
	SlashPercentage       *types.BigUInt `protobuf:"bytes,5,opt,name=slash_percentage,json=slashPercentage" json:"slash_percentage,omitempty"`
	RecentlyMissedBlocks  uint64         `protobuf:"varint,6,opt,name=recently_missed_blocks,json=recentlyMissedBlocks,proto3" json:"recently_missed_blocks,omitempty"`
	UpdateWhitelistAmount *types.BigUInt `protobuf:"bytes,7,opt,name=update_whitelist_amount,json=updateWhitelistAmount" json:"update_whitelist_amount,omitempty"`
	UpdateLocktimeTier    LocktimeTier   `` /* 143-byte string literal not displayed */
	Jailed                bool           `protobuf:"varint,9,opt,name=jailed,proto3" json:"jailed,omitempty"`
	XXX_NoUnkeyedLiteral  struct{}       `json:"-"`
	XXX_unrecognized      []byte         `json:"-"`
	XXX_sizecache         int32          `json:"-"`
}

func (*ValidatorStatistic) Descriptor

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

func (*ValidatorStatistic) GetAddress

func (m *ValidatorStatistic) GetAddress() *types.Address

func (*ValidatorStatistic) GetDelegationTotal

func (m *ValidatorStatistic) GetDelegationTotal() *types.BigUInt

func (*ValidatorStatistic) GetJailed

func (m *ValidatorStatistic) GetJailed() bool

func (*ValidatorStatistic) GetLocktimeTier

func (m *ValidatorStatistic) GetLocktimeTier() LocktimeTier

func (*ValidatorStatistic) GetRecentlyMissedBlocks

func (m *ValidatorStatistic) GetRecentlyMissedBlocks() uint64

func (*ValidatorStatistic) GetSlashPercentage

func (m *ValidatorStatistic) GetSlashPercentage() *types.BigUInt

func (*ValidatorStatistic) GetUpdateLocktimeTier

func (m *ValidatorStatistic) GetUpdateLocktimeTier() LocktimeTier

func (*ValidatorStatistic) GetUpdateWhitelistAmount

func (m *ValidatorStatistic) GetUpdateWhitelistAmount() *types.BigUInt

func (*ValidatorStatistic) GetWhitelistAmount

func (m *ValidatorStatistic) GetWhitelistAmount() *types.BigUInt

func (*ValidatorStatistic) ProtoMessage

func (*ValidatorStatistic) ProtoMessage()

func (*ValidatorStatistic) Reset

func (m *ValidatorStatistic) Reset()

func (*ValidatorStatistic) String

func (m *ValidatorStatistic) String() string

func (*ValidatorStatistic) XXX_DiscardUnknown

func (m *ValidatorStatistic) XXX_DiscardUnknown()

func (*ValidatorStatistic) XXX_Marshal

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

func (*ValidatorStatistic) XXX_Merge

func (dst *ValidatorStatistic) XXX_Merge(src proto.Message)

func (*ValidatorStatistic) XXX_Size

func (m *ValidatorStatistic) XXX_Size() int

func (*ValidatorStatistic) XXX_Unmarshal

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

type WhitelistCandidateRequest

type WhitelistCandidateRequest struct {
	CandidateAddress     *types.Address `protobuf:"bytes,1,opt,name=candidate_address,json=candidateAddress" json:"candidate_address,omitempty"`
	Amount               *types.BigUInt `protobuf:"bytes,2,opt,name=amount" json:"amount,omitempty"`
	LocktimeTier         LocktimeTier   `protobuf:"varint,3,opt,name=locktime_tier,json=locktimeTier,proto3,enum=dposv3.LocktimeTier" json:"locktime_tier,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*WhitelistCandidateRequest) Descriptor

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

func (*WhitelistCandidateRequest) GetAmount

func (m *WhitelistCandidateRequest) GetAmount() *types.BigUInt

func (*WhitelistCandidateRequest) GetCandidateAddress

func (m *WhitelistCandidateRequest) GetCandidateAddress() *types.Address

func (*WhitelistCandidateRequest) GetLocktimeTier

func (m *WhitelistCandidateRequest) GetLocktimeTier() LocktimeTier

func (*WhitelistCandidateRequest) ProtoMessage

func (*WhitelistCandidateRequest) ProtoMessage()

func (*WhitelistCandidateRequest) Reset

func (m *WhitelistCandidateRequest) Reset()

func (*WhitelistCandidateRequest) String

func (m *WhitelistCandidateRequest) String() string

func (*WhitelistCandidateRequest) XXX_DiscardUnknown

func (m *WhitelistCandidateRequest) XXX_DiscardUnknown()

func (*WhitelistCandidateRequest) XXX_Marshal

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

func (*WhitelistCandidateRequest) XXX_Merge

func (dst *WhitelistCandidateRequest) XXX_Merge(src proto.Message)

func (*WhitelistCandidateRequest) XXX_Size

func (m *WhitelistCandidateRequest) XXX_Size() int

func (*WhitelistCandidateRequest) XXX_Unmarshal

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

Jump to

Keyboard shortcuts

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