@taquito/taquito 22.0.0 → 23.0.0-beta.0

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.
@@ -187,25 +187,25 @@
187
187
  TRANSFER: 257,
188
188
  REVEAL: 0,
189
189
  };
190
- // value is based on octez-client reveal operation gasLimit of each address type in Rio Protocol
190
+ // value is based on octez-client reveal operation gasLimit of each address type in Seoul Protocol
191
191
  const REVEAL_GAS_LIMIT = {
192
- TZ1: 169,
193
- TZ2: 155,
194
- TZ3: 445,
195
- TZ4: 1674,
192
+ TZ1: 171,
193
+ TZ2: 157,
194
+ TZ3: 447,
195
+ TZ4: 3252,
196
196
  };
197
- // value is based on octez-client reveal operation fee of each address type in Rio Protocol
197
+ // value is based on octez-client reveal operation fee of each address type in Seoul Protocol
198
198
  const REVEAL_FEE = {
199
- TZ1: 276,
200
- TZ2: 276,
201
- TZ3: 305,
202
- TZ4: 477,
199
+ TZ1: 278,
200
+ TZ2: 277,
201
+ TZ3: 306,
202
+ TZ4: 736,
203
203
  };
204
- // value is based on octez-client reveal operation storageLimit of all address type in Rio Protocol
204
+ // value is based on octez-client reveal operation storageLimit of all address type in Seoul Protocol
205
205
  const REVEAL_STORAGE_LIMIT = 0;
206
- // protocol constants in Rio Protocol
206
+ // protocol constants in Seoul Protocol
207
207
  const ORIGINATION_SIZE = 257;
208
- // protocol constants in Rio Protocol
208
+ // protocol constants in Seoul Protocol
209
209
  const COST_PER_BYTE = 250;
210
210
  exports.Protocols = void 0;
211
211
  (function (Protocols) {
@@ -231,6 +231,7 @@
231
231
  Protocols["PsParisCZ"] = "PsParisCZo7KAh1Z1smVd9ZMZ1HHn5gkzbM94V3PLCpknFWhUAi";
232
232
  Protocols["PsQuebecn"] = "PsQuebecnLByd3JwTiGadoG4nGWi3HYiLXUjkibeFV8dCFeVMUg";
233
233
  Protocols["PsRiotuma"] = "PsRiotumaAMotcRoDWW1bysEhQy2n1M5fy8JgRp8jjRfHGmfeA7";
234
+ Protocols["PtSeouLou"] = "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh";
234
235
  Protocols["ProtoALpha"] = "ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK";
235
236
  })(exports.Protocols || (exports.Protocols = {}));
236
237
  const protocols = {
@@ -252,7 +253,8 @@
252
253
  '020': [exports.Protocols.PtParisBx, exports.Protocols.PsParisCZ],
253
254
  '021': [exports.Protocols.PsQuebecn],
254
255
  '022': [exports.Protocols.PsRiotuma],
255
- '023': [exports.Protocols.ProtoALpha],
256
+ '023': [exports.Protocols.PtSeouLou],
257
+ '024': [exports.Protocols.ProtoALpha],
256
258
  };
257
259
  exports.ChainIds = void 0;
258
260
  (function (ChainIds) {
@@ -276,6 +278,7 @@
276
278
  ChainIds["PARISCNET"] = "NetXXWAHLEvre9b";
277
279
  ChainIds["QUEBECNET"] = "NetXuTeGinLEqxp";
278
280
  ChainIds["RIONET"] = "NetXPdgaoabtBth";
281
+ ChainIds["SEOULNET"] = "NetXd56aBs1aeW3";
279
282
  })(exports.ChainIds || (exports.ChainIds = {}));
280
283
  // A fixed fee reveal operation gasLimit accepted by both simulate and injection endpoint is between 1.2-5 times of actual gas consumption (3.5 fails occasionally with gas exhausted; 4 fails occasionally with fee too low)
281
284
  const getRevealGasLimit = (address) => Math.round((getRevealGasLimitInternal(address) * 37) / 10);
@@ -1497,9 +1500,6 @@
1497
1500
  if (!params.to) {
1498
1501
  params.to = source;
1499
1502
  }
