Skip to content

Commit b6d8347

Browse files
committed
remove some dead links
1 parent 26fe76c commit b6d8347

File tree

8 files changed

+30
-32
lines changed

8 files changed

+30
-32
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](/tutorials/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/ibc-connection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# IBC connection tutorial
22

33
In this tutorial, we'll learn how to use [an Inter-Blockchain Communication (IBC) Protocol relayer](https://github.com/cosmos/relayer) to
4-
create an IBC connection between a [GM world](./gm-world) rollup and an Osmosis local testnet.
4+
create an IBC connection between a [GM world](/tutorials/gm-world) rollup and an Osmosis local testnet.
55

66
:::warning Disclaimer
77
This initial version of IBC has high trust assumptions where receiving chains

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](/guides/create-genesis.md)
18+
* [Restart your rollup](/guides/restart-rollup.md)
19+
* [Reset your chain's state](/guides/reset-state.md)
20+
* [Turn your CometBFT app into a Rollkit app](/guides/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](/guides/evm-based.md)
23+
* [EVM Single Sequencer Setup](/guides/evm-single-guide.md)
2524
* Configuration
26-
* [Config Settings](/guides/config)
25+
* [Config Settings](/guides/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](/guides/cw-orch.md)
28+
* [Add zkML to your EVM rollup](/guides/zkml.md)
29+
* [Add an IBC connection to your rollup](/guides/ibc-connection.md)
30+
* [Integrate Range with your rollup](/guides/rollkit-monitoring.md)
31+
* [Use IBC token (TIA) as gas token in your rollup](/guides/use-tia-for-gas.md)
3332

3433
## 💻 Support {#support}
3534

guides/restart-rollup.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This section covers the case where you need to restart your rollup.
99
In order to restart your rollup, you simply need to run the `<your-binary>d start [...args]`
1010
command for your rollup.
1111

12-
For example, if you ran the [quick start](../tutorials/quick-start.md) tutorial, you started your rollup with:
12+
For example, if you ran the [quick start](/tutorials/quick-start.md) tutorial, you started your rollup with:
1313

1414
```bash
1515
rollkit start
@@ -47,8 +47,8 @@ This section covers the case that the node that
4747
you are using to post blocks to your DA and consensus layer runs out of funds (tokens),
4848
and you need to restart your rollup.
4949

50-
In this example, we're using Celestia's [Mocha testnet](https://docs.celestia.org/nodes/mocha-testnet/)
51-
and running the [quick start](../tutorials/quick-start.md). In this example, our Celestia DA light node
50+
In this example, we're using Celestia's [Mocha testnet](https://docs.celestia.org/how-to-guides/mocha-testnet/)
51+
and running the [quick start](/tutorials/quick-start.md). In this example, our Celestia DA light node
5252
ran out of Mocha testnet TIA and we are unable to post new blocks to Celestia due to a
5353
[`Code: 19`](https://github.com/cosmos/cosmos-sdk/blob/main/types/errors/errors.go#L95)
5454
error. This error is defined by Cosmos SDK as:
@@ -88,7 +88,7 @@ You can stop your rollup by using `Control + C` in your terminal where the node
8888

8989
### ⛽ Increase the gas fee {#increase-gas-fee}
9090

91-
To reiterate, before restarting the chain, you will need to increase the gas fee in order to avoid a `Code: 19` error. See the [How to configure gas price](./gas-price.md) guide for more information.
91+
To reiterate, before restarting the chain, you will need to increase the gas fee in order to avoid a `Code: 19` error. See the [How to configure gas price](/guides/gas-price.md) guide for more information.
9292

9393
### 🔁 Restarting your rollup {#restarting-your-rollup}
9494

guides/use-tia-for-gas.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ rollkit tx bank send gm-key-2 gm1jqevcsld0dqpjp3csfg7alkv3lehvn8uswknrc 10000000
261261

262262
Fund the relayer on the Celestia Mocha testnet:
263263

264-
[Mocha Testnet Faucet Instructions](https://docs.celestia.org/nodes/mocha-testnet#mocha-testnet-faucet).
264+
[Mocha Testnet Faucet Instructions](https://docs.celestia.org/how-to-guides/mocha-testnet#mocha-testnet-faucet).
265265

266266
Verify the relayer is funded:
267267

tutorials/bitcoin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ In this tutorial, we will explore how to use Rollkit to create sovereign rollups
66

77
By the end of this tutorial, you will have a good understanding of how Rollkit works and how to create sovereign rollups on Bitcoin using Rollkit. You will also have the knowledge and skills needed to customize Rollkit with different execution environments and data availability layers, opening up new possibilities for creating scalable and efficient blockchain applications.
88

9-
Read more in our [blog post](../../../blog/sovereign-rollups-on-bitcoin).
9+
Read more in our [blog post](/blog/sovereign-rollups-on-bitcoin.md).
1010

1111
![rollkit-bitcoin](/bitcoin-rollkit/rollkit-bitcoin-1.png)
1212

tutorials/da/celestia-da.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ Celestia Node Version: {{constants.celestiaNodeMainnetTag}}
3636

3737
:::
3838

39-
- [Arabica Devnet](https://docs.celestia.org/nodes/arabica-devnet)
40-
- [Mocha Testnet](https://docs.celestia.org/nodes/mocha-testnet)
41-
- [Mainnet Beta](https://docs.celestia.org/nodes/mainnet)
39+
- [Arabica Devnet](https://docs.celestia.org/how-to-guides/arabica-devnet)
40+
- [Mocha Testnet](https://docs.celestia.org/how-to-guides/mocha-testnet)
41+
- [Mainnet Beta](https://docs.celestia.org/how-to-guides/mainnet)
4242

4343
The main difference lies in how you fund your wallet address: using testnet TIA or [TIA](https://docs.celestia.org/learn/tia#overview-of-tia) for Mainnet Beta.
4444

@@ -117,7 +117,7 @@ openssl rand -hex 10
117117

118118
Replace the last 20 characters (10 bytes) in `00000000000000000000000000000000000000000008e5f679bf7116cb` with the newly generated 10 bytes.
119119

120-
[Learn more about namespaces](https://docs.celestia.org/developers/node-tutorial#namespaces).
120+
[Learn more about namespaces](https://docs.celestia.org/tutorials/node-tutorial#namespaces).
121121
:::
122122

123123
Lastly, set your DA address for your light node, which by default runs at
@@ -146,9 +146,9 @@ For example, [here on Celenium for Arabica](https://arabica.celenium.io/).
146146

147147
Other explorers:
148148

149-
- [Arabica testnet](https://docs.celestia.org/nodes/arabica-testnet#explorers)
150-
- [Mocha testnet](https://docs.celestia.org/nodes/mocha-testnet#explorers)
151-
- [Mainnet Beta](https://docs.celestia.org/nodes/mainnet#explorers)
149+
- [Arabica testnet](https://docs.celestia.org/how-to-guides/arabica-devnet#explorers)
150+
- [Mocha testnet](https://docs.celestia.org/how-to-guides/mocha-testnet#explorers)
151+
- [Mainnet Beta](https://docs.celestia.org/how-to-guides/mainnet#explorers)
152152

153153
## 🎉 Next steps
154154

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)