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

Commit 33f142a

Browse files
committed
update rollkit version to v1-beta
1 parent 7fc4764 commit 33f142a

File tree

4 files changed

+9
-13
lines changed

4 files changed

+9
-13
lines changed

.vitepress/constants/constants.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ const constants = Object.freeze({
44
nodeVersion: "21.7.2",
55
yarnVersion: "1.22.19",
66

7-
rollkitLatestTag: "v0.14.1",
8-
rollkitLatestSha: "5a8693e",
7+
rollkitLatestTag: "v1.0.0-beta.1",
8+
rollkitLatestSha: "cd1970de",
99
rollkitCosmosSDKVersion: "v0.50.6-rollkit-v0.13.3-no-fraud-proofs",
1010
rollkitIgniteAppVersion: "rollkit/v0.2.1",
1111

@@ -15,10 +15,10 @@ const constants = Object.freeze({
1515
igniteVersionTag: "v28.5.3",
1616

1717
celestiaNodeArabicaTag: "v0.20.2-arabica",
18-
celestiaNodeArabicaRollkitTag: "v0.14.1",
18+
celestiaNodeArabicaRollkitTag: "v1.0.0-beta.1",
1919
celestiaNodeMochaTag: "v0.20.2-mocha",
20-
celestiaNodeMochaRollkitTag: "v0.14.1",
20+
celestiaNodeMochaRollkitTag: "v1.0.0-beta.1",
2121
celestiaNodeMainnetTag: "v0.17.2",
22-
celestiaNodeMainnetRollkitTag: "v0.13.7",
22+
celestiaNodeMainnetRollkitTag: "v1.0.0-beta.1",
2323
});
2424
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.sh

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ compare_versions() {
4242
}
4343

4444
print_header "Downloading Rollkit source code..."
45-
git clone https://github.com/rollkit/rollkit.git
45+
git clone --depth 1 --branch $1 https://github.com/rollkit/rollkit.git
4646
echo ""
4747

4848
cd rollkit || { print_error "Failed to find the downloaded repository."; exit 1; }
@@ -80,10 +80,6 @@ elif [ $comparison_result -eq 2 ]; then
8080
fi
8181
echo ""
8282

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

0 commit comments

Comments
 (0)