Skip to content

Commit cd2e6f8

Browse files
committed
fix(docs): comments
1 parent 4bc4f91 commit cd2e6f8

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

pages/operators/chain-operators/tutorials/create-l2-rollup.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ If you want to get started quickly, you can use the complete working implementat
4848
<Callout type="info">
4949
**Complete working example**
5050

51-
A complete, working implementation is available in the [`code/`](https://github.com/ethereum-optimism/docs/tree/main/docs/create-l2-rollup-example/) directory. This includes all necessary scripts, Docker Compose configuration, and example environment files.
51+
A complete, working implementation is available in the [`create-l2-rollup-example/`](https://github.com/ethereum-optimism/docs/tree/main/create-l2-rollup-example/) directory. This includes all necessary scripts, Docker Compose configuration, and example environment files.
5252
</Callout>
5353

5454
### Automated setup steps
5555

5656
1. **Clone and navigate to the code directory:**
5757
```bash
5858
git clone https://github.com/ethereum-optimism/docs.git
59-
cd docs/pages/operators/chain-operators/tutorials/create-l2-rollup/code
59+
cd docs/create-l2-rollup-example/
6060
```
6161

6262
2. **Configure your environment:**

pages/operators/chain-operators/tutorials/create-l2-rollup/code-setup.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ import { Callout } from 'nextra/components'
2222
export default function Page() {
2323
useEffect(() => {
2424
if (typeof window !== 'undefined') {
25-
window.location.replace('https://github.com/ethereum-optimism/docs/tree/main/docs/create-l2-rollup-example/')
25+
window.location.replace('https://github.com/ethereum-optimism/docs/tree/main/create-l2-rollup-example/')
2626
}
2727
}, [])
2828
return (
2929
<>
3030
<Callout type="info">
3131
Redirecting to the code on GitHub… If you are not redirected automatically, use this link:{' '}
32-
<a href="https://github.com/ethereum-optimism/docs/tree/main/docs/create-l2-rollup-example/" target="_blank" rel="noreferrer">Create L2 Rollup code on GitHub</a>.
32+
<a href="https://github.com/ethereum-optimism/docs/tree/main/create-l2-rollup-example/" target="_blank" rel="noreferrer">Create L2 Rollup code on GitHub</a>.
3333
</Callout>
3434
</>
3535
)
@@ -67,4 +67,4 @@ This implementation provides:
6767
* Working examples of all OP Stack components
6868
* Production-ready configuration patterns
6969

70-
For detailed setup instructions, see the [Create L2 Rollup tutorial](https://github.com/ethereum-optimism/docs/tree/main/docs/pages/operators/chain-operators/tutorials/create-l2-rollup).
70+
For detailed setup instructions, see the [Create L2 Rollup tutorial](/operators/chain-operators/tutorials/create-l2-rollup).

pages/operators/chain-operators/tutorials/create-l2-rollup/op-batcher-setup.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ After you have spun up your sequencer, you need to configure a batcher to submit
2929
<Callout type="tip">
3030
**Automated Setup Available**
3131

32-
For a complete working setup with all components, check out the [automated approach](https://github.com/ethereum-optimism/docs/tree/main/docs/create-l2-rollup-example/) in the code directory.
32+
For a complete working setup with all components, check out the [automated approach](https://github.com/ethereum-optimism/docs/tree/main/create-l2-rollup-example/) in the code directory.
3333
</Callout>
3434

3535
## Understanding the batcher's role

pages/operators/chain-operators/tutorials/create-l2-rollup/op-challenger-setup.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ After you have spun up your sequencer, batcher, and proposer, the final step is
2929
<Callout type="tip">
3030
**Automated Setup Available**
3131

32-
For a complete working setup with all components including automated prestate generation, check out the [automated approach](https://github.com/ethereum-optimism/docs/tree/main/docs/create-l2-rollup-example/) in the code directory.
32+
For a complete working setup with all components including automated prestate generation, check out the [automated approach](https://github.com/ethereum-optimism/docs/tree/main/create-l2-rollup-example/) in the code directory.
3333
</Callout>
3434

3535
This guide provides step-by-step instructions for setting up the configuration and monitoring options for `op-challenger`. The challenger is a critical fault proofs component that monitors dispute games and challenges invalid claims to protect your OP Stack chain.

pages/operators/chain-operators/tutorials/create-l2-rollup/op-deployer-setup.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Welcome to the first step of creating your own L2 rollup testnet! In this sectio
2626
<Callout type="tip">
2727
**Quick Setup Available**
2828

29-
For a complete automated setup that includes op-deployer deployment, check out the [`code/`](https://github.com/ethereum-optimism/docs/tree/main/docs/create-l2-rollup-example/) directory. The automated setup handles all contract deployment and configuration automatically.
29+
For a complete automated setup that includes op-deployer deployment, check out the [`code/`](https://github.com/ethereum-optimism/docs/tree/main/create-l2-rollup-example/) directory. The automated setup handles all contract deployment and configuration automatically.
3030
</Callout>
3131

3232
## About op-deployer
@@ -44,7 +44,7 @@ There are a couple of ways to install `op-deployer`:
4444
<Callout type="info">
4545
**Quick Setup Available**
4646

47-
For automated installation, you can use the download script from the [code directory](https://github.com/ethereum-optimism/docs/tree/main/docs/create-l2-rollup-example/). This script automatically downloads the latest version for your system.
47+
For automated installation, you can use the download script from the [code directory](https://github.com/ethereum-optimism/docs/tree/main/create-l2-rollup-example/). This script automatically downloads the latest version for your system.
4848
</Callout>
4949

5050
<Steps>
@@ -122,7 +122,7 @@ There are a couple of ways to install `op-deployer`:
122122
```
123123

124124
<Callout type="tip">
125-
**Pro Tip**: Use the automated download script from the [code directory](https://github.com/ethereum-optimism/docs/tree/main/docs/create-l2-rollup-example/) to avoid manual version management. It automatically detects your platform and downloads the latest version.
125+
**Pro Tip**: Use the automated download script from the [code directory](https://github.com/ethereum-optimism/docs/tree/main/create-l2-rollup-example/) to avoid manual version management. It automatically detects your platform and downloads the latest version.
126126
</Callout>
127127
</Steps>
128128
</Tabs.Tab>

pages/operators/chain-operators/tutorials/create-l2-rollup/op-proposer-setup.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ After you have spun up your sequencer and batcher, you need to attach a proposer
2929
<Callout type="tip">
3030
**Automated Setup Available**
3131

32-
For a complete working setup with all components, check out the [automated approach](https://github.com/ethereum-optimism/docs/tree/main/docs/create-l2-rollup-example/) in the code directory.
32+
For a complete working setup with all components, check out the [automated approach](https://github.com/ethereum-optimism/docs/tree/main/create-l2-rollup-example/) in the code directory.
3333
</Callout>
3434

3535
This guide assumes you already have a functioning sequencer, batcher, and the necessary L1 contracts deployed using [`op-deployer`](./op-deployer-setup). If you haven't set up your sequencer and batcher yet, please refer to the [sequencer guide](./op-geth-setup) and [batcher guide](./op-batcher-setup) first.

0 commit comments

Comments
 (0)