mirror of
https://github.com/status-im/network-stories.git
synced 2025-01-18 07:52:53 +00:00
565 B
565 B
Phrase: Directed Acyclic Graph (DAG)
Related: #consensus #data
Operating Definition:
A directed graph with no directed cycles. 1
ELI5: A data structure that allows for branching to occur. A blockchain is just a linear DAG. A DAG is a generalization of that dynamic which can allow for other parts can branch off and continue to exist.
Current Implementation:
Simply a basic generalized data structure used in multiple different fields of study.