fractal-pqc 0.3.2 → 0.3.3
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 -2
- package/bin/cli.mjs +2 -2
- package/package.json +6 -4
- package/src/index.mjs +1 -1
package/README.md
CHANGED
package/bin/cli.mjs
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
// fractal-pqc taproot-commit --key <file> Create a Taproot->PQC recovery commitment.
|
|
12
12
|
// fractal-pqc taproot-verify <commitment.json>
|
|
13
13
|
// fractal-pqc verify-vector Check the official BIP-340 test vector.
|
|
14
|
-
// fractal-pqc selftest Run the full real test suite (
|
|
14
|
+
// fractal-pqc selftest Run the full real test suite (46 checks).
|
|
15
15
|
//
|
|
16
16
|
// SECURITY: keys printed by `keygen` are for testnet / experimentation. Do NOT paste a
|
|
17
17
|
// production Bitcoin secret key into any tool; this kit is a reference, not a signer HSM.
|
|
@@ -213,7 +213,7 @@ Usage:
|
|
|
213
213
|
fractal-pqc send-testnet --key <taproot> --to <addr> --amount <sats> [--fee-rate N] [--network tb|signet] [--broadcast]
|
|
214
214
|
Build+sign a P2TR spend; dry-run unless --broadcast
|
|
215
215
|
fractal-pqc verify-vector Check the official BIP-340 test vector
|
|
216
|
-
fractal-pqc selftest Run the full real test suite (
|
|
216
|
+
fractal-pqc selftest Run the full real test suite (46 checks)
|
|
217
217
|
|
|
218
218
|
Docs: integrations/pqc-migration-kit/README.md`);
|
|
219
219
|
process.exit(cmd ? 1 : 0);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fractal-pqc",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"description": "Runnable reference for quantum-safe migration of a Bitcoin-style key: bind secp256k1/Taproot to ML-DSA-65 (FIPS-204), derive P2TR addresses, build+sign BIP-341 key-path spends (official-vector-verified), and broadcast on testnet. Real primitives, honest scope.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -8,8 +8,10 @@
|
|
|
8
8
|
"homepage": "https://fractalai.net.co",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
|
-
"url": "https://github.com/
|
|
12
|
-
|
|
11
|
+
"url": "git+https://github.com/johnInarti/fractal-pqc.git"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/johnInarti/fractal-pqc/issues"
|
|
13
15
|
},
|
|
14
16
|
"engines": {
|
|
15
17
|
"node": ">=18"
|
|
@@ -21,7 +23,7 @@
|
|
|
21
23
|
"./bitcoin": "./src/bitcoin.mjs"
|
|
22
24
|
},
|
|
23
25
|
"bin": {
|
|
24
|
-
"fractal-pqc": "
|
|
26
|
+
"fractal-pqc": "bin/cli.mjs"
|
|
25
27
|
},
|
|
26
28
|
"files": [
|
|
27
29
|
"src",
|
package/src/index.mjs
CHANGED