Signature for a K-of-N multi-sig transaction.
4 bytes, at most 32 signatures are supported. If Nth bit value is 1, the Nth
signature should be provided in signatures. Bits are read from left to right
A list of signatures
Readonlybitmap32-bit Bitmap representing who signed the transaction
This is represented where each public key can be masked to determine whether the message was signed by that key.
ReadonlysignaturesThe list of underlying Ed25519 signatures
StaticBITMAP_Number of bytes in the bitmap representing who signed the transaction (32-bits)
StaticMAX_Maximum number of Ed25519 signatures supported
StaticcreateHelper method to create a bitmap out of the specified bit positions
The bitmap positions that should be set. A position starts at index 0. Valid position should range between 0 and 31.
bitmap that is 32bit long
Staticdeserialize
Represents a multi-signature transaction using Ed25519 signatures. This class allows for the creation and management of a K-of-N multi-signature scheme, where a specified number of signatures are required to authorize a transaction.
It includes functionality to validate the number of signatures against a bitmap, which indicates which public keys have signed the transaction.