@airgap/ethereum 0.13.9-beta.0 → 0.13.9-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/airgap-coinlib-ethereum.min.js +531 -583
- package/package.json +4 -4
|
@@ -14352,7 +14352,7 @@ Writable.prototype._destroy = function (err, cb) {
|
|
|
14352
14352
|
cb(err);
|
|
14353
14353
|
};
|
|
14354
14354
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
14355
|
-
},{"../errors":52,"./_stream_duplex":53,"./internal/streams/destroy":60,"./internal/streams/state":64,"./internal/streams/stream":65,"_process":171,"buffer":67,"inherits":148,"util-deprecate":
|
|
14355
|
+
},{"../errors":52,"./_stream_duplex":53,"./internal/streams/destroy":60,"./internal/streams/state":64,"./internal/streams/stream":65,"_process":171,"buffer":67,"inherits":148,"util-deprecate":208}],58:[function(require,module,exports){
|
|
14356
14356
|
(function (process){(function (){
|
|
14357
14357
|
'use strict';
|
|
14358
14358
|
|
|
@@ -23200,6 +23200,8 @@ var INTRINSICS = {
|
|
|
23200
23200
|
'%AsyncIteratorPrototype%': needsEval,
|
|
23201
23201
|
'%Atomics%': typeof Atomics === 'undefined' ? undefined : Atomics,
|
|
23202
23202
|
'%BigInt%': typeof BigInt === 'undefined' ? undefined : BigInt,
|
|
23203
|
+
'%BigInt64Array%': typeof BigInt64Array === 'undefined' ? undefined : BigInt64Array,
|
|
23204
|
+
'%BigUint64Array%': typeof BigUint64Array === 'undefined' ? undefined : BigUint64Array,
|
|
23203
23205
|
'%Boolean%': Boolean,
|
|
23204
23206
|
'%DataView%': typeof DataView === 'undefined' ? undefined : DataView,
|
|
23205
23207
|
'%Date%': Date,
|
|
@@ -23255,6 +23257,14 @@ var INTRINSICS = {
|
|
|
23255
23257
|
'%WeakSet%': typeof WeakSet === 'undefined' ? undefined : WeakSet
|
|
23256
23258
|
};
|
|
23257
23259
|
|
|
23260
|
+
try {
|
|
23261
|
+
null.error; // eslint-disable-line no-unused-expressions
|
|
23262
|
+
} catch (e) {
|
|
23263
|
+
// https://github.com/tc39/proposal-shadowrealm/pull/384#issuecomment-1364264229
|
|
23264
|
+
var errorProto = getProto(getProto(e));
|
|
23265
|
+
INTRINSICS['%Error.prototype%'] = errorProto;
|
|
23266
|
+
}
|
|
23267
|
+
|
|
23258
23268
|
var doEval = function doEval(name) {
|
|
23259
23269
|
var value;
|
|
23260
23270
|
if (name === '%AsyncFunction%') {
|
|
@@ -23673,7 +23683,7 @@ arguments[4][55][0].apply(exports,arguments)
|
|
|
23673
23683
|
arguments[4][56][0].apply(exports,arguments)
|
|
23674
23684
|
},{"../errors":119,"./_stream_duplex":120,"dup":56,"inherits":148}],124:[function(require,module,exports){
|
|
23675
23685
|
arguments[4][57][0].apply(exports,arguments)
|
|
23676
|
-
},{"../errors":119,"./_stream_duplex":120,"./internal/streams/destroy":127,"./internal/streams/state":131,"./internal/streams/stream":132,"_process":171,"buffer":67,"dup":57,"inherits":148,"util-deprecate":
|
|
23686
|
+
},{"../errors":119,"./_stream_duplex":120,"./internal/streams/destroy":127,"./internal/streams/state":131,"./internal/streams/stream":132,"_process":171,"buffer":67,"dup":57,"inherits":148,"util-deprecate":208}],125:[function(require,module,exports){
|
|
23677
23687
|
arguments[4][58][0].apply(exports,arguments)
|
|
23678
23688
|
},{"./end-of-stream":128,"_process":171,"dup":58}],126:[function(require,module,exports){
|
|
23679
23689
|
arguments[4][59][0].apply(exports,arguments)
|
|
@@ -25155,6 +25165,29 @@ if (typeof Object.create === 'function') {
|
|
|
25155
25165
|
}
|
|
25156
25166
|
|
|
25157
25167
|
},{}],149:[function(require,module,exports){
|
|
25168
|
+
/*!
|
|
25169
|
+
* Determine if an object is a Buffer
|
|
25170
|
+
*
|
|
25171
|
+
* @author Feross Aboukhadijeh <https://feross.org>
|
|
25172
|
+
* @license MIT
|
|
25173
|
+
*/
|
|
25174
|
+
|
|
25175
|
+
// The _isBuffer check is for Safari 5-7 support, because it's missing
|
|
25176
|
+
// Object.prototype.constructor. Remove this eventually
|
|
25177
|
+
module.exports = function (obj) {
|
|
25178
|
+
return obj != null && (isBuffer(obj) || isSlowBuffer(obj) || !!obj._isBuffer)
|
|
25179
|
+
}
|
|
25180
|
+
|
|
25181
|
+
function isBuffer (obj) {
|
|
25182
|
+
return !!obj.constructor && typeof obj.constructor.isBuffer === 'function' && obj.constructor.isBuffer(obj)
|
|
25183
|
+
}
|
|
25184
|
+
|
|
25185
|
+
// For Node v0.10 support. Remove this eventually.
|
|
25186
|
+
function isSlowBuffer (obj) {
|
|
25187
|
+
return typeof obj.readFloatLE === 'function' && typeof obj.slice === 'function' && isBuffer(obj.slice(0, 0))
|
|
25188
|
+
}
|
|
25189
|
+
|
|
25190
|
+
},{}],150:[function(require,module,exports){
|
|
25158
25191
|
'use strict';
|
|
25159
25192
|
|
|
25160
25193
|
var hasToStringTag = require('has-tostringtag/shams')();
|
|
@@ -25189,30 +25222,7 @@ isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests
|
|
|
25189
25222
|
|
|
25190
25223
|
module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments;
|
|
25191
25224
|
|
|
25192
|
-
},{"call-bind/callBound":69,"has-tostringtag/shams":116}],
|
|
25193
|
-
/*!
|
|
25194
|
-
* Determine if an object is a Buffer
|
|
25195
|
-
*
|
|
25196
|
-
* @author Feross Aboukhadijeh <https://feross.org>
|
|
25197
|
-
* @license MIT
|
|
25198
|
-
*/
|
|
25199
|
-
|
|
25200
|
-
// The _isBuffer check is for Safari 5-7 support, because it's missing
|
|
25201
|
-
// Object.prototype.constructor. Remove this eventually
|
|
25202
|
-
module.exports = function (obj) {
|
|
25203
|
-
return obj != null && (isBuffer(obj) || isSlowBuffer(obj) || !!obj._isBuffer)
|
|
25204
|
-
}
|
|
25205
|
-
|
|
25206
|
-
function isBuffer (obj) {
|
|
25207
|
-
return !!obj.constructor && typeof obj.constructor.isBuffer === 'function' && obj.constructor.isBuffer(obj)
|
|
25208
|
-
}
|
|
25209
|
-
|
|
25210
|
-
// For Node v0.10 support. Remove this eventually.
|
|
25211
|
-
function isSlowBuffer (obj) {
|
|
25212
|
-
return typeof obj.readFloatLE === 'function' && typeof obj.slice === 'function' && isBuffer(obj.slice(0, 0))
|
|
25213
|
-
}
|
|
25214
|
-
|
|
25215
|
-
},{}],151:[function(require,module,exports){
|
|
25225
|
+
},{"call-bind/callBound":69,"has-tostringtag/shams":116}],151:[function(require,module,exports){
|
|
25216
25226
|
'use strict';
|
|
25217
25227
|
|
|
25218
25228
|
var fnToStr = Function.prototype.toString;
|
|
@@ -28381,7 +28391,7 @@ arguments[4][55][0].apply(exports,arguments)
|
|
|
28381
28391
|
arguments[4][56][0].apply(exports,arguments)
|
|
28382
28392
|
},{"../errors":193,"./_stream_duplex":194,"dup":56,"inherits":148}],198:[function(require,module,exports){
|
|
28383
28393
|
arguments[4][57][0].apply(exports,arguments)
|
|
28384
|
-
},{"../errors":193,"./_stream_duplex":194,"./internal/streams/destroy":201,"./internal/streams/state":205,"./internal/streams/stream":206,"_process":171,"buffer":67,"dup":57,"inherits":148,"util-deprecate":
|
|
28394
|
+
},{"../errors":193,"./_stream_duplex":194,"./internal/streams/destroy":201,"./internal/streams/state":205,"./internal/streams/stream":206,"_process":171,"buffer":67,"dup":57,"inherits":148,"util-deprecate":208}],199:[function(require,module,exports){
|
|
28385
28395
|
arguments[4][58][0].apply(exports,arguments)
|
|
28386
28396
|
},{"./end-of-stream":202,"_process":171,"dup":58}],200:[function(require,module,exports){
|
|
28387
28397
|
arguments[4][59][0].apply(exports,arguments)
|
|
@@ -28694,71 +28704,7 @@ function simpleWrite(buf) {
|
|
|
28694
28704
|
function simpleEnd(buf) {
|
|
28695
28705
|
return buf && buf.length ? this.write(buf) : '';
|
|
28696
28706
|
}
|
|
28697
|
-
},{"safe-buffer":
|
|
28698
|
-
/* eslint-disable node/no-deprecated-api */
|
|
28699
|
-
var buffer = require('buffer')
|
|
28700
|
-
var Buffer = buffer.Buffer
|
|
28701
|
-
|
|
28702
|
-
// alternative to using Object.keys for old browsers
|
|
28703
|
-
function copyProps (src, dst) {
|
|
28704
|
-
for (var key in src) {
|
|
28705
|
-
dst[key] = src[key]
|
|
28706
|
-
}
|
|
28707
|
-
}
|
|
28708
|
-
if (Buffer.from && Buffer.alloc && Buffer.allocUnsafe && Buffer.allocUnsafeSlow) {
|
|
28709
|
-
module.exports = buffer
|
|
28710
|
-
} else {
|
|
28711
|
-
// Copy properties from require('buffer')
|
|
28712
|
-
copyProps(buffer, exports)
|
|
28713
|
-
exports.Buffer = SafeBuffer
|
|
28714
|
-
}
|
|
28715
|
-
|
|
28716
|
-
function SafeBuffer (arg, encodingOrOffset, length) {
|
|
28717
|
-
return Buffer(arg, encodingOrOffset, length)
|
|
28718
|
-
}
|
|
28719
|
-
|
|
28720
|
-
// Copy static methods from Buffer
|
|
28721
|
-
copyProps(Buffer, SafeBuffer)
|
|
28722
|
-
|
|
28723
|
-
SafeBuffer.from = function (arg, encodingOrOffset, length) {
|
|
28724
|
-
if (typeof arg === 'number') {
|
|
28725
|
-
throw new TypeError('Argument must not be a number')
|
|
28726
|
-
}
|
|
28727
|
-
return Buffer(arg, encodingOrOffset, length)
|
|
28728
|
-
}
|
|
28729
|
-
|
|
28730
|
-
SafeBuffer.alloc = function (size, fill, encoding) {
|
|
28731
|
-
if (typeof size !== 'number') {
|
|
28732
|
-
throw new TypeError('Argument must be a number')
|
|
28733
|
-
}
|
|
28734
|
-
var buf = Buffer(size)
|
|
28735
|
-
if (fill !== undefined) {
|
|
28736
|
-
if (typeof encoding === 'string') {
|
|
28737
|
-
buf.fill(fill, encoding)
|
|
28738
|
-
} else {
|
|
28739
|
-
buf.fill(fill)
|
|
28740
|
-
}
|
|
28741
|
-
} else {
|
|
28742
|
-
buf.fill(0)
|
|
28743
|
-
}
|
|
28744
|
-
return buf
|
|
28745
|
-
}
|
|
28746
|
-
|
|
28747
|
-
SafeBuffer.allocUnsafe = function (size) {
|
|
28748
|
-
if (typeof size !== 'number') {
|
|
28749
|
-
throw new TypeError('Argument must be a number')
|
|
28750
|
-
}
|
|
28751
|
-
return Buffer(size)
|
|
28752
|
-
}
|
|
28753
|
-
|
|
28754
|
-
SafeBuffer.allocUnsafeSlow = function (size) {
|
|
28755
|
-
if (typeof size !== 'number') {
|
|
28756
|
-
throw new TypeError('Argument must be a number')
|
|
28757
|
-
}
|
|
28758
|
-
return buffer.SlowBuffer(size)
|
|
28759
|
-
}
|
|
28760
|
-
|
|
28761
|
-
},{"buffer":67}],209:[function(require,module,exports){
|
|
28707
|
+
},{"safe-buffer":182}],208:[function(require,module,exports){
|
|
28762
28708
|
(function (global){(function (){
|
|
28763
28709
|
|
|
28764
28710
|
/**
|
|
@@ -28829,9 +28775,9 @@ function config (name) {
|
|
|
28829
28775
|
}
|
|
28830
28776
|
|
|
28831
28777
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
28832
|
-
},{}],
|
|
28778
|
+
},{}],209:[function(require,module,exports){
|
|
28833
28779
|
arguments[4][18][0].apply(exports,arguments)
|
|
28834
|
-
},{"dup":18}],
|
|
28780
|
+
},{"dup":18}],210:[function(require,module,exports){
|
|
28835
28781
|
// Currently in sync with Node.js lib/internal/util/types.js
|
|
28836
28782
|
// https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9
|
|
28837
28783
|
|
|
@@ -29167,7 +29113,7 @@ exports.isAnyArrayBuffer = isAnyArrayBuffer;
|
|
|
29167
29113
|
});
|
|
29168
29114
|
});
|
|
29169
29115
|
|
|
29170
|
-
},{"is-arguments":
|
|
29116
|
+
},{"is-arguments":150,"is-generator-function":152,"is-typed-array":153,"which-typed-array":212}],211:[function(require,module,exports){
|
|
29171
29117
|
(function (process){(function (){
|
|
29172
29118
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
29173
29119
|
//
|
|
@@ -29886,7 +29832,7 @@ function callbackify(original) {
|
|
|
29886
29832
|
exports.callbackify = callbackify;
|
|
29887
29833
|
|
|
29888
29834
|
}).call(this)}).call(this,require('_process'))
|
|
29889
|
-
},{"./support/isBuffer":
|
|
29835
|
+
},{"./support/isBuffer":209,"./support/types":210,"_process":171,"inherits":148}],212:[function(require,module,exports){
|
|
29890
29836
|
(function (global){(function (){
|
|
29891
29837
|
'use strict';
|
|
29892
29838
|
|
|
@@ -29945,7 +29891,7 @@ module.exports = function whichTypedArray(value) {
|
|
|
29945
29891
|
};
|
|
29946
29892
|
|
|
29947
29893
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
29948
|
-
},{"available-typed-arrays":20,"call-bind/callBound":69,"for-each":109,"gopd":113,"has-tostringtag/shams":116,"is-typed-array":153}],
|
|
29894
|
+
},{"available-typed-arrays":20,"call-bind/callBound":69,"for-each":109,"gopd":113,"has-tostringtag/shams":116,"is-typed-array":153}],213:[function(require,module,exports){
|
|
29949
29895
|
"use strict";
|
|
29950
29896
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
29951
29897
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -30065,7 +30011,7 @@ var Action = /** @class */ (function () {
|
|
|
30065
30011
|
}());
|
|
30066
30012
|
exports.Action = Action;
|
|
30067
30013
|
|
|
30068
|
-
},{"../errors":
|
|
30014
|
+
},{"../errors":437,"../errors/coinlib-error":436,"./StateMachine":217}],214:[function(require,module,exports){
|
|
30069
30015
|
"use strict";
|
|
30070
30016
|
var __extends = (this && this.__extends) || (function () {
|
|
30071
30017
|
var extendStatics = function (d, b) {
|
|
@@ -30161,7 +30107,7 @@ var LinkedAction = /** @class */ (function (_super) {
|
|
|
30161
30107
|
}(Action_1.Action));
|
|
30162
30108
|
exports.LinkedAction = LinkedAction;
|
|
30163
30109
|
|
|
30164
|
-
},{"./Action":
|
|
30110
|
+
},{"./Action":213}],215:[function(require,module,exports){
|
|
30165
30111
|
"use strict";
|
|
30166
30112
|
var __extends = (this && this.__extends) || (function () {
|
|
30167
30113
|
var extendStatics = function (d, b) {
|
|
@@ -30254,7 +30200,7 @@ var RepeatableAction = /** @class */ (function (_super) {
|
|
|
30254
30200
|
}(Action_1.Action));
|
|
30255
30201
|
exports.RepeatableAction = RepeatableAction;
|
|
30256
30202
|
|
|
30257
|
-
},{"./Action":
|
|
30203
|
+
},{"./Action":213}],216:[function(require,module,exports){
|
|
30258
30204
|
"use strict";
|
|
30259
30205
|
var __extends = (this && this.__extends) || (function () {
|
|
30260
30206
|
var extendStatics = function (d, b) {
|
|
@@ -30335,7 +30281,7 @@ var SimpleAction = /** @class */ (function (_super) {
|
|
|
30335
30281
|
}(Action_1.Action));
|
|
30336
30282
|
exports.SimpleAction = SimpleAction;
|
|
30337
30283
|
|
|
30338
|
-
},{"./Action":
|
|
30284
|
+
},{"./Action":213}],217:[function(require,module,exports){
|
|
30339
30285
|
"use strict";
|
|
30340
30286
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30341
30287
|
exports.StateMachine = void 0;
|
|
@@ -30378,7 +30324,7 @@ var StateMachine = /** @class */ (function () {
|
|
|
30378
30324
|
}());
|
|
30379
30325
|
exports.StateMachine = StateMachine;
|
|
30380
30326
|
|
|
30381
|
-
},{"../errors":
|
|
30327
|
+
},{"../errors":437,"../errors/coinlib-error":436}],218:[function(require,module,exports){
|
|
30382
30328
|
"use strict";
|
|
30383
30329
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30384
30330
|
exports.RPCBody = void 0;
|
|
@@ -30395,9 +30341,9 @@ var RPCBody = /** @class */ (function () {
|
|
|
30395
30341
|
}());
|
|
30396
30342
|
exports.RPCBody = RPCBody;
|
|
30397
30343
|
|
|
30398
|
-
},{}],
|
|
30344
|
+
},{}],219:[function(require,module,exports){
|
|
30399
30345
|
module.exports = require('./lib/axios');
|
|
30400
|
-
},{"./lib/axios":
|
|
30346
|
+
},{"./lib/axios":221}],220:[function(require,module,exports){
|
|
30401
30347
|
'use strict';
|
|
30402
30348
|
|
|
30403
30349
|
var utils = require('./../utils');
|
|
@@ -30573,7 +30519,7 @@ module.exports = function xhrAdapter(config) {
|
|
|
30573
30519
|
});
|
|
30574
30520
|
};
|
|
30575
30521
|
|
|
30576
|
-
},{"../core/createError":
|
|
30522
|
+
},{"../core/createError":227,"./../core/settle":231,"./../helpers/buildURL":235,"./../helpers/cookies":237,"./../helpers/isURLSameOrigin":239,"./../helpers/parseHeaders":241,"./../utils":243}],221:[function(require,module,exports){
|
|
30577
30523
|
'use strict';
|
|
30578
30524
|
|
|
30579
30525
|
var utils = require('./utils');
|
|
@@ -30628,7 +30574,7 @@ module.exports = axios;
|
|
|
30628
30574
|
// Allow use of default import syntax in TypeScript
|
|
30629
30575
|
module.exports.default = axios;
|
|
30630
30576
|
|
|
30631
|
-
},{"./cancel/Cancel":
|
|
30577
|
+
},{"./cancel/Cancel":222,"./cancel/CancelToken":223,"./cancel/isCancel":224,"./core/Axios":225,"./core/mergeConfig":230,"./defaults":233,"./helpers/bind":234,"./helpers/spread":242,"./utils":243}],222:[function(require,module,exports){
|
|
30632
30578
|
'use strict';
|
|
30633
30579
|
|
|
30634
30580
|
/**
|
|
@@ -30649,7 +30595,7 @@ Cancel.prototype.__CANCEL__ = true;
|
|
|
30649
30595
|
|
|
30650
30596
|
module.exports = Cancel;
|
|
30651
30597
|
|
|
30652
|
-
},{}],
|
|
30598
|
+
},{}],223:[function(require,module,exports){
|
|
30653
30599
|
'use strict';
|
|
30654
30600
|
|
|
30655
30601
|
var Cancel = require('./Cancel');
|
|
@@ -30708,14 +30654,14 @@ CancelToken.source = function source() {
|
|
|
30708
30654
|
|
|
30709
30655
|
module.exports = CancelToken;
|
|
30710
30656
|
|
|
30711
|
-
},{"./Cancel":
|
|
30657
|
+
},{"./Cancel":222}],224:[function(require,module,exports){
|
|
30712
30658
|
'use strict';
|
|
30713
30659
|
|
|
30714
30660
|
module.exports = function isCancel(value) {
|
|
30715
30661
|
return !!(value && value.__CANCEL__);
|
|
30716
30662
|
};
|
|
30717
30663
|
|
|
30718
|
-
},{}],
|
|
30664
|
+
},{}],225:[function(require,module,exports){
|
|
30719
30665
|
'use strict';
|
|
30720
30666
|
|
|
30721
30667
|
var utils = require('./../utils');
|
|
@@ -30803,7 +30749,7 @@ utils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {
|
|
|
30803
30749
|
|
|
30804
30750
|
module.exports = Axios;
|
|
30805
30751
|
|
|
30806
|
-
},{"../helpers/buildURL":
|
|
30752
|
+
},{"../helpers/buildURL":235,"./../utils":243,"./InterceptorManager":226,"./dispatchRequest":228,"./mergeConfig":230}],226:[function(require,module,exports){
|
|
30807
30753
|
'use strict';
|
|
30808
30754
|
|
|
30809
30755
|
var utils = require('./../utils');
|
|
@@ -30857,7 +30803,7 @@ InterceptorManager.prototype.forEach = function forEach(fn) {
|
|
|
30857
30803
|
|
|
30858
30804
|
module.exports = InterceptorManager;
|
|
30859
30805
|
|
|
30860
|
-
},{"./../utils":
|
|
30806
|
+
},{"./../utils":243}],227:[function(require,module,exports){
|
|
30861
30807
|
'use strict';
|
|
30862
30808
|
|
|
30863
30809
|
var enhanceError = require('./enhanceError');
|
|
@@ -30877,7 +30823,7 @@ module.exports = function createError(message, config, code, request, response)
|
|
|
30877
30823
|
return enhanceError(error, config, code, request, response);
|
|
30878
30824
|
};
|
|
30879
30825
|
|
|
30880
|
-
},{"./enhanceError":
|
|
30826
|
+
},{"./enhanceError":229}],228:[function(require,module,exports){
|
|
30881
30827
|
'use strict';
|
|
30882
30828
|
|
|
30883
30829
|
var utils = require('./../utils');
|
|
@@ -30965,7 +30911,7 @@ module.exports = function dispatchRequest(config) {
|
|
|
30965
30911
|
});
|
|
30966
30912
|
};
|
|
30967
30913
|
|
|
30968
|
-
},{"../cancel/isCancel":
|
|
30914
|
+
},{"../cancel/isCancel":224,"../defaults":233,"./../helpers/combineURLs":236,"./../helpers/isAbsoluteURL":238,"./../utils":243,"./transformData":232}],229:[function(require,module,exports){
|
|
30969
30915
|
'use strict';
|
|
30970
30916
|
|
|
30971
30917
|
/**
|
|
@@ -31009,7 +30955,7 @@ module.exports = function enhanceError(error, config, code, request, response) {
|
|
|
31009
30955
|
return error;
|
|
31010
30956
|
};
|
|
31011
30957
|
|
|
31012
|
-
},{}],
|
|
30958
|
+
},{}],230:[function(require,module,exports){
|
|
31013
30959
|
'use strict';
|
|
31014
30960
|
|
|
31015
30961
|
var utils = require('../utils');
|
|
@@ -31062,7 +31008,7 @@ module.exports = function mergeConfig(config1, config2) {
|
|
|
31062
31008
|
return config;
|
|
31063
31009
|
};
|
|
31064
31010
|
|
|
31065
|
-
},{"../utils":
|
|
31011
|
+
},{"../utils":243}],231:[function(require,module,exports){
|
|
31066
31012
|
'use strict';
|
|
31067
31013
|
|
|
31068
31014
|
var createError = require('./createError');
|
|
@@ -31089,7 +31035,7 @@ module.exports = function settle(resolve, reject, response) {
|
|
|
31089
31035
|
}
|
|
31090
31036
|
};
|
|
31091
31037
|
|
|
31092
|
-
},{"./createError":
|
|
31038
|
+
},{"./createError":227}],232:[function(require,module,exports){
|
|
31093
31039
|
'use strict';
|
|
31094
31040
|
|
|
31095
31041
|
var utils = require('./../utils');
|
|
@@ -31111,7 +31057,7 @@ module.exports = function transformData(data, headers, fns) {
|
|
|
31111
31057
|
return data;
|
|
31112
31058
|
};
|
|
31113
31059
|
|
|
31114
|
-
},{"./../utils":
|
|
31060
|
+
},{"./../utils":243}],233:[function(require,module,exports){
|
|
31115
31061
|
(function (process){(function (){
|
|
31116
31062
|
'use strict';
|
|
31117
31063
|
|
|
@@ -31213,7 +31159,7 @@ utils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {
|
|
|
31213
31159
|
module.exports = defaults;
|
|
31214
31160
|
|
|
31215
31161
|
}).call(this)}).call(this,require('_process'))
|
|
31216
|
-
},{"./adapters/http":
|
|
31162
|
+
},{"./adapters/http":220,"./adapters/xhr":220,"./helpers/normalizeHeaderName":240,"./utils":243,"_process":171}],234:[function(require,module,exports){
|
|
31217
31163
|
'use strict';
|
|
31218
31164
|
|
|
31219
31165
|
module.exports = function bind(fn, thisArg) {
|
|
@@ -31226,7 +31172,7 @@ module.exports = function bind(fn, thisArg) {
|
|
|
31226
31172
|
};
|
|
31227
31173
|
};
|
|
31228
31174
|
|
|
31229
|
-
},{}],
|
|
31175
|
+
},{}],235:[function(require,module,exports){
|
|
31230
31176
|
'use strict';
|
|
31231
31177
|
|
|
31232
31178
|
var utils = require('./../utils');
|
|
@@ -31299,7 +31245,7 @@ module.exports = function buildURL(url, params, paramsSerializer) {
|
|
|
31299
31245
|
return url;
|
|
31300
31246
|
};
|
|
31301
31247
|
|
|
31302
|
-
},{"./../utils":
|
|
31248
|
+
},{"./../utils":243}],236:[function(require,module,exports){
|
|
31303
31249
|
'use strict';
|
|
31304
31250
|
|
|
31305
31251
|
/**
|
|
@@ -31315,7 +31261,7 @@ module.exports = function combineURLs(baseURL, relativeURL) {
|
|
|
31315
31261
|
: baseURL;
|
|
31316
31262
|
};
|
|
31317
31263
|
|
|
31318
|
-
},{}],
|
|
31264
|
+
},{}],237:[function(require,module,exports){
|
|
31319
31265
|
'use strict';
|
|
31320
31266
|
|
|
31321
31267
|
var utils = require('./../utils');
|
|
@@ -31370,7 +31316,7 @@ module.exports = (
|
|
|
31370
31316
|
})()
|
|
31371
31317
|
);
|
|
31372
31318
|
|
|
31373
|
-
},{"./../utils":
|
|
31319
|
+
},{"./../utils":243}],238:[function(require,module,exports){
|
|
31374
31320
|
'use strict';
|
|
31375
31321
|
|
|
31376
31322
|
/**
|
|
@@ -31386,7 +31332,7 @@ module.exports = function isAbsoluteURL(url) {
|
|
|
31386
31332
|
return /^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(url);
|
|
31387
31333
|
};
|
|
31388
31334
|
|
|
31389
|
-
},{}],
|
|
31335
|
+
},{}],239:[function(require,module,exports){
|
|
31390
31336
|
'use strict';
|
|
31391
31337
|
|
|
31392
31338
|
var utils = require('./../utils');
|
|
@@ -31456,7 +31402,7 @@ module.exports = (
|
|
|
31456
31402
|
})()
|
|
31457
31403
|
);
|
|
31458
31404
|
|
|
31459
|
-
},{"./../utils":
|
|
31405
|
+
},{"./../utils":243}],240:[function(require,module,exports){
|
|
31460
31406
|
'use strict';
|
|
31461
31407
|
|
|
31462
31408
|
var utils = require('../utils');
|
|
@@ -31470,7 +31416,7 @@ module.exports = function normalizeHeaderName(headers, normalizedName) {
|
|
|
31470
31416
|
});
|
|
31471
31417
|
};
|
|
31472
31418
|
|
|
31473
|
-
},{"../utils":
|
|
31419
|
+
},{"../utils":243}],241:[function(require,module,exports){
|
|
31474
31420
|
'use strict';
|
|
31475
31421
|
|
|
31476
31422
|
var utils = require('./../utils');
|
|
@@ -31525,7 +31471,7 @@ module.exports = function parseHeaders(headers) {
|
|
|
31525
31471
|
return parsed;
|
|
31526
31472
|
};
|
|
31527
31473
|
|
|
31528
|
-
},{"./../utils":
|
|
31474
|
+
},{"./../utils":243}],242:[function(require,module,exports){
|
|
31529
31475
|
'use strict';
|
|
31530
31476
|
|
|
31531
31477
|
/**
|
|
@@ -31554,7 +31500,7 @@ module.exports = function spread(callback) {
|
|
|
31554
31500
|
};
|
|
31555
31501
|
};
|
|
31556
31502
|
|
|
31557
|
-
},{}],
|
|
31503
|
+
},{}],243:[function(require,module,exports){
|
|
31558
31504
|
'use strict';
|
|
31559
31505
|
|
|
31560
31506
|
var bind = require('./helpers/bind');
|
|
@@ -31890,7 +31836,7 @@ module.exports = {
|
|
|
31890
31836
|
trim: trim
|
|
31891
31837
|
};
|
|
31892
31838
|
|
|
31893
|
-
},{"../../is-buffer-2.0.3/index":
|
|
31839
|
+
},{"../../is-buffer-2.0.3/index":369,"./helpers/bind":234}],244:[function(require,module,exports){
|
|
31894
31840
|
'use strict'
|
|
31895
31841
|
// base-x encoding / decoding
|
|
31896
31842
|
// Copyright (c) 2018 base-x contributors
|
|
@@ -32012,7 +31958,7 @@ function base (ALPHABET) {
|
|
|
32012
31958
|
}
|
|
32013
31959
|
module.exports = base
|
|
32014
31960
|
|
|
32015
|
-
},{"../../safe-buffer-5.2.0/index":
|
|
31961
|
+
},{"../../safe-buffer-5.2.0/index":408}],245:[function(require,module,exports){
|
|
32016
31962
|
'use strict'
|
|
32017
31963
|
let ALPHABET = 'qpzry9x8gf2tvdw0s3jn54khce6mua7l'
|
|
32018
31964
|
|
|
@@ -32153,7 +32099,7 @@ function fromWords (words) {
|
|
|
32153
32099
|
|
|
32154
32100
|
module.exports = { decode, encode, toWords, fromWords }
|
|
32155
32101
|
|
|
32156
|
-
},{}],
|
|
32102
|
+
},{}],246:[function(require,module,exports){
|
|
32157
32103
|
// (public) Constructor
|
|
32158
32104
|
function BigInteger(a, b, c) {
|
|
32159
32105
|
if (!(this instanceof BigInteger))
|
|
@@ -33664,7 +33610,7 @@ BigInteger.valueOf = nbv
|
|
|
33664
33610
|
|
|
33665
33611
|
module.exports = BigInteger
|
|
33666
33612
|
|
|
33667
|
-
},{"../package.json":
|
|
33613
|
+
},{"../package.json":249}],247:[function(require,module,exports){
|
|
33668
33614
|
(function (Buffer){(function (){
|
|
33669
33615
|
// FIXME: Kind of a weird way to throw exceptions, consider removing
|
|
33670
33616
|
var assert = require('assert')
|
|
@@ -33759,14 +33705,14 @@ BigInteger.prototype.toHex = function(size) {
|
|
|
33759
33705
|
}
|
|
33760
33706
|
|
|
33761
33707
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
33762
|
-
},{"./bigi":
|
|
33708
|
+
},{"./bigi":246,"assert":16,"buffer":67}],248:[function(require,module,exports){
|
|
33763
33709
|
var BigInteger = require('./bigi')
|
|
33764
33710
|
|
|
33765
33711
|
//addons
|
|
33766
33712
|
require('./convert')
|
|
33767
33713
|
|
|
33768
33714
|
module.exports = BigInteger
|
|
33769
|
-
},{"./bigi":
|
|
33715
|
+
},{"./bigi":246,"./convert":247}],249:[function(require,module,exports){
|
|
33770
33716
|
module.exports={
|
|
33771
33717
|
"name": "bigi",
|
|
33772
33718
|
"version": "1.4.2",
|
|
@@ -33822,7 +33768,7 @@ module.exports={
|
|
|
33822
33768
|
]
|
|
33823
33769
|
}
|
|
33824
33770
|
}
|
|
33825
|
-
},{}],
|
|
33771
|
+
},{}],250:[function(require,module,exports){
|
|
33826
33772
|
;(function (globalObject) {
|
|
33827
33773
|
'use strict';
|
|
33828
33774
|
|
|
@@ -36726,7 +36672,7 @@ module.exports={
|
|
|
36726
36672
|
}
|
|
36727
36673
|
})(this);
|
|
36728
36674
|
|
|
36729
|
-
},{}],
|
|
36675
|
+
},{}],251:[function(require,module,exports){
|
|
36730
36676
|
var Buffer = require('../safe-buffer-5.2.0/index').Buffer
|
|
36731
36677
|
var createHash = require('../create-hash-1.2.0/browser')
|
|
36732
36678
|
var pbkdf2 = require('../pbkdf2-3.0.17/index').pbkdf2Sync
|
|
@@ -36881,7 +36827,7 @@ module.exports = {
|
|
|
36881
36827
|
}
|
|
36882
36828
|
}
|
|
36883
36829
|
|
|
36884
|
-
},{"../create-hash-1.2.0/browser":
|
|
36830
|
+
},{"../create-hash-1.2.0/browser":313,"../pbkdf2-3.0.17/index":399,"../randombytes-2.1.0/browser":405,"../safe-buffer-5.2.0/index":408,"../unorm-1.6.0/lib/unorm":431,"./wordlists/chinese_simplified.json":252,"./wordlists/chinese_traditional.json":253,"./wordlists/english.json":254,"./wordlists/french.json":255,"./wordlists/italian.json":256,"./wordlists/japanese.json":257,"./wordlists/korean.json":258,"./wordlists/spanish.json":259}],252:[function(require,module,exports){
|
|
36885
36831
|
module.exports=[
|
|
36886
36832
|
"的",
|
|
36887
36833
|
"一",
|
|
@@ -38932,7 +38878,7 @@ module.exports=[
|
|
|
38932
38878
|
"矮",
|
|
38933
38879
|
"歇"
|
|
38934
38880
|
]
|
|
38935
|
-
},{}],
|
|
38881
|
+
},{}],253:[function(require,module,exports){
|
|
38936
38882
|
module.exports=[
|
|
38937
38883
|
"的",
|
|
38938
38884
|
"一",
|
|
@@ -40983,7 +40929,7 @@ module.exports=[
|
|
|
40983
40929
|
"矮",
|
|
40984
40930
|
"歇"
|
|
40985
40931
|
]
|
|
40986
|
-
},{}],
|
|
40932
|
+
},{}],254:[function(require,module,exports){
|
|
40987
40933
|
module.exports=[
|
|
40988
40934
|
"abandon",
|
|
40989
40935
|
"ability",
|
|
@@ -43034,7 +42980,7 @@ module.exports=[
|
|
|
43034
42980
|
"zone",
|
|
43035
42981
|
"zoo"
|
|
43036
42982
|
]
|
|
43037
|
-
},{}],
|
|
42983
|
+
},{}],255:[function(require,module,exports){
|
|
43038
42984
|
module.exports=[
|
|
43039
42985
|
"abaisser",
|
|
43040
42986
|
"abandon",
|
|
@@ -45085,7 +45031,7 @@ module.exports=[
|
|
|
45085
45031
|
"zeste",
|
|
45086
45032
|
"zoologie"
|
|
45087
45033
|
]
|
|
45088
|
-
},{}],
|
|
45034
|
+
},{}],256:[function(require,module,exports){
|
|
45089
45035
|
module.exports=[
|
|
45090
45036
|
"abaco",
|
|
45091
45037
|
"abbaglio",
|
|
@@ -47136,7 +47082,7 @@ module.exports=[
|
|
|
47136
47082
|
"zulu",
|
|
47137
47083
|
"zuppa"
|
|
47138
47084
|
]
|
|
47139
|
-
},{}],
|
|
47085
|
+
},{}],257:[function(require,module,exports){
|
|
47140
47086
|
module.exports=[
|
|
47141
47087
|
"あいこくしん",
|
|
47142
47088
|
"あいさつ",
|
|
@@ -49187,7 +49133,7 @@ module.exports=[
|
|
|
49187
49133
|
"わらう",
|
|
49188
49134
|
"われる"
|
|
49189
49135
|
]
|
|
49190
|
-
},{}],
|
|
49136
|
+
},{}],258:[function(require,module,exports){
|
|
49191
49137
|
module.exports=[
|
|
49192
49138
|
"가격",
|
|
49193
49139
|
"가끔",
|
|
@@ -51238,7 +51184,7 @@ module.exports=[
|
|
|
51238
51184
|
"흰색",
|
|
51239
51185
|
"힘껏"
|
|
51240
51186
|
]
|
|
51241
|
-
},{}],
|
|
51187
|
+
},{}],259:[function(require,module,exports){
|
|
51242
51188
|
module.exports=[
|
|
51243
51189
|
"ábaco",
|
|
51244
51190
|
"abdomen",
|
|
@@ -53289,7 +53235,7 @@ module.exports=[
|
|
|
53289
53235
|
"zumo",
|
|
53290
53236
|
"zurdo"
|
|
53291
53237
|
]
|
|
53292
|
-
},{}],
|
|
53238
|
+
},{}],260:[function(require,module,exports){
|
|
53293
53239
|
// Reference https://github.com/bitcoin/bips/blob/master/bip-0066.mediawiki
|
|
53294
53240
|
// Format: 0x30 [total-length] 0x02 [R-length] [R] 0x02 [S-length] [S]
|
|
53295
53241
|
// NOTE: SIGHASH byte ignored AND restricted, truncate before use
|
|
@@ -53404,7 +53350,7 @@ module.exports = {
|
|
|
53404
53350
|
encode: encode
|
|
53405
53351
|
}
|
|
53406
53352
|
|
|
53407
|
-
},{"../safe-buffer-5.2.0/index":
|
|
53353
|
+
},{"../safe-buffer-5.2.0/index":408}],261:[function(require,module,exports){
|
|
53408
53354
|
module.exports={
|
|
53409
53355
|
"OP_FALSE": 0,
|
|
53410
53356
|
"OP_0": 0,
|
|
@@ -53525,7 +53471,7 @@ module.exports={
|
|
|
53525
53471
|
"OP_PUBKEY": 254,
|
|
53526
53472
|
"OP_INVALIDOPCODE": 255
|
|
53527
53473
|
}
|
|
53528
|
-
},{}],
|
|
53474
|
+
},{}],262:[function(require,module,exports){
|
|
53529
53475
|
var OPS = require('./index.json')
|
|
53530
53476
|
|
|
53531
53477
|
var map = {}
|
|
@@ -53536,7 +53482,7 @@ for (var op in OPS) {
|
|
|
53536
53482
|
|
|
53537
53483
|
module.exports = map
|
|
53538
53484
|
|
|
53539
|
-
},{"./index.json":
|
|
53485
|
+
},{"./index.json":261}],263:[function(require,module,exports){
|
|
53540
53486
|
var Buffer = require('../../safe-buffer-5.2.0/index').Buffer
|
|
53541
53487
|
var bech32 = require('../../bech32-0.0.3/index')
|
|
53542
53488
|
var bs58check = require('../../bs58check-2.1.2/index')
|
|
@@ -53647,7 +53593,7 @@ module.exports = {
|
|
|
53647
53593
|
toOutputScript: toOutputScript
|
|
53648
53594
|
}
|
|
53649
53595
|
|
|
53650
|
-
},{"../../bech32-0.0.3/index":
|
|
53596
|
+
},{"../../bech32-0.0.3/index":245,"../../bs58check-2.1.2/base":309,"../../bs58check-2.1.2/index":310,"../../safe-buffer-5.2.0/index":408,"../../typeforce-1.18.0/index":429,"./networks":275,"./script":276,"./templates":278,"./types":302}],264:[function(require,module,exports){
|
|
53651
53597
|
var Buffer = require('../../safe-buffer-5.2.0/index').Buffer
|
|
53652
53598
|
var bcrypto = require('./crypto')
|
|
53653
53599
|
var fastMerkleRoot = require('../../merkle-lib-2.0.10/fastRoot')
|
|
@@ -53883,7 +53829,7 @@ Block.prototype.checkProofOfWork = function () {
|
|
|
53883
53829
|
|
|
53884
53830
|
module.exports = Block
|
|
53885
53831
|
|
|
53886
|
-
},{"../../merkle-lib-2.0.10/fastRoot":
|
|
53832
|
+
},{"../../merkle-lib-2.0.10/fastRoot":378,"../../safe-buffer-5.2.0/index":408,"../../typeforce-1.18.0/index":429,"../../varuint-bitcoin-1.1.2/index":434,"./coins":267,"./crypto":268,"./networks":275,"./transaction":300,"./types":302}],265:[function(require,module,exports){
|
|
53887
53833
|
var Buffer = require('../../safe-buffer-5.2.0/index').Buffer
|
|
53888
53834
|
var bufferutils = require('./bufferutils')
|
|
53889
53835
|
var varuint = require('../../varuint-bitcoin-1.1.2/index')
|
|
@@ -53925,7 +53871,7 @@ BufferWriter.prototype.writeVarSlice = function (slice) {
|
|
|
53925
53871
|
|
|
53926
53872
|
module.exports = BufferWriter
|
|
53927
53873
|
|
|
53928
|
-
},{"../../safe-buffer-5.2.0/index":
|
|
53874
|
+
},{"../../safe-buffer-5.2.0/index":408,"../../varuint-bitcoin-1.1.2/index":434,"./bufferutils":266}],266:[function(require,module,exports){
|
|
53929
53875
|
var pushdata = require('../../pushdata-bitcoin-1.0.1/index')
|
|
53930
53876
|
var varuint = require('../../varuint-bitcoin-1.1.2/index')
|
|
53931
53877
|
|
|
@@ -53992,7 +53938,7 @@ module.exports = {
|
|
|
53992
53938
|
writeVarInt: writeVarInt
|
|
53993
53939
|
}
|
|
53994
53940
|
|
|
53995
|
-
},{"../../pushdata-bitcoin-1.0.1/index":
|
|
53941
|
+
},{"../../pushdata-bitcoin-1.0.1/index":404,"../../varuint-bitcoin-1.1.2/index":434}],267:[function(require,module,exports){
|
|
53996
53942
|
// Coins supported by bitgo-bitcoinjs-lib
|
|
53997
53943
|
const typeforce = require('../../typeforce-1.18.0/index')
|
|
53998
53944
|
|
|
@@ -54047,7 +53993,7 @@ coins.isValidCoin = typeforce.oneOf(
|
|
|
54047
53993
|
|
|
54048
53994
|
module.exports = coins
|
|
54049
53995
|
|
|
54050
|
-
},{"../../typeforce-1.18.0/index":
|
|
53996
|
+
},{"../../typeforce-1.18.0/index":429}],268:[function(require,module,exports){
|
|
54051
53997
|
(function (Buffer){(function (){
|
|
54052
53998
|
var createHash = require('../../create-hash-1.2.0/browser')
|
|
54053
53999
|
var groestlhash = require('../../groestl-hash-js-ef6a04f1c4d2f0448f0882b5f213ef7a0659baee/index')
|
|
@@ -54094,7 +54040,7 @@ module.exports = {
|
|
|
54094
54040
|
}
|
|
54095
54041
|
|
|
54096
54042
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
54097
|
-
},{"../../create-hash-1.2.0/browser":
|
|
54043
|
+
},{"../../create-hash-1.2.0/browser":313,"../../groestl-hash-js-ef6a04f1c4d2f0448f0882b5f213ef7a0659baee/index":349,"buffer":67,"crypto":78}],269:[function(require,module,exports){
|
|
54098
54044
|
var Buffer = require('../../safe-buffer-5.2.0/index').Buffer
|
|
54099
54045
|
var createHmac = require('../../create-hmac-1.1.4/browser')
|
|
54100
54046
|
var typeforce = require('../../typeforce-1.18.0/index')
|
|
@@ -54257,7 +54203,7 @@ module.exports = {
|
|
|
54257
54203
|
__curve: secp256k1
|
|
54258
54204
|
}
|
|
54259
54205
|
|
|
54260
|
-
},{"../../bigi-1.4.2/lib/index":
|
|
54206
|
+
},{"../../bigi-1.4.2/lib/index":248,"../../create-hmac-1.1.4/browser":315,"../../ecurve-1.0.6/lib/index":325,"../../safe-buffer-5.2.0/index":408,"../../typeforce-1.18.0/index":429,"./ecsignature":271,"./types":302}],270:[function(require,module,exports){
|
|
54261
54207
|
(function (Buffer){(function (){
|
|
54262
54208
|
var baddress = require('./address')
|
|
54263
54209
|
var bcrypto = require('./crypto')
|
|
@@ -54416,7 +54362,7 @@ ECPair.prototype.verify = function (hash, signature) {
|
|
|
54416
54362
|
module.exports = ECPair
|
|
54417
54363
|
|
|
54418
54364
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
54419
|
-
},{"../../bigi-1.4.2/lib/index":
|
|
54365
|
+
},{"../../bigi-1.4.2/lib/index":248,"../../ecurve-1.0.6/lib/index":325,"../../randombytes-2.1.0/browser":405,"../../typeforce-1.18.0/index":429,"../../wif-2.0.6/index":435,"./address":263,"./crypto":268,"./ecdsa":269,"./fastcurve":272,"./networks":275,"./types":302,"buffer":67}],271:[function(require,module,exports){
|
|
54420
54366
|
(function (Buffer){(function (){
|
|
54421
54367
|
var bip66 = require('../../bip66-1.1.5/index')
|
|
54422
54368
|
var typeforce = require('../../typeforce-1.18.0/index')
|
|
@@ -54517,7 +54463,7 @@ ECSignature.prototype.toScriptSignature = function (hashType) {
|
|
|
54517
54463
|
module.exports = ECSignature
|
|
54518
54464
|
|
|
54519
54465
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
54520
|
-
},{"../../bigi-1.4.2/lib/index":
|
|
54466
|
+
},{"../../bigi-1.4.2/lib/index":248,"../../bip66-1.1.5/index":260,"../../typeforce-1.18.0/index":429,"./types":302,"buffer":67}],272:[function(require,module,exports){
|
|
54521
54467
|
var typeforce = require('../../typeforce-1.18.0/index')
|
|
54522
54468
|
|
|
54523
54469
|
var ECSignature = require('./ecsignature')
|
|
@@ -54611,7 +54557,7 @@ module.exports = {
|
|
|
54611
54557
|
verify: verify
|
|
54612
54558
|
}
|
|
54613
54559
|
|
|
54614
|
-
},{"../../secp256k1-3.7.1/elliptic":
|
|
54560
|
+
},{"../../secp256k1-3.7.1/elliptic":409,"../../typeforce-1.18.0/index":429,"./ecsignature":271,"./types":302}],273:[function(require,module,exports){
|
|
54615
54561
|
var Buffer = require('../../safe-buffer-5.2.0/index').Buffer
|
|
54616
54562
|
var base58check = require('../../bs58check-2.1.2/index')
|
|
54617
54563
|
var bcrypto = require('./crypto')
|
|
@@ -54976,7 +54922,7 @@ HDNode.prototype.cloneKeypair = function () {
|
|
|
54976
54922
|
|
|
54977
54923
|
module.exports = HDNode
|
|
54978
54924
|
|
|
54979
|
-
},{"../../bigi-1.4.2/lib/index":
|
|
54925
|
+
},{"../../bigi-1.4.2/lib/index":248,"../../bs58check-2.1.2/base":309,"../../bs58check-2.1.2/index":310,"../../create-hmac-1.1.4/browser":315,"../../ecurve-1.0.6/lib/index":325,"../../safe-buffer-5.2.0/index":408,"../../typeforce-1.18.0/index":429,"./crypto":268,"./ecpair":270,"./fastcurve":272,"./networks":275,"./types":302}],274:[function(require,module,exports){
|
|
54980
54926
|
var script = require('./script')
|
|
54981
54927
|
|
|
54982
54928
|
var templates = require('./templates')
|
|
@@ -55002,7 +54948,7 @@ module.exports = {
|
|
|
55002
54948
|
script: script
|
|
55003
54949
|
}
|
|
55004
54950
|
|
|
55005
|
-
},{"../../bitcoin-ops-1.4.1/index.json":
|
|
54951
|
+
},{"../../bitcoin-ops-1.4.1/index.json":261,"./address":263,"./block":264,"./bufferutils":266,"./coins":267,"./crypto":268,"./ecpair":270,"./ecsignature":271,"./hdnode":273,"./networks":275,"./script":276,"./templates":278,"./transaction":300,"./transaction_builder":301}],275:[function(require,module,exports){
|
|
55006
54952
|
// https://en.bitcoin.it/wiki/List_of_address_prefixes
|
|
55007
54953
|
// Dogecoin BIP32 is a proposed standard: https://bitcointalk.org/index.php?topic=409731
|
|
55008
54954
|
var coins = require('./coins')
|
|
@@ -55218,7 +55164,7 @@ module.exports = {
|
|
|
55218
55164
|
}
|
|
55219
55165
|
}
|
|
55220
55166
|
|
|
55221
|
-
},{"./coins":
|
|
55167
|
+
},{"./coins":267,"./crypto":268}],276:[function(require,module,exports){
|
|
55222
55168
|
var Buffer = require('../../safe-buffer-5.2.0/index').Buffer
|
|
55223
55169
|
var bip66 = require('../../bip66-1.1.5/index')
|
|
55224
55170
|
var pushdata = require('../../pushdata-bitcoin-1.0.1/index')
|
|
@@ -55434,7 +55380,7 @@ module.exports = {
|
|
|
55434
55380
|
isDefinedHashType: isDefinedHashType
|
|
55435
55381
|
}
|
|
55436
55382
|
|
|
55437
|
-
},{"../../bip66-1.1.5/index":
|
|
55383
|
+
},{"../../bip66-1.1.5/index":260,"../../bitcoin-ops-1.4.1/index.json":261,"../../bitcoin-ops-1.4.1/map":262,"../../pushdata-bitcoin-1.0.1/index":404,"../../safe-buffer-5.2.0/index":408,"../../typeforce-1.18.0/index":429,"./script_number":277,"./types":302}],277:[function(require,module,exports){
|
|
55438
55384
|
var Buffer = require('../../safe-buffer-5.2.0/index').Buffer
|
|
55439
55385
|
|
|
55440
55386
|
function decode (buffer, maxLength, minimal) {
|
|
@@ -55504,7 +55450,7 @@ module.exports = {
|
|
|
55504
55450
|
encode: encode
|
|
55505
55451
|
}
|
|
55506
55452
|
|
|
55507
|
-
},{"../../safe-buffer-5.2.0/index":
|
|
55453
|
+
},{"../../safe-buffer-5.2.0/index":408}],278:[function(require,module,exports){
|
|
55508
55454
|
var decompile = require('../script').decompile
|
|
55509
55455
|
var multisig = require('./multisig')
|
|
55510
55456
|
var nullData = require('./nulldata')
|
|
@@ -55580,13 +55526,13 @@ module.exports = {
|
|
|
55580
55526
|
types: types
|
|
55581
55527
|
}
|
|
55582
55528
|
|
|
55583
|
-
},{"../script":
|
|
55529
|
+
},{"../script":276,"./multisig":279,"./nulldata":282,"./pubkey":283,"./pubkeyhash":286,"./scripthash":289,"./witnesscommitment":292,"./witnesspubkeyhash":294,"./witnessscripthash":297}],279:[function(require,module,exports){
|
|
55584
55530
|
module.exports = {
|
|
55585
55531
|
input: require('./input'),
|
|
55586
55532
|
output: require('./output')
|
|
55587
55533
|
}
|
|
55588
55534
|
|
|
55589
|
-
},{"./input":
|
|
55535
|
+
},{"./input":280,"./output":281}],280:[function(require,module,exports){
|
|
55590
55536
|
// OP_0 [signatures ...]
|
|
55591
55537
|
|
|
55592
55538
|
var Buffer = require('../../../../safe-buffer-5.2.0/index').Buffer
|
|
@@ -55659,7 +55605,7 @@ module.exports = {
|
|
|
55659
55605
|
encodeStack: encodeStack
|
|
55660
55606
|
}
|
|
55661
55607
|
|
|
55662
|
-
},{"../../../../bitcoin-ops-1.4.1/index.json":
|
|
55608
|
+
},{"../../../../bitcoin-ops-1.4.1/index.json":261,"../../../../safe-buffer-5.2.0/index":408,"../../../../typeforce-1.18.0/index":429,"../../script":276,"./output":281}],281:[function(require,module,exports){
|
|
55663
55609
|
// m [pubKeys ...] n OP_CHECKMULTISIG
|
|
55664
55610
|
|
|
55665
55611
|
var bscript = require('../../script')
|
|
@@ -55725,7 +55671,7 @@ module.exports = {
|
|
|
55725
55671
|
encode: encode
|
|
55726
55672
|
}
|
|
55727
55673
|
|
|
55728
|
-
},{"../../../../bitcoin-ops-1.4.1/index.json":
|
|
55674
|
+
},{"../../../../bitcoin-ops-1.4.1/index.json":261,"../../../../typeforce-1.18.0/index":429,"../../script":276,"../../types":302}],282:[function(require,module,exports){
|
|
55729
55675
|
// OP_RETURN {data}
|
|
55730
55676
|
|
|
55731
55677
|
var bscript = require('../script')
|
|
@@ -55766,9 +55712,9 @@ module.exports = {
|
|
|
55766
55712
|
}
|
|
55767
55713
|
}
|
|
55768
55714
|
|
|
55769
|
-
},{"../../../bitcoin-ops-1.4.1/index.json":
|
|
55770
|
-
arguments[4][
|
|
55771
|
-
},{"./input":
|
|
55715
|
+
},{"../../../bitcoin-ops-1.4.1/index.json":261,"../../../typeforce-1.18.0/index":429,"../script":276,"../types":302}],283:[function(require,module,exports){
|
|
55716
|
+
arguments[4][279][0].apply(exports,arguments)
|
|
55717
|
+
},{"./input":284,"./output":285,"dup":279}],284:[function(require,module,exports){
|
|
55772
55718
|
// {signature}
|
|
55773
55719
|
|
|
55774
55720
|
var bscript = require('../../script')
|
|
@@ -55809,7 +55755,7 @@ module.exports = {
|
|
|
55809
55755
|
encodeStack: encodeStack
|
|
55810
55756
|
}
|
|
55811
55757
|
|
|
55812
|
-
},{"../../../../typeforce-1.18.0/index":
|
|
55758
|
+
},{"../../../../typeforce-1.18.0/index":429,"../../script":276}],285:[function(require,module,exports){
|
|
55813
55759
|
// {pubKey} OP_CHECKSIG
|
|
55814
55760
|
|
|
55815
55761
|
var bscript = require('../../script')
|
|
@@ -55844,9 +55790,9 @@ module.exports = {
|
|
|
55844
55790
|
encode: encode
|
|
55845
55791
|
}
|
|
55846
55792
|
|
|
55847
|
-
},{"../../../../bitcoin-ops-1.4.1/index.json":
|
|
55848
|
-
arguments[4][
|
|
55849
|
-
},{"./input":
|
|
55793
|
+
},{"../../../../bitcoin-ops-1.4.1/index.json":261,"../../../../typeforce-1.18.0/index":429,"../../script":276}],286:[function(require,module,exports){
|
|
55794
|
+
arguments[4][279][0].apply(exports,arguments)
|
|
55795
|
+
},{"./input":287,"./output":288,"dup":279}],287:[function(require,module,exports){
|
|
55850
55796
|
// {signature} {pubKey}
|
|
55851
55797
|
|
|
55852
55798
|
var bscript = require('../../script')
|
|
@@ -55899,7 +55845,7 @@ module.exports = {
|
|
|
55899
55845
|
encodeStack: encodeStack
|
|
55900
55846
|
}
|
|
55901
55847
|
|
|
55902
|
-
},{"../../../../typeforce-1.18.0/index":
|
|
55848
|
+
},{"../../../../typeforce-1.18.0/index":429,"../../script":276}],288:[function(require,module,exports){
|
|
55903
55849
|
// OP_DUP OP_HASH160 {pubKeyHash} OP_EQUALVERIFY OP_CHECKSIG
|
|
55904
55850
|
|
|
55905
55851
|
var bscript = require('../../script')
|
|
@@ -55943,9 +55889,9 @@ module.exports = {
|
|
|
55943
55889
|
encode: encode
|
|
55944
55890
|
}
|
|
55945
55891
|
|
|
55946
|
-
},{"../../../../bitcoin-ops-1.4.1/index.json":
|
|
55947
|
-
arguments[4][
|
|
55948
|
-
},{"./input":
|
|
55892
|
+
},{"../../../../bitcoin-ops-1.4.1/index.json":261,"../../../../typeforce-1.18.0/index":429,"../../script":276,"../../types":302}],289:[function(require,module,exports){
|
|
55893
|
+
arguments[4][279][0].apply(exports,arguments)
|
|
55894
|
+
},{"./input":290,"./output":291,"dup":279}],290:[function(require,module,exports){
|
|
55949
55895
|
// <scriptSig> {serialized scriptPubKey script}
|
|
55950
55896
|
|
|
55951
55897
|
var Buffer = require('../../../../safe-buffer-5.2.0/index').Buffer
|
|
@@ -56031,7 +55977,7 @@ module.exports = {
|
|
|
56031
55977
|
encodeStack: encodeStack
|
|
56032
55978
|
}
|
|
56033
55979
|
|
|
56034
|
-
},{"../../../../safe-buffer-5.2.0/index":
|
|
55980
|
+
},{"../../../../safe-buffer-5.2.0/index":408,"../../../../typeforce-1.18.0/index":429,"../../script":276,"../multisig/":279,"../pubkey/":283,"../pubkeyhash/":286,"../witnesspubkeyhash/output":296,"../witnessscripthash/output":299}],291:[function(require,module,exports){
|
|
56035
55981
|
// OP_HASH160 {scriptHash} OP_EQUAL
|
|
56036
55982
|
|
|
56037
55983
|
var bscript = require('../../script')
|
|
@@ -56067,12 +56013,12 @@ module.exports = {
|
|
|
56067
56013
|
encode: encode
|
|
56068
56014
|
}
|
|
56069
56015
|
|
|
56070
|
-
},{"../../../../bitcoin-ops-1.4.1/index.json":
|
|
56016
|
+
},{"../../../../bitcoin-ops-1.4.1/index.json":261,"../../../../typeforce-1.18.0/index":429,"../../script":276,"../../types":302}],292:[function(require,module,exports){
|
|
56071
56017
|
module.exports = {
|
|
56072
56018
|
output: require('./output')
|
|
56073
56019
|
}
|
|
56074
56020
|
|
|
56075
|
-
},{"./output":
|
|
56021
|
+
},{"./output":293}],293:[function(require,module,exports){
|
|
56076
56022
|
// OP_RETURN {aa21a9ed} {commitment}
|
|
56077
56023
|
|
|
56078
56024
|
var Buffer = require('../../../../safe-buffer-5.2.0/index').Buffer
|
|
@@ -56116,9 +56062,9 @@ module.exports = {
|
|
|
56116
56062
|
encode: encode
|
|
56117
56063
|
}
|
|
56118
56064
|
|
|
56119
|
-
},{"../../../../bitcoin-ops-1.4.1/index.json":
|
|
56120
|
-
arguments[4][
|
|
56121
|
-
},{"./input":
|
|
56065
|
+
},{"../../../../bitcoin-ops-1.4.1/index.json":261,"../../../../safe-buffer-5.2.0/index":408,"../../../../typeforce-1.18.0/index":429,"../../script":276,"../../types":302}],294:[function(require,module,exports){
|
|
56066
|
+
arguments[4][279][0].apply(exports,arguments)
|
|
56067
|
+
},{"./input":295,"./output":296,"dup":279}],295:[function(require,module,exports){
|
|
56122
56068
|
// {signature} {pubKey}
|
|
56123
56069
|
|
|
56124
56070
|
var bscript = require('../../script')
|
|
@@ -56164,7 +56110,7 @@ module.exports = {
|
|
|
56164
56110
|
encodeStack: encodeStack
|
|
56165
56111
|
}
|
|
56166
56112
|
|
|
56167
|
-
},{"../../../../typeforce-1.18.0/index":
|
|
56113
|
+
},{"../../../../typeforce-1.18.0/index":429,"../../script":276}],296:[function(require,module,exports){
|
|
56168
56114
|
// OP_0 {pubKeyHash}
|
|
56169
56115
|
|
|
56170
56116
|
var bscript = require('../../script')
|
|
@@ -56199,9 +56145,9 @@ module.exports = {
|
|
|
56199
56145
|
encode: encode
|
|
56200
56146
|
}
|
|
56201
56147
|
|
|
56202
|
-
},{"../../../../bitcoin-ops-1.4.1/index.json":
|
|
56203
|
-
arguments[4][
|
|
56204
|
-
},{"./input":
|
|
56148
|
+
},{"../../../../bitcoin-ops-1.4.1/index.json":261,"../../../../typeforce-1.18.0/index":429,"../../script":276,"../../types":302}],297:[function(require,module,exports){
|
|
56149
|
+
arguments[4][279][0].apply(exports,arguments)
|
|
56150
|
+
},{"./input":298,"./output":299,"dup":279}],298:[function(require,module,exports){
|
|
56205
56151
|
(function (Buffer){(function (){
|
|
56206
56152
|
// <scriptSig> {serialized scriptPubKey script}
|
|
56207
56153
|
|
|
@@ -56267,8 +56213,8 @@ module.exports = {
|
|
|
56267
56213
|
encodeStack: encodeStack
|
|
56268
56214
|
}
|
|
56269
56215
|
|
|
56270
|
-
}).call(this)}).call(this,{"isBuffer":require("../../../../../../../../../node_modules/is-buffer/index.js")})
|
|
56271
|
-
},{"../../../../../../../../../node_modules/is-buffer/index.js":
|
|
56216
|
+
}).call(this)}).call(this,{"isBuffer":require("../../../../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js")})
|
|
56217
|
+
},{"../../../../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js":149,"../../../../typeforce-1.18.0/index":429,"../../script":276,"../../types":302,"../multisig/":279,"../pubkey/":283,"../pubkeyhash/":286}],299:[function(require,module,exports){
|
|
56272
56218
|
// OP_0 {scriptHash}
|
|
56273
56219
|
|
|
56274
56220
|
var bscript = require('../../script')
|
|
@@ -56303,7 +56249,7 @@ module.exports = {
|
|
|
56303
56249
|
encode: encode
|
|
56304
56250
|
}
|
|
56305
56251
|
|
|
56306
|
-
},{"../../../../bitcoin-ops-1.4.1/index.json":
|
|
56252
|
+
},{"../../../../bitcoin-ops-1.4.1/index.json":261,"../../../../typeforce-1.18.0/index":429,"../../script":276,"../../types":302}],300:[function(require,module,exports){
|
|
56307
56253
|
var Buffer = require('../../safe-buffer-5.2.0/index').Buffer
|
|
56308
56254
|
var BufferWriter = require('./bufferWriter')
|
|
56309
56255
|
var bcrypto = require('./crypto')
|
|
@@ -57430,7 +57376,7 @@ Transaction.prototype.setWitness = function (index, witness) {
|
|
|
57430
57376
|
|
|
57431
57377
|
module.exports = Transaction
|
|
57432
57378
|
|
|
57433
|
-
},{"../../bitcoin-ops-1.4.1/index.json":
|
|
57379
|
+
},{"../../bitcoin-ops-1.4.1/index.json":261,"../../blake2b-6268e6dd678661e0acc4359e9171b97eb1ebf8ac/index":303,"../../safe-buffer-5.2.0/index":408,"../../typeforce-1.18.0/index":429,"../../varuint-bitcoin-1.1.2/index":434,"./bufferWriter":265,"./bufferutils":266,"./coins":267,"./crypto":268,"./networks":275,"./script":276,"./types":302}],301:[function(require,module,exports){
|
|
57434
57380
|
var Buffer = require('../../safe-buffer-5.2.0/index').Buffer
|
|
57435
57381
|
var baddress = require('./address')
|
|
57436
57382
|
var bcrypto = require('./crypto')
|
|
@@ -58324,7 +58270,7 @@ TransactionBuilder.prototype.__overMaximumFees = function (bytes) {
|
|
|
58324
58270
|
|
|
58325
58271
|
module.exports = TransactionBuilder
|
|
58326
58272
|
|
|
58327
|
-
},{"../../bitcoin-ops-1.4.1/index.json":
|
|
58273
|
+
},{"../../bitcoin-ops-1.4.1/index.json":261,"../../debug-3.1.0/src/browser":316,"../../safe-buffer-5.2.0/index":408,"../../typeforce-1.18.0/index":429,"./address":263,"./coins":267,"./crypto":268,"./ecpair":270,"./ecsignature":271,"./networks":275,"./script":276,"./templates":278,"./transaction":300,"./types":302}],302:[function(require,module,exports){
|
|
58328
58274
|
var typeforce = require('../../typeforce-1.18.0/index')
|
|
58329
58275
|
|
|
58330
58276
|
var UINT31_MAX = Math.pow(2, 31) - 1
|
|
@@ -58381,7 +58327,7 @@ for (var typeName in typeforce) {
|
|
|
58381
58327
|
|
|
58382
58328
|
module.exports = types
|
|
58383
58329
|
|
|
58384
|
-
},{"../../typeforce-1.18.0/index":
|
|
58330
|
+
},{"../../typeforce-1.18.0/index":429}],303:[function(require,module,exports){
|
|
58385
58331
|
var assert = require('../nanoassert-1.1.0/index')
|
|
58386
58332
|
var b2wasm = require('../blake2b-wasm-193cdb71656c1a6c7f89b05d0327bb9b758d071b/index')
|
|
58387
58333
|
|
|
@@ -58696,7 +58642,7 @@ b2wasm.ready(function (err) {
|
|
|
58696
58642
|
}
|
|
58697
58643
|
})
|
|
58698
58644
|
|
|
58699
|
-
},{"../blake2b-wasm-193cdb71656c1a6c7f89b05d0327bb9b758d071b/index":
|
|
58645
|
+
},{"../blake2b-wasm-193cdb71656c1a6c7f89b05d0327bb9b758d071b/index":305,"../nanoassert-1.1.0/index":382}],304:[function(require,module,exports){
|
|
58700
58646
|
|
|
58701
58647
|
module.exports = loadWebAssembly
|
|
58702
58648
|
|
|
@@ -58761,7 +58707,7 @@ function charCodeAt (c) {
|
|
|
58761
58707
|
return c.charCodeAt(0)
|
|
58762
58708
|
}
|
|
58763
58709
|
|
|
58764
|
-
},{}],
|
|
58710
|
+
},{}],305:[function(require,module,exports){
|
|
58765
58711
|
var assert = require('../nanoassert-1.1.0/index')
|
|
58766
58712
|
var wasm = require('./blake2b')()
|
|
58767
58713
|
|
|
@@ -58891,7 +58837,7 @@ function toHex (n) {
|
|
|
58891
58837
|
return n.toString(16)
|
|
58892
58838
|
}
|
|
58893
58839
|
|
|
58894
|
-
},{"../nanoassert-1.1.0/index":
|
|
58840
|
+
},{"../nanoassert-1.1.0/index":382,"./blake2b":304}],306:[function(require,module,exports){
|
|
58895
58841
|
(function (module, exports) {
|
|
58896
58842
|
'use strict';
|
|
58897
58843
|
|
|
@@ -62320,15 +62266,15 @@ function toHex (n) {
|
|
|
62320
62266
|
};
|
|
62321
62267
|
})(typeof module === 'undefined' || module, this);
|
|
62322
62268
|
|
|
62323
|
-
},{"buffer":67}],
|
|
62269
|
+
},{"buffer":67}],307:[function(require,module,exports){
|
|
62324
62270
|
arguments[4][23][0].apply(exports,arguments)
|
|
62325
|
-
},{"crypto":78,"dup":23}],
|
|
62271
|
+
},{"crypto":78,"dup":23}],308:[function(require,module,exports){
|
|
62326
62272
|
var basex = require('../base-x-3.0.7/src/index')
|
|
62327
62273
|
var ALPHABET = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz'
|
|
62328
62274
|
|
|
62329
62275
|
module.exports = basex(ALPHABET)
|
|
62330
62276
|
|
|
62331
|
-
},{"../base-x-3.0.7/src/index":
|
|
62277
|
+
},{"../base-x-3.0.7/src/index":244}],309:[function(require,module,exports){
|
|
62332
62278
|
'use strict'
|
|
62333
62279
|
|
|
62334
62280
|
var base58 = require('../bs58-4.0.1/index')
|
|
@@ -62380,7 +62326,7 @@ module.exports = function (checksumFn) {
|
|
|
62380
62326
|
}
|
|
62381
62327
|
}
|
|
62382
62328
|
|
|
62383
|
-
},{"../bs58-4.0.1/index":
|
|
62329
|
+
},{"../bs58-4.0.1/index":308,"../safe-buffer-5.2.0/index":408}],310:[function(require,module,exports){
|
|
62384
62330
|
'use strict'
|
|
62385
62331
|
|
|
62386
62332
|
var createHash = require('../create-hash-1.2.0/browser')
|
|
@@ -62394,7 +62340,7 @@ function sha256x2 (buffer) {
|
|
|
62394
62340
|
|
|
62395
62341
|
module.exports = bs58checkBase(sha256x2)
|
|
62396
62342
|
|
|
62397
|
-
},{"../create-hash-1.2.0/browser":
|
|
62343
|
+
},{"../create-hash-1.2.0/browser":313,"./base":309}],311:[function(require,module,exports){
|
|
62398
62344
|
(function (Buffer){(function (){
|
|
62399
62345
|
;(function (global, factory) {
|
|
62400
62346
|
if (typeof define === 'function' && define.amd) {
|
|
@@ -63030,7 +62976,7 @@ module.exports = bs58checkBase(sha256x2)
|
|
|
63030
62976
|
})
|
|
63031
62977
|
|
|
63032
62978
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
63033
|
-
},{"buffer":67}],
|
|
62979
|
+
},{"buffer":67}],312:[function(require,module,exports){
|
|
63034
62980
|
var Buffer = require('../safe-buffer-5.2.0/index').Buffer
|
|
63035
62981
|
var Transform = require('stream').Transform
|
|
63036
62982
|
var StringDecoder = require('string_decoder').StringDecoder
|
|
@@ -63131,7 +63077,7 @@ CipherBase.prototype._toString = function (value, enc, fin) {
|
|
|
63131
63077
|
|
|
63132
63078
|
module.exports = CipherBase
|
|
63133
63079
|
|
|
63134
|
-
},{"../inherits-2.0.4/inherits":
|
|
63080
|
+
},{"../inherits-2.0.4/inherits":367,"../safe-buffer-5.2.0/index":408,"stream":192,"string_decoder":207}],313:[function(require,module,exports){
|
|
63135
63081
|
'use strict'
|
|
63136
63082
|
var inherits = require('../inherits-2.0.4/inherits')
|
|
63137
63083
|
var MD5 = require('../md5.js-1.3.5/index')
|
|
@@ -63163,10 +63109,10 @@ module.exports = function createHash (alg) {
|
|
|
63163
63109
|
return new Hash(sha(alg))
|
|
63164
63110
|
}
|
|
63165
63111
|
|
|
63166
|
-
},{"../cipher-base-1.0.4/index":
|
|
63112
|
+
},{"../cipher-base-1.0.4/index":312,"../inherits-2.0.4/inherits":367,"../md5.js-1.3.5/index":377,"../ripemd160-2.0.2/index":406,"../sha.js-2.4.11/index":419}],314:[function(require,module,exports){
|
|
63167
63113
|
module.exports = require('crypto').createHash
|
|
63168
63114
|
|
|
63169
|
-
},{"crypto":78}],
|
|
63115
|
+
},{"crypto":78}],315:[function(require,module,exports){
|
|
63170
63116
|
(function (Buffer){(function (){
|
|
63171
63117
|
'use strict';
|
|
63172
63118
|
var createHash = require('../create-hash-1.2.0/browser')
|
|
@@ -63238,7 +63184,7 @@ module.exports = function createHmac(alg, key) {
|
|
|
63238
63184
|
}
|
|
63239
63185
|
|
|
63240
63186
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
63241
|
-
},{"../create-hash-1.2.0/browser":
|
|
63187
|
+
},{"../create-hash-1.2.0/browser":313,"../inherits-2.0.4/inherits":367,"buffer":67,"stream":192}],316:[function(require,module,exports){
|
|
63242
63188
|
(function (process){(function (){
|
|
63243
63189
|
/**
|
|
63244
63190
|
* This is the web browser implementation of `debug()`.
|
|
@@ -63437,7 +63383,7 @@ function localstorage() {
|
|
|
63437
63383
|
}
|
|
63438
63384
|
|
|
63439
63385
|
}).call(this)}).call(this,require('_process'))
|
|
63440
|
-
},{"./debug":
|
|
63386
|
+
},{"./debug":317,"_process":171}],317:[function(require,module,exports){
|
|
63441
63387
|
|
|
63442
63388
|
/**
|
|
63443
63389
|
* This is the common logic for both the Node.js and web browser
|
|
@@ -63664,7 +63610,7 @@ function coerce(val) {
|
|
|
63664
63610
|
return val;
|
|
63665
63611
|
}
|
|
63666
63612
|
|
|
63667
|
-
},{"../../ms-2.1.2/index":
|
|
63613
|
+
},{"../../ms-2.1.2/index":381}],318:[function(require,module,exports){
|
|
63668
63614
|
(function (Buffer){(function (){
|
|
63669
63615
|
"use strict";
|
|
63670
63616
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -63702,7 +63648,7 @@ exports.utils = {
|
|
|
63702
63648
|
};
|
|
63703
63649
|
|
|
63704
63650
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
63705
|
-
},{"./keys":
|
|
63651
|
+
},{"./keys":321,"./utils":322,"buffer":67}],319:[function(require,module,exports){
|
|
63706
63652
|
(function (Buffer){(function (){
|
|
63707
63653
|
"use strict";
|
|
63708
63654
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -63767,7 +63713,7 @@ var PrivateKey = /** @class */ (function () {
|
|
|
63767
63713
|
exports.default = PrivateKey;
|
|
63768
63714
|
|
|
63769
63715
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
63770
|
-
},{"../../../futoin-hkdf-1.3.3/hkdf.js":
|
|
63716
|
+
},{"../../../futoin-hkdf-1.3.3/hkdf.js":348,"../../../secp256k1-4.0.2/elliptic":415,"../utils":322,"./PublicKey":320,"buffer":67}],320:[function(require,module,exports){
|
|
63771
63717
|
(function (Buffer){(function (){
|
|
63772
63718
|
"use strict";
|
|
63773
63719
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -63835,7 +63781,7 @@ var PublicKey = /** @class */ (function () {
|
|
|
63835
63781
|
exports.default = PublicKey;
|
|
63836
63782
|
|
|
63837
63783
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
63838
|
-
},{"../../../futoin-hkdf-1.3.3/hkdf.js":
|
|
63784
|
+
},{"../../../futoin-hkdf-1.3.3/hkdf.js":348,"../../../secp256k1-4.0.2/elliptic":415,"../utils":322,"buffer":67}],321:[function(require,module,exports){
|
|
63839
63785
|
"use strict";
|
|
63840
63786
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
63841
63787
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -63847,7 +63793,7 @@ Object.defineProperty(exports, "PrivateKey", { enumerable: true, get: function (
|
|
|
63847
63793
|
var PublicKey_1 = require("./PublicKey");
|
|
63848
63794
|
Object.defineProperty(exports, "PublicKey", { enumerable: true, get: function () { return __importDefault(PublicKey_1).default; } });
|
|
63849
63795
|
|
|
63850
|
-
},{"./PrivateKey":
|
|
63796
|
+
},{"./PrivateKey":319,"./PublicKey":320}],322:[function(require,module,exports){
|
|
63851
63797
|
(function (Buffer){(function (){
|
|
63852
63798
|
"use strict";
|
|
63853
63799
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -63915,7 +63861,7 @@ function aesDecrypt(key, cipherText) {
|
|
|
63915
63861
|
exports.aesDecrypt = aesDecrypt;
|
|
63916
63862
|
|
|
63917
63863
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
63918
|
-
},{"../../secp256k1-4.0.2/elliptic":
|
|
63864
|
+
},{"../../secp256k1-4.0.2/elliptic":415,"buffer":67,"crypto":78}],323:[function(require,module,exports){
|
|
63919
63865
|
var assert = require('assert')
|
|
63920
63866
|
var BigInteger = require('../../bigi-1.4.2/lib/index')
|
|
63921
63867
|
|
|
@@ -63994,7 +63940,7 @@ Curve.prototype.validate = function (Q) {
|
|
|
63994
63940
|
|
|
63995
63941
|
module.exports = Curve
|
|
63996
63942
|
|
|
63997
|
-
},{"../../bigi-1.4.2/lib/index":
|
|
63943
|
+
},{"../../bigi-1.4.2/lib/index":248,"./point":327,"assert":16}],324:[function(require,module,exports){
|
|
63998
63944
|
module.exports={
|
|
63999
63945
|
"secp128r1": {
|
|
64000
63946
|
"p": "fffffffdffffffffffffffffffffffff",
|
|
@@ -64060,7 +64006,7 @@ module.exports={
|
|
|
64060
64006
|
"Gy": "4fe342e2fe1a7f9b8ee7eb4a7c0f9e162bce33576b315ececbb6406837bf51f5"
|
|
64061
64007
|
}
|
|
64062
64008
|
}
|
|
64063
|
-
},{}],
|
|
64009
|
+
},{}],325:[function(require,module,exports){
|
|
64064
64010
|
var Point = require('./point')
|
|
64065
64011
|
var Curve = require('./curve')
|
|
64066
64012
|
|
|
@@ -64072,7 +64018,7 @@ module.exports = {
|
|
|
64072
64018
|
getCurveByName: getCurveByName
|
|
64073
64019
|
}
|
|
64074
64020
|
|
|
64075
|
-
},{"./curve":
|
|
64021
|
+
},{"./curve":323,"./names":326,"./point":327}],326:[function(require,module,exports){
|
|
64076
64022
|
var BigInteger = require('../../bigi-1.4.2/lib/index')
|
|
64077
64023
|
|
|
64078
64024
|
var curves = require('./curves.json')
|
|
@@ -64095,7 +64041,7 @@ function getCurveByName (name) {
|
|
|
64095
64041
|
|
|
64096
64042
|
module.exports = getCurveByName
|
|
64097
64043
|
|
|
64098
|
-
},{"../../bigi-1.4.2/lib/index":
|
|
64044
|
+
},{"../../bigi-1.4.2/lib/index":248,"./curve":323,"./curves.json":324}],327:[function(require,module,exports){
|
|
64099
64045
|
var assert = require('assert')
|
|
64100
64046
|
var Buffer = require('../../safe-buffer-5.2.0/index').Buffer
|
|
64101
64047
|
var BigInteger = require('../../bigi-1.4.2/lib/index')
|
|
@@ -64341,7 +64287,7 @@ Point.prototype.toString = function () {
|
|
|
64341
64287
|
|
|
64342
64288
|
module.exports = Point
|
|
64343
64289
|
|
|
64344
|
-
},{"../../bigi-1.4.2/lib/index":
|
|
64290
|
+
},{"../../bigi-1.4.2/lib/index":248,"../../safe-buffer-5.2.0/index":408,"assert":16}],328:[function(require,module,exports){
|
|
64345
64291
|
'use strict';
|
|
64346
64292
|
|
|
64347
64293
|
var elliptic = exports;
|
|
@@ -64356,7 +64302,7 @@ elliptic.curves = require('./elliptic/curves');
|
|
|
64356
64302
|
elliptic.ec = require('./elliptic/ec');
|
|
64357
64303
|
elliptic.eddsa = require('./elliptic/eddsa');
|
|
64358
64304
|
|
|
64359
|
-
},{"../../brorand-1.1.0/index":
|
|
64305
|
+
},{"../../brorand-1.1.0/index":307,"../package.json":343,"./elliptic/curve":331,"./elliptic/curves":334,"./elliptic/ec":335,"./elliptic/eddsa":338,"./elliptic/utils":342}],329:[function(require,module,exports){
|
|
64360
64306
|
'use strict';
|
|
64361
64307
|
|
|
64362
64308
|
var BN = require('../../../../bn.js-4.11.8/lib/bn');
|
|
@@ -64734,7 +64680,7 @@ BasePoint.prototype.dblp = function dblp(k) {
|
|
|
64734
64680
|
return r;
|
|
64735
64681
|
};
|
|
64736
64682
|
|
|
64737
|
-
},{"../../../../bn.js-4.11.8/lib/bn":
|
|
64683
|
+
},{"../../../../bn.js-4.11.8/lib/bn":306,"../utils":342}],330:[function(require,module,exports){
|
|
64738
64684
|
'use strict';
|
|
64739
64685
|
|
|
64740
64686
|
var utils = require('../utils');
|
|
@@ -65168,9 +65114,9 @@ Point.prototype.eqXToP = function eqXToP(x) {
|
|
|
65168
65114
|
Point.prototype.toP = Point.prototype.normalize;
|
|
65169
65115
|
Point.prototype.mixedAdd = Point.prototype.add;
|
|
65170
65116
|
|
|
65171
|
-
},{"../../../../bn.js-4.11.8/lib/bn":
|
|
65117
|
+
},{"../../../../bn.js-4.11.8/lib/bn":306,"../../../../inherits-2.0.4/inherits":367,"../utils":342,"./base":329}],331:[function(require,module,exports){
|
|
65172
65118
|
arguments[4][93][0].apply(exports,arguments)
|
|
65173
|
-
},{"./base":
|
|
65119
|
+
},{"./base":329,"./edwards":330,"./mont":332,"./short":333,"dup":93}],332:[function(require,module,exports){
|
|
65174
65120
|
'use strict';
|
|
65175
65121
|
|
|
65176
65122
|
var BN = require('../../../../bn.js-4.11.8/lib/bn');
|
|
@@ -65350,7 +65296,7 @@ Point.prototype.getX = function getX() {
|
|
|
65350
65296
|
return this.x.fromRed();
|
|
65351
65297
|
};
|
|
65352
65298
|
|
|
65353
|
-
},{"../../../../bn.js-4.11.8/lib/bn":
|
|
65299
|
+
},{"../../../../bn.js-4.11.8/lib/bn":306,"../../../../inherits-2.0.4/inherits":367,"../utils":342,"./base":329}],333:[function(require,module,exports){
|
|
65354
65300
|
'use strict';
|
|
65355
65301
|
|
|
65356
65302
|
var utils = require('../utils');
|
|
@@ -66289,7 +66235,7 @@ JPoint.prototype.isInfinity = function isInfinity() {
|
|
|
66289
66235
|
return this.z.cmpn(0) === 0;
|
|
66290
66236
|
};
|
|
66291
66237
|
|
|
66292
|
-
},{"../../../../bn.js-4.11.8/lib/bn":
|
|
66238
|
+
},{"../../../../bn.js-4.11.8/lib/bn":306,"../../../../inherits-2.0.4/inherits":367,"../utils":342,"./base":329}],334:[function(require,module,exports){
|
|
66293
66239
|
'use strict';
|
|
66294
66240
|
|
|
66295
66241
|
var curves = exports;
|
|
@@ -66497,7 +66443,7 @@ defineCurve('secp256k1', {
|
|
|
66497
66443
|
]
|
|
66498
66444
|
});
|
|
66499
66445
|
|
|
66500
|
-
},{"../../../hash.js-1.1.7/lib/hash":
|
|
66446
|
+
},{"../../../hash.js-1.1.7/lib/hash":354,"./curve":331,"./precomputed/secp256k1":341,"./utils":342}],335:[function(require,module,exports){
|
|
66501
66447
|
'use strict';
|
|
66502
66448
|
|
|
66503
66449
|
var BN = require('../../../../bn.js-4.11.8/lib/bn');
|
|
@@ -66740,7 +66686,7 @@ EC.prototype.getKeyRecoveryParam = function(e, signature, Q, enc) {
|
|
|
66740
66686
|
throw new Error('Unable to find valid recovery factor');
|
|
66741
66687
|
};
|
|
66742
66688
|
|
|
66743
|
-
},{"../../../../bn.js-4.11.8/lib/bn":
|
|
66689
|
+
},{"../../../../bn.js-4.11.8/lib/bn":306,"../../../../brorand-1.1.0/index":307,"../../../../hmac-drbg-1.0.1/lib/hmac-drbg":366,"../curves":334,"../utils":342,"./key":336,"./signature":337}],336:[function(require,module,exports){
|
|
66744
66690
|
'use strict';
|
|
66745
66691
|
|
|
66746
66692
|
var BN = require('../../../../bn.js-4.11.8/lib/bn');
|
|
@@ -66860,7 +66806,7 @@ KeyPair.prototype.inspect = function inspect() {
|
|
|
66860
66806
|
' pub: ' + (this.pub && this.pub.inspect()) + ' >';
|
|
66861
66807
|
};
|
|
66862
66808
|
|
|
66863
|
-
},{"../../../../bn.js-4.11.8/lib/bn":
|
|
66809
|
+
},{"../../../../bn.js-4.11.8/lib/bn":306,"../utils":342}],337:[function(require,module,exports){
|
|
66864
66810
|
'use strict';
|
|
66865
66811
|
|
|
66866
66812
|
var BN = require('../../../../bn.js-4.11.8/lib/bn');
|
|
@@ -67028,7 +66974,7 @@ Signature.prototype.toDER = function toDER(enc) {
|
|
|
67028
66974
|
return utils.encode(res, enc);
|
|
67029
66975
|
};
|
|
67030
66976
|
|
|
67031
|
-
},{"../../../../bn.js-4.11.8/lib/bn":
|
|
66977
|
+
},{"../../../../bn.js-4.11.8/lib/bn":306,"../utils":342}],338:[function(require,module,exports){
|
|
67032
66978
|
'use strict';
|
|
67033
66979
|
|
|
67034
66980
|
var hash = require('../../../../hash.js-1.1.7/lib/hash');
|
|
@@ -67148,9 +67094,9 @@ EDDSA.prototype.isPoint = function isPoint(val) {
|
|
|
67148
67094
|
return val instanceof this.pointClass;
|
|
67149
67095
|
};
|
|
67150
67096
|
|
|
67151
|
-
},{"../../../../hash.js-1.1.7/lib/hash":
|
|
67097
|
+
},{"../../../../hash.js-1.1.7/lib/hash":354,"../curves":334,"../utils":342,"./key":339,"./signature":340}],339:[function(require,module,exports){
|
|
67152
67098
|
arguments[4][101][0].apply(exports,arguments)
|
|
67153
|
-
},{"../utils":
|
|
67099
|
+
},{"../utils":342,"dup":101}],340:[function(require,module,exports){
|
|
67154
67100
|
'use strict';
|
|
67155
67101
|
|
|
67156
67102
|
var BN = require('../../../../bn.js-4.11.8/lib/bn');
|
|
@@ -67217,7 +67163,7 @@ Signature.prototype.toHex = function toHex() {
|
|
|
67217
67163
|
|
|
67218
67164
|
module.exports = Signature;
|
|
67219
67165
|
|
|
67220
|
-
},{"../../../../bn.js-4.11.8/lib/bn":
|
|
67166
|
+
},{"../../../../bn.js-4.11.8/lib/bn":306,"../utils":342}],341:[function(require,module,exports){
|
|
67221
67167
|
module.exports = {
|
|
67222
67168
|
doubles: {
|
|
67223
67169
|
step: 4,
|
|
@@ -67999,7 +67945,7 @@ module.exports = {
|
|
|
67999
67945
|
}
|
|
68000
67946
|
};
|
|
68001
67947
|
|
|
68002
|
-
},{}],
|
|
67948
|
+
},{}],342:[function(require,module,exports){
|
|
68003
67949
|
'use strict';
|
|
68004
67950
|
|
|
68005
67951
|
var utils = exports;
|
|
@@ -68120,7 +68066,7 @@ function intFromLE(bytes) {
|
|
|
68120
68066
|
utils.intFromLE = intFromLE;
|
|
68121
68067
|
|
|
68122
68068
|
|
|
68123
|
-
},{"../../../bn.js-4.11.8/lib/bn":
|
|
68069
|
+
},{"../../../bn.js-4.11.8/lib/bn":306,"../../../minimalistic-assert-1.0.1/index":379,"../../../minimalistic-crypto-utils-1.0.1/lib/utils":380}],343:[function(require,module,exports){
|
|
68124
68070
|
module.exports={
|
|
68125
68071
|
"name": "elliptic",
|
|
68126
68072
|
"version": "6.5.3",
|
|
@@ -68176,7 +68122,7 @@ module.exports={
|
|
|
68176
68122
|
"minimalistic-crypto-utils": "^1.0.0"
|
|
68177
68123
|
}
|
|
68178
68124
|
}
|
|
68179
|
-
},{}],
|
|
68125
|
+
},{}],344:[function(require,module,exports){
|
|
68180
68126
|
module.exports={
|
|
68181
68127
|
"genesisGasLimit": {
|
|
68182
68128
|
"v": 5000,
|
|
@@ -68422,7 +68368,7 @@ module.exports={
|
|
|
68422
68368
|
"v": 2
|
|
68423
68369
|
}
|
|
68424
68370
|
}
|
|
68425
|
-
},{}],
|
|
68371
|
+
},{}],345:[function(require,module,exports){
|
|
68426
68372
|
(function (Buffer){(function (){
|
|
68427
68373
|
'use strict'
|
|
68428
68374
|
const ethUtil = require('../ethereumjs-util-5.2.0/index')
|
|
@@ -68724,7 +68670,7 @@ class Transaction {
|
|
|
68724
68670
|
module.exports = Transaction
|
|
68725
68671
|
|
|
68726
68672
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
68727
|
-
},{"../ethereum-common-0.2.1/params.json":
|
|
68673
|
+
},{"../ethereum-common-0.2.1/params.json":344,"../ethereumjs-util-5.2.0/index":346,"buffer":67}],346:[function(require,module,exports){
|
|
68728
68674
|
const createKeccakHash = require('../keccak-1.0.2/js')
|
|
68729
68675
|
const secp256k1 = require('../secp256k1-3.7.1/elliptic')
|
|
68730
68676
|
const assert = require('assert')
|
|
@@ -69440,7 +69386,7 @@ exports.defineProperties = function (self, fields, data) {
|
|
|
69440
69386
|
}
|
|
69441
69387
|
}
|
|
69442
69388
|
|
|
69443
|
-
},{"../bn.js-4.11.8/lib/bn":
|
|
69389
|
+
},{"../bn.js-4.11.8/lib/bn":306,"../create-hash-1.2.0/browser":313,"../ethjs-util-0.1.4/src/index":347,"../keccak-1.0.2/js":371,"../rlp-2.2.3/index":407,"../safe-buffer-5.2.0/index":408,"../secp256k1-3.7.1/elliptic":409,"assert":16}],347:[function(require,module,exports){
|
|
69444
69390
|
(function (Buffer){(function (){
|
|
69445
69391
|
const isHexPrefixed = require('../../is-hex-prefixed-1.0.0/src/index');
|
|
69446
69392
|
const stripHexPrefix = require('../../strip-hex-prefix-1.0.0/src/index');
|
|
@@ -69647,7 +69593,7 @@ module.exports = {
|
|
|
69647
69593
|
};
|
|
69648
69594
|
|
|
69649
69595
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
69650
|
-
},{"../../is-hex-prefixed-1.0.0/src/index":
|
|
69596
|
+
},{"../../is-hex-prefixed-1.0.0/src/index":370,"../../strip-hex-prefix-1.0.0/src/index":426,"buffer":67}],348:[function(require,module,exports){
|
|
69651
69597
|
(function (Buffer){(function (){
|
|
69652
69598
|
'use strict';
|
|
69653
69599
|
|
|
@@ -69825,7 +69771,7 @@ Object.defineProperties( hkdf, {
|
|
|
69825
69771
|
module.exports = hkdf;
|
|
69826
69772
|
|
|
69827
69773
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
69828
|
-
},{"buffer":67,"crypto":78}],
|
|
69774
|
+
},{"buffer":67,"crypto":78}],349:[function(require,module,exports){
|
|
69829
69775
|
'use strict';
|
|
69830
69776
|
|
|
69831
69777
|
var groestl = require('./lib/groestl');
|
|
@@ -69865,7 +69811,7 @@ module.exports.groestl_2 = function(str,format, output) {
|
|
|
69865
69811
|
return h.int32ArrayToHexString(a);
|
|
69866
69812
|
}
|
|
69867
69813
|
}
|
|
69868
|
-
},{"./lib/groestl":
|
|
69814
|
+
},{"./lib/groestl":350,"./lib/helper":351}],350:[function(require,module,exports){
|
|
69869
69815
|
/////////////////////////////////////
|
|
69870
69816
|
//////////// groestl ///////////////
|
|
69871
69817
|
|
|
@@ -71114,7 +71060,7 @@ module.exports = function(input, format, output) {
|
|
|
71114
71060
|
}
|
|
71115
71061
|
return out;
|
|
71116
71062
|
}
|
|
71117
|
-
},{"./helper":
|
|
71063
|
+
},{"./helper":351,"./op":352}],351:[function(require,module,exports){
|
|
71118
71064
|
'use strict';
|
|
71119
71065
|
// String functions
|
|
71120
71066
|
|
|
@@ -71368,7 +71314,7 @@ module.exports.b64Decode = function(input) {
|
|
|
71368
71314
|
}
|
|
71369
71315
|
return output;
|
|
71370
71316
|
};
|
|
71371
|
-
},{"./op.js":
|
|
71317
|
+
},{"./op.js":352}],352:[function(require,module,exports){
|
|
71372
71318
|
'use strict';
|
|
71373
71319
|
//the right shift is important, it has to do with 32 bit operations in javascript, it will make things faster
|
|
71374
71320
|
function u64(h, l) {
|
|
@@ -71832,7 +71778,7 @@ module.exports.xORTable = function(d, s1, s2, len) {
|
|
|
71832
71778
|
}
|
|
71833
71779
|
}
|
|
71834
71780
|
|
|
71835
|
-
},{}],
|
|
71781
|
+
},{}],353:[function(require,module,exports){
|
|
71836
71782
|
'use strict'
|
|
71837
71783
|
var Buffer = require('../safe-buffer-5.2.0/index').Buffer
|
|
71838
71784
|
var Transform = require('stream').Transform
|
|
@@ -71929,9 +71875,9 @@ HashBase.prototype._digest = function () {
|
|
|
71929
71875
|
|
|
71930
71876
|
module.exports = HashBase
|
|
71931
71877
|
|
|
71932
|
-
},{"../inherits-2.0.4/inherits":
|
|
71878
|
+
},{"../inherits-2.0.4/inherits":367,"../safe-buffer-5.2.0/index":408,"stream":192}],354:[function(require,module,exports){
|
|
71933
71879
|
arguments[4][134][0].apply(exports,arguments)
|
|
71934
|
-
},{"./hash/common":
|
|
71880
|
+
},{"./hash/common":355,"./hash/hmac":356,"./hash/ripemd":357,"./hash/sha":358,"./hash/utils":365,"dup":134}],355:[function(require,module,exports){
|
|
71935
71881
|
'use strict';
|
|
71936
71882
|
|
|
71937
71883
|
var utils = require('./utils');
|
|
@@ -72025,7 +71971,7 @@ BlockHash.prototype._pad = function pad() {
|
|
|
72025
71971
|
return res;
|
|
72026
71972
|
};
|
|
72027
71973
|
|
|
72028
|
-
},{"../../../minimalistic-assert-1.0.1/index":
|
|
71974
|
+
},{"../../../minimalistic-assert-1.0.1/index":379,"./utils":365}],356:[function(require,module,exports){
|
|
72029
71975
|
'use strict';
|
|
72030
71976
|
|
|
72031
71977
|
var utils = require('./utils');
|
|
@@ -72074,15 +72020,15 @@ Hmac.prototype.digest = function digest(enc) {
|
|
|
72074
72020
|
return this.outer.digest(enc);
|
|
72075
72021
|
};
|
|
72076
72022
|
|
|
72077
|
-
},{"../../../minimalistic-assert-1.0.1/index":
|
|
72023
|
+
},{"../../../minimalistic-assert-1.0.1/index":379,"./utils":365}],357:[function(require,module,exports){
|
|
72078
72024
|
arguments[4][137][0].apply(exports,arguments)
|
|
72079
|
-
},{"./common":
|
|
72025
|
+
},{"./common":355,"./utils":365,"dup":137}],358:[function(require,module,exports){
|
|
72080
72026
|
arguments[4][138][0].apply(exports,arguments)
|
|
72081
|
-
},{"./sha/1":
|
|
72027
|
+
},{"./sha/1":359,"./sha/224":360,"./sha/256":361,"./sha/384":362,"./sha/512":363,"dup":138}],359:[function(require,module,exports){
|
|
72082
72028
|
arguments[4][139][0].apply(exports,arguments)
|
|
72083
|
-
},{"../common":
|
|
72029
|
+
},{"../common":355,"../utils":365,"./common":364,"dup":139}],360:[function(require,module,exports){
|
|
72084
72030
|
arguments[4][140][0].apply(exports,arguments)
|
|
72085
|
-
},{"../utils":
|
|
72031
|
+
},{"../utils":365,"./256":361,"dup":140}],361:[function(require,module,exports){
|
|
72086
72032
|
'use strict';
|
|
72087
72033
|
|
|
72088
72034
|
var utils = require('../utils');
|
|
@@ -72189,9 +72135,9 @@ SHA256.prototype._digest = function digest(enc) {
|
|
|
72189
72135
|
return utils.split32(this.h, 'big');
|
|
72190
72136
|
};
|
|
72191
72137
|
|
|
72192
|
-
},{"../../../../minimalistic-assert-1.0.1/index":
|
|
72138
|
+
},{"../../../../minimalistic-assert-1.0.1/index":379,"../common":355,"../utils":365,"./common":364}],362:[function(require,module,exports){
|
|
72193
72139
|
arguments[4][142][0].apply(exports,arguments)
|
|
72194
|
-
},{"../utils":
|
|
72140
|
+
},{"../utils":365,"./512":363,"dup":142}],363:[function(require,module,exports){
|
|
72195
72141
|
'use strict';
|
|
72196
72142
|
|
|
72197
72143
|
var utils = require('../utils');
|
|
@@ -72523,9 +72469,9 @@ function g1_512_lo(xh, xl) {
|
|
|
72523
72469
|
return r;
|
|
72524
72470
|
}
|
|
72525
72471
|
|
|
72526
|
-
},{"../../../../minimalistic-assert-1.0.1/index":
|
|
72472
|
+
},{"../../../../minimalistic-assert-1.0.1/index":379,"../common":355,"../utils":365}],364:[function(require,module,exports){
|
|
72527
72473
|
arguments[4][144][0].apply(exports,arguments)
|
|
72528
|
-
},{"../utils":
|
|
72474
|
+
},{"../utils":365,"dup":144}],365:[function(require,module,exports){
|
|
72529
72475
|
'use strict';
|
|
72530
72476
|
|
|
72531
72477
|
var assert = require('../../../minimalistic-assert-1.0.1/index');
|
|
@@ -72805,7 +72751,7 @@ function shr64_lo(ah, al, num) {
|
|
|
72805
72751
|
}
|
|
72806
72752
|
exports.shr64_lo = shr64_lo;
|
|
72807
72753
|
|
|
72808
|
-
},{"../../../inherits-2.0.4/inherits":
|
|
72754
|
+
},{"../../../inherits-2.0.4/inherits":367,"../../../minimalistic-assert-1.0.1/index":379}],366:[function(require,module,exports){
|
|
72809
72755
|
'use strict';
|
|
72810
72756
|
|
|
72811
72757
|
var hash = require('../../hash.js-1.1.7/lib/hash');
|
|
@@ -72920,7 +72866,7 @@ HmacDRBG.prototype.generate = function generate(len, enc, add, addEnc) {
|
|
|
72920
72866
|
return utils.encode(res, enc);
|
|
72921
72867
|
};
|
|
72922
72868
|
|
|
72923
|
-
},{"../../hash.js-1.1.7/lib/hash":
|
|
72869
|
+
},{"../../hash.js-1.1.7/lib/hash":354,"../../minimalistic-assert-1.0.1/index":379,"../../minimalistic-crypto-utils-1.0.1/lib/utils":380}],367:[function(require,module,exports){
|
|
72924
72870
|
try {
|
|
72925
72871
|
var util = require('util');
|
|
72926
72872
|
/* istanbul ignore next */
|
|
@@ -72931,9 +72877,9 @@ try {
|
|
|
72931
72877
|
module.exports = require('./inherits_browser.js');
|
|
72932
72878
|
}
|
|
72933
72879
|
|
|
72934
|
-
},{"./inherits_browser.js":
|
|
72880
|
+
},{"./inherits_browser.js":368,"util":211}],368:[function(require,module,exports){
|
|
72935
72881
|
arguments[4][148][0].apply(exports,arguments)
|
|
72936
|
-
},{"dup":148}],
|
|
72882
|
+
},{"dup":148}],369:[function(require,module,exports){
|
|
72937
72883
|
/*!
|
|
72938
72884
|
* Determine if an object is a Buffer
|
|
72939
72885
|
*
|
|
@@ -72946,7 +72892,7 @@ module.exports = function isBuffer (obj) {
|
|
|
72946
72892
|
typeof obj.constructor.isBuffer === 'function' && obj.constructor.isBuffer(obj)
|
|
72947
72893
|
}
|
|
72948
72894
|
|
|
72949
|
-
},{}],
|
|
72895
|
+
},{}],370:[function(require,module,exports){
|
|
72950
72896
|
/**
|
|
72951
72897
|
* Returns a `Boolean` on whether or not the a `String` starts with '0x'
|
|
72952
72898
|
* @param {String} str the string input value
|
|
@@ -72961,11 +72907,11 @@ module.exports = function isHexPrefixed(str) {
|
|
|
72961
72907
|
return str.slice(0, 2) === '0x';
|
|
72962
72908
|
}
|
|
72963
72909
|
|
|
72964
|
-
},{}],
|
|
72910
|
+
},{}],371:[function(require,module,exports){
|
|
72965
72911
|
'use strict'
|
|
72966
72912
|
module.exports = require('./lib/api')({ Keccak: require('./lib/keccak') })
|
|
72967
72913
|
|
|
72968
|
-
},{"./lib/api":
|
|
72914
|
+
},{"./lib/api":372,"./lib/keccak":376}],372:[function(require,module,exports){
|
|
72969
72915
|
'use strict'
|
|
72970
72916
|
var createKeccak = require('./keccak')
|
|
72971
72917
|
var createShake = require('./shake')
|
|
@@ -72995,7 +72941,7 @@ module.exports = function (internal) {
|
|
|
72995
72941
|
}
|
|
72996
72942
|
}
|
|
72997
72943
|
|
|
72998
|
-
},{"./keccak":
|
|
72944
|
+
},{"./keccak":373,"./shake":374}],373:[function(require,module,exports){
|
|
72999
72945
|
(function (Buffer){(function (){
|
|
73000
72946
|
'use strict'
|
|
73001
72947
|
var Transform = require('stream').Transform
|
|
@@ -73082,7 +73028,7 @@ module.exports = function (internal) {
|
|
|
73082
73028
|
}
|
|
73083
73029
|
|
|
73084
73030
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
73085
|
-
},{"../../../inherits-2.0.4/inherits":
|
|
73031
|
+
},{"../../../inherits-2.0.4/inherits":367,"buffer":67,"stream":192}],374:[function(require,module,exports){
|
|
73086
73032
|
(function (Buffer){(function (){
|
|
73087
73033
|
'use strict'
|
|
73088
73034
|
var Transform = require('stream').Transform
|
|
@@ -73160,7 +73106,7 @@ module.exports = function (internal) {
|
|
|
73160
73106
|
}
|
|
73161
73107
|
|
|
73162
73108
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
73163
|
-
},{"../../../inherits-2.0.4/inherits":
|
|
73109
|
+
},{"../../../inherits-2.0.4/inherits":367,"buffer":67,"stream":192}],375:[function(require,module,exports){
|
|
73164
73110
|
'use strict'
|
|
73165
73111
|
var P1600_ROUND_CONSTANTS = [1, 0, 32898, 0, 32906, 2147483648, 2147516416, 2147483648, 32907, 0, 2147483649, 0, 2147516545, 2147483648, 32777, 2147483648, 138, 0, 136, 0, 2147516425, 0, 2147483658, 0, 2147516555, 0, 139, 2147483648, 32905, 2147483648, 32771, 2147483648, 32770, 2147483648, 128, 2147483648, 32778, 0, 2147483658, 2147483648, 2147516545, 2147483648, 32896, 2147483648, 2147483649, 0, 2147516424, 2147483648]
|
|
73166
73112
|
|
|
@@ -73349,7 +73295,7 @@ exports.p1600 = function (s) {
|
|
|
73349
73295
|
}
|
|
73350
73296
|
}
|
|
73351
73297
|
|
|
73352
|
-
},{}],
|
|
73298
|
+
},{}],376:[function(require,module,exports){
|
|
73353
73299
|
(function (Buffer){(function (){
|
|
73354
73300
|
'use strict'
|
|
73355
73301
|
var keccakState = require('./keccak-state')
|
|
@@ -73422,7 +73368,7 @@ Keccak.prototype.copy = function (dest) {
|
|
|
73422
73368
|
module.exports = Keccak
|
|
73423
73369
|
|
|
73424
73370
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
73425
|
-
},{"./keccak-state":
|
|
73371
|
+
},{"./keccak-state":375,"buffer":67}],377:[function(require,module,exports){
|
|
73426
73372
|
'use strict'
|
|
73427
73373
|
var inherits = require('../inherits-2.0.4/inherits')
|
|
73428
73374
|
var HashBase = require('../hash-base-3.0.4/index')
|
|
@@ -73570,7 +73516,7 @@ function fnI (a, b, c, d, m, k, s) {
|
|
|
73570
73516
|
|
|
73571
73517
|
module.exports = MD5
|
|
73572
73518
|
|
|
73573
|
-
},{"../hash-base-3.0.4/index":
|
|
73519
|
+
},{"../hash-base-3.0.4/index":353,"../inherits-2.0.4/inherits":367,"../safe-buffer-5.2.0/index":408}],378:[function(require,module,exports){
|
|
73574
73520
|
(function (Buffer){(function (){
|
|
73575
73521
|
// constant-space merkle root calculation algorithm
|
|
73576
73522
|
module.exports = function fastRoot (values, digestFn) {
|
|
@@ -73598,11 +73544,11 @@ module.exports = function fastRoot (values, digestFn) {
|
|
|
73598
73544
|
}
|
|
73599
73545
|
|
|
73600
73546
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
73601
|
-
},{"buffer":67}],
|
|
73547
|
+
},{"buffer":67}],379:[function(require,module,exports){
|
|
73602
73548
|
arguments[4][157][0].apply(exports,arguments)
|
|
73603
|
-
},{"dup":157}],
|
|
73549
|
+
},{"dup":157}],380:[function(require,module,exports){
|
|
73604
73550
|
arguments[4][158][0].apply(exports,arguments)
|
|
73605
|
-
},{"dup":158}],
|
|
73551
|
+
},{"dup":158}],381:[function(require,module,exports){
|
|
73606
73552
|
/**
|
|
73607
73553
|
* Helpers.
|
|
73608
73554
|
*/
|
|
@@ -73766,7 +73712,7 @@ function plural(ms, msAbs, n, name) {
|
|
|
73766
73712
|
return Math.round(ms / n) + ' ' + name + (isPlural ? 's' : '');
|
|
73767
73713
|
}
|
|
73768
73714
|
|
|
73769
|
-
},{}],
|
|
73715
|
+
},{}],382:[function(require,module,exports){
|
|
73770
73716
|
assert.notEqual = notEqual
|
|
73771
73717
|
assert.notOk = notOk
|
|
73772
73718
|
assert.equal = equal
|
|
@@ -73790,7 +73736,7 @@ function assert (t, m) {
|
|
|
73790
73736
|
if (!t) throw new Error(m || 'AssertionError')
|
|
73791
73737
|
}
|
|
73792
73738
|
|
|
73793
|
-
},{}],
|
|
73739
|
+
},{}],383:[function(require,module,exports){
|
|
73794
73740
|
// Top level file is just a mixin of submodules & constants
|
|
73795
73741
|
'use strict'
|
|
73796
73742
|
|
|
@@ -73810,7 +73756,7 @@ module.exports.inflateRaw = inflateRaw
|
|
|
73810
73756
|
module.exports.ungzip = ungzip
|
|
73811
73757
|
module.exports.constants = constants
|
|
73812
73758
|
|
|
73813
|
-
},{"./lib/deflate":
|
|
73759
|
+
},{"./lib/deflate":384,"./lib/inflate":385,"./lib/zlib/constants":389}],384:[function(require,module,exports){
|
|
73814
73760
|
'use strict'
|
|
73815
73761
|
|
|
73816
73762
|
const zlib_deflate = require('./zlib/deflate')
|
|
@@ -74185,7 +74131,7 @@ module.exports.deflateRaw = deflateRaw
|
|
|
74185
74131
|
module.exports.gzip = gzip
|
|
74186
74132
|
module.exports.constants = require('./zlib/constants')
|
|
74187
74133
|
|
|
74188
|
-
},{"./utils/common":
|
|
74134
|
+
},{"./utils/common":386,"./utils/strings":387,"./zlib/constants":389,"./zlib/deflate":391,"./zlib/messages":396,"./zlib/zstream":398}],385:[function(require,module,exports){
|
|
74189
74135
|
'use strict'
|
|
74190
74136
|
|
|
74191
74137
|
const zlib_inflate = require('./zlib/inflate')
|
|
@@ -74589,7 +74535,7 @@ module.exports.inflateRaw = inflateRaw
|
|
|
74589
74535
|
module.exports.ungzip = inflate
|
|
74590
74536
|
module.exports.constants = require('./zlib/constants')
|
|
74591
74537
|
|
|
74592
|
-
},{"./utils/common":
|
|
74538
|
+
},{"./utils/common":386,"./utils/strings":387,"./zlib/constants":389,"./zlib/gzheader":392,"./zlib/inflate":394,"./zlib/messages":396,"./zlib/zstream":398}],386:[function(require,module,exports){
|
|
74593
74539
|
'use strict'
|
|
74594
74540
|
|
|
74595
74541
|
const _has = (obj, key) => {
|
|
@@ -74639,7 +74585,7 @@ module.exports.flattenChunks = (chunks) => {
|
|
|
74639
74585
|
return result
|
|
74640
74586
|
}
|
|
74641
74587
|
|
|
74642
|
-
},{}],
|
|
74588
|
+
},{}],387:[function(require,module,exports){
|
|
74643
74589
|
// String encode/decode helpers
|
|
74644
74590
|
'use strict'
|
|
74645
74591
|
|
|
@@ -74828,7 +74774,7 @@ module.exports.utf8border = (buf, max) => {
|
|
|
74828
74774
|
return pos + _utf8len[buf[pos]] > max ? pos : max
|
|
74829
74775
|
}
|
|
74830
74776
|
|
|
74831
|
-
},{}],
|
|
74777
|
+
},{}],388:[function(require,module,exports){
|
|
74832
74778
|
'use strict'
|
|
74833
74779
|
|
|
74834
74780
|
// Note: adler32 takes 12% for level 0 and 2% for level 6.
|
|
@@ -74880,7 +74826,7 @@ const adler32 = (adler, buf, len, pos) => {
|
|
|
74880
74826
|
|
|
74881
74827
|
module.exports = adler32
|
|
74882
74828
|
|
|
74883
|
-
},{}],
|
|
74829
|
+
},{}],389:[function(require,module,exports){
|
|
74884
74830
|
'use strict'
|
|
74885
74831
|
|
|
74886
74832
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -74948,7 +74894,7 @@ module.exports = {
|
|
|
74948
74894
|
//Z_NULL: null // Use -1 or null inline, depending on var type
|
|
74949
74895
|
}
|
|
74950
74896
|
|
|
74951
|
-
},{}],
|
|
74897
|
+
},{}],390:[function(require,module,exports){
|
|
74952
74898
|
'use strict'
|
|
74953
74899
|
|
|
74954
74900
|
// Note: we can't get significant speed boost here.
|
|
@@ -75008,7 +74954,7 @@ const crc32 = (crc, buf, len, pos) => {
|
|
|
75008
74954
|
|
|
75009
74955
|
module.exports = crc32
|
|
75010
74956
|
|
|
75011
|
-
},{}],
|
|
74957
|
+
},{}],391:[function(require,module,exports){
|
|
75012
74958
|
'use strict'
|
|
75013
74959
|
|
|
75014
74960
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -76859,7 +76805,7 @@ module.exports.deflatePrime = deflatePrime;
|
|
|
76859
76805
|
module.exports.deflateTune = deflateTune;
|
|
76860
76806
|
*/
|
|
76861
76807
|
|
|
76862
|
-
},{"./adler32":
|
|
76808
|
+
},{"./adler32":388,"./constants":389,"./crc32":390,"./messages":396,"./trees":397}],392:[function(require,module,exports){
|
|
76863
76809
|
'use strict'
|
|
76864
76810
|
|
|
76865
76811
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -76919,7 +76865,7 @@ function GZheader() {
|
|
|
76919
76865
|
|
|
76920
76866
|
module.exports = GZheader
|
|
76921
76867
|
|
|
76922
|
-
},{}],
|
|
76868
|
+
},{}],393:[function(require,module,exports){
|
|
76923
76869
|
'use strict'
|
|
76924
76870
|
|
|
76925
76871
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -77268,7 +77214,7 @@ module.exports = function inflate_fast(strm, start) {
|
|
|
77268
77214
|
return
|
|
77269
77215
|
}
|
|
77270
77216
|
|
|
77271
|
-
},{}],
|
|
77217
|
+
},{}],394:[function(require,module,exports){
|
|
77272
77218
|
'use strict'
|
|
77273
77219
|
|
|
77274
77220
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -78895,7 +78841,7 @@ module.exports.inflateSyncPoint = inflateSyncPoint;
|
|
|
78895
78841
|
module.exports.inflateUndermine = inflateUndermine;
|
|
78896
78842
|
*/
|
|
78897
78843
|
|
|
78898
|
-
},{"./adler32":
|
|
78844
|
+
},{"./adler32":388,"./constants":389,"./crc32":390,"./inffast":393,"./inftrees":395}],395:[function(require,module,exports){
|
|
78899
78845
|
'use strict'
|
|
78900
78846
|
|
|
78901
78847
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -79359,7 +79305,7 @@ const inflate_table = (type, lens, lens_index, codes, table, table_index, work,
|
|
|
79359
79305
|
|
|
79360
79306
|
module.exports = inflate_table
|
|
79361
79307
|
|
|
79362
|
-
},{}],
|
|
79308
|
+
},{}],396:[function(require,module,exports){
|
|
79363
79309
|
'use strict'
|
|
79364
79310
|
|
|
79365
79311
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -79393,7 +79339,7 @@ module.exports = {
|
|
|
79393
79339
|
'-6': 'incompatible version' /* Z_VERSION_ERROR (-6) */
|
|
79394
79340
|
}
|
|
79395
79341
|
|
|
79396
|
-
},{}],
|
|
79342
|
+
},{}],397:[function(require,module,exports){
|
|
79397
79343
|
'use strict'
|
|
79398
79344
|
|
|
79399
79345
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -80587,7 +80533,7 @@ module.exports._tr_flush_block = _tr_flush_block
|
|
|
80587
80533
|
module.exports._tr_tally = _tr_tally
|
|
80588
80534
|
module.exports._tr_align = _tr_align
|
|
80589
80535
|
|
|
80590
|
-
},{}],
|
|
80536
|
+
},{}],398:[function(require,module,exports){
|
|
80591
80537
|
'use strict'
|
|
80592
80538
|
|
|
80593
80539
|
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
|
|
@@ -80636,7 +80582,7 @@ function ZStream() {
|
|
|
80636
80582
|
|
|
80637
80583
|
module.exports = ZStream
|
|
80638
80584
|
|
|
80639
|
-
},{}],
|
|
80585
|
+
},{}],399:[function(require,module,exports){
|
|
80640
80586
|
var checkParameters = require('./lib/precondition')
|
|
80641
80587
|
var native = require('crypto')
|
|
80642
80588
|
|
|
@@ -80669,7 +80615,7 @@ if (!native.pbkdf2Sync || native.pbkdf2Sync.toString().indexOf('keylen, digest')
|
|
|
80669
80615
|
exports.pbkdf2 = nativePBKDF2
|
|
80670
80616
|
}
|
|
80671
80617
|
|
|
80672
|
-
},{"./lib/async":
|
|
80618
|
+
},{"./lib/async":400,"./lib/precondition":402,"./lib/sync":403,"crypto":78}],400:[function(require,module,exports){
|
|
80673
80619
|
(function (process,global){(function (){
|
|
80674
80620
|
var checkParameters = require('./precondition')
|
|
80675
80621
|
var defaultEncoding = require('./default-encoding')
|
|
@@ -80773,7 +80719,7 @@ module.exports = function (password, salt, iterations, keylen, digest, callback)
|
|
|
80773
80719
|
}
|
|
80774
80720
|
|
|
80775
80721
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
80776
|
-
},{"../../safe-buffer-5.2.0/index":
|
|
80722
|
+
},{"../../safe-buffer-5.2.0/index":408,"./default-encoding":401,"./precondition":402,"./sync":403,"_process":171}],401:[function(require,module,exports){
|
|
80777
80723
|
(function (process){(function (){
|
|
80778
80724
|
var defaultEncoding
|
|
80779
80725
|
/* istanbul ignore next */
|
|
@@ -80787,7 +80733,7 @@ if (process.browser) {
|
|
|
80787
80733
|
module.exports = defaultEncoding
|
|
80788
80734
|
|
|
80789
80735
|
}).call(this)}).call(this,require('_process'))
|
|
80790
|
-
},{"_process":171}],
|
|
80736
|
+
},{"_process":171}],402:[function(require,module,exports){
|
|
80791
80737
|
(function (Buffer){(function (){
|
|
80792
80738
|
var MAX_ALLOC = Math.pow(2, 30) - 1 // default in iojs
|
|
80793
80739
|
|
|
@@ -80818,8 +80764,8 @@ module.exports = function (password, salt, iterations, keylen) {
|
|
|
80818
80764
|
}
|
|
80819
80765
|
}
|
|
80820
80766
|
|
|
80821
|
-
}).call(this)}).call(this,{"isBuffer":require("../../../../../../../node_modules/is-buffer/index.js")})
|
|
80822
|
-
},{"../../../../../../../node_modules/is-buffer/index.js":
|
|
80767
|
+
}).call(this)}).call(this,{"isBuffer":require("../../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js")})
|
|
80768
|
+
},{"../../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js":149}],403:[function(require,module,exports){
|
|
80823
80769
|
var sizes = {
|
|
80824
80770
|
md5: 16,
|
|
80825
80771
|
sha1: 20,
|
|
@@ -80872,7 +80818,7 @@ function pbkdf2 (password, salt, iterations, keylen, digest) {
|
|
|
80872
80818
|
|
|
80873
80819
|
module.exports = pbkdf2
|
|
80874
80820
|
|
|
80875
|
-
},{"../../create-hmac-1.1.4/browser":
|
|
80821
|
+
},{"../../create-hmac-1.1.4/browser":315,"../../safe-buffer-5.2.0/index":408,"../lib/default-encoding":401,"../lib/precondition":402}],404:[function(require,module,exports){
|
|
80876
80822
|
var OPS = require('../bitcoin-ops-1.4.1/index.json')
|
|
80877
80823
|
|
|
80878
80824
|
function encodingLength (i) {
|
|
@@ -80951,7 +80897,7 @@ module.exports = {
|
|
|
80951
80897
|
decode: decode
|
|
80952
80898
|
}
|
|
80953
80899
|
|
|
80954
|
-
},{"../bitcoin-ops-1.4.1/index.json":
|
|
80900
|
+
},{"../bitcoin-ops-1.4.1/index.json":261}],405:[function(require,module,exports){
|
|
80955
80901
|
(function (process,global){(function (){
|
|
80956
80902
|
'use strict'
|
|
80957
80903
|
|
|
@@ -81005,7 +80951,7 @@ function randomBytes (size, cb) {
|
|
|
81005
80951
|
}
|
|
81006
80952
|
|
|
81007
80953
|
}).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
81008
|
-
},{"../safe-buffer-5.2.0/index":
|
|
80954
|
+
},{"../safe-buffer-5.2.0/index":408,"_process":171}],406:[function(require,module,exports){
|
|
81009
80955
|
'use strict'
|
|
81010
80956
|
var Buffer = require('buffer').Buffer
|
|
81011
80957
|
var inherits = require('../inherits-2.0.4/inherits')
|
|
@@ -81170,7 +81116,7 @@ function fn5 (a, b, c, d, e, m, k, s) {
|
|
|
81170
81116
|
|
|
81171
81117
|
module.exports = RIPEMD160
|
|
81172
81118
|
|
|
81173
|
-
},{"../hash-base-3.0.4/index":
|
|
81119
|
+
},{"../hash-base-3.0.4/index":353,"../inherits-2.0.4/inherits":367,"buffer":67}],407:[function(require,module,exports){
|
|
81174
81120
|
const assert = require('assert')
|
|
81175
81121
|
const Buffer = require('../safe-buffer-5.2.0/index').Buffer
|
|
81176
81122
|
/**
|
|
@@ -81402,7 +81348,7 @@ function toBuffer (v) {
|
|
|
81402
81348
|
return v
|
|
81403
81349
|
}
|
|
81404
81350
|
|
|
81405
|
-
},{"../safe-buffer-5.2.0/index":
|
|
81351
|
+
},{"../safe-buffer-5.2.0/index":408,"assert":16}],408:[function(require,module,exports){
|
|
81406
81352
|
/* eslint-disable node/no-deprecated-api */
|
|
81407
81353
|
var buffer = require('buffer')
|
|
81408
81354
|
var Buffer = buffer.Buffer
|
|
@@ -81468,11 +81414,11 @@ SafeBuffer.allocUnsafeSlow = function (size) {
|
|
|
81468
81414
|
return buffer.SlowBuffer(size)
|
|
81469
81415
|
}
|
|
81470
81416
|
|
|
81471
|
-
},{"buffer":67}],
|
|
81417
|
+
},{"buffer":67}],409:[function(require,module,exports){
|
|
81472
81418
|
'use strict'
|
|
81473
81419
|
module.exports = require('./lib')(require('./lib/elliptic'))
|
|
81474
81420
|
|
|
81475
|
-
},{"./lib":
|
|
81421
|
+
},{"./lib":413,"./lib/elliptic":412}],410:[function(require,module,exports){
|
|
81476
81422
|
(function (Buffer){(function (){
|
|
81477
81423
|
'use strict'
|
|
81478
81424
|
var toString = Object.prototype.toString
|
|
@@ -81519,8 +81465,8 @@ exports.isNumberInInterval = function (number, x, y, message) {
|
|
|
81519
81465
|
if (number <= x || number >= y) throw RangeError(message)
|
|
81520
81466
|
}
|
|
81521
81467
|
|
|
81522
|
-
}).call(this)}).call(this,{"isBuffer":require("../../../../../../../node_modules/is-buffer/index.js")})
|
|
81523
|
-
},{"../../../../../../../node_modules/is-buffer/index.js":
|
|
81468
|
+
}).call(this)}).call(this,{"isBuffer":require("../../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js")})
|
|
81469
|
+
},{"../../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js":149}],411:[function(require,module,exports){
|
|
81524
81470
|
'use strict'
|
|
81525
81471
|
var Buffer = require('../../safe-buffer-5.2.0/index').Buffer
|
|
81526
81472
|
var bip66 = require('../../bip66-1.1.5/index')
|
|
@@ -81715,7 +81661,7 @@ exports.signatureImportLax = function (sig) {
|
|
|
81715
81661
|
return { r: r, s: s }
|
|
81716
81662
|
}
|
|
81717
81663
|
|
|
81718
|
-
},{"../../bip66-1.1.5/index":
|
|
81664
|
+
},{"../../bip66-1.1.5/index":260,"../../safe-buffer-5.2.0/index":408}],412:[function(require,module,exports){
|
|
81719
81665
|
'use strict'
|
|
81720
81666
|
var Buffer = require('../../../safe-buffer-5.2.0/index').Buffer
|
|
81721
81667
|
var createHash = require('../../../create-hash-1.2.0/browser')
|
|
@@ -81980,7 +81926,7 @@ exports.ecdhUnsafe = function (publicKey, privateKey, compressed) {
|
|
|
81980
81926
|
return Buffer.from(pair.pub.mul(scalar).encode(true, compressed))
|
|
81981
81927
|
}
|
|
81982
81928
|
|
|
81983
|
-
},{"../../../bn.js-4.11.8/lib/bn":
|
|
81929
|
+
},{"../../../bn.js-4.11.8/lib/bn":306,"../../../create-hash-1.2.0/browser":313,"../../../elliptic-6.5.3/lib/elliptic":328,"../../../safe-buffer-5.2.0/index":408,"../messages.json":414}],413:[function(require,module,exports){
|
|
81984
81930
|
'use strict'
|
|
81985
81931
|
var assert = require('./assert')
|
|
81986
81932
|
var der = require('./der')
|
|
@@ -82227,7 +82173,7 @@ module.exports = function (secp256k1) {
|
|
|
82227
82173
|
}
|
|
82228
82174
|
}
|
|
82229
82175
|
|
|
82230
|
-
},{"./assert":
|
|
82176
|
+
},{"./assert":410,"./der":411,"./messages.json":414}],414:[function(require,module,exports){
|
|
82231
82177
|
module.exports={
|
|
82232
82178
|
"COMPRESSED_TYPE_INVALID": "compressed should be a boolean",
|
|
82233
82179
|
"EC_PRIVATE_KEY_TYPE_INVALID": "private key should be a Buffer",
|
|
@@ -82265,10 +82211,10 @@ module.exports={
|
|
|
82265
82211
|
"TWEAK_TYPE_INVALID": "tweak should be a Buffer",
|
|
82266
82212
|
"TWEAK_LENGTH_INVALID": "tweak length is invalid"
|
|
82267
82213
|
}
|
|
82268
|
-
},{}],
|
|
82214
|
+
},{}],415:[function(require,module,exports){
|
|
82269
82215
|
module.exports = require('./lib')(require('./lib/elliptic'))
|
|
82270
82216
|
|
|
82271
|
-
},{"./lib":
|
|
82217
|
+
},{"./lib":417,"./lib/elliptic":416}],416:[function(require,module,exports){
|
|
82272
82218
|
const EC = require('../../elliptic-6.5.3/lib/elliptic').ec
|
|
82273
82219
|
|
|
82274
82220
|
const ec = new EC('secp256k1')
|
|
@@ -82672,7 +82618,7 @@ module.exports = {
|
|
|
82672
82618
|
}
|
|
82673
82619
|
}
|
|
82674
82620
|
|
|
82675
|
-
},{"../../elliptic-6.5.3/lib/elliptic":
|
|
82621
|
+
},{"../../elliptic-6.5.3/lib/elliptic":328}],417:[function(require,module,exports){
|
|
82676
82622
|
const errors = {
|
|
82677
82623
|
IMPOSSIBLE_CASE: 'Impossible case. Please create issue.',
|
|
82678
82624
|
TWEAK_ADD:
|
|
@@ -83010,7 +82956,7 @@ module.exports = (secp256k1) => {
|
|
|
83010
82956
|
}
|
|
83011
82957
|
}
|
|
83012
82958
|
|
|
83013
|
-
},{}],
|
|
82959
|
+
},{}],418:[function(require,module,exports){
|
|
83014
82960
|
var Buffer = require('../safe-buffer-5.2.0/index').Buffer
|
|
83015
82961
|
|
|
83016
82962
|
// prototype class for hash functions
|
|
@@ -83093,7 +83039,7 @@ Hash.prototype._update = function () {
|
|
|
83093
83039
|
|
|
83094
83040
|
module.exports = Hash
|
|
83095
83041
|
|
|
83096
|
-
},{"../safe-buffer-5.2.0/index":
|
|
83042
|
+
},{"../safe-buffer-5.2.0/index":408}],419:[function(require,module,exports){
|
|
83097
83043
|
'use strict'
|
|
83098
83044
|
var exports = (module.exports = function SHA(algorithm) {
|
|
83099
83045
|
algorithm = algorithm.toLowerCase()
|
|
@@ -83111,7 +83057,7 @@ exports.sha256 = require('./sha256')
|
|
|
83111
83057
|
exports.sha384 = require('./sha384')
|
|
83112
83058
|
exports.sha512 = require('./sha512')
|
|
83113
83059
|
|
|
83114
|
-
},{"./sha":
|
|
83060
|
+
},{"./sha":420,"./sha1":421,"./sha224":422,"./sha256":423,"./sha384":424,"./sha512":425}],420:[function(require,module,exports){
|
|
83115
83061
|
/*
|
|
83116
83062
|
* A JavaScript implementation of the Secure Hash Algorithm, SHA-0, as defined
|
|
83117
83063
|
* in FIPS PUB 180-1
|
|
@@ -83207,7 +83153,7 @@ Sha.prototype._hash = function () {
|
|
|
83207
83153
|
|
|
83208
83154
|
module.exports = Sha
|
|
83209
83155
|
|
|
83210
|
-
},{"../inherits-2.0.4/inherits":
|
|
83156
|
+
},{"../inherits-2.0.4/inherits":367,"../safe-buffer-5.2.0/index":408,"./hash":418}],421:[function(require,module,exports){
|
|
83211
83157
|
/*
|
|
83212
83158
|
* A JavaScript implementation of the Secure Hash Algorithm, SHA-1, as defined
|
|
83213
83159
|
* in FIPS PUB 180-1
|
|
@@ -83308,7 +83254,7 @@ Sha1.prototype._hash = function () {
|
|
|
83308
83254
|
|
|
83309
83255
|
module.exports = Sha1
|
|
83310
83256
|
|
|
83311
|
-
},{"../inherits-2.0.4/inherits":
|
|
83257
|
+
},{"../inherits-2.0.4/inherits":367,"../safe-buffer-5.2.0/index":408,"./hash":418}],422:[function(require,module,exports){
|
|
83312
83258
|
/**
|
|
83313
83259
|
* A JavaScript implementation of the Secure Hash Algorithm, SHA-256, as defined
|
|
83314
83260
|
* in FIPS 180-2
|
|
@@ -83363,7 +83309,7 @@ Sha224.prototype._hash = function () {
|
|
|
83363
83309
|
|
|
83364
83310
|
module.exports = Sha224
|
|
83365
83311
|
|
|
83366
|
-
},{"../inherits-2.0.4/inherits":
|
|
83312
|
+
},{"../inherits-2.0.4/inherits":367,"../safe-buffer-5.2.0/index":408,"./hash":418,"./sha256":423}],423:[function(require,module,exports){
|
|
83367
83313
|
/**
|
|
83368
83314
|
* A JavaScript implementation of the Secure Hash Algorithm, SHA-256, as defined
|
|
83369
83315
|
* in FIPS 180-2
|
|
@@ -83500,7 +83446,7 @@ Sha256.prototype._hash = function () {
|
|
|
83500
83446
|
|
|
83501
83447
|
module.exports = Sha256
|
|
83502
83448
|
|
|
83503
|
-
},{"../inherits-2.0.4/inherits":
|
|
83449
|
+
},{"../inherits-2.0.4/inherits":367,"../safe-buffer-5.2.0/index":408,"./hash":418}],424:[function(require,module,exports){
|
|
83504
83450
|
var inherits = require('../inherits-2.0.4/inherits')
|
|
83505
83451
|
var SHA512 = require('./sha512')
|
|
83506
83452
|
var Hash = require('./hash')
|
|
@@ -83559,7 +83505,7 @@ Sha384.prototype._hash = function () {
|
|
|
83559
83505
|
|
|
83560
83506
|
module.exports = Sha384
|
|
83561
83507
|
|
|
83562
|
-
},{"../inherits-2.0.4/inherits":
|
|
83508
|
+
},{"../inherits-2.0.4/inherits":367,"../safe-buffer-5.2.0/index":408,"./hash":418,"./sha512":425}],425:[function(require,module,exports){
|
|
83563
83509
|
var inherits = require('../inherits-2.0.4/inherits')
|
|
83564
83510
|
var Hash = require('./hash')
|
|
83565
83511
|
var Buffer = require('../safe-buffer-5.2.0/index').Buffer
|
|
@@ -83821,7 +83767,7 @@ Sha512.prototype._hash = function () {
|
|
|
83821
83767
|
|
|
83822
83768
|
module.exports = Sha512
|
|
83823
83769
|
|
|
83824
|
-
},{"../inherits-2.0.4/inherits":
|
|
83770
|
+
},{"../inherits-2.0.4/inherits":367,"../safe-buffer-5.2.0/index":408,"./hash":418}],426:[function(require,module,exports){
|
|
83825
83771
|
var isHexPrefixed = require('../../is-hex-prefixed-1.0.0/src/index');
|
|
83826
83772
|
|
|
83827
83773
|
/**
|
|
@@ -83837,7 +83783,7 @@ module.exports = function stripHexPrefix(str) {
|
|
|
83837
83783
|
return isHexPrefixed(str) ? str.slice(2) : str;
|
|
83838
83784
|
}
|
|
83839
83785
|
|
|
83840
|
-
},{"../../is-hex-prefixed-1.0.0/src/index":
|
|
83786
|
+
},{"../../is-hex-prefixed-1.0.0/src/index":370}],427:[function(require,module,exports){
|
|
83841
83787
|
var native = require('./native')
|
|
83842
83788
|
|
|
83843
83789
|
function getTypeName (fn) {
|
|
@@ -83949,7 +83895,7 @@ module.exports = {
|
|
|
83949
83895
|
getValueTypeName: getValueTypeName
|
|
83950
83896
|
}
|
|
83951
83897
|
|
|
83952
|
-
},{"./native":
|
|
83898
|
+
},{"./native":430}],428:[function(require,module,exports){
|
|
83953
83899
|
(function (Buffer){(function (){
|
|
83954
83900
|
var NATIVE = require('./native')
|
|
83955
83901
|
var ERRORS = require('./errors')
|
|
@@ -84043,8 +83989,8 @@ for (var typeName in types) {
|
|
|
84043
83989
|
|
|
84044
83990
|
module.exports = types
|
|
84045
83991
|
|
|
84046
|
-
}).call(this)}).call(this,{"isBuffer":require("../../../../../../node_modules/is-buffer/index.js")})
|
|
84047
|
-
},{"../../../../../../node_modules/is-buffer/index.js":
|
|
83992
|
+
}).call(this)}).call(this,{"isBuffer":require("../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js")})
|
|
83993
|
+
},{"../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js":149,"./errors":427,"./native":430}],429:[function(require,module,exports){
|
|
84048
83994
|
var ERRORS = require('./errors')
|
|
84049
83995
|
var NATIVE = require('./native')
|
|
84050
83996
|
|
|
@@ -84306,7 +84252,7 @@ typeforce.TfPropertyTypeError = TfPropertyTypeError
|
|
|
84306
84252
|
|
|
84307
84253
|
module.exports = typeforce
|
|
84308
84254
|
|
|
84309
|
-
},{"./errors":
|
|
84255
|
+
},{"./errors":427,"./extra":428,"./native":430}],430:[function(require,module,exports){
|
|
84310
84256
|
var types = {
|
|
84311
84257
|
Array: function (value) { return value !== null && value !== undefined && value.constructor === Array },
|
|
84312
84258
|
Boolean: function (value) { return typeof value === 'boolean' },
|
|
@@ -84329,7 +84275,7 @@ for (var typeName in types) {
|
|
|
84329
84275
|
|
|
84330
84276
|
module.exports = types
|
|
84331
84277
|
|
|
84332
|
-
},{}],
|
|
84278
|
+
},{}],431:[function(require,module,exports){
|
|
84333
84279
|
(function (root) {
|
|
84334
84280
|
"use strict";
|
|
84335
84281
|
|
|
@@ -84783,7 +84729,7 @@ UChar.udata={
|
|
|
84783
84729
|
}
|
|
84784
84730
|
}(this));
|
|
84785
84731
|
|
|
84786
|
-
},{}],
|
|
84732
|
+
},{}],432:[function(require,module,exports){
|
|
84787
84733
|
/*! https://mths.be/utf8js v3.0.0 by @mathias */
|
|
84788
84734
|
;(function(root) {
|
|
84789
84735
|
|
|
@@ -84987,7 +84933,7 @@ UChar.udata={
|
|
|
84987
84933
|
|
|
84988
84934
|
}(typeof exports === 'undefined' ? this.utf8 = {} : exports));
|
|
84989
84935
|
|
|
84990
|
-
},{}],
|
|
84936
|
+
},{}],433:[function(require,module,exports){
|
|
84991
84937
|
/*!
|
|
84992
84938
|
* validate.js 0.13.1
|
|
84993
84939
|
*
|
|
@@ -86242,7 +86188,7 @@ UChar.udata={
|
|
|
86242
86188
|
typeof module !== 'undefined' ? /* istanbul ignore next */ module : null,
|
|
86243
86189
|
typeof define !== 'undefined' ? /* istanbul ignore next */ define : null);
|
|
86244
86190
|
|
|
86245
|
-
},{}],
|
|
86191
|
+
},{}],434:[function(require,module,exports){
|
|
86246
86192
|
'use strict'
|
|
86247
86193
|
var Buffer = require('../safe-buffer-5.2.0/index').Buffer
|
|
86248
86194
|
|
|
@@ -86334,7 +86280,7 @@ function encodingLength (number) {
|
|
|
86334
86280
|
|
|
86335
86281
|
module.exports = { encode: encode, decode: decode, encodingLength: encodingLength }
|
|
86336
86282
|
|
|
86337
|
-
},{"../safe-buffer-5.2.0/index":
|
|
86283
|
+
},{"../safe-buffer-5.2.0/index":408}],435:[function(require,module,exports){
|
|
86338
86284
|
(function (Buffer){(function (){
|
|
86339
86285
|
var bs58check = require('../bs58check-2.1.2/index')
|
|
86340
86286
|
|
|
@@ -86401,7 +86347,7 @@ module.exports = {
|
|
|
86401
86347
|
}
|
|
86402
86348
|
|
|
86403
86349
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
86404
|
-
},{"../bs58check-2.1.2/index":
|
|
86350
|
+
},{"../bs58check-2.1.2/index":310,"buffer":67}],436:[function(require,module,exports){
|
|
86405
86351
|
"use strict";
|
|
86406
86352
|
var __extends = (this && this.__extends) || (function () {
|
|
86407
86353
|
var extendStatics = function (d, b) {
|
|
@@ -86436,6 +86382,7 @@ var Domain;
|
|
|
86436
86382
|
Domain["TEZOSFA"] = "TEZOSFA";
|
|
86437
86383
|
Domain["UTILS"] = "UTILS";
|
|
86438
86384
|
Domain["ACTIONS"] = "ACTIONS";
|
|
86385
|
+
Domain["ICP"] = "ICP";
|
|
86439
86386
|
})(Domain = exports.Domain || (exports.Domain = {}));
|
|
86440
86387
|
var CoinlibError = /** @class */ (function (_super) {
|
|
86441
86388
|
__extends(CoinlibError, _super);
|
|
@@ -86463,7 +86410,7 @@ var CoinlibAssertionError = /** @class */ (function (_super) {
|
|
|
86463
86410
|
}(Error));
|
|
86464
86411
|
exports.CoinlibAssertionError = CoinlibAssertionError;
|
|
86465
86412
|
|
|
86466
|
-
},{}],
|
|
86413
|
+
},{}],437:[function(require,module,exports){
|
|
86467
86414
|
"use strict";
|
|
86468
86415
|
var __extends = (this && this.__extends) || (function () {
|
|
86469
86416
|
var extendStatics = function (d, b) {
|
|
@@ -86745,7 +86692,7 @@ var InvalidString = /** @class */ (function (_super) {
|
|
|
86745
86692
|
}(SerializerError));
|
|
86746
86693
|
exports.InvalidString = InvalidString;
|
|
86747
86694
|
|
|
86748
|
-
},{"./coinlib-error":
|
|
86695
|
+
},{"./coinlib-error":436}],438:[function(require,module,exports){
|
|
86749
86696
|
"use strict";
|
|
86750
86697
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
86751
86698
|
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;
|
|
@@ -86804,7 +86751,7 @@ var AirGapWallet_1 = require("./wallet/AirGapWallet");
|
|
|
86804
86751
|
Object.defineProperty(exports, "AirGapWallet", { enumerable: true, get: function () { return AirGapWallet_1.AirGapWallet; } });
|
|
86805
86752
|
Object.defineProperty(exports, "AirGapWalletStatus", { enumerable: true, get: function () { return AirGapWallet_1.AirGapWalletStatus; } });
|
|
86806
86753
|
|
|
86807
|
-
},{"./actions/Action":
|
|
86754
|
+
},{"./actions/Action":213,"./actions/LinkedAction":214,"./actions/RepeatableAction":215,"./actions/SimpleAction":216,"./errors":437,"./errors/coinlib-error":436,"./protocols/CryptoClient":440,"./protocols/ICoinSubProtocol":441,"./utils/Network":444,"./utils/ProtocolBlockExplorer":445,"./utils/ProtocolNetwork":446,"./utils/ProtocolSymbols":447,"./utils/assert":448,"./utils/buffer":449,"./utils/interfaces":451,"./wallet/AirGapCoinWallet":453,"./wallet/AirGapMarketWallet":454,"./wallet/AirGapNFTWallet":455,"./wallet/AirGapWallet":456}],439:[function(require,module,exports){
|
|
86808
86755
|
"use strict";
|
|
86809
86756
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
86810
86757
|
exports.AirGapTransactionWarningType = exports.AirGapTransactionStatus = exports.AirGapTransactionType = void 0;
|
|
@@ -86827,7 +86774,7 @@ var AirGapTransactionWarningType;
|
|
|
86827
86774
|
AirGapTransactionWarningType["ERROR"] = "error";
|
|
86828
86775
|
})(AirGapTransactionWarningType = exports.AirGapTransactionWarningType || (exports.AirGapTransactionWarningType = {}));
|
|
86829
86776
|
|
|
86830
|
-
},{}],
|
|
86777
|
+
},{}],440:[function(require,module,exports){
|
|
86831
86778
|
"use strict";
|
|
86832
86779
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
86833
86780
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -86912,7 +86859,7 @@ var CryptoClient = /** @class */ (function () {
|
|
|
86912
86859
|
}());
|
|
86913
86860
|
exports.CryptoClient = CryptoClient;
|
|
86914
86861
|
|
|
86915
|
-
},{"../errors":
|
|
86862
|
+
},{"../errors":437,"../errors/coinlib-error":436,"../utils/AES":443}],441:[function(require,module,exports){
|
|
86916
86863
|
"use strict";
|
|
86917
86864
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
86918
86865
|
exports.SubProtocolType = void 0;
|
|
@@ -86922,7 +86869,7 @@ var SubProtocolType;
|
|
|
86922
86869
|
SubProtocolType["TOKEN"] = "token";
|
|
86923
86870
|
})(SubProtocolType = exports.SubProtocolType || (exports.SubProtocolType = {}));
|
|
86924
86871
|
|
|
86925
|
-
},{}],
|
|
86872
|
+
},{}],442:[function(require,module,exports){
|
|
86926
86873
|
(function (Buffer){(function (){
|
|
86927
86874
|
"use strict";
|
|
86928
86875
|
var __extends = (this && this.__extends) || (function () {
|
|
@@ -87004,7 +86951,7 @@ var Secp256k1CryptoClient = /** @class */ (function (_super) {
|
|
|
87004
86951
|
exports.Secp256k1CryptoClient = Secp256k1CryptoClient;
|
|
87005
86952
|
|
|
87006
86953
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
87007
|
-
},{"../dependencies/src/eciesjs-0.3.9/src/index":
|
|
86954
|
+
},{"../dependencies/src/eciesjs-0.3.9/src/index":318,"./CryptoClient":440,"buffer":67}],443:[function(require,module,exports){
|
|
87008
86955
|
(function (Buffer){(function (){
|
|
87009
86956
|
"use strict";
|
|
87010
86957
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -87172,7 +87119,7 @@ var AES = /** @class */ (function () {
|
|
|
87172
87119
|
exports.AES = AES;
|
|
87173
87120
|
|
|
87174
87121
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
87175
|
-
},{"../errors":
|
|
87122
|
+
},{"../errors":437,"../errors/coinlib-error":436,"./hex":450,"buffer":67,"crypto":78}],444:[function(require,module,exports){
|
|
87176
87123
|
"use strict";
|
|
87177
87124
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
87178
87125
|
exports.isNetworkEqual = void 0;
|
|
@@ -87181,7 +87128,7 @@ var isNetworkEqual = function (network1, network2) {
|
|
|
87181
87128
|
};
|
|
87182
87129
|
exports.isNetworkEqual = isNetworkEqual;
|
|
87183
87130
|
|
|
87184
|
-
},{}],
|
|
87131
|
+
},{}],445:[function(require,module,exports){
|
|
87185
87132
|
"use strict";
|
|
87186
87133
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
87187
87134
|
exports.ProtocolBlockExplorer = void 0;
|
|
@@ -87193,7 +87140,7 @@ var ProtocolBlockExplorer = /** @class */ (function () {
|
|
|
87193
87140
|
}());
|
|
87194
87141
|
exports.ProtocolBlockExplorer = ProtocolBlockExplorer;
|
|
87195
87142
|
|
|
87196
|
-
},{}],
|
|
87143
|
+
},{}],446:[function(require,module,exports){
|
|
87197
87144
|
"use strict";
|
|
87198
87145
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
87199
87146
|
exports.ProtocolNetwork = exports.NetworkType = void 0;
|
|
@@ -87229,7 +87176,7 @@ var ProtocolNetwork = /** @class */ (function () {
|
|
|
87229
87176
|
}());
|
|
87230
87177
|
exports.ProtocolNetwork = ProtocolNetwork;
|
|
87231
87178
|
|
|
87232
|
-
},{"../dependencies/src/create-hash-1.2.0/index":
|
|
87179
|
+
},{"../dependencies/src/create-hash-1.2.0/index":314}],447:[function(require,module,exports){
|
|
87233
87180
|
"use strict";
|
|
87234
87181
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
87235
87182
|
exports.isProtocolSymbol = exports.isSubProtocolSymbol = exports.isMainProtocolSymbol = exports.SubProtocolSymbols = exports.MainProtocolSymbols = void 0;
|
|
@@ -87250,6 +87197,7 @@ var MainProtocolSymbols;
|
|
|
87250
87197
|
MainProtocolSymbols["MOONBEAM"] = "moonbeam";
|
|
87251
87198
|
MainProtocolSymbols["ASTAR"] = "astar";
|
|
87252
87199
|
MainProtocolSymbols["SHIDEN"] = "shiden";
|
|
87200
|
+
MainProtocolSymbols["ICP"] = "icp";
|
|
87253
87201
|
})(MainProtocolSymbols = exports.MainProtocolSymbols || (exports.MainProtocolSymbols = {}));
|
|
87254
87202
|
var SubProtocolSymbols;
|
|
87255
87203
|
(function (SubProtocolSymbols) {
|
|
@@ -87288,7 +87236,7 @@ function isProtocolSymbol(identifier) {
|
|
|
87288
87236
|
}
|
|
87289
87237
|
exports.isProtocolSymbol = isProtocolSymbol;
|
|
87290
87238
|
|
|
87291
|
-
},{}],
|
|
87239
|
+
},{}],448:[function(require,module,exports){
|
|
87292
87240
|
"use strict";
|
|
87293
87241
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
87294
87242
|
exports.assertFields = exports.assertNever = void 0;
|
|
@@ -87309,7 +87257,7 @@ function assertFields(name, object) {
|
|
|
87309
87257
|
}
|
|
87310
87258
|
exports.assertFields = assertFields;
|
|
87311
87259
|
|
|
87312
|
-
},{"../errors":
|
|
87260
|
+
},{"../errors":437,"../errors/coinlib-error":436}],449:[function(require,module,exports){
|
|
87313
87261
|
(function (Buffer){(function (){
|
|
87314
87262
|
"use strict";
|
|
87315
87263
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -87320,7 +87268,7 @@ var bufferFrom = function (data, encoding) {
|
|
|
87320
87268
|
exports.bufferFrom = bufferFrom;
|
|
87321
87269
|
|
|
87322
87270
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
87323
|
-
},{"buffer":67}],
|
|
87271
|
+
},{"buffer":67}],450:[function(require,module,exports){
|
|
87324
87272
|
(function (Buffer){(function (){
|
|
87325
87273
|
"use strict";
|
|
87326
87274
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
@@ -87435,7 +87383,7 @@ function fillToTargetLength(hexString, bitLength) {
|
|
|
87435
87383
|
}
|
|
87436
87384
|
|
|
87437
87385
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
87438
|
-
},{"../dependencies/src/bignumber.js-9.0.0/bignumber":
|
|
87386
|
+
},{"../dependencies/src/bignumber.js-9.0.0/bignumber":250,"./padStart":452,"buffer":67}],451:[function(require,module,exports){
|
|
87439
87387
|
"use strict";
|
|
87440
87388
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
87441
87389
|
exports.hasConfigurableContract = exports.implementsInterface = void 0;
|
|
@@ -87454,7 +87402,7 @@ function hasConfigurableContract(object) {
|
|
|
87454
87402
|
}
|
|
87455
87403
|
exports.hasConfigurableContract = hasConfigurableContract;
|
|
87456
87404
|
|
|
87457
|
-
},{}],
|
|
87405
|
+
},{}],452:[function(require,module,exports){
|
|
87458
87406
|
"use strict";
|
|
87459
87407
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
87460
87408
|
exports.padStart = void 0;
|
|
@@ -87475,7 +87423,7 @@ function padStart(targetString, targetLength, padString) {
|
|
|
87475
87423
|
}
|
|
87476
87424
|
exports.padStart = padStart;
|
|
87477
87425
|
|
|
87478
|
-
},{}],
|
|
87426
|
+
},{}],453:[function(require,module,exports){
|
|
87479
87427
|
"use strict";
|
|
87480
87428
|
var __extends = (this && this.__extends) || (function () {
|
|
87481
87429
|
var extendStatics = function (d, b) {
|
|
@@ -87675,7 +87623,7 @@ var AirGapCoinWallet = /** @class */ (function (_super) {
|
|
|
87675
87623
|
}(AirGapMarketWallet_1.AirGapMarketWallet));
|
|
87676
87624
|
exports.AirGapCoinWallet = AirGapCoinWallet;
|
|
87677
87625
|
|
|
87678
|
-
},{"../dependencies/src/bignumber.js-9.0.0/bignumber":
|
|
87626
|
+
},{"../dependencies/src/bignumber.js-9.0.0/bignumber":250,"../utils/ProtocolNetwork":446,"../utils/ProtocolSymbols":447,"./AirGapMarketWallet":454}],454:[function(require,module,exports){
|
|
87679
87627
|
"use strict";
|
|
87680
87628
|
var __extends = (this && this.__extends) || (function () {
|
|
87681
87629
|
var extendStatics = function (d, b) {
|
|
@@ -87897,7 +87845,7 @@ var AirGapMarketWallet = /** @class */ (function (_super) {
|
|
|
87897
87845
|
}(AirGapWallet_1.AirGapWallet));
|
|
87898
87846
|
exports.AirGapMarketWallet = AirGapMarketWallet;
|
|
87899
87847
|
|
|
87900
|
-
},{"../dependencies/src/bignumber.js-9.0.0/bignumber":
|
|
87848
|
+
},{"../dependencies/src/bignumber.js-9.0.0/bignumber":250,"../utils/ProtocolSymbols":447,"./AirGapWallet":456}],455:[function(require,module,exports){
|
|
87901
87849
|
"use strict";
|
|
87902
87850
|
var __extends = (this && this.__extends) || (function () {
|
|
87903
87851
|
var extendStatics = function (d, b) {
|
|
@@ -88077,7 +88025,7 @@ var AirGapNFTWallet = /** @class */ (function (_super) {
|
|
|
88077
88025
|
}(AirGapMarketWallet_1.AirGapMarketWallet));
|
|
88078
88026
|
exports.AirGapNFTWallet = AirGapNFTWallet;
|
|
88079
88027
|
|
|
88080
|
-
},{"../dependencies/src/bignumber.js-9.0.0/bignumber":
|
|
88028
|
+
},{"../dependencies/src/bignumber.js-9.0.0/bignumber":250,"../utils/ProtocolNetwork":446,"./AirGapMarketWallet":454}],456:[function(require,module,exports){
|
|
88081
88029
|
"use strict";
|
|
88082
88030
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
88083
88031
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -88220,7 +88168,7 @@ var AirGapWallet = /** @class */ (function () {
|
|
|
88220
88168
|
}());
|
|
88221
88169
|
exports.AirGapWallet = AirGapWallet;
|
|
88222
88170
|
|
|
88223
|
-
},{"../errors":
|
|
88171
|
+
},{"../errors":437,"../errors/coinlib-error":436}],457:[function(require,module,exports){
|
|
88224
88172
|
"use strict";
|
|
88225
88173
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
88226
88174
|
if (k2 === undefined) k2 = k;
|
|
@@ -88239,7 +88187,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
88239
88187
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
88240
88188
|
__exportStar(require("./v0"), exports);
|
|
88241
88189
|
|
|
88242
|
-
},{"./v0":
|
|
88190
|
+
},{"./v0":458}],458:[function(require,module,exports){
|
|
88243
88191
|
"use strict";
|
|
88244
88192
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
88245
88193
|
exports.EthereumAddress = exports.EthereumERC20ProtocolOptions = exports.EthereumERC20ProtocolConfig = exports.EthereumProtocolOptions = exports.EthereumProtocolConfig = exports.EthereumProtocolNetwork = exports.EtherscanBlockExplorer = exports.EthereumProtocolNetworkExtras = exports.EthereumCryptoClient = exports.GenericERC20 = exports.EthereumClassicProtocol = exports.EthereumRopstenProtocol = exports.EthereumProtocol = void 0;
|
|
@@ -88279,7 +88227,7 @@ serializer_1.SerializerV3.addSchema(serializer_1.IACMessageType.TransactionSignR
|
|
|
88279
88227
|
serializer_1.Serializer.addValidator(coinlib_core_1.MainProtocolSymbols.ETH, new transaction_validator_1.EthereumTransactionValidatorFactoryV2());
|
|
88280
88228
|
serializer_1.SerializerV3.addValidator(coinlib_core_1.MainProtocolSymbols.ETH, new transaction_validator_1.EthereumTransactionValidatorFactory());
|
|
88281
88229
|
|
|
88282
|
-
},{"./protocol/EthereumAddress":
|
|
88230
|
+
},{"./protocol/EthereumAddress":460,"./protocol/EthereumClassicProtocol":462,"./protocol/EthereumCryptoClient":463,"./protocol/EthereumProtocol":464,"./protocol/EthereumProtocolOptions":465,"./protocol/EthereumRopstenProtocol":466,"./protocol/erc20/GenericERC20":471,"./serializer/schemas/v2/transaction-sign-request-ethereum.json":473,"./serializer/schemas/v2/transaction-sign-response-ethereum.json":474,"./serializer/schemas/v3/transaction-sign-request-ethereum-typed.json":475,"./serializer/schemas/v3/transaction-sign-request-ethereum.json":476,"./serializer/schemas/v3/transaction-sign-response-ethereum.json":477,"./serializer/validators/transaction-validator":478,"@airgap/coinlib-core":438,"@airgap/serializer":656}],459:[function(require,module,exports){
|
|
88283
88231
|
(function (Buffer){(function (){
|
|
88284
88232
|
"use strict";
|
|
88285
88233
|
var __assign = (this && this.__assign) || function () {
|
|
@@ -89221,7 +89169,7 @@ var BaseEthereumProtocol = /** @class */ (function () {
|
|
|
89221
89169
|
exports.BaseEthereumProtocol = BaseEthereumProtocol;
|
|
89222
89170
|
|
|
89223
89171
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
89224
|
-
},{"./EthereumAddress":
|
|
89172
|
+
},{"./EthereumAddress":460,"./EthereumChainIDs":461,"./EthereumCryptoClient":463,"./EthereumProtocolOptions":465,"./utils/utils":472,"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":250,"@airgap/coinlib-core/dependencies/src/bip39-2.5.0":251,"@airgap/coinlib-core/dependencies/src/bitgo-utxo-lib-5d91049fd7a988382df81c8260e244ee56d57aac/src":274,"@airgap/coinlib-core/errors":437,"@airgap/coinlib-core/errors/coinlib-error":436,"@airgap/coinlib-core/interfaces/IAirGapTransaction":439,"@airgap/coinlib-core/protocols/ICoinSubProtocol":441,"@airgap/coinlib-core/utils/ProtocolSymbols":447,"@ethereumjs/common":520,"@ethereumjs/tx":524,"buffer":67}],460:[function(require,module,exports){
|
|
89225
89173
|
(function (Buffer){(function (){
|
|
89226
89174
|
"use strict";
|
|
89227
89175
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -89267,7 +89215,7 @@ var EthereumAddress = /** @class */ (function () {
|
|
|
89267
89215
|
exports.EthereumAddress = EthereumAddress;
|
|
89268
89216
|
|
|
89269
89217
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
89270
|
-
},{"@airgap/coinlib-core/dependencies/src/ethereumjs-util-5.2.0":
|
|
89218
|
+
},{"@airgap/coinlib-core/dependencies/src/ethereumjs-util-5.2.0":346,"buffer":67}],461:[function(require,module,exports){
|
|
89271
89219
|
"use strict";
|
|
89272
89220
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
89273
89221
|
exports.EthereumChainIDs = void 0;
|
|
@@ -89608,7 +89556,7 @@ exports.EthereumChainIDs = new Map([
|
|
|
89608
89556
|
[6022140761023, 'Molereum Network']
|
|
89609
89557
|
]);
|
|
89610
89558
|
|
|
89611
|
-
},{}],
|
|
89559
|
+
},{}],462:[function(require,module,exports){
|
|
89612
89560
|
"use strict";
|
|
89613
89561
|
var __extends = (this && this.__extends) || (function () {
|
|
89614
89562
|
var extendStatics = function (d, b) {
|
|
@@ -89639,7 +89587,7 @@ var EthereumClassicProtocol = /** @class */ (function (_super) {
|
|
|
89639
89587
|
}(BaseEthereumProtocol_1.BaseEthereumProtocol));
|
|
89640
89588
|
exports.EthereumClassicProtocol = EthereumClassicProtocol;
|
|
89641
89589
|
|
|
89642
|
-
},{"./BaseEthereumProtocol":
|
|
89590
|
+
},{"./BaseEthereumProtocol":459,"./EthereumProtocolOptions":465}],463:[function(require,module,exports){
|
|
89643
89591
|
(function (Buffer){(function (){
|
|
89644
89592
|
"use strict";
|
|
89645
89593
|
var __extends = (this && this.__extends) || (function () {
|
|
@@ -89790,7 +89738,7 @@ var EthereumCryptoClient = /** @class */ (function (_super) {
|
|
|
89790
89738
|
exports.EthereumCryptoClient = EthereumCryptoClient;
|
|
89791
89739
|
|
|
89792
89740
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
89793
|
-
},{"@airgap/coinlib-core/dependencies/src/ethereumjs-util-5.2.0":
|
|
89741
|
+
},{"@airgap/coinlib-core/dependencies/src/ethereumjs-util-5.2.0":346,"@airgap/coinlib-core/errors":437,"@airgap/coinlib-core/errors/coinlib-error":436,"@airgap/coinlib-core/protocols/Secp256k1CryptoClient":442,"@metamask/eth-sig-util":530,"buffer":67}],464:[function(require,module,exports){
|
|
89794
89742
|
"use strict";
|
|
89795
89743
|
var __extends = (this && this.__extends) || (function () {
|
|
89796
89744
|
var extendStatics = function (d, b) {
|
|
@@ -89825,7 +89773,7 @@ var EthereumProtocol = /** @class */ (function (_super) {
|
|
|
89825
89773
|
}(BaseEthereumProtocol_1.BaseEthereumProtocol));
|
|
89826
89774
|
exports.EthereumProtocol = EthereumProtocol;
|
|
89827
89775
|
|
|
89828
|
-
},{"./BaseEthereumProtocol":
|
|
89776
|
+
},{"./BaseEthereumProtocol":459,"./EthereumProtocolOptions":465}],465:[function(require,module,exports){
|
|
89829
89777
|
"use strict";
|
|
89830
89778
|
var __extends = (this && this.__extends) || (function () {
|
|
89831
89779
|
var extendStatics = function (d, b) {
|
|
@@ -89976,7 +89924,7 @@ var EthereumERC20ProtocolOptions = /** @class */ (function (_super) {
|
|
|
89976
89924
|
}(EthereumProtocolOptions));
|
|
89977
89925
|
exports.EthereumERC20ProtocolOptions = EthereumERC20ProtocolOptions;
|
|
89978
89926
|
|
|
89979
|
-
},{"./clients/info-clients/EtherscanInfoClient":
|
|
89927
|
+
},{"./clients/info-clients/EtherscanInfoClient":467,"./clients/node-clients/AirGapNodeClient":469,"@airgap/coinlib-core/utils/ProtocolNetwork":446}],466:[function(require,module,exports){
|
|
89980
89928
|
"use strict";
|
|
89981
89929
|
var __extends = (this && this.__extends) || (function () {
|
|
89982
89930
|
var extendStatics = function (d, b) {
|
|
@@ -90007,7 +89955,7 @@ var EthereumRopstenProtocol = /** @class */ (function (_super) {
|
|
|
90007
89955
|
}(BaseEthereumProtocol_1.BaseEthereumProtocol));
|
|
90008
89956
|
exports.EthereumRopstenProtocol = EthereumRopstenProtocol;
|
|
90009
89957
|
|
|
90010
|
-
},{"./BaseEthereumProtocol":
|
|
89958
|
+
},{"./BaseEthereumProtocol":459,"./EthereumProtocolOptions":465}],467:[function(require,module,exports){
|
|
90011
89959
|
"use strict";
|
|
90012
89960
|
var __extends = (this && this.__extends) || (function () {
|
|
90013
89961
|
var extendStatics = function (d, b) {
|
|
@@ -90203,7 +90151,7 @@ var EtherscanInfoClient = /** @class */ (function (_super) {
|
|
|
90203
90151
|
}(InfoClient_1.EthereumInfoClient));
|
|
90204
90152
|
exports.EtherscanInfoClient = EtherscanInfoClient;
|
|
90205
90153
|
|
|
90206
|
-
},{"../../EthereumProtocolOptions":
|
|
90154
|
+
},{"../../EthereumProtocolOptions":465,"./InfoClient":468,"@airgap/coinlib-core/dependencies/src/axios-0.19.0":219,"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":250,"@airgap/coinlib-core/dependencies/src/validate.js-0.13.1/validate":433,"@airgap/coinlib-core/errors":437,"@airgap/coinlib-core/errors/coinlib-error":436,"@airgap/coinlib-core/interfaces/IAirGapTransaction":439}],468:[function(require,module,exports){
|
|
90207
90155
|
"use strict";
|
|
90208
90156
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
90209
90157
|
exports.EthereumInfoClient = void 0;
|
|
@@ -90215,7 +90163,7 @@ var EthereumInfoClient = /** @class */ (function () {
|
|
|
90215
90163
|
}());
|
|
90216
90164
|
exports.EthereumInfoClient = EthereumInfoClient;
|
|
90217
90165
|
|
|
90218
|
-
},{}],
|
|
90166
|
+
},{}],469:[function(require,module,exports){
|
|
90219
90167
|
"use strict";
|
|
90220
90168
|
var __extends = (this && this.__extends) || (function () {
|
|
90221
90169
|
var extendStatics = function (d, b) {
|
|
@@ -90569,7 +90517,7 @@ var AirGapNodeClient = /** @class */ (function (_super) {
|
|
|
90569
90517
|
}(NodeClient_1.EthereumNodeClient));
|
|
90570
90518
|
exports.AirGapNodeClient = AirGapNodeClient;
|
|
90571
90519
|
|
|
90572
|
-
},{"../../EthereumProtocolOptions":
|
|
90520
|
+
},{"../../EthereumProtocolOptions":465,"../../utils/utils":472,"./NodeClient":470,"@airgap/coinlib-core/data/RPCBody":218,"@airgap/coinlib-core/dependencies/src/axios-0.19.0":219,"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":250,"@airgap/coinlib-core/errors":437,"@airgap/coinlib-core/errors/coinlib-error":436,"@airgap/coinlib-core/interfaces/IAirGapTransaction":439}],470:[function(require,module,exports){
|
|
90573
90521
|
"use strict";
|
|
90574
90522
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
90575
90523
|
exports.EthereumNodeClient = void 0;
|
|
@@ -90581,7 +90529,7 @@ var EthereumNodeClient = /** @class */ (function () {
|
|
|
90581
90529
|
}());
|
|
90582
90530
|
exports.EthereumNodeClient = EthereumNodeClient;
|
|
90583
90531
|
|
|
90584
|
-
},{}],
|
|
90532
|
+
},{}],471:[function(require,module,exports){
|
|
90585
90533
|
"use strict";
|
|
90586
90534
|
var __extends = (this && this.__extends) || (function () {
|
|
90587
90535
|
var extendStatics = function (d, b) {
|
|
@@ -90917,7 +90865,7 @@ var GenericERC20 = /** @class */ (function (_super) {
|
|
|
90917
90865
|
}(BaseEthereumProtocol_1.BaseEthereumProtocol));
|
|
90918
90866
|
exports.GenericERC20 = GenericERC20;
|
|
90919
90867
|
|
|
90920
|
-
},{"../BaseEthereumProtocol":
|
|
90868
|
+
},{"../BaseEthereumProtocol":459,"../clients/node-clients/AirGapNodeClient":469,"../utils/utils":472,"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":250,"@airgap/coinlib-core/dependencies/src/ethereumjs-tx-1.3.7/index":345,"@airgap/coinlib-core/dependencies/src/ethereumjs-util-5.2.0":346,"@airgap/coinlib-core/errors":437,"@airgap/coinlib-core/errors/coinlib-error":436,"@airgap/coinlib-core/protocols/ICoinSubProtocol":441}],472:[function(require,module,exports){
|
|
90921
90869
|
"use strict";
|
|
90922
90870
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
90923
90871
|
exports.EthereumUtils = void 0;
|
|
@@ -91058,7 +91006,7 @@ var EthereumUtils = /** @class */ (function () {
|
|
|
91058
91006
|
}());
|
|
91059
91007
|
exports.EthereumUtils = EthereumUtils;
|
|
91060
91008
|
|
|
91061
|
-
},{"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":
|
|
91009
|
+
},{"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":250,"@airgap/coinlib-core/dependencies/src/keccak-1.0.2/js":371,"@airgap/coinlib-core/dependencies/src/utf8-3.0.0/utf8":432,"@airgap/coinlib-core/errors":437,"@airgap/coinlib-core/errors/coinlib-error":436}],473:[function(require,module,exports){
|
|
91062
91010
|
module.exports={
|
|
91063
91011
|
"$ref": "#/definitions/UnsignedEthereumTransaction",
|
|
91064
91012
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
@@ -91110,7 +91058,7 @@ module.exports={
|
|
|
91110
91058
|
}
|
|
91111
91059
|
}
|
|
91112
91060
|
|
|
91113
|
-
},{}],
|
|
91061
|
+
},{}],474:[function(require,module,exports){
|
|
91114
91062
|
module.exports={
|
|
91115
91063
|
"$ref": "#/definitions/SignedEthereumTransaction",
|
|
91116
91064
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
@@ -91131,7 +91079,7 @@ module.exports={
|
|
|
91131
91079
|
}
|
|
91132
91080
|
}
|
|
91133
91081
|
|
|
91134
|
-
},{}],
|
|
91082
|
+
},{}],475:[function(require,module,exports){
|
|
91135
91083
|
module.exports={
|
|
91136
91084
|
"$ref": "#/definitions/UnsignedTypedEthereumTransaction",
|
|
91137
91085
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
@@ -91171,11 +91119,11 @@ module.exports={
|
|
|
91171
91119
|
}
|
|
91172
91120
|
}
|
|
91173
91121
|
|
|
91174
|
-
},{}],
|
|
91122
|
+
},{}],476:[function(require,module,exports){
|
|
91123
|
+
arguments[4][473][0].apply(exports,arguments)
|
|
91124
|
+
},{"dup":473}],477:[function(require,module,exports){
|
|
91175
91125
|
arguments[4][474][0].apply(exports,arguments)
|
|
91176
91126
|
},{"dup":474}],478:[function(require,module,exports){
|
|
91177
|
-
arguments[4][475][0].apply(exports,arguments)
|
|
91178
|
-
},{"dup":475}],479:[function(require,module,exports){
|
|
91179
91127
|
"use strict";
|
|
91180
91128
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
91181
91129
|
exports.EthereumTransactionValidatorFactoryV2 = exports.EthereumTransactionValidatorFactory = exports.EthereumTransactionValidator = void 0;
|
|
@@ -91272,7 +91220,7 @@ var EthereumTransactionValidatorFactoryV2 = /** @class */ (function () {
|
|
|
91272
91220
|
}());
|
|
91273
91221
|
exports.EthereumTransactionValidatorFactoryV2 = EthereumTransactionValidatorFactoryV2;
|
|
91274
91222
|
|
|
91275
|
-
},{"@airgap/coinlib-core/dependencies/src/validate.js-0.13.1/validate":
|
|
91223
|
+
},{"@airgap/coinlib-core/dependencies/src/validate.js-0.13.1/validate":433,"@airgap/serializer":656}],479:[function(require,module,exports){
|
|
91276
91224
|
module.exports={
|
|
91277
91225
|
"name": "goerli",
|
|
91278
91226
|
"chainId": 5,
|
|
@@ -91422,7 +91370,7 @@ module.exports={
|
|
|
91422
91370
|
]
|
|
91423
91371
|
}
|
|
91424
91372
|
|
|
91425
|
-
},{}],
|
|
91373
|
+
},{}],480:[function(require,module,exports){
|
|
91426
91374
|
"use strict";
|
|
91427
91375
|
var __values = (this && this.__values) || function(o) {
|
|
91428
91376
|
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
|
@@ -91491,7 +91439,7 @@ exports._getInitializedChains = _getInitializedChains;
|
|
|
91491
91439
|
*/
|
|
91492
91440
|
exports.chains = _getInitializedChains();
|
|
91493
91441
|
|
|
91494
|
-
},{"./goerli.json":
|
|
91442
|
+
},{"./goerli.json":479,"./kovan.json":481,"./mainnet.json":482,"./rinkeby.json":483,"./ropsten.json":484}],481:[function(require,module,exports){
|
|
91495
91443
|
module.exports={
|
|
91496
91444
|
"name": "kovan",
|
|
91497
91445
|
"chainId": 42,
|
|
@@ -91607,7 +91555,7 @@ module.exports={
|
|
|
91607
91555
|
]
|
|
91608
91556
|
}
|
|
91609
91557
|
|
|
91610
|
-
},{}],
|
|
91558
|
+
},{}],482:[function(require,module,exports){
|
|
91611
91559
|
module.exports={
|
|
91612
91560
|
"name": "mainnet",
|
|
91613
91561
|
"chainId": 1,
|
|
@@ -91769,7 +91717,7 @@ module.exports={
|
|
|
91769
91717
|
]
|
|
91770
91718
|
}
|
|
91771
91719
|
|
|
91772
|
-
},{}],
|
|
91720
|
+
},{}],483:[function(require,module,exports){
|
|
91773
91721
|
module.exports={
|
|
91774
91722
|
"name": "rinkeby",
|
|
91775
91723
|
"chainId": 4,
|
|
@@ -91884,7 +91832,7 @@ module.exports={
|
|
|
91884
91832
|
]
|
|
91885
91833
|
}
|
|
91886
91834
|
|
|
91887
|
-
},{}],
|
|
91835
|
+
},{}],484:[function(require,module,exports){
|
|
91888
91836
|
module.exports={
|
|
91889
91837
|
"name": "ropsten",
|
|
91890
91838
|
"chainId": 3,
|
|
@@ -92008,7 +91956,7 @@ module.exports={
|
|
|
92008
91956
|
]
|
|
92009
91957
|
}
|
|
92010
91958
|
|
|
92011
|
-
},{}],
|
|
91959
|
+
},{}],485:[function(require,module,exports){
|
|
92012
91960
|
module.exports={
|
|
92013
91961
|
"name": "EIP-1559",
|
|
92014
91962
|
"number": 1559,
|
|
@@ -92036,7 +91984,7 @@ module.exports={
|
|
|
92036
91984
|
"pow": {}
|
|
92037
91985
|
}
|
|
92038
91986
|
|
|
92039
|
-
},{}],
|
|
91987
|
+
},{}],486:[function(require,module,exports){
|
|
92040
91988
|
module.exports={
|
|
92041
91989
|
"name": "EIP-2315",
|
|
92042
91990
|
"number": 2315,
|
|
@@ -92063,7 +92011,7 @@ module.exports={
|
|
|
92063
92011
|
"pow": {}
|
|
92064
92012
|
}
|
|
92065
92013
|
|
|
92066
|
-
},{}],
|
|
92014
|
+
},{}],487:[function(require,module,exports){
|
|
92067
92015
|
module.exports={
|
|
92068
92016
|
"name": "EIP-2537",
|
|
92069
92017
|
"number": 2537,
|
|
@@ -92114,7 +92062,7 @@ module.exports={
|
|
|
92114
92062
|
"pow": {}
|
|
92115
92063
|
}
|
|
92116
92064
|
|
|
92117
|
-
},{}],
|
|
92065
|
+
},{}],488:[function(require,module,exports){
|
|
92118
92066
|
module.exports={
|
|
92119
92067
|
"name": "EIP-2565",
|
|
92120
92068
|
"number": 2565,
|
|
@@ -92133,7 +92081,7 @@ module.exports={
|
|
|
92133
92081
|
"pow": {}
|
|
92134
92082
|
}
|
|
92135
92083
|
|
|
92136
|
-
},{}],
|
|
92084
|
+
},{}],489:[function(require,module,exports){
|
|
92137
92085
|
module.exports={
|
|
92138
92086
|
"name": "EIP-2718",
|
|
92139
92087
|
"comment": "Typed Transaction Envelope",
|
|
@@ -92146,7 +92094,7 @@ module.exports={
|
|
|
92146
92094
|
"pow": {}
|
|
92147
92095
|
}
|
|
92148
92096
|
|
|
92149
|
-
},{}],
|
|
92097
|
+
},{}],490:[function(require,module,exports){
|
|
92150
92098
|
module.exports={
|
|
92151
92099
|
"name": "EIP-2929",
|
|
92152
92100
|
"comment": "Gas cost increases for state access opcodes",
|
|
@@ -92232,7 +92180,7 @@ module.exports={
|
|
|
92232
92180
|
"pow": {}
|
|
92233
92181
|
}
|
|
92234
92182
|
|
|
92235
|
-
},{}],
|
|
92183
|
+
},{}],491:[function(require,module,exports){
|
|
92236
92184
|
module.exports={
|
|
92237
92185
|
"name": "EIP-2930",
|
|
92238
92186
|
"comment": "Optional access lists",
|
|
@@ -92255,7 +92203,7 @@ module.exports={
|
|
|
92255
92203
|
"pow": {}
|
|
92256
92204
|
}
|
|
92257
92205
|
|
|
92258
|
-
},{}],
|
|
92206
|
+
},{}],492:[function(require,module,exports){
|
|
92259
92207
|
module.exports={
|
|
92260
92208
|
"name": "EIP-3198",
|
|
92261
92209
|
"number": 3198,
|
|
@@ -92274,7 +92222,7 @@ module.exports={
|
|
|
92274
92222
|
"pow": {}
|
|
92275
92223
|
}
|
|
92276
92224
|
|
|
92277
|
-
},{}],
|
|
92225
|
+
},{}],493:[function(require,module,exports){
|
|
92278
92226
|
module.exports={
|
|
92279
92227
|
"name": "EIP-3529",
|
|
92280
92228
|
"comment": "Reduction in refunds",
|
|
@@ -92302,7 +92250,7 @@ module.exports={
|
|
|
92302
92250
|
"pow": {}
|
|
92303
92251
|
}
|
|
92304
92252
|
|
|
92305
|
-
},{}],
|
|
92253
|
+
},{}],494:[function(require,module,exports){
|
|
92306
92254
|
module.exports={
|
|
92307
92255
|
"name": "EIP-3541",
|
|
92308
92256
|
"comment": "Reject new contracts starting with the 0xEF byte",
|
|
@@ -92316,7 +92264,7 @@ module.exports={
|
|
|
92316
92264
|
"pow": {}
|
|
92317
92265
|
}
|
|
92318
92266
|
|
|
92319
|
-
},{}],
|
|
92267
|
+
},{}],495:[function(require,module,exports){
|
|
92320
92268
|
module.exports={
|
|
92321
92269
|
"name": "EIP-3554",
|
|
92322
92270
|
"comment": "Reduction in refunds",
|
|
@@ -92335,7 +92283,7 @@ module.exports={
|
|
|
92335
92283
|
}
|
|
92336
92284
|
}
|
|
92337
92285
|
|
|
92338
|
-
},{}],
|
|
92286
|
+
},{}],496:[function(require,module,exports){
|
|
92339
92287
|
module.exports={
|
|
92340
92288
|
"name": "EIP-3675",
|
|
92341
92289
|
"number": 3675,
|
|
@@ -92350,7 +92298,7 @@ module.exports={
|
|
|
92350
92298
|
"pow": {}
|
|
92351
92299
|
}
|
|
92352
92300
|
|
|
92353
|
-
},{}],
|
|
92301
|
+
},{}],497:[function(require,module,exports){
|
|
92354
92302
|
module.exports={
|
|
92355
92303
|
"name": "EIP-4345",
|
|
92356
92304
|
"number": 4345,
|
|
@@ -92369,7 +92317,7 @@ module.exports={
|
|
|
92369
92317
|
}
|
|
92370
92318
|
}
|
|
92371
92319
|
|
|
92372
|
-
},{}],
|
|
92320
|
+
},{}],498:[function(require,module,exports){
|
|
92373
92321
|
"use strict";
|
|
92374
92322
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
92375
92323
|
exports.EIPs = void 0;
|
|
@@ -92389,7 +92337,7 @@ exports.EIPs = {
|
|
|
92389
92337
|
4345: require('./4345.json'),
|
|
92390
92338
|
};
|
|
92391
92339
|
|
|
92392
|
-
},{"./1559.json":
|
|
92340
|
+
},{"./1559.json":485,"./2315.json":486,"./2537.json":487,"./2565.json":488,"./2718.json":489,"./2929.json":490,"./2930.json":491,"./3198.json":492,"./3529.json":493,"./3541.json":494,"./3554.json":495,"./3675.json":496,"./4345.json":497}],499:[function(require,module,exports){
|
|
92393
92341
|
module.exports={
|
|
92394
92342
|
"0x0000000000000000000000000000000000000000": "0x1",
|
|
92395
92343
|
"0x0000000000000000000000000000000000000001": "0x1",
|
|
@@ -92653,7 +92601,7 @@ module.exports={
|
|
|
92653
92601
|
"0xe0a2bd4258d2768837baa26a28fe71dc079f84c7": "0x4a47e3c12448f4ad000000"
|
|
92654
92602
|
}
|
|
92655
92603
|
|
|
92656
|
-
},{}],
|
|
92604
|
+
},{}],500:[function(require,module,exports){
|
|
92657
92605
|
module.exports={
|
|
92658
92606
|
"0x0000000000000000000000000000000000000001": "0x1",
|
|
92659
92607
|
"0x0000000000000000000000000000000000000002": "0x1",
|
|
@@ -92662,7 +92610,7 @@ module.exports={
|
|
|
92662
92610
|
"0x00521965e7bd230323c423d96c657db5b79d099f": "0x100000000000000000000000000000000000000000000000000"
|
|
92663
92611
|
}
|
|
92664
92612
|
|
|
92665
|
-
},{}],
|
|
92613
|
+
},{}],501:[function(require,module,exports){
|
|
92666
92614
|
module.exports={
|
|
92667
92615
|
"0x000d836201318ec6899a67540690382780743280": "0xad78ebc5ac6200000",
|
|
92668
92616
|
"0x001762430ea9c3a26e5749afdb70da5f78ddbb8c": "0xad78ebc5ac6200000",
|
|
@@ -101559,7 +101507,7 @@ module.exports={
|
|
|
101559
101507
|
"0xfff7ac99c8e4feb60c9750054bdc14ce1857f181": "0x3635c9adc5dea00000"
|
|
101560
101508
|
}
|
|
101561
101509
|
|
|
101562
|
-
},{}],
|
|
101510
|
+
},{}],502:[function(require,module,exports){
|
|
101563
101511
|
module.exports={
|
|
101564
101512
|
"0x0000000000000000000000000000000000000000": "0x1",
|
|
101565
101513
|
"0x0000000000000000000000000000000000000001": "0x1",
|
|
@@ -101820,7 +101768,7 @@ module.exports={
|
|
|
101820
101768
|
"0x31b98d14007bdee637298086988a0bbd31184523": "0x200000000000000000000000000000000000000000000000000000000000000"
|
|
101821
101769
|
}
|
|
101822
101770
|
|
|
101823
|
-
},{}],
|
|
101771
|
+
},{}],503:[function(require,module,exports){
|
|
101824
101772
|
module.exports={
|
|
101825
101773
|
"0x0000000000000000000000000000000000000000": "0x1",
|
|
101826
101774
|
"0x0000000000000000000000000000000000000001": "0x1",
|
|
@@ -102081,7 +102029,7 @@ module.exports={
|
|
|
102081
102029
|
"0x874b54a8bd152966d63f706bae1ffeb0411921e5": "0xc9f2c9cd04674edea40000000"
|
|
102082
102030
|
}
|
|
102083
102031
|
|
|
102084
|
-
},{}],
|
|
102032
|
+
},{}],504:[function(require,module,exports){
|
|
102085
102033
|
module.exports={
|
|
102086
102034
|
"name": "arrowGlacier",
|
|
102087
102035
|
"comment": "HF to delay the difficulty bomb",
|
|
@@ -102094,7 +102042,7 @@ module.exports={
|
|
|
102094
102042
|
"pow": {}
|
|
102095
102043
|
}
|
|
102096
102044
|
|
|
102097
|
-
},{}],
|
|
102045
|
+
},{}],505:[function(require,module,exports){
|
|
102098
102046
|
module.exports={
|
|
102099
102047
|
"name": "berlin",
|
|
102100
102048
|
"comment": "HF targeted for July 2020 following the Muir Glacier HF",
|
|
@@ -102103,7 +102051,7 @@ module.exports={
|
|
|
102103
102051
|
"eips": [2565, 2929, 2718, 2930]
|
|
102104
102052
|
}
|
|
102105
102053
|
|
|
102106
|
-
},{}],
|
|
102054
|
+
},{}],506:[function(require,module,exports){
|
|
102107
102055
|
module.exports={
|
|
102108
102056
|
"name": "byzantium",
|
|
102109
102057
|
"comment": "Hardfork with new precompiles, instructions and other protocol changes",
|
|
@@ -102161,7 +102109,7 @@ module.exports={
|
|
|
102161
102109
|
}
|
|
102162
102110
|
}
|
|
102163
102111
|
|
|
102164
|
-
},{}],
|
|
102112
|
+
},{}],507:[function(require,module,exports){
|
|
102165
102113
|
module.exports={
|
|
102166
102114
|
"name": "chainstart",
|
|
102167
102115
|
"comment": "Start of the Ethereum main chain",
|
|
@@ -102609,7 +102557,7 @@ module.exports={
|
|
|
102609
102557
|
}
|
|
102610
102558
|
}
|
|
102611
102559
|
|
|
102612
|
-
},{}],
|
|
102560
|
+
},{}],508:[function(require,module,exports){
|
|
102613
102561
|
module.exports={
|
|
102614
102562
|
"name": "constantinople",
|
|
102615
102563
|
"comment": "Postponed hardfork including EIP-1283 (SSTORE gas metering changes)",
|
|
@@ -102679,7 +102627,7 @@ module.exports={
|
|
|
102679
102627
|
}
|
|
102680
102628
|
}
|
|
102681
102629
|
|
|
102682
|
-
},{}],
|
|
102630
|
+
},{}],509:[function(require,module,exports){
|
|
102683
102631
|
module.exports={
|
|
102684
102632
|
"name": "dao",
|
|
102685
102633
|
"comment": "DAO rescue hardfork",
|
|
@@ -102691,7 +102639,7 @@ module.exports={
|
|
|
102691
102639
|
"pow": {}
|
|
102692
102640
|
}
|
|
102693
102641
|
|
|
102694
|
-
},{}],
|
|
102642
|
+
},{}],510:[function(require,module,exports){
|
|
102695
102643
|
module.exports={
|
|
102696
102644
|
"name": "homestead",
|
|
102697
102645
|
"comment": "Homestead hardfork with protocol and network changes",
|
|
@@ -102708,7 +102656,7 @@ module.exports={
|
|
|
102708
102656
|
"pow": {}
|
|
102709
102657
|
}
|
|
102710
102658
|
|
|
102711
|
-
},{}],
|
|
102659
|
+
},{}],511:[function(require,module,exports){
|
|
102712
102660
|
"use strict";
|
|
102713
102661
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
102714
102662
|
exports.hardforks = void 0;
|
|
@@ -102730,7 +102678,7 @@ exports.hardforks = [
|
|
|
102730
102678
|
['merge', require('./merge.json')],
|
|
102731
102679
|
];
|
|
102732
102680
|
|
|
102733
|
-
},{"./arrowGlacier.json":
|
|
102681
|
+
},{"./arrowGlacier.json":504,"./berlin.json":505,"./byzantium.json":506,"./chainstart.json":507,"./constantinople.json":508,"./dao.json":509,"./homestead.json":510,"./istanbul.json":512,"./london.json":513,"./merge.json":514,"./muirGlacier.json":515,"./petersburg.json":516,"./shanghai.json":517,"./spuriousDragon.json":518,"./tangerineWhistle.json":519}],512:[function(require,module,exports){
|
|
102734
102682
|
module.exports={
|
|
102735
102683
|
"name": "istanbul",
|
|
102736
102684
|
"comment": "HF targeted for December 2019 following the Constantinople/Petersburg HF",
|
|
@@ -102819,7 +102767,7 @@ module.exports={
|
|
|
102819
102767
|
"pow": {}
|
|
102820
102768
|
}
|
|
102821
102769
|
|
|
102822
|
-
},{}],
|
|
102770
|
+
},{}],513:[function(require,module,exports){
|
|
102823
102771
|
module.exports={
|
|
102824
102772
|
"name": "london",
|
|
102825
102773
|
"comment": "HF targeted for July 2021 following the Berlin fork",
|
|
@@ -102828,7 +102776,7 @@ module.exports={
|
|
|
102828
102776
|
"eips": [1559, 3198, 3529, 3541]
|
|
102829
102777
|
}
|
|
102830
102778
|
|
|
102831
|
-
},{}],
|
|
102779
|
+
},{}],514:[function(require,module,exports){
|
|
102832
102780
|
module.exports={
|
|
102833
102781
|
"name": "merge",
|
|
102834
102782
|
"comment": "Hardfork to upgrade the consensus mechanism to Proof-of-Stake",
|
|
@@ -102842,7 +102790,7 @@ module.exports={
|
|
|
102842
102790
|
"eips": [3675]
|
|
102843
102791
|
}
|
|
102844
102792
|
|
|
102845
|
-
},{}],
|
|
102793
|
+
},{}],515:[function(require,module,exports){
|
|
102846
102794
|
module.exports={
|
|
102847
102795
|
"name": "muirGlacier",
|
|
102848
102796
|
"comment": "HF to delay the difficulty bomb",
|
|
@@ -102859,7 +102807,7 @@ module.exports={
|
|
|
102859
102807
|
}
|
|
102860
102808
|
}
|
|
102861
102809
|
|
|
102862
|
-
},{}],
|
|
102810
|
+
},{}],516:[function(require,module,exports){
|
|
102863
102811
|
module.exports={
|
|
102864
102812
|
"name": "petersburg",
|
|
102865
102813
|
"comment": "Aka constantinopleFix, removes EIP-1283, activate together with or after constantinople",
|
|
@@ -102900,7 +102848,7 @@ module.exports={
|
|
|
102900
102848
|
"pow": {}
|
|
102901
102849
|
}
|
|
102902
102850
|
|
|
102903
|
-
},{}],
|
|
102851
|
+
},{}],517:[function(require,module,exports){
|
|
102904
102852
|
module.exports={
|
|
102905
102853
|
"name": "shanghai",
|
|
102906
102854
|
"comment": "Next feature hardfork after the London HF",
|
|
@@ -102909,7 +102857,7 @@ module.exports={
|
|
|
102909
102857
|
"eips": []
|
|
102910
102858
|
}
|
|
102911
102859
|
|
|
102912
|
-
},{}],
|
|
102860
|
+
},{}],518:[function(require,module,exports){
|
|
102913
102861
|
module.exports={
|
|
102914
102862
|
"name": "spuriousDragon",
|
|
102915
102863
|
"comment": "HF with EIPs for simple replay attack protection, EXP cost increase, state trie clearing, contract code size limit",
|
|
@@ -102931,7 +102879,7 @@ module.exports={
|
|
|
102931
102879
|
"pow": {}
|
|
102932
102880
|
}
|
|
102933
102881
|
|
|
102934
|
-
},{}],
|
|
102882
|
+
},{}],519:[function(require,module,exports){
|
|
102935
102883
|
module.exports={
|
|
102936
102884
|
"name": "tangerineWhistle",
|
|
102937
102885
|
"comment": "Hardfork with gas cost changes for IO-heavy operations",
|
|
@@ -102976,7 +102924,7 @@ module.exports={
|
|
|
102976
102924
|
"pow": {}
|
|
102977
102925
|
}
|
|
102978
102926
|
|
|
102979
|
-
},{}],
|
|
102927
|
+
},{}],520:[function(require,module,exports){
|
|
102980
102928
|
(function (Buffer){(function (){
|
|
102981
102929
|
"use strict";
|
|
102982
102930
|
var __extends = (this && this.__extends) || (function () {
|
|
@@ -104264,7 +104212,7 @@ var Common = /** @class */ (function (_super) {
|
|
|
104264
104212
|
exports.default = Common;
|
|
104265
104213
|
|
|
104266
104214
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
104267
|
-
},{"./chains":
|
|
104215
|
+
},{"./chains":480,"./eips":498,"./genesisStates/goerli.json":499,"./genesisStates/kovan.json":500,"./genesisStates/mainnet.json":501,"./genesisStates/rinkeby.json":502,"./genesisStates/ropsten.json":503,"./hardforks":511,"buffer":67,"crc-32":547,"ethereumjs-util":588,"events":107}],521:[function(require,module,exports){
|
|
104268
104216
|
"use strict";
|
|
104269
104217
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
104270
104218
|
if (k2 === undefined) k2 = k;
|
|
@@ -104642,7 +104590,7 @@ var BaseTransaction = /** @class */ (function () {
|
|
|
104642
104590
|
}());
|
|
104643
104591
|
exports.BaseTransaction = BaseTransaction;
|
|
104644
104592
|
|
|
104645
|
-
},{"./types":
|
|
104593
|
+
},{"./types":527,"@ethereumjs/common":520,"ethereumjs-util":588}],522:[function(require,module,exports){
|
|
104646
104594
|
(function (Buffer){(function (){
|
|
104647
104595
|
"use strict";
|
|
104648
104596
|
var __extends = (this && this.__extends) || (function () {
|
|
@@ -105072,7 +105020,7 @@ var FeeMarketEIP1559Transaction = /** @class */ (function (_super) {
|
|
|
105072
105020
|
exports.default = FeeMarketEIP1559Transaction;
|
|
105073
105021
|
|
|
105074
105022
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
105075
|
-
},{"./baseTransaction":
|
|
105023
|
+
},{"./baseTransaction":521,"./types":527,"./util":528,"buffer":67,"ethereumjs-util":588}],523:[function(require,module,exports){
|
|
105076
105024
|
(function (Buffer){(function (){
|
|
105077
105025
|
"use strict";
|
|
105078
105026
|
var __extends = (this && this.__extends) || (function () {
|
|
@@ -105490,7 +105438,7 @@ var AccessListEIP2930Transaction = /** @class */ (function (_super) {
|
|
|
105490
105438
|
exports.default = AccessListEIP2930Transaction;
|
|
105491
105439
|
|
|
105492
105440
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
105493
|
-
},{"./baseTransaction":
|
|
105441
|
+
},{"./baseTransaction":521,"./types":527,"./util":528,"buffer":67,"ethereumjs-util":588}],524:[function(require,module,exports){
|
|
105494
105442
|
"use strict";
|
|
105495
105443
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
105496
105444
|
if (k2 === undefined) k2 = k;
|
|
@@ -105517,7 +105465,7 @@ var eip1559Transaction_1 = require("./eip1559Transaction");
|
|
|
105517
105465
|
Object.defineProperty(exports, "FeeMarketEIP1559Transaction", { enumerable: true, get: function () { return __importDefault(eip1559Transaction_1).default; } });
|
|
105518
105466
|
__exportStar(require("./types"), exports);
|
|
105519
105467
|
|
|
105520
|
-
},{"./eip1559Transaction":
|
|
105468
|
+
},{"./eip1559Transaction":522,"./eip2930Transaction":523,"./legacyTransaction":525,"./transactionFactory":526,"./types":527}],525:[function(require,module,exports){
|
|
105521
105469
|
(function (Buffer){(function (){
|
|
105522
105470
|
"use strict";
|
|
105523
105471
|
var __extends = (this && this.__extends) || (function () {
|
|
@@ -105933,7 +105881,7 @@ var Transaction = /** @class */ (function (_super) {
|
|
|
105933
105881
|
exports.default = Transaction;
|
|
105934
105882
|
|
|
105935
105883
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
105936
|
-
},{"./baseTransaction":
|
|
105884
|
+
},{"./baseTransaction":521,"./types":527,"buffer":67,"ethereumjs-util":588}],526:[function(require,module,exports){
|
|
105937
105885
|
(function (Buffer){(function (){
|
|
105938
105886
|
"use strict";
|
|
105939
105887
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -106052,8 +106000,8 @@ var TransactionFactory = /** @class */ (function () {
|
|
|
106052
106000
|
}());
|
|
106053
106001
|
exports.default = TransactionFactory;
|
|
106054
106002
|
|
|
106055
|
-
}).call(this)}).call(this,{"isBuffer":require("../../../../../../node_modules/is-buffer/index.js")})
|
|
106056
|
-
},{".":
|
|
106003
|
+
}).call(this)}).call(this,{"isBuffer":require("../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js")})
|
|
106004
|
+
},{".":524,"../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js":149,"ethereumjs-util":588}],527:[function(require,module,exports){
|
|
106057
106005
|
"use strict";
|
|
106058
106006
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
106059
106007
|
exports.N_DIV_2 = exports.isAccessList = exports.isAccessListBuffer = exports.Capability = void 0;
|
|
@@ -106105,7 +106053,7 @@ exports.isAccessList = isAccessList;
|
|
|
106105
106053
|
*/
|
|
106106
106054
|
exports.N_DIV_2 = new ethereumjs_util_1.BN('7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0', 16);
|
|
106107
106055
|
|
|
106108
|
-
},{"ethereumjs-util":
|
|
106056
|
+
},{"ethereumjs-util":588}],528:[function(require,module,exports){
|
|
106109
106057
|
"use strict";
|
|
106110
106058
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
106111
106059
|
exports.AccessLists = void 0;
|
|
@@ -106206,7 +106154,7 @@ var AccessLists = /** @class */ (function () {
|
|
|
106206
106154
|
}());
|
|
106207
106155
|
exports.AccessLists = AccessLists;
|
|
106208
106156
|
|
|
106209
|
-
},{"./types":
|
|
106157
|
+
},{"./types":527,"ethereumjs-util":588}],529:[function(require,module,exports){
|
|
106210
106158
|
(function (Buffer){(function (){
|
|
106211
106159
|
"use strict";
|
|
106212
106160
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -106420,7 +106368,7 @@ function nacl_decodeHex(msgHex) {
|
|
|
106420
106368
|
}
|
|
106421
106369
|
|
|
106422
106370
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
106423
|
-
},{"./utils":
|
|
106371
|
+
},{"./utils":533,"buffer":67,"tweetnacl":654,"tweetnacl-util":653}],530:[function(require,module,exports){
|
|
106424
106372
|
"use strict";
|
|
106425
106373
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
106426
106374
|
if (k2 === undefined) k2 = k;
|
|
@@ -106441,7 +106389,7 @@ var utils_1 = require("./utils");
|
|
|
106441
106389
|
Object.defineProperty(exports, "concatSig", { enumerable: true, get: function () { return utils_1.concatSig; } });
|
|
106442
106390
|
Object.defineProperty(exports, "normalize", { enumerable: true, get: function () { return utils_1.normalize; } });
|
|
106443
106391
|
|
|
106444
|
-
},{"./encryption":
|
|
106392
|
+
},{"./encryption":529,"./personal-sign":531,"./sign-typed-data":532,"./utils":533}],531:[function(require,module,exports){
|
|
106445
106393
|
"use strict";
|
|
106446
106394
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
106447
106395
|
exports.extractPublicKey = exports.recoverPersonalSignature = exports.personalSign = void 0;
|
|
@@ -106526,7 +106474,7 @@ function getPublicKeyFor(message, signature) {
|
|
|
106526
106474
|
return utils_1.recoverPublicKey(messageHash, signature);
|
|
106527
106475
|
}
|
|
106528
106476
|
|
|
106529
|
-
},{"./utils":
|
|
106477
|
+
},{"./utils":533,"ethereumjs-util":538}],532:[function(require,module,exports){
|
|
106530
106478
|
(function (Buffer){(function (){
|
|
106531
106479
|
"use strict";
|
|
106532
106480
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -106902,7 +106850,7 @@ function recoverTypedSignature({ data, signature, version, }) {
|
|
|
106902
106850
|
exports.recoverTypedSignature = recoverTypedSignature;
|
|
106903
106851
|
|
|
106904
106852
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
106905
|
-
},{"./utils":
|
|
106853
|
+
},{"./utils":533,"buffer":67,"ethereumjs-abi":569,"ethereumjs-util":538}],533:[function(require,module,exports){
|
|
106906
106854
|
(function (Buffer){(function (){
|
|
106907
106855
|
"use strict";
|
|
106908
106856
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -107009,7 +106957,7 @@ function normalize(input) {
|
|
|
107009
106957
|
exports.normalize = normalize;
|
|
107010
106958
|
|
|
107011
106959
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
107012
|
-
},{"buffer":67,"ethereumjs-util":
|
|
106960
|
+
},{"buffer":67,"ethereumjs-util":538,"ethjs-util":594}],534:[function(require,module,exports){
|
|
107013
106961
|
(function (Buffer){(function (){
|
|
107014
106962
|
"use strict";
|
|
107015
106963
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -107180,7 +107128,7 @@ exports.importPublic = function (publicKey) {
|
|
|
107180
107128
|
};
|
|
107181
107129
|
|
|
107182
107130
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
107183
|
-
},{"./bytes":
|
|
107131
|
+
},{"./bytes":535,"./hash":537,"./secp256k1v3-adapter":540,"assert":16,"bn.js":544,"buffer":67,"ethjs-util":594}],535:[function(require,module,exports){
|
|
107184
107132
|
(function (Buffer){(function (){
|
|
107185
107133
|
"use strict";
|
|
107186
107134
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -107341,7 +107289,7 @@ exports.baToJSON = function (ba) {
|
|
|
107341
107289
|
};
|
|
107342
107290
|
|
|
107343
107291
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
107344
|
-
},{"bn.js":
|
|
107292
|
+
},{"bn.js":544,"buffer":67,"ethjs-util":594}],536:[function(require,module,exports){
|
|
107345
107293
|
(function (Buffer){(function (){
|
|
107346
107294
|
"use strict";
|
|
107347
107295
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -107381,7 +107329,7 @@ exports.KECCAK256_RLP_S = '56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622
|
|
|
107381
107329
|
exports.KECCAK256_RLP = Buffer.from(exports.KECCAK256_RLP_S, 'hex');
|
|
107382
107330
|
|
|
107383
107331
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
107384
|
-
},{"bn.js":
|
|
107332
|
+
},{"bn.js":544,"buffer":67}],537:[function(require,module,exports){
|
|
107385
107333
|
(function (Buffer){(function (){
|
|
107386
107334
|
"use strict";
|
|
107387
107335
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -107468,7 +107416,7 @@ exports.rlphash = function (a) {
|
|
|
107468
107416
|
};
|
|
107469
107417
|
|
|
107470
107418
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
107471
|
-
},{"./bytes":
|
|
107419
|
+
},{"./bytes":535,"buffer":67,"create-hash":548,"ethereum-cryptography/keccak":566,"ethjs-util":594,"rlp":637}],538:[function(require,module,exports){
|
|
107472
107420
|
"use strict";
|
|
107473
107421
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
107474
107422
|
if (k2 === undefined) k2 = k;
|
|
@@ -107515,7 +107463,7 @@ __exportStar(require("./bytes"), exports);
|
|
|
107515
107463
|
*/
|
|
107516
107464
|
__exportStar(require("./object"), exports);
|
|
107517
107465
|
|
|
107518
|
-
},{"./account":
|
|
107466
|
+
},{"./account":534,"./bytes":535,"./constants":536,"./hash":537,"./object":539,"./secp256k1v3-adapter":540,"./signature":543,"bn.js":544,"ethjs-util":594,"rlp":637}],539:[function(require,module,exports){
|
|
107519
107467
|
(function (Buffer){(function (){
|
|
107520
107468
|
"use strict";
|
|
107521
107469
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -107624,7 +107572,7 @@ exports.defineProperties = function (self, fields, data) {
|
|
|
107624
107572
|
};
|
|
107625
107573
|
|
|
107626
107574
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
107627
|
-
},{"./bytes":
|
|
107575
|
+
},{"./bytes":535,"assert":16,"buffer":67,"ethjs-util":594,"rlp":637}],540:[function(require,module,exports){
|
|
107628
107576
|
(function (Buffer){(function (){
|
|
107629
107577
|
"use strict";
|
|
107630
107578
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -107927,7 +107875,7 @@ exports.ecdhUnsafe = function (publicKey, privateKey, compressed) {
|
|
|
107927
107875
|
};
|
|
107928
107876
|
|
|
107929
107877
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
107930
|
-
},{"./secp256k1v3-lib/der":
|
|
107878
|
+
},{"./secp256k1v3-lib/der":541,"./secp256k1v3-lib/index":542,"buffer":67,"ethereum-cryptography/secp256k1":568}],541:[function(require,module,exports){
|
|
107931
107879
|
(function (Buffer){(function (){
|
|
107932
107880
|
"use strict";
|
|
107933
107881
|
// This file is imported from secp256k1 v3
|
|
@@ -108564,7 +108512,7 @@ exports.signatureImportLax = function (signature) {
|
|
|
108564
108512
|
};
|
|
108565
108513
|
|
|
108566
108514
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
108567
|
-
},{"buffer":67}],
|
|
108515
|
+
},{"buffer":67}],542:[function(require,module,exports){
|
|
108568
108516
|
(function (Buffer){(function (){
|
|
108569
108517
|
"use strict";
|
|
108570
108518
|
// This file is imported from secp256k1 v3
|
|
@@ -108628,7 +108576,7 @@ var toPublicKey = function (x, y, compressed) {
|
|
|
108628
108576
|
};
|
|
108629
108577
|
|
|
108630
108578
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
108631
|
-
},{"bn.js":
|
|
108579
|
+
},{"bn.js":544,"buffer":67,"elliptic":549}],543:[function(require,module,exports){
|
|
108632
108580
|
(function (Buffer){(function (){
|
|
108633
108581
|
"use strict";
|
|
108634
108582
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -108738,13 +108686,13 @@ function isValidSigRecovery(recovery) {
|
|
|
108738
108686
|
}
|
|
108739
108687
|
|
|
108740
108688
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
108741
|
-
},{"./bytes":
|
|
108689
|
+
},{"./bytes":535,"./hash":537,"./secp256k1v3-adapter":540,"bn.js":544,"buffer":67}],544:[function(require,module,exports){
|
|
108742
108690
|
arguments[4][15][0].apply(exports,arguments)
|
|
108743
|
-
},{"buffer":24,"dup":15}],
|
|
108691
|
+
},{"buffer":24,"dup":15}],545:[function(require,module,exports){
|
|
108744
108692
|
arguments[4][23][0].apply(exports,arguments)
|
|
108745
|
-
},{"crypto":24,"dup":23}],
|
|
108693
|
+
},{"crypto":24,"dup":23}],546:[function(require,module,exports){
|
|
108746
108694
|
arguments[4][71][0].apply(exports,arguments)
|
|
108747
|
-
},{"dup":71,"inherits":
|
|
108695
|
+
},{"dup":71,"inherits":609,"safe-buffer":639,"stream":192,"string_decoder":207}],547:[function(require,module,exports){
|
|
108748
108696
|
/*! crc32.js (C) 2014-present SheetJS -- http://sheetjs.com */
|
|
108749
108697
|
/* vim: set ts=2: */
|
|
108750
108698
|
/*exported CRC32 */
|
|
@@ -108861,41 +108809,41 @@ CRC32.buf = crc32_buf;
|
|
|
108861
108809
|
CRC32.str = crc32_str;
|
|
108862
108810
|
}));
|
|
108863
108811
|
|
|
108864
|
-
},{}],
|
|
108812
|
+
},{}],548:[function(require,module,exports){
|
|
108865
108813
|
arguments[4][74][0].apply(exports,arguments)
|
|
108866
|
-
},{"cipher-base":
|
|
108814
|
+
},{"cipher-base":546,"dup":74,"inherits":609,"md5.js":617,"ripemd160":636,"sha.js":644}],549:[function(require,module,exports){
|
|
108867
108815
|
arguments[4][90][0].apply(exports,arguments)
|
|
108868
|
-
},{"../package.json":
|
|
108816
|
+
},{"../package.json":564,"./elliptic/curve":552,"./elliptic/curves":555,"./elliptic/ec":556,"./elliptic/eddsa":559,"./elliptic/utils":563,"brorand":545,"dup":90}],550:[function(require,module,exports){
|
|
108869
108817
|
arguments[4][91][0].apply(exports,arguments)
|
|
108870
|
-
},{"../utils":
|
|
108818
|
+
},{"../utils":563,"bn.js":544,"dup":91}],551:[function(require,module,exports){
|
|
108871
108819
|
arguments[4][92][0].apply(exports,arguments)
|
|
108872
|
-
},{"../utils":
|
|
108820
|
+
},{"../utils":563,"./base":550,"bn.js":544,"dup":92,"inherits":609}],552:[function(require,module,exports){
|
|
108873
108821
|
arguments[4][93][0].apply(exports,arguments)
|
|
108874
|
-
},{"./base":
|
|
108822
|
+
},{"./base":550,"./edwards":551,"./mont":553,"./short":554,"dup":93}],553:[function(require,module,exports){
|
|
108875
108823
|
arguments[4][94][0].apply(exports,arguments)
|
|
108876
|
-
},{"../utils":
|
|
108824
|
+
},{"../utils":563,"./base":550,"bn.js":544,"dup":94,"inherits":609}],554:[function(require,module,exports){
|
|
108877
108825
|
arguments[4][95][0].apply(exports,arguments)
|
|
108878
|
-
},{"../utils":
|
|
108826
|
+
},{"../utils":563,"./base":550,"bn.js":544,"dup":95,"inherits":609}],555:[function(require,module,exports){
|
|
108879
108827
|
arguments[4][96][0].apply(exports,arguments)
|
|
108880
|
-
},{"./curve":
|
|
108828
|
+
},{"./curve":552,"./precomputed/secp256k1":562,"./utils":563,"dup":96,"hash.js":596}],556:[function(require,module,exports){
|
|
108881
108829
|
arguments[4][97][0].apply(exports,arguments)
|
|
108882
|
-
},{"../curves":
|
|
108830
|
+
},{"../curves":555,"../utils":563,"./key":557,"./signature":558,"bn.js":544,"brorand":545,"dup":97,"hmac-drbg":608}],557:[function(require,module,exports){
|
|
108883
108831
|
arguments[4][98][0].apply(exports,arguments)
|
|
108884
|
-
},{"../utils":
|
|
108832
|
+
},{"../utils":563,"bn.js":544,"dup":98}],558:[function(require,module,exports){
|
|
108885
108833
|
arguments[4][99][0].apply(exports,arguments)
|
|
108886
|
-
},{"../utils":
|
|
108834
|
+
},{"../utils":563,"bn.js":544,"dup":99}],559:[function(require,module,exports){
|
|
108887
108835
|
arguments[4][100][0].apply(exports,arguments)
|
|
108888
|
-
},{"../curves":
|
|
108836
|
+
},{"../curves":555,"../utils":563,"./key":560,"./signature":561,"dup":100,"hash.js":596}],560:[function(require,module,exports){
|
|
108889
108837
|
arguments[4][101][0].apply(exports,arguments)
|
|
108890
|
-
},{"../utils":
|
|
108838
|
+
},{"../utils":563,"dup":101}],561:[function(require,module,exports){
|
|
108891
108839
|
arguments[4][102][0].apply(exports,arguments)
|
|
108892
|
-
},{"../utils":
|
|
108840
|
+
},{"../utils":563,"bn.js":544,"dup":102}],562:[function(require,module,exports){
|
|
108893
108841
|
arguments[4][103][0].apply(exports,arguments)
|
|
108894
|
-
},{"dup":103}],
|
|
108842
|
+
},{"dup":103}],563:[function(require,module,exports){
|
|
108895
108843
|
arguments[4][104][0].apply(exports,arguments)
|
|
108896
|
-
},{"bn.js":
|
|
108844
|
+
},{"bn.js":544,"dup":104,"minimalistic-assert":618,"minimalistic-crypto-utils":619}],564:[function(require,module,exports){
|
|
108897
108845
|
arguments[4][106][0].apply(exports,arguments)
|
|
108898
|
-
},{"dup":106}],
|
|
108846
|
+
},{"dup":106}],565:[function(require,module,exports){
|
|
108899
108847
|
(function (Buffer){(function (){
|
|
108900
108848
|
"use strict";
|
|
108901
108849
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -108909,7 +108857,7 @@ function createHashFunction(hashConstructor) {
|
|
|
108909
108857
|
exports.createHashFunction = createHashFunction;
|
|
108910
108858
|
|
|
108911
108859
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
108912
|
-
},{"buffer":67}],
|
|
108860
|
+
},{"buffer":67}],566:[function(require,module,exports){
|
|
108913
108861
|
"use strict";
|
|
108914
108862
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
108915
108863
|
var hash_utils_1 = require("./hash-utils");
|
|
@@ -108927,7 +108875,7 @@ exports.keccak512 = hash_utils_1.createHashFunction(function () {
|
|
|
108927
108875
|
return createKeccakHash("keccak512");
|
|
108928
108876
|
});
|
|
108929
108877
|
|
|
108930
|
-
},{"./hash-utils":
|
|
108878
|
+
},{"./hash-utils":565,"keccak":611}],567:[function(require,module,exports){
|
|
108931
108879
|
"use strict";
|
|
108932
108880
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
108933
108881
|
var randombytes = require("randombytes");
|
|
@@ -108948,7 +108896,7 @@ function getRandomBytesSync(bytes) {
|
|
|
108948
108896
|
}
|
|
108949
108897
|
exports.getRandomBytesSync = getRandomBytesSync;
|
|
108950
108898
|
|
|
108951
|
-
},{"randombytes":
|
|
108899
|
+
},{"randombytes":620}],568:[function(require,module,exports){
|
|
108952
108900
|
"use strict";
|
|
108953
108901
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
108954
108902
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -109024,10 +108972,10 @@ function createPrivateKeySync() {
|
|
|
109024
108972
|
exports.createPrivateKeySync = createPrivateKeySync;
|
|
109025
108973
|
__export(require("secp256k1"));
|
|
109026
108974
|
|
|
109027
|
-
},{"./random":
|
|
108975
|
+
},{"./random":567,"secp256k1":640}],569:[function(require,module,exports){
|
|
109028
108976
|
module.exports = require('./lib/index.js')
|
|
109029
108977
|
|
|
109030
|
-
},{"./lib/index.js":
|
|
108978
|
+
},{"./lib/index.js":570}],570:[function(require,module,exports){
|
|
109031
108979
|
(function (Buffer){(function (){
|
|
109032
108980
|
/* eslint-disable no-useless-escape */
|
|
109033
108981
|
const utils = require('ethereumjs-util')
|
|
@@ -109635,27 +109583,27 @@ ABI.toSerpent = function (types) {
|
|
|
109635
109583
|
module.exports = ABI
|
|
109636
109584
|
|
|
109637
109585
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
109638
|
-
},{"bn.js":
|
|
109586
|
+
},{"bn.js":544,"buffer":67,"ethereumjs-util":575}],571:[function(require,module,exports){
|
|
109587
|
+
arguments[4][534][0].apply(exports,arguments)
|
|
109588
|
+
},{"./bytes":572,"./hash":574,"./secp256k1v3-adapter":577,"assert":16,"bn.js":544,"buffer":67,"dup":534,"ethjs-util":594}],572:[function(require,module,exports){
|
|
109639
109589
|
arguments[4][535][0].apply(exports,arguments)
|
|
109640
|
-
},{"
|
|
109590
|
+
},{"bn.js":544,"buffer":67,"dup":535,"ethjs-util":594}],573:[function(require,module,exports){
|
|
109641
109591
|
arguments[4][536][0].apply(exports,arguments)
|
|
109642
|
-
},{"bn.js":
|
|
109592
|
+
},{"bn.js":544,"buffer":67,"dup":536}],574:[function(require,module,exports){
|
|
109643
109593
|
arguments[4][537][0].apply(exports,arguments)
|
|
109644
|
-
},{"
|
|
109594
|
+
},{"./bytes":572,"buffer":67,"create-hash":548,"dup":537,"ethereum-cryptography/keccak":566,"ethjs-util":594,"rlp":637}],575:[function(require,module,exports){
|
|
109645
109595
|
arguments[4][538][0].apply(exports,arguments)
|
|
109646
|
-
},{"./bytes":
|
|
109596
|
+
},{"./account":571,"./bytes":572,"./constants":573,"./hash":574,"./object":576,"./secp256k1v3-adapter":577,"./signature":580,"bn.js":544,"dup":538,"ethjs-util":594,"rlp":637}],576:[function(require,module,exports){
|
|
109647
109597
|
arguments[4][539][0].apply(exports,arguments)
|
|
109648
|
-
},{"./
|
|
109598
|
+
},{"./bytes":572,"assert":16,"buffer":67,"dup":539,"ethjs-util":594,"rlp":637}],577:[function(require,module,exports){
|
|
109649
109599
|
arguments[4][540][0].apply(exports,arguments)
|
|
109650
|
-
},{"./
|
|
109600
|
+
},{"./secp256k1v3-lib/der":578,"./secp256k1v3-lib/index":579,"buffer":67,"dup":540,"ethereum-cryptography/secp256k1":568}],578:[function(require,module,exports){
|
|
109651
109601
|
arguments[4][541][0].apply(exports,arguments)
|
|
109652
|
-
},{"
|
|
109602
|
+
},{"buffer":67,"dup":541}],579:[function(require,module,exports){
|
|
109653
109603
|
arguments[4][542][0].apply(exports,arguments)
|
|
109654
|
-
},{"buffer":67,"dup":542}],580:[function(require,module,exports){
|
|
109604
|
+
},{"bn.js":544,"buffer":67,"dup":542,"elliptic":549}],580:[function(require,module,exports){
|
|
109655
109605
|
arguments[4][543][0].apply(exports,arguments)
|
|
109656
|
-
},{"bn.js":
|
|
109657
|
-
arguments[4][544][0].apply(exports,arguments)
|
|
109658
|
-
},{"./bytes":573,"./hash":575,"./secp256k1v3-adapter":578,"bn.js":545,"buffer":67,"dup":544}],582:[function(require,module,exports){
|
|
109606
|
+
},{"./bytes":572,"./hash":574,"./secp256k1v3-adapter":577,"bn.js":544,"buffer":67,"dup":543}],581:[function(require,module,exports){
|
|
109659
109607
|
(function (Buffer){(function (){
|
|
109660
109608
|
"use strict";
|
|
109661
109609
|
var __read = (this && this.__read) || function (o, n) {
|
|
@@ -109954,7 +109902,7 @@ var isZeroAddress = function (hexAddress) {
|
|
|
109954
109902
|
exports.isZeroAddress = isZeroAddress;
|
|
109955
109903
|
|
|
109956
109904
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
109957
|
-
},{"./bytes":
|
|
109905
|
+
},{"./bytes":583,"./constants":584,"./externals":585,"./hash":586,"./helpers":587,"./internal":589,"./types":592,"assert":16,"buffer":67,"ethereum-cryptography/secp256k1":568}],582:[function(require,module,exports){
|
|
109958
109906
|
(function (Buffer){(function (){
|
|
109959
109907
|
"use strict";
|
|
109960
109908
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
@@ -110062,7 +110010,7 @@ var Address = /** @class */ (function () {
|
|
|
110062
110010
|
exports.Address = Address;
|
|
110063
110011
|
|
|
110064
110012
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
110065
|
-
},{"./account":
|
|
110013
|
+
},{"./account":581,"./bytes":583,"./externals":585,"assert":16,"buffer":67}],583:[function(require,module,exports){
|
|
110066
110014
|
(function (Buffer){(function (){
|
|
110067
110015
|
"use strict";
|
|
110068
110016
|
var __values = (this && this.__values) || function(o) {
|
|
@@ -110398,7 +110346,7 @@ function bufArrToArr(arr) {
|
|
|
110398
110346
|
exports.bufArrToArr = bufArrToArr;
|
|
110399
110347
|
|
|
110400
110348
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
110401
|
-
},{"./externals":
|
|
110349
|
+
},{"./externals":585,"./helpers":587,"./internal":589,"buffer":67}],584:[function(require,module,exports){
|
|
110402
110350
|
"use strict";
|
|
110403
110351
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
110404
110352
|
exports.KECCAK256_RLP = exports.KECCAK256_RLP_S = exports.KECCAK256_RLP_ARRAY = exports.KECCAK256_RLP_ARRAY_S = exports.KECCAK256_NULL = exports.KECCAK256_NULL_S = exports.TWO_POW256 = exports.MAX_INTEGER = exports.MAX_UINT64 = void 0;
|
|
@@ -110441,7 +110389,7 @@ exports.KECCAK256_RLP_S = '56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622
|
|
|
110441
110389
|
*/
|
|
110442
110390
|
exports.KECCAK256_RLP = buffer_1.Buffer.from(exports.KECCAK256_RLP_S, 'hex');
|
|
110443
110391
|
|
|
110444
|
-
},{"./externals":
|
|
110392
|
+
},{"./externals":585,"buffer":67}],585:[function(require,module,exports){
|
|
110445
110393
|
"use strict";
|
|
110446
110394
|
/**
|
|
110447
110395
|
* Re-exports commonly used modules:
|
|
@@ -110481,7 +110429,7 @@ exports.BN = bn_js_1.default;
|
|
|
110481
110429
|
var rlp = __importStar(require("rlp"));
|
|
110482
110430
|
exports.rlp = rlp;
|
|
110483
110431
|
|
|
110484
|
-
},{"bn.js":
|
|
110432
|
+
},{"bn.js":593,"rlp":637}],586:[function(require,module,exports){
|
|
110485
110433
|
(function (Buffer){(function (){
|
|
110486
110434
|
"use strict";
|
|
110487
110435
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -110650,7 +110598,7 @@ var rlphash = function (a) {
|
|
|
110650
110598
|
exports.rlphash = rlphash;
|
|
110651
110599
|
|
|
110652
110600
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
110653
|
-
},{"./bytes":
|
|
110601
|
+
},{"./bytes":583,"./externals":585,"./helpers":587,"buffer":67,"create-hash":548,"ethereum-cryptography/keccak":566}],587:[function(require,module,exports){
|
|
110654
110602
|
(function (Buffer){(function (){
|
|
110655
110603
|
"use strict";
|
|
110656
110604
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -110701,8 +110649,8 @@ var assertIsString = function (input) {
|
|
|
110701
110649
|
};
|
|
110702
110650
|
exports.assertIsString = assertIsString;
|
|
110703
110651
|
|
|
110704
|
-
}).call(this)}).call(this,{"isBuffer":require("../../../../../node_modules/is-buffer/index.js")})
|
|
110705
|
-
},{"../../../../../node_modules/is-buffer/index.js":
|
|
110652
|
+
}).call(this)}).call(this,{"isBuffer":require("../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js")})
|
|
110653
|
+
},{"../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js":149,"./internal":589}],588:[function(require,module,exports){
|
|
110706
110654
|
"use strict";
|
|
110707
110655
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
110708
110656
|
if (k2 === undefined) k2 = k;
|
|
@@ -110771,7 +110719,7 @@ Object.defineProperty(exports, "fromAscii", { enumerable: true, get: function ()
|
|
|
110771
110719
|
Object.defineProperty(exports, "getKeys", { enumerable: true, get: function () { return internal_1.getKeys; } });
|
|
110772
110720
|
Object.defineProperty(exports, "isHexString", { enumerable: true, get: function () { return internal_1.isHexString; } });
|
|
110773
110721
|
|
|
110774
|
-
},{"./account":
|
|
110722
|
+
},{"./account":581,"./address":582,"./bytes":583,"./constants":584,"./externals":585,"./hash":586,"./internal":589,"./object":590,"./signature":591,"./types":592}],589:[function(require,module,exports){
|
|
110775
110723
|
(function (Buffer){(function (){
|
|
110776
110724
|
"use strict";
|
|
110777
110725
|
/*
|
|
@@ -110965,7 +110913,7 @@ function isHexString(value, length) {
|
|
|
110965
110913
|
exports.isHexString = isHexString;
|
|
110966
110914
|
|
|
110967
110915
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
110968
|
-
},{"buffer":67}],
|
|
110916
|
+
},{"buffer":67}],590:[function(require,module,exports){
|
|
110969
110917
|
(function (Buffer){(function (){
|
|
110970
110918
|
"use strict";
|
|
110971
110919
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
@@ -111078,7 +111026,7 @@ var defineProperties = function (self, fields, data) {
|
|
|
111078
111026
|
exports.defineProperties = defineProperties;
|
|
111079
111027
|
|
|
111080
111028
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
111081
|
-
},{"./bytes":
|
|
111029
|
+
},{"./bytes":583,"./externals":585,"./internal":589,"assert":16,"buffer":67}],591:[function(require,module,exports){
|
|
111082
111030
|
(function (Buffer){(function (){
|
|
111083
111031
|
"use strict";
|
|
111084
111032
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -111245,7 +111193,7 @@ var hashPersonalMessage = function (message) {
|
|
|
111245
111193
|
exports.hashPersonalMessage = hashPersonalMessage;
|
|
111246
111194
|
|
|
111247
111195
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
111248
|
-
},{"./bytes":
|
|
111196
|
+
},{"./bytes":583,"./externals":585,"./hash":586,"./helpers":587,"./types":592,"buffer":67,"ethereum-cryptography/secp256k1":568}],592:[function(require,module,exports){
|
|
111249
111197
|
(function (Buffer){(function (){
|
|
111250
111198
|
"use strict";
|
|
111251
111199
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -111325,9 +111273,9 @@ function toType(input, outputType) {
|
|
|
111325
111273
|
exports.toType = toType;
|
|
111326
111274
|
|
|
111327
111275
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
111328
|
-
},{"./bytes":
|
|
111276
|
+
},{"./bytes":583,"./externals":585,"./internal":589,"buffer":67}],593:[function(require,module,exports){
|
|
111329
111277
|
arguments[4][22][0].apply(exports,arguments)
|
|
111330
|
-
},{"buffer":24,"dup":22}],
|
|
111278
|
+
},{"buffer":24,"dup":22}],594:[function(require,module,exports){
|
|
111331
111279
|
(function (Buffer){(function (){
|
|
111332
111280
|
'use strict';
|
|
111333
111281
|
|
|
@@ -111550,42 +111498,42 @@ module.exports = {
|
|
|
111550
111498
|
isHexString: isHexString
|
|
111551
111499
|
};
|
|
111552
111500
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
111553
|
-
},{"buffer":67,"is-hex-prefixed":
|
|
111501
|
+
},{"buffer":67,"is-hex-prefixed":610,"strip-hex-prefix":652}],595:[function(require,module,exports){
|
|
111554
111502
|
arguments[4][118][0].apply(exports,arguments)
|
|
111555
|
-
},{"dup":118,"inherits":
|
|
111503
|
+
},{"dup":118,"inherits":609,"readable-stream":635,"safe-buffer":639}],596:[function(require,module,exports){
|
|
111556
111504
|
arguments[4][134][0].apply(exports,arguments)
|
|
111557
|
-
},{"./hash/common":
|
|
111505
|
+
},{"./hash/common":597,"./hash/hmac":598,"./hash/ripemd":599,"./hash/sha":600,"./hash/utils":607,"dup":134}],597:[function(require,module,exports){
|
|
111558
111506
|
arguments[4][135][0].apply(exports,arguments)
|
|
111559
|
-
},{"./utils":
|
|
111507
|
+
},{"./utils":607,"dup":135,"minimalistic-assert":618}],598:[function(require,module,exports){
|
|
111560
111508
|
arguments[4][136][0].apply(exports,arguments)
|
|
111561
|
-
},{"./utils":
|
|
111509
|
+
},{"./utils":607,"dup":136,"minimalistic-assert":618}],599:[function(require,module,exports){
|
|
111562
111510
|
arguments[4][137][0].apply(exports,arguments)
|
|
111563
|
-
},{"./common":
|
|
111511
|
+
},{"./common":597,"./utils":607,"dup":137}],600:[function(require,module,exports){
|
|
111564
111512
|
arguments[4][138][0].apply(exports,arguments)
|
|
111565
|
-
},{"./sha/1":
|
|
111513
|
+
},{"./sha/1":601,"./sha/224":602,"./sha/256":603,"./sha/384":604,"./sha/512":605,"dup":138}],601:[function(require,module,exports){
|
|
111566
111514
|
arguments[4][139][0].apply(exports,arguments)
|
|
111567
|
-
},{"../common":
|
|
111515
|
+
},{"../common":597,"../utils":607,"./common":606,"dup":139}],602:[function(require,module,exports){
|
|
111568
111516
|
arguments[4][140][0].apply(exports,arguments)
|
|
111569
|
-
},{"../utils":
|
|
111517
|
+
},{"../utils":607,"./256":603,"dup":140}],603:[function(require,module,exports){
|
|
111570
111518
|
arguments[4][141][0].apply(exports,arguments)
|
|
111571
|
-
},{"../common":
|
|
111519
|
+
},{"../common":597,"../utils":607,"./common":606,"dup":141,"minimalistic-assert":618}],604:[function(require,module,exports){
|
|
111572
111520
|
arguments[4][142][0].apply(exports,arguments)
|
|
111573
|
-
},{"../utils":
|
|
111521
|
+
},{"../utils":607,"./512":605,"dup":142}],605:[function(require,module,exports){
|
|
111574
111522
|
arguments[4][143][0].apply(exports,arguments)
|
|
111575
|
-
},{"../common":
|
|
111523
|
+
},{"../common":597,"../utils":607,"dup":143,"minimalistic-assert":618}],606:[function(require,module,exports){
|
|
111576
111524
|
arguments[4][144][0].apply(exports,arguments)
|
|
111577
|
-
},{"../utils":
|
|
111525
|
+
},{"../utils":607,"dup":144}],607:[function(require,module,exports){
|
|
111578
111526
|
arguments[4][145][0].apply(exports,arguments)
|
|
111579
|
-
},{"dup":145,"inherits":
|
|
111527
|
+
},{"dup":145,"inherits":609,"minimalistic-assert":618}],608:[function(require,module,exports){
|
|
111580
111528
|
arguments[4][146][0].apply(exports,arguments)
|
|
111581
|
-
},{"dup":146,"hash.js":
|
|
111529
|
+
},{"dup":146,"hash.js":596,"minimalistic-assert":618,"minimalistic-crypto-utils":619}],609:[function(require,module,exports){
|
|
111582
111530
|
arguments[4][148][0].apply(exports,arguments)
|
|
111583
|
-
},{"dup":148}],
|
|
111584
|
-
arguments[4][
|
|
111585
|
-
},{"dup":
|
|
111531
|
+
},{"dup":148}],610:[function(require,module,exports){
|
|
111532
|
+
arguments[4][370][0].apply(exports,arguments)
|
|
111533
|
+
},{"dup":370}],611:[function(require,module,exports){
|
|
111586
111534
|
module.exports = require('./lib/api')(require('./lib/keccak'))
|
|
111587
111535
|
|
|
111588
|
-
},{"./lib/api":
|
|
111536
|
+
},{"./lib/api":612,"./lib/keccak":616}],612:[function(require,module,exports){
|
|
111589
111537
|
const createKeccak = require('./keccak')
|
|
111590
111538
|
const createShake = require('./shake')
|
|
111591
111539
|
|
|
@@ -111614,7 +111562,7 @@ module.exports = function (KeccakState) {
|
|
|
111614
111562
|
}
|
|
111615
111563
|
}
|
|
111616
111564
|
|
|
111617
|
-
},{"./keccak":
|
|
111565
|
+
},{"./keccak":613,"./shake":614}],613:[function(require,module,exports){
|
|
111618
111566
|
(function (Buffer){(function (){
|
|
111619
111567
|
const { Transform } = require('readable-stream')
|
|
111620
111568
|
|
|
@@ -111695,7 +111643,7 @@ module.exports = (KeccakState) => class Keccak extends Transform {
|
|
|
111695
111643
|
}
|
|
111696
111644
|
|
|
111697
111645
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
111698
|
-
},{"buffer":67,"readable-stream":
|
|
111646
|
+
},{"buffer":67,"readable-stream":635}],614:[function(require,module,exports){
|
|
111699
111647
|
(function (Buffer){(function (){
|
|
111700
111648
|
const { Transform } = require('readable-stream')
|
|
111701
111649
|
|
|
@@ -111767,7 +111715,7 @@ module.exports = (KeccakState) => class Shake extends Transform {
|
|
|
111767
111715
|
}
|
|
111768
111716
|
|
|
111769
111717
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
111770
|
-
},{"buffer":67,"readable-stream":
|
|
111718
|
+
},{"buffer":67,"readable-stream":635}],615:[function(require,module,exports){
|
|
111771
111719
|
const P1600_ROUND_CONSTANTS = [1, 0, 32898, 0, 32906, 2147483648, 2147516416, 2147483648, 32907, 0, 2147483649, 0, 2147516545, 2147483648, 32777, 2147483648, 138, 0, 136, 0, 2147516425, 0, 2147483658, 0, 2147516555, 0, 139, 2147483648, 32905, 2147483648, 32771, 2147483648, 32770, 2147483648, 128, 2147483648, 32778, 0, 2147483658, 2147483648, 2147516545, 2147483648, 32896, 2147483648, 2147483649, 0, 2147516424, 2147483648]
|
|
111772
111720
|
|
|
111773
111721
|
exports.p1600 = function (s) {
|
|
@@ -111955,7 +111903,7 @@ exports.p1600 = function (s) {
|
|
|
111955
111903
|
}
|
|
111956
111904
|
}
|
|
111957
111905
|
|
|
111958
|
-
},{}],
|
|
111906
|
+
},{}],616:[function(require,module,exports){
|
|
111959
111907
|
(function (Buffer){(function (){
|
|
111960
111908
|
const keccakState = require('./keccak-state-unroll')
|
|
111961
111909
|
|
|
@@ -112027,47 +111975,47 @@ Keccak.prototype.copy = function (dest) {
|
|
|
112027
111975
|
module.exports = Keccak
|
|
112028
111976
|
|
|
112029
111977
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
112030
|
-
},{"./keccak-state-unroll":
|
|
111978
|
+
},{"./keccak-state-unroll":615,"buffer":67}],617:[function(require,module,exports){
|
|
112031
111979
|
arguments[4][154][0].apply(exports,arguments)
|
|
112032
|
-
},{"dup":154,"hash-base":
|
|
111980
|
+
},{"dup":154,"hash-base":595,"inherits":609,"safe-buffer":639}],618:[function(require,module,exports){
|
|
112033
111981
|
arguments[4][157][0].apply(exports,arguments)
|
|
112034
|
-
},{"dup":157}],
|
|
111982
|
+
},{"dup":157}],619:[function(require,module,exports){
|
|
112035
111983
|
arguments[4][158][0].apply(exports,arguments)
|
|
112036
|
-
},{"dup":158}],
|
|
111984
|
+
},{"dup":158}],620:[function(require,module,exports){
|
|
112037
111985
|
arguments[4][179][0].apply(exports,arguments)
|
|
112038
|
-
},{"_process":171,"dup":179,"safe-buffer":
|
|
111986
|
+
},{"_process":171,"dup":179,"safe-buffer":639}],621:[function(require,module,exports){
|
|
112039
111987
|
arguments[4][52][0].apply(exports,arguments)
|
|
112040
|
-
},{"dup":52}],
|
|
111988
|
+
},{"dup":52}],622:[function(require,module,exports){
|
|
112041
111989
|
arguments[4][53][0].apply(exports,arguments)
|
|
112042
|
-
},{"./_stream_readable":
|
|
111990
|
+
},{"./_stream_readable":624,"./_stream_writable":626,"_process":171,"dup":53,"inherits":609}],623:[function(require,module,exports){
|
|
112043
111991
|
arguments[4][54][0].apply(exports,arguments)
|
|
112044
|
-
},{"./_stream_transform":
|
|
111992
|
+
},{"./_stream_transform":625,"dup":54,"inherits":609}],624:[function(require,module,exports){
|
|
112045
111993
|
arguments[4][55][0].apply(exports,arguments)
|
|
112046
|
-
},{"../errors":
|
|
111994
|
+
},{"../errors":621,"./_stream_duplex":622,"./internal/streams/async_iterator":627,"./internal/streams/buffer_list":628,"./internal/streams/destroy":629,"./internal/streams/from":631,"./internal/streams/state":633,"./internal/streams/stream":634,"_process":171,"buffer":67,"dup":55,"events":107,"inherits":609,"string_decoder/":651,"util":24}],625:[function(require,module,exports){
|
|
112047
111995
|
arguments[4][56][0].apply(exports,arguments)
|
|
112048
|
-
},{"../errors":
|
|
111996
|
+
},{"../errors":621,"./_stream_duplex":622,"dup":56,"inherits":609}],626:[function(require,module,exports){
|
|
112049
111997
|
arguments[4][57][0].apply(exports,arguments)
|
|
112050
|
-
},{"../errors":
|
|
111998
|
+
},{"../errors":621,"./_stream_duplex":622,"./internal/streams/destroy":629,"./internal/streams/state":633,"./internal/streams/stream":634,"_process":171,"buffer":67,"dup":57,"inherits":609,"util-deprecate":655}],627:[function(require,module,exports){
|
|
112051
111999
|
arguments[4][58][0].apply(exports,arguments)
|
|
112052
|
-
},{"./end-of-stream":
|
|
112000
|
+
},{"./end-of-stream":630,"_process":171,"dup":58}],628:[function(require,module,exports){
|
|
112053
112001
|
arguments[4][59][0].apply(exports,arguments)
|
|
112054
|
-
},{"buffer":67,"dup":59,"util":24}],
|
|
112002
|
+
},{"buffer":67,"dup":59,"util":24}],629:[function(require,module,exports){
|
|
112055
112003
|
arguments[4][60][0].apply(exports,arguments)
|
|
112056
|
-
},{"_process":171,"dup":60}],
|
|
112004
|
+
},{"_process":171,"dup":60}],630:[function(require,module,exports){
|
|
112057
112005
|
arguments[4][61][0].apply(exports,arguments)
|
|
112058
|
-
},{"../../../errors":
|
|
112006
|
+
},{"../../../errors":621,"dup":61}],631:[function(require,module,exports){
|
|
112059
112007
|
arguments[4][62][0].apply(exports,arguments)
|
|
112060
|
-
},{"dup":62}],
|
|
112008
|
+
},{"dup":62}],632:[function(require,module,exports){
|
|
112061
112009
|
arguments[4][63][0].apply(exports,arguments)
|
|
112062
|
-
},{"../../../errors":
|
|
112010
|
+
},{"../../../errors":621,"./end-of-stream":630,"dup":63}],633:[function(require,module,exports){
|
|
112063
112011
|
arguments[4][64][0].apply(exports,arguments)
|
|
112064
|
-
},{"../../../errors":
|
|
112012
|
+
},{"../../../errors":621,"dup":64}],634:[function(require,module,exports){
|
|
112065
112013
|
arguments[4][65][0].apply(exports,arguments)
|
|
112066
|
-
},{"dup":65,"events":107}],
|
|
112014
|
+
},{"dup":65,"events":107}],635:[function(require,module,exports){
|
|
112067
112015
|
arguments[4][66][0].apply(exports,arguments)
|
|
112068
|
-
},{"./lib/_stream_duplex.js":
|
|
112016
|
+
},{"./lib/_stream_duplex.js":622,"./lib/_stream_passthrough.js":623,"./lib/_stream_readable.js":624,"./lib/_stream_transform.js":625,"./lib/_stream_writable.js":626,"./lib/internal/streams/end-of-stream.js":630,"./lib/internal/streams/pipeline.js":632,"dup":66}],636:[function(require,module,exports){
|
|
112069
112017
|
arguments[4][181][0].apply(exports,arguments)
|
|
112070
|
-
},{"buffer":67,"dup":181,"hash-base":
|
|
112018
|
+
},{"buffer":67,"dup":181,"hash-base":595,"inherits":609}],637:[function(require,module,exports){
|
|
112071
112019
|
(function (Buffer){(function (){
|
|
112072
112020
|
"use strict";
|
|
112073
112021
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
@@ -112322,13 +112270,13 @@ function toBuffer(v) {
|
|
|
112322
112270
|
}
|
|
112323
112271
|
|
|
112324
112272
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
112325
|
-
},{"bn.js":
|
|
112273
|
+
},{"bn.js":638,"buffer":67}],638:[function(require,module,exports){
|
|
112326
112274
|
arguments[4][22][0].apply(exports,arguments)
|
|
112327
|
-
},{"buffer":24,"dup":22}],
|
|
112275
|
+
},{"buffer":24,"dup":22}],639:[function(require,module,exports){
|
|
112328
112276
|
arguments[4][182][0].apply(exports,arguments)
|
|
112329
|
-
},{"buffer":67,"dup":182}],
|
|
112330
|
-
arguments[4][
|
|
112331
|
-
},{"./lib":
|
|
112277
|
+
},{"buffer":67,"dup":182}],640:[function(require,module,exports){
|
|
112278
|
+
arguments[4][415][0].apply(exports,arguments)
|
|
112279
|
+
},{"./lib":642,"./lib/elliptic":641,"dup":415}],641:[function(require,module,exports){
|
|
112332
112280
|
const EC = require('elliptic').ec
|
|
112333
112281
|
|
|
112334
112282
|
const ec = new EC('secp256k1')
|
|
@@ -112732,27 +112680,27 @@ module.exports = {
|
|
|
112732
112680
|
}
|
|
112733
112681
|
}
|
|
112734
112682
|
|
|
112735
|
-
},{"elliptic":
|
|
112736
|
-
arguments[4][
|
|
112737
|
-
},{"dup":
|
|
112683
|
+
},{"elliptic":549}],642:[function(require,module,exports){
|
|
112684
|
+
arguments[4][417][0].apply(exports,arguments)
|
|
112685
|
+
},{"dup":417}],643:[function(require,module,exports){
|
|
112738
112686
|
arguments[4][184][0].apply(exports,arguments)
|
|
112739
|
-
},{"dup":184,"safe-buffer":
|
|
112687
|
+
},{"dup":184,"safe-buffer":639}],644:[function(require,module,exports){
|
|
112740
112688
|
arguments[4][185][0].apply(exports,arguments)
|
|
112741
|
-
},{"./sha":
|
|
112689
|
+
},{"./sha":645,"./sha1":646,"./sha224":647,"./sha256":648,"./sha384":649,"./sha512":650,"dup":185}],645:[function(require,module,exports){
|
|
112742
112690
|
arguments[4][186][0].apply(exports,arguments)
|
|
112743
|
-
},{"./hash":
|
|
112691
|
+
},{"./hash":643,"dup":186,"inherits":609,"safe-buffer":639}],646:[function(require,module,exports){
|
|
112744
112692
|
arguments[4][187][0].apply(exports,arguments)
|
|
112745
|
-
},{"./hash":
|
|
112693
|
+
},{"./hash":643,"dup":187,"inherits":609,"safe-buffer":639}],647:[function(require,module,exports){
|
|
112746
112694
|
arguments[4][188][0].apply(exports,arguments)
|
|
112747
|
-
},{"./hash":
|
|
112695
|
+
},{"./hash":643,"./sha256":648,"dup":188,"inherits":609,"safe-buffer":639}],648:[function(require,module,exports){
|
|
112748
112696
|
arguments[4][189][0].apply(exports,arguments)
|
|
112749
|
-
},{"./hash":
|
|
112697
|
+
},{"./hash":643,"dup":189,"inherits":609,"safe-buffer":639}],649:[function(require,module,exports){
|
|
112750
112698
|
arguments[4][190][0].apply(exports,arguments)
|
|
112751
|
-
},{"./hash":
|
|
112699
|
+
},{"./hash":643,"./sha512":650,"dup":190,"inherits":609,"safe-buffer":639}],650:[function(require,module,exports){
|
|
112752
112700
|
arguments[4][191][0].apply(exports,arguments)
|
|
112753
|
-
},{"./hash":
|
|
112701
|
+
},{"./hash":643,"dup":191,"inherits":609,"safe-buffer":639}],651:[function(require,module,exports){
|
|
112754
112702
|
arguments[4][207][0].apply(exports,arguments)
|
|
112755
|
-
},{"dup":207,"safe-buffer":
|
|
112703
|
+
},{"dup":207,"safe-buffer":639}],652:[function(require,module,exports){
|
|
112756
112704
|
var isHexPrefixed = require('is-hex-prefixed');
|
|
112757
112705
|
|
|
112758
112706
|
/**
|
|
@@ -112768,7 +112716,7 @@ module.exports = function stripHexPrefix(str) {
|
|
|
112768
112716
|
return isHexPrefixed(str) ? str.slice(2) : str;
|
|
112769
112717
|
}
|
|
112770
112718
|
|
|
112771
|
-
},{"is-hex-prefixed":
|
|
112719
|
+
},{"is-hex-prefixed":610}],653:[function(require,module,exports){
|
|
112772
112720
|
(function (Buffer){(function (){
|
|
112773
112721
|
// Written in 2014-2016 by Dmitry Chestnykh and Devi Mandiri.
|
|
112774
112722
|
// Public domain.
|
|
@@ -112853,7 +112801,7 @@ module.exports = function stripHexPrefix(str) {
|
|
|
112853
112801
|
}));
|
|
112854
112802
|
|
|
112855
112803
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
112856
|
-
},{"buffer":24}],
|
|
112804
|
+
},{"buffer":24}],654:[function(require,module,exports){
|
|
112857
112805
|
(function(nacl) {
|
|
112858
112806
|
'use strict';
|
|
112859
112807
|
|
|
@@ -115246,9 +115194,9 @@ nacl.setPRNG = function(fn) {
|
|
|
115246
115194
|
|
|
115247
115195
|
})(typeof module !== 'undefined' && module.exports ? module.exports : (self.nacl = self.nacl || {}));
|
|
115248
115196
|
|
|
115249
|
-
},{"crypto":24}],
|
|
115250
|
-
arguments[4][
|
|
115251
|
-
},{"dup":
|
|
115197
|
+
},{"crypto":24}],655:[function(require,module,exports){
|
|
115198
|
+
arguments[4][208][0].apply(exports,arguments)
|
|
115199
|
+
},{"dup":208}],656:[function(require,module,exports){
|
|
115252
115200
|
"use strict";
|
|
115253
115201
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
115254
115202
|
exports.validateSyncSchemeV2 = exports.validateSyncScheme = exports.generateIdV2 = exports.generateId = exports.Message = exports.SerializerV3 = exports.Serializer = exports.IACMessageType = void 0;
|
|
@@ -115269,7 +115217,7 @@ Object.defineProperty(exports, "generateId", { enumerable: true, get: function (
|
|
|
115269
115217
|
var validators_2 = require("./v3/validators/validators");
|
|
115270
115218
|
Object.defineProperty(exports, "validateSyncScheme", { enumerable: true, get: function () { return validators_2.validateSyncScheme; } });
|
|
115271
115219
|
|
|
115272
|
-
},{"./v2/interfaces":
|
|
115220
|
+
},{"./v2/interfaces":658,"./v2/message":659,"./v2/serializer":666,"./v2/utils/generateId":667,"./v2/validators/validators":669,"./v3/serializer":678,"./v3/utils/generateId":679,"./v3/validators/validators":681}],657:[function(require,module,exports){
|
|
115273
115221
|
(function (Buffer){(function (){
|
|
115274
115222
|
"use strict";
|
|
115275
115223
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -115396,7 +115344,7 @@ var IACProtocol = /** @class */ (function () {
|
|
|
115396
115344
|
exports.IACProtocol = IACProtocol;
|
|
115397
115345
|
|
|
115398
115346
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
115399
|
-
},{"./payloads/chunked-payload":
|
|
115347
|
+
},{"./payloads/chunked-payload":660,"./payloads/full-payload":661,"./serializer":666,"@airgap/coinlib-core/dependencies/src/bs58check-2.1.2/index":310,"@airgap/coinlib-core/dependencies/src/rlp-2.2.3/index":407,"@airgap/coinlib-core/errors":437,"buffer":67}],658:[function(require,module,exports){
|
|
115400
115348
|
"use strict";
|
|
115401
115349
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
115402
115350
|
exports.IACMessageType = void 0;
|
|
@@ -115428,7 +115376,7 @@ var IACMessageType;
|
|
|
115428
115376
|
// SocialRecoveryShareResponse = 24
|
|
115429
115377
|
})(IACMessageType = exports.IACMessageType || (exports.IACMessageType = {}));
|
|
115430
115378
|
|
|
115431
|
-
},{}],
|
|
115379
|
+
},{}],659:[function(require,module,exports){
|
|
115432
115380
|
(function (Buffer){(function (){
|
|
115433
115381
|
"use strict";
|
|
115434
115382
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -115516,7 +115464,7 @@ var Message = /** @class */ (function () {
|
|
|
115516
115464
|
exports.Message = Message;
|
|
115517
115465
|
|
|
115518
115466
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
115519
|
-
},{"./interfaces":
|
|
115467
|
+
},{"./interfaces":658,"./serializer":666,"./utils/generateId":667,"./utils/json-to-rlp":668,"@airgap/coinlib-core/errors":437,"@airgap/coinlib-core/utils/ProtocolSymbols":447,"buffer":67}],660:[function(require,module,exports){
|
|
115520
115468
|
(function (Buffer){(function (){
|
|
115521
115469
|
"use strict";
|
|
115522
115470
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -115575,7 +115523,7 @@ var ChunkedPayload = /** @class */ (function () {
|
|
|
115575
115523
|
exports.ChunkedPayload = ChunkedPayload;
|
|
115576
115524
|
|
|
115577
115525
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
115578
|
-
},{"@airgap/coinlib-core/errors":
|
|
115526
|
+
},{"@airgap/coinlib-core/errors":437,"buffer":67}],661:[function(require,module,exports){
|
|
115579
115527
|
"use strict";
|
|
115580
115528
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
115581
115529
|
if (k2 === undefined) k2 = k;
|
|
@@ -115637,7 +115585,7 @@ var FullPayload = /** @class */ (function () {
|
|
|
115637
115585
|
}());
|
|
115638
115586
|
exports.FullPayload = FullPayload;
|
|
115639
115587
|
|
|
115640
|
-
},{"../message":
|
|
115588
|
+
},{"../message":659,"../serializer":666,"@airgap/coinlib-core/dependencies/src/bs58check-2.1.2/index":310,"@airgap/coinlib-core/dependencies/src/rlp-2.2.3/index":407}],662:[function(require,module,exports){
|
|
115641
115589
|
module.exports={
|
|
115642
115590
|
"$ref": "#/definitions/AccountShareResponse",
|
|
115643
115591
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
@@ -115661,7 +115609,7 @@ module.exports={
|
|
|
115661
115609
|
}
|
|
115662
115610
|
}
|
|
115663
115611
|
|
|
115664
|
-
},{}],
|
|
115612
|
+
},{}],663:[function(require,module,exports){
|
|
115665
115613
|
module.exports={
|
|
115666
115614
|
"$ref": "#/definitions/MessageSignRequest",
|
|
115667
115615
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
@@ -115685,7 +115633,7 @@ module.exports={
|
|
|
115685
115633
|
}
|
|
115686
115634
|
}
|
|
115687
115635
|
|
|
115688
|
-
},{}],
|
|
115636
|
+
},{}],664:[function(require,module,exports){
|
|
115689
115637
|
module.exports={
|
|
115690
115638
|
"$ref": "#/definitions/MessageSignResponse",
|
|
115691
115639
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
@@ -115709,7 +115657,7 @@ module.exports={
|
|
|
115709
115657
|
}
|
|
115710
115658
|
}
|
|
115711
115659
|
|
|
115712
|
-
},{}],
|
|
115660
|
+
},{}],665:[function(require,module,exports){
|
|
115713
115661
|
"use strict";
|
|
115714
115662
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
115715
115663
|
exports.SchemaTypes = void 0;
|
|
@@ -115725,7 +115673,7 @@ var SchemaTypes;
|
|
|
115725
115673
|
SchemaTypes["HEX_STRING"] = "hexString"; // TODO: Should we do it like that?
|
|
115726
115674
|
})(SchemaTypes = exports.SchemaTypes || (exports.SchemaTypes = {}));
|
|
115727
115675
|
|
|
115728
|
-
},{}],
|
|
115676
|
+
},{}],666:[function(require,module,exports){
|
|
115729
115677
|
"use strict";
|
|
115730
115678
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
115731
115679
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -115891,7 +115839,7 @@ var Serializer = /** @class */ (function () {
|
|
|
115891
115839
|
}());
|
|
115892
115840
|
exports.Serializer = Serializer;
|
|
115893
115841
|
|
|
115894
|
-
},{"./inter-app-communication-protocol":
|
|
115842
|
+
},{"./inter-app-communication-protocol":657,"./interfaces":658,"./schemas/generated/account-share-response.json":662,"./schemas/generated/message-sign-request.json":663,"./schemas/generated/message-sign-response.json":664,"@airgap/coinlib-core/errors":437,"@airgap/coinlib-core/utils/ProtocolSymbols":447}],667:[function(require,module,exports){
|
|
115895
115843
|
"use strict";
|
|
115896
115844
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
115897
115845
|
exports.generateIdV2 = void 0;
|
|
@@ -115907,7 +115855,7 @@ function generateIdV2(length) {
|
|
|
115907
115855
|
}
|
|
115908
115856
|
exports.generateIdV2 = generateIdV2;
|
|
115909
115857
|
|
|
115910
|
-
},{}],
|
|
115858
|
+
},{}],668:[function(require,module,exports){
|
|
115911
115859
|
"use strict";
|
|
115912
115860
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
115913
115861
|
exports.rlpArrayToJson = exports.jsonToArray = exports.unwrapSchema = exports.getDefinitionByRefPath = void 0;
|
|
@@ -116085,7 +116033,7 @@ function rlpArrayToJson(schema, decoded) {
|
|
|
116085
116033
|
}
|
|
116086
116034
|
exports.rlpArrayToJson = rlpArrayToJson;
|
|
116087
116035
|
|
|
116088
|
-
},{"../schemas/schema":
|
|
116036
|
+
},{"../schemas/schema":665,"@airgap/coinlib-core/errors":437,"@airgap/coinlib-core/errors/coinlib-error":436,"@airgap/coinlib-core/utils/assert":448}],669:[function(require,module,exports){
|
|
116089
116037
|
"use strict";
|
|
116090
116038
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
116091
116039
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -116258,7 +116206,7 @@ function validateSerializationInput(from: string, fee: BigNumber, amount: BigNum
|
|
|
116258
116206
|
}
|
|
116259
116207
|
*/
|
|
116260
116208
|
|
|
116261
|
-
},{"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":
|
|
116209
|
+
},{"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":250,"@airgap/coinlib-core/dependencies/src/validate.js-0.13.1/validate":433,"@airgap/coinlib-core/errors":437,"@airgap/coinlib-core/errors/coinlib-error":436}],670:[function(require,module,exports){
|
|
116262
116210
|
(function (Buffer){(function (){
|
|
116263
116211
|
"use strict";
|
|
116264
116212
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
@@ -116333,9 +116281,9 @@ var IACMessageWrapper = /** @class */ (function () {
|
|
|
116333
116281
|
exports.IACMessageWrapper = IACMessageWrapper;
|
|
116334
116282
|
|
|
116335
116283
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
116336
|
-
},{"./message":
|
|
116337
|
-
arguments[4][
|
|
116338
|
-
},{"dup":
|
|
116284
|
+
},{"./message":672,"./payload":673,"./serializer":678,"@airgap/coinlib-core/dependencies/src/bs58check-2.1.2/index":310,"@airgap/coinlib-core/dependencies/src/cbor-sync-1.0.4/index":311,"@airgap/coinlib-core/dependencies/src/pako-2.0.3":383,"buffer":67}],671:[function(require,module,exports){
|
|
116285
|
+
arguments[4][658][0].apply(exports,arguments)
|
|
116286
|
+
},{"dup":658}],672:[function(require,module,exports){
|
|
116339
116287
|
"use strict";
|
|
116340
116288
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
116341
116289
|
exports.Message = exports.isMessageDefinitionArray = void 0;
|
|
@@ -116453,7 +116401,7 @@ var Message = /** @class */ (function () {
|
|
|
116453
116401
|
}());
|
|
116454
116402
|
exports.Message = Message;
|
|
116455
116403
|
|
|
116456
|
-
},{"./serializer":
|
|
116404
|
+
},{"./serializer":678,"./utils/generateId":679,"./utils/json-to-rlp":680,"@airgap/coinlib-core/errors":437,"@airgap/coinlib-core/utils/ProtocolSymbols":447}],673:[function(require,module,exports){
|
|
116457
116405
|
"use strict";
|
|
116458
116406
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
116459
116407
|
exports.Payload = void 0;
|
|
@@ -116482,7 +116430,7 @@ var Payload = /** @class */ (function () {
|
|
|
116482
116430
|
}());
|
|
116483
116431
|
exports.Payload = Payload;
|
|
116484
116432
|
|
|
116485
|
-
},{"./message":
|
|
116433
|
+
},{"./message":672,"./serializer":678}],674:[function(require,module,exports){
|
|
116486
116434
|
module.exports={
|
|
116487
116435
|
"$ref": "#/definitions/AccountShareResponse",
|
|
116488
116436
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
@@ -116518,11 +116466,11 @@ module.exports={
|
|
|
116518
116466
|
}
|
|
116519
116467
|
}
|
|
116520
116468
|
|
|
116521
|
-
},{}],
|
|
116469
|
+
},{}],675:[function(require,module,exports){
|
|
116470
|
+
arguments[4][663][0].apply(exports,arguments)
|
|
116471
|
+
},{"dup":663}],676:[function(require,module,exports){
|
|
116522
116472
|
arguments[4][664][0].apply(exports,arguments)
|
|
116523
116473
|
},{"dup":664}],677:[function(require,module,exports){
|
|
116524
|
-
arguments[4][665][0].apply(exports,arguments)
|
|
116525
|
-
},{"dup":665}],678:[function(require,module,exports){
|
|
116526
116474
|
"use strict";
|
|
116527
116475
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
116528
116476
|
exports.SchemaTypes = void 0;
|
|
@@ -116537,7 +116485,7 @@ var SchemaTypes;
|
|
|
116537
116485
|
SchemaTypes["OBJECT"] = "object";
|
|
116538
116486
|
})(SchemaTypes = exports.SchemaTypes || (exports.SchemaTypes = {}));
|
|
116539
116487
|
|
|
116540
|
-
},{}],
|
|
116488
|
+
},{}],678:[function(require,module,exports){
|
|
116541
116489
|
"use strict";
|
|
116542
116490
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
116543
116491
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -116701,7 +116649,7 @@ var SerializerV3 = /** @class */ (function () {
|
|
|
116701
116649
|
}());
|
|
116702
116650
|
exports.SerializerV3 = SerializerV3;
|
|
116703
116651
|
|
|
116704
|
-
},{"./iac-message-wrapper":
|
|
116652
|
+
},{"./iac-message-wrapper":670,"./interfaces":671,"./schemas/generated/account-share-response.json":674,"./schemas/generated/message-sign-request.json":675,"./schemas/generated/message-sign-response.json":676,"@airgap/coinlib-core/errors":437,"@airgap/coinlib-core/utils/ProtocolSymbols":447}],679:[function(require,module,exports){
|
|
116705
116653
|
"use strict";
|
|
116706
116654
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
116707
116655
|
exports.generateId = exports.ID_LENGTH = void 0;
|
|
@@ -116719,7 +116667,7 @@ function generateId(length) {
|
|
|
116719
116667
|
}
|
|
116720
116668
|
exports.generateId = generateId;
|
|
116721
116669
|
|
|
116722
|
-
},{}],
|
|
116670
|
+
},{}],680:[function(require,module,exports){
|
|
116723
116671
|
(function (Buffer){(function (){
|
|
116724
116672
|
"use strict";
|
|
116725
116673
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -116957,7 +116905,7 @@ function rlpArrayToJson(schema, decoded) {
|
|
|
116957
116905
|
exports.rlpArrayToJson = rlpArrayToJson;
|
|
116958
116906
|
|
|
116959
116907
|
}).call(this)}).call(this,require("buffer").Buffer)
|
|
116960
|
-
},{"../schemas/schema":
|
|
116908
|
+
},{"../schemas/schema":677,"@airgap/coinlib-core/errors":437,"@airgap/coinlib-core/errors/coinlib-error":436,"@airgap/coinlib-core/utils/assert":448,"buffer":67}],681:[function(require,module,exports){
|
|
116961
116909
|
"use strict";
|
|
116962
116910
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
116963
116911
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
@@ -117128,5 +117076,5 @@ function validateSerializationInput(from: string, fee: BigNumber, amount: BigNum
|
|
|
117128
117076
|
}
|
|
117129
117077
|
*/
|
|
117130
117078
|
|
|
117131
|
-
},{"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":
|
|
117079
|
+
},{"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":250,"@airgap/coinlib-core/dependencies/src/validate.js-0.13.1/validate":433}]},{},[457])(457)
|
|
117132
117080
|
});
|