slpjs-regtest-testing
Version:
Simple Ledger Protocol (SLP) JavaScript Library
19 lines (18 loc) • 379 B
JavaScript
;
exports.__esModule = 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;