renumber + edit

This commit is contained in:
Shannon Appelcline 2026-04-02 07:44:34 -10:00 committed by GitHub
parent 5acd608ef2
commit db96531b00
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,6 +1,6 @@
# Chapter Six: Expanding Bitcoin Transactions with Multisigs
# Chapter Seven: Expanding Bitcoin Transactions with Multisigs
Basic bitcoin transactions: (1) send funds; (2) to a single recipient; (3) from a single machine; (4) immediately. However, all four parts of this definition can be expanded using more complex Bitcoin transactions. This first chapter on "Expansion" shows how to vary points (2) and (3) by sending money to an address that represents multiple recipients (or at least, multiple signers).
Basic bitcoin transactions: (1) send funds; (2) to a single recipient; (3) from a single machine; (4) immediately. However, all four parts of this definition can be expanded using more complex Bitcoin transactions. This first chapter of "Expanding Bitcoin Transactions" shows how to vary points (2) and (3) by sending money to an address that represents multiple recipients (or at least, multiple signers).
## Objectives for This Section
@ -8,7 +8,7 @@ After working through this chapter, a developer will be able to:
* Create Multisignature Bitcoin Addresses Using Bitcoin Fundamentals
* Create Multisignature Bitcoin Addresses Using Descriptors
* Create Multisignature Bitcoin Addresses Using Easier Mechanisms
* Spend Funds on Multisignature Adddresses
Supporting objectives include the ability to:
@ -17,7 +17,7 @@ Supporting objectives include the ability to:
## Table of Contents
* [Section One: Creating a Multisig with Public Keys](06_1_Creating_Multisig_Public_Keys.md)
* [Section Two: Creating a Multisig with Descriptors](06_2_Creating_Multisig_Descriptors.md)
* [Section Three: Spending a Transaction with a Multsig](06_3_Spending_a_Transaction_to_a_Multisig.md)
* [Section One: Creating a Multisig with Public Keys](07_1_Creating_Multisig_Public_Keys.md)
* [Section Two: Creating a Multisig with Descriptors](07_2_Creating_Multisig_Descriptors.md)
* [Section Three: Spending a Transaction with a Multsig](07_3_Spending_a_Transaction_to_a_Multisig.md)