@airgap/bitcoin 0.13.9-beta.1 → 0.13.9-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/airgap-coinlib-bitcoin.min.js +511 -563
- package/package.json +4 -4
|
@@ -14352,7 +14352,7 @@ Writable.prototype._destroy = function (err, cb) {
|
|
|
14352
14352
|
cb(err);
|
|
14353
14353
|
};
|
|
14354
14354
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
14355
|
-
},{"../errors":52,"./_stream_duplex":53,"./internal/streams/destroy":60,"./internal/streams/state":64,"./internal/streams/stream":65,"_process":171,"buffer":67,"inherits":148,"util-deprecate":
|
|
14355
|
+
},{"../errors":52,"./_stream_duplex":53,"./internal/streams/destroy":60,"./internal/streams/state":64,"./internal/streams/stream":65,"_process":171,"buffer":67,"inherits":148,"util-deprecate":208}],58:[function(require,module,exports){
|
|
14356
14356
|
(function (process){(function (){
|
|
14357
14357
|
'use strict';
|
|
14358
14358
|
|
|
@@ -23200,6 +23200,8 @@ var INTRINSICS = {
|
|
|
23200
23200
|
'%AsyncIteratorPrototype%': needsEval,
|
|
23201
23201
|
'%Atomics%': typeof Atomics === 'undefined' ? undefined : Atomics,
|
|
23202
23202
|
'%BigInt%': typeof BigInt === 'undefined' ? undefined : BigInt,
|
|
23203
|
+
'%BigInt64Array%': typeof BigInt64Array === 'undefined' ? undefined : BigInt64Array,
|
|
23204
|
+
'%BigUint64Array%': typeof BigUint64Array === 'undefined' ? undefined : BigUint64Array,
|
|
23203
23205
|
'%Boolean%': Boolean,
|
|
23204
23206
|
'%DataView%': typeof DataView === 'undefined' ? undefined : DataView,
|
|
23205
23207
|
'%Date%': Date,
|
|
@@ -23255,6 +23257,14 @@ var INTRINSICS = {
|
|
|
23255
23257
|
'%WeakSet%': typeof WeakSet === 'undefined' ? undefined : WeakSet
|
|
23256
23258
|
};
|
|
23257
23259
|
|
|
23260
|
+
try {
|
|
23261
|
+
null.error; // eslint-disable-line no-unused-expressions
|
|
23262
|
+
} catch (e) {
|
|
23263
|
+
// https://github.com/tc39/proposal-shadowrealm/pull/384#issuecomment-1364264229
|
|
23264
|
+
var errorProto = getProto(getProto(e));
|
|
23265
|
+
INTRINSICS['%Error.prototype%'] = errorProto;
|
|
23266
|
+
}
|
|
23267
|
+
|
|
23258
23268
|
var doEval = function doEval(name) {
|
|
23259
23269
|
var value;
|
|
23260
23270
|
if (name === '%AsyncFunction%') {
|
|
@@ -23673,7 +23683,7 @@ arguments[4][55][0].apply(exports,arguments)
|
|
|
23673
23683
|
arguments[4][56][0].apply(exports,arguments)
|
|
23674
23684
|
},{"../errors":119,"./_stream_duplex":120,"dup":56,"inherits":148}],124:[function(require,module,exports){
|
|
23675
23685
|
arguments[4][57][0].apply(exports,arguments)
|
|
23676
|
-
},{"../errors":119,"./_stream_duplex":120,"./internal/streams/destroy":127,"./internal/streams/state":131,"./internal/streams/stream":132,"_process":171,"buffer":67,"dup":57,"inherits":148,"util-deprecate":
|
|
23686
|
+
},{"../errors":119,"./_stream_duplex":120,"./internal/streams/destroy":127,"./internal/streams/state":131,"./internal/streams/stream":132,"_process":171,"buffer":67,"dup":57,"inherits":148,"util-deprecate":208}],125:[function(require,module,exports){
|
|
23677
23687
|
arguments[4][58][0].apply(exports,arguments)
|
|
23678
23688
|
},{"./end-of-stream":128,"_process":171,"dup":58}],126:[function(require,module,exports){
|
|
23679
23689
|
arguments[4][59][0].apply(exports,arguments)
|
|
@@ -25155,6 +25165,29 @@ if (typeof Object.create === 'function') {
|
|
|
25155
25165
|
}
|
|
25156
25166
|
|
|
25157
25167
|
},{}],149:[function(require,module,exports){
|
|
25168
|
+
/*!
|
|
25169
|
+
* Determine if an object is a Buffer
|
|
25170
|
+
*
|
|
25171
|
+
* @author Feross Aboukhadijeh <https://feross.org>
|
|
25172
|
+
* @license MIT
|
|
25173
|
+
*/
|
|
25174
|
+
|
|
25175
|
+
// The _isBuffer check is for Safari 5-7 support, because it's missing
|
|
25176
|
+
// Object.prototype.constructor. Remove this eventually
|
|
25177
|
+
module.exports = function (obj) {
|
|
25178
|
+
return obj != null && (isBuffer(obj) || isSlowBuffer(obj) || !!obj._isBuffer)
|
|
25179
|
+
}
|
|
25180
|
+
|
|
25181
|
+
function isBuffer (obj) {
|
|
25182
|
+
return !!obj.constructor && typeof obj.constructor.isBuffer === 'function' && obj.constructor.isBuffer(obj)
|
|
25183
|
+
}
|
|
25184
|
+
|
|
25185
|
+
// For Node v0.10 support. Remove this eventually.
|
|
25186
|
+
function isSlowBuffer (obj) {
|
|
25187
|
+
return typeof obj.readFloatLE === 'function' && typeof obj.slice === 'function' && isBuffer(obj.slice(0, 0))
|
|
25188
|
+
}
|
|
25189
|
+
|
|
25190
|
+
},{}],150:[function(require,module,exports){
|
|
25158
25191
|
'use strict';
|
|
25159
25192
|
|
|
25160
25193
|
var hasToStringTag = require('has-tostringtag/shams')();
|
|
@@ -25189,30 +25222,7 @@ isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests
|
|
|
25189
25222
|
|
|
25190
25223
|
module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
|
|
25191
25224
|
|
|
25192
|
-
},{"call-bind/callBound":69,"has-tostringtag/shams":116}],
|
|
25193
|
-
/*!
|
|
25194
|
-
* Determine if an object is a Buffer
|
|
25195
|
-
*
|
|
25196
|
-
* @author Feross Aboukhadijeh <https://feross.org>
|
|
25197
|
-
* @license MIT
|
|
25198
|
-
*/
|
|
25199
|
-
|
|
25200
|
-
// The _isBuffer check is for Safari 5-7 support, because it's missing
|
|
25201
|
-
// Object.prototype.constructor. Remove this eventually
|
|
25202
|
-
module.exports = function (obj) {
|
|
25203
|
-
return obj != null && (isBuffer(obj) || isSlowBuffer(obj) || !!obj._isBuffer)
|
|
25204
|
-
}
|
|
25205
|
-
|
|
25206
|
-
function isBuffer (obj) {
|
|
25207
|
-
return !!obj.constructor && typeof obj.constructor.isBuffer === 'function' && obj.constructor.isBuffer(obj)
|
|
25208
|
-
}
|
|
25209
|
-
|
|
25210
|
-
// For Node v0.10 support. Remove this eventually.
|
|
25211
|
-
function isSlowBuffer (obj) {
|
|
25212
|
-
return typeof obj.readFloatLE === 'function' && typeof obj.slice === 'function' && isBuffer(obj.slice(0, 0))
|
|
25213
|
-
}
|
|
25214
|
-
|
|
25215
|
-
},{}],151:[function(require,module,exports){
|
|
25225
|
+
},{"call-bind/callBound":69,"has-tostringtag/shams":116}],151:[function(require,module,exports){
|
|
25216
25226
|
'use strict';
|
|
25217
25227
|
|
|
25218
25228
|
var fnToStr = Function.prototype.toString;
|
|
@@ -28381,7 +28391,7 @@ arguments[4][55][0].apply(exports,arguments)
|
|
|
28381
28391
|
arguments[4][56][0].apply(exports,arguments)
|
|
28382
28392
|
},{"../errors":193,"./_stream_duplex":194,"dup":56,"inherits":148}],198:[function(require,module,exports){
|
|
28383
28393
|
arguments[4][57][0].apply(exports,arguments)
|
|
28384
|
-
},{"../errors":193,"./_stream_duplex":194,"./internal/streams/destroy":201,"./internal/streams/state":205,"./internal/streams/stream":206,"_process":171,"buffer":67,"dup":57,"inherits":148,"util-deprecate":
|
|
28394
|
+
},{"../errors":193,"./_stream_duplex":194,"./internal/streams/destroy":201,"./internal/streams/state":205,"./internal/streams/stream":206,"_process":171,"buffer":67,"dup":57,"inherits":148,"util-deprecate":208}],199:[function(require,module,exports){
|
|
28385
28395
|
arguments[4][58][0].apply(exports,arguments)
|
|
28386
28396
|
},{"./end-of-stream":202,"_process":171,"dup":58}],200:[function(require,module,exports){
|
|
28387
28397
|
arguments[4][59][0].apply(exports,arguments)
|
|
@@ -28694,71 +28704,7 @@ function simpleWrite(buf) {
|
|
|
28694
28704
|
function simpleEnd(buf) {
|
|
28695
28705
|
return buf && buf.length ? this.write(buf) : '';
|
|
28696
28706
|
}
|
|
28697
|
-
},{"safe-buffer":
|
|
28698
|
-
/* eslint-disable node/no-deprecated-api */
|
|
28699
|
-
var buffer = require('buffer')
|
|
28700
|
-
var Buffer = buffer.Buffer
|
|
28701
|
-
|
|
28702
|
-
// alternative to using Object.keys for old browsers
|
|
28703
|
-
function copyProps (src, dst) {
|
|
28704
|
-
for (var key in src) {
|
|
28705
|
-
dst[key] = src[key]
|
|
28706
|
-
}
|
|
28707
|
-
}
|
|
28708
|
-
if (Buffer.from && Buffer.alloc && Buffer.allocUnsafe && Buffer.allocUnsafeSlow) {
|
|
28709
|
-
module.exports = buffer
|
|
28710
|
-
} else {
|
|
28711
|
-
// Copy properties from require('buffer')
|
|
28712
|
-
copyProps(buffer, exports)
|
|
28713
|
-
exports.Buffer = SafeBuffer
|
|
28714
|
-
}
|
|
28715
|
-
|
|
28716
|
-
function SafeBuffer (arg, encodingOrOffset, length) {
|
|
28717
|
-
return Buffer(arg, encodingOrOffset, length)
|
|
28718
|
-
}
|
|
28719
|
-
|
|
28720
|
-
// Copy static methods from Buffer
|
|
28721
|
-
copyProps(Buffer, SafeBuffer)
|
|
28722
|
-
|
|
28723
|
-
SafeBuffer.from = function (arg, encodingOrOffset, length) {
|
|
28724
|
-
if (typeof arg === 'number') {
|
|
28725
|
-
throw new TypeError('Argument must not be a number')
|
|
28726
|
-
}
|
|
28727
|
-
return Buffer(arg, encodingOrOffset, length)
|
|
28728
|
-
}
|
|
28729
|
-
|
|
28730
|
-
SafeBuffer.alloc = function (size, fill, encoding) {
|
|
28731
|
-
if (typeof size !== 'number') {
|
|
28732
|
-
throw new TypeError('Argument must be a number')
|
|
28733
|
-
}
|
|
28734
|
-
var buf = Buffer(size)
|
|
28735
|
-
if (fill !== undefined) {
|
|
28736
|
-
if (typeof encoding === 'string') {
|
|
28737
|
-
buf.fill(fill, encoding)
|
|
28738
|
-
} else {
|
|
28739
|
-
buf.fill(fill)
|
|
28740
|
-
}
|
|
28741
|
-
} else {
|
|
28742
|
-
buf.fill(0)
|
|
28743
|
-
}
|
|
28744
|
-
return buf
|
|
28745
|
-
}
|
|
28746
|
-
|
|
28747
|
-
SafeBuffer.allocUnsafe = function (size) {
|
|
28748
|
-
if (typeof size !== 'number') {
|
|
28749
|
-
throw new TypeError('Argument must be a number')
|
|
28750
|
-
}
|
|
28751
|
-
return Buffer(size)
|
|
28752
|
-
}
|
|
28753
|
-
|
|
28754
|
-
SafeBuffer.allocUnsafeSlow = function (size) {
|
|
28755
|
-
if (typeof size !== 'number') {
|
|
28756
|
-
throw new TypeError('Argument must be a number')
|
|
28757
|
-
}
|
|
28758
|
-
return buffer.SlowBuffer(size)
|
|
28759
|
-
}
|
|
28760
|
-
|
|
28761
|
-
},{"buffer":67}],209:[function(require,module,exports){
|
|
28707
|
+
},{"safe-buffer":182}],208:[function(require,module,exports){
|
|
28762
28708
|
(function (global){(function (){
|
|
28763
28709
|
|
|
28764
28710
|
/**
|
|
@@ -28829,9 +28775,9 @@ function config (name) {
|
|
|
28829
28775
|
}
|
|
28830
28776
|
|
|
28831
28777
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
28832
|
-
},{}],
|
|
28778
|
+
},{}],209:[function(require,module,exports){
|
|
28833
28779
|
arguments[4][18][0].apply(exports,arguments)
|
|
28834
|
-
},{"dup":18}],
|
|
28780
|
+
},{"dup":18}],210:[function(require,module,exports){
|
|
28835
28781
|
// Currently in sync with Node.js lib/internal/util/types.js
|
|
28836
28782
|
// https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9
|
|
28837
28783
|
|
|
@@ -29167,7 +29113,7 @@ exports.isAnyArrayBuffer = isAnyArrayBuffer;
|
|
|
29167
29113
|
});
|
|
29168
29114
|
});
|
|
29169
29115
|
|
|
29170
|
-
},{"is-arguments":
|
|
29116
|
+
},{"is-arguments":150,"is-generator-function":152,"is-typed-array":153,"which-typed-array":212}],211:[function(require,module,exports){
|
|
29171
29117
|
(function (process){(function (){
|
|
29172
29118
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
29173
29119
|
//
|
|
@@ -29886,7 +29832,7 @@ function callbackify(original) {
|
|
|
29886
29832
|
exports.callbackify = callbackify;
|
|
29887
29833
|
|
|
29888
29834
|
}).call(this)}).call(this,require('_process'))
|
|
29889
|
-
},{"./support/isBuffer":
|
|
29835
|
+
},{"./support/isBuffer":209,"./support/types":210,"_process":171,"inherits":148}],212:[function(require,module,exports){
|
|
29890
29836
|
(function (global){(function (){
|
|
29891
29837
|
'use strict';
|
|
29892
29838
|
|
|
@@ -29945,7 +29891,7 @@ module.exports = function whichTypedArray(value) {
|
|
|
29945
29891
|
};
|
|
29946
29892
|
|
|
29947
29893
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
29948
|
-
},{"available-typed-arrays":20,"call-bind/callBound":69,"for-each":109,"gopd":113,"has-tostringtag/shams":116,"is-typed-array":153}],
|
|
29894
|
+
},{"available-typed-arrays":20,"call-bind/callBound":69,"for-each":109,"gopd":113,"has-tostringtag/shams":116,"is-typed-array":153}],213:[function(require,module,exports){
|
|
29949
29895
|
"use strict";
|
|
29950
29896
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
29951
29897
|
if (k2 === undefined) k2 = k;
|
|
@@ -29964,7 +29910,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
29964
29910
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29965
29911
|
__exportStar(require("./v0"), exports);
|
|
29966
29912
|
|
|
29967
|
-
},{"./v0":
|
|
29913
|
+
},{"./v0":214}],214:[function(require,module,exports){
|
|
29968
29914
|
"use strict";
|
|
29969
29915
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29970
29916
|
exports.BitcoinSegwitAddress = exports.BitcoinSegwitProtocol = exports.BitcoinAddress = exports.BitcoinProtocolOptions = exports.BitcoinProtocolConfig = exports.BitcoinProtocolNetwork = exports.BlockcypherBlockExplorer = exports.BitcoinProtocolNetworkExtras = exports.BitcoinCryptoClient = exports.BitcoinTestnetProtocol = exports.BitcoinProtocol = void 0;
|
|
@@ -29999,7 +29945,7 @@ serializer_1.SerializerV3.addSchema(serializer_1.IACMessageType.TransactionSignR
|
|
|
29999
29945
|
serializer_1.Serializer.addValidator(coinlib_core_1.MainProtocolSymbols.BTC, new transaction_validator_1.BitcoinTransactionValidatorFactoryV2());
|
|
30000
29946
|
serializer_1.SerializerV3.addValidator(coinlib_core_1.MainProtocolSymbols.BTC, new transaction_validator_1.BitcoinTransactionValidatorFactory());
|
|
30001
29947
|
|
|
30002
|
-
},{"./protocol/BitcoinAddress":
|
|
29948
|
+
},{"./protocol/BitcoinAddress":215,"./protocol/BitcoinCryptoClient":216,"./protocol/BitcoinProtocol":217,"./protocol/BitcoinProtocolOptions":218,"./protocol/BitcoinSegwitAddress":219,"./protocol/BitcoinSegwitProtocol":220,"./protocol/BitcoinTestnetProtocol":221,"./serializer/schemas/v2/transaction-sign-request-bitcoin.json":222,"./serializer/schemas/v2/transaction-sign-response-bitcoin.json":223,"./serializer/schemas/v3/transaction-sign-request-bitcoin-segwit.json":224,"./serializer/schemas/v3/transaction-sign-request-bitcoin.json":225,"./serializer/schemas/v3/transaction-sign-response-bitcoin-segwit.json":226,"./serializer/schemas/v3/transaction-sign-response-bitcoin.json":227,"./serializer/validators/transaction-validator":228,"@airgap/coinlib-core":608,"@airgap/serializer":626}],215:[function(require,module,exports){
|
|
30003
29949
|
"use strict";
|
|
30004
29950
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30005
29951
|
exports.BitcoinAddress = void 0;
|
|
@@ -30023,7 +29969,7 @@ var BitcoinAddress = /** @class */ (function () {
|
|
|
30023
29969
|
}());
|
|
30024
29970
|
exports.BitcoinAddress = BitcoinAddress;
|
|
30025
29971
|
|
|
30026
|
-
},{}],
|
|
29972
|
+
},{}],216:[function(require,module,exports){
|
|
30027
29973
|
(function (Buffer){(function (){
|
|
30028
29974
|
"use strict";
|
|
30029
29975
|
var __extends = (this && this.__extends) || (function () {
|
|
@@ -30117,7 +30063,7 @@ var BitcoinCryptoClient = /** @class */ (function (_super) {
|
|
|
30117
30063
|
exports.BitcoinCryptoClient = BitcoinCryptoClient;
|
|
30118
30064
|
|
|
30119
30065
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
30120
|
-
},{"@airgap/coinlib-core/protocols/Secp256k1CryptoClient":
|
|
30066
|
+
},{"@airgap/coinlib-core/protocols/Secp256k1CryptoClient":611,"buffer":67}],217:[function(require,module,exports){
|
|
30121
30067
|
(function (Buffer){(function (){
|
|
30122
30068
|
"use strict";
|
|
30123
30069
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -31183,7 +31129,7 @@ var BitcoinProtocol = /** @class */ (function () {
|
|
|
31183
31129
|
exports.BitcoinProtocol = BitcoinProtocol;
|
|
31184
31130
|
|
|
31185
31131
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
31186
|
-
},{"./BitcoinAddress":
|
|
31132
|
+
},{"./BitcoinAddress":215,"./BitcoinCryptoClient":216,"./BitcoinProtocolOptions":218,"@airgap/coinlib-core/dependencies/src/axios-0.19.0/index":399,"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":431,"@airgap/coinlib-core/dependencies/src/bip39-2.5.0/index":432,"@airgap/coinlib-core/dependencies/src/bitcoinjs-message-2.1.1/index":444,"@airgap/coinlib-core/errors":607,"@airgap/coinlib-core/errors/coinlib-error":606,"@airgap/coinlib-core/utils/ProtocolSymbols":616,"buffer":67}],218:[function(require,module,exports){
|
|
31187
31133
|
"use strict";
|
|
31188
31134
|
var __extends = (this && this.__extends) || (function () {
|
|
31189
31135
|
var extendStatics = function (d, b) {
|
|
@@ -31332,7 +31278,7 @@ var BitcoinProtocolOptions = /** @class */ (function () {
|
|
|
31332
31278
|
}());
|
|
31333
31279
|
exports.BitcoinProtocolOptions = BitcoinProtocolOptions;
|
|
31334
31280
|
|
|
31335
|
-
},{"@airgap/coinlib-core/dependencies/src/bitgo-utxo-lib-5d91049fd7a988382df81c8260e244ee56d57aac/src/index":
|
|
31281
|
+
},{"@airgap/coinlib-core/dependencies/src/bitgo-utxo-lib-5d91049fd7a988382df81c8260e244ee56d57aac/src/index":456,"@airgap/coinlib-core/utils/ProtocolNetwork":615}],219:[function(require,module,exports){
|
|
31336
31282
|
"use strict";
|
|
31337
31283
|
var __extends = (this && this.__extends) || (function () {
|
|
31338
31284
|
var extendStatics = function (d, b) {
|
|
@@ -31374,7 +31320,7 @@ var BitcoinSegwitAddress = /** @class */ (function (_super) {
|
|
|
31374
31320
|
}(BitcoinAddress_1.BitcoinAddress));
|
|
31375
31321
|
exports.BitcoinSegwitAddress = BitcoinSegwitAddress;
|
|
31376
31322
|
|
|
31377
|
-
},{"./BitcoinAddress":
|
|
31323
|
+
},{"./BitcoinAddress":215}],220:[function(require,module,exports){
|
|
31378
31324
|
(function (Buffer){(function (){
|
|
31379
31325
|
"use strict";
|
|
31380
31326
|
var __extends = (this && this.__extends) || (function () {
|
|
@@ -31918,7 +31864,7 @@ var BitcoinSegwitProtocol = /** @class */ (function (_super) {
|
|
|
31918
31864
|
exports.BitcoinSegwitProtocol = BitcoinSegwitProtocol;
|
|
31919
31865
|
|
|
31920
31866
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
31921
|
-
},{"./BitcoinProtocol":
|
|
31867
|
+
},{"./BitcoinProtocol":217,"./BitcoinProtocolOptions":218,"./BitcoinSegwitAddress":219,"@airgap/coinlib-core/dependencies/src/axios-0.19.0/index":399,"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":431,"@airgap/coinlib-core/dependencies/src/bip39-2.5.0/index":432,"@airgap/coinlib-core/dependencies/src/bs58check-2.1.2":492,"@airgap/coinlib-core/utils/ProtocolSymbols":616,"bitcoinjs-lib":273,"buffer":67}],221:[function(require,module,exports){
|
|
31922
31868
|
"use strict";
|
|
31923
31869
|
var __extends = (this && this.__extends) || (function () {
|
|
31924
31870
|
var extendStatics = function (d, b) {
|
|
@@ -31977,7 +31923,7 @@ var BitcoinTestnetProtocol = /** @class */ (function (_super) {
|
|
|
31977
31923
|
}(BitcoinProtocol_1.BitcoinProtocol));
|
|
31978
31924
|
exports.BitcoinTestnetProtocol = BitcoinTestnetProtocol;
|
|
31979
31925
|
|
|
31980
|
-
},{"./BitcoinProtocol":
|
|
31926
|
+
},{"./BitcoinProtocol":217,"./BitcoinProtocolOptions":218,"@airgap/coinlib-core/dependencies/src/bitgo-utxo-lib-5d91049fd7a988382df81c8260e244ee56d57aac/src/index":456,"@airgap/coinlib-core/utils/ProtocolNetwork":615}],222:[function(require,module,exports){
|
|
31981
31927
|
module.exports={
|
|
31982
31928
|
"$ref": "#/definitions/UnsignedBitcoinTransaction",
|
|
31983
31929
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
@@ -32052,7 +31998,7 @@ module.exports={
|
|
|
32052
31998
|
}
|
|
32053
31999
|
}
|
|
32054
32000
|
|
|
32055
|
-
},{}],
|
|
32001
|
+
},{}],223:[function(require,module,exports){
|
|
32056
32002
|
module.exports={
|
|
32057
32003
|
"$ref": "#/definitions/SignedBitcoinTransaction",
|
|
32058
32004
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
@@ -32091,7 +32037,7 @@ module.exports={
|
|
|
32091
32037
|
}
|
|
32092
32038
|
}
|
|
32093
32039
|
|
|
32094
|
-
},{}],
|
|
32040
|
+
},{}],224:[function(require,module,exports){
|
|
32095
32041
|
module.exports={
|
|
32096
32042
|
"$ref": "#/definitions/UnsignedBitcoinSegwitTransaction",
|
|
32097
32043
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
@@ -32122,9 +32068,9 @@ module.exports={
|
|
|
32122
32068
|
}
|
|
32123
32069
|
}
|
|
32124
32070
|
|
|
32125
|
-
},{}],
|
|
32126
|
-
arguments[4][
|
|
32127
|
-
},{"dup":
|
|
32071
|
+
},{}],225:[function(require,module,exports){
|
|
32072
|
+
arguments[4][222][0].apply(exports,arguments)
|
|
32073
|
+
},{"dup":222}],226:[function(require,module,exports){
|
|
32128
32074
|
module.exports={
|
|
32129
32075
|
"$ref": "#/definitions/SignedBitcoinSegwitTransaction",
|
|
32130
32076
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
@@ -32145,9 +32091,9 @@ module.exports={
|
|
|
32145
32091
|
}
|
|
32146
32092
|
}
|
|
32147
32093
|
|
|
32148
|
-
},{}],
|
|
32149
|
-
arguments[4][
|
|
32150
|
-
},{"dup":
|
|
32094
|
+
},{}],227:[function(require,module,exports){
|
|
32095
|
+
arguments[4][223][0].apply(exports,arguments)
|
|
32096
|
+
},{"dup":223}],228:[function(require,module,exports){
|
|
32151
32097
|
"use strict";
|
|
32152
32098
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
32153
32099
|
exports.BitcoinTransactionValidatorFactoryV2 = exports.BitcoinTransactionValidatorFactory = exports.BitcoinTransactionValidator = void 0;
|
|
@@ -32229,7 +32175,7 @@ var BitcoinTransactionValidatorFactoryV2 = /** @class */ (function () {
|
|
|
32229
32175
|
}());
|
|
32230
32176
|
exports.BitcoinTransactionValidatorFactoryV2 = BitcoinTransactionValidatorFactoryV2;
|
|
32231
32177
|
|
|
32232
|
-
},{"@airgap/coinlib-core/dependencies/src/validate.js-0.13.1/validate":
|
|
32178
|
+
},{"@airgap/coinlib-core/dependencies/src/validate.js-0.13.1/validate":603,"@airgap/serializer":626}],229:[function(require,module,exports){
|
|
32233
32179
|
'use strict'
|
|
32234
32180
|
// base-x encoding / decoding
|
|
32235
32181
|
// Copyright (c) 2018 base-x contributors
|
|
@@ -32350,7 +32296,7 @@ function base (ALPHABET) {
|
|
|
32350
32296
|
}
|
|
32351
32297
|
module.exports = base
|
|
32352
32298
|
|
|
32353
|
-
},{"safe-buffer":
|
|
32299
|
+
},{"safe-buffer":375}],230:[function(require,module,exports){
|
|
32354
32300
|
'use strict'
|
|
32355
32301
|
var ALPHABET = 'qpzry9x8gf2tvdw0s3jn54khce6mua7l'
|
|
32356
32302
|
|
|
@@ -32534,7 +32480,7 @@ module.exports = {
|
|
|
32534
32480
|
fromWords: fromWords
|
|
32535
32481
|
}
|
|
32536
32482
|
|
|
32537
|
-
},{}],
|
|
32483
|
+
},{}],231:[function(require,module,exports){
|
|
32538
32484
|
'use strict';
|
|
32539
32485
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
32540
32486
|
const parser_1 = require('../parser');
|
|
@@ -32619,7 +32565,7 @@ function getKeySet(keyVals) {
|
|
|
32619
32565
|
return set;
|
|
32620
32566
|
}
|
|
32621
32567
|
|
|
32622
|
-
},{"../parser":
|
|
32568
|
+
},{"../parser":256}],232:[function(require,module,exports){
|
|
32623
32569
|
(function (Buffer){(function (){
|
|
32624
32570
|
'use strict';
|
|
32625
32571
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -32706,7 +32652,7 @@ function canAddToArray(array, item, dupeSet) {
|
|
|
32706
32652
|
exports.canAddToArray = canAddToArray;
|
|
32707
32653
|
|
|
32708
32654
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
32709
|
-
},{"../../typeFields":
|
|
32655
|
+
},{"../../typeFields":259,"buffer":67}],233:[function(require,module,exports){
|
|
32710
32656
|
(function (Buffer){(function (){
|
|
32711
32657
|
'use strict';
|
|
32712
32658
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -32720,7 +32666,7 @@ function encode(data) {
|
|
|
32720
32666
|
exports.encode = encode;
|
|
32721
32667
|
|
|
32722
32668
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
32723
|
-
},{"../../typeFields":
|
|
32669
|
+
},{"../../typeFields":259,"buffer":67}],234:[function(require,module,exports){
|
|
32724
32670
|
'use strict';
|
|
32725
32671
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
32726
32672
|
const typeFields_1 = require('../typeFields');
|
|
@@ -32807,7 +32753,7 @@ const outputs = {
|
|
|
32807
32753
|
};
|
|
32808
32754
|
exports.outputs = outputs;
|
|
32809
32755
|
|
|
32810
|
-
},{"../typeFields":
|
|
32756
|
+
},{"../typeFields":259,"./global/globalXpub":232,"./global/unsignedTx":233,"./input/finalScriptSig":235,"./input/finalScriptWitness":236,"./input/nonWitnessUtxo":237,"./input/partialSig":238,"./input/porCommitment":239,"./input/sighashType":240,"./input/tapKeySig":241,"./input/tapLeafScript":242,"./input/tapMerkleRoot":243,"./input/tapScriptSig":244,"./input/witnessUtxo":245,"./output/tapTree":246,"./shared/bip32Derivation":247,"./shared/checkPubkey":248,"./shared/redeemScript":249,"./shared/tapBip32Derivation":250,"./shared/tapInternalKey":251,"./shared/witnessScript":252}],235:[function(require,module,exports){
|
|
32811
32757
|
(function (Buffer){(function (){
|
|
32812
32758
|
'use strict';
|
|
32813
32759
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -32841,7 +32787,7 @@ function canAdd(currentData, newData) {
|
|
|
32841
32787
|
exports.canAdd = canAdd;
|
|
32842
32788
|
|
|
32843
32789
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
32844
|
-
},{"../../typeFields":
|
|
32790
|
+
},{"../../typeFields":259,"buffer":67}],236:[function(require,module,exports){
|
|
32845
32791
|
(function (Buffer){(function (){
|
|
32846
32792
|
'use strict';
|
|
32847
32793
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -32877,7 +32823,7 @@ function canAdd(currentData, newData) {
|
|
|
32877
32823
|
exports.canAdd = canAdd;
|
|
32878
32824
|
|
|
32879
32825
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
32880
|
-
},{"../../typeFields":
|
|
32826
|
+
},{"../../typeFields":259,"buffer":67}],237:[function(require,module,exports){
|
|
32881
32827
|
(function (Buffer){(function (){
|
|
32882
32828
|
'use strict';
|
|
32883
32829
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -32910,7 +32856,7 @@ function canAdd(currentData, newData) {
|
|
|
32910
32856
|
exports.canAdd = canAdd;
|
|
32911
32857
|
|
|
32912
32858
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
32913
|
-
},{"../../typeFields":
|
|
32859
|
+
},{"../../typeFields":259,"buffer":67}],238:[function(require,module,exports){
|
|
32914
32860
|
(function (Buffer){(function (){
|
|
32915
32861
|
'use strict';
|
|
32916
32862
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -32979,7 +32925,7 @@ function canAddToArray(array, item, dupeSet) {
|
|
|
32979
32925
|
exports.canAddToArray = canAddToArray;
|
|
32980
32926
|
|
|
32981
32927
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
32982
|
-
},{"../../typeFields":
|
|
32928
|
+
},{"../../typeFields":259,"buffer":67}],239:[function(require,module,exports){
|
|
32983
32929
|
(function (Buffer){(function (){
|
|
32984
32930
|
'use strict';
|
|
32985
32931
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -33013,7 +32959,7 @@ function canAdd(currentData, newData) {
|
|
|
33013
32959
|
exports.canAdd = canAdd;
|
|
33014
32960
|
|
|
33015
32961
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
33016
|
-
},{"../../typeFields":
|
|
32962
|
+
},{"../../typeFields":259,"buffer":67}],240:[function(require,module,exports){
|
|
33017
32963
|
(function (Buffer){(function (){
|
|
33018
32964
|
'use strict';
|
|
33019
32965
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -33049,7 +32995,7 @@ function canAdd(currentData, newData) {
|
|
|
33049
32995
|
exports.canAdd = canAdd;
|
|
33050
32996
|
|
|
33051
32997
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
33052
|
-
},{"../../typeFields":
|
|
32998
|
+
},{"../../typeFields":259,"buffer":67}],241:[function(require,module,exports){
|
|
33053
32999
|
(function (Buffer){(function (){
|
|
33054
33000
|
'use strict';
|
|
33055
33001
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -33088,7 +33034,7 @@ function canAdd(currentData, newData) {
|
|
|
33088
33034
|
exports.canAdd = canAdd;
|
|
33089
33035
|
|
|
33090
33036
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
33091
|
-
},{"../../typeFields":
|
|
33037
|
+
},{"../../typeFields":259,"buffer":67}],242:[function(require,module,exports){
|
|
33092
33038
|
(function (Buffer){(function (){
|
|
33093
33039
|
'use strict';
|
|
33094
33040
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -33149,7 +33095,7 @@ function canAddToArray(array, item, dupeSet) {
|
|
|
33149
33095
|
exports.canAddToArray = canAddToArray;
|
|
33150
33096
|
|
|
33151
33097
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
33152
|
-
},{"../../typeFields":
|
|
33098
|
+
},{"../../typeFields":259,"buffer":67}],243:[function(require,module,exports){
|
|
33153
33099
|
(function (Buffer){(function (){
|
|
33154
33100
|
'use strict';
|
|
33155
33101
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -33186,7 +33132,7 @@ function canAdd(currentData, newData) {
|
|
|
33186
33132
|
exports.canAdd = canAdd;
|
|
33187
33133
|
|
|
33188
33134
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
33189
|
-
},{"../../typeFields":
|
|
33135
|
+
},{"../../typeFields":259,"buffer":67}],244:[function(require,module,exports){
|
|
33190
33136
|
(function (Buffer){(function (){
|
|
33191
33137
|
'use strict';
|
|
33192
33138
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -33253,7 +33199,7 @@ function canAddToArray(array, item, dupeSet) {
|
|
|
33253
33199
|
exports.canAddToArray = canAddToArray;
|
|
33254
33200
|
|
|
33255
33201
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
33256
|
-
},{"../../typeFields":
|
|
33202
|
+
},{"../../typeFields":259,"buffer":67}],245:[function(require,module,exports){
|
|
33257
33203
|
(function (Buffer){(function (){
|
|
33258
33204
|
'use strict';
|
|
33259
33205
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -33305,7 +33251,7 @@ function canAdd(currentData, newData) {
|
|
|
33305
33251
|
exports.canAdd = canAdd;
|
|
33306
33252
|
|
|
33307
33253
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
33308
|
-
},{"../../typeFields":
|
|
33254
|
+
},{"../../typeFields":259,"../tools":253,"../varint":254,"buffer":67}],246:[function(require,module,exports){
|
|
33309
33255
|
(function (Buffer){(function (){
|
|
33310
33256
|
'use strict';
|
|
33311
33257
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -33374,7 +33320,7 @@ function canAdd(currentData, newData) {
|
|
|
33374
33320
|
exports.canAdd = canAdd;
|
|
33375
33321
|
|
|
33376
33322
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
33377
|
-
},{"../../typeFields":
|
|
33323
|
+
},{"../../typeFields":259,"../varint":254,"buffer":67}],247:[function(require,module,exports){
|
|
33378
33324
|
(function (Buffer){(function (){
|
|
33379
33325
|
'use strict';
|
|
33380
33326
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -33462,7 +33408,7 @@ function makeConverter(TYPE_BYTE, isValidPubkey = isValidDERKey) {
|
|
|
33462
33408
|
exports.makeConverter = makeConverter;
|
|
33463
33409
|
|
|
33464
33410
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
33465
|
-
},{"buffer":67}],
|
|
33411
|
+
},{"buffer":67}],248:[function(require,module,exports){
|
|
33466
33412
|
'use strict';
|
|
33467
33413
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
33468
33414
|
function makeChecker(pubkeyTypes) {
|
|
@@ -33485,7 +33431,7 @@ function makeChecker(pubkeyTypes) {
|
|
|
33485
33431
|
}
|
|
33486
33432
|
exports.makeChecker = makeChecker;
|
|
33487
33433
|
|
|
33488
|
-
},{}],
|
|
33434
|
+
},{}],249:[function(require,module,exports){
|
|
33489
33435
|
(function (Buffer){(function (){
|
|
33490
33436
|
'use strict';
|
|
33491
33437
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -33524,7 +33470,7 @@ function makeConverter(TYPE_BYTE) {
|
|
|
33524
33470
|
exports.makeConverter = makeConverter;
|
|
33525
33471
|
|
|
33526
33472
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
33527
|
-
},{"buffer":67}],
|
|
33473
|
+
},{"buffer":67}],250:[function(require,module,exports){
|
|
33528
33474
|
(function (Buffer){(function (){
|
|
33529
33475
|
'use strict';
|
|
33530
33476
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -33581,7 +33527,7 @@ function makeConverter(TYPE_BYTE) {
|
|
|
33581
33527
|
exports.makeConverter = makeConverter;
|
|
33582
33528
|
|
|
33583
33529
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
33584
|
-
},{"../varint":
|
|
33530
|
+
},{"../varint":254,"./bip32Derivation":247,"buffer":67}],251:[function(require,module,exports){
|
|
33585
33531
|
(function (Buffer){(function (){
|
|
33586
33532
|
'use strict';
|
|
33587
33533
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -33624,7 +33570,7 @@ function makeConverter(TYPE_BYTE) {
|
|
|
33624
33570
|
exports.makeConverter = makeConverter;
|
|
33625
33571
|
|
|
33626
33572
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
33627
|
-
},{"buffer":67}],
|
|
33573
|
+
},{"buffer":67}],252:[function(require,module,exports){
|
|
33628
33574
|
(function (Buffer){(function (){
|
|
33629
33575
|
'use strict';
|
|
33630
33576
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -33665,7 +33611,7 @@ function makeConverter(TYPE_BYTE) {
|
|
|
33665
33611
|
exports.makeConverter = makeConverter;
|
|
33666
33612
|
|
|
33667
33613
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
33668
|
-
},{"buffer":67}],
|
|
33614
|
+
},{"buffer":67}],253:[function(require,module,exports){
|
|
33669
33615
|
(function (Buffer){(function (){
|
|
33670
33616
|
'use strict';
|
|
33671
33617
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -33732,7 +33678,7 @@ function writeUInt64LE(buffer, value, offset) {
|
|
|
33732
33678
|
exports.writeUInt64LE = writeUInt64LE;
|
|
33733
33679
|
|
|
33734
33680
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
33735
|
-
},{"./varint":
|
|
33681
|
+
},{"./varint":254,"buffer":67}],254:[function(require,module,exports){
|
|
33736
33682
|
(function (Buffer){(function (){
|
|
33737
33683
|
'use strict';
|
|
33738
33684
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -33813,7 +33759,7 @@ function encodingLength(_number) {
|
|
|
33813
33759
|
exports.encodingLength = encodingLength;
|
|
33814
33760
|
|
|
33815
33761
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
33816
|
-
},{"buffer":67}],
|
|
33762
|
+
},{"buffer":67}],255:[function(require,module,exports){
|
|
33817
33763
|
(function (Buffer){(function (){
|
|
33818
33764
|
'use strict';
|
|
33819
33765
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -34213,7 +34159,7 @@ function psbtFromKeyVals(
|
|
|
34213
34159
|
exports.psbtFromKeyVals = psbtFromKeyVals;
|
|
34214
34160
|
|
|
34215
34161
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
34216
|
-
},{"../converter":
|
|
34162
|
+
},{"../converter":234,"../converter/tools":253,"../converter/varint":254,"../typeFields":259,"buffer":67}],256:[function(require,module,exports){
|
|
34217
34163
|
'use strict';
|
|
34218
34164
|
function __export(m) {
|
|
34219
34165
|
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
|
|
@@ -34222,7 +34168,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
34222
34168
|
__export(require('./fromBuffer'));
|
|
34223
34169
|
__export(require('./toBuffer'));
|
|
34224
34170
|
|
|
34225
|
-
},{"./fromBuffer":
|
|
34171
|
+
},{"./fromBuffer":255,"./toBuffer":257}],257:[function(require,module,exports){
|
|
34226
34172
|
(function (Buffer){(function (){
|
|
34227
34173
|
'use strict';
|
|
34228
34174
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -34290,7 +34236,7 @@ function psbtToKeyVals({ globalMap, inputs, outputs }) {
|
|
|
34290
34236
|
exports.psbtToKeyVals = psbtToKeyVals;
|
|
34291
34237
|
|
|
34292
34238
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
34293
|
-
},{"../converter":
|
|
34239
|
+
},{"../converter":234,"../converter/tools":253,"buffer":67}],258:[function(require,module,exports){
|
|
34294
34240
|
(function (Buffer){(function (){
|
|
34295
34241
|
'use strict';
|
|
34296
34242
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -34442,7 +34388,7 @@ class Psbt {
|
|
|
34442
34388
|
exports.Psbt = Psbt;
|
|
34443
34389
|
|
|
34444
34390
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
34445
|
-
},{"./combiner":
|
|
34391
|
+
},{"./combiner":231,"./parser":256,"./typeFields":259,"./utils":260,"buffer":67}],259:[function(require,module,exports){
|
|
34446
34392
|
'use strict';
|
|
34447
34393
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
34448
34394
|
var GlobalTypes;
|
|
@@ -34508,7 +34454,7 @@ exports.OUTPUT_TYPE_NAMES = [
|
|
|
34508
34454
|
'tapBip32Derivation',
|
|
34509
34455
|
];
|
|
34510
34456
|
|
|
34511
|
-
},{}],
|
|
34457
|
+
},{}],260:[function(require,module,exports){
|
|
34512
34458
|
(function (Buffer){(function (){
|
|
34513
34459
|
'use strict';
|
|
34514
34460
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -34649,8 +34595,8 @@ function defaultLocktimeSetter(locktime, txBuf) {
|
|
|
34649
34595
|
}
|
|
34650
34596
|
exports.defaultLocktimeSetter = defaultLocktimeSetter;
|
|
34651
34597
|
|
|
34652
|
-
}).call(this)}).call(this,{"isBuffer":require("../../../../../../node_modules/is-buffer/index.js")})
|
|
34653
|
-
},{"../../../../../../node_modules/is-buffer/index.js":
|
|
34598
|
+
}).call(this)}).call(this,{"isBuffer":require("../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js")})
|
|
34599
|
+
},{"../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js":149,"./converter":234}],261:[function(require,module,exports){
|
|
34654
34600
|
(function (Buffer){(function (){
|
|
34655
34601
|
"use strict";
|
|
34656
34602
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -34951,7 +34897,7 @@ function fromSeed(seed, network) {
|
|
|
34951
34897
|
exports.fromSeed = fromSeed;
|
|
34952
34898
|
|
|
34953
34899
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
34954
|
-
},{"./crypto":
|
|
34900
|
+
},{"./crypto":262,"bs58check":316,"buffer":67,"tiny-secp256k1":385,"typeforce":389,"wif":393}],262:[function(require,module,exports){
|
|
34955
34901
|
"use strict";
|
|
34956
34902
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34957
34903
|
const createHash = require('create-hash');
|
|
@@ -34979,7 +34925,7 @@ function hmacSHA512(key, data) {
|
|
|
34979
34925
|
}
|
|
34980
34926
|
exports.hmacSHA512 = hmacSHA512;
|
|
34981
34927
|
|
|
34982
|
-
},{"create-hash":
|
|
34928
|
+
},{"create-hash":318,"create-hmac":320}],263:[function(require,module,exports){
|
|
34983
34929
|
"use strict";
|
|
34984
34930
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34985
34931
|
var bip32_1 = require("./bip32");
|
|
@@ -34988,7 +34934,7 @@ exports.fromBase58 = bip32_1.fromBase58;
|
|
|
34988
34934
|
exports.fromPublicKey = bip32_1.fromPublicKey;
|
|
34989
34935
|
exports.fromPrivateKey = bip32_1.fromPrivateKey;
|
|
34990
34936
|
|
|
34991
|
-
},{"./bip32":
|
|
34937
|
+
},{"./bip32":261}],264:[function(require,module,exports){
|
|
34992
34938
|
// Reference https://github.com/bitcoin/bips/blob/master/bip-0066.mediawiki
|
|
34993
34939
|
// Format: 0x30 [total-length] 0x02 [R-length] [R] 0x02 [S-length] [S]
|
|
34994
34940
|
// NOTE: SIGHASH byte ignored AND restricted, truncate before use
|
|
@@ -35103,7 +35049,7 @@ module.exports = {
|
|
|
35103
35049
|
encode: encode
|
|
35104
35050
|
}
|
|
35105
35051
|
|
|
35106
|
-
},{"safe-buffer":
|
|
35052
|
+
},{"safe-buffer":375}],265:[function(require,module,exports){
|
|
35107
35053
|
module.exports={
|
|
35108
35054
|
"OP_FALSE": 0,
|
|
35109
35055
|
"OP_0": 0,
|
|
@@ -35238,7 +35184,7 @@ module.exports={
|
|
|
35238
35184
|
"OP_INVALIDOPCODE": 255
|
|
35239
35185
|
}
|
|
35240
35186
|
|
|
35241
|
-
},{}],
|
|
35187
|
+
},{}],266:[function(require,module,exports){
|
|
35242
35188
|
var OPS = require('./index.json')
|
|
35243
35189
|
|
|
35244
35190
|
var map = {}
|
|
@@ -35249,7 +35195,7 @@ for (var op in OPS) {
|
|
|
35249
35195
|
|
|
35250
35196
|
module.exports = map
|
|
35251
35197
|
|
|
35252
|
-
},{"./index.json":
|
|
35198
|
+
},{"./index.json":265}],267:[function(require,module,exports){
|
|
35253
35199
|
(function (Buffer){(function (){
|
|
35254
35200
|
'use strict';
|
|
35255
35201
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -35344,7 +35290,7 @@ function toOutputScript(address, network) {
|
|
|
35344
35290
|
exports.toOutputScript = toOutputScript;
|
|
35345
35291
|
|
|
35346
35292
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
35347
|
-
},{"./networks":
|
|
35293
|
+
},{"./networks":274,"./payments":276,"./script":285,"./types":311,"bech32":230,"bs58check":316,"buffer":67,"typeforce":389}],268:[function(require,module,exports){
|
|
35348
35294
|
(function (Buffer){(function (){
|
|
35349
35295
|
'use strict';
|
|
35350
35296
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -35564,7 +35510,7 @@ function anyTxHasWitness(transactions) {
|
|
|
35564
35510
|
}
|
|
35565
35511
|
|
|
35566
35512
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
35567
|
-
},{"./bufferutils":
|
|
35513
|
+
},{"./bufferutils":269,"./crypto":271,"./transaction":309,"./types":311,"buffer":67,"merkle-lib/fastRoot":354,"typeforce":389,"varuint-bitcoin":392}],269:[function(require,module,exports){
|
|
35568
35514
|
(function (Buffer){(function (){
|
|
35569
35515
|
'use strict';
|
|
35570
35516
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -35711,7 +35657,7 @@ class BufferReader {
|
|
|
35711
35657
|
exports.BufferReader = BufferReader;
|
|
35712
35658
|
|
|
35713
35659
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
35714
|
-
},{"./types":
|
|
35660
|
+
},{"./types":311,"buffer":67,"typeforce":389,"varuint-bitcoin":392}],270:[function(require,module,exports){
|
|
35715
35661
|
'use strict';
|
|
35716
35662
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
35717
35663
|
const script_1 = require('./script');
|
|
@@ -35772,7 +35718,7 @@ function classifyWitness(script, allowIncomplete) {
|
|
|
35772
35718
|
}
|
|
35773
35719
|
exports.witness = classifyWitness;
|
|
35774
35720
|
|
|
35775
|
-
},{"./script":
|
|
35721
|
+
},{"./script":285,"./templates/multisig":288,"./templates/nulldata":291,"./templates/pubkey":292,"./templates/pubkeyhash":295,"./templates/scripthash":298,"./templates/witnesscommitment":301,"./templates/witnesspubkeyhash":303,"./templates/witnessscripthash":306}],271:[function(require,module,exports){
|
|
35776
35722
|
'use strict';
|
|
35777
35723
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
35778
35724
|
const createHash = require('create-hash');
|
|
@@ -35809,7 +35755,7 @@ function hash256(buffer) {
|
|
|
35809
35755
|
}
|
|
35810
35756
|
exports.hash256 = hash256;
|
|
35811
35757
|
|
|
35812
|
-
},{"create-hash":
|
|
35758
|
+
},{"create-hash":318}],272:[function(require,module,exports){
|
|
35813
35759
|
(function (Buffer){(function (){
|
|
35814
35760
|
'use strict';
|
|
35815
35761
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -35920,7 +35866,7 @@ function makeRandom(options) {
|
|
|
35920
35866
|
exports.makeRandom = makeRandom;
|
|
35921
35867
|
|
|
35922
35868
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
35923
|
-
},{"./networks":
|
|
35869
|
+
},{"./networks":274,"./types":311,"buffer":67,"randombytes":358,"tiny-secp256k1":385,"typeforce":389,"wif":393}],273:[function(require,module,exports){
|
|
35924
35870
|
'use strict';
|
|
35925
35871
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
35926
35872
|
const bip32 = require('bip32');
|
|
@@ -35948,7 +35894,7 @@ exports.Transaction = transaction_1.Transaction;
|
|
|
35948
35894
|
var transaction_builder_1 = require('./transaction_builder');
|
|
35949
35895
|
exports.TransactionBuilder = transaction_builder_1.TransactionBuilder;
|
|
35950
35896
|
|
|
35951
|
-
},{"./address":
|
|
35897
|
+
},{"./address":267,"./block":268,"./crypto":271,"./ecpair":272,"./networks":274,"./payments":276,"./psbt":284,"./script":285,"./transaction":309,"./transaction_builder":310,"bip32":263}],274:[function(require,module,exports){
|
|
35952
35898
|
'use strict';
|
|
35953
35899
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
35954
35900
|
exports.bitcoin = {
|
|
@@ -35985,7 +35931,7 @@ exports.testnet = {
|
|
|
35985
35931
|
wif: 0xef,
|
|
35986
35932
|
};
|
|
35987
35933
|
|
|
35988
|
-
},{}],
|
|
35934
|
+
},{}],275:[function(require,module,exports){
|
|
35989
35935
|
'use strict';
|
|
35990
35936
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
35991
35937
|
const networks_1 = require('../networks');
|
|
@@ -36036,7 +35982,7 @@ function p2data(a, opts) {
|
|
|
36036
35982
|
}
|
|
36037
35983
|
exports.p2data = p2data;
|
|
36038
35984
|
|
|
36039
|
-
},{"../networks":
|
|
35985
|
+
},{"../networks":274,"../script":285,"./lazy":277,"typeforce":389}],276:[function(require,module,exports){
|
|
36040
35986
|
'use strict';
|
|
36041
35987
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
36042
35988
|
const embed_1 = require('./embed');
|
|
@@ -36056,7 +36002,7 @@ exports.p2wsh = p2wsh_1.p2wsh;
|
|
|
36056
36002
|
// TODO
|
|
36057
36003
|
// witness commitment
|
|
36058
36004
|
|
|
36059
|
-
},{"./embed":
|
|
36005
|
+
},{"./embed":275,"./p2ms":278,"./p2pk":279,"./p2pkh":280,"./p2sh":281,"./p2wpkh":282,"./p2wsh":283}],277:[function(require,module,exports){
|
|
36060
36006
|
'use strict';
|
|
36061
36007
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
36062
36008
|
function prop(object, name, f) {
|
|
@@ -36089,7 +36035,7 @@ function value(f) {
|
|
|
36089
36035
|
}
|
|
36090
36036
|
exports.value = value;
|
|
36091
36037
|
|
|
36092
|
-
},{}],
|
|
36038
|
+
},{}],278:[function(require,module,exports){
|
|
36093
36039
|
'use strict';
|
|
36094
36040
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
36095
36041
|
const networks_1 = require('../networks');
|
|
@@ -36236,7 +36182,7 @@ function p2ms(a, opts) {
|
|
|
36236
36182
|
}
|
|
36237
36183
|
exports.p2ms = p2ms;
|
|
36238
36184
|
|
|
36239
|
-
},{"../networks":
|
|
36185
|
+
},{"../networks":274,"../script":285,"./lazy":277,"tiny-secp256k1":385,"typeforce":389}],279:[function(require,module,exports){
|
|
36240
36186
|
'use strict';
|
|
36241
36187
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
36242
36188
|
const networks_1 = require('../networks');
|
|
@@ -36310,7 +36256,7 @@ function p2pk(a, opts) {
|
|
|
36310
36256
|
}
|
|
36311
36257
|
exports.p2pk = p2pk;
|
|
36312
36258
|
|
|
36313
|
-
},{"../networks":
|
|
36259
|
+
},{"../networks":274,"../script":285,"./lazy":277,"tiny-secp256k1":385,"typeforce":389}],280:[function(require,module,exports){
|
|
36314
36260
|
(function (Buffer){(function (){
|
|
36315
36261
|
'use strict';
|
|
36316
36262
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -36446,7 +36392,7 @@ function p2pkh(a, opts) {
|
|
|
36446
36392
|
exports.p2pkh = p2pkh;
|
|
36447
36393
|
|
|
36448
36394
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
36449
|
-
},{"../crypto":
|
|
36395
|
+
},{"../crypto":271,"../networks":274,"../script":285,"./lazy":277,"bs58check":316,"buffer":67,"tiny-secp256k1":385,"typeforce":389}],281:[function(require,module,exports){
|
|
36450
36396
|
(function (Buffer){(function (){
|
|
36451
36397
|
'use strict';
|
|
36452
36398
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -36633,7 +36579,7 @@ function p2sh(a, opts) {
|
|
|
36633
36579
|
exports.p2sh = p2sh;
|
|
36634
36580
|
|
|
36635
36581
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
36636
|
-
},{"../crypto":
|
|
36582
|
+
},{"../crypto":271,"../networks":274,"../script":285,"./lazy":277,"bs58check":316,"buffer":67,"typeforce":389}],282:[function(require,module,exports){
|
|
36637
36583
|
(function (Buffer){(function (){
|
|
36638
36584
|
'use strict';
|
|
36639
36585
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -36767,7 +36713,7 @@ function p2wpkh(a, opts) {
|
|
|
36767
36713
|
exports.p2wpkh = p2wpkh;
|
|
36768
36714
|
|
|
36769
36715
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
36770
|
-
},{"../crypto":
|
|
36716
|
+
},{"../crypto":271,"../networks":274,"../script":285,"./lazy":277,"bech32":230,"buffer":67,"tiny-secp256k1":385,"typeforce":389}],283:[function(require,module,exports){
|
|
36771
36717
|
(function (Buffer){(function (){
|
|
36772
36718
|
'use strict';
|
|
36773
36719
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -36978,7 +36924,7 @@ function p2wsh(a, opts) {
|
|
|
36978
36924
|
exports.p2wsh = p2wsh;
|
|
36979
36925
|
|
|
36980
36926
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
36981
|
-
},{"../crypto":
|
|
36927
|
+
},{"../crypto":271,"../networks":274,"../script":285,"./lazy":277,"bech32":230,"buffer":67,"tiny-secp256k1":385,"typeforce":389}],284:[function(require,module,exports){
|
|
36982
36928
|
(function (Buffer){(function (){
|
|
36983
36929
|
'use strict';
|
|
36984
36930
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -38380,7 +38326,7 @@ function range(n) {
|
|
|
38380
38326
|
}
|
|
38381
38327
|
|
|
38382
38328
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
38383
|
-
},{"./address":
|
|
38329
|
+
},{"./address":267,"./bufferutils":269,"./crypto":271,"./ecpair":272,"./networks":274,"./payments":276,"./script":285,"./transaction":309,"bip174":258,"bip174/src/lib/converter/varint":254,"bip174/src/lib/utils":260,"buffer":67}],285:[function(require,module,exports){
|
|
38384
38330
|
(function (Buffer){(function (){
|
|
38385
38331
|
'use strict';
|
|
38386
38332
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -38561,7 +38507,7 @@ exports.number = scriptNumber;
|
|
|
38561
38507
|
exports.signature = scriptSignature;
|
|
38562
38508
|
|
|
38563
38509
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
38564
|
-
},{"./script_number":
|
|
38510
|
+
},{"./script_number":286,"./script_signature":287,"./types":311,"bip66":264,"bitcoin-ops":265,"bitcoin-ops/map":266,"buffer":67,"pushdata-bitcoin":357,"tiny-secp256k1":385,"typeforce":389}],286:[function(require,module,exports){
|
|
38565
38511
|
(function (Buffer){(function (){
|
|
38566
38512
|
'use strict';
|
|
38567
38513
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -38626,7 +38572,7 @@ function encode(_number) {
|
|
|
38626
38572
|
exports.encode = encode;
|
|
38627
38573
|
|
|
38628
38574
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
38629
|
-
},{"buffer":67}],
|
|
38575
|
+
},{"buffer":67}],287:[function(require,module,exports){
|
|
38630
38576
|
(function (Buffer){(function (){
|
|
38631
38577
|
'use strict';
|
|
38632
38578
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -38682,7 +38628,7 @@ function encode(signature, hashType) {
|
|
|
38682
38628
|
exports.encode = encode;
|
|
38683
38629
|
|
|
38684
38630
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
38685
|
-
},{"./types":
|
|
38631
|
+
},{"./types":311,"bip66":264,"buffer":67,"typeforce":389}],288:[function(require,module,exports){
|
|
38686
38632
|
'use strict';
|
|
38687
38633
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
38688
38634
|
const input = require('./input');
|
|
@@ -38690,7 +38636,7 @@ exports.input = input;
|
|
|
38690
38636
|
const output = require('./output');
|
|
38691
38637
|
exports.output = output;
|
|
38692
38638
|
|
|
38693
|
-
},{"./input":
|
|
38639
|
+
},{"./input":289,"./output":290}],289:[function(require,module,exports){
|
|
38694
38640
|
'use strict';
|
|
38695
38641
|
// OP_0 [signatures ...]
|
|
38696
38642
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -38715,7 +38661,7 @@ check.toJSON = () => {
|
|
|
38715
38661
|
return 'multisig input';
|
|
38716
38662
|
};
|
|
38717
38663
|
|
|
38718
|
-
},{"../../script":
|
|
38664
|
+
},{"../../script":285}],290:[function(require,module,exports){
|
|
38719
38665
|
'use strict';
|
|
38720
38666
|
// m [pubKeys ...] n OP_CHECKMULTISIG
|
|
38721
38667
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -38744,7 +38690,7 @@ check.toJSON = () => {
|
|
|
38744
38690
|
return 'multi-sig output';
|
|
38745
38691
|
};
|
|
38746
38692
|
|
|
38747
|
-
},{"../../script":
|
|
38693
|
+
},{"../../script":285,"../../types":311}],291:[function(require,module,exports){
|
|
38748
38694
|
'use strict';
|
|
38749
38695
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
38750
38696
|
// OP_RETURN {data}
|
|
@@ -38761,9 +38707,9 @@ check.toJSON = () => {
|
|
|
38761
38707
|
const output = { check };
|
|
38762
38708
|
exports.output = output;
|
|
38763
38709
|
|
|
38764
|
-
},{"../script":
|
|
38765
|
-
arguments[4][
|
|
38766
|
-
},{"./input":
|
|
38710
|
+
},{"../script":285}],292:[function(require,module,exports){
|
|
38711
|
+
arguments[4][288][0].apply(exports,arguments)
|
|
38712
|
+
},{"./input":293,"./output":294,"dup":288}],293:[function(require,module,exports){
|
|
38767
38713
|
'use strict';
|
|
38768
38714
|
// {signature}
|
|
38769
38715
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -38777,7 +38723,7 @@ check.toJSON = () => {
|
|
|
38777
38723
|
return 'pubKey input';
|
|
38778
38724
|
};
|
|
38779
38725
|
|
|
38780
|
-
},{"../../script":
|
|
38726
|
+
},{"../../script":285}],294:[function(require,module,exports){
|
|
38781
38727
|
'use strict';
|
|
38782
38728
|
// {pubKey} OP_CHECKSIG
|
|
38783
38729
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -38796,9 +38742,9 @@ check.toJSON = () => {
|
|
|
38796
38742
|
return 'pubKey output';
|
|
38797
38743
|
};
|
|
38798
38744
|
|
|
38799
|
-
},{"../../script":
|
|
38800
|
-
arguments[4][
|
|
38801
|
-
},{"./input":
|
|
38745
|
+
},{"../../script":285}],295:[function(require,module,exports){
|
|
38746
|
+
arguments[4][288][0].apply(exports,arguments)
|
|
38747
|
+
},{"./input":296,"./output":297,"dup":288}],296:[function(require,module,exports){
|
|
38802
38748
|
'use strict';
|
|
38803
38749
|
// {signature} {pubKey}
|
|
38804
38750
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -38816,7 +38762,7 @@ check.toJSON = () => {
|
|
|
38816
38762
|
return 'pubKeyHash input';
|
|
38817
38763
|
};
|
|
38818
38764
|
|
|
38819
|
-
},{"../../script":
|
|
38765
|
+
},{"../../script":285}],297:[function(require,module,exports){
|
|
38820
38766
|
'use strict';
|
|
38821
38767
|
// OP_DUP OP_HASH160 {pubKeyHash} OP_EQUALVERIFY OP_CHECKSIG
|
|
38822
38768
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -38838,9 +38784,9 @@ check.toJSON = () => {
|
|
|
38838
38784
|
return 'pubKeyHash output';
|
|
38839
38785
|
};
|
|
38840
38786
|
|
|
38841
|
-
},{"../../script":
|
|
38842
|
-
arguments[4][
|
|
38843
|
-
},{"./input":
|
|
38787
|
+
},{"../../script":285}],298:[function(require,module,exports){
|
|
38788
|
+
arguments[4][288][0].apply(exports,arguments)
|
|
38789
|
+
},{"./input":299,"./output":300,"dup":288}],299:[function(require,module,exports){
|
|
38844
38790
|
(function (Buffer){(function (){
|
|
38845
38791
|
'use strict';
|
|
38846
38792
|
// <scriptSig> {serialized scriptPubKey script}
|
|
@@ -38893,8 +38839,8 @@ check.toJSON = () => {
|
|
|
38893
38839
|
return 'scriptHash input';
|
|
38894
38840
|
};
|
|
38895
38841
|
|
|
38896
|
-
}).call(this)}).call(this,{"isBuffer":require("../../../../../../../node_modules/is-buffer/index.js")})
|
|
38897
|
-
},{"../../../../../../../node_modules/is-buffer/index.js":
|
|
38842
|
+
}).call(this)}).call(this,{"isBuffer":require("../../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js")})
|
|
38843
|
+
},{"../../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js":149,"../../script":285,"../multisig":288,"../pubkey":292,"../pubkeyhash":295,"../witnesspubkeyhash/output":305,"../witnessscripthash/output":308}],300:[function(require,module,exports){
|
|
38898
38844
|
'use strict';
|
|
38899
38845
|
// OP_HASH160 {scriptHash} OP_EQUAL
|
|
38900
38846
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -38914,13 +38860,13 @@ check.toJSON = () => {
|
|
|
38914
38860
|
return 'scriptHash output';
|
|
38915
38861
|
};
|
|
38916
38862
|
|
|
38917
|
-
},{"../../script":
|
|
38863
|
+
},{"../../script":285}],301:[function(require,module,exports){
|
|
38918
38864
|
'use strict';
|
|
38919
38865
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
38920
38866
|
const output = require('./output');
|
|
38921
38867
|
exports.output = output;
|
|
38922
38868
|
|
|
38923
|
-
},{"./output":
|
|
38869
|
+
},{"./output":302}],302:[function(require,module,exports){
|
|
38924
38870
|
(function (Buffer){(function (){
|
|
38925
38871
|
'use strict';
|
|
38926
38872
|
// OP_RETURN {aa21a9ed} {commitment}
|
|
@@ -38958,9 +38904,9 @@ function decode(buffer) {
|
|
|
38958
38904
|
exports.decode = decode;
|
|
38959
38905
|
|
|
38960
38906
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
38961
|
-
},{"../../script":
|
|
38962
|
-
arguments[4][
|
|
38963
|
-
},{"./input":
|
|
38907
|
+
},{"../../script":285,"../../types":311,"buffer":67,"typeforce":389}],303:[function(require,module,exports){
|
|
38908
|
+
arguments[4][288][0].apply(exports,arguments)
|
|
38909
|
+
},{"./input":304,"./output":305,"dup":288}],304:[function(require,module,exports){
|
|
38964
38910
|
'use strict';
|
|
38965
38911
|
// {signature} {pubKey}
|
|
38966
38912
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -38981,7 +38927,7 @@ check.toJSON = () => {
|
|
|
38981
38927
|
return 'witnessPubKeyHash input';
|
|
38982
38928
|
};
|
|
38983
38929
|
|
|
38984
|
-
},{"../../script":
|
|
38930
|
+
},{"../../script":285}],305:[function(require,module,exports){
|
|
38985
38931
|
'use strict';
|
|
38986
38932
|
// OP_0 {pubKeyHash}
|
|
38987
38933
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -39000,9 +38946,9 @@ check.toJSON = () => {
|
|
|
39000
38946
|
return 'Witness pubKeyHash output';
|
|
39001
38947
|
};
|
|
39002
38948
|
|
|
39003
|
-
},{"../../script":
|
|
39004
|
-
arguments[4][
|
|
39005
|
-
},{"./input":
|
|
38949
|
+
},{"../../script":285}],306:[function(require,module,exports){
|
|
38950
|
+
arguments[4][288][0].apply(exports,arguments)
|
|
38951
|
+
},{"./input":307,"./output":308,"dup":288}],307:[function(require,module,exports){
|
|
39006
38952
|
(function (Buffer){(function (){
|
|
39007
38953
|
'use strict';
|
|
39008
38954
|
// <scriptSig> {serialized scriptPubKey script}
|
|
@@ -39044,8 +38990,8 @@ check.toJSON = () => {
|
|
|
39044
38990
|
return 'witnessScriptHash input';
|
|
39045
38991
|
};
|
|
39046
38992
|
|
|
39047
|
-
}).call(this)}).call(this,{"isBuffer":require("../../../../../../../node_modules/is-buffer/index.js")})
|
|
39048
|
-
},{"../../../../../../../node_modules/is-buffer/index.js":
|
|
38993
|
+
}).call(this)}).call(this,{"isBuffer":require("../../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js")})
|
|
38994
|
+
},{"../../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js":149,"../../script":285,"../multisig":288,"../pubkey":292,"../pubkeyhash":295,"typeforce":389}],308:[function(require,module,exports){
|
|
39049
38995
|
'use strict';
|
|
39050
38996
|
// OP_0 {scriptHash}
|
|
39051
38997
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -39064,7 +39010,7 @@ check.toJSON = () => {
|
|
|
39064
39010
|
return 'Witness scriptHash output';
|
|
39065
39011
|
};
|
|
39066
39012
|
|
|
39067
|
-
},{"../../script":
|
|
39013
|
+
},{"../../script":285}],309:[function(require,module,exports){
|
|
39068
39014
|
(function (Buffer){(function (){
|
|
39069
39015
|
'use strict';
|
|
39070
39016
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -39470,7 +39416,7 @@ Transaction.ADVANCED_TRANSACTION_FLAG = 0x01;
|
|
|
39470
39416
|
exports.Transaction = Transaction;
|
|
39471
39417
|
|
|
39472
39418
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
39473
|
-
},{"./bufferutils":
|
|
39419
|
+
},{"./bufferutils":269,"./crypto":271,"./script":285,"./types":311,"buffer":67,"typeforce":389,"varuint-bitcoin":392}],310:[function(require,module,exports){
|
|
39474
39420
|
(function (Buffer){(function (){
|
|
39475
39421
|
'use strict';
|
|
39476
39422
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -40539,7 +40485,7 @@ function getSigningData(
|
|
|
40539
40485
|
}
|
|
40540
40486
|
|
|
40541
40487
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
40542
|
-
},{"./address":
|
|
40488
|
+
},{"./address":267,"./bufferutils":269,"./classify":270,"./crypto":271,"./ecpair":272,"./networks":274,"./payments":276,"./script":285,"./transaction":309,"./types":311,"buffer":67,"typeforce":389}],311:[function(require,module,exports){
|
|
40543
40489
|
'use strict';
|
|
40544
40490
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
40545
40491
|
const typeforce = require('typeforce');
|
|
@@ -40599,17 +40545,17 @@ exports.BufferN = typeforce.BufferN;
|
|
|
40599
40545
|
exports.Null = typeforce.Null;
|
|
40600
40546
|
exports.oneOf = typeforce.oneOf;
|
|
40601
40547
|
|
|
40602
|
-
},{"typeforce":
|
|
40548
|
+
},{"typeforce":389}],312:[function(require,module,exports){
|
|
40603
40549
|
arguments[4][15][0].apply(exports,arguments)
|
|
40604
|
-
},{"buffer":24,"dup":15}],
|
|
40550
|
+
},{"buffer":24,"dup":15}],313:[function(require,module,exports){
|
|
40605
40551
|
arguments[4][23][0].apply(exports,arguments)
|
|
40606
|
-
},{"crypto":24,"dup":23}],
|
|
40552
|
+
},{"crypto":24,"dup":23}],314:[function(require,module,exports){
|
|
40607
40553
|
var basex = require('base-x')
|
|
40608
40554
|
var ALPHABET = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz'
|
|
40609
40555
|
|
|
40610
40556
|
module.exports = basex(ALPHABET)
|
|
40611
40557
|
|
|
40612
|
-
},{"base-x":
|
|
40558
|
+
},{"base-x":229}],315:[function(require,module,exports){
|
|
40613
40559
|
'use strict'
|
|
40614
40560
|
|
|
40615
40561
|
var base58 = require('bs58')
|
|
@@ -40661,7 +40607,7 @@ module.exports = function (checksumFn) {
|
|
|
40661
40607
|
}
|
|
40662
40608
|
}
|
|
40663
40609
|
|
|
40664
|
-
},{"bs58":
|
|
40610
|
+
},{"bs58":314,"safe-buffer":375}],316:[function(require,module,exports){
|
|
40665
40611
|
'use strict'
|
|
40666
40612
|
|
|
40667
40613
|
var createHash = require('create-hash')
|
|
@@ -40675,81 +40621,81 @@ function sha256x2 (buffer) {
|
|
|
40675
40621
|
|
|
40676
40622
|
module.exports = bs58checkBase(sha256x2)
|
|
40677
40623
|
|
|
40678
|
-
},{"./base":
|
|
40624
|
+
},{"./base":315,"create-hash":318}],317:[function(require,module,exports){
|
|
40679
40625
|
arguments[4][71][0].apply(exports,arguments)
|
|
40680
|
-
},{"dup":71,"inherits":
|
|
40626
|
+
},{"dup":71,"inherits":352,"safe-buffer":375,"stream":192,"string_decoder":207}],318:[function(require,module,exports){
|
|
40681
40627
|
arguments[4][74][0].apply(exports,arguments)
|
|
40682
|
-
},{"cipher-base":
|
|
40628
|
+
},{"cipher-base":317,"dup":74,"inherits":352,"md5.js":353,"ripemd160":374,"sha.js":377}],319:[function(require,module,exports){
|
|
40683
40629
|
arguments[4][75][0].apply(exports,arguments)
|
|
40684
|
-
},{"dup":75,"md5.js":
|
|
40630
|
+
},{"dup":75,"md5.js":353}],320:[function(require,module,exports){
|
|
40685
40631
|
arguments[4][76][0].apply(exports,arguments)
|
|
40686
|
-
},{"./legacy":
|
|
40632
|
+
},{"./legacy":321,"cipher-base":317,"create-hash/md5":319,"dup":76,"inherits":352,"ripemd160":374,"safe-buffer":375,"sha.js":377}],321:[function(require,module,exports){
|
|
40687
40633
|
arguments[4][77][0].apply(exports,arguments)
|
|
40688
|
-
},{"cipher-base":
|
|
40634
|
+
},{"cipher-base":317,"dup":77,"inherits":352,"safe-buffer":375}],322:[function(require,module,exports){
|
|
40689
40635
|
arguments[4][90][0].apply(exports,arguments)
|
|
40690
|
-
},{"../package.json":
|
|
40636
|
+
},{"../package.json":337,"./elliptic/curve":325,"./elliptic/curves":328,"./elliptic/ec":329,"./elliptic/eddsa":332,"./elliptic/utils":336,"brorand":313,"dup":90}],323:[function(require,module,exports){
|
|
40691
40637
|
arguments[4][91][0].apply(exports,arguments)
|
|
40692
|
-
},{"../utils":
|
|
40638
|
+
},{"../utils":336,"bn.js":312,"dup":91}],324:[function(require,module,exports){
|
|
40693
40639
|
arguments[4][92][0].apply(exports,arguments)
|
|
40694
|
-
},{"../utils":
|
|
40640
|
+
},{"../utils":336,"./base":323,"bn.js":312,"dup":92,"inherits":352}],325:[function(require,module,exports){
|
|
40695
40641
|
arguments[4][93][0].apply(exports,arguments)
|
|
40696
|
-
},{"./base":
|
|
40642
|
+
},{"./base":323,"./edwards":324,"./mont":326,"./short":327,"dup":93}],326:[function(require,module,exports){
|
|
40697
40643
|
arguments[4][94][0].apply(exports,arguments)
|
|
40698
|
-
},{"../utils":
|
|
40644
|
+
},{"../utils":336,"./base":323,"bn.js":312,"dup":94,"inherits":352}],327:[function(require,module,exports){
|
|
40699
40645
|
arguments[4][95][0].apply(exports,arguments)
|
|
40700
|
-
},{"../utils":
|
|
40646
|
+
},{"../utils":336,"./base":323,"bn.js":312,"dup":95,"inherits":352}],328:[function(require,module,exports){
|
|
40701
40647
|
arguments[4][96][0].apply(exports,arguments)
|
|
40702
|
-
},{"./curve":
|
|
40648
|
+
},{"./curve":325,"./precomputed/secp256k1":335,"./utils":336,"dup":96,"hash.js":339}],329:[function(require,module,exports){
|
|
40703
40649
|
arguments[4][97][0].apply(exports,arguments)
|
|
40704
|
-
},{"../curves":
|
|
40650
|
+
},{"../curves":328,"../utils":336,"./key":330,"./signature":331,"bn.js":312,"brorand":313,"dup":97,"hmac-drbg":351}],330:[function(require,module,exports){
|
|
40705
40651
|
arguments[4][98][0].apply(exports,arguments)
|
|
40706
|
-
},{"../utils":
|
|
40652
|
+
},{"../utils":336,"bn.js":312,"dup":98}],331:[function(require,module,exports){
|
|
40707
40653
|
arguments[4][99][0].apply(exports,arguments)
|
|
40708
|
-
},{"../utils":
|
|
40654
|
+
},{"../utils":336,"bn.js":312,"dup":99}],332:[function(require,module,exports){
|
|
40709
40655
|
arguments[4][100][0].apply(exports,arguments)
|
|
40710
|
-
},{"../curves":
|
|
40656
|
+
},{"../curves":328,"../utils":336,"./key":333,"./signature":334,"dup":100,"hash.js":339}],333:[function(require,module,exports){
|
|
40711
40657
|
arguments[4][101][0].apply(exports,arguments)
|
|
40712
|
-
},{"../utils":
|
|
40658
|
+
},{"../utils":336,"dup":101}],334:[function(require,module,exports){
|
|
40713
40659
|
arguments[4][102][0].apply(exports,arguments)
|
|
40714
|
-
},{"../utils":
|
|
40660
|
+
},{"../utils":336,"bn.js":312,"dup":102}],335:[function(require,module,exports){
|
|
40715
40661
|
arguments[4][103][0].apply(exports,arguments)
|
|
40716
|
-
},{"dup":103}],
|
|
40662
|
+
},{"dup":103}],336:[function(require,module,exports){
|
|
40717
40663
|
arguments[4][104][0].apply(exports,arguments)
|
|
40718
|
-
},{"bn.js":
|
|
40664
|
+
},{"bn.js":312,"dup":104,"minimalistic-assert":355,"minimalistic-crypto-utils":356}],337:[function(require,module,exports){
|
|
40719
40665
|
arguments[4][106][0].apply(exports,arguments)
|
|
40720
|
-
},{"dup":106}],
|
|
40666
|
+
},{"dup":106}],338:[function(require,module,exports){
|
|
40721
40667
|
arguments[4][118][0].apply(exports,arguments)
|
|
40722
|
-
},{"dup":118,"inherits":
|
|
40668
|
+
},{"dup":118,"inherits":352,"readable-stream":373,"safe-buffer":375}],339:[function(require,module,exports){
|
|
40723
40669
|
arguments[4][134][0].apply(exports,arguments)
|
|
40724
|
-
},{"./hash/common":
|
|
40670
|
+
},{"./hash/common":340,"./hash/hmac":341,"./hash/ripemd":342,"./hash/sha":343,"./hash/utils":350,"dup":134}],340:[function(require,module,exports){
|
|
40725
40671
|
arguments[4][135][0].apply(exports,arguments)
|
|
40726
|
-
},{"./utils":
|
|
40672
|
+
},{"./utils":350,"dup":135,"minimalistic-assert":355}],341:[function(require,module,exports){
|
|
40727
40673
|
arguments[4][136][0].apply(exports,arguments)
|
|
40728
|
-
},{"./utils":
|
|
40674
|
+
},{"./utils":350,"dup":136,"minimalistic-assert":355}],342:[function(require,module,exports){
|
|
40729
40675
|
arguments[4][137][0].apply(exports,arguments)
|
|
40730
|
-
},{"./common":
|
|
40676
|
+
},{"./common":340,"./utils":350,"dup":137}],343:[function(require,module,exports){
|
|
40731
40677
|
arguments[4][138][0].apply(exports,arguments)
|
|
40732
|
-
},{"./sha/1":
|
|
40678
|
+
},{"./sha/1":344,"./sha/224":345,"./sha/256":346,"./sha/384":347,"./sha/512":348,"dup":138}],344:[function(require,module,exports){
|
|
40733
40679
|
arguments[4][139][0].apply(exports,arguments)
|
|
40734
|
-
},{"../common":
|
|
40680
|
+
},{"../common":340,"../utils":350,"./common":349,"dup":139}],345:[function(require,module,exports){
|
|
40735
40681
|
arguments[4][140][0].apply(exports,arguments)
|
|
40736
|
-
},{"../utils":
|
|
40682
|
+
},{"../utils":350,"./256":346,"dup":140}],346:[function(require,module,exports){
|
|
40737
40683
|
arguments[4][141][0].apply(exports,arguments)
|
|
40738
|
-
},{"../common":
|
|
40684
|
+
},{"../common":340,"../utils":350,"./common":349,"dup":141,"minimalistic-assert":355}],347:[function(require,module,exports){
|
|
40739
40685
|
arguments[4][142][0].apply(exports,arguments)
|
|
40740
|
-
},{"../utils":
|
|
40686
|
+
},{"../utils":350,"./512":348,"dup":142}],348:[function(require,module,exports){
|
|
40741
40687
|
arguments[4][143][0].apply(exports,arguments)
|
|
40742
|
-
},{"../common":
|
|
40688
|
+
},{"../common":340,"../utils":350,"dup":143,"minimalistic-assert":355}],349:[function(require,module,exports){
|
|
40743
40689
|
arguments[4][144][0].apply(exports,arguments)
|
|
40744
|
-
},{"../utils":
|
|
40690
|
+
},{"../utils":350,"dup":144}],350:[function(require,module,exports){
|
|
40745
40691
|
arguments[4][145][0].apply(exports,arguments)
|
|
40746
|
-
},{"dup":145,"inherits":
|
|
40692
|
+
},{"dup":145,"inherits":352,"minimalistic-assert":355}],351:[function(require,module,exports){
|
|
40747
40693
|
arguments[4][146][0].apply(exports,arguments)
|
|
40748
|
-
},{"dup":146,"hash.js":
|
|
40694
|
+
},{"dup":146,"hash.js":339,"minimalistic-assert":355,"minimalistic-crypto-utils":356}],352:[function(require,module,exports){
|
|
40749
40695
|
arguments[4][148][0].apply(exports,arguments)
|
|
40750
|
-
},{"dup":148}],
|
|
40696
|
+
},{"dup":148}],353:[function(require,module,exports){
|
|
40751
40697
|
arguments[4][154][0].apply(exports,arguments)
|
|
40752
|
-
},{"dup":154,"hash-base":
|
|
40698
|
+
},{"dup":154,"hash-base":338,"inherits":352,"safe-buffer":375}],354:[function(require,module,exports){
|
|
40753
40699
|
(function (Buffer){(function (){
|
|
40754
40700
|
// constant-space merkle root calculation algorithm
|
|
40755
40701
|
module.exports = function fastRoot (values, digestFn) {
|
|
@@ -40777,11 +40723,11 @@ module.exports = function fastRoot (values, digestFn) {
|
|
|
40777
40723
|
}
|
|
40778
40724
|
|
|
40779
40725
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
40780
|
-
},{"buffer":67}],
|
|
40726
|
+
},{"buffer":67}],355:[function(require,module,exports){
|
|
40781
40727
|
arguments[4][157][0].apply(exports,arguments)
|
|
40782
|
-
},{"dup":157}],
|
|
40728
|
+
},{"dup":157}],356:[function(require,module,exports){
|
|
40783
40729
|
arguments[4][158][0].apply(exports,arguments)
|
|
40784
|
-
},{"dup":158}],
|
|
40730
|
+
},{"dup":158}],357:[function(require,module,exports){
|
|
40785
40731
|
var OPS = require('bitcoin-ops')
|
|
40786
40732
|
|
|
40787
40733
|
function encodingLength (i) {
|
|
@@ -40860,61 +40806,61 @@ module.exports = {
|
|
|
40860
40806
|
decode: decode
|
|
40861
40807
|
}
|
|
40862
40808
|
|
|
40863
|
-
},{"bitcoin-ops":
|
|
40809
|
+
},{"bitcoin-ops":265}],358:[function(require,module,exports){
|
|
40864
40810
|
arguments[4][179][0].apply(exports,arguments)
|
|
40865
|
-
},{"_process":171,"dup":179,"safe-buffer":
|
|
40811
|
+
},{"_process":171,"dup":179,"safe-buffer":375}],359:[function(require,module,exports){
|
|
40866
40812
|
arguments[4][52][0].apply(exports,arguments)
|
|
40867
|
-
},{"dup":52}],
|
|
40813
|
+
},{"dup":52}],360:[function(require,module,exports){
|
|
40868
40814
|
arguments[4][53][0].apply(exports,arguments)
|
|
40869
|
-
},{"./_stream_readable":
|
|
40815
|
+
},{"./_stream_readable":362,"./_stream_writable":364,"_process":171,"dup":53,"inherits":352}],361:[function(require,module,exports){
|
|
40870
40816
|
arguments[4][54][0].apply(exports,arguments)
|
|
40871
|
-
},{"./_stream_transform":
|
|
40817
|
+
},{"./_stream_transform":363,"dup":54,"inherits":352}],362:[function(require,module,exports){
|
|
40872
40818
|
arguments[4][55][0].apply(exports,arguments)
|
|
40873
|
-
},{"../errors":
|
|
40819
|
+
},{"../errors":359,"./_stream_duplex":360,"./internal/streams/async_iterator":365,"./internal/streams/buffer_list":366,"./internal/streams/destroy":367,"./internal/streams/from":369,"./internal/streams/state":371,"./internal/streams/stream":372,"_process":171,"buffer":67,"dup":55,"events":107,"inherits":352,"string_decoder/":384,"util":24}],363:[function(require,module,exports){
|
|
40874
40820
|
arguments[4][56][0].apply(exports,arguments)
|
|
40875
|
-
},{"../errors":
|
|
40821
|
+
},{"../errors":359,"./_stream_duplex":360,"dup":56,"inherits":352}],364:[function(require,module,exports){
|
|
40876
40822
|
arguments[4][57][0].apply(exports,arguments)
|
|
40877
|
-
},{"../errors":
|
|
40823
|
+
},{"../errors":359,"./_stream_duplex":360,"./internal/streams/destroy":367,"./internal/streams/state":371,"./internal/streams/stream":372,"_process":171,"buffer":67,"dup":57,"inherits":352,"util-deprecate":391}],365:[function(require,module,exports){
|
|
40878
40824
|
arguments[4][58][0].apply(exports,arguments)
|
|
40879
|
-
},{"./end-of-stream":
|
|
40825
|
+
},{"./end-of-stream":368,"_process":171,"dup":58}],366:[function(require,module,exports){
|
|
40880
40826
|
arguments[4][59][0].apply(exports,arguments)
|
|
40881
|
-
},{"buffer":67,"dup":59,"util":24}],
|
|
40827
|
+
},{"buffer":67,"dup":59,"util":24}],367:[function(require,module,exports){
|
|
40882
40828
|
arguments[4][60][0].apply(exports,arguments)
|
|
40883
|
-
},{"_process":171,"dup":60}],
|
|
40829
|
+
},{"_process":171,"dup":60}],368:[function(require,module,exports){
|
|
40884
40830
|
arguments[4][61][0].apply(exports,arguments)
|
|
40885
|
-
},{"../../../errors":
|
|
40831
|
+
},{"../../../errors":359,"dup":61}],369:[function(require,module,exports){
|
|
40886
40832
|
arguments[4][62][0].apply(exports,arguments)
|
|
40887
|
-
},{"dup":62}],
|
|
40833
|
+
},{"dup":62}],370:[function(require,module,exports){
|
|
40888
40834
|
arguments[4][63][0].apply(exports,arguments)
|
|
40889
|
-
},{"../../../errors":
|
|
40835
|
+
},{"../../../errors":359,"./end-of-stream":368,"dup":63}],371:[function(require,module,exports){
|
|
40890
40836
|
arguments[4][64][0].apply(exports,arguments)
|
|
40891
|
-
},{"../../../errors":
|
|
40837
|
+
},{"../../../errors":359,"dup":64}],372:[function(require,module,exports){
|
|
40892
40838
|
arguments[4][65][0].apply(exports,arguments)
|
|
40893
|
-
},{"dup":65,"events":107}],
|
|
40839
|
+
},{"dup":65,"events":107}],373:[function(require,module,exports){
|
|
40894
40840
|
arguments[4][66][0].apply(exports,arguments)
|
|
40895
|
-
},{"./lib/_stream_duplex.js":
|
|
40841
|
+
},{"./lib/_stream_duplex.js":360,"./lib/_stream_passthrough.js":361,"./lib/_stream_readable.js":362,"./lib/_stream_transform.js":363,"./lib/_stream_writable.js":364,"./lib/internal/streams/end-of-stream.js":368,"./lib/internal/streams/pipeline.js":370,"dup":66}],374:[function(require,module,exports){
|
|
40896
40842
|
arguments[4][181][0].apply(exports,arguments)
|
|
40897
|
-
},{"buffer":67,"dup":181,"hash-base":
|
|
40843
|
+
},{"buffer":67,"dup":181,"hash-base":338,"inherits":352}],375:[function(require,module,exports){
|
|
40898
40844
|
arguments[4][182][0].apply(exports,arguments)
|
|
40899
|
-
},{"buffer":67,"dup":182}],
|
|
40845
|
+
},{"buffer":67,"dup":182}],376:[function(require,module,exports){
|
|
40900
40846
|
arguments[4][184][0].apply(exports,arguments)
|
|
40901
|
-
},{"dup":184,"safe-buffer":
|
|
40847
|
+
},{"dup":184,"safe-buffer":375}],377:[function(require,module,exports){
|
|
40902
40848
|
arguments[4][185][0].apply(exports,arguments)
|
|
40903
|
-
},{"./sha":
|
|
40849
|
+
},{"./sha":378,"./sha1":379,"./sha224":380,"./sha256":381,"./sha384":382,"./sha512":383,"dup":185}],378:[function(require,module,exports){
|
|
40904
40850
|
arguments[4][186][0].apply(exports,arguments)
|
|
40905
|
-
},{"./hash":
|
|
40851
|
+
},{"./hash":376,"dup":186,"inherits":352,"safe-buffer":375}],379:[function(require,module,exports){
|
|
40906
40852
|
arguments[4][187][0].apply(exports,arguments)
|
|
40907
|
-
},{"./hash":
|
|
40853
|
+
},{"./hash":376,"dup":187,"inherits":352,"safe-buffer":375}],380:[function(require,module,exports){
|
|
40908
40854
|
arguments[4][188][0].apply(exports,arguments)
|
|
40909
|
-
},{"./hash":
|
|
40855
|
+
},{"./hash":376,"./sha256":381,"dup":188,"inherits":352,"safe-buffer":375}],381:[function(require,module,exports){
|
|
40910
40856
|
arguments[4][189][0].apply(exports,arguments)
|
|
40911
|
-
},{"./hash":
|
|
40857
|
+
},{"./hash":376,"dup":189,"inherits":352,"safe-buffer":375}],382:[function(require,module,exports){
|
|
40912
40858
|
arguments[4][190][0].apply(exports,arguments)
|
|
40913
|
-
},{"./hash":
|
|
40859
|
+
},{"./hash":376,"./sha512":383,"dup":190,"inherits":352,"safe-buffer":375}],383:[function(require,module,exports){
|
|
40914
40860
|
arguments[4][191][0].apply(exports,arguments)
|
|
40915
|
-
},{"./hash":
|
|
40861
|
+
},{"./hash":376,"dup":191,"inherits":352,"safe-buffer":375}],384:[function(require,module,exports){
|
|
40916
40862
|
arguments[4][207][0].apply(exports,arguments)
|
|
40917
|
-
},{"dup":207,"safe-buffer":
|
|
40863
|
+
},{"dup":207,"safe-buffer":375}],385:[function(require,module,exports){
|
|
40918
40864
|
(function (Buffer){(function (){
|
|
40919
40865
|
const BN = require('bn.js')
|
|
40920
40866
|
const EC = require('elliptic').ec
|
|
@@ -41200,7 +41146,7 @@ module.exports = {
|
|
|
41200
41146
|
}
|
|
41201
41147
|
|
|
41202
41148
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
41203
|
-
},{"./rfc6979":
|
|
41149
|
+
},{"./rfc6979":386,"bn.js":312,"buffer":67,"elliptic":322}],386:[function(require,module,exports){
|
|
41204
41150
|
(function (Buffer){(function (){
|
|
41205
41151
|
const createHmac = require('create-hmac')
|
|
41206
41152
|
|
|
@@ -41266,7 +41212,7 @@ function deterministicGenerateK (hash, x, checkSig, isPrivate, extraEntropy) {
|
|
|
41266
41212
|
module.exports = deterministicGenerateK
|
|
41267
41213
|
|
|
41268
41214
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
41269
|
-
},{"buffer":67,"create-hmac":
|
|
41215
|
+
},{"buffer":67,"create-hmac":320}],387:[function(require,module,exports){
|
|
41270
41216
|
var native = require('./native')
|
|
41271
41217
|
|
|
41272
41218
|
function getTypeName (fn) {
|
|
@@ -41378,7 +41324,7 @@ module.exports = {
|
|
|
41378
41324
|
getValueTypeName: getValueTypeName
|
|
41379
41325
|
}
|
|
41380
41326
|
|
|
41381
|
-
},{"./native":
|
|
41327
|
+
},{"./native":390}],388:[function(require,module,exports){
|
|
41382
41328
|
(function (Buffer){(function (){
|
|
41383
41329
|
var NATIVE = require('./native')
|
|
41384
41330
|
var ERRORS = require('./errors')
|
|
@@ -41472,8 +41418,8 @@ for (var typeName in types) {
|
|
|
41472
41418
|
|
|
41473
41419
|
module.exports = types
|
|
41474
41420
|
|
|
41475
|
-
}).call(this)}).call(this,{"isBuffer":require("../../../../node_modules/is-buffer/index.js")})
|
|
41476
|
-
},{"../../../../node_modules/is-buffer/index.js":
|
|
41421
|
+
}).call(this)}).call(this,{"isBuffer":require("../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js")})
|
|
41422
|
+
},{"../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js":149,"./errors":387,"./native":390}],389:[function(require,module,exports){
|
|
41477
41423
|
var ERRORS = require('./errors')
|
|
41478
41424
|
var NATIVE = require('./native')
|
|
41479
41425
|
|
|
@@ -41735,7 +41681,7 @@ typeforce.TfPropertyTypeError = TfPropertyTypeError
|
|
|
41735
41681
|
|
|
41736
41682
|
module.exports = typeforce
|
|
41737
41683
|
|
|
41738
|
-
},{"./errors":
|
|
41684
|
+
},{"./errors":387,"./extra":388,"./native":390}],390:[function(require,module,exports){
|
|
41739
41685
|
var types = {
|
|
41740
41686
|
Array: function (value) { return value !== null && value !== undefined && value.constructor === Array },
|
|
41741
41687
|
Boolean: function (value) { return typeof value === 'boolean' },
|
|
@@ -41758,9 +41704,9 @@ for (var typeName in types) {
|
|
|
41758
41704
|
|
|
41759
41705
|
module.exports = types
|
|
41760
41706
|
|
|
41761
|
-
},{}],
|
|
41762
|
-
arguments[4][
|
|
41763
|
-
},{"dup":
|
|
41707
|
+
},{}],391:[function(require,module,exports){
|
|
41708
|
+
arguments[4][208][0].apply(exports,arguments)
|
|
41709
|
+
},{"dup":208}],392:[function(require,module,exports){
|
|
41764
41710
|
'use strict'
|
|
41765
41711
|
var Buffer = require('safe-buffer').Buffer
|
|
41766
41712
|
|
|
@@ -41852,7 +41798,7 @@ function encodingLength (number) {
|
|
|
41852
41798
|
|
|
41853
41799
|
module.exports = { encode: encode, decode: decode, encodingLength: encodingLength }
|
|
41854
41800
|
|
|
41855
|
-
},{"safe-buffer":
|
|
41801
|
+
},{"safe-buffer":375}],393:[function(require,module,exports){
|
|
41856
41802
|
(function (Buffer){(function (){
|
|
41857
41803
|
var bs58check = require('bs58check')
|
|
41858
41804
|
|
|
@@ -41919,7 +41865,7 @@ module.exports = {
|
|
|
41919
41865
|
}
|
|
41920
41866
|
|
|
41921
41867
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
41922
|
-
},{"bs58check":
|
|
41868
|
+
},{"bs58check":316,"buffer":67}],394:[function(require,module,exports){
|
|
41923
41869
|
"use strict";
|
|
41924
41870
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
41925
41871
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -42039,7 +41985,7 @@ var Action = /** @class */ (function () {
|
|
|
42039
41985
|
}());
|
|
42040
41986
|
exports.Action = Action;
|
|
42041
41987
|
|
|
42042
|
-
},{"../errors":
|
|
41988
|
+
},{"../errors":607,"../errors/coinlib-error":606,"./StateMachine":398}],395:[function(require,module,exports){
|
|
42043
41989
|
"use strict";
|
|
42044
41990
|
var __extends = (this && this.__extends) || (function () {
|
|
42045
41991
|
var extendStatics = function (d, b) {
|
|
@@ -42135,7 +42081,7 @@ var LinkedAction = /** @class */ (function (_super) {
|
|
|
42135
42081
|
}(Action_1.Action));
|
|
42136
42082
|
exports.LinkedAction = LinkedAction;
|
|
42137
42083
|
|
|
42138
|
-
},{"./Action":
|
|
42084
|
+
},{"./Action":394}],396:[function(require,module,exports){
|
|
42139
42085
|
"use strict";
|
|
42140
42086
|
var __extends = (this && this.__extends) || (function () {
|
|
42141
42087
|
var extendStatics = function (d, b) {
|
|
@@ -42228,7 +42174,7 @@ var RepeatableAction = /** @class */ (function (_super) {
|
|
|
42228
42174
|
}(Action_1.Action));
|
|
42229
42175
|
exports.RepeatableAction = RepeatableAction;
|
|
42230
42176
|
|
|
42231
|
-
},{"./Action":
|
|
42177
|
+
},{"./Action":394}],397:[function(require,module,exports){
|
|
42232
42178
|
"use strict";
|
|
42233
42179
|
var __extends = (this && this.__extends) || (function () {
|
|
42234
42180
|
var extendStatics = function (d, b) {
|
|
@@ -42309,7 +42255,7 @@ var SimpleAction = /** @class */ (function (_super) {
|
|
|
42309
42255
|
}(Action_1.Action));
|
|
42310
42256
|
exports.SimpleAction = SimpleAction;
|
|
42311
42257
|
|
|
42312
|
-
},{"./Action":
|
|
42258
|
+
},{"./Action":394}],398:[function(require,module,exports){
|
|
42313
42259
|
"use strict";
|
|
42314
42260
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
42315
42261
|
exports.StateMachine = void 0;
|
|
@@ -42352,9 +42298,9 @@ var StateMachine = /** @class */ (function () {
|
|
|
42352
42298
|
}());
|
|
42353
42299
|
exports.StateMachine = StateMachine;
|
|
42354
42300
|
|
|
42355
|
-
},{"../errors":
|
|
42301
|
+
},{"../errors":607,"../errors/coinlib-error":606}],399:[function(require,module,exports){
|
|
42356
42302
|
module.exports = require('./lib/axios');
|
|
42357
|
-
},{"./lib/axios":
|
|
42303
|
+
},{"./lib/axios":401}],400:[function(require,module,exports){
|
|
42358
42304
|
'use strict';
|
|
42359
42305
|
|
|
42360
42306
|
var utils = require('./../utils');
|
|
@@ -42530,7 +42476,7 @@ module.exports = function xhrAdapter(config) {
|
|
|
42530
42476
|
});
|
|
42531
42477
|
};
|
|
42532
42478
|
|
|
42533
|
-
},{"../core/createError":
|
|
42479
|
+
},{"../core/createError":407,"./../core/settle":411,"./../helpers/buildURL":415,"./../helpers/cookies":417,"./../helpers/isURLSameOrigin":419,"./../helpers/parseHeaders":421,"./../utils":423}],401:[function(require,module,exports){
|
|
42534
42480
|
'use strict';
|
|
42535
42481
|
|
|
42536
42482
|
var utils = require('./utils');
|
|
@@ -42585,7 +42531,7 @@ module.exports = axios;
|
|
|
42585
42531
|
// Allow use of default import syntax in TypeScript
|
|
42586
42532
|
module.exports.default = axios;
|
|
42587
42533
|
|
|
42588
|
-
},{"./cancel/Cancel":
|
|
42534
|
+
},{"./cancel/Cancel":402,"./cancel/CancelToken":403,"./cancel/isCancel":404,"./core/Axios":405,"./core/mergeConfig":410,"./defaults":413,"./helpers/bind":414,"./helpers/spread":422,"./utils":423}],402:[function(require,module,exports){
|
|
42589
42535
|
'use strict';
|
|
42590
42536
|
|
|
42591
42537
|
/**
|
|
@@ -42606,7 +42552,7 @@ Cancel.prototype.__CANCEL__ = true;
|
|
|
42606
42552
|
|
|
42607
42553
|
module.exports = Cancel;
|
|
42608
42554
|
|
|
42609
|
-
},{}],
|
|
42555
|
+
},{}],403:[function(require,module,exports){
|
|
42610
42556
|
'use strict';
|
|
42611
42557
|
|
|
42612
42558
|
var Cancel = require('./Cancel');
|
|
@@ -42665,14 +42611,14 @@ CancelToken.source = function source() {
|
|
|
42665
42611
|
|
|
42666
42612
|
module.exports = CancelToken;
|
|
42667
42613
|
|
|
42668
|
-
},{"./Cancel":
|
|
42614
|
+
},{"./Cancel":402}],404:[function(require,module,exports){
|
|
42669
42615
|
'use strict';
|
|
42670
42616
|
|
|
42671
42617
|
module.exports = function isCancel(value) {
|
|
42672
42618
|
return !!(value && value.__CANCEL__);
|
|
42673
42619
|
};
|
|
42674
42620
|
|
|
42675
|
-
},{}],
|
|
42621
|
+
},{}],405:[function(require,module,exports){
|
|
42676
42622
|
'use strict';
|
|
42677
42623
|
|
|
42678
42624
|
var utils = require('./../utils');
|
|
@@ -42760,7 +42706,7 @@ utils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {
|
|
|
42760
42706
|
|
|
42761
42707
|
module.exports = Axios;
|
|
42762
42708
|
|
|
42763
|
-
},{"../helpers/buildURL":
|
|
42709
|
+
},{"../helpers/buildURL":415,"./../utils":423,"./InterceptorManager":406,"./dispatchRequest":408,"./mergeConfig":410}],406:[function(require,module,exports){
|
|
42764
42710
|
'use strict';
|
|
42765
42711
|
|
|
42766
42712
|
var utils = require('./../utils');
|
|
@@ -42814,7 +42760,7 @@ InterceptorManager.prototype.forEach = function forEach(fn) {
|
|
|
42814
42760
|
|
|
42815
42761
|
module.exports = InterceptorManager;
|
|
42816
42762
|
|
|
42817
|
-
},{"./../utils":
|
|
42763
|
+
},{"./../utils":423}],407:[function(require,module,exports){
|
|
42818
42764
|
'use strict';
|
|
42819
42765
|
|
|
42820
42766
|
var enhanceError = require('./enhanceError');
|
|
@@ -42834,7 +42780,7 @@ module.exports = function createError(message, config, code, request, response)
|
|
|
42834
42780
|
return enhanceError(error, config, code, request, response);
|
|
42835
42781
|
};
|
|
42836
42782
|
|
|
42837
|
-
},{"./enhanceError":
|
|
42783
|
+
},{"./enhanceError":409}],408:[function(require,module,exports){
|
|
42838
42784
|
'use strict';
|
|
42839
42785
|
|
|
42840
42786
|
var utils = require('./../utils');
|
|
@@ -42922,7 +42868,7 @@ module.exports = function dispatchRequest(config) {
|
|
|
42922
42868
|
});
|
|
42923
42869
|
};
|
|
42924
42870
|
|
|
42925
|
-
},{"../cancel/isCancel":
|
|
42871
|
+
},{"../cancel/isCancel":404,"../defaults":413,"./../helpers/combineURLs":416,"./../helpers/isAbsoluteURL":418,"./../utils":423,"./transformData":412}],409:[function(require,module,exports){
|
|
42926
42872
|
'use strict';
|
|
42927
42873
|
|
|
42928
42874
|
/**
|
|
@@ -42966,7 +42912,7 @@ module.exports = function enhanceError(error, config, code, request, response) {
|
|
|
42966
42912
|
return error;
|
|
42967
42913
|
};
|
|
42968
42914
|
|
|
42969
|
-
},{}],
|
|
42915
|
+
},{}],410:[function(require,module,exports){
|
|
42970
42916
|
'use strict';
|
|
42971
42917
|
|
|
42972
42918
|
var utils = require('../utils');
|
|
@@ -43019,7 +42965,7 @@ module.exports = function mergeConfig(config1, config2) {
|
|
|
43019
42965
|
return config;
|
|
43020
42966
|
};
|
|
43021
42967
|
|
|
43022
|
-
},{"../utils":
|
|
42968
|
+
},{"../utils":423}],411:[function(require,module,exports){
|
|
43023
42969
|
'use strict';
|
|
43024
42970
|
|
|
43025
42971
|
var createError = require('./createError');
|
|
@@ -43046,7 +42992,7 @@ module.exports = function settle(resolve, reject, response) {
|
|
|
43046
42992
|
}
|
|
43047
42993
|
};
|
|
43048
42994
|
|
|
43049
|
-
},{"./createError":
|
|
42995
|
+
},{"./createError":407}],412:[function(require,module,exports){
|
|
43050
42996
|
'use strict';
|
|
43051
42997
|
|
|
43052
42998
|
var utils = require('./../utils');
|
|
@@ -43068,7 +43014,7 @@ module.exports = function transformData(data, headers, fns) {
|
|
|
43068
43014
|
return data;
|
|
43069
43015
|
};
|
|
43070
43016
|
|
|
43071
|
-
},{"./../utils":
|
|
43017
|
+
},{"./../utils":423}],413:[function(require,module,exports){
|
|
43072
43018
|
(function (process){(function (){
|
|
43073
43019
|
'use strict';
|
|
43074
43020
|
|
|
@@ -43170,7 +43116,7 @@ utils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {
|
|
|
43170
43116
|
module.exports = defaults;
|
|
43171
43117
|
|
|
43172
43118
|
}).call(this)}).call(this,require('_process'))
|
|
43173
|
-
},{"./adapters/http":
|
|
43119
|
+
},{"./adapters/http":400,"./adapters/xhr":400,"./helpers/normalizeHeaderName":420,"./utils":423,"_process":171}],414:[function(require,module,exports){
|
|
43174
43120
|
'use strict';
|
|
43175
43121
|
|
|
43176
43122
|
module.exports = function bind(fn, thisArg) {
|
|
@@ -43183,7 +43129,7 @@ module.exports = function bind(fn, thisArg) {
|
|
|
43183
43129
|
};
|
|
43184
43130
|
};
|
|
43185
43131
|
|
|
43186
|
-
},{}],
|
|
43132
|
+
},{}],415:[function(require,module,exports){
|
|
43187
43133
|
'use strict';
|
|
43188
43134
|
|
|
43189
43135
|
var utils = require('./../utils');
|
|
@@ -43256,7 +43202,7 @@ module.exports = function buildURL(url, params, paramsSerializer) {
|
|
|
43256
43202
|
return url;
|
|
43257
43203
|
};
|
|
43258
43204
|
|
|
43259
|
-
},{"./../utils":
|
|
43205
|
+
},{"./../utils":423}],416:[function(require,module,exports){
|
|
43260
43206
|
'use strict';
|
|
43261
43207
|
|
|
43262
43208
|
/**
|
|
@@ -43272,7 +43218,7 @@ module.exports = function combineURLs(baseURL, relativeURL) {
|
|
|
43272
43218
|
: baseURL;
|
|
43273
43219
|
};
|
|
43274
43220
|
|
|
43275
|
-
},{}],
|
|
43221
|
+
},{}],417:[function(require,module,exports){
|
|
43276
43222
|
'use strict';
|
|
43277
43223
|
|
|
43278
43224
|
var utils = require('./../utils');
|
|
@@ -43327,7 +43273,7 @@ module.exports = (
|
|
|
43327
43273
|
})()
|
|
43328
43274
|
);
|
|
43329
43275
|
|
|
43330
|
-
},{"./../utils":
|
|
43276
|
+
},{"./../utils":423}],418:[function(require,module,exports){
|
|
43331
43277
|
'use strict';
|
|
43332
43278
|
|
|
43333
43279
|
/**
|
|
@@ -43343,7 +43289,7 @@ module.exports = function isAbsoluteURL(url) {
|
|
|
43343
43289
|
return /^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(url);
|
|
43344
43290
|
};
|
|
43345
43291
|
|
|
43346
|
-
},{}],
|
|
43292
|
+
},{}],419:[function(require,module,exports){
|
|
43347
43293
|
'use strict';
|
|
43348
43294
|
|
|
43349
43295
|
var utils = require('./../utils');
|
|
@@ -43413,7 +43359,7 @@ module.exports = (
|
|
|
43413
43359
|
})()
|
|
43414
43360
|
);
|
|
43415
43361
|
|
|
43416
|
-
},{"./../utils":
|
|
43362
|
+
},{"./../utils":423}],420:[function(require,module,exports){
|
|
43417
43363
|
'use strict';
|
|
43418
43364
|
|
|
43419
43365
|
var utils = require('../utils');
|
|
@@ -43427,7 +43373,7 @@ module.exports = function normalizeHeaderName(headers, normalizedName) {
|
|
|
43427
43373
|
});
|
|
43428
43374
|
};
|
|
43429
43375
|
|
|
43430
|
-
},{"../utils":
|
|
43376
|
+
},{"../utils":423}],421:[function(require,module,exports){
|
|
43431
43377
|
'use strict';
|
|
43432
43378
|
|
|
43433
43379
|
var utils = require('./../utils');
|
|
@@ -43482,7 +43428,7 @@ module.exports = function parseHeaders(headers) {
|
|
|
43482
43428
|
return parsed;
|
|
43483
43429
|
};
|
|
43484
43430
|
|
|
43485
|
-
},{"./../utils":
|
|
43431
|
+
},{"./../utils":423}],422:[function(require,module,exports){
|
|
43486
43432
|
'use strict';
|
|
43487
43433
|
|
|
43488
43434
|
/**
|
|
@@ -43511,7 +43457,7 @@ module.exports = function spread(callback) {
|
|
|
43511
43457
|
};
|
|
43512
43458
|
};
|
|
43513
43459
|
|
|
43514
|
-
},{}],
|
|
43460
|
+
},{}],423:[function(require,module,exports){
|
|
43515
43461
|
'use strict';
|
|
43516
43462
|
|
|
43517
43463
|
var bind = require('./helpers/bind');
|
|
@@ -43847,7 +43793,7 @@ module.exports = {
|
|
|
43847
43793
|
trim: trim
|
|
43848
43794
|
};
|
|
43849
43795
|
|
|
43850
|
-
},{"../../is-buffer-2.0.3/index":
|
|
43796
|
+
},{"../../is-buffer-2.0.3/index":548,"./helpers/bind":414}],424:[function(require,module,exports){
|
|
43851
43797
|
'use strict'
|
|
43852
43798
|
// base-x encoding / decoding
|
|
43853
43799
|
// Copyright (c) 2018 base-x contributors
|
|
@@ -43969,7 +43915,7 @@ function base (ALPHABET) {
|
|
|
43969
43915
|
}
|
|
43970
43916
|
module.exports = base
|
|
43971
43917
|
|
|
43972
|
-
},{"../../safe-buffer-5.2.0/index":
|
|
43918
|
+
},{"../../safe-buffer-5.2.0/index":580}],425:[function(require,module,exports){
|
|
43973
43919
|
'use strict'
|
|
43974
43920
|
let ALPHABET = 'qpzry9x8gf2tvdw0s3jn54khce6mua7l'
|
|
43975
43921
|
|
|
@@ -44110,7 +44056,7 @@ function fromWords (words) {
|
|
|
44110
44056
|
|
|
44111
44057
|
module.exports = { decode, encode, toWords, fromWords }
|
|
44112
44058
|
|
|
44113
|
-
},{}],
|
|
44059
|
+
},{}],426:[function(require,module,exports){
|
|
44114
44060
|
'use strict'
|
|
44115
44061
|
var ALPHABET = 'qpzry9x8gf2tvdw0s3jn54khce6mua7l'
|
|
44116
44062
|
|
|
@@ -44259,7 +44205,7 @@ module.exports = {
|
|
|
44259
44205
|
fromWords: fromWords
|
|
44260
44206
|
}
|
|
44261
44207
|
|
|
44262
|
-
},{}],
|
|
44208
|
+
},{}],427:[function(require,module,exports){
|
|
44263
44209
|
// (public) Constructor
|
|
44264
44210
|
function BigInteger(a, b, c) {
|
|
44265
44211
|
if (!(this instanceof BigInteger))
|
|
@@ -45770,7 +45716,7 @@ BigInteger.valueOf = nbv
|
|
|
45770
45716
|
|
|
45771
45717
|
module.exports = BigInteger
|
|
45772
45718
|
|
|
45773
|
-
},{"../package.json":
|
|
45719
|
+
},{"../package.json":430}],428:[function(require,module,exports){
|
|
45774
45720
|
(function (Buffer){(function (){
|
|
45775
45721
|
// FIXME: Kind of a weird way to throw exceptions, consider removing
|
|
45776
45722
|
var assert = require('assert')
|
|
@@ -45865,14 +45811,14 @@ BigInteger.prototype.toHex = function(size) {
|
|
|
45865
45811
|
}
|
|
45866
45812
|
|
|
45867
45813
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
45868
|
-
},{"./bigi":
|
|
45814
|
+
},{"./bigi":427,"assert":16,"buffer":67}],429:[function(require,module,exports){
|
|
45869
45815
|
var BigInteger = require('./bigi')
|
|
45870
45816
|
|
|
45871
45817
|
//addons
|
|
45872
45818
|
require('./convert')
|
|
45873
45819
|
|
|
45874
45820
|
module.exports = BigInteger
|
|
45875
|
-
},{"./bigi":
|
|
45821
|
+
},{"./bigi":427,"./convert":428}],430:[function(require,module,exports){
|
|
45876
45822
|
module.exports={
|
|
45877
45823
|
"name": "bigi",
|
|
45878
45824
|
"version": "1.4.2",
|
|
@@ -45928,7 +45874,7 @@ module.exports={
|
|
|
45928
45874
|
]
|
|
45929
45875
|
}
|
|
45930
45876
|
}
|
|
45931
|
-
},{}],
|
|
45877
|
+
},{}],431:[function(require,module,exports){
|
|
45932
45878
|
;(function (globalObject) {
|
|
45933
45879
|
'use strict';
|
|
45934
45880
|
|
|
@@ -48832,7 +48778,7 @@ module.exports={
|
|
|
48832
48778
|
}
|
|
48833
48779
|
})(this);
|
|
48834
48780
|
|
|
48835
|
-
},{}],
|
|
48781
|
+
},{}],432:[function(require,module,exports){
|
|
48836
48782
|
var Buffer = require('../safe-buffer-5.2.0/index').Buffer
|
|
48837
48783
|
var createHash = require('../create-hash-1.2.0/browser')
|
|
48838
48784
|
var pbkdf2 = require('../pbkdf2-3.0.17/index').pbkdf2Sync
|
|
@@ -48987,7 +48933,7 @@ module.exports = {
|
|
|
48987
48933
|
}
|
|
48988
48934
|
}
|
|
48989
48935
|
|
|
48990
|
-
},{"../create-hash-1.2.0/browser":
|
|
48936
|
+
},{"../create-hash-1.2.0/browser":496,"../pbkdf2-3.0.17/index":571,"../randombytes-2.1.0/browser":577,"../safe-buffer-5.2.0/index":580,"../unorm-1.6.0/lib/unorm":602,"./wordlists/chinese_simplified.json":433,"./wordlists/chinese_traditional.json":434,"./wordlists/english.json":435,"./wordlists/french.json":436,"./wordlists/italian.json":437,"./wordlists/japanese.json":438,"./wordlists/korean.json":439,"./wordlists/spanish.json":440}],433:[function(require,module,exports){
|
|
48991
48937
|
module.exports=[
|
|
48992
48938
|
"的",
|
|
48993
48939
|
"一",
|
|
@@ -51038,7 +50984,7 @@ module.exports=[
|
|
|
51038
50984
|
"矮",
|
|
51039
50985
|
"歇"
|
|
51040
50986
|
]
|
|
51041
|
-
},{}],
|
|
50987
|
+
},{}],434:[function(require,module,exports){
|
|
51042
50988
|
module.exports=[
|
|
51043
50989
|
"的",
|
|
51044
50990
|
"一",
|
|
@@ -53089,7 +53035,7 @@ module.exports=[
|
|
|
53089
53035
|
"矮",
|
|
53090
53036
|
"歇"
|
|
53091
53037
|
]
|
|
53092
|
-
},{}],
|
|
53038
|
+
},{}],435:[function(require,module,exports){
|
|
53093
53039
|
module.exports=[
|
|
53094
53040
|
"abandon",
|
|
53095
53041
|
"ability",
|
|
@@ -55140,7 +55086,7 @@ module.exports=[
|
|
|
55140
55086
|
"zone",
|
|
55141
55087
|
"zoo"
|
|
55142
55088
|
]
|
|
55143
|
-
},{}],
|
|
55089
|
+
},{}],436:[function(require,module,exports){
|
|
55144
55090
|
module.exports=[
|
|
55145
55091
|
"abaisser",
|
|
55146
55092
|
"abandon",
|
|
@@ -57191,7 +57137,7 @@ module.exports=[
|
|
|
57191
57137
|
"zeste",
|
|
57192
57138
|
"zoologie"
|
|
57193
57139
|
]
|
|
57194
|
-
},{}],
|
|
57140
|
+
},{}],437:[function(require,module,exports){
|
|
57195
57141
|
module.exports=[
|
|
57196
57142
|
"abaco",
|
|
57197
57143
|
"abbaglio",
|
|
@@ -59242,7 +59188,7 @@ module.exports=[
|
|
|
59242
59188
|
"zulu",
|
|
59243
59189
|
"zuppa"
|
|
59244
59190
|
]
|
|
59245
|
-
},{}],
|
|
59191
|
+
},{}],438:[function(require,module,exports){
|
|
59246
59192
|
module.exports=[
|
|
59247
59193
|
"あいこくしん",
|
|
59248
59194
|
"あいさつ",
|
|
@@ -61293,7 +61239,7 @@ module.exports=[
|
|
|
61293
61239
|
"わらう",
|
|
61294
61240
|
"われる"
|
|
61295
61241
|
]
|
|
61296
|
-
},{}],
|
|
61242
|
+
},{}],439:[function(require,module,exports){
|
|
61297
61243
|
module.exports=[
|
|
61298
61244
|
"가격",
|
|
61299
61245
|
"가끔",
|
|
@@ -63344,7 +63290,7 @@ module.exports=[
|
|
|
63344
63290
|
"흰색",
|
|
63345
63291
|
"힘껏"
|
|
63346
63292
|
]
|
|
63347
|
-
},{}],
|
|
63293
|
+
},{}],440:[function(require,module,exports){
|
|
63348
63294
|
module.exports=[
|
|
63349
63295
|
"ábaco",
|
|
63350
63296
|
"abdomen",
|
|
@@ -65395,7 +65341,7 @@ module.exports=[
|
|
|
65395
65341
|
"zumo",
|
|
65396
65342
|
"zurdo"
|
|
65397
65343
|
]
|
|
65398
|
-
},{}],
|
|
65344
|
+
},{}],441:[function(require,module,exports){
|
|
65399
65345
|
// Reference https://github.com/bitcoin/bips/blob/master/bip-0066.mediawiki
|
|
65400
65346
|
// Format: 0x30 [total-length] 0x02 [R-length] [R] 0x02 [S-length] [S]
|
|
65401
65347
|
// NOTE: SIGHASH byte ignored AND restricted, truncate before use
|
|
@@ -65510,7 +65456,7 @@ module.exports = {
|
|
|
65510
65456
|
encode: encode
|
|
65511
65457
|
}
|
|
65512
65458
|
|
|
65513
|
-
},{"../safe-buffer-5.2.0/index":
|
|
65459
|
+
},{"../safe-buffer-5.2.0/index":580}],442:[function(require,module,exports){
|
|
65514
65460
|
module.exports={
|
|
65515
65461
|
"OP_FALSE": 0,
|
|
65516
65462
|
"OP_0": 0,
|
|
@@ -65631,9 +65577,9 @@ module.exports={
|
|
|
65631
65577
|
"OP_PUBKEY": 254,
|
|
65632
65578
|
"OP_INVALIDOPCODE": 255
|
|
65633
65579
|
}
|
|
65634
|
-
},{}],
|
|
65635
|
-
arguments[4][
|
|
65636
|
-
},{"./index.json":
|
|
65580
|
+
},{}],443:[function(require,module,exports){
|
|
65581
|
+
arguments[4][266][0].apply(exports,arguments)
|
|
65582
|
+
},{"./index.json":442,"dup":266}],444:[function(require,module,exports){
|
|
65637
65583
|
(function (Buffer){(function (){
|
|
65638
65584
|
const bs58check = require('../bs58check-2.1.2/index')
|
|
65639
65585
|
const bech32 = require('../bech32-1.1.3/index')
|
|
@@ -65794,7 +65740,7 @@ module.exports = {
|
|
|
65794
65740
|
}
|
|
65795
65741
|
|
|
65796
65742
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
65797
|
-
},{"../bech32-1.1.3/index":
|
|
65743
|
+
},{"../bech32-1.1.3/index":426,"../bs58check-2.1.2/index":492,"../buffer-equals-1.0.4/index":493,"../create-hash-1.2.0/browser":496,"../secp256k1-3.7.1/elliptic":581,"../varuint-bitcoin-1.1.2/index":604,"buffer":67}],445:[function(require,module,exports){
|
|
65798
65744
|
var Buffer = require('../../safe-buffer-5.2.0/index').Buffer
|
|
65799
65745
|
var bech32 = require('../../bech32-0.0.3/index')
|
|
65800
65746
|
var bs58check = require('../../bs58check-2.1.2/index')
|
|
@@ -65905,7 +65851,7 @@ module.exports = {
|
|
|
65905
65851
|
toOutputScript: toOutputScript
|
|
65906
65852
|
}
|
|
65907
65853
|
|
|
65908
|
-
},{"../../bech32-0.0.3/index":
|
|
65854
|
+
},{"../../bech32-0.0.3/index":425,"../../bs58check-2.1.2/base":491,"../../bs58check-2.1.2/index":492,"../../safe-buffer-5.2.0/index":580,"../../typeforce-1.18.0/index":600,"./networks":457,"./script":458,"./templates":460,"./types":484}],446:[function(require,module,exports){
|
|
65909
65855
|
var Buffer = require('../../safe-buffer-5.2.0/index').Buffer
|
|
65910
65856
|
var bcrypto = require('./crypto')
|
|
65911
65857
|
var fastMerkleRoot = require('../../merkle-lib-2.0.10/fastRoot')
|
|
@@ -66141,7 +66087,7 @@ Block.prototype.checkProofOfWork = function () {
|
|
|
66141
66087
|
|
|
66142
66088
|
module.exports = Block
|
|
66143
66089
|
|
|
66144
|
-
},{"../../merkle-lib-2.0.10/fastRoot":
|
|
66090
|
+
},{"../../merkle-lib-2.0.10/fastRoot":550,"../../safe-buffer-5.2.0/index":580,"../../typeforce-1.18.0/index":600,"../../varuint-bitcoin-1.1.2/index":604,"./coins":449,"./crypto":450,"./networks":457,"./transaction":482,"./types":484}],447:[function(require,module,exports){
|
|
66145
66091
|
var Buffer = require('../../safe-buffer-5.2.0/index').Buffer
|
|
66146
66092
|
var bufferutils = require('./bufferutils')
|
|
66147
66093
|
var varuint = require('../../varuint-bitcoin-1.1.2/index')
|
|
@@ -66183,7 +66129,7 @@ BufferWriter.prototype.writeVarSlice = function (slice) {
|
|
|
66183
66129
|
|
|
66184
66130
|
module.exports = BufferWriter
|
|
66185
66131
|
|
|
66186
|
-
},{"../../safe-buffer-5.2.0/index":
|
|
66132
|
+
},{"../../safe-buffer-5.2.0/index":580,"../../varuint-bitcoin-1.1.2/index":604,"./bufferutils":448}],448:[function(require,module,exports){
|
|
66187
66133
|
var pushdata = require('../../pushdata-bitcoin-1.0.1/index')
|
|
66188
66134
|
var varuint = require('../../varuint-bitcoin-1.1.2/index')
|
|
66189
66135
|
|
|
@@ -66250,7 +66196,7 @@ module.exports = {
|
|
|
66250
66196
|
writeVarInt: writeVarInt
|
|
66251
66197
|
}
|
|
66252
66198
|
|
|
66253
|
-
},{"../../pushdata-bitcoin-1.0.1/index":
|
|
66199
|
+
},{"../../pushdata-bitcoin-1.0.1/index":576,"../../varuint-bitcoin-1.1.2/index":604}],449:[function(require,module,exports){
|
|
66254
66200
|
// Coins supported by bitgo-bitcoinjs-lib
|
|
66255
66201
|
const typeforce = require('../../typeforce-1.18.0/index')
|
|
66256
66202
|
|
|
@@ -66305,7 +66251,7 @@ coins.isValidCoin = typeforce.oneOf(
|
|
|
66305
66251
|
|
|
66306
66252
|
module.exports = coins
|
|
66307
66253
|
|
|
66308
|
-
},{"../../typeforce-1.18.0/index":
|
|
66254
|
+
},{"../../typeforce-1.18.0/index":600}],450:[function(require,module,exports){
|
|
66309
66255
|
(function (Buffer){(function (){
|
|
66310
66256
|
var createHash = require('../../create-hash-1.2.0/browser')
|
|
66311
66257
|
var groestlhash = require('../../groestl-hash-js-ef6a04f1c4d2f0448f0882b5f213ef7a0659baee/index')
|
|
@@ -66352,7 +66298,7 @@ module.exports = {
|
|
|
66352
66298
|
}
|
|
66353
66299
|
|
|
66354
66300
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
66355
|
-
},{"../../create-hash-1.2.0/browser":
|
|
66301
|
+
},{"../../create-hash-1.2.0/browser":496,"../../groestl-hash-js-ef6a04f1c4d2f0448f0882b5f213ef7a0659baee/index":528,"buffer":67,"crypto":78}],451:[function(require,module,exports){
|
|
66356
66302
|
var Buffer = require('../../safe-buffer-5.2.0/index').Buffer
|
|
66357
66303
|
var createHmac = require('../../create-hmac-1.1.4/browser')
|
|
66358
66304
|
var typeforce = require('../../typeforce-1.18.0/index')
|
|
@@ -66515,7 +66461,7 @@ module.exports = {
|
|
|
66515
66461
|
__curve: secp256k1
|
|
66516
66462
|
}
|
|
66517
66463
|
|
|
66518
|
-
},{"../../bigi-1.4.2/lib/index":
|
|
66464
|
+
},{"../../bigi-1.4.2/lib/index":429,"../../create-hmac-1.1.4/browser":498,"../../ecurve-1.0.6/lib/index":508,"../../safe-buffer-5.2.0/index":580,"../../typeforce-1.18.0/index":600,"./ecsignature":453,"./types":484}],452:[function(require,module,exports){
|
|
66519
66465
|
(function (Buffer){(function (){
|
|
66520
66466
|
var baddress = require('./address')
|
|
66521
66467
|
var bcrypto = require('./crypto')
|
|
@@ -66674,7 +66620,7 @@ ECPair.prototype.verify = function (hash, signature) {
|
|
|
66674
66620
|
module.exports = ECPair
|
|
66675
66621
|
|
|
66676
66622
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
66677
|
-
},{"../../bigi-1.4.2/lib/index":
|
|
66623
|
+
},{"../../bigi-1.4.2/lib/index":429,"../../ecurve-1.0.6/lib/index":508,"../../randombytes-2.1.0/browser":577,"../../typeforce-1.18.0/index":600,"../../wif-2.0.6/index":605,"./address":445,"./crypto":450,"./ecdsa":451,"./fastcurve":454,"./networks":457,"./types":484,"buffer":67}],453:[function(require,module,exports){
|
|
66678
66624
|
(function (Buffer){(function (){
|
|
66679
66625
|
var bip66 = require('../../bip66-1.1.5/index')
|
|
66680
66626
|
var typeforce = require('../../typeforce-1.18.0/index')
|
|
@@ -66775,7 +66721,7 @@ ECSignature.prototype.toScriptSignature = function (hashType) {
|
|
|
66775
66721
|
module.exports = ECSignature
|
|
66776
66722
|
|
|
66777
66723
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
66778
|
-
},{"../../bigi-1.4.2/lib/index":
|
|
66724
|
+
},{"../../bigi-1.4.2/lib/index":429,"../../bip66-1.1.5/index":441,"../../typeforce-1.18.0/index":600,"./types":484,"buffer":67}],454:[function(require,module,exports){
|
|
66779
66725
|
var typeforce = require('../../typeforce-1.18.0/index')
|
|
66780
66726
|
|
|
66781
66727
|
var ECSignature = require('./ecsignature')
|
|
@@ -66869,7 +66815,7 @@ module.exports = {
|
|
|
66869
66815
|
verify: verify
|
|
66870
66816
|
}
|
|
66871
66817
|
|
|
66872
|
-
},{"../../secp256k1-3.7.1/elliptic":
|
|
66818
|
+
},{"../../secp256k1-3.7.1/elliptic":581,"../../typeforce-1.18.0/index":600,"./ecsignature":453,"./types":484}],455:[function(require,module,exports){
|
|
66873
66819
|
var Buffer = require('../../safe-buffer-5.2.0/index').Buffer
|
|
66874
66820
|
var base58check = require('../../bs58check-2.1.2/index')
|
|
66875
66821
|
var bcrypto = require('./crypto')
|
|
@@ -67234,7 +67180,7 @@ HDNode.prototype.cloneKeypair = function () {
|
|
|
67234
67180
|
|
|
67235
67181
|
module.exports = HDNode
|
|
67236
67182
|
|
|
67237
|
-
},{"../../bigi-1.4.2/lib/index":
|
|
67183
|
+
},{"../../bigi-1.4.2/lib/index":429,"../../bs58check-2.1.2/base":491,"../../bs58check-2.1.2/index":492,"../../create-hmac-1.1.4/browser":498,"../../ecurve-1.0.6/lib/index":508,"../../safe-buffer-5.2.0/index":580,"../../typeforce-1.18.0/index":600,"./crypto":450,"./ecpair":452,"./fastcurve":454,"./networks":457,"./types":484}],456:[function(require,module,exports){
|
|
67238
67184
|
var script = require('./script')
|
|
67239
67185
|
|
|
67240
67186
|
var templates = require('./templates')
|
|
@@ -67260,7 +67206,7 @@ module.exports = {
|
|
|
67260
67206
|
script: script
|
|
67261
67207
|
}
|
|
67262
67208
|
|
|
67263
|
-
},{"../../bitcoin-ops-1.4.1/index.json":
|
|
67209
|
+
},{"../../bitcoin-ops-1.4.1/index.json":442,"./address":445,"./block":446,"./bufferutils":448,"./coins":449,"./crypto":450,"./ecpair":452,"./ecsignature":453,"./hdnode":455,"./networks":457,"./script":458,"./templates":460,"./transaction":482,"./transaction_builder":483}],457:[function(require,module,exports){
|
|
67264
67210
|
// https://en.bitcoin.it/wiki/List_of_address_prefixes
|
|
67265
67211
|
// Dogecoin BIP32 is a proposed standard: https://bitcointalk.org/index.php?topic=409731
|
|
67266
67212
|
var coins = require('./coins')
|
|
@@ -67476,7 +67422,7 @@ module.exports = {
|
|
|
67476
67422
|
}
|
|
67477
67423
|
}
|
|
67478
67424
|
|
|
67479
|
-
},{"./coins":
|
|
67425
|
+
},{"./coins":449,"./crypto":450}],458:[function(require,module,exports){
|
|
67480
67426
|
var Buffer = require('../../safe-buffer-5.2.0/index').Buffer
|
|
67481
67427
|
var bip66 = require('../../bip66-1.1.5/index')
|
|
67482
67428
|
var pushdata = require('../../pushdata-bitcoin-1.0.1/index')
|
|
@@ -67692,7 +67638,7 @@ module.exports = {
|
|
|
67692
67638
|
isDefinedHashType: isDefinedHashType
|
|
67693
67639
|
}
|
|
67694
67640
|
|
|
67695
|
-
},{"../../bip66-1.1.5/index":
|
|
67641
|
+
},{"../../bip66-1.1.5/index":441,"../../bitcoin-ops-1.4.1/index.json":442,"../../bitcoin-ops-1.4.1/map":443,"../../pushdata-bitcoin-1.0.1/index":576,"../../safe-buffer-5.2.0/index":580,"../../typeforce-1.18.0/index":600,"./script_number":459,"./types":484}],459:[function(require,module,exports){
|
|
67696
67642
|
var Buffer = require('../../safe-buffer-5.2.0/index').Buffer
|
|
67697
67643
|
|
|
67698
67644
|
function decode (buffer, maxLength, minimal) {
|
|
@@ -67762,7 +67708,7 @@ module.exports = {
|
|
|
67762
67708
|
encode: encode
|
|
67763
67709
|
}
|
|
67764
67710
|
|
|
67765
|
-
},{"../../safe-buffer-5.2.0/index":
|
|
67711
|
+
},{"../../safe-buffer-5.2.0/index":580}],460:[function(require,module,exports){
|
|
67766
67712
|
var decompile = require('../script').decompile
|
|
67767
67713
|
var multisig = require('./multisig')
|
|
67768
67714
|
var nullData = require('./nulldata')
|
|
@@ -67838,13 +67784,13 @@ module.exports = {
|
|
|
67838
67784
|
types: types
|
|
67839
67785
|
}
|
|
67840
67786
|
|
|
67841
|
-
},{"../script":
|
|
67787
|
+
},{"../script":458,"./multisig":461,"./nulldata":464,"./pubkey":465,"./pubkeyhash":468,"./scripthash":471,"./witnesscommitment":474,"./witnesspubkeyhash":476,"./witnessscripthash":479}],461:[function(require,module,exports){
|
|
67842
67788
|
module.exports = {
|
|
67843
67789
|
input: require('./input'),
|
|
67844
67790
|
output: require('./output')
|
|
67845
67791
|
}
|
|
67846
67792
|
|
|
67847
|
-
},{"./input":
|
|
67793
|
+
},{"./input":462,"./output":463}],462:[function(require,module,exports){
|
|
67848
67794
|
// OP_0 [signatures ...]
|
|
67849
67795
|
|
|
67850
67796
|
var Buffer = require('../../../../safe-buffer-5.2.0/index').Buffer
|
|
@@ -67917,7 +67863,7 @@ module.exports = {
|
|
|
67917
67863
|
encodeStack: encodeStack
|
|
67918
67864
|
}
|
|
67919
67865
|
|
|
67920
|
-
},{"../../../../bitcoin-ops-1.4.1/index.json":
|
|
67866
|
+
},{"../../../../bitcoin-ops-1.4.1/index.json":442,"../../../../safe-buffer-5.2.0/index":580,"../../../../typeforce-1.18.0/index":600,"../../script":458,"./output":463}],463:[function(require,module,exports){
|
|
67921
67867
|
// m [pubKeys ...] n OP_CHECKMULTISIG
|
|
67922
67868
|
|
|
67923
67869
|
var bscript = require('../../script')
|
|
@@ -67983,7 +67929,7 @@ module.exports = {
|
|
|
67983
67929
|
encode: encode
|
|
67984
67930
|
}
|
|
67985
67931
|
|
|
67986
|
-
},{"../../../../bitcoin-ops-1.4.1/index.json":
|
|
67932
|
+
},{"../../../../bitcoin-ops-1.4.1/index.json":442,"../../../../typeforce-1.18.0/index":600,"../../script":458,"../../types":484}],464:[function(require,module,exports){
|
|
67987
67933
|
// OP_RETURN {data}
|
|
67988
67934
|
|
|
67989
67935
|
var bscript = require('../script')
|
|
@@ -68024,9 +67970,9 @@ module.exports = {
|
|
|
68024
67970
|
}
|
|
68025
67971
|
}
|
|
68026
67972
|
|
|
68027
|
-
},{"../../../bitcoin-ops-1.4.1/index.json":
|
|
68028
|
-
arguments[4][
|
|
68029
|
-
},{"./input":
|
|
67973
|
+
},{"../../../bitcoin-ops-1.4.1/index.json":442,"../../../typeforce-1.18.0/index":600,"../script":458,"../types":484}],465:[function(require,module,exports){
|
|
67974
|
+
arguments[4][461][0].apply(exports,arguments)
|
|
67975
|
+
},{"./input":466,"./output":467,"dup":461}],466:[function(require,module,exports){
|
|
68030
67976
|
// {signature}
|
|
68031
67977
|
|
|
68032
67978
|
var bscript = require('../../script')
|
|
@@ -68067,7 +68013,7 @@ module.exports = {
|
|
|
68067
68013
|
encodeStack: encodeStack
|
|
68068
68014
|
}
|
|
68069
68015
|
|
|
68070
|
-
},{"../../../../typeforce-1.18.0/index":
|
|
68016
|
+
},{"../../../../typeforce-1.18.0/index":600,"../../script":458}],467:[function(require,module,exports){
|
|
68071
68017
|
// {pubKey} OP_CHECKSIG
|
|
68072
68018
|
|
|
68073
68019
|
var bscript = require('../../script')
|
|
@@ -68102,9 +68048,9 @@ module.exports = {
|
|
|
68102
68048
|
encode: encode
|
|
68103
68049
|
}
|
|
68104
68050
|
|
|
68105
|
-
},{"../../../../bitcoin-ops-1.4.1/index.json":
|
|
68106
|
-
arguments[4][
|
|
68107
|
-
},{"./input":
|
|
68051
|
+
},{"../../../../bitcoin-ops-1.4.1/index.json":442,"../../../../typeforce-1.18.0/index":600,"../../script":458}],468:[function(require,module,exports){
|
|
68052
|
+
arguments[4][461][0].apply(exports,arguments)
|
|
68053
|
+
},{"./input":469,"./output":470,"dup":461}],469:[function(require,module,exports){
|
|
68108
68054
|
// {signature} {pubKey}
|
|
68109
68055
|
|
|
68110
68056
|
var bscript = require('../../script')
|
|
@@ -68157,7 +68103,7 @@ module.exports = {
|
|
|
68157
68103
|
encodeStack: encodeStack
|
|
68158
68104
|
}
|
|
68159
68105
|
|
|
68160
|
-
},{"../../../../typeforce-1.18.0/index":
|
|
68106
|
+
},{"../../../../typeforce-1.18.0/index":600,"../../script":458}],470:[function(require,module,exports){
|
|
68161
68107
|
// OP_DUP OP_HASH160 {pubKeyHash} OP_EQUALVERIFY OP_CHECKSIG
|
|
68162
68108
|
|
|
68163
68109
|
var bscript = require('../../script')
|
|
@@ -68201,9 +68147,9 @@ module.exports = {
|
|
|
68201
68147
|
encode: encode
|
|
68202
68148
|
}
|
|
68203
68149
|
|
|
68204
|
-
},{"../../../../bitcoin-ops-1.4.1/index.json":
|
|
68205
|
-
arguments[4][
|
|
68206
|
-
},{"./input":
|
|
68150
|
+
},{"../../../../bitcoin-ops-1.4.1/index.json":442,"../../../../typeforce-1.18.0/index":600,"../../script":458,"../../types":484}],471:[function(require,module,exports){
|
|
68151
|
+
arguments[4][461][0].apply(exports,arguments)
|
|
68152
|
+
},{"./input":472,"./output":473,"dup":461}],472:[function(require,module,exports){
|
|
68207
68153
|
// <scriptSig> {serialized scriptPubKey script}
|
|
68208
68154
|
|
|
68209
68155
|
var Buffer = require('../../../../safe-buffer-5.2.0/index').Buffer
|
|
@@ -68289,7 +68235,7 @@ module.exports = {
|
|
|
68289
68235
|
encodeStack: encodeStack
|
|
68290
68236
|
}
|
|
68291
68237
|
|
|
68292
|
-
},{"../../../../safe-buffer-5.2.0/index":
|
|
68238
|
+
},{"../../../../safe-buffer-5.2.0/index":580,"../../../../typeforce-1.18.0/index":600,"../../script":458,"../multisig/":461,"../pubkey/":465,"../pubkeyhash/":468,"../witnesspubkeyhash/output":478,"../witnessscripthash/output":481}],473:[function(require,module,exports){
|
|
68293
68239
|
// OP_HASH160 {scriptHash} OP_EQUAL
|
|
68294
68240
|
|
|
68295
68241
|
var bscript = require('../../script')
|
|
@@ -68325,12 +68271,12 @@ module.exports = {
|
|
|
68325
68271
|
encode: encode
|
|
68326
68272
|
}
|
|
68327
68273
|
|
|
68328
|
-
},{"../../../../bitcoin-ops-1.4.1/index.json":
|
|
68274
|
+
},{"../../../../bitcoin-ops-1.4.1/index.json":442,"../../../../typeforce-1.18.0/index":600,"../../script":458,"../../types":484}],474:[function(require,module,exports){
|
|
68329
68275
|
module.exports = {
|
|
68330
68276
|
output: require('./output')
|
|
68331
68277
|
}
|
|
68332
68278
|
|
|
68333
|
-
},{"./output":
|
|
68279
|
+
},{"./output":475}],475:[function(require,module,exports){
|
|
68334
68280
|
// OP_RETURN {aa21a9ed} {commitment}
|
|
68335
68281
|
|
|
68336
68282
|
var Buffer = require('../../../../safe-buffer-5.2.0/index').Buffer
|
|
@@ -68374,9 +68320,9 @@ module.exports = {
|
|
|
68374
68320
|
encode: encode
|
|
68375
68321
|
}
|
|
68376
68322
|
|
|
68377
|
-
},{"../../../../bitcoin-ops-1.4.1/index.json":
|
|
68378
|
-
arguments[4][
|
|
68379
|
-
},{"./input":
|
|
68323
|
+
},{"../../../../bitcoin-ops-1.4.1/index.json":442,"../../../../safe-buffer-5.2.0/index":580,"../../../../typeforce-1.18.0/index":600,"../../script":458,"../../types":484}],476:[function(require,module,exports){
|
|
68324
|
+
arguments[4][461][0].apply(exports,arguments)
|
|
68325
|
+
},{"./input":477,"./output":478,"dup":461}],477:[function(require,module,exports){
|
|
68380
68326
|
// {signature} {pubKey}
|
|
68381
68327
|
|
|
68382
68328
|
var bscript = require('../../script')
|
|
@@ -68422,7 +68368,7 @@ module.exports = {
|
|
|
68422
68368
|
encodeStack: encodeStack
|
|
68423
68369
|
}
|
|
68424
68370
|
|
|
68425
|
-
},{"../../../../typeforce-1.18.0/index":
|
|
68371
|
+
},{"../../../../typeforce-1.18.0/index":600,"../../script":458}],478:[function(require,module,exports){
|
|
68426
68372
|
// OP_0 {pubKeyHash}
|
|
68427
68373
|
|
|
68428
68374
|
var bscript = require('../../script')
|
|
@@ -68457,9 +68403,9 @@ module.exports = {
|
|
|
68457
68403
|
encode: encode
|
|
68458
68404
|
}
|
|
68459
68405
|
|
|
68460
|
-
},{"../../../../bitcoin-ops-1.4.1/index.json":
|
|
68461
|
-
arguments[4][
|
|
68462
|
-
},{"./input":
|
|
68406
|
+
},{"../../../../bitcoin-ops-1.4.1/index.json":442,"../../../../typeforce-1.18.0/index":600,"../../script":458,"../../types":484}],479:[function(require,module,exports){
|
|
68407
|
+
arguments[4][461][0].apply(exports,arguments)
|
|
68408
|
+
},{"./input":480,"./output":481,"dup":461}],480:[function(require,module,exports){
|
|
68463
68409
|
(function (Buffer){(function (){
|
|
68464
68410
|
// <scriptSig> {serialized scriptPubKey script}
|
|
68465
68411
|
|
|
@@ -68525,8 +68471,8 @@ module.exports = {
|
|
|
68525
68471
|
encodeStack: encodeStack
|
|
68526
68472
|
}
|
|
68527
68473
|
|
|
68528
|
-
}).call(this)}).call(this,{"isBuffer":require("../../../../../../../../../node_modules/is-buffer/index.js")})
|
|
68529
|
-
},{"../../../../../../../../../node_modules/is-buffer/index.js":
|
|
68474
|
+
}).call(this)}).call(this,{"isBuffer":require("../../../../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js")})
|
|
68475
|
+
},{"../../../../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js":149,"../../../../typeforce-1.18.0/index":600,"../../script":458,"../../types":484,"../multisig/":461,"../pubkey/":465,"../pubkeyhash/":468}],481:[function(require,module,exports){
|
|
68530
68476
|
// OP_0 {scriptHash}
|
|
68531
68477
|
|
|
68532
68478
|
var bscript = require('../../script')
|
|
@@ -68561,7 +68507,7 @@ module.exports = {
|
|
|
68561
68507
|
encode: encode
|
|
68562
68508
|
}
|
|
68563
68509
|
|
|
68564
|
-
},{"../../../../bitcoin-ops-1.4.1/index.json":
|
|
68510
|
+
},{"../../../../bitcoin-ops-1.4.1/index.json":442,"../../../../typeforce-1.18.0/index":600,"../../script":458,"../../types":484}],482:[function(require,module,exports){
|
|
68565
68511
|
var Buffer = require('../../safe-buffer-5.2.0/index').Buffer
|
|
68566
68512
|
var BufferWriter = require('./bufferWriter')
|
|
68567
68513
|
var bcrypto = require('./crypto')
|
|
@@ -69688,7 +69634,7 @@ Transaction.prototype.setWitness = function (index, witness) {
|
|
|
69688
69634
|
|
|
69689
69635
|
module.exports = Transaction
|
|
69690
69636
|
|
|
69691
|
-
},{"../../bitcoin-ops-1.4.1/index.json":
|
|
69637
|
+
},{"../../bitcoin-ops-1.4.1/index.json":442,"../../blake2b-6268e6dd678661e0acc4359e9171b97eb1ebf8ac/index":485,"../../safe-buffer-5.2.0/index":580,"../../typeforce-1.18.0/index":600,"../../varuint-bitcoin-1.1.2/index":604,"./bufferWriter":447,"./bufferutils":448,"./coins":449,"./crypto":450,"./networks":457,"./script":458,"./types":484}],483:[function(require,module,exports){
|
|
69692
69638
|
var Buffer = require('../../safe-buffer-5.2.0/index').Buffer
|
|
69693
69639
|
var baddress = require('./address')
|
|
69694
69640
|
var bcrypto = require('./crypto')
|
|
@@ -70582,7 +70528,7 @@ TransactionBuilder.prototype.__overMaximumFees = function (bytes) {
|
|
|
70582
70528
|
|
|
70583
70529
|
module.exports = TransactionBuilder
|
|
70584
70530
|
|
|
70585
|
-
},{"../../bitcoin-ops-1.4.1/index.json":
|
|
70531
|
+
},{"../../bitcoin-ops-1.4.1/index.json":442,"../../debug-3.1.0/src/browser":499,"../../safe-buffer-5.2.0/index":580,"../../typeforce-1.18.0/index":600,"./address":445,"./coins":449,"./crypto":450,"./ecpair":452,"./ecsignature":453,"./networks":457,"./script":458,"./templates":460,"./transaction":482,"./types":484}],484:[function(require,module,exports){
|
|
70586
70532
|
var typeforce = require('../../typeforce-1.18.0/index')
|
|
70587
70533
|
|
|
70588
70534
|
var UINT31_MAX = Math.pow(2, 31) - 1
|
|
@@ -70639,7 +70585,7 @@ for (var typeName in typeforce) {
|
|
|
70639
70585
|
|
|
70640
70586
|
module.exports = types
|
|
70641
70587
|
|
|
70642
|
-
},{"../../typeforce-1.18.0/index":
|
|
70588
|
+
},{"../../typeforce-1.18.0/index":600}],485:[function(require,module,exports){
|
|
70643
70589
|
var assert = require('../nanoassert-1.1.0/index')
|
|
70644
70590
|
var b2wasm = require('../blake2b-wasm-193cdb71656c1a6c7f89b05d0327bb9b758d071b/index')
|
|
70645
70591
|
|
|
@@ -70954,7 +70900,7 @@ b2wasm.ready(function (err) {
|
|
|
70954
70900
|
}
|
|
70955
70901
|
})
|
|
70956
70902
|
|
|
70957
|
-
},{"../blake2b-wasm-193cdb71656c1a6c7f89b05d0327bb9b758d071b/index":
|
|
70903
|
+
},{"../blake2b-wasm-193cdb71656c1a6c7f89b05d0327bb9b758d071b/index":487,"../nanoassert-1.1.0/index":554}],486:[function(require,module,exports){
|
|
70958
70904
|
|
|
70959
70905
|
module.exports = loadWebAssembly
|
|
70960
70906
|
|
|
@@ -71019,7 +70965,7 @@ function charCodeAt (c) {
|
|
|
71019
70965
|
return c.charCodeAt(0)
|
|
71020
70966
|
}
|
|
71021
70967
|
|
|
71022
|
-
},{}],
|
|
70968
|
+
},{}],487:[function(require,module,exports){
|
|
71023
70969
|
var assert = require('../nanoassert-1.1.0/index')
|
|
71024
70970
|
var wasm = require('./blake2b')()
|
|
71025
70971
|
|
|
@@ -71149,7 +71095,7 @@ function toHex (n) {
|
|
|
71149
71095
|
return n.toString(16)
|
|
71150
71096
|
}
|
|
71151
71097
|
|
|
71152
|
-
},{"../nanoassert-1.1.0/index":
|
|
71098
|
+
},{"../nanoassert-1.1.0/index":554,"./blake2b":486}],488:[function(require,module,exports){
|
|
71153
71099
|
(function (module, exports) {
|
|
71154
71100
|
'use strict';
|
|
71155
71101
|
|
|
@@ -74578,15 +74524,15 @@ function toHex (n) {
|
|
|
74578
74524
|
};
|
|
74579
74525
|
})(typeof module === 'undefined' || module, this);
|
|
74580
74526
|
|
|
74581
|
-
},{"buffer":67}],
|
|
74527
|
+
},{"buffer":67}],489:[function(require,module,exports){
|
|
74582
74528
|
arguments[4][23][0].apply(exports,arguments)
|
|
74583
|
-
},{"crypto":78,"dup":23}],
|
|
74529
|
+
},{"crypto":78,"dup":23}],490:[function(require,module,exports){
|
|
74584
74530
|
var basex = require('../base-x-3.0.7/src/index')
|
|
74585
74531
|
var ALPHABET = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz'
|
|
74586
74532
|
|
|
74587
74533
|
module.exports = basex(ALPHABET)
|
|
74588
74534
|
|
|
74589
|
-
},{"../base-x-3.0.7/src/index":
|
|
74535
|
+
},{"../base-x-3.0.7/src/index":424}],491:[function(require,module,exports){
|
|
74590
74536
|
'use strict'
|
|
74591
74537
|
|
|
74592
74538
|
var base58 = require('../bs58-4.0.1/index')
|
|
@@ -74638,7 +74584,7 @@ module.exports = function (checksumFn) {
|
|
|
74638
74584
|
}
|
|
74639
74585
|
}
|
|
74640
74586
|
|
|
74641
|
-
},{"../bs58-4.0.1/index":
|
|
74587
|
+
},{"../bs58-4.0.1/index":490,"../safe-buffer-5.2.0/index":580}],492:[function(require,module,exports){
|
|
74642
74588
|
'use strict'
|
|
74643
74589
|
|
|
74644
74590
|
var createHash = require('../create-hash-1.2.0/browser')
|
|
@@ -74652,7 +74598,7 @@ function sha256x2 (buffer) {
|
|
|
74652
74598
|
|
|
74653
74599
|
module.exports = bs58checkBase(sha256x2)
|
|
74654
74600
|
|
|
74655
|
-
},{"../create-hash-1.2.0/browser":
|
|
74601
|
+
},{"../create-hash-1.2.0/browser":496,"./base":491}],493:[function(require,module,exports){
|
|
74656
74602
|
(function (Buffer){(function (){
|
|
74657
74603
|
'use strict';
|
|
74658
74604
|
module.exports = function (a, b) {
|
|
@@ -74681,8 +74627,8 @@ module.exports = function (a, b) {
|
|
|
74681
74627
|
return true;
|
|
74682
74628
|
};
|
|
74683
74629
|
|
|
74684
|
-
}).call(this)}).call(this,{"isBuffer":require("../../../../../../node_modules/is-buffer/index.js")})
|
|
74685
|
-
},{"../../../../../../node_modules/is-buffer/index.js":
|
|
74630
|
+
}).call(this)}).call(this,{"isBuffer":require("../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js")})
|
|
74631
|
+
},{"../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js":149}],494:[function(require,module,exports){
|
|
74686
74632
|
(function (Buffer){(function (){
|
|
74687
74633
|
;(function (global, factory) {
|
|
74688
74634
|
if (typeof define === 'function' && define.amd) {
|
|
@@ -75318,7 +75264,7 @@ module.exports = function (a, b) {
|
|
|
75318
75264
|
})
|
|
75319
75265
|
|
|
75320
75266
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
75321
|
-
},{"buffer":67}],
|
|
75267
|
+
},{"buffer":67}],495:[function(require,module,exports){
|
|
75322
75268
|
var Buffer = require('../safe-buffer-5.2.0/index').Buffer
|
|
75323
75269
|
var Transform = require('stream').Transform
|
|
75324
75270
|
var StringDecoder = require('string_decoder').StringDecoder
|
|
@@ -75419,7 +75365,7 @@ CipherBase.prototype._toString = function (value, enc, fin) {
|
|
|
75419
75365
|
|
|
75420
75366
|
module.exports = CipherBase
|
|
75421
75367
|
|
|
75422
|
-
},{"../inherits-2.0.4/inherits":
|
|
75368
|
+
},{"../inherits-2.0.4/inherits":546,"../safe-buffer-5.2.0/index":580,"stream":192,"string_decoder":207}],496:[function(require,module,exports){
|
|
75423
75369
|
'use strict'
|
|
75424
75370
|
var inherits = require('../inherits-2.0.4/inherits')
|
|
75425
75371
|
var MD5 = require('../md5.js-1.3.5/index')
|
|
@@ -75451,10 +75397,10 @@ module.exports = function createHash (alg) {
|
|
|
75451
75397
|
return new Hash(sha(alg))
|
|
75452
75398
|
}
|
|
75453
75399
|
|
|
75454
|
-
},{"../cipher-base-1.0.4/index":
|
|
75400
|
+
},{"../cipher-base-1.0.4/index":495,"../inherits-2.0.4/inherits":546,"../md5.js-1.3.5/index":549,"../ripemd160-2.0.2/index":578,"../sha.js-2.4.11/index":591}],497:[function(require,module,exports){
|
|
75455
75401
|
module.exports = require('crypto').createHash
|
|
75456
75402
|
|
|
75457
|
-
},{"crypto":78}],
|
|
75403
|
+
},{"crypto":78}],498:[function(require,module,exports){
|
|
75458
75404
|
(function (Buffer){(function (){
|
|
75459
75405
|
'use strict';
|
|
75460
75406
|
var createHash = require('../create-hash-1.2.0/browser')
|
|
@@ -75526,7 +75472,7 @@ module.exports = function createHmac(alg, key) {
|
|
|
75526
75472
|
}
|
|
75527
75473
|
|
|
75528
75474
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
75529
|
-
},{"../create-hash-1.2.0/browser":
|
|
75475
|
+
},{"../create-hash-1.2.0/browser":496,"../inherits-2.0.4/inherits":546,"buffer":67,"stream":192}],499:[function(require,module,exports){
|
|
75530
75476
|
(function (process){(function (){
|
|
75531
75477
|
/**
|
|
75532
75478
|
* This is the web browser implementation of `debug()`.
|
|
@@ -75725,7 +75671,7 @@ function localstorage() {
|
|
|
75725
75671
|
}
|
|
75726
75672
|
|
|
75727
75673
|
}).call(this)}).call(this,require('_process'))
|
|
75728
|
-
},{"./debug":
|
|
75674
|
+
},{"./debug":500,"_process":171}],500:[function(require,module,exports){
|
|
75729
75675
|
|
|
75730
75676
|
/**
|
|
75731
75677
|
* This is the common logic for both the Node.js and web browser
|
|
@@ -75952,7 +75898,7 @@ function coerce(val) {
|
|
|
75952
75898
|
return val;
|
|
75953
75899
|
}
|
|
75954
75900
|
|
|
75955
|
-
},{"../../ms-2.1.2/index":
|
|
75901
|
+
},{"../../ms-2.1.2/index":553}],501:[function(require,module,exports){
|
|
75956
75902
|
(function (Buffer){(function (){
|
|
75957
75903
|
"use strict";
|
|
75958
75904
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -75990,7 +75936,7 @@ exports.utils = {
|
|
|
75990
75936
|
};
|
|
75991
75937
|
|
|
75992
75938
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
75993
|
-
},{"./keys":
|
|
75939
|
+
},{"./keys":504,"./utils":505,"buffer":67}],502:[function(require,module,exports){
|
|
75994
75940
|
(function (Buffer){(function (){
|
|
75995
75941
|
"use strict";
|
|
75996
75942
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -76055,7 +76001,7 @@ var PrivateKey = /** @class */ (function () {
|
|
|
76055
76001
|
exports.default = PrivateKey;
|
|
76056
76002
|
|
|
76057
76003
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
76058
|
-
},{"../../../futoin-hkdf-1.3.3/hkdf.js":
|
|
76004
|
+
},{"../../../futoin-hkdf-1.3.3/hkdf.js":527,"../../../secp256k1-4.0.2/elliptic":587,"../utils":505,"./PublicKey":503,"buffer":67}],503:[function(require,module,exports){
|
|
76059
76005
|
(function (Buffer){(function (){
|
|
76060
76006
|
"use strict";
|
|
76061
76007
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -76123,7 +76069,7 @@ var PublicKey = /** @class */ (function () {
|
|
|
76123
76069
|
exports.default = PublicKey;
|
|
76124
76070
|
|
|
76125
76071
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
76126
|
-
},{"../../../futoin-hkdf-1.3.3/hkdf.js":
|
|
76072
|
+
},{"../../../futoin-hkdf-1.3.3/hkdf.js":527,"../../../secp256k1-4.0.2/elliptic":587,"../utils":505,"buffer":67}],504:[function(require,module,exports){
|
|
76127
76073
|
"use strict";
|
|
76128
76074
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
76129
76075
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -76135,7 +76081,7 @@ Object.defineProperty(exports, "PrivateKey", { enumerable: true, get: function (
|
|
|
76135
76081
|
var PublicKey_1 = require("./PublicKey");
|
|
76136
76082
|
Object.defineProperty(exports, "PublicKey", { enumerable: true, get: function () { return __importDefault(PublicKey_1).default; } });
|
|
76137
76083
|
|
|
76138
|
-
},{"./PrivateKey":
|
|
76084
|
+
},{"./PrivateKey":502,"./PublicKey":503}],505:[function(require,module,exports){
|
|
76139
76085
|
(function (Buffer){(function (){
|
|
76140
76086
|
"use strict";
|
|
76141
76087
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -76203,7 +76149,7 @@ function aesDecrypt(key, cipherText) {
|
|
|
76203
76149
|
exports.aesDecrypt = aesDecrypt;
|
|
76204
76150
|
|
|
76205
76151
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
76206
|
-
},{"../../secp256k1-4.0.2/elliptic":
|
|
76152
|
+
},{"../../secp256k1-4.0.2/elliptic":587,"buffer":67,"crypto":78}],506:[function(require,module,exports){
|
|
76207
76153
|
var assert = require('assert')
|
|
76208
76154
|
var BigInteger = require('../../bigi-1.4.2/lib/index')
|
|
76209
76155
|
|
|
@@ -76282,7 +76228,7 @@ Curve.prototype.validate = function (Q) {
|
|
|
76282
76228
|
|
|
76283
76229
|
module.exports = Curve
|
|
76284
76230
|
|
|
76285
|
-
},{"../../bigi-1.4.2/lib/index":
|
|
76231
|
+
},{"../../bigi-1.4.2/lib/index":429,"./point":510,"assert":16}],507:[function(require,module,exports){
|
|
76286
76232
|
module.exports={
|
|
76287
76233
|
"secp128r1": {
|
|
76288
76234
|
"p": "fffffffdffffffffffffffffffffffff",
|
|
@@ -76348,7 +76294,7 @@ module.exports={
|
|
|
76348
76294
|
"Gy": "4fe342e2fe1a7f9b8ee7eb4a7c0f9e162bce33576b315ececbb6406837bf51f5"
|
|
76349
76295
|
}
|
|
76350
76296
|
}
|
|
76351
|
-
},{}],
|
|
76297
|
+
},{}],508:[function(require,module,exports){
|
|
76352
76298
|
var Point = require('./point')
|
|
76353
76299
|
var Curve = require('./curve')
|
|
76354
76300
|
|
|
@@ -76360,7 +76306,7 @@ module.exports = {
|
|
|
76360
76306
|
getCurveByName: getCurveByName
|
|
76361
76307
|
}
|
|
76362
76308
|
|
|
76363
|
-
},{"./curve":
|
|
76309
|
+
},{"./curve":506,"./names":509,"./point":510}],509:[function(require,module,exports){
|
|
76364
76310
|
var BigInteger = require('../../bigi-1.4.2/lib/index')
|
|
76365
76311
|
|
|
76366
76312
|
var curves = require('./curves.json')
|
|
@@ -76383,7 +76329,7 @@ function getCurveByName (name) {
|
|
|
76383
76329
|
|
|
76384
76330
|
module.exports = getCurveByName
|
|
76385
76331
|
|
|
76386
|
-
},{"../../bigi-1.4.2/lib/index":
|
|
76332
|
+
},{"../../bigi-1.4.2/lib/index":429,"./curve":506,"./curves.json":507}],510:[function(require,module,exports){
|
|
76387
76333
|
var assert = require('assert')
|
|
76388
76334
|
var Buffer = require('../../safe-buffer-5.2.0/index').Buffer
|
|
76389
76335
|
var BigInteger = require('../../bigi-1.4.2/lib/index')
|
|
@@ -76629,7 +76575,7 @@ Point.prototype.toString = function () {
|
|
|
76629
76575
|
|
|
76630
76576
|
module.exports = Point
|
|
76631
76577
|
|
|
76632
|
-
},{"../../bigi-1.4.2/lib/index":
|
|
76578
|
+
},{"../../bigi-1.4.2/lib/index":429,"../../safe-buffer-5.2.0/index":580,"assert":16}],511:[function(require,module,exports){
|
|
76633
76579
|
'use strict';
|
|
76634
76580
|
|
|
76635
76581
|
var elliptic = exports;
|
|
@@ -76644,7 +76590,7 @@ elliptic.curves = require('./elliptic/curves');
|
|
|
76644
76590
|
elliptic.ec = require('./elliptic/ec');
|
|
76645
76591
|
elliptic.eddsa = require('./elliptic/eddsa');
|
|
76646
76592
|
|
|
76647
|
-
},{"../../brorand-1.1.0/index":
|
|
76593
|
+
},{"../../brorand-1.1.0/index":489,"../package.json":526,"./elliptic/curve":514,"./elliptic/curves":517,"./elliptic/ec":518,"./elliptic/eddsa":521,"./elliptic/utils":525}],512:[function(require,module,exports){
|
|
76648
76594
|
'use strict';
|
|
76649
76595
|
|
|
76650
76596
|
var BN = require('../../../../bn.js-4.11.8/lib/bn');
|
|
@@ -77022,7 +76968,7 @@ BasePoint.prototype.dblp = function dblp(k) {
|
|
|
77022
76968
|
return r;
|
|
77023
76969
|
};
|
|
77024
76970
|
|
|
77025
|
-
},{"../../../../bn.js-4.11.8/lib/bn":
|
|
76971
|
+
},{"../../../../bn.js-4.11.8/lib/bn":488,"../utils":525}],513:[function(require,module,exports){
|
|
77026
76972
|
'use strict';
|
|
77027
76973
|
|
|
77028
76974
|
var utils = require('../utils');
|
|
@@ -77456,9 +77402,9 @@ Point.prototype.eqXToP = function eqXToP(x) {
|
|
|
77456
77402
|
Point.prototype.toP = Point.prototype.normalize;
|
|
77457
77403
|
Point.prototype.mixedAdd = Point.prototype.add;
|
|
77458
77404
|
|
|
77459
|
-
},{"../../../../bn.js-4.11.8/lib/bn":
|
|
77405
|
+
},{"../../../../bn.js-4.11.8/lib/bn":488,"../../../../inherits-2.0.4/inherits":546,"../utils":525,"./base":512}],514:[function(require,module,exports){
|
|
77460
77406
|
arguments[4][93][0].apply(exports,arguments)
|
|
77461
|
-
},{"./base":
|
|
77407
|
+
},{"./base":512,"./edwards":513,"./mont":515,"./short":516,"dup":93}],515:[function(require,module,exports){
|
|
77462
77408
|
'use strict';
|
|
77463
77409
|
|
|
77464
77410
|
var BN = require('../../../../bn.js-4.11.8/lib/bn');
|
|
@@ -77638,7 +77584,7 @@ Point.prototype.getX = function getX() {
|
|
|
77638
77584
|
return this.x.fromRed();
|
|
77639
77585
|
};
|
|
77640
77586
|
|
|
77641
|
-
},{"../../../../bn.js-4.11.8/lib/bn":
|
|
77587
|
+
},{"../../../../bn.js-4.11.8/lib/bn":488,"../../../../inherits-2.0.4/inherits":546,"../utils":525,"./base":512}],516:[function(require,module,exports){
|
|
77642
77588
|
'use strict';
|
|
77643
77589
|
|
|
77644
77590
|
var utils = require('../utils');
|
|
@@ -78577,7 +78523,7 @@ JPoint.prototype.isInfinity = function isInfinity() {
|
|
|
78577
78523
|
return this.z.cmpn(0) === 0;
|
|
78578
78524
|
};
|
|
78579
78525
|
|
|
78580
|
-
},{"../../../../bn.js-4.11.8/lib/bn":
|
|
78526
|
+
},{"../../../../bn.js-4.11.8/lib/bn":488,"../../../../inherits-2.0.4/inherits":546,"../utils":525,"./base":512}],517:[function(require,module,exports){
|
|
78581
78527
|
'use strict';
|
|
78582
78528
|
|
|
78583
78529
|
var curves = exports;
|
|
@@ -78785,7 +78731,7 @@ defineCurve('secp256k1', {
|
|
|
78785
78731
|
]
|
|
78786
78732
|
});
|
|
78787
78733
|
|
|
78788
|
-
},{"../../../hash.js-1.1.7/lib/hash":
|
|
78734
|
+
},{"../../../hash.js-1.1.7/lib/hash":533,"./curve":514,"./precomputed/secp256k1":524,"./utils":525}],518:[function(require,module,exports){
|
|
78789
78735
|
'use strict';
|
|
78790
78736
|
|
|
78791
78737
|
var BN = require('../../../../bn.js-4.11.8/lib/bn');
|
|
@@ -79028,7 +78974,7 @@ EC.prototype.getKeyRecoveryParam = function(e, signature, Q, enc) {
|
|
|
79028
78974
|
throw new Error('Unable to find valid recovery factor');
|
|
79029
78975
|
};
|
|
79030
78976
|
|
|
79031
|
-
},{"../../../../bn.js-4.11.8/lib/bn":
|
|
78977
|
+
},{"../../../../bn.js-4.11.8/lib/bn":488,"../../../../brorand-1.1.0/index":489,"../../../../hmac-drbg-1.0.1/lib/hmac-drbg":545,"../curves":517,"../utils":525,"./key":519,"./signature":520}],519:[function(require,module,exports){
|
|
79032
78978
|
'use strict';
|
|
79033
78979
|
|
|
79034
78980
|
var BN = require('../../../../bn.js-4.11.8/lib/bn');
|
|
@@ -79148,7 +79094,7 @@ KeyPair.prototype.inspect = function inspect() {
|
|
|
79148
79094
|
' pub: ' + (this.pub && this.pub.inspect()) + ' >';
|
|
79149
79095
|
};
|
|
79150
79096
|
|
|
79151
|
-
},{"../../../../bn.js-4.11.8/lib/bn":
|
|
79097
|
+
},{"../../../../bn.js-4.11.8/lib/bn":488,"../utils":525}],520:[function(require,module,exports){
|
|
79152
79098
|
'use strict';
|
|
79153
79099
|
|
|
79154
79100
|
var BN = require('../../../../bn.js-4.11.8/lib/bn');
|
|
@@ -79316,7 +79262,7 @@ Signature.prototype.toDER = function toDER(enc) {
|
|
|
79316
79262
|
return utils.encode(res, enc);
|
|
79317
79263
|
};
|
|
79318
79264
|
|
|
79319
|
-
},{"../../../../bn.js-4.11.8/lib/bn":
|
|
79265
|
+
},{"../../../../bn.js-4.11.8/lib/bn":488,"../utils":525}],521:[function(require,module,exports){
|
|
79320
79266
|
'use strict';
|
|
79321
79267
|
|
|
79322
79268
|
var hash = require('../../../../hash.js-1.1.7/lib/hash');
|
|
@@ -79436,9 +79382,9 @@ EDDSA.prototype.isPoint = function isPoint(val) {
|
|
|
79436
79382
|
return val instanceof this.pointClass;
|
|
79437
79383
|
};
|
|
79438
79384
|
|
|
79439
|
-
},{"../../../../hash.js-1.1.7/lib/hash":
|
|
79385
|
+
},{"../../../../hash.js-1.1.7/lib/hash":533,"../curves":517,"../utils":525,"./key":522,"./signature":523}],522:[function(require,module,exports){
|
|
79440
79386
|
arguments[4][101][0].apply(exports,arguments)
|
|
79441
|
-
},{"../utils":
|
|
79387
|
+
},{"../utils":525,"dup":101}],523:[function(require,module,exports){
|
|
79442
79388
|
'use strict';
|
|
79443
79389
|
|
|
79444
79390
|
var BN = require('../../../../bn.js-4.11.8/lib/bn');
|
|
@@ -79505,7 +79451,7 @@ Signature.prototype.toHex = function toHex() {
|
|
|
79505
79451
|
|
|
79506
79452
|
module.exports = Signature;
|
|
79507
79453
|
|
|
79508
|
-
},{"../../../../bn.js-4.11.8/lib/bn":
|
|
79454
|
+
},{"../../../../bn.js-4.11.8/lib/bn":488,"../utils":525}],524:[function(require,module,exports){
|
|
79509
79455
|
module.exports = {
|
|
79510
79456
|
doubles: {
|
|
79511
79457
|
step: 4,
|
|
@@ -80287,7 +80233,7 @@ module.exports = {
|
|
|
80287
80233
|
}
|
|
80288
80234
|
};
|
|
80289
80235
|
|
|
80290
|
-
},{}],
|
|
80236
|
+
},{}],525:[function(require,module,exports){
|
|
80291
80237
|
'use strict';
|
|
80292
80238
|
|
|
80293
80239
|
var utils = exports;
|
|
@@ -80408,7 +80354,7 @@ function intFromLE(bytes) {
|
|
|
80408
80354
|
utils.intFromLE = intFromLE;
|
|
80409
80355
|
|
|
80410
80356
|
|
|
80411
|
-
},{"../../../bn.js-4.11.8/lib/bn":
|
|
80357
|
+
},{"../../../bn.js-4.11.8/lib/bn":488,"../../../minimalistic-assert-1.0.1/index":551,"../../../minimalistic-crypto-utils-1.0.1/lib/utils":552}],526:[function(require,module,exports){
|
|
80412
80358
|
module.exports={
|
|
80413
80359
|
"name": "elliptic",
|
|
80414
80360
|
"version": "6.5.3",
|
|
@@ -80464,7 +80410,7 @@ module.exports={
|
|
|
80464
80410
|
"minimalistic-crypto-utils": "^1.0.0"
|
|
80465
80411
|
}
|
|
80466
80412
|
}
|
|
80467
|
-
},{}],
|
|
80413
|
+
},{}],527:[function(require,module,exports){
|
|
80468
80414
|
(function (Buffer){(function (){
|
|
80469
80415
|
'use strict';
|
|
80470
80416
|
|
|
@@ -80642,7 +80588,7 @@ Object.defineProperties( hkdf, {
|
|
|
80642
80588
|
module.exports = hkdf;
|
|
80643
80589
|
|
|
80644
80590
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
80645
|
-
},{"buffer":67,"crypto":78}],
|
|
80591
|
+
},{"buffer":67,"crypto":78}],528:[function(require,module,exports){
|
|
80646
80592
|
'use strict';
|
|
80647
80593
|
|
|
80648
80594
|
var groestl = require('./lib/groestl');
|
|
@@ -80682,7 +80628,7 @@ module.exports.groestl_2 = function(str,format, output) {
|
|
|
80682
80628
|
return h.int32ArrayToHexString(a);
|
|
80683
80629
|
}
|
|
80684
80630
|
}
|
|
80685
|
-
},{"./lib/groestl":
|
|
80631
|
+
},{"./lib/groestl":529,"./lib/helper":530}],529:[function(require,module,exports){
|
|
80686
80632
|
/////////////////////////////////////
|
|
80687
80633
|
//////////// groestl ///////////////
|
|
80688
80634
|
|
|
@@ -81931,7 +81877,7 @@ module.exports = function(input, format, output) {
|
|
|
81931
81877
|
}
|
|
81932
81878
|
return out;
|
|
81933
81879
|
}
|
|
81934
|
-
},{"./helper":
|
|
81880
|
+
},{"./helper":530,"./op":531}],530:[function(require,module,exports){
|
|
81935
81881
|
'use strict';
|
|
81936
81882
|
// String functions
|
|
81937
81883
|
|
|
@@ -82185,7 +82131,7 @@ module.exports.b64Decode = function(input) {
|
|
|
82185
82131
|
}
|
|
82186
82132
|
return output;
|
|
82187
82133
|
};
|
|
82188
|
-
},{"./op.js":
|
|
82134
|
+
},{"./op.js":531}],531:[function(require,module,exports){
|
|
82189
82135
|
'use strict';
|
|
82190
82136
|
//the right shift is important, it has to do with 32 bit operations in javascript, it will make things faster
|
|
82191
82137
|
function u64(h, l) {
|
|
@@ -82649,7 +82595,7 @@ module.exports.xORTable = function(d, s1, s2, len) {
|
|
|
82649
82595
|
}
|
|
82650
82596
|
}
|
|
82651
82597
|
|
|
82652
|
-
},{}],
|
|
82598
|
+
},{}],532:[function(require,module,exports){
|
|
82653
82599
|
'use strict'
|
|
82654
82600
|
var Buffer = require('../safe-buffer-5.2.0/index').Buffer
|
|
82655
82601
|
var Transform = require('stream').Transform
|
|
@@ -82746,9 +82692,9 @@ HashBase.prototype._digest = function () {
|
|
|
82746
82692
|
|
|
82747
82693
|
module.exports = HashBase
|
|
82748
82694
|
|
|
82749
|
-
},{"../inherits-2.0.4/inherits":
|
|
82695
|
+
},{"../inherits-2.0.4/inherits":546,"../safe-buffer-5.2.0/index":580,"stream":192}],533:[function(require,module,exports){
|
|
82750
82696
|
arguments[4][134][0].apply(exports,arguments)
|
|
82751
|
-
},{"./hash/common":
|
|
82697
|
+
},{"./hash/common":534,"./hash/hmac":535,"./hash/ripemd":536,"./hash/sha":537,"./hash/utils":544,"dup":134}],534:[function(require,module,exports){
|
|
82752
82698
|
'use strict';
|
|
82753
82699
|
|
|
82754
82700
|
var utils = require('./utils');
|
|
@@ -82842,7 +82788,7 @@ BlockHash.prototype._pad = function pad() {
|
|
|
82842
82788
|
return res;
|
|
82843
82789
|
};
|
|
82844
82790
|
|
|
82845
|
-
},{"../../../minimalistic-assert-1.0.1/index":
|
|
82791
|
+
},{"../../../minimalistic-assert-1.0.1/index":551,"./utils":544}],535:[function(require,module,exports){
|
|
82846
82792
|
'use strict';
|
|
82847
82793
|
|
|
82848
82794
|
var utils = require('./utils');
|
|
@@ -82891,15 +82837,15 @@ Hmac.prototype.digest = function digest(enc) {
|
|
|
82891
82837
|
return this.outer.digest(enc);
|
|
82892
82838
|
};
|
|
82893
82839
|
|
|
82894
|
-
},{"../../../minimalistic-assert-1.0.1/index":
|
|
82840
|
+
},{"../../../minimalistic-assert-1.0.1/index":551,"./utils":544}],536:[function(require,module,exports){
|
|
82895
82841
|
arguments[4][137][0].apply(exports,arguments)
|
|
82896
|
-
},{"./common":
|
|
82842
|
+
},{"./common":534,"./utils":544,"dup":137}],537:[function(require,module,exports){
|
|
82897
82843
|
arguments[4][138][0].apply(exports,arguments)
|
|
82898
|
-
},{"./sha/1":
|
|
82844
|
+
},{"./sha/1":538,"./sha/224":539,"./sha/256":540,"./sha/384":541,"./sha/512":542,"dup":138}],538:[function(require,module,exports){
|
|
82899
82845
|
arguments[4][139][0].apply(exports,arguments)
|
|
82900
|
-
},{"../common":
|
|
82846
|
+
},{"../common":534,"../utils":544,"./common":543,"dup":139}],539:[function(require,module,exports){
|
|
82901
82847
|
arguments[4][140][0].apply(exports,arguments)
|
|
82902
|
-
},{"../utils":
|
|
82848
|
+
},{"../utils":544,"./256":540,"dup":140}],540:[function(require,module,exports){
|
|
82903
82849
|
'use strict';
|
|
82904
82850
|
|
|
82905
82851
|
var utils = require('../utils');
|
|
@@ -83006,9 +82952,9 @@ SHA256.prototype._digest = function digest(enc) {
|
|
|
83006
82952
|
return utils.split32(this.h, 'big');
|
|
83007
82953
|
};
|
|
83008
82954
|
|
|
83009
|
-
},{"../../../../minimalistic-assert-1.0.1/index":
|
|
82955
|
+
},{"../../../../minimalistic-assert-1.0.1/index":551,"../common":534,"../utils":544,"./common":543}],541:[function(require,module,exports){
|
|
83010
82956
|
arguments[4][142][0].apply(exports,arguments)
|
|
83011
|
-
},{"../utils":
|
|
82957
|
+
},{"../utils":544,"./512":542,"dup":142}],542:[function(require,module,exports){
|
|
83012
82958
|
'use strict';
|
|
83013
82959
|
|
|
83014
82960
|
var utils = require('../utils');
|
|
@@ -83340,9 +83286,9 @@ function g1_512_lo(xh, xl) {
|
|
|
83340
83286
|
return r;
|
|
83341
83287
|
}
|
|
83342
83288
|
|
|
83343
|
-
},{"../../../../minimalistic-assert-1.0.1/index":
|
|
83289
|
+
},{"../../../../minimalistic-assert-1.0.1/index":551,"../common":534,"../utils":544}],543:[function(require,module,exports){
|
|
83344
83290
|
arguments[4][144][0].apply(exports,arguments)
|
|
83345
|
-
},{"../utils":
|
|
83291
|
+
},{"../utils":544,"dup":144}],544:[function(require,module,exports){
|
|
83346
83292
|
'use strict';
|
|
83347
83293
|
|
|
83348
83294
|
var assert = require('../../../minimalistic-assert-1.0.1/index');
|
|
@@ -83622,7 +83568,7 @@ function shr64_lo(ah, al, num) {
|
|
|
83622
83568
|
}
|
|
83623
83569
|
exports.shr64_lo = shr64_lo;
|
|
83624
83570
|
|
|
83625
|
-
},{"../../../inherits-2.0.4/inherits":
|
|
83571
|
+
},{"../../../inherits-2.0.4/inherits":546,"../../../minimalistic-assert-1.0.1/index":551}],545:[function(require,module,exports){
|
|
83626
83572
|
'use strict';
|
|
83627
83573
|
|
|
83628
83574
|
var hash = require('../../hash.js-1.1.7/lib/hash');
|
|
@@ -83737,7 +83683,7 @@ HmacDRBG.prototype.generate = function generate(len, enc, add, addEnc) {
|
|
|
83737
83683
|
return utils.encode(res, enc);
|
|
83738
83684
|
};
|
|
83739
83685
|
|
|
83740
|
-
},{"../../hash.js-1.1.7/lib/hash":
|
|
83686
|
+
},{"../../hash.js-1.1.7/lib/hash":533,"../../minimalistic-assert-1.0.1/index":551,"../../minimalistic-crypto-utils-1.0.1/lib/utils":552}],546:[function(require,module,exports){
|
|
83741
83687
|
try {
|
|
83742
83688
|
var util = require('util');
|
|
83743
83689
|
/* istanbul ignore next */
|
|
@@ -83748,9 +83694,9 @@ try {
|
|
|
83748
83694
|
module.exports = require('./inherits_browser.js');
|
|
83749
83695
|
}
|
|
83750
83696
|
|
|
83751
|
-
},{"./inherits_browser.js":
|
|
83697
|
+
},{"./inherits_browser.js":547,"util":211}],547:[function(require,module,exports){
|
|
83752
83698
|
arguments[4][148][0].apply(exports,arguments)
|
|
83753
|
-
},{"dup":148}],
|
|
83699
|
+
},{"dup":148}],548:[function(require,module,exports){
|
|
83754
83700
|
/*!
|
|
83755
83701
|
* Determine if an object is a Buffer
|
|
83756
83702
|
*
|
|
@@ -83763,7 +83709,7 @@ module.exports = function isBuffer (obj) {
|
|
|
83763
83709
|
typeof obj.constructor.isBuffer === 'function' && obj.constructor.isBuffer(obj)
|
|
83764
83710
|
}
|
|
83765
83711
|
|
|
83766
|
-
},{}],
|
|
83712
|
+
},{}],549:[function(require,module,exports){
|
|
83767
83713
|
'use strict'
|
|
83768
83714
|
var inherits = require('../inherits-2.0.4/inherits')
|
|
83769
83715
|
var HashBase = require('../hash-base-3.0.4/index')
|
|
@@ -83911,13 +83857,13 @@ function fnI (a, b, c, d, m, k, s) {
|
|
|
83911
83857
|
|
|
83912
83858
|
module.exports = MD5
|
|
83913
83859
|
|
|
83914
|
-
},{"../hash-base-3.0.4/index":
|
|
83915
|
-
arguments[4][
|
|
83916
|
-
},{"buffer":67,"dup":
|
|
83860
|
+
},{"../hash-base-3.0.4/index":532,"../inherits-2.0.4/inherits":546,"../safe-buffer-5.2.0/index":580}],550:[function(require,module,exports){
|
|
83861
|
+
arguments[4][354][0].apply(exports,arguments)
|
|
83862
|
+
},{"buffer":67,"dup":354}],551:[function(require,module,exports){
|
|
83917
83863
|
arguments[4][157][0].apply(exports,arguments)
|
|
83918
|
-
},{"dup":157}],
|
|
83864
|
+
},{"dup":157}],552:[function(require,module,exports){
|
|
83919
83865
|
arguments[4][158][0].apply(exports,arguments)
|
|
83920
|
-
},{"dup":158}],
|
|
83866
|
+
},{"dup":158}],553:[function(require,module,exports){
|
|
83921
83867
|
/**
|
|
83922
83868
|
* Helpers.
|
|
83923
83869
|
*/
|
|
@@ -84081,7 +84027,7 @@ function plural(ms, msAbs, n, name) {
|
|
|
84081
84027
|
return Math.round(ms / n) + ' ' + name + (isPlural ? 's' : '');
|
|
84082
84028
|
}
|
|
84083
84029
|
|
|
84084
|
-
},{}],
|
|
84030
|
+
},{}],554:[function(require,module,exports){
|
|
84085
84031
|
assert.notEqual = notEqual
|
|
84086
84032
|
assert.notOk = notOk
|
|
84087
84033
|
assert.equal = equal
|
|
@@ -84105,7 +84051,7 @@ function assert (t, m) {
|
|
|
84105
84051
|
if (!t) throw new Error(m || 'AssertionError')
|
|
84106
84052
|
}
|
|
84107
84053
|
|
|
84108
|
-
},{}],
|
|
84054
|
+
},{}],555:[function(require,module,exports){
|
|
84109
84055
|
// Top level file is just a mixin of submodules & constants
|
|
84110
84056
|
'use strict'
|
|
84111
84057
|
|
|
@@ -84125,7 +84071,7 @@ module.exports.inflateRaw = inflateRaw
|
|
|
84125
84071
|
module.exports.ungzip = ungzip
|
|
84126
84072
|
module.exports.constants = constants
|
|
84127
84073
|
|
|
84128
|
-
},{"./lib/deflate":
|
|
84074
|
+
},{"./lib/deflate":556,"./lib/inflate":557,"./lib/zlib/constants":561}],556:[function(require,module,exports){
|
|
84129
84075
|
'use strict'
|
|
84130
84076
|
|
|
84131
84077
|
const zlib_deflate = require('./zlib/deflate')
|
|
@@ -84500,7 +84446,7 @@ module.exports.deflateRaw = deflateRaw
|
|
|
84500
84446
|
module.exports.gzip = gzip
|
|
84501
84447
|
module.exports.constants = require('./zlib/constants')
|
|
84502
84448
|
|
|
84503
|
-
},{"./utils/common":
|
|
84449
|
+
},{"./utils/common":558,"./utils/strings":559,"./zlib/constants":561,"./zlib/deflate":563,"./zlib/messages":568,"./zlib/zstream":570}],557:[function(require,module,exports){
|
|
84504
84450
|
'use strict'
|
|
84505
84451
|
|
|
84506
84452
|
const zlib_inflate = require('./zlib/inflate')
|
|
@@ -84904,7 +84850,7 @@ module.exports.inflateRaw = inflateRaw
|
|
|
84904
84850
|
module.exports.ungzip = inflate
|
|
84905
84851
|
module.exports.constants = require('./zlib/constants')
|
|
84906
84852
|
|
|
84907
|
-
},{"./utils/common":
|
|
84853
|
+
},{"./utils/common":558,"./utils/strings":559,"./zlib/constants":561,"./zlib/gzheader":564,"./zlib/inflate":566,"./zlib/messages":568,"./zlib/zstream":570}],558:[function(require,module,exports){
|
|
84908
84854
|
'use strict'
|
|
84909
84855
|
|
|
84910
84856
|
const _has = (obj, key) => {
|
|
@@ -84954,7 +84900,7 @@ module.exports.flattenChunks = (chunks) => {
|
|
|
84954
84900
|
return result
|
|
84955
84901
|
}
|
|
84956
84902
|
|
|
84957
|
-
},{}],
|
|
84903
|
+
},{}],559:[function(require,module,exports){
|
|
84958
84904
|
// String encode/decode helpers
|
|
84959
84905
|
'use strict'
|
|
84960
84906
|
|
|
@@ -85143,7 +85089,7 @@ module.exports.utf8border = (buf, max) => {
|
|
|
85143
85089
|
return pos + _utf8len[buf[pos]] > max ? pos : max
|
|
85144
85090
|
}
|
|
85145
85091
|
|
|
85146
|
-
},{}],
|
|
85092
|
+
},{}],560:[function(require,module,exports){
|
|
85147
85093
|
'use strict'
|
|
85148
85094
|
|
|
85149
85095
|
// Note: adler32 takes 12% for level 0 and 2% for level 6.
|
|
@@ -85195,7 +85141,7 @@ const adler32 = (adler, buf, len, pos) => {
|
|
|
85195
85141
|
|
|
85196
85142
|
module.exports = adler32
|
|
85197
85143
|
|
|
85198
|
-
},{}],
|
|
85144
|
+
},{}],561:[function(require,module,exports){
|
|
85199
85145
|
'use strict'
|
|
85200
85146
|
|
|
85201
85147
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -85263,7 +85209,7 @@ module.exports = {
|
|
|
85263
85209
|
//Z_NULL: null // Use -1 or null inline, depending on var type
|
|
85264
85210
|
}
|
|
85265
85211
|
|
|
85266
|
-
},{}],
|
|
85212
|
+
},{}],562:[function(require,module,exports){
|
|
85267
85213
|
'use strict'
|
|
85268
85214
|
|
|
85269
85215
|
// Note: we can't get significant speed boost here.
|
|
@@ -85323,7 +85269,7 @@ const crc32 = (crc, buf, len, pos) => {
|
|
|
85323
85269
|
|
|
85324
85270
|
module.exports = crc32
|
|
85325
85271
|
|
|
85326
|
-
},{}],
|
|
85272
|
+
},{}],563:[function(require,module,exports){
|
|
85327
85273
|
'use strict'
|
|
85328
85274
|
|
|
85329
85275
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -87174,7 +87120,7 @@ module.exports.deflatePrime = deflatePrime;
|
|
|
87174
87120
|
module.exports.deflateTune = deflateTune;
|
|
87175
87121
|
*/
|
|
87176
87122
|
|
|
87177
|
-
},{"./adler32":
|
|
87123
|
+
},{"./adler32":560,"./constants":561,"./crc32":562,"./messages":568,"./trees":569}],564:[function(require,module,exports){
|
|
87178
87124
|
'use strict'
|
|
87179
87125
|
|
|
87180
87126
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -87234,7 +87180,7 @@ function GZheader() {
|
|
|
87234
87180
|
|
|
87235
87181
|
module.exports = GZheader
|
|
87236
87182
|
|
|
87237
|
-
},{}],
|
|
87183
|
+
},{}],565:[function(require,module,exports){
|
|
87238
87184
|
'use strict'
|
|
87239
87185
|
|
|
87240
87186
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -87583,7 +87529,7 @@ module.exports = function inflate_fast(strm, start) {
|
|
|
87583
87529
|
return
|
|
87584
87530
|
}
|
|
87585
87531
|
|
|
87586
|
-
},{}],
|
|
87532
|
+
},{}],566:[function(require,module,exports){
|
|
87587
87533
|
'use strict'
|
|
87588
87534
|
|
|
87589
87535
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -89210,7 +89156,7 @@ module.exports.inflateSyncPoint = inflateSyncPoint;
|
|
|
89210
89156
|
module.exports.inflateUndermine = inflateUndermine;
|
|
89211
89157
|
*/
|
|
89212
89158
|
|
|
89213
|
-
},{"./adler32":
|
|
89159
|
+
},{"./adler32":560,"./constants":561,"./crc32":562,"./inffast":565,"./inftrees":567}],567:[function(require,module,exports){
|
|
89214
89160
|
'use strict'
|
|
89215
89161
|
|
|
89216
89162
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -89674,7 +89620,7 @@ const inflate_table = (type, lens, lens_index, codes, table, table_index, work,
|
|
|
89674
89620
|
|
|
89675
89621
|
module.exports = inflate_table
|
|
89676
89622
|
|
|
89677
|
-
},{}],
|
|
89623
|
+
},{}],568:[function(require,module,exports){
|
|
89678
89624
|
'use strict'
|
|
89679
89625
|
|
|
89680
89626
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -89708,7 +89654,7 @@ module.exports = {
|
|
|
89708
89654
|
'-6': 'incompatible version' /* Z_VERSION_ERROR (-6) */
|
|
89709
89655
|
}
|
|
89710
89656
|
|
|
89711
|
-
},{}],
|
|
89657
|
+
},{}],569:[function(require,module,exports){
|
|
89712
89658
|
'use strict'
|
|
89713
89659
|
|
|
89714
89660
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -90902,7 +90848,7 @@ module.exports._tr_flush_block = _tr_flush_block
|
|
|
90902
90848
|
module.exports._tr_tally = _tr_tally
|
|
90903
90849
|
module.exports._tr_align = _tr_align
|
|
90904
90850
|
|
|
90905
|
-
},{}],
|
|
90851
|
+
},{}],570:[function(require,module,exports){
|
|
90906
90852
|
'use strict'
|
|
90907
90853
|
|
|
90908
90854
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -90951,7 +90897,7 @@ function ZStream() {
|
|
|
90951
90897
|
|
|
90952
90898
|
module.exports = ZStream
|
|
90953
90899
|
|
|
90954
|
-
},{}],
|
|
90900
|
+
},{}],571:[function(require,module,exports){
|
|
90955
90901
|
var checkParameters = require('./lib/precondition')
|
|
90956
90902
|
var native = require('crypto')
|
|
90957
90903
|
|
|
@@ -90984,7 +90930,7 @@ if (!native.pbkdf2Sync || native.pbkdf2Sync.toString().indexOf('keylen, digest')
|
|
|
90984
90930
|
exports.pbkdf2 = nativePBKDF2
|
|
90985
90931
|
}
|
|
90986
90932
|
|
|
90987
|
-
},{"./lib/async":
|
|
90933
|
+
},{"./lib/async":572,"./lib/precondition":574,"./lib/sync":575,"crypto":78}],572:[function(require,module,exports){
|
|
90988
90934
|
(function (process,global){(function (){
|
|
90989
90935
|
var checkParameters = require('./precondition')
|
|
90990
90936
|
var defaultEncoding = require('./default-encoding')
|
|
@@ -91088,7 +91034,7 @@ module.exports = function (password, salt, iterations, keylen, digest, callback)
|
|
|
91088
91034
|
}
|
|
91089
91035
|
|
|
91090
91036
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
91091
|
-
},{"../../safe-buffer-5.2.0/index":
|
|
91037
|
+
},{"../../safe-buffer-5.2.0/index":580,"./default-encoding":573,"./precondition":574,"./sync":575,"_process":171}],573:[function(require,module,exports){
|
|
91092
91038
|
(function (process){(function (){
|
|
91093
91039
|
var defaultEncoding
|
|
91094
91040
|
/* istanbul ignore next */
|
|
@@ -91102,7 +91048,7 @@ if (process.browser) {
|
|
|
91102
91048
|
module.exports = defaultEncoding
|
|
91103
91049
|
|
|
91104
91050
|
}).call(this)}).call(this,require('_process'))
|
|
91105
|
-
},{"_process":171}],
|
|
91051
|
+
},{"_process":171}],574:[function(require,module,exports){
|
|
91106
91052
|
(function (Buffer){(function (){
|
|
91107
91053
|
var MAX_ALLOC = Math.pow(2, 30) - 1 // default in iojs
|
|
91108
91054
|
|
|
@@ -91133,8 +91079,8 @@ module.exports = function (password, salt, iterations, keylen) {
|
|
|
91133
91079
|
}
|
|
91134
91080
|
}
|
|
91135
91081
|
|
|
91136
|
-
}).call(this)}).call(this,{"isBuffer":require("../../../../../../../node_modules/is-buffer/index.js")})
|
|
91137
|
-
},{"../../../../../../../node_modules/is-buffer/index.js":
|
|
91082
|
+
}).call(this)}).call(this,{"isBuffer":require("../../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js")})
|
|
91083
|
+
},{"../../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js":149}],575:[function(require,module,exports){
|
|
91138
91084
|
var sizes = {
|
|
91139
91085
|
md5: 16,
|
|
91140
91086
|
sha1: 20,
|
|
@@ -91187,7 +91133,7 @@ function pbkdf2 (password, salt, iterations, keylen, digest) {
|
|
|
91187
91133
|
|
|
91188
91134
|
module.exports = pbkdf2
|
|
91189
91135
|
|
|
91190
|
-
},{"../../create-hmac-1.1.4/browser":
|
|
91136
|
+
},{"../../create-hmac-1.1.4/browser":498,"../../safe-buffer-5.2.0/index":580,"../lib/default-encoding":573,"../lib/precondition":574}],576:[function(require,module,exports){
|
|
91191
91137
|
var OPS = require('../bitcoin-ops-1.4.1/index.json')
|
|
91192
91138
|
|
|
91193
91139
|
function encodingLength (i) {
|
|
@@ -91266,7 +91212,7 @@ module.exports = {
|
|
|
91266
91212
|
decode: decode
|
|
91267
91213
|
}
|
|
91268
91214
|
|
|
91269
|
-
},{"../bitcoin-ops-1.4.1/index.json":
|
|
91215
|
+
},{"../bitcoin-ops-1.4.1/index.json":442}],577:[function(require,module,exports){
|
|
91270
91216
|
(function (process,global){(function (){
|
|
91271
91217
|
'use strict'
|
|
91272
91218
|
|
|
@@ -91320,7 +91266,7 @@ function randomBytes (size, cb) {
|
|
|
91320
91266
|
}
|
|
91321
91267
|
|
|
91322
91268
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
91323
|
-
},{"../safe-buffer-5.2.0/index":
|
|
91269
|
+
},{"../safe-buffer-5.2.0/index":580,"_process":171}],578:[function(require,module,exports){
|
|
91324
91270
|
'use strict'
|
|
91325
91271
|
var Buffer = require('buffer').Buffer
|
|
91326
91272
|
var inherits = require('../inherits-2.0.4/inherits')
|
|
@@ -91485,7 +91431,7 @@ function fn5 (a, b, c, d, e, m, k, s) {
|
|
|
91485
91431
|
|
|
91486
91432
|
module.exports = RIPEMD160
|
|
91487
91433
|
|
|
91488
|
-
},{"../hash-base-3.0.4/index":
|
|
91434
|
+
},{"../hash-base-3.0.4/index":532,"../inherits-2.0.4/inherits":546,"buffer":67}],579:[function(require,module,exports){
|
|
91489
91435
|
const assert = require('assert')
|
|
91490
91436
|
const Buffer = require('../safe-buffer-5.2.0/index').Buffer
|
|
91491
91437
|
/**
|
|
@@ -91717,7 +91663,7 @@ function toBuffer (v) {
|
|
|
91717
91663
|
return v
|
|
91718
91664
|
}
|
|
91719
91665
|
|
|
91720
|
-
},{"../safe-buffer-5.2.0/index":
|
|
91666
|
+
},{"../safe-buffer-5.2.0/index":580,"assert":16}],580:[function(require,module,exports){
|
|
91721
91667
|
/* eslint-disable node/no-deprecated-api */
|
|
91722
91668
|
var buffer = require('buffer')
|
|
91723
91669
|
var Buffer = buffer.Buffer
|
|
@@ -91783,11 +91729,11 @@ SafeBuffer.allocUnsafeSlow = function (size) {
|
|
|
91783
91729
|
return buffer.SlowBuffer(size)
|
|
91784
91730
|
}
|
|
91785
91731
|
|
|
91786
|
-
},{"buffer":67}],
|
|
91732
|
+
},{"buffer":67}],581:[function(require,module,exports){
|
|
91787
91733
|
'use strict'
|
|
91788
91734
|
module.exports = require('./lib')(require('./lib/elliptic'))
|
|
91789
91735
|
|
|
91790
|
-
},{"./lib":
|
|
91736
|
+
},{"./lib":585,"./lib/elliptic":584}],582:[function(require,module,exports){
|
|
91791
91737
|
(function (Buffer){(function (){
|
|
91792
91738
|
'use strict'
|
|
91793
91739
|
var toString = Object.prototype.toString
|
|
@@ -91834,8 +91780,8 @@ exports.isNumberInInterval = function (number, x, y, message) {
|
|
|
91834
91780
|
if (number <= x || number >= y) throw RangeError(message)
|
|
91835
91781
|
}
|
|
91836
91782
|
|
|
91837
|
-
}).call(this)}).call(this,{"isBuffer":require("../../../../../../../node_modules/is-buffer/index.js")})
|
|
91838
|
-
},{"../../../../../../../node_modules/is-buffer/index.js":
|
|
91783
|
+
}).call(this)}).call(this,{"isBuffer":require("../../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js")})
|
|
91784
|
+
},{"../../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js":149}],583:[function(require,module,exports){
|
|
91839
91785
|
'use strict'
|
|
91840
91786
|
var Buffer = require('../../safe-buffer-5.2.0/index').Buffer
|
|
91841
91787
|
var bip66 = require('../../bip66-1.1.5/index')
|
|
@@ -92030,7 +91976,7 @@ exports.signatureImportLax = function (sig) {
|
|
|
92030
91976
|
return { r: r, s: s }
|
|
92031
91977
|
}
|
|
92032
91978
|
|
|
92033
|
-
},{"../../bip66-1.1.5/index":
|
|
91979
|
+
},{"../../bip66-1.1.5/index":441,"../../safe-buffer-5.2.0/index":580}],584:[function(require,module,exports){
|
|
92034
91980
|
'use strict'
|
|
92035
91981
|
var Buffer = require('../../../safe-buffer-5.2.0/index').Buffer
|
|
92036
91982
|
var createHash = require('../../../create-hash-1.2.0/browser')
|
|
@@ -92295,7 +92241,7 @@ exports.ecdhUnsafe = function (publicKey, privateKey, compressed) {
|
|
|
92295
92241
|
return Buffer.from(pair.pub.mul(scalar).encode(true, compressed))
|
|
92296
92242
|
}
|
|
92297
92243
|
|
|
92298
|
-
},{"../../../bn.js-4.11.8/lib/bn":
|
|
92244
|
+
},{"../../../bn.js-4.11.8/lib/bn":488,"../../../create-hash-1.2.0/browser":496,"../../../elliptic-6.5.3/lib/elliptic":511,"../../../safe-buffer-5.2.0/index":580,"../messages.json":586}],585:[function(require,module,exports){
|
|
92299
92245
|
'use strict'
|
|
92300
92246
|
var assert = require('./assert')
|
|
92301
92247
|
var der = require('./der')
|
|
@@ -92542,7 +92488,7 @@ module.exports = function (secp256k1) {
|
|
|
92542
92488
|
}
|
|
92543
92489
|
}
|
|
92544
92490
|
|
|
92545
|
-
},{"./assert":
|
|
92491
|
+
},{"./assert":582,"./der":583,"./messages.json":586}],586:[function(require,module,exports){
|
|
92546
92492
|
module.exports={
|
|
92547
92493
|
"COMPRESSED_TYPE_INVALID": "compressed should be a boolean",
|
|
92548
92494
|
"EC_PRIVATE_KEY_TYPE_INVALID": "private key should be a Buffer",
|
|
@@ -92580,10 +92526,10 @@ module.exports={
|
|
|
92580
92526
|
"TWEAK_TYPE_INVALID": "tweak should be a Buffer",
|
|
92581
92527
|
"TWEAK_LENGTH_INVALID": "tweak length is invalid"
|
|
92582
92528
|
}
|
|
92583
|
-
},{}],
|
|
92529
|
+
},{}],587:[function(require,module,exports){
|
|
92584
92530
|
module.exports = require('./lib')(require('./lib/elliptic'))
|
|
92585
92531
|
|
|
92586
|
-
},{"./lib":
|
|
92532
|
+
},{"./lib":589,"./lib/elliptic":588}],588:[function(require,module,exports){
|
|
92587
92533
|
const EC = require('../../elliptic-6.5.3/lib/elliptic').ec
|
|
92588
92534
|
|
|
92589
92535
|
const ec = new EC('secp256k1')
|
|
@@ -92987,7 +92933,7 @@ module.exports = {
|
|
|
92987
92933
|
}
|
|
92988
92934
|
}
|
|
92989
92935
|
|
|
92990
|
-
},{"../../elliptic-6.5.3/lib/elliptic":
|
|
92936
|
+
},{"../../elliptic-6.5.3/lib/elliptic":511}],589:[function(require,module,exports){
|
|
92991
92937
|
const errors = {
|
|
92992
92938
|
IMPOSSIBLE_CASE: 'Impossible case. Please create issue.',
|
|
92993
92939
|
TWEAK_ADD:
|
|
@@ -93325,7 +93271,7 @@ module.exports = (secp256k1) => {
|
|
|
93325
93271
|
}
|
|
93326
93272
|
}
|
|
93327
93273
|
|
|
93328
|
-
},{}],
|
|
93274
|
+
},{}],590:[function(require,module,exports){
|
|
93329
93275
|
var Buffer = require('../safe-buffer-5.2.0/index').Buffer
|
|
93330
93276
|
|
|
93331
93277
|
// prototype class for hash functions
|
|
@@ -93408,7 +93354,7 @@ Hash.prototype._update = function () {
|
|
|
93408
93354
|
|
|
93409
93355
|
module.exports = Hash
|
|
93410
93356
|
|
|
93411
|
-
},{"../safe-buffer-5.2.0/index":
|
|
93357
|
+
},{"../safe-buffer-5.2.0/index":580}],591:[function(require,module,exports){
|
|
93412
93358
|
'use strict'
|
|
93413
93359
|
var exports = (module.exports = function SHA(algorithm) {
|
|
93414
93360
|
algorithm = algorithm.toLowerCase()
|
|
@@ -93426,7 +93372,7 @@ exports.sha256 = require('./sha256')
|
|
|
93426
93372
|
exports.sha384 = require('./sha384')
|
|
93427
93373
|
exports.sha512 = require('./sha512')
|
|
93428
93374
|
|
|
93429
|
-
},{"./sha":
|
|
93375
|
+
},{"./sha":592,"./sha1":593,"./sha224":594,"./sha256":595,"./sha384":596,"./sha512":597}],592:[function(require,module,exports){
|
|
93430
93376
|
/*
|
|
93431
93377
|
* A JavaScript implementation of the Secure Hash Algorithm, SHA-0, as defined
|
|
93432
93378
|
* in FIPS PUB 180-1
|
|
@@ -93522,7 +93468,7 @@ Sha.prototype._hash = function () {
|
|
|
93522
93468
|
|
|
93523
93469
|
module.exports = Sha
|
|
93524
93470
|
|
|
93525
|
-
},{"../inherits-2.0.4/inherits":
|
|
93471
|
+
},{"../inherits-2.0.4/inherits":546,"../safe-buffer-5.2.0/index":580,"./hash":590}],593:[function(require,module,exports){
|
|
93526
93472
|
/*
|
|
93527
93473
|
* A JavaScript implementation of the Secure Hash Algorithm, SHA-1, as defined
|
|
93528
93474
|
* in FIPS PUB 180-1
|
|
@@ -93623,7 +93569,7 @@ Sha1.prototype._hash = function () {
|
|
|
93623
93569
|
|
|
93624
93570
|
module.exports = Sha1
|
|
93625
93571
|
|
|
93626
|
-
},{"../inherits-2.0.4/inherits":
|
|
93572
|
+
},{"../inherits-2.0.4/inherits":546,"../safe-buffer-5.2.0/index":580,"./hash":590}],594:[function(require,module,exports){
|
|
93627
93573
|
/**
|
|
93628
93574
|
* A JavaScript implementation of the Secure Hash Algorithm, SHA-256, as defined
|
|
93629
93575
|
* in FIPS 180-2
|
|
@@ -93678,7 +93624,7 @@ Sha224.prototype._hash = function () {
|
|
|
93678
93624
|
|
|
93679
93625
|
module.exports = Sha224
|
|
93680
93626
|
|
|
93681
|
-
},{"../inherits-2.0.4/inherits":
|
|
93627
|
+
},{"../inherits-2.0.4/inherits":546,"../safe-buffer-5.2.0/index":580,"./hash":590,"./sha256":595}],595:[function(require,module,exports){
|
|
93682
93628
|
/**
|
|
93683
93629
|
* A JavaScript implementation of the Secure Hash Algorithm, SHA-256, as defined
|
|
93684
93630
|
* in FIPS 180-2
|
|
@@ -93815,7 +93761,7 @@ Sha256.prototype._hash = function () {
|
|
|
93815
93761
|
|
|
93816
93762
|
module.exports = Sha256
|
|
93817
93763
|
|
|
93818
|
-
},{"../inherits-2.0.4/inherits":
|
|
93764
|
+
},{"../inherits-2.0.4/inherits":546,"../safe-buffer-5.2.0/index":580,"./hash":590}],596:[function(require,module,exports){
|
|
93819
93765
|
var inherits = require('../inherits-2.0.4/inherits')
|
|
93820
93766
|
var SHA512 = require('./sha512')
|
|
93821
93767
|
var Hash = require('./hash')
|
|
@@ -93874,7 +93820,7 @@ Sha384.prototype._hash = function () {
|
|
|
93874
93820
|
|
|
93875
93821
|
module.exports = Sha384
|
|
93876
93822
|
|
|
93877
|
-
},{"../inherits-2.0.4/inherits":
|
|
93823
|
+
},{"../inherits-2.0.4/inherits":546,"../safe-buffer-5.2.0/index":580,"./hash":590,"./sha512":597}],597:[function(require,module,exports){
|
|
93878
93824
|
var inherits = require('../inherits-2.0.4/inherits')
|
|
93879
93825
|
var Hash = require('./hash')
|
|
93880
93826
|
var Buffer = require('../safe-buffer-5.2.0/index').Buffer
|
|
@@ -94136,9 +94082,9 @@ Sha512.prototype._hash = function () {
|
|
|
94136
94082
|
|
|
94137
94083
|
module.exports = Sha512
|
|
94138
94084
|
|
|
94139
|
-
},{"../inherits-2.0.4/inherits":
|
|
94140
|
-
arguments[4][
|
|
94141
|
-
},{"./native":
|
|
94085
|
+
},{"../inherits-2.0.4/inherits":546,"../safe-buffer-5.2.0/index":580,"./hash":590}],598:[function(require,module,exports){
|
|
94086
|
+
arguments[4][387][0].apply(exports,arguments)
|
|
94087
|
+
},{"./native":601,"dup":387}],599:[function(require,module,exports){
|
|
94142
94088
|
(function (Buffer){(function (){
|
|
94143
94089
|
var NATIVE = require('./native')
|
|
94144
94090
|
var ERRORS = require('./errors')
|
|
@@ -94232,12 +94178,12 @@ for (var typeName in types) {
|
|
|
94232
94178
|
|
|
94233
94179
|
module.exports = types
|
|
94234
94180
|
|
|
94235
|
-
}).call(this)}).call(this,{"isBuffer":require("../../../../../../node_modules/is-buffer/index.js")})
|
|
94236
|
-
},{"../../../../../../node_modules/is-buffer/index.js":
|
|
94181
|
+
}).call(this)}).call(this,{"isBuffer":require("../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js")})
|
|
94182
|
+
},{"../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js":149,"./errors":598,"./native":601}],600:[function(require,module,exports){
|
|
94183
|
+
arguments[4][389][0].apply(exports,arguments)
|
|
94184
|
+
},{"./errors":598,"./extra":599,"./native":601,"dup":389}],601:[function(require,module,exports){
|
|
94237
94185
|
arguments[4][390][0].apply(exports,arguments)
|
|
94238
|
-
},{"
|
|
94239
|
-
arguments[4][391][0].apply(exports,arguments)
|
|
94240
|
-
},{"dup":391}],603:[function(require,module,exports){
|
|
94186
|
+
},{"dup":390}],602:[function(require,module,exports){
|
|
94241
94187
|
(function (root) {
|
|
94242
94188
|
"use strict";
|
|
94243
94189
|
|
|
@@ -94691,7 +94637,7 @@ UChar.udata={
|
|
|
94691
94637
|
}
|
|
94692
94638
|
}(this));
|
|
94693
94639
|
|
|
94694
|
-
},{}],
|
|
94640
|
+
},{}],603:[function(require,module,exports){
|
|
94695
94641
|
/*!
|
|
94696
94642
|
* validate.js 0.13.1
|
|
94697
94643
|
*
|
|
@@ -95946,7 +95892,7 @@ UChar.udata={
|
|
|
95946
95892
|
typeof module !== 'undefined' ? /* istanbul ignore next */ module : null,
|
|
95947
95893
|
typeof define !== 'undefined' ? /* istanbul ignore next */ define : null);
|
|
95948
95894
|
|
|
95949
|
-
},{}],
|
|
95895
|
+
},{}],604:[function(require,module,exports){
|
|
95950
95896
|
'use strict'
|
|
95951
95897
|
var Buffer = require('../safe-buffer-5.2.0/index').Buffer
|
|
95952
95898
|
|
|
@@ -96038,7 +95984,7 @@ function encodingLength (number) {
|
|
|
96038
95984
|
|
|
96039
95985
|
module.exports = { encode: encode, decode: decode, encodingLength: encodingLength }
|
|
96040
95986
|
|
|
96041
|
-
},{"../safe-buffer-5.2.0/index":
|
|
95987
|
+
},{"../safe-buffer-5.2.0/index":580}],605:[function(require,module,exports){
|
|
96042
95988
|
(function (Buffer){(function (){
|
|
96043
95989
|
var bs58check = require('../bs58check-2.1.2/index')
|
|
96044
95990
|
|
|
@@ -96105,7 +96051,7 @@ module.exports = {
|
|
|
96105
96051
|
}
|
|
96106
96052
|
|
|
96107
96053
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
96108
|
-
},{"../bs58check-2.1.2/index":
|
|
96054
|
+
},{"../bs58check-2.1.2/index":492,"buffer":67}],606:[function(require,module,exports){
|
|
96109
96055
|
"use strict";
|
|
96110
96056
|
var __extends = (this && this.__extends) || (function () {
|
|
96111
96057
|
var extendStatics = function (d, b) {
|
|
@@ -96140,6 +96086,7 @@ var Domain;
|
|
|
96140
96086
|
Domain["TEZOSFA"] = "TEZOSFA";
|
|
96141
96087
|
Domain["UTILS"] = "UTILS";
|
|
96142
96088
|
Domain["ACTIONS"] = "ACTIONS";
|
|
96089
|
+
Domain["ICP"] = "ICP";
|
|
96143
96090
|
})(Domain = exports.Domain || (exports.Domain = {}));
|
|
96144
96091
|
var CoinlibError = /** @class */ (function (_super) {
|
|
96145
96092
|
__extends(CoinlibError, _super);
|
|
@@ -96167,7 +96114,7 @@ var CoinlibAssertionError = /** @class */ (function (_super) {
|
|
|
96167
96114
|
}(Error));
|
|
96168
96115
|
exports.CoinlibAssertionError = CoinlibAssertionError;
|
|
96169
96116
|
|
|
96170
|
-
},{}],
|
|
96117
|
+
},{}],607:[function(require,module,exports){
|
|
96171
96118
|
"use strict";
|
|
96172
96119
|
var __extends = (this && this.__extends) || (function () {
|
|
96173
96120
|
var extendStatics = function (d, b) {
|
|
@@ -96449,7 +96396,7 @@ var InvalidString = /** @class */ (function (_super) {
|
|
|
96449
96396
|
}(SerializerError));
|
|
96450
96397
|
exports.InvalidString = InvalidString;
|
|
96451
96398
|
|
|
96452
|
-
},{"./coinlib-error":
|
|
96399
|
+
},{"./coinlib-error":606}],608:[function(require,module,exports){
|
|
96453
96400
|
"use strict";
|
|
96454
96401
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
96455
96402
|
exports.bufferFrom = exports.hasConfigurableContract = exports.implementsInterface = exports.assertNever = exports.SubProtocolType = exports.TimeInterval = exports.Domain = exports.TransactionError = exports.BalanceError = exports.ProtocolErrorType = exports.SerializerErrorType = exports.CoinlibError = exports.NetworkError = exports.ProtocolNotSupported = exports.SerializerVersionMismatch = exports.TypeNotSupported = exports.isSubProtocolSymbol = exports.isMainProtocolSymbol = exports.isProtocolSymbol = exports.isNetworkEqual = exports.SimpleAction = exports.LinkedAction = exports.RepeatableAction = exports.Action = exports.NetworkType = exports.SubProtocolSymbols = exports.MainProtocolSymbols = exports.ProtocolNetwork = exports.ProtocolBlockExplorer = exports.CryptoClient = exports.AirGapNFTWallet = exports.AirGapWalletStatus = exports.AirGapCoinWallet = exports.AirGapMarketWallet = exports.AirGapWallet = void 0;
|
|
@@ -96508,7 +96455,7 @@ var AirGapWallet_1 = require("./wallet/AirGapWallet");
|
|
|
96508
96455
|
Object.defineProperty(exports, "AirGapWallet", { enumerable: true, get: function () { return AirGapWallet_1.AirGapWallet; } });
|
|
96509
96456
|
Object.defineProperty(exports, "AirGapWalletStatus", { enumerable: true, get: function () { return AirGapWallet_1.AirGapWalletStatus; } });
|
|
96510
96457
|
|
|
96511
|
-
},{"./actions/Action":
|
|
96458
|
+
},{"./actions/Action":394,"./actions/LinkedAction":395,"./actions/RepeatableAction":396,"./actions/SimpleAction":397,"./errors":607,"./errors/coinlib-error":606,"./protocols/CryptoClient":609,"./protocols/ICoinSubProtocol":610,"./utils/Network":613,"./utils/ProtocolBlockExplorer":614,"./utils/ProtocolNetwork":615,"./utils/ProtocolSymbols":616,"./utils/assert":617,"./utils/buffer":618,"./utils/interfaces":620,"./wallet/AirGapCoinWallet":622,"./wallet/AirGapMarketWallet":623,"./wallet/AirGapNFTWallet":624,"./wallet/AirGapWallet":625}],609:[function(require,module,exports){
|
|
96512
96459
|
"use strict";
|
|
96513
96460
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
96514
96461
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -96593,7 +96540,7 @@ var CryptoClient = /** @class */ (function () {
|
|
|
96593
96540
|
}());
|
|
96594
96541
|
exports.CryptoClient = CryptoClient;
|
|
96595
96542
|
|
|
96596
|
-
},{"../errors":
|
|
96543
|
+
},{"../errors":607,"../errors/coinlib-error":606,"../utils/AES":612}],610:[function(require,module,exports){
|
|
96597
96544
|
"use strict";
|
|
96598
96545
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
96599
96546
|
exports.SubProtocolType = void 0;
|
|
@@ -96603,7 +96550,7 @@ var SubProtocolType;
|
|
|
96603
96550
|
SubProtocolType["TOKEN"] = "token";
|
|
96604
96551
|
})(SubProtocolType = exports.SubProtocolType || (exports.SubProtocolType = {}));
|
|
96605
96552
|
|
|
96606
|
-
},{}],
|
|
96553
|
+
},{}],611:[function(require,module,exports){
|
|
96607
96554
|
(function (Buffer){(function (){
|
|
96608
96555
|
"use strict";
|
|
96609
96556
|
var __extends = (this && this.__extends) || (function () {
|
|
@@ -96685,7 +96632,7 @@ var Secp256k1CryptoClient = /** @class */ (function (_super) {
|
|
|
96685
96632
|
exports.Secp256k1CryptoClient = Secp256k1CryptoClient;
|
|
96686
96633
|
|
|
96687
96634
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
96688
|
-
},{"../dependencies/src/eciesjs-0.3.9/src/index":
|
|
96635
|
+
},{"../dependencies/src/eciesjs-0.3.9/src/index":501,"./CryptoClient":609,"buffer":67}],612:[function(require,module,exports){
|
|
96689
96636
|
(function (Buffer){(function (){
|
|
96690
96637
|
"use strict";
|
|
96691
96638
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -96853,7 +96800,7 @@ var AES = /** @class */ (function () {
|
|
|
96853
96800
|
exports.AES = AES;
|
|
96854
96801
|
|
|
96855
96802
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
96856
|
-
},{"../errors":
|
|
96803
|
+
},{"../errors":607,"../errors/coinlib-error":606,"./hex":619,"buffer":67,"crypto":78}],613:[function(require,module,exports){
|
|
96857
96804
|
"use strict";
|
|
96858
96805
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
96859
96806
|
exports.isNetworkEqual = void 0;
|
|
@@ -96862,7 +96809,7 @@ var isNetworkEqual = function (network1, network2) {
|
|
|
96862
96809
|
};
|
|
96863
96810
|
exports.isNetworkEqual = isNetworkEqual;
|
|
96864
96811
|
|
|
96865
|
-
},{}],
|
|
96812
|
+
},{}],614:[function(require,module,exports){
|
|
96866
96813
|
"use strict";
|
|
96867
96814
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
96868
96815
|
exports.ProtocolBlockExplorer = void 0;
|
|
@@ -96874,7 +96821,7 @@ var ProtocolBlockExplorer = /** @class */ (function () {
|
|
|
96874
96821
|
}());
|
|
96875
96822
|
exports.ProtocolBlockExplorer = ProtocolBlockExplorer;
|
|
96876
96823
|
|
|
96877
|
-
},{}],
|
|
96824
|
+
},{}],615:[function(require,module,exports){
|
|
96878
96825
|
"use strict";
|
|
96879
96826
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
96880
96827
|
exports.ProtocolNetwork = exports.NetworkType = void 0;
|
|
@@ -96910,7 +96857,7 @@ var ProtocolNetwork = /** @class */ (function () {
|
|
|
96910
96857
|
}());
|
|
96911
96858
|
exports.ProtocolNetwork = ProtocolNetwork;
|
|
96912
96859
|
|
|
96913
|
-
},{"../dependencies/src/create-hash-1.2.0/index":
|
|
96860
|
+
},{"../dependencies/src/create-hash-1.2.0/index":497}],616:[function(require,module,exports){
|
|
96914
96861
|
"use strict";
|
|
96915
96862
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
96916
96863
|
exports.isProtocolSymbol = exports.isSubProtocolSymbol = exports.isMainProtocolSymbol = exports.SubProtocolSymbols = exports.MainProtocolSymbols = void 0;
|
|
@@ -96931,6 +96878,7 @@ var MainProtocolSymbols;
|
|
|
96931
96878
|
MainProtocolSymbols["MOONBEAM"] = "moonbeam";
|
|
96932
96879
|
MainProtocolSymbols["ASTAR"] = "astar";
|
|
96933
96880
|
MainProtocolSymbols["SHIDEN"] = "shiden";
|
|
96881
|
+
MainProtocolSymbols["ICP"] = "icp";
|
|
96934
96882
|
})(MainProtocolSymbols = exports.MainProtocolSymbols || (exports.MainProtocolSymbols = {}));
|
|
96935
96883
|
var SubProtocolSymbols;
|
|
96936
96884
|
(function (SubProtocolSymbols) {
|
|
@@ -96969,7 +96917,7 @@ function isProtocolSymbol(identifier) {
|
|
|
96969
96917
|
}
|
|
96970
96918
|
exports.isProtocolSymbol = isProtocolSymbol;
|
|
96971
96919
|
|
|
96972
|
-
},{}],
|
|
96920
|
+
},{}],617:[function(require,module,exports){
|
|
96973
96921
|
"use strict";
|
|
96974
96922
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
96975
96923
|
exports.assertFields = exports.assertNever = void 0;
|
|
@@ -96990,7 +96938,7 @@ function assertFields(name, object) {
|
|
|
96990
96938
|
}
|
|
96991
96939
|
exports.assertFields = assertFields;
|
|
96992
96940
|
|
|
96993
|
-
},{"../errors":
|
|
96941
|
+
},{"../errors":607,"../errors/coinlib-error":606}],618:[function(require,module,exports){
|
|
96994
96942
|
(function (Buffer){(function (){
|
|
96995
96943
|
"use strict";
|
|
96996
96944
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -97001,7 +96949,7 @@ var bufferFrom = function (data, encoding) {
|
|
|
97001
96949
|
exports.bufferFrom = bufferFrom;
|
|
97002
96950
|
|
|
97003
96951
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
97004
|
-
},{"buffer":67}],
|
|
96952
|
+
},{"buffer":67}],619:[function(require,module,exports){
|
|
97005
96953
|
(function (Buffer){(function (){
|
|
97006
96954
|
"use strict";
|
|
97007
96955
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
@@ -97116,7 +97064,7 @@ function fillToTargetLength(hexString, bitLength) {
|
|
|
97116
97064
|
}
|
|
97117
97065
|
|
|
97118
97066
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
97119
|
-
},{"../dependencies/src/bignumber.js-9.0.0/bignumber":
|
|
97067
|
+
},{"../dependencies/src/bignumber.js-9.0.0/bignumber":431,"./padStart":621,"buffer":67}],620:[function(require,module,exports){
|
|
97120
97068
|
"use strict";
|
|
97121
97069
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
97122
97070
|
exports.hasConfigurableContract = exports.implementsInterface = void 0;
|
|
@@ -97135,7 +97083,7 @@ function hasConfigurableContract(object) {
|
|
|
97135
97083
|
}
|
|
97136
97084
|
exports.hasConfigurableContract = hasConfigurableContract;
|
|
97137
97085
|
|
|
97138
|
-
},{}],
|
|
97086
|
+
},{}],621:[function(require,module,exports){
|
|
97139
97087
|
"use strict";
|
|
97140
97088
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
97141
97089
|
exports.padStart = void 0;
|
|
@@ -97156,7 +97104,7 @@ function padStart(targetString, targetLength, padString) {
|
|
|
97156
97104
|
}
|
|
97157
97105
|
exports.padStart = padStart;
|
|
97158
97106
|
|
|
97159
|
-
},{}],
|
|
97107
|
+
},{}],622:[function(require,module,exports){
|
|
97160
97108
|
"use strict";
|
|
97161
97109
|
var __extends = (this && this.__extends) || (function () {
|
|
97162
97110
|
var extendStatics = function (d, b) {
|
|
@@ -97356,7 +97304,7 @@ var AirGapCoinWallet = /** @class */ (function (_super) {
|
|
|
97356
97304
|
}(AirGapMarketWallet_1.AirGapMarketWallet));
|
|
97357
97305
|
exports.AirGapCoinWallet = AirGapCoinWallet;
|
|
97358
97306
|
|
|
97359
|
-
},{"../dependencies/src/bignumber.js-9.0.0/bignumber":
|
|
97307
|
+
},{"../dependencies/src/bignumber.js-9.0.0/bignumber":431,"../utils/ProtocolNetwork":615,"../utils/ProtocolSymbols":616,"./AirGapMarketWallet":623}],623:[function(require,module,exports){
|
|
97360
97308
|
"use strict";
|
|
97361
97309
|
var __extends = (this && this.__extends) || (function () {
|
|
97362
97310
|
var extendStatics = function (d, b) {
|
|
@@ -97578,7 +97526,7 @@ var AirGapMarketWallet = /** @class */ (function (_super) {
|
|
|
97578
97526
|
}(AirGapWallet_1.AirGapWallet));
|
|
97579
97527
|
exports.AirGapMarketWallet = AirGapMarketWallet;
|
|
97580
97528
|
|
|
97581
|
-
},{"../dependencies/src/bignumber.js-9.0.0/bignumber":
|
|
97529
|
+
},{"../dependencies/src/bignumber.js-9.0.0/bignumber":431,"../utils/ProtocolSymbols":616,"./AirGapWallet":625}],624:[function(require,module,exports){
|
|
97582
97530
|
"use strict";
|
|
97583
97531
|
var __extends = (this && this.__extends) || (function () {
|
|
97584
97532
|
var extendStatics = function (d, b) {
|
|
@@ -97758,7 +97706,7 @@ var AirGapNFTWallet = /** @class */ (function (_super) {
|
|
|
97758
97706
|
}(AirGapMarketWallet_1.AirGapMarketWallet));
|
|
97759
97707
|
exports.AirGapNFTWallet = AirGapNFTWallet;
|
|
97760
97708
|
|
|
97761
|
-
},{"../dependencies/src/bignumber.js-9.0.0/bignumber":
|
|
97709
|
+
},{"../dependencies/src/bignumber.js-9.0.0/bignumber":431,"../utils/ProtocolNetwork":615,"./AirGapMarketWallet":623}],625:[function(require,module,exports){
|
|
97762
97710
|
"use strict";
|
|
97763
97711
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
97764
97712
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -97901,7 +97849,7 @@ var AirGapWallet = /** @class */ (function () {
|
|
|
97901
97849
|
}());
|
|
97902
97850
|
exports.AirGapWallet = AirGapWallet;
|
|
97903
97851
|
|
|
97904
|
-
},{"../errors":
|
|
97852
|
+
},{"../errors":607,"../errors/coinlib-error":606}],626:[function(require,module,exports){
|
|
97905
97853
|
"use strict";
|
|
97906
97854
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
97907
97855
|
exports.validateSyncSchemeV2 = exports.validateSyncScheme = exports.generateIdV2 = exports.generateId = exports.Message = exports.SerializerV3 = exports.Serializer = exports.IACMessageType = void 0;
|
|
@@ -97922,7 +97870,7 @@ Object.defineProperty(exports, "generateId", { enumerable: true, get: function (
|
|
|
97922
97870
|
var validators_2 = require("./v3/validators/validators");
|
|
97923
97871
|
Object.defineProperty(exports, "validateSyncScheme", { enumerable: true, get: function () { return validators_2.validateSyncScheme; } });
|
|
97924
97872
|
|
|
97925
|
-
},{"./v2/interfaces":
|
|
97873
|
+
},{"./v2/interfaces":628,"./v2/message":629,"./v2/serializer":636,"./v2/utils/generateId":637,"./v2/validators/validators":639,"./v3/serializer":648,"./v3/utils/generateId":649,"./v3/validators/validators":651}],627:[function(require,module,exports){
|
|
97926
97874
|
(function (Buffer){(function (){
|
|
97927
97875
|
"use strict";
|
|
97928
97876
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -98049,7 +97997,7 @@ var IACProtocol = /** @class */ (function () {
|
|
|
98049
97997
|
exports.IACProtocol = IACProtocol;
|
|
98050
97998
|
|
|
98051
97999
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
98052
|
-
},{"./payloads/chunked-payload":
|
|
98000
|
+
},{"./payloads/chunked-payload":630,"./payloads/full-payload":631,"./serializer":636,"@airgap/coinlib-core/dependencies/src/bs58check-2.1.2/index":492,"@airgap/coinlib-core/dependencies/src/rlp-2.2.3/index":579,"@airgap/coinlib-core/errors":607,"buffer":67}],628:[function(require,module,exports){
|
|
98053
98001
|
"use strict";
|
|
98054
98002
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
98055
98003
|
exports.IACMessageType = void 0;
|
|
@@ -98081,7 +98029,7 @@ var IACMessageType;
|
|
|
98081
98029
|
// SocialRecoveryShareResponse = 24
|
|
98082
98030
|
})(IACMessageType = exports.IACMessageType || (exports.IACMessageType = {}));
|
|
98083
98031
|
|
|
98084
|
-
},{}],
|
|
98032
|
+
},{}],629:[function(require,module,exports){
|
|
98085
98033
|
(function (Buffer){(function (){
|
|
98086
98034
|
"use strict";
|
|
98087
98035
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -98169,7 +98117,7 @@ var Message = /** @class */ (function () {
|
|
|
98169
98117
|
exports.Message = Message;
|
|
98170
98118
|
|
|
98171
98119
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
98172
|
-
},{"./interfaces":
|
|
98120
|
+
},{"./interfaces":628,"./serializer":636,"./utils/generateId":637,"./utils/json-to-rlp":638,"@airgap/coinlib-core/errors":607,"@airgap/coinlib-core/utils/ProtocolSymbols":616,"buffer":67}],630:[function(require,module,exports){
|
|
98173
98121
|
(function (Buffer){(function (){
|
|
98174
98122
|
"use strict";
|
|
98175
98123
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -98228,7 +98176,7 @@ var ChunkedPayload = /** @class */ (function () {
|
|
|
98228
98176
|
exports.ChunkedPayload = ChunkedPayload;
|
|
98229
98177
|
|
|
98230
98178
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
98231
|
-
},{"@airgap/coinlib-core/errors":
|
|
98179
|
+
},{"@airgap/coinlib-core/errors":607,"buffer":67}],631:[function(require,module,exports){
|
|
98232
98180
|
"use strict";
|
|
98233
98181
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
98234
98182
|
if (k2 === undefined) k2 = k;
|
|
@@ -98290,7 +98238,7 @@ var FullPayload = /** @class */ (function () {
|
|
|
98290
98238
|
}());
|
|
98291
98239
|
exports.FullPayload = FullPayload;
|
|
98292
98240
|
|
|
98293
|
-
},{"../message":
|
|
98241
|
+
},{"../message":629,"../serializer":636,"@airgap/coinlib-core/dependencies/src/bs58check-2.1.2/index":492,"@airgap/coinlib-core/dependencies/src/rlp-2.2.3/index":579}],632:[function(require,module,exports){
|
|
98294
98242
|
module.exports={
|
|
98295
98243
|
"$ref": "#/definitions/AccountShareResponse",
|
|
98296
98244
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
@@ -98314,7 +98262,7 @@ module.exports={
|
|
|
98314
98262
|
}
|
|
98315
98263
|
}
|
|
98316
98264
|
|
|
98317
|
-
},{}],
|
|
98265
|
+
},{}],633:[function(require,module,exports){
|
|
98318
98266
|
module.exports={
|
|
98319
98267
|
"$ref": "#/definitions/MessageSignRequest",
|
|
98320
98268
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
@@ -98338,7 +98286,7 @@ module.exports={
|
|
|
98338
98286
|
}
|
|
98339
98287
|
}
|
|
98340
98288
|
|
|
98341
|
-
},{}],
|
|
98289
|
+
},{}],634:[function(require,module,exports){
|
|
98342
98290
|
module.exports={
|
|
98343
98291
|
"$ref": "#/definitions/MessageSignResponse",
|
|
98344
98292
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
@@ -98362,7 +98310,7 @@ module.exports={
|
|
|
98362
98310
|
}
|
|
98363
98311
|
}
|
|
98364
98312
|
|
|
98365
|
-
},{}],
|
|
98313
|
+
},{}],635:[function(require,module,exports){
|
|
98366
98314
|
"use strict";
|
|
98367
98315
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
98368
98316
|
exports.SchemaTypes = void 0;
|
|
@@ -98378,7 +98326,7 @@ var SchemaTypes;
|
|
|
98378
98326
|
SchemaTypes["HEX_STRING"] = "hexString"; // TODO: Should we do it like that?
|
|
98379
98327
|
})(SchemaTypes = exports.SchemaTypes || (exports.SchemaTypes = {}));
|
|
98380
98328
|
|
|
98381
|
-
},{}],
|
|
98329
|
+
},{}],636:[function(require,module,exports){
|
|
98382
98330
|
"use strict";
|
|
98383
98331
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
98384
98332
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -98544,7 +98492,7 @@ var Serializer = /** @class */ (function () {
|
|
|
98544
98492
|
}());
|
|
98545
98493
|
exports.Serializer = Serializer;
|
|
98546
98494
|
|
|
98547
|
-
},{"./inter-app-communication-protocol":
|
|
98495
|
+
},{"./inter-app-communication-protocol":627,"./interfaces":628,"./schemas/generated/account-share-response.json":632,"./schemas/generated/message-sign-request.json":633,"./schemas/generated/message-sign-response.json":634,"@airgap/coinlib-core/errors":607,"@airgap/coinlib-core/utils/ProtocolSymbols":616}],637:[function(require,module,exports){
|
|
98548
98496
|
"use strict";
|
|
98549
98497
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
98550
98498
|
exports.generateIdV2 = void 0;
|
|
@@ -98560,7 +98508,7 @@ function generateIdV2(length) {
|
|
|
98560
98508
|
}
|
|
98561
98509
|
exports.generateIdV2 = generateIdV2;
|
|
98562
98510
|
|
|
98563
|
-
},{}],
|
|
98511
|
+
},{}],638:[function(require,module,exports){
|
|
98564
98512
|
"use strict";
|
|
98565
98513
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
98566
98514
|
exports.rlpArrayToJson = exports.jsonToArray = exports.unwrapSchema = exports.getDefinitionByRefPath = void 0;
|
|
@@ -98738,7 +98686,7 @@ function rlpArrayToJson(schema, decoded) {
|
|
|
98738
98686
|
}
|
|
98739
98687
|
exports.rlpArrayToJson = rlpArrayToJson;
|
|
98740
98688
|
|
|
98741
|
-
},{"../schemas/schema":
|
|
98689
|
+
},{"../schemas/schema":635,"@airgap/coinlib-core/errors":607,"@airgap/coinlib-core/errors/coinlib-error":606,"@airgap/coinlib-core/utils/assert":617}],639:[function(require,module,exports){
|
|
98742
98690
|
"use strict";
|
|
98743
98691
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
98744
98692
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -98911,7 +98859,7 @@ function validateSerializationInput(from: string, fee: BigNumber, amount: BigNum
|
|
|
98911
98859
|
}
|
|
98912
98860
|
*/
|
|
98913
98861
|
|
|
98914
|
-
},{"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":
|
|
98862
|
+
},{"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":431,"@airgap/coinlib-core/dependencies/src/validate.js-0.13.1/validate":603,"@airgap/coinlib-core/errors":607,"@airgap/coinlib-core/errors/coinlib-error":606}],640:[function(require,module,exports){
|
|
98915
98863
|
(function (Buffer){(function (){
|
|
98916
98864
|
"use strict";
|
|
98917
98865
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -98986,9 +98934,9 @@ var IACMessageWrapper = /** @class */ (function () {
|
|
|
98986
98934
|
exports.IACMessageWrapper = IACMessageWrapper;
|
|
98987
98935
|
|
|
98988
98936
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
98989
|
-
},{"./message":
|
|
98990
|
-
arguments[4][
|
|
98991
|
-
},{"dup":
|
|
98937
|
+
},{"./message":642,"./payload":643,"./serializer":648,"@airgap/coinlib-core/dependencies/src/bs58check-2.1.2/index":492,"@airgap/coinlib-core/dependencies/src/cbor-sync-1.0.4/index":494,"@airgap/coinlib-core/dependencies/src/pako-2.0.3":555,"buffer":67}],641:[function(require,module,exports){
|
|
98938
|
+
arguments[4][628][0].apply(exports,arguments)
|
|
98939
|
+
},{"dup":628}],642:[function(require,module,exports){
|
|
98992
98940
|
"use strict";
|
|
98993
98941
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
98994
98942
|
exports.Message = exports.isMessageDefinitionArray = void 0;
|
|
@@ -99106,7 +99054,7 @@ var Message = /** @class */ (function () {
|
|
|
99106
99054
|
}());
|
|
99107
99055
|
exports.Message = Message;
|
|
99108
99056
|
|
|
99109
|
-
},{"./serializer":
|
|
99057
|
+
},{"./serializer":648,"./utils/generateId":649,"./utils/json-to-rlp":650,"@airgap/coinlib-core/errors":607,"@airgap/coinlib-core/utils/ProtocolSymbols":616}],643:[function(require,module,exports){
|
|
99110
99058
|
"use strict";
|
|
99111
99059
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
99112
99060
|
exports.Payload = void 0;
|
|
@@ -99135,7 +99083,7 @@ var Payload = /** @class */ (function () {
|
|
|
99135
99083
|
}());
|
|
99136
99084
|
exports.Payload = Payload;
|
|
99137
99085
|
|
|
99138
|
-
},{"./message":
|
|
99086
|
+
},{"./message":642,"./serializer":648}],644:[function(require,module,exports){
|
|
99139
99087
|
module.exports={
|
|
99140
99088
|
"$ref": "#/definitions/AccountShareResponse",
|
|
99141
99089
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
@@ -99171,11 +99119,11 @@ module.exports={
|
|
|
99171
99119
|
}
|
|
99172
99120
|
}
|
|
99173
99121
|
|
|
99174
|
-
},{}],
|
|
99122
|
+
},{}],645:[function(require,module,exports){
|
|
99123
|
+
arguments[4][633][0].apply(exports,arguments)
|
|
99124
|
+
},{"dup":633}],646:[function(require,module,exports){
|
|
99175
99125
|
arguments[4][634][0].apply(exports,arguments)
|
|
99176
99126
|
},{"dup":634}],647:[function(require,module,exports){
|
|
99177
|
-
arguments[4][635][0].apply(exports,arguments)
|
|
99178
|
-
},{"dup":635}],648:[function(require,module,exports){
|
|
99179
99127
|
"use strict";
|
|
99180
99128
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
99181
99129
|
exports.SchemaTypes = void 0;
|
|
@@ -99190,7 +99138,7 @@ var SchemaTypes;
|
|
|
99190
99138
|
SchemaTypes["OBJECT"] = "object";
|
|
99191
99139
|
})(SchemaTypes = exports.SchemaTypes || (exports.SchemaTypes = {}));
|
|
99192
99140
|
|
|
99193
|
-
},{}],
|
|
99141
|
+
},{}],648:[function(require,module,exports){
|
|
99194
99142
|
"use strict";
|
|
99195
99143
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
99196
99144
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -99354,7 +99302,7 @@ var SerializerV3 = /** @class */ (function () {
|
|
|
99354
99302
|
}());
|
|
99355
99303
|
exports.SerializerV3 = SerializerV3;
|
|
99356
99304
|
|
|
99357
|
-
},{"./iac-message-wrapper":
|
|
99305
|
+
},{"./iac-message-wrapper":640,"./interfaces":641,"./schemas/generated/account-share-response.json":644,"./schemas/generated/message-sign-request.json":645,"./schemas/generated/message-sign-response.json":646,"@airgap/coinlib-core/errors":607,"@airgap/coinlib-core/utils/ProtocolSymbols":616}],649:[function(require,module,exports){
|
|
99358
99306
|
"use strict";
|
|
99359
99307
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
99360
99308
|
exports.generateId = exports.ID_LENGTH = void 0;
|
|
@@ -99372,7 +99320,7 @@ function generateId(length) {
|
|
|
99372
99320
|
}
|
|
99373
99321
|
exports.generateId = generateId;
|
|
99374
99322
|
|
|
99375
|
-
},{}],
|
|
99323
|
+
},{}],650:[function(require,module,exports){
|
|
99376
99324
|
(function (Buffer){(function (){
|
|
99377
99325
|
"use strict";
|
|
99378
99326
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -99610,7 +99558,7 @@ function rlpArrayToJson(schema, decoded) {
|
|
|
99610
99558
|
exports.rlpArrayToJson = rlpArrayToJson;
|
|
99611
99559
|
|
|
99612
99560
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
99613
|
-
},{"../schemas/schema":
|
|
99561
|
+
},{"../schemas/schema":647,"@airgap/coinlib-core/errors":607,"@airgap/coinlib-core/errors/coinlib-error":606,"@airgap/coinlib-core/utils/assert":617,"buffer":67}],651:[function(require,module,exports){
|
|
99614
99562
|
"use strict";
|
|
99615
99563
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
99616
99564
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -99781,5 +99729,5 @@ function validateSerializationInput(from: string, fee: BigNumber, amount: BigNum
|
|
|
99781
99729
|
}
|
|
99782
99730
|
*/
|
|
99783
99731
|
|
|
99784
|
-
},{"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":
|
|
99732
|
+
},{"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":431,"@airgap/coinlib-core/dependencies/src/validate.js-0.13.1/validate":603}]},{},[213])(213)
|
|
99785
99733
|
});
|