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

Update Documentation for Inspect Requests and NoNodo #201

Merged
merged 2 commits into from
Jul 8, 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
1 change: 1 addition & 0 deletions cartesi-rollups/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ Deployment with a third-party service provider is under development and will be
Several tools created and maintained by the community streamline the dApp creation process on Cartesi Rollups.

- [Deroll](https://github.com/tuler/deroll): TypeScript framework for building on Cartesi.
- [NoNodo](https://github.com/Calindra/nonodo/tree/main): NoNodo is a lightweight development tool that runs the backend application without requiring Docker or a node.
- [python-cartesi](https://github.com/prototyp3-dev/python-cartesi): Python framework for building on Cartesi.
- [cartesi-ts-sqlite](https://github.com/doiim/cartesi-ts-sqlite): A TypeScript + SQLite template.
- [Rollmelette](https://github.com/gligneul/rollmelette): Go framework for building on Cartesi.
Expand Down
3 changes: 2 additions & 1 deletion cartesi-rollups/rollups-apis/backend/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,4 +148,5 @@ curl http://localhost:8080/inspect/mypath

Once the call's response is received, the payload is extracted from the response data, allowing the backend code to examine it and produce outputs as **reports**.

The direct output types for **Advance** and **Inspect** are [vouchers](./vouchers.md), [notices](./notices.md), and [reports](./reports.md).

The direct output types for **Advance** requests are [vouchers](./vouchers.md), [notices](./notices.md), and [reports](./reports.md), while **Inspect** requests generate only [reports](./reports.md).
Loading