dephy-proto
v0.1.3
Published
Protobuf definitions for DePHY messages.
Readme
Messaging in DePHY
The dephy-proto Package
There are packages for developpers to build applications with protobuf definitions in this repository.
cargo add dephy_proto # for Rust
npm install dephy-proto # for Node.jsThe Rust crate is built with prost and published on crates.io.
The JavaScript/TypeScript package for Node.js and Deno is built with pbkit and published on NPM.
Direct Message
A Direct Message in DePHY is a message for DePHY devices and Edge Brokers to communicate directly in Protocol Buffer encoding.
It should be transferred in binary when interacting between the device and Edge Brokers’ service endpoints(MQTT or HTTP).
Usually, a DePHY device send Direct Messages to:
mqtt://path.to.dephy.edge:1883- topic:
/dephy/signed_message - the message binary should be the payload
- topic:
http://path.to.dephy.edge:3883/dephy/signed_message- method:
POST content-type: application/x-dephy- the message binary should be the HTTP body
- method:
Routed Message
A Routed Message in DePHY is a NoStr event wrapping a Direct Message which will be redistributed by Edge Brokers in a NoStr decentralized network:
- The
kindof the event should be1111. - The
contentshould be a Direct Message encoded in Base58 (a.k.abase58(bytes(SignedMessage))). - It should contain these tags:
cis the marker of a Routed Message and should be alwaysdephydephy_fromis the DID string of the message senderdephy_tois the DID string of the message recipentdephy_edgeis the DID string of the message forwarder
And it looks like this:
{
"id": "...",
"pubkey": "...",
"created_at": 0,
"kind": 1111, // Magic!
"content": "...", // base58(bytes(SignedMessage))
"tags": [
["c", "dephy"],
["dephy_to", "did:dephy:0x..."], // did(direct_message.payload.to)
["dephy_from", "did:dephy:0x..."], // did(direct_message.payload.from)
["dephy_edge", "did:dephy:0x..."], // did(origin_edge)
],
"sig": "..."
}You don’t need to care about Routed Messages if you just build applications interacting with only devices and Edge Brokers.
