@taquito/ledger-signer 24.3.0 → 24.3.1-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/lib/version.js
CHANGED
|
@@ -3,6 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.VERSION = void 0;
|
|
4
4
|
// IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT!
|
|
5
5
|
exports.VERSION = {
|
|
6
|
-
"commitHash": "
|
|
7
|
-
"version": "24.3.
|
|
6
|
+
"commitHash": "9647402fcc62c98bf3907a30214fea8871b30bea",
|
|
7
|
+
"version": "24.3.1-beta.1"
|
|
8
8
|
};
|
|
@@ -271,7 +271,7 @@ var hasRequiredBuffer;
|
|
|
271
271
|
function requireBuffer () {
|
|
272
272
|
if (hasRequiredBuffer) return buffer;
|
|
273
273
|
hasRequiredBuffer = 1;
|
|
274
|
-
(function (exports
|
|
274
|
+
(function (exports) {
|
|
275
275
|
|
|
276
276
|
const base64 = requireBase64Js();
|
|
277
277
|
const ieee754 = requireIeee754();
|
|
@@ -280,12 +280,12 @@ function requireBuffer () {
|
|
|
280
280
|
? Symbol['for']('nodejs.util.inspect.custom') // eslint-disable-line dot-notation
|
|
281
281
|
: null;
|
|
282
282
|
|
|
283
|
-
exports
|
|
284
|
-
exports
|
|
285
|
-
exports
|
|
283
|
+
exports.Buffer = Buffer;
|
|
284
|
+
exports.SlowBuffer = SlowBuffer;
|
|
285
|
+
exports.INSPECT_MAX_BYTES = 50;
|
|
286
286
|
|
|
287
287
|
const K_MAX_LENGTH = 0x7fffffff;
|
|
288
|
-
exports
|
|
288
|
+
exports.kMaxLength = K_MAX_LENGTH;
|
|
289
289
|
|
|
290
290
|
/**
|
|
291
291
|
* If `Buffer.TYPED_ARRAY_SUPPORT`:
|
|
@@ -881,7 +881,7 @@ function requireBuffer () {
|
|
|
881
881
|
|
|
882
882
|
Buffer.prototype.inspect = function inspect () {
|
|
883
883
|
let str = '';
|
|
884
|
-
const max = exports
|
|
884
|
+
const max = exports.INSPECT_MAX_BYTES;
|
|
885
885
|
str = this.toString('hex', 0, max).replace(/(.{2})/g, '$1 ').trim();
|
|
886
886
|
if (this.length > max) str += ' ... ';
|
|
887
887
|
return '<Buffer ' + str + '>'
|
|
@@ -2996,8 +2996,8 @@ class InvalidDerivationTypeError extends ParameterValidationError {
|
|
|
2996
2996
|
|
|
2997
2997
|
// IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT!
|
|
2998
2998
|
const VERSION = {
|
|
2999
|
-
"commitHash": "
|
|
3000
|
-
"version": "24.3.
|
|
2999
|
+
"commitHash": "9647402fcc62c98bf3907a30214fea8871b30bea",
|
|
3000
|
+
"version": "24.3.1-beta.1"
|
|
3001
3001
|
};
|
|
3002
3002
|
|
|
3003
3003
|
/**
|