MultiSigned is a blob signed by multiple public keys.

interface SignatureMultiSigned {
    signatures: Signature[];
    untrusted_raw_value: Uint8Array;
}

Properties

signatures: Signature[]

Signatures are the signatures over the blob.

untrusted_raw_value: Uint8Array

Blob is the signed blob.