TLDR: [(Impervious.ai + Sphinx Chat) x (open source + MIT license)] ^ REST API = Shroom Node
Shroom Node runs on top of LND, and it has one job: to relay generic data to and from other Shroom nodes.
The goal is to have this as an open-source framework on which other apps and services can be built. It would abstract away the details for exchanging data and payments peer-to-peer.
Just released v0.1 which includes a sample chat app.
Feedback and comments appreciated.
Awesome! Great to see an open source project doing lightning transport.
I haven't messed around much with lightning transport yet. What do you see as the benefits of using lightning as transport vs other things? What are the limitations of lightning as transport as it stands?
I'm particularly curious because I want to decentralize SN and the hard part is providing p2p Sybil resistance absent centralization - I have a high level design I think will work but I'm considering alternatives. One way would be to use lightning as transport which has a natural cost to message sending, but for programmatically generated p2p messages I suspect it'd be prohibitively expensive.
Thanks k00b, good questions.
LN as transport is something I'm exploring. I want to use it as much as possible, but I think for some use cases I might have to use it only for signalling and transfer actual data over something else, like a websocket.
On the one hand, it has some interesting benefits, like:
On the other hand, limitations:
Will probably end up using it as a hybrid (transport in some cases, signalling in others).
Don't think this can help much with decentralizing SN though.
Hey k00b, I hear BOLT12 plans to support messages without payments.
Might be useful for decentralizing SN.
I didn’t realize that. Sounds like AMP/keysend I guess. Still, I’m not sure Lightning transport is the way but it’s interesting to consider.