Skip to content

Commit 011e9cd

Browse files
authored
Merge branch 'main' into julien/signature-payload
2 parents 895a4db + 3529f6b commit 011e9cd

23 files changed

+73
-75
lines changed

.github/workflows/claude-code-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333

3434
- name: Run Claude Code Review
3535
id: claude-review
36-
uses: anthropics/claude-code-action@beta
36+
uses: anthropics/claude-code-action@ada5bc42ebb031c1b30d9e12ec73cb7f978b4846
3737
with:
3838
claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
3939

.github/workflows/claude.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
- name: Run Claude Code
3434
id: claude
35-
uses: anthropics/claude-code-action@beta
35+
uses: anthropics/claude-code-action@ada5bc42ebb031c1b30d9e12ec73cb7f978b4846
3636
with:
3737
claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
3838

docs/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Evolve Documentation Site
22

3-
[![Deploy](https://github.com/evstack/ev-node/actions/workflows/deploy.yml/badge.svg)](https://github.com/evstack/ev-node/actions/workflows/deploy.yml)
4-
53
Welcome to the official documentation repository for Evolve.
64

75
Here you'll find comprehensive guides, and reference materials to help you make the most out of Evolve.

docs/guides/create-genesis.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This guide will walk you through the process of setting up a genesis for your ch
66

77
For this guide you need to have a chain directory where you have created and built your chain.
88

9-
If you don't have a chain directory yet, you can initialize a simple ignite chain by following [this tutorial](/docs/guides/gm-world.md)
9+
If you don't have a chain directory yet, you can initialize a simple ignite chain by following [this tutorial](./gm-world.md)
1010

1111
:::tip
1212
This guide will use the simple ignite chain created in linked guide. Make sure to update any relevant variables to match your chain.
@@ -27,7 +27,7 @@ STAKING_AMOUNT="1000000000stake"
2727

2828
## Rebuild your chain
2929

30-
Ensure that `.gm` folder is present at `/Users/you/.gm` (if not, follow a [Guide](/docs/guides/gm-world.md) to set it up) and run the following command to (re)generate an entrypoint binary out of the code:
30+
Ensure that `.gm` folder is present at `/Users/you/.gm` (if not, follow a [Guide](./gm-world.md) to set it up) and run the following command to (re)generate an entrypoint binary out of the code:
3131

3232
```sh
3333
make install

docs/guides/da/celestia-da.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import constants from '../../.vitepress/constants/constants.js'
99

1010
This tutorial serves as a comprehensive guide for deploying your chain on Celestia's data availability (DA) network. From the Evolve perspective, there's no difference in posting blocks to Celestia's testnets or Mainnet Beta.
1111

12-
Before proceeding, ensure that you have completed the [gm-world](/docs/guides/gm-world.md) tutorial, which covers installing the Testapp CLI and running a chain against a local DA network.
12+
Before proceeding, ensure that you have completed the [gm-world](./gm-world.md) tutorial, which covers installing the Testapp CLI and running a chain against a local DA network.
1313

1414
## 🪶 Running a Celestia light node
1515

@@ -46,7 +46,7 @@ After successfully starting a light node, it's time to start posting the batches
4646

4747
## 🏗️ Prerequisites {#prerequisites}
4848

49-
- `gmd` CLI installed from the [gm-world](/docs/guides/gm-world.md) tutorial.
49+
- `gmd` CLI installed from the [gm-world](./gm-world.md) tutorial.
5050

5151
## 🛠️ Configuring flags for DA
5252

docs/guides/da/local-da.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ import constants from '../../.vitepress/constants/constants.js'
99

1010
This tutorial serves as a comprehensive guide for using the [local-da](https://github.com/evstack/ev-node/tree/main/da/cmd/local-da) with your chain.
1111

12-
Before proceeding, ensure that you have completed the [build a chain](/docs/guides/gm-world.md) tutorial, which covers setting-up, building and running your chain.
12+
Before proceeding, ensure that you have completed the [build a chain](./gm-world.md) tutorial, which covers setting-up, building and running your chain.
1313

1414
## Setting Up a Local DA Network
1515

1616
To set up a local DA network node on your machine, run the following script to install and start the local DA node:
1717

1818
```bash
1919
git clone --depth=1 --branch v1.0.0-beta.2 https://github.com/evstack/ev-node.git
20-
cd ev-node
20+
cd ev-node
2121
make build-da
2222
./build/local-da
2323
```

docs/guides/deploy/local.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 🏠 Local
22

3-
This tutorial is going to show you how to deploy the [gm-world chain](/docs/guides/gm-world.md) using Docker Compose.
3+
This tutorial is going to show you how to deploy the [gm-world chain](./gm-world.md) using Docker Compose.
44

55
You can learn more about Docker Compose [here](https://docs.docker.com/compose/).
66

@@ -17,7 +17,7 @@ import constants from '../../.vitepress/constants/constants.js'
1717

1818
## 💻 Pre-requisites {#prerequisites}
1919

20-
Make sure you have your gm-world chain ready by completing [the Build your chain tutorial](/docs/guides/gm-world.md).
20+
Make sure you have your gm-world chain ready by completing [the Build your chain tutorial](./gm-world.md).
2121

2222
## 🛠️ Dependencies {#dependencies}
2323

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/execution/cosmwasm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ this tutorial.
2424

2525
## 💻 CosmWasm dependency {#dependencies}
2626

27-
As with the [GM Chain](/docs/guides/gm-world.md), we use [kurtosis](https://docs.kurtosis.com/) to help with managing all the services we need to run. You can [install kurtosis here](https://docs.kurtosis.com/install).
27+
As with the [GM Chain](./gm-world.md), we use [kurtosis](https://docs.kurtosis.com/) to help with managing all the services we need to run. You can [install kurtosis here](https://docs.kurtosis.com/install).
2828

2929
Once installed, you can verify the installation by running:
3030

0 commit comments

Comments
 (0)