(hex)
| 45 | } |
| 46 | |
| 47 | function getPushOp(hex) { |
| 48 | const data = utils.formatEvenBytes(hex); |
| 49 | const opcode = utils.toHex(95 + data.length / 2); |
| 50 | return `${opcode}${data}`; |
| 51 | } |
| 52 | |
| 53 | function encodeMemory(memory) { |
| 54 | return memory.reduce((bytecode, { index, value }) => { |
no outgoing calls
no test coverage detected