Skip to content

Commit 6efef6a

Browse files
committed
remove all references to the go-da repo
1 parent f40705f commit 6efef6a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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/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)