1500
- if (params.to !== source) {
1501
- throw new core.InvalidStakingAddressError(params.to);
1502
- }
1503
1503
  if (!params.amount) {
1504
1504
  params.amount = 0;
1505
1505
  }
@@ -1677,7 +1677,7 @@
1677
1677
  connector: () => new rxjs.ReplaySubject(1),
1678
1678
  resetOnError: false,
1679
1679
  resetOnComplete: false,
1680
- resetOnRefCountZero: false,
1680
+ resetOnRefCountZero: true,
1681
1681
  }));
1682
1682
  // Observable that emit once operation is seen in a block
1683
1683
  this.confirmed$ = this.newHead$.pipe(operators.map((head) => {
@@ -1698,7 +1698,7 @@
1698
1698
  connector: () => new rxjs.ReplaySubject(1),
1699
1699
  resetOnError: false,
1700
1700
  resetOnComplete: false,
1701
- resetOnRefCountZero: false,
1701
+ resetOnRefCountZero: true,
1702
1702
  }));
1703
1703
  if (utils.validateOperation(this.opHash) !== utils.ValidationResult.VALID) {
1704
1704
  throw new core.InvalidOperationHashError(this.opHash);
@@ -2841,6 +2841,7 @@
2841
2841
  /**
2842
2842
  *
2843
2843
  * @description Method to prepare a reveal operation
2844
+ * @remarks Reveal tz4 address is not included in the current beta release for protocol Seoul (still a work in progress)
2844
2845
  * @param operation RPCOperation object or RPCOperation array
2845
2846
  * @param source string or undefined source pkh
2846
2847
  * @returns a PreparedOperation object
@@ -3016,11 +3017,11 @@
3016
3017
  */
3017
3018
  finalizeUnstake(_a) {
3018
3019
  return __awaiter(this, void 0, void 0, function* () {
3019
- var { fee, storageLimit, gasLimit } = _a, rest = __rest(_a, ["fee", "storageLimit", "gasLimit"]);
3020
+ var { fee, storageLimit, gasLimit, to } = _a, rest = __rest(_a, ["fee", "storageLimit", "gasLimit", "to"]);
3020
3021
  const { pkh } = yield this.getKeys();
3021
3022
  const protocolConstants = yield this.context.readProvider.getProtocolConstants('head');
3022
3023
  const DEFAULT_PARAMS = yield this.getOperationLimits(protocolConstants);
3023
- const op = yield createTransferOperation(Object.assign(Object.assign(Object.assign(Object.assign({}, rest), { to: pkh, amount: 0 }), mergeLimits({ fee, storageLimit, gasLimit }, DEFAULT_PARAMS)), { parameter: {
3024
+ const op = yield createTransferOperation(Object.assign(Object.assign(Object.assign(Object.assign({}, rest), { to: to ? to : pkh, amount: 0 }), mergeLimits({ fee, storageLimit, gasLimit }, DEFAULT_PARAMS)), { parameter: {
3024
3025
  entrypoint: 'finalize_unstake',
3025
3026
  value: { prim: 'Unit' },
3026
3027
  } }));
@@ -3141,6 +3142,7 @@
3141
3142
  /**
3142
3143
  *
3143
3144
  * @description Method to prepare an update_consensus_key operation
3145
+ * @remarks updateConsensusKey to a tz4 address is not included in the current beta release for protocol Seoul (still a work in progress)
3144
3146
  * @param operation RPCOperation object or RPCOperation array
3145
3147
  * @param source string or undefined source pkh
3146
3148
  * @returns a PreparedOperation object
@@ -3929,7 +3931,7 @@
3929
3931
  connector: () => new rxjs.ReplaySubject(1),
3930
3932
  resetOnError: false,
3931
3933
  resetOnComplete: false,
3932
- resetOnRefCountZero: false,
3934
+ resetOnRefCountZero: true,
3933
3935
  }));
3934
3936
  };
3935
3937
  class OperationFactory {
@@ -4429,9 +4431,6 @@
4429
4431
  if (!rest.to) {
4430
4432
  rest.to = rest.source;
4431
4433
  }
4432
- if (rest.to && rest.to !== rest.source) {
4433
- throw new core.InvalidStakingAddressError(rest.to);
4434
- }
4435
4434
  if (!rest.amount) {
4436
4435
  rest.amount = 0;
4437
4436
  }
@@ -4554,7 +4553,7 @@
4554
4553
  /**
4555
4554
  *
4556
4555
  * @description Estimate gasLimit, storageLimit and fees to reveal the current account
4557
- *
4556
+ * @remarks Reveal tz4 address is not included in the current beta release for protocol Seoul (still a work in progress)
4558
4557
  * @returns An estimation of gasLimit, storageLimit and fees for the operation or undefined if the account is already revealed
4559
4558
  *
4560
4559
  * @param Estimate
@@ -4627,9 +4626,8 @@
4627
4626
  /**
4628
4627
  *
4629
4628
  * @description Estimate gasLimit, storageLimit and fees for an Update Consensus Key operation
4630
- *
4629
+ * @remarks updateConsensusKey to a tz4 address is not included in the current beta release for protocol Seoul (still a work in progress)
4631
4630
  * @returns An estimation of gasLimit, storageLimit and fees for the operation
4632
- *
4633
4631
  * @param Estimate
4634
4632
  */
4635
4633
  updateConsensusKey(params) {
@@ -5586,7 +5584,7 @@
5586
5584
  throw new core.InvalidAddressError(params.delegate, utils.invalidDetail(delegateValidation));
5587
5585
  }
5588
5586
  // Since babylon delegation source cannot smart contract
5589
- if (/kt1/i.test(params.source)) {
5587
+ if (/^kt1/i.test(params.source)) {
5590
5588
  throw new InvalidDelegationSource(params.source);
5591
5589
  }
5592
5590
  const publicKeyHash = yield this.signer.publicKeyHash();
@@ -5737,9 +5735,6 @@
5737
5735
  if (!params.to) {
5738
5736
  params.to = params.source;
5739
5737
  }
5740
- if (params.to && params.to !== params.source) {
5741
- throw new core.InvalidStakingAddressError(params.to);
5742
- }
5743
5738
  if (!params.amount) {
5744
5739
  params.amount = 0;
5745
5740
  }
@@ -5787,8 +5782,8 @@
5787
5782
  }
5788
5783
  /**
5789
5784
  *
5790
- * @description Reveal the current address. Will throw an error if the address is already revealed.
5791
- *
5785
+ * @description Reveal the public key of the current address. Will throw an error if the address is already revealed.
5786
+ * @remarks Reveal tz4 address is not included in the current beta release for protocol Seoul (still a work in progress)
5792
5787
  * @returns An operation handle with the result from the rpc node
5793
5788
  *
5794
5789
  * @param RevealParams operation parameter
@@ -5919,7 +5914,7 @@
5919
5914
  /**
5920
5915
  *
5921
5916
  * @description Updates the consensus key of the baker to public_key starting from the current cycle plus PRESERVED_CYCLES + 1
5922
- *
5917
+ * @remarks updateConsensusKey to a tz4 address is not included in the current beta release for protocol Seoul (still a work in progress)
5923
5918
  * @returns An operation handle with the result from the rpc node
5924
5919
  *
5925
5920
  * @param UpdateConsensusKeyParams
@@ -6666,7 +6661,7 @@
6666
6661
  constructor(context, config = {}) {
6667
6662
  this.context = context;
6668
6663
  this._config$ = new rxjs.BehaviorSubject(Object.assign(Object.assign({}, defaultConfigStreamer), config));
6669
- this.timer$ = this._config$.pipe(operators.pluck('pollingIntervalMilliseconds'), operators.switchMap((pollingIntervalMilliseconds) => {
6664
+ this.timer$ = this._config$.pipe(operators.map((x) => x === null || x === void 0 ? void 0 : x.pollingIntervalMilliseconds), operators.switchMap((pollingIntervalMilliseconds) => {
6670
6665
  if (!pollingIntervalMilliseconds) {
6671
6666
  return rxjs.from(this.getConfirmationPollingInterval()).pipe(operators.switchMap((interval) => {
6672
6667
  return rxjs.timer(0, interval);
@@ -6676,7 +6671,11 @@
6676
6671
  return rxjs.timer(0, pollingIntervalMilliseconds);
6677
6672
  }
6678
6673
  }));
6679
- this.newBlock$ = this.timer$.pipe(operators.switchMap(() => getLastBlock(this.context)), operators.distinctUntilKeyChanged('hash'), operators.publish(), operators.refCount());
6674
+ this.newBlock$ = this.timer$.pipe(operators.switchMap(() => getLastBlock(this.context)), operators.distinctUntilKeyChanged('hash'), operators.share({
6675
+ resetOnError: false,
6676
+ resetOnComplete: false,
6677
+ resetOnRefCountZero: true,
6678
+ }));
6680
6679
  }
6681
6680
  get config() {
6682
6681
  return this._config$.getValue();
@@ -6708,7 +6707,7 @@
6708
6707
  return new ObservableSubscription(this.newBlock$, this.config.shouldObservableSubscriptionRetry, this.config.observableSubscriptionRetryFunction);
6709
6708
  }
6710
6709
  subscribe(_filter) {
6711
- return new ObservableSubscription(this.newBlock$.pipe(operators.pluck('hash')), this.config.shouldObservableSubscriptionRetry, this.config.observableSubscriptionRetryFunction);
6710
+ return new ObservableSubscription(this.newBlock$.pipe(operators.map((x) => x === null || x === void 0 ? void 0 : x.hash)), this.config.shouldObservableSubscriptionRetry, this.config.observableSubscriptionRetryFunction);
6712
6711
  }
6713
6712
  subscribeOperation(filter) {
6714
6713
  return new ObservableSubscription(this.newBlock$.pipe(applyFilter(filter)), this.config.shouldObservableSubscriptionRetry, this.config.observableSubscriptionRetryFunction);
@@ -6894,8 +6893,8 @@
6894
6893
 
6895
6894
  // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN!
6896
6895
  const VERSION = {
6897
- "commitHash": "6a2c52b9e48b299dfc856149c1fa3388e77180ad",
6898
- "version": "22.0.0"
6896
+ "commitHash": "7af2138a9e5c5b230c4b4c726f35c2f2e67b721c",
6897
+ "version": "23.0.0-beta.0"
6899
6898
  };
6900
6899
 
6901
6900
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"taquito.umd.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"taquito.umd.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -54,6 +54,7 @@ export declare enum Protocols {
54
54
  PsParisCZ = "PsParisCZo7KAh1Z1smVd9ZMZ1HHn5gkzbM94V3PLCpknFWhUAi",
55
55
  PsQuebecn = "PsQuebecnLByd3JwTiGadoG4nGWi3HYiLXUjkibeFV8dCFeVMUg",
56
56
  PsRiotuma = "PsRiotumaAMotcRoDWW1bysEhQy2n1M5fy8JgRp8jjRfHGmfeA7",
57
+ PtSeouLou = "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh",
57
58
  ProtoALpha = "ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK"
58
59
  }
59
60
  export declare const protocols: {
@@ -76,6 +77,7 @@ export declare const protocols: {
76
77
  '021': Protocols[];
77
78
  '022': Protocols[];
78
79
  '023': Protocols[];
80
+ '024': Protocols[];
79
81
  };
80
82
  export declare enum ChainIds {
81
83
  MAINNET = "NetXdQprcVkpaWU",
@@ -97,7 +99,8 @@ export declare enum ChainIds {
97
99
  PARISBNET = "NetXo8SqH1c38SS",
98
100
  PARISCNET = "NetXXWAHLEvre9b",
99
101
  QUEBECNET = "NetXuTeGinLEqxp",
100
- RIONET = "NetXPdgaoabtBth"
102
+ RIONET = "NetXPdgaoabtBth",
103
+ SEOULNET = "NetXd56aBs1aeW3"
101
104
  }
102
105
  export declare const getRevealGasLimit: (address: string) => number;
103
106
  export declare const getRevealFee: (address: string) => number;
@@ -155,7 +155,7 @@ export interface ContractProvider extends StorageProvider {
155
155
  /**
156
156
  *
157
157
  * @description Reveal the current address. Will throw an error if the address is already revealed.
158
- *
158
+ * @remarks Reveal tz4 address is not included in the current beta release for protocol Seoul (still a work in progress)
159
159
  * @returns An operation handle with the result from the rpc node
160
160
  *
161
161
  * @param Reveal operation parameter
@@ -217,7 +217,7 @@ export interface ContractProvider extends StorageProvider {
217
217
  /**
218
218
  *
219
219
  * @description Update consensus key
220
- *
220
+ * @remarks updateConsensusKey to a tz4 address is not included in the current beta release for protocol Seoul (still a work in progress)
221
221
  * @returns An operation handle with the result from the RPC node
222
222
  *
223
223
  * @param UpdateConsensusKeyParams UpdateConsensusKey operation parameter
@@ -165,8 +165,8 @@ export declare class RpcContractProvider extends Provider implements ContractPro
165
165
  transferTicket(params: TransferTicketParams): Promise<TransferTicketOperation>;
166
166
  /**
167
167
  *
168
- * @description Reveal the current address. Will throw an error if the address is already revealed.
169
- *
168
+ * @description Reveal the public key of the current address. Will throw an error if the address is already revealed.
169
+ * @remarks Reveal tz4 address is not included in the current beta release for protocol Seoul (still a work in progress)
170
170
  * @returns An operation handle with the result from the rpc node
171
171
  *
172
172
  * @param RevealParams operation parameter
@@ -220,7 +220,7 @@ export declare class RpcContractProvider extends Provider implements ContractPro
220
220
  /**
221
221
  *
222
222
  * @description Updates the consensus key of the baker to public_key starting from the current cycle plus PRESERVED_CYCLES + 1
223
- *
223
+ * @remarks updateConsensusKey to a tz4 address is not included in the current beta release for protocol Seoul (still a work in progress)
224
224
  * @returns An operation handle with the result from the rpc node
225
225
  *
226
226
  * @param UpdateConsensusKeyParams
@@ -78,7 +78,7 @@ export interface EstimationProvider {
78
78
  /**
79
79
  *
80
80
  * @description Estimate gasLimit, storageLimit and fees for a reveal operation
81
- *
81
+ * @remarks Reveal tz4 address is not included in the current beta release for protocol Seoul (still a work in progress)
82
82
  * @returns An estimation of gasLimit, storageLimit and fees for the operation or undefined if the account is already revealed
83
83
  *
84
84
  * @param Estimate
@@ -106,7 +106,7 @@ export interface EstimationProvider {
106
106
  /**
107
107
  *
108
108
  * @description Estimate gasLimit, storageLimit and fees for an Update Consensus Key operation
109
- *
109
+ * @remarks updateConsensusKey to a tz4 address is not included in the current beta release for protocol Seoul (still a work in progress)
110
110
  * @returns An estimation of gasLimit, storageLimit and fees for the operation
111
111
  *
112
112
  * @param Estimate
@@ -93,7 +93,7 @@ export declare class RPCEstimateProvider extends Provider implements EstimationP
93
93
  /**
94
94
  *
95
95
  * @description Estimate gasLimit, storageLimit and fees to reveal the current account
96
- *
96
+ * @remarks Reveal tz4 address is not included in the current beta release for protocol Seoul (still a work in progress)
97
97
  * @returns An estimation of gasLimit, storageLimit and fees for the operation or undefined if the account is already revealed
98
98
  *
99
99
  * @param Estimate
@@ -120,9 +120,8 @@ export declare class RPCEstimateProvider extends Provider implements EstimationP
120
120
  /**
121
121
  *
122
122
  * @description Estimate gasLimit, storageLimit and fees for an Update Consensus Key operation
123
- *
123
+ * @remarks updateConsensusKey to a tz4 address is not included in the current beta release for protocol Seoul (still a work in progress)
124
124
  * @returns An estimation of gasLimit, storageLimit and fees for the operation
125
- *
126
125
  * @param Estimate
127
126
  */
128
127
  updateConsensusKey(params: UpdateConsensusKeyParams): Promise<Estimate>;
@@ -19,6 +19,7 @@ export interface PreparationProvider {
19
19
  /**
20
20
  *
21
21
  * @description Method to prepare a reveal operation
22
+ * @remarks Reveal tz4 address is not included in the current beta release for protocol Seoul (still a work in progress)
22
23
  * @param params reveal operation parameters
23
24
  * @param source string or undefined source pkh
24
25
  * @returns a PreparedOperation object
@@ -58,6 +59,7 @@ export interface PreparationProvider {
58
59
  registerGlobalConstant(params: RegisterGlobalConstantParams): Promise<PreparedOperation>;
59
60
  /**
60
61
  * @description Method to prepare an update_consensus_key operation
62
+ * @remarks updateConsensusKey to a tz4 address is not included in the current beta release for protocol Seoul (still a work in progress)
61
63
  * @param params updateConsensusKey operation parameters
62
64
  * @param source string or undefined source pkh
63
65
  * @returns a PreparedOperation object
@@ -38,6 +38,7 @@ export declare class PrepareProvider extends Provider implements PreparationProv
38
38
  /**
39
39
  *
40
40
  * @description Method to prepare a reveal operation
41
+ * @remarks Reveal tz4 address is not included in the current beta release for protocol Seoul (still a work in progress)
41
42
  * @param operation RPCOperation object or RPCOperation array
42
43
  * @param source string or undefined source pkh
43
44
  * @returns a PreparedOperation object
@@ -82,7 +83,7 @@ export declare class PrepareProvider extends Provider implements PreparationProv
82
83
  * @param source string or undefined source pkh
83
84
  * @returns a PreparedOperation object
84
85
  */
85
- finalizeUnstake({ fee, storageLimit, gasLimit, ...rest }: FinalizeUnstakeParams): Promise<PreparedOperation>;
86
+ finalizeUnstake({ fee, storageLimit, gasLimit, to, ...rest }: FinalizeUnstakeParams): Promise<PreparedOperation>;
86
87
  /**
87
88
  *
88
89
  * @description Method to prepare a delegation operation
@@ -110,6 +111,7 @@ export declare class PrepareProvider extends Provider implements PreparationProv
110
111
  /**
111
112
  *
112
113
  * @description Method to prepare an update_consensus_key operation
114
+ * @remarks updateConsensusKey to a tz4 address is not included in the current beta release for protocol Seoul (still a work in progress)
113
115
  * @param operation RPCOperation object or RPCOperation array
114
116
  * @param source string or undefined source pkh
115
117
  * @returns a PreparedOperation object
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taquito/taquito",
3
- "version": "22.0.0",
3
+ "version": "23.0.0-beta.0",
4
4
  "description": "High level functionality that builds upon the other packages in the Tezos Typescript Library Suite.",
5
5
  "keywords": [
6
6
  "tezos",
@@ -77,13 +77,13 @@
77
77
  ]
78
78
  },
79
79
  "dependencies": {
80
- "@taquito/core": "^22.0.0",
81
- "@taquito/http-utils": "^22.0.0",
82
- "@taquito/local-forging": "^22.0.0",
83
- "@taquito/michel-codec": "^22.0.0",
84
- "@taquito/michelson-encoder": "^22.0.0",
85
- "@taquito/rpc": "^22.0.0",
86
- "@taquito/utils": "^22.0.0",
80
+ "@taquito/core": "^23.0.0-beta.0",
81
+ "@taquito/http-utils": "^23.0.0-beta.0",
82
+ "@taquito/local-forging": "^23.0.0-beta.0",
83
+ "@taquito/michel-codec": "^23.0.0-beta.0",
84
+ "@taquito/michelson-encoder": "^23.0.0-beta.0",
85
+ "@taquito/rpc": "^23.0.0-beta.0",
86
+ "@taquito/utils": "^23.0.0-beta.0",
87
87
  "bignumber.js": "^9.1.2",
88
88
  "rxjs": "^7.8.2"
89
89
  },
@@ -125,5 +125,5 @@
125
125
  "webpack-cli": "^5.1.4",
126
126
  "webpack-subresource-integrity": "^5.1.0"
127
127
  },
128
- "gitHead": "134ec228acbee03b4f40b80c89d78c718557569b"
128
+ "gitHead": "37cc766d60407d7909fbd2d841d9dd946243d04a"
129
129
  }