Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds multisig support #253

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions bip-0044.mediawiki
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,20 @@ 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.

==Multisignature Wallets==

===Purpose===
Because seeds that are part of a multisignature wallet cannot be scanned individually, a different
purpose constant is must be used: 48'.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

typo/grammar

a different purpose constant is must be used


===Address generation===
To generate multisig addresses each party must use the same derivation path of a given address, and the resulting public

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: line length not consistent with rest of file

keys must be lexicographically sorted before creating the redeem script for the address. To generate a P2SH address, the procedures is as follows:
- all the extended public keys of the members of the wallet must be know
- all the extended public keys must be derived to the desired path (for example `m/48'/0'/0'/0/1` for the second external address)
- the resulting public keys must be sorted lexicografically
- the redeem script must be composed, and its hash calculated, as defined in BIP16

==Registered coin types==

These are the default registered coin types for usage in level 2 of BIP44
Expand Down Expand Up @@ -266,6 +280,8 @@ is required. This can be done [[https://github.com/satoshilabs/docs/blob/master/
* [[https://play.google.com/store/apps/details?id=com.bonsai.wallet32|Wallet32 @ Android]] ([[https://github.com/ksedgwic/Wallet32|source]])
* [[https://play.google.com/store/apps/details?id=com.mycelium.wallet|Mycelium Bitcoin Wallet (Android)]] ([[https://github.com/mycelium-com/wallet|source]])
* [[https://maza.club/encompass|Encompass]] ([[https://github.com/mazaclub/encompass|source]])
* [[https://copay.is|Copay]] ([[https://github.com/bitpay/copay|source]])


==Reference==

Expand Down