FROST

The basic design principle of the Spiderchain are bigger decentralized multisig sizes in order to mathematically secure the bitcoin. On Bitcoin, managing multisig sizes of greater than 15 is non-trivial. One protocol to manage bigger multisig sizes bigger than 15 is called FROST: Flexible Round-Optimized Schnorr Threshold Signatures.

FROST (Flexible Round-Optimized Schnorr Threshold Signatures) is a protocol that minimizes the number of rounds of communication between participants in Schnorr signature schemes, reducing network bandwidth, time, and probability of errors. It requires a maximum of three rounds for signing, even without a trusted signature aggregator or preprocessing stage. It can be used to implement 'n-of-m' threshold signatures represented by a single signature on the blockchain. This saves block space and increases privacy by making them indistinguishable from other, more common spend types.

More information on FROST can be found by reading its official whitepaper and watching the visual explainer below, provided by Blockstream.

FROST notebook

For a notebook on FROST, we refer to the following: https://github.com/0xBEEFCAF3/FROST-Notebook/blob/main/README.md

Last updated