@airgap/groestlcoin 0.13.9-beta.1 → 0.13.9-beta.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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":209}],58:[function(require,module,exports){
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":209}],125:[function(require,module,exports){
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}],150:[function(require,module,exports){
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":209}],199:[function(require,module,exports){
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":208}],208:[function(require,module,exports){
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
- },{}],210:[function(require,module,exports){
28778
+ },{}],209:[function(require,module,exports){
28833
28779
  arguments[4][18][0].apply(exports,arguments)
28834
- },{"dup":18}],211:[function(require,module,exports){
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":149,"is-generator-function":152,"is-typed-array":153,"which-typed-array":213}],212:[function(require,module,exports){
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":210,"./support/types":211,"_process":171,"inherits":148}],213:[function(require,module,exports){
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}],214:[function(require,module,exports){
29894
+ },{"available-typed-arrays":20,"call-bind/callBound":69,"for-each":109,"gopd":113,"has-tostringtag/shams":116,"is-typed-array":153}],213:[function(require,module,exports){
29949
29895
  "use strict";
29950
29896
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
29951
29897
  if (k2 === undefined) k2 = k;
@@ -29964,7 +29910,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
29964
29910
  Object.defineProperty(exports, "__esModule", { value: true });
29965
29911
  __exportStar(require("./v0"), exports);
29966
29912
 
29967
- },{"./v0":215}],215:[function(require,module,exports){
29913
+ },{"./v0":214}],214:[function(require,module,exports){
29968
29914
  "use strict";
29969
29915
  Object.defineProperty(exports, "__esModule", { value: true });
29970
29916
  exports.BitcoinSegwitAddress = exports.BitcoinSegwitProtocol = exports.BitcoinAddress = exports.BitcoinProtocolOptions = exports.BitcoinProtocolConfig = exports.BitcoinProtocolNetwork = exports.BlockcypherBlockExplorer = exports.BitcoinProtocolNetworkExtras = exports.BitcoinCryptoClient = exports.BitcoinTestnetProtocol = exports.BitcoinProtocol = void 0;
@@ -29999,7 +29945,7 @@ serializer_1.SerializerV3.addSchema(serializer_1.IACMessageType.TransactionSignR
29999
29945
  serializer_1.Serializer.addValidator(coinlib_core_1.MainProtocolSymbols.BTC, new transaction_validator_1.BitcoinTransactionValidatorFactoryV2());
30000
29946
  serializer_1.SerializerV3.addValidator(coinlib_core_1.MainProtocolSymbols.BTC, new transaction_validator_1.BitcoinTransactionValidatorFactory());
30001
29947
 
30002
- },{"./protocol/BitcoinAddress":216,"./protocol/BitcoinCryptoClient":217,"./protocol/BitcoinProtocol":218,"./protocol/BitcoinProtocolOptions":219,"./protocol/BitcoinSegwitAddress":220,"./protocol/BitcoinSegwitProtocol":221,"./protocol/BitcoinTestnetProtocol":222,"./serializer/schemas/v2/transaction-sign-request-bitcoin.json":223,"./serializer/schemas/v2/transaction-sign-response-bitcoin.json":224,"./serializer/schemas/v3/transaction-sign-request-bitcoin-segwit.json":225,"./serializer/schemas/v3/transaction-sign-request-bitcoin.json":226,"./serializer/schemas/v3/transaction-sign-response-bitcoin-segwit.json":227,"./serializer/schemas/v3/transaction-sign-response-bitcoin.json":228,"./serializer/validators/transaction-validator":229,"@airgap/coinlib-core":612,"@airgap/serializer":635}],216:[function(require,module,exports){
29948
+ },{"./protocol/BitcoinAddress":215,"./protocol/BitcoinCryptoClient":216,"./protocol/BitcoinProtocol":217,"./protocol/BitcoinProtocolOptions":218,"./protocol/BitcoinSegwitAddress":219,"./protocol/BitcoinSegwitProtocol":220,"./protocol/BitcoinTestnetProtocol":221,"./serializer/schemas/v2/transaction-sign-request-bitcoin.json":222,"./serializer/schemas/v2/transaction-sign-response-bitcoin.json":223,"./serializer/schemas/v3/transaction-sign-request-bitcoin-segwit.json":224,"./serializer/schemas/v3/transaction-sign-request-bitcoin.json":225,"./serializer/schemas/v3/transaction-sign-response-bitcoin-segwit.json":226,"./serializer/schemas/v3/transaction-sign-response-bitcoin.json":227,"./serializer/validators/transaction-validator":228,"@airgap/coinlib-core":611,"@airgap/serializer":634}],215:[function(require,module,exports){
30003
29949
  "use strict";
30004
29950
  Object.defineProperty(exports, "__esModule", { value: true });
30005
29951
  exports.BitcoinAddress = void 0;
@@ -30023,7 +29969,7 @@ var BitcoinAddress = /** @class */ (function () {
30023
29969
  }());
30024
29970
  exports.BitcoinAddress = BitcoinAddress;
30025
29971
 
30026
- },{}],217:[function(require,module,exports){
29972
+ },{}],216:[function(require,module,exports){
30027
29973
  (function (Buffer){(function (){
30028
29974
  "use strict";
30029
29975
  var __extends = (this && this.__extends) || (function () {
@@ -30117,7 +30063,7 @@ var BitcoinCryptoClient = /** @class */ (function (_super) {
30117
30063
  exports.BitcoinCryptoClient = BitcoinCryptoClient;
30118
30064
 
30119
30065
  }).call(this)}).call(this,require("buffer").Buffer)
30120
- },{"@airgap/coinlib-core/protocols/Secp256k1CryptoClient":615,"buffer":67}],218:[function(require,module,exports){
30066
+ },{"@airgap/coinlib-core/protocols/Secp256k1CryptoClient":614,"buffer":67}],217:[function(require,module,exports){
30121
30067
  (function (Buffer){(function (){
30122
30068
  "use strict";
30123
30069
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
@@ -31183,7 +31129,7 @@ var BitcoinProtocol = /** @class */ (function () {
31183
31129
  exports.BitcoinProtocol = BitcoinProtocol;
31184
31130
 
31185
31131
  }).call(this)}).call(this,require("buffer").Buffer)
31186
- },{"./BitcoinAddress":216,"./BitcoinCryptoClient":217,"./BitcoinProtocolOptions":219,"@airgap/coinlib-core/dependencies/src/axios-0.19.0/index":400,"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":432,"@airgap/coinlib-core/dependencies/src/bip39-2.5.0/index":433,"@airgap/coinlib-core/dependencies/src/bitcoinjs-message-2.1.1/index":445,"@airgap/coinlib-core/errors":611,"@airgap/coinlib-core/errors/coinlib-error":610,"@airgap/coinlib-core/utils/ProtocolSymbols":620,"buffer":67}],219:[function(require,module,exports){
31132
+ },{"./BitcoinAddress":215,"./BitcoinCryptoClient":216,"./BitcoinProtocolOptions":218,"@airgap/coinlib-core/dependencies/src/axios-0.19.0/index":399,"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":431,"@airgap/coinlib-core/dependencies/src/bip39-2.5.0/index":432,"@airgap/coinlib-core/dependencies/src/bitcoinjs-message-2.1.1/index":444,"@airgap/coinlib-core/errors":610,"@airgap/coinlib-core/errors/coinlib-error":609,"@airgap/coinlib-core/utils/ProtocolSymbols":619,"buffer":67}],218:[function(require,module,exports){
31187
31133
  "use strict";
31188
31134
  var __extends = (this && this.__extends) || (function () {
31189
31135
  var extendStatics = function (d, b) {
@@ -31332,7 +31278,7 @@ var BitcoinProtocolOptions = /** @class */ (function () {
31332
31278
  }());
31333
31279
  exports.BitcoinProtocolOptions = BitcoinProtocolOptions;
31334
31280
 
31335
- },{"@airgap/coinlib-core/dependencies/src/bitgo-utxo-lib-5d91049fd7a988382df81c8260e244ee56d57aac/src/index":457,"@airgap/coinlib-core/utils/ProtocolNetwork":619}],220:[function(require,module,exports){
31281
+ },{"@airgap/coinlib-core/dependencies/src/bitgo-utxo-lib-5d91049fd7a988382df81c8260e244ee56d57aac/src/index":456,"@airgap/coinlib-core/utils/ProtocolNetwork":618}],219:[function(require,module,exports){
31336
31282
  "use strict";
31337
31283
  var __extends = (this && this.__extends) || (function () {
31338
31284
  var extendStatics = function (d, b) {
@@ -31374,7 +31320,7 @@ var BitcoinSegwitAddress = /** @class */ (function (_super) {
31374
31320
  }(BitcoinAddress_1.BitcoinAddress));
31375
31321
  exports.BitcoinSegwitAddress = BitcoinSegwitAddress;
31376
31322
 
31377
- },{"./BitcoinAddress":216}],221:[function(require,module,exports){
31323
+ },{"./BitcoinAddress":215}],220:[function(require,module,exports){
31378
31324
  (function (Buffer){(function (){
31379
31325
  "use strict";
31380
31326
  var __extends = (this && this.__extends) || (function () {
@@ -31918,7 +31864,7 @@ var BitcoinSegwitProtocol = /** @class */ (function (_super) {
31918
31864
  exports.BitcoinSegwitProtocol = BitcoinSegwitProtocol;
31919
31865
 
31920
31866
  }).call(this)}).call(this,require("buffer").Buffer)
31921
- },{"./BitcoinProtocol":218,"./BitcoinProtocolOptions":219,"./BitcoinSegwitAddress":220,"@airgap/coinlib-core/dependencies/src/axios-0.19.0/index":400,"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":432,"@airgap/coinlib-core/dependencies/src/bip39-2.5.0/index":433,"@airgap/coinlib-core/dependencies/src/bs58check-2.1.2":493,"@airgap/coinlib-core/utils/ProtocolSymbols":620,"bitcoinjs-lib":274,"buffer":67}],222:[function(require,module,exports){
31867
+ },{"./BitcoinProtocol":217,"./BitcoinProtocolOptions":218,"./BitcoinSegwitAddress":219,"@airgap/coinlib-core/dependencies/src/axios-0.19.0/index":399,"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":431,"@airgap/coinlib-core/dependencies/src/bip39-2.5.0/index":432,"@airgap/coinlib-core/dependencies/src/bs58check-2.1.2":492,"@airgap/coinlib-core/utils/ProtocolSymbols":619,"bitcoinjs-lib":273,"buffer":67}],221:[function(require,module,exports){
31922
31868
  "use strict";
31923
31869
  var __extends = (this && this.__extends) || (function () {
31924
31870
  var extendStatics = function (d, b) {
@@ -31977,7 +31923,7 @@ var BitcoinTestnetProtocol = /** @class */ (function (_super) {
31977
31923
  }(BitcoinProtocol_1.BitcoinProtocol));
31978
31924
  exports.BitcoinTestnetProtocol = BitcoinTestnetProtocol;
31979
31925
 
31980
- },{"./BitcoinProtocol":218,"./BitcoinProtocolOptions":219,"@airgap/coinlib-core/dependencies/src/bitgo-utxo-lib-5d91049fd7a988382df81c8260e244ee56d57aac/src/index":457,"@airgap/coinlib-core/utils/ProtocolNetwork":619}],223:[function(require,module,exports){
31926
+ },{"./BitcoinProtocol":217,"./BitcoinProtocolOptions":218,"@airgap/coinlib-core/dependencies/src/bitgo-utxo-lib-5d91049fd7a988382df81c8260e244ee56d57aac/src/index":456,"@airgap/coinlib-core/utils/ProtocolNetwork":618}],222:[function(require,module,exports){
31981
31927
  module.exports={
31982
31928
  "$ref": "#/definitions/UnsignedBitcoinTransaction",
31983
31929
  "$schema": "http://json-schema.org/draft-07/schema#",
@@ -32052,7 +31998,7 @@ module.exports={
32052
31998
  }
32053
31999
  }
32054
32000
 
32055
- },{}],224:[function(require,module,exports){
32001
+ },{}],223:[function(require,module,exports){
32056
32002
  module.exports={
32057
32003
  "$ref": "#/definitions/SignedBitcoinTransaction",
32058
32004
  "$schema": "http://json-schema.org/draft-07/schema#",
@@ -32091,7 +32037,7 @@ module.exports={
32091
32037
  }
32092
32038
  }
32093
32039
 
32094
- },{}],225:[function(require,module,exports){
32040
+ },{}],224:[function(require,module,exports){
32095
32041
  module.exports={
32096
32042
  "$ref": "#/definitions/UnsignedBitcoinSegwitTransaction",
32097
32043
  "$schema": "http://json-schema.org/draft-07/schema#",
@@ -32122,9 +32068,9 @@ module.exports={
32122
32068
  }
32123
32069
  }
32124
32070
 
32125
- },{}],226:[function(require,module,exports){
32126
- arguments[4][223][0].apply(exports,arguments)
32127
- },{"dup":223}],227:[function(require,module,exports){
32071
+ },{}],225:[function(require,module,exports){
32072
+ arguments[4][222][0].apply(exports,arguments)
32073
+ },{"dup":222}],226:[function(require,module,exports){
32128
32074
  module.exports={
32129
32075
  "$ref": "#/definitions/SignedBitcoinSegwitTransaction",
32130
32076
  "$schema": "http://json-schema.org/draft-07/schema#",
@@ -32145,9 +32091,9 @@ module.exports={
32145
32091
  }
32146
32092
  }
32147
32093
 
32148
- },{}],228:[function(require,module,exports){
32149
- arguments[4][224][0].apply(exports,arguments)
32150
- },{"dup":224}],229:[function(require,module,exports){
32094
+ },{}],227:[function(require,module,exports){
32095
+ arguments[4][223][0].apply(exports,arguments)
32096
+ },{"dup":223}],228:[function(require,module,exports){
32151
32097
  "use strict";
32152
32098
  Object.defineProperty(exports, "__esModule", { value: true });
32153
32099
  exports.BitcoinTransactionValidatorFactoryV2 = exports.BitcoinTransactionValidatorFactory = exports.BitcoinTransactionValidator = void 0;
@@ -32229,7 +32175,7 @@ var BitcoinTransactionValidatorFactoryV2 = /** @class */ (function () {
32229
32175
  }());
32230
32176
  exports.BitcoinTransactionValidatorFactoryV2 = BitcoinTransactionValidatorFactoryV2;
32231
32177
 
32232
- },{"@airgap/coinlib-core/dependencies/src/validate.js-0.13.1/validate":607,"@airgap/serializer":635}],230:[function(require,module,exports){
32178
+ },{"@airgap/coinlib-core/dependencies/src/validate.js-0.13.1/validate":606,"@airgap/serializer":634}],229:[function(require,module,exports){
32233
32179
  'use strict'
32234
32180
  // base-x encoding / decoding
32235
32181
  // Copyright (c) 2018 base-x contributors
@@ -32350,7 +32296,7 @@ function base (ALPHABET) {
32350
32296
  }
32351
32297
  module.exports = base
32352
32298
 
32353
- },{"safe-buffer":376}],231:[function(require,module,exports){
32299
+ },{"safe-buffer":375}],230:[function(require,module,exports){
32354
32300
  'use strict'
32355
32301
  var ALPHABET = 'qpzry9x8gf2tvdw0s3jn54khce6mua7l'
32356
32302
 
@@ -32534,7 +32480,7 @@ module.exports = {
32534
32480
  fromWords: fromWords
32535
32481
  }
32536
32482
 
32537
- },{}],232:[function(require,module,exports){
32483
+ },{}],231:[function(require,module,exports){
32538
32484
  'use strict';
32539
32485
  Object.defineProperty(exports, '__esModule', { value: true });
32540
32486
  const parser_1 = require('../parser');
@@ -32619,7 +32565,7 @@ function getKeySet(keyVals) {
32619
32565
  return set;
32620
32566
  }
32621
32567
 
32622
- },{"../parser":257}],233:[function(require,module,exports){
32568
+ },{"../parser":256}],232:[function(require,module,exports){
32623
32569
  (function (Buffer){(function (){
32624
32570
  'use strict';
32625
32571
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -32706,7 +32652,7 @@ function canAddToArray(array, item, dupeSet) {
32706
32652
  exports.canAddToArray = canAddToArray;
32707
32653
 
32708
32654
  }).call(this)}).call(this,require("buffer").Buffer)
32709
- },{"../../typeFields":260,"buffer":67}],234:[function(require,module,exports){
32655
+ },{"../../typeFields":259,"buffer":67}],233:[function(require,module,exports){
32710
32656
  (function (Buffer){(function (){
32711
32657
  'use strict';
32712
32658
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -32720,7 +32666,7 @@ function encode(data) {
32720
32666
  exports.encode = encode;
32721
32667
 
32722
32668
  }).call(this)}).call(this,require("buffer").Buffer)
32723
- },{"../../typeFields":260,"buffer":67}],235:[function(require,module,exports){
32669
+ },{"../../typeFields":259,"buffer":67}],234:[function(require,module,exports){
32724
32670
  'use strict';
32725
32671
  Object.defineProperty(exports, '__esModule', { value: true });
32726
32672
  const typeFields_1 = require('../typeFields');
@@ -32807,7 +32753,7 @@ const outputs = {
32807
32753
  };
32808
32754
  exports.outputs = outputs;
32809
32755
 
32810
- },{"../typeFields":260,"./global/globalXpub":233,"./global/unsignedTx":234,"./input/finalScriptSig":236,"./input/finalScriptWitness":237,"./input/nonWitnessUtxo":238,"./input/partialSig":239,"./input/porCommitment":240,"./input/sighashType":241,"./input/tapKeySig":242,"./input/tapLeafScript":243,"./input/tapMerkleRoot":244,"./input/tapScriptSig":245,"./input/witnessUtxo":246,"./output/tapTree":247,"./shared/bip32Derivation":248,"./shared/checkPubkey":249,"./shared/redeemScript":250,"./shared/tapBip32Derivation":251,"./shared/tapInternalKey":252,"./shared/witnessScript":253}],236:[function(require,module,exports){
32756
+ },{"../typeFields":259,"./global/globalXpub":232,"./global/unsignedTx":233,"./input/finalScriptSig":235,"./input/finalScriptWitness":236,"./input/nonWitnessUtxo":237,"./input/partialSig":238,"./input/porCommitment":239,"./input/sighashType":240,"./input/tapKeySig":241,"./input/tapLeafScript":242,"./input/tapMerkleRoot":243,"./input/tapScriptSig":244,"./input/witnessUtxo":245,"./output/tapTree":246,"./shared/bip32Derivation":247,"./shared/checkPubkey":248,"./shared/redeemScript":249,"./shared/tapBip32Derivation":250,"./shared/tapInternalKey":251,"./shared/witnessScript":252}],235:[function(require,module,exports){
32811
32757
  (function (Buffer){(function (){
32812
32758
  'use strict';
32813
32759
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -32841,7 +32787,7 @@ function canAdd(currentData, newData) {
32841
32787
  exports.canAdd = canAdd;
32842
32788
 
32843
32789
  }).call(this)}).call(this,require("buffer").Buffer)
32844
- },{"../../typeFields":260,"buffer":67}],237:[function(require,module,exports){
32790
+ },{"../../typeFields":259,"buffer":67}],236:[function(require,module,exports){
32845
32791
  (function (Buffer){(function (){
32846
32792
  'use strict';
32847
32793
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -32877,7 +32823,7 @@ function canAdd(currentData, newData) {
32877
32823
  exports.canAdd = canAdd;
32878
32824
 
32879
32825
  }).call(this)}).call(this,require("buffer").Buffer)
32880
- },{"../../typeFields":260,"buffer":67}],238:[function(require,module,exports){
32826
+ },{"../../typeFields":259,"buffer":67}],237:[function(require,module,exports){
32881
32827
  (function (Buffer){(function (){
32882
32828
  'use strict';
32883
32829
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -32910,7 +32856,7 @@ function canAdd(currentData, newData) {
32910
32856
  exports.canAdd = canAdd;
32911
32857
 
32912
32858
  }).call(this)}).call(this,require("buffer").Buffer)
32913
- },{"../../typeFields":260,"buffer":67}],239:[function(require,module,exports){
32859
+ },{"../../typeFields":259,"buffer":67}],238:[function(require,module,exports){
32914
32860
  (function (Buffer){(function (){
32915
32861
  'use strict';
32916
32862
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -32979,7 +32925,7 @@ function canAddToArray(array, item, dupeSet) {
32979
32925
  exports.canAddToArray = canAddToArray;
32980
32926
 
32981
32927
  }).call(this)}).call(this,require("buffer").Buffer)
32982
- },{"../../typeFields":260,"buffer":67}],240:[function(require,module,exports){
32928
+ },{"../../typeFields":259,"buffer":67}],239:[function(require,module,exports){
32983
32929
  (function (Buffer){(function (){
32984
32930
  'use strict';
32985
32931
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -33013,7 +32959,7 @@ function canAdd(currentData, newData) {
33013
32959
  exports.canAdd = canAdd;
33014
32960
 
33015
32961
  }).call(this)}).call(this,require("buffer").Buffer)
33016
- },{"../../typeFields":260,"buffer":67}],241:[function(require,module,exports){
32962
+ },{"../../typeFields":259,"buffer":67}],240:[function(require,module,exports){
33017
32963
  (function (Buffer){(function (){
33018
32964
  'use strict';
33019
32965
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -33049,7 +32995,7 @@ function canAdd(currentData, newData) {
33049
32995
  exports.canAdd = canAdd;
33050
32996
 
33051
32997
  }).call(this)}).call(this,require("buffer").Buffer)
33052
- },{"../../typeFields":260,"buffer":67}],242:[function(require,module,exports){
32998
+ },{"../../typeFields":259,"buffer":67}],241:[function(require,module,exports){
33053
32999
  (function (Buffer){(function (){
33054
33000
  'use strict';
33055
33001
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -33088,7 +33034,7 @@ function canAdd(currentData, newData) {
33088
33034
  exports.canAdd = canAdd;
33089
33035
 
33090
33036
  }).call(this)}).call(this,require("buffer").Buffer)
33091
- },{"../../typeFields":260,"buffer":67}],243:[function(require,module,exports){
33037
+ },{"../../typeFields":259,"buffer":67}],242:[function(require,module,exports){
33092
33038
  (function (Buffer){(function (){
33093
33039
  'use strict';
33094
33040
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -33149,7 +33095,7 @@ function canAddToArray(array, item, dupeSet) {
33149
33095
  exports.canAddToArray = canAddToArray;
33150
33096
 
33151
33097
  }).call(this)}).call(this,require("buffer").Buffer)
33152
- },{"../../typeFields":260,"buffer":67}],244:[function(require,module,exports){
33098
+ },{"../../typeFields":259,"buffer":67}],243:[function(require,module,exports){
33153
33099
  (function (Buffer){(function (){
33154
33100
  'use strict';
33155
33101
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -33186,7 +33132,7 @@ function canAdd(currentData, newData) {
33186
33132
  exports.canAdd = canAdd;
33187
33133
 
33188
33134
  }).call(this)}).call(this,require("buffer").Buffer)
33189
- },{"../../typeFields":260,"buffer":67}],245:[function(require,module,exports){
33135
+ },{"../../typeFields":259,"buffer":67}],244:[function(require,module,exports){
33190
33136
  (function (Buffer){(function (){
33191
33137
  'use strict';
33192
33138
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -33253,7 +33199,7 @@ function canAddToArray(array, item, dupeSet) {
33253
33199
  exports.canAddToArray = canAddToArray;
33254
33200
 
33255
33201
  }).call(this)}).call(this,require("buffer").Buffer)
33256
- },{"../../typeFields":260,"buffer":67}],246:[function(require,module,exports){
33202
+ },{"../../typeFields":259,"buffer":67}],245:[function(require,module,exports){
33257
33203
  (function (Buffer){(function (){
33258
33204
  'use strict';
33259
33205
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -33305,7 +33251,7 @@ function canAdd(currentData, newData) {
33305
33251
  exports.canAdd = canAdd;
33306
33252
 
33307
33253
  }).call(this)}).call(this,require("buffer").Buffer)
33308
- },{"../../typeFields":260,"../tools":254,"../varint":255,"buffer":67}],247:[function(require,module,exports){
33254
+ },{"../../typeFields":259,"../tools":253,"../varint":254,"buffer":67}],246:[function(require,module,exports){
33309
33255
  (function (Buffer){(function (){
33310
33256
  'use strict';
33311
33257
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -33374,7 +33320,7 @@ function canAdd(currentData, newData) {
33374
33320
  exports.canAdd = canAdd;
33375
33321
 
33376
33322
  }).call(this)}).call(this,require("buffer").Buffer)
33377
- },{"../../typeFields":260,"../varint":255,"buffer":67}],248:[function(require,module,exports){
33323
+ },{"../../typeFields":259,"../varint":254,"buffer":67}],247:[function(require,module,exports){
33378
33324
  (function (Buffer){(function (){
33379
33325
  'use strict';
33380
33326
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -33462,7 +33408,7 @@ function makeConverter(TYPE_BYTE, isValidPubkey = isValidDERKey) {
33462
33408
  exports.makeConverter = makeConverter;
33463
33409
 
33464
33410
  }).call(this)}).call(this,require("buffer").Buffer)
33465
- },{"buffer":67}],249:[function(require,module,exports){
33411
+ },{"buffer":67}],248:[function(require,module,exports){
33466
33412
  'use strict';
33467
33413
  Object.defineProperty(exports, '__esModule', { value: true });
33468
33414
  function makeChecker(pubkeyTypes) {
@@ -33485,7 +33431,7 @@ function makeChecker(pubkeyTypes) {
33485
33431
  }
33486
33432
  exports.makeChecker = makeChecker;
33487
33433
 
33488
- },{}],250:[function(require,module,exports){
33434
+ },{}],249:[function(require,module,exports){
33489
33435
  (function (Buffer){(function (){
33490
33436
  'use strict';
33491
33437
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -33524,7 +33470,7 @@ function makeConverter(TYPE_BYTE) {
33524
33470
  exports.makeConverter = makeConverter;
33525
33471
 
33526
33472
  }).call(this)}).call(this,require("buffer").Buffer)
33527
- },{"buffer":67}],251:[function(require,module,exports){
33473
+ },{"buffer":67}],250:[function(require,module,exports){
33528
33474
  (function (Buffer){(function (){
33529
33475
  'use strict';
33530
33476
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -33581,7 +33527,7 @@ function makeConverter(TYPE_BYTE) {
33581
33527
  exports.makeConverter = makeConverter;
33582
33528
 
33583
33529
  }).call(this)}).call(this,require("buffer").Buffer)
33584
- },{"../varint":255,"./bip32Derivation":248,"buffer":67}],252:[function(require,module,exports){
33530
+ },{"../varint":254,"./bip32Derivation":247,"buffer":67}],251:[function(require,module,exports){
33585
33531
  (function (Buffer){(function (){
33586
33532
  'use strict';
33587
33533
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -33624,7 +33570,7 @@ function makeConverter(TYPE_BYTE) {
33624
33570
  exports.makeConverter = makeConverter;
33625
33571
 
33626
33572
  }).call(this)}).call(this,require("buffer").Buffer)
33627
- },{"buffer":67}],253:[function(require,module,exports){
33573
+ },{"buffer":67}],252:[function(require,module,exports){
33628
33574
  (function (Buffer){(function (){
33629
33575
  'use strict';
33630
33576
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -33665,7 +33611,7 @@ function makeConverter(TYPE_BYTE) {
33665
33611
  exports.makeConverter = makeConverter;
33666
33612
 
33667
33613
  }).call(this)}).call(this,require("buffer").Buffer)
33668
- },{"buffer":67}],254:[function(require,module,exports){
33614
+ },{"buffer":67}],253:[function(require,module,exports){
33669
33615
  (function (Buffer){(function (){
33670
33616
  'use strict';
33671
33617
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -33732,7 +33678,7 @@ function writeUInt64LE(buffer, value, offset) {
33732
33678
  exports.writeUInt64LE = writeUInt64LE;
33733
33679
 
33734
33680
  }).call(this)}).call(this,require("buffer").Buffer)
33735
- },{"./varint":255,"buffer":67}],255:[function(require,module,exports){
33681
+ },{"./varint":254,"buffer":67}],254:[function(require,module,exports){
33736
33682
  (function (Buffer){(function (){
33737
33683
  'use strict';
33738
33684
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -33813,7 +33759,7 @@ function encodingLength(_number) {
33813
33759
  exports.encodingLength = encodingLength;
33814
33760
 
33815
33761
  }).call(this)}).call(this,require("buffer").Buffer)
33816
- },{"buffer":67}],256:[function(require,module,exports){
33762
+ },{"buffer":67}],255:[function(require,module,exports){
33817
33763
  (function (Buffer){(function (){
33818
33764
  'use strict';
33819
33765
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -34213,7 +34159,7 @@ function psbtFromKeyVals(
34213
34159
  exports.psbtFromKeyVals = psbtFromKeyVals;
34214
34160
 
34215
34161
  }).call(this)}).call(this,require("buffer").Buffer)
34216
- },{"../converter":235,"../converter/tools":254,"../converter/varint":255,"../typeFields":260,"buffer":67}],257:[function(require,module,exports){
34162
+ },{"../converter":234,"../converter/tools":253,"../converter/varint":254,"../typeFields":259,"buffer":67}],256:[function(require,module,exports){
34217
34163
  'use strict';
34218
34164
  function __export(m) {
34219
34165
  for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
@@ -34222,7 +34168,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
34222
34168
  __export(require('./fromBuffer'));
34223
34169
  __export(require('./toBuffer'));
34224
34170
 
34225
- },{"./fromBuffer":256,"./toBuffer":258}],258:[function(require,module,exports){
34171
+ },{"./fromBuffer":255,"./toBuffer":257}],257:[function(require,module,exports){
34226
34172
  (function (Buffer){(function (){
34227
34173
  'use strict';
34228
34174
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -34290,7 +34236,7 @@ function psbtToKeyVals({ globalMap, inputs, outputs }) {
34290
34236
  exports.psbtToKeyVals = psbtToKeyVals;
34291
34237
 
34292
34238
  }).call(this)}).call(this,require("buffer").Buffer)
34293
- },{"../converter":235,"../converter/tools":254,"buffer":67}],259:[function(require,module,exports){
34239
+ },{"../converter":234,"../converter/tools":253,"buffer":67}],258:[function(require,module,exports){
34294
34240
  (function (Buffer){(function (){
34295
34241
  'use strict';
34296
34242
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -34442,7 +34388,7 @@ class Psbt {
34442
34388
  exports.Psbt = Psbt;
34443
34389
 
34444
34390
  }).call(this)}).call(this,require("buffer").Buffer)
34445
- },{"./combiner":232,"./parser":257,"./typeFields":260,"./utils":261,"buffer":67}],260:[function(require,module,exports){
34391
+ },{"./combiner":231,"./parser":256,"./typeFields":259,"./utils":260,"buffer":67}],259:[function(require,module,exports){
34446
34392
  'use strict';
34447
34393
  Object.defineProperty(exports, '__esModule', { value: true });
34448
34394
  var GlobalTypes;
@@ -34508,7 +34454,7 @@ exports.OUTPUT_TYPE_NAMES = [
34508
34454
  'tapBip32Derivation',
34509
34455
  ];
34510
34456
 
34511
- },{}],261:[function(require,module,exports){
34457
+ },{}],260:[function(require,module,exports){
34512
34458
  (function (Buffer){(function (){
34513
34459
  'use strict';
34514
34460
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -34649,8 +34595,8 @@ function defaultLocktimeSetter(locktime, txBuf) {
34649
34595
  }
34650
34596
  exports.defaultLocktimeSetter = defaultLocktimeSetter;
34651
34597
 
34652
- }).call(this)}).call(this,{"isBuffer":require("../../../../../../node_modules/is-buffer/index.js")})
34653
- },{"../../../../../../node_modules/is-buffer/index.js":150,"./converter":235}],262:[function(require,module,exports){
34598
+ }).call(this)}).call(this,{"isBuffer":require("../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js")})
34599
+ },{"../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js":149,"./converter":234}],261:[function(require,module,exports){
34654
34600
  (function (Buffer){(function (){
34655
34601
  "use strict";
34656
34602
  Object.defineProperty(exports, "__esModule", { value: true });
@@ -34951,7 +34897,7 @@ function fromSeed(seed, network) {
34951
34897
  exports.fromSeed = fromSeed;
34952
34898
 
34953
34899
  }).call(this)}).call(this,require("buffer").Buffer)
34954
- },{"./crypto":263,"bs58check":317,"buffer":67,"tiny-secp256k1":386,"typeforce":390,"wif":394}],263:[function(require,module,exports){
34900
+ },{"./crypto":262,"bs58check":316,"buffer":67,"tiny-secp256k1":385,"typeforce":389,"wif":393}],262:[function(require,module,exports){
34955
34901
  "use strict";
34956
34902
  Object.defineProperty(exports, "__esModule", { value: true });
34957
34903
  const createHash = require('create-hash');
@@ -34979,7 +34925,7 @@ function hmacSHA512(key, data) {
34979
34925
  }
34980
34926
  exports.hmacSHA512 = hmacSHA512;
34981
34927
 
34982
- },{"create-hash":319,"create-hmac":321}],264:[function(require,module,exports){
34928
+ },{"create-hash":318,"create-hmac":320}],263:[function(require,module,exports){
34983
34929
  "use strict";
34984
34930
  Object.defineProperty(exports, "__esModule", { value: true });
34985
34931
  var bip32_1 = require("./bip32");
@@ -34988,7 +34934,7 @@ exports.fromBase58 = bip32_1.fromBase58;
34988
34934
  exports.fromPublicKey = bip32_1.fromPublicKey;
34989
34935
  exports.fromPrivateKey = bip32_1.fromPrivateKey;
34990
34936
 
34991
- },{"./bip32":262}],265:[function(require,module,exports){
34937
+ },{"./bip32":261}],264:[function(require,module,exports){
34992
34938
  // Reference https://github.com/bitcoin/bips/blob/master/bip-0066.mediawiki
34993
34939
  // Format: 0x30 [total-length] 0x02 [R-length] [R] 0x02 [S-length] [S]
34994
34940
  // NOTE: SIGHASH byte ignored AND restricted, truncate before use
@@ -35103,7 +35049,7 @@ module.exports = {
35103
35049
  encode: encode
35104
35050
  }
35105
35051
 
35106
- },{"safe-buffer":376}],266:[function(require,module,exports){
35052
+ },{"safe-buffer":375}],265:[function(require,module,exports){
35107
35053
  module.exports={
35108
35054
  "OP_FALSE": 0,
35109
35055
  "OP_0": 0,
@@ -35238,7 +35184,7 @@ module.exports={
35238
35184
  "OP_INVALIDOPCODE": 255
35239
35185
  }
35240
35186
 
35241
- },{}],267:[function(require,module,exports){
35187
+ },{}],266:[function(require,module,exports){
35242
35188
  var OPS = require('./index.json')
35243
35189
 
35244
35190
  var map = {}
@@ -35249,7 +35195,7 @@ for (var op in OPS) {
35249
35195
 
35250
35196
  module.exports = map
35251
35197
 
35252
- },{"./index.json":266}],268:[function(require,module,exports){
35198
+ },{"./index.json":265}],267:[function(require,module,exports){
35253
35199
  (function (Buffer){(function (){
35254
35200
  'use strict';
35255
35201
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -35344,7 +35290,7 @@ function toOutputScript(address, network) {
35344
35290
  exports.toOutputScript = toOutputScript;
35345
35291
 
35346
35292
  }).call(this)}).call(this,require("buffer").Buffer)
35347
- },{"./networks":275,"./payments":277,"./script":286,"./types":312,"bech32":231,"bs58check":317,"buffer":67,"typeforce":390}],269:[function(require,module,exports){
35293
+ },{"./networks":274,"./payments":276,"./script":285,"./types":311,"bech32":230,"bs58check":316,"buffer":67,"typeforce":389}],268:[function(require,module,exports){
35348
35294
  (function (Buffer){(function (){
35349
35295
  'use strict';
35350
35296
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -35564,7 +35510,7 @@ function anyTxHasWitness(transactions) {
35564
35510
  }
35565
35511
 
35566
35512
  }).call(this)}).call(this,require("buffer").Buffer)
35567
- },{"./bufferutils":270,"./crypto":272,"./transaction":310,"./types":312,"buffer":67,"merkle-lib/fastRoot":355,"typeforce":390,"varuint-bitcoin":393}],270:[function(require,module,exports){
35513
+ },{"./bufferutils":269,"./crypto":271,"./transaction":309,"./types":311,"buffer":67,"merkle-lib/fastRoot":354,"typeforce":389,"varuint-bitcoin":392}],269:[function(require,module,exports){
35568
35514
  (function (Buffer){(function (){
35569
35515
  'use strict';
35570
35516
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -35711,7 +35657,7 @@ class BufferReader {
35711
35657
  exports.BufferReader = BufferReader;
35712
35658
 
35713
35659
  }).call(this)}).call(this,require("buffer").Buffer)
35714
- },{"./types":312,"buffer":67,"typeforce":390,"varuint-bitcoin":393}],271:[function(require,module,exports){
35660
+ },{"./types":311,"buffer":67,"typeforce":389,"varuint-bitcoin":392}],270:[function(require,module,exports){
35715
35661
  'use strict';
35716
35662
  Object.defineProperty(exports, '__esModule', { value: true });
35717
35663
  const script_1 = require('./script');
@@ -35772,7 +35718,7 @@ function classifyWitness(script, allowIncomplete) {
35772
35718
  }
35773
35719
  exports.witness = classifyWitness;
35774
35720
 
35775
- },{"./script":286,"./templates/multisig":289,"./templates/nulldata":292,"./templates/pubkey":293,"./templates/pubkeyhash":296,"./templates/scripthash":299,"./templates/witnesscommitment":302,"./templates/witnesspubkeyhash":304,"./templates/witnessscripthash":307}],272:[function(require,module,exports){
35721
+ },{"./script":285,"./templates/multisig":288,"./templates/nulldata":291,"./templates/pubkey":292,"./templates/pubkeyhash":295,"./templates/scripthash":298,"./templates/witnesscommitment":301,"./templates/witnesspubkeyhash":303,"./templates/witnessscripthash":306}],271:[function(require,module,exports){
35776
35722
  'use strict';
35777
35723
  Object.defineProperty(exports, '__esModule', { value: true });
35778
35724
  const createHash = require('create-hash');
@@ -35809,7 +35755,7 @@ function hash256(buffer) {
35809
35755
  }
35810
35756
  exports.hash256 = hash256;
35811
35757
 
35812
- },{"create-hash":319}],273:[function(require,module,exports){
35758
+ },{"create-hash":318}],272:[function(require,module,exports){
35813
35759
  (function (Buffer){(function (){
35814
35760
  'use strict';
35815
35761
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -35920,7 +35866,7 @@ function makeRandom(options) {
35920
35866
  exports.makeRandom = makeRandom;
35921
35867
 
35922
35868
  }).call(this)}).call(this,require("buffer").Buffer)
35923
- },{"./networks":275,"./types":312,"buffer":67,"randombytes":359,"tiny-secp256k1":386,"typeforce":390,"wif":394}],274:[function(require,module,exports){
35869
+ },{"./networks":274,"./types":311,"buffer":67,"randombytes":358,"tiny-secp256k1":385,"typeforce":389,"wif":393}],273:[function(require,module,exports){
35924
35870
  'use strict';
35925
35871
  Object.defineProperty(exports, '__esModule', { value: true });
35926
35872
  const bip32 = require('bip32');
@@ -35948,7 +35894,7 @@ exports.Transaction = transaction_1.Transaction;
35948
35894
  var transaction_builder_1 = require('./transaction_builder');
35949
35895
  exports.TransactionBuilder = transaction_builder_1.TransactionBuilder;
35950
35896
 
35951
- },{"./address":268,"./block":269,"./crypto":272,"./ecpair":273,"./networks":275,"./payments":277,"./psbt":285,"./script":286,"./transaction":310,"./transaction_builder":311,"bip32":264}],275:[function(require,module,exports){
35897
+ },{"./address":267,"./block":268,"./crypto":271,"./ecpair":272,"./networks":274,"./payments":276,"./psbt":284,"./script":285,"./transaction":309,"./transaction_builder":310,"bip32":263}],274:[function(require,module,exports){
35952
35898
  'use strict';
35953
35899
  Object.defineProperty(exports, '__esModule', { value: true });
35954
35900
  exports.bitcoin = {
@@ -35985,7 +35931,7 @@ exports.testnet = {
35985
35931
  wif: 0xef,
35986
35932
  };
35987
35933
 
35988
- },{}],276:[function(require,module,exports){
35934
+ },{}],275:[function(require,module,exports){
35989
35935
  'use strict';
35990
35936
  Object.defineProperty(exports, '__esModule', { value: true });
35991
35937
  const networks_1 = require('../networks');
@@ -36036,7 +35982,7 @@ function p2data(a, opts) {
36036
35982
  }
36037
35983
  exports.p2data = p2data;
36038
35984
 
36039
- },{"../networks":275,"../script":286,"./lazy":278,"typeforce":390}],277:[function(require,module,exports){
35985
+ },{"../networks":274,"../script":285,"./lazy":277,"typeforce":389}],276:[function(require,module,exports){
36040
35986
  'use strict';
36041
35987
  Object.defineProperty(exports, '__esModule', { value: true });
36042
35988
  const embed_1 = require('./embed');
@@ -36056,7 +36002,7 @@ exports.p2wsh = p2wsh_1.p2wsh;
36056
36002
  // TODO
36057
36003
  // witness commitment
36058
36004
 
36059
- },{"./embed":276,"./p2ms":279,"./p2pk":280,"./p2pkh":281,"./p2sh":282,"./p2wpkh":283,"./p2wsh":284}],278:[function(require,module,exports){
36005
+ },{"./embed":275,"./p2ms":278,"./p2pk":279,"./p2pkh":280,"./p2sh":281,"./p2wpkh":282,"./p2wsh":283}],277:[function(require,module,exports){
36060
36006
  'use strict';
36061
36007
  Object.defineProperty(exports, '__esModule', { value: true });
36062
36008
  function prop(object, name, f) {
@@ -36089,7 +36035,7 @@ function value(f) {
36089
36035
  }
36090
36036
  exports.value = value;
36091
36037
 
36092
- },{}],279:[function(require,module,exports){
36038
+ },{}],278:[function(require,module,exports){
36093
36039
  'use strict';
36094
36040
  Object.defineProperty(exports, '__esModule', { value: true });
36095
36041
  const networks_1 = require('../networks');
@@ -36236,7 +36182,7 @@ function p2ms(a, opts) {
36236
36182
  }
36237
36183
  exports.p2ms = p2ms;
36238
36184
 
36239
- },{"../networks":275,"../script":286,"./lazy":278,"tiny-secp256k1":386,"typeforce":390}],280:[function(require,module,exports){
36185
+ },{"../networks":274,"../script":285,"./lazy":277,"tiny-secp256k1":385,"typeforce":389}],279:[function(require,module,exports){
36240
36186
  'use strict';
36241
36187
  Object.defineProperty(exports, '__esModule', { value: true });
36242
36188
  const networks_1 = require('../networks');
@@ -36310,7 +36256,7 @@ function p2pk(a, opts) {
36310
36256
  }
36311
36257
  exports.p2pk = p2pk;
36312
36258
 
36313
- },{"../networks":275,"../script":286,"./lazy":278,"tiny-secp256k1":386,"typeforce":390}],281:[function(require,module,exports){
36259
+ },{"../networks":274,"../script":285,"./lazy":277,"tiny-secp256k1":385,"typeforce":389}],280:[function(require,module,exports){
36314
36260
  (function (Buffer){(function (){
36315
36261
  'use strict';
36316
36262
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -36446,7 +36392,7 @@ function p2pkh(a, opts) {
36446
36392
  exports.p2pkh = p2pkh;
36447
36393
 
36448
36394
  }).call(this)}).call(this,require("buffer").Buffer)
36449
- },{"../crypto":272,"../networks":275,"../script":286,"./lazy":278,"bs58check":317,"buffer":67,"tiny-secp256k1":386,"typeforce":390}],282:[function(require,module,exports){
36395
+ },{"../crypto":271,"../networks":274,"../script":285,"./lazy":277,"bs58check":316,"buffer":67,"tiny-secp256k1":385,"typeforce":389}],281:[function(require,module,exports){
36450
36396
  (function (Buffer){(function (){
36451
36397
  'use strict';
36452
36398
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -36633,7 +36579,7 @@ function p2sh(a, opts) {
36633
36579
  exports.p2sh = p2sh;
36634
36580
 
36635
36581
  }).call(this)}).call(this,require("buffer").Buffer)
36636
- },{"../crypto":272,"../networks":275,"../script":286,"./lazy":278,"bs58check":317,"buffer":67,"typeforce":390}],283:[function(require,module,exports){
36582
+ },{"../crypto":271,"../networks":274,"../script":285,"./lazy":277,"bs58check":316,"buffer":67,"typeforce":389}],282:[function(require,module,exports){
36637
36583
  (function (Buffer){(function (){
36638
36584
  'use strict';
36639
36585
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -36767,7 +36713,7 @@ function p2wpkh(a, opts) {
36767
36713
  exports.p2wpkh = p2wpkh;
36768
36714
 
36769
36715
  }).call(this)}).call(this,require("buffer").Buffer)
36770
- },{"../crypto":272,"../networks":275,"../script":286,"./lazy":278,"bech32":231,"buffer":67,"tiny-secp256k1":386,"typeforce":390}],284:[function(require,module,exports){
36716
+ },{"../crypto":271,"../networks":274,"../script":285,"./lazy":277,"bech32":230,"buffer":67,"tiny-secp256k1":385,"typeforce":389}],283:[function(require,module,exports){
36771
36717
  (function (Buffer){(function (){
36772
36718
  'use strict';
36773
36719
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -36978,7 +36924,7 @@ function p2wsh(a, opts) {
36978
36924
  exports.p2wsh = p2wsh;
36979
36925
 
36980
36926
  }).call(this)}).call(this,require("buffer").Buffer)
36981
- },{"../crypto":272,"../networks":275,"../script":286,"./lazy":278,"bech32":231,"buffer":67,"tiny-secp256k1":386,"typeforce":390}],285:[function(require,module,exports){
36927
+ },{"../crypto":271,"../networks":274,"../script":285,"./lazy":277,"bech32":230,"buffer":67,"tiny-secp256k1":385,"typeforce":389}],284:[function(require,module,exports){
36982
36928
  (function (Buffer){(function (){
36983
36929
  'use strict';
36984
36930
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -38380,7 +38326,7 @@ function range(n) {
38380
38326
  }
38381
38327
 
38382
38328
  }).call(this)}).call(this,require("buffer").Buffer)
38383
- },{"./address":268,"./bufferutils":270,"./crypto":272,"./ecpair":273,"./networks":275,"./payments":277,"./script":286,"./transaction":310,"bip174":259,"bip174/src/lib/converter/varint":255,"bip174/src/lib/utils":261,"buffer":67}],286:[function(require,module,exports){
38329
+ },{"./address":267,"./bufferutils":269,"./crypto":271,"./ecpair":272,"./networks":274,"./payments":276,"./script":285,"./transaction":309,"bip174":258,"bip174/src/lib/converter/varint":254,"bip174/src/lib/utils":260,"buffer":67}],285:[function(require,module,exports){
38384
38330
  (function (Buffer){(function (){
38385
38331
  'use strict';
38386
38332
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -38561,7 +38507,7 @@ exports.number = scriptNumber;
38561
38507
  exports.signature = scriptSignature;
38562
38508
 
38563
38509
  }).call(this)}).call(this,require("buffer").Buffer)
38564
- },{"./script_number":287,"./script_signature":288,"./types":312,"bip66":265,"bitcoin-ops":266,"bitcoin-ops/map":267,"buffer":67,"pushdata-bitcoin":358,"tiny-secp256k1":386,"typeforce":390}],287:[function(require,module,exports){
38510
+ },{"./script_number":286,"./script_signature":287,"./types":311,"bip66":264,"bitcoin-ops":265,"bitcoin-ops/map":266,"buffer":67,"pushdata-bitcoin":357,"tiny-secp256k1":385,"typeforce":389}],286:[function(require,module,exports){
38565
38511
  (function (Buffer){(function (){
38566
38512
  'use strict';
38567
38513
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -38626,7 +38572,7 @@ function encode(_number) {
38626
38572
  exports.encode = encode;
38627
38573
 
38628
38574
  }).call(this)}).call(this,require("buffer").Buffer)
38629
- },{"buffer":67}],288:[function(require,module,exports){
38575
+ },{"buffer":67}],287:[function(require,module,exports){
38630
38576
  (function (Buffer){(function (){
38631
38577
  'use strict';
38632
38578
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -38682,7 +38628,7 @@ function encode(signature, hashType) {
38682
38628
  exports.encode = encode;
38683
38629
 
38684
38630
  }).call(this)}).call(this,require("buffer").Buffer)
38685
- },{"./types":312,"bip66":265,"buffer":67,"typeforce":390}],289:[function(require,module,exports){
38631
+ },{"./types":311,"bip66":264,"buffer":67,"typeforce":389}],288:[function(require,module,exports){
38686
38632
  'use strict';
38687
38633
  Object.defineProperty(exports, '__esModule', { value: true });
38688
38634
  const input = require('./input');
@@ -38690,7 +38636,7 @@ exports.input = input;
38690
38636
  const output = require('./output');
38691
38637
  exports.output = output;
38692
38638
 
38693
- },{"./input":290,"./output":291}],290:[function(require,module,exports){
38639
+ },{"./input":289,"./output":290}],289:[function(require,module,exports){
38694
38640
  'use strict';
38695
38641
  // OP_0 [signatures ...]
38696
38642
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -38715,7 +38661,7 @@ check.toJSON = () => {
38715
38661
  return 'multisig input';
38716
38662
  };
38717
38663
 
38718
- },{"../../script":286}],291:[function(require,module,exports){
38664
+ },{"../../script":285}],290:[function(require,module,exports){
38719
38665
  'use strict';
38720
38666
  // m [pubKeys ...] n OP_CHECKMULTISIG
38721
38667
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -38744,7 +38690,7 @@ check.toJSON = () => {
38744
38690
  return 'multi-sig output';
38745
38691
  };
38746
38692
 
38747
- },{"../../script":286,"../../types":312}],292:[function(require,module,exports){
38693
+ },{"../../script":285,"../../types":311}],291:[function(require,module,exports){
38748
38694
  'use strict';
38749
38695
  Object.defineProperty(exports, '__esModule', { value: true });
38750
38696
  // OP_RETURN {data}
@@ -38761,9 +38707,9 @@ check.toJSON = () => {
38761
38707
  const output = { check };
38762
38708
  exports.output = output;
38763
38709
 
38764
- },{"../script":286}],293:[function(require,module,exports){
38765
- arguments[4][289][0].apply(exports,arguments)
38766
- },{"./input":294,"./output":295,"dup":289}],294:[function(require,module,exports){
38710
+ },{"../script":285}],292:[function(require,module,exports){
38711
+ arguments[4][288][0].apply(exports,arguments)
38712
+ },{"./input":293,"./output":294,"dup":288}],293:[function(require,module,exports){
38767
38713
  'use strict';
38768
38714
  // {signature}
38769
38715
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -38777,7 +38723,7 @@ check.toJSON = () => {
38777
38723
  return 'pubKey input';
38778
38724
  };
38779
38725
 
38780
- },{"../../script":286}],295:[function(require,module,exports){
38726
+ },{"../../script":285}],294:[function(require,module,exports){
38781
38727
  'use strict';
38782
38728
  // {pubKey} OP_CHECKSIG
38783
38729
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -38796,9 +38742,9 @@ check.toJSON = () => {
38796
38742
  return 'pubKey output';
38797
38743
  };
38798
38744
 
38799
- },{"../../script":286}],296:[function(require,module,exports){
38800
- arguments[4][289][0].apply(exports,arguments)
38801
- },{"./input":297,"./output":298,"dup":289}],297:[function(require,module,exports){
38745
+ },{"../../script":285}],295:[function(require,module,exports){
38746
+ arguments[4][288][0].apply(exports,arguments)
38747
+ },{"./input":296,"./output":297,"dup":288}],296:[function(require,module,exports){
38802
38748
  'use strict';
38803
38749
  // {signature} {pubKey}
38804
38750
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -38816,7 +38762,7 @@ check.toJSON = () => {
38816
38762
  return 'pubKeyHash input';
38817
38763
  };
38818
38764
 
38819
- },{"../../script":286}],298:[function(require,module,exports){
38765
+ },{"../../script":285}],297:[function(require,module,exports){
38820
38766
  'use strict';
38821
38767
  // OP_DUP OP_HASH160 {pubKeyHash} OP_EQUALVERIFY OP_CHECKSIG
38822
38768
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -38838,9 +38784,9 @@ check.toJSON = () => {
38838
38784
  return 'pubKeyHash output';
38839
38785
  };
38840
38786
 
38841
- },{"../../script":286}],299:[function(require,module,exports){
38842
- arguments[4][289][0].apply(exports,arguments)
38843
- },{"./input":300,"./output":301,"dup":289}],300:[function(require,module,exports){
38787
+ },{"../../script":285}],298:[function(require,module,exports){
38788
+ arguments[4][288][0].apply(exports,arguments)
38789
+ },{"./input":299,"./output":300,"dup":288}],299:[function(require,module,exports){
38844
38790
  (function (Buffer){(function (){
38845
38791
  'use strict';
38846
38792
  // <scriptSig> {serialized scriptPubKey script}
@@ -38893,8 +38839,8 @@ check.toJSON = () => {
38893
38839
  return 'scriptHash input';
38894
38840
  };
38895
38841
 
38896
- }).call(this)}).call(this,{"isBuffer":require("../../../../../../../node_modules/is-buffer/index.js")})
38897
- },{"../../../../../../../node_modules/is-buffer/index.js":150,"../../script":286,"../multisig":289,"../pubkey":293,"../pubkeyhash":296,"../witnesspubkeyhash/output":306,"../witnessscripthash/output":309}],301:[function(require,module,exports){
38842
+ }).call(this)}).call(this,{"isBuffer":require("../../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js")})
38843
+ },{"../../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js":149,"../../script":285,"../multisig":288,"../pubkey":292,"../pubkeyhash":295,"../witnesspubkeyhash/output":305,"../witnessscripthash/output":308}],300:[function(require,module,exports){
38898
38844
  'use strict';
38899
38845
  // OP_HASH160 {scriptHash} OP_EQUAL
38900
38846
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -38914,13 +38860,13 @@ check.toJSON = () => {
38914
38860
  return 'scriptHash output';
38915
38861
  };
38916
38862
 
38917
- },{"../../script":286}],302:[function(require,module,exports){
38863
+ },{"../../script":285}],301:[function(require,module,exports){
38918
38864
  'use strict';
38919
38865
  Object.defineProperty(exports, '__esModule', { value: true });
38920
38866
  const output = require('./output');
38921
38867
  exports.output = output;
38922
38868
 
38923
- },{"./output":303}],303:[function(require,module,exports){
38869
+ },{"./output":302}],302:[function(require,module,exports){
38924
38870
  (function (Buffer){(function (){
38925
38871
  'use strict';
38926
38872
  // OP_RETURN {aa21a9ed} {commitment}
@@ -38958,9 +38904,9 @@ function decode(buffer) {
38958
38904
  exports.decode = decode;
38959
38905
 
38960
38906
  }).call(this)}).call(this,require("buffer").Buffer)
38961
- },{"../../script":286,"../../types":312,"buffer":67,"typeforce":390}],304:[function(require,module,exports){
38962
- arguments[4][289][0].apply(exports,arguments)
38963
- },{"./input":305,"./output":306,"dup":289}],305:[function(require,module,exports){
38907
+ },{"../../script":285,"../../types":311,"buffer":67,"typeforce":389}],303:[function(require,module,exports){
38908
+ arguments[4][288][0].apply(exports,arguments)
38909
+ },{"./input":304,"./output":305,"dup":288}],304:[function(require,module,exports){
38964
38910
  'use strict';
38965
38911
  // {signature} {pubKey}
38966
38912
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -38981,7 +38927,7 @@ check.toJSON = () => {
38981
38927
  return 'witnessPubKeyHash input';
38982
38928
  };
38983
38929
 
38984
- },{"../../script":286}],306:[function(require,module,exports){
38930
+ },{"../../script":285}],305:[function(require,module,exports){
38985
38931
  'use strict';
38986
38932
  // OP_0 {pubKeyHash}
38987
38933
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -39000,9 +38946,9 @@ check.toJSON = () => {
39000
38946
  return 'Witness pubKeyHash output';
39001
38947
  };
39002
38948
 
39003
- },{"../../script":286}],307:[function(require,module,exports){
39004
- arguments[4][289][0].apply(exports,arguments)
39005
- },{"./input":308,"./output":309,"dup":289}],308:[function(require,module,exports){
38949
+ },{"../../script":285}],306:[function(require,module,exports){
38950
+ arguments[4][288][0].apply(exports,arguments)
38951
+ },{"./input":307,"./output":308,"dup":288}],307:[function(require,module,exports){
39006
38952
  (function (Buffer){(function (){
39007
38953
  'use strict';
39008
38954
  // <scriptSig> {serialized scriptPubKey script}
@@ -39044,8 +38990,8 @@ check.toJSON = () => {
39044
38990
  return 'witnessScriptHash input';
39045
38991
  };
39046
38992
 
39047
- }).call(this)}).call(this,{"isBuffer":require("../../../../../../../node_modules/is-buffer/index.js")})
39048
- },{"../../../../../../../node_modules/is-buffer/index.js":150,"../../script":286,"../multisig":289,"../pubkey":293,"../pubkeyhash":296,"typeforce":390}],309:[function(require,module,exports){
38993
+ }).call(this)}).call(this,{"isBuffer":require("../../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js")})
38994
+ },{"../../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js":149,"../../script":285,"../multisig":288,"../pubkey":292,"../pubkeyhash":295,"typeforce":389}],308:[function(require,module,exports){
39049
38995
  'use strict';
39050
38996
  // OP_0 {scriptHash}
39051
38997
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -39064,7 +39010,7 @@ check.toJSON = () => {
39064
39010
  return 'Witness scriptHash output';
39065
39011
  };
39066
39012
 
39067
- },{"../../script":286}],310:[function(require,module,exports){
39013
+ },{"../../script":285}],309:[function(require,module,exports){
39068
39014
  (function (Buffer){(function (){
39069
39015
  'use strict';
39070
39016
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -39470,7 +39416,7 @@ Transaction.ADVANCED_TRANSACTION_FLAG = 0x01;
39470
39416
  exports.Transaction = Transaction;
39471
39417
 
39472
39418
  }).call(this)}).call(this,require("buffer").Buffer)
39473
- },{"./bufferutils":270,"./crypto":272,"./script":286,"./types":312,"buffer":67,"typeforce":390,"varuint-bitcoin":393}],311:[function(require,module,exports){
39419
+ },{"./bufferutils":269,"./crypto":271,"./script":285,"./types":311,"buffer":67,"typeforce":389,"varuint-bitcoin":392}],310:[function(require,module,exports){
39474
39420
  (function (Buffer){(function (){
39475
39421
  'use strict';
39476
39422
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -40539,7 +40485,7 @@ function getSigningData(
40539
40485
  }
40540
40486
 
40541
40487
  }).call(this)}).call(this,require("buffer").Buffer)
40542
- },{"./address":268,"./bufferutils":270,"./classify":271,"./crypto":272,"./ecpair":273,"./networks":275,"./payments":277,"./script":286,"./transaction":310,"./types":312,"buffer":67,"typeforce":390}],312:[function(require,module,exports){
40488
+ },{"./address":267,"./bufferutils":269,"./classify":270,"./crypto":271,"./ecpair":272,"./networks":274,"./payments":276,"./script":285,"./transaction":309,"./types":311,"buffer":67,"typeforce":389}],311:[function(require,module,exports){
40543
40489
  'use strict';
40544
40490
  Object.defineProperty(exports, '__esModule', { value: true });
40545
40491
  const typeforce = require('typeforce');
@@ -40599,17 +40545,17 @@ exports.BufferN = typeforce.BufferN;
40599
40545
  exports.Null = typeforce.Null;
40600
40546
  exports.oneOf = typeforce.oneOf;
40601
40547
 
40602
- },{"typeforce":390}],313:[function(require,module,exports){
40548
+ },{"typeforce":389}],312:[function(require,module,exports){
40603
40549
  arguments[4][15][0].apply(exports,arguments)
40604
- },{"buffer":24,"dup":15}],314:[function(require,module,exports){
40550
+ },{"buffer":24,"dup":15}],313:[function(require,module,exports){
40605
40551
  arguments[4][23][0].apply(exports,arguments)
40606
- },{"crypto":24,"dup":23}],315:[function(require,module,exports){
40552
+ },{"crypto":24,"dup":23}],314:[function(require,module,exports){
40607
40553
  var basex = require('base-x')
40608
40554
  var ALPHABET = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz'
40609
40555
 
40610
40556
  module.exports = basex(ALPHABET)
40611
40557
 
40612
- },{"base-x":230}],316:[function(require,module,exports){
40558
+ },{"base-x":229}],315:[function(require,module,exports){
40613
40559
  'use strict'
40614
40560
 
40615
40561
  var base58 = require('bs58')
@@ -40661,7 +40607,7 @@ module.exports = function (checksumFn) {
40661
40607
  }
40662
40608
  }
40663
40609
 
40664
- },{"bs58":315,"safe-buffer":376}],317:[function(require,module,exports){
40610
+ },{"bs58":314,"safe-buffer":375}],316:[function(require,module,exports){
40665
40611
  'use strict'
40666
40612
 
40667
40613
  var createHash = require('create-hash')
@@ -40675,81 +40621,81 @@ function sha256x2 (buffer) {
40675
40621
 
40676
40622
  module.exports = bs58checkBase(sha256x2)
40677
40623
 
40678
- },{"./base":316,"create-hash":319}],318:[function(require,module,exports){
40624
+ },{"./base":315,"create-hash":318}],317:[function(require,module,exports){
40679
40625
  arguments[4][71][0].apply(exports,arguments)
40680
- },{"dup":71,"inherits":353,"safe-buffer":376,"stream":192,"string_decoder":207}],319:[function(require,module,exports){
40626
+ },{"dup":71,"inherits":352,"safe-buffer":375,"stream":192,"string_decoder":207}],318:[function(require,module,exports){
40681
40627
  arguments[4][74][0].apply(exports,arguments)
40682
- },{"cipher-base":318,"dup":74,"inherits":353,"md5.js":354,"ripemd160":375,"sha.js":378}],320:[function(require,module,exports){
40628
+ },{"cipher-base":317,"dup":74,"inherits":352,"md5.js":353,"ripemd160":374,"sha.js":377}],319:[function(require,module,exports){
40683
40629
  arguments[4][75][0].apply(exports,arguments)
40684
- },{"dup":75,"md5.js":354}],321:[function(require,module,exports){
40630
+ },{"dup":75,"md5.js":353}],320:[function(require,module,exports){
40685
40631
  arguments[4][76][0].apply(exports,arguments)
40686
- },{"./legacy":322,"cipher-base":318,"create-hash/md5":320,"dup":76,"inherits":353,"ripemd160":375,"safe-buffer":376,"sha.js":378}],322:[function(require,module,exports){
40632
+ },{"./legacy":321,"cipher-base":317,"create-hash/md5":319,"dup":76,"inherits":352,"ripemd160":374,"safe-buffer":375,"sha.js":377}],321:[function(require,module,exports){
40687
40633
  arguments[4][77][0].apply(exports,arguments)
40688
- },{"cipher-base":318,"dup":77,"inherits":353,"safe-buffer":376}],323:[function(require,module,exports){
40634
+ },{"cipher-base":317,"dup":77,"inherits":352,"safe-buffer":375}],322:[function(require,module,exports){
40689
40635
  arguments[4][90][0].apply(exports,arguments)
40690
- },{"../package.json":338,"./elliptic/curve":326,"./elliptic/curves":329,"./elliptic/ec":330,"./elliptic/eddsa":333,"./elliptic/utils":337,"brorand":314,"dup":90}],324:[function(require,module,exports){
40636
+ },{"../package.json":337,"./elliptic/curve":325,"./elliptic/curves":328,"./elliptic/ec":329,"./elliptic/eddsa":332,"./elliptic/utils":336,"brorand":313,"dup":90}],323:[function(require,module,exports){
40691
40637
  arguments[4][91][0].apply(exports,arguments)
40692
- },{"../utils":337,"bn.js":313,"dup":91}],325:[function(require,module,exports){
40638
+ },{"../utils":336,"bn.js":312,"dup":91}],324:[function(require,module,exports){
40693
40639
  arguments[4][92][0].apply(exports,arguments)
40694
- },{"../utils":337,"./base":324,"bn.js":313,"dup":92,"inherits":353}],326:[function(require,module,exports){
40640
+ },{"../utils":336,"./base":323,"bn.js":312,"dup":92,"inherits":352}],325:[function(require,module,exports){
40695
40641
  arguments[4][93][0].apply(exports,arguments)
40696
- },{"./base":324,"./edwards":325,"./mont":327,"./short":328,"dup":93}],327:[function(require,module,exports){
40642
+ },{"./base":323,"./edwards":324,"./mont":326,"./short":327,"dup":93}],326:[function(require,module,exports){
40697
40643
  arguments[4][94][0].apply(exports,arguments)
40698
- },{"../utils":337,"./base":324,"bn.js":313,"dup":94,"inherits":353}],328:[function(require,module,exports){
40644
+ },{"../utils":336,"./base":323,"bn.js":312,"dup":94,"inherits":352}],327:[function(require,module,exports){
40699
40645
  arguments[4][95][0].apply(exports,arguments)
40700
- },{"../utils":337,"./base":324,"bn.js":313,"dup":95,"inherits":353}],329:[function(require,module,exports){
40646
+ },{"../utils":336,"./base":323,"bn.js":312,"dup":95,"inherits":352}],328:[function(require,module,exports){
40701
40647
  arguments[4][96][0].apply(exports,arguments)
40702
- },{"./curve":326,"./precomputed/secp256k1":336,"./utils":337,"dup":96,"hash.js":340}],330:[function(require,module,exports){
40648
+ },{"./curve":325,"./precomputed/secp256k1":335,"./utils":336,"dup":96,"hash.js":339}],329:[function(require,module,exports){
40703
40649
  arguments[4][97][0].apply(exports,arguments)
40704
- },{"../curves":329,"../utils":337,"./key":331,"./signature":332,"bn.js":313,"brorand":314,"dup":97,"hmac-drbg":352}],331:[function(require,module,exports){
40650
+ },{"../curves":328,"../utils":336,"./key":330,"./signature":331,"bn.js":312,"brorand":313,"dup":97,"hmac-drbg":351}],330:[function(require,module,exports){
40705
40651
  arguments[4][98][0].apply(exports,arguments)
40706
- },{"../utils":337,"bn.js":313,"dup":98}],332:[function(require,module,exports){
40652
+ },{"../utils":336,"bn.js":312,"dup":98}],331:[function(require,module,exports){
40707
40653
  arguments[4][99][0].apply(exports,arguments)
40708
- },{"../utils":337,"bn.js":313,"dup":99}],333:[function(require,module,exports){
40654
+ },{"../utils":336,"bn.js":312,"dup":99}],332:[function(require,module,exports){
40709
40655
  arguments[4][100][0].apply(exports,arguments)
40710
- },{"../curves":329,"../utils":337,"./key":334,"./signature":335,"dup":100,"hash.js":340}],334:[function(require,module,exports){
40656
+ },{"../curves":328,"../utils":336,"./key":333,"./signature":334,"dup":100,"hash.js":339}],333:[function(require,module,exports){
40711
40657
  arguments[4][101][0].apply(exports,arguments)
40712
- },{"../utils":337,"dup":101}],335:[function(require,module,exports){
40658
+ },{"../utils":336,"dup":101}],334:[function(require,module,exports){
40713
40659
  arguments[4][102][0].apply(exports,arguments)
40714
- },{"../utils":337,"bn.js":313,"dup":102}],336:[function(require,module,exports){
40660
+ },{"../utils":336,"bn.js":312,"dup":102}],335:[function(require,module,exports){
40715
40661
  arguments[4][103][0].apply(exports,arguments)
40716
- },{"dup":103}],337:[function(require,module,exports){
40662
+ },{"dup":103}],336:[function(require,module,exports){
40717
40663
  arguments[4][104][0].apply(exports,arguments)
40718
- },{"bn.js":313,"dup":104,"minimalistic-assert":356,"minimalistic-crypto-utils":357}],338:[function(require,module,exports){
40664
+ },{"bn.js":312,"dup":104,"minimalistic-assert":355,"minimalistic-crypto-utils":356}],337:[function(require,module,exports){
40719
40665
  arguments[4][106][0].apply(exports,arguments)
40720
- },{"dup":106}],339:[function(require,module,exports){
40666
+ },{"dup":106}],338:[function(require,module,exports){
40721
40667
  arguments[4][118][0].apply(exports,arguments)
40722
- },{"dup":118,"inherits":353,"readable-stream":374,"safe-buffer":376}],340:[function(require,module,exports){
40668
+ },{"dup":118,"inherits":352,"readable-stream":373,"safe-buffer":375}],339:[function(require,module,exports){
40723
40669
  arguments[4][134][0].apply(exports,arguments)
40724
- },{"./hash/common":341,"./hash/hmac":342,"./hash/ripemd":343,"./hash/sha":344,"./hash/utils":351,"dup":134}],341:[function(require,module,exports){
40670
+ },{"./hash/common":340,"./hash/hmac":341,"./hash/ripemd":342,"./hash/sha":343,"./hash/utils":350,"dup":134}],340:[function(require,module,exports){
40725
40671
  arguments[4][135][0].apply(exports,arguments)
40726
- },{"./utils":351,"dup":135,"minimalistic-assert":356}],342:[function(require,module,exports){
40672
+ },{"./utils":350,"dup":135,"minimalistic-assert":355}],341:[function(require,module,exports){
40727
40673
  arguments[4][136][0].apply(exports,arguments)
40728
- },{"./utils":351,"dup":136,"minimalistic-assert":356}],343:[function(require,module,exports){
40674
+ },{"./utils":350,"dup":136,"minimalistic-assert":355}],342:[function(require,module,exports){
40729
40675
  arguments[4][137][0].apply(exports,arguments)
40730
- },{"./common":341,"./utils":351,"dup":137}],344:[function(require,module,exports){
40676
+ },{"./common":340,"./utils":350,"dup":137}],343:[function(require,module,exports){
40731
40677
  arguments[4][138][0].apply(exports,arguments)
40732
- },{"./sha/1":345,"./sha/224":346,"./sha/256":347,"./sha/384":348,"./sha/512":349,"dup":138}],345:[function(require,module,exports){
40678
+ },{"./sha/1":344,"./sha/224":345,"./sha/256":346,"./sha/384":347,"./sha/512":348,"dup":138}],344:[function(require,module,exports){
40733
40679
  arguments[4][139][0].apply(exports,arguments)
40734
- },{"../common":341,"../utils":351,"./common":350,"dup":139}],346:[function(require,module,exports){
40680
+ },{"../common":340,"../utils":350,"./common":349,"dup":139}],345:[function(require,module,exports){
40735
40681
  arguments[4][140][0].apply(exports,arguments)
40736
- },{"../utils":351,"./256":347,"dup":140}],347:[function(require,module,exports){
40682
+ },{"../utils":350,"./256":346,"dup":140}],346:[function(require,module,exports){
40737
40683
  arguments[4][141][0].apply(exports,arguments)
40738
- },{"../common":341,"../utils":351,"./common":350,"dup":141,"minimalistic-assert":356}],348:[function(require,module,exports){
40684
+ },{"../common":340,"../utils":350,"./common":349,"dup":141,"minimalistic-assert":355}],347:[function(require,module,exports){
40739
40685
  arguments[4][142][0].apply(exports,arguments)
40740
- },{"../utils":351,"./512":349,"dup":142}],349:[function(require,module,exports){
40686
+ },{"../utils":350,"./512":348,"dup":142}],348:[function(require,module,exports){
40741
40687
  arguments[4][143][0].apply(exports,arguments)
40742
- },{"../common":341,"../utils":351,"dup":143,"minimalistic-assert":356}],350:[function(require,module,exports){
40688
+ },{"../common":340,"../utils":350,"dup":143,"minimalistic-assert":355}],349:[function(require,module,exports){
40743
40689
  arguments[4][144][0].apply(exports,arguments)
40744
- },{"../utils":351,"dup":144}],351:[function(require,module,exports){
40690
+ },{"../utils":350,"dup":144}],350:[function(require,module,exports){
40745
40691
  arguments[4][145][0].apply(exports,arguments)
40746
- },{"dup":145,"inherits":353,"minimalistic-assert":356}],352:[function(require,module,exports){
40692
+ },{"dup":145,"inherits":352,"minimalistic-assert":355}],351:[function(require,module,exports){
40747
40693
  arguments[4][146][0].apply(exports,arguments)
40748
- },{"dup":146,"hash.js":340,"minimalistic-assert":356,"minimalistic-crypto-utils":357}],353:[function(require,module,exports){
40694
+ },{"dup":146,"hash.js":339,"minimalistic-assert":355,"minimalistic-crypto-utils":356}],352:[function(require,module,exports){
40749
40695
  arguments[4][148][0].apply(exports,arguments)
40750
- },{"dup":148}],354:[function(require,module,exports){
40696
+ },{"dup":148}],353:[function(require,module,exports){
40751
40697
  arguments[4][154][0].apply(exports,arguments)
40752
- },{"dup":154,"hash-base":339,"inherits":353,"safe-buffer":376}],355:[function(require,module,exports){
40698
+ },{"dup":154,"hash-base":338,"inherits":352,"safe-buffer":375}],354:[function(require,module,exports){
40753
40699
  (function (Buffer){(function (){
40754
40700
  // constant-space merkle root calculation algorithm
40755
40701
  module.exports = function fastRoot (values, digestFn) {
@@ -40777,11 +40723,11 @@ module.exports = function fastRoot (values, digestFn) {
40777
40723
  }
40778
40724
 
40779
40725
  }).call(this)}).call(this,require("buffer").Buffer)
40780
- },{"buffer":67}],356:[function(require,module,exports){
40726
+ },{"buffer":67}],355:[function(require,module,exports){
40781
40727
  arguments[4][157][0].apply(exports,arguments)
40782
- },{"dup":157}],357:[function(require,module,exports){
40728
+ },{"dup":157}],356:[function(require,module,exports){
40783
40729
  arguments[4][158][0].apply(exports,arguments)
40784
- },{"dup":158}],358:[function(require,module,exports){
40730
+ },{"dup":158}],357:[function(require,module,exports){
40785
40731
  var OPS = require('bitcoin-ops')
40786
40732
 
40787
40733
  function encodingLength (i) {
@@ -40860,61 +40806,61 @@ module.exports = {
40860
40806
  decode: decode
40861
40807
  }
40862
40808
 
40863
- },{"bitcoin-ops":266}],359:[function(require,module,exports){
40809
+ },{"bitcoin-ops":265}],358:[function(require,module,exports){
40864
40810
  arguments[4][179][0].apply(exports,arguments)
40865
- },{"_process":171,"dup":179,"safe-buffer":376}],360:[function(require,module,exports){
40811
+ },{"_process":171,"dup":179,"safe-buffer":375}],359:[function(require,module,exports){
40866
40812
  arguments[4][52][0].apply(exports,arguments)
40867
- },{"dup":52}],361:[function(require,module,exports){
40813
+ },{"dup":52}],360:[function(require,module,exports){
40868
40814
  arguments[4][53][0].apply(exports,arguments)
40869
- },{"./_stream_readable":363,"./_stream_writable":365,"_process":171,"dup":53,"inherits":353}],362:[function(require,module,exports){
40815
+ },{"./_stream_readable":362,"./_stream_writable":364,"_process":171,"dup":53,"inherits":352}],361:[function(require,module,exports){
40870
40816
  arguments[4][54][0].apply(exports,arguments)
40871
- },{"./_stream_transform":364,"dup":54,"inherits":353}],363:[function(require,module,exports){
40817
+ },{"./_stream_transform":363,"dup":54,"inherits":352}],362:[function(require,module,exports){
40872
40818
  arguments[4][55][0].apply(exports,arguments)
40873
- },{"../errors":360,"./_stream_duplex":361,"./internal/streams/async_iterator":366,"./internal/streams/buffer_list":367,"./internal/streams/destroy":368,"./internal/streams/from":370,"./internal/streams/state":372,"./internal/streams/stream":373,"_process":171,"buffer":67,"dup":55,"events":107,"inherits":353,"string_decoder/":385,"util":24}],364:[function(require,module,exports){
40819
+ },{"../errors":359,"./_stream_duplex":360,"./internal/streams/async_iterator":365,"./internal/streams/buffer_list":366,"./internal/streams/destroy":367,"./internal/streams/from":369,"./internal/streams/state":371,"./internal/streams/stream":372,"_process":171,"buffer":67,"dup":55,"events":107,"inherits":352,"string_decoder/":384,"util":24}],363:[function(require,module,exports){
40874
40820
  arguments[4][56][0].apply(exports,arguments)
40875
- },{"../errors":360,"./_stream_duplex":361,"dup":56,"inherits":353}],365:[function(require,module,exports){
40821
+ },{"../errors":359,"./_stream_duplex":360,"dup":56,"inherits":352}],364:[function(require,module,exports){
40876
40822
  arguments[4][57][0].apply(exports,arguments)
40877
- },{"../errors":360,"./_stream_duplex":361,"./internal/streams/destroy":368,"./internal/streams/state":372,"./internal/streams/stream":373,"_process":171,"buffer":67,"dup":57,"inherits":353,"util-deprecate":392}],366:[function(require,module,exports){
40823
+ },{"../errors":359,"./_stream_duplex":360,"./internal/streams/destroy":367,"./internal/streams/state":371,"./internal/streams/stream":372,"_process":171,"buffer":67,"dup":57,"inherits":352,"util-deprecate":391}],365:[function(require,module,exports){
40878
40824
  arguments[4][58][0].apply(exports,arguments)
40879
- },{"./end-of-stream":369,"_process":171,"dup":58}],367:[function(require,module,exports){
40825
+ },{"./end-of-stream":368,"_process":171,"dup":58}],366:[function(require,module,exports){
40880
40826
  arguments[4][59][0].apply(exports,arguments)
40881
- },{"buffer":67,"dup":59,"util":24}],368:[function(require,module,exports){
40827
+ },{"buffer":67,"dup":59,"util":24}],367:[function(require,module,exports){
40882
40828
  arguments[4][60][0].apply(exports,arguments)
40883
- },{"_process":171,"dup":60}],369:[function(require,module,exports){
40829
+ },{"_process":171,"dup":60}],368:[function(require,module,exports){
40884
40830
  arguments[4][61][0].apply(exports,arguments)
40885
- },{"../../../errors":360,"dup":61}],370:[function(require,module,exports){
40831
+ },{"../../../errors":359,"dup":61}],369:[function(require,module,exports){
40886
40832
  arguments[4][62][0].apply(exports,arguments)
40887
- },{"dup":62}],371:[function(require,module,exports){
40833
+ },{"dup":62}],370:[function(require,module,exports){
40888
40834
  arguments[4][63][0].apply(exports,arguments)
40889
- },{"../../../errors":360,"./end-of-stream":369,"dup":63}],372:[function(require,module,exports){
40835
+ },{"../../../errors":359,"./end-of-stream":368,"dup":63}],371:[function(require,module,exports){
40890
40836
  arguments[4][64][0].apply(exports,arguments)
40891
- },{"../../../errors":360,"dup":64}],373:[function(require,module,exports){
40837
+ },{"../../../errors":359,"dup":64}],372:[function(require,module,exports){
40892
40838
  arguments[4][65][0].apply(exports,arguments)
40893
- },{"dup":65,"events":107}],374:[function(require,module,exports){
40839
+ },{"dup":65,"events":107}],373:[function(require,module,exports){
40894
40840
  arguments[4][66][0].apply(exports,arguments)
40895
- },{"./lib/_stream_duplex.js":361,"./lib/_stream_passthrough.js":362,"./lib/_stream_readable.js":363,"./lib/_stream_transform.js":364,"./lib/_stream_writable.js":365,"./lib/internal/streams/end-of-stream.js":369,"./lib/internal/streams/pipeline.js":371,"dup":66}],375:[function(require,module,exports){
40841
+ },{"./lib/_stream_duplex.js":360,"./lib/_stream_passthrough.js":361,"./lib/_stream_readable.js":362,"./lib/_stream_transform.js":363,"./lib/_stream_writable.js":364,"./lib/internal/streams/end-of-stream.js":368,"./lib/internal/streams/pipeline.js":370,"dup":66}],374:[function(require,module,exports){
40896
40842
  arguments[4][181][0].apply(exports,arguments)
40897
- },{"buffer":67,"dup":181,"hash-base":339,"inherits":353}],376:[function(require,module,exports){
40843
+ },{"buffer":67,"dup":181,"hash-base":338,"inherits":352}],375:[function(require,module,exports){
40898
40844
  arguments[4][182][0].apply(exports,arguments)
40899
- },{"buffer":67,"dup":182}],377:[function(require,module,exports){
40845
+ },{"buffer":67,"dup":182}],376:[function(require,module,exports){
40900
40846
  arguments[4][184][0].apply(exports,arguments)
40901
- },{"dup":184,"safe-buffer":376}],378:[function(require,module,exports){
40847
+ },{"dup":184,"safe-buffer":375}],377:[function(require,module,exports){
40902
40848
  arguments[4][185][0].apply(exports,arguments)
40903
- },{"./sha":379,"./sha1":380,"./sha224":381,"./sha256":382,"./sha384":383,"./sha512":384,"dup":185}],379:[function(require,module,exports){
40849
+ },{"./sha":378,"./sha1":379,"./sha224":380,"./sha256":381,"./sha384":382,"./sha512":383,"dup":185}],378:[function(require,module,exports){
40904
40850
  arguments[4][186][0].apply(exports,arguments)
40905
- },{"./hash":377,"dup":186,"inherits":353,"safe-buffer":376}],380:[function(require,module,exports){
40851
+ },{"./hash":376,"dup":186,"inherits":352,"safe-buffer":375}],379:[function(require,module,exports){
40906
40852
  arguments[4][187][0].apply(exports,arguments)
40907
- },{"./hash":377,"dup":187,"inherits":353,"safe-buffer":376}],381:[function(require,module,exports){
40853
+ },{"./hash":376,"dup":187,"inherits":352,"safe-buffer":375}],380:[function(require,module,exports){
40908
40854
  arguments[4][188][0].apply(exports,arguments)
40909
- },{"./hash":377,"./sha256":382,"dup":188,"inherits":353,"safe-buffer":376}],382:[function(require,module,exports){
40855
+ },{"./hash":376,"./sha256":381,"dup":188,"inherits":352,"safe-buffer":375}],381:[function(require,module,exports){
40910
40856
  arguments[4][189][0].apply(exports,arguments)
40911
- },{"./hash":377,"dup":189,"inherits":353,"safe-buffer":376}],383:[function(require,module,exports){
40857
+ },{"./hash":376,"dup":189,"inherits":352,"safe-buffer":375}],382:[function(require,module,exports){
40912
40858
  arguments[4][190][0].apply(exports,arguments)
40913
- },{"./hash":377,"./sha512":384,"dup":190,"inherits":353,"safe-buffer":376}],384:[function(require,module,exports){
40859
+ },{"./hash":376,"./sha512":383,"dup":190,"inherits":352,"safe-buffer":375}],383:[function(require,module,exports){
40914
40860
  arguments[4][191][0].apply(exports,arguments)
40915
- },{"./hash":377,"dup":191,"inherits":353,"safe-buffer":376}],385:[function(require,module,exports){
40861
+ },{"./hash":376,"dup":191,"inherits":352,"safe-buffer":375}],384:[function(require,module,exports){
40916
40862
  arguments[4][207][0].apply(exports,arguments)
40917
- },{"dup":207,"safe-buffer":376}],386:[function(require,module,exports){
40863
+ },{"dup":207,"safe-buffer":375}],385:[function(require,module,exports){
40918
40864
  (function (Buffer){(function (){
40919
40865
  const BN = require('bn.js')
40920
40866
  const EC = require('elliptic').ec
@@ -41200,7 +41146,7 @@ module.exports = {
41200
41146
  }
41201
41147
 
41202
41148
  }).call(this)}).call(this,require("buffer").Buffer)
41203
- },{"./rfc6979":387,"bn.js":313,"buffer":67,"elliptic":323}],387:[function(require,module,exports){
41149
+ },{"./rfc6979":386,"bn.js":312,"buffer":67,"elliptic":322}],386:[function(require,module,exports){
41204
41150
  (function (Buffer){(function (){
41205
41151
  const createHmac = require('create-hmac')
41206
41152
 
@@ -41266,7 +41212,7 @@ function deterministicGenerateK (hash, x, checkSig, isPrivate, extraEntropy) {
41266
41212
  module.exports = deterministicGenerateK
41267
41213
 
41268
41214
  }).call(this)}).call(this,require("buffer").Buffer)
41269
- },{"buffer":67,"create-hmac":321}],388:[function(require,module,exports){
41215
+ },{"buffer":67,"create-hmac":320}],387:[function(require,module,exports){
41270
41216
  var native = require('./native')
41271
41217
 
41272
41218
  function getTypeName (fn) {
@@ -41378,7 +41324,7 @@ module.exports = {
41378
41324
  getValueTypeName: getValueTypeName
41379
41325
  }
41380
41326
 
41381
- },{"./native":391}],389:[function(require,module,exports){
41327
+ },{"./native":390}],388:[function(require,module,exports){
41382
41328
  (function (Buffer){(function (){
41383
41329
  var NATIVE = require('./native')
41384
41330
  var ERRORS = require('./errors')
@@ -41472,8 +41418,8 @@ for (var typeName in types) {
41472
41418
 
41473
41419
  module.exports = types
41474
41420
 
41475
- }).call(this)}).call(this,{"isBuffer":require("../../../../node_modules/is-buffer/index.js")})
41476
- },{"../../../../node_modules/is-buffer/index.js":150,"./errors":388,"./native":391}],390:[function(require,module,exports){
41421
+ }).call(this)}).call(this,{"isBuffer":require("../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js")})
41422
+ },{"../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js":149,"./errors":387,"./native":390}],389:[function(require,module,exports){
41477
41423
  var ERRORS = require('./errors')
41478
41424
  var NATIVE = require('./native')
41479
41425
 
@@ -41735,7 +41681,7 @@ typeforce.TfPropertyTypeError = TfPropertyTypeError
41735
41681
 
41736
41682
  module.exports = typeforce
41737
41683
 
41738
- },{"./errors":388,"./extra":389,"./native":391}],391:[function(require,module,exports){
41684
+ },{"./errors":387,"./extra":388,"./native":390}],390:[function(require,module,exports){
41739
41685
  var types = {
41740
41686
  Array: function (value) { return value !== null && value !== undefined && value.constructor === Array },
41741
41687
  Boolean: function (value) { return typeof value === 'boolean' },
@@ -41758,9 +41704,9 @@ for (var typeName in types) {
41758
41704
 
41759
41705
  module.exports = types
41760
41706
 
41761
- },{}],392:[function(require,module,exports){
41762
- arguments[4][209][0].apply(exports,arguments)
41763
- },{"dup":209}],393:[function(require,module,exports){
41707
+ },{}],391:[function(require,module,exports){
41708
+ arguments[4][208][0].apply(exports,arguments)
41709
+ },{"dup":208}],392:[function(require,module,exports){
41764
41710
  'use strict'
41765
41711
  var Buffer = require('safe-buffer').Buffer
41766
41712
 
@@ -41852,7 +41798,7 @@ function encodingLength (number) {
41852
41798
 
41853
41799
  module.exports = { encode: encode, decode: decode, encodingLength: encodingLength }
41854
41800
 
41855
- },{"safe-buffer":376}],394:[function(require,module,exports){
41801
+ },{"safe-buffer":375}],393:[function(require,module,exports){
41856
41802
  (function (Buffer){(function (){
41857
41803
  var bs58check = require('bs58check')
41858
41804
 
@@ -41919,7 +41865,7 @@ module.exports = {
41919
41865
  }
41920
41866
 
41921
41867
  }).call(this)}).call(this,require("buffer").Buffer)
41922
- },{"bs58check":317,"buffer":67}],395:[function(require,module,exports){
41868
+ },{"bs58check":316,"buffer":67}],394:[function(require,module,exports){
41923
41869
  "use strict";
41924
41870
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
41925
41871
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
@@ -42039,7 +41985,7 @@ var Action = /** @class */ (function () {
42039
41985
  }());
42040
41986
  exports.Action = Action;
42041
41987
 
42042
- },{"../errors":611,"../errors/coinlib-error":610,"./StateMachine":399}],396:[function(require,module,exports){
41988
+ },{"../errors":610,"../errors/coinlib-error":609,"./StateMachine":398}],395:[function(require,module,exports){
42043
41989
  "use strict";
42044
41990
  var __extends = (this && this.__extends) || (function () {
42045
41991
  var extendStatics = function (d, b) {
@@ -42135,7 +42081,7 @@ var LinkedAction = /** @class */ (function (_super) {
42135
42081
  }(Action_1.Action));
42136
42082
  exports.LinkedAction = LinkedAction;
42137
42083
 
42138
- },{"./Action":395}],397:[function(require,module,exports){
42084
+ },{"./Action":394}],396:[function(require,module,exports){
42139
42085
  "use strict";
42140
42086
  var __extends = (this && this.__extends) || (function () {
42141
42087
  var extendStatics = function (d, b) {
@@ -42228,7 +42174,7 @@ var RepeatableAction = /** @class */ (function (_super) {
42228
42174
  }(Action_1.Action));
42229
42175
  exports.RepeatableAction = RepeatableAction;
42230
42176
 
42231
- },{"./Action":395}],398:[function(require,module,exports){
42177
+ },{"./Action":394}],397:[function(require,module,exports){
42232
42178
  "use strict";
42233
42179
  var __extends = (this && this.__extends) || (function () {
42234
42180
  var extendStatics = function (d, b) {
@@ -42309,7 +42255,7 @@ var SimpleAction = /** @class */ (function (_super) {
42309
42255
  }(Action_1.Action));
42310
42256
  exports.SimpleAction = SimpleAction;
42311
42257
 
42312
- },{"./Action":395}],399:[function(require,module,exports){
42258
+ },{"./Action":394}],398:[function(require,module,exports){
42313
42259
  "use strict";
42314
42260
  Object.defineProperty(exports, "__esModule", { value: true });
42315
42261
  exports.StateMachine = void 0;
@@ -42352,9 +42298,9 @@ var StateMachine = /** @class */ (function () {
42352
42298
  }());
42353
42299
  exports.StateMachine = StateMachine;
42354
42300
 
42355
- },{"../errors":611,"../errors/coinlib-error":610}],400:[function(require,module,exports){
42301
+ },{"../errors":610,"../errors/coinlib-error":609}],399:[function(require,module,exports){
42356
42302
  module.exports = require('./lib/axios');
42357
- },{"./lib/axios":402}],401:[function(require,module,exports){
42303
+ },{"./lib/axios":401}],400:[function(require,module,exports){
42358
42304
  'use strict';
42359
42305
 
42360
42306
  var utils = require('./../utils');
@@ -42530,7 +42476,7 @@ module.exports = function xhrAdapter(config) {
42530
42476
  });
42531
42477
  };
42532
42478
 
42533
- },{"../core/createError":408,"./../core/settle":412,"./../helpers/buildURL":416,"./../helpers/cookies":418,"./../helpers/isURLSameOrigin":420,"./../helpers/parseHeaders":422,"./../utils":424}],402:[function(require,module,exports){
42479
+ },{"../core/createError":407,"./../core/settle":411,"./../helpers/buildURL":415,"./../helpers/cookies":417,"./../helpers/isURLSameOrigin":419,"./../helpers/parseHeaders":421,"./../utils":423}],401:[function(require,module,exports){
42534
42480
  'use strict';
42535
42481
 
42536
42482
  var utils = require('./utils');
@@ -42585,7 +42531,7 @@ module.exports = axios;
42585
42531
  // Allow use of default import syntax in TypeScript
42586
42532
  module.exports.default = axios;
42587
42533
 
42588
- },{"./cancel/Cancel":403,"./cancel/CancelToken":404,"./cancel/isCancel":405,"./core/Axios":406,"./core/mergeConfig":411,"./defaults":414,"./helpers/bind":415,"./helpers/spread":423,"./utils":424}],403:[function(require,module,exports){
42534
+ },{"./cancel/Cancel":402,"./cancel/CancelToken":403,"./cancel/isCancel":404,"./core/Axios":405,"./core/mergeConfig":410,"./defaults":413,"./helpers/bind":414,"./helpers/spread":422,"./utils":423}],402:[function(require,module,exports){
42589
42535
  'use strict';
42590
42536
 
42591
42537
  /**
@@ -42606,7 +42552,7 @@ Cancel.prototype.__CANCEL__ = true;
42606
42552
 
42607
42553
  module.exports = Cancel;
42608
42554
 
42609
- },{}],404:[function(require,module,exports){
42555
+ },{}],403:[function(require,module,exports){
42610
42556
  'use strict';
42611
42557
 
42612
42558
  var Cancel = require('./Cancel');
@@ -42665,14 +42611,14 @@ CancelToken.source = function source() {
42665
42611
 
42666
42612
  module.exports = CancelToken;
42667
42613
 
42668
- },{"./Cancel":403}],405:[function(require,module,exports){
42614
+ },{"./Cancel":402}],404:[function(require,module,exports){
42669
42615
  'use strict';
42670
42616
 
42671
42617
  module.exports = function isCancel(value) {
42672
42618
  return !!(value && value.__CANCEL__);
42673
42619
  };
42674
42620
 
42675
- },{}],406:[function(require,module,exports){
42621
+ },{}],405:[function(require,module,exports){
42676
42622
  'use strict';
42677
42623
 
42678
42624
  var utils = require('./../utils');
@@ -42760,7 +42706,7 @@ utils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {
42760
42706
 
42761
42707
  module.exports = Axios;
42762
42708
 
42763
- },{"../helpers/buildURL":416,"./../utils":424,"./InterceptorManager":407,"./dispatchRequest":409,"./mergeConfig":411}],407:[function(require,module,exports){
42709
+ },{"../helpers/buildURL":415,"./../utils":423,"./InterceptorManager":406,"./dispatchRequest":408,"./mergeConfig":410}],406:[function(require,module,exports){
42764
42710
  'use strict';
42765
42711
 
42766
42712
  var utils = require('./../utils');
@@ -42814,7 +42760,7 @@ InterceptorManager.prototype.forEach = function forEach(fn) {
42814
42760
 
42815
42761
  module.exports = InterceptorManager;
42816
42762
 
42817
- },{"./../utils":424}],408:[function(require,module,exports){
42763
+ },{"./../utils":423}],407:[function(require,module,exports){
42818
42764
  'use strict';
42819
42765
 
42820
42766
  var enhanceError = require('./enhanceError');
@@ -42834,7 +42780,7 @@ module.exports = function createError(message, config, code, request, response)
42834
42780
  return enhanceError(error, config, code, request, response);
42835
42781
  };
42836
42782
 
42837
- },{"./enhanceError":410}],409:[function(require,module,exports){
42783
+ },{"./enhanceError":409}],408:[function(require,module,exports){
42838
42784
  'use strict';
42839
42785
 
42840
42786
  var utils = require('./../utils');
@@ -42922,7 +42868,7 @@ module.exports = function dispatchRequest(config) {
42922
42868
  });
42923
42869
  };
42924
42870
 
42925
- },{"../cancel/isCancel":405,"../defaults":414,"./../helpers/combineURLs":417,"./../helpers/isAbsoluteURL":419,"./../utils":424,"./transformData":413}],410:[function(require,module,exports){
42871
+ },{"../cancel/isCancel":404,"../defaults":413,"./../helpers/combineURLs":416,"./../helpers/isAbsoluteURL":418,"./../utils":423,"./transformData":412}],409:[function(require,module,exports){
42926
42872
  'use strict';
42927
42873
 
42928
42874
  /**
@@ -42966,7 +42912,7 @@ module.exports = function enhanceError(error, config, code, request, response) {
42966
42912
  return error;
42967
42913
  };
42968
42914
 
42969
- },{}],411:[function(require,module,exports){
42915
+ },{}],410:[function(require,module,exports){
42970
42916
  'use strict';
42971
42917
 
42972
42918
  var utils = require('../utils');
@@ -43019,7 +42965,7 @@ module.exports = function mergeConfig(config1, config2) {
43019
42965
  return config;
43020
42966
  };
43021
42967
 
43022
- },{"../utils":424}],412:[function(require,module,exports){
42968
+ },{"../utils":423}],411:[function(require,module,exports){
43023
42969
  'use strict';
43024
42970
 
43025
42971
  var createError = require('./createError');
@@ -43046,7 +42992,7 @@ module.exports = function settle(resolve, reject, response) {
43046
42992
  }
43047
42993
  };
43048
42994
 
43049
- },{"./createError":408}],413:[function(require,module,exports){
42995
+ },{"./createError":407}],412:[function(require,module,exports){
43050
42996
  'use strict';
43051
42997
 
43052
42998
  var utils = require('./../utils');
@@ -43068,7 +43014,7 @@ module.exports = function transformData(data, headers, fns) {
43068
43014
  return data;
43069
43015
  };
43070
43016
 
43071
- },{"./../utils":424}],414:[function(require,module,exports){
43017
+ },{"./../utils":423}],413:[function(require,module,exports){
43072
43018
  (function (process){(function (){
43073
43019
  'use strict';
43074
43020
 
@@ -43170,7 +43116,7 @@ utils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {
43170
43116
  module.exports = defaults;
43171
43117
 
43172
43118
  }).call(this)}).call(this,require('_process'))
43173
- },{"./adapters/http":401,"./adapters/xhr":401,"./helpers/normalizeHeaderName":421,"./utils":424,"_process":171}],415:[function(require,module,exports){
43119
+ },{"./adapters/http":400,"./adapters/xhr":400,"./helpers/normalizeHeaderName":420,"./utils":423,"_process":171}],414:[function(require,module,exports){
43174
43120
  'use strict';
43175
43121
 
43176
43122
  module.exports = function bind(fn, thisArg) {
@@ -43183,7 +43129,7 @@ module.exports = function bind(fn, thisArg) {
43183
43129
  };
43184
43130
  };
43185
43131
 
43186
- },{}],416:[function(require,module,exports){
43132
+ },{}],415:[function(require,module,exports){
43187
43133
  'use strict';
43188
43134
 
43189
43135
  var utils = require('./../utils');
@@ -43256,7 +43202,7 @@ module.exports = function buildURL(url, params, paramsSerializer) {
43256
43202
  return url;
43257
43203
  };
43258
43204
 
43259
- },{"./../utils":424}],417:[function(require,module,exports){
43205
+ },{"./../utils":423}],416:[function(require,module,exports){
43260
43206
  'use strict';
43261
43207
 
43262
43208
  /**
@@ -43272,7 +43218,7 @@ module.exports = function combineURLs(baseURL, relativeURL) {
43272
43218
  : baseURL;
43273
43219
  };
43274
43220
 
43275
- },{}],418:[function(require,module,exports){
43221
+ },{}],417:[function(require,module,exports){
43276
43222
  'use strict';
43277
43223
 
43278
43224
  var utils = require('./../utils');
@@ -43327,7 +43273,7 @@ module.exports = (
43327
43273
  })()
43328
43274
  );
43329
43275
 
43330
- },{"./../utils":424}],419:[function(require,module,exports){
43276
+ },{"./../utils":423}],418:[function(require,module,exports){
43331
43277
  'use strict';
43332
43278
 
43333
43279
  /**
@@ -43343,7 +43289,7 @@ module.exports = function isAbsoluteURL(url) {
43343
43289
  return /^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(url);
43344
43290
  };
43345
43291
 
43346
- },{}],420:[function(require,module,exports){
43292
+ },{}],419:[function(require,module,exports){
43347
43293
  'use strict';
43348
43294
 
43349
43295
  var utils = require('./../utils');
@@ -43413,7 +43359,7 @@ module.exports = (
43413
43359
  })()
43414
43360
  );
43415
43361
 
43416
- },{"./../utils":424}],421:[function(require,module,exports){
43362
+ },{"./../utils":423}],420:[function(require,module,exports){
43417
43363
  'use strict';
43418
43364
 
43419
43365
  var utils = require('../utils');
@@ -43427,7 +43373,7 @@ module.exports = function normalizeHeaderName(headers, normalizedName) {
43427
43373
  });
43428
43374
  };
43429
43375
 
43430
- },{"../utils":424}],422:[function(require,module,exports){
43376
+ },{"../utils":423}],421:[function(require,module,exports){
43431
43377
  'use strict';
43432
43378
 
43433
43379
  var utils = require('./../utils');
@@ -43482,7 +43428,7 @@ module.exports = function parseHeaders(headers) {
43482
43428
  return parsed;
43483
43429
  };
43484
43430
 
43485
- },{"./../utils":424}],423:[function(require,module,exports){
43431
+ },{"./../utils":423}],422:[function(require,module,exports){
43486
43432
  'use strict';
43487
43433
 
43488
43434
  /**
@@ -43511,7 +43457,7 @@ module.exports = function spread(callback) {
43511
43457
  };
43512
43458
  };
43513
43459
 
43514
- },{}],424:[function(require,module,exports){
43460
+ },{}],423:[function(require,module,exports){
43515
43461
  'use strict';
43516
43462
 
43517
43463
  var bind = require('./helpers/bind');
@@ -43847,7 +43793,7 @@ module.exports = {
43847
43793
  trim: trim
43848
43794
  };
43849
43795
 
43850
- },{"../../is-buffer-2.0.3/index":552,"./helpers/bind":415}],425:[function(require,module,exports){
43796
+ },{"../../is-buffer-2.0.3/index":551,"./helpers/bind":414}],424:[function(require,module,exports){
43851
43797
  'use strict'
43852
43798
  // base-x encoding / decoding
43853
43799
  // Copyright (c) 2018 base-x contributors
@@ -43969,7 +43915,7 @@ function base (ALPHABET) {
43969
43915
  }
43970
43916
  module.exports = base
43971
43917
 
43972
- },{"../../safe-buffer-5.2.0/index":584}],426:[function(require,module,exports){
43918
+ },{"../../safe-buffer-5.2.0/index":583}],425:[function(require,module,exports){
43973
43919
  'use strict'
43974
43920
  let ALPHABET = 'qpzry9x8gf2tvdw0s3jn54khce6mua7l'
43975
43921
 
@@ -44110,7 +44056,7 @@ function fromWords (words) {
44110
44056
 
44111
44057
  module.exports = { decode, encode, toWords, fromWords }
44112
44058
 
44113
- },{}],427:[function(require,module,exports){
44059
+ },{}],426:[function(require,module,exports){
44114
44060
  'use strict'
44115
44061
  var ALPHABET = 'qpzry9x8gf2tvdw0s3jn54khce6mua7l'
44116
44062
 
@@ -44259,7 +44205,7 @@ module.exports = {
44259
44205
  fromWords: fromWords
44260
44206
  }
44261
44207
 
44262
- },{}],428:[function(require,module,exports){
44208
+ },{}],427:[function(require,module,exports){
44263
44209
  // (public) Constructor
44264
44210
  function BigInteger(a, b, c) {
44265
44211
  if (!(this instanceof BigInteger))
@@ -45770,7 +45716,7 @@ BigInteger.valueOf = nbv
45770
45716
 
45771
45717
  module.exports = BigInteger
45772
45718
 
45773
- },{"../package.json":431}],429:[function(require,module,exports){
45719
+ },{"../package.json":430}],428:[function(require,module,exports){
45774
45720
  (function (Buffer){(function (){
45775
45721
  // FIXME: Kind of a weird way to throw exceptions, consider removing
45776
45722
  var assert = require('assert')
@@ -45865,14 +45811,14 @@ BigInteger.prototype.toHex = function(size) {
45865
45811
  }
45866
45812
 
45867
45813
  }).call(this)}).call(this,require("buffer").Buffer)
45868
- },{"./bigi":428,"assert":16,"buffer":67}],430:[function(require,module,exports){
45814
+ },{"./bigi":427,"assert":16,"buffer":67}],429:[function(require,module,exports){
45869
45815
  var BigInteger = require('./bigi')
45870
45816
 
45871
45817
  //addons
45872
45818
  require('./convert')
45873
45819
 
45874
45820
  module.exports = BigInteger
45875
- },{"./bigi":428,"./convert":429}],431:[function(require,module,exports){
45821
+ },{"./bigi":427,"./convert":428}],430:[function(require,module,exports){
45876
45822
  module.exports={
45877
45823
  "name": "bigi",
45878
45824
  "version": "1.4.2",
@@ -45928,7 +45874,7 @@ module.exports={
45928
45874
  ]
45929
45875
  }
45930
45876
  }
45931
- },{}],432:[function(require,module,exports){
45877
+ },{}],431:[function(require,module,exports){
45932
45878
  ;(function (globalObject) {
45933
45879
  'use strict';
45934
45880
 
@@ -48832,7 +48778,7 @@ module.exports={
48832
48778
  }
48833
48779
  })(this);
48834
48780
 
48835
- },{}],433:[function(require,module,exports){
48781
+ },{}],432:[function(require,module,exports){
48836
48782
  var Buffer = require('../safe-buffer-5.2.0/index').Buffer
48837
48783
  var createHash = require('../create-hash-1.2.0/browser')
48838
48784
  var pbkdf2 = require('../pbkdf2-3.0.17/index').pbkdf2Sync
@@ -48987,7 +48933,7 @@ module.exports = {
48987
48933
  }
48988
48934
  }
48989
48935
 
48990
- },{"../create-hash-1.2.0/browser":499,"../pbkdf2-3.0.17/index":575,"../randombytes-2.1.0/browser":581,"../safe-buffer-5.2.0/index":584,"../unorm-1.6.0/lib/unorm":606,"./wordlists/chinese_simplified.json":434,"./wordlists/chinese_traditional.json":435,"./wordlists/english.json":436,"./wordlists/french.json":437,"./wordlists/italian.json":438,"./wordlists/japanese.json":439,"./wordlists/korean.json":440,"./wordlists/spanish.json":441}],434:[function(require,module,exports){
48936
+ },{"../create-hash-1.2.0/browser":498,"../pbkdf2-3.0.17/index":574,"../randombytes-2.1.0/browser":580,"../safe-buffer-5.2.0/index":583,"../unorm-1.6.0/lib/unorm":605,"./wordlists/chinese_simplified.json":433,"./wordlists/chinese_traditional.json":434,"./wordlists/english.json":435,"./wordlists/french.json":436,"./wordlists/italian.json":437,"./wordlists/japanese.json":438,"./wordlists/korean.json":439,"./wordlists/spanish.json":440}],433:[function(require,module,exports){
48991
48937
  module.exports=[
48992
48938
  "的",
48993
48939
  "一",
@@ -51038,7 +50984,7 @@ module.exports=[
51038
50984
  "矮",
51039
50985
  "歇"
51040
50986
  ]
51041
- },{}],435:[function(require,module,exports){
50987
+ },{}],434:[function(require,module,exports){
51042
50988
  module.exports=[
51043
50989
  "的",
51044
50990
  "一",
@@ -53089,7 +53035,7 @@ module.exports=[
53089
53035
  "矮",
53090
53036
  "歇"
53091
53037
  ]
53092
- },{}],436:[function(require,module,exports){
53038
+ },{}],435:[function(require,module,exports){
53093
53039
  module.exports=[
53094
53040
  "abandon",
53095
53041
  "ability",
@@ -55140,7 +55086,7 @@ module.exports=[
55140
55086
  "zone",
55141
55087
  "zoo"
55142
55088
  ]
55143
- },{}],437:[function(require,module,exports){
55089
+ },{}],436:[function(require,module,exports){
55144
55090
  module.exports=[
55145
55091
  "abaisser",
55146
55092
  "abandon",
@@ -57191,7 +57137,7 @@ module.exports=[
57191
57137
  "zeste",
57192
57138
  "zoologie"
57193
57139
  ]
57194
- },{}],438:[function(require,module,exports){
57140
+ },{}],437:[function(require,module,exports){
57195
57141
  module.exports=[
57196
57142
  "abaco",
57197
57143
  "abbaglio",
@@ -59242,7 +59188,7 @@ module.exports=[
59242
59188
  "zulu",
59243
59189
  "zuppa"
59244
59190
  ]
59245
- },{}],439:[function(require,module,exports){
59191
+ },{}],438:[function(require,module,exports){
59246
59192
  module.exports=[
59247
59193
  "あいこくしん",
59248
59194
  "あいさつ",
@@ -61293,7 +61239,7 @@ module.exports=[
61293
61239
  "わらう",
61294
61240
  "われる"
61295
61241
  ]
61296
- },{}],440:[function(require,module,exports){
61242
+ },{}],439:[function(require,module,exports){
61297
61243
  module.exports=[
61298
61244
  "가격",
61299
61245
  "가끔",
@@ -63344,7 +63290,7 @@ module.exports=[
63344
63290
  "흰색",
63345
63291
  "힘껏"
63346
63292
  ]
63347
- },{}],441:[function(require,module,exports){
63293
+ },{}],440:[function(require,module,exports){
63348
63294
  module.exports=[
63349
63295
  "ábaco",
63350
63296
  "abdomen",
@@ -65395,7 +65341,7 @@ module.exports=[
65395
65341
  "zumo",
65396
65342
  "zurdo"
65397
65343
  ]
65398
- },{}],442:[function(require,module,exports){
65344
+ },{}],441:[function(require,module,exports){
65399
65345
  // Reference https://github.com/bitcoin/bips/blob/master/bip-0066.mediawiki
65400
65346
  // Format: 0x30 [total-length] 0x02 [R-length] [R] 0x02 [S-length] [S]
65401
65347
  // NOTE: SIGHASH byte ignored AND restricted, truncate before use
@@ -65510,7 +65456,7 @@ module.exports = {
65510
65456
  encode: encode
65511
65457
  }
65512
65458
 
65513
- },{"../safe-buffer-5.2.0/index":584}],443:[function(require,module,exports){
65459
+ },{"../safe-buffer-5.2.0/index":583}],442:[function(require,module,exports){
65514
65460
  module.exports={
65515
65461
  "OP_FALSE": 0,
65516
65462
  "OP_0": 0,
@@ -65631,9 +65577,9 @@ module.exports={
65631
65577
  "OP_PUBKEY": 254,
65632
65578
  "OP_INVALIDOPCODE": 255
65633
65579
  }
65634
- },{}],444:[function(require,module,exports){
65635
- arguments[4][267][0].apply(exports,arguments)
65636
- },{"./index.json":443,"dup":267}],445:[function(require,module,exports){
65580
+ },{}],443:[function(require,module,exports){
65581
+ arguments[4][266][0].apply(exports,arguments)
65582
+ },{"./index.json":442,"dup":266}],444:[function(require,module,exports){
65637
65583
  (function (Buffer){(function (){
65638
65584
  const bs58check = require('../bs58check-2.1.2/index')
65639
65585
  const bech32 = require('../bech32-1.1.3/index')
@@ -65794,7 +65740,7 @@ module.exports = {
65794
65740
  }
65795
65741
 
65796
65742
  }).call(this)}).call(this,require("buffer").Buffer)
65797
- },{"../bech32-1.1.3/index":427,"../bs58check-2.1.2/index":493,"../buffer-equals-1.0.4/index":496,"../create-hash-1.2.0/browser":499,"../secp256k1-3.7.1/elliptic":585,"../varuint-bitcoin-1.1.2/index":608,"buffer":67}],446:[function(require,module,exports){
65743
+ },{"../bech32-1.1.3/index":426,"../bs58check-2.1.2/index":492,"../buffer-equals-1.0.4/index":495,"../create-hash-1.2.0/browser":498,"../secp256k1-3.7.1/elliptic":584,"../varuint-bitcoin-1.1.2/index":607,"buffer":67}],445:[function(require,module,exports){
65798
65744
  var Buffer = require('../../safe-buffer-5.2.0/index').Buffer
65799
65745
  var bech32 = require('../../bech32-0.0.3/index')
65800
65746
  var bs58check = require('../../bs58check-2.1.2/index')
@@ -65905,7 +65851,7 @@ module.exports = {
65905
65851
  toOutputScript: toOutputScript
65906
65852
  }
65907
65853
 
65908
- },{"../../bech32-0.0.3/index":426,"../../bs58check-2.1.2/base":492,"../../bs58check-2.1.2/index":493,"../../safe-buffer-5.2.0/index":584,"../../typeforce-1.18.0/index":604,"./networks":458,"./script":459,"./templates":461,"./types":485}],447:[function(require,module,exports){
65854
+ },{"../../bech32-0.0.3/index":425,"../../bs58check-2.1.2/base":491,"../../bs58check-2.1.2/index":492,"../../safe-buffer-5.2.0/index":583,"../../typeforce-1.18.0/index":603,"./networks":457,"./script":458,"./templates":460,"./types":484}],446:[function(require,module,exports){
65909
65855
  var Buffer = require('../../safe-buffer-5.2.0/index').Buffer
65910
65856
  var bcrypto = require('./crypto')
65911
65857
  var fastMerkleRoot = require('../../merkle-lib-2.0.10/fastRoot')
@@ -66141,7 +66087,7 @@ Block.prototype.checkProofOfWork = function () {
66141
66087
 
66142
66088
  module.exports = Block
66143
66089
 
66144
- },{"../../merkle-lib-2.0.10/fastRoot":554,"../../safe-buffer-5.2.0/index":584,"../../typeforce-1.18.0/index":604,"../../varuint-bitcoin-1.1.2/index":608,"./coins":450,"./crypto":451,"./networks":458,"./transaction":483,"./types":485}],448:[function(require,module,exports){
66090
+ },{"../../merkle-lib-2.0.10/fastRoot":553,"../../safe-buffer-5.2.0/index":583,"../../typeforce-1.18.0/index":603,"../../varuint-bitcoin-1.1.2/index":607,"./coins":449,"./crypto":450,"./networks":457,"./transaction":482,"./types":484}],447:[function(require,module,exports){
66145
66091
  var Buffer = require('../../safe-buffer-5.2.0/index').Buffer
66146
66092
  var bufferutils = require('./bufferutils')
66147
66093
  var varuint = require('../../varuint-bitcoin-1.1.2/index')
@@ -66183,7 +66129,7 @@ BufferWriter.prototype.writeVarSlice = function (slice) {
66183
66129
 
66184
66130
  module.exports = BufferWriter
66185
66131
 
66186
- },{"../../safe-buffer-5.2.0/index":584,"../../varuint-bitcoin-1.1.2/index":608,"./bufferutils":449}],449:[function(require,module,exports){
66132
+ },{"../../safe-buffer-5.2.0/index":583,"../../varuint-bitcoin-1.1.2/index":607,"./bufferutils":448}],448:[function(require,module,exports){
66187
66133
  var pushdata = require('../../pushdata-bitcoin-1.0.1/index')
66188
66134
  var varuint = require('../../varuint-bitcoin-1.1.2/index')
66189
66135
 
@@ -66250,7 +66196,7 @@ module.exports = {
66250
66196
  writeVarInt: writeVarInt
66251
66197
  }
66252
66198
 
66253
- },{"../../pushdata-bitcoin-1.0.1/index":580,"../../varuint-bitcoin-1.1.2/index":608}],450:[function(require,module,exports){
66199
+ },{"../../pushdata-bitcoin-1.0.1/index":579,"../../varuint-bitcoin-1.1.2/index":607}],449:[function(require,module,exports){
66254
66200
  // Coins supported by bitgo-bitcoinjs-lib
66255
66201
  const typeforce = require('../../typeforce-1.18.0/index')
66256
66202
 
@@ -66305,7 +66251,7 @@ coins.isValidCoin = typeforce.oneOf(
66305
66251
 
66306
66252
  module.exports = coins
66307
66253
 
66308
- },{"../../typeforce-1.18.0/index":604}],451:[function(require,module,exports){
66254
+ },{"../../typeforce-1.18.0/index":603}],450:[function(require,module,exports){
66309
66255
  (function (Buffer){(function (){
66310
66256
  var createHash = require('../../create-hash-1.2.0/browser')
66311
66257
  var groestlhash = require('../../groestl-hash-js-ef6a04f1c4d2f0448f0882b5f213ef7a0659baee/index')
@@ -66352,7 +66298,7 @@ module.exports = {
66352
66298
  }
66353
66299
 
66354
66300
  }).call(this)}).call(this,require("buffer").Buffer)
66355
- },{"../../create-hash-1.2.0/browser":499,"../../groestl-hash-js-ef6a04f1c4d2f0448f0882b5f213ef7a0659baee/index":531,"buffer":67,"crypto":78}],452:[function(require,module,exports){
66301
+ },{"../../create-hash-1.2.0/browser":498,"../../groestl-hash-js-ef6a04f1c4d2f0448f0882b5f213ef7a0659baee/index":530,"buffer":67,"crypto":78}],451:[function(require,module,exports){
66356
66302
  var Buffer = require('../../safe-buffer-5.2.0/index').Buffer
66357
66303
  var createHmac = require('../../create-hmac-1.1.4/browser')
66358
66304
  var typeforce = require('../../typeforce-1.18.0/index')
@@ -66515,7 +66461,7 @@ module.exports = {
66515
66461
  __curve: secp256k1
66516
66462
  }
66517
66463
 
66518
- },{"../../bigi-1.4.2/lib/index":430,"../../create-hmac-1.1.4/browser":501,"../../ecurve-1.0.6/lib/index":511,"../../safe-buffer-5.2.0/index":584,"../../typeforce-1.18.0/index":604,"./ecsignature":454,"./types":485}],453:[function(require,module,exports){
66464
+ },{"../../bigi-1.4.2/lib/index":429,"../../create-hmac-1.1.4/browser":500,"../../ecurve-1.0.6/lib/index":510,"../../safe-buffer-5.2.0/index":583,"../../typeforce-1.18.0/index":603,"./ecsignature":453,"./types":484}],452:[function(require,module,exports){
66519
66465
  (function (Buffer){(function (){
66520
66466
  var baddress = require('./address')
66521
66467
  var bcrypto = require('./crypto')
@@ -66674,7 +66620,7 @@ ECPair.prototype.verify = function (hash, signature) {
66674
66620
  module.exports = ECPair
66675
66621
 
66676
66622
  }).call(this)}).call(this,require("buffer").Buffer)
66677
- },{"../../bigi-1.4.2/lib/index":430,"../../ecurve-1.0.6/lib/index":511,"../../randombytes-2.1.0/browser":581,"../../typeforce-1.18.0/index":604,"../../wif-2.0.6/index":609,"./address":446,"./crypto":451,"./ecdsa":452,"./fastcurve":455,"./networks":458,"./types":485,"buffer":67}],454:[function(require,module,exports){
66623
+ },{"../../bigi-1.4.2/lib/index":429,"../../ecurve-1.0.6/lib/index":510,"../../randombytes-2.1.0/browser":580,"../../typeforce-1.18.0/index":603,"../../wif-2.0.6/index":608,"./address":445,"./crypto":450,"./ecdsa":451,"./fastcurve":454,"./networks":457,"./types":484,"buffer":67}],453:[function(require,module,exports){
66678
66624
  (function (Buffer){(function (){
66679
66625
  var bip66 = require('../../bip66-1.1.5/index')
66680
66626
  var typeforce = require('../../typeforce-1.18.0/index')
@@ -66775,7 +66721,7 @@ ECSignature.prototype.toScriptSignature = function (hashType) {
66775
66721
  module.exports = ECSignature
66776
66722
 
66777
66723
  }).call(this)}).call(this,require("buffer").Buffer)
66778
- },{"../../bigi-1.4.2/lib/index":430,"../../bip66-1.1.5/index":442,"../../typeforce-1.18.0/index":604,"./types":485,"buffer":67}],455:[function(require,module,exports){
66724
+ },{"../../bigi-1.4.2/lib/index":429,"../../bip66-1.1.5/index":441,"../../typeforce-1.18.0/index":603,"./types":484,"buffer":67}],454:[function(require,module,exports){
66779
66725
  var typeforce = require('../../typeforce-1.18.0/index')
66780
66726
 
66781
66727
  var ECSignature = require('./ecsignature')
@@ -66869,7 +66815,7 @@ module.exports = {
66869
66815
  verify: verify
66870
66816
  }
66871
66817
 
66872
- },{"../../secp256k1-3.7.1/elliptic":585,"../../typeforce-1.18.0/index":604,"./ecsignature":454,"./types":485}],456:[function(require,module,exports){
66818
+ },{"../../secp256k1-3.7.1/elliptic":584,"../../typeforce-1.18.0/index":603,"./ecsignature":453,"./types":484}],455:[function(require,module,exports){
66873
66819
  var Buffer = require('../../safe-buffer-5.2.0/index').Buffer
66874
66820
  var base58check = require('../../bs58check-2.1.2/index')
66875
66821
  var bcrypto = require('./crypto')
@@ -67234,7 +67180,7 @@ HDNode.prototype.cloneKeypair = function () {
67234
67180
 
67235
67181
  module.exports = HDNode
67236
67182
 
67237
- },{"../../bigi-1.4.2/lib/index":430,"../../bs58check-2.1.2/base":492,"../../bs58check-2.1.2/index":493,"../../create-hmac-1.1.4/browser":501,"../../ecurve-1.0.6/lib/index":511,"../../safe-buffer-5.2.0/index":584,"../../typeforce-1.18.0/index":604,"./crypto":451,"./ecpair":453,"./fastcurve":455,"./networks":458,"./types":485}],457:[function(require,module,exports){
67183
+ },{"../../bigi-1.4.2/lib/index":429,"../../bs58check-2.1.2/base":491,"../../bs58check-2.1.2/index":492,"../../create-hmac-1.1.4/browser":500,"../../ecurve-1.0.6/lib/index":510,"../../safe-buffer-5.2.0/index":583,"../../typeforce-1.18.0/index":603,"./crypto":450,"./ecpair":452,"./fastcurve":454,"./networks":457,"./types":484}],456:[function(require,module,exports){
67238
67184
  var script = require('./script')
67239
67185
 
67240
67186
  var templates = require('./templates')
@@ -67260,7 +67206,7 @@ module.exports = {
67260
67206
  script: script
67261
67207
  }
67262
67208
 
67263
- },{"../../bitcoin-ops-1.4.1/index.json":443,"./address":446,"./block":447,"./bufferutils":449,"./coins":450,"./crypto":451,"./ecpair":453,"./ecsignature":454,"./hdnode":456,"./networks":458,"./script":459,"./templates":461,"./transaction":483,"./transaction_builder":484}],458:[function(require,module,exports){
67209
+ },{"../../bitcoin-ops-1.4.1/index.json":442,"./address":445,"./block":446,"./bufferutils":448,"./coins":449,"./crypto":450,"./ecpair":452,"./ecsignature":453,"./hdnode":455,"./networks":457,"./script":458,"./templates":460,"./transaction":482,"./transaction_builder":483}],457:[function(require,module,exports){
67264
67210
  // https://en.bitcoin.it/wiki/List_of_address_prefixes
67265
67211
  // Dogecoin BIP32 is a proposed standard: https://bitcointalk.org/index.php?topic=409731
67266
67212
  var coins = require('./coins')
@@ -67476,7 +67422,7 @@ module.exports = {
67476
67422
  }
67477
67423
  }
67478
67424
 
67479
- },{"./coins":450,"./crypto":451}],459:[function(require,module,exports){
67425
+ },{"./coins":449,"./crypto":450}],458:[function(require,module,exports){
67480
67426
  var Buffer = require('../../safe-buffer-5.2.0/index').Buffer
67481
67427
  var bip66 = require('../../bip66-1.1.5/index')
67482
67428
  var pushdata = require('../../pushdata-bitcoin-1.0.1/index')
@@ -67692,7 +67638,7 @@ module.exports = {
67692
67638
  isDefinedHashType: isDefinedHashType
67693
67639
  }
67694
67640
 
67695
- },{"../../bip66-1.1.5/index":442,"../../bitcoin-ops-1.4.1/index.json":443,"../../bitcoin-ops-1.4.1/map":444,"../../pushdata-bitcoin-1.0.1/index":580,"../../safe-buffer-5.2.0/index":584,"../../typeforce-1.18.0/index":604,"./script_number":460,"./types":485}],460:[function(require,module,exports){
67641
+ },{"../../bip66-1.1.5/index":441,"../../bitcoin-ops-1.4.1/index.json":442,"../../bitcoin-ops-1.4.1/map":443,"../../pushdata-bitcoin-1.0.1/index":579,"../../safe-buffer-5.2.0/index":583,"../../typeforce-1.18.0/index":603,"./script_number":459,"./types":484}],459:[function(require,module,exports){
67696
67642
  var Buffer = require('../../safe-buffer-5.2.0/index').Buffer
67697
67643
 
67698
67644
  function decode (buffer, maxLength, minimal) {
@@ -67762,7 +67708,7 @@ module.exports = {
67762
67708
  encode: encode
67763
67709
  }
67764
67710
 
67765
- },{"../../safe-buffer-5.2.0/index":584}],461:[function(require,module,exports){
67711
+ },{"../../safe-buffer-5.2.0/index":583}],460:[function(require,module,exports){
67766
67712
  var decompile = require('../script').decompile
67767
67713
  var multisig = require('./multisig')
67768
67714
  var nullData = require('./nulldata')
@@ -67838,13 +67784,13 @@ module.exports = {
67838
67784
  types: types
67839
67785
  }
67840
67786
 
67841
- },{"../script":459,"./multisig":462,"./nulldata":465,"./pubkey":466,"./pubkeyhash":469,"./scripthash":472,"./witnesscommitment":475,"./witnesspubkeyhash":477,"./witnessscripthash":480}],462:[function(require,module,exports){
67787
+ },{"../script":458,"./multisig":461,"./nulldata":464,"./pubkey":465,"./pubkeyhash":468,"./scripthash":471,"./witnesscommitment":474,"./witnesspubkeyhash":476,"./witnessscripthash":479}],461:[function(require,module,exports){
67842
67788
  module.exports = {
67843
67789
  input: require('./input'),
67844
67790
  output: require('./output')
67845
67791
  }
67846
67792
 
67847
- },{"./input":463,"./output":464}],463:[function(require,module,exports){
67793
+ },{"./input":462,"./output":463}],462:[function(require,module,exports){
67848
67794
  // OP_0 [signatures ...]
67849
67795
 
67850
67796
  var Buffer = require('../../../../safe-buffer-5.2.0/index').Buffer
@@ -67917,7 +67863,7 @@ module.exports = {
67917
67863
  encodeStack: encodeStack
67918
67864
  }
67919
67865
 
67920
- },{"../../../../bitcoin-ops-1.4.1/index.json":443,"../../../../safe-buffer-5.2.0/index":584,"../../../../typeforce-1.18.0/index":604,"../../script":459,"./output":464}],464:[function(require,module,exports){
67866
+ },{"../../../../bitcoin-ops-1.4.1/index.json":442,"../../../../safe-buffer-5.2.0/index":583,"../../../../typeforce-1.18.0/index":603,"../../script":458,"./output":463}],463:[function(require,module,exports){
67921
67867
  // m [pubKeys ...] n OP_CHECKMULTISIG
67922
67868
 
67923
67869
  var bscript = require('../../script')
@@ -67983,7 +67929,7 @@ module.exports = {
67983
67929
  encode: encode
67984
67930
  }
67985
67931
 
67986
- },{"../../../../bitcoin-ops-1.4.1/index.json":443,"../../../../typeforce-1.18.0/index":604,"../../script":459,"../../types":485}],465:[function(require,module,exports){
67932
+ },{"../../../../bitcoin-ops-1.4.1/index.json":442,"../../../../typeforce-1.18.0/index":603,"../../script":458,"../../types":484}],464:[function(require,module,exports){
67987
67933
  // OP_RETURN {data}
67988
67934
 
67989
67935
  var bscript = require('../script')
@@ -68024,9 +67970,9 @@ module.exports = {
68024
67970
  }
68025
67971
  }
68026
67972
 
68027
- },{"../../../bitcoin-ops-1.4.1/index.json":443,"../../../typeforce-1.18.0/index":604,"../script":459,"../types":485}],466:[function(require,module,exports){
68028
- arguments[4][462][0].apply(exports,arguments)
68029
- },{"./input":467,"./output":468,"dup":462}],467:[function(require,module,exports){
67973
+ },{"../../../bitcoin-ops-1.4.1/index.json":442,"../../../typeforce-1.18.0/index":603,"../script":458,"../types":484}],465:[function(require,module,exports){
67974
+ arguments[4][461][0].apply(exports,arguments)
67975
+ },{"./input":466,"./output":467,"dup":461}],466:[function(require,module,exports){
68030
67976
  // {signature}
68031
67977
 
68032
67978
  var bscript = require('../../script')
@@ -68067,7 +68013,7 @@ module.exports = {
68067
68013
  encodeStack: encodeStack
68068
68014
  }
68069
68015
 
68070
- },{"../../../../typeforce-1.18.0/index":604,"../../script":459}],468:[function(require,module,exports){
68016
+ },{"../../../../typeforce-1.18.0/index":603,"../../script":458}],467:[function(require,module,exports){
68071
68017
  // {pubKey} OP_CHECKSIG
68072
68018
 
68073
68019
  var bscript = require('../../script')
@@ -68102,9 +68048,9 @@ module.exports = {
68102
68048
  encode: encode
68103
68049
  }
68104
68050
 
68105
- },{"../../../../bitcoin-ops-1.4.1/index.json":443,"../../../../typeforce-1.18.0/index":604,"../../script":459}],469:[function(require,module,exports){
68106
- arguments[4][462][0].apply(exports,arguments)
68107
- },{"./input":470,"./output":471,"dup":462}],470:[function(require,module,exports){
68051
+ },{"../../../../bitcoin-ops-1.4.1/index.json":442,"../../../../typeforce-1.18.0/index":603,"../../script":458}],468:[function(require,module,exports){
68052
+ arguments[4][461][0].apply(exports,arguments)
68053
+ },{"./input":469,"./output":470,"dup":461}],469:[function(require,module,exports){
68108
68054
  // {signature} {pubKey}
68109
68055
 
68110
68056
  var bscript = require('../../script')
@@ -68157,7 +68103,7 @@ module.exports = {
68157
68103
  encodeStack: encodeStack
68158
68104
  }
68159
68105
 
68160
- },{"../../../../typeforce-1.18.0/index":604,"../../script":459}],471:[function(require,module,exports){
68106
+ },{"../../../../typeforce-1.18.0/index":603,"../../script":458}],470:[function(require,module,exports){
68161
68107
  // OP_DUP OP_HASH160 {pubKeyHash} OP_EQUALVERIFY OP_CHECKSIG
68162
68108
 
68163
68109
  var bscript = require('../../script')
@@ -68201,9 +68147,9 @@ module.exports = {
68201
68147
  encode: encode
68202
68148
  }
68203
68149
 
68204
- },{"../../../../bitcoin-ops-1.4.1/index.json":443,"../../../../typeforce-1.18.0/index":604,"../../script":459,"../../types":485}],472:[function(require,module,exports){
68205
- arguments[4][462][0].apply(exports,arguments)
68206
- },{"./input":473,"./output":474,"dup":462}],473:[function(require,module,exports){
68150
+ },{"../../../../bitcoin-ops-1.4.1/index.json":442,"../../../../typeforce-1.18.0/index":603,"../../script":458,"../../types":484}],471:[function(require,module,exports){
68151
+ arguments[4][461][0].apply(exports,arguments)
68152
+ },{"./input":472,"./output":473,"dup":461}],472:[function(require,module,exports){
68207
68153
  // <scriptSig> {serialized scriptPubKey script}
68208
68154
 
68209
68155
  var Buffer = require('../../../../safe-buffer-5.2.0/index').Buffer
@@ -68289,7 +68235,7 @@ module.exports = {
68289
68235
  encodeStack: encodeStack
68290
68236
  }
68291
68237
 
68292
- },{"../../../../safe-buffer-5.2.0/index":584,"../../../../typeforce-1.18.0/index":604,"../../script":459,"../multisig/":462,"../pubkey/":466,"../pubkeyhash/":469,"../witnesspubkeyhash/output":479,"../witnessscripthash/output":482}],474:[function(require,module,exports){
68238
+ },{"../../../../safe-buffer-5.2.0/index":583,"../../../../typeforce-1.18.0/index":603,"../../script":458,"../multisig/":461,"../pubkey/":465,"../pubkeyhash/":468,"../witnesspubkeyhash/output":478,"../witnessscripthash/output":481}],473:[function(require,module,exports){
68293
68239
  // OP_HASH160 {scriptHash} OP_EQUAL
68294
68240
 
68295
68241
  var bscript = require('../../script')
@@ -68325,12 +68271,12 @@ module.exports = {
68325
68271
  encode: encode
68326
68272
  }
68327
68273
 
68328
- },{"../../../../bitcoin-ops-1.4.1/index.json":443,"../../../../typeforce-1.18.0/index":604,"../../script":459,"../../types":485}],475:[function(require,module,exports){
68274
+ },{"../../../../bitcoin-ops-1.4.1/index.json":442,"../../../../typeforce-1.18.0/index":603,"../../script":458,"../../types":484}],474:[function(require,module,exports){
68329
68275
  module.exports = {
68330
68276
  output: require('./output')
68331
68277
  }
68332
68278
 
68333
- },{"./output":476}],476:[function(require,module,exports){
68279
+ },{"./output":475}],475:[function(require,module,exports){
68334
68280
  // OP_RETURN {aa21a9ed} {commitment}
68335
68281
 
68336
68282
  var Buffer = require('../../../../safe-buffer-5.2.0/index').Buffer
@@ -68374,9 +68320,9 @@ module.exports = {
68374
68320
  encode: encode
68375
68321
  }
68376
68322
 
68377
- },{"../../../../bitcoin-ops-1.4.1/index.json":443,"../../../../safe-buffer-5.2.0/index":584,"../../../../typeforce-1.18.0/index":604,"../../script":459,"../../types":485}],477:[function(require,module,exports){
68378
- arguments[4][462][0].apply(exports,arguments)
68379
- },{"./input":478,"./output":479,"dup":462}],478:[function(require,module,exports){
68323
+ },{"../../../../bitcoin-ops-1.4.1/index.json":442,"../../../../safe-buffer-5.2.0/index":583,"../../../../typeforce-1.18.0/index":603,"../../script":458,"../../types":484}],476:[function(require,module,exports){
68324
+ arguments[4][461][0].apply(exports,arguments)
68325
+ },{"./input":477,"./output":478,"dup":461}],477:[function(require,module,exports){
68380
68326
  // {signature} {pubKey}
68381
68327
 
68382
68328
  var bscript = require('../../script')
@@ -68422,7 +68368,7 @@ module.exports = {
68422
68368
  encodeStack: encodeStack
68423
68369
  }
68424
68370
 
68425
- },{"../../../../typeforce-1.18.0/index":604,"../../script":459}],479:[function(require,module,exports){
68371
+ },{"../../../../typeforce-1.18.0/index":603,"../../script":458}],478:[function(require,module,exports){
68426
68372
  // OP_0 {pubKeyHash}
68427
68373
 
68428
68374
  var bscript = require('../../script')
@@ -68457,9 +68403,9 @@ module.exports = {
68457
68403
  encode: encode
68458
68404
  }
68459
68405
 
68460
- },{"../../../../bitcoin-ops-1.4.1/index.json":443,"../../../../typeforce-1.18.0/index":604,"../../script":459,"../../types":485}],480:[function(require,module,exports){
68461
- arguments[4][462][0].apply(exports,arguments)
68462
- },{"./input":481,"./output":482,"dup":462}],481:[function(require,module,exports){
68406
+ },{"../../../../bitcoin-ops-1.4.1/index.json":442,"../../../../typeforce-1.18.0/index":603,"../../script":458,"../../types":484}],479:[function(require,module,exports){
68407
+ arguments[4][461][0].apply(exports,arguments)
68408
+ },{"./input":480,"./output":481,"dup":461}],480:[function(require,module,exports){
68463
68409
  (function (Buffer){(function (){
68464
68410
  // <scriptSig> {serialized scriptPubKey script}
68465
68411
 
@@ -68525,8 +68471,8 @@ module.exports = {
68525
68471
  encodeStack: encodeStack
68526
68472
  }
68527
68473
 
68528
- }).call(this)}).call(this,{"isBuffer":require("../../../../../../../../../node_modules/is-buffer/index.js")})
68529
- },{"../../../../../../../../../node_modules/is-buffer/index.js":150,"../../../../typeforce-1.18.0/index":604,"../../script":459,"../../types":485,"../multisig/":462,"../pubkey/":466,"../pubkeyhash/":469}],482:[function(require,module,exports){
68474
+ }).call(this)}).call(this,{"isBuffer":require("../../../../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js")})
68475
+ },{"../../../../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js":149,"../../../../typeforce-1.18.0/index":603,"../../script":458,"../../types":484,"../multisig/":461,"../pubkey/":465,"../pubkeyhash/":468}],481:[function(require,module,exports){
68530
68476
  // OP_0 {scriptHash}
68531
68477
 
68532
68478
  var bscript = require('../../script')
@@ -68561,7 +68507,7 @@ module.exports = {
68561
68507
  encode: encode
68562
68508
  }
68563
68509
 
68564
- },{"../../../../bitcoin-ops-1.4.1/index.json":443,"../../../../typeforce-1.18.0/index":604,"../../script":459,"../../types":485}],483:[function(require,module,exports){
68510
+ },{"../../../../bitcoin-ops-1.4.1/index.json":442,"../../../../typeforce-1.18.0/index":603,"../../script":458,"../../types":484}],482:[function(require,module,exports){
68565
68511
  var Buffer = require('../../safe-buffer-5.2.0/index').Buffer
68566
68512
  var BufferWriter = require('./bufferWriter')
68567
68513
  var bcrypto = require('./crypto')
@@ -69688,7 +69634,7 @@ Transaction.prototype.setWitness = function (index, witness) {
69688
69634
 
69689
69635
  module.exports = Transaction
69690
69636
 
69691
- },{"../../bitcoin-ops-1.4.1/index.json":443,"../../blake2b-6268e6dd678661e0acc4359e9171b97eb1ebf8ac/index":486,"../../safe-buffer-5.2.0/index":584,"../../typeforce-1.18.0/index":604,"../../varuint-bitcoin-1.1.2/index":608,"./bufferWriter":448,"./bufferutils":449,"./coins":450,"./crypto":451,"./networks":458,"./script":459,"./types":485}],484:[function(require,module,exports){
69637
+ },{"../../bitcoin-ops-1.4.1/index.json":442,"../../blake2b-6268e6dd678661e0acc4359e9171b97eb1ebf8ac/index":485,"../../safe-buffer-5.2.0/index":583,"../../typeforce-1.18.0/index":603,"../../varuint-bitcoin-1.1.2/index":607,"./bufferWriter":447,"./bufferutils":448,"./coins":449,"./crypto":450,"./networks":457,"./script":458,"./types":484}],483:[function(require,module,exports){
69692
69638
  var Buffer = require('../../safe-buffer-5.2.0/index').Buffer
69693
69639
  var baddress = require('./address')
69694
69640
  var bcrypto = require('./crypto')
@@ -70582,7 +70528,7 @@ TransactionBuilder.prototype.__overMaximumFees = function (bytes) {
70582
70528
 
70583
70529
  module.exports = TransactionBuilder
70584
70530
 
70585
- },{"../../bitcoin-ops-1.4.1/index.json":443,"../../debug-3.1.0/src/browser":502,"../../safe-buffer-5.2.0/index":584,"../../typeforce-1.18.0/index":604,"./address":446,"./coins":450,"./crypto":451,"./ecpair":453,"./ecsignature":454,"./networks":458,"./script":459,"./templates":461,"./transaction":483,"./types":485}],485:[function(require,module,exports){
70531
+ },{"../../bitcoin-ops-1.4.1/index.json":442,"../../debug-3.1.0/src/browser":501,"../../safe-buffer-5.2.0/index":583,"../../typeforce-1.18.0/index":603,"./address":445,"./coins":449,"./crypto":450,"./ecpair":452,"./ecsignature":453,"./networks":457,"./script":458,"./templates":460,"./transaction":482,"./types":484}],484:[function(require,module,exports){
70586
70532
  var typeforce = require('../../typeforce-1.18.0/index')
70587
70533
 
70588
70534
  var UINT31_MAX = Math.pow(2, 31) - 1
@@ -70639,7 +70585,7 @@ for (var typeName in typeforce) {
70639
70585
 
70640
70586
  module.exports = types
70641
70587
 
70642
- },{"../../typeforce-1.18.0/index":604}],486:[function(require,module,exports){
70588
+ },{"../../typeforce-1.18.0/index":603}],485:[function(require,module,exports){
70643
70589
  var assert = require('../nanoassert-1.1.0/index')
70644
70590
  var b2wasm = require('../blake2b-wasm-193cdb71656c1a6c7f89b05d0327bb9b758d071b/index')
70645
70591
 
@@ -70954,7 +70900,7 @@ b2wasm.ready(function (err) {
70954
70900
  }
70955
70901
  })
70956
70902
 
70957
- },{"../blake2b-wasm-193cdb71656c1a6c7f89b05d0327bb9b758d071b/index":488,"../nanoassert-1.1.0/index":558}],487:[function(require,module,exports){
70903
+ },{"../blake2b-wasm-193cdb71656c1a6c7f89b05d0327bb9b758d071b/index":487,"../nanoassert-1.1.0/index":557}],486:[function(require,module,exports){
70958
70904
 
70959
70905
  module.exports = loadWebAssembly
70960
70906
 
@@ -71019,7 +70965,7 @@ function charCodeAt (c) {
71019
70965
  return c.charCodeAt(0)
71020
70966
  }
71021
70967
 
71022
- },{}],488:[function(require,module,exports){
70968
+ },{}],487:[function(require,module,exports){
71023
70969
  var assert = require('../nanoassert-1.1.0/index')
71024
70970
  var wasm = require('./blake2b')()
71025
70971
 
@@ -71149,7 +71095,7 @@ function toHex (n) {
71149
71095
  return n.toString(16)
71150
71096
  }
71151
71097
 
71152
- },{"../nanoassert-1.1.0/index":558,"./blake2b":487}],489:[function(require,module,exports){
71098
+ },{"../nanoassert-1.1.0/index":557,"./blake2b":486}],488:[function(require,module,exports){
71153
71099
  (function (module, exports) {
71154
71100
  'use strict';
71155
71101
 
@@ -74578,15 +74524,15 @@ function toHex (n) {
74578
74524
  };
74579
74525
  })(typeof module === 'undefined' || module, this);
74580
74526
 
74581
- },{"buffer":67}],490:[function(require,module,exports){
74527
+ },{"buffer":67}],489:[function(require,module,exports){
74582
74528
  arguments[4][23][0].apply(exports,arguments)
74583
- },{"crypto":78,"dup":23}],491:[function(require,module,exports){
74529
+ },{"crypto":78,"dup":23}],490:[function(require,module,exports){
74584
74530
  var basex = require('../base-x-3.0.7/src/index')
74585
74531
  var ALPHABET = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz'
74586
74532
 
74587
74533
  module.exports = basex(ALPHABET)
74588
74534
 
74589
- },{"../base-x-3.0.7/src/index":425}],492:[function(require,module,exports){
74535
+ },{"../base-x-3.0.7/src/index":424}],491:[function(require,module,exports){
74590
74536
  'use strict'
74591
74537
 
74592
74538
  var base58 = require('../bs58-4.0.1/index')
@@ -74638,7 +74584,7 @@ module.exports = function (checksumFn) {
74638
74584
  }
74639
74585
  }
74640
74586
 
74641
- },{"../bs58-4.0.1/index":491,"../safe-buffer-5.2.0/index":584}],493:[function(require,module,exports){
74587
+ },{"../bs58-4.0.1/index":490,"../safe-buffer-5.2.0/index":583}],492:[function(require,module,exports){
74642
74588
  'use strict'
74643
74589
 
74644
74590
  var createHash = require('../create-hash-1.2.0/browser')
@@ -74652,9 +74598,9 @@ function sha256x2 (buffer) {
74652
74598
 
74653
74599
  module.exports = bs58checkBase(sha256x2)
74654
74600
 
74655
- },{"../create-hash-1.2.0/browser":499,"./base":492}],494:[function(require,module,exports){
74656
- arguments[4][492][0].apply(exports,arguments)
74657
- },{"../bs58-4.0.1/index":491,"../safe-buffer-5.2.0/index":584,"dup":492}],495:[function(require,module,exports){
74601
+ },{"../create-hash-1.2.0/browser":498,"./base":491}],493:[function(require,module,exports){
74602
+ arguments[4][491][0].apply(exports,arguments)
74603
+ },{"../bs58-4.0.1/index":490,"../safe-buffer-5.2.0/index":583,"dup":491}],494:[function(require,module,exports){
74658
74604
  (function (Buffer){(function (){
74659
74605
  'use strict'
74660
74606
 
@@ -74670,7 +74616,7 @@ function groestl (buffer) {
74670
74616
  module.exports = bs58grscheckBase(groestl)
74671
74617
 
74672
74618
  }).call(this)}).call(this,require("buffer").Buffer)
74673
- },{"../create-hash-1.2.0/browser":499,"../groestl-hash-js-ef6a04f1c4d2f0448f0882b5f213ef7a0659baee/index":531,"./base":494,"buffer":67}],496:[function(require,module,exports){
74619
+ },{"../create-hash-1.2.0/browser":498,"../groestl-hash-js-ef6a04f1c4d2f0448f0882b5f213ef7a0659baee/index":530,"./base":493,"buffer":67}],495:[function(require,module,exports){
74674
74620
  (function (Buffer){(function (){
74675
74621
  'use strict';
74676
74622
  module.exports = function (a, b) {
@@ -74699,8 +74645,8 @@ module.exports = function (a, b) {
74699
74645
  return true;
74700
74646
  };
74701
74647
 
74702
- }).call(this)}).call(this,{"isBuffer":require("../../../../../../node_modules/is-buffer/index.js")})
74703
- },{"../../../../../../node_modules/is-buffer/index.js":150}],497:[function(require,module,exports){
74648
+ }).call(this)}).call(this,{"isBuffer":require("../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js")})
74649
+ },{"../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js":149}],496:[function(require,module,exports){
74704
74650
  (function (Buffer){(function (){
74705
74651
  ;(function (global, factory) {
74706
74652
  if (typeof define === 'function' && define.amd) {
@@ -75336,7 +75282,7 @@ module.exports = function (a, b) {
75336
75282
  })
75337
75283
 
75338
75284
  }).call(this)}).call(this,require("buffer").Buffer)
75339
- },{"buffer":67}],498:[function(require,module,exports){
75285
+ },{"buffer":67}],497:[function(require,module,exports){
75340
75286
  var Buffer = require('../safe-buffer-5.2.0/index').Buffer
75341
75287
  var Transform = require('stream').Transform
75342
75288
  var StringDecoder = require('string_decoder').StringDecoder
@@ -75437,7 +75383,7 @@ CipherBase.prototype._toString = function (value, enc, fin) {
75437
75383
 
75438
75384
  module.exports = CipherBase
75439
75385
 
75440
- },{"../inherits-2.0.4/inherits":550,"../safe-buffer-5.2.0/index":584,"stream":192,"string_decoder":207}],499:[function(require,module,exports){
75386
+ },{"../inherits-2.0.4/inherits":549,"../safe-buffer-5.2.0/index":583,"stream":192,"string_decoder":207}],498:[function(require,module,exports){
75441
75387
  'use strict'
75442
75388
  var inherits = require('../inherits-2.0.4/inherits')
75443
75389
  var MD5 = require('../md5.js-1.3.5/index')
@@ -75469,10 +75415,10 @@ module.exports = function createHash (alg) {
75469
75415
  return new Hash(sha(alg))
75470
75416
  }
75471
75417
 
75472
- },{"../cipher-base-1.0.4/index":498,"../inherits-2.0.4/inherits":550,"../md5.js-1.3.5/index":553,"../ripemd160-2.0.2/index":582,"../sha.js-2.4.11/index":595}],500:[function(require,module,exports){
75418
+ },{"../cipher-base-1.0.4/index":497,"../inherits-2.0.4/inherits":549,"../md5.js-1.3.5/index":552,"../ripemd160-2.0.2/index":581,"../sha.js-2.4.11/index":594}],499:[function(require,module,exports){
75473
75419
  module.exports = require('crypto').createHash
75474
75420
 
75475
- },{"crypto":78}],501:[function(require,module,exports){
75421
+ },{"crypto":78}],500:[function(require,module,exports){
75476
75422
  (function (Buffer){(function (){
75477
75423
  'use strict';
75478
75424
  var createHash = require('../create-hash-1.2.0/browser')
@@ -75544,7 +75490,7 @@ module.exports = function createHmac(alg, key) {
75544
75490
  }
75545
75491
 
75546
75492
  }).call(this)}).call(this,require("buffer").Buffer)
75547
- },{"../create-hash-1.2.0/browser":499,"../inherits-2.0.4/inherits":550,"buffer":67,"stream":192}],502:[function(require,module,exports){
75493
+ },{"../create-hash-1.2.0/browser":498,"../inherits-2.0.4/inherits":549,"buffer":67,"stream":192}],501:[function(require,module,exports){
75548
75494
  (function (process){(function (){
75549
75495
  /**
75550
75496
  * This is the web browser implementation of `debug()`.
@@ -75743,7 +75689,7 @@ function localstorage() {
75743
75689
  }
75744
75690
 
75745
75691
  }).call(this)}).call(this,require('_process'))
75746
- },{"./debug":503,"_process":171}],503:[function(require,module,exports){
75692
+ },{"./debug":502,"_process":171}],502:[function(require,module,exports){
75747
75693
 
75748
75694
  /**
75749
75695
  * This is the common logic for both the Node.js and web browser
@@ -75970,7 +75916,7 @@ function coerce(val) {
75970
75916
  return val;
75971
75917
  }
75972
75918
 
75973
- },{"../../ms-2.1.2/index":557}],504:[function(require,module,exports){
75919
+ },{"../../ms-2.1.2/index":556}],503:[function(require,module,exports){
75974
75920
  (function (Buffer){(function (){
75975
75921
  "use strict";
75976
75922
  Object.defineProperty(exports, "__esModule", { value: true });
@@ -76008,7 +75954,7 @@ exports.utils = {
76008
75954
  };
76009
75955
 
76010
75956
  }).call(this)}).call(this,require("buffer").Buffer)
76011
- },{"./keys":507,"./utils":508,"buffer":67}],505:[function(require,module,exports){
75957
+ },{"./keys":506,"./utils":507,"buffer":67}],504:[function(require,module,exports){
76012
75958
  (function (Buffer){(function (){
76013
75959
  "use strict";
76014
75960
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
@@ -76073,7 +76019,7 @@ var PrivateKey = /** @class */ (function () {
76073
76019
  exports.default = PrivateKey;
76074
76020
 
76075
76021
  }).call(this)}).call(this,require("buffer").Buffer)
76076
- },{"../../../futoin-hkdf-1.3.3/hkdf.js":530,"../../../secp256k1-4.0.2/elliptic":591,"../utils":508,"./PublicKey":506,"buffer":67}],506:[function(require,module,exports){
76022
+ },{"../../../futoin-hkdf-1.3.3/hkdf.js":529,"../../../secp256k1-4.0.2/elliptic":590,"../utils":507,"./PublicKey":505,"buffer":67}],505:[function(require,module,exports){
76077
76023
  (function (Buffer){(function (){
76078
76024
  "use strict";
76079
76025
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
@@ -76141,7 +76087,7 @@ var PublicKey = /** @class */ (function () {
76141
76087
  exports.default = PublicKey;
76142
76088
 
76143
76089
  }).call(this)}).call(this,require("buffer").Buffer)
76144
- },{"../../../futoin-hkdf-1.3.3/hkdf.js":530,"../../../secp256k1-4.0.2/elliptic":591,"../utils":508,"buffer":67}],507:[function(require,module,exports){
76090
+ },{"../../../futoin-hkdf-1.3.3/hkdf.js":529,"../../../secp256k1-4.0.2/elliptic":590,"../utils":507,"buffer":67}],506:[function(require,module,exports){
76145
76091
  "use strict";
76146
76092
  var __importDefault = (this && this.__importDefault) || function (mod) {
76147
76093
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -76153,7 +76099,7 @@ Object.defineProperty(exports, "PrivateKey", { enumerable: true, get: function (
76153
76099
  var PublicKey_1 = require("./PublicKey");
76154
76100
  Object.defineProperty(exports, "PublicKey", { enumerable: true, get: function () { return __importDefault(PublicKey_1).default; } });
76155
76101
 
76156
- },{"./PrivateKey":505,"./PublicKey":506}],508:[function(require,module,exports){
76102
+ },{"./PrivateKey":504,"./PublicKey":505}],507:[function(require,module,exports){
76157
76103
  (function (Buffer){(function (){
76158
76104
  "use strict";
76159
76105
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
@@ -76221,7 +76167,7 @@ function aesDecrypt(key, cipherText) {
76221
76167
  exports.aesDecrypt = aesDecrypt;
76222
76168
 
76223
76169
  }).call(this)}).call(this,require("buffer").Buffer)
76224
- },{"../../secp256k1-4.0.2/elliptic":591,"buffer":67,"crypto":78}],509:[function(require,module,exports){
76170
+ },{"../../secp256k1-4.0.2/elliptic":590,"buffer":67,"crypto":78}],508:[function(require,module,exports){
76225
76171
  var assert = require('assert')
76226
76172
  var BigInteger = require('../../bigi-1.4.2/lib/index')
76227
76173
 
@@ -76300,7 +76246,7 @@ Curve.prototype.validate = function (Q) {
76300
76246
 
76301
76247
  module.exports = Curve
76302
76248
 
76303
- },{"../../bigi-1.4.2/lib/index":430,"./point":513,"assert":16}],510:[function(require,module,exports){
76249
+ },{"../../bigi-1.4.2/lib/index":429,"./point":512,"assert":16}],509:[function(require,module,exports){
76304
76250
  module.exports={
76305
76251
  "secp128r1": {
76306
76252
  "p": "fffffffdffffffffffffffffffffffff",
@@ -76366,7 +76312,7 @@ module.exports={
76366
76312
  "Gy": "4fe342e2fe1a7f9b8ee7eb4a7c0f9e162bce33576b315ececbb6406837bf51f5"
76367
76313
  }
76368
76314
  }
76369
- },{}],511:[function(require,module,exports){
76315
+ },{}],510:[function(require,module,exports){
76370
76316
  var Point = require('./point')
76371
76317
  var Curve = require('./curve')
76372
76318
 
@@ -76378,7 +76324,7 @@ module.exports = {
76378
76324
  getCurveByName: getCurveByName
76379
76325
  }
76380
76326
 
76381
- },{"./curve":509,"./names":512,"./point":513}],512:[function(require,module,exports){
76327
+ },{"./curve":508,"./names":511,"./point":512}],511:[function(require,module,exports){
76382
76328
  var BigInteger = require('../../bigi-1.4.2/lib/index')
76383
76329
 
76384
76330
  var curves = require('./curves.json')
@@ -76401,7 +76347,7 @@ function getCurveByName (name) {
76401
76347
 
76402
76348
  module.exports = getCurveByName
76403
76349
 
76404
- },{"../../bigi-1.4.2/lib/index":430,"./curve":509,"./curves.json":510}],513:[function(require,module,exports){
76350
+ },{"../../bigi-1.4.2/lib/index":429,"./curve":508,"./curves.json":509}],512:[function(require,module,exports){
76405
76351
  var assert = require('assert')
76406
76352
  var Buffer = require('../../safe-buffer-5.2.0/index').Buffer
76407
76353
  var BigInteger = require('../../bigi-1.4.2/lib/index')
@@ -76647,7 +76593,7 @@ Point.prototype.toString = function () {
76647
76593
 
76648
76594
  module.exports = Point
76649
76595
 
76650
- },{"../../bigi-1.4.2/lib/index":430,"../../safe-buffer-5.2.0/index":584,"assert":16}],514:[function(require,module,exports){
76596
+ },{"../../bigi-1.4.2/lib/index":429,"../../safe-buffer-5.2.0/index":583,"assert":16}],513:[function(require,module,exports){
76651
76597
  'use strict';
76652
76598
 
76653
76599
  var elliptic = exports;
@@ -76662,7 +76608,7 @@ elliptic.curves = require('./elliptic/curves');
76662
76608
  elliptic.ec = require('./elliptic/ec');
76663
76609
  elliptic.eddsa = require('./elliptic/eddsa');
76664
76610
 
76665
- },{"../../brorand-1.1.0/index":490,"../package.json":529,"./elliptic/curve":517,"./elliptic/curves":520,"./elliptic/ec":521,"./elliptic/eddsa":524,"./elliptic/utils":528}],515:[function(require,module,exports){
76611
+ },{"../../brorand-1.1.0/index":489,"../package.json":528,"./elliptic/curve":516,"./elliptic/curves":519,"./elliptic/ec":520,"./elliptic/eddsa":523,"./elliptic/utils":527}],514:[function(require,module,exports){
76666
76612
  'use strict';
76667
76613
 
76668
76614
  var BN = require('../../../../bn.js-4.11.8/lib/bn');
@@ -77040,7 +76986,7 @@ BasePoint.prototype.dblp = function dblp(k) {
77040
76986
  return r;
77041
76987
  };
77042
76988
 
77043
- },{"../../../../bn.js-4.11.8/lib/bn":489,"../utils":528}],516:[function(require,module,exports){
76989
+ },{"../../../../bn.js-4.11.8/lib/bn":488,"../utils":527}],515:[function(require,module,exports){
77044
76990
  'use strict';
77045
76991
 
77046
76992
  var utils = require('../utils');
@@ -77474,9 +77420,9 @@ Point.prototype.eqXToP = function eqXToP(x) {
77474
77420
  Point.prototype.toP = Point.prototype.normalize;
77475
77421
  Point.prototype.mixedAdd = Point.prototype.add;
77476
77422
 
77477
- },{"../../../../bn.js-4.11.8/lib/bn":489,"../../../../inherits-2.0.4/inherits":550,"../utils":528,"./base":515}],517:[function(require,module,exports){
77423
+ },{"../../../../bn.js-4.11.8/lib/bn":488,"../../../../inherits-2.0.4/inherits":549,"../utils":527,"./base":514}],516:[function(require,module,exports){
77478
77424
  arguments[4][93][0].apply(exports,arguments)
77479
- },{"./base":515,"./edwards":516,"./mont":518,"./short":519,"dup":93}],518:[function(require,module,exports){
77425
+ },{"./base":514,"./edwards":515,"./mont":517,"./short":518,"dup":93}],517:[function(require,module,exports){
77480
77426
  'use strict';
77481
77427
 
77482
77428
  var BN = require('../../../../bn.js-4.11.8/lib/bn');
@@ -77656,7 +77602,7 @@ Point.prototype.getX = function getX() {
77656
77602
  return this.x.fromRed();
77657
77603
  };
77658
77604
 
77659
- },{"../../../../bn.js-4.11.8/lib/bn":489,"../../../../inherits-2.0.4/inherits":550,"../utils":528,"./base":515}],519:[function(require,module,exports){
77605
+ },{"../../../../bn.js-4.11.8/lib/bn":488,"../../../../inherits-2.0.4/inherits":549,"../utils":527,"./base":514}],518:[function(require,module,exports){
77660
77606
  'use strict';
77661
77607
 
77662
77608
  var utils = require('../utils');
@@ -78595,7 +78541,7 @@ JPoint.prototype.isInfinity = function isInfinity() {
78595
78541
  return this.z.cmpn(0) === 0;
78596
78542
  };
78597
78543
 
78598
- },{"../../../../bn.js-4.11.8/lib/bn":489,"../../../../inherits-2.0.4/inherits":550,"../utils":528,"./base":515}],520:[function(require,module,exports){
78544
+ },{"../../../../bn.js-4.11.8/lib/bn":488,"../../../../inherits-2.0.4/inherits":549,"../utils":527,"./base":514}],519:[function(require,module,exports){
78599
78545
  'use strict';
78600
78546
 
78601
78547
  var curves = exports;
@@ -78803,7 +78749,7 @@ defineCurve('secp256k1', {
78803
78749
  ]
78804
78750
  });
78805
78751
 
78806
- },{"../../../hash.js-1.1.7/lib/hash":537,"./curve":517,"./precomputed/secp256k1":527,"./utils":528}],521:[function(require,module,exports){
78752
+ },{"../../../hash.js-1.1.7/lib/hash":536,"./curve":516,"./precomputed/secp256k1":526,"./utils":527}],520:[function(require,module,exports){
78807
78753
  'use strict';
78808
78754
 
78809
78755
  var BN = require('../../../../bn.js-4.11.8/lib/bn');
@@ -79046,7 +78992,7 @@ EC.prototype.getKeyRecoveryParam = function(e, signature, Q, enc) {
79046
78992
  throw new Error('Unable to find valid recovery factor');
79047
78993
  };
79048
78994
 
79049
- },{"../../../../bn.js-4.11.8/lib/bn":489,"../../../../brorand-1.1.0/index":490,"../../../../hmac-drbg-1.0.1/lib/hmac-drbg":549,"../curves":520,"../utils":528,"./key":522,"./signature":523}],522:[function(require,module,exports){
78995
+ },{"../../../../bn.js-4.11.8/lib/bn":488,"../../../../brorand-1.1.0/index":489,"../../../../hmac-drbg-1.0.1/lib/hmac-drbg":548,"../curves":519,"../utils":527,"./key":521,"./signature":522}],521:[function(require,module,exports){
79050
78996
  'use strict';
79051
78997
 
79052
78998
  var BN = require('../../../../bn.js-4.11.8/lib/bn');
@@ -79166,7 +79112,7 @@ KeyPair.prototype.inspect = function inspect() {
79166
79112
  ' pub: ' + (this.pub && this.pub.inspect()) + ' >';
79167
79113
  };
79168
79114
 
79169
- },{"../../../../bn.js-4.11.8/lib/bn":489,"../utils":528}],523:[function(require,module,exports){
79115
+ },{"../../../../bn.js-4.11.8/lib/bn":488,"../utils":527}],522:[function(require,module,exports){
79170
79116
  'use strict';
79171
79117
 
79172
79118
  var BN = require('../../../../bn.js-4.11.8/lib/bn');
@@ -79334,7 +79280,7 @@ Signature.prototype.toDER = function toDER(enc) {
79334
79280
  return utils.encode(res, enc);
79335
79281
  };
79336
79282
 
79337
- },{"../../../../bn.js-4.11.8/lib/bn":489,"../utils":528}],524:[function(require,module,exports){
79283
+ },{"../../../../bn.js-4.11.8/lib/bn":488,"../utils":527}],523:[function(require,module,exports){
79338
79284
  'use strict';
79339
79285
 
79340
79286
  var hash = require('../../../../hash.js-1.1.7/lib/hash');
@@ -79454,9 +79400,9 @@ EDDSA.prototype.isPoint = function isPoint(val) {
79454
79400
  return val instanceof this.pointClass;
79455
79401
  };
79456
79402
 
79457
- },{"../../../../hash.js-1.1.7/lib/hash":537,"../curves":520,"../utils":528,"./key":525,"./signature":526}],525:[function(require,module,exports){
79403
+ },{"../../../../hash.js-1.1.7/lib/hash":536,"../curves":519,"../utils":527,"./key":524,"./signature":525}],524:[function(require,module,exports){
79458
79404
  arguments[4][101][0].apply(exports,arguments)
79459
- },{"../utils":528,"dup":101}],526:[function(require,module,exports){
79405
+ },{"../utils":527,"dup":101}],525:[function(require,module,exports){
79460
79406
  'use strict';
79461
79407
 
79462
79408
  var BN = require('../../../../bn.js-4.11.8/lib/bn');
@@ -79523,7 +79469,7 @@ Signature.prototype.toHex = function toHex() {
79523
79469
 
79524
79470
  module.exports = Signature;
79525
79471
 
79526
- },{"../../../../bn.js-4.11.8/lib/bn":489,"../utils":528}],527:[function(require,module,exports){
79472
+ },{"../../../../bn.js-4.11.8/lib/bn":488,"../utils":527}],526:[function(require,module,exports){
79527
79473
  module.exports = {
79528
79474
  doubles: {
79529
79475
  step: 4,
@@ -80305,7 +80251,7 @@ module.exports = {
80305
80251
  }
80306
80252
  };
80307
80253
 
80308
- },{}],528:[function(require,module,exports){
80254
+ },{}],527:[function(require,module,exports){
80309
80255
  'use strict';
80310
80256
 
80311
80257
  var utils = exports;
@@ -80426,7 +80372,7 @@ function intFromLE(bytes) {
80426
80372
  utils.intFromLE = intFromLE;
80427
80373
 
80428
80374
 
80429
- },{"../../../bn.js-4.11.8/lib/bn":489,"../../../minimalistic-assert-1.0.1/index":555,"../../../minimalistic-crypto-utils-1.0.1/lib/utils":556}],529:[function(require,module,exports){
80375
+ },{"../../../bn.js-4.11.8/lib/bn":488,"../../../minimalistic-assert-1.0.1/index":554,"../../../minimalistic-crypto-utils-1.0.1/lib/utils":555}],528:[function(require,module,exports){
80430
80376
  module.exports={
80431
80377
  "name": "elliptic",
80432
80378
  "version": "6.5.3",
@@ -80482,7 +80428,7 @@ module.exports={
80482
80428
  "minimalistic-crypto-utils": "^1.0.0"
80483
80429
  }
80484
80430
  }
80485
- },{}],530:[function(require,module,exports){
80431
+ },{}],529:[function(require,module,exports){
80486
80432
  (function (Buffer){(function (){
80487
80433
  'use strict';
80488
80434
 
@@ -80660,7 +80606,7 @@ Object.defineProperties( hkdf, {
80660
80606
  module.exports = hkdf;
80661
80607
 
80662
80608
  }).call(this)}).call(this,require("buffer").Buffer)
80663
- },{"buffer":67,"crypto":78}],531:[function(require,module,exports){
80609
+ },{"buffer":67,"crypto":78}],530:[function(require,module,exports){
80664
80610
  'use strict';
80665
80611
 
80666
80612
  var groestl = require('./lib/groestl');
@@ -80700,7 +80646,7 @@ module.exports.groestl_2 = function(str,format, output) {
80700
80646
  return h.int32ArrayToHexString(a);
80701
80647
  }
80702
80648
  }
80703
- },{"./lib/groestl":532,"./lib/helper":533}],532:[function(require,module,exports){
80649
+ },{"./lib/groestl":531,"./lib/helper":532}],531:[function(require,module,exports){
80704
80650
  /////////////////////////////////////
80705
80651
  //////////// groestl ///////////////
80706
80652
 
@@ -81949,7 +81895,7 @@ module.exports = function(input, format, output) {
81949
81895
  }
81950
81896
  return out;
81951
81897
  }
81952
- },{"./helper":533,"./op":534}],533:[function(require,module,exports){
81898
+ },{"./helper":532,"./op":533}],532:[function(require,module,exports){
81953
81899
  'use strict';
81954
81900
  // String functions
81955
81901
 
@@ -82203,7 +82149,7 @@ module.exports.b64Decode = function(input) {
82203
82149
  }
82204
82150
  return output;
82205
82151
  };
82206
- },{"./op.js":534}],534:[function(require,module,exports){
82152
+ },{"./op.js":533}],533:[function(require,module,exports){
82207
82153
  'use strict';
82208
82154
  //the right shift is important, it has to do with 32 bit operations in javascript, it will make things faster
82209
82155
  function u64(h, l) {
@@ -82667,7 +82613,7 @@ module.exports.xORTable = function(d, s1, s2, len) {
82667
82613
  }
82668
82614
  }
82669
82615
 
82670
- },{}],535:[function(require,module,exports){
82616
+ },{}],534:[function(require,module,exports){
82671
82617
  (function (Buffer){(function (){
82672
82618
  const bs58grscheck = require('../bs58grscheck-2.1.2/index')
82673
82619
  const bech32 = require('../bech32-1.1.3/index')
@@ -82916,7 +82862,7 @@ module.exports = {
82916
82862
  }
82917
82863
 
82918
82864
  }).call(this)}).call(this,require("buffer").Buffer)
82919
- },{"../bech32-1.1.3/index":427,"../bs58grscheck-2.1.2/index":495,"../buffer-equals-1.0.4/index":496,"../create-hash-1.2.0/browser":499,"../secp256k1-3.7.1/elliptic":585,"../varuint-bitcoin-1.1.2/index":608,"buffer":67}],536:[function(require,module,exports){
82865
+ },{"../bech32-1.1.3/index":426,"../bs58grscheck-2.1.2/index":494,"../buffer-equals-1.0.4/index":495,"../create-hash-1.2.0/browser":498,"../secp256k1-3.7.1/elliptic":584,"../varuint-bitcoin-1.1.2/index":607,"buffer":67}],535:[function(require,module,exports){
82920
82866
  'use strict'
82921
82867
  var Buffer = require('../safe-buffer-5.2.0/index').Buffer
82922
82868
  var Transform = require('stream').Transform
@@ -83013,9 +82959,9 @@ HashBase.prototype._digest = function () {
83013
82959
 
83014
82960
  module.exports = HashBase
83015
82961
 
83016
- },{"../inherits-2.0.4/inherits":550,"../safe-buffer-5.2.0/index":584,"stream":192}],537:[function(require,module,exports){
82962
+ },{"../inherits-2.0.4/inherits":549,"../safe-buffer-5.2.0/index":583,"stream":192}],536:[function(require,module,exports){
83017
82963
  arguments[4][134][0].apply(exports,arguments)
83018
- },{"./hash/common":538,"./hash/hmac":539,"./hash/ripemd":540,"./hash/sha":541,"./hash/utils":548,"dup":134}],538:[function(require,module,exports){
82964
+ },{"./hash/common":537,"./hash/hmac":538,"./hash/ripemd":539,"./hash/sha":540,"./hash/utils":547,"dup":134}],537:[function(require,module,exports){
83019
82965
  'use strict';
83020
82966
 
83021
82967
  var utils = require('./utils');
@@ -83109,7 +83055,7 @@ BlockHash.prototype._pad = function pad() {
83109
83055
  return res;
83110
83056
  };
83111
83057
 
83112
- },{"../../../minimalistic-assert-1.0.1/index":555,"./utils":548}],539:[function(require,module,exports){
83058
+ },{"../../../minimalistic-assert-1.0.1/index":554,"./utils":547}],538:[function(require,module,exports){
83113
83059
  'use strict';
83114
83060
 
83115
83061
  var utils = require('./utils');
@@ -83158,15 +83104,15 @@ Hmac.prototype.digest = function digest(enc) {
83158
83104
  return this.outer.digest(enc);
83159
83105
  };
83160
83106
 
83161
- },{"../../../minimalistic-assert-1.0.1/index":555,"./utils":548}],540:[function(require,module,exports){
83107
+ },{"../../../minimalistic-assert-1.0.1/index":554,"./utils":547}],539:[function(require,module,exports){
83162
83108
  arguments[4][137][0].apply(exports,arguments)
83163
- },{"./common":538,"./utils":548,"dup":137}],541:[function(require,module,exports){
83109
+ },{"./common":537,"./utils":547,"dup":137}],540:[function(require,module,exports){
83164
83110
  arguments[4][138][0].apply(exports,arguments)
83165
- },{"./sha/1":542,"./sha/224":543,"./sha/256":544,"./sha/384":545,"./sha/512":546,"dup":138}],542:[function(require,module,exports){
83111
+ },{"./sha/1":541,"./sha/224":542,"./sha/256":543,"./sha/384":544,"./sha/512":545,"dup":138}],541:[function(require,module,exports){
83166
83112
  arguments[4][139][0].apply(exports,arguments)
83167
- },{"../common":538,"../utils":548,"./common":547,"dup":139}],543:[function(require,module,exports){
83113
+ },{"../common":537,"../utils":547,"./common":546,"dup":139}],542:[function(require,module,exports){
83168
83114
  arguments[4][140][0].apply(exports,arguments)
83169
- },{"../utils":548,"./256":544,"dup":140}],544:[function(require,module,exports){
83115
+ },{"../utils":547,"./256":543,"dup":140}],543:[function(require,module,exports){
83170
83116
  'use strict';
83171
83117
 
83172
83118
  var utils = require('../utils');
@@ -83273,9 +83219,9 @@ SHA256.prototype._digest = function digest(enc) {
83273
83219
  return utils.split32(this.h, 'big');
83274
83220
  };
83275
83221
 
83276
- },{"../../../../minimalistic-assert-1.0.1/index":555,"../common":538,"../utils":548,"./common":547}],545:[function(require,module,exports){
83222
+ },{"../../../../minimalistic-assert-1.0.1/index":554,"../common":537,"../utils":547,"./common":546}],544:[function(require,module,exports){
83277
83223
  arguments[4][142][0].apply(exports,arguments)
83278
- },{"../utils":548,"./512":546,"dup":142}],546:[function(require,module,exports){
83224
+ },{"../utils":547,"./512":545,"dup":142}],545:[function(require,module,exports){
83279
83225
  'use strict';
83280
83226
 
83281
83227
  var utils = require('../utils');
@@ -83607,9 +83553,9 @@ function g1_512_lo(xh, xl) {
83607
83553
  return r;
83608
83554
  }
83609
83555
 
83610
- },{"../../../../minimalistic-assert-1.0.1/index":555,"../common":538,"../utils":548}],547:[function(require,module,exports){
83556
+ },{"../../../../minimalistic-assert-1.0.1/index":554,"../common":537,"../utils":547}],546:[function(require,module,exports){
83611
83557
  arguments[4][144][0].apply(exports,arguments)
83612
- },{"../utils":548,"dup":144}],548:[function(require,module,exports){
83558
+ },{"../utils":547,"dup":144}],547:[function(require,module,exports){
83613
83559
  'use strict';
83614
83560
 
83615
83561
  var assert = require('../../../minimalistic-assert-1.0.1/index');
@@ -83889,7 +83835,7 @@ function shr64_lo(ah, al, num) {
83889
83835
  }
83890
83836
  exports.shr64_lo = shr64_lo;
83891
83837
 
83892
- },{"../../../inherits-2.0.4/inherits":550,"../../../minimalistic-assert-1.0.1/index":555}],549:[function(require,module,exports){
83838
+ },{"../../../inherits-2.0.4/inherits":549,"../../../minimalistic-assert-1.0.1/index":554}],548:[function(require,module,exports){
83893
83839
  'use strict';
83894
83840
 
83895
83841
  var hash = require('../../hash.js-1.1.7/lib/hash');
@@ -84004,7 +83950,7 @@ HmacDRBG.prototype.generate = function generate(len, enc, add, addEnc) {
84004
83950
  return utils.encode(res, enc);
84005
83951
  };
84006
83952
 
84007
- },{"../../hash.js-1.1.7/lib/hash":537,"../../minimalistic-assert-1.0.1/index":555,"../../minimalistic-crypto-utils-1.0.1/lib/utils":556}],550:[function(require,module,exports){
83953
+ },{"../../hash.js-1.1.7/lib/hash":536,"../../minimalistic-assert-1.0.1/index":554,"../../minimalistic-crypto-utils-1.0.1/lib/utils":555}],549:[function(require,module,exports){
84008
83954
  try {
84009
83955
  var util = require('util');
84010
83956
  /* istanbul ignore next */
@@ -84015,9 +83961,9 @@ try {
84015
83961
  module.exports = require('./inherits_browser.js');
84016
83962
  }
84017
83963
 
84018
- },{"./inherits_browser.js":551,"util":212}],551:[function(require,module,exports){
83964
+ },{"./inherits_browser.js":550,"util":211}],550:[function(require,module,exports){
84019
83965
  arguments[4][148][0].apply(exports,arguments)
84020
- },{"dup":148}],552:[function(require,module,exports){
83966
+ },{"dup":148}],551:[function(require,module,exports){
84021
83967
  /*!
84022
83968
  * Determine if an object is a Buffer
84023
83969
  *
@@ -84030,7 +83976,7 @@ module.exports = function isBuffer (obj) {
84030
83976
  typeof obj.constructor.isBuffer === 'function' && obj.constructor.isBuffer(obj)
84031
83977
  }
84032
83978
 
84033
- },{}],553:[function(require,module,exports){
83979
+ },{}],552:[function(require,module,exports){
84034
83980
  'use strict'
84035
83981
  var inherits = require('../inherits-2.0.4/inherits')
84036
83982
  var HashBase = require('../hash-base-3.0.4/index')
@@ -84178,13 +84124,13 @@ function fnI (a, b, c, d, m, k, s) {
84178
84124
 
84179
84125
  module.exports = MD5
84180
84126
 
84181
- },{"../hash-base-3.0.4/index":536,"../inherits-2.0.4/inherits":550,"../safe-buffer-5.2.0/index":584}],554:[function(require,module,exports){
84182
- arguments[4][355][0].apply(exports,arguments)
84183
- },{"buffer":67,"dup":355}],555:[function(require,module,exports){
84127
+ },{"../hash-base-3.0.4/index":535,"../inherits-2.0.4/inherits":549,"../safe-buffer-5.2.0/index":583}],553:[function(require,module,exports){
84128
+ arguments[4][354][0].apply(exports,arguments)
84129
+ },{"buffer":67,"dup":354}],554:[function(require,module,exports){
84184
84130
  arguments[4][157][0].apply(exports,arguments)
84185
- },{"dup":157}],556:[function(require,module,exports){
84131
+ },{"dup":157}],555:[function(require,module,exports){
84186
84132
  arguments[4][158][0].apply(exports,arguments)
84187
- },{"dup":158}],557:[function(require,module,exports){
84133
+ },{"dup":158}],556:[function(require,module,exports){
84188
84134
  /**
84189
84135
  * Helpers.
84190
84136
  */
@@ -84348,7 +84294,7 @@ function plural(ms, msAbs, n, name) {
84348
84294
  return Math.round(ms / n) + ' ' + name + (isPlural ? 's' : '');
84349
84295
  }
84350
84296
 
84351
- },{}],558:[function(require,module,exports){
84297
+ },{}],557:[function(require,module,exports){
84352
84298
  assert.notEqual = notEqual
84353
84299
  assert.notOk = notOk
84354
84300
  assert.equal = equal
@@ -84372,7 +84318,7 @@ function assert (t, m) {
84372
84318
  if (!t) throw new Error(m || 'AssertionError')
84373
84319
  }
84374
84320
 
84375
- },{}],559:[function(require,module,exports){
84321
+ },{}],558:[function(require,module,exports){
84376
84322
  // Top level file is just a mixin of submodules & constants
84377
84323
  'use strict'
84378
84324
 
@@ -84392,7 +84338,7 @@ module.exports.inflateRaw = inflateRaw
84392
84338
  module.exports.ungzip = ungzip
84393
84339
  module.exports.constants = constants
84394
84340
 
84395
- },{"./lib/deflate":560,"./lib/inflate":561,"./lib/zlib/constants":565}],560:[function(require,module,exports){
84341
+ },{"./lib/deflate":559,"./lib/inflate":560,"./lib/zlib/constants":564}],559:[function(require,module,exports){
84396
84342
  'use strict'
84397
84343
 
84398
84344
  const zlib_deflate = require('./zlib/deflate')
@@ -84767,7 +84713,7 @@ module.exports.deflateRaw = deflateRaw
84767
84713
  module.exports.gzip = gzip
84768
84714
  module.exports.constants = require('./zlib/constants')
84769
84715
 
84770
- },{"./utils/common":562,"./utils/strings":563,"./zlib/constants":565,"./zlib/deflate":567,"./zlib/messages":572,"./zlib/zstream":574}],561:[function(require,module,exports){
84716
+ },{"./utils/common":561,"./utils/strings":562,"./zlib/constants":564,"./zlib/deflate":566,"./zlib/messages":571,"./zlib/zstream":573}],560:[function(require,module,exports){
84771
84717
  'use strict'
84772
84718
 
84773
84719
  const zlib_inflate = require('./zlib/inflate')
@@ -85171,7 +85117,7 @@ module.exports.inflateRaw = inflateRaw
85171
85117
  module.exports.ungzip = inflate
85172
85118
  module.exports.constants = require('./zlib/constants')
85173
85119
 
85174
- },{"./utils/common":562,"./utils/strings":563,"./zlib/constants":565,"./zlib/gzheader":568,"./zlib/inflate":570,"./zlib/messages":572,"./zlib/zstream":574}],562:[function(require,module,exports){
85120
+ },{"./utils/common":561,"./utils/strings":562,"./zlib/constants":564,"./zlib/gzheader":567,"./zlib/inflate":569,"./zlib/messages":571,"./zlib/zstream":573}],561:[function(require,module,exports){
85175
85121
  'use strict'
85176
85122
 
85177
85123
  const _has = (obj, key) => {
@@ -85221,7 +85167,7 @@ module.exports.flattenChunks = (chunks) => {
85221
85167
  return result
85222
85168
  }
85223
85169
 
85224
- },{}],563:[function(require,module,exports){
85170
+ },{}],562:[function(require,module,exports){
85225
85171
  // String encode/decode helpers
85226
85172
  'use strict'
85227
85173
 
@@ -85410,7 +85356,7 @@ module.exports.utf8border = (buf, max) => {
85410
85356
  return pos + _utf8len[buf[pos]] > max ? pos : max
85411
85357
  }
85412
85358
 
85413
- },{}],564:[function(require,module,exports){
85359
+ },{}],563:[function(require,module,exports){
85414
85360
  'use strict'
85415
85361
 
85416
85362
  // Note: adler32 takes 12% for level 0 and 2% for level 6.
@@ -85462,7 +85408,7 @@ const adler32 = (adler, buf, len, pos) => {
85462
85408
 
85463
85409
  module.exports = adler32
85464
85410
 
85465
- },{}],565:[function(require,module,exports){
85411
+ },{}],564:[function(require,module,exports){
85466
85412
  'use strict'
85467
85413
 
85468
85414
  // (C) 1995-2013 Jean-loup Gailly and Mark Adler
@@ -85530,7 +85476,7 @@ module.exports = {
85530
85476
  //Z_NULL: null // Use -1 or null inline, depending on var type
85531
85477
  }
85532
85478
 
85533
- },{}],566:[function(require,module,exports){
85479
+ },{}],565:[function(require,module,exports){
85534
85480
  'use strict'
85535
85481
 
85536
85482
  // Note: we can't get significant speed boost here.
@@ -85590,7 +85536,7 @@ const crc32 = (crc, buf, len, pos) => {
85590
85536
 
85591
85537
  module.exports = crc32
85592
85538
 
85593
- },{}],567:[function(require,module,exports){
85539
+ },{}],566:[function(require,module,exports){
85594
85540
  'use strict'
85595
85541
 
85596
85542
  // (C) 1995-2013 Jean-loup Gailly and Mark Adler
@@ -87441,7 +87387,7 @@ module.exports.deflatePrime = deflatePrime;
87441
87387
  module.exports.deflateTune = deflateTune;
87442
87388
  */
87443
87389
 
87444
- },{"./adler32":564,"./constants":565,"./crc32":566,"./messages":572,"./trees":573}],568:[function(require,module,exports){
87390
+ },{"./adler32":563,"./constants":564,"./crc32":565,"./messages":571,"./trees":572}],567:[function(require,module,exports){
87445
87391
  'use strict'
87446
87392
 
87447
87393
  // (C) 1995-2013 Jean-loup Gailly and Mark Adler
@@ -87501,7 +87447,7 @@ function GZheader() {
87501
87447
 
87502
87448
  module.exports = GZheader
87503
87449
 
87504
- },{}],569:[function(require,module,exports){
87450
+ },{}],568:[function(require,module,exports){
87505
87451
  'use strict'
87506
87452
 
87507
87453
  // (C) 1995-2013 Jean-loup Gailly and Mark Adler
@@ -87850,7 +87796,7 @@ module.exports = function inflate_fast(strm, start) {
87850
87796
  return
87851
87797
  }
87852
87798
 
87853
- },{}],570:[function(require,module,exports){
87799
+ },{}],569:[function(require,module,exports){
87854
87800
  'use strict'
87855
87801
 
87856
87802
  // (C) 1995-2013 Jean-loup Gailly and Mark Adler
@@ -89477,7 +89423,7 @@ module.exports.inflateSyncPoint = inflateSyncPoint;
89477
89423
  module.exports.inflateUndermine = inflateUndermine;
89478
89424
  */
89479
89425
 
89480
- },{"./adler32":564,"./constants":565,"./crc32":566,"./inffast":569,"./inftrees":571}],571:[function(require,module,exports){
89426
+ },{"./adler32":563,"./constants":564,"./crc32":565,"./inffast":568,"./inftrees":570}],570:[function(require,module,exports){
89481
89427
  'use strict'
89482
89428
 
89483
89429
  // (C) 1995-2013 Jean-loup Gailly and Mark Adler
@@ -89941,7 +89887,7 @@ const inflate_table = (type, lens, lens_index, codes, table, table_index, work,
89941
89887
 
89942
89888
  module.exports = inflate_table
89943
89889
 
89944
- },{}],572:[function(require,module,exports){
89890
+ },{}],571:[function(require,module,exports){
89945
89891
  'use strict'
89946
89892
 
89947
89893
  // (C) 1995-2013 Jean-loup Gailly and Mark Adler
@@ -89975,7 +89921,7 @@ module.exports = {
89975
89921
  '-6': 'incompatible version' /* Z_VERSION_ERROR (-6) */
89976
89922
  }
89977
89923
 
89978
- },{}],573:[function(require,module,exports){
89924
+ },{}],572:[function(require,module,exports){
89979
89925
  'use strict'
89980
89926
 
89981
89927
  // (C) 1995-2013 Jean-loup Gailly and Mark Adler
@@ -91169,7 +91115,7 @@ module.exports._tr_flush_block = _tr_flush_block
91169
91115
  module.exports._tr_tally = _tr_tally
91170
91116
  module.exports._tr_align = _tr_align
91171
91117
 
91172
- },{}],574:[function(require,module,exports){
91118
+ },{}],573:[function(require,module,exports){
91173
91119
  'use strict'
91174
91120
 
91175
91121
  // (C) 1995-2013 Jean-loup Gailly and Mark Adler
@@ -91218,7 +91164,7 @@ function ZStream() {
91218
91164
 
91219
91165
  module.exports = ZStream
91220
91166
 
91221
- },{}],575:[function(require,module,exports){
91167
+ },{}],574:[function(require,module,exports){
91222
91168
  var checkParameters = require('./lib/precondition')
91223
91169
  var native = require('crypto')
91224
91170
 
@@ -91251,7 +91197,7 @@ if (!native.pbkdf2Sync || native.pbkdf2Sync.toString().indexOf('keylen, digest')
91251
91197
  exports.pbkdf2 = nativePBKDF2
91252
91198
  }
91253
91199
 
91254
- },{"./lib/async":576,"./lib/precondition":578,"./lib/sync":579,"crypto":78}],576:[function(require,module,exports){
91200
+ },{"./lib/async":575,"./lib/precondition":577,"./lib/sync":578,"crypto":78}],575:[function(require,module,exports){
91255
91201
  (function (process,global){(function (){
91256
91202
  var checkParameters = require('./precondition')
91257
91203
  var defaultEncoding = require('./default-encoding')
@@ -91355,7 +91301,7 @@ module.exports = function (password, salt, iterations, keylen, digest, callback)
91355
91301
  }
91356
91302
 
91357
91303
  }).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
91358
- },{"../../safe-buffer-5.2.0/index":584,"./default-encoding":577,"./precondition":578,"./sync":579,"_process":171}],577:[function(require,module,exports){
91304
+ },{"../../safe-buffer-5.2.0/index":583,"./default-encoding":576,"./precondition":577,"./sync":578,"_process":171}],576:[function(require,module,exports){
91359
91305
  (function (process){(function (){
91360
91306
  var defaultEncoding
91361
91307
  /* istanbul ignore next */
@@ -91369,7 +91315,7 @@ if (process.browser) {
91369
91315
  module.exports = defaultEncoding
91370
91316
 
91371
91317
  }).call(this)}).call(this,require('_process'))
91372
- },{"_process":171}],578:[function(require,module,exports){
91318
+ },{"_process":171}],577:[function(require,module,exports){
91373
91319
  (function (Buffer){(function (){
91374
91320
  var MAX_ALLOC = Math.pow(2, 30) - 1 // default in iojs
91375
91321
 
@@ -91400,8 +91346,8 @@ module.exports = function (password, salt, iterations, keylen) {
91400
91346
  }
91401
91347
  }
91402
91348
 
91403
- }).call(this)}).call(this,{"isBuffer":require("../../../../../../../node_modules/is-buffer/index.js")})
91404
- },{"../../../../../../../node_modules/is-buffer/index.js":150}],579:[function(require,module,exports){
91349
+ }).call(this)}).call(this,{"isBuffer":require("../../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js")})
91350
+ },{"../../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js":149}],578:[function(require,module,exports){
91405
91351
  var sizes = {
91406
91352
  md5: 16,
91407
91353
  sha1: 20,
@@ -91454,7 +91400,7 @@ function pbkdf2 (password, salt, iterations, keylen, digest) {
91454
91400
 
91455
91401
  module.exports = pbkdf2
91456
91402
 
91457
- },{"../../create-hmac-1.1.4/browser":501,"../../safe-buffer-5.2.0/index":584,"../lib/default-encoding":577,"../lib/precondition":578}],580:[function(require,module,exports){
91403
+ },{"../../create-hmac-1.1.4/browser":500,"../../safe-buffer-5.2.0/index":583,"../lib/default-encoding":576,"../lib/precondition":577}],579:[function(require,module,exports){
91458
91404
  var OPS = require('../bitcoin-ops-1.4.1/index.json')
91459
91405
 
91460
91406
  function encodingLength (i) {
@@ -91533,7 +91479,7 @@ module.exports = {
91533
91479
  decode: decode
91534
91480
  }
91535
91481
 
91536
- },{"../bitcoin-ops-1.4.1/index.json":443}],581:[function(require,module,exports){
91482
+ },{"../bitcoin-ops-1.4.1/index.json":442}],580:[function(require,module,exports){
91537
91483
  (function (process,global){(function (){
91538
91484
  'use strict'
91539
91485
 
@@ -91587,7 +91533,7 @@ function randomBytes (size, cb) {
91587
91533
  }
91588
91534
 
91589
91535
  }).call(this)}).call(this,require('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
91590
- },{"../safe-buffer-5.2.0/index":584,"_process":171}],582:[function(require,module,exports){
91536
+ },{"../safe-buffer-5.2.0/index":583,"_process":171}],581:[function(require,module,exports){
91591
91537
  'use strict'
91592
91538
  var Buffer = require('buffer').Buffer
91593
91539
  var inherits = require('../inherits-2.0.4/inherits')
@@ -91752,7 +91698,7 @@ function fn5 (a, b, c, d, e, m, k, s) {
91752
91698
 
91753
91699
  module.exports = RIPEMD160
91754
91700
 
91755
- },{"../hash-base-3.0.4/index":536,"../inherits-2.0.4/inherits":550,"buffer":67}],583:[function(require,module,exports){
91701
+ },{"../hash-base-3.0.4/index":535,"../inherits-2.0.4/inherits":549,"buffer":67}],582:[function(require,module,exports){
91756
91702
  const assert = require('assert')
91757
91703
  const Buffer = require('../safe-buffer-5.2.0/index').Buffer
91758
91704
  /**
@@ -91984,7 +91930,7 @@ function toBuffer (v) {
91984
91930
  return v
91985
91931
  }
91986
91932
 
91987
- },{"../safe-buffer-5.2.0/index":584,"assert":16}],584:[function(require,module,exports){
91933
+ },{"../safe-buffer-5.2.0/index":583,"assert":16}],583:[function(require,module,exports){
91988
91934
  /* eslint-disable node/no-deprecated-api */
91989
91935
  var buffer = require('buffer')
91990
91936
  var Buffer = buffer.Buffer
@@ -92050,11 +91996,11 @@ SafeBuffer.allocUnsafeSlow = function (size) {
92050
91996
  return buffer.SlowBuffer(size)
92051
91997
  }
92052
91998
 
92053
- },{"buffer":67}],585:[function(require,module,exports){
91999
+ },{"buffer":67}],584:[function(require,module,exports){
92054
92000
  'use strict'
92055
92001
  module.exports = require('./lib')(require('./lib/elliptic'))
92056
92002
 
92057
- },{"./lib":589,"./lib/elliptic":588}],586:[function(require,module,exports){
92003
+ },{"./lib":588,"./lib/elliptic":587}],585:[function(require,module,exports){
92058
92004
  (function (Buffer){(function (){
92059
92005
  'use strict'
92060
92006
  var toString = Object.prototype.toString
@@ -92101,8 +92047,8 @@ exports.isNumberInInterval = function (number, x, y, message) {
92101
92047
  if (number <= x || number >= y) throw RangeError(message)
92102
92048
  }
92103
92049
 
92104
- }).call(this)}).call(this,{"isBuffer":require("../../../../../../../node_modules/is-buffer/index.js")})
92105
- },{"../../../../../../../node_modules/is-buffer/index.js":150}],587:[function(require,module,exports){
92050
+ }).call(this)}).call(this,{"isBuffer":require("../../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js")})
92051
+ },{"../../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js":149}],586:[function(require,module,exports){
92106
92052
  'use strict'
92107
92053
  var Buffer = require('../../safe-buffer-5.2.0/index').Buffer
92108
92054
  var bip66 = require('../../bip66-1.1.5/index')
@@ -92297,7 +92243,7 @@ exports.signatureImportLax = function (sig) {
92297
92243
  return { r: r, s: s }
92298
92244
  }
92299
92245
 
92300
- },{"../../bip66-1.1.5/index":442,"../../safe-buffer-5.2.0/index":584}],588:[function(require,module,exports){
92246
+ },{"../../bip66-1.1.5/index":441,"../../safe-buffer-5.2.0/index":583}],587:[function(require,module,exports){
92301
92247
  'use strict'
92302
92248
  var Buffer = require('../../../safe-buffer-5.2.0/index').Buffer
92303
92249
  var createHash = require('../../../create-hash-1.2.0/browser')
@@ -92562,7 +92508,7 @@ exports.ecdhUnsafe = function (publicKey, privateKey, compressed) {
92562
92508
  return Buffer.from(pair.pub.mul(scalar).encode(true, compressed))
92563
92509
  }
92564
92510
 
92565
- },{"../../../bn.js-4.11.8/lib/bn":489,"../../../create-hash-1.2.0/browser":499,"../../../elliptic-6.5.3/lib/elliptic":514,"../../../safe-buffer-5.2.0/index":584,"../messages.json":590}],589:[function(require,module,exports){
92511
+ },{"../../../bn.js-4.11.8/lib/bn":488,"../../../create-hash-1.2.0/browser":498,"../../../elliptic-6.5.3/lib/elliptic":513,"../../../safe-buffer-5.2.0/index":583,"../messages.json":589}],588:[function(require,module,exports){
92566
92512
  'use strict'
92567
92513
  var assert = require('./assert')
92568
92514
  var der = require('./der')
@@ -92809,7 +92755,7 @@ module.exports = function (secp256k1) {
92809
92755
  }
92810
92756
  }
92811
92757
 
92812
- },{"./assert":586,"./der":587,"./messages.json":590}],590:[function(require,module,exports){
92758
+ },{"./assert":585,"./der":586,"./messages.json":589}],589:[function(require,module,exports){
92813
92759
  module.exports={
92814
92760
  "COMPRESSED_TYPE_INVALID": "compressed should be a boolean",
92815
92761
  "EC_PRIVATE_KEY_TYPE_INVALID": "private key should be a Buffer",
@@ -92847,10 +92793,10 @@ module.exports={
92847
92793
  "TWEAK_TYPE_INVALID": "tweak should be a Buffer",
92848
92794
  "TWEAK_LENGTH_INVALID": "tweak length is invalid"
92849
92795
  }
92850
- },{}],591:[function(require,module,exports){
92796
+ },{}],590:[function(require,module,exports){
92851
92797
  module.exports = require('./lib')(require('./lib/elliptic'))
92852
92798
 
92853
- },{"./lib":593,"./lib/elliptic":592}],592:[function(require,module,exports){
92799
+ },{"./lib":592,"./lib/elliptic":591}],591:[function(require,module,exports){
92854
92800
  const EC = require('../../elliptic-6.5.3/lib/elliptic').ec
92855
92801
 
92856
92802
  const ec = new EC('secp256k1')
@@ -93254,7 +93200,7 @@ module.exports = {
93254
93200
  }
93255
93201
  }
93256
93202
 
93257
- },{"../../elliptic-6.5.3/lib/elliptic":514}],593:[function(require,module,exports){
93203
+ },{"../../elliptic-6.5.3/lib/elliptic":513}],592:[function(require,module,exports){
93258
93204
  const errors = {
93259
93205
  IMPOSSIBLE_CASE: 'Impossible case. Please create issue.',
93260
93206
  TWEAK_ADD:
@@ -93592,7 +93538,7 @@ module.exports = (secp256k1) => {
93592
93538
  }
93593
93539
  }
93594
93540
 
93595
- },{}],594:[function(require,module,exports){
93541
+ },{}],593:[function(require,module,exports){
93596
93542
  var Buffer = require('../safe-buffer-5.2.0/index').Buffer
93597
93543
 
93598
93544
  // prototype class for hash functions
@@ -93675,7 +93621,7 @@ Hash.prototype._update = function () {
93675
93621
 
93676
93622
  module.exports = Hash
93677
93623
 
93678
- },{"../safe-buffer-5.2.0/index":584}],595:[function(require,module,exports){
93624
+ },{"../safe-buffer-5.2.0/index":583}],594:[function(require,module,exports){
93679
93625
  'use strict'
93680
93626
  var exports = (module.exports = function SHA(algorithm) {
93681
93627
  algorithm = algorithm.toLowerCase()
@@ -93693,7 +93639,7 @@ exports.sha256 = require('./sha256')
93693
93639
  exports.sha384 = require('./sha384')
93694
93640
  exports.sha512 = require('./sha512')
93695
93641
 
93696
- },{"./sha":596,"./sha1":597,"./sha224":598,"./sha256":599,"./sha384":600,"./sha512":601}],596:[function(require,module,exports){
93642
+ },{"./sha":595,"./sha1":596,"./sha224":597,"./sha256":598,"./sha384":599,"./sha512":600}],595:[function(require,module,exports){
93697
93643
  /*
93698
93644
  * A JavaScript implementation of the Secure Hash Algorithm, SHA-0, as defined
93699
93645
  * in FIPS PUB 180-1
@@ -93789,7 +93735,7 @@ Sha.prototype._hash = function () {
93789
93735
 
93790
93736
  module.exports = Sha
93791
93737
 
93792
- },{"../inherits-2.0.4/inherits":550,"../safe-buffer-5.2.0/index":584,"./hash":594}],597:[function(require,module,exports){
93738
+ },{"../inherits-2.0.4/inherits":549,"../safe-buffer-5.2.0/index":583,"./hash":593}],596:[function(require,module,exports){
93793
93739
  /*
93794
93740
  * A JavaScript implementation of the Secure Hash Algorithm, SHA-1, as defined
93795
93741
  * in FIPS PUB 180-1
@@ -93890,7 +93836,7 @@ Sha1.prototype._hash = function () {
93890
93836
 
93891
93837
  module.exports = Sha1
93892
93838
 
93893
- },{"../inherits-2.0.4/inherits":550,"../safe-buffer-5.2.0/index":584,"./hash":594}],598:[function(require,module,exports){
93839
+ },{"../inherits-2.0.4/inherits":549,"../safe-buffer-5.2.0/index":583,"./hash":593}],597:[function(require,module,exports){
93894
93840
  /**
93895
93841
  * A JavaScript implementation of the Secure Hash Algorithm, SHA-256, as defined
93896
93842
  * in FIPS 180-2
@@ -93945,7 +93891,7 @@ Sha224.prototype._hash = function () {
93945
93891
 
93946
93892
  module.exports = Sha224
93947
93893
 
93948
- },{"../inherits-2.0.4/inherits":550,"../safe-buffer-5.2.0/index":584,"./hash":594,"./sha256":599}],599:[function(require,module,exports){
93894
+ },{"../inherits-2.0.4/inherits":549,"../safe-buffer-5.2.0/index":583,"./hash":593,"./sha256":598}],598:[function(require,module,exports){
93949
93895
  /**
93950
93896
  * A JavaScript implementation of the Secure Hash Algorithm, SHA-256, as defined
93951
93897
  * in FIPS 180-2
@@ -94082,7 +94028,7 @@ Sha256.prototype._hash = function () {
94082
94028
 
94083
94029
  module.exports = Sha256
94084
94030
 
94085
- },{"../inherits-2.0.4/inherits":550,"../safe-buffer-5.2.0/index":584,"./hash":594}],600:[function(require,module,exports){
94031
+ },{"../inherits-2.0.4/inherits":549,"../safe-buffer-5.2.0/index":583,"./hash":593}],599:[function(require,module,exports){
94086
94032
  var inherits = require('../inherits-2.0.4/inherits')
94087
94033
  var SHA512 = require('./sha512')
94088
94034
  var Hash = require('./hash')
@@ -94141,7 +94087,7 @@ Sha384.prototype._hash = function () {
94141
94087
 
94142
94088
  module.exports = Sha384
94143
94089
 
94144
- },{"../inherits-2.0.4/inherits":550,"../safe-buffer-5.2.0/index":584,"./hash":594,"./sha512":601}],601:[function(require,module,exports){
94090
+ },{"../inherits-2.0.4/inherits":549,"../safe-buffer-5.2.0/index":583,"./hash":593,"./sha512":600}],600:[function(require,module,exports){
94145
94091
  var inherits = require('../inherits-2.0.4/inherits')
94146
94092
  var Hash = require('./hash')
94147
94093
  var Buffer = require('../safe-buffer-5.2.0/index').Buffer
@@ -94403,9 +94349,9 @@ Sha512.prototype._hash = function () {
94403
94349
 
94404
94350
  module.exports = Sha512
94405
94351
 
94406
- },{"../inherits-2.0.4/inherits":550,"../safe-buffer-5.2.0/index":584,"./hash":594}],602:[function(require,module,exports){
94407
- arguments[4][388][0].apply(exports,arguments)
94408
- },{"./native":605,"dup":388}],603:[function(require,module,exports){
94352
+ },{"../inherits-2.0.4/inherits":549,"../safe-buffer-5.2.0/index":583,"./hash":593}],601:[function(require,module,exports){
94353
+ arguments[4][387][0].apply(exports,arguments)
94354
+ },{"./native":604,"dup":387}],602:[function(require,module,exports){
94409
94355
  (function (Buffer){(function (){
94410
94356
  var NATIVE = require('./native')
94411
94357
  var ERRORS = require('./errors')
@@ -94499,12 +94445,12 @@ for (var typeName in types) {
94499
94445
 
94500
94446
  module.exports = types
94501
94447
 
94502
- }).call(this)}).call(this,{"isBuffer":require("../../../../../../node_modules/is-buffer/index.js")})
94503
- },{"../../../../../../node_modules/is-buffer/index.js":150,"./errors":602,"./native":605}],604:[function(require,module,exports){
94448
+ }).call(this)}).call(this,{"isBuffer":require("../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js")})
94449
+ },{"../../../../../../node_modules/insert-module-globals/node_modules/is-buffer/index.js":149,"./errors":601,"./native":604}],603:[function(require,module,exports){
94450
+ arguments[4][389][0].apply(exports,arguments)
94451
+ },{"./errors":601,"./extra":602,"./native":604,"dup":389}],604:[function(require,module,exports){
94504
94452
  arguments[4][390][0].apply(exports,arguments)
94505
- },{"./errors":602,"./extra":603,"./native":605,"dup":390}],605:[function(require,module,exports){
94506
- arguments[4][391][0].apply(exports,arguments)
94507
- },{"dup":391}],606:[function(require,module,exports){
94453
+ },{"dup":390}],605:[function(require,module,exports){
94508
94454
  (function (root) {
94509
94455
  "use strict";
94510
94456
 
@@ -94958,7 +94904,7 @@ UChar.udata={
94958
94904
  }
94959
94905
  }(this));
94960
94906
 
94961
- },{}],607:[function(require,module,exports){
94907
+ },{}],606:[function(require,module,exports){
94962
94908
  /*!
94963
94909
  * validate.js 0.13.1
94964
94910
  *
@@ -96213,7 +96159,7 @@ UChar.udata={
96213
96159
  typeof module !== 'undefined' ? /* istanbul ignore next */ module : null,
96214
96160
  typeof define !== 'undefined' ? /* istanbul ignore next */ define : null);
96215
96161
 
96216
- },{}],608:[function(require,module,exports){
96162
+ },{}],607:[function(require,module,exports){
96217
96163
  'use strict'
96218
96164
  var Buffer = require('../safe-buffer-5.2.0/index').Buffer
96219
96165
 
@@ -96305,7 +96251,7 @@ function encodingLength (number) {
96305
96251
 
96306
96252
  module.exports = { encode: encode, decode: decode, encodingLength: encodingLength }
96307
96253
 
96308
- },{"../safe-buffer-5.2.0/index":584}],609:[function(require,module,exports){
96254
+ },{"../safe-buffer-5.2.0/index":583}],608:[function(require,module,exports){
96309
96255
  (function (Buffer){(function (){
96310
96256
  var bs58check = require('../bs58check-2.1.2/index')
96311
96257
 
@@ -96372,7 +96318,7 @@ module.exports = {
96372
96318
  }
96373
96319
 
96374
96320
  }).call(this)}).call(this,require("buffer").Buffer)
96375
- },{"../bs58check-2.1.2/index":493,"buffer":67}],610:[function(require,module,exports){
96321
+ },{"../bs58check-2.1.2/index":492,"buffer":67}],609:[function(require,module,exports){
96376
96322
  "use strict";
96377
96323
  var __extends = (this && this.__extends) || (function () {
96378
96324
  var extendStatics = function (d, b) {
@@ -96407,6 +96353,7 @@ var Domain;
96407
96353
  Domain["TEZOSFA"] = "TEZOSFA";
96408
96354
  Domain["UTILS"] = "UTILS";
96409
96355
  Domain["ACTIONS"] = "ACTIONS";
96356
+ Domain["ICP"] = "ICP";
96410
96357
  })(Domain = exports.Domain || (exports.Domain = {}));
96411
96358
  var CoinlibError = /** @class */ (function (_super) {
96412
96359
  __extends(CoinlibError, _super);
@@ -96434,7 +96381,7 @@ var CoinlibAssertionError = /** @class */ (function (_super) {
96434
96381
  }(Error));
96435
96382
  exports.CoinlibAssertionError = CoinlibAssertionError;
96436
96383
 
96437
- },{}],611:[function(require,module,exports){
96384
+ },{}],610:[function(require,module,exports){
96438
96385
  "use strict";
96439
96386
  var __extends = (this && this.__extends) || (function () {
96440
96387
  var extendStatics = function (d, b) {
@@ -96716,7 +96663,7 @@ var InvalidString = /** @class */ (function (_super) {
96716
96663
  }(SerializerError));
96717
96664
  exports.InvalidString = InvalidString;
96718
96665
 
96719
- },{"./coinlib-error":610}],612:[function(require,module,exports){
96666
+ },{"./coinlib-error":609}],611:[function(require,module,exports){
96720
96667
  "use strict";
96721
96668
  Object.defineProperty(exports, "__esModule", { value: true });
96722
96669
  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;
@@ -96775,7 +96722,7 @@ var AirGapWallet_1 = require("./wallet/AirGapWallet");
96775
96722
  Object.defineProperty(exports, "AirGapWallet", { enumerable: true, get: function () { return AirGapWallet_1.AirGapWallet; } });
96776
96723
  Object.defineProperty(exports, "AirGapWalletStatus", { enumerable: true, get: function () { return AirGapWallet_1.AirGapWalletStatus; } });
96777
96724
 
96778
- },{"./actions/Action":395,"./actions/LinkedAction":396,"./actions/RepeatableAction":397,"./actions/SimpleAction":398,"./errors":611,"./errors/coinlib-error":610,"./protocols/CryptoClient":613,"./protocols/ICoinSubProtocol":614,"./utils/Network":617,"./utils/ProtocolBlockExplorer":618,"./utils/ProtocolNetwork":619,"./utils/ProtocolSymbols":620,"./utils/assert":621,"./utils/buffer":622,"./utils/interfaces":624,"./wallet/AirGapCoinWallet":626,"./wallet/AirGapMarketWallet":627,"./wallet/AirGapNFTWallet":628,"./wallet/AirGapWallet":629}],613:[function(require,module,exports){
96725
+ },{"./actions/Action":394,"./actions/LinkedAction":395,"./actions/RepeatableAction":396,"./actions/SimpleAction":397,"./errors":610,"./errors/coinlib-error":609,"./protocols/CryptoClient":612,"./protocols/ICoinSubProtocol":613,"./utils/Network":616,"./utils/ProtocolBlockExplorer":617,"./utils/ProtocolNetwork":618,"./utils/ProtocolSymbols":619,"./utils/assert":620,"./utils/buffer":621,"./utils/interfaces":623,"./wallet/AirGapCoinWallet":625,"./wallet/AirGapMarketWallet":626,"./wallet/AirGapNFTWallet":627,"./wallet/AirGapWallet":628}],612:[function(require,module,exports){
96779
96726
  "use strict";
96780
96727
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
96781
96728
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
@@ -96860,7 +96807,7 @@ var CryptoClient = /** @class */ (function () {
96860
96807
  }());
96861
96808
  exports.CryptoClient = CryptoClient;
96862
96809
 
96863
- },{"../errors":611,"../errors/coinlib-error":610,"../utils/AES":616}],614:[function(require,module,exports){
96810
+ },{"../errors":610,"../errors/coinlib-error":609,"../utils/AES":615}],613:[function(require,module,exports){
96864
96811
  "use strict";
96865
96812
  Object.defineProperty(exports, "__esModule", { value: true });
96866
96813
  exports.SubProtocolType = void 0;
@@ -96870,7 +96817,7 @@ var SubProtocolType;
96870
96817
  SubProtocolType["TOKEN"] = "token";
96871
96818
  })(SubProtocolType = exports.SubProtocolType || (exports.SubProtocolType = {}));
96872
96819
 
96873
- },{}],615:[function(require,module,exports){
96820
+ },{}],614:[function(require,module,exports){
96874
96821
  (function (Buffer){(function (){
96875
96822
  "use strict";
96876
96823
  var __extends = (this && this.__extends) || (function () {
@@ -96952,7 +96899,7 @@ var Secp256k1CryptoClient = /** @class */ (function (_super) {
96952
96899
  exports.Secp256k1CryptoClient = Secp256k1CryptoClient;
96953
96900
 
96954
96901
  }).call(this)}).call(this,require("buffer").Buffer)
96955
- },{"../dependencies/src/eciesjs-0.3.9/src/index":504,"./CryptoClient":613,"buffer":67}],616:[function(require,module,exports){
96902
+ },{"../dependencies/src/eciesjs-0.3.9/src/index":503,"./CryptoClient":612,"buffer":67}],615:[function(require,module,exports){
96956
96903
  (function (Buffer){(function (){
96957
96904
  "use strict";
96958
96905
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
@@ -97120,7 +97067,7 @@ var AES = /** @class */ (function () {
97120
97067
  exports.AES = AES;
97121
97068
 
97122
97069
  }).call(this)}).call(this,require("buffer").Buffer)
97123
- },{"../errors":611,"../errors/coinlib-error":610,"./hex":623,"buffer":67,"crypto":78}],617:[function(require,module,exports){
97070
+ },{"../errors":610,"../errors/coinlib-error":609,"./hex":622,"buffer":67,"crypto":78}],616:[function(require,module,exports){
97124
97071
  "use strict";
97125
97072
  Object.defineProperty(exports, "__esModule", { value: true });
97126
97073
  exports.isNetworkEqual = void 0;
@@ -97129,7 +97076,7 @@ var isNetworkEqual = function (network1, network2) {
97129
97076
  };
97130
97077
  exports.isNetworkEqual = isNetworkEqual;
97131
97078
 
97132
- },{}],618:[function(require,module,exports){
97079
+ },{}],617:[function(require,module,exports){
97133
97080
  "use strict";
97134
97081
  Object.defineProperty(exports, "__esModule", { value: true });
97135
97082
  exports.ProtocolBlockExplorer = void 0;
@@ -97141,7 +97088,7 @@ var ProtocolBlockExplorer = /** @class */ (function () {
97141
97088
  }());
97142
97089
  exports.ProtocolBlockExplorer = ProtocolBlockExplorer;
97143
97090
 
97144
- },{}],619:[function(require,module,exports){
97091
+ },{}],618:[function(require,module,exports){
97145
97092
  "use strict";
97146
97093
  Object.defineProperty(exports, "__esModule", { value: true });
97147
97094
  exports.ProtocolNetwork = exports.NetworkType = void 0;
@@ -97177,7 +97124,7 @@ var ProtocolNetwork = /** @class */ (function () {
97177
97124
  }());
97178
97125
  exports.ProtocolNetwork = ProtocolNetwork;
97179
97126
 
97180
- },{"../dependencies/src/create-hash-1.2.0/index":500}],620:[function(require,module,exports){
97127
+ },{"../dependencies/src/create-hash-1.2.0/index":499}],619:[function(require,module,exports){
97181
97128
  "use strict";
97182
97129
  Object.defineProperty(exports, "__esModule", { value: true });
97183
97130
  exports.isProtocolSymbol = exports.isSubProtocolSymbol = exports.isMainProtocolSymbol = exports.SubProtocolSymbols = exports.MainProtocolSymbols = void 0;
@@ -97198,6 +97145,7 @@ var MainProtocolSymbols;
97198
97145
  MainProtocolSymbols["MOONBEAM"] = "moonbeam";
97199
97146
  MainProtocolSymbols["ASTAR"] = "astar";
97200
97147
  MainProtocolSymbols["SHIDEN"] = "shiden";
97148
+ MainProtocolSymbols["ICP"] = "icp";
97201
97149
  })(MainProtocolSymbols = exports.MainProtocolSymbols || (exports.MainProtocolSymbols = {}));
97202
97150
  var SubProtocolSymbols;
97203
97151
  (function (SubProtocolSymbols) {
@@ -97236,7 +97184,7 @@ function isProtocolSymbol(identifier) {
97236
97184
  }
97237
97185
  exports.isProtocolSymbol = isProtocolSymbol;
97238
97186
 
97239
- },{}],621:[function(require,module,exports){
97187
+ },{}],620:[function(require,module,exports){
97240
97188
  "use strict";
97241
97189
  Object.defineProperty(exports, "__esModule", { value: true });
97242
97190
  exports.assertFields = exports.assertNever = void 0;
@@ -97257,7 +97205,7 @@ function assertFields(name, object) {
97257
97205
  }
97258
97206
  exports.assertFields = assertFields;
97259
97207
 
97260
- },{"../errors":611,"../errors/coinlib-error":610}],622:[function(require,module,exports){
97208
+ },{"../errors":610,"../errors/coinlib-error":609}],621:[function(require,module,exports){
97261
97209
  (function (Buffer){(function (){
97262
97210
  "use strict";
97263
97211
  Object.defineProperty(exports, "__esModule", { value: true });
@@ -97268,7 +97216,7 @@ var bufferFrom = function (data, encoding) {
97268
97216
  exports.bufferFrom = bufferFrom;
97269
97217
 
97270
97218
  }).call(this)}).call(this,require("buffer").Buffer)
97271
- },{"buffer":67}],623:[function(require,module,exports){
97219
+ },{"buffer":67}],622:[function(require,module,exports){
97272
97220
  (function (Buffer){(function (){
97273
97221
  "use strict";
97274
97222
  var __importDefault = (this && this.__importDefault) || function (mod) {
@@ -97383,7 +97331,7 @@ function fillToTargetLength(hexString, bitLength) {
97383
97331
  }
97384
97332
 
97385
97333
  }).call(this)}).call(this,require("buffer").Buffer)
97386
- },{"../dependencies/src/bignumber.js-9.0.0/bignumber":432,"./padStart":625,"buffer":67}],624:[function(require,module,exports){
97334
+ },{"../dependencies/src/bignumber.js-9.0.0/bignumber":431,"./padStart":624,"buffer":67}],623:[function(require,module,exports){
97387
97335
  "use strict";
97388
97336
  Object.defineProperty(exports, "__esModule", { value: true });
97389
97337
  exports.hasConfigurableContract = exports.implementsInterface = void 0;
@@ -97402,7 +97350,7 @@ function hasConfigurableContract(object) {
97402
97350
  }
97403
97351
  exports.hasConfigurableContract = hasConfigurableContract;
97404
97352
 
97405
- },{}],625:[function(require,module,exports){
97353
+ },{}],624:[function(require,module,exports){
97406
97354
  "use strict";
97407
97355
  Object.defineProperty(exports, "__esModule", { value: true });
97408
97356
  exports.padStart = void 0;
@@ -97423,7 +97371,7 @@ function padStart(targetString, targetLength, padString) {
97423
97371
  }
97424
97372
  exports.padStart = padStart;
97425
97373
 
97426
- },{}],626:[function(require,module,exports){
97374
+ },{}],625:[function(require,module,exports){
97427
97375
  "use strict";
97428
97376
  var __extends = (this && this.__extends) || (function () {
97429
97377
  var extendStatics = function (d, b) {
@@ -97623,7 +97571,7 @@ var AirGapCoinWallet = /** @class */ (function (_super) {
97623
97571
  }(AirGapMarketWallet_1.AirGapMarketWallet));
97624
97572
  exports.AirGapCoinWallet = AirGapCoinWallet;
97625
97573
 
97626
- },{"../dependencies/src/bignumber.js-9.0.0/bignumber":432,"../utils/ProtocolNetwork":619,"../utils/ProtocolSymbols":620,"./AirGapMarketWallet":627}],627:[function(require,module,exports){
97574
+ },{"../dependencies/src/bignumber.js-9.0.0/bignumber":431,"../utils/ProtocolNetwork":618,"../utils/ProtocolSymbols":619,"./AirGapMarketWallet":626}],626:[function(require,module,exports){
97627
97575
  "use strict";
97628
97576
  var __extends = (this && this.__extends) || (function () {
97629
97577
  var extendStatics = function (d, b) {
@@ -97845,7 +97793,7 @@ var AirGapMarketWallet = /** @class */ (function (_super) {
97845
97793
  }(AirGapWallet_1.AirGapWallet));
97846
97794
  exports.AirGapMarketWallet = AirGapMarketWallet;
97847
97795
 
97848
- },{"../dependencies/src/bignumber.js-9.0.0/bignumber":432,"../utils/ProtocolSymbols":620,"./AirGapWallet":629}],628:[function(require,module,exports){
97796
+ },{"../dependencies/src/bignumber.js-9.0.0/bignumber":431,"../utils/ProtocolSymbols":619,"./AirGapWallet":628}],627:[function(require,module,exports){
97849
97797
  "use strict";
97850
97798
  var __extends = (this && this.__extends) || (function () {
97851
97799
  var extendStatics = function (d, b) {
@@ -98025,7 +97973,7 @@ var AirGapNFTWallet = /** @class */ (function (_super) {
98025
97973
  }(AirGapMarketWallet_1.AirGapMarketWallet));
98026
97974
  exports.AirGapNFTWallet = AirGapNFTWallet;
98027
97975
 
98028
- },{"../dependencies/src/bignumber.js-9.0.0/bignumber":432,"../utils/ProtocolNetwork":619,"./AirGapMarketWallet":627}],629:[function(require,module,exports){
97976
+ },{"../dependencies/src/bignumber.js-9.0.0/bignumber":431,"../utils/ProtocolNetwork":618,"./AirGapMarketWallet":626}],628:[function(require,module,exports){
98029
97977
  "use strict";
98030
97978
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
98031
97979
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
@@ -98168,9 +98116,9 @@ var AirGapWallet = /** @class */ (function () {
98168
98116
  }());
98169
98117
  exports.AirGapWallet = AirGapWallet;
98170
98118
 
98171
- },{"../errors":611,"../errors/coinlib-error":610}],630:[function(require,module,exports){
98172
- arguments[4][214][0].apply(exports,arguments)
98173
- },{"./v0":631,"dup":214}],631:[function(require,module,exports){
98119
+ },{"../errors":610,"../errors/coinlib-error":609}],629:[function(require,module,exports){
98120
+ arguments[4][213][0].apply(exports,arguments)
98121
+ },{"./v0":630,"dup":213}],630:[function(require,module,exports){
98174
98122
  "use strict";
98175
98123
  Object.defineProperty(exports, "__esModule", { value: true });
98176
98124
  exports.GroestlcoinProtocolOptions = exports.GroestlcoinProtocolConfig = exports.GroestlcoinProtocolNetwork = exports.CryptoidBlockExplorer = exports.GroestlcoinProtocolNetworkExtras = exports.GroestlcoinTestnetProtocol = exports.GroestlcoinProtocol = void 0;
@@ -98192,7 +98140,7 @@ serializer_1.Serializer.addSchema(serializer_1.IACMessageType.TransactionSignRes
98192
98140
  serializer_1.SerializerV3.addSchema(serializer_1.IACMessageType.TransactionSignRequest, { schema: require('@airgap/bitcoin/v0/serializer/schemas/v3/transaction-sign-request-bitcoin.json') }, coinlib_core_1.MainProtocolSymbols.GRS);
98193
98141
  serializer_1.SerializerV3.addSchema(serializer_1.IACMessageType.TransactionSignResponse, { schema: require('@airgap/bitcoin/v0/serializer/schemas/v3/transaction-sign-response-bitcoin.json') }, coinlib_core_1.MainProtocolSymbols.GRS);
98194
98142
 
98195
- },{"./protocol/GroestlcoinProtocol":632,"./protocol/GroestlcoinProtocolOptions":633,"./protocol/GroestlcoinTestnetProtocol":634,"@airgap/bitcoin/v0/serializer/schemas/v2/transaction-sign-request-bitcoin.json":223,"@airgap/bitcoin/v0/serializer/schemas/v2/transaction-sign-response-bitcoin.json":224,"@airgap/bitcoin/v0/serializer/schemas/v3/transaction-sign-request-bitcoin.json":226,"@airgap/bitcoin/v0/serializer/schemas/v3/transaction-sign-response-bitcoin.json":228,"@airgap/coinlib-core":612,"@airgap/serializer":635}],632:[function(require,module,exports){
98143
+ },{"./protocol/GroestlcoinProtocol":631,"./protocol/GroestlcoinProtocolOptions":632,"./protocol/GroestlcoinTestnetProtocol":633,"@airgap/bitcoin/v0/serializer/schemas/v2/transaction-sign-request-bitcoin.json":222,"@airgap/bitcoin/v0/serializer/schemas/v2/transaction-sign-response-bitcoin.json":223,"@airgap/bitcoin/v0/serializer/schemas/v3/transaction-sign-request-bitcoin.json":225,"@airgap/bitcoin/v0/serializer/schemas/v3/transaction-sign-response-bitcoin.json":227,"@airgap/coinlib-core":611,"@airgap/serializer":634}],631:[function(require,module,exports){
98196
98144
  "use strict";
98197
98145
  var __extends = (this && this.__extends) || (function () {
98198
98146
  var extendStatics = function (d, b) {
@@ -98282,7 +98230,7 @@ var GroestlcoinProtocol = /** @class */ (function (_super) {
98282
98230
  }(bitcoin_1.BitcoinProtocol));
98283
98231
  exports.GroestlcoinProtocol = GroestlcoinProtocol;
98284
98232
 
98285
- },{"./GroestlcoinProtocolOptions":633,"@airgap/bitcoin":214,"@airgap/coinlib-core/dependencies/src/groestlcoinjs-message-2.1.0/index":535,"@airgap/coinlib-core/utils/ProtocolSymbols":620}],633:[function(require,module,exports){
98233
+ },{"./GroestlcoinProtocolOptions":632,"@airgap/bitcoin":213,"@airgap/coinlib-core/dependencies/src/groestlcoinjs-message-2.1.0/index":534,"@airgap/coinlib-core/utils/ProtocolSymbols":619}],632:[function(require,module,exports){
98286
98234
  "use strict";
98287
98235
  var __extends = (this && this.__extends) || (function () {
98288
98236
  var extendStatics = function (d, b) {
@@ -98432,7 +98380,7 @@ var GroestlcoinProtocolOptions = /** @class */ (function () {
98432
98380
  }());
98433
98381
  exports.GroestlcoinProtocolOptions = GroestlcoinProtocolOptions;
98434
98382
 
98435
- },{"@airgap/coinlib-core/dependencies/src/bitgo-utxo-lib-5d91049fd7a988382df81c8260e244ee56d57aac/src/index":457,"@airgap/coinlib-core/utils/ProtocolNetwork":619}],634:[function(require,module,exports){
98383
+ },{"@airgap/coinlib-core/dependencies/src/bitgo-utxo-lib-5d91049fd7a988382df81c8260e244ee56d57aac/src/index":456,"@airgap/coinlib-core/utils/ProtocolNetwork":618}],633:[function(require,module,exports){
98436
98384
  "use strict";
98437
98385
  var __extends = (this && this.__extends) || (function () {
98438
98386
  var extendStatics = function (d, b) {
@@ -98489,7 +98437,7 @@ var GroestlcoinTestnetProtocol = /** @class */ (function (_super) {
98489
98437
  }(bitcoin_1.BitcoinProtocol));
98490
98438
  exports.GroestlcoinTestnetProtocol = GroestlcoinTestnetProtocol;
98491
98439
 
98492
- },{"./GroestlcoinProtocolOptions":633,"@airgap/bitcoin":214,"@airgap/coinlib-core/dependencies/src/bitgo-utxo-lib-5d91049fd7a988382df81c8260e244ee56d57aac/src/index":457,"@airgap/coinlib-core/utils/ProtocolNetwork":619}],635:[function(require,module,exports){
98440
+ },{"./GroestlcoinProtocolOptions":632,"@airgap/bitcoin":213,"@airgap/coinlib-core/dependencies/src/bitgo-utxo-lib-5d91049fd7a988382df81c8260e244ee56d57aac/src/index":456,"@airgap/coinlib-core/utils/ProtocolNetwork":618}],634:[function(require,module,exports){
98493
98441
  "use strict";
98494
98442
  Object.defineProperty(exports, "__esModule", { value: true });
98495
98443
  exports.validateSyncSchemeV2 = exports.validateSyncScheme = exports.generateIdV2 = exports.generateId = exports.Message = exports.SerializerV3 = exports.Serializer = exports.IACMessageType = void 0;
@@ -98510,7 +98458,7 @@ Object.defineProperty(exports, "generateId", { enumerable: true, get: function (
98510
98458
  var validators_2 = require("./v3/validators/validators");
98511
98459
  Object.defineProperty(exports, "validateSyncScheme", { enumerable: true, get: function () { return validators_2.validateSyncScheme; } });
98512
98460
 
98513
- },{"./v2/interfaces":637,"./v2/message":638,"./v2/serializer":645,"./v2/utils/generateId":646,"./v2/validators/validators":648,"./v3/serializer":657,"./v3/utils/generateId":658,"./v3/validators/validators":660}],636:[function(require,module,exports){
98461
+ },{"./v2/interfaces":636,"./v2/message":637,"./v2/serializer":644,"./v2/utils/generateId":645,"./v2/validators/validators":647,"./v3/serializer":656,"./v3/utils/generateId":657,"./v3/validators/validators":659}],635:[function(require,module,exports){
98514
98462
  (function (Buffer){(function (){
98515
98463
  "use strict";
98516
98464
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
@@ -98637,7 +98585,7 @@ var IACProtocol = /** @class */ (function () {
98637
98585
  exports.IACProtocol = IACProtocol;
98638
98586
 
98639
98587
  }).call(this)}).call(this,require("buffer").Buffer)
98640
- },{"./payloads/chunked-payload":639,"./payloads/full-payload":640,"./serializer":645,"@airgap/coinlib-core/dependencies/src/bs58check-2.1.2/index":493,"@airgap/coinlib-core/dependencies/src/rlp-2.2.3/index":583,"@airgap/coinlib-core/errors":611,"buffer":67}],637:[function(require,module,exports){
98588
+ },{"./payloads/chunked-payload":638,"./payloads/full-payload":639,"./serializer":644,"@airgap/coinlib-core/dependencies/src/bs58check-2.1.2/index":492,"@airgap/coinlib-core/dependencies/src/rlp-2.2.3/index":582,"@airgap/coinlib-core/errors":610,"buffer":67}],636:[function(require,module,exports){
98641
98589
  "use strict";
98642
98590
  Object.defineProperty(exports, "__esModule", { value: true });
98643
98591
  exports.IACMessageType = void 0;
@@ -98669,7 +98617,7 @@ var IACMessageType;
98669
98617
  // SocialRecoveryShareResponse = 24
98670
98618
  })(IACMessageType = exports.IACMessageType || (exports.IACMessageType = {}));
98671
98619
 
98672
- },{}],638:[function(require,module,exports){
98620
+ },{}],637:[function(require,module,exports){
98673
98621
  (function (Buffer){(function (){
98674
98622
  "use strict";
98675
98623
  Object.defineProperty(exports, "__esModule", { value: true });
@@ -98757,7 +98705,7 @@ var Message = /** @class */ (function () {
98757
98705
  exports.Message = Message;
98758
98706
 
98759
98707
  }).call(this)}).call(this,require("buffer").Buffer)
98760
- },{"./interfaces":637,"./serializer":645,"./utils/generateId":646,"./utils/json-to-rlp":647,"@airgap/coinlib-core/errors":611,"@airgap/coinlib-core/utils/ProtocolSymbols":620,"buffer":67}],639:[function(require,module,exports){
98708
+ },{"./interfaces":636,"./serializer":644,"./utils/generateId":645,"./utils/json-to-rlp":646,"@airgap/coinlib-core/errors":610,"@airgap/coinlib-core/utils/ProtocolSymbols":619,"buffer":67}],638:[function(require,module,exports){
98761
98709
  (function (Buffer){(function (){
98762
98710
  "use strict";
98763
98711
  Object.defineProperty(exports, "__esModule", { value: true });
@@ -98816,7 +98764,7 @@ var ChunkedPayload = /** @class */ (function () {
98816
98764
  exports.ChunkedPayload = ChunkedPayload;
98817
98765
 
98818
98766
  }).call(this)}).call(this,require("buffer").Buffer)
98819
- },{"@airgap/coinlib-core/errors":611,"buffer":67}],640:[function(require,module,exports){
98767
+ },{"@airgap/coinlib-core/errors":610,"buffer":67}],639:[function(require,module,exports){
98820
98768
  "use strict";
98821
98769
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
98822
98770
  if (k2 === undefined) k2 = k;
@@ -98878,7 +98826,7 @@ var FullPayload = /** @class */ (function () {
98878
98826
  }());
98879
98827
  exports.FullPayload = FullPayload;
98880
98828
 
98881
- },{"../message":638,"../serializer":645,"@airgap/coinlib-core/dependencies/src/bs58check-2.1.2/index":493,"@airgap/coinlib-core/dependencies/src/rlp-2.2.3/index":583}],641:[function(require,module,exports){
98829
+ },{"../message":637,"../serializer":644,"@airgap/coinlib-core/dependencies/src/bs58check-2.1.2/index":492,"@airgap/coinlib-core/dependencies/src/rlp-2.2.3/index":582}],640:[function(require,module,exports){
98882
98830
  module.exports={
98883
98831
  "$ref": "#/definitions/AccountShareResponse",
98884
98832
  "$schema": "http://json-schema.org/draft-07/schema#",
@@ -98902,7 +98850,7 @@ module.exports={
98902
98850
  }
98903
98851
  }
98904
98852
 
98905
- },{}],642:[function(require,module,exports){
98853
+ },{}],641:[function(require,module,exports){
98906
98854
  module.exports={
98907
98855
  "$ref": "#/definitions/MessageSignRequest",
98908
98856
  "$schema": "http://json-schema.org/draft-07/schema#",
@@ -98926,7 +98874,7 @@ module.exports={
98926
98874
  }
98927
98875
  }
98928
98876
 
98929
- },{}],643:[function(require,module,exports){
98877
+ },{}],642:[function(require,module,exports){
98930
98878
  module.exports={
98931
98879
  "$ref": "#/definitions/MessageSignResponse",
98932
98880
  "$schema": "http://json-schema.org/draft-07/schema#",
@@ -98950,7 +98898,7 @@ module.exports={
98950
98898
  }
98951
98899
  }
98952
98900
 
98953
- },{}],644:[function(require,module,exports){
98901
+ },{}],643:[function(require,module,exports){
98954
98902
  "use strict";
98955
98903
  Object.defineProperty(exports, "__esModule", { value: true });
98956
98904
  exports.SchemaTypes = void 0;
@@ -98966,7 +98914,7 @@ var SchemaTypes;
98966
98914
  SchemaTypes["HEX_STRING"] = "hexString"; // TODO: Should we do it like that?
98967
98915
  })(SchemaTypes = exports.SchemaTypes || (exports.SchemaTypes = {}));
98968
98916
 
98969
- },{}],645:[function(require,module,exports){
98917
+ },{}],644:[function(require,module,exports){
98970
98918
  "use strict";
98971
98919
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
98972
98920
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
@@ -99132,7 +99080,7 @@ var Serializer = /** @class */ (function () {
99132
99080
  }());
99133
99081
  exports.Serializer = Serializer;
99134
99082
 
99135
- },{"./inter-app-communication-protocol":636,"./interfaces":637,"./schemas/generated/account-share-response.json":641,"./schemas/generated/message-sign-request.json":642,"./schemas/generated/message-sign-response.json":643,"@airgap/coinlib-core/errors":611,"@airgap/coinlib-core/utils/ProtocolSymbols":620}],646:[function(require,module,exports){
99083
+ },{"./inter-app-communication-protocol":635,"./interfaces":636,"./schemas/generated/account-share-response.json":640,"./schemas/generated/message-sign-request.json":641,"./schemas/generated/message-sign-response.json":642,"@airgap/coinlib-core/errors":610,"@airgap/coinlib-core/utils/ProtocolSymbols":619}],645:[function(require,module,exports){
99136
99084
  "use strict";
99137
99085
  Object.defineProperty(exports, "__esModule", { value: true });
99138
99086
  exports.generateIdV2 = void 0;
@@ -99148,7 +99096,7 @@ function generateIdV2(length) {
99148
99096
  }
99149
99097
  exports.generateIdV2 = generateIdV2;
99150
99098
 
99151
- },{}],647:[function(require,module,exports){
99099
+ },{}],646:[function(require,module,exports){
99152
99100
  "use strict";
99153
99101
  Object.defineProperty(exports, "__esModule", { value: true });
99154
99102
  exports.rlpArrayToJson = exports.jsonToArray = exports.unwrapSchema = exports.getDefinitionByRefPath = void 0;
@@ -99326,7 +99274,7 @@ function rlpArrayToJson(schema, decoded) {
99326
99274
  }
99327
99275
  exports.rlpArrayToJson = rlpArrayToJson;
99328
99276
 
99329
- },{"../schemas/schema":644,"@airgap/coinlib-core/errors":611,"@airgap/coinlib-core/errors/coinlib-error":610,"@airgap/coinlib-core/utils/assert":621}],648:[function(require,module,exports){
99277
+ },{"../schemas/schema":643,"@airgap/coinlib-core/errors":610,"@airgap/coinlib-core/errors/coinlib-error":609,"@airgap/coinlib-core/utils/assert":620}],647:[function(require,module,exports){
99330
99278
  "use strict";
99331
99279
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
99332
99280
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
@@ -99499,7 +99447,7 @@ function validateSerializationInput(from: string, fee: BigNumber, amount: BigNum
99499
99447
  }
99500
99448
  */
99501
99449
 
99502
- },{"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":432,"@airgap/coinlib-core/dependencies/src/validate.js-0.13.1/validate":607,"@airgap/coinlib-core/errors":611,"@airgap/coinlib-core/errors/coinlib-error":610}],649:[function(require,module,exports){
99450
+ },{"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":431,"@airgap/coinlib-core/dependencies/src/validate.js-0.13.1/validate":606,"@airgap/coinlib-core/errors":610,"@airgap/coinlib-core/errors/coinlib-error":609}],648:[function(require,module,exports){
99503
99451
  (function (Buffer){(function (){
99504
99452
  "use strict";
99505
99453
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
@@ -99574,9 +99522,9 @@ var IACMessageWrapper = /** @class */ (function () {
99574
99522
  exports.IACMessageWrapper = IACMessageWrapper;
99575
99523
 
99576
99524
  }).call(this)}).call(this,require("buffer").Buffer)
99577
- },{"./message":651,"./payload":652,"./serializer":657,"@airgap/coinlib-core/dependencies/src/bs58check-2.1.2/index":493,"@airgap/coinlib-core/dependencies/src/cbor-sync-1.0.4/index":497,"@airgap/coinlib-core/dependencies/src/pako-2.0.3":559,"buffer":67}],650:[function(require,module,exports){
99578
- arguments[4][637][0].apply(exports,arguments)
99579
- },{"dup":637}],651:[function(require,module,exports){
99525
+ },{"./message":650,"./payload":651,"./serializer":656,"@airgap/coinlib-core/dependencies/src/bs58check-2.1.2/index":492,"@airgap/coinlib-core/dependencies/src/cbor-sync-1.0.4/index":496,"@airgap/coinlib-core/dependencies/src/pako-2.0.3":558,"buffer":67}],649:[function(require,module,exports){
99526
+ arguments[4][636][0].apply(exports,arguments)
99527
+ },{"dup":636}],650:[function(require,module,exports){
99580
99528
  "use strict";
99581
99529
  Object.defineProperty(exports, "__esModule", { value: true });
99582
99530
  exports.Message = exports.isMessageDefinitionArray = void 0;
@@ -99694,7 +99642,7 @@ var Message = /** @class */ (function () {
99694
99642
  }());
99695
99643
  exports.Message = Message;
99696
99644
 
99697
- },{"./serializer":657,"./utils/generateId":658,"./utils/json-to-rlp":659,"@airgap/coinlib-core/errors":611,"@airgap/coinlib-core/utils/ProtocolSymbols":620}],652:[function(require,module,exports){
99645
+ },{"./serializer":656,"./utils/generateId":657,"./utils/json-to-rlp":658,"@airgap/coinlib-core/errors":610,"@airgap/coinlib-core/utils/ProtocolSymbols":619}],651:[function(require,module,exports){
99698
99646
  "use strict";
99699
99647
  Object.defineProperty(exports, "__esModule", { value: true });
99700
99648
  exports.Payload = void 0;
@@ -99723,7 +99671,7 @@ var Payload = /** @class */ (function () {
99723
99671
  }());
99724
99672
  exports.Payload = Payload;
99725
99673
 
99726
- },{"./message":651,"./serializer":657}],653:[function(require,module,exports){
99674
+ },{"./message":650,"./serializer":656}],652:[function(require,module,exports){
99727
99675
  module.exports={
99728
99676
  "$ref": "#/definitions/AccountShareResponse",
99729
99677
  "$schema": "http://json-schema.org/draft-07/schema#",
@@ -99759,11 +99707,11 @@ module.exports={
99759
99707
  }
99760
99708
  }
99761
99709
 
99762
- },{}],654:[function(require,module,exports){
99710
+ },{}],653:[function(require,module,exports){
99711
+ arguments[4][641][0].apply(exports,arguments)
99712
+ },{"dup":641}],654:[function(require,module,exports){
99763
99713
  arguments[4][642][0].apply(exports,arguments)
99764
99714
  },{"dup":642}],655:[function(require,module,exports){
99765
- arguments[4][643][0].apply(exports,arguments)
99766
- },{"dup":643}],656:[function(require,module,exports){
99767
99715
  "use strict";
99768
99716
  Object.defineProperty(exports, "__esModule", { value: true });
99769
99717
  exports.SchemaTypes = void 0;
@@ -99778,7 +99726,7 @@ var SchemaTypes;
99778
99726
  SchemaTypes["OBJECT"] = "object";
99779
99727
  })(SchemaTypes = exports.SchemaTypes || (exports.SchemaTypes = {}));
99780
99728
 
99781
- },{}],657:[function(require,module,exports){
99729
+ },{}],656:[function(require,module,exports){
99782
99730
  "use strict";
99783
99731
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
99784
99732
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
@@ -99942,7 +99890,7 @@ var SerializerV3 = /** @class */ (function () {
99942
99890
  }());
99943
99891
  exports.SerializerV3 = SerializerV3;
99944
99892
 
99945
- },{"./iac-message-wrapper":649,"./interfaces":650,"./schemas/generated/account-share-response.json":653,"./schemas/generated/message-sign-request.json":654,"./schemas/generated/message-sign-response.json":655,"@airgap/coinlib-core/errors":611,"@airgap/coinlib-core/utils/ProtocolSymbols":620}],658:[function(require,module,exports){
99893
+ },{"./iac-message-wrapper":648,"./interfaces":649,"./schemas/generated/account-share-response.json":652,"./schemas/generated/message-sign-request.json":653,"./schemas/generated/message-sign-response.json":654,"@airgap/coinlib-core/errors":610,"@airgap/coinlib-core/utils/ProtocolSymbols":619}],657:[function(require,module,exports){
99946
99894
  "use strict";
99947
99895
  Object.defineProperty(exports, "__esModule", { value: true });
99948
99896
  exports.generateId = exports.ID_LENGTH = void 0;
@@ -99960,7 +99908,7 @@ function generateId(length) {
99960
99908
  }
99961
99909
  exports.generateId = generateId;
99962
99910
 
99963
- },{}],659:[function(require,module,exports){
99911
+ },{}],658:[function(require,module,exports){
99964
99912
  (function (Buffer){(function (){
99965
99913
  "use strict";
99966
99914
  Object.defineProperty(exports, "__esModule", { value: true });
@@ -100198,7 +100146,7 @@ function rlpArrayToJson(schema, decoded) {
100198
100146
  exports.rlpArrayToJson = rlpArrayToJson;
100199
100147
 
100200
100148
  }).call(this)}).call(this,require("buffer").Buffer)
100201
- },{"../schemas/schema":656,"@airgap/coinlib-core/errors":611,"@airgap/coinlib-core/errors/coinlib-error":610,"@airgap/coinlib-core/utils/assert":621,"buffer":67}],660:[function(require,module,exports){
100149
+ },{"../schemas/schema":655,"@airgap/coinlib-core/errors":610,"@airgap/coinlib-core/errors/coinlib-error":609,"@airgap/coinlib-core/utils/assert":620,"buffer":67}],659:[function(require,module,exports){
100202
100150
  "use strict";
100203
100151
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
100204
100152
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
@@ -100369,5 +100317,5 @@ function validateSerializationInput(from: string, fee: BigNumber, amount: BigNum
100369
100317
  }
100370
100318
  */
100371
100319
 
100372
- },{"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":432,"@airgap/coinlib-core/dependencies/src/validate.js-0.13.1/validate":607}]},{},[630])(630)
100320
+ },{"@airgap/coinlib-core/dependencies/src/bignumber.js-9.0.0/bignumber":431,"@airgap/coinlib-core/dependencies/src/validate.js-0.13.1/validate":606}]},{},[629])(629)
100373
100321
  });