-
Notifications
You must be signed in to change notification settings - Fork 267
Fix artifacts in 'Create L2 Rollup' tutorial #741
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix artifacts in 'Create L2 Rollup' tutorial #741
Conversation
WalkthroughRecent updates to Changes
Possibly related issues
Recent review detailsConfiguration used: .coderabbit.yaml Files selected for processing (1)
Additional context usedPath-based instructions (1)
LanguageTool
Gitleaks
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
✅ Deploy Preview for docs-optimism ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
Outside diff range and nitpick comments (2)
pages/builders/chain-operators/tutorials/create-l2-rollup.mdx (2)
Line range hint
125-125
:
The article incorrectly uses "a OP Stack Rollup" instead of "an OP Stack Rollup". The indefinite article "an" should be used before words that start with a vowel sound.- You'll be deploying a OP Stack Rollup chain that uses a Layer 1 blockchain to host and order transaction data. + You'll be deploying an OP Stack Rollup chain that uses a Layer 1 blockchain to host and order transaction data.
Line range hint
296-297
:
Detected potential exposure of Generic API Keys. It's crucial to ensure that sensitive keys are not hardcoded in the codebase or documentation. Consider using environment variables or secure vault solutions to manage these keys.- export ETHERSCAN_API_KEY=0x123456789abcdef + export ETHERSCAN_API_KEY=$ETHERSCAN_API_KEYAlso applies to: 300-301, 304-305, 308-309
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ty!
Fix the instructions in the tutorial so users don't run into the issue described in ethereum-optimism/optimism#10114, using the instructions from ethereum-optimism/developers#354 (reply in thread). I've tested this against the
tutorials/chain
branch and it is working. #627