Commit 9cef078d authored by mergify[bot]'s avatar mergify[bot] Committed by GitHub

Merge pull request #3909 from ethereum-optimism/bugfix/devnet

ci: Fix devnet
parents e8ed2453 864c8c44
FROM ethereumoptimism/op-geth:latest
FROM ethereumoptimism/op-geth:optimism-history
RUN apk add --no-cache jq
......
......@@ -20,6 +20,7 @@ services:
volumes:
- "l1_data:/db"
- "${PWD}/../.devnet/genesis-l1.json:/genesis.json"
- "${PWD}/test-jwt-secret.txt:/config/test-jwt-secret.txt"
l2:
build:
......@@ -46,7 +47,7 @@ services:
command: >
op-node
--l1=ws://l1:8546
--l2=ws://l2:8546
--l2=http://l2:8551
--l2.jwt-secret=/config/test-jwt-secret.txt
--sequencer.enabled
--sequencer.l1-confs=0
......
......@@ -60,5 +60,9 @@ exec geth \
--miner.etherbase=$BLOCK_SIGNER_ADDRESS \
--password="$GETH_DATA_DIR"/password \
--allow-insecure-unlock \
--authrpc.addr="0.0.0.0" \
--authrpc.port="8551" \
--authrpc.vhosts="*" \
--authrpc.jwtsecret=/config/jwt-secret.txt \
--gcmode=archive \
"$@"
......@@ -17,6 +17,7 @@
"l2OutputOracleProposer": "0x70997970C51812dc3A010C7d01b50e0d17dc79C8",
"l2OutputOracleOwner": "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65",
"l2GenesisBlockCoinbase": "0x42000000000000000000000000000000000000f0",
"l2GenesisBlockGasLimit": "0xE4E1C0",
"l1BlockTime": 15,
"cliqueSignerAddress": "0xca062b0fd91172d89bcd4bb084ac4e21972cc467",
......@@ -27,5 +28,10 @@
"finalizationPeriodSeconds": 2,
"deploymentWaitConfirmations": 1,
"fundDevAccounts": true
"fundDevAccounts": true,
"gasPriceOracleOverhead": 2100,
"gasPriceOracleScalar": 1000000,
"eip1559Denominator": 8,
"eip1559Elasticity": 2
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment