From b450c7b7f7934194fd487f85d7f9f2764f2cd0bd Mon Sep 17 00:00:00 2001 From: asymmetric <101816+asymmetric@users.noreply.github.com> Date: Mon, 10 Feb 2025 17:56:15 +0100 Subject: [PATCH 1/2] create-l2-rollup: fix script path --- pages/operators/chain-operators/tutorials/create-l2-rollup.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/operators/chain-operators/tutorials/create-l2-rollup.mdx b/pages/operators/chain-operators/tutorials/create-l2-rollup.mdx index 94d7acf3e..a2cb5d3b4 100644 --- a/pages/operators/chain-operators/tutorials/create-l2-rollup.mdx +++ b/pages/operators/chain-operators/tutorials/create-l2-rollup.mdx @@ -424,7 +424,7 @@ Once you've configured your network, it's time to deploy the L1 contracts necess {

Deploy the L1 contracts

} ```bash -forge script scripts/Deploy.s.sol:Deploy --private-key $GS_ADMIN_PRIVATE_KEY --broadcast --rpc-url $L1_RPC_URL --slow +forge script scripts/deploy/Deploy.s.sol:Deploy --private-key $GS_ADMIN_PRIVATE_KEY --broadcast --rpc-url $L1_RPC_URL --slow ``` From 2ab440cbe61400998e9b47464094eab339ff9276 Mon Sep 17 00:00:00 2001 From: krofax Date: Tue, 18 Feb 2025 14:41:51 +0100 Subject: [PATCH 2/2] fix conflict --- pages/operators/chain-operators/tutorials/create-l2-rollup.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pages/operators/chain-operators/tutorials/create-l2-rollup.mdx b/pages/operators/chain-operators/tutorials/create-l2-rollup.mdx index 8b76d06a4..5dd5f0d12 100644 --- a/pages/operators/chain-operators/tutorials/create-l2-rollup.mdx +++ b/pages/operators/chain-operators/tutorials/create-l2-rollup.mdx @@ -423,7 +423,9 @@ The `op-deployer` tool simplifies the creation of genesis and rollup configurati These files are crucial for initializing the execution client (`op-geth`) and consensus client (`op-node`) for your network. ```bash + forge script scripts/deploy/Deploy.s.sol:Deploy --private-key $GS_ADMIN_PRIVATE_KEY --broadcast --rpc-url $L1_RPC_URL --slow + ``` The recommended flow for creating a genesis file and rollup configuration file on the OP Stack is as follows: