We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fc4764 commit b3e6baeCopy full SHA for b3e6bae
4 files changed
.vitepress/constants/constants.js
@@ -4,8 +4,8 @@ const constants = Object.freeze({
4
nodeVersion: "21.7.2",
5
yarnVersion: "1.22.19",
6
7
- rollkitLatestTag: "v0.14.1",
8
- rollkitLatestSha: "5a8693e",
+ rollkitLatestTag: "v1.0.0-beta.1",
+ rollkitLatestSha: "cd1970de",
9
rollkitCosmosSDKVersion: "v0.50.6-rollkit-v0.13.3-no-fraud-proofs",
10
rollkitIgniteAppVersion: "rollkit/v0.2.1",
11
@@ -15,10 +15,10 @@ const constants = Object.freeze({
15
igniteVersionTag: "v28.5.3",
16
17
celestiaNodeArabicaTag: "v0.20.2-arabica",
18
- celestiaNodeArabicaRollkitTag: "v0.14.1",
+ celestiaNodeArabicaRollkitTag: "v1.0.0-beta.1",
19
celestiaNodeMochaTag: "v0.20.2-mocha",
20
- celestiaNodeMochaRollkitTag: "v0.14.1",
+ celestiaNodeMochaRollkitTag: "v1.0.0-beta.1",
21
celestiaNodeMainnetTag: "v0.17.2",
22
- celestiaNodeMainnetRollkitTag: "v0.13.7",
+ celestiaNodeMainnetRollkitTag: "v1.0.0-beta.1",
23
});
24
export default constants;
guides/evm/single.md
@@ -18,7 +18,7 @@ Before starting, ensure you have:
### 1. Clone the Rollkit Repository
```bash
-git clone https://github.com/rollkit/rollkit.git
+git clone --depth 1 --branch v1.0.0-beta.1 https://github.com/rollkit/rollkit.git
cd rollkit
```
guides/quick-start.md
@@ -27,8 +27,8 @@ testapp version
27
A successful installation will display the version number and its associated git commit hash.
28
29
30
-rollkit version: v0.14.1
31
-rollkit git sha: 888def92
+rollkit version: execution/evm/v1.0.0-beta.1
+rollkit git sha: cd1970de
32
33
34
## 🗂️ Initialize a sovereign rollup node
public/install.sh
@@ -42,7 +42,7 @@ compare_versions() {
42
}
43
44
print_header "Downloading Rollkit source code..."
45
+git clone --depth 1 https://github.com/rollkit/rollkit.git
46
echo ""
47
48
cd rollkit || { print_error "Failed to find the downloaded repository."; exit 1; }
0 commit comments