flâneur — a map of the web's best reading

Merkle Trees | Nimiq Developer Center

nimiq.com · saved by 1 readers

In the context of blockchain, ensuring data security is paramount. Our blockchain uses a tree-like structure known as Merkle Trees to store accounts and transactions. This approach guarantees that every piece of data is encoded within these trees, ultimately resulting in a single value called the "root." This root value represents the entire dataset and acts as a commitment to the data being stored in the blocks. We use two types of trees in our blockchain system: The Merkle Radix Tree is a data structure used in our blockchain system to store and manage accounts and balances efficiently. This tree organizes accounts and their corresponding balances within its leaf nodes, where each leaf node holds the hash of a single account. Merkle Radix Trees are significantly different from standard Merkle Trees. Leaf nodes with similar prefixes are paired up, while leaf nodes with unique prefixes are called “only child” nodes. Parent nodes in the tree can have multiple children or just one child.

In the context of blockchain, ensuring data security is paramount. Our blockchain uses a tree-like structure known as Merkle Trees to store accounts and transactions. This approach guarantees that every piece of data is encoded within these trees, ultimately resulting in a single value called the "root." This root value represents the entire dataset and acts as a commitment to the data being stored in the blocks. We use two types of trees in our blockchain system: The Merkle Radix Tree is a data structure used in our blockchain system to store and manage accounts and balances efficiently. This

Explore this link on the map →