mirror of
https://github.com/status-im/eth2.0-specs.git
synced 2025-01-09 10:22:00 +00:00
5576d0e685
* Moved configuration into network preset instead of constants. Now that `MAX_CHUNK_SIZE` and `GOSSIP_MAX_SIZE` are in configuration, we no longer need separate constants to represent them in the spec when they change in Bellatrix. I've changed the usage, and put the values into the presets, but I'm not sure if I've updated the descriptions in the best way... This is following on from the work in #3375 where a number of constants got moved into configuration, so we no longer need these constants to be separately represented, they can simply be updated in presets. * Update presets/minimal/bellatrix.yaml Co-authored-by: Hsiao-Wei Wang <hsiaowei.eth@gmail.com> * Update presets/mainnet/bellatrix.yaml Co-authored-by: Hsiao-Wei Wang <hsiaowei.eth@gmail.com> * Moved preset items into the correct section and updated TOC. It looked like the items listed in configuration about the max size and chunk size were no longer needed since we're updating preset values now and the preset changes seem to only be listed in the changes at the top. * review feedback * hopefully correct this time! Moved the 2 fields from configs into presets completely as suggested. * WIP - changing back to being in config and updating the phase 0 value... I think this should be close but want to see what's outstanding. * fix intellij's formatting of table. * more fixes --------- Co-authored-by: Hsiao-Wei Wang <hsiaowei.eth@gmail.com>
88 lines
2.4 KiB
YAML
88 lines
2.4 KiB
YAML
# Minimal preset - Phase0
|
|
|
|
# Misc
|
|
# ---------------------------------------------------------------
|
|
# [customized] Just 4 committees for slot for testing purposes
|
|
MAX_COMMITTEES_PER_SLOT: 4
|
|
# [customized] insecure, but fast
|
|
TARGET_COMMITTEE_SIZE: 4
|
|
# 2**11 (= 2,048)
|
|
MAX_VALIDATORS_PER_COMMITTEE: 2048
|
|
# [customized] Faster, but insecure.
|
|
SHUFFLE_ROUND_COUNT: 10
|
|
# 4
|
|
HYSTERESIS_QUOTIENT: 4
|
|
# 1 (minus 0.25)
|
|
HYSTERESIS_DOWNWARD_MULTIPLIER: 1
|
|
# 5 (plus 1.25)
|
|
HYSTERESIS_UPWARD_MULTIPLIER: 5
|
|
|
|
|
|
# Gwei values
|
|
# ---------------------------------------------------------------
|
|
# 2**0 * 10**9 (= 1,000,000,000) Gwei
|
|
MIN_DEPOSIT_AMOUNT: 1000000000
|
|
# 2**5 * 10**9 (= 32,000,000,000) Gwei
|
|
MAX_EFFECTIVE_BALANCE: 32000000000
|
|
# 2**0 * 10**9 (= 1,000,000,000) Gwei
|
|
EFFECTIVE_BALANCE_INCREMENT: 1000000000
|
|
|
|
|
|
# Time parameters
|
|
# ---------------------------------------------------------------
|
|
# 2**0 (= 1) slots 6 seconds
|
|
MIN_ATTESTATION_INCLUSION_DELAY: 1
|
|
# [customized] fast epochs
|
|
SLOTS_PER_EPOCH: 8
|
|
# 2**0 (= 1) epochs
|
|
MIN_SEED_LOOKAHEAD: 1
|
|
# 2**2 (= 4) epochs
|
|
MAX_SEED_LOOKAHEAD: 4
|
|
# [customized] higher frequency new deposits from eth1 for testing
|
|
EPOCHS_PER_ETH1_VOTING_PERIOD: 4
|
|
# [customized] smaller state
|
|
SLOTS_PER_HISTORICAL_ROOT: 64
|
|
# 2**2 (= 4) epochs
|
|
MIN_EPOCHS_TO_INACTIVITY_PENALTY: 4
|
|
|
|
|
|
# State list lengths
|
|
# ---------------------------------------------------------------
|
|
# [customized] smaller state
|
|
EPOCHS_PER_HISTORICAL_VECTOR: 64
|
|
# [customized] smaller state
|
|
EPOCHS_PER_SLASHINGS_VECTOR: 64
|
|
# 2**24 (= 16,777,216) historical roots
|
|
HISTORICAL_ROOTS_LIMIT: 16777216
|
|
# 2**40 (= 1,099,511,627,776) validator spots
|
|
VALIDATOR_REGISTRY_LIMIT: 1099511627776
|
|
|
|
|
|
# Reward and penalty quotients
|
|
# ---------------------------------------------------------------
|
|
# 2**6 (= 64)
|
|
BASE_REWARD_FACTOR: 64
|
|
# 2**9 (= 512)
|
|
WHISTLEBLOWER_REWARD_QUOTIENT: 512
|
|
# 2**3 (= 8)
|
|
PROPOSER_REWARD_QUOTIENT: 8
|
|
# [customized] 2**25 (= 33,554,432)
|
|
INACTIVITY_PENALTY_QUOTIENT: 33554432
|
|
# [customized] 2**6 (= 64)
|
|
MIN_SLASHING_PENALTY_QUOTIENT: 64
|
|
# [customized] 2 (lower safety margin than Phase 0 genesis but different than mainnet config for testing)
|
|
PROPORTIONAL_SLASHING_MULTIPLIER: 2
|
|
|
|
|
|
# Max operations per block
|
|
# ---------------------------------------------------------------
|
|
# 2**4 (= 16)
|
|
MAX_PROPOSER_SLASHINGS: 16
|
|
# 2**1 (= 2)
|
|
MAX_ATTESTER_SLASHINGS: 2
|
|
# 2**7 (= 128)
|
|
MAX_ATTESTATIONS: 128
|
|
# 2**4 (= 16)
|
|
MAX_DEPOSITS: 16
|
|
# 2**4 (= 16)
|
|
MAX_VOLUNTARY_EXITS: 16 |