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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ cd lisk-node

Please use the following client versions:

- **op-node**: [v1.16.3](https://github.com/ethereum-optimism/optimism/releases/tag/op-node/v1.16.3)
- **op-geth**: [v1.101603.5](https://github.com/ethereum-optimism/op-geth/releases/tag/v1.101603.5)
- **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.3](https://github.com/paradigmxyz/reth/releases/tag/v1.9.3)

#### 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.3
ENV COMMIT=478b8bda4e30cc4feb587d7d722168264425a564
ENV VERSION=v1.16.5
ENV COMMIT=3f4294bd62460456e9c952789e1d7453e99dca51
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.101603.5
ENV COMMIT=904a088c5cc1eeec21a1ffa47327dc20a809e642
ENV VERSION=v1.101605.0
ENV COMMIT=f03d103a27f13520f137fb7f80d7dcea7d07123b
RUN git clone $REPO --branch $VERSION --single-branch . && \
git switch -c branch-$VERSION && \
bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
Expand Down
4 changes: 2 additions & 2 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.3
ENV COMMIT=478b8bda4e30cc4feb587d7d722168264425a564
ENV VERSION=v1.16.5
ENV COMMIT=3f4294bd62460456e9c952789e1d7453e99dca51
RUN git clone $REPO --branch op-node/$VERSION --single-branch . && \
git switch -c branch-$VERSION && \
bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
Expand Down