Skip to content

Commit 4850951

Browse files
committed
chore: update rollkit ignite app constant and usage, remove --local-da flag
1 parent 304be8b commit 4850951

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.vitepress/constants/constants.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const constants = Object.freeze({
77
rollkitLatestTag: "v0.13.7",
88
rollkitLatestSha: "8deede4",
99
rollkitCosmosSDKVersion: "v0.50.6-rollkit-v0.13.3-no-fraud-proofs",
10-
rollkitIgniteAppVersion: "v0.2.1",
10+
rollkitIgniteAppVersion: "rollkit/v0.2.2",
1111

1212
localDALatestTag: "v0.3.1",
1313

guides/cometbft-to-rollkit.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ This guide assumes you have a CometBFT app set up and [Ignite CLI](https://docs.
1414

1515
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:
1616

17-
```bash
18-
ignite app install github.com/ignite/apps/rollkit@rollkit/v0.2.0
17+
```bash-vue
18+
ignite app install github.com/ignite/apps/rollkit@{{constants.rollkitIgniteAppVersion}}
1919
```
2020

2121
## 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
3333
Run the following command to initialize Rollkit with Local DA:
3434

3535
```bash
36-
ignite rollkit init --local-da
36+
ignite rollkit init
3737
```
3838

3939
## Initialize Rollkit CLI Configuration {#initialize-rollkit-cli-configuration}

guides/ignite-rollkit.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ In a new terminal window, you'll now install and run the Ignite App Rollkit.
4646

4747
Run the following command to install the Rollkit App:
4848

49-
```bash
50-
ignite app install github.com/ignite/apps/rollkit@rollkit/v0.2.0
49+
```bash-vue
50+
ignite app install github.com/ignite/apps/rollkit@{{constants.rollkitIgniteAppVersion}}
5151
```
5252

5353
This installs the Rollkit application, which will be integrated into your blockchain.
@@ -65,7 +65,7 @@ ignite rollkit add
6565
Before starting your blockchain, you need to initialize it with Rollkit support. Initialize the blockchain with Local DA as follows:
6666

6767
```bash
68-
ignite rollkit init --local-da
68+
ignite rollkit init
6969
```
7070

7171
### Initialize Rollkit CLI Configuration {#initialize-rollkit-cli-configuration}

tutorials/wordle.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ Rollkit on our codebase.
181181
To install the Rollkit app to Ignite, run the following command:
182182

183183
```bash-vue
184-
ignite app install github.com/ignite/apps/rollkit@rollkit/{{constants.rollkitIgniteAppVersion}}
184+
ignite app install github.com/ignite/apps/rollkit@{{constants.rollkitIgniteAppVersion}}
185185
```
186186

187187
Next, add Rollkit to your project by running:
@@ -589,7 +589,7 @@ RUN go mod download
589589
COPY . .
590590

591591
# Build the chain
592-
RUN ignite chain build && ignite rollkit init --local-da
592+
RUN ignite chain build && ignite rollkit init
593593

594594
# Initialize the rollkit.toml file
595595
RUN rollkit toml init

0 commit comments

Comments
 (0)