Type alias AuthenticationInstructionPushMalformedData

AuthenticationInstructionPushMalformedData: {
    data: Uint8Array;
    expectedDataBytes: number;
    malformed: true;
    opcode: number;
}

A malformed "push" authentication instruction in which the pushed data is incomplete (the bytecode ends before enough bytes can be read).

Type declaration

  • data: Uint8Array

    The data Uint8Array provided. This instruction is malformed because the length of this Uint8Array is shorter than the expectedDataBytes.

  • expectedDataBytes: number

    The expected number of data bytes for this push operation.

  • malformed: true
  • opcode: number

Generated using TypeDoc