Fix Sepolia Version (#12792)

This commit is contained in:
Nishant Das
2023-08-24 18:07:41 +08:00
committed by GitHub
parent 6f6c06a95b
commit bcf728b9ff

View File

@@ -1,6 +1,8 @@
package params
import (
"math"
eth1Params "github.com/ethereum/go-ethereum/params"
)
@@ -35,6 +37,8 @@ func SepoliaConfig() *BeaconChainConfig {
cfg.BellatrixForkVersion = []byte{0x90, 0x00, 0x00, 0x71}
cfg.CapellaForkEpoch = 56832
cfg.CapellaForkVersion = []byte{0x90, 0x00, 0x00, 0x72}
cfg.DenebForkEpoch = math.MaxUint64
cfg.DenebForkVersion = []byte{0x90, 0x00, 0x00, 0x73}
cfg.TerminalTotalDifficulty = "17000000000000000"
cfg.DepositContractAddress = "0x7f02C3E3c98b133055B8B348B2Ac625669Ed295D"
cfg.InitializeForkSchedule()