Skip to content

Commit

Permalink
feat: update op-geth version for enable p256Verify precompiled contra…
Browse files Browse the repository at this point in the history
…ct (#36)

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

* Update genesis-deployer/deploy.sh

* feat: fixed op-geth version to v1.101315.0 to improve stability

* feat: modify op-geth image registry

* fix: modify op-geth registry for genesis-init-predeploy

---------

Co-authored-by: Mizuki <eseiker@users.noreply.github.com>
  • Loading branch information
ost006 and eseiker authored May 10, 2024
1 parent dc9f63d commit a3d2ede
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
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
4 changes: 1 addition & 3 deletions genesis-init-predeploy/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
ARG OP_GETH_VERSION="v1.101308.2"

FROM us-docker.pkg.dev/oplabs-tools-artifacts/images/op-geth:${OP_GETH_VERSION} as op-geth
FROM ghcr.io/planetarium/op-geth:latest as op-geth

FROM buildpack-deps:scm as foundry
ARG TARGETARCH
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

0 comments on commit a3d2ede

Please sign in to comment.