All Projects → storm-org → storm-spec

storm-org / storm-spec

Licence: MIT license
Specification for Storm: L2/L3 distributed storage and messaging with economic incentivisation leveraging LNP/BP ecosystem

Projects that are alternatives of or similar to storm-spec

rgb-core
RGB Core Library: consensus validation for private & scalable client-validated smart contracts on Bitcoin & Lightning
Stars: ✭ 99 (+59.68%)
Mutual labels:  smart-contracts, lightning-network, lnp-bp
LNPBPs
LNP/BP standards for bitcoin layer 2 & 3 protocols
Stars: ✭ 158 (+154.84%)
Mutual labels:  smart-contracts, lightning-network, lnp-bp
Layr
A decentralized (p2p) file storage system built atop Kademlia DHT that enforces data integrity, privacy, and availability through sharding, proofs of retrievability, redundancy, and encryption, with smart-contract powered incentive scheme
Stars: ✭ 90 (+45.16%)
Mutual labels:  smart-contracts, decentralized-storage
rgb-node
RGB node for both servers and mobiles
Stars: ✭ 70 (+12.9%)
Mutual labels:  smart-contracts, lnp-bp
bsc-genesis-contract
The genesis contracts of BNB Smart Chain.
Stars: ✭ 321 (+417.74%)
Mutual labels:  smart-contracts
JeChain
Node for JeChain - an experimental smart contract blockchain network
Stars: ✭ 177 (+185.48%)
Mutual labels:  smart-contracts
WatsonWebsocket
A simple C# async websocket server and client for reliable transmission and receipt of data
Stars: ✭ 158 (+154.84%)
Mutual labels:  messaging
ubikom
Free, secure communications for everyone, powered by decentralized private identity.
Stars: ✭ 62 (+0%)
Mutual labels:  messaging
kleros
Kleros smart contracts
Stars: ✭ 203 (+227.42%)
Mutual labels:  smart-contracts
NEO-Tutorial
Learning NEO Step by Step
Stars: ✭ 26 (-58.06%)
Mutual labels:  smart-contracts
wyvern-ethereum
Project Wyvern Ethereum Smart Contracts
Stars: ✭ 209 (+237.1%)
Mutual labels:  smart-contracts
PlasmaContract
More Viable Plasma (MoreVP) contract with Limbo Exits
Stars: ✭ 26 (-58.06%)
Mutual labels:  smart-contracts
tvdapp
Blockchain DApp using React, Next.js and MobX
Stars: ✭ 66 (+6.45%)
Mutual labels:  smart-contracts
thesoliditydev
Solidity exercises
Stars: ✭ 18 (-70.97%)
Mutual labels:  smart-contracts
rabbitmq-jms-client
RabbitMQ JMS client
Stars: ✭ 51 (-17.74%)
Mutual labels:  messaging
signal-msg
Send Signal messages from GNU Emacs using signal-cli
Stars: ✭ 20 (-67.74%)
Mutual labels:  messaging
common
Common classes used across prooph components
Stars: ✭ 83 (+33.87%)
Mutual labels:  messaging
project web3.0
This is a code repository for the corresponding video tutorial. In this video, we're going to build a Web 3.0 React Solidity Blockchain Application
Stars: ✭ 2,690 (+4238.71%)
Mutual labels:  smart-contracts
plasma client
Web Client for Plasma Protocol
Stars: ✭ 19 (-69.35%)
Mutual labels:  smart-contracts
talek
a Private Publish Subscribe System
Stars: ✭ 39 (-37.1%)
Mutual labels:  messaging

Storm

Storm is a L2/L3 distributed storage and messaging protocol with economic incentivisation leveraging LNP/BP ecosystem.

Protocol overview

In order to understand the specification, you have to have a previous knowledge of the following technologies:

  • Probabilistic checkable proofs see collection of papers here
  • Concept of payment channels
  • Partially-signed and unpublished bitcoin transactions
  • CVS-locked transactions
  • HTLC contracts
  • Data encryption with asymmetric key pairs

Let's start with a simple storage case – and later we will elaborate on how it can be extended to messaging and more complex storage scenarios.

In our initial setting, Alice wants to store some data remotely and prepared to pay for that some reward in bitcoins. Bob, on the other hand, is willing to store the data for Alice and be paid a reward. Alice and Bob can agree on the storage conditions, however they face some counterparty risks, namely:

  1. If Alice due to some reason would not need the data anymore, Bob may not get paid
  2. If Bob provides data back to Alice on her request, Alice has no obligations to pay to Bob
  3. If Bob loses the data – or decides that the cost of storage exceeds the reward later (when the agreement is set), he may delete the data and Alice will be unable to receive them back even if she is still willing to pay.

All these risks can be mitigated with a specially designed storm payment channel, created with a published funding transaction followed by partially-signed unpublished transactions containing special forms of Bitcoin script-based smart contracts described below. Moreover, this storm payment channel may be created on top of existing Lightning Network channel with addition of special outputs to the LN commitment transaction (which will require modification of some of existing BOLTs) – see Storm with Lightning section for the details.

