Function generateBytecodeMap

  • Create an object where each key is an opcode identifier and each value is the bytecode value (Uint8Array) it represents.

    Parameters

    • opcodes: {
          [opcode: string]: unknown;
      }

      An opcode enum, e.g. OpcodesBCH

      • [opcode: string]: unknown

    Returns {
        [opcode: string]: Uint8Array;
    }

    • [opcode: string]: Uint8Array

Generated using TypeDoc