Post #2533360
2026-03-26 18:25 UTC
So far we do this over the Internet using iroh to manage direct p2p connections, but we're prepared to offer the same level of abstraction for running over Radio-Protocols like LoRa or BLE, including mesh topologies.
Application developer will mostly use the API to monitor and inspect networking and sync activity, restrict access and select available transports (QUIC, Tor, Mesh Networks, BLE, ..) while we make sure data is delivered as securely and privately as possible.
Replies (1)
-
@p2panda@autonomous.zone 2026-03-26 18:26
Any message you send is delivered on top of our "Operation" data-type. That's an single-writer append-only log with some cool features: You can have as many logs as you want, you can remove any past entries in the log (pruning) and it's robust to forks. It's a simple CRDT actually if you look closer! With append-only logs we are prepared to offer the same functionality over radio-based meshes as sync is cheap (state vector is exchanged in one message, constant-time) and broadcast-only friendly.