@taquito/signer 23.0.1 → 23.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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": "c26a3d67ae3694c157f4f56fb5bf85ca3c495a9b",
7
- "version": "23.0.1"
6
+ "commitHash": "20b6624f217ec85f28023ca02b2d3b73777a8df9",
7
+ "version": "23.0.2"
8
8
  };
@@ -813,8 +813,8 @@ function importKey(toolkit, privateKeyOrEmail, passphrase, mnemonic, secret) {
813
813
 
814
814
  // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN!
815
815
  const VERSION = {
816
- "commitHash": "c26a3d67ae3694c157f4f56fb5bf85ca3c495a9b",
817
- "version": "23.0.1"
816
+ "commitHash": "20b6624f217ec85f28023ca02b2d3b73777a8df9",
817
+ "version": "23.0.2"
818
818
  };
819
819
 
820
820
  var _InMemorySigner_key;
@@ -823,8 +823,8 @@
823
823
 
824
824
  // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN!
825
825
  const VERSION = {
826
- "commitHash": "c26a3d67ae3694c157f4f56fb5bf85ca3c495a9b",
827
- "version": "23.0.1"
826
+ "commitHash": "20b6624f217ec85f28023ca02b2d3b73777a8df9",
827
+ "version": "23.0.2"
828
828
  };
829
829
 
830
830
  var _InMemorySigner_key;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taquito/signer",
3
- "version": "23.0.1",
3
+ "version": "23.0.2",
4
4
  "description": "Provide signing functionality to be with taquito",
5
5
  "keywords": [
6
6
  "tezos",
@@ -73,9 +73,9 @@
73
73
  "@stablelib/nacl": "^1.0.4",
74
74
  "@stablelib/pbkdf2": "^1.0.1",
75
75
  "@stablelib/sha512": "^1.0.1",
76
- "@taquito/core": "^23.0.1",
77
- "@taquito/taquito": "^23.0.1",
78
- "@taquito/utils": "^23.0.1",
76
+ "@taquito/core": "^23.0.2",
77
+ "@taquito/taquito": "^23.0.2",
78
+ "@taquito/utils": "^23.0.2",
79
79
  "@types/bn.js": "^5.1.5",
80
80
  "bip39": "3.1.0",
81
81
  "elliptic": "^6.6.1",
@@ -112,5 +112,5 @@
112
112
  "typedoc": "^0.26.5",
113
113
  "typescript": "~5.5.4"
114
114
  },
115
- "gitHead": "d67244a8188ee3a62390f32b75ba1acf599a782f"
115
+ "gitHead": "f7a7e829bd8876ead6888bea6bafb2f8f76a5359"
116
116
  }
@@ -1,6 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.isPOP = isPOP;
4
- function isPOP(k) {
5
- return 'provePossession' in k;
6
- }
@@ -1,16 +0,0 @@
1
- export interface SignResult {
2
- sig: string;
3
- prefixSig: string;
4
- rawSignature: Uint8Array;
5
- }
6
- export interface SigningKey {
7
- sign(message: Uint8Array): Promise<SignResult>;
8
- publicKey(): Promise<string>;
9
- publicKeyHash(): Promise<string>;
10
- secretKey(): Promise<string>;
11
- provePossession?: () => Promise<SignResult>;
12
- }
13
- export interface SigningKeyWithProofOfPossession extends SigningKey {
14
- provePossession(): Promise<SignResult>;
15
- }
16
- export declare function isPOP(k: SigningKey): k is SigningKeyWithProofOfPossession;