Skip to content

Commit 5418de0

Browse files
authored
fix: remove reference to go-da repo (#577)
* remove all references to the go-da repo * move intro file to about
1 parent 341a815 commit 5418de0

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.vitepress/config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,6 @@ function sidebarHome() {
188188
text: "Overview",
189189
collapsed: true,
190190
items: [
191-
{ text: "Introduction", link: "/learn/intro" },
192191
{ text: "About Rollkit", link: "/learn/about" },
193192
],
194193
},

blog/rollkit-the-first-sovereign-rollup-framework.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Rollkit rollups interact with a state machine via the Application Blockchain Int
5757

5858
Rollkit allows developers to optimize between the different modular components of a sovereign chain as needed. Rollkit allows you to:
5959

60-
- Choose between data availability layers that implement the [go-da interface](https://github.com/rollkit/go-da).
60+
- Choose between data availability layers that implement the [DA interface](https://github.com/rollkit/rollkit/blob/main/core/da/da.go#L11).
6161

6262
- Choose any ABCI++ compatible virtual machine.
6363
- Utilize the Sequencing API to delegate sequencing to the shared sequencer network of your choice or even delegate sequencing to the DA layer to go [based](https://ethresear.ch/t/based-rollups-superpowers-from-l1-sequencing/15016).

learn/about.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# Introduction
2+
3+
Welcome to the Rollkit docs. We're happy you made it here!
4+
Rollkit allows anyone to launch an unstoppable blockchain as easily as a smart contract.
5+
6+
Rollkit is the unstoppable stack.
7+
8+
We're setting the bar high for developers' flexibility and ability to customize blockchains however they see fit.
9+
110
# About Rollkit
211

312
Our mission is to allow anyone to launch their own sovereign, customizable blockchain as easily as a smart contract by utilizing the shared security of a modular data availability network.

learn/intro.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

learn/stack.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ the methods needed for state fraud proofs.
3838

3939
### Data availability
4040

41-
[Data availability (DA)](https://github.com/rollkit/rollkit/tree/main/da) can be accessed using generic [interfaces](https://github.com/rollkit/rollkit/blob/main/da/da.go). This design allows for seamless integration with any DA layer. New implementations can be plugged in programmatically, without a need to fork Rollkit.
41+
[Data availability (DA)](https://github.com/rollkit/rollkit/tree/main/da) can be accessed using generic [interfaces](https://github.com/rollkit/rollkit/blob/main/core/da/da.go#L11). This design allows for seamless integration with any DA layer. New implementations can be plugged in programmatically, without a need to fork Rollkit.
4242

4343
The `DataAvailabilityLayerClient` interface includes essential lifecycle methods (`Init`, `Start`, `Stop`) as well as data availability methods (`SubmitBlocks`, `RetrieveBlocks`).
4444

@@ -52,7 +52,7 @@ It's using the [Celestia Node API](https://node-rpc-docs.celestia.org)
5252
via the [`rollkit/celestia-da`](https://github.com/rollkit/celestia-da) package.
5353
To deploy a Rollkit rollup on Celestia you also have to [run a Celestia light node](https://docs.celestia.org/developers/node-tutorial/).
5454

55-
New DA layer integrations can be added by using the [go-da](https://github.com/rollkit/go-da) interface.
55+
New DA layer integrations can be added by using the [DA interface](https://github.com/rollkit/rollkit/blob/main/core/da/da.go#L11).
5656

5757
## Node components
5858

0 commit comments

Comments
 (0)