Skip to content
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

Add tutorial for devnet #914

Merged
merged 5 commits into from
Nov 21, 2024
Merged

Add tutorial for devnet #914

merged 5 commits into from
Nov 21, 2024

Conversation

mslipper
Copy link
Contributor

No description provided.

Copy link

netlify bot commented Sep 23, 2024

Deploy Preview for docs-optimism ready!

Name Link
🔨 Latest commit 6455854
🔍 Latest deploy log https://app.netlify.com/sites/docs-optimism/deploys/673eca2f6220830008cb51a5
😎 Deploy Preview https://deploy-preview-914--docs-optimism.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@WillPapper
Copy link
Contributor

Found this when looking for the latest devnet deployment info :) Apologies if I'm jumping the gun here on the draft PR, I'm deep in debugging some devnet sequencer issues and switching to the new method looked like the best option.

This tutorial seems to fail for me. I tried it on both Mac and Linux, on Mac using Orbstack + Homebrew Docker/Kurtosis and on Linux using an Ubuntu-based GitHub Codespace. Both fail with the same error, so I don't believe it's related to the local environment.

Here are the logs from the GitHub Codespace instance:
Kurtosis Error:

kurtosis run github.com/ethpandaops/ethereum-package --args-file ./network-config.yml

The Kurtosis CLI collects user metrics by default. These metrics are anonymized, private & obfuscated. These metrics help us better understand what features are used, what features to invest in and what features might be buggy.
In case you wish to not send metrics, you can do so by running - kurtosis analytics disable
Read more at https://docs.kurtosis.com/advanced-concepts/metrics-philosophy

✔ (Optional) Share your email address for occasional updates & outreach for product feedback from Kurtosis: █
INFO[2024-09-28T02:35:26Z] No Kurtosis engine was found; attempting to start one... 
INFO[2024-09-28T02:35:26Z] Starting the centralized logs components...  
INFO[2024-09-28T02:35:26Z] Pulling image 'timberio/vector:0.31.0-debian' 
INFO[2024-09-28T02:35:35Z] Centralized logs components started.         
INFO[2024-09-28T02:35:35Z] Pulling image 'traefik:2.10.6'               
INFO[2024-09-28T02:35:42Z] Reverse proxy started.                       
INFO[2024-09-28T02:35:42Z] Pulling image 'alpine:3.17'                  
INFO[2024-09-28T02:35:45Z] Pulling image 'kurtosistech/engine:1.3.0'    
INFO[2024-09-28T02:35:49Z] Successfully started Kurtosis engine         
INFO[2024-09-28T02:35:49Z] Creating a new enclave for Starlark to run inside... 
INFO[2024-09-28T02:36:06Z] Enclave 'nameless-playa' created successfully 
There was an error interpreting Starlark code 
Evaluation error: fail: Invalid parameter optimism_package, allowed fields ["participants", "participants_matrix", "network_params", "dora_params", "tx_spammer_params", "goomy_blob_params", "prometheus_params", "grafana_params", "assertoor_params", "mev_params", "xatu_sentry_params", "port_publisher", "wait_for_finalization", "global_log_level", "snooper_enabled", "ethereum_metrics_exporter_enabled", "parallel_keystore_generation", "disable_peer_scoring", "persistent", "mev_type", "xatu_sentry_enabled", "apache_port", "global_tolerations", "global_node_selectors", "keymanager_enabled", "checkpoint_sync_enabled", "checkpoint_sync_url", "additional_services"]
        at [github.com/ethpandaops/ethereum-package/main.star:76:57]: run
        at [github.com/ethpandaops/ethereum-package/src/package_io/input_parser.star:83:30]: input_parser
        at [github.com/ethpandaops/ethereum-package/src/package_io/sanity_check.star:332:17]: sanity_check
        at [0:0]: fail

Error encountered running Starlark code.

⭐ us on GitHub - https://github.com/kurtosis-tech/kurtosis
INFO[2024-09-28T02:36:09Z] ======================================================= 
INFO[2024-09-28T02:36:09Z] ||          Created enclave: nameless-playa          || 
INFO[2024-09-28T02:36:09Z] ======================================================= 
Name:            nameless-playa
UUID:            e86595d61167
Status:          RUNNING
Creation Time:   Sat, 28 Sep 2024 02:35:49 UTC
Flags:           

========================================= Files Artifacts =========================================
UUID   Name

========================================== User Services ==========================================
UUID   Name   Ports   Status

Version info:

docker --version
Docker version 27.0.3-1, build 7d4bcd863a4c863e650eed02a550dfeb98560b83

