Skip to content

Commit e6d7ac1

Browse files
fix: broken links (#2549)
<!-- 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> -->
1 parent a53a7ac commit e6d7ac1

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

docs/guides/deploy/local.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ Since our chain is running in a docker container, we want to enter the docker co
216216
docker exec -it gm-world sh
217217
```
218218

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).
220220

221221
Once you are done interacting with your chain, you can exit out of your docker container with:
222222

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](/docs/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: 6 additions & 6 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](/docs/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](/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).
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](/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.
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](/docs/guides/evm/single.md) - Step-by-step deployment instructions
304-
- [RETH Backup Guide](/docs/guides/evm/reth-backup.md) - Data protection and backup procedures
305-
- [Celestia DA Guide](/docs/guides/da/celestia-da.md) - Connecting to Celestia networks
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
306306

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

docs/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,22 @@ hero:
1515
actions:
1616
- theme: brand
1717
text: Quick start
18-
link: /docs/guides/quick-start
18+
link: /guides/quick-start
1919
- theme: alt
2020
text: Introduction
21-
link: /docs/learn/about
21+
link: /learn/about
2222

2323
features:
2424
- title: Full Control Over Execution
2525
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
2727
icon: 🚀
2828
- title: Speed to Traction
2929
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
3131
icon:
3232
- title: No Validator Overhead
3333
details: Skip the complexity of running validators. Focus on building your application while Celestia handles consensus and data availability.
34-
link: /docs/learn/about
34+
link: /learn/about
3535
icon: 🛡️
3636
---

docs/src/openapi-rpc.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
{
22
"openapi": "3.1.0",
33
"info": {
4-
"title": "Rollkit API",
4+
"title": "Evolve API",
55
"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.",
66
"version": "1.0.0",
77
"contact": {
8-
"name": "Rollkit Team",
9-
"url": "https://rollkit.dev"
8+
"name": "Evolve Team",
9+
"url": "https://ev.xyz"
1010
}
1111
},
1212
"servers": [
1313
{
1414
"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."
1616
}
1717
],
1818
"tags": [

0 commit comments

Comments
 (0)