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
<!--
Please read and fill out this form before submitting your PR.
Please make sure you have reviewed our contributors guide before
submitting your
first PR.
NOTE: PR titles should follow semantic commits:
https://www.conventionalcommits.org/en/v1.0.0/
-->
## Overview
Fixes some broken links
<!--
Please provide an explanation of the PR, including the appropriate
context,
background, goal, and rationale. If there is an issue with this
information,
please provide a tl;dr and link the issue.
Ex: Closes #<issue number>
-->
Copy file name to clipboardExpand all lines: docs/guides/deploy/local.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
@@ -216,7 +216,7 @@ Since our chain is running in a docker container, we want to enter the docker co
216
216
docker exec -it gm-world sh
217
217
```
218
218
219
-
Now that you are in the docker container, you can interact with the chain using the `gmd` command and the example you used in the [gm-world tutorial](/docs/guides/gm-world.md).
219
+
Now that you are in the docker container, you can interact with the chain using the `gmd` command and the example you used in the [gm-world tutorial](/guides/gm-world.md).
220
220
221
221
Once you are done interacting with your chain, you can exit out of your docker container with:
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](/docs/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
+6-6Lines changed: 6 additions & 6 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](/docs/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](/docs/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](/docs/learn/sequencing/overview.md) and [Single Sequencer](/docs/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/index.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,22 +15,22 @@ hero:
15
15
actions:
16
16
- theme: brand
17
17
text: Quick start
18
-
link: /docs/guides/quick-start
18
+
link: /guides/quick-start
19
19
- theme: alt
20
20
text: Introduction
21
-
link: /docs/learn/about
21
+
link: /learn/about
22
22
23
23
features:
24
24
- title: Full Control Over Execution
25
25
details: Design your network exactly how you want it. Choose your VM, customize your execution environment, and maintain complete control without middlemen or revenue share.
26
-
link: /docs/learn/about#why-evolve
26
+
link: /learn/about#why-evolve
27
27
icon: 🚀
28
28
- title: Speed to Traction
29
29
details: Get to market fast with infrastructure that adapts to your app—not the other way around. Skip the complexity and start building what matters; your product.
30
-
link: /docs/learn/execution
30
+
link: /learn/execution
31
31
icon: ⚡
32
32
- title: No Validator Overhead
33
33
details: Skip the complexity of running validators. Focus on building your application while Celestia handles consensus and data availability.
Copy file name to clipboardExpand all lines: docs/src/openapi-rpc.json
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,18 +1,18 @@
1
1
{
2
2
"openapi": "3.1.0",
3
3
"info": {
4
-
"title": "Rollkit API",
4
+
"title": "Evolve API",
5
5
"description": "This API provides access to Signer, Store, P2P, and Health services.\n\n## Services\n\n* **Signer Service** - Sign messages and retrieve public keys\n* **Store Service** - Access blocks, state, and metadata\n* **P2P Service** - Network and peer information\n* **Health Service** - Node health checks and simple HTTP endpoints\n\n## Protocols\n\n### gRPC-Web Protocol\n\nMost endpoints use gRPC-Web protocol over HTTP/1.1 with JSON encoding. Requests are made via POST with `Content-Type: application/json`.\n\n### Simple HTTP Endpoints\n\nSome endpoints (like `/health/live`) are simple HTTP GET requests that return plain text responses for basic monitoring and health checks.",
6
6
"version": "1.0.0",
7
7
"contact": {
8
-
"name": "Rollkit Team",
9
-
"url": "https://rollkit.dev"
8
+
"name": "Evolve Team",
9
+
"url": "https://ev.xyz"
10
10
}
11
11
},
12
12
"servers": [
13
13
{
14
14
"url": "http://localhost:7331",
15
-
"description": "A local Rollkit instance configured to provide a remote procedure call (RPC) endpoint, actively listening for connections on TCP port 7331."
15
+
"description": "A local Evolve instance configured to provide a remote procedure call (RPC) endpoint, actively listening for connections on TCP port 7331."
0 commit comments