Skip to content

Latest commit

 

History

History
74 lines (61 loc) · 2.23 KB

README.md

File metadata and controls

74 lines (61 loc) · 2.23 KB

Simple chat rollup

Rollups on Astria are virtual machine (VM) agnostic, which means that they can function without relying on a VM — a concept we refer to as a noVM rollup.

Using Astria's Execution API, developers can build rollups tailored to any application type that operates on transactions, messages, and blocks.

This repo contains a simplified noVM messenger rollup app which users can interact with using a cli to submit messages and access message history from the rollup.

⚠️ Development Notice ⚠️

This is an example project intended for demonstration and learning purposes only. It is not production-ready and should not be used in a production environment.

Important Notes

  • This code may contain incomplete features
  • Security measures may not be fully implemented
  • Performance optimizations are not included
  • Documentation may be limited

Please use this project only as a reference or starting point for your own implementation.

Run in a local cluster

deploy to cluster

For more details on deploying the development cluster, please refer to Astria's charts repo.

To deploy the full stack in one command run

just deploy-all

To deploy components sequentially run

just deploy cluster
just deploy ingress-controller
just wait-for-ingress-controller

build the frontend and load it to the cluster

just install-frontend
just build-and-load-frontend

then run celestia network and sequencer network with

just deploy astria-local

and finally deploy the chat rollup

just deploy astria-chat
just wait-for-astria-chat

on deployment the chat-rollup rest endpoint will serve at (http://rest.astria-chat.localdev.me) and the frontend at (http://chat.astria-chat.localdev.me).

To delete the cluster run

just delete-all

Interact using the cli

Install the rollup cli by running

just install-cli

Current supported commands:

  • rollup-cli rollup transfer --amount --private-key <PRIVATE_KEY> <TO_ADDRESS>
  • rollup-cli rollup text --private-key <PRIVATE_KEY>

query the rollup state: curl http://rest.astria.localdev.me/get_text_from_id/{message_id} curl http://rest.astria.localdev.me/get_account_balance/{address}/{asset}