2018-08-09 18:25:48 +00:00
|
|
|
// Package params defines important constants that are essential to the beacon chain.
|
2018-07-14 02:15:37 +00:00
|
|
|
package params
|
2018-07-11 22:29:31 +00:00
|
|
|
|
|
|
|
const (
|
|
|
|
// AttesterReward determines how much ETH attesters get for performing their duty.
|
|
|
|
AttesterReward = 1
|
2018-08-24 04:09:59 +00:00
|
|
|
// CycleLength is the beacon chain cycle length in slots.
|
2018-08-14 00:58:37 +00:00
|
|
|
CycleLength = 64
|
2018-07-11 22:29:31 +00:00
|
|
|
// ShardCount is a fixed number.
|
2018-07-29 17:03:03 +00:00
|
|
|
ShardCount = 1024
|
2018-08-14 00:58:37 +00:00
|
|
|
// DefaultBalance of a validator in ETH.
|
|
|
|
DefaultBalance = 32
|
2018-07-11 22:29:31 +00:00
|
|
|
// MaxValidators in the protocol.
|
2018-07-21 17:20:00 +00:00
|
|
|
MaxValidators = 4194304
|
2018-07-29 17:03:03 +00:00
|
|
|
// SlotDuration in seconds.
|
|
|
|
SlotDuration = 8
|
|
|
|
// Cofactor is used cutoff algorithm to select height and shard cutoffs.
|
|
|
|
Cofactor = 19
|
|
|
|
// MinCommiteeSize is the minimal number of validator needs to be in a committee.
|
|
|
|
MinCommiteeSize = 128
|
2018-08-14 00:58:37 +00:00
|
|
|
// DefaultEndDynasty is the upper bound of dynasty. We use it to track queued and exited validators.
|
|
|
|
DefaultEndDynasty = 9999999999999999999
|
2018-08-18 03:34:56 +00:00
|
|
|
// BootstrappedValidatorsCount is the number of validators we seed the first crystallized
|
|
|
|
// state with. This number has yet to be decided by research and is arbitrary for now.
|
|
|
|
BootstrappedValidatorsCount = 100
|
2018-07-11 22:29:31 +00:00
|
|
|
)
|