Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ cd lisk-node

Please use the following client versions:

- **op-node**: [v1.16.5](https://github.com/ethereum-optimism/optimism/releases/tag/op-node/v1.16.5)
- **op-geth**: [v1.101605.0](https://github.com/ethereum-optimism/op-geth/releases/tag/v1.101605.0)
- **op-reth**: [v1.9.4](https://github.com/paradigmxyz/reth/releases/tag/v1.9.4)
- **op-node**: [v1.16.6](https://github.com/ethereum-optimism/optimism/releases/tag/op-node/v1.16.6)
- **op-geth**: [v1.101608.0](https://github.com/ethereum-optimism/op-geth/releases/tag/v1.101608.0)
- **op-reth**: [v1.10.2](https://github.com/paradigmxyz/reth/releases/tag/v1.10.2)

#### Build

Expand Down
8 changes: 4 additions & 4 deletions geth/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ WORKDIR /app

RUN curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to /usr/bin
ENV REPO=https://github.com/ethereum-optimism/optimism.git
ENV VERSION=v1.16.5
ENV COMMIT=3f4294bd62460456e9c952789e1d7453e99dca51
ENV VERSION=v1.16.6
ENV COMMIT=b66cc587b4185089e6f81bf6a4fc4233f2a7505d
RUN git clone $REPO --branch op-node/$VERSION --single-branch . && \
git switch -c branch-$VERSION && \
bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
Expand All @@ -21,8 +21,8 @@ FROM golang:$GOLANG_VERSION AS geth
WORKDIR /app

ENV REPO=https://github.com/ethereum-optimism/op-geth.git
ENV VERSION=v1.101605.0
ENV COMMIT=f03d103a27f13520f137fb7f80d7dcea7d07123b
ENV VERSION=v1.101608.0
ENV COMMIT=32cc3b8caf8647dbefbd29b2c3ed862132e53ad2
RUN git clone $REPO --branch $VERSION --single-branch . && \
git switch -c branch-$VERSION && \
bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
Expand Down
8 changes: 4 additions & 4 deletions reth/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ WORKDIR /app

RUN curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to /usr/bin
ENV REPO=https://github.com/ethereum-optimism/optimism.git
ENV VERSION=v1.16.5
ENV COMMIT=3f4294bd62460456e9c952789e1d7453e99dca51
ENV VERSION=v1.16.6
ENV COMMIT=b66cc587b4185089e6f81bf6a4fc4233f2a7505d
RUN git clone $REPO --branch op-node/$VERSION --single-branch . && \
git switch -c branch-$VERSION && \
bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
Expand All @@ -27,8 +27,8 @@ WORKDIR /app
RUN apt-get update && apt-get -y upgrade && apt-get install -y git libclang-dev pkg-config curl build-essential

ENV REPO=https://github.com/paradigmxyz/reth.git
ENV VERSION=v1.9.4
ENV COMMIT=ce2b369595b6503a1d47fee946a8dc37fa525ed5
ENV VERSION=v1.10.2
ENV COMMIT=8e3b5e6a99439561b73c5dd31bd3eced2e994d60
RUN git clone $REPO --branch $VERSION --single-branch . && \
git switch -c branch-$VERSION && \
bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
Expand Down