@inversealtruism/csd-crypto 0.1.1 → 0.1.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.
- package/README.md +11 -0
- package/package.json +5 -4
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# @inversealtruism/csd-crypto
|
|
2
|
+
|
|
3
|
+
secp256k1 keygen / sign (LOW-S, RFC6979) / verify, and hash160 address derivation for Compute Substrate.
|
|
4
|
+
|
|
5
|
+
Part of the [Compute Substrate SDK](https://github.com/InverseAltruism/csd-sdk) (L0). Zero `Buffer` — runs in Node, browsers, and MV3 service workers. Deps: `@noble/*` only.
|
|
6
|
+
|
|
7
|
+
```
|
|
8
|
+
npm i @inversealtruism/csd-crypto
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
See the [repo README](https://github.com/InverseAltruism/csd-sdk#readme) and [examples/quickstart.mjs](https://github.com/InverseAltruism/csd-sdk/blob/master/examples/quickstart.mjs) for usage. MIT.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inversealtruism/csd-crypto",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Compute Substrate crypto primitives — secp256k1 keygen/sign(lowS)/verify, hash160 address derivation. Thin wrappers over @noble.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -15,17 +15,18 @@
|
|
|
15
15
|
},
|
|
16
16
|
"files": [
|
|
17
17
|
"dist",
|
|
18
|
-
"LICENSE"
|
|
18
|
+
"LICENSE",
|
|
19
|
+
"README.md"
|
|
19
20
|
],
|
|
20
21
|
"dependencies": {
|
|
21
22
|
"@noble/curves": "1.9.7",
|
|
22
23
|
"@noble/hashes": "1.8.0",
|
|
23
|
-
"@inversealtruism/csd-codec": "0.1.
|
|
24
|
+
"@inversealtruism/csd-codec": "0.1.2"
|
|
24
25
|
},
|
|
25
26
|
"license": "MIT",
|
|
26
27
|
"sideEffects": false,
|
|
27
28
|
"devDependencies": {
|
|
28
|
-
"@inversealtruism/csd-vectors": "0.1.
|
|
29
|
+
"@inversealtruism/csd-vectors": "0.1.2"
|
|
29
30
|
},
|
|
30
31
|
"publishConfig": {
|
|
31
32
|
"access": "public"
|