prysm-pulse/beacon-chain/params/config.go
Raul Jordan 83569f1342 shared: Abstract Service Registry Into Shared Folder, Add Beacon Node and Beacon Entry Point (#268)
Former-commit-id: 406ba2f1e65ec58e822fcf1b9d54c44ba51a559c [formerly 52aebe050663c4dc73fc56e5e4c6846620267f1f]
Former-commit-id: c959a9fda119e4403136ac4f8d1b345d464ab5df
2018-07-13 21:15:37 -05:00

21 lines
599 B
Go

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 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
)