mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-08 23:18:15 -05:00
* fork/version detection and unmarshaling support * Update config/params/config.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * Update proto/detect/configfork.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * PR feedback * move ssz initialization into the detect package * clarify comment * VersionForEpoch is much simpler/clearer in reverse * simpler VersionForEpoch; build AllConfigs in init * use fieldparams for Version * Update proto/detect/configfork_test.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * remove custom ForkName type, use runtime/version * pr cleanup * random fix from bad gh ui suggestion; privatize * privatize fieldSpec methods; + unit tests * Update proto/detect/configfork.go Co-authored-by: Potuz <potuz@prysmaticlabs.com> * fix bad github ui suggestion * ensure unique versions for simpler config match * fmt & adding unit test for ByState() * table-driven unit test for ByState * TestUnmarshalState * OrderedSchedule -> network/forks per PR feedback * goimports * lint fixes * move proto/detect -> ssz/encoding/detect * use typeUndefined in String * backport config tests from e2e PR * fix config parity test; make debugging it easier * lint * fix fork schedule initialization * cleanup * fix build * fix big ole derp * anything for you, deep source * goimportsss * InitializeForkSchedule in LoadChainConfigFile * PR feedback Co-authored-by: kasey <kasey@users.noreply.github.com> Co-authored-by: Radosław Kapka <rkapka@wp.pl> Co-authored-by: Potuz <potuz@prysmaticlabs.com>
99 lines
2.9 KiB
Go
99 lines
2.9 KiB
Go
package params
|
|
|
|
const (
|
|
altairE2EForkEpoch = 6
|
|
bellatrixE2EForkEpoch = 8 //nolint:deadcode
|
|
)
|
|
|
|
// UseE2EConfig for beacon chain services.
|
|
func UseE2EConfig() {
|
|
beaconConfig = E2ETestConfig()
|
|
|
|
cfg := BeaconNetworkConfig().Copy()
|
|
OverrideBeaconNetworkConfig(cfg)
|
|
}
|
|
|
|
// UseE2EMainnetConfig for beacon chain services.
|
|
func UseE2EMainnetConfig() {
|
|
beaconConfig = E2EMainnetTestConfig()
|
|
|
|
cfg := BeaconNetworkConfig().Copy()
|
|
OverrideBeaconNetworkConfig(cfg)
|
|
}
|
|
|
|
// E2ETestConfig retrieves the configurations made specifically for E2E testing.
|
|
// Warning: This config is only for testing, it is not meant for use outside of E2E.
|
|
func E2ETestConfig() *BeaconChainConfig {
|
|
e2eConfig := MinimalSpecConfig()
|
|
|
|
// Misc.
|
|
e2eConfig.MinGenesisActiveValidatorCount = 256
|
|
e2eConfig.GenesisDelay = 10 // 10 seconds so E2E has enough time to process deposits and get started.
|
|
e2eConfig.ChurnLimitQuotient = 65536
|
|
|
|
// Time parameters.
|
|
e2eConfig.SecondsPerSlot = 10
|
|
e2eConfig.SlotsPerEpoch = 6
|
|
e2eConfig.SqrRootSlotsPerEpoch = 2
|
|
e2eConfig.SecondsPerETH1Block = 2
|
|
e2eConfig.Eth1FollowDistance = 4
|
|
e2eConfig.EpochsPerEth1VotingPeriod = 2
|
|
e2eConfig.ShardCommitteePeriod = 4
|
|
e2eConfig.MaxSeedLookahead = 1
|
|
|
|
// PoW parameters.
|
|
e2eConfig.DepositChainID = 1337 // Chain ID of eth1 dev net.
|
|
e2eConfig.DepositNetworkID = 1337 // Network ID of eth1 dev net.
|
|
|
|
// Altair Fork Parameters.
|
|
e2eConfig.AltairForkEpoch = altairE2EForkEpoch
|
|
|
|
// Prysm constants.
|
|
e2eConfig.ConfigName = ConfigNames[EndToEnd]
|
|
e2eConfig.GenesisForkVersion = []byte{0, 0, 0, 253}
|
|
e2eConfig.AltairForkVersion = []byte{1, 0, 0, 253}
|
|
e2eConfig.BellatrixForkVersion = []byte{2, 0, 0, 253}
|
|
e2eConfig.ShardingForkVersion = []byte{3, 0, 0, 253}
|
|
|
|
e2eConfig.InitializeForkSchedule()
|
|
return e2eConfig
|
|
}
|
|
|
|
func E2EMainnetTestConfig() *BeaconChainConfig {
|
|
e2eConfig := MainnetConfig().Copy()
|
|
|
|
// Misc.
|
|
e2eConfig.MinGenesisActiveValidatorCount = 256
|
|
e2eConfig.GenesisDelay = 25 // 25 seconds so E2E has enough time to process deposits and get started.
|
|
e2eConfig.ChurnLimitQuotient = 65536
|
|
|
|
// Time parameters.
|
|
e2eConfig.SecondsPerSlot = 6
|
|
e2eConfig.SqrRootSlotsPerEpoch = 5
|
|
e2eConfig.SecondsPerETH1Block = 2
|
|
e2eConfig.Eth1FollowDistance = 4
|
|
e2eConfig.ShardCommitteePeriod = 4
|
|
|
|
// PoW parameters.
|
|
e2eConfig.DepositChainID = 1337 // Chain ID of eth1 dev net.
|
|
e2eConfig.DepositNetworkID = 1337 // Network ID of eth1 dev net.
|
|
|
|
// Altair Fork Parameters.
|
|
e2eConfig.AltairForkEpoch = altairE2EForkEpoch
|
|
|
|
// Prysm constants.
|
|
e2eConfig.ConfigName = ConfigNames[EndToEnd]
|
|
e2eConfig.GenesisForkVersion = []byte{0, 0, 0, 254}
|
|
e2eConfig.AltairForkVersion = []byte{1, 0, 0, 254}
|
|
e2eConfig.BellatrixForkVersion = []byte{2, 0, 0, 254}
|
|
e2eConfig.ShardingForkVersion = []byte{3, 0, 0, 254}
|
|
|
|
e2eConfig.InitializeForkSchedule()
|
|
return e2eConfig
|
|
}
|
|
|
|
// E2EMainnetConfigYaml returns the e2e config in yaml format.
|
|
func E2EMainnetConfigYaml() []byte {
|
|
return ConfigToYaml(E2EMainnetTestConfig())
|
|
}
|