@taquito/taquito 20.0.0-beta.0 → 20.0.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.
- package/README.md +1 -1
- package/dist/lib/constants.js +1 -0
- package/dist/lib/taquito.js +13 -4
- package/dist/lib/version.js +2 -2
- package/dist/lib/wallet/wallet.js +8 -55
- package/dist/taquito.es6.js +20 -59
- package/dist/taquito.es6.js.map +1 -1
- package/dist/taquito.min.js +1 -1
- package/dist/taquito.umd.js +22 -57
- package/dist/taquito.umd.js.map +1 -1
- package/dist/types/constants.d.ts +1 -0
- package/dist/types/operations/types.d.ts +1 -1
- package/dist/types/taquito.d.ts +7 -1
- package/dist/types/wallet/wallet.d.ts +8 -55
- package/package.json +9 -9
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@20.0.0
|
|
10
|
+
<script src="https://unpkg.com/@taquito/taquito@20.0.0/dist/taquito.min.js"
|
|
11
11
|
crossorigin="anonymous" integrity="sha384-IxvP0ECHi5oqLyz94wF85pU9+ktcsL1HHtA42MITxZsGbsUMEu/g+0Vkjj5vqiMR"></script>
|
|
12
12
|
```
|
|
13
13
|
|
package/dist/lib/constants.js
CHANGED
|
@@ -72,6 +72,7 @@ var Protocols;
|
|
|
72
72
|
Protocols["PtNairobi"] = "PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf";
|
|
73
73
|
Protocols["ProxfordY"] = "ProxfordYmVfjWnRcgjWH36fW6PArwqykTFzotUxRs6gmTcZDuH";
|
|
74
74
|
Protocols["PtParisBQ"] = "PtParisBQscdCm6Cfow6ndeU6wKJyA3aV1j4D3gQBQMsTQyJCrz";
|
|
75
|
+
Protocols["PtParisBx"] = "PtParisBxoLz5gzMmn3d9WBQNoPSZakgnkMC2VNuQ3KXfUtUQeZ";
|
|
75
76
|
Protocols["ProtoALpha"] = "ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK";
|
|
76
77
|
})(Protocols || (exports.Protocols = Protocols = {}));
|
|
77
78
|
exports.protocols = {
|
package/dist/lib/taquito.js
CHANGED
|
@@ -18,7 +18,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
18
18
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
19
19
|
};
|
|
20
20
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21
|
-
exports.TezosToolkit = exports.TaquitoLocalForger = exports.RpcReadAdapter = exports.ObservableSubscription = exports.PollingSubscribeProvider = exports.OperationBatch = exports.RpcForger = exports.CompositeForger = exports.UnitValue = exports.MichelsonMap = void 0;
|
|
21
|
+
exports.TezosToolkit = exports.TaquitoLocalForger = exports.RpcReadAdapter = exports.ObservableSubscription = exports.PollingSubscribeProvider = exports.OperationBatch = exports.RpcForger = exports.CompositeForger = exports.UnitValue = exports.MichelsonMap = exports.Token = void 0;
|
|
22
22
|
const rpc_1 = require("@taquito/rpc");
|
|
23
23
|
const context_1 = require("./context");
|
|
24
24
|
const utils_1 = require("@taquito/utils");
|
|
@@ -32,9 +32,11 @@ const wallet_1 = require("./wallet");
|
|
|
32
32
|
const taquito_local_forger_1 = require("./forger/taquito-local-forger");
|
|
33
33
|
const michel_codec_parser_1 = require("./parser/michel-codec-parser");
|
|
34
34
|
const rpc_injector_1 = require("./injector/rpc-injector");
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
Object.defineProperty(exports, "
|
|
35
|
+
const michelson_encoder_1 = require("@taquito/michelson-encoder");
|
|
36
|
+
var michelson_encoder_2 = require("@taquito/michelson-encoder");
|
|
37
|
+
Object.defineProperty(exports, "Token", { enumerable: true, get: function () { return michelson_encoder_2.Token; } });
|
|
38
|
+
Object.defineProperty(exports, "MichelsonMap", { enumerable: true, get: function () { return michelson_encoder_2.MichelsonMap; } });
|
|
39
|
+
Object.defineProperty(exports, "UnitValue", { enumerable: true, get: function () { return michelson_encoder_2.UnitValue; } });
|
|
38
40
|
__exportStar(require("./constants"), exports);
|
|
39
41
|
__exportStar(require("./context"), exports);
|
|
40
42
|
__exportStar(require("./contract"), exports);
|
|
@@ -311,6 +313,13 @@ class TezosToolkit {
|
|
|
311
313
|
this._options.injectorProvider = injectorProvider;
|
|
312
314
|
}
|
|
313
315
|
}
|
|
316
|
+
/**
|
|
317
|
+
* @description Sets the strategy used for field numbering in Token execute/encode/decode to convert Michelson values to/from javascript objects
|
|
318
|
+
* @param strategy a value of type FieldNumberingStrategy that controls how field numbers are calculated
|
|
319
|
+
*/
|
|
320
|
+
setFieldNumberingStrategy(strategy) {
|
|
321
|
+
michelson_encoder_1.Token.fieldNumberingStrategy = strategy;
|
|
322
|
+
}
|
|
314
323
|
/**
|
|
315
324
|
* @description Provide access to tezos account management
|
|
316
325
|
*/
|
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 OR CHECKIN!
|
|
5
5
|
exports.VERSION = {
|
|
6
|
-
"commitHash": "
|
|
7
|
-
"version": "20.0.0
|
|
6
|
+
"commitHash": "45fea4a361f29598063e448574800220c4687001",
|
|
7
|
+
"version": "20.0.0"
|
|
8
8
|
};
|
|
@@ -21,9 +21,7 @@ class WalletOperationBatch {
|
|
|
21
21
|
this.operations = [];
|
|
22
22
|
}
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
25
24
|
* @description Add a transaction operation to the batch
|
|
26
|
-
*
|
|
27
25
|
* @param params Transfer operation parameter
|
|
28
26
|
*/
|
|
29
27
|
withTransfer(params) {
|
|
@@ -35,9 +33,7 @@ class WalletOperationBatch {
|
|
|
35
33
|
return this;
|
|
36
34
|
}
|
|
37
35
|
/**
|
|
38
|
-
*
|
|
39
36
|
* @description Add a contract call to the batch
|
|
40
|
-
*
|
|
41
37
|
* @param params Call a contract method
|
|
42
38
|
* @param options Generic operation parameters
|
|
43
39
|
*/
|
|
@@ -45,9 +41,7 @@ class WalletOperationBatch {
|
|
|
45
41
|
return this.withTransfer(params.toTransferParams(options));
|
|
46
42
|
}
|
|
47
43
|
/**
|
|
48
|
-
*
|
|
49
44
|
* @description Add a delegation operation to the batch
|
|
50
|
-
*
|
|
51
45
|
* @param params Delegation operation parameter
|
|
52
46
|
*/
|
|
53
47
|
withDelegation(params) {
|
|
@@ -60,9 +54,7 @@ class WalletOperationBatch {
|
|
|
60
54
|
return this;
|
|
61
55
|
}
|
|
62
56
|
/**
|
|
63
|
-
*
|
|
64
57
|
* @description Add an origination operation to the batch
|
|
65
|
-
*
|
|
66
58
|
* @param params Origination operation parameter
|
|
67
59
|
*/
|
|
68
60
|
withOrigination(params) {
|
|
@@ -70,9 +62,7 @@ class WalletOperationBatch {
|
|
|
70
62
|
return this;
|
|
71
63
|
}
|
|
72
64
|
/**
|
|
73
|
-
*
|
|
74
65
|
* @description Add an IncreasePaidStorage operation to the batch
|
|
75
|
-
*
|
|
76
66
|
* @param param IncreasePaidStorage operation parameter
|
|
77
67
|
*/
|
|
78
68
|
withIncreasePaidStorage(params) {
|
|
@@ -102,9 +92,7 @@ class WalletOperationBatch {
|
|
|
102
92
|
});
|
|
103
93
|
}
|
|
104
94
|
/**
|
|
105
|
-
*
|
|
106
95
|
* @description Add a group operation to the batch. Operation will be applied in the order they are in the params array
|
|
107
|
-
*
|
|
108
96
|
* @param params Operations parameter
|
|
109
97
|
* @throws {@link InvalidOperationKindError}
|
|
110
98
|
*/
|
|
@@ -130,9 +118,7 @@ class WalletOperationBatch {
|
|
|
130
118
|
return this;
|
|
131
119
|
}
|
|
132
120
|
/**
|
|
133
|
-
*
|
|
134
121
|
* @description Submit batch operation to wallet
|
|
135
|
-
*
|
|
136
122
|
*/
|
|
137
123
|
send() {
|
|
138
124
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -160,7 +146,6 @@ class Wallet {
|
|
|
160
146
|
}
|
|
161
147
|
/**
|
|
162
148
|
* @description Retrieve the PKH of the account that is currently in use by the wallet
|
|
163
|
-
*
|
|
164
149
|
* @param option Option to use while fetching the PKH.
|
|
165
150
|
* If forceRefetch is specified the wallet provider implementation will refetch the PKH from the wallet
|
|
166
151
|
*/
|
|
@@ -174,7 +159,6 @@ class Wallet {
|
|
|
174
159
|
}
|
|
175
160
|
/**
|
|
176
161
|
* @description Retrieve the PK of the account that is currently in use by the wallet
|
|
177
|
-
*
|
|
178
162
|
* @param option Option to use while fetching the PK.
|
|
179
163
|
* If forceRefetch is specified the wallet provider implementation will refetch the PK from the wallet
|
|
180
164
|
*/
|
|
@@ -187,11 +171,8 @@ class Wallet {
|
|
|
187
171
|
});
|
|
188
172
|
}
|
|
189
173
|
/**
|
|
190
|
-
*
|
|
191
174
|
* @description Originate a new contract according to the script in parameters.
|
|
192
|
-
*
|
|
193
|
-
* @returns An operation handle with the result from the rpc node
|
|
194
|
-
*
|
|
175
|
+
* @returns a OriginationWalletOperation promise object when followed by .send()
|
|
195
176
|
* @param originateParams Originate operation parameter
|
|
196
177
|
*/
|
|
197
178
|
originate(params) {
|
|
@@ -202,11 +183,8 @@ class Wallet {
|
|
|
202
183
|
}));
|
|
203
184
|
}
|
|
204
185
|
/**
|
|
205
|
-
*
|
|
206
186
|
* @description Set the delegate for a contract.
|
|
207
|
-
*
|
|
208
|
-
* @returns An operation handle with the result from the rpc node
|
|
209
|
-
*
|
|
187
|
+
* @returns a WalletDelegateParams promise object when followed by .send()
|
|
210
188
|
* @param delegateParams operation parameter
|
|
211
189
|
*/
|
|
212
190
|
setDelegate(params) {
|
|
@@ -222,11 +200,8 @@ class Wallet {
|
|
|
222
200
|
}));
|
|
223
201
|
}
|
|
224
202
|
/**
|
|
225
|
-
*
|
|
226
203
|
* @description failing_noop operation that is guaranteed to fail. DISCLAIMER: Not all wallets support signing failing_noop operations.
|
|
227
|
-
*
|
|
228
204
|
* @returns Signature for a failing_noop
|
|
229
|
-
*
|
|
230
205
|
* @param params operation parameter
|
|
231
206
|
*/
|
|
232
207
|
signFailingNoop(params) {
|
|
@@ -257,11 +232,8 @@ class Wallet {
|
|
|
257
232
|
});
|
|
258
233
|
}
|
|
259
234
|
/**
|
|
260
|
-
*
|
|
261
235
|
* @description Register the current address as delegate.
|
|
262
|
-
*
|
|
263
|
-
* @returns An operation handle with the result from the rpc node
|
|
264
|
-
*
|
|
236
|
+
* @returns a DelegationWalletOperation promise object when followed by .send()
|
|
265
237
|
*/
|
|
266
238
|
registerDelegate() {
|
|
267
239
|
return this.walletCommand(() => __awaiter(this, void 0, void 0, function* () {
|
|
@@ -274,11 +246,8 @@ class Wallet {
|
|
|
274
246
|
}));
|
|
275
247
|
}
|
|
276
248
|
/**
|
|
277
|
-
*
|
|
278
249
|
* @description Transfer tezos tokens from current address to a specific address or call a smart contract.
|
|
279
|
-
*
|
|
280
|
-
* @returns A wallet command from which we can send the operation to the wallet
|
|
281
|
-
*
|
|
250
|
+
* @returns a TransactionWalletOperation promise object when followed by .send()
|
|
282
251
|
* @param params operation parameter
|
|
283
252
|
*/
|
|
284
253
|
transfer(params) {
|
|
@@ -293,11 +262,8 @@ class Wallet {
|
|
|
293
262
|
}));
|
|
294
263
|
}
|
|
295
264
|
/**
|
|
296
|
-
*
|
|
297
265
|
* @description Stake a given amount for the source address
|
|
298
|
-
*
|
|
299
|
-
* @returns An operation handle with the result from the rpc node
|
|
300
|
-
*
|
|
266
|
+
* @returns a TransactionWalletOperation promise object when followed by .send()
|
|
301
267
|
* @param Stake pseudo-operation parameter
|
|
302
268
|
*/
|
|
303
269
|
stake(params) {
|
|
@@ -318,13 +284,10 @@ class Wallet {
|
|
|
318
284
|
}));
|
|
319
285
|
}
|
|
320
286
|
/**
|
|
321
|
-
*
|
|
322
287
|
* @description Unstake the given amount. If "everything" is given as amount, unstakes everything from the staking balance.
|
|
323
288
|
* Unstaked tez remains frozen for a set amount of cycles (the slashing period) after the operation. Once this period is over,
|
|
324
289
|
* the operation "finalize unstake" must be called for the funds to appear in the liquid balance.
|
|
325
|
-
*
|
|
326
|
-
* @returns An operation handle with the result from the rpc node
|
|
327
|
-
*
|
|
290
|
+
* @returns a TransactionWalletOperation promise object when followed by .send()
|
|
328
291
|
* @param Unstake pseudo-operation parameter
|
|
329
292
|
*/
|
|
330
293
|
unstake(params) {
|
|
@@ -345,10 +308,8 @@ class Wallet {
|
|
|
345
308
|
}));
|
|
346
309
|
}
|
|
347
310
|
/**
|
|
348
|
-
*
|
|
349
311
|
* @description Transfer all the finalizable unstaked funds of the source to their liquid balance
|
|
350
|
-
* @returns
|
|
351
|
-
*
|
|
312
|
+
* @returns a TransactionWalletOperation promise object when followed by .send()
|
|
352
313
|
* @param Finalize_unstake pseudo-operation parameter
|
|
353
314
|
*/
|
|
354
315
|
finalizeUnstake(params) {
|
|
@@ -375,11 +336,8 @@ class Wallet {
|
|
|
375
336
|
}));
|
|
376
337
|
}
|
|
377
338
|
/**
|
|
378
|
-
*
|
|
379
339
|
* @description Increase the paid storage of a smart contract.
|
|
380
|
-
*
|
|
381
|
-
* @returns A wallet command from which we can send the operation to the wallet
|
|
382
|
-
*
|
|
340
|
+
* @returns a IncreasePaidStorageWalletOperation promise object when followed by .send()
|
|
383
341
|
* @param params operation parameter
|
|
384
342
|
*/
|
|
385
343
|
increasePaidStorage(params) {
|
|
@@ -394,11 +352,8 @@ class Wallet {
|
|
|
394
352
|
}));
|
|
395
353
|
}
|
|
396
354
|
/**
|
|
397
|
-
*
|
|
398
355
|
* @description Create a batch of operation
|
|
399
|
-
*
|
|
400
356
|
* @returns A batch object from which we can add more operation or send a command to the wallet to execute the batch
|
|
401
|
-
*
|
|
402
357
|
* @param params List of operation to initialize the batch with
|
|
403
358
|
*/
|
|
404
359
|
batch(params) {
|
|
@@ -409,10 +364,8 @@ class Wallet {
|
|
|
409
364
|
return batch;
|
|
410
365
|
}
|
|
411
366
|
/**
|
|
412
|
-
*
|
|
413
367
|
* @description Create an smart contract abstraction for the address specified. Calling entrypoints with the returned
|
|
414
368
|
* smart contract abstraction will leverage the wallet provider to make smart contract calls
|
|
415
|
-
*
|
|
416
369
|
* @param address Smart contract address
|
|
417
370
|
* @throws {@link InvalidContractAddressError} If the contract address is not valid
|
|
418
371
|
*/
|
package/dist/taquito.es6.js
CHANGED
|
@@ -4,8 +4,8 @@ import { HttpResponseError, STATUS_CODE } from '@taquito/http-utils';
|
|
|
4
4
|
import { TezosToolkitConfigError, ParameterValidationError, RpcError, TaquitoError, NetworkError, InvalidOperationHashError, InvalidAddressError, InvalidOperationKindError as InvalidOperationKindError$1, InvalidStakingAddressError, InvalidFinalizeUnstakeAmountError, InvalidContractAddressError, InvalidViewParameterError, DeprecationError, InvalidChainIdError, PublicKeyNotFoundError, InvalidAmountError, InvalidKeyHashError } from '@taquito/core';
|
|
5
5
|
import { Observable, ReplaySubject, BehaviorSubject, throwError, defer, range, of, EMPTY, combineLatest, from, concat, Subject, NEVER, timer } from 'rxjs';
|
|
6
6
|
import { switchMap, timeout, concatMap, endWith, tap, shareReplay, map, filter, first, catchError, share, distinctUntilChanged, takeWhile, startWith, mergeMap, takeUntil, retry, pluck, distinctUntilKeyChanged, publish, refCount } from 'rxjs/operators';
|
|
7
|
-
import { Schema, ParameterSchema, ViewSchema, EventSchema, MichelsonMap } from '@taquito/michelson-encoder';
|
|
8
|
-
export { MichelsonMap, UnitValue } from '@taquito/michelson-encoder';
|
|
7
|
+
import { Schema, ParameterSchema, ViewSchema, EventSchema, MichelsonMap, Token } from '@taquito/michelson-encoder';
|
|
8
|
+
export { MichelsonMap, Token, UnitValue } from '@taquito/michelson-encoder';
|
|
9
9
|
import { format, validateOperation, ValidationResult, InvalidOperationKindError, validateAddress, invalidDetail, validateContractAddress, validateChain, validateKeyHash, InvalidKeyHashError as InvalidKeyHashError$1, encodeExpr } from '@taquito/utils';
|
|
10
10
|
import BigNumber, { BigNumber as BigNumber$1 } from 'bignumber.js';
|
|
11
11
|
import { Parser, packDataBytes } from '@taquito/michel-codec';
|
|
@@ -235,6 +235,7 @@ var Protocols;
|
|
|
235
235
|
Protocols["PtNairobi"] = "PtNairobiyssHuh87hEhfVBGCVrK3WnS8Z2FT4ymB5tAa4r1nQf";
|
|
236
236
|
Protocols["ProxfordY"] = "ProxfordYmVfjWnRcgjWH36fW6PArwqykTFzotUxRs6gmTcZDuH";
|
|
237
237
|
Protocols["PtParisBQ"] = "PtParisBQscdCm6Cfow6ndeU6wKJyA3aV1j4D3gQBQMsTQyJCrz";
|
|
238
|
+
Protocols["PtParisBx"] = "PtParisBxoLz5gzMmn3d9WBQNoPSZakgnkMC2VNuQ3KXfUtUQeZ";
|
|
238
239
|
Protocols["ProtoALpha"] = "ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK";
|
|
239
240
|
})(Protocols || (Protocols = {}));
|
|
240
241
|
const protocols = {
|
|
@@ -1167,9 +1168,7 @@ class WalletOperationBatch {
|
|
|
1167
1168
|
this.operations = [];
|
|
1168
1169
|
}
|
|
1169
1170
|
/**
|
|
1170
|
-
*
|
|
1171
1171
|
* @description Add a transaction operation to the batch
|
|
1172
|
-
*
|
|
1173
1172
|
* @param params Transfer operation parameter
|
|
1174
1173
|
*/
|
|
1175
1174
|
withTransfer(params) {
|
|
@@ -1181,9 +1180,7 @@ class WalletOperationBatch {
|
|
|
1181
1180
|
return this;
|
|
1182
1181
|
}
|
|
1183
1182
|
/**
|
|
1184
|
-
*
|
|
1185
1183
|
* @description Add a contract call to the batch
|
|
1186
|
-
*
|
|
1187
1184
|
* @param params Call a contract method
|
|
1188
1185
|
* @param options Generic operation parameters
|
|
1189
1186
|
*/
|
|
@@ -1191,9 +1188,7 @@ class WalletOperationBatch {
|
|
|
1191
1188
|
return this.withTransfer(params.toTransferParams(options));
|
|
1192
1189
|
}
|
|
1193
1190
|
/**
|
|
1194
|
-
*
|
|
1195
1191
|
* @description Add a delegation operation to the batch
|
|
1196
|
-
*
|
|
1197
1192
|
* @param params Delegation operation parameter
|
|
1198
1193
|
*/
|
|
1199
1194
|
withDelegation(params) {
|
|
@@ -1206,9 +1201,7 @@ class WalletOperationBatch {
|
|
|
1206
1201
|
return this;
|
|
1207
1202
|
}
|
|
1208
1203
|
/**
|
|
1209
|
-
*
|
|
1210
1204
|
* @description Add an origination operation to the batch
|
|
1211
|
-
*
|
|
1212
1205
|
* @param params Origination operation parameter
|
|
1213
1206
|
*/
|
|
1214
1207
|
withOrigination(params) {
|
|
@@ -1216,9 +1209,7 @@ class WalletOperationBatch {
|
|
|
1216
1209
|
return this;
|
|
1217
1210
|
}
|
|
1218
1211
|
/**
|
|
1219
|
-
*
|
|
1220
1212
|
* @description Add an IncreasePaidStorage operation to the batch
|
|
1221
|
-
*
|
|
1222
1213
|
* @param param IncreasePaidStorage operation parameter
|
|
1223
1214
|
*/
|
|
1224
1215
|
withIncreasePaidStorage(params) {
|
|
@@ -1248,9 +1239,7 @@ class WalletOperationBatch {
|
|
|
1248
1239
|
});
|
|
1249
1240
|
}
|
|
1250
1241
|
/**
|
|
1251
|
-
*
|
|
1252
1242
|
* @description Add a group operation to the batch. Operation will be applied in the order they are in the params array
|
|
1253
|
-
*
|
|
1254
1243
|
* @param params Operations parameter
|
|
1255
1244
|
* @throws {@link InvalidOperationKindError}
|
|
1256
1245
|
*/
|
|
@@ -1276,9 +1265,7 @@ class WalletOperationBatch {
|
|
|
1276
1265
|
return this;
|
|
1277
1266
|
}
|
|
1278
1267
|
/**
|
|
1279
|
-
*
|
|
1280
1268
|
* @description Submit batch operation to wallet
|
|
1281
|
-
*
|
|
1282
1269
|
*/
|
|
1283
1270
|
send() {
|
|
1284
1271
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1305,7 +1292,6 @@ class Wallet {
|
|
|
1305
1292
|
}
|
|
1306
1293
|
/**
|
|
1307
1294
|
* @description Retrieve the PKH of the account that is currently in use by the wallet
|
|
1308
|
-
*
|
|
1309
1295
|
* @param option Option to use while fetching the PKH.
|
|
1310
1296
|
* If forceRefetch is specified the wallet provider implementation will refetch the PKH from the wallet
|
|
1311
1297
|
*/
|
|
@@ -1319,7 +1305,6 @@ class Wallet {
|
|
|
1319
1305
|
}
|
|
1320
1306
|
/**
|
|
1321
1307
|
* @description Retrieve the PK of the account that is currently in use by the wallet
|
|
1322
|
-
*
|
|
1323
1308
|
* @param option Option to use while fetching the PK.
|
|
1324
1309
|
* If forceRefetch is specified the wallet provider implementation will refetch the PK from the wallet
|
|
1325
1310
|
*/
|
|
@@ -1332,11 +1317,8 @@ class Wallet {
|
|
|
1332
1317
|
});
|
|
1333
1318
|
}
|
|
1334
1319
|
/**
|
|
1335
|
-
*
|
|
1336
1320
|
* @description Originate a new contract according to the script in parameters.
|
|
1337
|
-
*
|
|
1338
|
-
* @returns An operation handle with the result from the rpc node
|
|
1339
|
-
*
|
|
1321
|
+
* @returns a OriginationWalletOperation promise object when followed by .send()
|
|
1340
1322
|
* @param originateParams Originate operation parameter
|
|
1341
1323
|
*/
|
|
1342
1324
|
originate(params) {
|
|
@@ -1347,11 +1329,8 @@ class Wallet {
|
|
|
1347
1329
|
}));
|
|
1348
1330
|
}
|
|
1349
1331
|
/**
|
|
1350
|
-
*
|
|
1351
1332
|
* @description Set the delegate for a contract.
|
|
1352
|
-
*
|
|
1353
|
-
* @returns An operation handle with the result from the rpc node
|
|
1354
|
-
*
|
|
1333
|
+
* @returns a WalletDelegateParams promise object when followed by .send()
|
|
1355
1334
|
* @param delegateParams operation parameter
|
|
1356
1335
|
*/
|
|
1357
1336
|
setDelegate(params) {
|
|
@@ -1367,11 +1346,8 @@ class Wallet {
|
|
|
1367
1346
|
}));
|
|
1368
1347
|
}
|
|
1369
1348
|
/**
|
|
1370
|
-
*
|
|
1371
1349
|
* @description failing_noop operation that is guaranteed to fail. DISCLAIMER: Not all wallets support signing failing_noop operations.
|
|
1372
|
-
*
|
|
1373
1350
|
* @returns Signature for a failing_noop
|
|
1374
|
-
*
|
|
1375
1351
|
* @param params operation parameter
|
|
1376
1352
|
*/
|
|
1377
1353
|
signFailingNoop(params) {
|
|
@@ -1402,11 +1378,8 @@ class Wallet {
|
|
|
1402
1378
|
});
|
|
1403
1379
|
}
|
|
1404
1380
|
/**
|
|
1405
|
-
*
|
|
1406
1381
|
* @description Register the current address as delegate.
|
|
1407
|
-
*
|
|
1408
|
-
* @returns An operation handle with the result from the rpc node
|
|
1409
|
-
*
|
|
1382
|
+
* @returns a DelegationWalletOperation promise object when followed by .send()
|
|
1410
1383
|
*/
|
|
1411
1384
|
registerDelegate() {
|
|
1412
1385
|
return this.walletCommand(() => __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1419,11 +1392,8 @@ class Wallet {
|
|
|
1419
1392
|
}));
|
|
1420
1393
|
}
|
|
1421
1394
|
/**
|
|
1422
|
-
*
|
|
1423
1395
|
* @description Transfer tezos tokens from current address to a specific address or call a smart contract.
|
|
1424
|
-
*
|
|
1425
|
-
* @returns A wallet command from which we can send the operation to the wallet
|
|
1426
|
-
*
|
|
1396
|
+
* @returns a TransactionWalletOperation promise object when followed by .send()
|
|
1427
1397
|
* @param params operation parameter
|
|
1428
1398
|
*/
|
|
1429
1399
|
transfer(params) {
|
|
@@ -1438,11 +1408,8 @@ class Wallet {
|
|
|
1438
1408
|
}));
|
|
1439
1409
|
}
|
|
1440
1410
|
/**
|
|
1441
|
-
*
|
|
1442
1411
|
* @description Stake a given amount for the source address
|
|
1443
|
-
*
|
|
1444
|
-
* @returns An operation handle with the result from the rpc node
|
|
1445
|
-
*
|
|
1412
|
+
* @returns a TransactionWalletOperation promise object when followed by .send()
|
|
1446
1413
|
* @param Stake pseudo-operation parameter
|
|
1447
1414
|
*/
|
|
1448
1415
|
stake(params) {
|
|
@@ -1463,13 +1430,10 @@ class Wallet {
|
|
|
1463
1430
|
}));
|
|
1464
1431
|
}
|
|
1465
1432
|
/**
|
|
1466
|
-
*
|
|
1467
1433
|
* @description Unstake the given amount. If "everything" is given as amount, unstakes everything from the staking balance.
|
|
1468
1434
|
* Unstaked tez remains frozen for a set amount of cycles (the slashing period) after the operation. Once this period is over,
|
|
1469
1435
|
* the operation "finalize unstake" must be called for the funds to appear in the liquid balance.
|
|
1470
|
-
*
|
|
1471
|
-
* @returns An operation handle with the result from the rpc node
|
|
1472
|
-
*
|
|
1436
|
+
* @returns a TransactionWalletOperation promise object when followed by .send()
|
|
1473
1437
|
* @param Unstake pseudo-operation parameter
|
|
1474
1438
|
*/
|
|
1475
1439
|
unstake(params) {
|
|
@@ -1490,10 +1454,8 @@ class Wallet {
|
|
|
1490
1454
|
}));
|
|
1491
1455
|
}
|
|
1492
1456
|
/**
|
|
1493
|
-
*
|
|
1494
1457
|
* @description Transfer all the finalizable unstaked funds of the source to their liquid balance
|
|
1495
|
-
* @returns
|
|
1496
|
-
*
|
|
1458
|
+
* @returns a TransactionWalletOperation promise object when followed by .send()
|
|
1497
1459
|
* @param Finalize_unstake pseudo-operation parameter
|
|
1498
1460
|
*/
|
|
1499
1461
|
finalizeUnstake(params) {
|
|
@@ -1520,11 +1482,8 @@ class Wallet {
|
|
|
1520
1482
|
}));
|
|
1521
1483
|
}
|
|
1522
1484
|
/**
|
|
1523
|
-
*
|
|
1524
1485
|
* @description Increase the paid storage of a smart contract.
|
|
1525
|
-
*
|
|
1526
|
-
* @returns A wallet command from which we can send the operation to the wallet
|
|
1527
|
-
*
|
|
1486
|
+
* @returns a IncreasePaidStorageWalletOperation promise object when followed by .send()
|
|
1528
1487
|
* @param params operation parameter
|
|
1529
1488
|
*/
|
|
1530
1489
|
increasePaidStorage(params) {
|
|
@@ -1539,11 +1498,8 @@ class Wallet {
|
|
|
1539
1498
|
}));
|
|
1540
1499
|
}
|
|
1541
1500
|
/**
|
|
1542
|
-
*
|
|
1543
1501
|
* @description Create a batch of operation
|
|
1544
|
-
*
|
|
1545
1502
|
* @returns A batch object from which we can add more operation or send a command to the wallet to execute the batch
|
|
1546
|
-
*
|
|
1547
1503
|
* @param params List of operation to initialize the batch with
|
|
1548
1504
|
*/
|
|
1549
1505
|
batch(params) {
|
|
@@ -1554,10 +1510,8 @@ class Wallet {
|
|
|
1554
1510
|
return batch;
|
|
1555
1511
|
}
|
|
1556
1512
|
/**
|
|
1557
|
-
*
|
|
1558
1513
|
* @description Create an smart contract abstraction for the address specified. Calling entrypoints with the returned
|
|
1559
1514
|
* smart contract abstraction will leverage the wallet provider to make smart contract calls
|
|
1560
|
-
*
|
|
1561
1515
|
* @param address Smart contract address
|
|
1562
1516
|
* @throws {@link InvalidContractAddressError} If the contract address is not valid
|
|
1563
1517
|
*/
|
|
@@ -6844,8 +6798,8 @@ class Context {
|
|
|
6844
6798
|
|
|
6845
6799
|
// IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN!
|
|
6846
6800
|
const VERSION = {
|
|
6847
|
-
"commitHash": "
|
|
6848
|
-
"version": "20.0.0
|
|
6801
|
+
"commitHash": "45fea4a361f29598063e448574800220c4687001",
|
|
6802
|
+
"version": "20.0.0"
|
|
6849
6803
|
};
|
|
6850
6804
|
|
|
6851
6805
|
/**
|
|
@@ -7204,6 +7158,13 @@ class TezosToolkit {
|
|
|
7204
7158
|
this._options.injectorProvider = injectorProvider;
|
|
7205
7159
|
}
|
|
7206
7160
|
}
|
|
7161
|
+
/**
|
|
7162
|
+
* @description Sets the strategy used for field numbering in Token execute/encode/decode to convert Michelson values to/from javascript objects
|
|
7163
|
+
* @param strategy a value of type FieldNumberingStrategy that controls how field numbers are calculated
|
|
7164
|
+
*/
|
|
7165
|
+
setFieldNumberingStrategy(strategy) {
|
|
7166
|
+
Token.fieldNumberingStrategy = strategy;
|
|
7167
|
+
}
|
|
7207
7168
|
/**
|
|
7208
7169
|
* @description Provide access to tezos account management
|
|
7209
7170
|
*/
|
package/dist/taquito.es6.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"taquito.es6.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"taquito.es6.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|