Merkle Tree

A merkle tree is a data structure, also known as a hash tree. The bottom most nodes of a merkle tree are transaction hashes, which going up, creates combined hashes of each of the child node, until it reaches the top, which ultimately goes into the block. It is an efficient and secure method of storing transactions such that a single change in any of the underlying
Glossary