Skip to content

Commit

Permalink
Merge pull request #102 from matkt/feature/verkle-gen-besu
Browse files Browse the repository at this point in the history
Update besu genesis generator
  • Loading branch information
barnabasbusa authored Mar 8, 2024
2 parents 65791d0 + 42ab0f2 commit daf8517
Showing 1 changed file with 13 additions and 14 deletions.
27 changes: 13 additions & 14 deletions apps/el-gen/genesis_besu.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,19 +37,19 @@
out = {
"config": {
"chainId": int(data['chain_id']),
"homesteadBlock":0,
"eip150Block":0,
"eip155Block":0,
"eip158Block":0,
"byzantiumBlock":0,
"constantinopleBlock":0,
"petersburgBlock":0,
"istanbulBlock":0,
"berlinBlock":0,
"londonBlock":0,
"preMergeForkBlock":0,
"terminalTotalDifficulty":0,
"shanghaiTime": int(data['genesis_timestamp'] + data['genesis_delay']),
"homesteadBlock": 0,
"eip150Block": 0,
"eip155Block": 0,
"eip158Block": 0,
"byzantiumBlock": 0,
"constantinopleBlock": 0,
"petersburgBlock": 0,
"istanbulBlock": 0,
"berlinBlock": 0,
"londonBlock": 0,
"mergeNetsplitBlock": 0,
"terminalTotalDifficulty": 0,
"shanghaiTime": 0,
},
"alloc": {
# Allocate 1 wei to all possible pre-compiles.
Expand Down Expand Up @@ -105,7 +105,6 @@
}
},
"coinbase": "0x0000000000000000000000000000000000000000",
"baseFeePerGas": "0x3B9ACA00",
"difficulty": "0x01",
"extraData": "",
"gasLimit": "0x17D7840",
Expand Down

0 comments on commit daf8517

Please sign in to comment.