@xyo-network/wallet-xl1-cli 0.1.5 → 0.1.7
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 +14 -1
- package/dist/bin/wallet.mjs +319372 -140763
- package/package.json +14 -63
package/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
[![logo][]](https://xyo.network)
|
|
2
|
+
|
|
1
3
|
# @xyo-network/wallet-xl1-cli
|
|
2
4
|
|
|
3
5
|
[![npm][npm-badge]][npm-link]
|
|
@@ -126,13 +128,18 @@ xl1-wallet network remove local
|
|
|
126
128
|
Examples:
|
|
127
129
|
|
|
128
130
|
```sh
|
|
129
|
-
xl1-wallet create
|
|
131
|
+
xl1-wallet create
|
|
132
|
+
xl1-wallet create --label quant --algorithm ml-dsa-65
|
|
130
133
|
xl1-wallet import --label recovery --phrase "..."
|
|
134
|
+
xl1-wallet import --label quant-recovery --phrase "..." --algorithm ml-dsa-65
|
|
131
135
|
xl1-wallet list
|
|
132
136
|
xl1-wallet use <wallet-id>
|
|
133
137
|
xl1-wallet export --id <wallet-id>
|
|
134
138
|
```
|
|
135
139
|
|
|
140
|
+
`create` and `import` default to `--algorithm secp256k1`. Use `--algorithm ml-dsa-65` for `QuantHDWallet` wallets, which derive `qm65...` bech32m addresses. Wallet-signed JWT commands require secp256k1 because ML-DSA-65 does not yet have a standardized JOSE algorithm.
|
|
141
|
+
Wallet labels must be unique. If `create` is run without `--label`, the CLI uses the first available `wallet#` label, starting with `wallet0`.
|
|
142
|
+
|
|
136
143
|
### Accounts
|
|
137
144
|
|
|
138
145
|
| Command | Description |
|
|
@@ -327,3 +334,9 @@ xl1-wallet export --json
|
|
|
327
334
|
```
|
|
328
335
|
|
|
329
336
|
In `--json` mode the command prints only JSON to stdout (no decoration), so the output can be piped directly into `jq` or another parser.
|
|
337
|
+
|
|
338
|
+
## Credits
|
|
339
|
+
|
|
340
|
+
[Made with 🔥 and ❄️ by XYO Foundation](https://xyo.network)
|
|
341
|
+
|
|
342
|
+
[logo]: https://cdn.xy.company/img/brand/XYO_full_colored.png
|