From 44833048d38b483aad647f9811697a083a93a9c2 Mon Sep 17 00:00:00 2001 From: jsvisa Date: Thu, 30 Oct 2025 10:25:41 +0800 Subject: [PATCH 1/3] docs: remove empty whitespace --- README.md | 5 ++--- create-l2-rollup-example/.example.env | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 844124f56..b27d24091 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# Optimism Docs +# Optimism Docs -This repo houses the Optimism Docs located at [docs.optimism.io](https://docs.optimism.io/). All documentation-related updates and new content will be tracked and maintained in this repo. +This repo houses the Optimism Docs located at [docs.optimism.io](https://docs.optimism.io/). All documentation-related updates and new content will be tracked and maintained in this repo. ## Local Development @@ -9,4 +9,3 @@ Follow these [mintlify docs](https://www.mintlify.com/docs/installation) to prev ## License This project is licensed under the [MIT License](https://github.com/ethereum-optimism/optimism/blob/develop/LICENSE). - diff --git a/create-l2-rollup-example/.example.env b/create-l2-rollup-example/.example.env index 75a31144b..34df6ffd4 100644 --- a/create-l2-rollup-example/.example.env +++ b/create-l2-rollup-example/.example.env @@ -59,4 +59,4 @@ OP_PROPOSER_POLL_INTERVAL="20s" # ========================================== # Uncomment these for local development with a local L1 network # L1_RPC_URL="http://host.docker.internal:8545" -# L1_BEACON_URL="http://host.docker.internal:5052" \ No newline at end of file +# L1_BEACON_URL="http://host.docker.internal:5052" From a009323c89860a57934ecb22695f91e3c55e0af9 Mon Sep 17 00:00:00 2001 From: jsvisa Date: Thu, 30 Oct 2025 10:30:20 +0800 Subject: [PATCH 2/3] docs(l2-rollup): wrong path --- create-l2-rollup-example/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create-l2-rollup-example/README.md b/create-l2-rollup-example/README.md index 5d3c60f84..6cbdc3bed 100644 --- a/create-l2-rollup-example/README.md +++ b/create-l2-rollup-example/README.md @@ -49,7 +49,7 @@ mise install 1. **Navigate to this code directory**: ```bash - cd docs/pages/operators/chain-operators/tutorials/create-l2-rollup/code + cd docs/create-l2-rollup-example ``` 2. **Configure environment variables**: From 8872f4b048d52f5493b45dc832adb98153596312 Mon Sep 17 00:00:00 2001 From: jsvisa Date: Thu, 30 Oct 2025 11:58:33 +0800 Subject: [PATCH 3/3] docs(l2-rollup): add sequencer dir --- create-l2-rollup-example/README.md | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/create-l2-rollup-example/README.md b/create-l2-rollup-example/README.md index 6cbdc3bed..b9b78ac57 100644 --- a/create-l2-rollup-example/README.md +++ b/create-l2-rollup-example/README.md @@ -114,10 +114,10 @@ For detailed manual setup instructions, see the [Create L2 Rollup tutorial](/ope ## Directory Structure ``` -code/ +create-l2-rollup-example/ ├── .example.env # Environment variables template ├── docker-compose.yml # Service orchestration -├── Makefile # Automation commands +├── Makefile # Automation commands ├── scripts/ │ ├── setup-rollup.sh # Automated deployment script │ └── download-op-deployer.sh # op-deployer downloader @@ -125,18 +125,25 @@ code/ ``` **Generated directories** (created during deployment): + ``` -deployer/ # op-deployer configuration and outputs +deployer/ # op-deployer configuration and outputs ├── .deployer/ # Deployment artifacts (genesis.json, rollup.json, etc.) ├── addresses/ # Generated wallet addresses └── .env # Environment variables batcher/ # op-batcher configuration -├── .env # Batcher-specific environment variables +└── .env # Environment variables proposer/ # op-proposer configuration -├── .env # Proposer-specific environment variables +└── .env # Environment variables challenger/ # op-challenger configuration ├── .env # Challenger-specific environment variables └── data/ # Challenger data directory +sequencer/ # op-sequencer configuration +├── .env # op-sequencer environment variables +├── genesis.json # op-geth genesis file +├── jwt.txt # JWT secret for auth RPC +├── rollup.json # op-node rollup configuration +└── op-geth-data/ # op-geth data directory ``` ## Service Ports