Type alias CompilerOperationSuccessDataSignature

CompilerOperationSuccessDataSignature: CompilerOperationSuccessGeneric & {
    signature: {
        digest: Uint8Array;
        message: Uint8Array;
    };
}

The result of a successful data_signature compiler operation.

Type declaration

  • signature: {
        digest: Uint8Array;
        message: Uint8Array;
    }
    • digest: Uint8Array

      The digest of the raw message signed by a data signature.

    • message: Uint8Array

      The raw message signed by a data signature. This message is hashed once with sha256, and the digest is signed.

Generated using TypeDoc