From cbf0903f37efc330c1b8e9550862f0a0b56ca309 Mon Sep 17 00:00:00 2001 From: Michael Asiedu Date: Mon, 8 Jul 2024 12:56:05 +0000 Subject: [PATCH 1/2] chore: Add NoNodo to quickstart --- cartesi-rollups/quickstart.md | 1 + 1 file changed, 1 insertion(+) diff --git a/cartesi-rollups/quickstart.md b/cartesi-rollups/quickstart.md index 8209e032..9b04fe9a 100644 --- a/cartesi-rollups/quickstart.md +++ b/cartesi-rollups/quickstart.md @@ -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. From 2c910b989395f06b0f514422569099c3869fb036 Mon Sep 17 00:00:00 2001 From: Michael Asiedu Date: Mon, 8 Jul 2024 13:01:33 +0000 Subject: [PATCH 2/2] chore: Update direct output types for Advance and Inspect requests in backend introduction --- cartesi-rollups/rollups-apis/backend/introduction.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cartesi-rollups/rollups-apis/backend/introduction.md b/cartesi-rollups/rollups-apis/backend/introduction.md index ed1c9f5b..5037f304 100644 --- a/cartesi-rollups/rollups-apis/backend/introduction.md +++ b/cartesi-rollups/rollups-apis/backend/introduction.md @@ -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).