@taquito/sapling 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.
@@ -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": "f724c83a603e3623928be71c46030af223a779ee",
7
- "version": "24.3.0"
6
+ "commitHash": "9647402fcc62c98bf3907a30214fea8871b30bea",
7
+ "version": "24.3.1-beta.1"
8
8
  };
@@ -311,7 +311,7 @@ var hasRequiredBuffer;
311
311
  function requireBuffer () {
312
312
  if (hasRequiredBuffer) return buffer;
313
313
  hasRequiredBuffer = 1;
314
- (function (exports$1) {
314
+ (function (exports) {
315
315
 
316
316
  const base64 = requireBase64Js();
317
317
  const ieee754 = requireIeee754();
@@ -320,12 +320,12 @@ function requireBuffer () {
320
320
  ? Symbol['for']('nodejs.util.inspect.custom') // eslint-disable-line dot-notation
321
321
  : null;
322
322
 
323
- exports$1.Buffer = Buffer;
324
- exports$1.SlowBuffer = SlowBuffer;
325
- exports$1.INSPECT_MAX_BYTES = 50;
323
+ exports.Buffer = Buffer;
324
+ exports.SlowBuffer = SlowBuffer;
325
+ exports.INSPECT_MAX_BYTES = 50;
326
326
 
327
327
  const K_MAX_LENGTH = 0x7fffffff;
328
- exports$1.kMaxLength = K_MAX_LENGTH;
328
+ exports.kMaxLength = K_MAX_LENGTH;
329
329
 
330
330
  /**
331
331
  * If `Buffer.TYPED_ARRAY_SUPPORT`:
@@ -921,7 +921,7 @@ function requireBuffer () {
921
921
 
922
922
  Buffer.prototype.inspect = function inspect () {
923
923
  let str = '';
924
- const max = exports$1.INSPECT_MAX_BYTES;
924
+ const max = exports.INSPECT_MAX_BYTES;
925
925
  str = this.toString('hex', 0, max).replace(/(.{2})/g, '$1 ').trim();
926
926
  if (this.length > max) str += ' ... ';
927
927
  return '<Buffer ' + str + '>'