From 675c3a8703d79e09807d6426c73f7c301c1d3eb7 Mon Sep 17 00:00:00 2001 From: Robert Spigler Date: Thu, 11 Mar 2021 03:11:51 -0500 Subject: [PATCH 01/10] Create Multisig Derivation Standard.mediawiki Draft --- Multisig Derivation Standard.mediawiki | 237 +++++++++++++++++++++++++ 1 file changed, 237 insertions(+) create mode 100644 Multisig Derivation Standard.mediawiki diff --git a/Multisig Derivation Standard.mediawiki b/Multisig Derivation Standard.mediawiki new file mode 100644 index 00000000..6d11c6ea --- /dev/null +++ b/Multisig Derivation Standard.mediawiki @@ -0,0 +1,237 @@ +
+  BIP: Number not assigned
+  Layer: Applications
+  Title: Modern Hierarchy for Deterministic Multisignature Wallets
+  Author: Robert Spigler 
+  Comments-Summary: No comments
+  Comments-URI:
+  Status: Proposed
+  Type: Standards Track
+  Created: 2020-03-11
+
+ +===Copyright=== + +This BIP is licensed under the 2-clause BSD license. + +==Abstract== + +This BIP defines a sane hierarchy for deterministic multisig wallets based on an algorithm described in BIP-0032 (BIP32 from now on), purpose scheme described in +BIP-0043 (BIP43 from now on), and multi-account hierarchy described in BIP-0044 (BIP44 from now on). + +This BIP is a particular application of BIP43. + +==Motivation== + +With the increase of more user friendly (offline) multisignature wallets, and adoption of new technologies such as +[https://github.com/bitcoin/bitcoin/blob/master/doc/descriptors.md the descriptor language] and [https://github.com/bitcoin/bips/blob/master/bip-0174.mediawiki +BIP-0174 (Partially Signed Bitcoin Transactions)] it is necessary to create a common derivation scheme that makes use of all new technologies. + +There are many issues with the current standards. As background, BIP 44/49/84 specifies: + +
+m / purpose' / coin_type' / account' / change / address_index
+
+ +where the BIP43 purpose' path is separate for each script (P2PKH, P2WPKH-in-P2SH, and P2WPKH respectively). However, these per-script derivations +are made redundant with descriptors, which describe a collection of output scripts. Note also that these are single sig derivations (which souldn't be reused for +multisig). + +Standardization is needed for multisig derivation paths. There are some in existence, but all have issues. For example, BIP45 specifies: + +
+m / purpose' / cosigner_index / change / address_index
+
+ +Like BIP44/49/84, BIP45 unecessarily demands a single script type (here, P2SH). In addition, BIP45 sets cosigner_index in order to sort the +purpose' public keys of each cosigner. This too is redundant, as descriptors can set the order of the public keys with multi or have +them sorted lexicographically (as described in [https://github.com/bitcoin/bips/blob/master/bip-0067.mediawiki BIP67) with sortedmulti. Sorting +public keys between cosigners in order to create the full derivation path, prior to sending the key record to the coordinator to create the descriptor, merely adds +additional unnecessary communication rounds. + +There is an additional multisig derivation path in use "BIP"48 (there is no real standard), which specifies: + +
+m / purpose' / coin_type' / account' / script_type' / change / address_index
+
+ +Rather than having a separate BIP per script type after P2SH (BIP45), vendors decided to insert script_type' into the derivation path (where +P2SH-P2WSH=1, P2WSH=2, Future_Script=3, etc). As described previously, this is unnecessary, as the descriptor sets the script. While it attempts to reduce +maintainence work by getting rid of new BIPs-per-script, it still requires maintaining an updated, redundant, script_type list. + +The hierarchy proposed in this paper is quite comprehensive. It allows the handling of multiple accounts, external and internal chains per account, and millions +of addresses per chain. + +Any script that is supported by descriptors (and the specific wallet implementation) is compatible with this BIP. + +This paper was inspired from BIP44. + +==Key sorting== + +Any wallet that supports descriptors inherently supports deterministic key sorting as per BIP67 (through the sortedmulti function) so that all +possible multisignature addresses/scripts are derived from deterministically sorted public keys. + +==Path levels== + +You should not be mixing keys and scripts. We define the following 5 levels in the BIP32 path: + +
+m / purpose' / coin_type' / account' / change / address_index
+
+ +h or ' in the path indicates that BIP32 hardened derivation is used. + +Each level has a special meaning, described in the chapters below. + +===Purpose=== + +Purpose is a constant set to XY' following the BIP43 recommendation. +It indicates that the subtree of this node is used according to this specification. + +Hardened derivation is used at this level. + +===Coin type=== + +One master node (seed) can be used for multiple Bitcoin networks. +Sharing the same space for various networks has some disadvantages. + +Avoiding reusing addresses across networks and improving privacy issues. + +Coin type 0 for mainnet and 1 for testnet. + +Hardened derivation is used at this level. + +===Account=== + +This level splits the key space into independent user identities, following the BIP44 pattern, so the wallet never mixes the coins across different accounts. + +Users can use these accounts to organize the funds in the same fashion as bank accounts; for donation purposes (where all addresses are considered public), for +saving purposes, for common expenses, etc. + +Accounts are numbered from index 0 in sequentially increasing manner. +This number is used as child index in BIP32 derivation. + +Hardened derivation is used at this level. + +===Change=== + +Constant 0 is used for external chain and constant 1 for internal chain (also known as change addresses). External chain is used for addresses that are meant to be +visible outside of the wallet (e.g. for receiving payments). Internal chain is used for addresses which are not meant to be visible outside of the wallet and is +used for return transaction change. + +Public derivation is used at this level. + +===Index=== + +Addresses are numbered from index 0 in sequentially increasing manner. +This number is used as child index in BIP32 derivation. + +Public derivation is used at this level. + +==Examples== + +{| +|network +|account +|chain +|address +|path +|- +|mainnet +|first +|external +|first +|m / XY' / 0' / 0' / 0 / 0 +|- +|mainnet +|first +|external +|second +|m / XY' / 0' / 0' / 0 / 1 +|- +|mainnet +|first +|change +|first +|m / XY' / 0' / 0' / 1 / 0 +|- +|mainnet +|first +|change +|second +|m / XY' / 0' / 0' / 1 / 1 +|- +|mainnet +|second +|external +|first +|m / XY' / 0' / 1' / 0 / 0 +|- +|mainnet +|second +|external +|second +|m / XY' / 0' / 1' / 0 / 1 +|- +|testnet +|first +|external +|first +|m / XY' / 1' / 0' / 0 / 0 +|- +|testnet +|first +|external +|second +|m / XY' / 1' / 0' / 0 / 1 +|- +|testnet +|first +|change +|first +|m / XY' / 1' / 0' / 1 / 0 +|- +|testnet +|first +|change +|second +|m / XY' / 1' / 0' / 1 / 1 +|- +|testnet +|second +|external +|first +|m / XY' / 1' / 1' / 0 / 0 +|- +|testnet +|second +|external +|second +|m / XY' / 1' / 1' / 0 / 1 +|- +|testnet +|second +|change +|first +|m / XY' / 1' / 1' / 1 / 0 +|- +|testnet +|second +|change +|second +|m / XY' / 1' / 1' / 1 / 1 +|} + +==Acknowledgement== + + +==References== + +Original mailing list thread: TBD + +* [[bip-0032.mediawiki|BIP32 - Hierarchical Deterministic Wallets]] +* [[bip-0043.mediawiki|BIP43 - Purpose Field for Deterministic Wallets]] +* [[bip-0044.mediawiki|BIP44 - Multi-Account Hierarchy for Deterministic Wallets]] +* [[https://github.com/bitcoin/bitcoin/blob/master/doc/descriptors.md - Output Descriptors]] +* [[bip-0174.mediawiki|BIP174 - Partially Signed Bitcoin Transaction Format]] +* [[bip-0067.mediawiki|BIP67 - Deterministic Pay-to-script-hash multi-signature addresses through public key sorting]] From a067f9ca085e296d383399aa62e1752b09117523 Mon Sep 17 00:00:00 2001 From: Robert Spigler Date: Thu, 11 Mar 2021 16:17:51 -0500 Subject: [PATCH 02/10] Formatting --- Multisig Derivation Standard.mediawiki | 41 ++++++++------------------ 1 file changed, 13 insertions(+), 28 deletions(-) diff --git a/Multisig Derivation Standard.mediawiki b/Multisig Derivation Standard.mediawiki index 6d11c6ea..e44dcdc9 100644 --- a/Multisig Derivation Standard.mediawiki +++ b/Multisig Derivation Standard.mediawiki @@ -16,16 +16,13 @@ This BIP is licensed under the 2-clause BSD license. ==Abstract== -This BIP defines a sane hierarchy for deterministic multisig wallets based on an algorithm described in BIP-0032 (BIP32 from now on), purpose scheme described in -BIP-0043 (BIP43 from now on), and multi-account hierarchy described in BIP-0044 (BIP44 from now on). +This BIP defines a sane hierarchy for deterministic multisig wallets based on an algorithm described in BIP-0032 (BIP32 from now on), purpose scheme described in BIP-0043 (BIP43 from now on), and multi-account hierarchy described in BIP-0044 (BIP44 from now on). This BIP is a particular application of BIP43. ==Motivation== -With the increase of more user friendly (offline) multisignature wallets, and adoption of new technologies such as -[https://github.com/bitcoin/bitcoin/blob/master/doc/descriptors.md the descriptor language] and [https://github.com/bitcoin/bips/blob/master/bip-0174.mediawiki -BIP-0174 (Partially Signed Bitcoin Transactions)] it is necessary to create a common derivation scheme that makes use of all new technologies. +With the increase of more user friendly (offline) multisignature wallets, and adoption of new technologies such as [https://github.com/bitcoin/bitcoin/blob/master/doc/descriptors.md the descriptor language] and [https://github.com/bitcoin/bips/blob/master/bip-0174.mediawiki BIP-0174 (Partially Signed Bitcoin Transactions)] it is necessary to create a common derivation scheme that makes use of all new technologies. There are many issues with the current standards. As background, BIP 44/49/84 specifies: @@ -33,9 +30,7 @@ There are many issues with the current standards. As background, BIP 44/49/84 sp m / purpose' / coin_type' / account' / change / address_index -where the BIP43 purpose' path is separate for each script (P2PKH, P2WPKH-in-P2SH, and P2WPKH respectively). However, these per-script derivations -are made redundant with descriptors, which describe a collection of output scripts. Note also that these are single sig derivations (which souldn't be reused for -multisig). +where the BIP43 purpose' path is separate for each script (P2PKH, P2WPKH-in-P2SH, and P2WPKH respectively). However, these per-script derivations are made redundant with descriptors, which describe a collection of output scripts. Note also that these are single sig derivations (which shouldn't be reused for multisig). Standardization is needed for multisig derivation paths. There are some in existence, but all have issues. For example, BIP45 specifies: @@ -43,24 +38,17 @@ Standardization is needed for multisig derivation paths. There are some in exis m / purpose' / cosigner_index / change / address_index -Like BIP44/49/84, BIP45 unecessarily demands a single script type (here, P2SH). In addition, BIP45 sets cosigner_index in order to sort the -purpose' public keys of each cosigner. This too is redundant, as descriptors can set the order of the public keys with multi or have -them sorted lexicographically (as described in [https://github.com/bitcoin/bips/blob/master/bip-0067.mediawiki BIP67) with sortedmulti. Sorting -public keys between cosigners in order to create the full derivation path, prior to sending the key record to the coordinator to create the descriptor, merely adds -additional unnecessary communication rounds. +Like BIP44/49/84, BIP45 unecessarily demands a single script type (here, P2SH). In addition, BIP45 sets cosigner_index in order to sort the purpose' public keys of each cosigner. This too is redundant, as descriptors can set the order of the public keys with multi or have them sorted lexicographically (as described in [https://github.com/bitcoin/bips/blob/master/bip-0067.mediawiki BIP67]) with sortedmulti. Sorting public keys between cosigners in order to create the full derivation path, prior to sending the key record to the coordinator to create the descriptor, merely adds additional unnecessary communication rounds. -There is an additional multisig derivation path in use "BIP"48 (there is no real standard), which specifies: +The second multisignature "standard" in use is m/48', which specifies:
 m / purpose' / coin_type' / account' / script_type' / change / address_index
 
-Rather than having a separate BIP per script type after P2SH (BIP45), vendors decided to insert script_type' into the derivation path (where -P2SH-P2WSH=1, P2WSH=2, Future_Script=3, etc). As described previously, this is unnecessary, as the descriptor sets the script. While it attempts to reduce -maintainence work by getting rid of new BIPs-per-script, it still requires maintaining an updated, redundant, script_type list. +Rather than having a separate BIP per script after P2SH (BIP45), vendors decided to insert script_type' into the derivation path (where P2SH-P2WSH=1, P2WSH=2, Future_Script=3, etc). As described previously, this is unnecessary, as the descriptor sets the script. While it attempts to reduce maintainence work by getting rid of new BIPs-per-script, it still requires maintaining an updated, redundant, script_type list. -The hierarchy proposed in this paper is quite comprehensive. It allows the handling of multiple accounts, external and internal chains per account, and millions -of addresses per chain. +The hierarchy proposed later in this paper solves these issues and is quite comprehensive. It allows the handling of multiple accounts, external and internal chains per account, and millions of addresses per chain. Any script that is supported by descriptors (and the specific wallet implementation) is compatible with this BIP. @@ -68,8 +56,7 @@ This paper was inspired from BIP44. ==Key sorting== -Any wallet that supports descriptors inherently supports deterministic key sorting as per BIP67 (through the sortedmulti function) so that all -possible multisignature addresses/scripts are derived from deterministically sorted public keys. +Any wallet that supports descriptors inherently supports deterministic key sorting as per BIP67 (through the sortedmulti function) so that all possible multisignature addresses/scripts are derived from deterministically sorted public keys. ==Path levels== @@ -95,7 +82,7 @@ Hardened derivation is used at this level. One master node (seed) can be used for multiple Bitcoin networks. Sharing the same space for various networks has some disadvantages. -Avoiding reusing addresses across networks and improving privacy issues. +This level creates a separate subtree for every network, avoiding reusing addresses across networks and improving privacy issues. Coin type 0 for mainnet and 1 for testnet. @@ -105,8 +92,7 @@ Hardened derivation is used at this level. This level splits the key space into independent user identities, following the BIP44 pattern, so the wallet never mixes the coins across different accounts. -Users can use these accounts to organize the funds in the same fashion as bank accounts; for donation purposes (where all addresses are considered public), for -saving purposes, for common expenses, etc. +Users can use these accounts to organize the funds in the same fashion as bank accounts; for donation purposes (where all addresses are considered public), for saving purposes, for common expenses, etc. Accounts are numbered from index 0 in sequentially increasing manner. This number is used as child index in BIP32 derivation. @@ -115,9 +101,7 @@ Hardened derivation is used at this level. ===Change=== -Constant 0 is used for external chain and constant 1 for internal chain (also known as change addresses). External chain is used for addresses that are meant to be -visible outside of the wallet (e.g. for receiving payments). Internal chain is used for addresses which are not meant to be visible outside of the wallet and is -used for return transaction change. +Constant 0 is used for external chain and constant 1 for internal chain (also known as change addresses). External chain is used for addresses that are meant to be visible outside of the wallet (e.g. for receiving payments). Internal chain is used for addresses which are not meant to be visible outside of the wallet and is used for return transaction change. Public derivation is used at this level. @@ -232,6 +216,7 @@ Original mailing list thread: TBD * [[bip-0032.mediawiki|BIP32 - Hierarchical Deterministic Wallets]] * [[bip-0043.mediawiki|BIP43 - Purpose Field for Deterministic Wallets]] * [[bip-0044.mediawiki|BIP44 - Multi-Account Hierarchy for Deterministic Wallets]] -* [[https://github.com/bitcoin/bitcoin/blob/master/doc/descriptors.md - Output Descriptors]] +* [https://github.com/bitcoin/bitcoin/blob/master/doc/descriptors.md Output Descriptors] * [[bip-0174.mediawiki|BIP174 - Partially Signed Bitcoin Transaction Format]] * [[bip-0067.mediawiki|BIP67 - Deterministic Pay-to-script-hash multi-signature addresses through public key sorting]] + From ef3a16eeec646da955591371127c103da33aa80a Mon Sep 17 00:00:00 2001 From: Robert Spigler Date: Fri, 12 Mar 2021 16:57:55 -0500 Subject: [PATCH 03/10] Update and rename Multisig Derivation Standard.mediawiki to Modern Derivation Standard.mediawiki Multisig and singlesig support --- ...ki => Modern Derivation Standard.mediawiki | 23 +++++++++++-------- 1 file changed, 14 insertions(+), 9 deletions(-) rename Multisig Derivation Standard.mediawiki => Modern Derivation Standard.mediawiki (72%) diff --git a/Multisig Derivation Standard.mediawiki b/Modern Derivation Standard.mediawiki similarity index 72% rename from Multisig Derivation Standard.mediawiki rename to Modern Derivation Standard.mediawiki index e44dcdc9..c8d5a844 100644 --- a/Multisig Derivation Standard.mediawiki +++ b/Modern Derivation Standard.mediawiki @@ -1,7 +1,7 @@
   BIP: Number not assigned
   Layer: Applications
-  Title: Modern Hierarchy for Deterministic Multisignature Wallets
+  Title: Signature and Script Independant Hierarchy for Deterministic Wallets
   Author: Robert Spigler 
   Comments-Summary: No comments
   Comments-URI:
@@ -16,13 +16,13 @@ This BIP is licensed under the 2-clause BSD license.
 
 ==Abstract==
 
-This BIP defines a sane hierarchy for deterministic multisig wallets based on an algorithm described in BIP-0032 (BIP32 from now on), purpose scheme described in BIP-0043 (BIP43 from now on), and multi-account hierarchy described in BIP-0044 (BIP44 from now on).
+This BIP defines a sane hierarchy for deterministic wallets based on an algorithm described in BIP-0032 (BIP32 from now on), purpose scheme described in BIP-0043 (BIP43 from now on), and multi-account hierarchy described in BIP-0044 (BIP44 from now on).
 
 This BIP is a particular application of BIP43.
 
 ==Motivation==
 
-With the increase of more user friendly (offline) multisignature wallets, and adoption of new technologies such as [https://github.com/bitcoin/bitcoin/blob/master/doc/descriptors.md the descriptor language] and [https://github.com/bitcoin/bips/blob/master/bip-0174.mediawiki BIP-0174 (Partially Signed Bitcoin Transactions)] it is necessary to create a common derivation scheme that makes use of all new technologies.
+With the increase of adoption of new technologies such as [https://github.com/bitcoin/bitcoin/blob/master/doc/descriptors.md the descriptor language] it is necessary to create a common derivation scheme that makes use of all new technologies.
 
 There are many issues with the current standards. As background, BIP 44/49/84 specifies:
 
@@ -30,9 +30,9 @@ There are many issues with the current standards. As background, BIP 44/49/84 sp
 m / purpose' / coin_type' / account' / change / address_index
 
-where the BIP43 purpose' path is separate for each script (P2PKH, P2WPKH-in-P2SH, and P2WPKH respectively). However, these per-script derivations are made redundant with descriptors, which describe a collection of output scripts. Note also that these are single sig derivations (which shouldn't be reused for multisig). +where the BIP43 purpose' path is separate for each script (P2PKH, P2WPKH-in-P2SH, and P2WPKH respectively). However, these per-script derivations are made redundant with descriptors, which describe a collection of output scripts. Note also that these BIPs are restricted for single sig wallets. This is unecessary, as descriptors handle whether the scripts are single-key or multi-key. -Standardization is needed for multisig derivation paths. There are some in existence, but all have issues. For example, BIP45 specifies: +Modification is also needed for multisig derivation paths. For example, BIP45 specifies:
 m / purpose' / cosigner_index / change / address_index
@@ -46,9 +46,9 @@ The second multisignature "standard" in use is m/48', which specifies:
 m / purpose' / coin_type' / account' / script_type' / change / address_index
 
-Rather than having a separate BIP per script after P2SH (BIP45), vendors decided to insert script_type' into the derivation path (where P2SH-P2WSH=1, P2WSH=2, Future_Script=3, etc). As described previously, this is unnecessary, as the descriptor sets the script. While it attempts to reduce maintainence work by getting rid of new BIPs-per-script, it still requires maintaining an updated, redundant, script_type list. +Rather than following in BIP 44/49/84's path and having a separate BIP per script after P2SH (BIP45), vendors decided to insert script_type' into the derivation path (where P2SH-P2WSH=1, P2WSH=2, Future_Script=3, etc). As described previously, this is unnecessary, as the descriptor sets the script. While it attempts to reduce maintainence work by getting rid of new BIPs-per-script, it still requires maintaining an updated, redundant, script_type list. -The hierarchy proposed later in this paper solves these issues and is quite comprehensive. It allows the handling of multiple accounts, external and internal chains per account, and millions of addresses per chain. +The hierarchy proposed later in this paper solves these issues and is quite comprehensive. It allows the handling of multiple accounts, external and internal chains per account, and millions of addresses per chain, regardless of the script or signature type. Any script that is supported by descriptors (and the specific wallet implementation) is compatible with this BIP. @@ -60,7 +60,9 @@ Any wallet that supports descriptors inherently supports deterministic key sorti ==Path levels== -You should not be mixing keys and scripts. We define the following 5 levels in the BIP32 path: +We should not be mixing keys and scripts in the same layer. The wallet should create extended private/public keys independent of the script or signature type, whereas the descriptor language tells wallets to watch (single or multi-sig) outputs with the specified public keys. + +We define the following 5 levels in the BIP32 path:
 m / purpose' / coin_type' / account' / change / address_index
@@ -99,6 +101,10 @@ This number is used as child index in BIP32 derivation.
 
 Hardened derivation is used at this level.
 
+It is crucial that the index is increased for each new wallet joined or private/public keys created; for both privacy and cryptographic purposes.
+For example, in multisignature wallets, before sending a new key record to a coordinator, the wallet must increment the account' level.  Before creating it's own single signature wallet, the account' level must again be incremented.
+This prevents key reuse - across single signature and multisignature wallets, across ECDSA and Schnorr signatures, and inbetween the same wallet types.
+
 ===Change===
 
 Constant 0 is used for external chain and constant 1 for internal chain (also known as change addresses). External chain is used for addresses that are meant to be visible outside of the wallet (e.g. for receiving payments). Internal chain is used for addresses which are not meant to be visible outside of the wallet and is used for return transaction change.
@@ -217,6 +223,5 @@ Original mailing list thread: TBD
 * [[bip-0043.mediawiki|BIP43 - Purpose Field for Deterministic Wallets]]
 * [[bip-0044.mediawiki|BIP44 - Multi-Account Hierarchy for Deterministic Wallets]]
 * [https://github.com/bitcoin/bitcoin/blob/master/doc/descriptors.md Output Descriptors]
-* [[bip-0174.mediawiki|BIP174 - Partially Signed Bitcoin Transaction Format]]
 * [[bip-0067.mediawiki|BIP67 - Deterministic Pay-to-script-hash multi-signature addresses through public key sorting]]
 

From c747ee9880866935da9f74cd15946be480666be1 Mon Sep 17 00:00:00 2001
From: Robert Spigler 
Date: Fri, 12 Mar 2021 17:32:50 -0500
Subject: [PATCH 04/10] Update Modern Derivation Standard.mediawiki

minor edit
---
 Modern Derivation Standard.mediawiki | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Modern Derivation Standard.mediawiki b/Modern Derivation Standard.mediawiki
index c8d5a844..5cf36654 100644
--- a/Modern Derivation Standard.mediawiki	
+++ b/Modern Derivation Standard.mediawiki	
@@ -101,7 +101,7 @@ This number is used as child index in BIP32 derivation.
 
 Hardened derivation is used at this level.
 
-It is crucial that the index is increased for each new wallet joined or private/public keys created; for both privacy and cryptographic purposes.
+It is crucial that this level is increased for each new wallet joined or private/public keys created; for both privacy and cryptographic purposes.
 For example, in multisignature wallets, before sending a new key record to a coordinator, the wallet must increment the account' level.  Before creating it's own single signature wallet, the account' level must again be incremented.
 This prevents key reuse - across single signature and multisignature wallets, across ECDSA and Schnorr signatures, and inbetween the same wallet types.
 

From deba2a75be9f8151f4d77d21ef517ad280cc1a61 Mon Sep 17 00:00:00 2001
From: Robert Spigler 
Date: Sun, 14 Mar 2021 16:02:45 -0400
Subject: [PATCH 05/10] Clarify testnets

---
 Modern Derivation Standard.mediawiki | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Modern Derivation Standard.mediawiki b/Modern Derivation Standard.mediawiki
index 5cf36654..61a4fefa 100644
--- a/Modern Derivation Standard.mediawiki	
+++ b/Modern Derivation Standard.mediawiki	
@@ -86,7 +86,7 @@ Sharing the same space for various networks has some disadvantages.
 
 This level creates a separate subtree for every network, avoiding reusing addresses across networks and improving privacy issues.
 
-Coin type 0 for mainnet and 1 for testnet.
+Coin type 0 for mainnet and 1 for testnets (testnet, regtest, and signet).
 
 Hardened derivation is used at this level.
 

From 8c346ca3ba5d82ee35a91c5bd9c803a758dd68f5 Mon Sep 17 00:00:00 2001
From: Robert Spigler 
Date: Thu, 18 Mar 2021 17:15:07 -0400
Subject: [PATCH 06/10] Revert to multisig only

---
 ...rministic Multisignature Wallets.mediawiki | 20 +++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)
 rename Modern Derivation Standard.mediawiki => Modern Hierarchy for Deterministic Multisignature Wallets.mediawiki (80%)

diff --git a/Modern Derivation Standard.mediawiki b/Modern Hierarchy for Deterministic Multisignature Wallets.mediawiki
similarity index 80%
rename from Modern Derivation Standard.mediawiki
rename to Modern Hierarchy for Deterministic Multisignature Wallets.mediawiki
index 61a4fefa..0960fa94 100644
--- a/Modern Derivation Standard.mediawiki	
+++ b/Modern Hierarchy for Deterministic Multisignature Wallets.mediawiki	
@@ -1,7 +1,7 @@
 
   BIP: Number not assigned
   Layer: Applications
-  Title: Signature and Script Independant Hierarchy for Deterministic Wallets
+  Title: Modern Hierarchy for Deterministic Multisignature Wallets
   Author: Robert Spigler 
   Comments-Summary: No comments
   Comments-URI:
@@ -16,23 +16,23 @@ This BIP is licensed under the 2-clause BSD license.
 
 ==Abstract==
 
-This BIP defines a sane hierarchy for deterministic wallets based on an algorithm described in BIP-0032 (BIP32 from now on), purpose scheme described in BIP-0043 (BIP43 from now on), and multi-account hierarchy described in BIP-0044 (BIP44 from now on).
+This BIP defines a sane hierarchy for deterministic multisig wallets based on an algorithm described in BIP-0032 (BIP32 from now on), purpose scheme described in BIP-0043 (BIP43 from now on), and multi-account hierarchy described in BIP-0044 (BIP44 from now on).
 
 This BIP is a particular application of BIP43.
 
 ==Motivation==
 
-With the increase of adoption of new technologies such as [https://github.com/bitcoin/bitcoin/blob/master/doc/descriptors.md the descriptor language] it is necessary to create a common derivation scheme that makes use of all new technologies.
+With the increase of more user friendly (offline) multisignature wallets, and adoption of new technologies such as [https://github.com/bitcoin/bitcoin/blob/master/doc/descriptors.md the descriptor language] and [https://github.com/bitcoin/bips/blob/master/bip-0174.mediawiki BIP-0174 (Partially Signed Bitcoin Transactions)] it is necessary to create a common derivation scheme that makes use of all new technologies.
 
-There are many issues with the current standards. As background, BIP 44/49/84 specifies:
+As background, BIP 44/49/84 specifies:
 
 
 m / purpose' / coin_type' / account' / change / address_index
 
-where the BIP43 purpose' path is separate for each script (P2PKH, P2WPKH-in-P2SH, and P2WPKH respectively). However, these per-script derivations are made redundant with descriptors, which describe a collection of output scripts. Note also that these BIPs are restricted for single sig wallets. This is unecessary, as descriptors handle whether the scripts are single-key or multi-key. +where the BIP43 purpose' path is separate for each script (P2PKH, P2WPKH-in-P2SH, and P2WPKH respectively). However, these per-script derivations are made redundant with descriptors, which describe a collection of output scripts. Note also that these are single sig derivations (which shouldn't be reused for multisig). -Modification is also needed for multisig derivation paths. For example, BIP45 specifies: +Standardization is needed for multisig derivation paths. There are some in existence, but all have issues. For example, BIP45 specifies:
 m / purpose' / cosigner_index / change / address_index
@@ -48,7 +48,7 @@ m / purpose' / coin_type' / account' / script_type' / change / address_index
 
 Rather than following in BIP 44/49/84's path and having a separate BIP per script after P2SH (BIP45), vendors decided to insert script_type' into the derivation path (where P2SH-P2WSH=1, P2WSH=2, Future_Script=3, etc). As described previously, this is unnecessary, as the descriptor sets the script.  While it attempts to reduce maintainence work by getting rid of new BIPs-per-script, it still requires maintaining an updated, redundant, script_type list.
 
-The hierarchy proposed later in this paper solves these issues and is quite comprehensive. It allows the handling of multiple accounts, external and internal chains per account, and millions of addresses per chain, regardless of the script or signature type.
+The structure proposed later in this paper solves these issues and is quite comprehensive. It allows the handling of multiple accounts, external and internal chains per account, and millions of addresses per chain, in a multi-party multisignature hierarchical deterministic wallet regardless of the script type.
 
 Any script that is supported by descriptors (and the specific wallet implementation) is compatible with this BIP.
 
@@ -60,7 +60,7 @@ Any wallet that supports descriptors inherently supports deterministic key sorti
 
 ==Path levels==
 
-We should not be mixing keys and scripts in the same layer. The wallet should create extended private/public keys independent of the script or signature type, whereas the descriptor language tells wallets to watch (single or multi-sig) outputs with the specified public keys.
+We should not be mixing keys and scripts in the same layer. The wallet should create extended private/public keys independent of the script type, whereas the descriptor language tells wallets to watch the multisig outputs with the specified public keys.
 
 We define the following 5 levels in the BIP32 path:
 
@@ -102,8 +102,8 @@ This number is used as child index in BIP32 derivation.
 Hardened derivation is used at this level.
 
 It is crucial that this level is increased for each new wallet joined or private/public keys created; for both privacy and cryptographic purposes.
-For example, in multisignature wallets, before sending a new key record to a coordinator, the wallet must increment the account' level.  Before creating it's own single signature wallet, the account' level must again be incremented.
-This prevents key reuse - across single signature and multisignature wallets, across ECDSA and Schnorr signatures, and inbetween the same wallet types.
+For example, before sending a new key record to a coordinator, the wallet must increment the account' level.
+This prevents key reuse - across ECDSA and Schnorr signatures, across different script types, and inbetween the same wallet types.
 
 ===Change===
 

From b4af07c8a7f10fb28e6c5233d603310cc9db072f Mon Sep 17 00:00:00 2001
From: Robert Spigler 
Date: Thu, 18 Mar 2021 17:16:15 -0400
Subject: [PATCH 07/10] Add PSBT and ML reference

---
 ...ierarchy for Deterministic Multisignature Wallets.mediawiki | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Modern Hierarchy for Deterministic Multisignature Wallets.mediawiki b/Modern Hierarchy for Deterministic Multisignature Wallets.mediawiki
index 0960fa94..8ac2888e 100644
--- a/Modern Hierarchy for Deterministic Multisignature Wallets.mediawiki	
+++ b/Modern Hierarchy for Deterministic Multisignature Wallets.mediawiki	
@@ -217,11 +217,12 @@ Public derivation is used at this level.
 
 ==References==
 
-Original mailing list thread: TBD
+Original mailing list thread: https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2021-March/018630.html
 
 * [[bip-0032.mediawiki|BIP32 - Hierarchical Deterministic Wallets]]
 * [[bip-0043.mediawiki|BIP43 - Purpose Field for Deterministic Wallets]]
 * [[bip-0044.mediawiki|BIP44 - Multi-Account Hierarchy for Deterministic Wallets]]
 * [https://github.com/bitcoin/bitcoin/blob/master/doc/descriptors.md Output Descriptors]
+* [[bip-0174.mediawiki|BIP174 - Partially Signed Bitcoin Transaction Format]]
 * [[bip-0067.mediawiki|BIP67 - Deterministic Pay-to-script-hash multi-signature addresses through public key sorting]]
 

From f4cea61a4edec51c72a965861c0cb63553adf68c Mon Sep 17 00:00:00 2001
From: Robert Spigler 
Date: Thu, 18 Mar 2021 18:00:39 -0400
Subject: [PATCH 08/10] Clarifications

---
 ...rarchy for Deterministic Multisignature Wallets.mediawiki | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/Modern Hierarchy for Deterministic Multisignature Wallets.mediawiki b/Modern Hierarchy for Deterministic Multisignature Wallets.mediawiki
index 8ac2888e..e69f9cf7 100644
--- a/Modern Hierarchy for Deterministic Multisignature Wallets.mediawiki	
+++ b/Modern Hierarchy for Deterministic Multisignature Wallets.mediawiki	
@@ -30,9 +30,10 @@ As background, BIP 44/49/84 specifies:
 m / purpose' / coin_type' / account' / change / address_index
 
-where the BIP43 purpose' path is separate for each script (P2PKH, P2WPKH-in-P2SH, and P2WPKH respectively). However, these per-script derivations are made redundant with descriptors, which describe a collection of output scripts. Note also that these are single sig derivations (which shouldn't be reused for multisig). +where the BIP43 purpose' path is separate for each script (P2PKH, P2WPKH-in-P2SH, and P2WPKH respectively). Having a script-per-derivation for single sig wallets allows for easy backup and restore, with just the private key information. -Standardization is needed for multisig derivation paths. There are some in existence, but all have issues. For example, BIP45 specifies: +Multisignature wallets need more information to backup and restore, and these per-script derivations are made redundant with descriptors, which describe a collection of output scripts. +A modern standardization is needed for multisig derivation paths. There are some in existence, but all have issues. For example, BIP45 specifies:
 m / purpose' / cosigner_index / change / address_index

From 73dce7aafce941969ce96da5fe3e64084b3705e6 Mon Sep 17 00:00:00 2001
From: Robert Spigler 
Date: Mon, 22 Mar 2021 00:59:46 -0400
Subject: [PATCH 09/10] BIP2 compliance.  Add rationale, addresss discovery,
 etc.

---
 ...rministic Multisignature Wallets.mediawiki | 53 ++++++++++++++++---
 1 file changed, 46 insertions(+), 7 deletions(-)

diff --git a/Modern Hierarchy for Deterministic Multisignature Wallets.mediawiki b/Modern Hierarchy for Deterministic Multisignature Wallets.mediawiki
index e69f9cf7..8748762f 100644
--- a/Modern Hierarchy for Deterministic Multisignature Wallets.mediawiki	
+++ b/Modern Hierarchy for Deterministic Multisignature Wallets.mediawiki	
@@ -8,18 +8,19 @@
   Status: Proposed
   Type: Standards Track
   Created: 2020-03-11
+  License: BSD-2-Clause
 
-===Copyright=== - -This BIP is licensed under the 2-clause BSD license. - ==Abstract== This BIP defines a sane hierarchy for deterministic multisig wallets based on an algorithm described in BIP-0032 (BIP32 from now on), purpose scheme described in BIP-0043 (BIP43 from now on), and multi-account hierarchy described in BIP-0044 (BIP44 from now on). This BIP is a particular application of BIP43. +==Copyright== + +This BIP is licensed under the 2-clause BSD license. + ==Motivation== With the increase of more user friendly (offline) multisignature wallets, and adoption of new technologies such as [https://github.com/bitcoin/bitcoin/blob/master/doc/descriptors.md the descriptor language] and [https://github.com/bitcoin/bips/blob/master/bip-0174.mediawiki BIP-0174 (Partially Signed Bitcoin Transactions)] it is necessary to create a common derivation scheme that makes use of all new technologies. @@ -49,17 +50,19 @@ m / purpose' / coin_type' / account' / script_type' / change / address_index Rather than following in BIP 44/49/84's path and having a separate BIP per script after P2SH (BIP45), vendors decided to insert script_type' into the derivation path (where P2SH-P2WSH=1, P2WSH=2, Future_Script=3, etc). As described previously, this is unnecessary, as the descriptor sets the script. While it attempts to reduce maintainence work by getting rid of new BIPs-per-script, it still requires maintaining an updated, redundant, script_type list. -The structure proposed later in this paper solves these issues and is quite comprehensive. It allows the handling of multiple accounts, external and internal chains per account, and millions of addresses per chain, in a multi-party multisignature hierarchical deterministic wallet regardless of the script type. +The structure proposed later in this paper solves these issues and is quite comprehensive. It allows the handling of multiple accounts, external and internal chains per account, and millions of addresses per chain, in a multi-party multisignature hierarchical deterministic wallet regardless of the script type **Why propose this structure only for multisignature wallets?** Currently, single-sig wallets are able to restore funds using just the master private key data (in the format of BIP39 usually). Even if the user doesn't recall the derivation used, the wallet implementation can iterate through common schemes (BIP44/49/84). With this proposed hierarchy, the user would either have to now backup additional data (the descriptor), or the wallet would have to attempt all script types for every account level when restoring. Because of this, even though the descriptor language handles the signature type just like it does the script type, it is best to restrict this script-agnostic hierarchy to multisignature wallets only. Co-signers in multisignature wallets need to backup all other cosigner public keys anyway in order to restore, so the descriptor provides this information with the benefit of key origin information and error detection.. Any script that is supported by descriptors (and the specific wallet implementation) is compatible with this BIP. This paper was inspired from BIP44. -==Key sorting== +==Specification== + +===Key sorting=== Any wallet that supports descriptors inherently supports deterministic key sorting as per BIP67 (through the sortedmulti function) so that all possible multisignature addresses/scripts are derived from deterministically sorted public keys. -==Path levels== +===Path levels=== We should not be mixing keys and scripts in the same layer. The wallet should create extended private/public keys independent of the script type, whereas the descriptor language tells wallets to watch the multisig outputs with the specified public keys. @@ -119,6 +122,37 @@ This number is used as child index in BIP32 derivation. Public derivation is used at this level. +==Address Discovery== + +The multisig descriptor that is generated from the cosigners combined key records should be used to generate and discover addresses. For example: +wsh(sortedmulti(2,[xfpForA/XY'/0'/0']XpubA/*,[xfpForB/XY'/0'/0']XpubB/*))#Checksum + +# Derive the wallet's first account's node (index = 0) +# Derive the external chain node of this account (index = 0) +# Scan addresses of the external chain; respect the gap limit described below +# If there are some transactions, increase the account index and go to step 2 +# If no transactions are found on the external chain, continue to search the following account indexes in compliance with the account gap limit described below. + +Please note that the algorithm works with the transaction history, not account +balances, so you can have an account with 0 total coins and the algorithm will +still continue with discovery. + +The wallet implementation should scan the accounts and addresses following the parent descriptor string. + +===Address Gap Limit=== + +Address gap limit is currently set to 20. If the software hits 20 unused addresses in a row, it expects there are no used addresses beyond this point and stops searching the address chain. We scan just the external chains, because internal chains receive only coins that come from the associated external chains. + +Wallet software should warn when the user is trying to exceed the gap limit on an external chain by generating a new address. + +===Account Gap Limit=== + +Account gap limit is currently set to 5. When the software hits an account that contains 20 unused addresses in a row, it will search the the next 4 accounts (while obeying the address gap limit), before stoping discovery. If any transactions are found during this process, discovery is restarted (after finding 20 unused addresses) on the next account index, and the account gap limit is reset. Only when the address gap limit is found consecutively for the account gap limit is discovery stopped. + +==Rationale== + + + ==Examples== {| @@ -213,8 +247,13 @@ Public derivation is used at this level. |m / XY' / 1' / 1' / 1 / 1 |} +==Reference Implementation== + +None at the moment. + ==Acknowledgement== +Special thanks to SomberNight, Craig Raw, David Harding, Jochen Hoenicke, and others for their feedback on the specification. ==References== From ba9f775ef6680cc8834e0787c92edd73705cb803 Mon Sep 17 00:00:00 2001 From: Robert Spigler Date: Mon, 22 Mar 2021 01:01:55 -0400 Subject: [PATCH 10/10] Formatting --- ...Hierarchy for Deterministic Multisignature Wallets.mediawiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modern Hierarchy for Deterministic Multisignature Wallets.mediawiki b/Modern Hierarchy for Deterministic Multisignature Wallets.mediawiki index 8748762f..68eeae01 100644 --- a/Modern Hierarchy for Deterministic Multisignature Wallets.mediawiki +++ b/Modern Hierarchy for Deterministic Multisignature Wallets.mediawiki @@ -50,7 +50,7 @@ m / purpose' / coin_type' / account' / script_type' / change / address_index Rather than following in BIP 44/49/84's path and having a separate BIP per script after P2SH (BIP45), vendors decided to insert script_type' into the derivation path (where P2SH-P2WSH=1, P2WSH=2, Future_Script=3, etc). As described previously, this is unnecessary, as the descriptor sets the script. While it attempts to reduce maintainence work by getting rid of new BIPs-per-script, it still requires maintaining an updated, redundant, script_type list. -The structure proposed later in this paper solves these issues and is quite comprehensive. It allows the handling of multiple accounts, external and internal chains per account, and millions of addresses per chain, in a multi-party multisignature hierarchical deterministic wallet regardless of the script type **Why propose this structure only for multisignature wallets?** Currently, single-sig wallets are able to restore funds using just the master private key data (in the format of BIP39 usually). Even if the user doesn't recall the derivation used, the wallet implementation can iterate through common schemes (BIP44/49/84). With this proposed hierarchy, the user would either have to now backup additional data (the descriptor), or the wallet would have to attempt all script types for every account level when restoring. Because of this, even though the descriptor language handles the signature type just like it does the script type, it is best to restrict this script-agnostic hierarchy to multisignature wallets only. Co-signers in multisignature wallets need to backup all other cosigner public keys anyway in order to restore, so the descriptor provides this information with the benefit of key origin information and error detection.. +The structure proposed later in this paper solves these issues and is quite comprehensive. It allows the handling of multiple accounts, external and internal chains per account, and millions of addresses per chain, in a multi-party multisignature hierarchical deterministic wallet regardless of the script type '''Why propose this structure only for multisignature wallets?''' Currently, single-sig wallets are able to restore funds using just the master private key data (in the format of BIP39 usually). Even if the user doesn't recall the derivation used, the wallet implementation can iterate through common schemes (BIP44/49/84). With this proposed hierarchy, the user would either have to now backup additional data (the descriptor), or the wallet would have to attempt all script types for every account level when restoring. Because of this, even though the descriptor language handles the signature type just like it does the script type, it is best to restrict this script-agnostic hierarchy to multisignature wallets only. Co-signers in multisignature wallets need to backup all other cosigner public keys anyway in order to restore, so the descriptor provides this information with the benefit of key origin information and error detection.. Any script that is supported by descriptors (and the specific wallet implementation) is compatible with this BIP.