2018-07-14 02:15:37 +00:00
|
|
|
package params
|
2018-07-11 22:29:31 +00:00
|
|
|
|
|
|
|
const (
|
|
|
|
// AttesterCount is the number of attesters per committee/
|
|
|
|
AttesterCount = 32
|
|
|
|
// AttesterReward determines how much ETH attesters get for performing their duty.
|
|
|
|
AttesterReward = 1
|
2018-07-29 16:22:15 +00:00
|
|
|
// EpochLength is the beacon chain epoch length in slots.
|
|
|
|
EpochLength = 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-07-11 22:29:31 +00:00
|
|
|
// DefaultBalance of a validator.
|
|
|
|
DefaultBalance = 32000
|
|
|
|
// 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-07-11 22:29:31 +00:00
|
|
|
)
|