Documentation ¶
Index ¶
- Variables
- type Account
- func (*Account) Descriptor() ([]byte, []int)
- func (m *Account) GetBalance() string
- func (*Account) ProtoMessage()
- func (m *Account) Reset()
- func (m *Account) String() string
- func (m *Account) XXX_DiscardUnknown()
- func (m *Account) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *Account) XXX_Merge(src proto.Message)
- func (m *Account) XXX_Size() int
- func (m *Account) XXX_Unmarshal(b []byte) error
- type Admin
- func (*Admin) Descriptor() ([]byte, []int)
- func (m *Admin) GetBlockReward() string
- func (m *Admin) GetEpochReward() string
- func (m *Admin) GetFoundationBonus() string
- func (m *Admin) GetFoundationBonusLastEpoch() uint64
- func (m *Admin) GetNumDelegatesForEpochReward() uint64
- func (m *Admin) GetNumDelegatesForFoundationBonus() uint64
- func (m *Admin) GetProductivityThreshold() uint64
- func (*Admin) ProtoMessage()
- func (m *Admin) Reset()
- func (m *Admin) String() string
- func (m *Admin) XXX_DiscardUnknown()
- func (m *Admin) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *Admin) XXX_Merge(src proto.Message)
- func (m *Admin) XXX_Size() int
- func (m *Admin) XXX_Unmarshal(b []byte) error
- type Exempt
- func (*Exempt) Descriptor() ([]byte, []int)
- func (m *Exempt) GetAddrs() [][]byte
- func (*Exempt) ProtoMessage()
- func (m *Exempt) Reset()
- func (m *Exempt) String() string
- func (m *Exempt) XXX_DiscardUnknown()
- func (m *Exempt) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *Exempt) XXX_Merge(src proto.Message)
- func (m *Exempt) XXX_Size() int
- func (m *Exempt) XXX_Unmarshal(b []byte) error
- type Fund
- func (*Fund) Descriptor() ([]byte, []int)
- func (m *Fund) GetTotalBalance() string
- func (m *Fund) GetUnclaimedBalance() string
- func (*Fund) ProtoMessage()
- func (m *Fund) Reset()
- func (m *Fund) String() string
- func (m *Fund) XXX_DiscardUnknown()
- func (m *Fund) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *Fund) XXX_Merge(src proto.Message)
- func (m *Fund) XXX_Size() int
- func (m *Fund) XXX_Unmarshal(b []byte) error
- type RewardHistory
- func (*RewardHistory) Descriptor() ([]byte, []int)
- func (*RewardHistory) ProtoMessage()
- func (m *RewardHistory) Reset()
- func (m *RewardHistory) String() string
- func (m *RewardHistory) XXX_DiscardUnknown()
- func (m *RewardHistory) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *RewardHistory) XXX_Merge(src proto.Message)
- func (m *RewardHistory) XXX_Size() int
- func (m *RewardHistory) XXX_Unmarshal(b []byte) error
- type RewardLog
- func (*RewardLog) Descriptor() ([]byte, []int)
- func (m *RewardLog) GetAddr() string
- func (m *RewardLog) GetAmount() string
- func (m *RewardLog) GetType() RewardLog_RewardType
- func (*RewardLog) ProtoMessage()
- func (m *RewardLog) Reset()
- func (m *RewardLog) String() string
- func (m *RewardLog) XXX_DiscardUnknown()
- func (m *RewardLog) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *RewardLog) XXX_Merge(src proto.Message)
- func (m *RewardLog) XXX_Size() int
- func (m *RewardLog) XXX_Unmarshal(b []byte) error
- type RewardLog_RewardType
Constants ¶
This section is empty.
Variables ¶
View Source
var RewardLog_RewardType_name = map[int32]string{
0: "BLOCK_REWARD",
1: "EPOCH_REWARD",
2: "FOUNDATION_BONUS",
}
View Source
var RewardLog_RewardType_value = map[string]int32{
"BLOCK_REWARD": 0,
"EPOCH_REWARD": 1,
"FOUNDATION_BONUS": 2,
}
Functions ¶
This section is empty.
Types ¶
type Account ¶
type Account struct { Balance string `protobuf:"bytes,1,opt,name=balance,proto3" json:"balance,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*Account) Descriptor ¶
func (*Account) GetBalance ¶
func (*Account) ProtoMessage ¶
func (*Account) ProtoMessage()
func (*Account) XXX_DiscardUnknown ¶
func (m *Account) XXX_DiscardUnknown()
func (*Account) XXX_Marshal ¶
func (*Account) XXX_Unmarshal ¶
type Admin ¶
type Admin struct { BlockReward string `protobuf:"bytes,1,opt,name=blockReward,proto3" json:"blockReward,omitempty"` EpochReward string `protobuf:"bytes,2,opt,name=epochReward,proto3" json:"epochReward,omitempty"` NumDelegatesForEpochReward uint64 `protobuf:"varint,3,opt,name=numDelegatesForEpochReward,proto3" json:"numDelegatesForEpochReward,omitempty"` FoundationBonus string `protobuf:"bytes,4,opt,name=foundationBonus,proto3" json:"foundationBonus,omitempty"` NumDelegatesForFoundationBonus uint64 `protobuf:"varint,5,opt,name=numDelegatesForFoundationBonus,proto3" json:"numDelegatesForFoundationBonus,omitempty"` FoundationBonusLastEpoch uint64 `protobuf:"varint,6,opt,name=foundationBonusLastEpoch,proto3" json:"foundationBonusLastEpoch,omitempty"` ProductivityThreshold uint64 `protobuf:"varint,7,opt,name=productivityThreshold,proto3" json:"productivityThreshold,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*Admin) Descriptor ¶
func (*Admin) GetBlockReward ¶
func (*Admin) GetEpochReward ¶
func (*Admin) GetFoundationBonus ¶ added in v0.5.0
func (*Admin) GetFoundationBonusLastEpoch ¶ added in v0.5.0
func (*Admin) GetNumDelegatesForEpochReward ¶ added in v0.5.0
func (*Admin) GetNumDelegatesForFoundationBonus ¶ added in v0.5.0
func (*Admin) GetProductivityThreshold ¶ added in v0.5.0
func (*Admin) ProtoMessage ¶
func (*Admin) ProtoMessage()
func (*Admin) XXX_DiscardUnknown ¶
func (m *Admin) XXX_DiscardUnknown()
func (*Admin) XXX_Marshal ¶
func (*Admin) XXX_Unmarshal ¶
type Exempt ¶ added in v0.5.0
type Exempt struct { Addrs [][]byte `protobuf:"bytes,1,rep,name=addrs,proto3" json:"addrs,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*Exempt) Descriptor ¶ added in v0.5.0
func (*Exempt) ProtoMessage ¶ added in v0.5.0
func (*Exempt) ProtoMessage()
func (*Exempt) XXX_DiscardUnknown ¶ added in v0.5.0
func (m *Exempt) XXX_DiscardUnknown()
func (*Exempt) XXX_Marshal ¶ added in v0.5.0
func (*Exempt) XXX_Unmarshal ¶ added in v0.5.0
type Fund ¶
type Fund struct { TotalBalance string `protobuf:"bytes,1,opt,name=totalBalance,proto3" json:"totalBalance,omitempty"` UnclaimedBalance string `protobuf:"bytes,2,opt,name=unclaimedBalance,proto3" json:"unclaimedBalance,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*Fund) Descriptor ¶
func (*Fund) GetTotalBalance ¶
func (*Fund) GetUnclaimedBalance ¶
func (*Fund) ProtoMessage ¶
func (*Fund) ProtoMessage()
func (*Fund) XXX_DiscardUnknown ¶
func (m *Fund) XXX_DiscardUnknown()
func (*Fund) XXX_Unmarshal ¶
type RewardHistory ¶
type RewardHistory struct { XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*RewardHistory) Descriptor ¶
func (*RewardHistory) Descriptor() ([]byte, []int)
func (*RewardHistory) ProtoMessage ¶
func (*RewardHistory) ProtoMessage()
func (*RewardHistory) Reset ¶
func (m *RewardHistory) Reset()
func (*RewardHistory) String ¶
func (m *RewardHistory) String() string
func (*RewardHistory) XXX_DiscardUnknown ¶
func (m *RewardHistory) XXX_DiscardUnknown()
func (*RewardHistory) XXX_Marshal ¶
func (m *RewardHistory) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*RewardHistory) XXX_Merge ¶
func (m *RewardHistory) XXX_Merge(src proto.Message)
func (*RewardHistory) XXX_Size ¶
func (m *RewardHistory) XXX_Size() int
func (*RewardHistory) XXX_Unmarshal ¶
func (m *RewardHistory) XXX_Unmarshal(b []byte) error
type RewardLog ¶ added in v0.5.0
type RewardLog struct { Type RewardLog_RewardType `protobuf:"varint,1,opt,name=type,proto3,enum=rewardingpb.RewardLog_RewardType" json:"type,omitempty"` Addr string `protobuf:"bytes,2,opt,name=addr,proto3" json:"addr,omitempty"` Amount string `protobuf:"bytes,3,opt,name=amount,proto3" json:"amount,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*RewardLog) Descriptor ¶ added in v0.5.0
func (*RewardLog) GetType ¶ added in v0.5.0
func (m *RewardLog) GetType() RewardLog_RewardType
func (*RewardLog) ProtoMessage ¶ added in v0.5.0
func (*RewardLog) ProtoMessage()
func (*RewardLog) XXX_DiscardUnknown ¶ added in v0.5.0
func (m *RewardLog) XXX_DiscardUnknown()
func (*RewardLog) XXX_Marshal ¶ added in v0.5.0
func (*RewardLog) XXX_Unmarshal ¶ added in v0.5.0
type RewardLog_RewardType ¶ added in v0.5.0
type RewardLog_RewardType int32
const ( RewardLog_BLOCK_REWARD RewardLog_RewardType = 0 RewardLog_EPOCH_REWARD RewardLog_RewardType = 1 RewardLog_FOUNDATION_BONUS RewardLog_RewardType = 2 )
func (RewardLog_RewardType) EnumDescriptor ¶ added in v0.5.0
func (RewardLog_RewardType) EnumDescriptor() ([]byte, []int)
func (RewardLog_RewardType) String ¶ added in v0.5.0
func (x RewardLog_RewardType) String() string
Click to show internal directories.
Click to hide internal directories.