kurtosis version
CLI Version:   1.3.0

To see the engine version (provided it is running): kurtosis engine status

kurtosis engine status
A Kurtosis engine is running with the following info:
Version:   1.3.0

Network config file:

cat network-config.yml 
optimism_package:
  chains: # you can define multiple L2s, which will be deployed against the same L1 as a single Superchain
    - participants: # each participant is a node in the network. here we've defined two, one running op-geth and one running op-reth
          - el_type: op-geth
            sequencer: true # this node will be the sequencer
          - el_type: op-reth
      network_params:
        name: rollup-1 # can be anything as long as it is unique
        chain_id: 12345 # can be anything as long as it is unique
  op_contract_deployer_params: # configures the contract versions to deploy
    image: mslipper/op-deployer:latest
    artifacts_url: https://storage.googleapis.com/oplabs-contract-artifacts/artifacts-v1-4accd01f0c35c26f24d2aa71aba898dd7e5085a2ce5daadc8a84b10caf113409.tar.gz

@sbvegan
Copy link
Collaborator

sbvegan commented Oct 15, 2024

Hey @mslipper thanks for opening this PR! Instead of updating the testnet tutorial, can it update this page? It would address this issue: #984

I also ran into some issues involving Starlark.

version info:

docker --version
Docker version 27.2.0, build 3ab4256958

kurtosis version
CLI Version:   1.3.1

To see the engine version (provided it is running): kurtosis engine status

kurtosis engine status
A Kurtosis engine is running with the following info:
Version:   1.3.1

network yaml file

optimism_package:
  chains: # you can define multiple L2s, which will be deployed against the same L1 as a single Superchain
    - participants: # each participant is a node in the network. here we've defined two, one running op-geth and one running op-reth
          - el_type: op-geth
            sequencer: true # this node will be the sequencer
          - el_type: op-reth
      network_params:
        name: rollup-1 # can be anything as long as it is unique
        chain_id: 12345 # can be anything as long as it is unique
  op_contract_deployer_params: # configures the contract versions to deploy
    image: mslipper/op-deployer:latest
    artifacts_url: https://storage.googleapis.com/oplabs-contract-artifacts/artifacts-v1-4accd01f0c35c26f24d2aa71aba898dd7e5085a2ce5daadc8a84b10caf113409.tar.gz

command with complaints

soyboy@soyboys-MacBook-Air devnet-test % kurtosis run github.com/ethpandaops/ethereum-package --args-file ./network-config.yml

The Kurtosis CLI collects user metrics by default. These metrics are anonymized, private & obfuscated. These metrics help us better understand what features are used, what features to invest in and what features might be buggy.
In case you wish to not send metrics, you can do so by running - kurtosis analytics disable
Read more at https://docs.kurtosis.com/advanced-concepts/metrics-philosophy

✔ (Optional) Share your email address for occasional updates & outreach for prod(Optional) Share your email address for occasional updates & outreach for produc✔ (Optional) Share your email address for occasional updates & outreach for product feedback from Kurtosis: █
INFO[2024-10-15T16:29:05-06:00] No Kurtosis engine was found; attempting to start one... 
INFO[2024-10-15T16:29:05-06:00] Starting the centralized logs components...  
INFO[2024-10-15T16:29:05-06:00] Pulling image 'timberio/vector:0.31.0-debian' 
      
INFO[2024-10-15T16:29:12-06:00] Centralized logs components started.         
INFO[2024-10-15T16:29:12-06:00] Pulling image 'traefik:2.10.6'               
INFO[2024-10-15T16:29:17-06:00] Reverse proxy started.                       
INFO[2024-10-15T16:29:17-06:00] Pulling image 'alpine:3.17'                  
INFO[2024-10-15T16:29:19-06:00] Pulling image 'kurtosistech/engine:1.3.1'    
INFO[2024-10-15T16:29:24-06:00] Successfully started Kurtosis engine         
INFO[2024-10-15T16:29:24-06:00] Creating a new enclave for Starlark to run inside... 
INFO[2024-10-15T16:29:40-06:00] Enclave 'quiet-cenote' created successfully  
There was an error interpreting Starlark code 
Evaluation error: fail: Invalid parameter optimism_package, allowed fields ["participants", "participants_matrix", "network_params", "dora_params", "tx_spammer_params", "goomy_blob_params", "prometheus_params", "grafana_params", "assertoor_params", "mev_params", "xatu_sentry_params", "port_publisher", "wait_for_finalization", "global_log_level", "snooper_enabled", "ethereum_metrics_exporter_enabled", "parallel_keystore_generation", "disable_peer_scoring", "persistent", "mev_type", "xatu_sentry_enabled", "apache_port", "global_tolerations", "global_node_selectors", "keymanager_enabled", "checkpoint_sync_enabled", "checkpoint_sync_url", "additional_services"]
	at [github.com/ethpandaops/ethereum-package/main.star:76:57]: run
	at [github.com/ethpandaops/ethereum-package/src/package_io/input_parser.star:87:30]: input_parser
	at [github.com/ethpandaops/ethereum-package/src/package_io/sanity_check.star:356:17]: sanity_check
	at [0:0]: fail

