Data Availability
Sunrise v2 is designed for high-throughput data availability, offering enhanced scalability and flexibility for applications. To achieve this, Sunrise adopts off-chain BLOB data and executes Erasure Coding for each Blob data, not entire block data.
Key Features of Sunrise v2
Several enhancements in Sunrise v2 increase throughput, decentralization, and long-term data retrievability:
Off-chain Erasure Encoding: BLOB data is erasure-coded off-chain, minimizing the computational and storage load on validators.
Off-chain Storage Integration: Utilizing decentralized storage solutions such as IPFS and Arweave, data shards are stored externally. MsgPublishData includes only a metadata URI pointing to these erasure-coded data shares, reducing the on-chain block size requirements for Blob transactions and enhancing scalability.
Design patterns of other DA layers
Data Availability Committee
Data Availability Committee (DAC) is the traditional method to construct alternative Data Availability layer with low costs.
However, in DAC, it is impossible for clients to verify whether Data Availability attested by the committee is true or false, without downloading entire BLOB data.
Data Availability Sampling
In the Data Availability layers which adopts Data Availability Sampling (DAS), block data are processed for Erasure Coding. Then clients can verify the Data Availability only with downloading a part of block data, and can verify the inclusion of BLOB data in the block by using Merkle Tree structure.
In typical DAS setup, full nodes must transfer and download transaction data within the mempool.
As BLOB data sizes grow, the networkās throughput could be limited by these transaction transfers, creating challenges for applications handling large BLOB data.
Sunrise's design
To address these problems in DAC and DAS, Sunrise v2 implements the following solutions:
Off-chain Erasure Encoding: Blob data is processed for Erasure Coding in off-chain program, to reduce validator load.
BLOB data sharding: Not the entire block data but each BLOB data are processed for Erasure Coding. Clients still can verify the Data Availability for each BLOB data only with repeating to download shards, without downloading entire data. Clients also can verify the inclusion of BLOB in the block by using Merkle Tree structure.
External Storage: Blob data is stored on decentralized storage platforms like IPFS and Arweave. Rather than containing blob data on-chain, MsgPublishData holds a metadata URI pointing to erasure-coded data shares.
Data availability is attested with Optimistic way. If the fraud proof is submitted to the Sunrise network, validators will submit Zero-Knowledge Proofs (ZKP) using double-hashed shard data (shard_double_hashes
), allowing validators to verify the presence of shard data without revealing it. This integration is done through Vote Extension of ABCI 2.0.
Benefits of Sunrise v2
Increased Network Throughput: Larger block sizes are achievable by reducing on-chain storage needs.
Enhanced Data Retrievability: Storing data off-chain allows for flexible, long-term data retention.
Improved Network Decentralization: By reducing validator load, Sunrise supports a more decentralized network structure.
Specification for Zero-Knowledge Proof
Terms and Notation
Overview
Zero-Knowledge Proof System
Public Inputs
Private Inputs
Circuit Constraints
The condition of Data Availability
Notations
Requirements for each shard to prove Data Availability
Requirements for tally to prove Data Availability
Example parameters
10 data shards
10 parity shards
Each validator submits 6 shards proofs
Case A: valid shard s_1
s_1
Case B: invalid shard s_2
s_2
Case X: shard s_1, s_3-s_11 are valid with the condition above
Case Y: Only shard s_1, s_3 are valid with the condition above
Slashing condition for each validator
Comparison Between On-chain DA attestation and Off-chain DA attestation
Data Corruption Durability
ć
ć
Tx Mempool Scalability
Ć
ć
Data Retrievability Control
Ć
ć
Validators Load Mitigation
Ć
ć
False-Positive DA Attestation Resistance
ć
ćā»
Examples
Celestia, Avail, EigenDA, Sunrise V1
Sunrise V2, Walrus, 0G
Data Corruption Durability
In both on-chain and off-chain DA attestations, data corruption durability refers to the ability of the system to detect and prevent corruption of the data.
On-chain attestation, such as Celestia or Sunrise V1, ensures that data is durably available because it is stored directly on-chain, and any tampering or loss of data can be immediately detected by validators.
Off-chain attestation (e.g., Sunrise V2) relies on external systems (like IPFS or Arweave) but can still achieve similar durability by verifying the integrity of the data through erasure coding and zero-knowledge proofs.
Tx Mempool Scalability
Transaction mempool scalability is a major limitation in on-chain DA systems. As the size of BLOB data grows, the transaction mempool, which temporarily holds pending transactions, can become overloaded, limiting throughput and scalability.
In off-chain DA systems, this limitation is mitigated by storing large amounts of data externally, with only the necessary hashes or metadata being stored on-chain. This allows for greater scalability and the ability to process larger volumes of data without congesting the mempool.
Data Retrievability Control
In on-chain DA systems, data retrievability is often tied to the consensus mechanism, which means the data must remain available as long as it is needed for consensus (e.g., fraud proofs or validity proofs). However, long-term data retrievability is not always guaranteed once the consensus is finalized.
Off-chain DA systems, such as Sunrise V2, provide more flexible control over data retrievability because the data is stored in decentralized storage systems (like IPFS or Arweave). This allows for longer-term retention of data and better control over how long data remains accessible.
Validators Load Mitigation
On-chain DA attestation places a heavier load on validators since they are responsible for verifying the data availability directly on-chain. As transaction sizes grow, the computational and storage demands on validators increase, potentially limiting decentralization.
In contrast, off-chain DA attestation significantly reduces the load on validators by outsourcing data storage and retrieval to external systems. Validators only need to verify the availability of data shards through erasure coding and zero-knowledge proofs, which lightens their processing and storage requirements.
False-Positive DA Attestation Resistance
False-positive DA attestation refers to situations where a system incorrectly attests that data is available when, in reality, it is not.
On-chain DA attestation, used by systems like Celestia and Sunrise V1, has strong resistance to false positives since all the data is stored and verified directly on-chain, making it difficult to falsely claim that data is available when it is not.
In off-chain DA attestation (e.g., Sunrise V2), false-positive resistance is maintained through the use of zero-knowledge proofs and cryptographic commitments like erasure coding. By verifying the double-hashed values of shard data, validators can ensure that the data is indeed available without needing to store or directly access the entire data set.
However, there may still be edge cases where off-chain storage solutions or network latency could introduce opportunities for false-positive attestations, though these are minimized by careful design and redundancy in the verification process.
Last updated