Skip to content

chore: clean up cometbft tutorial to remove outdate DA references #511

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

Merged
merged 1 commit into from
Nov 19, 2024
Merged
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
10 changes: 6 additions & 4 deletions guides/cometbft-to-rollkit.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ Now that Rollkit is installed, you can add Rollkit features to your existing blo
ignite rollkit add
```

## Initialize Rollkit with Local DA {#initialize-rollkit-local-da}
## Initialize Rollkit {#initialize-rollkit}

To prepare your app for Rollkit, you'll need to initialize it with Local Data Availability (Local DA). This allows your app to interact with a lightweight, testable DA layer.
To prepare your app for Rollkit, you'll need to initialize it.

Run the following command to initialize Rollkit with Local DA:
Run the following command to initialize Rollkit:

```bash
ignite rollkit init
Expand All @@ -53,9 +53,11 @@ This command sets up the `rollkit.toml` file, where you can further customize co
Once everything is configured, you can start your Rollkit-enabled CometBFT app or (simply rollkit app). Use the following command to start your blockchain:

```bash
rollkit start --rollkit.aggregator --rollkit.da_address http://localhost:7980
rollkit start --rollkit.aggregator <insert your flags>
```

## Summary

By following this guide, you've successfully converted your CometBFT app into a Rollkit app.

To learn more about how to config your DA, Sequencing, and Execution, please check out those tutorial sections.
Loading