2017-03-22 17:24:28 +00:00
|
|
|
|
[[blockchain]]
|
|
|
|
|
== The Blockchain
|
2017-04-23 10:14:39 +00:00
|
|
|
|
|
2023-06-29 01:19:52 +00:00
|
|
|
|
The blockchain is the history of every confirmed Bitcoin transaction.
|
|
|
|
|
It's what allows every full node to indepdently determine what keys and
|
|
|
|
|
scripts control which bitcoins. In this chapter, we'll look at the
|
|
|
|
|
structure of the blockchain and see how it uses cryptographic
|
|
|
|
|
commitments and other clever tricks to make every part of it easy for
|
|
|
|
|
full nodes (and sometimes light clients) to validate.
|
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
((("blockchain (the)", "overview of")))The blockchain data structure is
|
2023-06-29 01:19:52 +00:00
|
|
|
|
an ordered, back-linked list of blocks of transactions.The blockchain
|
2023-05-19 21:59:14 +00:00
|
|
|
|
can be stored as a flat file, or in a simple database.
|
2023-05-19 16:36:58 +00:00
|
|
|
|
Blocks are linked "back," each referring to the previous block in the
|
|
|
|
|
chain. ((("blocks", "block height")))The blockchain is often visualized
|
|
|
|
|
as a vertical stack, with blocks layered on top of each other and the
|
|
|
|
|
first block serving as the foundation of the stack. The visualization of
|
|
|
|
|
blocks stacked on top of each other results in the use of terms such as
|
|
|
|
|
"height" to refer to the distance from the first block, and "top" or
|
|
|
|
|
"tip" to refer to the most recently added block.
|
|
|
|
|
|
|
|
|
|
((("blocks", "block hash")))((("blocks", "genesis block")))((("blocks",
|
|
|
|
|
"parent blocks")))((("genesis block")))((("parent blocks")))Each block
|
|
|
|
|
within the blockchain is identified by a hash, generated using the
|
|
|
|
|
SHA256 cryptographic hash algorithm on the header of the block. Each
|
2023-05-19 21:59:14 +00:00
|
|
|
|
block also commits to the previous block, known as the _parent_ block,
|
2023-05-19 16:36:58 +00:00
|
|
|
|
through the "previous block hash" field in the block header. In other
|
|
|
|
|
words, each block contains the hash of its parent inside its own header.
|
|
|
|
|
The sequence of hashes linking each block to its parent creates a chain
|
|
|
|
|
going back all the way to the first block ever created, known as the
|
|
|
|
|
_genesis block_.
|
|
|
|
|
|
2023-05-19 21:59:14 +00:00
|
|
|
|
Although a block has just one parent, it can have multiple
|
|
|
|
|
children. Each of the children commits to the same parent block.
|
2023-05-19 16:36:58 +00:00
|
|
|
|
Multiple children arise during a blockchain "fork," a temporary
|
2023-05-19 21:59:14 +00:00
|
|
|
|
situation that can occur when different blocks are discovered almost
|
2023-05-19 16:36:58 +00:00
|
|
|
|
simultaneously by different miners (see <<forks>>). Eventually, only one
|
2023-05-19 21:59:14 +00:00
|
|
|
|
child block becomes part of the blockchain accepted by all full nodes and the "fork" is resolved.
|
2023-05-19 16:36:58 +00:00
|
|
|
|
Even though a block may have more than one child, each block can have
|
|
|
|
|
only one parent. This is because a block has one single "previous block
|
|
|
|
|
hash" field referencing its single parent.
|
|
|
|
|
|
|
|
|
|
The "previous block hash" field is inside the block header and thereby
|
|
|
|
|
affects the _current_ block's hash. The child's own identity changes if
|
|
|
|
|
the parent's identity changes. When the parent is modified in any way,
|
|
|
|
|
the parent's hash changes. The parent's changed hash necessitates a
|
|
|
|
|
change in the "previous block hash" pointer of the child. This in turn
|
|
|
|
|
causes the child's hash to change, which requires a change in the
|
|
|
|
|
pointer of the grandchild, which in turn changes the grandchild, and so
|
|
|
|
|
on. This cascade effect ensures that once a block has many generations
|
|
|
|
|
following it, it cannot be changed without forcing a recalculation of
|
|
|
|
|
all subsequent blocks. Because such a recalculation would require
|
|
|
|
|
enormous computation (and therefore energy consumption), the existence
|
2023-05-19 21:59:14 +00:00
|
|
|
|
of a long chain of blocks makes the blockchain's deep history impractical to change,
|
2023-05-19 16:36:58 +00:00
|
|
|
|
which is a key feature of bitcoin's security.
|
|
|
|
|
|
|
|
|
|
One way to think about the blockchain is like layers in a geological
|
|
|
|
|
formation, or glacier core sample. The surface layers might change with
|
|
|
|
|
the seasons, or even be blown away before they have time to settle. But
|
|
|
|
|
once you go a few inches deep, geological layers become more and more
|
|
|
|
|
stable. By the time you look a few hundred feet down, you are looking at
|
|
|
|
|
a snapshot of the past that has remained undisturbed for millions of
|
|
|
|
|
years. In the blockchain, the most recent few blocks might be revised if
|
2023-05-19 21:59:14 +00:00
|
|
|
|
there is a chain reorganization due to a fork. The top six blocks are
|
2023-05-19 16:36:58 +00:00
|
|
|
|
like a few inches of topsoil. But once you go more deeply into the
|
|
|
|
|
blockchain, beyond six blocks, blocks are less and less likely to
|
|
|
|
|
change. ((("transactions", "coinbase transactions")))((("coinbase
|
|
|
|
|
transactions")))After 100 blocks back there is so much stability that
|
2023-05-19 21:59:14 +00:00
|
|
|
|
the coinbase transaction--the transaction containing the reward in
|
|
|
|
|
bitcoin for creating a new block--can be spent. A few thousand blocks back (a month) and the
|
|
|
|
|
blockchain is settled history for all practical purposes. While the
|
2023-05-19 16:36:58 +00:00
|
|
|
|
protocol always allows a chain to be undone by a longer chain and while
|
|
|
|
|
the possibility of any block being reversed always exists, the
|
|
|
|
|
probability of such an event decreases as time passes until it becomes
|
|
|
|
|
infinitesimal.
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
|
|
|
|
=== Structure of a Block
|
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
((("blocks", "structure of")))((("blockchain (the)", "block
|
|
|
|
|
structure")))A block is a container data structure that aggregates
|
|
|
|
|
transactions for inclusion in the public ledger, the blockchain. The
|
|
|
|
|
block is made of a header, containing metadata, followed by a long list
|
|
|
|
|
of transactions that make up the bulk of its size. The block header is
|
2023-05-19 21:59:14 +00:00
|
|
|
|
80 bytes, whereas the total size of all transactions in a block can be
|
|
|
|
|
up to about 4,000,000 bytes. A complete block,
|
|
|
|
|
with all transactions, can therefore be over 10,000 times larger than the block
|
|
|
|
|
header. <<block_structure1>> describes how Bitcoin Core stores the structure of a block.
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
|
|
|
|
[[block_structure1]]
|
2017-05-18 14:18:27 +00:00
|
|
|
|
[role="pagebreak-before"]
|
2017-03-22 17:24:28 +00:00
|
|
|
|
.The structure of a block
|
|
|
|
|
[options="header"]
|
|
|
|
|
|=======
|
|
|
|
|
|Size| Field | Description
|
|
|
|
|
| 4 bytes | Block Size | The size of the block, in bytes, following this field
|
|
|
|
|
| 80 bytes | Block Header | Several fields form the block header
|
2023-05-19 21:59:14 +00:00
|
|
|
|
| 1-9 bytes (VarInt) | Transaction Counter | How many transactions follow
|
2017-03-22 17:24:28 +00:00
|
|
|
|
| Variable | Transactions | The transactions recorded in this block
|
|
|
|
|
|=======
|
|
|
|
|
|
|
|
|
|
[[block_header]]
|
|
|
|
|
=== Block Header
|
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
((("blocks", "headers")))((("blockchain (the)", "block
|
|
|
|
|
headers")))((("headers")))The block header consists of three sets of
|
|
|
|
|
block metadata. First, there is a reference to a previous block hash,
|
|
|
|
|
which connects this block to the previous block in the blockchain. The
|
|
|
|
|
second set of metadata, namely the _difficulty_, _timestamp_, and
|
|
|
|
|
_nonce_, relate to the mining competition, as detailed in <<mining>>.
|
|
|
|
|
The third piece of metadata is the merkle tree root, a data structure
|
|
|
|
|
used to efficiently summarize all the transactions in the block.
|
|
|
|
|
<<block_header_structure_ch09>> describes the structure of a block
|
|
|
|
|
header.
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[block_header_structure_ch09]]
|
|
|
|
|
.The structure of the block header
|
|
|
|
|
[options="header"]
|
|
|
|
|
|=======
|
|
|
|
|
|Size| Field | Description
|
2023-05-19 21:59:14 +00:00
|
|
|
|
| 4 bytes | Version | A version number to track protocol upgrades
|
2017-03-22 17:24:28 +00:00
|
|
|
|
| 32 bytes | Previous Block Hash | A reference to the hash of the previous (parent) block in the chain
|
|
|
|
|
| 32 bytes | Merkle Root | A hash of the root of the merkle tree of this block's transactions
|
2023-02-01 16:31:10 +00:00
|
|
|
|
| 4 bytes | Timestamp | The approximate creation time of this block (seconds from Unix Epoch)
|
2017-04-19 21:09:18 +00:00
|
|
|
|
| 4 bytes | Difficulty Target | The Proof-of-Work algorithm difficulty target for this block
|
|
|
|
|
| 4 bytes | Nonce | A counter used for the Proof-of-Work algorithm
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|=======
|
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
The nonce, difficulty target, and timestamp are used in the mining
|
|
|
|
|
process and will be discussed in more detail in <<mining>>.
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
|
|
|
|
[[block_hash]]
|
|
|
|
|
=== Block Identifiers: Block Header Hash and Block Height
|
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
((("blockchain (the)", "block identifiers")))((("blocks", "block
|
|
|
|
|
height")))((("blocks", "block hash")))The primary identifier of a block
|
|
|
|
|
is its cryptographic hash, a digital fingerprint, made by hashing the
|
|
|
|
|
block header twice through the SHA256 algorithm. The resulting 32-byte
|
|
|
|
|
hash is called the _block hash_ but is more accurately the _block header
|
|
|
|
|
hash_, pass:[<span role="keep-together">because only the block header is
|
|
|
|
|
used to compute it. For example,</span>]
|
|
|
|
|
+000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f+ is
|
2023-05-19 21:59:14 +00:00
|
|
|
|
the block hash of the first Bitcoin block ever created. The block hash
|
2023-05-19 16:36:58 +00:00
|
|
|
|
identifies a block uniquely and unambiguously and can be independently
|
|
|
|
|
derived by any node by simply hashing the block header.
|
|
|
|
|
|
|
|
|
|
Note that the block hash is not actually included inside the block's
|
|
|
|
|
data structure, neither when the block is transmitted on the network,
|
2023-05-19 21:59:14 +00:00
|
|
|
|
nor when it is stored on a node's persistant storage as part of the
|
2023-05-19 16:36:58 +00:00
|
|
|
|
blockchain. Instead, the block's hash is computed by each node as the
|
|
|
|
|
block is received from the network. The block hash might be stored in a
|
|
|
|
|
separate database table as part of the block's metadata, to facilitate
|
|
|
|
|
indexing and faster retrieval of blocks from disk.
|
|
|
|
|
|
|
|
|
|
A second way to identify a block is by its position in the blockchain,
|
|
|
|
|
called the pass:[<span role="keep-together"><em>block height</em>. The
|
|
|
|
|
first block ever created is at block height 0 (zero) and is the</span>]
|
|
|
|
|
pass:[<span role="keep-together">same block that was previously
|
|
|
|
|
referenced by the following block hash</span>]
|
|
|
|
|
+000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f+. A
|
|
|
|
|
block can thus be identified in two ways: by referencing the block hash
|
|
|
|
|
or by referencing the block height. Each subsequent block added "on top"
|
|
|
|
|
of that first block is one position "higher" in the blockchain, like
|
2023-05-19 21:59:14 +00:00
|
|
|
|
boxes stacked one on top of the other. The block height 800,000 was
|
|
|
|
|
reached during the writing of this book in mid-2023, meaning there were
|
|
|
|
|
800,000 blocks stacked on top of the first block created in January
|
|
|
|
|
2009.
|
2023-05-19 16:36:58 +00:00
|
|
|
|
|
|
|
|
|
Unlike the block hash, the block height is not a unique identifier.
|
|
|
|
|
Although a single block will always have a specific and invariant block
|
|
|
|
|
height, the reverse is not true—the block height does not always
|
|
|
|
|
identify a single block. Two or more blocks might have the same block
|
|
|
|
|
height, competing for the same position in the blockchain. This scenario
|
2023-05-19 17:20:00 +00:00
|
|
|
|
is discussed in detail in the section <<forks>>. In early blocks, the block height was
|
|
|
|
|
also not a part of the block's data structure; it was not stored within
|
|
|
|
|
the block. Each node dynamically identified a block's position (height)
|
|
|
|
|
in the blockchain when it was received from the Bitcoin network. A
|
|
|
|
|
later protocol change (BIP34) began including the block height in the
|
|
|
|
|
coinbase transaction, although it's purpose was to ensure each block had
|
|
|
|
|
a different coinbase transaction. Nodes still need to dynamically
|
|
|
|
|
identify a block's height in order to validate the coinbase field. The
|
2023-05-19 16:36:58 +00:00
|
|
|
|
block height might also be stored as metadata in an indexed database
|
|
|
|
|
table for faster retrieval.
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
|
|
|
|
[TIP]
|
|
|
|
|
====
|
2023-05-19 16:36:58 +00:00
|
|
|
|
A block's _block hash_ always identifies a single block uniquely. A
|
|
|
|
|
block also always has a specific _block height_. However, it is not
|
|
|
|
|
always the case that a specific block height can identify a single
|
|
|
|
|
block. Rather, two or more blocks might compete for a single position in
|
|
|
|
|
the blockchain.
|
2017-03-22 17:24:28 +00:00
|
|
|
|
====
|
|
|
|
|
|
|
|
|
|
=== The Genesis Block
|
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
((("blocks", "genesis block")))((("blockchain (the)", "genesis
|
2023-05-19 21:59:14 +00:00
|
|
|
|
block")))The first block in the blockchain is called the _genesis block_
|
2023-05-19 16:36:58 +00:00
|
|
|
|
and was created in 2009. It is the common ancestor of all the blocks in
|
|
|
|
|
the blockchain, meaning that if you start at any block and follow the
|
|
|
|
|
chain backward in time, you will eventually arrive at the genesis block.
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
Every node always starts with a blockchain of at least one block because
|
2023-05-19 21:59:14 +00:00
|
|
|
|
the genesis block is statically encoded within Bitcoin Core,
|
|
|
|
|
such that it cannot be altered. Every node always "knows" the
|
2023-05-19 16:36:58 +00:00
|
|
|
|
genesis block's hash and structure, the fixed time it was created, and
|
|
|
|
|
even the single transaction within. Thus, every node has the starting
|
|
|
|
|
point for the blockchain, a secure "root" from which to build a trusted
|
|
|
|
|
blockchain.
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
See the statically encoded genesis block inside the Bitcoin Core client,
|
|
|
|
|
in http://bit.ly/1x6rcwP[_chainparams.cpp_].
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
|
|
|
|
The following identifier hash belongs to the genesis block:
|
|
|
|
|
|
|
|
|
|
----
|
|
|
|
|
000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f
|
|
|
|
|
----
|
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
You can search for that block hash in any block explorer website, such
|
|
|
|
|
as _blockchain.info_, and you will find a page describing the contents
|
|
|
|
|
of this block, with a URL containing that hash:
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
2023-05-19 21:59:14 +00:00
|
|
|
|
https://blockstream.info/block/000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
|
|
|
|
Using the Bitcoin Core reference client on the command line:
|
|
|
|
|
|
|
|
|
|
----
|
|
|
|
|
$ bitcoin-cli getblock 000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f
|
|
|
|
|
----
|
|
|
|
|
[source,json]
|
|
|
|
|
----
|
|
|
|
|
{
|
2023-05-19 21:58:17 +00:00
|
|
|
|
"hash": "000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f",
|
|
|
|
|
"confirmations": 790496,
|
|
|
|
|
"height": 0,
|
|
|
|
|
"version": 1,
|
|
|
|
|
"versionHex": "00000001",
|
|
|
|
|
"merkleroot": "4a5e1e4baab89f3a32518a88c31bc87f618f76673e2cc77ab2127b7afdeda33b",
|
|
|
|
|
"time": 1231006505,
|
|
|
|
|
"mediantime": 1231006505,
|
|
|
|
|
"nonce": 2083236893,
|
|
|
|
|
"bits": "1d00ffff",
|
|
|
|
|
"difficulty": 1,
|
|
|
|
|
"chainwork": "0000000000000000000000000000000000000000000000000000000100010001",
|
|
|
|
|
"nTx": 1,
|
|
|
|
|
"nextblockhash": "00000000839a8e6886ab5951d76f411475428afc90947ee320161bbf18eb6048",
|
|
|
|
|
"strippedsize": 285,
|
|
|
|
|
"size": 285,
|
|
|
|
|
"weight": 1140,
|
|
|
|
|
"tx": [
|
|
|
|
|
"4a5e1e4baab89f3a32518a88c31bc87f618f76673e2cc77ab2127b7afdeda33b"
|
|
|
|
|
]
|
2017-03-22 17:24:28 +00:00
|
|
|
|
}
|
|
|
|
|
----
|
|
|
|
|
|
2023-05-19 21:59:14 +00:00
|
|
|
|
The genesis block contains a message within it. The coinbase
|
2023-05-19 16:36:58 +00:00
|
|
|
|
transaction input contains the text "The Times 03/Jan/2009 Chancellor on
|
|
|
|
|
brink of second bailout for banks." This message was intended to offer
|
|
|
|
|
proof of the earliest date this block was created, by referencing the
|
|
|
|
|
headline of the British newspaper _The Times_. It also serves as a
|
|
|
|
|
tongue-in-cheek reminder of the importance of an independent monetary
|
2023-05-19 21:59:14 +00:00
|
|
|
|
system, with Bitcoin's launch occurring at the same time as an
|
2023-05-19 16:36:58 +00:00
|
|
|
|
unprecedented worldwide monetary crisis. The message was embedded in the
|
2023-05-19 21:59:14 +00:00
|
|
|
|
first block by Satoshi Nakamoto, Bitcoin's creator.
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
|
|
|
|
=== Linking Blocks in the Blockchain
|
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
((("blocks", "linking blocks in the blockchain")))((("blockchain (the)",
|
2023-05-19 21:59:14 +00:00
|
|
|
|
"linking blocks in the blockchain")))Bitcoin full nodes validate every
|
|
|
|
|
block in the blockchain, starting at the genesis block. Their local view of
|
2023-05-19 16:36:58 +00:00
|
|
|
|
the blockchain is constantly updated as new blocks are found and used to
|
|
|
|
|
extend the chain. As a node receives incoming blocks from the network,
|
|
|
|
|
it will validate these blocks and then link them to the existing
|
|
|
|
|
blockchain. To establish a link, a node will examine the incoming block
|
|
|
|
|
header and look for the "previous block hash."
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
Let's assume, for example, that a node has 277,314 blocks in the local
|
|
|
|
|
copy of the blockchain. The last block the node knows about is block
|
|
|
|
|
277,314, with a block header hash of:
|
2017-04-26 17:30:37 +00:00
|
|
|
|
|
|
|
|
|
----
|
|
|
|
|
00000000000000027e7ba6fe7bad39faf3b5a83daed765f05f7d1b71a1632249
|
|
|
|
|
----
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
The Bitcoin node then receives a new block from the network, which it
|
|
|
|
|
parses as follows:
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
|
|
|
|
[source,json]
|
|
|
|
|
----
|
|
|
|
|
{
|
|
|
|
|
"size" : 43560,
|
|
|
|
|
"version" : 2,
|
|
|
|
|
"previousblockhash" :
|
|
|
|
|
"00000000000000027e7ba6fe7bad39faf3b5a83daed765f05f7d1b71a1632249",
|
|
|
|
|
"merkleroot" :
|
|
|
|
|
"5e049f4030e0ab2debb92378f53c0a6e09548aea083f3ab25e1d94ea1155e29d",
|
|
|
|
|
"time" : 1388185038,
|
|
|
|
|
"difficulty" : 1180923195.25802612,
|
|
|
|
|
"nonce" : 4215469401,
|
|
|
|
|
"tx" : [
|
|
|
|
|
"257e7497fb8bc68421eb2c7b699dbab234831600e7352f0d9e6522c7cf3f6c77",
|
|
|
|
|
|
|
|
|
|
#[... many more transactions omitted ...]
|
|
|
|
|
|
|
|
|
|
"05cfd38f6ae6aa83674cc99e4d75a1458c165b7ab84725eda41d018a09176634"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
----
|
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
Looking at this new block, the node finds the +previousblockhash+ field,
|
|
|
|
|
which contains the hash of its parent block. It is a hash known to the
|
|
|
|
|
node, that of the last block on the chain at height 277,314. Therefore,
|
|
|
|
|
this new block is a child of the last block on the chain and extends the
|
|
|
|
|
existing blockchain. The node adds this new block to the end of the
|
|
|
|
|
chain, making the blockchain longer with a new height of 277,315.
|
|
|
|
|
<<chain_of_blocks>> shows the chain of three blocks, linked by
|
|
|
|
|
references in the +previousblockhash+ field.
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
2023-06-29 01:19:52 +00:00
|
|
|
|
[[chain_of_blocks]]
|
|
|
|
|
[role="smallerfourtyfive"]
|
|
|
|
|
.Blocks linked in a chain by reference to the previous block header hash
|
|
|
|
|
image::images/mbc2_0901.png[]
|
|
|
|
|
|
2017-03-22 17:24:28 +00:00
|
|
|
|
[[merkle_trees]]
|
|
|
|
|
=== Merkle Trees
|
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
((("merkle trees", id="merkle09")))((("blockchain (the)", "merkle
|
|
|
|
|
trees", id="BCTmerkle09")))Each block in the Bitcoin blockchain contains
|
|
|
|
|
a summary of all the transactions in the block using a _merkle tree_.
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
((("binary hash trees", see="merkle trees")))A _merkle tree_, also known
|
|
|
|
|
as a _binary hash tree_, is a data structure used for efficiently
|
|
|
|
|
summarizing and verifying the integrity of large sets of data. Merkle
|
|
|
|
|
trees are binary trees containing cryptographic hashes. The term "tree"
|
|
|
|
|
is used in computer science to describe a branching data structure, but
|
|
|
|
|
these trees are usually displayed upside down with the "root" at the top
|
|
|
|
|
and the "leaves" at the bottom of a diagram, as you will see in the
|
|
|
|
|
examples that follow.
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
Merkle trees are used in bitcoin to summarize all the transactions in a
|
2023-05-19 21:59:14 +00:00
|
|
|
|
block, producing an overall commitment to the entire set of
|
|
|
|
|
transactions and permitting a very efficient process to verify whether a
|
2023-05-19 16:36:58 +00:00
|
|
|
|
transaction is included in a block. A merkle tree is constructed by
|
2023-05-19 21:59:14 +00:00
|
|
|
|
recursively hashing pairs of elements until there is only one hash, called
|
2023-05-19 16:36:58 +00:00
|
|
|
|
the _root_, or _merkle root_. The cryptographic hash algorithm used in
|
|
|
|
|
bitcoin's merkle trees is SHA256 applied twice, also known as
|
|
|
|
|
double-SHA256.
|
|
|
|
|
|
|
|
|
|
When N data elements are hashed and summarized in a merkle tree, you can
|
|
|
|
|
check to see if any one data element is included in the tree with at
|
|
|
|
|
most +2*log~2~(N)+ calculations, making this a very efficient data
|
|
|
|
|
structure.
|
|
|
|
|
|
|
|
|
|
The merkle tree is constructed bottom-up. In the following example, we
|
|
|
|
|
start with four transactions, A, B, C, and D, which form the _leaves_ of
|
|
|
|
|
the merkle tree, as shown in <<simple_merkle>>. The transactions are not
|
|
|
|
|
stored in the merkle tree; rather, their data is hashed and the
|
|
|
|
|
resulting hash is stored in each leaf node as H~A~, H~B~, H~C~, and
|
|
|
|
|
H~D~:
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
2017-05-10 19:06:23 +00:00
|
|
|
|
++++
|
|
|
|
|
<pre data-type="codelisting">
|
|
|
|
|
H<sub>A</sub> = SHA256(SHA256(Transaction A))
|
|
|
|
|
</pre>
|
|
|
|
|
++++
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
Consecutive pairs of leaf nodes are then summarized in a parent node, by
|
|
|
|
|
concatenating the two hashes and hashing them together. For example, to
|
|
|
|
|
construct the parent node H~AB~, the two 32-byte hashes of the children
|
|
|
|
|
are concatenated to create a 64-byte string. That string is then
|
|
|
|
|
double-hashed to produce the parent node's hash:
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
2017-05-10 19:06:23 +00:00
|
|
|
|
++++
|
|
|
|
|
<pre data-type="codelisting">
|
|
|
|
|
H<sub>AB</sub> = SHA256(SHA256(H<sub>A</sub> + H<sub>B</sub>))
|
|
|
|
|
</pre>
|
|
|
|
|
++++
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
The process continues until there is only one node at the top, the node
|
|
|
|
|
known as the merkle root. That 32-byte hash is stored in the block
|
|
|
|
|
header and summarizes all the data in all four transactions.
|
|
|
|
|
<<simple_merkle>> shows how the root is calculated by pair-wise hashes
|
|
|
|
|
of the nodes.
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
|
|
|
|
[[simple_merkle]]
|
|
|
|
|
.Calculating the nodes in a merkle tree
|
2017-04-04 16:25:23 +00:00
|
|
|
|
image::images/mbc2_0902.png["merkle_tree"]
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
((("balanced trees")))Because the merkle tree is a binary tree, it needs
|
|
|
|
|
an even number of leaf nodes. If there is an odd number of transactions
|
|
|
|
|
to summarize, the last transaction hash will be duplicated to create an
|
|
|
|
|
even number of leaf nodes, also known as a _balanced tree_. This is
|
|
|
|
|
shown in <<merkle_tree_odd>>, where transaction C is duplicated.
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
|
|
|
|
[[merkle_tree_odd]]
|
|
|
|
|
.Duplicating one data element achieves an even number of data elements
|
2017-04-04 16:25:23 +00:00
|
|
|
|
image::images/mbc2_0903.png["merkle_tree_odd"]
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
The same method for constructing a tree from four transactions can be
|
2023-05-19 21:59:14 +00:00
|
|
|
|
generalized to construct trees of any size. In Bitcoin it is common to
|
|
|
|
|
have several thousand transactions in a single
|
2023-05-19 16:36:58 +00:00
|
|
|
|
block, which are summarized in exactly the same way, producing just 32
|
|
|
|
|
bytes of data as the single merkle root. In <<merkle_tree_large>>, you
|
|
|
|
|
will see a tree built from 16 transactions. Note that although the root
|
|
|
|
|
looks bigger than the leaf nodes in the diagram, it is the exact same
|
2023-05-19 21:59:14 +00:00
|
|
|
|
size, just 32 bytes. Whether there is one transaction or ten
|
2023-05-19 16:36:58 +00:00
|
|
|
|
thousand transactions in the block, the merkle root always summarizes
|
|
|
|
|
them into 32 bytes.
|
|
|
|
|
|
|
|
|
|
((("authentication paths")))To prove that a specific transaction is
|
|
|
|
|
included in a block, a node only needs to produce +log~2~(N)+ 32-byte
|
|
|
|
|
hashes, constituting an _authentication path_ or _merkle path_
|
|
|
|
|
connecting the specific transaction to the root of the tree. This is
|
|
|
|
|
especially important as the number of transactions increases, because
|
|
|
|
|
the base-2 logarithm of the number of transactions increases much more
|
|
|
|
|
slowly. This allows Bitcoin nodes to efficiently produce paths of 10 or
|
|
|
|
|
12 hashes (320–384 bytes), which can provide proof of a single
|
2023-05-19 21:59:14 +00:00
|
|
|
|
transaction out of more than a thousand transactions in a multi-megabyte
|
2023-05-19 16:36:58 +00:00
|
|
|
|
block.
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
|
|
|
|
[[merkle_tree_large]]
|
|
|
|
|
.A merkle tree summarizing many data elements
|
2017-04-04 16:25:23 +00:00
|
|
|
|
image::images/mbc2_0904.png["merkle_tree_large"]
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
In <<merkle_tree_path>>, a node can prove that a transaction K is
|
|
|
|
|
included in the block by producing a merkle path that is only four
|
|
|
|
|
32-byte hashes long (128 bytes total). The path consists of the four
|
2023-06-29 01:19:52 +00:00
|
|
|
|
hashes (shown with a shaded background H~L~,
|
2023-05-19 16:36:58 +00:00
|
|
|
|
H~IJ~, H~MNOP~, and H~ABCDEFGH~. With those four hashes provided as an
|
|
|
|
|
authentication path, any node can prove that H~K~ (with a black
|
|
|
|
|
background at the bottom of the diagram) is included in the merkle root
|
|
|
|
|
by computing four additional pair-wise hashes H~KL~, H~IJKL~,
|
|
|
|
|
H~IJKLMNOP~, and the merkle tree root (outlined in a dashed line in the
|
|
|
|
|
diagram).
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
|
|
|
|
[[merkle_tree_path]]
|
|
|
|
|
.A merkle path used to prove inclusion of a data element
|
2017-04-04 16:25:23 +00:00
|
|
|
|
image::images/mbc2_0905.png["merkle_tree_path"]
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
The code in <<merkle_example>> demonstrates the process of creating a
|
|
|
|
|
merkle tree from the leaf-node hashes up to the root, using the
|
|
|
|
|
libbitcoin library for some helper functions.
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
|
|
|
|
[[merkle_example]]
|
2017-05-17 19:57:11 +00:00
|
|
|
|
[role="pagebreak-before"]
|
2017-03-22 17:24:28 +00:00
|
|
|
|
.Building a merkle tree
|
|
|
|
|
====
|
|
|
|
|
[source, cpp]
|
|
|
|
|
----
|
|
|
|
|
include::code/merkle.cpp[]
|
|
|
|
|
----
|
|
|
|
|
====
|
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
<<merkle_example_run>> shows the result of compiling and running the
|
|
|
|
|
merkle code.
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
|
|
|
|
[[merkle_example_run]]
|
|
|
|
|
.Compiling and running the merkle example code
|
|
|
|
|
====
|
|
|
|
|
[source,bash]
|
|
|
|
|
----
|
2023-02-01 16:31:10 +00:00
|
|
|
|
$ # Compile the merkle.cpp code
|
2017-03-22 17:24:28 +00:00
|
|
|
|
$ g++ -o merkle merkle.cpp $(pkg-config --cflags --libs libbitcoin)
|
2023-02-01 16:31:10 +00:00
|
|
|
|
$ # Run the merkle executable
|
2017-03-22 17:24:28 +00:00
|
|
|
|
$ ./merkle
|
|
|
|
|
Current merkle hash list:
|
|
|
|
|
32650049a0418e4380db0af81788635d8b65424d397170b8499cdc28c4d27006
|
|
|
|
|
30861db96905c8dc8b99398ca1cd5bd5b84ac3264a4e1b3e65afa1bcee7540c4
|
|
|
|
|
|
|
|
|
|
Current merkle hash list:
|
|
|
|
|
d47780c084bad3830bcdaf6eace035e4c6cbf646d103795d22104fb105014ba3
|
|
|
|
|
|
|
|
|
|
Result: d47780c084bad3830bcdaf6eace035e4c6cbf646d103795d22104fb105014ba3
|
|
|
|
|
|
|
|
|
|
----
|
|
|
|
|
====
|
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
The efficiency of merkle trees becomes obvious as the scale increases.
|
|
|
|
|
<<block_structure2>> shows the amount of data that needs to be exchanged
|
|
|
|
|
as a merkle path to prove that a transaction is part of a block.
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
|
|
|
|
[[block_structure2]]
|
|
|
|
|
.Merkle tree efficiency
|
|
|
|
|
[options="header"]
|
|
|
|
|
|=======
|
|
|
|
|
|Number of transactions| Approx. size of block | Path size (hashes) | Path size (bytes)
|
|
|
|
|
| 16 transactions | 4 kilobytes | 4 hashes | 128 bytes
|
|
|
|
|
| 512 transactions | 128 kilobytes | 9 hashes | 288 bytes
|
|
|
|
|
| 2048 transactions | 512 kilobytes | 11 hashes | 352 bytes
|
|
|
|
|
| 65,535 transactions | 16 megabytes | 16 hashes | 512 bytes
|
|
|
|
|
|=======
|
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
As you can see from the table, while the block size increases rapidly,
|
|
|
|
|
from 4 KB with 16 transactions to a block size of 16 MB to fit 65,535
|
|
|
|
|
transactions, the merkle path required to prove the inclusion of a
|
|
|
|
|
transaction increases much more slowly, from 128 bytes to only 512
|
|
|
|
|
bytes. With merkle trees, a node can download just the block headers (80
|
|
|
|
|
bytes per block) and still be able to identify a transaction's inclusion
|
|
|
|
|
in a block by retrieving a small merkle path from a full node, without
|
|
|
|
|
storing or transmitting the vast majority of the blockchain, which might
|
2023-05-19 18:40:37 +00:00
|
|
|
|
be several gigabytes in size. Clients that do not maintain a full
|
|
|
|
|
blockchain, called simplified payment verification (SPV) client, use
|
2023-05-19 16:36:58 +00:00
|
|
|
|
merkle paths to verify transactions without downloading full blocks.
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
|
|
|
|
=== Merkle Trees and Simplified Payment Verification (SPV)
|
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
((("simple-payment-verification (SPV)")))((("bitcoin nodes", "SPV
|
2023-05-19 18:40:37 +00:00
|
|
|
|
clients")))Merkle trees are used extensively by SPV clients. SPV clients don't
|
2023-05-19 16:36:58 +00:00
|
|
|
|
have all transactions and do not download full blocks, just block
|
|
|
|
|
headers. In order to verify that a transaction is included in a block,
|
|
|
|
|
without having to download all the transactions in the block, they use
|
|
|
|
|
an authentication path, or merkle path.
|
|
|
|
|
|
2023-05-19 18:40:37 +00:00
|
|
|
|
Consider, for example, an SPV client that is interested in incoming
|
|
|
|
|
payments to an address contained in its wallet. The SPV client will
|
2023-05-19 16:36:58 +00:00
|
|
|
|
establish a bloom filter (see <<bloom_filters>>) on its connections to
|
|
|
|
|
peers to limit the transactions received to only those containing
|
|
|
|
|
addresses of interest. When a peer sees a transaction that matches the
|
|
|
|
|
bloom filter, it will send that block using a +merkleblock+ message. The
|
|
|
|
|
+merkleblock+ message contains the block header as well as a merkle path
|
|
|
|
|
that links the transaction of interest to the merkle root in the block.
|
2023-05-19 18:40:37 +00:00
|
|
|
|
The SPV client can use this merkle path to connect the transaction to the
|
2023-05-19 16:36:58 +00:00
|
|
|
|
block and verify that the transaction is included in the block. The SPV
|
2023-05-19 18:40:37 +00:00
|
|
|
|
client also uses the block header to link the block to the rest of the
|
2023-05-19 16:36:58 +00:00
|
|
|
|
blockchain. The combination of these two links, between the transaction
|
|
|
|
|
and block, and between the block and blockchain, proves that the
|
2023-05-19 18:40:37 +00:00
|
|
|
|
transaction is recorded in the blockchain. All in all, the SPV client will
|
2023-05-19 16:36:58 +00:00
|
|
|
|
have received less than a kilobyte of data for the block header and
|
|
|
|
|
merkle path, an amount of data that is more than a thousand times less
|
2023-05-19 21:59:14 +00:00
|
|
|
|
than a full block (about 2 megabytes currently).((("",
|
2023-05-19 16:36:58 +00:00
|
|
|
|
startref="BCTmerkle09")))((("", startref="merkle09")))
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
|
|
|
|
=== Bitcoin's Test Blockchains
|
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
((("blockchain (the)", "test blockchains",
|
|
|
|
|
id="BCTtest09")))((("mainnet", seealso="blockchain (the)")))You might be
|
2023-05-19 21:59:14 +00:00
|
|
|
|
surprised to learn that there is more than one blockchain used with Bitcoin. The
|
2023-05-19 16:36:58 +00:00
|
|
|
|
"main" Bitcoin blockchain, the one created by Satoshi Nakamoto on
|
|
|
|
|
January 3rd, 2009, the one with the genesis block we studied in this
|
|
|
|
|
chapter, is called _mainnet_. There are other Bitcoin blockchains that
|
2023-05-19 21:59:14 +00:00
|
|
|
|
are used for testing purposes: at this time _testnet_, _signet_, and
|
2023-05-19 16:36:58 +00:00
|
|
|
|
_regtest_. Let's look at each in turn.((("testnet", id="testnet09")))
|
2017-04-26 17:08:26 +00:00
|
|
|
|
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
2023-05-19 21:59:14 +00:00
|
|
|
|
==== Testnet: Bitcoin's Testing Playground
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
Testnet is the name of the test blockchain, network, and currency that
|
|
|
|
|
is used for testing purposes. The testnet is a fully featured live P2P
|
|
|
|
|
network, with wallets, test bitcoins (testnet coins), mining, and all
|
|
|
|
|
the other features of mainnet. There are really only two differences:
|
|
|
|
|
testnet coins are meant to be worthless and mining difficulty should be
|
|
|
|
|
low enough that anyone can mine testnet coins relatively easily (keeping
|
|
|
|
|
them worthless).
|
|
|
|
|
|
|
|
|
|
Any software development that is intended for production use on
|
2023-05-19 21:59:14 +00:00
|
|
|
|
Bitcoin's mainnet can first be tested on testnet with test coins.
|
2023-05-19 16:36:58 +00:00
|
|
|
|
This protects both the developers from monetary losses due to bugs and
|
|
|
|
|
the network from unintended behavior due to bugs.
|
|
|
|
|
|
|
|
|
|
Keeping the coins worthless and the mining easy, however, is not easy.
|
|
|
|
|
Despite pleas from developers, some people use advanced mining equipment
|
|
|
|
|
(GPUs and ASICs) to mine on testnet. This increases the difficulty,
|
|
|
|
|
makes it impossible to mine with a CPU, and eventually makes it
|
|
|
|
|
difficult enough to get test coins that people start valuing them, so
|
|
|
|
|
they're not worthless. As a result, every now and then, the testnet has
|
|
|
|
|
to be scrapped and restarted from a new genesis block, resetting the
|
|
|
|
|
difficulty.
|
|
|
|
|
|
|
|
|
|
The current testnet is called _testnet3_, the third iteration of
|
|
|
|
|
testnet, restarted in February 2011 to reset the difficulty from the
|
|
|
|
|
previous testnet.
|
|
|
|
|
|
2023-05-19 21:59:14 +00:00
|
|
|
|
Keep in mind that testnet3 is a large blockchain, in excess of 30 GB in
|
|
|
|
|
2023. It will take a while to sync fully and use up resources
|
2023-05-19 16:36:58 +00:00
|
|
|
|
on your computer. Not as much as mainnet, but not exactly "lightweight"
|
2023-05-19 21:59:14 +00:00
|
|
|
|
either.
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
|
|
|
|
===== Using testnet
|
|
|
|
|
|
2023-05-19 21:59:14 +00:00
|
|
|
|
Bitcoin Core, like many other Bitcoin programs, has full support
|
|
|
|
|
for operation on testnet as an alternative mainnet. All of Bitcoin Core's
|
2023-05-19 16:36:58 +00:00
|
|
|
|
functions work on testnet, including the wallet, mining testnet coins,
|
|
|
|
|
and syncing a full testnet node.
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
To start Bitcoin Core on testnet instead of mainnet you use the
|
|
|
|
|
+testnet+ switch:
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
|
|
|
|
----
|
|
|
|
|
$ bitcoind -testnet
|
|
|
|
|
----
|
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
In the logs you should see that bitcoind is building a new blockchain in
|
|
|
|
|
the +testnet3+ subdirectory of the default bitcoind directory:
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
|
|
|
|
----
|
|
|
|
|
bitcoind: Using data directory /home/username/.bitcoin/testnet3
|
|
|
|
|
----
|
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
To connect to bitcoind, you use the +bitcoin-cli+ command-line tool, but
|
|
|
|
|
you must also switch it to testnet mode:
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
|
|
|
|
----
|
|
|
|
|
$ bitcoin-cli -testnet getblockchaininfo
|
|
|
|
|
{
|
|
|
|
|
"chain": "test",
|
|
|
|
|
"blocks": 1088,
|
|
|
|
|
"headers": 139999,
|
|
|
|
|
"bestblockhash": "0000000063d29909d475a1c4ba26da64b368e56cce5d925097bf3a2084370128",
|
|
|
|
|
"difficulty": 1,
|
|
|
|
|
"mediantime": 1337966158,
|
|
|
|
|
"verificationprogress": 0.001644065914099759,
|
|
|
|
|
"chainwork": "0000000000000000000000000000000000000000000000000000044104410441",
|
|
|
|
|
"pruned": false,
|
|
|
|
|
"softforks": [
|
|
|
|
|
|
|
|
|
|
[...]
|
|
|
|
|
----
|
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
You can also run on testnet3 with other full-node implementations, such
|
|
|
|
|
as +btcd+ (written in Go) and +bcoin+ (written in JavaScript), to
|
|
|
|
|
experiment and learn in other programming languages and frameworks.
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
2023-05-19 21:59:14 +00:00
|
|
|
|
Testnet3 supports all the features of mainnet, including
|
|
|
|
|
Segregated Witness v0 and v1 (see <<segwit>> and <<taproot>>). Therefore, testnet3 can also be
|
2023-05-19 16:36:58 +00:00
|
|
|
|
used to test Segregated Witness features.((("", startref="testnet09")))
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
2023-05-19 21:56:56 +00:00
|
|
|
|
===== Problems With Testnet
|
|
|
|
|
|
|
|
|
|
Testnet doesn't just use the same data structures as Bitcoin, it also
|
|
|
|
|
uses almost exactly the same Proof-of-Work (PoW) security mechanism as
|
|
|
|
|
Bitcoin. The notable differences for testnet are that it's minimum
|
|
|
|
|
difficulty is half that of Bitcoin and that it's allowed to include a
|
|
|
|
|
block at the minimum difficulty if that block's timestamp is more than
|
|
|
|
|
20 minutes after the previous block.
|
|
|
|
|
|
|
|
|
|
Unfortunately, Bitcoin's PoW security mechanism was designed to depend
|
|
|
|
|
on economic incentives--incentives which don't exist in a test
|
|
|
|
|
blockchain that is forbidden from having value. On mainnet, miners are
|
|
|
|
|
incentivized to include user transactions in their blocks because those
|
|
|
|
|
transactions pay fees. On testnet, transactions still contain something
|
|
|
|
|
called fees, but those fees don't have any economic value. That means
|
|
|
|
|
the only incentive for a testnet miner to include transactions is
|
|
|
|
|
because they want to help users and developers to test their software.
|
|
|
|
|
|
|
|
|
|
Alas, people who like to disrupt systems often feel a stronger
|
|
|
|
|
incentive, at least in the short term. Because PoW mining is designed
|
|
|
|
|
to be permissionless, anyone can mine, whether their intention is good
|
|
|
|
|
or not. That means disruptive miners can create many blocks in a row on
|
|
|
|
|
testnet without including any user transactions. When those attacks
|
|
|
|
|
happen, testnet becomes unusable for users and developers.
|
|
|
|
|
|
|
|
|
|
==== Signet: The Proof of Authority Testnet
|
|
|
|
|
|
|
|
|
|
There's no known way for a system dependent on permissionless PoW to
|
|
|
|
|
provide a highly usable blockchain without introducing economic
|
|
|
|
|
incentives, so Bitcoin protocol developers began considering
|
|
|
|
|
alternatives. The primary goal was to preserve as much of the structure of
|
|
|
|
|
Bitcoin as possible so that software could run on a testnet with minimal
|
2023-05-19 21:59:14 +00:00
|
|
|
|
changes--but to also provide an environment that would remain useful.
|
2023-05-19 21:56:56 +00:00
|
|
|
|
A secondary goal was to produce a reusable design that would allow
|
|
|
|
|
developers of new software to easily create their own test networks.
|
|
|
|
|
|
|
|
|
|
The solution implemented in Bitcoin Core and other software is called
|
|
|
|
|
_signet_, as defined by BIP325. A signet is a test network where each
|
|
|
|
|
block must contain proof (such as a signature) that the creation of that
|
|
|
|
|
block was sanctioned by a trusted authority.
|
|
|
|
|
|
|
|
|
|
Whereas mining in Bitcoin is permissionless--anyone can do it--mining on
|
|
|
|
|
signet is fully permissioned. Only those with permission can do it.
|
|
|
|
|
This would be a completely unacceptable change to Bitcoin's mainnet--no
|
2023-05-19 21:59:14 +00:00
|
|
|
|
one would use that software--but it's reasonable on a testnet where coins have
|
2023-05-19 21:56:56 +00:00
|
|
|
|
no value and the only purpose is testing software and systems.
|
|
|
|
|
|
|
|
|
|
BIP325 signets are designed to make it very easy to create your own. If
|
|
|
|
|
you disagree with how someone else is running their signet, you can
|
|
|
|
|
start your own signet and connect your software to it.
|
|
|
|
|
|
|
|
|
|
===== The Default Signet and Custom Signets
|
|
|
|
|
|
|
|
|
|
Bitcoin Core supports a default signet, which we believe to be the most
|
|
|
|
|
widely used signet at the time of writing. It is currently operated by
|
|
|
|
|
two contributors to that project. If you start Bitcoin Core with the
|
|
|
|
|
+-signet+ parameter and no other signet-related parameters, this is the
|
|
|
|
|
signet you will be using.
|
|
|
|
|
|
|
|
|
|
As of this writing, the default signet has about 150,000 blocks and is
|
|
|
|
|
about a gigabyte in size. It supports all of the same features as
|
|
|
|
|
Bitcoin's mainnet and is also used for testing proposed upgrades through
|
|
|
|
|
the Bitcoin Inquisition project, which is a software fork of Bitcoin
|
|
|
|
|
Core that's only designed to run on signet.
|
|
|
|
|
|
|
|
|
|
If you want to use a different signet, called a _custom signet_, you
|
|
|
|
|
will need to know the script used to determine when a block is
|
|
|
|
|
authorized, called the _challenge_ script. This is a standard Bitcoin
|
|
|
|
|
script, so it can use features such as multisig to allow multiple people
|
|
|
|
|
to authorize blocks. You may also need to connect to a seed node that
|
|
|
|
|
will provide you with the addresses of peers on the custom signet. For
|
|
|
|
|
example:
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
2023-05-19 21:56:56 +00:00
|
|
|
|
----
|
|
|
|
|
bitcoind -signet -signetchallenge=0123...cdef -signetseednode=example.com:1234
|
|
|
|
|
----
|
2017-04-26 17:08:26 +00:00
|
|
|
|
|
2023-05-19 21:56:56 +00:00
|
|
|
|
As of this writing, we generally recommend that the public testing of
|
|
|
|
|
mining software occur on testnet3 and that all other public testing of
|
|
|
|
|
Bitcoin software occur on the default signet.
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
2023-05-19 21:56:56 +00:00
|
|
|
|
To interact with your chosen signet, you can use the +-signet+ parameter
|
|
|
|
|
with +bitcoin-cli+, similar to how you used testnet. For example:
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
2023-05-19 21:56:56 +00:00
|
|
|
|
----
|
|
|
|
|
$ bitcoin-cli -signet getblockchaininfo
|
|
|
|
|
{
|
|
|
|
|
"chain": "signet",
|
|
|
|
|
"blocks": 143619,
|
|
|
|
|
"headers": 143619,
|
|
|
|
|
"bestblockhash": "000000c46cb3505ddd29653720686b6a3565ad1c5768e2908439382447572a93",
|
|
|
|
|
"difficulty": 0.003020638517858618,
|
|
|
|
|
"time": 1684530244,
|
|
|
|
|
"mediantime": 1684526116,
|
|
|
|
|
"verificationprogress": 0.999997961940662,
|
|
|
|
|
"initialblockdownload": false,
|
|
|
|
|
"chainwork": "0000000000000000000000000000000000000000000000000000019ab37d2194",
|
|
|
|
|
"size_on_disk": 769525915,
|
|
|
|
|
"pruned": false,
|
|
|
|
|
"warnings": ""
|
|
|
|
|
}
|
|
|
|
|
----
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
2017-05-10 19:06:23 +00:00
|
|
|
|
==== Regtest—The Local Blockchain
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
((("regtest (Regression Testing)")))Regtest, which stands for
|
|
|
|
|
"Regression Testing," is a Bitcoin Core feature that allows you to
|
2023-05-19 21:59:14 +00:00
|
|
|
|
create a local blockchain for testing purposes. Unlike signet and testnet3, which
|
|
|
|
|
are a public and shared test blockchain, the regtest blockchains are
|
2023-05-19 16:36:58 +00:00
|
|
|
|
intended to be run as closed systems for local testing. You launch a
|
2023-05-19 21:59:14 +00:00
|
|
|
|
regtest blockchain from scratch. You may
|
2023-05-19 16:36:58 +00:00
|
|
|
|
add other nodes to the network, or run it with a single node only to
|
|
|
|
|
test the Bitcoin Core software.
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
|
|
|
|
To start Bitcoin Core in regtest mode, you use the +regtest+ flag:
|
|
|
|
|
|
|
|
|
|
----
|
|
|
|
|
$ bitcoind -regtest
|
|
|
|
|
----
|
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
Just like with testnet, Bitcoin Core will initialize a new blockchain
|
|
|
|
|
under the _regtest_ subdirectory of your bitcoind default directory:
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
|
|
|
|
----
|
|
|
|
|
bitcoind: Using data directory /home/username/.bitcoin/regtest
|
|
|
|
|
----
|
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
To use the command-line tool, you need to specify the +regtest+ flag
|
|
|
|
|
too. Let's try the +getblockchaininfo+ command to inspect the regtest
|
|
|
|
|
blockchain:
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
|
|
|
|
----
|
|
|
|
|
$ bitcoin-cli -regtest getblockchaininfo
|
|
|
|
|
{
|
|
|
|
|
"chain": "regtest",
|
|
|
|
|
"blocks": 0,
|
|
|
|
|
"headers": 0,
|
|
|
|
|
"bestblockhash": "0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206",
|
|
|
|
|
"difficulty": 4.656542373906925e-10,
|
|
|
|
|
"mediantime": 1296688602,
|
|
|
|
|
"verificationprogress": 1,
|
|
|
|
|
"chainwork": "0000000000000000000000000000000000000000000000000000000000000002",
|
|
|
|
|
"pruned": false,
|
|
|
|
|
[...]
|
|
|
|
|
----
|
|
|
|
|
|
2023-05-19 21:58:17 +00:00
|
|
|
|
As you can see, there are no blocks yet. Let's create a default wallet,
|
|
|
|
|
get an address, and then mine some (500 blocks) to earn the reward:
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
|
|
|
|
----
|
2023-05-19 21:58:17 +00:00
|
|
|
|
$ bitcoin-cli -regtest createwallet ""
|
|
|
|
|
|
|
|
|
|
$ bitcoin-cli -regtest getnewaddress
|
|
|
|
|
bcrt1qwvfhw8pf79kw6tvpmtxyxwcfnd2t4e8v6qfv4a
|
|
|
|
|
|
|
|
|
|
$ bitcoin-cli -regtest generatetoaddress 500 bcrt1qwvfhw8pf79kw6tvpmtxyxwcfnd2t4e8v6qfv4a
|
2017-03-22 17:24:28 +00:00
|
|
|
|
[
|
2023-05-19 21:58:17 +00:00
|
|
|
|
"3153518205e4630d2800a4cb65b9d2691ac68eea99afa7fd36289cb266b9c2c0",
|
|
|
|
|
"621330dd5bdabcc03582b0e49993702a8d4c41df60f729cc81d94b6e3a5b1556",
|
|
|
|
|
"32d3d83538ba128be3ba7f9dbb8d1ef03e1b536f65e8701893f70dcc1fe2dbf2",
|
|
|
|
|
...,
|
|
|
|
|
"32d55180d010ffebabf1c3231e1666e9eeed02c905195f2568c987c2751623c7"
|
2017-03-22 17:24:28 +00:00
|
|
|
|
]
|
|
|
|
|
----
|
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
It will only take a few seconds to mine all these blocks, which
|
|
|
|
|
certainly makes it easy for testing. If you check your wallet balance,
|
|
|
|
|
you will see that you earned reward for the first 400 blocks (coinbase
|
|
|
|
|
rewards must be 100 blocks deep before you can spend them):
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
|
|
|
|
----
|
|
|
|
|
$ bitcoin-cli -regtest getbalance
|
|
|
|
|
12462.50000000
|
|
|
|
|
----
|
|
|
|
|
|
2017-04-19 21:09:18 +00:00
|
|
|
|
=== Using Test Blockchains for Development
|
2017-03-22 17:24:28 +00:00
|
|
|
|
|
2023-05-19 16:36:58 +00:00
|
|
|
|
((("development environment", "test blockchains and")))Bitcoin's various
|
2023-05-19 21:59:14 +00:00
|
|
|
|
blockchains (+regtest+, +signet+, +testnet3+, +mainnet+) offer a range
|
2023-05-19 16:36:58 +00:00
|
|
|
|
of testing environments for bitcoin development. Use the test
|
|
|
|
|
blockchains whether you are developing for Bitcoin Core, or another
|
|
|
|
|
full-node consensus client; an application such as a wallet, exchange,
|
|
|
|
|
ecommerce site; or even developing novel smart contracts and complex
|
|
|
|
|
scripts.
|
|
|
|
|
|
|
|
|
|
You can use the test blockchains to establish a development pipeline.
|
|
|
|
|
Test your code locally on a +regtest+ as you develop it. Once you are
|
2023-05-19 21:59:14 +00:00
|
|
|
|
ready to try it on a public network, switch to +signet+ or +testnet+ to expose your
|
2023-05-19 16:36:58 +00:00
|
|
|
|
code to a more dynamic environment with more diversity of code and
|
|
|
|
|
applications. Finally, once you are confident your code works as
|
|
|
|
|
expected, switch to +mainnet+ to deploy it in production. As you make
|
|
|
|
|
changes, improvements, bug fixes, etc., start the pipeline again,
|
2023-05-19 21:59:14 +00:00
|
|
|
|
deploying each change first on +regtest+, then on +signet+ or +testnet+, and finally
|
2023-05-19 16:36:58 +00:00
|
|
|
|
into production.((("", startref="BCTtest09")))
|
2023-06-29 01:19:52 +00:00
|
|
|
|
|
|
|
|
|
Now that we know what data the blockchain contains and how cryptographic
|
|
|
|
|
commitments securely tie the various parts together, we will look at the
|
|
|
|
|
specical commitment that both provides computational security and
|
|
|
|
|
ensures no block can be changed without invalidating all other blocks
|
|
|
|
|
built on top of it: Bitcoin's mining function.
|