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
| Name | Summary |
|---|---|
| deriveAddress | abstract fun deriveAddress(): Address Derive an Address from this MultisigCommittee. |
| members | abstract fun members(): List<MultisigMember> The members of the committee |
| scheme | abstract fun scheme(): SignatureScheme Return the flag for this signature scheme |
| threshold | abstract fun threshold(): UShort The total signature weight required to authorize a transaction for the address corresponding to this MultisigCommittee. |
| validate | abstract fun validate() Checks if the Committee is valid. |