diff --git a/.vitepress/constants/constants.js b/.vitepress/constants/constants.js index c4847ff46..2d26fca4d 100644 --- a/.vitepress/constants/constants.js +++ b/.vitepress/constants/constants.js @@ -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; diff --git a/guides/evm/single.md b/guides/evm/single.md index 99cccf54a..26d0291f7 100644 --- a/guides/evm/single.md +++ b/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 ``` diff --git a/guides/quick-start.md b/guides/quick-start.md index a02af8f04..9edeeb865 100644 --- a/guides/quick-start.md +++ b/guides/quick-start.md @@ -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 diff --git a/public/install-local-da.sh b/public/install-local-da.sh index 033c44191..05006f08c 100644 --- a/public/install-local-da.sh +++ b/public/install-local-da.sh @@ -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..." diff --git a/public/install.sh b/public/install.sh index fa6fe850a..39c726d62 100755 --- a/public/install.sh +++ b/public/install.sh @@ -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 "; 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; } @@ -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!"