lotus-sdk
Version:
Central repository for several classes of tools for integrating with, and building for, the Lotusia ecosystem
23 lines • 387 B
TypeScript
declare enum OpCode {
OP_RETURN = 106,
OP_PUSHDATA1 = 76,
OP_0 = 0,
OP_1 = 81,
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