mirror of
https://github.com/status-im/eth2.0-specs.git
synced 2025-01-15 05:04:32 +00:00
64f012b276
Co-authored-by: Chih Cheng Liang <chihchengliang@gmail.com> Co-authored-by: Danny Ryan <dannyjryan@gmail.com> Co-authored-by: Dmitrii Shmatko <leodex23@gmail.com> Co-authored-by: Jannik Luhn <jannik@brainbot.com> Co-authored-by: Paul Hauner <paul@paulhauner.com> Co-authored-by: protolambda <proto@protolambda.com>
7 lines
232 B
Python
7 lines
232 B
Python
SLOTS_PER_EPOCH = 2**6 # 64 slots, 6.4 minutes
|
|
FAR_FUTURE_EPOCH = 2**64 - 1 # uint64 max
|
|
SHARD_COUNT = 2**10 # 1024
|
|
TARGET_COMMITTEE_SIZE = 2**7 # 128 validators
|
|
ACTIVATION_EXIT_DELAY = 2**2 # 4 epochs
|
|
SHUFFLE_ROUND_COUNT = 90
|