Type alias InstructionAggregation

InstructionAggregation: {
    instructions: AuthenticationInstruction[];
    lastIp: number;
    range: Range;
}

A group of instructions that when read together are not malformed (contain incomplete push instructions). For example, the CashAssembly 0x03 'a' 'b' 'c' would be malformed if not evaluated together, since the 0x03 becomes OP_PUSHBYTES_3, and the UTF8 literals compile to 0x616263.

Type declaration

Generated using TypeDoc