mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
21 lines
599 B
Go
21 lines
599 B
Go
|
package beacon
|
||
|
|
||
|
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 blocks.
|
||
|
EpochLength = 5
|
||
|
// ShardCount is a fixed number.
|
||
|
ShardCount = 20
|
||
|
// DefaultBalance of a validator.
|
||
|
DefaultBalance = 32000
|
||
|
// DefaultSwitchDynasty value.
|
||
|
DefaultSwitchDynasty = 9999999999999999999
|
||
|
// MaxValidators in the protocol.
|
||
|
MaxValidators = 2 ^ 24
|
||
|
// NotariesPerCrosslink fixed to 100.
|
||
|
NotariesPerCrosslink = 100
|
||
|
)
|