@taquito/remote-signer 23.0.3 → 24.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.
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": "
|
|
6
|
+
"commitHash": "7912b77f57f943dff619383900bd46a7a593a244",
|
|
7
|
+
"version": "24.0.0-beta.0"
|
|
8
8
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { HttpBackend, HttpResponseError, STATUS_CODE } from '@taquito/http-utils';
|
|
2
2
|
import { validateKeyHash, ValidationResult, hex2buf, mergebuf, buf2hex, b58DecodeAndCheckPrefix, PrefixV2, verifySignature, b58Encode, getPkhfromPk } from '@taquito/utils';
|
|
3
3
|
import toBuffer from 'typedarray-to-buffer';
|
|
4
|
-
import {
|
|
4
|
+
import { TaquitoError, PermissionDeniedError, InvalidKeyHashError, PublicKeyNotFoundError, ProhibitedActionError, ParameterValidationError, InvalidSignatureError } from '@taquito/core';
|
|
5
5
|
|
|
6
6
|
/******************************************************************************
|
|
7
7
|
Copyright (c) Microsoft Corporation.
|
|
@@ -17,7 +17,7 @@ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
|
17
17
|
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
18
18
|
PERFORMANCE OF THIS SOFTWARE.
|
|
19
19
|
***************************************************************************** */
|
|
20
|
-
/* global Reflect, Promise, SuppressedError, Symbol */
|
|
20
|
+
/* global Reflect, Promise, SuppressedError, Symbol, Iterator */
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
function __awaiter(thisArg, _arguments, P, generator) {
|
|
@@ -94,8 +94,8 @@ class SignatureVerificationError extends TaquitoError {
|
|
|
94
94
|
|
|
95
95
|
// IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN!
|
|
96
96
|
const VERSION = {
|
|
97
|
-
"commitHash": "
|
|
98
|
-
"version": "
|
|
97
|
+
"commitHash": "7912b77f57f943dff619383900bd46a7a593a244",
|
|
98
|
+
"version": "24.0.0-beta.0"
|
|
99
99
|
};
|
|
100
100
|
|
|
101
101
|
class RemoteSigner {
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
19
19
|
PERFORMANCE OF THIS SOFTWARE.
|
|
20
20
|
***************************************************************************** */
|
|
21
|
-
/* global Reflect, Promise, SuppressedError, Symbol */
|
|
21
|
+
/* global Reflect, Promise, SuppressedError, Symbol, Iterator */
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
function __awaiter(thisArg, _arguments, P, generator) {
|
|
@@ -95,8 +95,8 @@
|
|
|
95
95
|
|
|
96
96
|
// IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN!
|
|
97
97
|
const VERSION = {
|
|
98
|
-
"commitHash": "
|
|
99
|
-
"version": "
|
|
98
|
+
"commitHash": "7912b77f57f943dff619383900bd46a7a593a244",
|
|
99
|
+
"version": "24.0.0-beta.0"
|
|
100
100
|
};
|
|
101
101
|
|
|
102
102
|
class RemoteSigner {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taquito/remote-signer",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "24.0.0-beta.0",
|
|
4
4
|
"description": "Remote signer provider",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"tezos",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
},
|
|
24
24
|
"license": "Apache-2.0",
|
|
25
25
|
"engines": {
|
|
26
|
-
"node": ">=
|
|
26
|
+
"node": ">=20"
|
|
27
27
|
},
|
|
28
28
|
"scripts": {
|
|
29
29
|
"test": "jest --coverage",
|
|
@@ -62,16 +62,16 @@
|
|
|
62
62
|
"dependencies": {
|
|
63
63
|
"@stablelib/blake2b": "^1.0.1",
|
|
64
64
|
"@stablelib/ed25519": "^1.0.3",
|
|
65
|
-
"@taquito/core": "^
|
|
66
|
-
"@taquito/http-utils": "^
|
|
67
|
-
"@taquito/taquito": "^
|
|
68
|
-
"@taquito/utils": "^
|
|
65
|
+
"@taquito/core": "^24.0.0-beta.0",
|
|
66
|
+
"@taquito/http-utils": "^24.0.0-beta.0",
|
|
67
|
+
"@taquito/taquito": "^24.0.0-beta.0",
|
|
68
|
+
"@taquito/utils": "^24.0.0-beta.0",
|
|
69
69
|
"typedarray-to-buffer": "^4.0.0"
|
|
70
70
|
},
|
|
71
71
|
"devDependencies": {
|
|
72
72
|
"@types/bluebird": "^3.5.42",
|
|
73
73
|
"@types/jest": "^29.5.12",
|
|
74
|
-
"@types/node": "^
|
|
74
|
+
"@types/node": "^20",
|
|
75
75
|
"@types/ws": "^8.5.12",
|
|
76
76
|
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
77
77
|
"@typescript-eslint/parser": "^6.21.0",
|
|
@@ -96,5 +96,5 @@
|
|
|
96
96
|
"ts-toolbelt": "^9.6.0",
|
|
97
97
|
"typescript": "~5.5.4"
|
|
98
98
|
},
|
|
99
|
-
"gitHead": "
|
|
99
|
+
"gitHead": "f212ea3edaf1fac34d738b5d00a9892ab7a3b721"
|
|
100
100
|
}
|