Skip to content

Commit 2bc255b

Browse files
committed
more link changes
1 parent b5e00e3 commit 2bc255b

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

docs/guides/deploy/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: This page provides an overview of some common ways to deploy chains
66

77
One of the benefits of building chains with Evolve is the flexibility you have as a developer to choose things like the DA layer, the settlement scheme, and the execution environment.
88

9-
You can learn more about Evolve architecture [here](/learn/specs/overview.md).
9+
You can learn more about Evolve architecture [here](../../learn/specs/overview.md).
1010

1111
The challenge that comes with this flexibility is that there are more services that now need to be deployed and managed while running your chain.
1212

docs/guides/deploy/testnet.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
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.
44

5-
You can learn more about Evolve EVM architecture [here](/learn/execution.md).
5+
You can learn more about Evolve EVM architecture [here](../../learn/execution.md).
66

77
<!-- markdownlint-disable MD033 -->
88
<script setup>
@@ -90,7 +90,7 @@ graph TB
9090

9191
## 💻 Pre-requisites {#prerequisites}
9292

93-
Make sure you understand the sequencing topology you want to use by reading the [Sequencing Overview](/learn/sequencing/overview.md).
93+
Make sure you understand the sequencing topology you want to use by reading the [Sequencing Overview](../..//learn/sequencing/overview.md).
9494

9595
## 🛠️ Dependencies {#dependencies}
9696

@@ -107,7 +107,7 @@ Currently, Evolve supports one sequencing implementation:
107107
- **Advantages**: Easy setup, fast block production, independence from DA block time
108108
- **Requirements**: One sequencer node, multiple optional full nodes
109109

110-
For detailed information about sequencing topologies, see the [Sequencing Overview](/learn/sequencing/overview.md) and [Single Sequencer](/learn/sequencing/single.md) documentation.
110+
For detailed information about sequencing topologies, see the [Sequencing Overview](../../learn/sequencing/overview.md) and [Single Sequencer](../../learn/sequencing/single.md) documentation.
111111

112112
## 🏗️ Deployment Architecture {#deployment-architecture}
113113

@@ -300,8 +300,8 @@ Congratulations again! You now know how to deploy Evolve EVM chains and understa
300300

301301
For detailed setup instructions, see:
302302

303-
- [Single Sequencer Setup Guide](/guides/evm/single.md) - Step-by-step deployment instructions
304-
- [RETH Backup Guide](/guides/evm/reth-backup.md) - Data protection and backup procedures
305-
- [Celestia DA Guide](/guides/da/celestia-da.md) - Connecting to Celestia networks
303+
- [Single Sequencer Setup Guide](../evm/single.md) - Step-by-step deployment instructions
304+
- [RETH Backup Guide](../evm/reth-backup.md) - Data protection and backup procedures
305+
- [Celestia DA Guide](../da/celestia-da.md) - Connecting to Celestia networks
306306

307-
You can also learn more about local deployments in our [Docker Compose guide](/docs/guides/deploy/local.md).
307+
You can also learn more about local deployments in our [Docker Compose guide](../deploy/local.md).

docs/guides/restart-chain.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ You can stop your chain by using `Control + C` in your terminal where the node i
8888

8989
### ⛽ Increase the gas fee {#increase-gas-fee}
9090

91-
To reiterate, before restarting the chain, you will need to increase the gas fee in order to avoid a `Code: 19` error. See the [How to configure gas price](/docs/learn/config.md#da-gas-price) guide for more information.
91+
To reiterate, before restarting the chain, you will need to increase the gas fee in order to avoid a `Code: 19` error. See the [How to configure gas price](../learn/config.md#da-gas-price) guide for more information.
9292

9393
### 🔁 Restarting your chain {#restarting-your-chain}
9494

docs/learn/specs/block-manager.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -591,7 +591,7 @@ The communication with DA layer:
591591
* Node's context is passed down to all components to support graceful shutdown and cancellation.
592592
* The block manager supports custom signature payload providers for headers, enabling flexible signing schemes.
593593
* The block manager supports the separation of header and data structures in Evolve. This allows for expanding the sequencing scheme beyond single sequencing and enables the use of a decentralized sequencer mode. For detailed information on this architecture, see the [Header and Data Separation ADR](../../adr/adr-014-header-and-data-separation.md).
594-
* The block manager processes blocks with a minimal header format, which is designed to eliminate dependency on CometBFT's header format and can be used to produce an execution layer tailored header if needed. For details on this header structure, see the [Evolve Minimal Header](../../adr/adr-015-evolve-minimal-header.md) specification.
594+
* The block manager processes blocks with a minimal header format, which is designed to eliminate dependency on CometBFT's header format and can be used to produce an execution layer tailored header if needed. For details on this header structure, see the [Evolve Minimal Header](../../adr/adr-015-rollkit-minimal-header.md) specification.
595595

596596
## Metrics
597597

0 commit comments

Comments
 (0)