Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/e2e/chains/ethereum/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
GETH_HTTP_PORT ?= 8546
BEACON_HTTP_PORT ?= 19596
GETH_VERSION ?= v1.14.11
LODESTAR_VERSION ?= v1.23.0
GETH_VERSION ?= v1.15.1
LODESTAR_VERSION ?= v1.27.0
DOCKER_COMPOSE ?= docker compose
COMPOSE_UP_OPTS ?= -d
HARDHAT ?= npx hardhat
Expand Down
9 changes: 8 additions & 1 deletion tests/e2e/chains/ethereum/contracts/hardhat.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,14 @@ module.exports = {
},
networks: {
eth_local: {
url: 'http://geth:8546'
url: 'http://geth:8546',
accounts: {
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

mnemonic: "math razor capable expose worth grape metal sunset metal sudden usage scheme",
path: "m/44'/60'/0'/0",
initialIndex: 0,
count: 1,
passphrase: "",
}
}
}
}
14 changes: 13 additions & 1 deletion tests/e2e/chains/ethereum/execution/genesis.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,19 @@
"terminalTotalDifficulty": 0,
"terminalTotalDifficultyPassed": true,
"depositContractAddress": "0x4242424242424242424242424242424242424242",
"ethash": {}
"ethash": {},
"blobSchedule": {
"cancun": {
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"target": 3,
"max": 6,
"baseFeeUpdateFraction": 3338477
},
"prague": {
"target": 6,
"max": 9,
"baseFeeUpdateFraction": 5007716
}
}
},
"nonce":"0x42",
"timestamp": "0x0",
Expand Down
Loading