Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix git clone urls #10490

Merged
merged 1 commit into from
Aug 24, 2024
Merged
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 book/run/optimism.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ For this example, we'll start a `Base Mainnet` node.
To run Reth on Optimism, first install `op-reth` via the `Makefile` in the workspace root:

```sh
git clone git@github.com:paradigmxyz/reth.git && \
git clone https://github.com/paradigmxyz/reth.git && \
cd reth && \
make install-op
```
Expand All @@ -48,7 +48,7 @@ have access to the L1 archive node on the same machine as your L2 node.

To build the `op-node` with the `rethdb` build tag enabled:
```sh
git clone git@github.com:ethereum-optimism/optimism.git && \
git clone https://github.com/ethereum-optimism/optimism.git && \
(cd optimism/op-service/rethdb-reader && cargo build --release) && \
cd optimism/op-node && \
go build -v -tags rethdb -o ./bin/op-node ./cmd/main.go && \
Expand Down
Loading