Run an example dApp
This article explains how to build and interact with a minimalistic Cartesi Rollups application.
Run an example application built with Sunodo
Sunodo is a Rollups-as-a-Service platform and a set of tools for a simplified development of Cartesi dApps.
By the end of this tutorial, you will learn how to create and run a simple existing dApp written in Python.
The dApp continuously polls a specified rollup server for requests, logs them, and responds with a pre-defined accept
status for both advance
and inspect
request types.
The Quick Start guide consists of 4 main steps:
Make sure you have installed all the necessary requirements before proceeding.
Installing with Sunodo
First of all, you need Sunodo installed on your machine. You can skip this step if you already have it.
- MacOS
- Linux
- Windows
You can use Homebrew:
brew install sunodo/tap/sunodo
Or:
npm install -g @sunodo/cli
npm install -g @sunodo/cli
Install WSL and then run:
npm install -g @sunodo/cli
With Sunodo in place, run:
sunodo create my-app --template python
If you need a dApp in a different language, change the python
argument according to the available templates.
Building with Sunodo
Navigate to the my-app
directory and run:
sunodo build
Running with Sunodo
From the my-app
directory run:
sunodo run
Interacting with Sunodo
You can run an inspect call by accessing the Inspect server at http://localhost:8080/inspect/
.
For other calls, access the GraphQL playground at http://localhost:8080/graphql
and follow our GraphQL API guide to interact with the dApp.
Run an example application from the rollups-examples
repository
By the end of this tutorial, you will learn how to run a simple existing dApp written in Python, called Echo-Python.
This guide is tailored for Ubuntu or similar Linux distributions. Adjustments might be required for other operating systems.
You can inspect the full code of the Echo Python dApp in Cartesi's public Github repository.
Overview
The Echo-Python dApp simply copies (or "echoes") each input received as a corresponding output notice. The dApp's back-end is written in Python, and its front-end is a simple console application written in Typescript that can be executed from a terminal.
The Quick Start guide consists of 5 main steps:
Installing
Follow the manual setup to make sure you have installed all the necessary requirements locally.
Building
- Clone the cartesi/rollups-examples Github repository, and
cd
into it:
git clone https://github.com/cartesi/rollups-examples.git
cd rollups-examples
- Navigate to the dApp example directory by running the following command:
cd echo-python
- Check if your Docker supports the RISCV platform by running:
docker buildx ls
If you do not see linux/riscv64
in the platforms list, install QEMU by running:
apt install qemu-user-static
QEMU is a generic and open source machine emulator and virtualizer that will be used by Docker to emulate RISCV instructions to build a Cartesi Machine for your dApp.
After installing QEMU, the platform linux/riscv64
should appear in the platforms list.
- Build the Echo dApp:
docker buildx bake --load
If you have PostgreSQL and Redis already installed on your system, you may encounter port conflicts when the Docker containers attempt to start services on ports that are already in use. To resolve these conflicts, edit the ports for Redis and PostgreSQL in the docker-compose.yml file located in the root directory of your dApp.
Running
To run the application, you can start an environment that includes a local blockchain with the Cartesi smart contracts deployed, as well as a Cartesi L2 node executing the dApp's back-end logic.
docker compose -f ../docker-compose.yml -f ./docker-compose.override.yml up
After you see the expected logs below, you can go to the Interacting Step.
Expected logs
Allow some time for the infrastructure to be ready. How much will depend on your system, but eventually the container logs will only show the continuous production of empty blocks in the local blockchain, as displayed below:
rollups-examples-hardhat-1 | Mined empty block range #32 to #33
rollups-examples-hardhat-1 | Mined empty block range #32 to #34
rollups-examples-hardhat-1 | Mined empty block range #32 to #35
rollups-examples-hardhat-1 | Mined empty block range #32 to #36
How to shutdown the environment
You can shutdown the environment with ctrl+c
and then running:
docker compose -f ../docker-compose.yml -f ./docker-compose.override.yml down -v
Every time you stop the docker compose ... up
command with ctrl+c
, you need to run the docker compose ... down -v
command to remove the volumes and containers. Ignoring this will preserve outdated information in those volumes, causing unexpected behaviors, such as failure to reset the hardhat localchain.
Interacting with the dApp
Frontend-console application
With the infrastructure in place, you can use our frontend-console application to interact with the Echo dApp.
Every Rollups dApp gets an address on the base layer when it's deployed. The following is needed to send inputs to a dApp:
- Gateway URL to the intended chain
- Cartesi Rollups InputBox contract address
- Appropriate account with sufficient funds for submitting transactions to the network
Interacting locally with the dApp
The following steps describe how to send an input to the Echo dApp instance that is running locally:
- Open a separate terminal window
- From the rollups-examples base directory, navigate to the
frontend-console
one:
cd frontend-console
- Build the frontend console application:
yarn
yarn build
- Send an input to the current locally deployed dApp:
yarn start input send --payload "Hello, Cartesi."
- Verify the outputs (notices) generated by your input:
yarn start notice list
After completing all the steps above, you should get a response with the payload of the notice:
"Hello, Cartesi."
You can run the Cartesi Rollups environment locally in host mode. Please follow the guide on how to run dApp back-ends in Host Mode, but before that make sure to shutdown the current running environment.
For more information about the frontend-console
application and its options, please check the frontend-console documentation.
Explore our dApps
You can find several Cartesi dApp examples on GitHub.