Skip to content

Commit e74afb8

Browse files
committed
fix links
1 parent 013b41b commit e74afb8

13 files changed

Lines changed: 30 additions & 30 deletions

File tree

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/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

docs/guides/full-node.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This guide covers how to set up a full node to run alongside a sequencer node in
66

77
## Prerequisites
88

9-
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.
9+
Before proceeding, ensure that you have completed the [build a chain](./gm-world.md) tutorial, which covers setting-up, building and running your chain.
1010

1111
Ensure that you have:
1212

docs/guides/gm-world.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description: Learn how to build and deploy a CosmWasm-based "gm" (good morning)
77

88
## 🌞 Introduction {#introduction}
99

10-
This tutorial will guide you through building a evolve `gm-world` chain (`gm` stands for "good morning") using Evolve. Unlike the [quick start guide](/docs/guides/quick-start.md), this tutorial provides a more practical approach to understanding evolve chain development.
10+
This tutorial will guide you through building a evolve `gm-world` chain (`gm` stands for "good morning") using Evolve. Unlike the [quick start guide](./quick-start.md), this tutorial provides a more practical approach to understanding evolve chain development.
1111

1212
We will cover:
1313

@@ -105,7 +105,7 @@ First lets start the local DA network:
105105

106106
```bash
107107
git clone --depth=1 --branch v1.0.0-beta.2 https://github.com/evstack/ev-node.git
108-
cd ev-node
108+
cd ev-node
109109
make build-da
110110
./build/local-da
111111
```

docs/guides/metrics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Metrics will be served under `/metrics` on port 26660 by default. The listening
1212

1313
## List of available metrics
1414

15-
You can find the full list of available metrics in the [Technical Specifications](../learn/specs/block-manager.html#metrics).
15+
You can find the full list of available metrics in the [Technical Specifications](../learn/specs/block-manager.md#metrics).
1616

1717
## Viewing Metrics
1818

docs/guides/reset-state.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Some reason you might need to reset the state of your chain are:
1414

1515
## Prerequisites
1616

17-
In order to complete this guide, you will need to have completed either the [quick start tutorial](/docs/guides/quick-start.md) or the [build our chain tutorial](/docs/guides/gm-world.md).
17+
In order to complete this guide, you will need to have completed either the [quick start tutorial](./quick-start.md) or the [build our chain tutorial](./gm-world.md).
1818

1919
## Quick Start
2020

@@ -74,7 +74,7 @@ When you launch your chain again with `testapp start` your `data` directory will
7474

7575
## gm-world
7676

77-
When you ran your gm-world chain in the [build your chain tutorial](/docs/guides/gm-world.md), it created a `.gm` directory in your `$HOME` directory.
77+
When you ran your gm-world chain in the [build your chain tutorial](./gm-world.md), it created a `.gm` directory in your `$HOME` directory.
7878

7979
This directory will look like the following:
8080

docs/guides/use-tia-for-gas.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ No prior understanding of the build process is required, just that it utilizes t
88

99
## Requirements {#requirements}
1010

11-
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.
11+
Before proceeding, ensure that you have completed the [build a chain](./gm-world.md) tutorial, which covers setting-up, building and running your chain.
1212

1313
<!-- markdownlint-disable MD033 -->
1414
<script setup>
@@ -24,7 +24,7 @@ import constants from '../.vitepress/constants/constants.js'
2424

2525
## Setup your local DA network {#setup-local-da}
2626

27-
Your local DA network is already running if you followed the [quick start guide](/docs/guides/quick-start.md) or the [build a chain](/docs/guides/gm-world.md). If not, you can start it with the following command:
27+
Your local DA network is already running if you followed the [quick start guide](/docs/guides/quick-start.md) or the [build a chain](./gm-world.md). If not, you can start it with the following command:
2828

2929
```bash
3030
curl -sSL https://ev.xyz/install-local-da.sh | bash -s {{constants.evolveLatestTag}}

0 commit comments

Comments
 (0)