@taquito/taquito 24.3.0-beta.7 → 24.3.0-rc.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -7,7 +7,7 @@ The `@taquito/taquito` package contains higher-level functionality that builds u
7
7
  ## CDN Bundle
8
8
 
9
9
  ```html
10
- <script src="https://unpkg.com/@taquito/taquito@24.3.0-beta.7/dist/taquito.min.js"
10
+ <script src="https://unpkg.com/@taquito/taquito@24.3.0-rc.2/dist/taquito.min.js"
11
11
  crossorigin="anonymous" integrity="sha384-IxvP0ECHi5oqLyz94wF85pU9+ktcsL1HHtA42MITxZsGbsUMEu/g+0Vkjj5vqiMR"></script>
12
12
  ```
13
13
 
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.DelegateOperation = void 0;
4
4
  const bignumber_js_1 = require("bignumber.js");
5
- const BigNumber = bignumber_js_1.BigNumber;
5
+ const BigNumber = bignumber_js_1.default;
6
6
  const operations_1 = require("./operations");
7
7
  /**
8
8
  * Delegation operation provide utility function to fetch newly issued delegation
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.OriginationOperation = void 0;
4
4
  const bignumber_js_1 = require("bignumber.js");
5
- const BigNumber = bignumber_js_1.BigNumber;
5
+ const BigNumber = bignumber_js_1.default;
6
6
  const interface_1 = require("../read-provider/interface");
7
7
  const errors_1 = require("./errors");
8
8
  const operations_1 = require("./operations");
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.RegisterGlobalConstantOperation = void 0;
4
4
  const bignumber_js_1 = require("bignumber.js");
5
- const BigNumber = bignumber_js_1.BigNumber;
5
+ const BigNumber = bignumber_js_1.default;
6
6
  const operations_1 = require("./operations");
7
7
  /**
8
8
  * RegisterGlobalConstantOperation provides utility functions to fetch a newly issued operation of kind register_global_constant
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.RevealOperation = void 0;
4
4
  const core_1 = require("@taquito/core");
5
5
  const bignumber_js_1 = require("bignumber.js");
6
- const BigNumber = bignumber_js_1.BigNumber;
6
+ const BigNumber = bignumber_js_1.default;
7
7
  const errors_1 = require("./errors");
8
8
  const operations_1 = require("./operations");
9
9
  /**
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.TransferTicketOperation = void 0;
4
4
  const rpc_1 = require("@taquito/rpc");
5
5
  const bignumber_js_1 = require("bignumber.js");
6
- const BigNumber = bignumber_js_1.BigNumber;
6
+ const BigNumber = bignumber_js_1.default;
7
7
  const operations_1 = require("./operations");
8
8
  /**
9
9
  *
@@ -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": "e5181715f96fc1a8e79c0c3a89b5130abe1a3434",
7
- "version": "24.3.0-beta.7"
6
+ "commitHash": "7e99d97864147bbcc2291f12aac10e368afd9055",
7
+ "version": "24.3.0-rc.2"
8
8
  };
@@ -4,7 +4,7 @@ import { HttpResponseError, STATUS_CODE } from '@taquito/http-utils';
4
4
  import { TezosToolkitConfigError, ParameterValidationError, RpcError, TaquitoError, NetworkError, InvalidOperationHashError, InvalidViewParameterError, DeprecationError, InvalidChainIdError, PublicKeyNotFoundError, InvalidOperationKindError as InvalidOperationKindError$1, ProhibitedActionError, InvalidProofError, InvalidAddressError, InvalidAmountError, InvalidStakingAddressError, InvalidKeyHashError as InvalidKeyHashError$1, InvalidContractAddressError, InvalidFinalizeUnstakeAmountError } from '@taquito/core';
5
5
  import { Observable, ReplaySubject, range, of, combineLatest, from, defer, concat, BehaviorSubject, throwError, EMPTY, Subject, NEVER, timer } from 'rxjs';
6
6
  import { first, switchMap, concatMap, endWith, tap, share, map, filter, catchError, distinctUntilChanged, takeWhile, startWith, timeout, mergeMap, shareReplay, takeUntil, retry, exhaustMap, distinctUntilKeyChanged } from 'rxjs/operators';
7
- import BigNumberJs, { BigNumber as BigNumber$9 } from 'bignumber.js';
7
+ import BigNumberJs from 'bignumber.js';
8
8
  import { validateOperation, ValidationResult, validateBlock, format, InvalidOperationKindError, validateAddress, validateChain, validateContractAddress, b58DecodeAndCheckPrefix, publicKeyHashPrefixes, PrefixV2, publicKeyPrefixes, validateKeyHash, InvalidKeyHashError, payloadLength, encodeExpr } from '@taquito/utils';
9
9
  import { Schema, ParameterSchema, ViewSchema, EventSchema, MichelsonMap, Token } from '@taquito/michelson-encoder';
10
10
  export { MichelsonMap, Token, UnitValue } from '@taquito/michelson-encoder';
@@ -4902,7 +4902,7 @@ class RPCBatchProvider {
4902
4902
  }
4903
4903
  }
4904
4904
 
4905
- const BigNumber$5 = BigNumber$9;
4905
+ const BigNumber$5 = BigNumberJs;
4906
4906
  /**
4907
4907
  * Delegation operation provide utility function to fetch newly issued delegation
4908
4908
  *
@@ -4952,7 +4952,7 @@ class DelegateOperation extends Operation {
4952
4952
  }
4953
4953
  }
4954
4954
 
4955
- const BigNumber$4 = BigNumber$9;
4955
+ const BigNumber$4 = BigNumberJs;
4956
4956
  /**
4957
4957
  * Origination operation provide utility function to fetch newly originated contract
4958
4958
  *
@@ -5028,7 +5028,7 @@ class OriginationOperation extends Operation {
5028
5028
  }
5029
5029
  }
5030
5030
 
5031
- const BigNumber$3 = BigNumber$9;
5031
+ const BigNumber$3 = BigNumberJs;
5032
5032
  /**
5033
5033
  * RegisterGlobalConstantOperation provides utility functions to fetch a newly issued operation of kind register_global_constant
5034
5034
  */
@@ -5076,7 +5076,7 @@ class RegisterGlobalConstantOperation extends Operation {
5076
5076
  }
5077
5077
  }
5078
5078
 
5079
- const BigNumber$2 = BigNumber$9;
5079
+ const BigNumber$2 = BigNumberJs;
5080
5080
  /**
5081
5081
  * Reveal operation provides utility functions to fetch a newly issued revelation
5082
5082
  */
@@ -5209,7 +5209,7 @@ class TransactionOperation extends Operation {
5209
5209
  }
5210
5210
  }
5211
5211
 
5212
- const BigNumber = BigNumber$9;
5212
+ const BigNumber = BigNumberJs;
5213
5213
  /**
5214
5214
  *
5215
5215
  * Transfer tickets from a Tezos address (tz1, tz2 or tz3) to a smart contract address (KT1) (everything on layer 1 at this step)
@@ -7575,8 +7575,8 @@ class Context {
7575
7575
 
7576
7576
  // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT!
7577
7577
  const VERSION = {
7578
- "commitHash": "e5181715f96fc1a8e79c0c3a89b5130abe1a3434",
7579
- "version": "24.3.0-beta.7"
7578
+ "commitHash": "7e99d97864147bbcc2291f12aac10e368afd9055",
7579
+ "version": "24.3.0-rc.2"
7580
7580
  };
7581
7581
 
7582
7582
  /**