Error encountered running Starlark code.

⭐ us on GitHub - https://github.com/kurtosis-tech/kurtosis
INFO[2024-10-15T16:29:43-06:00] ===================================================== 
INFO[2024-10-15T16:29:43-06:00] ||          Created enclave: quiet-cenote          || 
INFO[2024-10-15T16:29:43-06:00] ===================================================== 
Name:            quiet-cenote
UUID:            6e2a2e8e3934
Status:          RUNNING
Creation Time:   Tue, 15 Oct 2024 16:29:24 CST
Flags:           

========================================= Files Artifacts =========================================
UUID   Name

========================================== User Services ==========================================
UUID   Name   Ports   Status


I ended up with these containers:

Screenshot 2024-10-15 at 4 32 47 PM

@mslipper mslipper force-pushed the feat/devnet-tutorial branch from d38582f to e8b730e Compare November 21, 2024 05:46
@mslipper mslipper marked this pull request as ready for review November 21, 2024 05:48
@mslipper mslipper requested a review from a team as a code owner November 21, 2024 05:48
@mslipper
Copy link
Contributor Author

@sbvegan updated to use the doc you requested, and fixed the instructions to avoid the errors you described.

Copy link
Contributor

coderabbitai bot commented Nov 21, 2024

📝 Walkthrough
📝 Walkthrough

Walkthrough

The pull request introduces substantial changes to the dev-node.mdx document, primarily focusing on the setup of a local OP Stack development environment. The title has been modified for capitalization consistency, and the content has been restructured to emphasize the process of spinning up an OP Stack devnet chain. Sections like "What is this?" and "Do I need this?" have been removed, while new sections such as "Installing Dependencies," "Configure your network," and "Start your network" have been added. The updated document provides detailed instructions on using Kurtosis for deploying the devnet, including YAML configuration examples. Additionally, a "Callout" section has been included to inform users about the guide's active development status and encourage issue reporting on GitHub. There are also warnings regarding potential impacts from modifications to the OP Stack. The installation instructions now specify dependencies like Docker and Kurtosis, complete with version checks and installation commands, enhancing the overall flow and usability of the document.

Possibly related PRs

  • update devnet #834: This PR updates the installation instructions in dev-node.mdx, which is directly related to the changes made in the main PR that also modifies this document's content and structure.
  • Deploy the L1 contract command path updated #1092: This PR updates the command path for deploying L1 contracts in create-l2-rollup.mdx, which is relevant as it pertains to the setup and deployment processes discussed in the main PR's modifications to dev-node.mdx.

Suggested labels

tutorial

Suggested reviewers

  • sbvegan

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?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

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 using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🧹 Outside diff range and nitpick comments (6)
pages/chain/testing/dev-node.mdx (6)

2-2: Update title to use sentence case

According to the documentation guidelines, use sentence case for titles while preserving proper nouns:

- title: Running a Local Development Environment
+ title: Running a local development environment

17-18: Revise to remove personal pronouns

Replace personal pronouns with more direct language:

- This tutorial is **designed for developers** who want to learn about the OP Stack by spinning up a local OP Stack devnet.
- You'll perform the full deployment process, and **you'll end up with your very own OP Stack devnet**.
+ This tutorial is **designed for developers** learning about the OP Stack through local devnet deployment.
+ The process guides through the full deployment, resulting in a **complete OP Stack devnet**.
🧰 Tools
🪛 LanguageTool

[style] ~17-~17: Consider using an alternative to strengthen your wording.
Context: ...rial is designed for developers who want to learn about the OP Stack by spinning...

(WANT_KEEN)


20-22: Add missing comma and revise sentence structure

Add the required comma and improve clarity:

- It's useful to understand what each of these components does before
- you start deploying your chain. To learn about the different components please
- read the [deployment overview page](/builders/chain-operators/deploy/overview).
+ Understanding each component's function is essential before
+ deployment. To learn about the different components, please
+ refer to the [deployment overview page](/builders/chain-operators/deploy/overview).
🧰 Tools
🪛 LanguageTool

