Skip to content

Commit ca0c423

Browse files
authored
Merge branch 'master' into default-use-scw
2 parents 33d0ed7 + 3b4fd8c commit ca0c423

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

docker-compose.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ services:
4747
- "127.0.0.1:6379:6379"
4848

4949
geth:
50-
image: ethereum/client-go:v1.14.13
50+
image: ethereum/client-go:v1.16.4
5151
ports:
5252
- "127.0.0.1:8545:8545"
5353
- "127.0.0.1:8551:8551"
@@ -88,7 +88,7 @@ services:
8888
# a deterministic set of validators
8989
# TODO: Make num validators customizable
9090
create_beacon_chain_genesis:
91-
image: "gcr.io/prysmaticlabs/prysm/cmd/prysmctl:latest"
91+
image: "gcr.io/prysmaticlabs/prysm/cmd/prysmctl:v6.1.1"
9292
command:
9393
- testnet
9494
- generate-genesis
@@ -107,7 +107,7 @@ services:
107107
# The account used in go-ethereum is set as the suggested fee recipient for transactions
108108
# proposed via the validators attached to the beacon node.
109109
prysm_beacon_chain:
110-
image: "gcr.io/prysmaticlabs/prysm/beacon-chain:stable"
110+
image: "gcr.io/prysmaticlabs/prysm/beacon-chain:v6.1.1"
111111
command:
112112
- --datadir=/consensus/beacondata
113113
- --rpc-port=5000

scripts/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ function writeGethGenesisConfig(argv: any) {
8787
"timestamp": "0x0",
8888
"gasLimit": "0x1C9C380",
8989
"mixHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
90+
"baseFeePerGas": "0x3B9ACA00",
9091
"alloc": {
9192
"0x3f1Eae7D46d88F08fc2F8ed27FCb2AB183EB2d0E": {
9293
"balance": "1000000000000000000000000000000000"
@@ -325,8 +326,7 @@ function writeConfigs(argv: any) {
325326
sequencerConfig.execution["sequencer"].enable = true
326327
sequencerConfig.node["delayed-sequencer"].enable = true
327328
if (argv.timeboost) {
328-
sequencerConfig.execution.sequencer.dangerous = {};
329-
sequencerConfig.execution.sequencer.dangerous.timeboost = {
329+
sequencerConfig.execution.sequencer.timeboost = {
330330
"enable": false, // Create it false initially, turn it on with sed in test-node.bash after contract setup.
331331
"redis-url": argv.redisUrl
332332
};

test-node.bash

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -eu
44

5-
NITRO_NODE_VERSION=offchainlabs/nitro-node:v3.6.7-a7c9f1e
5+
NITRO_NODE_VERSION=offchainlabs/nitro-node:v3.7.4-9244576
66
BLOCKSCOUT_VERSION=offchainlabs/blockscout:v1.1.0-0e716c8
77

88
# nitro-contract workaround for testnode
@@ -567,7 +567,7 @@ if $force_init; then
567567
docker compose run scripts transfer-erc20 --token $biddingTokenAddress --amount 10000 --from auctioneer --to user_alice
568568
docker compose run scripts transfer-erc20 --token $biddingTokenAddress --amount 10000 --from auctioneer --to user_bob
569569

570-
docker compose run --entrypoint sh scripts -c "sed -i 's/\(\"execution\":{\"sequencer\":{\"enable\":true,\"dangerous\":{\"timeboost\":{\"enable\":\)false/\1true,\"auction-contract-address\":\"$auctionContractAddress\",\"auctioneer-address\":\"$auctioneerAddress\"/' /config/sequencer_config.json" --wait
570+
docker compose run --entrypoint sh scripts -c "sed -i 's/\(\"execution\":{\"sequencer\":{\"enable\":true,\"timeboost\":{\"enable\":\)false/\1true,\"auction-contract-address\":\"$auctionContractAddress\",\"auctioneer-address\":\"$auctioneerAddress\"/' /config/sequencer_config.json" --wait
571571
docker compose restart $INITIAL_SEQ_NODES
572572
fi
573573

0 commit comments

Comments
 (0)