polysig-node-bindings 0.8.0

Nodejs bindings for the polysig library
Documentation
1
2
3
4
5
6
7
8
9
10
//! Node bindings for the polysig library.
#![deny(missing_docs)]
#![forbid(unsafe_code)]

/// Threshold signature protocols.
#[cfg(any(feature = "cggmp", feature = "frost-ed25519"))]
pub mod protocols;

/// Single party signers.
pub mod signers;