Skip to main content

MultisigCommitteeInterface

interface MultisigCommitteeInterface

A multisig committee

A MultisigCommittee is a set of members who collectively control a single Address on the IOTA blockchain. The number of required signatures to authorize the execution of a transaction is determined by (signature_0_weight + signature_1_weight ..) >= threshold.

BCS

The BCS serialized form for this type is defined by the following ABNF:

multisig-committee = (vector multisig-member)
u16 ; threshold

There is also a legacy encoding for this type defined as:

legacy-multisig-committee = (vector legacy-multisig-member)
u16 ; threshold

Inheritors

MultisigCommittee

Functions

NameSummary
deriveAddressabstract fun deriveAddress(): Address
Derive an Address from this MultisigCommittee.
membersabstract fun members(): List<MultisigMember>
The members of the committee
schemeabstract fun scheme(): SignatureScheme
Return the flag for this signature scheme
thresholdabstract fun threshold(): UShort
The total signature weight required to authorize a transaction for the address corresponding to this MultisigCommittee.
validateabstract fun validate()
Checks if the Committee is valid.