-
Notifications
You must be signed in to change notification settings - Fork 250
fix: broken links #2549
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
Merged
Merged
fix: broken links #2549
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,7 +2,7 @@ | |
|
|
||
| This tutorial is going to show you how to deploy a Evolve testnet, focusing on the architecture choices and components that make up a complete EVM-based chain deployment. | ||
|
|
||
| You can learn more about Evolve EVM architecture [here](/docs/learn/execution.md). | ||
| You can learn more about Evolve EVM architecture [here](/learn/execution.md). | ||
|
|
||
| <!-- markdownlint-disable MD033 --> | ||
| <script setup> | ||
|
|
@@ -90,7 +90,7 @@ graph TB | |
|
|
||
| ## 💻 Pre-requisites {#prerequisites} | ||
|
|
||
| Make sure you understand the sequencing topology you want to use by reading the [Sequencing Overview](/docs/learn/sequencing/overview.md). | ||
| Make sure you understand the sequencing topology you want to use by reading the [Sequencing Overview](/learn/sequencing/overview.md). | ||
|
|
||
| ## 🛠️ Dependencies {#dependencies} | ||
|
|
||
|
|
@@ -107,7 +107,7 @@ Currently, Evolve supports one sequencing implementation: | |
| - **Advantages**: Easy setup, fast block production, independence from DA block time | ||
| - **Requirements**: One sequencer node, multiple optional full nodes | ||
|
|
||
| For detailed information about sequencing topologies, see the [Sequencing Overview](/docs/learn/sequencing/overview.md) and [Single Sequencer](/docs/learn/sequencing/single.md) documentation. | ||
| For detailed information about sequencing topologies, see the [Sequencing Overview](/learn/sequencing/overview.md) and [Single Sequencer](/learn/sequencing/single.md) documentation. | ||
|
|
||
| ## 🏗️ Deployment Architecture {#deployment-architecture} | ||
|
|
||
|
|
@@ -300,8 +300,8 @@ Congratulations again! You now know how to deploy Evolve EVM chains and understa | |
|
|
||
| For detailed setup instructions, see: | ||
|
|
||
| - [Single Sequencer Setup Guide](/docs/guides/evm/single.md) - Step-by-step deployment instructions | ||
| - [RETH Backup Guide](/docs/guides/evm/reth-backup.md) - Data protection and backup procedures | ||
| - [Celestia DA Guide](/docs/guides/da/celestia-da.md) - Connecting to Celestia networks | ||
| - [Single Sequencer Setup Guide](/guides/evm/single.md) - Step-by-step deployment instructions | ||
| - [RETH Backup Guide](/guides/evm/reth-backup.md) - Data protection and backup procedures | ||
| - [Celestia DA Guide](/guides/da/celestia-da.md) - Connecting to Celestia networks | ||
|
Comment on lines
+303
to
+305
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
|
|
||
| You can also learn more about local deployments in our [Docker Compose guide](/docs/guides/deploy/local.md). | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Thanks for fixing this link. I noticed a couple of other links in this file were missed. For example, on lines 3 and 20, the links still use the old
/docs/...path. It would be great to fix all of them in this file for consistency.