@twin.org/crypto-cli 0.0.1-next.8 → 0.0.1
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/cjs/index.cjs +6 -10
- package/dist/esm/index.mjs +6 -10
- package/dist/locales/en.json +330 -316
- package/dist/types/commands/address.d.ts +0 -2
- package/docs/changelog.md +407 -1
- package/docs/examples.md +34 -37
- package/docs/reference/classes/CLI.md +14 -8
- package/docs/reference/functions/actionCommandAddress.md +3 -1
- package/docs/reference/functions/actionCommandMnemonic.md +3 -1
- package/locales/en.json +4 -9
- package/package.json +8 -8
package/locales/en.json
CHANGED
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
51
|
"address": {
|
|
52
|
-
"summary": "Create
|
|
53
|
-
"description": "Create a number of
|
|
52
|
+
"summary": "Create addresses and keys from the seed.",
|
|
53
|
+
"description": "Create a number of addresses and their associated key pairs from the seed.",
|
|
54
54
|
"options": {
|
|
55
55
|
"seed": {
|
|
56
56
|
"param": "--seed '<'seed'>'",
|
|
@@ -66,15 +66,11 @@
|
|
|
66
66
|
},
|
|
67
67
|
"account": {
|
|
68
68
|
"param": "--account '<'number'>'",
|
|
69
|
-
"description": "The account used to generate the
|
|
70
|
-
},
|
|
71
|
-
"hrp": {
|
|
72
|
-
"param": "--hrp '<'hrp'>'",
|
|
73
|
-
"description": "The human readable part of the bech32 addresses."
|
|
69
|
+
"description": "The account used to generate the addresses."
|
|
74
70
|
},
|
|
75
71
|
"coin": {
|
|
76
72
|
"param": "--coin '<'coin'>'",
|
|
77
|
-
"description": "The coin type used to generate the
|
|
73
|
+
"description": "The coin type used to generate the addresses."
|
|
78
74
|
},
|
|
79
75
|
"key-type": {
|
|
80
76
|
"param": "--key-type '<'type'>'",
|
|
@@ -93,7 +89,6 @@
|
|
|
93
89
|
"start": "Start",
|
|
94
90
|
"count": "Count",
|
|
95
91
|
"account": "Account",
|
|
96
|
-
"hrp": "HRP",
|
|
97
92
|
"coin": "Coin",
|
|
98
93
|
"key-type": "Key Type",
|
|
99
94
|
"key-format": "Key Format",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/crypto-cli",
|
|
3
|
-
"version": "0.0.1
|
|
3
|
+
"version": "0.0.1",
|
|
4
4
|
"description": "A command line interface for interacting with the crypto tools",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,20 +14,20 @@
|
|
|
14
14
|
"node": ">=20.0.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@twin.org/cli-core": "0.0.1
|
|
18
|
-
"@twin.org/core": "0.0.1
|
|
19
|
-
"@twin.org/crypto": "0.0.1
|
|
20
|
-
"@twin.org/nameof": "
|
|
21
|
-
"commander": "
|
|
17
|
+
"@twin.org/cli-core": "^0.0.1",
|
|
18
|
+
"@twin.org/core": "^0.0.1",
|
|
19
|
+
"@twin.org/crypto": "^0.0.1",
|
|
20
|
+
"@twin.org/nameof": "^0.0.1",
|
|
21
|
+
"commander": "14.0.0"
|
|
22
22
|
},
|
|
23
23
|
"main": "./dist/cjs/index.cjs",
|
|
24
24
|
"module": "./dist/esm/index.mjs",
|
|
25
25
|
"types": "./dist/types/index.d.ts",
|
|
26
26
|
"exports": {
|
|
27
27
|
".": {
|
|
28
|
+
"types": "./dist/types/index.d.ts",
|
|
28
29
|
"require": "./dist/cjs/index.cjs",
|
|
29
|
-
"import": "./dist/esm/index.mjs"
|
|
30
|
-
"types": "./dist/types/index.d.ts"
|
|
30
|
+
"import": "./dist/esm/index.mjs"
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"files": [
|