diff --git a/.vitepress/constants/constants.js b/.vitepress/constants/constants.js index d5b03773a..63fb6bd82 100644 --- a/.vitepress/constants/constants.js +++ b/.vitepress/constants/constants.js @@ -7,7 +7,7 @@ const constants = Object.freeze({ rollkitLatestTag: "v0.13.7", rollkitLatestSha: "8deede4", rollkitCosmosSDKVersion: "v0.50.6-rollkit-v0.13.3-no-fraud-proofs", - rollkitIgniteAppVersion: "v0.2.1", + rollkitIgniteAppVersion: "rollkit/v0.2.1", localDALatestTag: "v0.3.1", diff --git a/guides/cometbft-to-rollkit.md b/guides/cometbft-to-rollkit.md index 224b9e411..266750c99 100644 --- a/guides/cometbft-to-rollkit.md +++ b/guides/cometbft-to-rollkit.md @@ -14,8 +14,8 @@ This guide assumes you have a CometBFT app set up and [Ignite CLI](https://docs. You need to install Rollkit in your CometBFT app. Open a terminal in the directory where your app is located and run the following command: -```bash -ignite app install github.com/ignite/apps/rollkit@rollkit/v0.2.0 +```bash-vue +ignite app install github.com/ignite/apps/rollkit@{{constants.rollkitIgniteAppVersion}} ``` ## Add Rollkit Features to Your CometBFT App {#add-rollkit-features} @@ -33,7 +33,7 @@ To prepare your app for Rollkit, you'll need to initialize it with Local Data Av Run the following command to initialize Rollkit with Local DA: ```bash -ignite rollkit init --local-da +ignite rollkit init ``` ## Initialize Rollkit CLI Configuration {#initialize-rollkit-cli-configuration} diff --git a/guides/ignite-rollkit.md b/guides/ignite-rollkit.md index 6827d2cde..edda71235 100644 --- a/guides/ignite-rollkit.md +++ b/guides/ignite-rollkit.md @@ -46,8 +46,8 @@ In a new terminal window, you'll now install and run the Ignite App Rollkit. Run the following command to install the Rollkit App: -```bash -ignite app install github.com/ignite/apps/rollkit@rollkit/v0.2.0 +```bash-vue +ignite app install github.com/ignite/apps/rollkit@{{constants.rollkitIgniteAppVersion}} ``` This installs the Rollkit application, which will be integrated into your blockchain. @@ -65,7 +65,7 @@ ignite rollkit add Before starting your blockchain, you need to initialize it with Rollkit support. Initialize the blockchain with Local DA as follows: ```bash -ignite rollkit init --local-da +ignite rollkit init ``` ### Initialize Rollkit CLI Configuration {#initialize-rollkit-cli-configuration} diff --git a/tutorials/wordle.md b/tutorials/wordle.md index 1c2884138..18abe41e7 100644 --- a/tutorials/wordle.md +++ b/tutorials/wordle.md @@ -181,7 +181,7 @@ Rollkit on our codebase. To install the Rollkit app to Ignite, run the following command: ```bash-vue -ignite app install github.com/ignite/apps/rollkit@rollkit/{{constants.rollkitIgniteAppVersion}} +ignite app install github.com/ignite/apps/rollkit@{{constants.rollkitIgniteAppVersion}} ``` Next, add Rollkit to your project by running: @@ -589,7 +589,7 @@ RUN go mod download COPY . . # Build the chain -RUN ignite chain build && ignite rollkit init --local-da +RUN ignite chain build && ignite rollkit init # Initialize the rollkit.toml file RUN rollkit toml init