@airgap/aeternity 0.13.9-beta.1 → 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-aeternity.min.js +221 -273
- package/package.json +4 -4
|
@@ -16510,7 +16510,7 @@ Writable.prototype._destroy = function (err, cb) {
|
|
|
16510
16510
|
cb(err);
|
|
16511
16511
|
};
|
|
16512
16512
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
16513
|
-
},{"../errors":61,"./_stream_duplex":62,"./internal/streams/destroy":69,"./internal/streams/state":73,"./internal/streams/stream":74,"_process":180,"buffer":76,"inherits":157,"util-deprecate":
|
|
16513
|
+
},{"../errors":61,"./_stream_duplex":62,"./internal/streams/destroy":69,"./internal/streams/state":73,"./internal/streams/stream":74,"_process":180,"buffer":76,"inherits":157,"util-deprecate":217}],67:[function(require,module,exports){
|
|
16514
16514
|
(function (process){(function (){
|
|
16515
16515
|
'use strict';
|
|
16516
16516
|
|
|
@@ -25358,6 +25358,8 @@ var INTRINSICS = {
|
|
|
25358
25358
|
'%AsyncIteratorPrototype%': needsEval,
|
|
25359
25359
|
'%Atomics%': typeof Atomics === 'undefined' ? undefined : Atomics,
|
|
25360
25360
|
'%BigInt%': typeof BigInt === 'undefined' ? undefined : BigInt,
|
|
25361
|
+
'%BigInt64Array%': typeof BigInt64Array === 'undefined' ? undefined : BigInt64Array,
|
|
25362
|
+
'%BigUint64Array%': typeof BigUint64Array === 'undefined' ? undefined : BigUint64Array,
|
|
25361
25363
|
'%Boolean%': Boolean,
|
|
25362
25364
|
'%DataView%': typeof DataView === 'undefined' ? undefined : DataView,
|
|
25363
25365
|
'%Date%': Date,
|
|
@@ -25413,6 +25415,14 @@ var INTRINSICS = {
|
|
|
25413
25415
|
'%WeakSet%': typeof WeakSet === 'undefined' ? undefined : WeakSet
|
|
25414
25416
|
};
|
|
25415
25417
|
|
|
25418
|
+
try {
|
|
25419
|
+
null.error; // eslint-disable-line no-unused-expressions
|
|
25420
|
+
} catch (e) {
|
|
25421
|
+
// https://github.com/tc39/proposal-shadowrealm/pull/384#issuecomment-1364264229
|
|
25422
|
+
var errorProto = getProto(getProto(e));
|
|
25423
|
+
INTRINSICS['%Error.prototype%'] = errorProto;
|
|
25424
|
+
}
|
|
25425
|
+
|
|
25416
25426
|
var doEval = function doEval(name) {
|
|
25417
25427
|
var value;
|
|
25418
25428
|
if (name === '%AsyncFunction%') {
|
|
@@ -25831,7 +25841,7 @@ arguments[4][64][0].apply(exports,arguments)
|
|
|
25831
25841
|
arguments[4][65][0].apply(exports,arguments)
|
|
25832
25842
|
},{"../errors":128,"./_stream_duplex":129,"dup":65,"inherits":157}],133:[function(require,module,exports){
|
|
25833
25843
|
arguments[4][66][0].apply(exports,arguments)
|
|
25834
|
-
},{"../errors":128,"./_stream_duplex":129,"./internal/streams/destroy":136,"./internal/streams/state":140,"./internal/streams/stream":141,"_process":180,"buffer":76,"dup":66,"inherits":157,"util-deprecate":
|
|
25844
|
+
},{"../errors":128,"./_stream_duplex":129,"./internal/streams/destroy":136,"./internal/streams/state":140,"./internal/streams/stream":141,"_process":180,"buffer":76,"dup":66,"inherits":157,"util-deprecate":217}],134:[function(require,module,exports){
|
|
25835
25845
|
arguments[4][67][0].apply(exports,arguments)
|
|
25836
25846
|
},{"./end-of-stream":137,"_process":180,"dup":67}],135:[function(require,module,exports){
|
|
25837
25847
|
arguments[4][68][0].apply(exports,arguments)
|
|
@@ -27313,6 +27323,29 @@ if (typeof Object.create === 'function') {
|
|
|
27313
27323
|
}
|
|
27314
27324
|
|
|
27315
27325
|
},{}],158:[function(require,module,exports){
|
|
27326
|
+
/*!
|
|
27327
|
+
* Determine if an object is a Buffer
|
|
27328
|
+
*
|
|
27329
|
+
* @author Feross Aboukhadijeh <https://feross.org>
|
|
27330
|
+
* @license MIT
|
|
27331
|
+
*/
|
|
27332
|
+
|
|
27333
|
+
// The _isBuffer check is for Safari 5-7 support, because it's missing
|
|
27334
|
+
// Object.prototype.constructor. Remove this eventually
|
|
27335
|
+
module.exports = function (obj) {
|
|
27336
|
+
return obj != null && (isBuffer(obj) || isSlowBuffer(obj) || !!obj._isBuffer)
|
|
27337
|
+
}
|
|
27338
|
+
|
|
27339
|
+
function isBuffer (obj) {
|
|
27340
|
+
return !!obj.constructor && typeof obj.constructor.isBuffer === 'function' && obj.constructor.isBuffer(obj)
|
|
27341
|
+
}
|
|
27342
|
+
|
|
27343
|
+
// For Node v0.10 support. Remove this eventually.
|
|
27344
|
+
function isSlowBuffer (obj) {
|
|
27345
|
+
return typeof obj.readFloatLE === 'function' && typeof obj.slice === 'function' && isBuffer(obj.slice(0, 0))
|
|
27346
|
+
}
|
|
27347
|
+
|
|
27348
|
+
},{}],159:[function(require,module,exports){
|
|
27316
27349
|
'use strict';
|
|
27317
27350
|
|
|
27318
27351
|
var hasToStringTag = require('has-tostringtag/shams')();
|
|
@@ -27347,30 +27380,7 @@ isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests
|
|
|
27347
27380
|
|
|
27348
27381
|
module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
|
|
27349
27382
|
|
|
27350
|
-
},{"call-bind/callBound":78,"has-tostringtag/shams":125}],
|
|
27351
|
-
/*!
|
|
27352
|
-
* Determine if an object is a Buffer
|
|
27353
|
-
*
|
|
27354
|
-
* @author Feross Aboukhadijeh <https://feross.org>
|
|
27355
|
-
* @license MIT
|
|
27356
|
-
*/
|
|
27357
|
-
|
|
27358
|
-
// The _isBuffer check is for Safari 5-7 support, because it's missing
|
|
27359
|
-
// Object.prototype.constructor. Remove this eventually
|
|
27360
|
-
module.exports = function (obj) {
|
|
27361
|
-
return obj != null && (isBuffer(obj) || isSlowBuffer(obj) || !!obj._isBuffer)
|
|
27362
|
-
}
|
|
27363
|
-
|
|
27364
|
-
function isBuffer (obj) {
|
|
27365
|
-
return !!obj.constructor && typeof obj.constructor.isBuffer === 'function' && obj.constructor.isBuffer(obj)
|
|
27366
|
-
}
|
|
27367
|
-
|
|
27368
|
-
// For Node v0.10 support. Remove this eventually.
|
|
27369
|
-
function isSlowBuffer (obj) {
|
|
27370
|
-
return typeof obj.readFloatLE === 'function' && typeof obj.slice === 'function' && isBuffer(obj.slice(0, 0))
|
|
27371
|
-
}
|
|
27372
|
-
|
|
27373
|
-
},{}],160:[function(require,module,exports){
|
|
27383
|
+
},{"call-bind/callBound":78,"has-tostringtag/shams":125}],160:[function(require,module,exports){
|
|
27374
27384
|
'use strict';
|
|
27375
27385
|
|
|
27376
27386
|
var fnToStr = Function.prototype.toString;
|
|
@@ -30539,7 +30549,7 @@ arguments[4][64][0].apply(exports,arguments)
|
|
|
30539
30549
|
arguments[4][65][0].apply(exports,arguments)
|
|
30540
30550
|
},{"../errors":202,"./_stream_duplex":203,"dup":65,"inherits":157}],207:[function(require,module,exports){
|
|
30541
30551
|
arguments[4][66][0].apply(exports,arguments)
|
|
30542
|
-
},{"../errors":202,"./_stream_duplex":203,"./internal/streams/destroy":210,"./internal/streams/state":214,"./internal/streams/stream":215,"_process":180,"buffer":76,"dup":66,"inherits":157,"util-deprecate":
|
|
30552
|
+
},{"../errors":202,"./_stream_duplex":203,"./internal/streams/destroy":210,"./internal/streams/state":214,"./internal/streams/stream":215,"_process":180,"buffer":76,"dup":66,"inherits":157,"util-deprecate":217}],208:[function(require,module,exports){
|
|
30543
30553
|
arguments[4][67][0].apply(exports,arguments)
|
|
30544
30554
|
},{"./end-of-stream":211,"_process":180,"dup":67}],209:[function(require,module,exports){
|
|
30545
30555
|
arguments[4][68][0].apply(exports,arguments)
|
|
@@ -30852,71 +30862,7 @@ function simpleWrite(buf) {
|
|
|
30852
30862
|
function simpleEnd(buf) {
|
|
30853
30863
|
return buf && buf.length ? this.write(buf) : '';
|
|
30854
30864
|
}
|
|
30855
|
-
},{"safe-buffer":
|
|
30856
|
-
/* eslint-disable node/no-deprecated-api */
|
|
30857
|
-
var buffer = require('buffer')
|
|
30858
|
-
var Buffer = buffer.Buffer
|
|
30859
|
-
|
|
30860
|
-
// alternative to using Object.keys for old browsers
|
|
30861
|
-
function copyProps (src, dst) {
|
|
30862
|
-
for (var key in src) {
|
|
30863
|
-
dst[key] = src[key]
|
|
30864
|
-
}
|
|
30865
|
-
}
|
|
30866
|
-
if (Buffer.from && Buffer.alloc && Buffer.allocUnsafe && Buffer.allocUnsafeSlow) {
|
|
30867
|
-
module.exports = buffer
|
|
30868
|
-
} else {
|
|
30869
|
-
// Copy properties from require('buffer')
|
|
30870
|
-
copyProps(buffer, exports)
|
|
30871
|
-
exports.Buffer = SafeBuffer
|
|
30872
|
-
}
|
|
30873
|
-
|
|
30874
|
-
function SafeBuffer (arg, encodingOrOffset, length) {
|
|
30875
|
-
return Buffer(arg, encodingOrOffset, length)
|
|
30876
|
-
}
|
|
30877
|
-
|
|
30878
|
-
// Copy static methods from Buffer
|
|
30879
|
-
copyProps(Buffer, SafeBuffer)
|
|
30880
|
-
|
|
30881
|
-
SafeBuffer.from = function (arg, encodingOrOffset, length) {
|
|
30882
|
-
if (typeof arg === 'number') {
|
|
30883
|
-
throw new TypeError('Argument must not be a number')
|
|
30884
|
-
}
|
|
30885
|
-
return Buffer(arg, encodingOrOffset, length)
|
|
30886
|
-
}
|
|
30887
|
-
|
|
30888
|
-
SafeBuffer.alloc = function (size, fill, encoding) {
|
|
30889
|
-
if (typeof size !== 'number') {
|
|
30890
|
-
throw new TypeError('Argument must be a number')
|
|
30891
|
-
}
|
|
30892
|
-
var buf = Buffer(size)
|
|
30893
|
-
if (fill !== undefined) {
|
|
30894
|
-
if (typeof encoding === 'string') {
|
|
30895
|
-
buf.fill(fill, encoding)
|
|
30896
|
-
} else {
|
|
30897
|
-
buf.fill(fill)
|
|
30898
|
-
}
|
|
30899
|
-
} else {
|
|
30900
|
-
buf.fill(0)
|
|
30901
|
-
}
|
|
30902
|
-
return buf
|
|
30903
|
-
}
|
|
30904
|
-
|
|
30905
|
-
SafeBuffer.allocUnsafe = function (size) {
|
|
30906
|
-
if (typeof size !== 'number') {
|
|
30907
|
-
throw new TypeError('Argument must be a number')
|
|
30908
|
-
}
|
|
30909
|
-
return Buffer(size)
|
|
30910
|
-
}
|
|
30911
|
-
|
|
30912
|
-
SafeBuffer.allocUnsafeSlow = function (size) {
|
|
30913
|
-
if (typeof size !== 'number') {
|
|
30914
|
-
throw new TypeError('Argument must be a number')
|
|
30915
|
-
}
|
|
30916
|
-
return buffer.SlowBuffer(size)
|
|
30917
|
-
}
|
|
30918
|
-
|
|
30919
|
-
},{"buffer":76}],218:[function(require,module,exports){
|
|
30865
|
+
},{"safe-buffer":191}],217:[function(require,module,exports){
|
|
30920
30866
|
(function (global){(function (){
|
|
30921
30867
|
|
|
30922
30868
|
/**
|
|
@@ -30987,9 +30933,9 @@ function config (name) {
|
|
|
30987
30933
|
}
|
|
30988
30934
|
|
|
30989
30935
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
30990
|
-
},{}],
|
|
30936
|
+
},{}],218:[function(require,module,exports){
|
|
30991
30937
|
arguments[4][27][0].apply(exports,arguments)
|
|
30992
|
-
},{"dup":27}],
|
|
30938
|
+
},{"dup":27}],219:[function(require,module,exports){
|
|
30993
30939
|
// Currently in sync with Node.js lib/internal/util/types.js
|
|
30994
30940
|
// https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9
|
|
30995
30941
|
|
|
@@ -31325,7 +31271,7 @@ exports.isAnyArrayBuffer = isAnyArrayBuffer;
|
|
|
31325
31271
|
});
|
|
31326
31272
|
});
|
|
31327
31273
|
|
|
31328
|
-
},{"is-arguments":
|
|
31274
|
+
},{"is-arguments":159,"is-generator-function":161,"is-typed-array":162,"which-typed-array":221}],220:[function(require,module,exports){
|
|
31329
31275
|
(function (process){(function (){
|
|
31330
31276
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
31331
31277
|
//
|
|
@@ -32044,7 +31990,7 @@ function callbackify(original) {
|
|
|
32044
31990
|
exports.callbackify = callbackify;
|
|
32045
31991
|
|
|
32046
31992
|
}).call(this)}).call(this,require('_process'))
|
|
32047
|
-
},{"./support/isBuffer":
|
|
31993
|
+
},{"./support/isBuffer":218,"./support/types":219,"_process":180,"inherits":157}],221:[function(require,module,exports){
|
|
32048
31994
|
(function (global){(function (){
|
|
32049
31995
|
'use strict';
|
|
32050
31996
|
|
|
@@ -32103,7 +32049,7 @@ module.exports = function whichTypedArray(value) {
|
|
|
32103
32049
|
};
|
|
32104
32050
|
|
|
32105
32051
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
32106
|
-
},{"available-typed-arrays":29,"call-bind/callBound":78,"for-each":118,"gopd":122,"has-tostringtag/shams":125,"is-typed-array":162}],
|
|
32052
|
+
},{"available-typed-arrays":29,"call-bind/callBound":78,"for-each":118,"gopd":122,"has-tostringtag/shams":125,"is-typed-array":162}],222:[function(require,module,exports){
|
|
32107
32053
|
"use strict";
|
|
32108
32054
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
32109
32055
|
if (k2 === undefined) k2 = k;
|
|
@@ -32122,7 +32068,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
32122
32068
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
32123
32069
|
__exportStar(require("./v0"), exports);
|
|
32124
32070
|
|
|
32125
|
-
},{"./v0":
|
|
32071
|
+
},{"./v0":223}],223:[function(require,module,exports){
|
|
32126
32072
|
"use strict";
|
|
32127
32073
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
32128
32074
|
exports.AeternityAddress = exports.AeternityProtocolNetwork = exports.AeternalBlockExplorer = exports.AeternityProtocolOptions = exports.AeternityCryptoClient = exports.AeternityProtocol = void 0;
|
|
@@ -32147,7 +32093,7 @@ serializer_1.SerializerV3.addSchema(serializer_1.IACMessageType.TransactionSignR
|
|
|
32147
32093
|
serializer_1.Serializer.addValidator(coinlib_core_1.MainProtocolSymbols.AE, new transaction_validator_1.AeternityTransactionValidatorFactoryV2());
|
|
32148
32094
|
serializer_1.SerializerV3.addValidator(coinlib_core_1.MainProtocolSymbols.AE, new transaction_validator_1.AeternityTransactionValidatorFactory());
|
|
32149
32095
|
|
|
32150
|
-
},{"./protocol/AeternityAddress":
|
|
32096
|
+
},{"./protocol/AeternityAddress":224,"./protocol/AeternityCryptoClient":225,"./protocol/AeternityProtocol":226,"./protocol/AeternityProtocolOptions":227,"./serializer/schemas/v2/transaction-sign-request-aeternity.json":228,"./serializer/schemas/v2/transaction-sign-response-aeternity.json":229,"./serializer/schemas/v3/transaction-sign-request-aeternity.json":230,"./serializer/schemas/v3/transaction-sign-response-aeternity.json":231,"./serializer/validators/transaction-validator":232,"@airgap/coinlib-core":330,"@airgap/serializer":370}],224:[function(require,module,exports){
|
|
32151
32097
|
(function (Buffer){(function (){
|
|
32152
32098
|
"use strict";
|
|
32153
32099
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -32192,7 +32138,7 @@ var AeternityAddress = /** @class */ (function () {
|
|
|
32192
32138
|
exports.AeternityAddress = AeternityAddress;
|
|
32193
32139
|
|
|
32194
32140
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
32195
|
-
},{"@airgap/coinlib-core/dependencies/src/bs58check-2.1.2/index":
|
|
32141
|
+
},{"@airgap/coinlib-core/dependencies/src/bs58check-2.1.2/index":277,"buffer":76}],225:[function(require,module,exports){
|
|
32196
32142
|
(function (Buffer){(function (){
|
|
32197
32143
|
"use strict";
|
|
32198
32144
|
var __extends = (this && this.__extends) || (function () {
|
|
@@ -32290,7 +32236,7 @@ var AeternityCryptoClient = /** @class */ (function (_super) {
|
|
|
32290
32236
|
exports.AeternityCryptoClient = AeternityCryptoClient;
|
|
32291
32237
|
|
|
32292
32238
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
32293
|
-
},{"@airgap/coinlib-core/errors":
|
|
32239
|
+
},{"@airgap/coinlib-core/errors":329,"@airgap/coinlib-core/errors/coinlib-error":328,"@airgap/coinlib-core/protocols/Ed25519CryptoClient":332,"@stablelib/ed25519":2,"buffer":76}],226:[function(require,module,exports){
|
|
32294
32240
|
(function (Buffer){(function (){
|
|
32295
32241
|
"use strict";
|
|
32296
32242
|
var __extends = (this && this.__extends) || (function () {
|
|
@@ -33018,7 +32964,7 @@ var AeternityProtocol = /** @class */ (function (_super) {
|
|
|
33018
32964
|
exports.AeternityProtocol = AeternityProtocol;
|
|
33019
32965
|
|
|
33020
32966
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
33021
|
-
},{"./AeternityAddress":
|
|
32967
|
+
},{"./AeternityAddress":224,"./AeternityCryptoClient":225,"./AeternityProtocolOptions":227,"@airgap/coinlib-core/dependencies/src/axios-0.19.0/index":238,"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":264,"@airgap/coinlib-core/dependencies/src/bip39-2.5.0/index":266,"@airgap/coinlib-core/dependencies/src/bs58check-2.1.2/index":277,"@airgap/coinlib-core/dependencies/src/hd-wallet-js-b216450e56954a6e82ace0aade9474673de5d9d5/src/index":286,"@airgap/coinlib-core/dependencies/src/rlp-2.2.3/index":314,"@airgap/coinlib-core/errors":329,"@airgap/coinlib-core/errors/coinlib-error":328,"@airgap/coinlib-core/protocols/NonExtendedProtocol":334,"@airgap/coinlib-core/utils/ProtocolSymbols":339,"@airgap/coinlib-core/utils/base64Check":341,"@airgap/coinlib-core/utils/hex":343,"@stablelib/ed25519":2,"buffer":76}],227:[function(require,module,exports){
|
|
33022
32968
|
"use strict";
|
|
33023
32969
|
var __extends = (this && this.__extends) || (function () {
|
|
33024
32970
|
var extendStatics = function (d, b) {
|
|
@@ -33128,7 +33074,7 @@ var AeternityProtocolOptions = /** @class */ (function () {
|
|
|
33128
33074
|
}());
|
|
33129
33075
|
exports.AeternityProtocolOptions = AeternityProtocolOptions;
|
|
33130
33076
|
|
|
33131
|
-
},{"@airgap/coinlib-core/utils/ProtocolNetwork":
|
|
33077
|
+
},{"@airgap/coinlib-core/utils/ProtocolNetwork":338}],228:[function(require,module,exports){
|
|
33132
33078
|
module.exports={
|
|
33133
33079
|
"$ref": "#/definitions/UnsignedAeternityTransaction",
|
|
33134
33080
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
@@ -33162,7 +33108,7 @@ module.exports={
|
|
|
33162
33108
|
}
|
|
33163
33109
|
}
|
|
33164
33110
|
|
|
33165
|
-
},{}],
|
|
33111
|
+
},{}],229:[function(require,module,exports){
|
|
33166
33112
|
module.exports={
|
|
33167
33113
|
"$ref": "#/definitions/SignedAeternityTransaction",
|
|
33168
33114
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
@@ -33183,11 +33129,11 @@ module.exports={
|
|
|
33183
33129
|
}
|
|
33184
33130
|
}
|
|
33185
33131
|
|
|
33186
|
-
},{}],
|
|
33132
|
+
},{}],230:[function(require,module,exports){
|
|
33133
|
+
arguments[4][228][0].apply(exports,arguments)
|
|
33134
|
+
},{"dup":228}],231:[function(require,module,exports){
|
|
33187
33135
|
arguments[4][229][0].apply(exports,arguments)
|
|
33188
33136
|
},{"dup":229}],232:[function(require,module,exports){
|
|
33189
|
-
arguments[4][230][0].apply(exports,arguments)
|
|
33190
|
-
},{"dup":230}],233:[function(require,module,exports){
|
|
33191
33137
|
"use strict";
|
|
33192
33138
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
33193
33139
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -33304,7 +33250,7 @@ var AeternityTransactionValidatorFactoryV2 = /** @class */ (function () {
|
|
|
33304
33250
|
}());
|
|
33305
33251
|
exports.AeternityTransactionValidatorFactoryV2 = AeternityTransactionValidatorFactoryV2;
|
|
33306
33252
|
|
|
33307
|
-
},{"@airgap/coinlib-core/dependencies/src/validate.js-0.13.1/validate":
|
|
33253
|
+
},{"@airgap/coinlib-core/dependencies/src/validate.js-0.13.1/validate":327,"@airgap/serializer":370}],233:[function(require,module,exports){
|
|
33308
33254
|
"use strict";
|
|
33309
33255
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
33310
33256
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -33424,7 +33370,7 @@ var Action = /** @class */ (function () {
|
|
|
33424
33370
|
}());
|
|
33425
33371
|
exports.Action = Action;
|
|
33426
33372
|
|
|
33427
|
-
},{"../errors":
|
|
33373
|
+
},{"../errors":329,"../errors/coinlib-error":328,"./StateMachine":237}],234:[function(require,module,exports){
|
|
33428
33374
|
"use strict";
|
|
33429
33375
|
var __extends = (this && this.__extends) || (function () {
|
|
33430
33376
|
var extendStatics = function (d, b) {
|
|
@@ -33520,7 +33466,7 @@ var LinkedAction = /** @class */ (function (_super) {
|
|
|
33520
33466
|
}(Action_1.Action));
|
|
33521
33467
|
exports.LinkedAction = LinkedAction;
|
|
33522
33468
|
|
|
33523
|
-
},{"./Action":
|
|
33469
|
+
},{"./Action":233}],235:[function(require,module,exports){
|
|
33524
33470
|
"use strict";
|
|
33525
33471
|
var __extends = (this && this.__extends) || (function () {
|
|
33526
33472
|
var extendStatics = function (d, b) {
|
|
@@ -33613,7 +33559,7 @@ var RepeatableAction = /** @class */ (function (_super) {
|
|
|
33613
33559
|
}(Action_1.Action));
|
|
33614
33560
|
exports.RepeatableAction = RepeatableAction;
|
|
33615
33561
|
|
|
33616
|
-
},{"./Action":
|
|
33562
|
+
},{"./Action":233}],236:[function(require,module,exports){
|
|
33617
33563
|
"use strict";
|
|
33618
33564
|
var __extends = (this && this.__extends) || (function () {
|
|
33619
33565
|
var extendStatics = function (d, b) {
|
|
@@ -33694,7 +33640,7 @@ var SimpleAction = /** @class */ (function (_super) {
|
|
|
33694
33640
|
}(Action_1.Action));
|
|
33695
33641
|
exports.SimpleAction = SimpleAction;
|
|
33696
33642
|
|
|
33697
|
-
},{"./Action":
|
|
33643
|
+
},{"./Action":233}],237:[function(require,module,exports){
|
|
33698
33644
|
"use strict";
|
|
33699
33645
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
33700
33646
|
exports.StateMachine = void 0;
|
|
@@ -33737,9 +33683,9 @@ var StateMachine = /** @class */ (function () {
|
|
|
33737
33683
|
}());
|
|
33738
33684
|
exports.StateMachine = StateMachine;
|
|
33739
33685
|
|
|
33740
|
-
},{"../errors":
|
|
33686
|
+
},{"../errors":329,"../errors/coinlib-error":328}],238:[function(require,module,exports){
|
|
33741
33687
|
module.exports = require('./lib/axios');
|
|
33742
|
-
},{"./lib/axios":
|
|
33688
|
+
},{"./lib/axios":240}],239:[function(require,module,exports){
|
|
33743
33689
|
'use strict';
|
|
33744
33690
|
|
|
33745
33691
|
var utils = require('./../utils');
|
|
@@ -33915,7 +33861,7 @@ module.exports = function xhrAdapter(config) {
|
|
|
33915
33861
|
});
|
|
33916
33862
|
};
|
|
33917
33863
|
|
|
33918
|
-
},{"../core/createError":
|
|
33864
|
+
},{"../core/createError":246,"./../core/settle":250,"./../helpers/buildURL":254,"./../helpers/cookies":256,"./../helpers/isURLSameOrigin":258,"./../helpers/parseHeaders":260,"./../utils":262}],240:[function(require,module,exports){
|
|
33919
33865
|
'use strict';
|
|
33920
33866
|
|
|
33921
33867
|
var utils = require('./utils');
|
|
@@ -33970,7 +33916,7 @@ module.exports = axios;
|
|
|
33970
33916
|
// Allow use of default import syntax in TypeScript
|
|
33971
33917
|
module.exports.default = axios;
|
|
33972
33918
|
|
|
33973
|
-
},{"./cancel/Cancel":
|
|
33919
|
+
},{"./cancel/Cancel":241,"./cancel/CancelToken":242,"./cancel/isCancel":243,"./core/Axios":244,"./core/mergeConfig":249,"./defaults":252,"./helpers/bind":253,"./helpers/spread":261,"./utils":262}],241:[function(require,module,exports){
|
|
33974
33920
|
'use strict';
|
|
33975
33921
|
|
|
33976
33922
|
/**
|
|
@@ -33991,7 +33937,7 @@ Cancel.prototype.__CANCEL__ = true;
|
|
|
33991
33937
|
|
|
33992
33938
|
module.exports = Cancel;
|
|
33993
33939
|
|
|
33994
|
-
},{}],
|
|
33940
|
+
},{}],242:[function(require,module,exports){
|
|
33995
33941
|
'use strict';
|
|
33996
33942
|
|
|
33997
33943
|
var Cancel = require('./Cancel');
|
|
@@ -34050,14 +33996,14 @@ CancelToken.source = function source() {
|
|
|
34050
33996
|
|
|
34051
33997
|
module.exports = CancelToken;
|
|
34052
33998
|
|
|
34053
|
-
},{"./Cancel":
|
|
33999
|
+
},{"./Cancel":241}],243:[function(require,module,exports){
|
|
34054
34000
|
'use strict';
|
|
34055
34001
|
|
|
34056
34002
|
module.exports = function isCancel(value) {
|
|
34057
34003
|
return !!(value && value.__CANCEL__);
|
|
34058
34004
|
};
|
|
34059
34005
|
|
|
34060
|
-
},{}],
|
|
34006
|
+
},{}],244:[function(require,module,exports){
|
|
34061
34007
|
'use strict';
|
|
34062
34008
|
|
|
34063
34009
|
var utils = require('./../utils');
|
|
@@ -34145,7 +34091,7 @@ utils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {
|
|
|
34145
34091
|
|
|
34146
34092
|
module.exports = Axios;
|
|
34147
34093
|
|
|
34148
|
-
},{"../helpers/buildURL":
|
|
34094
|
+
},{"../helpers/buildURL":254,"./../utils":262,"./InterceptorManager":245,"./dispatchRequest":247,"./mergeConfig":249}],245:[function(require,module,exports){
|
|
34149
34095
|
'use strict';
|
|
34150
34096
|
|
|
34151
34097
|
var utils = require('./../utils');
|
|
@@ -34199,7 +34145,7 @@ InterceptorManager.prototype.forEach = function forEach(fn) {
|
|
|
34199
34145
|
|
|
34200
34146
|
module.exports = InterceptorManager;
|
|
34201
34147
|
|
|
34202
|
-
},{"./../utils":
|
|
34148
|
+
},{"./../utils":262}],246:[function(require,module,exports){
|
|
34203
34149
|
'use strict';
|
|
34204
34150
|
|
|
34205
34151
|
var enhanceError = require('./enhanceError');
|
|
@@ -34219,7 +34165,7 @@ module.exports = function createError(message, config, code, request, response)
|
|
|
34219
34165
|
return enhanceError(error, config, code, request, response);
|
|
34220
34166
|
};
|
|
34221
34167
|
|
|
34222
|
-
},{"./enhanceError":
|
|
34168
|
+
},{"./enhanceError":248}],247:[function(require,module,exports){
|
|
34223
34169
|
'use strict';
|
|
34224
34170
|
|
|
34225
34171
|
var utils = require('./../utils');
|
|
@@ -34307,7 +34253,7 @@ module.exports = function dispatchRequest(config) {
|
|
|
34307
34253
|
});
|
|
34308
34254
|
};
|
|
34309
34255
|
|
|
34310
|
-
},{"../cancel/isCancel":
|
|
34256
|
+
},{"../cancel/isCancel":243,"../defaults":252,"./../helpers/combineURLs":255,"./../helpers/isAbsoluteURL":257,"./../utils":262,"./transformData":251}],248:[function(require,module,exports){
|
|
34311
34257
|
'use strict';
|
|
34312
34258
|
|
|
34313
34259
|
/**
|
|
@@ -34351,7 +34297,7 @@ module.exports = function enhanceError(error, config, code, request, response) {
|
|
|
34351
34297
|
return error;
|
|
34352
34298
|
};
|
|
34353
34299
|
|
|
34354
|
-
},{}],
|
|
34300
|
+
},{}],249:[function(require,module,exports){
|
|
34355
34301
|
'use strict';
|
|
34356
34302
|
|
|
34357
34303
|
var utils = require('../utils');
|
|
@@ -34404,7 +34350,7 @@ module.exports = function mergeConfig(config1, config2) {
|
|
|
34404
34350
|
return config;
|
|
34405
34351
|
};
|
|
34406
34352
|
|
|
34407
|
-
},{"../utils":
|
|
34353
|
+
},{"../utils":262}],250:[function(require,module,exports){
|
|
34408
34354
|
'use strict';
|
|
34409
34355
|
|
|
34410
34356
|
var createError = require('./createError');
|
|
@@ -34431,7 +34377,7 @@ module.exports = function settle(resolve, reject, response) {
|
|
|
34431
34377
|
}
|
|
34432
34378
|
};
|
|
34433
34379
|
|
|
34434
|
-
},{"./createError":
|
|
34380
|
+
},{"./createError":246}],251:[function(require,module,exports){
|
|
34435
34381
|
'use strict';
|
|
34436
34382
|
|
|
34437
34383
|
var utils = require('./../utils');
|
|
@@ -34453,7 +34399,7 @@ module.exports = function transformData(data, headers, fns) {
|
|
|
34453
34399
|
return data;
|
|
34454
34400
|
};
|
|
34455
34401
|
|
|
34456
|
-
},{"./../utils":
|
|
34402
|
+
},{"./../utils":262}],252:[function(require,module,exports){
|
|
34457
34403
|
(function (process){(function (){
|
|
34458
34404
|
'use strict';
|
|
34459
34405
|
|
|
@@ -34555,7 +34501,7 @@ utils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {
|
|
|
34555
34501
|
module.exports = defaults;
|
|
34556
34502
|
|
|
34557
34503
|
}).call(this)}).call(this,require('_process'))
|
|
34558
|
-
},{"./adapters/http":
|
|
34504
|
+
},{"./adapters/http":239,"./adapters/xhr":239,"./helpers/normalizeHeaderName":259,"./utils":262,"_process":180}],253:[function(require,module,exports){
|
|
34559
34505
|
'use strict';
|
|
34560
34506
|
|
|
34561
34507
|
module.exports = function bind(fn, thisArg) {
|
|
@@ -34568,7 +34514,7 @@ module.exports = function bind(fn, thisArg) {
|
|
|
34568
34514
|
};
|
|
34569
34515
|
};
|
|
34570
34516
|
|
|
34571
|
-
},{}],
|
|
34517
|
+
},{}],254:[function(require,module,exports){
|
|
34572
34518
|
'use strict';
|
|
34573
34519
|
|
|
34574
34520
|
var utils = require('./../utils');
|
|
@@ -34641,7 +34587,7 @@ module.exports = function buildURL(url, params, paramsSerializer) {
|
|
|
34641
34587
|
return url;
|
|
34642
34588
|
};
|
|
34643
34589
|
|
|
34644
|
-
},{"./../utils":
|
|
34590
|
+
},{"./../utils":262}],255:[function(require,module,exports){
|
|
34645
34591
|
'use strict';
|
|
34646
34592
|
|
|
34647
34593
|
/**
|
|
@@ -34657,7 +34603,7 @@ module.exports = function combineURLs(baseURL, relativeURL) {
|
|
|
34657
34603
|
: baseURL;
|
|
34658
34604
|
};
|
|
34659
34605
|
|
|
34660
|
-
},{}],
|
|
34606
|
+
},{}],256:[function(require,module,exports){
|
|
34661
34607
|
'use strict';
|
|
34662
34608
|
|
|
34663
34609
|
var utils = require('./../utils');
|
|
@@ -34712,7 +34658,7 @@ module.exports = (
|
|
|
34712
34658
|
})()
|
|
34713
34659
|
);
|
|
34714
34660
|
|
|
34715
|
-
},{"./../utils":
|
|
34661
|
+
},{"./../utils":262}],257:[function(require,module,exports){
|
|
34716
34662
|
'use strict';
|
|
34717
34663
|
|
|
34718
34664
|
/**
|
|
@@ -34728,7 +34674,7 @@ module.exports = function isAbsoluteURL(url) {
|
|
|
34728
34674
|
return /^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(url);
|
|
34729
34675
|
};
|
|
34730
34676
|
|
|
34731
|
-
},{}],
|
|
34677
|
+
},{}],258:[function(require,module,exports){
|
|
34732
34678
|
'use strict';
|
|
34733
34679
|
|
|
34734
34680
|
var utils = require('./../utils');
|
|
@@ -34798,7 +34744,7 @@ module.exports = (
|
|
|
34798
34744
|
})()
|
|
34799
34745
|
);
|
|
34800
34746
|
|
|
34801
|
-
},{"./../utils":
|
|
34747
|
+
},{"./../utils":262}],259:[function(require,module,exports){
|
|
34802
34748
|
'use strict';
|
|
34803
34749
|
|
|
34804
34750
|
var utils = require('../utils');
|
|
@@ -34812,7 +34758,7 @@ module.exports = function normalizeHeaderName(headers, normalizedName) {
|
|
|
34812
34758
|
});
|
|
34813
34759
|
};
|
|
34814
34760
|
|
|
34815
|
-
},{"../utils":
|
|
34761
|
+
},{"../utils":262}],260:[function(require,module,exports){
|
|
34816
34762
|
'use strict';
|
|
34817
34763
|
|
|
34818
34764
|
var utils = require('./../utils');
|
|
@@ -34867,7 +34813,7 @@ module.exports = function parseHeaders(headers) {
|
|
|
34867
34813
|
return parsed;
|
|
34868
34814
|
};
|
|
34869
34815
|
|
|
34870
|
-
},{"./../utils":
|
|
34816
|
+
},{"./../utils":262}],261:[function(require,module,exports){
|
|
34871
34817
|
'use strict';
|
|
34872
34818
|
|
|
34873
34819
|
/**
|
|
@@ -34896,7 +34842,7 @@ module.exports = function spread(callback) {
|
|
|
34896
34842
|
};
|
|
34897
34843
|
};
|
|
34898
34844
|
|
|
34899
|
-
},{}],
|
|
34845
|
+
},{}],262:[function(require,module,exports){
|
|
34900
34846
|
'use strict';
|
|
34901
34847
|
|
|
34902
34848
|
var bind = require('./helpers/bind');
|
|
@@ -35232,7 +35178,7 @@ module.exports = {
|
|
|
35232
35178
|
trim: trim
|
|
35233
35179
|
};
|
|
35234
35180
|
|
|
35235
|
-
},{"../../is-buffer-2.0.3/index":
|
|
35181
|
+
},{"../../is-buffer-2.0.3/index":289,"./helpers/bind":253}],263:[function(require,module,exports){
|
|
35236
35182
|
'use strict'
|
|
35237
35183
|
// base-x encoding / decoding
|
|
35238
35184
|
// Copyright (c) 2018 base-x contributors
|
|
@@ -35354,7 +35300,7 @@ function base (ALPHABET) {
|
|
|
35354
35300
|
}
|
|
35355
35301
|
module.exports = base
|
|
35356
35302
|
|
|
35357
|
-
},{"../../safe-buffer-5.2.0/index":
|
|
35303
|
+
},{"../../safe-buffer-5.2.0/index":315}],264:[function(require,module,exports){
|
|
35358
35304
|
;(function (globalObject) {
|
|
35359
35305
|
'use strict';
|
|
35360
35306
|
|
|
@@ -38258,7 +38204,7 @@ module.exports = base
|
|
|
38258
38204
|
}
|
|
38259
38205
|
})(this);
|
|
38260
38206
|
|
|
38261
|
-
},{}],
|
|
38207
|
+
},{}],265:[function(require,module,exports){
|
|
38262
38208
|
/*
|
|
38263
38209
|
* Bitcoin BIP32 path helpers
|
|
38264
38210
|
* (C) 2016 Alex Beregszaszi
|
|
@@ -38356,7 +38302,7 @@ BIPPath.prototype.inspect = function () {
|
|
|
38356
38302
|
|
|
38357
38303
|
module.exports = BIPPath
|
|
38358
38304
|
|
|
38359
|
-
},{}],
|
|
38305
|
+
},{}],266:[function(require,module,exports){
|
|
38360
38306
|
var Buffer = require('../safe-buffer-5.2.0/index').Buffer
|
|
38361
38307
|
var createHash = require('../create-hash-1.2.0/browser')
|
|
38362
38308
|
var pbkdf2 = require('../pbkdf2-3.0.17/index').pbkdf2Sync
|
|
@@ -38511,7 +38457,7 @@ module.exports = {
|
|
|
38511
38457
|
}
|
|
38512
38458
|
}
|
|
38513
38459
|
|
|
38514
|
-
},{"../create-hash-1.2.0/browser":
|
|
38460
|
+
},{"../create-hash-1.2.0/browser":280,"../pbkdf2-3.0.17/index":307,"../randombytes-2.1.0/browser":312,"../safe-buffer-5.2.0/index":315,"../unorm-1.6.0/lib/unorm":326,"./wordlists/chinese_simplified.json":267,"./wordlists/chinese_traditional.json":268,"./wordlists/english.json":269,"./wordlists/french.json":270,"./wordlists/italian.json":271,"./wordlists/japanese.json":272,"./wordlists/korean.json":273,"./wordlists/spanish.json":274}],267:[function(require,module,exports){
|
|
38515
38461
|
module.exports=[
|
|
38516
38462
|
"的",
|
|
38517
38463
|
"一",
|
|
@@ -40562,7 +40508,7 @@ module.exports=[
|
|
|
40562
40508
|
"矮",
|
|
40563
40509
|
"歇"
|
|
40564
40510
|
]
|
|
40565
|
-
},{}],
|
|
40511
|
+
},{}],268:[function(require,module,exports){
|
|
40566
40512
|
module.exports=[
|
|
40567
40513
|
"的",
|
|
40568
40514
|
"一",
|
|
@@ -42613,7 +42559,7 @@ module.exports=[
|
|
|
42613
42559
|
"矮",
|
|
42614
42560
|
"歇"
|
|
42615
42561
|
]
|
|
42616
|
-
},{}],
|
|
42562
|
+
},{}],269:[function(require,module,exports){
|
|
42617
42563
|
module.exports=[
|
|
42618
42564
|
"abandon",
|
|
42619
42565
|
"ability",
|
|
@@ -44664,7 +44610,7 @@ module.exports=[
|
|
|
44664
44610
|
"zone",
|
|
44665
44611
|
"zoo"
|
|
44666
44612
|
]
|
|
44667
|
-
},{}],
|
|
44613
|
+
},{}],270:[function(require,module,exports){
|
|
44668
44614
|
module.exports=[
|
|
44669
44615
|
"abaisser",
|
|
44670
44616
|
"abandon",
|
|
@@ -46715,7 +46661,7 @@ module.exports=[
|
|
|
46715
46661
|
"zeste",
|
|
46716
46662
|
"zoologie"
|
|
46717
46663
|
]
|
|
46718
|
-
},{}],
|
|
46664
|
+
},{}],271:[function(require,module,exports){
|
|
46719
46665
|
module.exports=[
|
|
46720
46666
|
"abaco",
|
|
46721
46667
|
"abbaglio",
|
|
@@ -48766,7 +48712,7 @@ module.exports=[
|
|
|
48766
48712
|
"zulu",
|
|
48767
48713
|
"zuppa"
|
|
48768
48714
|
]
|
|
48769
|
-
},{}],
|
|
48715
|
+
},{}],272:[function(require,module,exports){
|
|
48770
48716
|
module.exports=[
|
|
48771
48717
|
"あいこくしん",
|
|
48772
48718
|
"あいさつ",
|
|
@@ -50817,7 +50763,7 @@ module.exports=[
|
|
|
50817
50763
|
"わらう",
|
|
50818
50764
|
"われる"
|
|
50819
50765
|
]
|
|
50820
|
-
},{}],
|
|
50766
|
+
},{}],273:[function(require,module,exports){
|
|
50821
50767
|
module.exports=[
|
|
50822
50768
|
"가격",
|
|
50823
50769
|
"가끔",
|
|
@@ -52868,7 +52814,7 @@ module.exports=[
|
|
|
52868
52814
|
"흰색",
|
|
52869
52815
|
"힘껏"
|
|
52870
52816
|
]
|
|
52871
|
-
},{}],
|
|
52817
|
+
},{}],274:[function(require,module,exports){
|
|
52872
52818
|
module.exports=[
|
|
52873
52819
|
"ábaco",
|
|
52874
52820
|
"abdomen",
|
|
@@ -54919,13 +54865,13 @@ module.exports=[
|
|
|
54919
54865
|
"zumo",
|
|
54920
54866
|
"zurdo"
|
|
54921
54867
|
]
|
|
54922
|
-
},{}],
|
|
54868
|
+
},{}],275:[function(require,module,exports){
|
|
54923
54869
|
var basex = require('../base-x-3.0.7/src/index')
|
|
54924
54870
|
var ALPHABET = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz'
|
|
54925
54871
|
|
|
54926
54872
|
module.exports = basex(ALPHABET)
|
|
54927
54873
|
|
|
54928
|
-
},{"../base-x-3.0.7/src/index":
|
|
54874
|
+
},{"../base-x-3.0.7/src/index":263}],276:[function(require,module,exports){
|
|
54929
54875
|
'use strict'
|
|
54930
54876
|
|
|
54931
54877
|
var base58 = require('../bs58-4.0.1/index')
|
|
@@ -54977,7 +54923,7 @@ module.exports = function (checksumFn) {
|
|
|
54977
54923
|
}
|
|
54978
54924
|
}
|
|
54979
54925
|
|
|
54980
|
-
},{"../bs58-4.0.1/index":
|
|
54926
|
+
},{"../bs58-4.0.1/index":275,"../safe-buffer-5.2.0/index":315}],277:[function(require,module,exports){
|
|
54981
54927
|
'use strict'
|
|
54982
54928
|
|
|
54983
54929
|
var createHash = require('../create-hash-1.2.0/browser')
|
|
@@ -54991,7 +54937,7 @@ function sha256x2 (buffer) {
|
|
|
54991
54937
|
|
|
54992
54938
|
module.exports = bs58checkBase(sha256x2)
|
|
54993
54939
|
|
|
54994
|
-
},{"../create-hash-1.2.0/browser":
|
|
54940
|
+
},{"../create-hash-1.2.0/browser":280,"./base":276}],278:[function(require,module,exports){
|
|
54995
54941
|
(function (Buffer){(function (){
|
|
54996
54942
|
;(function (global, factory) {
|
|
54997
54943
|
if (typeof define === 'function' && define.amd) {
|
|
@@ -55627,7 +55573,7 @@ module.exports = bs58checkBase(sha256x2)
|
|
|
55627
55573
|
})
|
|
55628
55574
|
|
|
55629
55575
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
55630
|
-
},{"buffer":76}],
|
|
55576
|
+
},{"buffer":76}],279:[function(require,module,exports){
|
|
55631
55577
|
var Buffer = require('../safe-buffer-5.2.0/index').Buffer
|
|
55632
55578
|
var Transform = require('stream').Transform
|
|
55633
55579
|
var StringDecoder = require('string_decoder').StringDecoder
|
|
@@ -55728,7 +55674,7 @@ CipherBase.prototype._toString = function (value, enc, fin) {
|
|
|
55728
55674
|
|
|
55729
55675
|
module.exports = CipherBase
|
|
55730
55676
|
|
|
55731
|
-
},{"../inherits-2.0.4/inherits":
|
|
55677
|
+
},{"../inherits-2.0.4/inherits":287,"../safe-buffer-5.2.0/index":315,"stream":201,"string_decoder":216}],280:[function(require,module,exports){
|
|
55732
55678
|
'use strict'
|
|
55733
55679
|
var inherits = require('../inherits-2.0.4/inherits')
|
|
55734
55680
|
var MD5 = require('../md5.js-1.3.5/index')
|
|
@@ -55760,10 +55706,10 @@ module.exports = function createHash (alg) {
|
|
|
55760
55706
|
return new Hash(sha(alg))
|
|
55761
55707
|
}
|
|
55762
55708
|
|
|
55763
|
-
},{"../cipher-base-1.0.4/index":
|
|
55709
|
+
},{"../cipher-base-1.0.4/index":279,"../inherits-2.0.4/inherits":287,"../md5.js-1.3.5/index":290,"../ripemd160-2.0.2/index":313,"../sha.js-2.4.11/index":317}],281:[function(require,module,exports){
|
|
55764
55710
|
module.exports = require('crypto').createHash
|
|
55765
55711
|
|
|
55766
|
-
},{"crypto":87}],
|
|
55712
|
+
},{"crypto":87}],282:[function(require,module,exports){
|
|
55767
55713
|
(function (Buffer){(function (){
|
|
55768
55714
|
'use strict';
|
|
55769
55715
|
var createHash = require('../create-hash-1.2.0/browser')
|
|
@@ -55835,7 +55781,7 @@ module.exports = function createHmac(alg, key) {
|
|
|
55835
55781
|
}
|
|
55836
55782
|
|
|
55837
55783
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
55838
|
-
},{"../create-hash-1.2.0/browser":
|
|
55784
|
+
},{"../create-hash-1.2.0/browser":280,"../inherits-2.0.4/inherits":287,"buffer":76,"stream":201}],283:[function(require,module,exports){
|
|
55839
55785
|
'use strict'
|
|
55840
55786
|
var Buffer = require('../safe-buffer-5.2.0/index').Buffer
|
|
55841
55787
|
var Transform = require('stream').Transform
|
|
@@ -55932,7 +55878,7 @@ HashBase.prototype._digest = function () {
|
|
|
55932
55878
|
|
|
55933
55879
|
module.exports = HashBase
|
|
55934
55880
|
|
|
55935
|
-
},{"../inherits-2.0.4/inherits":
|
|
55881
|
+
},{"../inherits-2.0.4/inherits":287,"../safe-buffer-5.2.0/index":315,"stream":201}],284:[function(require,module,exports){
|
|
55936
55882
|
(function (Buffer){(function (){
|
|
55937
55883
|
"use strict";
|
|
55938
55884
|
/*
|
|
@@ -56036,7 +55982,7 @@ function derivePathFromSeed(path, seed) {
|
|
|
56036
55982
|
exports.derivePathFromSeed = derivePathFromSeed;
|
|
56037
55983
|
|
|
56038
55984
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
56039
|
-
},{"../../bip32-path-0.4.2/index":
|
|
55985
|
+
},{"../../bip32-path-0.4.2/index":265,"../../tweetnacl-1.0.1/nacl":324,"../../tweetnacl-auth-1.0.1/nacl-auth":325,"buffer":76}],285:[function(require,module,exports){
|
|
56040
55986
|
"use strict";
|
|
56041
55987
|
/*
|
|
56042
55988
|
* ISC License (ISC)
|
|
@@ -56074,7 +56020,7 @@ function getHDWalletAccounts(wallet, accountCount) {
|
|
|
56074
56020
|
}
|
|
56075
56021
|
exports.getHDWalletAccounts = getHDWalletAccounts;
|
|
56076
56022
|
|
|
56077
|
-
},{"./hd-key":
|
|
56023
|
+
},{"./hd-key":284}],286:[function(require,module,exports){
|
|
56078
56024
|
"use strict";
|
|
56079
56025
|
/*
|
|
56080
56026
|
* ISC License (ISC)
|
|
@@ -56109,7 +56055,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
56109
56055
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
56110
56056
|
__exportStar(require("./hd-wallet"), exports);
|
|
56111
56057
|
|
|
56112
|
-
},{"./hd-wallet":
|
|
56058
|
+
},{"./hd-wallet":285}],287:[function(require,module,exports){
|
|
56113
56059
|
try {
|
|
56114
56060
|
var util = require('util');
|
|
56115
56061
|
/* istanbul ignore next */
|
|
@@ -56120,9 +56066,9 @@ try {
|
|
|
56120
56066
|
module.exports = require('./inherits_browser.js');
|
|
56121
56067
|
}
|
|
56122
56068
|
|
|
56123
|
-
},{"./inherits_browser.js":
|
|
56069
|
+
},{"./inherits_browser.js":288,"util":220}],288:[function(require,module,exports){
|
|
56124
56070
|
arguments[4][157][0].apply(exports,arguments)
|
|
56125
|
-
},{"dup":157}],
|
|
56071
|
+
},{"dup":157}],289:[function(require,module,exports){
|
|
56126
56072
|
/*!
|
|
56127
56073
|
* Determine if an object is a Buffer
|
|
56128
56074
|
*
|
|
@@ -56135,7 +56081,7 @@ module.exports = function isBuffer (obj) {
|
|
|
56135
56081
|
typeof obj.constructor.isBuffer === 'function' && obj.constructor.isBuffer(obj)
|
|
56136
56082
|
}
|
|
56137
56083
|
|
|
56138
|
-
},{}],
|
|
56084
|
+
},{}],290:[function(require,module,exports){
|
|
56139
56085
|
'use strict'
|
|
56140
56086
|
var inherits = require('../inherits-2.0.4/inherits')
|
|
56141
56087
|
var HashBase = require('../hash-base-3.0.4/index')
|
|
@@ -56283,7 +56229,7 @@ function fnI (a, b, c, d, m, k, s) {
|
|
|
56283
56229
|
|
|
56284
56230
|
module.exports = MD5
|
|
56285
56231
|
|
|
56286
|
-
},{"../hash-base-3.0.4/index":
|
|
56232
|
+
},{"../hash-base-3.0.4/index":283,"../inherits-2.0.4/inherits":287,"../safe-buffer-5.2.0/index":315}],291:[function(require,module,exports){
|
|
56287
56233
|
// Top level file is just a mixin of submodules & constants
|
|
56288
56234
|
'use strict'
|
|
56289
56235
|
|
|
@@ -56303,7 +56249,7 @@ module.exports.inflateRaw = inflateRaw
|
|
|
56303
56249
|
module.exports.ungzip = ungzip
|
|
56304
56250
|
module.exports.constants = constants
|
|
56305
56251
|
|
|
56306
|
-
},{"./lib/deflate":
|
|
56252
|
+
},{"./lib/deflate":292,"./lib/inflate":293,"./lib/zlib/constants":297}],292:[function(require,module,exports){
|
|
56307
56253
|
'use strict'
|
|
56308
56254
|
|
|
56309
56255
|
const zlib_deflate = require('./zlib/deflate')
|
|
@@ -56678,7 +56624,7 @@ module.exports.deflateRaw = deflateRaw
|
|
|
56678
56624
|
module.exports.gzip = gzip
|
|
56679
56625
|
module.exports.constants = require('./zlib/constants')
|
|
56680
56626
|
|
|
56681
|
-
},{"./utils/common":
|
|
56627
|
+
},{"./utils/common":294,"./utils/strings":295,"./zlib/constants":297,"./zlib/deflate":299,"./zlib/messages":304,"./zlib/zstream":306}],293:[function(require,module,exports){
|
|
56682
56628
|
'use strict'
|
|
56683
56629
|
|
|
56684
56630
|
const zlib_inflate = require('./zlib/inflate')
|
|
@@ -57082,7 +57028,7 @@ module.exports.inflateRaw = inflateRaw
|
|
|
57082
57028
|
module.exports.ungzip = inflate
|
|
57083
57029
|
module.exports.constants = require('./zlib/constants')
|
|
57084
57030
|
|
|
57085
|
-
},{"./utils/common":
|
|
57031
|
+
},{"./utils/common":294,"./utils/strings":295,"./zlib/constants":297,"./zlib/gzheader":300,"./zlib/inflate":302,"./zlib/messages":304,"./zlib/zstream":306}],294:[function(require,module,exports){
|
|
57086
57032
|
'use strict'
|
|
57087
57033
|
|
|
57088
57034
|
const _has = (obj, key) => {
|
|
@@ -57132,7 +57078,7 @@ module.exports.flattenChunks = (chunks) => {
|
|
|
57132
57078
|
return result
|
|
57133
57079
|
}
|
|
57134
57080
|
|
|
57135
|
-
},{}],
|
|
57081
|
+
},{}],295:[function(require,module,exports){
|
|
57136
57082
|
// String encode/decode helpers
|
|
57137
57083
|
'use strict'
|
|
57138
57084
|
|
|
@@ -57321,7 +57267,7 @@ module.exports.utf8border = (buf, max) => {
|
|
|
57321
57267
|
return pos + _utf8len[buf[pos]] > max ? pos : max
|
|
57322
57268
|
}
|
|
57323
57269
|
|
|
57324
|
-
},{}],
|
|
57270
|
+
},{}],296:[function(require,module,exports){
|
|
57325
57271
|
'use strict'
|
|
57326
57272
|
|
|
57327
57273
|
// Note: adler32 takes 12% for level 0 and 2% for level 6.
|
|
@@ -57373,7 +57319,7 @@ const adler32 = (adler, buf, len, pos) => {
|
|
|
57373
57319
|
|
|
57374
57320
|
module.exports = adler32
|
|
57375
57321
|
|
|
57376
|
-
},{}],
|
|
57322
|
+
},{}],297:[function(require,module,exports){
|
|
57377
57323
|
'use strict'
|
|
57378
57324
|
|
|
57379
57325
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -57441,7 +57387,7 @@ module.exports = {
|
|
|
57441
57387
|
//Z_NULL: null // Use -1 or null inline, depending on var type
|
|
57442
57388
|
}
|
|
57443
57389
|
|
|
57444
|
-
},{}],
|
|
57390
|
+
},{}],298:[function(require,module,exports){
|
|
57445
57391
|
'use strict'
|
|
57446
57392
|
|
|
57447
57393
|
// Note: we can't get significant speed boost here.
|
|
@@ -57501,7 +57447,7 @@ const crc32 = (crc, buf, len, pos) => {
|
|
|
57501
57447
|
|
|
57502
57448
|
module.exports = crc32
|
|
57503
57449
|
|
|
57504
|
-
},{}],
|
|
57450
|
+
},{}],299:[function(require,module,exports){
|
|
57505
57451
|
'use strict'
|
|
57506
57452
|
|
|
57507
57453
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -59352,7 +59298,7 @@ module.exports.deflatePrime = deflatePrime;
|
|
|
59352
59298
|
module.exports.deflateTune = deflateTune;
|
|
59353
59299
|
*/
|
|
59354
59300
|
|
|
59355
|
-
},{"./adler32":
|
|
59301
|
+
},{"./adler32":296,"./constants":297,"./crc32":298,"./messages":304,"./trees":305}],300:[function(require,module,exports){
|
|
59356
59302
|
'use strict'
|
|
59357
59303
|
|
|
59358
59304
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -59412,7 +59358,7 @@ function GZheader() {
|
|
|
59412
59358
|
|
|
59413
59359
|
module.exports = GZheader
|
|
59414
59360
|
|
|
59415
|
-
},{}],
|
|
59361
|
+
},{}],301:[function(require,module,exports){
|
|
59416
59362
|
'use strict'
|
|
59417
59363
|
|
|
59418
59364
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -59761,7 +59707,7 @@ module.exports = function inflate_fast(strm, start) {
|
|
|
59761
59707
|
return
|
|
59762
59708
|
}
|
|
59763
59709
|
|
|
59764
|
-
},{}],
|
|
59710
|
+
},{}],302:[function(require,module,exports){
|
|
59765
59711
|
'use strict'
|
|
59766
59712
|
|
|
59767
59713
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -61388,7 +61334,7 @@ module.exports.inflateSyncPoint = inflateSyncPoint;
|
|
|
61388
61334
|
module.exports.inflateUndermine = inflateUndermine;
|
|
61389
61335
|
*/
|
|
61390
61336
|
|
|
61391
|
-
},{"./adler32":
|
|
61337
|
+
},{"./adler32":296,"./constants":297,"./crc32":298,"./inffast":301,"./inftrees":303}],303:[function(require,module,exports){
|
|
61392
61338
|
'use strict'
|
|
61393
61339
|
|
|
61394
61340
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -61852,7 +61798,7 @@ const inflate_table = (type, lens, lens_index, codes, table, table_index, work,
|
|
|
61852
61798
|
|
|
61853
61799
|
module.exports = inflate_table
|
|
61854
61800
|
|
|
61855
|
-
},{}],
|
|
61801
|
+
},{}],304:[function(require,module,exports){
|
|
61856
61802
|
'use strict'
|
|
61857
61803
|
|
|
61858
61804
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -61886,7 +61832,7 @@ module.exports = {
|
|
|
61886
61832
|
'-6': 'incompatible version' /* Z_VERSION_ERROR (-6) */
|
|
61887
61833
|
}
|
|
61888
61834
|
|
|
61889
|
-
},{}],
|
|
61835
|
+
},{}],305:[function(require,module,exports){
|
|
61890
61836
|
'use strict'
|
|
61891
61837
|
|
|
61892
61838
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -63080,7 +63026,7 @@ module.exports._tr_flush_block = _tr_flush_block
|
|
|
63080
63026
|
module.exports._tr_tally = _tr_tally
|
|
63081
63027
|
module.exports._tr_align = _tr_align
|
|
63082
63028
|
|
|
63083
|
-
},{}],
|
|
63029
|
+
},{}],306:[function(require,module,exports){
|
|
63084
63030
|
'use strict'
|
|
63085
63031
|
|
|
63086
63032
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -63129,7 +63075,7 @@ function ZStream() {
|
|
|
63129
63075
|
|
|
63130
63076
|
module.exports = ZStream
|
|
63131
63077
|
|
|
63132
|
-
},{}],
|
|
63078
|
+
},{}],307:[function(require,module,exports){
|
|
63133
63079
|
var checkParameters = require('./lib/precondition')
|
|
63134
63080
|
var native = require('crypto')
|
|
63135
63081
|
|
|
@@ -63162,7 +63108,7 @@ if (!native.pbkdf2Sync || native.pbkdf2Sync.toString().indexOf('keylen, digest')
|
|
|
63162
63108
|
exports.pbkdf2 = nativePBKDF2
|
|
63163
63109
|
}
|
|
63164
63110
|
|
|
63165
|
-
},{"./lib/async":
|
|
63111
|
+
},{"./lib/async":308,"./lib/precondition":310,"./lib/sync":311,"crypto":87}],308:[function(require,module,exports){
|
|
63166
63112
|
(function (process,global){(function (){
|
|
63167
63113
|
var checkParameters = require('./precondition')
|
|
63168
63114
|
var defaultEncoding = require('./default-encoding')
|
|
@@ -63266,7 +63212,7 @@ module.exports = function (password, salt, iterations, keylen, digest, callback)
|
|
|
63266
63212
|
}
|
|
63267
63213
|
|
|
63268
63214
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
63269
|
-
},{"../../safe-buffer-5.2.0/index":
|
|
63215
|
+
},{"../../safe-buffer-5.2.0/index":315,"./default-encoding":309,"./precondition":310,"./sync":311,"_process":180}],309:[function(require,module,exports){
|
|
63270
63216
|
(function (process){(function (){
|
|
63271
63217
|
var defaultEncoding
|
|
63272
63218
|
/* istanbul ignore next */
|
|
@@ -63280,7 +63226,7 @@ if (process.browser) {
|
|
|
63280
63226
|
module.exports = defaultEncoding
|
|
63281
63227
|
|
|
63282
63228
|
}).call(this)}).call(this,require('_process'))
|
|
63283
|
-
},{"_process":180}],
|
|
63229
|
+
},{"_process":180}],310:[function(require,module,exports){
|
|
63284
63230
|
(function (Buffer){(function (){
|
|
63285
63231
|
var MAX_ALLOC = Math.pow(2, 30) - 1 // default in iojs
|
|
63286
63232
|
|
|
@@ -63311,8 +63257,8 @@ module.exports = function (password, salt, iterations, keylen) {
|
|
|
63311
63257
|
}
|
|
63312
63258
|
}
|
|
63313
63259
|
|
|
63314
|
-
}).call(this)}).call(this,{"isBuffer":require("../../../../../../../node_modules/is-buffer/index.js")})
|
|
63315
|
-
},{"../../../../../../../node_modules/is-buffer/index.js":
|
|
63260
|
+
}).call(this)}).call(this,{"isBuffer":require("../../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js")})
|
|
63261
|
+
},{"../../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js":158}],311:[function(require,module,exports){
|
|
63316
63262
|
var sizes = {
|
|
63317
63263
|
md5: 16,
|
|
63318
63264
|
sha1: 20,
|
|
@@ -63365,7 +63311,7 @@ function pbkdf2 (password, salt, iterations, keylen, digest) {
|
|
|
63365
63311
|
|
|
63366
63312
|
module.exports = pbkdf2
|
|
63367
63313
|
|
|
63368
|
-
},{"../../create-hmac-1.1.4/browser":
|
|
63314
|
+
},{"../../create-hmac-1.1.4/browser":282,"../../safe-buffer-5.2.0/index":315,"../lib/default-encoding":309,"../lib/precondition":310}],312:[function(require,module,exports){
|
|
63369
63315
|
(function (process,global){(function (){
|
|
63370
63316
|
'use strict'
|
|
63371
63317
|
|
|
@@ -63419,7 +63365,7 @@ function randomBytes (size, cb) {
|
|
|
63419
63365
|
}
|
|
63420
63366
|
|
|
63421
63367
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
63422
|
-
},{"../safe-buffer-5.2.0/index":
|
|
63368
|
+
},{"../safe-buffer-5.2.0/index":315,"_process":180}],313:[function(require,module,exports){
|
|
63423
63369
|
'use strict'
|
|
63424
63370
|
var Buffer = require('buffer').Buffer
|
|
63425
63371
|
var inherits = require('../inherits-2.0.4/inherits')
|
|
@@ -63584,7 +63530,7 @@ function fn5 (a, b, c, d, e, m, k, s) {
|
|
|
63584
63530
|
|
|
63585
63531
|
module.exports = RIPEMD160
|
|
63586
63532
|
|
|
63587
|
-
},{"../hash-base-3.0.4/index":
|
|
63533
|
+
},{"../hash-base-3.0.4/index":283,"../inherits-2.0.4/inherits":287,"buffer":76}],314:[function(require,module,exports){
|
|
63588
63534
|
const assert = require('assert')
|
|
63589
63535
|
const Buffer = require('../safe-buffer-5.2.0/index').Buffer
|
|
63590
63536
|
/**
|
|
@@ -63816,7 +63762,7 @@ function toBuffer (v) {
|
|
|
63816
63762
|
return v
|
|
63817
63763
|
}
|
|
63818
63764
|
|
|
63819
|
-
},{"../safe-buffer-5.2.0/index":
|
|
63765
|
+
},{"../safe-buffer-5.2.0/index":315,"assert":25}],315:[function(require,module,exports){
|
|
63820
63766
|
/* eslint-disable node/no-deprecated-api */
|
|
63821
63767
|
var buffer = require('buffer')
|
|
63822
63768
|
var Buffer = buffer.Buffer
|
|
@@ -63882,7 +63828,7 @@ SafeBuffer.allocUnsafeSlow = function (size) {
|
|
|
63882
63828
|
return buffer.SlowBuffer(size)
|
|
63883
63829
|
}
|
|
63884
63830
|
|
|
63885
|
-
},{"buffer":76}],
|
|
63831
|
+
},{"buffer":76}],316:[function(require,module,exports){
|
|
63886
63832
|
var Buffer = require('../safe-buffer-5.2.0/index').Buffer
|
|
63887
63833
|
|
|
63888
63834
|
// prototype class for hash functions
|
|
@@ -63965,7 +63911,7 @@ Hash.prototype._update = function () {
|
|
|
63965
63911
|
|
|
63966
63912
|
module.exports = Hash
|
|
63967
63913
|
|
|
63968
|
-
},{"../safe-buffer-5.2.0/index":
|
|
63914
|
+
},{"../safe-buffer-5.2.0/index":315}],317:[function(require,module,exports){
|
|
63969
63915
|
'use strict'
|
|
63970
63916
|
var exports = (module.exports = function SHA(algorithm) {
|
|
63971
63917
|
algorithm = algorithm.toLowerCase()
|
|
@@ -63983,7 +63929,7 @@ exports.sha256 = require('./sha256')
|
|
|
63983
63929
|
exports.sha384 = require('./sha384')
|
|
63984
63930
|
exports.sha512 = require('./sha512')
|
|
63985
63931
|
|
|
63986
|
-
},{"./sha":
|
|
63932
|
+
},{"./sha":318,"./sha1":319,"./sha224":320,"./sha256":321,"./sha384":322,"./sha512":323}],318:[function(require,module,exports){
|
|
63987
63933
|
/*
|
|
63988
63934
|
* A JavaScript implementation of the Secure Hash Algorithm, SHA-0, as defined
|
|
63989
63935
|
* in FIPS PUB 180-1
|
|
@@ -64079,7 +64025,7 @@ Sha.prototype._hash = function () {
|
|
|
64079
64025
|
|
|
64080
64026
|
module.exports = Sha
|
|
64081
64027
|
|
|
64082
|
-
},{"../inherits-2.0.4/inherits":
|
|
64028
|
+
},{"../inherits-2.0.4/inherits":287,"../safe-buffer-5.2.0/index":315,"./hash":316}],319:[function(require,module,exports){
|
|
64083
64029
|
/*
|
|
64084
64030
|
* A JavaScript implementation of the Secure Hash Algorithm, SHA-1, as defined
|
|
64085
64031
|
* in FIPS PUB 180-1
|
|
@@ -64180,7 +64126,7 @@ Sha1.prototype._hash = function () {
|
|
|
64180
64126
|
|
|
64181
64127
|
module.exports = Sha1
|
|
64182
64128
|
|
|
64183
|
-
},{"../inherits-2.0.4/inherits":
|
|
64129
|
+
},{"../inherits-2.0.4/inherits":287,"../safe-buffer-5.2.0/index":315,"./hash":316}],320:[function(require,module,exports){
|
|
64184
64130
|
/**
|
|
64185
64131
|
* A JavaScript implementation of the Secure Hash Algorithm, SHA-256, as defined
|
|
64186
64132
|
* in FIPS 180-2
|
|
@@ -64235,7 +64181,7 @@ Sha224.prototype._hash = function () {
|
|
|
64235
64181
|
|
|
64236
64182
|
module.exports = Sha224
|
|
64237
64183
|
|
|
64238
|
-
},{"../inherits-2.0.4/inherits":
|
|
64184
|
+
},{"../inherits-2.0.4/inherits":287,"../safe-buffer-5.2.0/index":315,"./hash":316,"./sha256":321}],321:[function(require,module,exports){
|
|
64239
64185
|
/**
|
|
64240
64186
|
* A JavaScript implementation of the Secure Hash Algorithm, SHA-256, as defined
|
|
64241
64187
|
* in FIPS 180-2
|
|
@@ -64372,7 +64318,7 @@ Sha256.prototype._hash = function () {
|
|
|
64372
64318
|
|
|
64373
64319
|
module.exports = Sha256
|
|
64374
64320
|
|
|
64375
|
-
},{"../inherits-2.0.4/inherits":
|
|
64321
|
+
},{"../inherits-2.0.4/inherits":287,"../safe-buffer-5.2.0/index":315,"./hash":316}],322:[function(require,module,exports){
|
|
64376
64322
|
var inherits = require('../inherits-2.0.4/inherits')
|
|
64377
64323
|
var SHA512 = require('./sha512')
|
|
64378
64324
|
var Hash = require('./hash')
|
|
@@ -64431,7 +64377,7 @@ Sha384.prototype._hash = function () {
|
|
|
64431
64377
|
|
|
64432
64378
|
module.exports = Sha384
|
|
64433
64379
|
|
|
64434
|
-
},{"../inherits-2.0.4/inherits":
|
|
64380
|
+
},{"../inherits-2.0.4/inherits":287,"../safe-buffer-5.2.0/index":315,"./hash":316,"./sha512":323}],323:[function(require,module,exports){
|
|
64435
64381
|
var inherits = require('../inherits-2.0.4/inherits')
|
|
64436
64382
|
var Hash = require('./hash')
|
|
64437
64383
|
var Buffer = require('../safe-buffer-5.2.0/index').Buffer
|
|
@@ -64693,7 +64639,7 @@ Sha512.prototype._hash = function () {
|
|
|
64693
64639
|
|
|
64694
64640
|
module.exports = Sha512
|
|
64695
64641
|
|
|
64696
|
-
},{"../inherits-2.0.4/inherits":
|
|
64642
|
+
},{"../inherits-2.0.4/inherits":287,"../safe-buffer-5.2.0/index":315,"./hash":316}],324:[function(require,module,exports){
|
|
64697
64643
|
(function(nacl) {
|
|
64698
64644
|
'use strict';
|
|
64699
64645
|
|
|
@@ -65859,7 +65805,7 @@ nacl.setPRNG = function(fn) {
|
|
|
65859
65805
|
|
|
65860
65806
|
})(typeof module !== 'undefined' && module.exports ? module.exports : (self.nacl = self.nacl || {}));
|
|
65861
65807
|
|
|
65862
|
-
},{"crypto":87}],
|
|
65808
|
+
},{"crypto":87}],325:[function(require,module,exports){
|
|
65863
65809
|
(function(root, f) {
|
|
65864
65810
|
'use strict';
|
|
65865
65811
|
if (typeof module !== 'undefined' && module.exports) module.exports = f(require('../tweetnacl-1.0.1/nacl'));
|
|
@@ -65908,7 +65854,7 @@ nacl.setPRNG = function(fn) {
|
|
|
65908
65854
|
|
|
65909
65855
|
}));
|
|
65910
65856
|
|
|
65911
|
-
},{"../tweetnacl-1.0.1/nacl":
|
|
65857
|
+
},{"../tweetnacl-1.0.1/nacl":324}],326:[function(require,module,exports){
|
|
65912
65858
|
(function (root) {
|
|
65913
65859
|
"use strict";
|
|
65914
65860
|
|
|
@@ -66362,7 +66308,7 @@ UChar.udata={
|
|
|
66362
66308
|
}
|
|
66363
66309
|
}(this));
|
|
66364
66310
|
|
|
66365
|
-
},{}],
|
|
66311
|
+
},{}],327:[function(require,module,exports){
|
|
66366
66312
|
/*!
|
|
66367
66313
|
* validate.js 0.13.1
|
|
66368
66314
|
*
|
|
@@ -67617,7 +67563,7 @@ UChar.udata={
|
|
|
67617
67563
|
typeof module !== 'undefined' ? /* istanbul ignore next */ module : null,
|
|
67618
67564
|
typeof define !== 'undefined' ? /* istanbul ignore next */ define : null);
|
|
67619
67565
|
|
|
67620
|
-
},{}],
|
|
67566
|
+
},{}],328:[function(require,module,exports){
|
|
67621
67567
|
"use strict";
|
|
67622
67568
|
var __extends = (this && this.__extends) || (function () {
|
|
67623
67569
|
var extendStatics = function (d, b) {
|
|
@@ -67652,6 +67598,7 @@ var Domain;
|
|
|
67652
67598
|
Domain["TEZOSFA"] = "TEZOSFA";
|
|
67653
67599
|
Domain["UTILS"] = "UTILS";
|
|
67654
67600
|
Domain["ACTIONS"] = "ACTIONS";
|
|
67601
|
+
Domain["ICP"] = "ICP";
|
|
67655
67602
|
})(Domain = exports.Domain || (exports.Domain = {}));
|
|
67656
67603
|
var CoinlibError = /** @class */ (function (_super) {
|
|
67657
67604
|
__extends(CoinlibError, _super);
|
|
@@ -67679,7 +67626,7 @@ var CoinlibAssertionError = /** @class */ (function (_super) {
|
|
|
67679
67626
|
}(Error));
|
|
67680
67627
|
exports.CoinlibAssertionError = CoinlibAssertionError;
|
|
67681
67628
|
|
|
67682
|
-
},{}],
|
|
67629
|
+
},{}],329:[function(require,module,exports){
|
|
67683
67630
|
"use strict";
|
|
67684
67631
|
var __extends = (this && this.__extends) || (function () {
|
|
67685
67632
|
var extendStatics = function (d, b) {
|
|
@@ -67961,7 +67908,7 @@ var InvalidString = /** @class */ (function (_super) {
|
|
|
67961
67908
|
}(SerializerError));
|
|
67962
67909
|
exports.InvalidString = InvalidString;
|
|
67963
67910
|
|
|
67964
|
-
},{"./coinlib-error":
|
|
67911
|
+
},{"./coinlib-error":328}],330:[function(require,module,exports){
|
|
67965
67912
|
"use strict";
|
|
67966
67913
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
67967
67914
|
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;
|
|
@@ -68020,7 +67967,7 @@ var AirGapWallet_1 = require("./wallet/AirGapWallet");
|
|
|
68020
67967
|
Object.defineProperty(exports, "AirGapWallet", { enumerable: true, get: function () { return AirGapWallet_1.AirGapWallet; } });
|
|
68021
67968
|
Object.defineProperty(exports, "AirGapWalletStatus", { enumerable: true, get: function () { return AirGapWallet_1.AirGapWalletStatus; } });
|
|
68022
67969
|
|
|
68023
|
-
},{"./actions/Action":
|
|
67970
|
+
},{"./actions/Action":233,"./actions/LinkedAction":234,"./actions/RepeatableAction":235,"./actions/SimpleAction":236,"./errors":329,"./errors/coinlib-error":328,"./protocols/CryptoClient":331,"./protocols/ICoinSubProtocol":333,"./utils/Network":336,"./utils/ProtocolBlockExplorer":337,"./utils/ProtocolNetwork":338,"./utils/ProtocolSymbols":339,"./utils/assert":340,"./utils/buffer":342,"./utils/interfaces":344,"./wallet/AirGapCoinWallet":346,"./wallet/AirGapMarketWallet":347,"./wallet/AirGapNFTWallet":348,"./wallet/AirGapWallet":349}],331:[function(require,module,exports){
|
|
68024
67971
|
"use strict";
|
|
68025
67972
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
68026
67973
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -68105,7 +68052,7 @@ var CryptoClient = /** @class */ (function () {
|
|
|
68105
68052
|
}());
|
|
68106
68053
|
exports.CryptoClient = CryptoClient;
|
|
68107
68054
|
|
|
68108
|
-
},{"../errors":
|
|
68055
|
+
},{"../errors":329,"../errors/coinlib-error":328,"../utils/AES":335}],332:[function(require,module,exports){
|
|
68109
68056
|
(function (Buffer){(function (){
|
|
68110
68057
|
"use strict";
|
|
68111
68058
|
var __extends = (this && this.__extends) || (function () {
|
|
@@ -68215,7 +68162,7 @@ var Ed25519CryptoClient = /** @class */ (function (_super) {
|
|
|
68215
68162
|
exports.Ed25519CryptoClient = Ed25519CryptoClient;
|
|
68216
68163
|
|
|
68217
68164
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
68218
|
-
},{"../utils/hex":
|
|
68165
|
+
},{"../utils/hex":343,"./CryptoClient":331,"@stablelib/blake2b":351,"@stablelib/bytes":352,"@stablelib/ed25519":354,"@stablelib/nacl":357,"@stablelib/utf8":366,"buffer":76}],333:[function(require,module,exports){
|
|
68219
68166
|
"use strict";
|
|
68220
68167
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
68221
68168
|
exports.SubProtocolType = void 0;
|
|
@@ -68225,7 +68172,7 @@ var SubProtocolType;
|
|
|
68225
68172
|
SubProtocolType["TOKEN"] = "token";
|
|
68226
68173
|
})(SubProtocolType = exports.SubProtocolType || (exports.SubProtocolType = {}));
|
|
68227
68174
|
|
|
68228
|
-
},{}],
|
|
68175
|
+
},{}],334:[function(require,module,exports){
|
|
68229
68176
|
"use strict";
|
|
68230
68177
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
68231
68178
|
exports.NonExtendedProtocol = void 0;
|
|
@@ -68275,7 +68222,7 @@ var NonExtendedProtocol = /** @class */ (function () {
|
|
|
68275
68222
|
}());
|
|
68276
68223
|
exports.NonExtendedProtocol = NonExtendedProtocol;
|
|
68277
68224
|
|
|
68278
|
-
},{}],
|
|
68225
|
+
},{}],335:[function(require,module,exports){
|
|
68279
68226
|
(function (Buffer){(function (){
|
|
68280
68227
|
"use strict";
|
|
68281
68228
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -68443,7 +68390,7 @@ var AES = /** @class */ (function () {
|
|
|
68443
68390
|
exports.AES = AES;
|
|
68444
68391
|
|
|
68445
68392
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
68446
|
-
},{"../errors":
|
|
68393
|
+
},{"../errors":329,"../errors/coinlib-error":328,"./hex":343,"buffer":76,"crypto":87}],336:[function(require,module,exports){
|
|
68447
68394
|
"use strict";
|
|
68448
68395
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
68449
68396
|
exports.isNetworkEqual = void 0;
|
|
@@ -68452,7 +68399,7 @@ var isNetworkEqual = function (network1, network2) {
|
|
|
68452
68399
|
};
|
|
68453
68400
|
exports.isNetworkEqual = isNetworkEqual;
|
|
68454
68401
|
|
|
68455
|
-
},{}],
|
|
68402
|
+
},{}],337:[function(require,module,exports){
|
|
68456
68403
|
"use strict";
|
|
68457
68404
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
68458
68405
|
exports.ProtocolBlockExplorer = void 0;
|
|
@@ -68464,7 +68411,7 @@ var ProtocolBlockExplorer = /** @class */ (function () {
|
|
|
68464
68411
|
}());
|
|
68465
68412
|
exports.ProtocolBlockExplorer = ProtocolBlockExplorer;
|
|
68466
68413
|
|
|
68467
|
-
},{}],
|
|
68414
|
+
},{}],338:[function(require,module,exports){
|
|
68468
68415
|
"use strict";
|
|
68469
68416
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
68470
68417
|
exports.ProtocolNetwork = exports.NetworkType = void 0;
|
|
@@ -68500,7 +68447,7 @@ var ProtocolNetwork = /** @class */ (function () {
|
|
|
68500
68447
|
}());
|
|
68501
68448
|
exports.ProtocolNetwork = ProtocolNetwork;
|
|
68502
68449
|
|
|
68503
|
-
},{"../dependencies/src/create-hash-1.2.0/index":
|
|
68450
|
+
},{"../dependencies/src/create-hash-1.2.0/index":281}],339:[function(require,module,exports){
|
|
68504
68451
|
"use strict";
|
|
68505
68452
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
68506
68453
|
exports.isProtocolSymbol = exports.isSubProtocolSymbol = exports.isMainProtocolSymbol = exports.SubProtocolSymbols = exports.MainProtocolSymbols = void 0;
|
|
@@ -68521,6 +68468,7 @@ var MainProtocolSymbols;
|
|
|
68521
68468
|
MainProtocolSymbols["MOONBEAM"] = "moonbeam";
|
|
68522
68469
|
MainProtocolSymbols["ASTAR"] = "astar";
|
|
68523
68470
|
MainProtocolSymbols["SHIDEN"] = "shiden";
|
|
68471
|
+
MainProtocolSymbols["ICP"] = "icp";
|
|
68524
68472
|
})(MainProtocolSymbols = exports.MainProtocolSymbols || (exports.MainProtocolSymbols = {}));
|
|
68525
68473
|
var SubProtocolSymbols;
|
|
68526
68474
|
(function (SubProtocolSymbols) {
|
|
@@ -68559,7 +68507,7 @@ function isProtocolSymbol(identifier) {
|
|
|
68559
68507
|
}
|
|
68560
68508
|
exports.isProtocolSymbol = isProtocolSymbol;
|
|
68561
68509
|
|
|
68562
|
-
},{}],
|
|
68510
|
+
},{}],340:[function(require,module,exports){
|
|
68563
68511
|
"use strict";
|
|
68564
68512
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
68565
68513
|
exports.assertFields = exports.assertNever = void 0;
|
|
@@ -68580,7 +68528,7 @@ function assertFields(name, object) {
|
|
|
68580
68528
|
}
|
|
68581
68529
|
exports.assertFields = assertFields;
|
|
68582
68530
|
|
|
68583
|
-
},{"../errors":
|
|
68531
|
+
},{"../errors":329,"../errors/coinlib-error":328}],341:[function(require,module,exports){
|
|
68584
68532
|
(function (Buffer){(function (){
|
|
68585
68533
|
"use strict";
|
|
68586
68534
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -68622,7 +68570,7 @@ var bs64check = {
|
|
|
68622
68570
|
exports.default = bs64check;
|
|
68623
68571
|
|
|
68624
68572
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
68625
|
-
},{"../dependencies/src/create-hash-1.2.0/index":
|
|
68573
|
+
},{"../dependencies/src/create-hash-1.2.0/index":281,"../errors":329,"../errors/coinlib-error":328,"buffer":76}],342:[function(require,module,exports){
|
|
68626
68574
|
(function (Buffer){(function (){
|
|
68627
68575
|
"use strict";
|
|
68628
68576
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -68633,7 +68581,7 @@ var bufferFrom = function (data, encoding) {
|
|
|
68633
68581
|
exports.bufferFrom = bufferFrom;
|
|
68634
68582
|
|
|
68635
68583
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
68636
|
-
},{"buffer":76}],
|
|
68584
|
+
},{"buffer":76}],343:[function(require,module,exports){
|
|
68637
68585
|
(function (Buffer){(function (){
|
|
68638
68586
|
"use strict";
|
|
68639
68587
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
@@ -68748,7 +68696,7 @@ function fillToTargetLength(hexString, bitLength) {
|
|
|
68748
68696
|
}
|
|
68749
68697
|
|
|
68750
68698
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
68751
|
-
},{"../dependencies/src/bignumber.js-9.0.0/bignumber":
|
|
68699
|
+
},{"../dependencies/src/bignumber.js-9.0.0/bignumber":264,"./padStart":345,"buffer":76}],344:[function(require,module,exports){
|
|
68752
68700
|
"use strict";
|
|
68753
68701
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
68754
68702
|
exports.hasConfigurableContract = exports.implementsInterface = void 0;
|
|
@@ -68767,7 +68715,7 @@ function hasConfigurableContract(object) {
|
|
|
68767
68715
|
}
|
|
68768
68716
|
exports.hasConfigurableContract = hasConfigurableContract;
|
|
68769
68717
|
|
|
68770
|
-
},{}],
|
|
68718
|
+
},{}],345:[function(require,module,exports){
|
|
68771
68719
|
"use strict";
|
|
68772
68720
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
68773
68721
|
exports.padStart = void 0;
|
|
@@ -68788,7 +68736,7 @@ function padStart(targetString, targetLength, padString) {
|
|
|
68788
68736
|
}
|
|
68789
68737
|
exports.padStart = padStart;
|
|
68790
68738
|
|
|
68791
|
-
},{}],
|
|
68739
|
+
},{}],346:[function(require,module,exports){
|
|
68792
68740
|
"use strict";
|
|
68793
68741
|
var __extends = (this && this.__extends) || (function () {
|
|
68794
68742
|
var extendStatics = function (d, b) {
|
|
@@ -68988,7 +68936,7 @@ var AirGapCoinWallet = /** @class */ (function (_super) {
|
|
|
68988
68936
|
}(AirGapMarketWallet_1.AirGapMarketWallet));
|
|
68989
68937
|
exports.AirGapCoinWallet = AirGapCoinWallet;
|
|
68990
68938
|
|
|
68991
|
-
},{"../dependencies/src/bignumber.js-9.0.0/bignumber":
|
|
68939
|
+
},{"../dependencies/src/bignumber.js-9.0.0/bignumber":264,"../utils/ProtocolNetwork":338,"../utils/ProtocolSymbols":339,"./AirGapMarketWallet":347}],347:[function(require,module,exports){
|
|
68992
68940
|
"use strict";
|
|
68993
68941
|
var __extends = (this && this.__extends) || (function () {
|
|
68994
68942
|
var extendStatics = function (d, b) {
|
|
@@ -69210,7 +69158,7 @@ var AirGapMarketWallet = /** @class */ (function (_super) {
|
|
|
69210
69158
|
}(AirGapWallet_1.AirGapWallet));
|
|
69211
69159
|
exports.AirGapMarketWallet = AirGapMarketWallet;
|
|
69212
69160
|
|
|
69213
|
-
},{"../dependencies/src/bignumber.js-9.0.0/bignumber":
|
|
69161
|
+
},{"../dependencies/src/bignumber.js-9.0.0/bignumber":264,"../utils/ProtocolSymbols":339,"./AirGapWallet":349}],348:[function(require,module,exports){
|
|
69214
69162
|
"use strict";
|
|
69215
69163
|
var __extends = (this && this.__extends) || (function () {
|
|
69216
69164
|
var extendStatics = function (d, b) {
|
|
@@ -69390,7 +69338,7 @@ var AirGapNFTWallet = /** @class */ (function (_super) {
|
|
|
69390
69338
|
}(AirGapMarketWallet_1.AirGapMarketWallet));
|
|
69391
69339
|
exports.AirGapNFTWallet = AirGapNFTWallet;
|
|
69392
69340
|
|
|
69393
|
-
},{"../dependencies/src/bignumber.js-9.0.0/bignumber":
|
|
69341
|
+
},{"../dependencies/src/bignumber.js-9.0.0/bignumber":264,"../utils/ProtocolNetwork":338,"./AirGapMarketWallet":347}],349:[function(require,module,exports){
|
|
69394
69342
|
"use strict";
|
|
69395
69343
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
69396
69344
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -69533,9 +69481,9 @@ var AirGapWallet = /** @class */ (function () {
|
|
|
69533
69481
|
}());
|
|
69534
69482
|
exports.AirGapWallet = AirGapWallet;
|
|
69535
69483
|
|
|
69536
|
-
},{"../errors":
|
|
69484
|
+
},{"../errors":329,"../errors/coinlib-error":328}],350:[function(require,module,exports){
|
|
69537
69485
|
arguments[4][1][0].apply(exports,arguments)
|
|
69538
|
-
},{"@stablelib/int":
|
|
69486
|
+
},{"@stablelib/int":355,"dup":1}],351:[function(require,module,exports){
|
|
69539
69487
|
"use strict";
|
|
69540
69488
|
// Copyright (C) 2017 Dmitry Chestnykh
|
|
69541
69489
|
// MIT License. See LICENSE file for details.
|
|
@@ -69990,7 +69938,7 @@ function hash(data, digestLength, config) {
|
|
|
69990
69938
|
}
|
|
69991
69939
|
exports.hash = hash;
|
|
69992
69940
|
|
|
69993
|
-
},{"@stablelib/binary":
|
|
69941
|
+
},{"@stablelib/binary":350,"@stablelib/wipe":367}],352:[function(require,module,exports){
|
|
69994
69942
|
"use strict";
|
|
69995
69943
|
// Copyright (C) 2016 Dmitry Chestnykh
|
|
69996
69944
|
// MIT License. See LICENSE file for details.
|
|
@@ -70014,7 +69962,7 @@ function concat() {
|
|
|
70014
69962
|
}
|
|
70015
69963
|
exports.concat = concat;
|
|
70016
69964
|
|
|
70017
|
-
},{}],
|
|
69965
|
+
},{}],353:[function(require,module,exports){
|
|
70018
69966
|
"use strict";
|
|
70019
69967
|
// Copyright (C) 2016 Dmitry Chestnykh
|
|
70020
69968
|
// MIT License. See LICENSE file for details.
|
|
@@ -70077,11 +70025,11 @@ function equal(a, b) {
|
|
|
70077
70025
|
}
|
|
70078
70026
|
exports.equal = equal;
|
|
70079
70027
|
|
|
70080
|
-
},{}],
|
|
70028
|
+
},{}],354:[function(require,module,exports){
|
|
70081
70029
|
arguments[4][2][0].apply(exports,arguments)
|
|
70082
|
-
},{"@stablelib/random":
|
|
70030
|
+
},{"@stablelib/random":360,"@stablelib/sha512":365,"@stablelib/wipe":367,"dup":2}],355:[function(require,module,exports){
|
|
70083
70031
|
arguments[4][3][0].apply(exports,arguments)
|
|
70084
|
-
},{"dup":3}],
|
|
70032
|
+
},{"dup":3}],356:[function(require,module,exports){
|
|
70085
70033
|
"use strict";
|
|
70086
70034
|
// Copyright (C) 2016 Dmitry Chestnykh
|
|
70087
70035
|
// MIT License. See LICENSE file for details.
|
|
@@ -70117,7 +70065,7 @@ function openBox(theirPublicKey, mySecretKey, nonce, data) {
|
|
|
70117
70065
|
}
|
|
70118
70066
|
exports.openBox = openBox;
|
|
70119
70067
|
|
|
70120
|
-
},{"./secretbox":
|
|
70068
|
+
},{"./secretbox":358,"@stablelib/wipe":367,"@stablelib/x25519":368,"@stablelib/xsalsa20":369}],357:[function(require,module,exports){
|
|
70121
70069
|
"use strict";
|
|
70122
70070
|
// Copyright (C) 2016 Dmitry Chestnykh
|
|
70123
70071
|
// MIT License. See LICENSE file for details.
|
|
@@ -70142,7 +70090,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
70142
70090
|
__exportStar(require("./box"), exports);
|
|
70143
70091
|
__exportStar(require("./secretbox"), exports);
|
|
70144
70092
|
|
|
70145
|
-
},{"./box":
|
|
70093
|
+
},{"./box":356,"./secretbox":358}],358:[function(require,module,exports){
|
|
70146
70094
|
"use strict";
|
|
70147
70095
|
// Copyright (C) 2016 Dmitry Chestnykh
|
|
70148
70096
|
// MIT License. See LICENSE file for details.
|
|
@@ -70244,7 +70192,7 @@ function generateKey(prng) {
|
|
|
70244
70192
|
}
|
|
70245
70193
|
exports.generateKey = generateKey;
|
|
70246
70194
|
|
|
70247
|
-
},{"@stablelib/poly1305":
|
|
70195
|
+
},{"@stablelib/poly1305":359,"@stablelib/random":360,"@stablelib/wipe":367,"@stablelib/xsalsa20":369}],359:[function(require,module,exports){
|
|
70248
70196
|
"use strict";
|
|
70249
70197
|
// Copyright (C) 2016 Dmitry Chestnykh
|
|
70250
70198
|
// MIT License. See LICENSE file for details.
|
|
@@ -70667,15 +70615,15 @@ function equal(a, b) {
|
|
|
70667
70615
|
}
|
|
70668
70616
|
exports.equal = equal;
|
|
70669
70617
|
|
|
70670
|
-
},{"@stablelib/constant-time":
|
|
70618
|
+
},{"@stablelib/constant-time":353,"@stablelib/wipe":367}],360:[function(require,module,exports){
|
|
70671
70619
|
arguments[4][4][0].apply(exports,arguments)
|
|
70672
|
-
},{"./source/system":
|
|
70620
|
+
},{"./source/system":363,"@stablelib/binary":350,"@stablelib/wipe":367,"dup":4}],361:[function(require,module,exports){
|
|
70673
70621
|
arguments[4][5][0].apply(exports,arguments)
|
|
70674
|
-
},{"dup":5}],
|
|
70622
|
+
},{"dup":5}],362:[function(require,module,exports){
|
|
70675
70623
|
arguments[4][6][0].apply(exports,arguments)
|
|
70676
|
-
},{"@stablelib/wipe":
|
|
70624
|
+
},{"@stablelib/wipe":367,"crypto":33,"dup":6}],363:[function(require,module,exports){
|
|
70677
70625
|
arguments[4][7][0].apply(exports,arguments)
|
|
70678
|
-
},{"./browser":
|
|
70626
|
+
},{"./browser":361,"./node":362,"dup":7}],364:[function(require,module,exports){
|
|
70679
70627
|
"use strict";
|
|
70680
70628
|
// Copyright (C) 2016 Dmitry Chestnykh
|
|
70681
70629
|
// MIT License. See LICENSE file for details.
|
|
@@ -70902,9 +70850,9 @@ function incrementCounter(counter, pos, len) {
|
|
|
70902
70850
|
}
|
|
70903
70851
|
}
|
|
70904
70852
|
|
|
70905
|
-
},{"@stablelib/binary":
|
|
70853
|
+
},{"@stablelib/binary":350,"@stablelib/wipe":367}],365:[function(require,module,exports){
|
|
70906
70854
|
arguments[4][8][0].apply(exports,arguments)
|
|
70907
|
-
},{"@stablelib/binary":
|
|
70855
|
+
},{"@stablelib/binary":350,"@stablelib/wipe":367,"dup":8}],366:[function(require,module,exports){
|
|
70908
70856
|
"use strict";
|
|
70909
70857
|
// Copyright (C) 2016 Dmitry Chestnykh
|
|
70910
70858
|
// MIT License. See LICENSE file for details.
|
|
@@ -71054,9 +71002,9 @@ function decode(arr) {
|
|
|
71054
71002
|
}
|
|
71055
71003
|
exports.decode = decode;
|
|
71056
71004
|
|
|
71057
|
-
},{}],
|
|
71005
|
+
},{}],367:[function(require,module,exports){
|
|
71058
71006
|
arguments[4][9][0].apply(exports,arguments)
|
|
71059
|
-
},{"dup":9}],
|
|
71007
|
+
},{"dup":9}],368:[function(require,module,exports){
|
|
71060
71008
|
"use strict";
|
|
71061
71009
|
// Copyright (C) 2016 Dmitry Chestnykh
|
|
71062
71010
|
// MIT License. See LICENSE file for details.
|
|
@@ -71693,7 +71641,7 @@ function sharedKey(mySecretKey, theirPublicKey, rejectZero = false) {
|
|
|
71693
71641
|
}
|
|
71694
71642
|
exports.sharedKey = sharedKey;
|
|
71695
71643
|
|
|
71696
|
-
},{"@stablelib/random":
|
|
71644
|
+
},{"@stablelib/random":360,"@stablelib/wipe":367}],369:[function(require,module,exports){
|
|
71697
71645
|
"use strict";
|
|
71698
71646
|
// Copyright (C) 2016 Dmitry Chestnykh
|
|
71699
71647
|
// MIT License. See LICENSE file for details.
|
|
@@ -71856,7 +71804,7 @@ function hsalsa(key, src, dst) {
|
|
|
71856
71804
|
}
|
|
71857
71805
|
exports.hsalsa = hsalsa;
|
|
71858
71806
|
|
|
71859
|
-
},{"@stablelib/binary":
|
|
71807
|
+
},{"@stablelib/binary":350,"@stablelib/salsa20":364,"@stablelib/wipe":367}],370:[function(require,module,exports){
|
|
71860
71808
|
"use strict";
|
|
71861
71809
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
71862
71810
|
exports.validateSyncSchemeV2 = exports.validateSyncScheme = exports.generateIdV2 = exports.generateId = exports.Message = exports.SerializerV3 = exports.Serializer = exports.IACMessageType = void 0;
|
|
@@ -71877,7 +71825,7 @@ Object.defineProperty(exports, "generateId", { enumerable: true, get: function (
|
|
|
71877
71825
|
var validators_2 = require("./v3/validators/validators");
|
|
71878
71826
|
Object.defineProperty(exports, "validateSyncScheme", { enumerable: true, get: function () { return validators_2.validateSyncScheme; } });
|
|
71879
71827
|
|
|
71880
|
-
},{"./v2/interfaces":
|
|
71828
|
+
},{"./v2/interfaces":372,"./v2/message":373,"./v2/serializer":380,"./v2/utils/generateId":381,"./v2/validators/validators":383,"./v3/serializer":392,"./v3/utils/generateId":393,"./v3/validators/validators":395}],371:[function(require,module,exports){
|
|
71881
71829
|
(function (Buffer){(function (){
|
|
71882
71830
|
"use strict";
|
|
71883
71831
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -72004,7 +71952,7 @@ var IACProtocol = /** @class */ (function () {
|
|
|
72004
71952
|
exports.IACProtocol = IACProtocol;
|
|
72005
71953
|
|
|
72006
71954
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
72007
|
-
},{"./payloads/chunked-payload":
|
|
71955
|
+
},{"./payloads/chunked-payload":374,"./payloads/full-payload":375,"./serializer":380,"@airgap/coinlib-core/dependencies/src/bs58check-2.1.2/index":277,"@airgap/coinlib-core/dependencies/src/rlp-2.2.3/index":314,"@airgap/coinlib-core/errors":329,"buffer":76}],372:[function(require,module,exports){
|
|
72008
71956
|
"use strict";
|
|
72009
71957
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
72010
71958
|
exports.IACMessageType = void 0;
|
|
@@ -72036,7 +71984,7 @@ var IACMessageType;
|
|
|
72036
71984
|
// SocialRecoveryShareResponse = 24
|
|
72037
71985
|
})(IACMessageType = exports.IACMessageType || (exports.IACMessageType = {}));
|
|
72038
71986
|
|
|
72039
|
-
},{}],
|
|
71987
|
+
},{}],373:[function(require,module,exports){
|
|
72040
71988
|
(function (Buffer){(function (){
|
|
72041
71989
|
"use strict";
|
|
72042
71990
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -72124,7 +72072,7 @@ var Message = /** @class */ (function () {
|
|
|
72124
72072
|
exports.Message = Message;
|
|
72125
72073
|
|
|
72126
72074
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
72127
|
-
},{"./interfaces":
|
|
72075
|
+
},{"./interfaces":372,"./serializer":380,"./utils/generateId":381,"./utils/json-to-rlp":382,"@airgap/coinlib-core/errors":329,"@airgap/coinlib-core/utils/ProtocolSymbols":339,"buffer":76}],374:[function(require,module,exports){
|
|
72128
72076
|
(function (Buffer){(function (){
|
|
72129
72077
|
"use strict";
|
|
72130
72078
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -72183,7 +72131,7 @@ var ChunkedPayload = /** @class */ (function () {
|
|
|
72183
72131
|
exports.ChunkedPayload = ChunkedPayload;
|
|
72184
72132
|
|
|
72185
72133
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
72186
|
-
},{"@airgap/coinlib-core/errors":
|
|
72134
|
+
},{"@airgap/coinlib-core/errors":329,"buffer":76}],375:[function(require,module,exports){
|
|
72187
72135
|
"use strict";
|
|
72188
72136
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
72189
72137
|
if (k2 === undefined) k2 = k;
|
|
@@ -72245,7 +72193,7 @@ var FullPayload = /** @class */ (function () {
|
|
|
72245
72193
|
}());
|
|
72246
72194
|
exports.FullPayload = FullPayload;
|
|
72247
72195
|
|
|
72248
|
-
},{"../message":
|
|
72196
|
+
},{"../message":373,"../serializer":380,"@airgap/coinlib-core/dependencies/src/bs58check-2.1.2/index":277,"@airgap/coinlib-core/dependencies/src/rlp-2.2.3/index":314}],376:[function(require,module,exports){
|
|
72249
72197
|
module.exports={
|
|
72250
72198
|
"$ref": "#/definitions/AccountShareResponse",
|
|
72251
72199
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
@@ -72269,7 +72217,7 @@ module.exports={
|
|
|
72269
72217
|
}
|
|
72270
72218
|
}
|
|
72271
72219
|
|
|
72272
|
-
},{}],
|
|
72220
|
+
},{}],377:[function(require,module,exports){
|
|
72273
72221
|
module.exports={
|
|
72274
72222
|
"$ref": "#/definitions/MessageSignRequest",
|
|
72275
72223
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
@@ -72293,7 +72241,7 @@ module.exports={
|
|
|
72293
72241
|
}
|
|
72294
72242
|
}
|
|
72295
72243
|
|
|
72296
|
-
},{}],
|
|
72244
|
+
},{}],378:[function(require,module,exports){
|
|
72297
72245
|
module.exports={
|
|
72298
72246
|
"$ref": "#/definitions/MessageSignResponse",
|
|
72299
72247
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
@@ -72317,7 +72265,7 @@ module.exports={
|
|
|
72317
72265
|
}
|
|
72318
72266
|
}
|
|
72319
72267
|
|
|
72320
|
-
},{}],
|
|
72268
|
+
},{}],379:[function(require,module,exports){
|
|
72321
72269
|
"use strict";
|
|
72322
72270
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
72323
72271
|
exports.SchemaTypes = void 0;
|
|
@@ -72333,7 +72281,7 @@ var SchemaTypes;
|
|
|
72333
72281
|
SchemaTypes["HEX_STRING"] = "hexString"; // TODO: Should we do it like that?
|
|
72334
72282
|
})(SchemaTypes = exports.SchemaTypes || (exports.SchemaTypes = {}));
|
|
72335
72283
|
|
|
72336
|
-
},{}],
|
|
72284
|
+
},{}],380:[function(require,module,exports){
|
|
72337
72285
|
"use strict";
|
|
72338
72286
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
72339
72287
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -72499,7 +72447,7 @@ var Serializer = /** @class */ (function () {
|
|
|
72499
72447
|
}());
|
|
72500
72448
|
exports.Serializer = Serializer;
|
|
72501
72449
|
|
|
72502
|
-
},{"./inter-app-communication-protocol":
|
|
72450
|
+
},{"./inter-app-communication-protocol":371,"./interfaces":372,"./schemas/generated/account-share-response.json":376,"./schemas/generated/message-sign-request.json":377,"./schemas/generated/message-sign-response.json":378,"@airgap/coinlib-core/errors":329,"@airgap/coinlib-core/utils/ProtocolSymbols":339}],381:[function(require,module,exports){
|
|
72503
72451
|
"use strict";
|
|
72504
72452
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
72505
72453
|
exports.generateIdV2 = void 0;
|
|
@@ -72515,7 +72463,7 @@ function generateIdV2(length) {
|
|
|
72515
72463
|
}
|
|
72516
72464
|
exports.generateIdV2 = generateIdV2;
|
|
72517
72465
|
|
|
72518
|
-
},{}],
|
|
72466
|
+
},{}],382:[function(require,module,exports){
|
|
72519
72467
|
"use strict";
|
|
72520
72468
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
72521
72469
|
exports.rlpArrayToJson = exports.jsonToArray = exports.unwrapSchema = exports.getDefinitionByRefPath = void 0;
|
|
@@ -72693,7 +72641,7 @@ function rlpArrayToJson(schema, decoded) {
|
|
|
72693
72641
|
}
|
|
72694
72642
|
exports.rlpArrayToJson = rlpArrayToJson;
|
|
72695
72643
|
|
|
72696
|
-
},{"../schemas/schema":
|
|
72644
|
+
},{"../schemas/schema":379,"@airgap/coinlib-core/errors":329,"@airgap/coinlib-core/errors/coinlib-error":328,"@airgap/coinlib-core/utils/assert":340}],383:[function(require,module,exports){
|
|
72697
72645
|
"use strict";
|
|
72698
72646
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
72699
72647
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -72866,7 +72814,7 @@ function validateSerializationInput(from: string, fee: BigNumber, amount: BigNum
|
|
|
72866
72814
|
}
|
|
72867
72815
|
*/
|
|
72868
72816
|
|
|
72869
|
-
},{"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":
|
|
72817
|
+
},{"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":264,"@airgap/coinlib-core/dependencies/src/validate.js-0.13.1/validate":327,"@airgap/coinlib-core/errors":329,"@airgap/coinlib-core/errors/coinlib-error":328}],384:[function(require,module,exports){
|
|
72870
72818
|
(function (Buffer){(function (){
|
|
72871
72819
|
"use strict";
|
|
72872
72820
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -72941,9 +72889,9 @@ var IACMessageWrapper = /** @class */ (function () {
|
|
|
72941
72889
|
exports.IACMessageWrapper = IACMessageWrapper;
|
|
72942
72890
|
|
|
72943
72891
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
72944
|
-
},{"./message":
|
|
72945
|
-
arguments[4][
|
|
72946
|
-
},{"dup":
|
|
72892
|
+
},{"./message":386,"./payload":387,"./serializer":392,"@airgap/coinlib-core/dependencies/src/bs58check-2.1.2/index":277,"@airgap/coinlib-core/dependencies/src/cbor-sync-1.0.4/index":278,"@airgap/coinlib-core/dependencies/src/pako-2.0.3":291,"buffer":76}],385:[function(require,module,exports){
|
|
72893
|
+
arguments[4][372][0].apply(exports,arguments)
|
|
72894
|
+
},{"dup":372}],386:[function(require,module,exports){
|
|
72947
72895
|
"use strict";
|
|
72948
72896
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
72949
72897
|
exports.Message = exports.isMessageDefinitionArray = void 0;
|
|
@@ -73061,7 +73009,7 @@ var Message = /** @class */ (function () {
|
|
|
73061
73009
|
}());
|
|
73062
73010
|
exports.Message = Message;
|
|
73063
73011
|
|
|
73064
|
-
},{"./serializer":
|
|
73012
|
+
},{"./serializer":392,"./utils/generateId":393,"./utils/json-to-rlp":394,"@airgap/coinlib-core/errors":329,"@airgap/coinlib-core/utils/ProtocolSymbols":339}],387:[function(require,module,exports){
|
|
73065
73013
|
"use strict";
|
|
73066
73014
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
73067
73015
|
exports.Payload = void 0;
|
|
@@ -73090,7 +73038,7 @@ var Payload = /** @class */ (function () {
|
|
|
73090
73038
|
}());
|
|
73091
73039
|
exports.Payload = Payload;
|
|
73092
73040
|
|
|
73093
|
-
},{"./message":
|
|
73041
|
+
},{"./message":386,"./serializer":392}],388:[function(require,module,exports){
|
|
73094
73042
|
module.exports={
|
|
73095
73043
|
"$ref": "#/definitions/AccountShareResponse",
|
|
73096
73044
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
@@ -73126,11 +73074,11 @@ module.exports={
|
|
|
73126
73074
|
}
|
|
73127
73075
|
}
|
|
73128
73076
|
|
|
73129
|
-
},{}],
|
|
73077
|
+
},{}],389:[function(require,module,exports){
|
|
73078
|
+
arguments[4][377][0].apply(exports,arguments)
|
|
73079
|
+
},{"dup":377}],390:[function(require,module,exports){
|
|
73130
73080
|
arguments[4][378][0].apply(exports,arguments)
|
|
73131
73081
|
},{"dup":378}],391:[function(require,module,exports){
|
|
73132
|
-
arguments[4][379][0].apply(exports,arguments)
|
|
73133
|
-
},{"dup":379}],392:[function(require,module,exports){
|
|
73134
73082
|
"use strict";
|
|
73135
73083
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
73136
73084
|
exports.SchemaTypes = void 0;
|
|
@@ -73145,7 +73093,7 @@ var SchemaTypes;
|
|
|
73145
73093
|
SchemaTypes["OBJECT"] = "object";
|
|
73146
73094
|
})(SchemaTypes = exports.SchemaTypes || (exports.SchemaTypes = {}));
|
|
73147
73095
|
|
|
73148
|
-
},{}],
|
|
73096
|
+
},{}],392:[function(require,module,exports){
|
|
73149
73097
|
"use strict";
|
|
73150
73098
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
73151
73099
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -73309,7 +73257,7 @@ var SerializerV3 = /** @class */ (function () {
|
|
|
73309
73257
|
}());
|
|
73310
73258
|
exports.SerializerV3 = SerializerV3;
|
|
73311
73259
|
|
|
73312
|
-
},{"./iac-message-wrapper":
|
|
73260
|
+
},{"./iac-message-wrapper":384,"./interfaces":385,"./schemas/generated/account-share-response.json":388,"./schemas/generated/message-sign-request.json":389,"./schemas/generated/message-sign-response.json":390,"@airgap/coinlib-core/errors":329,"@airgap/coinlib-core/utils/ProtocolSymbols":339}],393:[function(require,module,exports){
|
|
73313
73261
|
"use strict";
|
|
73314
73262
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
73315
73263
|
exports.generateId = exports.ID_LENGTH = void 0;
|
|
@@ -73327,7 +73275,7 @@ function generateId(length) {
|
|
|
73327
73275
|
}
|
|
73328
73276
|
exports.generateId = generateId;
|
|
73329
73277
|
|
|
73330
|
-
},{}],
|
|
73278
|
+
},{}],394:[function(require,module,exports){
|
|
73331
73279
|
(function (Buffer){(function (){
|
|
73332
73280
|
"use strict";
|
|
73333
73281
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -73565,7 +73513,7 @@ function rlpArrayToJson(schema, decoded) {
|
|
|
73565
73513
|
exports.rlpArrayToJson = rlpArrayToJson;
|
|
73566
73514
|
|
|
73567
73515
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
73568
|
-
},{"../schemas/schema":
|
|
73516
|
+
},{"../schemas/schema":391,"@airgap/coinlib-core/errors":329,"@airgap/coinlib-core/errors/coinlib-error":328,"@airgap/coinlib-core/utils/assert":340,"buffer":76}],395:[function(require,module,exports){
|
|
73569
73517
|
"use strict";
|
|
73570
73518
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
73571
73519
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -73736,5 +73684,5 @@ function validateSerializationInput(from: string, fee: BigNumber, amount: BigNum
|
|
|
73736
73684
|
}
|
|
73737
73685
|
*/
|
|
73738
73686
|
|
|
73739
|
-
},{"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":
|
|
73687
|
+
},{"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":264,"@airgap/coinlib-core/dependencies/src/validate.js-0.13.1/validate":327}]},{},[222])(222)
|
|
73740
73688
|
});
|