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](/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:
@@ -88,7 +88,7 @@ You can stop your rollup by using `Control + C` in your terminal where the node
88
88
89
89
### ⛽ Increase the gas fee {#increase-gas-fee}
90
90
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.
92
92
93
93
### 🔁 Restarting your rollup {#restarting-your-rollup}
Copy file name to clipboardExpand all lines: tutorials/bitcoin.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
@@ -6,7 +6,7 @@ In this tutorial, we will explore how to use Rollkit to create sovereign rollups
6
6
7
7
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.
8
8
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).
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.
42
42
@@ -115,7 +115,7 @@ openssl rand -hex 10
115
115
116
116
Replace the last 20 characters (10 bytes) in `00000000000000000000000000000000000000000008e5f679bf7116cb` with the newly generated 10 bytes.
117
117
118
-
[Learn more about namespaces](https://docs.celestia.org/developers/node-tutorial#namespaces).
118
+
[Learn more about namespaces](https://docs.celestia.org/tutorials/node-tutorial#namespaces).
119
119
:::
120
120
121
121
Lastly, set your DA address for your light node, which by default runs at
@@ -144,9 +144,9 @@ For example, [here on Celenium for Arabica](https://arabica.celenium.io/).
Copy file name to clipboardExpand all lines: tutorials/sequencing/overview.md
+2-3Lines changed: 2 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,3 @@
1
-
2
1
# Sequencing
3
2
4
3
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
27
26
28
27
The sequencing implementations that are currently work in progress:
0 commit comments