Type alias AuthenticationProgramStateMinimum

AuthenticationProgramStateMinimum: {
    instructions: AuthenticationInstruction[];
    ip: number;
}

Type declaration

  • instructions: AuthenticationInstruction[]

    The full list of instructions to be evaluated by the virtual machine.

  • ip: number

    Instruction Pointer – the array index of instructions that will be read to identify the next instruction. Once ip exceeds the last index of instructions (ip === instructions.length), evaluation is complete.

Generated using TypeDoc