mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 10:41:19 +00:00
f038d782c2
* move chain/network id to beacon config * go fmt * improve tests * validator params * update deposit contract address * complete tests * re-arrange comments * Less mis-leading comment, per Terence's review Co-authored-by: Raul Jordan <raul@prysmaticlabs.com>
35 lines
1.3 KiB
Go
35 lines
1.3 KiB
Go
package params
|
|
|
|
// UsePyrmontNetworkConfig uses the Pyrmont specific
|
|
// network config.
|
|
func UsePyrmontNetworkConfig() {
|
|
cfg := BeaconNetworkConfig().Copy()
|
|
cfg.ContractDeploymentBlock = 3743587
|
|
cfg.BootstrapNodes = []string{
|
|
"enr:-Ku4QOA5OGWObY8ep_x35NlGBEj7IuQULTjkgxC_0G1AszqGEA0Wn2RNlyLFx9zGTNB1gdFBA6ZDYxCgIza1uJUUOj4Dh2F0dG5ldHOIAAAAAAAAAACEZXRoMpDVTPWXAAAgCf__________gmlkgnY0gmlwhDQPSjiJc2VjcDI1NmsxoQM6yTQB6XGWYJbI7NZFBjp4Yb9AYKQPBhVrfUclQUobb4N1ZHCCIyg",
|
|
"enr:-Ku4QOksdA2tabOGrfOOr6NynThMoio6Ggka2oDPqUuFeWCqcRM2alNb8778O_5bK95p3EFt0cngTUXm2H7o1jkSJ_8Dh2F0dG5ldHOIAAAAAAAAAACEZXRoMpDVTPWXAAAgCf__________gmlkgnY0gmlwhDaa13aJc2VjcDI1NmsxoQKdNQJvnohpf0VO0ZYCAJxGjT0uwJoAHbAiBMujGjK0SoN1ZHCCIyg",
|
|
}
|
|
OverrideBeaconNetworkConfig(cfg)
|
|
}
|
|
|
|
// UsePyrmontConfig sets the main beacon chain
|
|
// config for Pyrmont.
|
|
func UsePyrmontConfig() {
|
|
beaconConfig = PyrmontConfig()
|
|
}
|
|
|
|
// PyrmontConfig defines the config for the
|
|
// Pyrmont testnet.
|
|
func PyrmontConfig() *BeaconChainConfig {
|
|
cfg := MainnetConfig().Copy()
|
|
cfg.MinGenesisTime = 1605700800
|
|
cfg.GenesisDelay = 432000
|
|
cfg.NetworkName = "pyrmont"
|
|
cfg.GenesisForkVersion = []byte{0x00, 0x00, 0x20, 0x09}
|
|
cfg.SecondsPerETH1Block = 14
|
|
cfg.DepositChainID = 5
|
|
cfg.DepositNetworkID = 5
|
|
cfg.DepositContractAddress = "0x8c5fecdC472E27Bc447696F431E425D02dd46a8c"
|
|
return cfg
|
|
}
|