Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 9 additions & 14 deletions .vitepress/constants/constants.js
Original file line number Diff line number Diff line change
@@ -1,24 +1,19 @@
const constants = Object.freeze({
golangVersion: "go1.22.3",

nodeVersion: "21.7.2",
yarnVersion: "1.22.19",

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

localDALatestTag: "v0.3.1",
goSequencingLatestTag: "v0.4.1",
centralizedSequencerLatestTag: "v0.4.0",
localDALatestTag: "v1.0.0-beta.1",
igniteVersionTag: "v28.5.3",

celestiaNodeArabicaTag: "v0.20.2-arabica",
celestiaNodeArabicaRollkitTag: "v0.14.1",
celestiaNodeMochaTag: "v0.20.2-mocha",
celestiaNodeMochaRollkitTag: "v0.14.1",
celestiaNodeMainnetTag: "v0.17.2",
celestiaNodeMainnetRollkitTag: "v0.13.7",
celestiaNodeArabicaTag: "v0.23.4-arabica",
celestiaNodeArabicaRollkitTag: "v1.0.0-beta.1",
celestiaNodeMochaTag: "v0.23.4-mocha",
celestiaNodeMochaRollkitTag: "v1.0.0-beta.1",
celestiaNodeMainnetTag: "v0.22.3",
celestiaNodeMainnetRollkitTag: "v1.0.0-beta.1",
});
export default constants;
2 changes: 1 addition & 1 deletion guides/evm/single.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down
4 changes: 2 additions & 2 deletions guides/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ testapp version
A successful installation will display the version number and its associated git commit hash.

```bash
rollkit version: v0.14.1
rollkit git sha: 888def92
rollkit version: execution/evm/v1.0.0-beta.1
rollkit git sha: cd1970de
```

## 🗂️ Initialize a sovereign rollup node
Expand Down
3 changes: 1 addition & 2 deletions public/install-local-da.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
#!/bin/bash

echo "Downloading Local-DA source code..."
git clone --depth=1 https://github.com/rollkit/rollkit.git
# TODO : replace with go install once the repo is tagged
git clone --depth=1 --branch $1 https://github.com/rollkit/rollkit.git
cd rollkit || { echo "Failed to find the downloaded repository"; exit 1; }
make build-da
echo "Starting Local DA..."
Expand Down
14 changes: 8 additions & 6 deletions public/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,14 @@ compare_versions() {
}

print_header "Downloading Rollkit source code..."
git clone https://github.com/rollkit/rollkit.git
echo ""

if [ -z "$1" ]; then
print_error "Usage: install.sh <rollkit-tag|branch>"; exit 1
fi

git clone --depth 1 --branch "$1" https://github.com/rollkit/rollkit.git || {
print_error "Failed to clone Rollkit at ref '$1'"; exit 1;
}

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

Expand Down Expand Up @@ -80,10 +86,6 @@ elif [ $comparison_result -eq 2 ]; then
fi
echo ""

print_header "Fetching and checking out the specified branch or tag..."
git fetch && git checkout "$1"
echo ""

print_header "Building and installing Rollkit..."
make install
print_success "Rollkit CLI installed successfully!"
Expand Down