@defichain/jellyfish-transaction
Advanced tools
Comparing version 0.30.0 to 0.31.0
@@ -1,12 +0,13 @@ | ||
export * from './bitwise'; | ||
export * from './data'; | ||
export * from './constants'; | ||
export * from './control'; | ||
export * from './stack'; | ||
export * from './bitwise'; | ||
export * from './arithmetic'; | ||
export * from './crypto'; | ||
export * from './data'; | ||
export * from './expansion'; | ||
export * from './invalid'; | ||
export * from './mapping'; | ||
export * from './opcode'; | ||
export * from './stack'; | ||
export * from './dftx'; | ||
export * from './expansion'; | ||
export * from './invalid'; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -13,13 +13,14 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
__exportStar(require("./bitwise"), exports); | ||
__exportStar(require("./data"), exports); | ||
__exportStar(require("./constants"), exports); | ||
__exportStar(require("./control"), exports); | ||
__exportStar(require("./stack"), exports); | ||
__exportStar(require("./bitwise"), exports); | ||
__exportStar(require("./arithmetic"), exports); | ||
__exportStar(require("./crypto"), exports); | ||
__exportStar(require("./data"), exports); | ||
__exportStar(require("./expansion"), exports); | ||
__exportStar(require("./invalid"), exports); | ||
__exportStar(require("./mapping"), exports); | ||
__exportStar(require("./opcode"), exports); | ||
__exportStar(require("./stack"), exports); | ||
__exportStar(require("./dftx"), exports); | ||
__exportStar(require("./expansion"), exports); | ||
__exportStar(require("./invalid"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -8,6 +8,7 @@ /// <reference types="node" /> | ||
import * as constants from './constants'; | ||
import * as crypto from './crypto'; | ||
import * as control from './control'; | ||
import * as stack from './stack'; | ||
import * as bitwise from './bitwise'; | ||
import * as arithmetic from './arithmetic'; | ||
import * as crypto from './crypto'; | ||
import * as expansion from './expansion'; | ||
@@ -174,2 +175,29 @@ import * as invalid from './invalid'; | ||
OP_RESERVED2: bitwise.OP_RESERVED2; | ||
OP_1ADD: arithmetic.OP_1ADD; | ||
OP_1SUB: arithmetic.OP_1SUB; | ||
OP_2MUL: arithmetic.OP_2MUL; | ||
OP_2DIV: arithmetic.OP_2DIV; | ||
OP_NEGATE: arithmetic.OP_NEGATE; | ||
OP_ABS: arithmetic.OP_ABS; | ||
OP_NOT: arithmetic.OP_NOT; | ||
OP_0NOTEQUAL: arithmetic.OP_0NOTEQUAL; | ||
OP_ADD: arithmetic.OP_ADD; | ||
OP_SUB: arithmetic.OP_SUB; | ||
OP_MUL: arithmetic.OP_MUL; | ||
OP_DIV: arithmetic.OP_DIV; | ||
OP_MOD: arithmetic.OP_MOD; | ||
OP_LSHIFT: arithmetic.OP_LSHIFT; | ||
OP_RSHIFT: arithmetic.OP_RSHIFT; | ||
OP_BOOLAND: arithmetic.OP_BOOLAND; | ||
OP_BOOLOR: arithmetic.OP_BOOLOR; | ||
OP_NUMEQUAL: arithmetic.OP_NUMEQUAL; | ||
OP_NUMEQUALVERIFY: arithmetic.OP_NUMEQUALVERIFY; | ||
OP_NUMNOTEQUAL: arithmetic.OP_NUMNOTEQUAL; | ||
OP_LESSTHAN: arithmetic.OP_LESSTHAN; | ||
OP_GREATERTHAN: arithmetic.OP_GREATERTHAN; | ||
OP_LESSTHANOREQUAL: arithmetic.OP_LESSTHANOREQUAL; | ||
OP_GREATERTHANOREQUAL: arithmetic.OP_GREATERTHANOREQUAL; | ||
OP_MIN: arithmetic.OP_MIN; | ||
OP_MAX: arithmetic.OP_MAX; | ||
OP_WITHIN: arithmetic.OP_WITHIN; | ||
OP_RIPEMD160: crypto.OP_RIPEMD160; | ||
@@ -176,0 +204,0 @@ OP_SHA1: crypto.OP_SHA1; |
@@ -31,6 +31,7 @@ "use strict"; | ||
const constants = __importStar(require("./constants")); | ||
const crypto = __importStar(require("./crypto")); | ||
const control = __importStar(require("./control")); | ||
const stack = __importStar(require("./stack")); | ||
const bitwise = __importStar(require("./bitwise")); | ||
const arithmetic = __importStar(require("./arithmetic")); | ||
const crypto = __importStar(require("./crypto")); | ||
const expansion = __importStar(require("./expansion")); | ||
@@ -389,29 +390,29 @@ const invalid = __importStar(require("./invalid")); | ||
// numeric | ||
// OP_1ADD = 0x8b, | ||
// OP_1SUB = 0x8c, | ||
// OP_2MUL = 0x8d, | ||
// OP_2DIV = 0x8e, | ||
// OP_NEGATE = 0x8f, | ||
// OP_ABS = 0x90, | ||
// OP_NOT = 0x91, | ||
// OP_0NOTEQUAL = 0x92, | ||
// OP_ADD = 0x93, | ||
// OP_SUB = 0x94, | ||
// OP_MUL = 0x95, | ||
// OP_DIV = 0x96, | ||
// OP_MOD = 0x97, | ||
// OP_LSHIFT = 0x98, | ||
// OP_RSHIFT = 0x99, | ||
// OP_BOOLAND = 0x9a, | ||
// OP_BOOLOR = 0x9b, | ||
// OP_NUMEQUAL = 0x9c, | ||
// OP_NUMEQUALVERIFY = 0x9d, | ||
// OP_NUMNOTEQUAL = 0x9e, | ||
// OP_LESSTHAN = 0x9f, | ||
// OP_GREATERTHAN = 0xa0, | ||
// OP_LESSTHANOREQUAL = 0xa1, | ||
// OP_GREATERTHANOREQUAL = 0xa2, | ||
// OP_MIN = 0xa3, | ||
// OP_MAX = 0xa4, | ||
// OP_WITHIN = 0xa5, | ||
OP_1ADD: new arithmetic.OP_1ADD(), | ||
OP_1SUB: new arithmetic.OP_1SUB(), | ||
OP_2MUL: new arithmetic.OP_2MUL(), | ||
OP_2DIV: new arithmetic.OP_2DIV(), | ||
OP_NEGATE: new arithmetic.OP_NEGATE(), | ||
OP_ABS: new arithmetic.OP_ABS(), | ||
OP_NOT: new arithmetic.OP_NOT(), | ||
OP_0NOTEQUAL: new arithmetic.OP_0NOTEQUAL(), | ||
OP_ADD: new arithmetic.OP_ADD(), | ||
OP_SUB: new arithmetic.OP_SUB(), | ||
OP_MUL: new arithmetic.OP_MUL(), | ||
OP_DIV: new arithmetic.OP_DIV(), | ||
OP_MOD: new arithmetic.OP_MOD(), | ||
OP_LSHIFT: new arithmetic.OP_LSHIFT(), | ||
OP_RSHIFT: new arithmetic.OP_RSHIFT(), | ||
OP_BOOLAND: new arithmetic.OP_BOOLAND(), | ||
OP_BOOLOR: new arithmetic.OP_BOOLOR(), | ||
OP_NUMEQUAL: new arithmetic.OP_NUMEQUAL(), | ||
OP_NUMEQUALVERIFY: new arithmetic.OP_NUMEQUALVERIFY(), | ||
OP_NUMNOTEQUAL: new arithmetic.OP_NUMNOTEQUAL(), | ||
OP_LESSTHAN: new arithmetic.OP_LESSTHAN(), | ||
OP_GREATERTHAN: new arithmetic.OP_GREATERTHAN(), | ||
OP_LESSTHANOREQUAL: new arithmetic.OP_LESSTHANOREQUAL(), | ||
OP_GREATERTHANOREQUAL: new arithmetic.OP_GREATERTHANOREQUAL(), | ||
OP_MIN: new arithmetic.OP_MIN(), | ||
OP_MAX: new arithmetic.OP_MAX(), | ||
OP_WITHIN: new arithmetic.OP_WITHIN(), | ||
// crypto | ||
@@ -507,2 +508,30 @@ OP_RIPEMD160: new crypto.OP_RIPEMD160(), | ||
0x8a: exports.OP_CODES.OP_RESERVED2, | ||
// numeric | ||
0x8b: exports.OP_CODES.OP_1ADD, | ||
0x8c: exports.OP_CODES.OP_1SUB, | ||
0x8d: exports.OP_CODES.OP_2MUL, | ||
0x8e: exports.OP_CODES.OP_2DIV, | ||
0x8f: exports.OP_CODES.OP_NEGATE, | ||
0x90: exports.OP_CODES.OP_ABS, | ||
0x91: exports.OP_CODES.OP_NOT, | ||
0x92: exports.OP_CODES.OP_0NOTEQUAL, | ||
0x93: exports.OP_CODES.OP_ADD, | ||
0x94: exports.OP_CODES.OP_SUB, | ||
0x95: exports.OP_CODES.OP_MUL, | ||
0x96: exports.OP_CODES.OP_DIV, | ||
0x97: exports.OP_CODES.OP_MOD, | ||
0x98: exports.OP_CODES.OP_LSHIFT, | ||
0x99: exports.OP_CODES.OP_RSHIFT, | ||
0x9a: exports.OP_CODES.OP_BOOLAND, | ||
0x9b: exports.OP_CODES.OP_BOOLOR, | ||
0x9c: exports.OP_CODES.OP_NUMEQUAL, | ||
0x9d: exports.OP_CODES.OP_NUMEQUALVERIFY, | ||
0x9e: exports.OP_CODES.OP_NUMNOTEQUAL, | ||
0x9f: exports.OP_CODES.OP_LESSTHAN, | ||
0xa0: exports.OP_CODES.OP_GREATERTHAN, | ||
0xa1: exports.OP_CODES.OP_LESSTHANOREQUAL, | ||
0xa2: exports.OP_CODES.OP_GREATERTHANOREQUAL, | ||
0xa3: exports.OP_CODES.OP_MIN, | ||
0xa4: exports.OP_CODES.OP_MAX, | ||
0xa5: exports.OP_CODES.OP_WITHIN, | ||
// crypto | ||
@@ -509,0 +538,0 @@ 0xa6: exports.OP_CODES.OP_RIPEMD160, |
{ | ||
"private": false, | ||
"name": "@defichain/jellyfish-transaction", | ||
"version": "0.30.0", | ||
"version": "0.31.0", | ||
"description": "A collection of TypeScript + JavaScript tools and libraries for DeFi Blockchain developers to build decentralized finance on Bitcoin", | ||
@@ -41,5 +41,5 @@ "keywords": [ | ||
"dependencies": { | ||
"@defichain/jellyfish-crypto": "^0.30.0", | ||
"@defichain/jellyfish-crypto": "^0.31.0", | ||
"smart-buffer": "^4.1.0" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
304509
134
5621
+ Added@defichain/jellyfish-crypto@0.31.0(transitive)
- Removed@defichain/jellyfish-crypto@0.30.0(transitive)