@taquito/taquito 21.0.0-beta.0 → 21.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 +3 -3
- package/dist/lib/operations/index.js +16 -3
- package/dist/lib/taquito.js +2 -2
- package/dist/lib/version.js +2 -2
- package/dist/taquito.es6.js +11 -8
- package/dist/taquito.es6.js.map +1 -1
- package/dist/taquito.min.js +1 -1
- package/dist/taquito.umd.js +20 -7
- package/dist/taquito.umd.js.map +1 -1
- package/dist/types/constants.d.ts +2 -2
- package/dist/types/operations/index.d.ts +1 -1
- package/dist/types/taquito.d.ts +2 -2
- package/package.json +12 -12
package/dist/taquito.umd.js
CHANGED
|
@@ -229,7 +229,7 @@
|
|
|
229
229
|
Protocols["ProxfordY"] = "ProxfordYmVfjWnRcgjWH36fW6PArwqykTFzotUxRs6gmTcZDuH";
|
|
230
230
|
Protocols["PtParisBx"] = "PtParisBxoLz5gzMmn3d9WBQNoPSZakgnkMC2VNuQ3KXfUtUQeZ";
|
|
231
231
|
Protocols["PsParisCZ"] = "PsParisCZo7KAh1Z1smVd9ZMZ1HHn5gkzbM94V3PLCpknFWhUAi";
|
|
232
|
-
Protocols["
|
|
232
|
+
Protocols["PsQuebecn"] = "PsQuebecnLByd3JwTiGadoG4nGWi3HYiLXUjkibeFV8dCFeVMUg";
|
|
233
233
|
Protocols["ProtoALpha"] = "ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK";
|
|
234
234
|
})(exports.Protocols || (exports.Protocols = {}));
|
|
235
235
|
const protocols = {
|
|
@@ -249,7 +249,7 @@
|
|
|
249
249
|
'017': [exports.Protocols.PtNairobi],
|
|
250
250
|
'019': [exports.Protocols.ProxfordY],
|
|
251
251
|
'020': [exports.Protocols.PtParisBx, exports.Protocols.PsParisCZ],
|
|
252
|
-
'021': [exports.Protocols.
|
|
252
|
+
'021': [exports.Protocols.PsQuebecn],
|
|
253
253
|
'022': [exports.Protocols.ProtoALpha],
|
|
254
254
|
};
|
|
255
255
|
exports.ChainIds = void 0;
|
|
@@ -272,7 +272,7 @@
|
|
|
272
272
|
ChainIds["OXFORDNET2"] = "NetXxWsskGahzQB";
|
|
273
273
|
ChainIds["PARISBNET"] = "NetXo8SqH1c38SS";
|
|
274
274
|
ChainIds["PARISCNET"] = "NetXXWAHLEvre9b";
|
|
275
|
-
ChainIds["
|
|
275
|
+
ChainIds["PsQuebecn"] = "NetXuTeGinLEqxp";
|
|
276
276
|
})(exports.ChainIds || (exports.ChainIds = {}));
|
|
277
277
|
// 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)
|
|
278
278
|
const getRevealGasLimit = (address) => Math.round((getRevealGasLimitInternal(address) * 37) / 10);
|
|
@@ -685,6 +685,9 @@
|
|
|
685
685
|
'smart_rollup_execute_outbox_message',
|
|
686
686
|
].indexOf(op.kind) !== -1);
|
|
687
687
|
};
|
|
688
|
+
const isSourceOp = (op) => {
|
|
689
|
+
return ['transaction', 'delegation', 'origination', 'reveal', 'ballot'].indexOf(op.kind) !== -1;
|
|
690
|
+
};
|
|
688
691
|
const hasMetadata = (op) => {
|
|
689
692
|
return 'metadata' in op;
|
|
690
693
|
};
|
|
@@ -6888,8 +6891,8 @@
|
|
|
6888
6891
|
|
|
6889
6892
|
// IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN!
|
|
6890
6893
|
const VERSION = {
|
|
6891
|
-
"commitHash": "
|
|
6892
|
-
"version": "21.0.0
|
|
6894
|
+
"commitHash": "8f78637e9787ae942916332501f41b35d6b98f2d",
|
|
6895
|
+
"version": "21.0.0"
|
|
6893
6896
|
};
|
|
6894
6897
|
|
|
6895
6898
|
/**
|
|
@@ -7036,7 +7039,7 @@
|
|
|
7036
7039
|
*
|
|
7037
7040
|
* @param options rpc url or rpcClient to use to interact with the Tezos network
|
|
7038
7041
|
*
|
|
7039
|
-
* @example Tezos.setProvider({rpc: 'https://mainnet.ecadinfra.com/', signer: new InMemorySigner.fromSecretKey(“edsk...”)})
|
|
7042
|
+
* @example Tezos.setProvider({rpc: 'https://mainnet.tezos.ecadinfra.com/', signer: new InMemorySigner.fromSecretKey(“edsk...”)})
|
|
7040
7043
|
* @example Tezos.setProvider({ config: { confirmationPollingTimeoutSecond: 300 }})
|
|
7041
7044
|
*
|
|
7042
7045
|
*/
|
|
@@ -7079,7 +7082,7 @@
|
|
|
7079
7082
|
*
|
|
7080
7083
|
* @param options rpc url or rpcClient to use to interact with the Tezos network
|
|
7081
7084
|
*
|
|
7082
|
-
* @example Tezos.setRpcProvider('https://mainnet.ecadinfra.com/')
|
|
7085
|
+
* @example Tezos.setRpcProvider('https://mainnet.tezos.ecadinfra.com/')
|
|
7083
7086
|
*
|
|
7084
7087
|
*/
|
|
7085
7088
|
setRpcProvider(rpc$1) {
|
|
@@ -7424,6 +7427,7 @@
|
|
|
7424
7427
|
exports.Wallet = Wallet;
|
|
7425
7428
|
exports.WalletOperation = WalletOperation;
|
|
7426
7429
|
exports.WalletOperationBatch = WalletOperationBatch;
|
|
7430
|
+
exports.attachKind = attachKind;
|
|
7427
7431
|
exports.compose = compose;
|
|
7428
7432
|
exports.createActivationOperation = createActivationOperation;
|
|
7429
7433
|
exports.createBallotOperation = createBallotOperation;
|
|
@@ -7442,9 +7446,18 @@
|
|
|
7442
7446
|
exports.createTransferTicketOperation = createTransferTicketOperation;
|
|
7443
7447
|
exports.createUpdateConsensusKeyOperation = createUpdateConsensusKeyOperation;
|
|
7444
7448
|
exports.defaultConfigConfirmation = defaultConfigConfirmation;
|
|
7449
|
+
exports.findWithKind = findWithKind;
|
|
7445
7450
|
exports.getRevealFee = getRevealFee;
|
|
7446
7451
|
exports.getRevealFeeInternal = getRevealFeeInternal;
|
|
7447
7452
|
exports.getRevealGasLimit = getRevealGasLimit;
|
|
7453
|
+
exports.hasMetadata = hasMetadata;
|
|
7454
|
+
exports.hasMetadataWithInternalOperationResult = hasMetadataWithInternalOperationResult;
|
|
7455
|
+
exports.hasMetadataWithResult = hasMetadataWithResult;
|
|
7456
|
+
exports.isKind = isKind;
|
|
7457
|
+
exports.isOpRequireReveal = isOpRequireReveal;
|
|
7458
|
+
exports.isOpWithFee = isOpWithFee;
|
|
7459
|
+
exports.isOpWithGasBuffer = isOpWithGasBuffer;
|
|
7460
|
+
exports.isSourceOp = isSourceOp;
|
|
7448
7461
|
exports.protocols = protocols;
|
|
7449
7462
|
exports.smartContractAbstractionSemantic = smartContractAbstractionSemantic;
|
|
7450
7463
|
exports.validateAndExtractFailwith = validateAndExtractFailwith;
|
package/dist/taquito.umd.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"taquito.umd.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"taquito.umd.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -52,7 +52,7 @@ export declare enum Protocols {
|
|
|
52
52
|
ProxfordY = "ProxfordYmVfjWnRcgjWH36fW6PArwqykTFzotUxRs6gmTcZDuH",
|
|
53
53
|
PtParisBx = "PtParisBxoLz5gzMmn3d9WBQNoPSZakgnkMC2VNuQ3KXfUtUQeZ",
|
|
54
54
|
PsParisCZ = "PsParisCZo7KAh1Z1smVd9ZMZ1HHn5gkzbM94V3PLCpknFWhUAi",
|
|
55
|
-
|
|
55
|
+
PsQuebecn = "PsQuebecnLByd3JwTiGadoG4nGWi3HYiLXUjkibeFV8dCFeVMUg",
|
|
56
56
|
ProtoALpha = "ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK"
|
|
57
57
|
}
|
|
58
58
|
export declare const protocols: {
|
|
@@ -94,7 +94,7 @@ export declare enum ChainIds {
|
|
|
94
94
|
OXFORDNET2 = "NetXxWsskGahzQB",
|
|
95
95
|
PARISBNET = "NetXo8SqH1c38SS",
|
|
96
96
|
PARISCNET = "NetXXWAHLEvre9b",
|
|
97
|
-
|
|
97
|
+
PsQuebecn = "NetXuTeGinLEqxp"
|
|
98
98
|
}
|
|
99
99
|
export declare const getRevealGasLimit: (address: string) => number;
|
|
100
100
|
export declare const getRevealFee: (address: string) => number;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export
|
|
1
|
+
export * from './types';
|
|
2
2
|
export { TezosOperationError, TezosOperationErrorWithMessage, TezosPreapplyFailureError, InvalidEstimateValueError, } from './errors';
|
|
3
3
|
export { BatchOperation } from './batch-operation';
|
|
4
4
|
export { OriginationOperation } from './origination-operation';
|
package/dist/types/taquito.d.ts
CHANGED
|
@@ -99,7 +99,7 @@ export declare class TezosToolkit {
|
|
|
99
99
|
*
|
|
100
100
|
* @param options rpc url or rpcClient to use to interact with the Tezos network
|
|
101
101
|
*
|
|
102
|
-
* @example Tezos.setProvider({rpc: 'https://mainnet.ecadinfra.com/', signer: new InMemorySigner.fromSecretKey(“edsk...”)})
|
|
102
|
+
* @example Tezos.setProvider({rpc: 'https://mainnet.tezos.ecadinfra.com/', signer: new InMemorySigner.fromSecretKey(“edsk...”)})
|
|
103
103
|
* @example Tezos.setProvider({ config: { confirmationPollingTimeoutSecond: 300 }})
|
|
104
104
|
*
|
|
105
105
|
*/
|
|
@@ -118,7 +118,7 @@ export declare class TezosToolkit {
|
|
|
118
118
|
*
|
|
119
119
|
* @param options rpc url or rpcClient to use to interact with the Tezos network
|
|
120
120
|
*
|
|
121
|
-
* @example Tezos.setRpcProvider('https://mainnet.ecadinfra.com/')
|
|
121
|
+
* @example Tezos.setRpcProvider('https://mainnet.tezos.ecadinfra.com/')
|
|
122
122
|
*
|
|
123
123
|
*/
|
|
124
124
|
setRpcProvider(rpc?: SetProviderOptions['rpc']): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taquito/taquito",
|
|
3
|
-
"version": "21.0.0
|
|
3
|
+
"version": "21.0.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",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
},
|
|
29
29
|
"license": "Apache-2.0",
|
|
30
30
|
"engines": {
|
|
31
|
-
"node": ">=
|
|
31
|
+
"node": ">=18"
|
|
32
32
|
},
|
|
33
33
|
"scripts": {
|
|
34
34
|
"test": "jest --coverage",
|
|
@@ -77,13 +77,13 @@
|
|
|
77
77
|
]
|
|
78
78
|
},
|
|
79
79
|
"dependencies": {
|
|
80
|
-
"@taquito/core": "^21.0.0
|
|
81
|
-
"@taquito/http-utils": "^21.0.0
|
|
82
|
-
"@taquito/local-forging": "^21.0.0
|
|
83
|
-
"@taquito/michel-codec": "^21.0.0
|
|
84
|
-
"@taquito/michelson-encoder": "^21.0.0
|
|
85
|
-
"@taquito/rpc": "^21.0.0
|
|
86
|
-
"@taquito/utils": "^21.0.0
|
|
80
|
+
"@taquito/core": "^21.0.0",
|
|
81
|
+
"@taquito/http-utils": "^21.0.0",
|
|
82
|
+
"@taquito/local-forging": "^21.0.0",
|
|
83
|
+
"@taquito/michel-codec": "^21.0.0",
|
|
84
|
+
"@taquito/michelson-encoder": "^21.0.0",
|
|
85
|
+
"@taquito/rpc": "^21.0.0",
|
|
86
|
+
"@taquito/utils": "^21.0.0",
|
|
87
87
|
"bignumber.js": "^9.1.2",
|
|
88
88
|
"rxjs": "^7.8.1"
|
|
89
89
|
},
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"@types/bluebird": "^3.5.42",
|
|
93
93
|
"@types/estree": "^1.0.5",
|
|
94
94
|
"@types/jest": "^29.5.12",
|
|
95
|
-
"@types/node": "^
|
|
95
|
+
"@types/node": "^18",
|
|
96
96
|
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
97
97
|
"@typescript-eslint/parser": "^6.21.0",
|
|
98
98
|
"buffer": "^6.0.3",
|
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
"prompt": "^1.3.0",
|
|
110
110
|
"replace-in-file": "^8.1.0",
|
|
111
111
|
"rimraf": "^6.0.1",
|
|
112
|
-
"rollup": "^4.
|
|
112
|
+
"rollup": "^4.22.4",
|
|
113
113
|
"rollup-plugin-json": "^4.0.0",
|
|
114
114
|
"rollup-plugin-typescript2": "^0.36.0",
|
|
115
115
|
"rx-sandbox": "^2.0.5",
|
|
@@ -125,5 +125,5 @@
|
|
|
125
125
|
"webpack-cli": "^5.1.4",
|
|
126
126
|
"webpack-subresource-integrity": "^5.1.0"
|
|
127
127
|
},
|
|
128
|
-
"gitHead": "
|
|
128
|
+
"gitHead": "655216b13995860187b1a1baf3c87e90b4fd69cb"
|
|
129
129
|
}
|