slpjs
Version:
Simple Ledger Protocol (SLP) JavaScript Library
19 lines • 450 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Script = void 0;
var Script = /** @class */ (function () {
function Script() {
}
Script.opcodes = {
OP_0: 0,
OP_16: 96,
OP_PUSHDATA1: 76,
OP_PUSHDATA2: 77,
OP_PUSHDATA4: 78,
OP_1NEGATE: 79,
OP_RETURN: 106,
};
return Script;
}());
exports.Script = Script;
//# sourceMappingURL=script.js.map