Documentation ¶
Index ¶
Constants ¶
View Source
const ( // Unknown .. Unknown Candidacy = iota // Candidate .. Candidate = iota // NotCandidate .. NotCandidate // ElectedAndSigning .. ElectedAndSigning // ElectedAndFellBelowThreshold .. ElectedAndFellBelowThreshold )
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Candidacy ¶ added in v1.3.5
type Candidacy byte
Candidacy is a more semantically meaningful value that is derived from core protocol logic but meant more for the presentation of user, like at RPC
func ValidatorStatus ¶ added in v1.3.5
ValidatorStatus ..
type Eligibility ¶ added in v1.3.4
type Eligibility byte
Eligibility represents ability to participate in EPoS auction that occurs just once an epoch on beaconchain
const ( // Nil is a default state that represents a no-op Nil Eligibility = iota // Active means allowed in epos auction Active // Inactive means validator did not sign enough over 66% // of the time in an epoch and so they are removed from // the possibility of being in the epos auction, which happens // only once an epoch and only // by beaconchain, aka shard.BeaconChainShardID Inactive // Banned records whether this validator is banned // from the network because they double-signed // it can never be undone Banned )
type SlotOrder ¶
type SlotOrder struct { Stake *big.Int `json:"stake"` SpreadAmong []shard.BlsPublicKey `json:"keys-at-auction"` Percentage numeric.Dec `json:"percentage-of-total-auction-stake"` }
SlotOrder ..
type SlotPurchase ¶
type SlotPurchase struct { Addr common.Address `json:"slot-owner"` Key shard.BlsPublicKey `json:"bls-public-key"` Stake numeric.Dec `json:"eposed-stake"` }
SlotPurchase ..
func (SlotPurchase) MarshalJSON ¶ added in v1.3.5
func (p SlotPurchase) MarshalJSON() ([]byte, error)
MarshalJSON ..
Click to show internal directories.
Click to hide internal directories.