Skip to content

Commit

Permalink
params: set TTD for sepolia testnet (ethereum#25179)
Browse files Browse the repository at this point in the history
  • Loading branch information
MariusVanDerWijden authored and sadoci committed Jul 7, 2023
1 parent 376e0cb commit 2102434
Showing 1 changed file with 16 additions and 15 deletions.
31 changes: 16 additions & 15 deletions params/config.go
Expand Up @@ -186,21 +186,22 @@ var (

// SepoliaChainConfig contains the chain parameters to run a node on the Sepolia test network.
SepoliaChainConfig = &ChainConfig{
ChainID: big.NewInt(11155111),
HomesteadBlock: big.NewInt(0),
DAOForkBlock: nil,
DAOForkSupport: true,
EIP150Block: big.NewInt(0),
EIP155Block: big.NewInt(0),
EIP158Block: big.NewInt(0),
ByzantiumBlock: big.NewInt(0),
ConstantinopleBlock: big.NewInt(0),
PetersburgBlock: big.NewInt(0),
IstanbulBlock: big.NewInt(0),
MuirGlacierBlock: big.NewInt(0),
BerlinBlock: big.NewInt(0),
LondonBlock: big.NewInt(0),
Ethash: new(EthashConfig),
ChainID: big.NewInt(11155111),
HomesteadBlock: big.NewInt(0),
DAOForkBlock: nil,
DAOForkSupport: true,
EIP150Block: big.NewInt(0),
EIP155Block: big.NewInt(0),
EIP158Block: big.NewInt(0),
ByzantiumBlock: big.NewInt(0),
ConstantinopleBlock: big.NewInt(0),
PetersburgBlock: big.NewInt(0),
IstanbulBlock: big.NewInt(0),
MuirGlacierBlock: big.NewInt(0),
BerlinBlock: big.NewInt(0),
LondonBlock: big.NewInt(0),
TerminalTotalDifficulty: big.NewInt(17_000_000_000_000_000),
Ethash: new(EthashConfig),
}

// SepoliaTrustedCheckpoint contains the light client trusted checkpoint for the Sepolia test network.
Expand Down

0 comments on commit 2102434

Please sign in to comment.