[typographical] ~21-~21: Consider adding a comma here.
Context: ... To learn about the different components please read the [deployment overview page](/bu...

(PLEASE_COMMA)


37-37: Fix table cell padding

Adjust the table cell padding to match the style guide:

-| [docker](https://docs.docker.com/engine/install/)             | `^27`    | `docker --version`    |
+| [docker](https://docs.docker.com/engine/install/) | `^27` | `docker --version` |
🧰 Tools
🪛 GitHub Check: lint

[warning] 37-37:
Cell should be padded with 1 space, not 13


58-67: Add configuration validation steps

Consider adding validation steps to help users verify their configuration:

  1. Add a command to validate YAML syntax
  2. Document required and optional fields
  3. Include common configuration errors to watch for

Would you like assistance in drafting the validation section?


185-188: Fix list formatting

Update the list formatting to match the style guide:

-*   You can [modify the blockchain in various ways](../hacks/overview).
-*   Check out the [protocol specs](https://specs.optimism.io/) for more detail about the rollup protocol.
-*   If you run into any problems, please visit the [Chain Operators Troubleshooting Guide](../management/troubleshooting)
-    or [file an issue](https://github.com/ethereum-optimism/optimism/issues) for help.
+* You can [modify the blockchain in various ways](../hacks/overview).
+* Check out the [protocol specs](https://specs.optimism.io/) for more detail about the rollup protocol.
+* If you run into any problems, please visit the [Chain Operators Troubleshooting Guide](../management/troubleshooting)
+  or [file an issue](https://github.com/ethereum-optimism/optimism/issues) for help.
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between e33d79f and f531051.

📒 Files selected for processing (1)
  • pages/chain/testing/dev-node.mdx (1 hunks)
🧰 Additional context used
📓 Path-based instructions (1)
pages/chain/testing/dev-node.mdx (1)

Pattern **/*.mdx: "ALWAYS review Markdown content THOROUGHLY with the following criteria:

  • Use proper nouns in place of personal pronouns like 'We' and 'Our' to maintain consistency in communal documentation.
  • Avoid gender-specific language and use the imperative form.
  • Monitor capitalization for emphasis. Avoid using all caps, italics, or bold for emphasis.
  • Ensure proper nouns are capitalized in sentences.
  • Apply the Oxford comma.
  • Use proper title case for buttons, tab names, page names, and links. Sentence case should be used for body content and short phrases, even in links.
  • Use correct spelling and grammar at all times (IMPORTANT).
  • For H1, H2, and H3 headers:
    1. Use sentence case, capitalizing only the first word.
    2. Preserve the capitalization of proper nouns, technical terms, and acronyms as defined in the 'nouns.txt' file located in the root directory of the project.
    3. Do not automatically lowercase words that appear in the 'nouns.txt' file, regardless of their position in the header.
  • Flag any headers that seem to inconsistently apply these rules for manual review.
  • When reviewing capitalization, always refer to the 'nouns.txt' file for the correct capitalization of proper nouns and technical terms specific to the project.
    "
🪛 LanguageTool
pages/chain/testing/dev-node.mdx

[style] ~17-~17: Consider using an alternative to strengthen your wording.
Context: ...rial is designed for developers who want to learn about the OP Stack by spinning...

(WANT_KEEN)


[typographical] ~21-~21: Consider adding a comma here.
Context: ... To learn about the different components please read the [deployment overview page](/bu...

(PLEASE_COMMA)


[uncategorized] ~25-~25: If this is a compound adjective that modifies the following noun, use a hyphen.
Context: ...r own needs. **The OP Stack is free and open source software licensed entirely under the MI...

(EN_COMPOUND_ADJECTIVE_INTERNAL)


[typographical] ~145-~145: It appears that a comma is missing.
Context: ...use to connect to the service. At this point your chain is up and running. Let's mov...

(DURING_THAT_TIME_COMMA)


[grammar] ~156-~156: This phrase is duplicated. You should probably use “test test” only once.
Context: ...re-fund development addresses using the `test test test test test test test test test test test junk...

(PHRASE_REPETITION)

🪛 GitHub Check: lint
pages/chain/testing/dev-node.mdx

[warning] 37-37:
Cell should be padded with 1 space, not 13


[warning] 140-140:
Marker style should be *


[warning] 140-140:
Incorrect list-item indent: add 2 spaces


[warning] 142-142:
Marker style should be *


[warning] 142-142:
Incorrect list-item indent: add 2 spaces


[warning] 143-143:
Marker style should be *


[warning] 143-143:
Incorrect list-item indent: add 2 spaces

pages/chain/testing/dev-node.mdx Show resolved Hide resolved
pages/chain/testing/dev-node.mdx Show resolved Hide resolved
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Outside diff range and nitpick comments (3)
pages/chain/testing/dev-node.mdx (3)

17-22: Enhance readability with proper punctuation and stronger wording

Consider these improvements:

  1. Replace "who want to" with "who need to" for stronger wording
  2. Add a comma after "components" in the sentence "To learn about the different components, please"
-This tutorial is **designed for developers** who want to learn about the OP Stack by spinning up a local OP Stack devnet.
+This tutorial is **designed for developers** who need to learn about the OP Stack by spinning up a local OP Stack devnet.

-To learn about the different components please
+To learn about the different components, please
🧰 Tools
🪛 LanguageTool

[style] ~17-~17: Consider using an alternative to strengthen your wording.
Context: ...rial is designed for developers who want to learn about the OP Stack by spinning...

(WANT_KEEN)


[typographical] ~21-~21: Consider adding a comma here.
Context: ... To learn about the different components please read the [deployment overview page](/bu...

(PLEASE_COMMA)


58-67: Add configuration validation guidance

Consider adding instructions for validating the YAML configuration before running it, such as:

  1. How to verify the chain ID is unique
  2. How to validate the YAML syntax
  3. Common configuration mistakes to avoid

178-182: Enhance the section with practical examples

Consider adding:

  1. A basic smart contract deployment example
  2. Sample transaction commands
  3. Common interaction patterns

Would you like me to help draft these examples?

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between f531051 and 6455854.

📒 Files selected for processing (1)
  • pages/chain/testing/dev-node.mdx (1 hunks)
🧰 Additional context used
📓 Path-based instructions (1)
pages/chain/testing/dev-node.mdx (1)

Pattern **/*.mdx: "ALWAYS review Markdown content THOROUGHLY with the following criteria:

  • Use proper nouns in place of personal pronouns like 'We' and 'Our' to maintain consistency in communal documentation.
  • Avoid gender-specific language and use the imperative form.
  • Monitor capitalization for emphasis. Avoid using all caps, italics, or bold for emphasis.
  • Ensure proper nouns are capitalized in sentences.
  • Apply the Oxford comma.
  • Use proper title case for buttons, tab names, page names, and links. Sentence case should be used for body content and short phrases, even in links.
  • Use correct spelling and grammar at all times (IMPORTANT).
  • For H1, H2, and H3 headers:
    1. Use sentence case, capitalizing only the first word.
    2. Preserve the capitalization of proper nouns, technical terms, and acronyms as defined in the 'nouns.txt' file located in the root directory of the project.
    3. Do not automatically lowercase words that appear in the 'nouns.txt' file, regardless of their position in the header.
  • Flag any headers that seem to inconsistently apply these rules for manual review.
  • When reviewing capitalization, always refer to the 'nouns.txt' file for the correct capitalization of proper nouns and technical terms specific to the project.
    "
🪛 LanguageTool
pages/chain/testing/dev-node.mdx

[style] ~17-~17: Consider using an alternative to strengthen your wording.
Context: ...rial is designed for developers who want to learn about the OP Stack by spinning...

(WANT_KEEN)


[typographical] ~21-~21: Consider adding a comma here.
Context: ... To learn about the different components please read the [deployment overview page](/bu...

(PLEASE_COMMA)


[uncategorized] ~25-~25: If this is a compound adjective that modifies the following noun, use a hyphen.
Context: ...r own needs. **The OP Stack is free and open source software licensed entirely under the MI...

(EN_COMPOUND_ADJECTIVE_INTERNAL)


[typographical] ~145-~145: It appears that a comma is missing.
Context: ...use to connect to the service. At this point your chain is up and running. Let's mov...

(DURING_THAT_TIME_COMMA)


[grammar] ~156-~156: This phrase is duplicated. You should probably use “test test” only once.
Context: ...re-fund development addresses using the `test test test test test test test test test test test junk...

(PHRASE_REPETITION)

🔇 Additional comments (2)
pages/chain/testing/dev-node.mdx (2)

2-8: LGTM! Frontmatter and imports are properly structured.

The title follows proper title case, and the description clearly states the tutorial's purpose.


183-188: LGTM! Good resources for further learning

The section provides appropriate next steps and troubleshooting resources.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants