diff --git a/03_2_Knowing_Your_Bitcoin_Setup.md b/03_2_Knowing_Your_Bitcoin_Setup.md index 140a764..7680aae 100644 --- a/03_2_Knowing_Your_Bitcoin_Setup.md +++ b/03_2_Knowing_Your_Bitcoin_Setup.md @@ -355,4 +355,4 @@ The `~/.bitcoin` directory contains all of your files, while `bitcoin-cli help` ## What's Next? -Continue "Understanding Your Bitcoin Setup" with [ยง3.3: Setting Up Your Wallet](03_3_Setting_Up_Your_Wallet.md). +Continue "Preparing Your Bitcoin Wallet" with [ยง3.3: Setting Up Your Wallet](03_3_Setting_Up_Your_Wallet.md). diff --git a/03_4_Understanding_the_Descriptor_Wallet.md b/03_4_Understanding_the_Descriptor_Wallet.md index 149ccf5..7994209 100644 --- a/03_4_Understanding_the_Descriptor_Wallet.md +++ b/03_4_Understanding_the_Descriptor_Wallet.md @@ -1,38 +1,125 @@ -# 3.4: Understanding the Descriptor +# 3.4: Understanding the Descriptor Wallet You've got your wallet set up, but before we go further we're going to take a moment to really understand it. ## Understand HD Wallets -Private keys are what make the Bitcoin world go round. They're used to generate public keys, which are the foundation of addresses, and they're also used to control those addresses. One private key creates one public key which creates one address. Once upon a time, the Bitcoin Core wallet managed this by holding on to a "bag of keys". A new, unrelated private key would be created every time a new address was desired. But a bags of keys are big, inefficient, and prone to loss. That's where the HD wallet came in. +Private keys are what make the Bitcoin world go round. They're used to +generate public keys, which are the foundation of addresses, and +they're also used to control those addresses. One private key creates +one public key which creates one address. Once upon a time, the +Bitcoin Core wallet managed this by holding on to a "bag of keys". A +new, unrelated private key would be created every time a new address +was desired. But bags of keys are big, inefficient, and prone to +loss. That's where the HD wallet came in. -The HD wallet, which is short for the Hierarchical Deterministic Wallet, was defined in [BIP-32](https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki). It's a hierarchical design where a single "seed" generates an extended private key, which includes not just the private key but also a "chain code" that can be used to create descendents of that key. The key and chain code can be used to deterministically generate chains of keys (and therefore addresses) for a variety of purposes. A Bitcoin HD wallet will typically have individual chains of keys (and addresses) for a variety of different address types. But, they can all be restored from that seed (or from that master extended private key) because of their determinism: the addresses are always created in the same way provided that you have the same starting points (your master extended private key and a specific index [0,1,...,n] for a specific type of address). +The HD wallet, which is short for the Hierarchical Deterministic +Wallet, was defined in +[BIP-32](https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki). It's +a hierarchical design where a single "seed" generates an extended +private key, which includes not just the private key but also a "chain +code" that can be used to create descendents of that key. The key and +chain code can be used to deterministically generate chains of keys +(and therefore addresses) for a variety of purposes. A Bitcoin HD +wallet will typically have individual chains of keys (and addresses) +for a variety of different address types. But, they can all be +restored from that seed (or from that master extended private key) +because of their determinism: the addresses are always created in the +same way provided that you have the same starting points (which +include your master extended private key and a specific index +[0,1,...,n] for a specific type of address). > ๐Ÿ“– ***What is a BIP?*** A BIP is a Bitcoin Improvement Proposal. It's an in-depth suggestion for a change to the Bitcoin Core code. Often, when a BIP has been sufficiently discussed and updated, it will become an actual part of the Bitcoin Core code. BIP-32 is one of many examples. ## Understand Descriptor Wallets -Most of this course presumes that you're working entirely from a single node where you manage your own wallet, sending and receiving payments with the addresses created by that wallet. However, that's not necessarily how the larger Bitcoin ecosystem works. There, you're more likely to be moving addresses between wallets (often on different devices) and even setting up wallets to watch over funds controlled by different wallets. +Most of this course presumes that you're working entirely from a +single node where you manage your own wallet, sending and receiving +payments with the addresses created by that wallet. However, that's +not necessarily how the larger Bitcoin ecosystem works. There, you're +more likely to be moving addresses between wallets (often on different +devices) and even setting up wallets to watch over funds controlled by +different wallets. -HD wallets offered a big step forward for managing this sort of interoperability, because they allowed you to load a single seed (or master extended private key) into a new wallet rather than having to move over a whole bag of keys. A few formats have been introduced to make it easy to move HD wallets, starting with seed phrases and the `xpub` and `xprv` formats. But they quickly proved inadequate. Seed phrases only defined the seed, not what it was used for. The `xprv` (and `xpub`) improved on that by defining the root of an HD tree, but they were very specific to a certain type of address. When a new address type was created, a new format was needed, resulting in the `yprv` and `ypub` formats. Then a third address type resulted in the creation of `zprv` and `zpub`. The system was quickly growing unmanageable. A new format was needed that described not just the extended keys, but also which address types they would be used to create. Because if you didn't have that, a new wallet would have to test a master extended public key against _every possible type of address_ and that was going to be very inefficient and time-consuming and still introduced the likelihood of losing funds. +HD wallets offered a big step forward for managing this sort of +interoperability, because they allowed you to load a single seed (or +master extended private key) into a new wallet rather than having to +move over a whole bag of keys. A few formats were quickly introduced +to make it easy to move HD wallets, starting with seed phrases and the +`xpub` and `xprv` formats. But they quickly proved inadequate. Seed +phrases only defined the seed, not what it was used for. The `xprv` +(and `xpub`) improved on that by defining the root of an HD tree, but +they were very specific to a certain type of address. When a new +address type was created, a new format was needed, resulting in the +`yprv` and `ypub` formats. Then a third address type resulted in the +creation of `zprv` and `zpub`. The system was quickly growing +unmanageable. -> ๐Ÿ“– **What is a seed phase?** A collection of mnemonic words can define a seed. That seed is then used to generate an extended private key. Seed phrases are not currently used by Bitcoin Core, but they are in wide use in the larger Bitcoin ecosystem. Future chapters will talk about how to use third-party tools to transform seed phrases into keys that can be imported into `bitcoin-cli`. +A new format was needed that described not just the extended keys, but +also which address types they would be used to create. Because if you +didn't have that, a new wallet would have to test a master extended +public key against _every possible type of address_ and that was going +to be very inefficient and time-consuming and still introduced the +likelihood of losing funds. + +> ๐Ÿ“– **What is a seed phase?** A collection of mnemonic words can +define a seed. That seed is then used to generate an extended private +key. Seed phrases are not currently used by Bitcoin Core, but they are +in wide use in the larger Bitcoin ecosystem. Future chapters will talk +about how to use third-party tools to transform seed phrases into keys +that can be imported into `bitcoin-cli`. -> ๐Ÿ“– ***What is xprv?*** Xprv stands for extended private key. This is the combination of a private key and a chain code. It's a private key that a whole sequence of children private keys can be derived from. +> ๐Ÿ“– ***What is xprv?*** Xprv stands for extended private key. This is +the combination of a private key and a chain code. It's a private key +that a whole sequence of children private keys can be derived from. > ๐Ÿ“– ***What is xpub?*** Xpub stands for extended public key. This is the combination of a public key and a chain code. It's a public key that a whole sequence of children public keys can be derived from. -Enter, at last, the descriptor wallet. A descriptor wallet collects together "output descriptors" (sometimes called "wallet descriptors") which each either define one address or for a special "ranged descriptor" a whole array of addresses, each at a separate index. They do so through the specification of a format that includes: a function (which defines how to unlock the Bitcoin at the address), a derivation path (which defines the purpose of an address, which mostly links it to a specific standard), either the master extended public key or the master extended private key, and a checksum to make sure that nothing has been corrupted. +Enter, at last, the descriptor wallet. A descriptor wallet collects +together "output descriptors" (sometimes called "wallet descriptors"), +which each either define one address or, with a special "ranged +descriptor", a whole array of addresses, each at a separate +index. They do so through the specification of a format that includes: +one or more nested functions (which define how to unlock the Bitcoin +at the address), a derivation path (which defines the purpose of an +address, which mostly links it to a specific standard), either the +master extended public key or the master extended private key, and a +checksum to make sure that nothing has been corrupted. -> ๐Ÿ“– ***What is a Derivation Path?*** When you have hierarchical keys, you need to be able to define individual keys as descendents of the master key. For example `[0]` is the 0th key of the master key, `[0/1]` is the first son of the 0th key, `[0/1/1]` is the first grandson of the first son of the 0th key. Some keys also contain a `'` or `h` after the number, to show they're hardened, which protects them from a specific attack that could otherwise be used to derive a private key from a public key. You don't need to worry about the specifics, other than the fact that a derivation path like `[0/1/1/0/0]` describes a path down through a hierarchical tree and that descriptor wallets run specific calculations to deterministically determine the right address for a specific position in a tree. A derivation path defines a key, which means that a key represents a derivation path. They're equivalent. +> ๐Ÿ“– ***What is a Derivation Path?*** When you have hierarchical keys, +you need to be able to define individual keys as descendents of the +master key. For example `[0]` is the 0th key of the master key, +`[0/1]` is the first son of the 0th key, `[0/1/1]` is the first son of +the first son of the 0th key. Some keys also contain a `'` or `h` +after the number, to show they're hardened, which protects them from a +specific attack that could otherwise be used to derive a private key +from a public key. You don't need to worry about the specifics, other +than the fact that a derivation path like `[0/1/1/0/0]` describes a +path down through a hierarchical tree and that descriptor wallets run +specific calculations to deterministically determine the right address +for a specific position in a tree. A derivation path defines a key, +which means that a key represents a derivation path. They're +equivalent. -The derivation path allows you to calculate the right key from the master extended key, but it's the introduction of functions into descriptors that makes them particularly powerful, because they allows descriptors to serve a number of different types of past, present, and future addresses (which we'll meet in [ยง3.5](03_5_Understanding_the_Address.md)). +The derivation path allows you to calculate the right key from the +master extended key, but it's the introduction of functions into +descriptors that makes them particularly powerful, because they allows +descriptors to serve a number of different types of past, present, and +future addresses (which we'll meet in +[ยง4.1](04_1_Understanding_the_Address.md)). -> :warning: **VERSION WARNING:** Modern Bitcoin wallets use descriptor wallets stored in SQLite. Older, "classic" wallets were instead bags of keys, stored in BDB (Berkeley Database) format. The classic files can currently still be opened by `bitcoin-cli` but you wouldn't want to create something new in that format. +> โš ๏ธ **VERSION WARNING:** Modern Bitcoin wallets use descriptor wallets +stored in SQLite. Older, "classic" wallets were instead bags of keys, +stored in BDB (Berkeley Database) format. The classic files can +currently still be opened by `bitcoin-cli` but you wouldn't want to +create something new in that format. -## Examine Your Wallet's Descriptors +## Examine Descriptors with `listdescriptors` + +Your Bitcoin Core wallet is a descriptor wallet because it creates its +Bitcoin addresses from "ranged descriptors". You can look at them +with `bitcoin-cli listdescriptors`: -You can look at all of the descriptors contained in your wallet with `bitcoin-cli listdescriptors`: ``` $ bitcoin-cli listdescriptors { @@ -137,9 +224,24 @@ $ bitcoin-cli listdescriptors ] } ``` -Wow, that's a lot! But it's really just a listing of eight descriptors (`desc`) with a bunch of additional information on each. As it happens, that's descriptors for four different types of addresses (which we'll meet in the next section), with both an external address (for receiving funds from other wallets) and an internal address (for sending change back to this wallet, which we'll talk about in chapter 4). + +Wow, that's a lot! But it's really just a listing of eight descriptors +(`desc`) with a bunch of additional information on each. And those +eight descriptors actually represent a large number of addresses that +can deterministically be created on the fly. + +* There are four types of addresses, which we'll meet in the next chapter (`pkh`, `sh`, `tr`, and `wpkh`). +* Each type of address supports external addresses (for receiving funds from other wallets) and internal addresses (for sending change back to this wallet), as defined by `internal`. +* Each type of address has its own key (e.g., `tpubDCsocyjrtJLXKJ3atFwKf6FiPheuVNV27B1swsGiNvk4cuPhVTsCDvusSNcH8thnS68FPFotgHqo9FHNGrvhtx6ZqdbWBQTWrCgK9xous17`). +* Each type of address supports a range of addresses, initially running 0 to 999. + +In other words, even though you have 8 descriptors, that's replacing +thousands of addresses. Thatt's a huge boon for backups (when you +want to protect your funds) and for moving control of your funds from +one wallet-app to another. With that understood, we can look more closely at one of the descriptors: + ``` { "desc": "wpkh([e18dae20/84h/1h/0h]tpubDC4ujMbsd9REzpGk3gnTjkrfJFw1NnvCpx6QBbLj3CHBzcLmVzssTVP8meRAM1WW4pZnK6SCCPGyzi9eMfzSXoeFMNprqtgxG71VRXTmetu/0/*)#3658f8sn", @@ -160,64 +262,22 @@ This contains: * **`active`:** Is the descriptor still in use for creating new addresses? (It could have been superseded by a new master extended key, for example when encrypting the wallet.) * **`internal`:** Is this a descriptor for internal addresses (for change)? * **`range`:** For ranged descriptors, what's the range? -* **`next`, `next_index`:** What is the next address to create for this descriptor? In this example, the next one is `3` because we already created three addresses from this descriptor (`0`, `1`, and `2`) in [ยง3.3](3_3_Setting_Up_Your_Wallet.md). +* **`next`, `next_index`:** What is the next address to create for this descriptor? In this example, the next one is `3` because three addresses have been created, as we'll see in the next chapter. As for the descriptor itself, let's break that down further: -* **Function: `wpkh`.** The function that is used to create an address from that key. In this cases it's `wpkh`. That stands for "Witness Public Key Hash," which is one of the methods used to unlock a Bech32 address. +* **Function: `wpkh`.** The function that is used to create an address from that key. In this cases it's `wpkh`. That stands for "Witness Public Key Hash," which is one of the methods used to unlock a Bech32 address, which we'll meet in the next chapter. * **Fingerprint: `e18dae20`.** This is a fingerprint of the master extended public key. It tells you which secret was used to generate this address. The fingerprint is *not* necessary to generate the keys and addresses for a derivation, it's just helpful if you need to go back and find the secret that generated your extended keys. -* **Derivation Path: `/84h/1h/0h`.** This describes what part of an HD wallet is being exported. This is the 0th child key of the 1st child of the 84th child in the HD tree. The various levels in the derivation path have very specific meanings as defined in [BIP-44](https://en.bitcoin.it/wiki/BIP_0044): `/purpose/ coin_type/ account/`. The purpose of this derivation path is "84", which means that it follows [BIP-84](https://github.com/bitcoin/bips/blob/master/bip-0084.mediawiki), which describes WPKH derivation. The coin type is "1", which means that it's a testnet or signet coin. (A mainnet coin could would be "0".) The account is "0", as it's the only account in our wallet. +* **Derivation Path: `/84h/1h/0h`.** This describes what part of an HD wallet is being exported. This is the 0th child key of the 1st child of the 84th child in the HD tree. The various levels in the derivation path have very specific meanings as defined in [BIP-44](https://en.bitcoin.it/wiki/BIP_0044): `/purpose/coin_type/account/`. The purpose of this derivation path is "84", which means that it follows [BIP-84](https://github.com/bitcoin/bips/blob/master/bip-0084.mediawiki), which describes WPKH derivation. The coin type is "1", which means that it's a testnet or signet coin. (A mainnet coin could would be "0".) The account is "0", as it's the only account in our wallet. * **Key: `tpubDC4ujMbsd9REzpGk3gnTjkrfJFw1NnvCpx6QBbLj3CHBzcLmVzssTVP8meRAM1WW4pZnK6SCCPGyzi9eMfzSXoeFMNprqtgxG71VRXTmetu`.** This is the signet or testnet extended master public key that was used to generate this derived key. (A private key could be here instead. A public key would demonstrate how to watch this series of addresses, while a private key would show to control them.) -* **Range: `/0/*`.** These are actually the final two parts of the derivation path, which are defined by BIP-44 as `change / address_index`. The "0" says it's an external address. (An internal or change address would be "1".) The `*` says it's a ranged address, which means that it's defining a whole set of WPKH addresses that could be created. +* **Range: `/0/*`.** These are actually the final two parts of the derivation path, which are defined by BIP-44 as `change/address_index`. The "0" says it's an external address. (An internal or change address would be "1".) The `*` says it's a ranged address, which means that it's defining a whole set of WPKH addresses that could be created. * **`#3658f8sn"`.** This is a checksum showing the descriptor isn't corrupted. -So that's what everything means in a descriptor. Though they might seem somewhat complex, keep in mind that a descriptor takes the place of a potentially infinite number of addresses. With this one descriptor, or these eight descriptors as the case might be, you can regenerate every key and addresse that you might have used for these four address types. That's a huge boon for backups (when you want to protect your funds) and for moving control of your funds from one wallet-app to another. +So that's what everything means in a descriptor. -> :information_source: **NOTE:** You could instead run `bitcoin-cli listdescriptors true` if you want your descriptor list to include the private keys instead of the public keys. +> ๐Ÿ“– **Private Keys Possible.** You could instead run `bitcoin-cli listdescriptors true` if you want your descriptor list to include the private keys instead of the public keys. -## Examine an Address' Descriptor - -You can look at the descriptor for an individual address with `bitcoin-cli getaddressinfo`: -``` -$ bitcoin-cli getaddressinfo tb1q9f8j03uywqsxuxjefz68g7x4kduer2ky6shsf4 -{ - "address": "tb1q9f8j03uywqsxuxjefz68g7x4kduer2ky6shsf4", - "scriptPubKey": "00142a4f27c78470206e1a5948b47478d5b37991aac4", - "ismine": true, - "solvable": true, - "desc": "wpkh([e18dae20/84h/1h/0h/0/2]02040bf9b12e48bbbcbf72ef5197bc18067db378411ae6220f1d0a77da2ee7dbba)#dqt0983r", - "parent_desc": "wpkh([e18dae20/84h/1h/0h]tpubDC4ujMbsd9REzpGk3gnTjkrfJFw1NnvCpx6QBbLj3CHBzcLmVzssTVP8meRAM1WW4pZnK6SCCPGyzi9eMfzSXoeFMNprqtgxG71VRXTmetu/0/*)#3658f8sn", - "iswatchonly": false, - "isscript": false, - "iswitness": true, - "witness_version": 0, - "witness_program": "2a4f27c78470206e1a5948b47478d5b37991aac4", - "pubkey": "02040bf9b12e48bbbcbf72ef5197bc18067db378411ae6220f1d0a77da2ee7dbba", - "ischange": false, - "timestamp": 1770329126, - "hdkeypath": "m/84h/1h/0h/0/2", - "hdseedid": "0000000000000000000000000000000000000000", - "hdmasterfingerprint": "e18dae20", - "labels": [ - "" - ] -} -``` -That reveals: -``` - "desc": "wpkh([e18dae20/84h/1h/0h/0/2]02040bf9b12e48bbbcbf72ef5197bc18067db378411ae6220f1d0a77da2ee7dbba)#dqt0983r", -``` -Which you can compare to the ranged descriptor we just looked at: -``` - "desc": "wpkh([e18dae20/84h/1h/0h]tpubDC4ujMbsd9REzpGk3gnTjkrfJFw1NnvCpx6QBbLj3CHBzcLmVzssTVP8meRAM1WW4pZnK6SCCPGyzi9eMfzSXoeFMNprqtgxG71VRXTmetu/0/*)#3658f8sn", -``` -They're in slightly different formats as the non-ranged address has the derivation path all together rather than it being split in two. But other than that, there are just two changes: -* The wallet has a ranged of addresses `0/*`, while the address is one specific index in that range `0/2`. -* The checksums are different, as you'd expect due to the differences in the index number. - -You will see descriptors throughout Bitcoin commands. They're a vital element of not just the wallet, but of each address that is used to transfer funds and therefore of each transaction. - -## Examine Descriptors Again +## Examine Descriptors with `getdescriptorinfo` Descriptors can be also be examined with another command, `bitcoin-cli getdescriptorinfo`: ``` @@ -253,21 +313,6 @@ error message: 'cow([e18dae20/84h/1h/0h]tpubDC4ujMbsd9REzpGk3gnTjkrfJFw1NnvCpx6QBbLj3CHBzcLmVzssTVP8meRAM1WW4pZnK6SCCPGyzi9eMfzSXoeFMNprqtgxG71VRXTmetu/0/*)' is not a valid descriptor function ``` -## Derive Addresses by Hand - -One of the powers of a descriptor is being able to derive an address in a regular way. `bitcoin-cli` takes care of that for you automatically whenever you request a new address, but you can also do it by hand with the `deriveaddresses` command. -``` -$ bitcoin-cli deriveaddresses "wpkh([e18dae20/84h/1h/0h]tpubDC4ujMbsd9REzpGk3gnTjkrfJFw1NnvCpx6QBbLj3CHBzcLmVzssTVP8meRAM1WW4pZnK6SCCPGyzi9eMfzSXoeFMNprqtgxG71VRXTmetu/0/*)#3658f8sn" 2 -[ - "tb1q05ua6g7njnjrtsjc0t9w3jc6g2leeznasf4ny9", - "tb1q0psqqqgy0fv5928wmk86ntu7hlax8dva7nl82p", - "tb1q9f8j03uywqsxuxjefz68g7x4kduer2ky6shsf4" -] -``` -This example shows the derivation of addresses from the BIP-84 ranged descriptor up through index "2". If you check this against the addresses created in [ยง3.3](03_3_Setting_Up_Your_Wallet.md), you'll see they're just the same. Which is of course the whole point of descriptors! They are deterministically derived in the same way every time. The main purpose of this function would be to export addresses to other services (for example, if you wanted to export watch-only addresses to another wallet-app). - -> ๐Ÿ“– ***What is a watch-only address?*** A watch-only address allows you to watch for transactions related to an address (or to a whole family of addresses if you used a ranged descriptor), but not to spend funds on those addresses. - ## Import a Descriptor The really important feature of descriptors is that you can take them to another (remote) machine and import them. This is done with the `importdescriptors` command. The following example shows the import of the private-key version of our BIP-84 ranged descriptor into another wallet: @@ -279,23 +324,27 @@ $ bitcoin-cli importdescriptors '[{ "desc": "wpkh(tprv8ZgxMBicQKsPd1dP4NpsFDpsLU } ] ``` -You'll note that this is a much more complex `bitcoin-cli` command than anything we've used before. It requires the input of a JSON array with a variety of different variables. (Which is a pain.) The `desc` is that private-key descriptor, the `timestamp` says how much of the blockchain to rescan, the `range` says how much of the range to import, and the `active` says that this descriptor can be used to create new addresses. After importing it, if you create three new addresses, they'll all look familiar, as they should: -``` -$ bitcoin-cli getnewaddress -tb1q05ua6g7njnjrtsjc0t9w3jc6g2leeznasf4ny9 -$ bitcoin-cli getnewaddress -tb1q0psqqqgy0fv5928wmk86ntu7hlax8dva7nl82p -$ bitcoin-cli getnewaddress -tb1q9f8j03uywqsxuxjefz68g7x4kduer2ky6shsf4 -``` -We've now unlocked the full power of descriptors by both importing and exporting addresses! + +You'll note that this is a much more complex `bitcoin-cli` command +than anything we've used before. It requires the input of a JSON array +with a variety of different variables. (Which is a pain.) The `desc` +is that private-key descriptor, the `timestamp` says how much of the +blockchain to rescan, the `range` says how much of the range to +import, and the `active` says that this descriptor can be used to +create new addresses. After importing it, this descriptor becomes the +main (`active`) one for your wallet, which will be used to derive new addresses. ## Summary: Understanding the Descriptor -Descriptors let you pass public keys and private keys among wallets, but more than that, they allow you to precisely and correctly define addresses and derive addresses of a lot of different sorts from a standardized description format. They're the heart of Bitcoin Core's descriptor wallets. +Descriptor wallets define large numbers of keys with a single simple +description for each type of address in your wallet. Currently, there are eight ranged descriptors in each Bitcoin Core Wallet, defining internal and external addresses for the four in-use types of Bitcoin addresses. -> ๐Ÿ”ฅ ***What is the power of descriptors?*** Descriptors allow you to import and export keys and addresses. That's great if you want to move between different wallets. As a developer, they also allow you to build up the precise sort of addresses that you're interested in creating. +> ๐Ÿ”ฅ ***What is the power of descriptors?*** Descriptors allow you to +import and export sets of keys and addresses. That's great if you want +to move between different wallets. As a developer, they also allow you +to build up the precise sort of addresses that you're interested in +creating. ## What's Next? -Continue "Understanding Your Bitcoin Setup" with [ยง3.5: Undestanding the Address](03_5_Understanding_the_Address.md). +MOove on to "addresses" with [Chapter Three: Preparing Your Bitcoin Addresses](04_0_Preparing_Your_Bitcoin_Addresses.md). \ No newline at end of file