Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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).

2 changes: 1 addition & 1 deletion create-l2-rollup-example/.example.env
Original file line number Diff line number Diff line change
Expand Up @@ -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"
# L1_BEACON_URL="http://host.docker.internal:5052"
19 changes: 13 additions & 6 deletions create-l2-rollup-example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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**:
Expand Down Expand Up @@ -114,29 +114,36 @@ 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
└── README.md # This file
```

**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
Expand Down