2020-06-27 00:20:24 +00:00
|
|
|
package params
|
|
|
|
|
2021-09-10 19:59:43 +00:00
|
|
|
const AltairE2EForkEpoch = 6
|
2021-08-13 05:11:11 +00:00
|
|
|
|
2020-06-27 00:20:24 +00:00
|
|
|
// UseE2EConfig for beacon chain services.
|
|
|
|
func UseE2EConfig() {
|
|
|
|
beaconConfig = E2ETestConfig()
|
2020-07-27 04:48:36 +00:00
|
|
|
|
|
|
|
cfg := BeaconNetworkConfig().Copy()
|
|
|
|
OverrideBeaconNetworkConfig(cfg)
|
2020-06-27 00:20:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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
|
2020-08-02 21:30:59 +00:00
|
|
|
e2eConfig.GenesisDelay = 10 // 10 seconds so E2E has enough time to process deposits and get started.
|
2021-09-15 22:04:13 +00:00
|
|
|
e2eConfig.ChurnLimitQuotient = 65536
|
2020-06-27 00:20:24 +00:00
|
|
|
|
|
|
|
// Time parameters.
|
2020-08-01 17:22:53 +00:00
|
|
|
e2eConfig.SecondsPerSlot = 10
|
|
|
|
e2eConfig.SlotsPerEpoch = 6
|
2021-08-09 16:35:46 +00:00
|
|
|
e2eConfig.SqrRootSlotsPerEpoch = 2
|
2020-06-27 00:20:24 +00:00
|
|
|
e2eConfig.SecondsPerETH1Block = 2
|
|
|
|
e2eConfig.Eth1FollowDistance = 4
|
2020-08-01 17:22:53 +00:00
|
|
|
e2eConfig.EpochsPerEth1VotingPeriod = 2
|
2020-06-27 00:20:24 +00:00
|
|
|
e2eConfig.ShardCommitteePeriod = 4
|
2020-08-01 17:22:53 +00:00
|
|
|
e2eConfig.MaxSeedLookahead = 1
|
|
|
|
|
2020-12-18 22:22:48 +00:00
|
|
|
// PoW parameters.
|
|
|
|
e2eConfig.DepositChainID = 1337 // Chain ID of eth1 dev net.
|
|
|
|
e2eConfig.DepositNetworkID = 1337 // Network ID of eth1 dev net.
|
|
|
|
|
2021-08-13 05:11:11 +00:00
|
|
|
// Altair Fork Parameters.
|
|
|
|
e2eConfig.AltairForkEpoch = AltairE2EForkEpoch
|
|
|
|
|
2020-08-30 16:39:53 +00:00
|
|
|
// Prysm constants.
|
2021-02-01 19:00:06 +00:00
|
|
|
e2eConfig.ConfigName = ConfigNames[EndToEnd]
|
2020-08-30 16:39:53 +00:00
|
|
|
|
2020-06-27 00:20:24 +00:00
|
|
|
return e2eConfig
|
|
|
|
}
|