Skip to content

Commit 2272aed

Browse files
committed
updated install local script
1 parent c3f2965 commit 2272aed

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed

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: 1 addition & 1 deletion
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). 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

public/install-local-da.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
#!/bin/bash
22

33
echo "Downloading Local-DA source code..."
4-
git clone https://github.com/rollkit/rollkit.git
4+
git clone --depth=1 https://github.com/rollkit/rollkit.git
5+
# TODO : replace with go install once the repo is tagged
56
cd rollkit || { echo "Failed to find the downloaded repository"; exit 1; }
67
make build-da
78
echo "Starting Local DA..."

0 commit comments

Comments
 (0)