Skip to content

docs: reword necesary components #546

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

Closed
wants to merge 2 commits into from
Closed
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
15 changes: 4 additions & 11 deletions learn/stack.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,10 @@ Thanks to this compatibility, you can use tools like [abci-cli](https://docs.com
#### Cosmos SDK

Would you like to change your Cosmos SDK application to a Rollkit rollup?
No problem! You need to replace the Cosmos SDK Go dependency with a
No problem! You need to replace the Cosmos SDK Go starting logic with a
Rollkit-enabled version, which can be found
at the [`rollkit/cosmos-sdk`](https://github.com/rollkit/cosmos-sdk) repository.

Note the [`rollkit/cosmos-sdk`](https://github.com/rollkit/cosmos-sdk) repository follows the release branches of
upstream Cosmos SDK, but with the bonus of using Rollkit instead of CometBFT
as the ABCI client.

And don't forget to replace another dependency, `CometBFT`, with
[`rollkit/cometbft`](https://github.com/rollkit/cometbft), which has an enhanced ABCI interface that includes
the methods needed for state fraud proofs.
at the [`rollkit/cosmos-sdk-starter`](https://github.com/rollkit/cosmos-sdk-starter) repository.
The modified starting handler makes use of a Rollkit node instead of CometBFT as the ABCI client.

### Data availability

Expand Down Expand Up @@ -97,8 +90,8 @@ curl http://127.0.0.1:26657/block?height=included
```

#### Parameters
- height (integer or string): height of the requested block. If no height is specified the latest block will be used. If height is set to the string "included", the latest DA included block will be returned.

- height (integer or string): height of the requested block. If no height is specified the latest block will be used. If height is set to the string "included", the latest DA included block will be returned.

### P2P layer

Expand Down
Loading