Skip to content

Commit aa80df9

Browse files
committed
fix dead markdown links
1 parent 6c59be2 commit aa80df9

File tree

3 files changed

+16
-18
lines changed

3 files changed

+16
-18
lines changed

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 ro
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 guide](./ignite-rollkit.md)
9+
If you don't have a chain directory yet, you can initialize a simple ignite chain by following [this tutorial](/tutorials/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
## 2. Rebuild your chain
2929

30-
Ensure that `rollkit.toml` is present in the root of your rollup directory (if not, follow a [Guide](/guides/use-rollkit-cli) to set it up) and run the following command to (re)generate an entrypoint binary out of the code:
30+
Ensure that `rollkit.toml` is present in the root of your rollup directory (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
rollkit rebuild

guides/overview.md

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,21 @@ your life easier when developing with Rollkit.
1414

1515
In this section, you'll find:
1616

17-
* [Create genesis for your rollup](/guides/create-genesis)
18-
* [Restart your rollup](/guides/restart-rollup)
19-
* [Reset your chain's state](/guides/reset-state)
20-
* [Turn your CometBFT app into a Rollkit app](/guides/cometbft-to-rollkit)
21-
* [Use Ignite to create a Rollkit app](/guides/ignite-rollkit)
17+
* [Create genesis for your rollup](./create-genesis.md)
18+
* [Restart your rollup](./restart-rollup.md)
19+
* [Reset your chain's state](./reset-state.md)
20+
* [Turn your CometBFT app into a Rollkit app](./cometbft-to-rollkit.md)
2221
* EVM Rollups
23-
* [EVM Based Sequencer Setup](/guides/evm-based)
24-
* [EVM Single Sequencer Setup](/guides/evm-single-guide)
22+
* [EVM Based Sequencer Setup](./evm-based.md)
23+
* [EVM Single Sequencer Setup](./evm-single-guide.md)
2524
* Configuration
26-
* [Config Settings](/guides/config)
25+
* [Config Settings](./config.md)
2726
* Integrations
28-
* [Test and deploy cosmwasm smart-contracts](/guides/cw-orch)
29-
* [Add zkML to your EVM rollup](/guides/zkml)
30-
* [Add an IBC connection to your rollup](/guides/ibc-connection)
31-
* [Integrate Range with your rollup](/guides/rollkit-monitoring)
32-
* [Use IBC token (TIA) as gas token in your rollup](/guides/use-tia-for-gas)
27+
* [Test and deploy cosmwasm smart-contracts](./cw-orch.md)
28+
* [Add zkML to your EVM rollup](./zkml.md)
29+
* [Add an IBC connection to your rollup](./ibc-connection.md)
30+
* [Integrate Range with your rollup](./rollkit-monitoring.md)
31+
* [Use IBC token (TIA) as gas token in your rollup](./use-tia-for-gas.md)
3332

3433
## 💻 Support {#support}
3534

tutorials/sequencing/overview.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
# Sequencing
32

43
Sequencing is the essential first step for handling your transactions. Think of it as an organizer that takes all incoming transactions, puts them in a clear order, and then groups them into batches. This process is vital for keeping everything consistent and making the rollup run. Rollkit uses a "Sequencing Interface" with key functions like submitting, retrieving, and verifying these transaction batches, ensuring smooth communication between the rollup and the sequencing mechanism, which often acts as a bridge to the underlying network.
@@ -27,5 +26,5 @@ An implementation of the sequencing interface mainly acts as a middleware that c
2726

2827
The sequencing implementations that are currently work in progress:
2928
<!-- * [single-sequencer](single) -->
30-
* [based-sequencer](based)
31-
* [forced-inclusion-sequencer](forced-inclusion)
29+
* [based-sequencer](based.md)
30+
* [forced-inclusion-sequencer](forced-inclusion.md)

0 commit comments

Comments
 (0)