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 @@ -71,8 +71,8 @@ cd lisk-node

Please use the following client versions:

- **op-node**: [v1.19.6](https://github.com/ethereum-optimism/optimism/releases/tag/op-node/v1.19.6)
- **op-reth**: [v2.4.3](https://github.com/ethereum-optimism/optimism/releases/tag/op-reth/v2.4.3)
- **op-node**: [v1.19.7](https://github.com/ethereum-optimism/optimism/releases/tag/op-node/v1.19.7)
- **op-reth**: [v2.4.4](https://github.com/ethereum-optimism/optimism/releases/tag/op-reth/v2.4.4)

#### Build

Expand All @@ -85,7 +85,7 @@ Please use the following client versions:
git apply <path-to-op-node-lisk-sepolia.patch>
```

- To build `op-reth` from source, refer to the [`op-reth` source tree](https://github.com/ethereum-optimism/optimism/tree/op-reth%2Fv2.4.3/rust/op-reth) in the `ethereum-optimism/optimism` repository (pinned to the version above).
- To build `op-reth` from source, refer to the [`op-reth` source tree](https://github.com/ethereum-optimism/optimism/tree/op-reth%2Fv2.4.4/rust/op-reth) in the `ethereum-optimism/optimism` repository (pinned to the version above).

#### Set environment variables

Expand Down
8 changes: 4 additions & 4 deletions reth/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ RUN ARCH=$(dpkg --print-architecture) && \
echo "${YQ_SHA256} /usr/bin/yq" | sha256sum -c - && \
chmod +x /usr/bin/yq
ENV REPO=https://github.com/ethereum-optimism/optimism.git
ENV VERSION=v1.19.6
ENV COMMIT=b60a1a6398209ccc47267e77deb6e4bf4c1ede8a
ENV VERSION=v1.19.7
ENV COMMIT=7e167ae2e15b7bf7dfaf238e514155e4bc904ed6
RUN git clone $REPO --branch op-node/$VERSION --single-branch . && \
git switch -c branch-$VERSION && \
bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
Expand All @@ -42,8 +42,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/ethereum-optimism/optimism.git
ENV VERSION=op-reth/v2.4.3
ENV COMMIT=b60a1a6398209ccc47267e77deb6e4bf4c1ede8a
ENV VERSION=op-reth/v2.4.4
ENV COMMIT=7e167ae2e15b7bf7dfaf238e514155e4bc904ed6
RUN git clone $REPO --branch $VERSION --single-branch . && \
git switch -c branch-$VERSION && \
bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
Expand Down
Loading