Why Multisig? » Advanced Considerations


Multisig has always been amazing in theory, but in practice it has been too difficult for non-expert users.

Multisig is still not as easy as we would like it to be, but it is getting better every day. It is finally at the point where the security benefits far outweigh the costs for large HODLers. Here are some changes that have made multisig more accessible for mainstream users:

There have been so many hardware wallet vulnerabilities and we expect new ones will continue to be discovered; multisig fundamentally doesn’t change that. The big difference is that a proper multisig scheme allows for 1 (or more) catastrophic failures without putting funds at risk.

Shamir’s Secret Sharing Scheme

Multisig is strictly superior to Shamir’s Secret Sharing Scheme (SSSS), and while SSSS is elegant in theory it is very easy to mess up in practice. SSSS also reintroduces a single point of failure; in order for a key to be generated (or used) it must be recombined in a single place. We prefer to call it Shamir’s Secret Snakeoil. SSSS should only be considered for expert users after you’ve maxed out your multisig scheme (3-of-5 for most use-cases) and need additional protection. For that use-case, you may want to look into SLIP-0039 or alternatively divide 1 (or more) of the BIP39 seed passphrases using Shamir’s Secret Sharing Scheme. The open-source software available to do this is still unfortunately somewhat lacking, but should improve over time.


» Next Section: Pick Quorum