Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update rollkit ignite app constant and usage, remove --local-da flag #496

Merged
merged 2 commits into from
Nov 2, 2024
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
2 changes: 1 addition & 1 deletion .vitepress/constants/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -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",

Expand Down
6 changes: 3 additions & 3 deletions guides/cometbft-to-rollkit.md
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand All @@ -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}
Expand Down
6 changes: 3 additions & 3 deletions guides/ignite-rollkit.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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}
Expand Down
4 changes: 2 additions & 2 deletions tutorials/wordle.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down
Loading