The first counterparty risk (of Bob losing reward in case when Alice does not need CSV data anymore and avoids payment) is mitigated by Alice depositing reward to a special funding transaction containing a CSV-output to Bob's public key. This output must be in a distant future, much beyond the time when Alice needs to receive the data, and must contain reward. In order to ensure that Bob will provide the data to Alice on her request Bob also co-signs an HTLC settlement transaction and provides it to Alice. This transaction spends the full amount of funds from the funding transaction and, if signed by Alice and published (which signifies that Alice did not timeout), discards Bob's ability to retrieve the funds.

The second counterparty risk (of Alice not paying Bob for the data provided) is mitigated by the same HTLC settlement transaction, pre-signed by Bob, allocating all of the deposited funds to Bob in case when he exposes the decryption key. Alice signs this transaction only when she receives an encrypted copy of the data and a hash of the decryption key. To make sure that Bob did decrypt the correct data, it also provides Alice with a specially-constructed probabilistic checkable proof.

The third counterparty risk (of Bob discarding Alice's data if he is not interested in the reward anymore) is mitigated by Bob depositing a stake into the funding transaction, which will be paid back to Bob only if the HTLC settlement transaction cooperative conditions are fullfilled; otherwise these funds will go to Alice under CSV condition.

The transaction graph for the storm channel should be constructed in the following way:

Transaction structure

These transactions covers the following scenarios:

Scenario Bob payment Alice payment
Initial deposits for all scenarios stake reward
N1. Cooperative reward+stake 0
N2. Alice did not requested the data from Bob reward+stake 0
N3. Bob did not keep the data 0 stake+reward
N4. Bob kept the data, but cooperation with Alice failed stake+reward*factor reward*(1-factor)
N5. Alice was provided with the data but not with the decryption key 0 stake+reward

The simple sequence of the actions taken by Alice and Bob should look in the following way:

Simple settlement sequence

The data workflow between Alice and Bob is organized in the following way:

General workflow

Probabilistic checkable proofs

Probabilistic checkable proofs allows to verify in a non-interactive way computational integrity for some process (like data encoding in our case) without exposing the source data used for computation (i.e. providing zero-knowledge argument).

Briefly, if Bob wants to provide Alice with some non-interactive argument that the encrypted data (available to Alice) are really correspond to some un-encrypted pre-image (which is unknown to Bob), he needs to undertake the following:

  1. Split the source data into chunks of the same size (like 256 bytes or 1kb)
  2. Encrypt those data chunk by chunk with some encryption key
  3. Compute Merkle trees from hashes of the chunks in unencrypted source data and encrypted data
  4. Combine two Merkle tree roots into a single one and get SHA256 hash of it. This hash will work as a random oracle for further process
  5. Use this random number to select 1-10% of the data chunks
  6. Provide Alice with
    • encryption key
    • selected data chunks (for both encrypted and unencrypted data)
    • Merkle tree paths to the selected chunks
    • hash of the combined Merkle tree roots

With this data Alice will be able to check with this zero-knowledge argument by:

  1. Checking Merkle tree paths leading to the chunks and resulting Merkle tree root hash to correspond to them
  2. Checking that the selected source data chunks when encrypted with the proviede encryption key are byte-to-byte equal to their encrypted version provided by Bob.

If Bob wants to falsify the proof (because, for instance, he keeps only some part of the data), he needs to "mine" encryption and decryption key pairs in such a way that the data encrypted with them will result in a such Merkle tree root hash will allow to select only those blocks which are kept by him. Since encryption process is expensive, and it also requires multiple hashes to be computed, it's quite easy to make the cost of such brute-force attack by Bob to be significantly higher then the actual reward+stake, i.e. render it economically irrational.

Storm with Lightning

The proposed funding transaction, keeping both reward from Alice and stake from Bob in case of Lightning channel between Alice and Bob will be represented by a funds coming from both parties allocated into an additional output within the LN commitment transaction, which can be spend in the exactly the same manner either via timeouts or HTLC-based settlement. Once HTLC-based settlement is achieved, this output can be discarded and the LN commitment transaction can be updated with new balances taking into account the reward paid to Bob by Alice.

Messaging support

The same framework may be utilized for the case of messaging, when Bob is willing to pay for some message, which content he does not know, to delivered to him by Alice, which holds such message (i.e. received on his behalf). This situation is a good companion to the existing LN message routing incentivisation mechanics, covering the inverse case to the case of Lightning Network routing.

Further possible enhancements

The workflow can be extended to the case when Alice makes regular requests to Bob in order to proof the fact that Bob continues to keep the data to further insure data safety; in this case Bob will have to generate new encryption/ decryption key pair each time and the HTLC transaction needs to be updated alike LN commitment transaction.

Also, the actual data may be split by Alice into multiple pieces, so not only Bob, but many other parties will be responsible for keeping the data (like in Bittorrent protocol) with some degree of redundancy.

Contributors

The protocol was proposed by Dr Maxim Orlovsky from Pandora Core AG; the initial idea was discussed with Giacomo Zucco @giacomozucco, Federico Tenga @fedsten, Marco Amadori @mammadori and @inbitcoin team and now opened to public comments.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].