A multisig configuration. A set of signers with total "weight" greater than or equal to a "threshold" can authenticate for the configuration.

interface MultisigConfig {
    signers: MultisigSigner[];
    threshold: longnum;
}

Properties

Properties

signers: MultisigSigner[]

The signers.

threshold: longnum

The threshold.