Quick Start
This article explains how to build and interact with a minimalistic Cartesi Rollups application.
By the end of this tutorial, you will learn how to run a simple existing dApp written in Python, called Echo-Python.
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
You can use online development environments such as Gitpod and CodeSandbox to open the rollups-exmaples directly in your browser with all required dependencies already installed. These services allow you to start experimenting immediately, but keep in mind that they are provided by third-parties and are subject to unavailability and policy changes. They may also require access to your GitHub account in order to work properly.
There are two different options to setup the prerequisites, you can choose one of the following:
- Using Gitpod as a fast option
- Using manual setup to install all the necessary requirements locally
Using Gitpod
This is an easy and fast setup, you need to follow the steps:
- Navigate to Gitpod rollups-examples to automate your development setup
- When you click on the link above, it will forward you to login options.
- Login with your preferable option via GitLab, GitHub, or Bitbucket.
- Provide authorization to GitLab, GitHub, or Bitbucket.
- Congratulations, you have successfully setup your development environment
- Start Building our Echo dApp
Using manual setup
Follow the manual setup to make sure you have installed all the necessary requirements locally.
Building
To build the echo-python
example:
If you are running your environment using the Gitpod option explained above, then please start from step number 2 as you will not need to clone the Github repository.
- Clone the cartesi/rollups-examples Github repository by running the following command:
git clone https://github.com/cartesi/rollups-examples.git
- Navigate to the dApp example directory by running the following command:
cd rollups-examples/echo-python
- Build the Echo dApp by running the following command:
docker buildx bake --load
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.
This can be done by running the following command:
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 after some time showing the error "concurrent call in session"
, eventually the container logs will repeatedly show the following:
server_manager_1 | Received GetVersion
server_manager_1 | Received GetStatus
server_manager_1 | default_rollups_id
server_manager_1 | Received GetSessionStatus for session default_rollups_id
server_manager_1 | 0
server_manager_1 | Received GetEpochStatus for session default_rollups_id epoch 0
Advancing time
When executing an example, it is possible to advance time to simulate the passing of epochs. To do that, run:
curl --data '{"id":1337,"jsonrpc":"2.0","method":"evm_increaseTime","params":[864010]}' http://localhost:8545
How to shutdown the environment
You can shutdown the environment by running the following command:
docker compose -f ../docker-compose.yml -f ./docker-compose.override.yml down -v
Interacting with the dApp
There are two ways to interact with the dApp:
Interacting locally with the dApp
With the infrastructure in place, you can use our frontend-console application to interact with the Echo dApp by following the steps:
- 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, to display your dApp notices run the following command:
yarn start notice list
After completing all the steps above, you should get a response similar to the following:
[ { epoch: '0', input: '1', notice: '0', payload: '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.
Interacting with remotely deployed dApps
The Echo dApp example is already deployed on a public blockchain test network called Goerli, which is an Ethereum testnet.
You can use the same frontend-console application to interact with it, as described below.
Please refer to the frontend-console documentation for details on how to use it to send inputs, list notices and deposit ERC-20 tokens.
The following steps describe how to send an input to the Echo dApp instance that is already deployed on Goerli:
- Open a separate terminal window
- Navigate to the
frontend-console
directory:
cd frontend-console
- Build the project:
yarn
yarn build
- You can follow this tutorial to create an Ethereum account using Metamask. Make sure to save the Secret Backup Phrase (MNEMONIC user sequence of twelve words)
- Get testnet funds/tokens on Goerli to be able to submit transactions on that network. There are several faucets available, you may try https://goerlifaucet.com/ or https://goerli-faucet.slock.it/
- Create an Alchemy account to obtain an API key for reliable access to the Goerli network. Alternatively, you can use other options such as Infura or Moralis
- Configure your account on Goerli by running the commands below, which specify the network and MNEMONIC (Secret Backup Phrase) to use. The MNEMONIC is always specified as a string sequence of twelve words. In this example, use the MNEMONIC that you received when creating the Ethereum account using Metamask as described in step 4.
export NETWORK=goerli
export MNEMONIC="word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12"
- Configure your Alchemy RPC gateway URL for Goerli by running the following command:
export RPC_URL=https://eth-goerli.alchemyapi.io/v2/<Replace_This_With_Your_Alchemy_API_key>
- Send an input by running the command:
yarn start input send --payload "my new message" --dapp echo-python
- Query the L2 Cartesi Node for notices produced by the dApp:
yarn start notice list --url https://echo-python.goerli.rollups.staging.cartesi.io/graphql
As shown in the last step (number 10), to query the L2 Cartesi Node for dApp outputs, you will need to specify the URL of its GraphQL endpoint. You can find other existing examples endpoints in the dApp table below.
Explore our dApps
You can find several Cartesi dApp examples on GitHub, such as the following: