Threshold Schemes in Blockchains and HSMs
See how threshold signatures power custodial wallet security, MPC-based exchanges, and enterprise HSM clusters.
On-Chain Multi-Sig vs Threshold ECDSA
Bitcoin and Ethereum support on-chain multi-signature scripts (P2MS/P2SH/multisig in Solidity). These require t-of-n public keys to co-sign a transaction, verified by the blockchain. The structure is public and transparent: anyone can see that the address requires multiple signers. Threshold ECDSA produces a standard single-key address and a standard single signature, making threshold structure completely invisible on-chain.
Advantages of Threshold ECDSA for Blockchains
Threshold ECDSA advantages over on-chain multi-sig: a single transaction signature (lower gas fees), no multi-sig policy visible on-chain (privacy), compatible with any blockchain that uses ECDSA (including chains without native multi-sig support), and key rotation without changing the blockchain address (since the public key stays the same after a key refresh). These advantages make threshold ECDSA the preferred approach for institutional custody.
All lessons in this course
- Threshold Signature Schemes: Concepts
- Threshold ECDSA: Multi-Party Signing
- Distributed Key Generation Protocols
- Threshold Schemes in Blockchains and HSMs