mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-06 01:32:18 +00:00
24 lines
787 B
Go
24 lines
787 B
Go
// Package params defines important constants that are essential to the beacon chain.
|
|
package params
|
|
|
|
const (
|
|
// AttesterCount is the number of attesters per committee/
|
|
AttesterCount = 32
|
|
// AttesterReward determines how much ETH attesters get for performing their duty.
|
|
AttesterReward = 1
|
|
// EpochLength is the beacon chain epoch length in slots.
|
|
EpochLength = 64
|
|
// ShardCount is a fixed number.
|
|
ShardCount = 1024
|
|
// DefaultBalance of a validator.
|
|
DefaultBalance = 32000
|
|
// MaxValidators in the protocol.
|
|
MaxValidators = 4194304
|
|
// 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
|
|
)
|