@libp2p/interface 2.4.0-06fc82da8 → 2.4.0-15a70af5f
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/src/keys/index.d.ts +2 -2
- package/package.json +1 -1
- package/src/keys/index.ts +2 -2
package/dist/src/keys/index.d.ts
CHANGED
|
@@ -150,7 +150,7 @@ export interface Ed25519PrivateKey {
|
|
|
150
150
|
*/
|
|
151
151
|
readonly publicKey: Ed25519PublicKey;
|
|
152
152
|
/**
|
|
153
|
-
* The raw
|
|
153
|
+
* The raw private key bytes
|
|
154
154
|
*/
|
|
155
155
|
readonly raw: Uint8Array;
|
|
156
156
|
/**
|
|
@@ -173,7 +173,7 @@ export interface Secp256k1PrivateKey {
|
|
|
173
173
|
*/
|
|
174
174
|
readonly publicKey: Secp256k1PublicKey;
|
|
175
175
|
/**
|
|
176
|
-
* The raw
|
|
176
|
+
* The raw private key bytes
|
|
177
177
|
*/
|
|
178
178
|
readonly raw: Uint8Array;
|
|
179
179
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@libp2p/interface",
|
|
3
|
-
"version": "2.4.0-
|
|
3
|
+
"version": "2.4.0-15a70af5f",
|
|
4
4
|
"description": "The interface implemented by a libp2p node",
|
|
5
5
|
"license": "Apache-2.0 OR MIT",
|
|
6
6
|
"homepage": "https://github.com/libp2p/js-libp2p/tree/main/packages/interface#readme",
|
package/src/keys/index.ts
CHANGED
|
@@ -193,7 +193,7 @@ export interface Ed25519PrivateKey {
|
|
|
193
193
|
readonly publicKey: Ed25519PublicKey
|
|
194
194
|
|
|
195
195
|
/**
|
|
196
|
-
* The raw
|
|
196
|
+
* The raw private key bytes
|
|
197
197
|
*/
|
|
198
198
|
readonly raw: Uint8Array
|
|
199
199
|
|
|
@@ -221,7 +221,7 @@ export interface Secp256k1PrivateKey {
|
|
|
221
221
|
readonly publicKey: Secp256k1PublicKey
|
|
222
222
|
|
|
223
223
|
/**
|
|
224
|
-
* The raw
|
|
224
|
+
* The raw private key bytes
|
|
225
225
|
*/
|
|
226
226
|
readonly raw: Uint8Array
|
|
227
227
|
|