Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.
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
12 changes: 12 additions & 0 deletions learn/stack.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,18 @@ The following RPC protocols are currently supported:
- JSON-RPC over HTTP
- JSON-RPC over WebSockets

The RPC provides an additional query for DA included blocks using the `height` parameter:

```sh
curl http://127.0.0.1:26657/block?height=1

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.


### P2P layer

Rollkit's [P2P layer](https://github.com/rollkit/rollkit/tree/main/p2p) enables
Expand Down