/** * Opcode definitions * @see https://en.bitcoin.it/wiki/Script */ declare enum OpCode { OP_RETURN = 106, OP_PUSHDATA1 = 76, OP_0 = 0,// negative OP_1 = 81,// positive OP_2 = 82, OP_3 = 83, OP_4 = 84, OP_5 = 85, OP_6 = 86, OP_7 = 87, OP_8 = 88, OP_9 = 89, OP_10 = 90, OP_11 = 91, OP_12 = 92, OP_13 = 93, OP_14 = 94, OP_15 = 95, OP_16 = 96 } export default OpCode; //# sourceMappingURL=opcode.d.ts.map