You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 7, 2025. It is now read-only.
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:
30
+
Ensure that `rollkit.toml` is present in the root of your rollup directory (if not, follow a [Guide](/guides/gm-world.md) to set it up) and run the following command to (re)generate an entrypoint binary out of the code:
Copy file name to clipboardExpand all lines: guides/da/celestia-da.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ import constants from '../../.vitepress/constants/constants.js'
9
9
10
10
This tutorial serves as a comprehensive guide for deploying your rollup on Celestia's data availability (DA) network. From the Rollkit perspective, there's no difference in posting blocks to Celestia's testnets or Mainnet Beta.
11
11
12
-
Before proceeding, ensure that you have completed the [gm-world](/tutorials/gm-world.md) tutorial, which covers installing the Testapp CLI and running a rollup against a local DA network.
12
+
Before proceeding, ensure that you have completed the [gm-world](/guides/gm-world.md) tutorial, which covers installing the Testapp CLI and running a rollup against a local DA network.
13
13
14
14
## 🪶 Running a Celestia light node
15
15
@@ -46,7 +46,7 @@ After successfully starting a light node, it's time to start posting the batches
46
46
47
47
## 🏗️ Prerequisites {#prerequisites}
48
48
49
-
-`gmd` CLI installed from the [gm-world](/tutorials/gm-world.md) tutorial.
49
+
-`gmd` CLI installed from the [gm-world](/guides/gm-world.md) tutorial.
Copy file name to clipboardExpand all lines: guides/da/local-da.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ import constants from '../../.vitepress/constants/constants.js'
9
9
10
10
This tutorial serves as a comprehensive guide for using the [local-da](https://github.com/rollkit/local-da) with your chain.
11
11
12
-
Before proceeding, ensure that you have completed the [quick start](/tutorials/quick-start.md) or [build a chain](/tutorials/gm-world.md) tutorial, which covers installing the rollkit CLI, building your chain, and running your chain.
12
+
Before proceeding, ensure that you have completed the [quick start](/guides/quick-start.md) or [build a chain](/guides/gm-world.md) tutorial, which covers installing the rollkit CLI, building your chain, and running your chain.
Copy file name to clipboardExpand all lines: guides/da/overview.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -58,7 +58,7 @@ type DA interface {
58
58
59
59
## Mock DA {#mock-da}
60
60
61
-
You might have noticed that we did not define any DA layer during the [quick start](/tutorials/quick-start.md) or [build a chain](/tutorials/gm-world.md) tutorials. This is because we used a mock DA layer that is built into Rollkit.
61
+
You might have noticed that we did not define any DA layer during the [quick start](/guides/quick-start.md) or [build a chain](/guides/gm-world.md) tutorials. This is because we used a mock DA layer that is built into Rollkit.
62
62
63
63
If you revisit the logs from those tutorials, you will see one of the first lines being:
64
64
@@ -72,5 +72,5 @@ The mock DA layer is a simple in-memory DA layer that is great for testing and d
72
72
73
73
Now that you have a better understanding of what a DA layer is, you can start to explore the different DA layers that are available to use with Rollkit.
Copy file name to clipboardExpand all lines: guides/deploy-overview.md
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,5 +16,4 @@ In this section, you'll see a few examples of how you can deploy your rollup env
16
16
These examples are for educational purposes only. Before deploying your rollup for production use you should fully understand the services you are deploying and your choice in deployment method.
17
17
:::
18
18
19
-
*[Deploy with Docker Compose](/tutorials/docker-compose.md)
20
-
<!-- * [Deploy with Kurtosis](/tutorials/kurtosis) -->
19
+
*[Deploy with Docker Compose](/guides/docker-compose.md)
Copy file name to clipboardExpand all lines: guides/docker-compose.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# 🐳 Docker Compose
2
2
3
-
This tutorial is going to show you how to deploy the [gm-world chain](/tutorials/gm-world.md) using Docker Compose.
3
+
This tutorial is going to show you how to deploy the [gm-world chain](/guides/gm-world.md) using Docker Compose.
4
4
5
5
You can learn more about Docker Compose [here](https://docs.docker.com/compose/).
6
6
@@ -17,7 +17,7 @@ import constants from '../.vitepress/constants/constants.js'
17
17
18
18
## 💻 Pre-requisites {#prerequisites}
19
19
20
-
Make sure you have your gm-world chain ready by completing [the Build your chain tutorial](/tutorials/gm-world.md).
20
+
Make sure you have your gm-world chain ready by completing [the Build your chain tutorial](/guides/gm-world.md).
21
21
22
22
## 🛠️ Dependencies {#dependencies}
23
23
@@ -216,7 +216,7 @@ Since our chain is running in a docker container, we want to enter the docker co
216
216
docker exec -it gm-world sh
217
217
```
218
218
219
-
Now that you are in the docker container, you can interact with the chain using the Rollkit CLI and the example commands you used in the [gm-world tutorial](/tutorials/gm-world.md).
219
+
Now that you are in the docker container, you can interact with the chain using the Rollkit CLI and the example commands you used in the [gm-world tutorial](/guides/gm-world.md).
220
220
221
221
Once you are done interacting with your chain, you can exit out of your docker container with:
Copy file name to clipboardExpand all lines: guides/execution/cosmwasm.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ this tutorial.
28
28
29
29
## 💻 CosmWasm dependency {#dependencies}
30
30
31
-
As with the [GM Rollup](/tutorials/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).
31
+
As with the [GM Rollup](/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).
32
32
33
33
Once installed, you can verify the installation by running:
0 commit comments