Commit 24d92784 authored by Matthew Slipper's avatar Matthew Slipper

ci: Fix devnet

parent e8ed2453
FROM ethereumoptimism/op-geth:latest FROM ethereumoptimism/op-geth:optimism-history
RUN apk add --no-cache jq RUN apk add --no-cache jq
......
...@@ -20,6 +20,7 @@ services: ...@@ -20,6 +20,7 @@ services:
volumes: volumes:
- "l1_data:/db" - "l1_data:/db"
- "${PWD}/../.devnet/genesis-l1.json:/genesis.json" - "${PWD}/../.devnet/genesis-l1.json:/genesis.json"
- "${PWD}/test-jwt-secret.txt:/config/test-jwt-secret.txt"
l2: l2:
build: build:
...@@ -46,7 +47,7 @@ services: ...@@ -46,7 +47,7 @@ services:
command: > command: >
op-node op-node
--l1=ws://l1:8546 --l1=ws://l1:8546
--l2=ws://l2:8546 --l2=http://l2:8547
--l2.jwt-secret=/config/test-jwt-secret.txt --l2.jwt-secret=/config/test-jwt-secret.txt
--sequencer.enabled --sequencer.enabled
--sequencer.l1-confs=0 --sequencer.l1-confs=0
......
...@@ -60,5 +60,9 @@ exec geth \ ...@@ -60,5 +60,9 @@ exec geth \
--miner.etherbase=$BLOCK_SIGNER_ADDRESS \ --miner.etherbase=$BLOCK_SIGNER_ADDRESS \
--password="$GETH_DATA_DIR"/password \ --password="$GETH_DATA_DIR"/password \
--allow-insecure-unlock \ --allow-insecure-unlock \
--authrpc.addr="0.0.0.0" \
--authrpc.port="8547" \
--authrpc.vhosts="*" \
--authrpc.jwtsecret=/config/jwt-secret.txt \
--gcmode=archive \ --gcmode=archive \
"$@" "$@"
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
"l2OutputOracleProposer": "0x70997970C51812dc3A010C7d01b50e0d17dc79C8", "l2OutputOracleProposer": "0x70997970C51812dc3A010C7d01b50e0d17dc79C8",
"l2OutputOracleOwner": "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65", "l2OutputOracleOwner": "0x15d34AAf54267DB7D7c367839AAf71A00a2C6A65",
"l2GenesisBlockCoinbase": "0x42000000000000000000000000000000000000f0", "l2GenesisBlockCoinbase": "0x42000000000000000000000000000000000000f0",
"l2GenesisBlockGasLimit": "0xE4E1C0",
"l1BlockTime": 15, "l1BlockTime": 15,
"cliqueSignerAddress": "0xca062b0fd91172d89bcd4bb084ac4e21972cc467", "cliqueSignerAddress": "0xca062b0fd91172d89bcd4bb084ac4e21972cc467",
...@@ -27,5 +28,10 @@ ...@@ -27,5 +28,10 @@
"finalizationPeriodSeconds": 2, "finalizationPeriodSeconds": 2,
"deploymentWaitConfirmations": 1, "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