Draft:BlockDAG
Where to get help
How to improve a draft
You can also browse Wikipedia:Featured articles and Wikipedia:Good articles to find examples of Wikipedia's best writing on topics similar to your proposed article. Improving your odds of a speedy review To improve your odds of a faster review, tag your draft with relevant WikiProject tags using the button below. This will let reviewers know a new draft has been submitted in their area of interest. For instance, if you wrote about a female astronomer, you would want to add the Biography, Astronomy, and Women scientists tags. Editor resources
|
A blockDAG (block Directed Acyclic Graph) is a data structure used in distributed ledger technology where blocks can reference multiple predecessor blocks, forming a directed acyclic graph rather than a linear blockchain.[1] This structure allows multiple blocks to be created in parallel and incorporated into the ledger simultaneously, potentially increasing transaction throughput compared to single-chain architectures.
Overview
In a traditional blockchain, blocks form a linear chain where each block references exactly one parent. When multiple blocks are produced simultaneously (a common occurrence at high block rates due to network propagation delay), only one block is accepted into the canonical chain; the others become orphan blocks — wasted computational work in proof-of-work systems.[2]
In a blockDAG, each block references all known unreferenced blocks (tips of the DAG) as parents, forming a directed acyclic graph. Parallel blocks are all included in the data structure. A consensus protocol then determines a total ordering over all blocks to resolve transaction conflicts.[1]
The orphan rate in a blockchain is approximately:
where is the block production rate and is the network propagation delay. In a blockDAG, this formula does not apply because parallel blocks are incorporated rather than discarded.[1]
History
The concept of using DAG-aware structures for cryptocurrency consensus was explored through several protocols by Yonatan Sompolinsky and collaborators:
- GHOST (2013/2015) — proposed by Sompolinsky and Zohar. The Greedy Heaviest-Observed Sub-Tree protocol modified Bitcoin's longest-chain rule by weighing the entire sub-tree of blocks rather than just the longest path, improving security under high block rates. While still a blockchain (not a DAG), GHOST laid the theoretical groundwork for DAG-based consensus. It influenced Ethereum's fork-choice rule (LMD-GHOST).[2]
- SPECTRE (2016) — proposed by Sompolinsky, Lewenberg, and Zohar. The first full blockDAG protocol, providing fast confirmation but only a partial ordering (pairwise ordering of transactions rather than a total order over all blocks).[3]
- PHANTOM (2018) — proposed by Sompolinsky, Wyborski, and Zohar. Provides a total ordering over all blocks by finding the maximum k-cluster in the DAG, but the optimization problem is NP-hard.[1]
- GHOSTDAG (2018/2021) — a greedy polynomial-time approximation of PHANTOM. Deployed in the Kaspa cryptocurrency.[1]
- DAG-KNIGHT (2022) — proposed by Sompolinsky and Sutton. A parameterless generalization that infers network conditions from the DAG topology.[4]
Other DAG-based distributed ledger systems include IOTA's Tangle, which uses a different DAG structure without discrete blocks.[5]
Consensus protocols
PHANTOM
PHANTOM introduces the concept of k-clusters to separate honest blocks from adversarial blocks in a DAG. A subset S of the DAG is a k-cluster if for every block B in S, the number of blocks in B's anticone (blocks with no ordering relationship to B) that are also in S is at most k.[1]
The parameter k represents the expected number of parallel blocks during one network propagation delay: k ≈ 2Dλ, where D is the propagation delay and λ is the block rate. Honest miners reference all known blocks as parents, so honest parallel blocks have small anticones (≤ k). Adversarial blocks, typically withheld and released later, have large anticons.[1]
Finding the maximum k-cluster is NP-hard, making PHANTOM impractical for direct implementation.[1]
GHOSTDAG
GHOSTDAG (Greedy Heaviest Observed Sub-Tree DAG) is a polynomial-time greedy approximation of PHANTOM. The algorithm:[1]
- Each block selects the parent with the highest blue score (accumulated count of "blue" blocks in its past)
- The algorithm greedily builds a "blue set" following the selected parent chain
- All blocks are ordered: chain blocks by the selected parent chain, non-chain blocks interleaved at merge points
- Transaction conflicts are resolved by ordering (first in order wins)
GHOSTDAG is deployed in the Kaspa cryptocurrency, running at 10 blocks per second.[6]
DAG-KNIGHT
DAG-KNIGHT eliminates the static k parameter by analyzing the DAG structure to infer current network conditions. It is described as the first permissionless proof-of-work protocol with no a priori bound on network latency.[4] The protocol was published through Harvard's Center for Research on Computation and Society.[7]
Comparison with blockchain
| Property | Blockchain | BlockDAG |
|---|---|---|
| Block references | Single parent | Multiple parents (all tips) |
| Parallel blocks | Orphaned (discarded) | Incorporated (ordered) |
| Orphan rate | Increases with block rate | Zero (by design) |
| Throughput scaling | Limited by orphan rate | Limited by node/network capacity |
| Ordering | Inherent (linear chain) | Requires consensus protocol |
Implementations
- Kaspa — proof-of-work blockDAG using GHOSTDAG consensus; 10 blocks per second[6]
- IOTA — uses a different DAG model (Tangle) without discrete blocks; currently transitioning from a coordinator-based model to proof-of-stake
- Conflux — proof-of-work tree-graph structure combining DAG and tree; also supports proof-of-stake finality
- Nano — uses a block-lattice DAG where each account has its own chain; secured by delegated proof-of-stake (Open Representative Voting)
See also
References
- ^ a b c d e f g h i Sompolinsky, Yonatan; Wyborski, Shai; Zohar, Aviv (2021). PHANTOM and GHOSTDAG: A Scalable Generalization of Nakamoto Consensus. ACM Conference on Advances in Financial Technologies (AFT 2021). pp. 57–70. doi:10.1145/3479722.3480990.
- ^ a b Sompolinsky, Yonatan; Zohar, Aviv (2015). "Secure High-Rate Transaction Processing in Bitcoin". Financial Cryptography and Data Security. doi:10.1007/978-3-662-47854-7_32.
- ^ Sompolinsky, Yonatan; Lewenberg, Yoad; Zohar, Aviv (2016). "SPECTRE: A Fast and Scalable Cryptocurrency Protocol". IACR ePrint.
- ^ a b Sompolinsky, Yonatan; Sutton, Michael (2022). "The DAG KNIGHT Protocol: A Parameterless Generalization of Nakamoto Consensus". IACR ePrint.
- ^ "IOTA". IOTA Foundation. Retrieved 2026-03-09.
- ^ a b "Kaspa Updates to Crescendo and 10BPS". Kaspa.org. Retrieved 2026-03-09.
- ^ "The DAG KNIGHT Protocol". Harvard CRCS. Retrieved 2026-03-09.
Category:Distributed computing Category:Directed acyclic graphs Category:Cryptocurrency Category:Data structures Category:Blockchain
Content Disclaimer
Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.
- The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
- There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
- It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
- Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
- Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.

LLM-generated pages with certain obvious signs of being machine generated may be deleted without notice.
These tools are prone to specific issues that violate our policies:
Instead, only summarize in your own words a range of independent, reliable, published sources that discuss the subject.
See the advice page on large language models for more information.