Function generateBytecodeMap
- generate
Bytecode Map(opcodes): {
[opcode: string]: Uint8Array;
} Parameters
opcodes: {
[opcode: string]: unknown;
}An opcode enum, e.g. OpcodesBCH
[opcode: string]: unknown
Returns {
[opcode: string]: Uint8Array;
}[opcode: string]: Uint8Array
Generated using TypeDoc

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