Small zome for allowing synchronous (soon asynchronous) messaging between two agents, in Holochain RSM.
This module is designed to be included in other DNAs, assuming as little as possible from those. It is packaged as a holochain zome and no built-in UI is provided for it.
These are the things you need to know to decide if you can use this module in your happ:
- Zome:
- This zome doesn't provide any capability grant/claim structure. Which means that, you as the consumer of this zome in your project, must provide another zome that will grant capabilities to each of the functions that this zome provides. This is done so that consumer of this zome can decide for themselves who gets to send and receive message from whom.
- Create a new folder in the
zomesof the consuming DNA, with the name you want to give to this zome in your DNA. - Add a new
Cargo.tomlin that folder. In its content, paste theCargo.tomlcontent from any zome. - Change the
nameproperties of theCargo.tomlfile to the name you want to give to this zome in your DNA. - Add this zome as a dependency in the
Cargo.tomlfile:
[dependencies]
p2pmessage = {git = "https://github.com/hc-institute-japan/p2pmessage-zome", package = "p2pmessage"}- Create a
srcfolder besides theCargo.tomlwith this content:
extern crate p2pmessage;- Add the zome into your
*.dna.workdir/dna.jsonfile. - Compile the DNA with the usual
CARGO_TARGET=target cargo build --release --target wasm32-unknown-unknown.
This respository is structured in the following way:
zome/: example DNA with thep2pmessagecode.- Top level
Cargo.tomlis a virtual package necessary for other DNAs to include this zome by pointing to this git repository.
Read the UI developer setup and the Zome developer setup.
We would like to thank @guillemcordoba and holochain-open-dev for providing a reusable module template to easily create zomes that can be reusable in other Holochain pojects. If you are interested in using the same template, check it out here