Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Commit 0e5ef38

Browse files
authored
feat: use Rollkit v1-beta (#592)
* update rollkit version to v1-beta * make sure branch is provided * updated other versions and cleanup unused constants
1 parent 7fc4764 commit 0e5ef38

File tree

5 files changed

+21
-25
lines changed

5 files changed

+21
-25
lines changed

.vitepress/constants/constants.js

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,19 @@
11
const constants = Object.freeze({
22
golangVersion: "go1.22.3",
33

4-
nodeVersion: "21.7.2",
5-
yarnVersion: "1.22.19",
6-
7-
rollkitLatestTag: "v0.14.1",
8-
rollkitLatestSha: "5a8693e",
4+
rollkitLatestTag: "v1.0.0-beta.1",
5+
rollkitLatestSha: "cd1970de",
96
rollkitCosmosSDKVersion: "v0.50.6-rollkit-v0.13.3-no-fraud-proofs",
107
rollkitIgniteAppVersion: "rollkit/v0.2.1",
118

12-
localDALatestTag: "v0.3.1",
13-
goSequencingLatestTag: "v0.4.1",
14-
centralizedSequencerLatestTag: "v0.4.0",
9+
localDALatestTag: "v1.0.0-beta.1",
1510
igniteVersionTag: "v28.5.3",
1611

17-
celestiaNodeArabicaTag: "v0.20.2-arabica",
18-
celestiaNodeArabicaRollkitTag: "v0.14.1",
19-
celestiaNodeMochaTag: "v0.20.2-mocha",
20-
celestiaNodeMochaRollkitTag: "v0.14.1",
21-
celestiaNodeMainnetTag: "v0.17.2",
22-
celestiaNodeMainnetRollkitTag: "v0.13.7",
12+
celestiaNodeArabicaTag: "v0.23.4-arabica",
13+
celestiaNodeArabicaRollkitTag: "v1.0.0-beta.1",
14+
celestiaNodeMochaTag: "v0.23.4-mocha",
15+
celestiaNodeMochaRollkitTag: "v1.0.0-beta.1",
16+
celestiaNodeMainnetTag: "v0.22.3",
17+
celestiaNodeMainnetRollkitTag: "v1.0.0-beta.1",
2318
});
2419
export default constants;

guides/evm/single.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Before starting, ensure you have:
1818
### 1. Clone the Rollkit Repository
1919

2020
```bash
21-
git clone https://github.com/rollkit/rollkit.git
21+
git clone --depth 1 --branch v1.0.0-beta.1 https://github.com/rollkit/rollkit.git
2222
cd rollkit
2323
```
2424

guides/quick-start.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ testapp version
2727
A successful installation will display the version number and its associated git commit hash.
2828

2929
```bash
30-
rollkit version: v0.14.1
31-
rollkit git sha: 888def92
30+
rollkit version: execution/evm/v1.0.0-beta.1
31+
rollkit git sha: cd1970de
3232
```
3333

3434
## 🗂️ Initialize a sovereign rollup node

public/install-local-da.sh

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

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

public/install.sh

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,14 @@ compare_versions() {
4242
}
4343

4444
print_header "Downloading Rollkit source code..."
45-
git clone https://github.com/rollkit/rollkit.git
46-
echo ""
45+
46+
if [ -z "$1" ]; then
47+
print_error "Usage: install.sh <rollkit-tag|branch>"; exit 1
48+
fi
49+
50+
git clone --depth 1 --branch "$1" https://github.com/rollkit/rollkit.git || {
51+
print_error "Failed to clone Rollkit at ref '$1'"; exit 1;
52+
}
4753

4854
cd rollkit || { print_error "Failed to find the downloaded repository."; exit 1; }
4955

@@ -80,10 +86,6 @@ elif [ $comparison_result -eq 2 ]; then
8086
fi
8187
echo ""
8288

83-
print_header "Fetching and checking out the specified branch or tag..."
84-
git fetch && git checkout "$1"
85-
echo ""
86-
8789
print_header "Building and installing Rollkit..."
8890
make install
8991
print_success "Rollkit CLI installed successfully!"

0 commit comments

Comments
 (0)