Skip to content

Commit 78eeece

Browse files
authored
chore: fix more links (#2714)
<!-- 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 <!-- 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 87aa52f commit 78eeece

File tree

11 files changed

+21
-19
lines changed

11 files changed

+21
-19
lines changed

docs/adr/adr-017-node-pruning.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -943,5 +943,5 @@ Proposed
943943
## References
944944

945945
- [Rollkit Store Implementation](https://github.com/evstack/ev-node/blob/main/pkg/store/store.go)
946-
- [Block Manager](https://github.com/evstack/ev-node/blob/main/block/manager.go)
946+
- [Block components](https://github.com/evstack/ev-node/blob/main/block/components.go)
947947
- [Store Interface](https://github.com/evstack/ev-node/blob/main/pkg/store/types.go)

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](./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](./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: 1 addition & 1 deletion
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 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](./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

docs/guides/da/visualizer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,6 @@ done
235235

236236
## Related Configuration
237237

238-
For complete DA layer configuration options, see the [Config Reference](../learn/config.md#data-availability-configuration-da).
238+
For complete DA layer configuration options, see the [Config Reference](../../learn/config.md#data-availability-configuration-da).
239239

240-
For metrics and monitoring setup, see the [Metrics Guide](./metrics.md).
240+
For metrics and monitoring setup, see the [Metrics Guide](../metrics.md).

docs/guides/execution/cosmwasm.md

Lines changed: 2 additions & 2 deletions
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](./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

@@ -174,7 +174,7 @@ we want it to be as small as possible.
174174
<!-- markdownlint-disable MD051 -->
175175

176176
The CosmWasm team provides a tool called `rust-optimizer`, which requires
177-
[Docker](#docker-installation) in order to compile.
177+
Docker in order to compile.
178178

179179
<!-- markdownlint-enable MD051 -->
180180

docs/guides/gm-world.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,9 @@ Connecting your wallet to your chain is as straightforward as connecting to any
284284

285285
## 🔗 Connecting your wallet
286286

287+
<!-- markdown-link-check-disable -->
287288
Simply open your browser and go to [http://localhost:3000](https://localhost:3000) and use the Ignite UI to interact with your chain.
289+
<!-- markdown-link-check-enable -->
288290

289291
Click the "Connect Wallet" button on the page, and approve the connection request in the Keplr prompt.
290292

docs/learn/config.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ This document provides a comprehensive reference for all configuration options a
2525
- [DA Gas Multiplier](#da-gas-multiplier)
2626
- [DA Submit Options](#da-submit-options)
2727
- [DA Namespace](#da-namespace)
28-
- [DA Header Namespace](#da-header-namespace)
28+
- [DA Header Namespace](#da-namespace)
2929
- [DA Data Namespace](#da-data-namespace)
3030
- [DA Block Time](#da-block-time)
3131
- [DA Start Height](#da-start-height)
@@ -623,7 +623,7 @@ _Example:_ `--rollkit.rpc.enable_da_visualization`
623623
_Default:_ `false`
624624
_Constant:_ `FlagRPCEnableDAVisualization`
625625

626-
See the [DA Visualizer Guide](../guides/da/da-visualizer.md) for detailed information on using this feature.
626+
See the [DA Visualizer Guide](../guides/da/visualizer.md) for detailed information on using this feature.
627627

628628
## Instrumentation Configuration (`instrumentation`)
629629

docs/learn/data-availability.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ Evolve is designed to be DA-agnostic, meaning it can integrate with different da
2828

2929
## Learn More
3030

31-
- [Set up a local DA](./guides/da/local-da.md)
32-
- [Set up Celestia DA](./guides/da/celestia-da.md)
31+
- [Set up a local DA](../guides/da/local-da.md)
32+
- [Set up Celestia DA](../guides/da/celestia-da.md)
3333
- [Celestia Docs](https://docs.celestia.org/)

docs/learn/sequencing/single.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ A single sequencer is the simplest sequencing architecture for an Evolve-based c
1414
- **With lazy mode:** the sequencer produces a block once either
1515
- enough transactions are collected
1616
- the lazy-mode block interval elapses
17-
More info [here](/docs/learn/config.md#lazy-mode-lazy-aggregator).
17+
More info [here](../config.md#lazy-mode-lazy-aggregator).
1818
- Each block contains a batch of ordered transactions and metadata.
1919

2020
4. **Data Availability Posting:**

docs/learn/specs/block-manager.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -736,15 +736,15 @@ See [tutorial] for running a multi-node network with both aggregator and non-agg
736736

737737
[6] [Header and Data Separation ADR](../../adr/adr-014-header-and-data-separation.md)
738738

739-
[7] [Evolve Minimal Header](../../adr/adr-015-evolve-minimal-header.md)
739+
[7] [Evolve Minimal Header](../../adr/adr-015-rollkit-minimal-header.md)
740740

741741
[8] [Data Availability](./da.md)
742742

743743
[9] [Lazy Aggregation with DA Layer Consistency ADR](../../adr/adr-021-lazy-aggregation.md)
744744

745-
[defaultBlockTime]: https://github.com/evstack/ev-node/blob/main/block/manager.go#L36
746-
[defaultDABlockTime]: https://github.com/evstack/ev-node/blob/main/block/manager.go#L33
747-
[defaultLazyBlockTime]: https://github.com/evstack/ev-node/blob/main/block/manager.go#L39
745+
[defaultBlockTime]: https://github.com/evstack/ev-node/blob/main/pkg/config/defaults.go#L50
746+
[defaultDABlockTime]:https://github.com/evstack/ev-node/blob/main/pkg/config/defaults.go#L59
747+
[defaultLazyBlockTime]: https://github.com/evstack/ev-node/blob/main/pkg/config/defaults.go#L52
748748
[go-header]: https://github.com/celestiaorg/go-header
749749
[block-sync]: https://github.com/evstack/ev-node/blob/main/pkg/sync/sync_service.go
750750
[full-node]: https://github.com/evstack/ev-node/blob/main/node/full.go

0 commit comments

Comments
 (0)