From d2d1fd6e04d78f04eedc1b37a2aa0e1959efdeb3 Mon Sep 17 00:00:00 2001 From: Red Panda Date: Sun, 5 Jan 2025 15:22:06 -0500 Subject: [PATCH 1/2] Switch order of 'Batcher' and 'Proposer' under reccomended ETH balances to match order in .envrc --- pages/builders/chain-operators/tutorials/create-l2-rollup.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/builders/chain-operators/tutorials/create-l2-rollup.mdx b/pages/builders/chain-operators/tutorials/create-l2-rollup.mdx index 5194e4c3d..b5becb5f6 100644 --- a/pages/builders/chain-operators/tutorials/create-l2-rollup.mdx +++ b/pages/builders/chain-operators/tutorials/create-l2-rollup.mdx @@ -272,8 +272,8 @@ The exact amount of ETH required depends on the L1 network being used. It's recommended to fund the addresses with the following amounts when using Sepolia: * `Admin` — 0.5 Sepolia ETH -* `Proposer` — 0.2 Sepolia ETH * `Batcher` — 0.1 Sepolia ETH +* `Proposer` — 0.2 Sepolia ETH **To get the required Sepolia ETH to fund the addresses, we recommend using the [Superchain Faucet](https://console.optimism.io/faucet?utm_source=docs)** together with [Coinbase verification](https://help.coinbase.com/en/coinbase/getting-started/getting-started-with-coinbase/id-doc-verification). From 4ce3c60782c7b397175cf412d16a923700307d58 Mon Sep 17 00:00:00 2001 From: Red Panda Date: Sun, 5 Jan 2025 15:24:20 -0500 Subject: [PATCH 2/2] Add 'forge install' after navigating to optimism/packages/contracts-bedrock to install dependencies --- .../builders/chain-operators/tutorials/create-l2-rollup.mdx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pages/builders/chain-operators/tutorials/create-l2-rollup.mdx b/pages/builders/chain-operators/tutorials/create-l2-rollup.mdx index b5becb5f6..0090367f1 100644 --- a/pages/builders/chain-operators/tutorials/create-l2-rollup.mdx +++ b/pages/builders/chain-operators/tutorials/create-l2-rollup.mdx @@ -342,6 +342,12 @@ cd ~/optimism cd packages/contracts-bedrock ``` +{

Install Foundry dependencies

} + +```bash +forge install +``` + {

Generate the configuration file

} Run the following script to generate the `getting-started.json` configuration file inside of the `deploy-config` directory.