Skip to content

Commit

Permalink
update values to devnet6
Browse files Browse the repository at this point in the history
  • Loading branch information
MatusKysel committed Feb 5, 2025
1 parent 64eb85c commit 3d5e8bd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/networks.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func (n Network) GenesisForkVersion() phase0.Version {
case HoleskyNetwork:
return phase0.Version{0x01, 0x01, 0x70, 0x00}
case MekongNetwork:
return phase0.Version{0x10, 0x63, 0x76, 0x24}
return phase0.Version{0x10, 0x58, 0x55, 0x57}
case MainNetwork:
return phase0.Version{0, 0, 0, 0}
default:
Expand All @@ -59,7 +59,7 @@ func (n Network) GenesisValidatorsRoot() phase0.Root {
rootBytes, _ := hex.DecodeString("9143aa7c615a7f7115e2b6aac319c03529df8242ae705fba9df39b79c59fa8b1")
copy(genValidatorsRoot[:], rootBytes)
case MekongNetwork:
rootBytes, _ := hex.DecodeString("9838240bca889c52818d7502179b393a828f61f15119d9027827c36caeb67db7")
rootBytes, _ := hex.DecodeString("5c074f81fbc78dc7ba47460572a4286fffe989e9921abfd50791e01e4044d274")
copy(genValidatorsRoot[:], rootBytes)
case MainNetwork:
rootBytes, _ := hex.DecodeString("4b363db94e286120d76eb905340fdd4e54bfe9f06bf33ff6cf5ad27f511bfe95")
Expand Down Expand Up @@ -104,7 +104,7 @@ func (n Network) MinGenesisTime() uint64 {
case HoleskyNetwork:
return 1695902400
case MekongNetwork:
return 1730822340 + 60 // genesis delay
return 1738603800 + 60 // genesis delay
case MainNetwork:
return 1606824023
default:
Expand Down

0 comments on commit 3d5e8bd

Please sign in to comment.