Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update op-geth version for enable p256Verify precompiled contract #36

Merged
merged 8 commits into from
May 10, 2024
5 changes: 4 additions & 1 deletion genesis-deployer/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,8 @@ op-node genesis l2 \
--deploy-config deploy-config/${DEPLOYMENT_CONTEXT}.json \
--l1-deployments deployments/${DEPLOYMENT_CONTEXT}/.deploy \
--l1-rpc ${L1_RPC_URL} \
--outfile.l2 /data/genesis.json \
--outfile.l2 /data/genesis.json.out \
--outfile.rollup /data/rollup.json

cat /data/genesis.json.out | jq ".config.fjordTime=0" > /data/genesis.json
rm -f /data/genesis.json.out
2 changes: 1 addition & 1 deletion genesis-init-predeploy/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG OP_GETH_VERSION="v1.101308.2"
ARG OP_GETH_VERSION="v1.101315.0"

FROM us-docker.pkg.dev/oplabs-tools-artifacts/images/op-geth:${OP_GETH_VERSION} as op-geth
eseiker marked this conversation as resolved.
Show resolved Hide resolved

Expand Down
2 changes: 1 addition & 1 deletion templates/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ services:

op-geth:
container_name: op-geth
image: us-docker.pkg.dev/oplabs-tools-artifacts/images/op-geth:v1.101308.2
image: ghcr.io/planetarium/op-geth:latest
volumes:
- ./data/op-geth:/data
- ./data/genesis:/genesis
Expand Down