mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-24 05:36:46 +00:00
Instantly enable all upgrades on all network types (#7)
* Add genesis.json to root with all EIPs instantly enabled * Allocate initial funding to an account * Add genesis keystore
This commit is contained in:
parent
a4eb31f4d2
commit
80940fa40d
2 changed files with 37 additions and 0 deletions
1
genesis-keystore
Normal file
1
genesis-keystore
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"address":"0x4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571","crypto":{"kdf":"pbkdf2","kdfparams":{"c":262144,"dklen":32,"prf":"hmac-sha256","salt":"5315dce5938c8ed2bf8eb354bfb0018b5cd0d42cb254931fb01ad94dc9f13cc7"},"cipher":"aes-128-ctr","ciphertext":"a0a87ed3cf2e0b37fdef68cbf40b939004d68a866e2a5a1a74af592a35825a00","cipherparams":{"iv":"ce2704a74a2ab501baf62db1b00dda17"},"mac":"6bd869db3078c176cb20a46d09f6cc2acbe2379ab0ef299b38639b5f630794f4"},"id":"ce33be41-50a5-448f-befe-62def4e52c53","version":3}
|
||||
36
genesis.json
Normal file
36
genesis.json
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
{
|
||||
"genesis": {
|
||||
"config": {
|
||||
"chainId": 53077,
|
||||
"homesteadBlock": 0,
|
||||
"eip150Block": 0,
|
||||
"eip150Hash": "0x0000000000000000000000000000000000000000000000000000000000000000",
|
||||
"eip155Block": 0,
|
||||
"eip158Block": 0,
|
||||
"byzantiumBlock": 0,
|
||||
"constantinopleBlock": 0,
|
||||
"petersburgBlock": 0,
|
||||
"istanbulBlock": 0,
|
||||
"clique": {
|
||||
"period": 15,
|
||||
"epoch": 30000
|
||||
}
|
||||
},
|
||||
"nonce": "0x0",
|
||||
"timestamp": "0x61bc34a0",
|
||||
"extraData": "0x00000000000000000000000000000000000000000000000000000000000000004cb1ab63af5d8931ce09673ebd8ae2ce16fd65710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
|
||||
"gasLimit": "0x47b760",
|
||||
"difficulty": "0x1",
|
||||
"mixHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
|
||||
"coinbase": "0x0000000000000000000000000000000000000000",
|
||||
"alloc": {
|
||||
"4cb1ab63af5d8931ce09673ebd8ae2ce16fd6571": {
|
||||
"balance": "0x200000000000000000000000000000000000000000000000000000000000000"
|
||||
}
|
||||
},
|
||||
"number": "0x0",
|
||||
"gasUsed": "0x0",
|
||||
"parentHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
|
||||
"baseFeePerGas": null
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue