You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/guides/deploy/overview.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ description: This page provides an overview of some common ways to deploy chains
6
6
7
7
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.
8
8
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).
10
10
11
11
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.
Copy file name to clipboardExpand all lines: docs/guides/deploy/testnet.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
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.
4
4
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).
6
6
7
7
<!-- markdownlint-disable MD033 -->
8
8
<scriptsetup>
@@ -90,7 +90,7 @@ graph TB
90
90
91
91
## 💻 Pre-requisites {#prerequisites}
92
92
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).
94
94
95
95
## 🛠️ Dependencies {#dependencies}
96
96
@@ -107,7 +107,7 @@ Currently, Evolve supports one sequencing implementation:
107
107
-**Advantages**: Easy setup, fast block production, independence from DA block time
108
108
-**Requirements**: One sequencer node, multiple optional full nodes
109
109
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.
Copy file name to clipboardExpand all lines: docs/guides/restart-chain.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -88,7 +88,7 @@ You can stop your chain by using `Control + C` in your terminal where the node i
88
88
89
89
### ⛽ Increase the gas fee {#increase-gas-fee}
90
90
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.
92
92
93
93
### 🔁 Restarting your chain {#restarting-your-chain}
Copy file name to clipboardExpand all lines: docs/learn/specs/block-manager.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -591,7 +591,7 @@ The communication with DA layer:
591
591
* Node's context is passed down to all components to support graceful shutdown and cancellation.
592
592
* The block manager supports custom signature payload providers for headers, enabling flexible signing schemes.
593
593
* 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.
0 commit comments