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.
Copy file name to clipboardExpand all lines: blog/rollkit-the-first-sovereign-rollup-framework.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
@@ -19,7 +19,7 @@ import Twitter from '../.vitepress/components/twitter.vue'
19
19
20
20
By Rollkit
21
21
22
-

22
+

23
23
24
24
Bitcoin to Ethereum took 7 years. Ethereum to more scalable alt-L1s took 1–2 years. And then Cosmos SDK and CometBFT brought down time-to-launch a sovereign L1 to months.
25
25
@@ -33,7 +33,7 @@ Sovereign rollups combine the self-governance of a Layer 1 with the ease of depl
33
33
34
34
Without the overhead of a settlement layer, sovereign rollups can directly interoperate with shared security when using the same DA layer.
35
35
36
-
By using a generic application interface like [ABCI++](https://docs.cometbft.com/v0.38/spec/abci/), Rollkit is compatible with the Cosmos SDK, the leading framework for building sovereign blockchains. This enables all Cosmos SDK developers to build a sovereign rollup and tap into all the powerful cosmos ecosystem tooling they’re used to including [IBC](https://www.ibcprotocol.dev/), [ABCI++](https://docs.cometbft.com/v0.38/spec/abci/), and Skip Protocol's [Slinky](https://docs.skip.money/slinky/overview/) and [BlockSDK](https://skip-protocol-docs.netlify.app/blocksdk/overview).
36
+
By using a generic application interface like [ABCI++](https://docs.cometbft.com/v0.38/spec/abci/), Rollkit is compatible with the Cosmos SDK, the leading framework for building sovereign blockchains. This enables all Cosmos SDK developers to build a sovereign rollup and tap into all the powerful cosmos ecosystem tooling they’re used to including [IBC](https://www.ibcprotocol.dev/), [ABCI++](https://docs.cometbft.com/v0.38/spec/abci/), and Skip Protocol's [Slinky](https://docs.skip.money/slinky/overview/) and BlockSDK.
37
37
38
38
Developers have full-freedom to deploy a VM or define their own execution environment, unconstrained by the overhead of an enshrined settlement layer that must process fraud or ZK proofs for their rollups. This means that instead of a canonical on-chain light client that comes with an enshrined settlement layer, sovereign rollups can define how they interoperate with other blockchains by having on-chain light clients of each other as needed.
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:
Copy file name to clipboardExpand all lines: guides/cw-orch.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
@@ -245,7 +245,7 @@ Now that you workspace is setup, you can [integrate with single contracts](#sing
245
245
246
246
You can find more example interactions on the `counter-contract` example directly in the `cw-orchestrator` repo:
247
247
248
-
- Some examples <ahref="https://github.com/AbstractSDK/cw-orchestrator/blob/main/contracts/counter/examples/deploy.rs"target="_blank">showcase interacting with live chains</a>.
249
-
- Some other examples show <ahref="https://github.com/AbstractSDK/cw-orchestrator/tree/main/contracts/counter/tests"target="_blank">how to use the library for testing your contracts</a>.
248
+
- Some examples <ahref="https://github.com/AbstractSDK/cw-orchestrator/blob/main/contracts-ws/contracts/counter/examples/deploy.rs"target="_blank">showcase interacting with live chains</a>.
249
+
- Some other examples show <ahref="https://github.com/AbstractSDK/cw-orchestrator/blob/main/contracts-ws/contracts/counter/tests/checksum.rs"target="_blank">how to use the library for testing your contracts</a>.
250
250
251
251
> **FINAL ADVICE**: Learn more and explore our <ahref="https://orchestrator.abstract.money"target="blank" >full `cw-orch` documentation !</a>.
@@ -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/config.md#da-gas-price) guide for more information.
92
92
93
93
### 🔁 Restarting your rollup {#restarting-your-rollup}
0 commit comments