Skip to main content

jiminy_multisig/
lib.rs

1#![no_std]
2//! # jiminy-multisig
3//!
4//! M-of-N signer threshold checks.
5//!
6//! Verify that at least M out of N configured signers have signed the
7//! current transaction, with built-in duplicate-signer prevention.
8//! No heap allocation -- the signer set is walked in-place.
9
10mod multisig;
11pub use multisig::*;
12pub use pinocchio;