mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 21:38:05 -05:00
20 lines
555 B
Go
20 lines
555 B
Go
package params
|
|
|
|
// InteropConfig provides a generic config suitable for interop testing.
|
|
func InteropConfig() *BeaconChainConfig {
|
|
c := MainnetConfig()
|
|
|
|
// Prysm constants.
|
|
c.ConfigName = InteropName
|
|
c.GenesisForkVersion = []byte{0, 0, 0, 235}
|
|
c.AltairForkVersion = []byte{1, 0, 0, 235}
|
|
c.BellatrixForkVersion = []byte{2, 0, 0, 235}
|
|
c.CapellaForkVersion = []byte{3, 0, 0, 235}
|
|
c.DenebForkVersion = []byte{4, 0, 0, 235}
|
|
c.ElectraForkVersion = []byte{5, 0, 0, 235}
|
|
c.FuluForkVersion = []byte{6, 0, 0, 235}
|
|
|
|
c.InitializeForkSchedule()
|
|
return c
|
|
}
|