Skip to content

Commit

Permalink
Applying changes to Mainnet Bootnodes, increasing Block Gas Limit and…
Browse files Browse the repository at this point in the history
… changing the TestNet ChainID and Bootnodes
  • Loading branch information
DekiVujic committed Nov 29, 2021
1 parent 3c5b1c0 commit 8add208
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
15 changes: 7 additions & 8 deletions params/bootnodes.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,21 @@ package params
// the main Ethereum network.
var MainnetBootnodes = []string{
// TSF/DEV Go Bootnodes
"enode://853c50c949bcf4cf6c5371c11f8fc9adff6e2a2533074c0a760125cbc91ea30b52da06951d38865012ff7d8a30b6dcb50b409a34848201a92417d4ee3a3203ec@185.141.62.215:59997",
"enode://810c9a99dd53f0e8136432f31cfcf1f5925fe8dff4adfa53c462591516447ffc4d0b16e7b954e0b9d1a312c67876d8a16e563b29afe587596d28bd6ff0225e26@167.99.192.153:59997",
"enode://10a4991c6b5b5eb831a07e7c35724d8266893c7986b526729348d1bf37b37a61c19c895013065e348b124b6431d7c9a9e8e970b3786eb95af2f921e7f93514f0@46.101.187.225:59997",
"enode://f70c7ea4bd48dc7116a95b87b6e42fe61f0dc5f8a70e7157f68c99d13f393ec1bb3a0089701f6657a861e1e174e1aab650bc585246ac429b9cbe84b8077930db@165.232.99.209:59997",
"enode://6f490097cfe0f49f5d311a86038dda4b259dfe889b11f63bffefbb8c7e81851ebf941ca7c875aae2fa28864a2c0611affd72212b278df74210db1bbf3f62a534@94.156.189.141:59997",
"enode://37317e7a885aeaf703a4a38224a4c3bf6bb9df45acb9f6a409f30296dd58c5e7b28b908e534c85631a9a91544e0e69fb8d522496d5cf58a879275a459d4ff665@185.206.146.57:59997",
"enode://a3cb002422cd9496a7c156940ee1b4caccbbd3cd7e34204ddb2cebdb72f5dd91b699082bd823f61bf05bc62b5c0ecfc2fc458fd4d20e5de6bfe8644d3212a275@78.46.67.207:59997",
"enode://853c50c949bcf4cf6c5371c11f8fc9adff6e2a2533074c0a760125cbc91ea30b52da06951d38865012ff7d8a30b6dcb50b409a34848201a92417d4ee3a3203ec@78.46.67.207:59997",

"enode://a126d9ce098720d00435745cfec981c6da1b2d04a65401639a36873ee1262ce9525ddc76b5668ec5aa8369e98f54d7814ad4b49b73a26fe516eb8aa1cf7a6b1e@167.71.54.120:59997",
"enode://891aa70a41e8410aa9c6a10a3e18f53bb8d31283d3e40cde0f66dc4dab506e7e6f415e76651ce66fdb98af0b126b560f7e44d5e0a6e3a6cc920b3192bba231f4@68.183.214.221:59997",
"enode://ee4a8ceeb6c68c4a62b4f97f2ff6b2f7d80a89d6527310d74d811f79299cafea8a71cc8370aa481de8d5f6ed2b0c01a897f07e42ab5e72b6d327b42927004c91@167.172.97.130:59997",
"enode://666d2daffc08ddae814a799946637a521a830ff2e1b327119e315507f546c174d27013d94a690b1ffff846ea437d667c7e92dd85440e0b7719952056109f7c3b@167.172.174.6:59997",

}

// TestnetBootnodes are the enode URLs of the P2P bootstrap nodes running on the
// Ropsten test network.
var TestnetBootnodes = []string{
"enode://9fb686d265a7d6e3c5cd4de44e8b50eee40a618fed41ac6640174225a8bdaa1b7248f92369b9299e4576be8a532eae601353114b8443f274f7263a3e3d0b4c50@104.248.32.50:59997",

"enode://9fb686d265a7d6e3c5cd4de44e8b50eee40a618fed41ac6640174225a8bdaa1b7248f92369b9299e4576be8a532eae601353114b8443f274f7263a3e3d0b4c50@104.248.32.50:59997",
"enode://d43e62049e8ca3028c6479ae408cc614f07f84d813947988c9a71b463a99e891746433deb9b03e1950b1bd091612d0cab624a45dcca07f4ecd7f05cfeb04faee@134.122.87.200:59997",

}

Expand Down
2 changes: 1 addition & 1 deletion params/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ var (

// TestnetChainConfig contains the chain parameters to run a node on the Ropsten test network.
TestnetChainConfig = &ChainConfig{
ChainId: big.NewInt(3),
ChainId: big.NewInt(707),
HomesteadBlock: big.NewInt(0),
DAOForkBlock: nil,
DAOForkSupport: true,
Expand Down
2 changes: 1 addition & 1 deletion params/protocol_params.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ const (
var (
GasLimitBoundDivisor = big.NewInt(1024) // The bound divisor of the gas limit, used in update calculations.
MinGasLimit = big.NewInt(5000) // Minimum the gas limit may ever be.
GenesisGasLimit = big.NewInt(4712388) // Gas limit of the Genesis block.
GenesisGasLimit = big.NewInt(12500000) // Gas limit of the Genesis block.
TargetGasLimit = new(big.Int).Set(GenesisGasLimit) // The artificial target
DifficultyBoundDivisor = big.NewInt(2048) // The bound divisor of the difficulty, used in the update calculations.
DifficultyBoundDivisor2 = big.NewInt(512)
Expand Down

0 comments on commit 8add208

Please sign in to comment.