@airgap/cosmos 0.13.9-beta.0 → 0.13.9-beta.2
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-cosmos.min.js +290 -342
- 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 __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
29951
29897
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -30065,7 +30011,7 @@ var Action = /** @class */ (function () {
|
|
|
30065
30011
|
}());
|
|
30066
30012
|
exports.Action = Action;
|
|
30067
30013
|
|
|
30068
|
-
},{"../errors":
|
|
30014
|
+
},{"../errors":367,"../errors/coinlib-error":366,"./StateMachine":217}],214:[function(require,module,exports){
|
|
30069
30015
|
"use strict";
|
|
30070
30016
|
var __extends = (this && this.__extends) || (function () {
|
|
30071
30017
|
var extendStatics = function (d, b) {
|
|
@@ -30161,7 +30107,7 @@ var LinkedAction = /** @class */ (function (_super) {
|
|
|
30161
30107
|
}(Action_1.Action));
|
|
30162
30108
|
exports.LinkedAction = LinkedAction;
|
|
30163
30109
|
|
|
30164
|
-
},{"./Action":
|
|
30110
|
+
},{"./Action":213}],215:[function(require,module,exports){
|
|
30165
30111
|
"use strict";
|
|
30166
30112
|
var __extends = (this && this.__extends) || (function () {
|
|
30167
30113
|
var extendStatics = function (d, b) {
|
|
@@ -30254,7 +30200,7 @@ var RepeatableAction = /** @class */ (function (_super) {
|
|
|
30254
30200
|
}(Action_1.Action));
|
|
30255
30201
|
exports.RepeatableAction = RepeatableAction;
|
|
30256
30202
|
|
|
30257
|
-
},{"./Action":
|
|
30203
|
+
},{"./Action":213}],216:[function(require,module,exports){
|
|
30258
30204
|
"use strict";
|
|
30259
30205
|
var __extends = (this && this.__extends) || (function () {
|
|
30260
30206
|
var extendStatics = function (d, b) {
|
|
@@ -30335,7 +30281,7 @@ var SimpleAction = /** @class */ (function (_super) {
|
|
|
30335
30281
|
}(Action_1.Action));
|
|
30336
30282
|
exports.SimpleAction = SimpleAction;
|
|
30337
30283
|
|
|
30338
|
-
},{"./Action":
|
|
30284
|
+
},{"./Action":213}],217:[function(require,module,exports){
|
|
30339
30285
|
"use strict";
|
|
30340
30286
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30341
30287
|
exports.StateMachine = void 0;
|
|
@@ -30378,9 +30324,9 @@ var StateMachine = /** @class */ (function () {
|
|
|
30378
30324
|
}());
|
|
30379
30325
|
exports.StateMachine = StateMachine;
|
|
30380
30326
|
|
|
30381
|
-
},{"../errors":
|
|
30327
|
+
},{"../errors":367,"../errors/coinlib-error":366}],218:[function(require,module,exports){
|
|
30382
30328
|
module.exports = require('./lib/axios');
|
|
30383
|
-
},{"./lib/axios":
|
|
30329
|
+
},{"./lib/axios":220}],219:[function(require,module,exports){
|
|
30384
30330
|
'use strict';
|
|
30385
30331
|
|
|
30386
30332
|
var utils = require('./../utils');
|
|
@@ -30556,7 +30502,7 @@ module.exports = function xhrAdapter(config) {
|
|
|
30556
30502
|
});
|
|
30557
30503
|
};
|
|
30558
30504
|
|
|
30559
|
-
},{"../core/createError":
|
|
30505
|
+
},{"../core/createError":226,"./../core/settle":230,"./../helpers/buildURL":234,"./../helpers/cookies":236,"./../helpers/isURLSameOrigin":238,"./../helpers/parseHeaders":240,"./../utils":242}],220:[function(require,module,exports){
|
|
30560
30506
|
'use strict';
|
|
30561
30507
|
|
|
30562
30508
|
var utils = require('./utils');
|
|
@@ -30611,7 +30557,7 @@ module.exports = axios;
|
|
|
30611
30557
|
// Allow use of default import syntax in TypeScript
|
|
30612
30558
|
module.exports.default = axios;
|
|
30613
30559
|
|
|
30614
|
-
},{"./cancel/Cancel":
|
|
30560
|
+
},{"./cancel/Cancel":221,"./cancel/CancelToken":222,"./cancel/isCancel":223,"./core/Axios":224,"./core/mergeConfig":229,"./defaults":232,"./helpers/bind":233,"./helpers/spread":241,"./utils":242}],221:[function(require,module,exports){
|
|
30615
30561
|
'use strict';
|
|
30616
30562
|
|
|
30617
30563
|
/**
|
|
@@ -30632,7 +30578,7 @@ Cancel.prototype.__CANCEL__ = true;
|
|
|
30632
30578
|
|
|
30633
30579
|
module.exports = Cancel;
|
|
30634
30580
|
|
|
30635
|
-
},{}],
|
|
30581
|
+
},{}],222:[function(require,module,exports){
|
|
30636
30582
|
'use strict';
|
|
30637
30583
|
|
|
30638
30584
|
var Cancel = require('./Cancel');
|
|
@@ -30691,14 +30637,14 @@ CancelToken.source = function source() {
|
|
|
30691
30637
|
|
|
30692
30638
|
module.exports = CancelToken;
|
|
30693
30639
|
|
|
30694
|
-
},{"./Cancel":
|
|
30640
|
+
},{"./Cancel":221}],223:[function(require,module,exports){
|
|
30695
30641
|
'use strict';
|
|
30696
30642
|
|
|
30697
30643
|
module.exports = function isCancel(value) {
|
|
30698
30644
|
return !!(value && value.__CANCEL__);
|
|
30699
30645
|
};
|
|
30700
30646
|
|
|
30701
|
-
},{}],
|
|
30647
|
+
},{}],224:[function(require,module,exports){
|
|
30702
30648
|
'use strict';
|
|
30703
30649
|
|
|
30704
30650
|
var utils = require('./../utils');
|
|
@@ -30786,7 +30732,7 @@ utils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {
|
|
|
30786
30732
|
|
|
30787
30733
|
module.exports = Axios;
|
|
30788
30734
|
|
|
30789
|
-
},{"../helpers/buildURL":
|
|
30735
|
+
},{"../helpers/buildURL":234,"./../utils":242,"./InterceptorManager":225,"./dispatchRequest":227,"./mergeConfig":229}],225:[function(require,module,exports){
|
|
30790
30736
|
'use strict';
|
|
30791
30737
|
|
|
30792
30738
|
var utils = require('./../utils');
|
|
@@ -30840,7 +30786,7 @@ InterceptorManager.prototype.forEach = function forEach(fn) {
|
|
|
30840
30786
|
|
|
30841
30787
|
module.exports = InterceptorManager;
|
|
30842
30788
|
|
|
30843
|
-
},{"./../utils":
|
|
30789
|
+
},{"./../utils":242}],226:[function(require,module,exports){
|
|
30844
30790
|
'use strict';
|
|
30845
30791
|
|
|
30846
30792
|
var enhanceError = require('./enhanceError');
|
|
@@ -30860,7 +30806,7 @@ module.exports = function createError(message, config, code, request, response)
|
|
|
30860
30806
|
return enhanceError(error, config, code, request, response);
|
|
30861
30807
|
};
|
|
30862
30808
|
|
|
30863
|
-
},{"./enhanceError":
|
|
30809
|
+
},{"./enhanceError":228}],227:[function(require,module,exports){
|
|
30864
30810
|
'use strict';
|
|
30865
30811
|
|
|
30866
30812
|
var utils = require('./../utils');
|
|
@@ -30948,7 +30894,7 @@ module.exports = function dispatchRequest(config) {
|
|
|
30948
30894
|
});
|
|
30949
30895
|
};
|
|
30950
30896
|
|
|
30951
|
-
},{"../cancel/isCancel":
|
|
30897
|
+
},{"../cancel/isCancel":223,"../defaults":232,"./../helpers/combineURLs":235,"./../helpers/isAbsoluteURL":237,"./../utils":242,"./transformData":231}],228:[function(require,module,exports){
|
|
30952
30898
|
'use strict';
|
|
30953
30899
|
|
|
30954
30900
|
/**
|
|
@@ -30992,7 +30938,7 @@ module.exports = function enhanceError(error, config, code, request, response) {
|
|
|
30992
30938
|
return error;
|
|
30993
30939
|
};
|
|
30994
30940
|
|
|
30995
|
-
},{}],
|
|
30941
|
+
},{}],229:[function(require,module,exports){
|
|
30996
30942
|
'use strict';
|
|
30997
30943
|
|
|
30998
30944
|
var utils = require('../utils');
|
|
@@ -31045,7 +30991,7 @@ module.exports = function mergeConfig(config1, config2) {
|
|
|
31045
30991
|
return config;
|
|
31046
30992
|
};
|
|
31047
30993
|
|
|
31048
|
-
},{"../utils":
|
|
30994
|
+
},{"../utils":242}],230:[function(require,module,exports){
|
|
31049
30995
|
'use strict';
|
|
31050
30996
|
|
|
31051
30997
|
var createError = require('./createError');
|
|
@@ -31072,7 +31018,7 @@ module.exports = function settle(resolve, reject, response) {
|
|
|
31072
31018
|
}
|
|
31073
31019
|
};
|
|
31074
31020
|
|
|
31075
|
-
},{"./createError":
|
|
31021
|
+
},{"./createError":226}],231:[function(require,module,exports){
|
|
31076
31022
|
'use strict';
|
|
31077
31023
|
|
|
31078
31024
|
var utils = require('./../utils');
|
|
@@ -31094,7 +31040,7 @@ module.exports = function transformData(data, headers, fns) {
|
|
|
31094
31040
|
return data;
|
|
31095
31041
|
};
|
|
31096
31042
|
|
|
31097
|
-
},{"./../utils":
|
|
31043
|
+
},{"./../utils":242}],232:[function(require,module,exports){
|
|
31098
31044
|
(function (process){(function (){
|
|
31099
31045
|
'use strict';
|
|
31100
31046
|
|
|
@@ -31196,7 +31142,7 @@ utils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {
|
|
|
31196
31142
|
module.exports = defaults;
|
|
31197
31143
|
|
|
31198
31144
|
}).call(this)}).call(this,require('_process'))
|
|
31199
|
-
},{"./adapters/http":
|
|
31145
|
+
},{"./adapters/http":219,"./adapters/xhr":219,"./helpers/normalizeHeaderName":239,"./utils":242,"_process":171}],233:[function(require,module,exports){
|
|
31200
31146
|
'use strict';
|
|
31201
31147
|
|
|
31202
31148
|
module.exports = function bind(fn, thisArg) {
|
|
@@ -31209,7 +31155,7 @@ module.exports = function bind(fn, thisArg) {
|
|
|
31209
31155
|
};
|
|
31210
31156
|
};
|
|
31211
31157
|
|
|
31212
|
-
},{}],
|
|
31158
|
+
},{}],234:[function(require,module,exports){
|
|
31213
31159
|
'use strict';
|
|
31214
31160
|
|
|
31215
31161
|
var utils = require('./../utils');
|
|
@@ -31282,7 +31228,7 @@ module.exports = function buildURL(url, params, paramsSerializer) {
|
|
|
31282
31228
|
return url;
|
|
31283
31229
|
};
|
|
31284
31230
|
|
|
31285
|
-
},{"./../utils":
|
|
31231
|
+
},{"./../utils":242}],235:[function(require,module,exports){
|
|
31286
31232
|
'use strict';
|
|
31287
31233
|
|
|
31288
31234
|
/**
|
|
@@ -31298,7 +31244,7 @@ module.exports = function combineURLs(baseURL, relativeURL) {
|
|
|
31298
31244
|
: baseURL;
|
|
31299
31245
|
};
|
|
31300
31246
|
|
|
31301
|
-
},{}],
|
|
31247
|
+
},{}],236:[function(require,module,exports){
|
|
31302
31248
|
'use strict';
|
|
31303
31249
|
|
|
31304
31250
|
var utils = require('./../utils');
|
|
@@ -31353,7 +31299,7 @@ module.exports = (
|
|
|
31353
31299
|
})()
|
|
31354
31300
|
);
|
|
31355
31301
|
|
|
31356
|
-
},{"./../utils":
|
|
31302
|
+
},{"./../utils":242}],237:[function(require,module,exports){
|
|
31357
31303
|
'use strict';
|
|
31358
31304
|
|
|
31359
31305
|
/**
|
|
@@ -31369,7 +31315,7 @@ module.exports = function isAbsoluteURL(url) {
|
|
|
31369
31315
|
return /^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(url);
|
|
31370
31316
|
};
|
|
31371
31317
|
|
|
31372
|
-
},{}],
|
|
31318
|
+
},{}],238:[function(require,module,exports){
|
|
31373
31319
|
'use strict';
|
|
31374
31320
|
|
|
31375
31321
|
var utils = require('./../utils');
|
|
@@ -31439,7 +31385,7 @@ module.exports = (
|
|
|
31439
31385
|
})()
|
|
31440
31386
|
);
|
|
31441
31387
|
|
|
31442
|
-
},{"./../utils":
|
|
31388
|
+
},{"./../utils":242}],239:[function(require,module,exports){
|
|
31443
31389
|
'use strict';
|
|
31444
31390
|
|
|
31445
31391
|
var utils = require('../utils');
|
|
@@ -31453,7 +31399,7 @@ module.exports = function normalizeHeaderName(headers, normalizedName) {
|
|
|
31453
31399
|
});
|
|
31454
31400
|
};
|
|
31455
31401
|
|
|
31456
|
-
},{"../utils":
|
|
31402
|
+
},{"../utils":242}],240:[function(require,module,exports){
|
|
31457
31403
|
'use strict';
|
|
31458
31404
|
|
|
31459
31405
|
var utils = require('./../utils');
|
|
@@ -31508,7 +31454,7 @@ module.exports = function parseHeaders(headers) {
|
|
|
31508
31454
|
return parsed;
|
|
31509
31455
|
};
|
|
31510
31456
|
|
|
31511
|
-
},{"./../utils":
|
|
31457
|
+
},{"./../utils":242}],241:[function(require,module,exports){
|
|
31512
31458
|
'use strict';
|
|
31513
31459
|
|
|
31514
31460
|
/**
|
|
@@ -31537,7 +31483,7 @@ module.exports = function spread(callback) {
|
|
|
31537
31483
|
};
|
|
31538
31484
|
};
|
|
31539
31485
|
|
|
31540
|
-
},{}],
|
|
31486
|
+
},{}],242:[function(require,module,exports){
|
|
31541
31487
|
'use strict';
|
|
31542
31488
|
|
|
31543
31489
|
var bind = require('./helpers/bind');
|
|
@@ -31873,7 +31819,7 @@ module.exports = {
|
|
|
31873
31819
|
trim: trim
|
|
31874
31820
|
};
|
|
31875
31821
|
|
|
31876
|
-
},{"../../is-buffer-2.0.3/index":
|
|
31822
|
+
},{"../../is-buffer-2.0.3/index":311,"./helpers/bind":233}],243:[function(require,module,exports){
|
|
31877
31823
|
'use strict'
|
|
31878
31824
|
// base-x encoding / decoding
|
|
31879
31825
|
// Copyright (c) 2018 base-x contributors
|
|
@@ -31995,7 +31941,7 @@ function base (ALPHABET) {
|
|
|
31995
31941
|
}
|
|
31996
31942
|
module.exports = base
|
|
31997
31943
|
|
|
31998
|
-
},{"../../safe-buffer-5.2.0/index":
|
|
31944
|
+
},{"../../safe-buffer-5.2.0/index":339}],244:[function(require,module,exports){
|
|
31999
31945
|
'use strict'
|
|
32000
31946
|
var ALPHABET = 'qpzry9x8gf2tvdw0s3jn54khce6mua7l'
|
|
32001
31947
|
|
|
@@ -32144,7 +32090,7 @@ module.exports = {
|
|
|
32144
32090
|
fromWords: fromWords
|
|
32145
32091
|
}
|
|
32146
32092
|
|
|
32147
|
-
},{}],
|
|
32093
|
+
},{}],245:[function(require,module,exports){
|
|
32148
32094
|
;(function (globalObject) {
|
|
32149
32095
|
'use strict';
|
|
32150
32096
|
|
|
@@ -35048,7 +34994,7 @@ module.exports = {
|
|
|
35048
34994
|
}
|
|
35049
34995
|
})(this);
|
|
35050
34996
|
|
|
35051
|
-
},{}],
|
|
34997
|
+
},{}],246:[function(require,module,exports){
|
|
35052
34998
|
(function (Buffer){(function (){
|
|
35053
34999
|
"use strict";
|
|
35054
35000
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -35342,7 +35288,7 @@ function fromSeed(seed, network) {
|
|
|
35342
35288
|
exports.fromSeed = fromSeed;
|
|
35343
35289
|
|
|
35344
35290
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
35345
|
-
},{"../../bs58check-2.1.2/index":
|
|
35291
|
+
},{"../../bs58check-2.1.2/index":263,"../../tiny-secp256k1-1.1.3/js":357,"../../typeforce-1.18.0/index":361,"../../wif-2.0.6/index":365,"./crypto":247,"buffer":67}],247:[function(require,module,exports){
|
|
35346
35292
|
"use strict";
|
|
35347
35293
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
35348
35294
|
const createHash = require('../../create-hash-1.2.0/browser');
|
|
@@ -35370,7 +35316,7 @@ function hmacSHA512(key, data) {
|
|
|
35370
35316
|
}
|
|
35371
35317
|
exports.hmacSHA512 = hmacSHA512;
|
|
35372
35318
|
|
|
35373
|
-
},{"../../create-hash-1.2.0/browser":
|
|
35319
|
+
},{"../../create-hash-1.2.0/browser":267,"../../create-hmac-1.1.7/browser":271}],248:[function(require,module,exports){
|
|
35374
35320
|
"use strict";
|
|
35375
35321
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
35376
35322
|
var bip32_1 = require("./bip32");
|
|
@@ -35379,7 +35325,7 @@ exports.fromBase58 = bip32_1.fromBase58;
|
|
|
35379
35325
|
exports.fromPublicKey = bip32_1.fromPublicKey;
|
|
35380
35326
|
exports.fromPrivateKey = bip32_1.fromPrivateKey;
|
|
35381
35327
|
|
|
35382
|
-
},{"./bip32":
|
|
35328
|
+
},{"./bip32":246}],249:[function(require,module,exports){
|
|
35383
35329
|
var Buffer = require('../safe-buffer-5.2.0/index').Buffer
|
|
35384
35330
|
var createHash = require('../create-hash-1.2.0/browser')
|
|
35385
35331
|
var pbkdf2 = require('../pbkdf2-3.0.17/index').pbkdf2Sync
|
|
@@ -35534,7 +35480,7 @@ module.exports = {
|
|
|
35534
35480
|
}
|
|
35535
35481
|
}
|
|
35536
35482
|
|
|
35537
|
-
},{"../create-hash-1.2.0/browser":
|
|
35483
|
+
},{"../create-hash-1.2.0/browser":267,"../pbkdf2-3.0.17/index":331,"../randombytes-2.1.0/browser":336,"../safe-buffer-5.2.0/index":339,"../unorm-1.6.0/lib/unorm":363,"./wordlists/chinese_simplified.json":250,"./wordlists/chinese_traditional.json":251,"./wordlists/english.json":252,"./wordlists/french.json":253,"./wordlists/italian.json":254,"./wordlists/japanese.json":255,"./wordlists/korean.json":256,"./wordlists/spanish.json":257}],250:[function(require,module,exports){
|
|
35538
35484
|
module.exports=[
|
|
35539
35485
|
"的",
|
|
35540
35486
|
"一",
|
|
@@ -37585,7 +37531,7 @@ module.exports=[
|
|
|
37585
37531
|
"矮",
|
|
37586
37532
|
"歇"
|
|
37587
37533
|
]
|
|
37588
|
-
},{}],
|
|
37534
|
+
},{}],251:[function(require,module,exports){
|
|
37589
37535
|
module.exports=[
|
|
37590
37536
|
"的",
|
|
37591
37537
|
"一",
|
|
@@ -39636,7 +39582,7 @@ module.exports=[
|
|
|
39636
39582
|
"矮",
|
|
39637
39583
|
"歇"
|
|
39638
39584
|
]
|
|
39639
|
-
},{}],
|
|
39585
|
+
},{}],252:[function(require,module,exports){
|
|
39640
39586
|
module.exports=[
|
|
39641
39587
|
"abandon",
|
|
39642
39588
|
"ability",
|
|
@@ -41687,7 +41633,7 @@ module.exports=[
|
|
|
41687
41633
|
"zone",
|
|
41688
41634
|
"zoo"
|
|
41689
41635
|
]
|
|
41690
|
-
},{}],
|
|
41636
|
+
},{}],253:[function(require,module,exports){
|
|
41691
41637
|
module.exports=[
|
|
41692
41638
|
"abaisser",
|
|
41693
41639
|
"abandon",
|
|
@@ -43738,7 +43684,7 @@ module.exports=[
|
|
|
43738
43684
|
"zeste",
|
|
43739
43685
|
"zoologie"
|
|
43740
43686
|
]
|
|
43741
|
-
},{}],
|
|
43687
|
+
},{}],254:[function(require,module,exports){
|
|
43742
43688
|
module.exports=[
|
|
43743
43689
|
"abaco",
|
|
43744
43690
|
"abbaglio",
|
|
@@ -45789,7 +45735,7 @@ module.exports=[
|
|
|
45789
45735
|
"zulu",
|
|
45790
45736
|
"zuppa"
|
|
45791
45737
|
]
|
|
45792
|
-
},{}],
|
|
45738
|
+
},{}],255:[function(require,module,exports){
|
|
45793
45739
|
module.exports=[
|
|
45794
45740
|
"あいこくしん",
|
|
45795
45741
|
"あいさつ",
|
|
@@ -47840,7 +47786,7 @@ module.exports=[
|
|
|
47840
47786
|
"わらう",
|
|
47841
47787
|
"われる"
|
|
47842
47788
|
]
|
|
47843
|
-
},{}],
|
|
47789
|
+
},{}],256:[function(require,module,exports){
|
|
47844
47790
|
module.exports=[
|
|
47845
47791
|
"가격",
|
|
47846
47792
|
"가끔",
|
|
@@ -49891,7 +49837,7 @@ module.exports=[
|
|
|
49891
49837
|
"흰색",
|
|
49892
49838
|
"힘껏"
|
|
49893
49839
|
]
|
|
49894
|
-
},{}],
|
|
49840
|
+
},{}],257:[function(require,module,exports){
|
|
49895
49841
|
module.exports=[
|
|
49896
49842
|
"ábaco",
|
|
49897
49843
|
"abdomen",
|
|
@@ -51942,7 +51888,7 @@ module.exports=[
|
|
|
51942
51888
|
"zumo",
|
|
51943
51889
|
"zurdo"
|
|
51944
51890
|
]
|
|
51945
|
-
},{}],
|
|
51891
|
+
},{}],258:[function(require,module,exports){
|
|
51946
51892
|
// Reference https://github.com/bitcoin/bips/blob/master/bip-0066.mediawiki
|
|
51947
51893
|
// Format: 0x30 [total-length] 0x02 [R-length] [R] 0x02 [S-length] [S]
|
|
51948
51894
|
// NOTE: SIGHASH byte ignored AND restricted, truncate before use
|
|
@@ -52057,7 +52003,7 @@ module.exports = {
|
|
|
52057
52003
|
encode: encode
|
|
52058
52004
|
}
|
|
52059
52005
|
|
|
52060
|
-
},{"../safe-buffer-5.2.0/index":
|
|
52006
|
+
},{"../safe-buffer-5.2.0/index":339}],259:[function(require,module,exports){
|
|
52061
52007
|
(function (module, exports) {
|
|
52062
52008
|
'use strict';
|
|
52063
52009
|
|
|
@@ -55486,15 +55432,15 @@ module.exports = {
|
|
|
55486
55432
|
};
|
|
55487
55433
|
})(typeof module === 'undefined' || module, this);
|
|
55488
55434
|
|
|
55489
|
-
},{"buffer":67}],
|
|
55435
|
+
},{"buffer":67}],260:[function(require,module,exports){
|
|
55490
55436
|
arguments[4][23][0].apply(exports,arguments)
|
|
55491
|
-
},{"crypto":78,"dup":23}],
|
|
55437
|
+
},{"crypto":78,"dup":23}],261:[function(require,module,exports){
|
|
55492
55438
|
var basex = require('../base-x-3.0.7/src/index')
|
|
55493
55439
|
var ALPHABET = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz'
|
|
55494
55440
|
|
|
55495
55441
|
module.exports = basex(ALPHABET)
|
|
55496
55442
|
|
|
55497
|
-
},{"../base-x-3.0.7/src/index":
|
|
55443
|
+
},{"../base-x-3.0.7/src/index":243}],262:[function(require,module,exports){
|
|
55498
55444
|
'use strict'
|
|
55499
55445
|
|
|
55500
55446
|
var base58 = require('../bs58-4.0.1/index')
|
|
@@ -55546,7 +55492,7 @@ module.exports = function (checksumFn) {
|
|
|
55546
55492
|
}
|
|
55547
55493
|
}
|
|
55548
55494
|
|
|
55549
|
-
},{"../bs58-4.0.1/index":
|
|
55495
|
+
},{"../bs58-4.0.1/index":261,"../safe-buffer-5.2.0/index":339}],263:[function(require,module,exports){
|
|
55550
55496
|
'use strict'
|
|
55551
55497
|
|
|
55552
55498
|
var createHash = require('../create-hash-1.2.0/browser')
|
|
@@ -55560,7 +55506,7 @@ function sha256x2 (buffer) {
|
|
|
55560
55506
|
|
|
55561
55507
|
module.exports = bs58checkBase(sha256x2)
|
|
55562
55508
|
|
|
55563
|
-
},{"../create-hash-1.2.0/browser":
|
|
55509
|
+
},{"../create-hash-1.2.0/browser":267,"./base":262}],264:[function(require,module,exports){
|
|
55564
55510
|
(function (Buffer){(function (){
|
|
55565
55511
|
;(function (global, factory) {
|
|
55566
55512
|
if (typeof define === 'function' && define.amd) {
|
|
@@ -56196,7 +56142,7 @@ module.exports = bs58checkBase(sha256x2)
|
|
|
56196
56142
|
})
|
|
56197
56143
|
|
|
56198
56144
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
56199
|
-
},{"buffer":67}],
|
|
56145
|
+
},{"buffer":67}],265:[function(require,module,exports){
|
|
56200
56146
|
var Buffer = require('../safe-buffer-5.2.0/index').Buffer
|
|
56201
56147
|
var Transform = require('stream').Transform
|
|
56202
56148
|
var StringDecoder = require('string_decoder').StringDecoder
|
|
@@ -56297,7 +56243,7 @@ CipherBase.prototype._toString = function (value, enc, fin) {
|
|
|
56297
56243
|
|
|
56298
56244
|
module.exports = CipherBase
|
|
56299
56245
|
|
|
56300
|
-
},{"../inherits-2.0.4/inherits":
|
|
56246
|
+
},{"../inherits-2.0.4/inherits":309,"../safe-buffer-5.2.0/index":339,"stream":192,"string_decoder":207}],266:[function(require,module,exports){
|
|
56301
56247
|
"use strict";
|
|
56302
56248
|
var __assign = (this && this.__assign) || function () {
|
|
56303
56249
|
__assign = Object.assign || function(t) {
|
|
@@ -57595,7 +57541,7 @@ var decodeTxBytes = function (bytes) { return __awaiter(void 0, void 0, void 0,
|
|
|
57595
57541
|
}); };
|
|
57596
57542
|
exports.decodeTxBytes = decodeTxBytes;
|
|
57597
57543
|
|
|
57598
|
-
},{"base64-js":21,"long":
|
|
57544
|
+
},{"base64-js":21,"long":395,"protobufjs/minimal.js":396}],267:[function(require,module,exports){
|
|
57599
57545
|
'use strict'
|
|
57600
57546
|
var inherits = require('../inherits-2.0.4/inherits')
|
|
57601
57547
|
var MD5 = require('../md5.js-1.3.5/index')
|
|
@@ -57627,17 +57573,17 @@ module.exports = function createHash (alg) {
|
|
|
57627
57573
|
return new Hash(sha(alg))
|
|
57628
57574
|
}
|
|
57629
57575
|
|
|
57630
|
-
},{"../cipher-base-1.0.4/index":
|
|
57576
|
+
},{"../cipher-base-1.0.4/index":265,"../inherits-2.0.4/inherits":309,"../md5.js-1.3.5/index":312,"../ripemd160-2.0.2/index":337,"../sha.js-2.4.11/index":350}],268:[function(require,module,exports){
|
|
57631
57577
|
module.exports = require('crypto').createHash
|
|
57632
57578
|
|
|
57633
|
-
},{"crypto":78}],
|
|
57579
|
+
},{"crypto":78}],269:[function(require,module,exports){
|
|
57634
57580
|
var MD5 = require('../md5.js-1.3.5/index')
|
|
57635
57581
|
|
|
57636
57582
|
module.exports = function (buffer) {
|
|
57637
57583
|
return new MD5().update(buffer).digest()
|
|
57638
57584
|
}
|
|
57639
57585
|
|
|
57640
|
-
},{"../md5.js-1.3.5/index":
|
|
57586
|
+
},{"../md5.js-1.3.5/index":312}],270:[function(require,module,exports){
|
|
57641
57587
|
(function (Buffer){(function (){
|
|
57642
57588
|
'use strict';
|
|
57643
57589
|
var createHash = require('../create-hash-1.2.0/browser')
|
|
@@ -57709,7 +57655,7 @@ module.exports = function createHmac(alg, key) {
|
|
|
57709
57655
|
}
|
|
57710
57656
|
|
|
57711
57657
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
57712
|
-
},{"../create-hash-1.2.0/browser":
|
|
57658
|
+
},{"../create-hash-1.2.0/browser":267,"../inherits-2.0.4/inherits":309,"buffer":67,"stream":192}],271:[function(require,module,exports){
|
|
57713
57659
|
'use strict'
|
|
57714
57660
|
var inherits = require('../inherits-2.0.4/inherits')
|
|
57715
57661
|
var Legacy = require('./legacy')
|
|
@@ -57773,7 +57719,7 @@ module.exports = function createHmac (alg, key) {
|
|
|
57773
57719
|
return new Hmac(alg, key)
|
|
57774
57720
|
}
|
|
57775
57721
|
|
|
57776
|
-
},{"../cipher-base-1.0.4/index":
|
|
57722
|
+
},{"../cipher-base-1.0.4/index":265,"../create-hash-1.2.0/md5":269,"../inherits-2.0.4/inherits":309,"../ripemd160-2.0.2/index":337,"../safe-buffer-5.2.0/index":339,"../sha.js-2.4.11/index":350,"./legacy":272}],272:[function(require,module,exports){
|
|
57777
57723
|
'use strict'
|
|
57778
57724
|
var inherits = require('../inherits-2.0.4/inherits')
|
|
57779
57725
|
var Buffer = require('../safe-buffer-5.2.0/index').Buffer
|
|
@@ -57821,7 +57767,7 @@ Hmac.prototype._final = function () {
|
|
|
57821
57767
|
}
|
|
57822
57768
|
module.exports = Hmac
|
|
57823
57769
|
|
|
57824
|
-
},{"../cipher-base-1.0.4/index":
|
|
57770
|
+
},{"../cipher-base-1.0.4/index":265,"../inherits-2.0.4/inherits":309,"../safe-buffer-5.2.0/index":339}],273:[function(require,module,exports){
|
|
57825
57771
|
(function (Buffer){(function (){
|
|
57826
57772
|
"use strict";
|
|
57827
57773
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -57859,7 +57805,7 @@ exports.utils = {
|
|
|
57859
57805
|
};
|
|
57860
57806
|
|
|
57861
57807
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
57862
|
-
},{"./keys":
|
|
57808
|
+
},{"./keys":276,"./utils":277,"buffer":67}],274:[function(require,module,exports){
|
|
57863
57809
|
(function (Buffer){(function (){
|
|
57864
57810
|
"use strict";
|
|
57865
57811
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -57924,7 +57870,7 @@ var PrivateKey = /** @class */ (function () {
|
|
|
57924
57870
|
exports.default = PrivateKey;
|
|
57925
57871
|
|
|
57926
57872
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
57927
|
-
},{"../../../futoin-hkdf-1.3.3/hkdf.js":
|
|
57873
|
+
},{"../../../futoin-hkdf-1.3.3/hkdf.js":294,"../../../secp256k1-4.0.2/elliptic":346,"../utils":277,"./PublicKey":275,"buffer":67}],275:[function(require,module,exports){
|
|
57928
57874
|
(function (Buffer){(function (){
|
|
57929
57875
|
"use strict";
|
|
57930
57876
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -57992,7 +57938,7 @@ var PublicKey = /** @class */ (function () {
|
|
|
57992
57938
|
exports.default = PublicKey;
|
|
57993
57939
|
|
|
57994
57940
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
57995
|
-
},{"../../../futoin-hkdf-1.3.3/hkdf.js":
|
|
57941
|
+
},{"../../../futoin-hkdf-1.3.3/hkdf.js":294,"../../../secp256k1-4.0.2/elliptic":346,"../utils":277,"buffer":67}],276:[function(require,module,exports){
|
|
57996
57942
|
"use strict";
|
|
57997
57943
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
57998
57944
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -58004,7 +57950,7 @@ Object.defineProperty(exports, "PrivateKey", { enumerable: true, get: function (
|
|
|
58004
57950
|
var PublicKey_1 = require("./PublicKey");
|
|
58005
57951
|
Object.defineProperty(exports, "PublicKey", { enumerable: true, get: function () { return __importDefault(PublicKey_1).default; } });
|
|
58006
57952
|
|
|
58007
|
-
},{"./PrivateKey":
|
|
57953
|
+
},{"./PrivateKey":274,"./PublicKey":275}],277:[function(require,module,exports){
|
|
58008
57954
|
(function (Buffer){(function (){
|
|
58009
57955
|
"use strict";
|
|
58010
57956
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -58072,7 +58018,7 @@ function aesDecrypt(key, cipherText) {
|
|
|
58072
58018
|
exports.aesDecrypt = aesDecrypt;
|
|
58073
58019
|
|
|
58074
58020
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
58075
|
-
},{"../../secp256k1-4.0.2/elliptic":
|
|
58021
|
+
},{"../../secp256k1-4.0.2/elliptic":346,"buffer":67,"crypto":78}],278:[function(require,module,exports){
|
|
58076
58022
|
'use strict';
|
|
58077
58023
|
|
|
58078
58024
|
var elliptic = exports;
|
|
@@ -58087,7 +58033,7 @@ elliptic.curves = require('./elliptic/curves');
|
|
|
58087
58033
|
elliptic.ec = require('./elliptic/ec');
|
|
58088
58034
|
elliptic.eddsa = require('./elliptic/eddsa');
|
|
58089
58035
|
|
|
58090
|
-
},{"../../brorand-1.1.0/index":
|
|
58036
|
+
},{"../../brorand-1.1.0/index":260,"../package.json":293,"./elliptic/curve":281,"./elliptic/curves":284,"./elliptic/ec":285,"./elliptic/eddsa":288,"./elliptic/utils":292}],279:[function(require,module,exports){
|
|
58091
58037
|
'use strict';
|
|
58092
58038
|
|
|
58093
58039
|
var BN = require('../../../../bn.js-4.11.8/lib/bn');
|
|
@@ -58465,7 +58411,7 @@ BasePoint.prototype.dblp = function dblp(k) {
|
|
|
58465
58411
|
return r;
|
|
58466
58412
|
};
|
|
58467
58413
|
|
|
58468
|
-
},{"../../../../bn.js-4.11.8/lib/bn":
|
|
58414
|
+
},{"../../../../bn.js-4.11.8/lib/bn":259,"../utils":292}],280:[function(require,module,exports){
|
|
58469
58415
|
'use strict';
|
|
58470
58416
|
|
|
58471
58417
|
var utils = require('../utils');
|
|
@@ -58899,9 +58845,9 @@ Point.prototype.eqXToP = function eqXToP(x) {
|
|
|
58899
58845
|
Point.prototype.toP = Point.prototype.normalize;
|
|
58900
58846
|
Point.prototype.mixedAdd = Point.prototype.add;
|
|
58901
58847
|
|
|
58902
|
-
},{"../../../../bn.js-4.11.8/lib/bn":
|
|
58848
|
+
},{"../../../../bn.js-4.11.8/lib/bn":259,"../../../../inherits-2.0.4/inherits":309,"../utils":292,"./base":279}],281:[function(require,module,exports){
|
|
58903
58849
|
arguments[4][93][0].apply(exports,arguments)
|
|
58904
|
-
},{"./base":
|
|
58850
|
+
},{"./base":279,"./edwards":280,"./mont":282,"./short":283,"dup":93}],282:[function(require,module,exports){
|
|
58905
58851
|
'use strict';
|
|
58906
58852
|
|
|
58907
58853
|
var BN = require('../../../../bn.js-4.11.8/lib/bn');
|
|
@@ -59081,7 +59027,7 @@ Point.prototype.getX = function getX() {
|
|
|
59081
59027
|
return this.x.fromRed();
|
|
59082
59028
|
};
|
|
59083
59029
|
|
|
59084
|
-
},{"../../../../bn.js-4.11.8/lib/bn":
|
|
59030
|
+
},{"../../../../bn.js-4.11.8/lib/bn":259,"../../../../inherits-2.0.4/inherits":309,"../utils":292,"./base":279}],283:[function(require,module,exports){
|
|
59085
59031
|
'use strict';
|
|
59086
59032
|
|
|
59087
59033
|
var utils = require('../utils');
|
|
@@ -60020,7 +59966,7 @@ JPoint.prototype.isInfinity = function isInfinity() {
|
|
|
60020
59966
|
return this.z.cmpn(0) === 0;
|
|
60021
59967
|
};
|
|
60022
59968
|
|
|
60023
|
-
},{"../../../../bn.js-4.11.8/lib/bn":
|
|
59969
|
+
},{"../../../../bn.js-4.11.8/lib/bn":259,"../../../../inherits-2.0.4/inherits":309,"../utils":292,"./base":279}],284:[function(require,module,exports){
|
|
60024
59970
|
'use strict';
|
|
60025
59971
|
|
|
60026
59972
|
var curves = exports;
|
|
@@ -60228,7 +60174,7 @@ defineCurve('secp256k1', {
|
|
|
60228
60174
|
]
|
|
60229
60175
|
});
|
|
60230
60176
|
|
|
60231
|
-
},{"../../../hash.js-1.1.7/lib/hash":
|
|
60177
|
+
},{"../../../hash.js-1.1.7/lib/hash":296,"./curve":281,"./precomputed/secp256k1":291,"./utils":292}],285:[function(require,module,exports){
|
|
60232
60178
|
'use strict';
|
|
60233
60179
|
|
|
60234
60180
|
var BN = require('../../../../bn.js-4.11.8/lib/bn');
|
|
@@ -60471,7 +60417,7 @@ EC.prototype.getKeyRecoveryParam = function(e, signature, Q, enc) {
|
|
|
60471
60417
|
throw new Error('Unable to find valid recovery factor');
|
|
60472
60418
|
};
|
|
60473
60419
|
|
|
60474
|
-
},{"../../../../bn.js-4.11.8/lib/bn":
|
|
60420
|
+
},{"../../../../bn.js-4.11.8/lib/bn":259,"../../../../brorand-1.1.0/index":260,"../../../../hmac-drbg-1.0.1/lib/hmac-drbg":308,"../curves":284,"../utils":292,"./key":286,"./signature":287}],286:[function(require,module,exports){
|
|
60475
60421
|
'use strict';
|
|
60476
60422
|
|
|
60477
60423
|
var BN = require('../../../../bn.js-4.11.8/lib/bn');
|
|
@@ -60591,7 +60537,7 @@ KeyPair.prototype.inspect = function inspect() {
|
|
|
60591
60537
|
' pub: ' + (this.pub && this.pub.inspect()) + ' >';
|
|
60592
60538
|
};
|
|
60593
60539
|
|
|
60594
|
-
},{"../../../../bn.js-4.11.8/lib/bn":
|
|
60540
|
+
},{"../../../../bn.js-4.11.8/lib/bn":259,"../utils":292}],287:[function(require,module,exports){
|
|
60595
60541
|
'use strict';
|
|
60596
60542
|
|
|
60597
60543
|
var BN = require('../../../../bn.js-4.11.8/lib/bn');
|
|
@@ -60759,7 +60705,7 @@ Signature.prototype.toDER = function toDER(enc) {
|
|
|
60759
60705
|
return utils.encode(res, enc);
|
|
60760
60706
|
};
|
|
60761
60707
|
|
|
60762
|
-
},{"../../../../bn.js-4.11.8/lib/bn":
|
|
60708
|
+
},{"../../../../bn.js-4.11.8/lib/bn":259,"../utils":292}],288:[function(require,module,exports){
|
|
60763
60709
|
'use strict';
|
|
60764
60710
|
|
|
60765
60711
|
var hash = require('../../../../hash.js-1.1.7/lib/hash');
|
|
@@ -60879,9 +60825,9 @@ EDDSA.prototype.isPoint = function isPoint(val) {
|
|
|
60879
60825
|
return val instanceof this.pointClass;
|
|
60880
60826
|
};
|
|
60881
60827
|
|
|
60882
|
-
},{"../../../../hash.js-1.1.7/lib/hash":
|
|
60828
|
+
},{"../../../../hash.js-1.1.7/lib/hash":296,"../curves":284,"../utils":292,"./key":289,"./signature":290}],289:[function(require,module,exports){
|
|
60883
60829
|
arguments[4][101][0].apply(exports,arguments)
|
|
60884
|
-
},{"../utils":
|
|
60830
|
+
},{"../utils":292,"dup":101}],290:[function(require,module,exports){
|
|
60885
60831
|
'use strict';
|
|
60886
60832
|
|
|
60887
60833
|
var BN = require('../../../../bn.js-4.11.8/lib/bn');
|
|
@@ -60948,7 +60894,7 @@ Signature.prototype.toHex = function toHex() {
|
|
|
60948
60894
|
|
|
60949
60895
|
module.exports = Signature;
|
|
60950
60896
|
|
|
60951
|
-
},{"../../../../bn.js-4.11.8/lib/bn":
|
|
60897
|
+
},{"../../../../bn.js-4.11.8/lib/bn":259,"../utils":292}],291:[function(require,module,exports){
|
|
60952
60898
|
module.exports = {
|
|
60953
60899
|
doubles: {
|
|
60954
60900
|
step: 4,
|
|
@@ -61730,7 +61676,7 @@ module.exports = {
|
|
|
61730
61676
|
}
|
|
61731
61677
|
};
|
|
61732
61678
|
|
|
61733
|
-
},{}],
|
|
61679
|
+
},{}],292:[function(require,module,exports){
|
|
61734
61680
|
'use strict';
|
|
61735
61681
|
|
|
61736
61682
|
var utils = exports;
|
|
@@ -61851,7 +61797,7 @@ function intFromLE(bytes) {
|
|
|
61851
61797
|
utils.intFromLE = intFromLE;
|
|
61852
61798
|
|
|
61853
61799
|
|
|
61854
|
-
},{"../../../bn.js-4.11.8/lib/bn":
|
|
61800
|
+
},{"../../../bn.js-4.11.8/lib/bn":259,"../../../minimalistic-assert-1.0.1/index":313,"../../../minimalistic-crypto-utils-1.0.1/lib/utils":314}],293:[function(require,module,exports){
|
|
61855
61801
|
module.exports={
|
|
61856
61802
|
"name": "elliptic",
|
|
61857
61803
|
"version": "6.5.3",
|
|
@@ -61907,7 +61853,7 @@ module.exports={
|
|
|
61907
61853
|
"minimalistic-crypto-utils": "^1.0.0"
|
|
61908
61854
|
}
|
|
61909
61855
|
}
|
|
61910
|
-
},{}],
|
|
61856
|
+
},{}],294:[function(require,module,exports){
|
|
61911
61857
|
(function (Buffer){(function (){
|
|
61912
61858
|
'use strict';
|
|
61913
61859
|
|
|
@@ -62085,7 +62031,7 @@ Object.defineProperties( hkdf, {
|
|
|
62085
62031
|
module.exports = hkdf;
|
|
62086
62032
|
|
|
62087
62033
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
62088
|
-
},{"buffer":67,"crypto":78}],
|
|
62034
|
+
},{"buffer":67,"crypto":78}],295:[function(require,module,exports){
|
|
62089
62035
|
'use strict'
|
|
62090
62036
|
var Buffer = require('../safe-buffer-5.2.0/index').Buffer
|
|
62091
62037
|
var Transform = require('stream').Transform
|
|
@@ -62182,9 +62128,9 @@ HashBase.prototype._digest = function () {
|
|
|
62182
62128
|
|
|
62183
62129
|
module.exports = HashBase
|
|
62184
62130
|
|
|
62185
|
-
},{"../inherits-2.0.4/inherits":
|
|
62131
|
+
},{"../inherits-2.0.4/inherits":309,"../safe-buffer-5.2.0/index":339,"stream":192}],296:[function(require,module,exports){
|
|
62186
62132
|
arguments[4][134][0].apply(exports,arguments)
|
|
62187
|
-
},{"./hash/common":
|
|
62133
|
+
},{"./hash/common":297,"./hash/hmac":298,"./hash/ripemd":299,"./hash/sha":300,"./hash/utils":307,"dup":134}],297:[function(require,module,exports){
|
|
62188
62134
|
'use strict';
|
|
62189
62135
|
|
|
62190
62136
|
var utils = require('./utils');
|
|
@@ -62278,7 +62224,7 @@ BlockHash.prototype._pad = function pad() {
|
|
|
62278
62224
|
return res;
|
|
62279
62225
|
};
|
|
62280
62226
|
|
|
62281
|
-
},{"../../../minimalistic-assert-1.0.1/index":
|
|
62227
|
+
},{"../../../minimalistic-assert-1.0.1/index":313,"./utils":307}],298:[function(require,module,exports){
|
|
62282
62228
|
'use strict';
|
|
62283
62229
|
|
|
62284
62230
|
var utils = require('./utils');
|
|
@@ -62327,15 +62273,15 @@ Hmac.prototype.digest = function digest(enc) {
|
|
|
62327
62273
|
return this.outer.digest(enc);
|
|
62328
62274
|
};
|
|
62329
62275
|
|
|
62330
|
-
},{"../../../minimalistic-assert-1.0.1/index":
|
|
62276
|
+
},{"../../../minimalistic-assert-1.0.1/index":313,"./utils":307}],299:[function(require,module,exports){
|
|
62331
62277
|
arguments[4][137][0].apply(exports,arguments)
|
|
62332
|
-
},{"./common":
|
|
62278
|
+
},{"./common":297,"./utils":307,"dup":137}],300:[function(require,module,exports){
|
|
62333
62279
|
arguments[4][138][0].apply(exports,arguments)
|
|
62334
|
-
},{"./sha/1":
|
|
62280
|
+
},{"./sha/1":301,"./sha/224":302,"./sha/256":303,"./sha/384":304,"./sha/512":305,"dup":138}],301:[function(require,module,exports){
|
|
62335
62281
|
arguments[4][139][0].apply(exports,arguments)
|
|
62336
|
-
},{"../common":
|
|
62282
|
+
},{"../common":297,"../utils":307,"./common":306,"dup":139}],302:[function(require,module,exports){
|
|
62337
62283
|
arguments[4][140][0].apply(exports,arguments)
|
|
62338
|
-
},{"../utils":
|
|
62284
|
+
},{"../utils":307,"./256":303,"dup":140}],303:[function(require,module,exports){
|
|
62339
62285
|
'use strict';
|
|
62340
62286
|
|
|
62341
62287
|
var utils = require('../utils');
|
|
@@ -62442,9 +62388,9 @@ SHA256.prototype._digest = function digest(enc) {
|
|
|
62442
62388
|
return utils.split32(this.h, 'big');
|
|
62443
62389
|
};
|
|
62444
62390
|
|
|
62445
|
-
},{"../../../../minimalistic-assert-1.0.1/index":
|
|
62391
|
+
},{"../../../../minimalistic-assert-1.0.1/index":313,"../common":297,"../utils":307,"./common":306}],304:[function(require,module,exports){
|
|
62446
62392
|
arguments[4][142][0].apply(exports,arguments)
|
|
62447
|
-
},{"../utils":
|
|
62393
|
+
},{"../utils":307,"./512":305,"dup":142}],305:[function(require,module,exports){
|
|
62448
62394
|
'use strict';
|
|
62449
62395
|
|
|
62450
62396
|
var utils = require('../utils');
|
|
@@ -62776,9 +62722,9 @@ function g1_512_lo(xh, xl) {
|
|
|
62776
62722
|
return r;
|
|
62777
62723
|
}
|
|
62778
62724
|
|
|
62779
|
-
},{"../../../../minimalistic-assert-1.0.1/index":
|
|
62725
|
+
},{"../../../../minimalistic-assert-1.0.1/index":313,"../common":297,"../utils":307}],306:[function(require,module,exports){
|
|
62780
62726
|
arguments[4][144][0].apply(exports,arguments)
|
|
62781
|
-
},{"../utils":
|
|
62727
|
+
},{"../utils":307,"dup":144}],307:[function(require,module,exports){
|
|
62782
62728
|
'use strict';
|
|
62783
62729
|
|
|
62784
62730
|
var assert = require('../../../minimalistic-assert-1.0.1/index');
|
|
@@ -63058,7 +63004,7 @@ function shr64_lo(ah, al, num) {
|
|
|
63058
63004
|
}
|
|
63059
63005
|
exports.shr64_lo = shr64_lo;
|
|
63060
63006
|
|
|
63061
|
-
},{"../../../inherits-2.0.4/inherits":
|
|
63007
|
+
},{"../../../inherits-2.0.4/inherits":309,"../../../minimalistic-assert-1.0.1/index":313}],308:[function(require,module,exports){
|
|
63062
63008
|
'use strict';
|
|
63063
63009
|
|
|
63064
63010
|
var hash = require('../../hash.js-1.1.7/lib/hash');
|
|
@@ -63173,7 +63119,7 @@ HmacDRBG.prototype.generate = function generate(len, enc, add, addEnc) {
|
|
|
63173
63119
|
return utils.encode(res, enc);
|
|
63174
63120
|
};
|
|
63175
63121
|
|
|
63176
|
-
},{"../../hash.js-1.1.7/lib/hash":
|
|
63122
|
+
},{"../../hash.js-1.1.7/lib/hash":296,"../../minimalistic-assert-1.0.1/index":313,"../../minimalistic-crypto-utils-1.0.1/lib/utils":314}],309:[function(require,module,exports){
|
|
63177
63123
|
try {
|
|
63178
63124
|
var util = require('util');
|
|
63179
63125
|
/* istanbul ignore next */
|
|
@@ -63184,9 +63130,9 @@ try {
|
|
|
63184
63130
|
module.exports = require('./inherits_browser.js');
|
|
63185
63131
|
}
|
|
63186
63132
|
|
|
63187
|
-
},{"./inherits_browser.js":
|
|
63133
|
+
},{"./inherits_browser.js":310,"util":211}],310:[function(require,module,exports){
|
|
63188
63134
|
arguments[4][148][0].apply(exports,arguments)
|
|
63189
|
-
},{"dup":148}],
|
|
63135
|
+
},{"dup":148}],311:[function(require,module,exports){
|
|
63190
63136
|
/*!
|
|
63191
63137
|
* Determine if an object is a Buffer
|
|
63192
63138
|
*
|
|
@@ -63199,7 +63145,7 @@ module.exports = function isBuffer (obj) {
|
|
|
63199
63145
|
typeof obj.constructor.isBuffer === 'function' && obj.constructor.isBuffer(obj)
|
|
63200
63146
|
}
|
|
63201
63147
|
|
|
63202
|
-
},{}],
|
|
63148
|
+
},{}],312:[function(require,module,exports){
|
|
63203
63149
|
'use strict'
|
|
63204
63150
|
var inherits = require('../inherits-2.0.4/inherits')
|
|
63205
63151
|
var HashBase = require('../hash-base-3.0.4/index')
|
|
@@ -63347,11 +63293,11 @@ function fnI (a, b, c, d, m, k, s) {
|
|
|
63347
63293
|
|
|
63348
63294
|
module.exports = MD5
|
|
63349
63295
|
|
|
63350
|
-
},{"../hash-base-3.0.4/index":
|
|
63296
|
+
},{"../hash-base-3.0.4/index":295,"../inherits-2.0.4/inherits":309,"../safe-buffer-5.2.0/index":339}],313:[function(require,module,exports){
|
|
63351
63297
|
arguments[4][157][0].apply(exports,arguments)
|
|
63352
|
-
},{"dup":157}],
|
|
63298
|
+
},{"dup":157}],314:[function(require,module,exports){
|
|
63353
63299
|
arguments[4][158][0].apply(exports,arguments)
|
|
63354
|
-
},{"dup":158}],
|
|
63300
|
+
},{"dup":158}],315:[function(require,module,exports){
|
|
63355
63301
|
// Top level file is just a mixin of submodules & constants
|
|
63356
63302
|
'use strict'
|
|
63357
63303
|
|
|
@@ -63371,7 +63317,7 @@ module.exports.inflateRaw = inflateRaw
|
|
|
63371
63317
|
module.exports.ungzip = ungzip
|
|
63372
63318
|
module.exports.constants = constants
|
|
63373
63319
|
|
|
63374
|
-
},{"./lib/deflate":
|
|
63320
|
+
},{"./lib/deflate":316,"./lib/inflate":317,"./lib/zlib/constants":321}],316:[function(require,module,exports){
|
|
63375
63321
|
'use strict'
|
|
63376
63322
|
|
|
63377
63323
|
const zlib_deflate = require('./zlib/deflate')
|
|
@@ -63746,7 +63692,7 @@ module.exports.deflateRaw = deflateRaw
|
|
|
63746
63692
|
module.exports.gzip = gzip
|
|
63747
63693
|
module.exports.constants = require('./zlib/constants')
|
|
63748
63694
|
|
|
63749
|
-
},{"./utils/common":
|
|
63695
|
+
},{"./utils/common":318,"./utils/strings":319,"./zlib/constants":321,"./zlib/deflate":323,"./zlib/messages":328,"./zlib/zstream":330}],317:[function(require,module,exports){
|
|
63750
63696
|
'use strict'
|
|
63751
63697
|
|
|
63752
63698
|
const zlib_inflate = require('./zlib/inflate')
|
|
@@ -64150,7 +64096,7 @@ module.exports.inflateRaw = inflateRaw
|
|
|
64150
64096
|
module.exports.ungzip = inflate
|
|
64151
64097
|
module.exports.constants = require('./zlib/constants')
|
|
64152
64098
|
|
|
64153
|
-
},{"./utils/common":
|
|
64099
|
+
},{"./utils/common":318,"./utils/strings":319,"./zlib/constants":321,"./zlib/gzheader":324,"./zlib/inflate":326,"./zlib/messages":328,"./zlib/zstream":330}],318:[function(require,module,exports){
|
|
64154
64100
|
'use strict'
|
|
64155
64101
|
|
|
64156
64102
|
const _has = (obj, key) => {
|
|
@@ -64200,7 +64146,7 @@ module.exports.flattenChunks = (chunks) => {
|
|
|
64200
64146
|
return result
|
|
64201
64147
|
}
|
|
64202
64148
|
|
|
64203
|
-
},{}],
|
|
64149
|
+
},{}],319:[function(require,module,exports){
|
|
64204
64150
|
// String encode/decode helpers
|
|
64205
64151
|
'use strict'
|
|
64206
64152
|
|
|
@@ -64389,7 +64335,7 @@ module.exports.utf8border = (buf, max) => {
|
|
|
64389
64335
|
return pos + _utf8len[buf[pos]] > max ? pos : max
|
|
64390
64336
|
}
|
|
64391
64337
|
|
|
64392
|
-
},{}],
|
|
64338
|
+
},{}],320:[function(require,module,exports){
|
|
64393
64339
|
'use strict'
|
|
64394
64340
|
|
|
64395
64341
|
// Note: adler32 takes 12% for level 0 and 2% for level 6.
|
|
@@ -64441,7 +64387,7 @@ const adler32 = (adler, buf, len, pos) => {
|
|
|
64441
64387
|
|
|
64442
64388
|
module.exports = adler32
|
|
64443
64389
|
|
|
64444
|
-
},{}],
|
|
64390
|
+
},{}],321:[function(require,module,exports){
|
|
64445
64391
|
'use strict'
|
|
64446
64392
|
|
|
64447
64393
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -64509,7 +64455,7 @@ module.exports = {
|
|
|
64509
64455
|
//Z_NULL: null // Use -1 or null inline, depending on var type
|
|
64510
64456
|
}
|
|
64511
64457
|
|
|
64512
|
-
},{}],
|
|
64458
|
+
},{}],322:[function(require,module,exports){
|
|
64513
64459
|
'use strict'
|
|
64514
64460
|
|
|
64515
64461
|
// Note: we can't get significant speed boost here.
|
|
@@ -64569,7 +64515,7 @@ const crc32 = (crc, buf, len, pos) => {
|
|
|
64569
64515
|
|
|
64570
64516
|
module.exports = crc32
|
|
64571
64517
|
|
|
64572
|
-
},{}],
|
|
64518
|
+
},{}],323:[function(require,module,exports){
|
|
64573
64519
|
'use strict'
|
|
64574
64520
|
|
|
64575
64521
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -66420,7 +66366,7 @@ module.exports.deflatePrime = deflatePrime;
|
|
|
66420
66366
|
module.exports.deflateTune = deflateTune;
|
|
66421
66367
|
*/
|
|
66422
66368
|
|
|
66423
|
-
},{"./adler32":
|
|
66369
|
+
},{"./adler32":320,"./constants":321,"./crc32":322,"./messages":328,"./trees":329}],324:[function(require,module,exports){
|
|
66424
66370
|
'use strict'
|
|
66425
66371
|
|
|
66426
66372
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -66480,7 +66426,7 @@ function GZheader() {
|
|
|
66480
66426
|
|
|
66481
66427
|
module.exports = GZheader
|
|
66482
66428
|
|
|
66483
|
-
},{}],
|
|
66429
|
+
},{}],325:[function(require,module,exports){
|
|
66484
66430
|
'use strict'
|
|
66485
66431
|
|
|
66486
66432
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -66829,7 +66775,7 @@ module.exports = function inflate_fast(strm, start) {
|
|
|
66829
66775
|
return
|
|
66830
66776
|
}
|
|
66831
66777
|
|
|
66832
|
-
},{}],
|
|
66778
|
+
},{}],326:[function(require,module,exports){
|
|
66833
66779
|
'use strict'
|
|
66834
66780
|
|
|
66835
66781
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -68456,7 +68402,7 @@ module.exports.inflateSyncPoint = inflateSyncPoint;
|
|
|
68456
68402
|
module.exports.inflateUndermine = inflateUndermine;
|
|
68457
68403
|
*/
|
|
68458
68404
|
|
|
68459
|
-
},{"./adler32":
|
|
68405
|
+
},{"./adler32":320,"./constants":321,"./crc32":322,"./inffast":325,"./inftrees":327}],327:[function(require,module,exports){
|
|
68460
68406
|
'use strict'
|
|
68461
68407
|
|
|
68462
68408
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -68920,7 +68866,7 @@ const inflate_table = (type, lens, lens_index, codes, table, table_index, work,
|
|
|
68920
68866
|
|
|
68921
68867
|
module.exports = inflate_table
|
|
68922
68868
|
|
|
68923
|
-
},{}],
|
|
68869
|
+
},{}],328:[function(require,module,exports){
|
|
68924
68870
|
'use strict'
|
|
68925
68871
|
|
|
68926
68872
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -68954,7 +68900,7 @@ module.exports = {
|
|
|
68954
68900
|
'-6': 'incompatible version' /* Z_VERSION_ERROR (-6) */
|
|
68955
68901
|
}
|
|
68956
68902
|
|
|
68957
|
-
},{}],
|
|
68903
|
+
},{}],329:[function(require,module,exports){
|
|
68958
68904
|
'use strict'
|
|
68959
68905
|
|
|
68960
68906
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -70148,7 +70094,7 @@ module.exports._tr_flush_block = _tr_flush_block
|
|
|
70148
70094
|
module.exports._tr_tally = _tr_tally
|
|
70149
70095
|
module.exports._tr_align = _tr_align
|
|
70150
70096
|
|
|
70151
|
-
},{}],
|
|
70097
|
+
},{}],330:[function(require,module,exports){
|
|
70152
70098
|
'use strict'
|
|
70153
70099
|
|
|
70154
70100
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -70197,7 +70143,7 @@ function ZStream() {
|
|
|
70197
70143
|
|
|
70198
70144
|
module.exports = ZStream
|
|
70199
70145
|
|
|
70200
|
-
},{}],
|
|
70146
|
+
},{}],331:[function(require,module,exports){
|
|
70201
70147
|
var checkParameters = require('./lib/precondition')
|
|
70202
70148
|
var native = require('crypto')
|
|
70203
70149
|
|
|
@@ -70230,7 +70176,7 @@ if (!native.pbkdf2Sync || native.pbkdf2Sync.toString().indexOf('keylen, digest')
|
|
|
70230
70176
|
exports.pbkdf2 = nativePBKDF2
|
|
70231
70177
|
}
|
|
70232
70178
|
|
|
70233
|
-
},{"./lib/async":
|
|
70179
|
+
},{"./lib/async":332,"./lib/precondition":334,"./lib/sync":335,"crypto":78}],332:[function(require,module,exports){
|
|
70234
70180
|
(function (process,global){(function (){
|
|
70235
70181
|
var checkParameters = require('./precondition')
|
|
70236
70182
|
var defaultEncoding = require('./default-encoding')
|
|
@@ -70334,7 +70280,7 @@ module.exports = function (password, salt, iterations, keylen, digest, callback)
|
|
|
70334
70280
|
}
|
|
70335
70281
|
|
|
70336
70282
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
70337
|
-
},{"../../safe-buffer-5.2.0/index":
|
|
70283
|
+
},{"../../safe-buffer-5.2.0/index":339,"./default-encoding":333,"./precondition":334,"./sync":335,"_process":171}],333:[function(require,module,exports){
|
|
70338
70284
|
(function (process){(function (){
|
|
70339
70285
|
var defaultEncoding
|
|
70340
70286
|
/* istanbul ignore next */
|
|
@@ -70348,7 +70294,7 @@ if (process.browser) {
|
|
|
70348
70294
|
module.exports = defaultEncoding
|
|
70349
70295
|
|
|
70350
70296
|
}).call(this)}).call(this,require('_process'))
|
|
70351
|
-
},{"_process":171}],
|
|
70297
|
+
},{"_process":171}],334:[function(require,module,exports){
|
|
70352
70298
|
(function (Buffer){(function (){
|
|
70353
70299
|
var MAX_ALLOC = Math.pow(2, 30) - 1 // default in iojs
|
|
70354
70300
|
|
|
@@ -70379,8 +70325,8 @@ module.exports = function (password, salt, iterations, keylen) {
|
|
|
70379
70325
|
}
|
|
70380
70326
|
}
|
|
70381
70327
|
|
|
70382
|
-
}).call(this)}).call(this,{"isBuffer":require("../../../../../../../node_modules/is-buffer/index.js")})
|
|
70383
|
-
},{"../../../../../../../node_modules/is-buffer/index.js":
|
|
70328
|
+
}).call(this)}).call(this,{"isBuffer":require("../../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js")})
|
|
70329
|
+
},{"../../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js":149}],335:[function(require,module,exports){
|
|
70384
70330
|
var sizes = {
|
|
70385
70331
|
md5: 16,
|
|
70386
70332
|
sha1: 20,
|
|
@@ -70433,7 +70379,7 @@ function pbkdf2 (password, salt, iterations, keylen, digest) {
|
|
|
70433
70379
|
|
|
70434
70380
|
module.exports = pbkdf2
|
|
70435
70381
|
|
|
70436
|
-
},{"../../create-hmac-1.1.4/browser":
|
|
70382
|
+
},{"../../create-hmac-1.1.4/browser":270,"../../safe-buffer-5.2.0/index":339,"../lib/default-encoding":333,"../lib/precondition":334}],336:[function(require,module,exports){
|
|
70437
70383
|
(function (process,global){(function (){
|
|
70438
70384
|
'use strict'
|
|
70439
70385
|
|
|
@@ -70487,7 +70433,7 @@ function randomBytes (size, cb) {
|
|
|
70487
70433
|
}
|
|
70488
70434
|
|
|
70489
70435
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
70490
|
-
},{"../safe-buffer-5.2.0/index":
|
|
70436
|
+
},{"../safe-buffer-5.2.0/index":339,"_process":171}],337:[function(require,module,exports){
|
|
70491
70437
|
'use strict'
|
|
70492
70438
|
var Buffer = require('buffer').Buffer
|
|
70493
70439
|
var inherits = require('../inherits-2.0.4/inherits')
|
|
@@ -70652,7 +70598,7 @@ function fn5 (a, b, c, d, e, m, k, s) {
|
|
|
70652
70598
|
|
|
70653
70599
|
module.exports = RIPEMD160
|
|
70654
70600
|
|
|
70655
|
-
},{"../hash-base-3.0.4/index":
|
|
70601
|
+
},{"../hash-base-3.0.4/index":295,"../inherits-2.0.4/inherits":309,"buffer":67}],338:[function(require,module,exports){
|
|
70656
70602
|
const assert = require('assert')
|
|
70657
70603
|
const Buffer = require('../safe-buffer-5.2.0/index').Buffer
|
|
70658
70604
|
/**
|
|
@@ -70884,7 +70830,7 @@ function toBuffer (v) {
|
|
|
70884
70830
|
return v
|
|
70885
70831
|
}
|
|
70886
70832
|
|
|
70887
|
-
},{"../safe-buffer-5.2.0/index":
|
|
70833
|
+
},{"../safe-buffer-5.2.0/index":339,"assert":16}],339:[function(require,module,exports){
|
|
70888
70834
|
/* eslint-disable node/no-deprecated-api */
|
|
70889
70835
|
var buffer = require('buffer')
|
|
70890
70836
|
var Buffer = buffer.Buffer
|
|
@@ -70950,11 +70896,11 @@ SafeBuffer.allocUnsafeSlow = function (size) {
|
|
|
70950
70896
|
return buffer.SlowBuffer(size)
|
|
70951
70897
|
}
|
|
70952
70898
|
|
|
70953
|
-
},{"buffer":67}],
|
|
70899
|
+
},{"buffer":67}],340:[function(require,module,exports){
|
|
70954
70900
|
'use strict'
|
|
70955
70901
|
module.exports = require('./lib')(require('./lib/elliptic'))
|
|
70956
70902
|
|
|
70957
|
-
},{"./lib":
|
|
70903
|
+
},{"./lib":344,"./lib/elliptic":343}],341:[function(require,module,exports){
|
|
70958
70904
|
(function (Buffer){(function (){
|
|
70959
70905
|
'use strict'
|
|
70960
70906
|
var toString = Object.prototype.toString
|
|
@@ -71001,8 +70947,8 @@ exports.isNumberInInterval = function (number, x, y, message) {
|
|
|
71001
70947
|
if (number <= x || number >= y) throw RangeError(message)
|
|
71002
70948
|
}
|
|
71003
70949
|
|
|
71004
|
-
}).call(this)}).call(this,{"isBuffer":require("../../../../../../../node_modules/is-buffer/index.js")})
|
|
71005
|
-
},{"../../../../../../../node_modules/is-buffer/index.js":
|
|
70950
|
+
}).call(this)}).call(this,{"isBuffer":require("../../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js")})
|
|
70951
|
+
},{"../../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js":149}],342:[function(require,module,exports){
|
|
71006
70952
|
'use strict'
|
|
71007
70953
|
var Buffer = require('../../safe-buffer-5.2.0/index').Buffer
|
|
71008
70954
|
var bip66 = require('../../bip66-1.1.5/index')
|
|
@@ -71197,7 +71143,7 @@ exports.signatureImportLax = function (sig) {
|
|
|
71197
71143
|
return { r: r, s: s }
|
|
71198
71144
|
}
|
|
71199
71145
|
|
|
71200
|
-
},{"../../bip66-1.1.5/index":
|
|
71146
|
+
},{"../../bip66-1.1.5/index":258,"../../safe-buffer-5.2.0/index":339}],343:[function(require,module,exports){
|
|
71201
71147
|
'use strict'
|
|
71202
71148
|
var Buffer = require('../../../safe-buffer-5.2.0/index').Buffer
|
|
71203
71149
|
var createHash = require('../../../create-hash-1.2.0/browser')
|
|
@@ -71462,7 +71408,7 @@ exports.ecdhUnsafe = function (publicKey, privateKey, compressed) {
|
|
|
71462
71408
|
return Buffer.from(pair.pub.mul(scalar).encode(true, compressed))
|
|
71463
71409
|
}
|
|
71464
71410
|
|
|
71465
|
-
},{"../../../bn.js-4.11.8/lib/bn":
|
|
71411
|
+
},{"../../../bn.js-4.11.8/lib/bn":259,"../../../create-hash-1.2.0/browser":267,"../../../elliptic-6.5.3/lib/elliptic":278,"../../../safe-buffer-5.2.0/index":339,"../messages.json":345}],344:[function(require,module,exports){
|
|
71466
71412
|
'use strict'
|
|
71467
71413
|
var assert = require('./assert')
|
|
71468
71414
|
var der = require('./der')
|
|
@@ -71709,7 +71655,7 @@ module.exports = function (secp256k1) {
|
|
|
71709
71655
|
}
|
|
71710
71656
|
}
|
|
71711
71657
|
|
|
71712
|
-
},{"./assert":
|
|
71658
|
+
},{"./assert":341,"./der":342,"./messages.json":345}],345:[function(require,module,exports){
|
|
71713
71659
|
module.exports={
|
|
71714
71660
|
"COMPRESSED_TYPE_INVALID": "compressed should be a boolean",
|
|
71715
71661
|
"EC_PRIVATE_KEY_TYPE_INVALID": "private key should be a Buffer",
|
|
@@ -71747,10 +71693,10 @@ module.exports={
|
|
|
71747
71693
|
"TWEAK_TYPE_INVALID": "tweak should be a Buffer",
|
|
71748
71694
|
"TWEAK_LENGTH_INVALID": "tweak length is invalid"
|
|
71749
71695
|
}
|
|
71750
|
-
},{}],
|
|
71696
|
+
},{}],346:[function(require,module,exports){
|
|
71751
71697
|
module.exports = require('./lib')(require('./lib/elliptic'))
|
|
71752
71698
|
|
|
71753
|
-
},{"./lib":
|
|
71699
|
+
},{"./lib":348,"./lib/elliptic":347}],347:[function(require,module,exports){
|
|
71754
71700
|
const EC = require('../../elliptic-6.5.3/lib/elliptic').ec
|
|
71755
71701
|
|
|
71756
71702
|
const ec = new EC('secp256k1')
|
|
@@ -72154,7 +72100,7 @@ module.exports = {
|
|
|
72154
72100
|
}
|
|
72155
72101
|
}
|
|
72156
72102
|
|
|
72157
|
-
},{"../../elliptic-6.5.3/lib/elliptic":
|
|
72103
|
+
},{"../../elliptic-6.5.3/lib/elliptic":278}],348:[function(require,module,exports){
|
|
72158
72104
|
const errors = {
|
|
72159
72105
|
IMPOSSIBLE_CASE: 'Impossible case. Please create issue.',
|
|
72160
72106
|
TWEAK_ADD:
|
|
@@ -72492,7 +72438,7 @@ module.exports = (secp256k1) => {
|
|
|
72492
72438
|
}
|
|
72493
72439
|
}
|
|
72494
72440
|
|
|
72495
|
-
},{}],
|
|
72441
|
+
},{}],349:[function(require,module,exports){
|
|
72496
72442
|
var Buffer = require('../safe-buffer-5.2.0/index').Buffer
|
|
72497
72443
|
|
|
72498
72444
|
// prototype class for hash functions
|
|
@@ -72575,7 +72521,7 @@ Hash.prototype._update = function () {
|
|
|
72575
72521
|
|
|
72576
72522
|
module.exports = Hash
|
|
72577
72523
|
|
|
72578
|
-
},{"../safe-buffer-5.2.0/index":
|
|
72524
|
+
},{"../safe-buffer-5.2.0/index":339}],350:[function(require,module,exports){
|
|
72579
72525
|
'use strict'
|
|
72580
72526
|
var exports = (module.exports = function SHA(algorithm) {
|
|
72581
72527
|
algorithm = algorithm.toLowerCase()
|
|
@@ -72593,7 +72539,7 @@ exports.sha256 = require('./sha256')
|
|
|
72593
72539
|
exports.sha384 = require('./sha384')
|
|
72594
72540
|
exports.sha512 = require('./sha512')
|
|
72595
72541
|
|
|
72596
|
-
},{"./sha":
|
|
72542
|
+
},{"./sha":351,"./sha1":352,"./sha224":353,"./sha256":354,"./sha384":355,"./sha512":356}],351:[function(require,module,exports){
|
|
72597
72543
|
/*
|
|
72598
72544
|
* A JavaScript implementation of the Secure Hash Algorithm, SHA-0, as defined
|
|
72599
72545
|
* in FIPS PUB 180-1
|
|
@@ -72689,7 +72635,7 @@ Sha.prototype._hash = function () {
|
|
|
72689
72635
|
|
|
72690
72636
|
module.exports = Sha
|
|
72691
72637
|
|
|
72692
|
-
},{"../inherits-2.0.4/inherits":
|
|
72638
|
+
},{"../inherits-2.0.4/inherits":309,"../safe-buffer-5.2.0/index":339,"./hash":349}],352:[function(require,module,exports){
|
|
72693
72639
|
/*
|
|
72694
72640
|
* A JavaScript implementation of the Secure Hash Algorithm, SHA-1, as defined
|
|
72695
72641
|
* in FIPS PUB 180-1
|
|
@@ -72790,7 +72736,7 @@ Sha1.prototype._hash = function () {
|
|
|
72790
72736
|
|
|
72791
72737
|
module.exports = Sha1
|
|
72792
72738
|
|
|
72793
|
-
},{"../inherits-2.0.4/inherits":
|
|
72739
|
+
},{"../inherits-2.0.4/inherits":309,"../safe-buffer-5.2.0/index":339,"./hash":349}],353:[function(require,module,exports){
|
|
72794
72740
|
/**
|
|
72795
72741
|
* A JavaScript implementation of the Secure Hash Algorithm, SHA-256, as defined
|
|
72796
72742
|
* in FIPS 180-2
|
|
@@ -72845,7 +72791,7 @@ Sha224.prototype._hash = function () {
|
|
|
72845
72791
|
|
|
72846
72792
|
module.exports = Sha224
|
|
72847
72793
|
|
|
72848
|
-
},{"../inherits-2.0.4/inherits":
|
|
72794
|
+
},{"../inherits-2.0.4/inherits":309,"../safe-buffer-5.2.0/index":339,"./hash":349,"./sha256":354}],354:[function(require,module,exports){
|
|
72849
72795
|
/**
|
|
72850
72796
|
* A JavaScript implementation of the Secure Hash Algorithm, SHA-256, as defined
|
|
72851
72797
|
* in FIPS 180-2
|
|
@@ -72982,7 +72928,7 @@ Sha256.prototype._hash = function () {
|
|
|
72982
72928
|
|
|
72983
72929
|
module.exports = Sha256
|
|
72984
72930
|
|
|
72985
|
-
},{"../inherits-2.0.4/inherits":
|
|
72931
|
+
},{"../inherits-2.0.4/inherits":309,"../safe-buffer-5.2.0/index":339,"./hash":349}],355:[function(require,module,exports){
|
|
72986
72932
|
var inherits = require('../inherits-2.0.4/inherits')
|
|
72987
72933
|
var SHA512 = require('./sha512')
|
|
72988
72934
|
var Hash = require('./hash')
|
|
@@ -73041,7 +72987,7 @@ Sha384.prototype._hash = function () {
|
|
|
73041
72987
|
|
|
73042
72988
|
module.exports = Sha384
|
|
73043
72989
|
|
|
73044
|
-
},{"../inherits-2.0.4/inherits":
|
|
72990
|
+
},{"../inherits-2.0.4/inherits":309,"../safe-buffer-5.2.0/index":339,"./hash":349,"./sha512":356}],356:[function(require,module,exports){
|
|
73045
72991
|
var inherits = require('../inherits-2.0.4/inherits')
|
|
73046
72992
|
var Hash = require('./hash')
|
|
73047
72993
|
var Buffer = require('../safe-buffer-5.2.0/index').Buffer
|
|
@@ -73303,7 +73249,7 @@ Sha512.prototype._hash = function () {
|
|
|
73303
73249
|
|
|
73304
73250
|
module.exports = Sha512
|
|
73305
73251
|
|
|
73306
|
-
},{"../inherits-2.0.4/inherits":
|
|
73252
|
+
},{"../inherits-2.0.4/inherits":309,"../safe-buffer-5.2.0/index":339,"./hash":349}],357:[function(require,module,exports){
|
|
73307
73253
|
(function (Buffer){(function (){
|
|
73308
73254
|
const BN = require('../bn.js-4.11.8/lib/bn')
|
|
73309
73255
|
const EC = require('../elliptic-6.5.3/lib/elliptic').ec
|
|
@@ -73583,7 +73529,7 @@ module.exports = {
|
|
|
73583
73529
|
}
|
|
73584
73530
|
|
|
73585
73531
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
73586
|
-
},{"../bn.js-4.11.8/lib/bn":
|
|
73532
|
+
},{"../bn.js-4.11.8/lib/bn":259,"../elliptic-6.5.3/lib/elliptic":278,"./rfc6979":358,"buffer":67}],358:[function(require,module,exports){
|
|
73587
73533
|
(function (Buffer){(function (){
|
|
73588
73534
|
const createHmac = require('../create-hmac-1.1.7/browser')
|
|
73589
73535
|
|
|
@@ -73649,7 +73595,7 @@ function deterministicGenerateK (hash, x, checkSig, isPrivate, extraEntropy) {
|
|
|
73649
73595
|
module.exports = deterministicGenerateK
|
|
73650
73596
|
|
|
73651
73597
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
73652
|
-
},{"../create-hmac-1.1.7/browser":
|
|
73598
|
+
},{"../create-hmac-1.1.7/browser":271,"buffer":67}],359:[function(require,module,exports){
|
|
73653
73599
|
var native = require('./native')
|
|
73654
73600
|
|
|
73655
73601
|
function getTypeName (fn) {
|
|
@@ -73761,7 +73707,7 @@ module.exports = {
|
|
|
73761
73707
|
getValueTypeName: getValueTypeName
|
|
73762
73708
|
}
|
|
73763
73709
|
|
|
73764
|
-
},{"./native":
|
|
73710
|
+
},{"./native":362}],360:[function(require,module,exports){
|
|
73765
73711
|
(function (Buffer){(function (){
|
|
73766
73712
|
var NATIVE = require('./native')
|
|
73767
73713
|
var ERRORS = require('./errors')
|
|
@@ -73855,8 +73801,8 @@ for (var typeName in types) {
|
|
|
73855
73801
|
|
|
73856
73802
|
module.exports = types
|
|
73857
73803
|
|
|
73858
|
-
}).call(this)}).call(this,{"isBuffer":require("../../../../../../node_modules/is-buffer/index.js")})
|
|
73859
|
-
},{"../../../../../../node_modules/is-buffer/index.js":
|
|
73804
|
+
}).call(this)}).call(this,{"isBuffer":require("../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js")})
|
|
73805
|
+
},{"../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js":149,"./errors":359,"./native":362}],361:[function(require,module,exports){
|
|
73860
73806
|
var ERRORS = require('./errors')
|
|
73861
73807
|
var NATIVE = require('./native')
|
|
73862
73808
|
|
|
@@ -74118,7 +74064,7 @@ typeforce.TfPropertyTypeError = TfPropertyTypeError
|
|
|
74118
74064
|
|
|
74119
74065
|
module.exports = typeforce
|
|
74120
74066
|
|
|
74121
|
-
},{"./errors":
|
|
74067
|
+
},{"./errors":359,"./extra":360,"./native":362}],362:[function(require,module,exports){
|
|
74122
74068
|
var types = {
|
|
74123
74069
|
Array: function (value) { return value !== null && value !== undefined && value.constructor === Array },
|
|
74124
74070
|
Boolean: function (value) { return typeof value === 'boolean' },
|
|
@@ -74141,7 +74087,7 @@ for (var typeName in types) {
|
|
|
74141
74087
|
|
|
74142
74088
|
module.exports = types
|
|
74143
74089
|
|
|
74144
|
-
},{}],
|
|
74090
|
+
},{}],363:[function(require,module,exports){
|
|
74145
74091
|
(function (root) {
|
|
74146
74092
|
"use strict";
|
|
74147
74093
|
|
|
@@ -74595,7 +74541,7 @@ UChar.udata={
|
|
|
74595
74541
|
}
|
|
74596
74542
|
}(this));
|
|
74597
74543
|
|
|
74598
|
-
},{}],
|
|
74544
|
+
},{}],364:[function(require,module,exports){
|
|
74599
74545
|
/*!
|
|
74600
74546
|
* validate.js 0.13.1
|
|
74601
74547
|
*
|
|
@@ -75850,7 +75796,7 @@ UChar.udata={
|
|
|
75850
75796
|
typeof module !== 'undefined' ? /* istanbul ignore next */ module : null,
|
|
75851
75797
|
typeof define !== 'undefined' ? /* istanbul ignore next */ define : null);
|
|
75852
75798
|
|
|
75853
|
-
},{}],
|
|
75799
|
+
},{}],365:[function(require,module,exports){
|
|
75854
75800
|
(function (Buffer){(function (){
|
|
75855
75801
|
var bs58check = require('../bs58check-2.1.2/index')
|
|
75856
75802
|
|
|
@@ -75917,7 +75863,7 @@ module.exports = {
|
|
|
75917
75863
|
}
|
|
75918
75864
|
|
|
75919
75865
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
75920
|
-
},{"../bs58check-2.1.2/index":
|
|
75866
|
+
},{"../bs58check-2.1.2/index":263,"buffer":67}],366:[function(require,module,exports){
|
|
75921
75867
|
"use strict";
|
|
75922
75868
|
var __extends = (this && this.__extends) || (function () {
|
|
75923
75869
|
var extendStatics = function (d, b) {
|
|
@@ -75952,6 +75898,7 @@ var Domain;
|
|
|
75952
75898
|
Domain["TEZOSFA"] = "TEZOSFA";
|
|
75953
75899
|
Domain["UTILS"] = "UTILS";
|
|
75954
75900
|
Domain["ACTIONS"] = "ACTIONS";
|
|
75901
|
+
Domain["ICP"] = "ICP";
|
|
75955
75902
|
})(Domain = exports.Domain || (exports.Domain = {}));
|
|
75956
75903
|
var CoinlibError = /** @class */ (function (_super) {
|
|
75957
75904
|
__extends(CoinlibError, _super);
|
|
@@ -75979,7 +75926,7 @@ var CoinlibAssertionError = /** @class */ (function (_super) {
|
|
|
75979
75926
|
}(Error));
|
|
75980
75927
|
exports.CoinlibAssertionError = CoinlibAssertionError;
|
|
75981
75928
|
|
|
75982
|
-
},{}],
|
|
75929
|
+
},{}],367:[function(require,module,exports){
|
|
75983
75930
|
"use strict";
|
|
75984
75931
|
var __extends = (this && this.__extends) || (function () {
|
|
75985
75932
|
var extendStatics = function (d, b) {
|
|
@@ -76261,7 +76208,7 @@ var InvalidString = /** @class */ (function (_super) {
|
|
|
76261
76208
|
}(SerializerError));
|
|
76262
76209
|
exports.InvalidString = InvalidString;
|
|
76263
76210
|
|
|
76264
|
-
},{"./coinlib-error":
|
|
76211
|
+
},{"./coinlib-error":366}],368:[function(require,module,exports){
|
|
76265
76212
|
"use strict";
|
|
76266
76213
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
76267
76214
|
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;
|
|
@@ -76320,7 +76267,7 @@ var AirGapWallet_1 = require("./wallet/AirGapWallet");
|
|
|
76320
76267
|
Object.defineProperty(exports, "AirGapWallet", { enumerable: true, get: function () { return AirGapWallet_1.AirGapWallet; } });
|
|
76321
76268
|
Object.defineProperty(exports, "AirGapWalletStatus", { enumerable: true, get: function () { return AirGapWallet_1.AirGapWalletStatus; } });
|
|
76322
76269
|
|
|
76323
|
-
},{"./actions/Action":
|
|
76270
|
+
},{"./actions/Action":213,"./actions/LinkedAction":214,"./actions/RepeatableAction":215,"./actions/SimpleAction":216,"./errors":367,"./errors/coinlib-error":366,"./protocols/CryptoClient":370,"./protocols/ICoinSubProtocol":371,"./utils/Network":375,"./utils/ProtocolBlockExplorer":376,"./utils/ProtocolNetwork":377,"./utils/ProtocolSymbols":378,"./utils/assert":379,"./utils/buffer":380,"./utils/interfaces":382,"./wallet/AirGapCoinWallet":384,"./wallet/AirGapMarketWallet":385,"./wallet/AirGapNFTWallet":386,"./wallet/AirGapWallet":387}],369:[function(require,module,exports){
|
|
76324
76271
|
"use strict";
|
|
76325
76272
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
76326
76273
|
exports.AirGapTransactionWarningType = exports.AirGapTransactionStatus = exports.AirGapTransactionType = void 0;
|
|
@@ -76343,7 +76290,7 @@ var AirGapTransactionWarningType;
|
|
|
76343
76290
|
AirGapTransactionWarningType["ERROR"] = "error";
|
|
76344
76291
|
})(AirGapTransactionWarningType = exports.AirGapTransactionWarningType || (exports.AirGapTransactionWarningType = {}));
|
|
76345
76292
|
|
|
76346
|
-
},{}],
|
|
76293
|
+
},{}],370:[function(require,module,exports){
|
|
76347
76294
|
"use strict";
|
|
76348
76295
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
76349
76296
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -76428,7 +76375,7 @@ var CryptoClient = /** @class */ (function () {
|
|
|
76428
76375
|
}());
|
|
76429
76376
|
exports.CryptoClient = CryptoClient;
|
|
76430
76377
|
|
|
76431
|
-
},{"../errors":
|
|
76378
|
+
},{"../errors":367,"../errors/coinlib-error":366,"../utils/AES":374}],371:[function(require,module,exports){
|
|
76432
76379
|
"use strict";
|
|
76433
76380
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
76434
76381
|
exports.SubProtocolType = void 0;
|
|
@@ -76438,7 +76385,7 @@ var SubProtocolType;
|
|
|
76438
76385
|
SubProtocolType["TOKEN"] = "token";
|
|
76439
76386
|
})(SubProtocolType = exports.SubProtocolType || (exports.SubProtocolType = {}));
|
|
76440
76387
|
|
|
76441
|
-
},{}],
|
|
76388
|
+
},{}],372:[function(require,module,exports){
|
|
76442
76389
|
"use strict";
|
|
76443
76390
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
76444
76391
|
exports.NonExtendedProtocol = void 0;
|
|
@@ -76488,7 +76435,7 @@ var NonExtendedProtocol = /** @class */ (function () {
|
|
|
76488
76435
|
}());
|
|
76489
76436
|
exports.NonExtendedProtocol = NonExtendedProtocol;
|
|
76490
76437
|
|
|
76491
|
-
},{}],
|
|
76438
|
+
},{}],373:[function(require,module,exports){
|
|
76492
76439
|
(function (Buffer){(function (){
|
|
76493
76440
|
"use strict";
|
|
76494
76441
|
var __extends = (this && this.__extends) || (function () {
|
|
@@ -76570,7 +76517,7 @@ var Secp256k1CryptoClient = /** @class */ (function (_super) {
|
|
|
76570
76517
|
exports.Secp256k1CryptoClient = Secp256k1CryptoClient;
|
|
76571
76518
|
|
|
76572
76519
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
76573
|
-
},{"../dependencies/src/eciesjs-0.3.9/src/index":
|
|
76520
|
+
},{"../dependencies/src/eciesjs-0.3.9/src/index":273,"./CryptoClient":370,"buffer":67}],374:[function(require,module,exports){
|
|
76574
76521
|
(function (Buffer){(function (){
|
|
76575
76522
|
"use strict";
|
|
76576
76523
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -76738,7 +76685,7 @@ var AES = /** @class */ (function () {
|
|
|
76738
76685
|
exports.AES = AES;
|
|
76739
76686
|
|
|
76740
76687
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
76741
|
-
},{"../errors":
|
|
76688
|
+
},{"../errors":367,"../errors/coinlib-error":366,"./hex":381,"buffer":67,"crypto":78}],375:[function(require,module,exports){
|
|
76742
76689
|
"use strict";
|
|
76743
76690
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
76744
76691
|
exports.isNetworkEqual = void 0;
|
|
@@ -76747,7 +76694,7 @@ var isNetworkEqual = function (network1, network2) {
|
|
|
76747
76694
|
};
|
|
76748
76695
|
exports.isNetworkEqual = isNetworkEqual;
|
|
76749
76696
|
|
|
76750
|
-
},{}],
|
|
76697
|
+
},{}],376:[function(require,module,exports){
|
|
76751
76698
|
"use strict";
|
|
76752
76699
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
76753
76700
|
exports.ProtocolBlockExplorer = void 0;
|
|
@@ -76759,7 +76706,7 @@ var ProtocolBlockExplorer = /** @class */ (function () {
|
|
|
76759
76706
|
}());
|
|
76760
76707
|
exports.ProtocolBlockExplorer = ProtocolBlockExplorer;
|
|
76761
76708
|
|
|
76762
|
-
},{}],
|
|
76709
|
+
},{}],377:[function(require,module,exports){
|
|
76763
76710
|
"use strict";
|
|
76764
76711
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
76765
76712
|
exports.ProtocolNetwork = exports.NetworkType = void 0;
|
|
@@ -76795,7 +76742,7 @@ var ProtocolNetwork = /** @class */ (function () {
|
|
|
76795
76742
|
}());
|
|
76796
76743
|
exports.ProtocolNetwork = ProtocolNetwork;
|
|
76797
76744
|
|
|
76798
|
-
},{"../dependencies/src/create-hash-1.2.0/index":
|
|
76745
|
+
},{"../dependencies/src/create-hash-1.2.0/index":268}],378:[function(require,module,exports){
|
|
76799
76746
|
"use strict";
|
|
76800
76747
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
76801
76748
|
exports.isProtocolSymbol = exports.isSubProtocolSymbol = exports.isMainProtocolSymbol = exports.SubProtocolSymbols = exports.MainProtocolSymbols = void 0;
|
|
@@ -76816,6 +76763,7 @@ var MainProtocolSymbols;
|
|
|
76816
76763
|
MainProtocolSymbols["MOONBEAM"] = "moonbeam";
|
|
76817
76764
|
MainProtocolSymbols["ASTAR"] = "astar";
|
|
76818
76765
|
MainProtocolSymbols["SHIDEN"] = "shiden";
|
|
76766
|
+
MainProtocolSymbols["ICP"] = "icp";
|
|
76819
76767
|
})(MainProtocolSymbols = exports.MainProtocolSymbols || (exports.MainProtocolSymbols = {}));
|
|
76820
76768
|
var SubProtocolSymbols;
|
|
76821
76769
|
(function (SubProtocolSymbols) {
|
|
@@ -76854,7 +76802,7 @@ function isProtocolSymbol(identifier) {
|
|
|
76854
76802
|
}
|
|
76855
76803
|
exports.isProtocolSymbol = isProtocolSymbol;
|
|
76856
76804
|
|
|
76857
|
-
},{}],
|
|
76805
|
+
},{}],379:[function(require,module,exports){
|
|
76858
76806
|
"use strict";
|
|
76859
76807
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
76860
76808
|
exports.assertFields = exports.assertNever = void 0;
|
|
@@ -76875,7 +76823,7 @@ function assertFields(name, object) {
|
|
|
76875
76823
|
}
|
|
76876
76824
|
exports.assertFields = assertFields;
|
|
76877
76825
|
|
|
76878
|
-
},{"../errors":
|
|
76826
|
+
},{"../errors":367,"../errors/coinlib-error":366}],380:[function(require,module,exports){
|
|
76879
76827
|
(function (Buffer){(function (){
|
|
76880
76828
|
"use strict";
|
|
76881
76829
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -76886,7 +76834,7 @@ var bufferFrom = function (data, encoding) {
|
|
|
76886
76834
|
exports.bufferFrom = bufferFrom;
|
|
76887
76835
|
|
|
76888
76836
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
76889
|
-
},{"buffer":67}],
|
|
76837
|
+
},{"buffer":67}],381:[function(require,module,exports){
|
|
76890
76838
|
(function (Buffer){(function (){
|
|
76891
76839
|
"use strict";
|
|
76892
76840
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
@@ -77001,7 +76949,7 @@ function fillToTargetLength(hexString, bitLength) {
|
|
|
77001
76949
|
}
|
|
77002
76950
|
|
|
77003
76951
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
77004
|
-
},{"../dependencies/src/bignumber.js-9.0.0/bignumber":
|
|
76952
|
+
},{"../dependencies/src/bignumber.js-9.0.0/bignumber":245,"./padStart":383,"buffer":67}],382:[function(require,module,exports){
|
|
77005
76953
|
"use strict";
|
|
77006
76954
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
77007
76955
|
exports.hasConfigurableContract = exports.implementsInterface = void 0;
|
|
@@ -77020,7 +76968,7 @@ function hasConfigurableContract(object) {
|
|
|
77020
76968
|
}
|
|
77021
76969
|
exports.hasConfigurableContract = hasConfigurableContract;
|
|
77022
76970
|
|
|
77023
|
-
},{}],
|
|
76971
|
+
},{}],383:[function(require,module,exports){
|
|
77024
76972
|
"use strict";
|
|
77025
76973
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
77026
76974
|
exports.padStart = void 0;
|
|
@@ -77041,7 +76989,7 @@ function padStart(targetString, targetLength, padString) {
|
|
|
77041
76989
|
}
|
|
77042
76990
|
exports.padStart = padStart;
|
|
77043
76991
|
|
|
77044
|
-
},{}],
|
|
76992
|
+
},{}],384:[function(require,module,exports){
|
|
77045
76993
|
"use strict";
|
|
77046
76994
|
var __extends = (this && this.__extends) || (function () {
|
|
77047
76995
|
var extendStatics = function (d, b) {
|
|
@@ -77241,7 +77189,7 @@ var AirGapCoinWallet = /** @class */ (function (_super) {
|
|
|
77241
77189
|
}(AirGapMarketWallet_1.AirGapMarketWallet));
|
|
77242
77190
|
exports.AirGapCoinWallet = AirGapCoinWallet;
|
|
77243
77191
|
|
|
77244
|
-
},{"../dependencies/src/bignumber.js-9.0.0/bignumber":
|
|
77192
|
+
},{"../dependencies/src/bignumber.js-9.0.0/bignumber":245,"../utils/ProtocolNetwork":377,"../utils/ProtocolSymbols":378,"./AirGapMarketWallet":385}],385:[function(require,module,exports){
|
|
77245
77193
|
"use strict";
|
|
77246
77194
|
var __extends = (this && this.__extends) || (function () {
|
|
77247
77195
|
var extendStatics = function (d, b) {
|
|
@@ -77463,7 +77411,7 @@ var AirGapMarketWallet = /** @class */ (function (_super) {
|
|
|
77463
77411
|
}(AirGapWallet_1.AirGapWallet));
|
|
77464
77412
|
exports.AirGapMarketWallet = AirGapMarketWallet;
|
|
77465
77413
|
|
|
77466
|
-
},{"../dependencies/src/bignumber.js-9.0.0/bignumber":
|
|
77414
|
+
},{"../dependencies/src/bignumber.js-9.0.0/bignumber":245,"../utils/ProtocolSymbols":378,"./AirGapWallet":387}],386:[function(require,module,exports){
|
|
77467
77415
|
"use strict";
|
|
77468
77416
|
var __extends = (this && this.__extends) || (function () {
|
|
77469
77417
|
var extendStatics = function (d, b) {
|
|
@@ -77643,7 +77591,7 @@ var AirGapNFTWallet = /** @class */ (function (_super) {
|
|
|
77643
77591
|
}(AirGapMarketWallet_1.AirGapMarketWallet));
|
|
77644
77592
|
exports.AirGapNFTWallet = AirGapNFTWallet;
|
|
77645
77593
|
|
|
77646
|
-
},{"../dependencies/src/bignumber.js-9.0.0/bignumber":
|
|
77594
|
+
},{"../dependencies/src/bignumber.js-9.0.0/bignumber":245,"../utils/ProtocolNetwork":377,"./AirGapMarketWallet":385}],387:[function(require,module,exports){
|
|
77647
77595
|
"use strict";
|
|
77648
77596
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
77649
77597
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -77786,7 +77734,7 @@ var AirGapWallet = /** @class */ (function () {
|
|
|
77786
77734
|
}());
|
|
77787
77735
|
exports.AirGapWallet = AirGapWallet;
|
|
77788
77736
|
|
|
77789
|
-
},{"../errors":
|
|
77737
|
+
},{"../errors":367,"../errors/coinlib-error":366}],388:[function(require,module,exports){
|
|
77790
77738
|
"use strict";
|
|
77791
77739
|
module.exports = asPromise;
|
|
77792
77740
|
|
|
@@ -77840,7 +77788,7 @@ function asPromise(fn, ctx/*, varargs */) {
|
|
|
77840
77788
|
});
|
|
77841
77789
|
}
|
|
77842
77790
|
|
|
77843
|
-
},{}],
|
|
77791
|
+
},{}],389:[function(require,module,exports){
|
|
77844
77792
|
"use strict";
|
|
77845
77793
|
|
|
77846
77794
|
/**
|
|
@@ -77981,7 +77929,7 @@ base64.test = function test(string) {
|
|
|
77981
77929
|
return /^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$/.test(string);
|
|
77982
77930
|
};
|
|
77983
77931
|
|
|
77984
|
-
},{}],
|
|
77932
|
+
},{}],390:[function(require,module,exports){
|
|
77985
77933
|
"use strict";
|
|
77986
77934
|
module.exports = EventEmitter;
|
|
77987
77935
|
|
|
@@ -78059,7 +78007,7 @@ EventEmitter.prototype.emit = function emit(evt) {
|
|
|
78059
78007
|
return this;
|
|
78060
78008
|
};
|
|
78061
78009
|
|
|
78062
|
-
},{}],
|
|
78010
|
+
},{}],391:[function(require,module,exports){
|
|
78063
78011
|
"use strict";
|
|
78064
78012
|
|
|
78065
78013
|
module.exports = factory(factory);
|
|
@@ -78396,7 +78344,7 @@ function readUintBE(buf, pos) {
|
|
|
78396
78344
|
| buf[pos + 3]) >>> 0;
|
|
78397
78345
|
}
|
|
78398
78346
|
|
|
78399
|
-
},{}],
|
|
78347
|
+
},{}],392:[function(require,module,exports){
|
|
78400
78348
|
"use strict";
|
|
78401
78349
|
module.exports = inquire;
|
|
78402
78350
|
|
|
@@ -78415,7 +78363,7 @@ function inquire(moduleName) {
|
|
|
78415
78363
|
return null;
|
|
78416
78364
|
}
|
|
78417
78365
|
|
|
78418
|
-
},{}],
|
|
78366
|
+
},{}],393:[function(require,module,exports){
|
|
78419
78367
|
"use strict";
|
|
78420
78368
|
module.exports = pool;
|
|
78421
78369
|
|
|
@@ -78465,7 +78413,7 @@ function pool(alloc, slice, size) {
|
|
|
78465
78413
|
};
|
|
78466
78414
|
}
|
|
78467
78415
|
|
|
78468
|
-
},{}],
|
|
78416
|
+
},{}],394:[function(require,module,exports){
|
|
78469
78417
|
"use strict";
|
|
78470
78418
|
|
|
78471
78419
|
/**
|
|
@@ -78572,7 +78520,7 @@ utf8.write = function utf8_write(string, buffer, offset) {
|
|
|
78572
78520
|
return offset - start;
|
|
78573
78521
|
};
|
|
78574
78522
|
|
|
78575
|
-
},{}],
|
|
78523
|
+
},{}],395:[function(require,module,exports){
|
|
78576
78524
|
// GENERATED FILE. DO NOT EDIT.
|
|
78577
78525
|
var Long = (function(exports) {
|
|
78578
78526
|
"use strict";
|
|
@@ -80006,13 +79954,13 @@ var Long = (function(exports) {
|
|
|
80006
79954
|
if (typeof define === 'function' && define.amd) define([], function() { return Long; });
|
|
80007
79955
|
else if (typeof module === 'object' && typeof exports==='object') module.exports = Long;
|
|
80008
79956
|
|
|
80009
|
-
},{}],
|
|
79957
|
+
},{}],396:[function(require,module,exports){
|
|
80010
79958
|
// minimal library entry point.
|
|
80011
79959
|
|
|
80012
79960
|
"use strict";
|
|
80013
79961
|
module.exports = require("./src/index-minimal");
|
|
80014
79962
|
|
|
80015
|
-
},{"./src/index-minimal":
|
|
79963
|
+
},{"./src/index-minimal":397}],397:[function(require,module,exports){
|
|
80016
79964
|
"use strict";
|
|
80017
79965
|
var protobuf = exports;
|
|
80018
79966
|
|
|
@@ -80050,7 +79998,7 @@ function configure() {
|
|
|
80050
79998
|
// Set up buffer utility according to the environment
|
|
80051
79999
|
configure();
|
|
80052
80000
|
|
|
80053
|
-
},{"./reader":
|
|
80001
|
+
},{"./reader":398,"./reader_buffer":399,"./roots":400,"./rpc":401,"./util/minimal":404,"./writer":405,"./writer_buffer":406}],398:[function(require,module,exports){
|
|
80054
80002
|
"use strict";
|
|
80055
80003
|
module.exports = Reader;
|
|
80056
80004
|
|
|
@@ -80463,7 +80411,7 @@ Reader._configure = function(BufferReader_) {
|
|
|
80463
80411
|
});
|
|
80464
80412
|
};
|
|
80465
80413
|
|
|
80466
|
-
},{"./util/minimal":
|
|
80414
|
+
},{"./util/minimal":404}],399:[function(require,module,exports){
|
|
80467
80415
|
"use strict";
|
|
80468
80416
|
module.exports = BufferReader;
|
|
80469
80417
|
|
|
@@ -80516,7 +80464,7 @@ BufferReader.prototype.string = function read_string_buffer() {
|
|
|
80516
80464
|
|
|
80517
80465
|
BufferReader._configure();
|
|
80518
80466
|
|
|
80519
|
-
},{"./reader":
|
|
80467
|
+
},{"./reader":398,"./util/minimal":404}],400:[function(require,module,exports){
|
|
80520
80468
|
"use strict";
|
|
80521
80469
|
module.exports = {};
|
|
80522
80470
|
|
|
@@ -80536,7 +80484,7 @@ module.exports = {};
|
|
|
80536
80484
|
* var root = protobuf.roots["myroot"];
|
|
80537
80485
|
*/
|
|
80538
80486
|
|
|
80539
|
-
},{}],
|
|
80487
|
+
},{}],401:[function(require,module,exports){
|
|
80540
80488
|
"use strict";
|
|
80541
80489
|
|
|
80542
80490
|
/**
|
|
@@ -80574,7 +80522,7 @@ var rpc = exports;
|
|
|
80574
80522
|
|
|
80575
80523
|
rpc.Service = require("./rpc/service");
|
|
80576
80524
|
|
|
80577
|
-
},{"./rpc/service":
|
|
80525
|
+
},{"./rpc/service":402}],402:[function(require,module,exports){
|
|
80578
80526
|
"use strict";
|
|
80579
80527
|
module.exports = Service;
|
|
80580
80528
|
|
|
@@ -80718,7 +80666,7 @@ Service.prototype.end = function end(endedByRPC) {
|
|
|
80718
80666
|
return this;
|
|
80719
80667
|
};
|
|
80720
80668
|
|
|
80721
|
-
},{"../util/minimal":
|
|
80669
|
+
},{"../util/minimal":404}],403:[function(require,module,exports){
|
|
80722
80670
|
"use strict";
|
|
80723
80671
|
module.exports = LongBits;
|
|
80724
80672
|
|
|
@@ -80920,7 +80868,7 @@ LongBits.prototype.length = function length() {
|
|
|
80920
80868
|
: part2 < 128 ? 9 : 10;
|
|
80921
80869
|
};
|
|
80922
80870
|
|
|
80923
|
-
},{"../util/minimal":
|
|
80871
|
+
},{"../util/minimal":404}],404:[function(require,module,exports){
|
|
80924
80872
|
(function (global){(function (){
|
|
80925
80873
|
"use strict";
|
|
80926
80874
|
var util = exports;
|
|
@@ -81345,7 +81293,7 @@ util._configure = function() {
|
|
|
81345
81293
|
};
|
|
81346
81294
|
|
|
81347
81295
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
81348
|
-
},{"./longbits":
|
|
81296
|
+
},{"./longbits":403,"@protobufjs/aspromise":388,"@protobufjs/base64":389,"@protobufjs/eventemitter":390,"@protobufjs/float":391,"@protobufjs/inquire":392,"@protobufjs/pool":393,"@protobufjs/utf8":394}],405:[function(require,module,exports){
|
|
81349
81297
|
"use strict";
|
|
81350
81298
|
module.exports = Writer;
|
|
81351
81299
|
|
|
@@ -81812,7 +81760,7 @@ Writer._configure = function(BufferWriter_) {
|
|
|
81812
81760
|
BufferWriter._configure();
|
|
81813
81761
|
};
|
|
81814
81762
|
|
|
81815
|
-
},{"./util/minimal":
|
|
81763
|
+
},{"./util/minimal":404}],406:[function(require,module,exports){
|
|
81816
81764
|
"use strict";
|
|
81817
81765
|
module.exports = BufferWriter;
|
|
81818
81766
|
|
|
@@ -81899,7 +81847,7 @@ BufferWriter.prototype.string = function write_string_buffer(value) {
|
|
|
81899
81847
|
|
|
81900
81848
|
BufferWriter._configure();
|
|
81901
81849
|
|
|
81902
|
-
},{"./util/minimal":
|
|
81850
|
+
},{"./util/minimal":404,"./writer":405}],407:[function(require,module,exports){
|
|
81903
81851
|
"use strict";
|
|
81904
81852
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
81905
81853
|
if (k2 === undefined) k2 = k;
|
|
@@ -81918,7 +81866,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
81918
81866
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
81919
81867
|
__exportStar(require("./v0"), exports);
|
|
81920
81868
|
|
|
81921
|
-
},{"./v0":
|
|
81869
|
+
},{"./v0":408}],408:[function(require,module,exports){
|
|
81922
81870
|
"use strict";
|
|
81923
81871
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
81924
81872
|
exports.CosmosTransaction = exports.CosmosAddress = exports.CosmosDelegationActionType = exports.CosmosProtocolOptions = exports.CosmosProtocolConfig = exports.CosmosProtocolNetwork = exports.MintscanBlockExplorer = exports.CosmosCryptoClient = exports.CosmosProtocol = void 0;
|
|
@@ -81951,7 +81899,7 @@ serializer_1.SerializerV3.addSchema(serializer_1.IACMessageType.TransactionSignR
|
|
|
81951
81899
|
serializer_1.Serializer.addValidator(coinlib_core_1.MainProtocolSymbols.COSMOS, new transaction_validator_1.CosmosTransactionValidatorFactoryV2());
|
|
81952
81900
|
serializer_1.SerializerV3.addValidator(coinlib_core_1.MainProtocolSymbols.COSMOS, new transaction_validator_1.CosmosTransactionValidatorFactory());
|
|
81953
81901
|
|
|
81954
|
-
},{"./protocol/CosmosAddress":
|
|
81902
|
+
},{"./protocol/CosmosAddress":409,"./protocol/CosmosCryptoClient":411,"./protocol/CosmosProtocol":414,"./protocol/CosmosProtocolOptions":415,"./protocol/CosmosTransaction":416,"./serializer/schemas/v2/transaction-sign-request-cosmos.json":422,"./serializer/schemas/v2/transaction-sign-response-cosmos.json":423,"./serializer/schemas/v3/transaction-sign-request-cosmos.json":424,"./serializer/schemas/v3/transaction-sign-response-cosmos.json":425,"./serializer/validators/transaction-validator":426,"@airgap/coinlib-core":368,"@airgap/serializer":427}],409:[function(require,module,exports){
|
|
81955
81903
|
(function (Buffer){(function (){
|
|
81956
81904
|
"use strict";
|
|
81957
81905
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -81982,7 +81930,7 @@ var CosmosAddress = /** @class */ (function () {
|
|
|
81982
81930
|
exports.CosmosAddress = CosmosAddress;
|
|
81983
81931
|
|
|
81984
81932
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
81985
|
-
},{"@airgap/coinlib-core/dependencies/src/bech32-1.1.3/index":
|
|
81933
|
+
},{"@airgap/coinlib-core/dependencies/src/bech32-1.1.3/index":244,"@airgap/coinlib-core/dependencies/src/ripemd160-2.0.2/index":337,"@airgap/coinlib-core/dependencies/src/sha.js-2.4.11/index":350,"buffer":67}],410:[function(require,module,exports){
|
|
81986
81934
|
"use strict";
|
|
81987
81935
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
81988
81936
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -82038,7 +81986,7 @@ var CosmosCoin = /** @class */ (function () {
|
|
|
82038
81986
|
}());
|
|
82039
81987
|
exports.CosmosCoin = CosmosCoin;
|
|
82040
81988
|
|
|
82041
|
-
},{"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":
|
|
81989
|
+
},{"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":245,"@airgap/coinlib-core/errors":367,"@airgap/coinlib-core/errors/coinlib-error":366}],411:[function(require,module,exports){
|
|
82042
81990
|
(function (Buffer){(function (){
|
|
82043
81991
|
"use strict";
|
|
82044
81992
|
var __extends = (this && this.__extends) || (function () {
|
|
@@ -82131,7 +82079,7 @@ var CosmosCryptoClient = /** @class */ (function (_super) {
|
|
|
82131
82079
|
exports.CosmosCryptoClient = CosmosCryptoClient;
|
|
82132
82080
|
|
|
82133
82081
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
82134
|
-
},{"@airgap/coinlib-core/dependencies/src/secp256k1-3.7.1/elliptic":
|
|
82082
|
+
},{"@airgap/coinlib-core/dependencies/src/secp256k1-3.7.1/elliptic":340,"@airgap/coinlib-core/dependencies/src/sha.js-2.4.11/index":350,"@airgap/coinlib-core/protocols/Secp256k1CryptoClient":373,"buffer":67}],412:[function(require,module,exports){
|
|
82135
82083
|
"use strict";
|
|
82136
82084
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
82137
82085
|
exports.CosmosFee = void 0;
|
|
@@ -82163,7 +82111,7 @@ var CosmosFee = /** @class */ (function () {
|
|
|
82163
82111
|
}());
|
|
82164
82112
|
exports.CosmosFee = CosmosFee;
|
|
82165
82113
|
|
|
82166
|
-
},{"./CosmosCoin":
|
|
82114
|
+
},{"./CosmosCoin":410}],413:[function(require,module,exports){
|
|
82167
82115
|
"use strict";
|
|
82168
82116
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
82169
82117
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -82546,7 +82494,7 @@ var CosmosNodeClient = /** @class */ (function () {
|
|
|
82546
82494
|
}());
|
|
82547
82495
|
exports.CosmosNodeClient = CosmosNodeClient;
|
|
82548
82496
|
|
|
82549
|
-
},{"./CosmosCoin":
|
|
82497
|
+
},{"./CosmosCoin":410,"@airgap/coinlib-core/dependencies/src/axios-0.19.0/index":218,"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":245}],414:[function(require,module,exports){
|
|
82550
82498
|
(function (Buffer){(function (){
|
|
82551
82499
|
"use strict";
|
|
82552
82500
|
var __extends = (this && this.__extends) || (function () {
|
|
@@ -83704,7 +83652,7 @@ var CosmosProtocol = /** @class */ (function (_super) {
|
|
|
83704
83652
|
exports.CosmosProtocol = CosmosProtocol;
|
|
83705
83653
|
|
|
83706
83654
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
83707
|
-
},{"./CosmosAddress":
|
|
83655
|
+
},{"./CosmosAddress":409,"./CosmosCoin":410,"./CosmosCryptoClient":411,"./CosmosFee":412,"./CosmosProtocolOptions":415,"./CosmosTransaction":416,"./CosmosTypes":417,"./cosmos-message/CosmosDelegateMessage":418,"./cosmos-message/CosmosMessage":419,"./cosmos-message/CosmosSendMessage":420,"./cosmos-message/CosmosWithdrawDelegationRewardMessage":421,"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":245,"@airgap/coinlib-core/dependencies/src/bip32-2.0.4/src/index":248,"@airgap/coinlib-core/dependencies/src/bip39-2.5.0/index":249,"@airgap/coinlib-core/dependencies/src/cosmjs":266,"@airgap/coinlib-core/dependencies/src/secp256k1-3.7.1/elliptic":340,"@airgap/coinlib-core/dependencies/src/sha.js-2.4.11/index":350,"@airgap/coinlib-core/errors":367,"@airgap/coinlib-core/errors/coinlib-error":366,"@airgap/coinlib-core/protocols/NonExtendedProtocol":372,"@airgap/coinlib-core/utils/ProtocolSymbols":378,"@airgap/coinlib-core/utils/assert":379,"buffer":67}],415:[function(require,module,exports){
|
|
83708
83656
|
"use strict";
|
|
83709
83657
|
var __extends = (this && this.__extends) || (function () {
|
|
83710
83658
|
var extendStatics = function (d, b) {
|
|
@@ -83821,7 +83769,7 @@ var CosmosProtocolOptions = /** @class */ (function () {
|
|
|
83821
83769
|
}());
|
|
83822
83770
|
exports.CosmosProtocolOptions = CosmosProtocolOptions;
|
|
83823
83771
|
|
|
83824
|
-
},{"./CosmosNodeClient":
|
|
83772
|
+
},{"./CosmosNodeClient":413,"@airgap/coinlib-core/utils/ProtocolNetwork":377}],416:[function(require,module,exports){
|
|
83825
83773
|
"use strict";
|
|
83826
83774
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
83827
83775
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -83928,7 +83876,7 @@ var CosmosTransaction = /** @class */ (function () {
|
|
|
83928
83876
|
}());
|
|
83929
83877
|
exports.CosmosTransaction = CosmosTransaction;
|
|
83930
83878
|
|
|
83931
|
-
},{"./CosmosFee":
|
|
83879
|
+
},{"./CosmosFee":412,"./cosmos-message/CosmosDelegateMessage":418,"./cosmos-message/CosmosMessage":419,"./cosmos-message/CosmosSendMessage":420,"./cosmos-message/CosmosWithdrawDelegationRewardMessage":421,"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":245,"@airgap/coinlib-core/errors":367,"@airgap/coinlib-core/errors/coinlib-error":366}],417:[function(require,module,exports){
|
|
83932
83880
|
"use strict";
|
|
83933
83881
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
83934
83882
|
exports.calculateTransactionLimit = void 0;
|
|
@@ -83937,7 +83885,7 @@ var calculateTransactionLimit = function (limit, selfTotal, otherTotal, selfOffs
|
|
|
83937
83885
|
};
|
|
83938
83886
|
exports.calculateTransactionLimit = calculateTransactionLimit;
|
|
83939
83887
|
|
|
83940
|
-
},{}],
|
|
83888
|
+
},{}],418:[function(require,module,exports){
|
|
83941
83889
|
"use strict";
|
|
83942
83890
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
83943
83891
|
exports.CosmosDelegateMessage = void 0;
|
|
@@ -84010,7 +83958,7 @@ var CosmosDelegateMessage = /** @class */ (function () {
|
|
|
84010
83958
|
}());
|
|
84011
83959
|
exports.CosmosDelegateMessage = CosmosDelegateMessage;
|
|
84012
83960
|
|
|
84013
|
-
},{"../CosmosCoin":
|
|
83961
|
+
},{"../CosmosCoin":410,"./CosmosMessage":419,"@airgap/coinlib-core/interfaces/IAirGapTransaction":369}],419:[function(require,module,exports){
|
|
84014
83962
|
"use strict";
|
|
84015
83963
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
84016
83964
|
exports.CosmosMessageType = exports.CosmosMessageTypeValue = exports.CosmosMessageTypeIndex = void 0;
|
|
@@ -84058,7 +84006,7 @@ var CosmosMessageType = /** @class */ (function () {
|
|
|
84058
84006
|
}());
|
|
84059
84007
|
exports.CosmosMessageType = CosmosMessageType;
|
|
84060
84008
|
|
|
84061
|
-
},{"@airgap/coinlib-core/errors":
|
|
84009
|
+
},{"@airgap/coinlib-core/errors":367,"@airgap/coinlib-core/errors/coinlib-error":366}],420:[function(require,module,exports){
|
|
84062
84010
|
"use strict";
|
|
84063
84011
|
var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
84064
84012
|
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
@@ -84144,7 +84092,7 @@ var CosmosSendMessage = /** @class */ (function () {
|
|
|
84144
84092
|
}());
|
|
84145
84093
|
exports.CosmosSendMessage = CosmosSendMessage;
|
|
84146
84094
|
|
|
84147
|
-
},{"../CosmosCoin":
|
|
84095
|
+
},{"../CosmosCoin":410,"./CosmosMessage":419,"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":245,"@airgap/coinlib-core/interfaces/IAirGapTransaction":369}],421:[function(require,module,exports){
|
|
84148
84096
|
"use strict";
|
|
84149
84097
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
84150
84098
|
exports.CosmosWithdrawDelegationRewardMessage = void 0;
|
|
@@ -84206,7 +84154,7 @@ var CosmosWithdrawDelegationRewardMessage = /** @class */ (function () {
|
|
|
84206
84154
|
}());
|
|
84207
84155
|
exports.CosmosWithdrawDelegationRewardMessage = CosmosWithdrawDelegationRewardMessage;
|
|
84208
84156
|
|
|
84209
|
-
},{"./CosmosMessage":
|
|
84157
|
+
},{"./CosmosMessage":419}],422:[function(require,module,exports){
|
|
84210
84158
|
module.exports={
|
|
84211
84159
|
"$ref": "#/definitions/SerializableUnsignedCosmosTransaction",
|
|
84212
84160
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
@@ -84308,7 +84256,7 @@ module.exports={
|
|
|
84308
84256
|
}
|
|
84309
84257
|
}
|
|
84310
84258
|
|
|
84311
|
-
},{}],
|
|
84259
|
+
},{}],423:[function(require,module,exports){
|
|
84312
84260
|
module.exports={
|
|
84313
84261
|
"$ref": "#/definitions/SignedCosmosTransaction",
|
|
84314
84262
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
@@ -84332,9 +84280,9 @@ module.exports={
|
|
|
84332
84280
|
}
|
|
84333
84281
|
}
|
|
84334
84282
|
|
|
84335
|
-
},{}],
|
|
84336
|
-
arguments[4][
|
|
84337
|
-
},{"dup":
|
|
84283
|
+
},{}],424:[function(require,module,exports){
|
|
84284
|
+
arguments[4][422][0].apply(exports,arguments)
|
|
84285
|
+
},{"dup":422}],425:[function(require,module,exports){
|
|
84338
84286
|
module.exports={
|
|
84339
84287
|
"$ref": "#/definitions/SignedCosmosTransaction",
|
|
84340
84288
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
@@ -84359,7 +84307,7 @@ module.exports={
|
|
|
84359
84307
|
}
|
|
84360
84308
|
}
|
|
84361
84309
|
|
|
84362
|
-
},{}],
|
|
84310
|
+
},{}],426:[function(require,module,exports){
|
|
84363
84311
|
"use strict";
|
|
84364
84312
|
// tslint:disable: max-classes-per-file
|
|
84365
84313
|
// import { async } from '../../dependencies/src/validate.js-0.13.1/validate'
|
|
@@ -84472,7 +84420,7 @@ var CosmosTransactionValidatorFactoryV2 = /** @class */ (function () {
|
|
|
84472
84420
|
}());
|
|
84473
84421
|
exports.CosmosTransactionValidatorFactoryV2 = CosmosTransactionValidatorFactoryV2;
|
|
84474
84422
|
|
|
84475
|
-
},{"@airgap/serializer":
|
|
84423
|
+
},{"@airgap/serializer":427}],427:[function(require,module,exports){
|
|
84476
84424
|
"use strict";
|
|
84477
84425
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
84478
84426
|
exports.validateSyncSchemeV2 = exports.validateSyncScheme = exports.generateIdV2 = exports.generateId = exports.Message = exports.SerializerV3 = exports.Serializer = exports.IACMessageType = void 0;
|
|
@@ -84493,7 +84441,7 @@ Object.defineProperty(exports, "generateId", { enumerable: true, get: function (
|
|
|
84493
84441
|
var validators_2 = require("./v3/validators/validators");
|
|
84494
84442
|
Object.defineProperty(exports, "validateSyncScheme", { enumerable: true, get: function () { return validators_2.validateSyncScheme; } });
|
|
84495
84443
|
|
|
84496
|
-
},{"./v2/interfaces":
|
|
84444
|
+
},{"./v2/interfaces":429,"./v2/message":430,"./v2/serializer":437,"./v2/utils/generateId":438,"./v2/validators/validators":440,"./v3/serializer":449,"./v3/utils/generateId":450,"./v3/validators/validators":452}],428:[function(require,module,exports){
|
|
84497
84445
|
(function (Buffer){(function (){
|
|
84498
84446
|
"use strict";
|
|
84499
84447
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -84620,7 +84568,7 @@ var IACProtocol = /** @class */ (function () {
|
|
|
84620
84568
|
exports.IACProtocol = IACProtocol;
|
|
84621
84569
|
|
|
84622
84570
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
84623
|
-
},{"./payloads/chunked-payload":
|
|
84571
|
+
},{"./payloads/chunked-payload":431,"./payloads/full-payload":432,"./serializer":437,"@airgap/coinlib-core/dependencies/src/bs58check-2.1.2/index":263,"@airgap/coinlib-core/dependencies/src/rlp-2.2.3/index":338,"@airgap/coinlib-core/errors":367,"buffer":67}],429:[function(require,module,exports){
|
|
84624
84572
|
"use strict";
|
|
84625
84573
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
84626
84574
|
exports.IACMessageType = void 0;
|
|
@@ -84652,7 +84600,7 @@ var IACMessageType;
|
|
|
84652
84600
|
// SocialRecoveryShareResponse = 24
|
|
84653
84601
|
})(IACMessageType = exports.IACMessageType || (exports.IACMessageType = {}));
|
|
84654
84602
|
|
|
84655
|
-
},{}],
|
|
84603
|
+
},{}],430:[function(require,module,exports){
|
|
84656
84604
|
(function (Buffer){(function (){
|
|
84657
84605
|
"use strict";
|
|
84658
84606
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -84740,7 +84688,7 @@ var Message = /** @class */ (function () {
|
|
|
84740
84688
|
exports.Message = Message;
|
|
84741
84689
|
|
|
84742
84690
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
84743
|
-
},{"./interfaces":
|
|
84691
|
+
},{"./interfaces":429,"./serializer":437,"./utils/generateId":438,"./utils/json-to-rlp":439,"@airgap/coinlib-core/errors":367,"@airgap/coinlib-core/utils/ProtocolSymbols":378,"buffer":67}],431:[function(require,module,exports){
|
|
84744
84692
|
(function (Buffer){(function (){
|
|
84745
84693
|
"use strict";
|
|
84746
84694
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -84799,7 +84747,7 @@ var ChunkedPayload = /** @class */ (function () {
|
|
|
84799
84747
|
exports.ChunkedPayload = ChunkedPayload;
|
|
84800
84748
|
|
|
84801
84749
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
84802
|
-
},{"@airgap/coinlib-core/errors":
|
|
84750
|
+
},{"@airgap/coinlib-core/errors":367,"buffer":67}],432:[function(require,module,exports){
|
|
84803
84751
|
"use strict";
|
|
84804
84752
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
84805
84753
|
if (k2 === undefined) k2 = k;
|
|
@@ -84861,7 +84809,7 @@ var FullPayload = /** @class */ (function () {
|
|
|
84861
84809
|
}());
|
|
84862
84810
|
exports.FullPayload = FullPayload;
|
|
84863
84811
|
|
|
84864
|
-
},{"../message":
|
|
84812
|
+
},{"../message":430,"../serializer":437,"@airgap/coinlib-core/dependencies/src/bs58check-2.1.2/index":263,"@airgap/coinlib-core/dependencies/src/rlp-2.2.3/index":338}],433:[function(require,module,exports){
|
|
84865
84813
|
module.exports={
|
|
84866
84814
|
"$ref": "#/definitions/AccountShareResponse",
|
|
84867
84815
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
@@ -84885,7 +84833,7 @@ module.exports={
|
|
|
84885
84833
|
}
|
|
84886
84834
|
}
|
|
84887
84835
|
|
|
84888
|
-
},{}],
|
|
84836
|
+
},{}],434:[function(require,module,exports){
|
|
84889
84837
|
module.exports={
|
|
84890
84838
|
"$ref": "#/definitions/MessageSignRequest",
|
|
84891
84839
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
@@ -84909,7 +84857,7 @@ module.exports={
|
|
|
84909
84857
|
}
|
|
84910
84858
|
}
|
|
84911
84859
|
|
|
84912
|
-
},{}],
|
|
84860
|
+
},{}],435:[function(require,module,exports){
|
|
84913
84861
|
module.exports={
|
|
84914
84862
|
"$ref": "#/definitions/MessageSignResponse",
|
|
84915
84863
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
@@ -84933,7 +84881,7 @@ module.exports={
|
|
|
84933
84881
|
}
|
|
84934
84882
|
}
|
|
84935
84883
|
|
|
84936
|
-
},{}],
|
|
84884
|
+
},{}],436:[function(require,module,exports){
|
|
84937
84885
|
"use strict";
|
|
84938
84886
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
84939
84887
|
exports.SchemaTypes = void 0;
|
|
@@ -84949,7 +84897,7 @@ var SchemaTypes;
|
|
|
84949
84897
|
SchemaTypes["HEX_STRING"] = "hexString"; // TODO: Should we do it like that?
|
|
84950
84898
|
})(SchemaTypes = exports.SchemaTypes || (exports.SchemaTypes = {}));
|
|
84951
84899
|
|
|
84952
|
-
},{}],
|
|
84900
|
+
},{}],437:[function(require,module,exports){
|
|
84953
84901
|
"use strict";
|
|
84954
84902
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
84955
84903
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -85115,7 +85063,7 @@ var Serializer = /** @class */ (function () {
|
|
|
85115
85063
|
}());
|
|
85116
85064
|
exports.Serializer = Serializer;
|
|
85117
85065
|
|
|
85118
|
-
},{"./inter-app-communication-protocol":
|
|
85066
|
+
},{"./inter-app-communication-protocol":428,"./interfaces":429,"./schemas/generated/account-share-response.json":433,"./schemas/generated/message-sign-request.json":434,"./schemas/generated/message-sign-response.json":435,"@airgap/coinlib-core/errors":367,"@airgap/coinlib-core/utils/ProtocolSymbols":378}],438:[function(require,module,exports){
|
|
85119
85067
|
"use strict";
|
|
85120
85068
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
85121
85069
|
exports.generateIdV2 = void 0;
|
|
@@ -85131,7 +85079,7 @@ function generateIdV2(length) {
|
|
|
85131
85079
|
}
|
|
85132
85080
|
exports.generateIdV2 = generateIdV2;
|
|
85133
85081
|
|
|
85134
|
-
},{}],
|
|
85082
|
+
},{}],439:[function(require,module,exports){
|
|
85135
85083
|
"use strict";
|
|
85136
85084
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
85137
85085
|
exports.rlpArrayToJson = exports.jsonToArray = exports.unwrapSchema = exports.getDefinitionByRefPath = void 0;
|
|
@@ -85309,7 +85257,7 @@ function rlpArrayToJson(schema, decoded) {
|
|
|
85309
85257
|
}
|
|
85310
85258
|
exports.rlpArrayToJson = rlpArrayToJson;
|
|
85311
85259
|
|
|
85312
|
-
},{"../schemas/schema":
|
|
85260
|
+
},{"../schemas/schema":436,"@airgap/coinlib-core/errors":367,"@airgap/coinlib-core/errors/coinlib-error":366,"@airgap/coinlib-core/utils/assert":379}],440:[function(require,module,exports){
|
|
85313
85261
|
"use strict";
|
|
85314
85262
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
85315
85263
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -85482,7 +85430,7 @@ function validateSerializationInput(from: string, fee: BigNumber, amount: BigNum
|
|
|
85482
85430
|
}
|
|
85483
85431
|
*/
|
|
85484
85432
|
|
|
85485
|
-
},{"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":
|
|
85433
|
+
},{"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":245,"@airgap/coinlib-core/dependencies/src/validate.js-0.13.1/validate":364,"@airgap/coinlib-core/errors":367,"@airgap/coinlib-core/errors/coinlib-error":366}],441:[function(require,module,exports){
|
|
85486
85434
|
(function (Buffer){(function (){
|
|
85487
85435
|
"use strict";
|
|
85488
85436
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -85557,9 +85505,9 @@ var IACMessageWrapper = /** @class */ (function () {
|
|
|
85557
85505
|
exports.IACMessageWrapper = IACMessageWrapper;
|
|
85558
85506
|
|
|
85559
85507
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
85560
|
-
},{"./message":
|
|
85561
|
-
arguments[4][
|
|
85562
|
-
},{"dup":
|
|
85508
|
+
},{"./message":443,"./payload":444,"./serializer":449,"@airgap/coinlib-core/dependencies/src/bs58check-2.1.2/index":263,"@airgap/coinlib-core/dependencies/src/cbor-sync-1.0.4/index":264,"@airgap/coinlib-core/dependencies/src/pako-2.0.3":315,"buffer":67}],442:[function(require,module,exports){
|
|
85509
|
+
arguments[4][429][0].apply(exports,arguments)
|
|
85510
|
+
},{"dup":429}],443:[function(require,module,exports){
|
|
85563
85511
|
"use strict";
|
|
85564
85512
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
85565
85513
|
exports.Message = exports.isMessageDefinitionArray = void 0;
|
|
@@ -85677,7 +85625,7 @@ var Message = /** @class */ (function () {
|
|
|
85677
85625
|
}());
|
|
85678
85626
|
exports.Message = Message;
|
|
85679
85627
|
|
|
85680
|
-
},{"./serializer":
|
|
85628
|
+
},{"./serializer":449,"./utils/generateId":450,"./utils/json-to-rlp":451,"@airgap/coinlib-core/errors":367,"@airgap/coinlib-core/utils/ProtocolSymbols":378}],444:[function(require,module,exports){
|
|
85681
85629
|
"use strict";
|
|
85682
85630
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
85683
85631
|
exports.Payload = void 0;
|
|
@@ -85706,7 +85654,7 @@ var Payload = /** @class */ (function () {
|
|
|
85706
85654
|
}());
|
|
85707
85655
|
exports.Payload = Payload;
|
|
85708
85656
|
|
|
85709
|
-
},{"./message":
|
|
85657
|
+
},{"./message":443,"./serializer":449}],445:[function(require,module,exports){
|
|
85710
85658
|
module.exports={
|
|
85711
85659
|
"$ref": "#/definitions/AccountShareResponse",
|
|
85712
85660
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
@@ -85742,11 +85690,11 @@ module.exports={
|
|
|
85742
85690
|
}
|
|
85743
85691
|
}
|
|
85744
85692
|
|
|
85745
|
-
},{}],
|
|
85693
|
+
},{}],446:[function(require,module,exports){
|
|
85694
|
+
arguments[4][434][0].apply(exports,arguments)
|
|
85695
|
+
},{"dup":434}],447:[function(require,module,exports){
|
|
85746
85696
|
arguments[4][435][0].apply(exports,arguments)
|
|
85747
85697
|
},{"dup":435}],448:[function(require,module,exports){
|
|
85748
|
-
arguments[4][436][0].apply(exports,arguments)
|
|
85749
|
-
},{"dup":436}],449:[function(require,module,exports){
|
|
85750
85698
|
"use strict";
|
|
85751
85699
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
85752
85700
|
exports.SchemaTypes = void 0;
|
|
@@ -85761,7 +85709,7 @@ var SchemaTypes;
|
|
|
85761
85709
|
SchemaTypes["OBJECT"] = "object";
|
|
85762
85710
|
})(SchemaTypes = exports.SchemaTypes || (exports.SchemaTypes = {}));
|
|
85763
85711
|
|
|
85764
|
-
},{}],
|
|
85712
|
+
},{}],449:[function(require,module,exports){
|
|
85765
85713
|
"use strict";
|
|
85766
85714
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
85767
85715
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -85925,7 +85873,7 @@ var SerializerV3 = /** @class */ (function () {
|
|
|
85925
85873
|
}());
|
|
85926
85874
|
exports.SerializerV3 = SerializerV3;
|
|
85927
85875
|
|
|
85928
|
-
},{"./iac-message-wrapper":
|
|
85876
|
+
},{"./iac-message-wrapper":441,"./interfaces":442,"./schemas/generated/account-share-response.json":445,"./schemas/generated/message-sign-request.json":446,"./schemas/generated/message-sign-response.json":447,"@airgap/coinlib-core/errors":367,"@airgap/coinlib-core/utils/ProtocolSymbols":378}],450:[function(require,module,exports){
|
|
85929
85877
|
"use strict";
|
|
85930
85878
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
85931
85879
|
exports.generateId = exports.ID_LENGTH = void 0;
|
|
@@ -85943,7 +85891,7 @@ function generateId(length) {
|
|
|
85943
85891
|
}
|
|
85944
85892
|
exports.generateId = generateId;
|
|
85945
85893
|
|
|
85946
|
-
},{}],
|
|
85894
|
+
},{}],451:[function(require,module,exports){
|
|
85947
85895
|
(function (Buffer){(function (){
|
|
85948
85896
|
"use strict";
|
|
85949
85897
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -86181,7 +86129,7 @@ function rlpArrayToJson(schema, decoded) {
|
|
|
86181
86129
|
exports.rlpArrayToJson = rlpArrayToJson;
|
|
86182
86130
|
|
|
86183
86131
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
86184
|
-
},{"../schemas/schema":
|
|
86132
|
+
},{"../schemas/schema":448,"@airgap/coinlib-core/errors":367,"@airgap/coinlib-core/errors/coinlib-error":366,"@airgap/coinlib-core/utils/assert":379,"buffer":67}],452:[function(require,module,exports){
|
|
86185
86133
|
"use strict";
|
|
86186
86134
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
86187
86135
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -86352,5 +86300,5 @@ function validateSerializationInput(from: string, fee: BigNumber, amount: BigNum
|
|
|
86352
86300
|
}
|
|
86353
86301
|
*/
|
|
86354
86302
|
|
|
86355
|
-
},{"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":
|
|
86303
|
+
},{"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":245,"@airgap/coinlib-core/dependencies/src/validate.js-0.13.1/validate":364}]},{},[407])(407)
|
|
86356
86304
|
});
|