From 3c35e61a8a2bbf7e93c6a21e1aaa0cb7e85f3783 Mon Sep 17 00:00:00 2001 From: Artem <48246993+quertc@users.noreply.github.com> Date: Fri, 23 Aug 2024 23:58:08 +0300 Subject: [PATCH] docs: fix git clone urls --- book/run/optimism.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/book/run/optimism.md b/book/run/optimism.md index 37c42b4a367b..4c2f09ef1954 100644 --- a/book/run/optimism.md +++ b/book/run/optimism.md @@ -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 ``` @@ -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 && \