From e1bf5326801d3a0e6ce0c582550be2b1f2d2d68e Mon Sep 17 00:00:00 2001 From: Sebastian <379651+czarly@users.noreply.github.com> Date: Fri, 6 Sep 2024 16:53:18 +0200 Subject: [PATCH] update op stack to granite --- op-zora-mainnet.yml | 6 ------ op/Dockerfile | 4 ++-- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/op-zora-mainnet.yml b/op-zora-mainnet.yml index 5859d915..7e82b347 100644 --- a/op-zora-mainnet.yml +++ b/op-zora-mainnet.yml @@ -5,9 +5,6 @@ services: #image: stakesquid/op-zora-mainnet:v0.1 build: context: ./op - args: - OP_GETH_VERSION: v1.101408.0 - OP_NODE_VERSION: v1.9.1 expose: - 8545 # RPC / Websocket - 2483 # P2P TCP (currently unused) @@ -54,9 +51,6 @@ services: #image: stakesquid/op-zora-mainnet:v0.1 build: context: ./op - args: - OP_GETH_VERSION: v1.101408.0 - OP_NODE_VERSION: v1.9.1 depends_on: - op-zora-mainnet expose: diff --git a/op/Dockerfile b/op/Dockerfile index fc43b09c..61a5ad8f 100644 --- a/op/Dockerfile +++ b/op/Dockerfile @@ -3,7 +3,7 @@ FROM golang:1.21 as op WORKDIR /app ARG OP_REPO=https://github.com/ethereum-optimism/optimism.git -ARG OP_VERSION=v1.9.0 +ARG OP_VERSION=v1.9.1 # for verification: @@ -19,7 +19,7 @@ FROM golang:1.21 as geth WORKDIR /app ARG GETH_REPO=https://github.com/ethereum-optimism/op-geth.git -ARG GETH_VERSION=v1.101315.3 +ARG GETH_VERSION=v1.101408.0 # avoid depth=1, so the geth build can read tags RUN git clone $GETH_REPO --branch $GETH_VERSION --single-branch . && \