Genesis File
Mainnet Genesis file (.json format)
{
"config": {
"chainId": 9731,
"homesteadBlock": 1,
"eip150Block": 2,
"eip150Hash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"eip155Block": 2,
"eip158Block": 3,
"byzantiumBlock": 4,
"constantinopleBlock": 5,
"petersburgBlock": 6,
"blockreward": "20000000000000000",
"berlinBlock": 7,
"muirglacierblock": 8,
"discovery" : {
"bootnodes": [
"enode://04fe4c59afb2ba50978758e66c6eb98147c4b23fce153e6f12d521a8cd68ef2cd[email protected]3.84.94.171:30303",
"enode://caec604130475a061eb16ec4172365e2160874c7fd10554ce9379aaa6011fd5d6[email protected]54.157.4.11:30303",
"enode://d5ddfc776903b86874c92e3648a60b2b86947833d9564c897c28953fe36df84ef[email protected]44.211.169.255:30303"
]},
"ethash": {
"difficulty": 10
}
},
"nonce": "0x0000000000000042",
"timestamp": "0x632AB901",
"extraData": "0x0000000000000000000000000000000000000000000000000000000000000000",
"gasLimit": "0x5B8D80",
"difficulty": "0xA",
"mixHash": "0x63746963616c2062797a616e74696e65206661756c7420746f6c6572616e6365",
"coinbase": "0x0000000000000000000000000000000000000000",
"alloc": {
"0x8F8E8EFF1c7681660E0508B74944da55CDbF5180": {
"balance": "0x295BE96E64066972000000"
},
"0xef9444D0810a445689622A5dc9D3B06c68CE94B4":{
"balance":"0x6C6B935B8BBD400000"
},
"0x0977c6B6B173d3e5275A2E50Ff1D90e9642DFfBd":{
"balance":"0x6C6B935B8BBD400000"
}
},
"number": "0x0",
"gasUsed": "0x0",
"parentHash": "0x0000000000000000000000000000000000000000000000000000000000000000"
}
You can also download the mainnet genesis file from here :
mainNetGenesis.json
2KB
Code
Testnet Genesis file (.json format)
{
"config": {
"chainId": 9732,
"homesteadBlock": 1,
"eip150Block": 2,
"eip150Hash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"eip155Block": 2,
"eip158Block": 3,
"byzantiumBlock": 4,
"constantinopleBlock": 5,
"petersburgBlock": 6,
"blockreward": "20000000000000000",
"berlinBlock": 7,
"muirglacierblock": 8,
"ethash": {
"difficulty": 1
}
},
"nonce": "0x0000000000000042",
"timestamp": "0x632AB901",
"extraData": "0x0000000000000000000000000000000000000000000000000000000000000000",
"gasLimit": "0x5B8D80",
"difficulty": "0x1",
"mixHash": "0x63746963616c2062797a616e74696e65206661756c7420746f6c6572616e6365",
"coinbase": "0x0000000000000000000000000000000000000000",
"alloc": {
"0x8F8E8EFF1c7681660E0508B74944da55CDbF5180": {
"balance": "0x295BE96E64066972000000"
},
"0xef9444D0810a445689622A5dc9D3B06c68CE94B4":{
"balance":"0x6C6B935B8BBD400000"
},
"0x0977c6B6B173d3e5275A2E50Ff1D90e9642DFfBd":{
"balance":"0x6C6B935B8BBD400000"
}
},
"number": "0x0",
"gasUsed": "0x0",
"parentHash": "0x0000000000000000000000000000000000000000000000000000000000000000"
}
You can also download the testnet genesis file from here :
testnetGenesis.json
1KB
Code
Last modified 7mo ago