@twin.org/crypto-cli 0.0.3-next.2 → 0.0.3-next.22
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/es/cli.js +1 -1
- package/dist/es/cli.js.map +1 -1
- package/dist/locales/en.json +4 -1
- package/docs/changelog.md +472 -0
- package/package.json +5 -5
package/dist/es/cli.js
CHANGED
|
@@ -21,7 +21,7 @@ export class CLI extends CLIBase {
|
|
|
21
21
|
return this.execute({
|
|
22
22
|
title: "TWIN Crypto",
|
|
23
23
|
appName: "twin-crypto",
|
|
24
|
-
version: "0.0.3-next.
|
|
24
|
+
version: "0.0.3-next.22", // x-release-please-version
|
|
25
25
|
icon: "🌍",
|
|
26
26
|
supportsEnvFiles: true,
|
|
27
27
|
overrideOutputWidth: options?.overrideOutputWidth,
|
package/dist/es/cli.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cli.js","sourceRoot":"","sources":["../../src/cli.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AACvC,OAAO,IAAI,MAAM,WAAW,CAAC;AAC7B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AACzC,OAAO,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAC;AAE7C,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAE9D;;GAEG;AACH,MAAM,OAAO,GAAI,SAAQ,OAAO;IAC/B;;;;;;;OAOG;IACI,KAAK,CAAC,GAAG,CACf,IAAc,EACd,gBAAyB,EACzB,OAA0C;QAE1C,OAAO,IAAI,CAAC,OAAO,CAClB;YACC,KAAK,EAAE,aAAa;YACpB,OAAO,EAAE,aAAa;YACtB,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"cli.js","sourceRoot":"","sources":["../../src/cli.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AACvC,OAAO,IAAI,MAAM,WAAW,CAAC;AAC7B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AACzC,OAAO,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAC;AAE7C,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAE9D;;GAEG;AACH,MAAM,OAAO,GAAI,SAAQ,OAAO;IAC/B;;;;;;;OAOG;IACI,KAAK,CAAC,GAAG,CACf,IAAc,EACd,gBAAyB,EACzB,OAA0C;QAE1C,OAAO,IAAI,CAAC,OAAO,CAClB;YACC,KAAK,EAAE,aAAa;YACpB,OAAO,EAAE,aAAa;YACtB,OAAO,EAAE,eAAe,EAAE,2BAA2B;YACrD,IAAI,EAAE,IAAI;YACV,gBAAgB,EAAE,IAAI;YACtB,mBAAmB,EAAE,OAAO,EAAE,mBAAmB;YACjD,kBAAkB,EAAE,IAAI;SACxB,EACD,gBAAgB,IAAI,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,YAAY,CAAC,EACzF,IAAI,CACJ,CAAC;IACH,CAAC;IAED;;;;OAIG;IACO,WAAW,CAAC,OAAgB;QACrC,OAAO,CAAC,oBAAoB,EAAE,EAAE,mBAAmB,EAAE,CAAC,CAAC;IACxD,CAAC;CACD","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport path from \"node:path\";\nimport { fileURLToPath } from \"node:url\";\nimport { CLIBase } from \"@twin.org/cli-core\";\nimport type { Command } from \"commander\";\nimport { buildCommandAddress } from \"./commands/address.js\";\nimport { buildCommandMnemonic } from \"./commands/mnemonic.js\";\n\n/**\n * The main entry point for the CLI.\n */\nexport class CLI extends CLIBase {\n\t/**\n\t * Run the app.\n\t * @param argv The process arguments.\n\t * @param localesDirectory The directory for the locales, default to relative to the script.\n\t * @param options Additional options.\n\t * @param options.overrideOutputWidth Override the output width.\n\t * @returns The exit code.\n\t */\n\tpublic async run(\n\t\targv: string[],\n\t\tlocalesDirectory?: string,\n\t\toptions?: { overrideOutputWidth?: number }\n\t): Promise<number> {\n\t\treturn this.execute(\n\t\t\t{\n\t\t\t\ttitle: \"TWIN Crypto\",\n\t\t\t\tappName: \"twin-crypto\",\n\t\t\t\tversion: \"0.0.3-next.22\", // x-release-please-version\n\t\t\t\ticon: \"🌍\",\n\t\t\t\tsupportsEnvFiles: true,\n\t\t\t\toverrideOutputWidth: options?.overrideOutputWidth,\n\t\t\t\tshowDevToolWarning: true\n\t\t\t},\n\t\t\tlocalesDirectory ?? path.join(path.dirname(fileURLToPath(import.meta.url)), \"../locales\"),\n\t\t\targv\n\t\t);\n\t}\n\n\t/**\n\t * Get the commands for the CLI.\n\t * @param program The main program to add the commands to.\n\t * @internal\n\t */\n\tprotected getCommands(program: Command): Command[] {\n\t\treturn [buildCommandMnemonic(), buildCommandAddress()];\n\t}\n}\n"]}
|
package/dist/locales/en.json
CHANGED
|
@@ -87,6 +87,8 @@
|
|
|
87
87
|
"urn": "Property \"{property}\" must be a Urn formatted string, it is \"{value}\"",
|
|
88
88
|
"url": "Property \"{property}\" must be a Url formatted string, it is \"{value}\"",
|
|
89
89
|
"email": "Property \"{property}\" must be string in e-mail format, it is \"{value}\"",
|
|
90
|
+
"uuidV7": "Property \"{property}\" must be a UUIDv7 formatted string, it is \"{value}\"",
|
|
91
|
+
"uuidV7Compact": "Property \"{property}\" must be a UUIDv7 formatted string in compact mode, it is \"{value}\"",
|
|
90
92
|
"length32Multiple": "Property \"{property}\" should be a multiple of 32, it is {value}",
|
|
91
93
|
"lengthEntropy": "Property \"{property}\" should be a multiple of 4, >=16 and <= 32, it is {value}"
|
|
92
94
|
},
|
|
@@ -101,7 +103,8 @@
|
|
|
101
103
|
},
|
|
102
104
|
"factory": {
|
|
103
105
|
"noUnregister": "There is no {typeName} registered with the name \"{name}\"",
|
|
104
|
-
"noGet": "The requested {typeName} \"{name}\" does not exist in the factory"
|
|
106
|
+
"noGet": "The requested {typeName} \"{name}\" does not exist in the factory",
|
|
107
|
+
"noCreate": "The requested {typeName} \"{name}\" cannot be created by the factory, with params \"{params}\""
|
|
105
108
|
},
|
|
106
109
|
"bitString": {
|
|
107
110
|
"outOfRange": "The index should be >= 0 and less than the length of the bit string, the index is \"{index}\" and the number of bit is \"{numberBits}\""
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,477 @@
|
|
|
1
1
|
# @twin.org/crypto-cli - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.3-next.22](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.3-next.21...crypto-cli-v0.0.3-next.22) (2026-02-26)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous Chores
|
|
7
|
+
|
|
8
|
+
* **crypto-cli:** Synchronize repo versions
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/cli-core bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
16
|
+
* @twin.org/core bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
17
|
+
* @twin.org/crypto bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
18
|
+
* @twin.org/nameof bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
19
|
+
* devDependencies
|
|
20
|
+
* @twin.org/merge-locales bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
21
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
22
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
23
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
24
|
+
|
|
25
|
+
## [0.0.3-next.21](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.3-next.20...crypto-cli-v0.0.3-next.21) (2026-02-26)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Features
|
|
29
|
+
|
|
30
|
+
* add context id features ([#206](https://github.com/twinfoundation/framework/issues/206)) ([ef0d4ee](https://github.com/twinfoundation/framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
|
|
31
|
+
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
|
|
32
|
+
* add version type ([ae50cd9](https://github.com/twinfoundation/framework/commit/ae50cd99d342ed8eeb55290a52e9fed80a2af99e))
|
|
33
|
+
* eslint migration to flat config ([74427d7](https://github.com/twinfoundation/framework/commit/74427d78d342167f7850e49ab87269326355befe))
|
|
34
|
+
* locales validation ([#197](https://github.com/twinfoundation/framework/issues/197)) ([55fdadb](https://github.com/twinfoundation/framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
|
|
35
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
36
|
+
* remove version type ([553aa55](https://github.com/twinfoundation/framework/commit/553aa55bd79b8f930155035e522af2b0f6e3d0c8))
|
|
37
|
+
* update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
|
|
38
|
+
* use cause instead of inner for errors ([1f4acc4](https://github.com/twinfoundation/framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
|
|
39
|
+
* use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
### Bug Fixes
|
|
43
|
+
|
|
44
|
+
* crypto CLI address output to JSON ([0398604](https://github.com/twinfoundation/framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
|
|
45
|
+
* crypto CLI address output to JSON ([3397bfb](https://github.com/twinfoundation/framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
|
|
46
|
+
* remove bech32 from crypto-cli ([892aa5f](https://github.com/twinfoundation/framework/commit/892aa5f746a4bc806f2dada3611c03fadcfe5a7b))
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
### Dependencies
|
|
50
|
+
|
|
51
|
+
* The following workspace dependencies were updated
|
|
52
|
+
* dependencies
|
|
53
|
+
* @twin.org/cli-core bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
54
|
+
* @twin.org/core bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
55
|
+
* @twin.org/crypto bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
56
|
+
* @twin.org/nameof bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
57
|
+
* devDependencies
|
|
58
|
+
* @twin.org/merge-locales bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
59
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
60
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
61
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
62
|
+
|
|
63
|
+
## [0.0.3-next.20](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.3-next.19...crypto-cli-v0.0.3-next.20) (2026-02-26)
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
### Miscellaneous Chores
|
|
67
|
+
|
|
68
|
+
* **crypto-cli:** Synchronize repo versions
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
### Dependencies
|
|
72
|
+
|
|
73
|
+
* The following workspace dependencies were updated
|
|
74
|
+
* dependencies
|
|
75
|
+
* @twin.org/cli-core bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
76
|
+
* @twin.org/core bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
77
|
+
* @twin.org/crypto bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
78
|
+
* @twin.org/nameof bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
79
|
+
* devDependencies
|
|
80
|
+
* @twin.org/merge-locales bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
81
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
82
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
83
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
84
|
+
|
|
85
|
+
## [0.0.3-next.19](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.3-next.18...crypto-cli-v0.0.3-next.19) (2026-02-26)
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
### Miscellaneous Chores
|
|
89
|
+
|
|
90
|
+
* **crypto-cli:** Synchronize repo versions
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
### Dependencies
|
|
94
|
+
|
|
95
|
+
* The following workspace dependencies were updated
|
|
96
|
+
* dependencies
|
|
97
|
+
* @twin.org/cli-core bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
98
|
+
* @twin.org/core bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
99
|
+
* @twin.org/crypto bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
100
|
+
* @twin.org/nameof bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
101
|
+
* devDependencies
|
|
102
|
+
* @twin.org/merge-locales bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
103
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
104
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
105
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
106
|
+
|
|
107
|
+
## [0.0.3-next.18](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.3-next.17...crypto-cli-v0.0.3-next.18) (2026-02-23)
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
### Miscellaneous Chores
|
|
111
|
+
|
|
112
|
+
* **crypto-cli:** Synchronize repo versions
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
### Dependencies
|
|
116
|
+
|
|
117
|
+
* The following workspace dependencies were updated
|
|
118
|
+
* dependencies
|
|
119
|
+
* @twin.org/cli-core bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
120
|
+
* @twin.org/core bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
121
|
+
* @twin.org/crypto bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
122
|
+
* @twin.org/nameof bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
123
|
+
* devDependencies
|
|
124
|
+
* @twin.org/merge-locales bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
125
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
126
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
127
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
128
|
+
|
|
129
|
+
## [0.0.3-next.17](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.3-next.16...crypto-cli-v0.0.3-next.17) (2026-02-09)
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
### Miscellaneous Chores
|
|
133
|
+
|
|
134
|
+
* **crypto-cli:** Synchronize repo versions
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
### Dependencies
|
|
138
|
+
|
|
139
|
+
* The following workspace dependencies were updated
|
|
140
|
+
* dependencies
|
|
141
|
+
* @twin.org/cli-core bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
142
|
+
* @twin.org/core bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
143
|
+
* @twin.org/crypto bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
144
|
+
* @twin.org/nameof bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
145
|
+
* devDependencies
|
|
146
|
+
* @twin.org/merge-locales bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
147
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
148
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
149
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
150
|
+
|
|
151
|
+
## [0.0.3-next.16](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.3-next.15...crypto-cli-v0.0.3-next.16) (2026-02-06)
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
### Miscellaneous Chores
|
|
155
|
+
|
|
156
|
+
* **crypto-cli:** Synchronize repo versions
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
### Dependencies
|
|
160
|
+
|
|
161
|
+
* The following workspace dependencies were updated
|
|
162
|
+
* dependencies
|
|
163
|
+
* @twin.org/cli-core bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
164
|
+
* @twin.org/core bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
165
|
+
* @twin.org/crypto bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
166
|
+
* @twin.org/nameof bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
167
|
+
* devDependencies
|
|
168
|
+
* @twin.org/merge-locales bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
169
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
170
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
171
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
172
|
+
|
|
173
|
+
## [0.0.3-next.15](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.3-next.14...crypto-cli-v0.0.3-next.15) (2026-01-29)
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
### Miscellaneous Chores
|
|
177
|
+
|
|
178
|
+
* **crypto-cli:** Synchronize repo versions
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
### Dependencies
|
|
182
|
+
|
|
183
|
+
* The following workspace dependencies were updated
|
|
184
|
+
* dependencies
|
|
185
|
+
* @twin.org/cli-core bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
186
|
+
* @twin.org/core bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
187
|
+
* @twin.org/crypto bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
188
|
+
* @twin.org/nameof bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
189
|
+
* devDependencies
|
|
190
|
+
* @twin.org/merge-locales bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
191
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
192
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
193
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
194
|
+
|
|
195
|
+
## [0.0.3-next.14](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.3-next.13...crypto-cli-v0.0.3-next.14) (2026-01-22)
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
### Miscellaneous Chores
|
|
199
|
+
|
|
200
|
+
* **crypto-cli:** Synchronize repo versions
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
### Dependencies
|
|
204
|
+
|
|
205
|
+
* The following workspace dependencies were updated
|
|
206
|
+
* dependencies
|
|
207
|
+
* @twin.org/cli-core bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
208
|
+
* @twin.org/core bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
209
|
+
* @twin.org/crypto bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
210
|
+
* @twin.org/nameof bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
211
|
+
* devDependencies
|
|
212
|
+
* @twin.org/merge-locales bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
213
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
214
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
215
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
216
|
+
|
|
217
|
+
## [0.0.3-next.13](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.3-next.12...crypto-cli-v0.0.3-next.13) (2026-01-08)
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
### Miscellaneous Chores
|
|
221
|
+
|
|
222
|
+
* **crypto-cli:** Synchronize repo versions
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
### Dependencies
|
|
226
|
+
|
|
227
|
+
* The following workspace dependencies were updated
|
|
228
|
+
* dependencies
|
|
229
|
+
* @twin.org/cli-core bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
230
|
+
* @twin.org/core bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
231
|
+
* @twin.org/crypto bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
232
|
+
* @twin.org/nameof bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
233
|
+
* devDependencies
|
|
234
|
+
* @twin.org/merge-locales bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
235
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
236
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
237
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
238
|
+
|
|
239
|
+
## [0.0.3-next.12](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.3-next.11...crypto-cli-v0.0.3-next.12) (2026-01-08)
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
### Miscellaneous Chores
|
|
243
|
+
|
|
244
|
+
* **crypto-cli:** Synchronize repo versions
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
### Dependencies
|
|
248
|
+
|
|
249
|
+
* The following workspace dependencies were updated
|
|
250
|
+
* dependencies
|
|
251
|
+
* @twin.org/cli-core bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
252
|
+
* @twin.org/core bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
253
|
+
* @twin.org/crypto bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
254
|
+
* @twin.org/nameof bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
255
|
+
* devDependencies
|
|
256
|
+
* @twin.org/merge-locales bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
257
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
258
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
259
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
260
|
+
|
|
261
|
+
## [0.0.3-next.11](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.3-next.10...crypto-cli-v0.0.3-next.11) (2026-01-07)
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
### Miscellaneous Chores
|
|
265
|
+
|
|
266
|
+
* **crypto-cli:** Synchronize repo versions
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
### Dependencies
|
|
270
|
+
|
|
271
|
+
* The following workspace dependencies were updated
|
|
272
|
+
* dependencies
|
|
273
|
+
* @twin.org/cli-core bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
274
|
+
* @twin.org/core bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
275
|
+
* @twin.org/crypto bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
276
|
+
* @twin.org/nameof bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
277
|
+
* devDependencies
|
|
278
|
+
* @twin.org/merge-locales bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
279
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
280
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
281
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
282
|
+
|
|
283
|
+
## [0.0.3-next.10](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.3-next.9...crypto-cli-v0.0.3-next.10) (2026-01-07)
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
### Miscellaneous Chores
|
|
287
|
+
|
|
288
|
+
* **crypto-cli:** Synchronize repo versions
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
### Dependencies
|
|
292
|
+
|
|
293
|
+
* The following workspace dependencies were updated
|
|
294
|
+
* dependencies
|
|
295
|
+
* @twin.org/cli-core bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
296
|
+
* @twin.org/core bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
297
|
+
* @twin.org/crypto bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
298
|
+
* @twin.org/nameof bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
299
|
+
* devDependencies
|
|
300
|
+
* @twin.org/merge-locales bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
301
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
302
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
303
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
304
|
+
|
|
305
|
+
## [0.0.3-next.9](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.3-next.8...crypto-cli-v0.0.3-next.9) (2026-01-05)
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
### Miscellaneous Chores
|
|
309
|
+
|
|
310
|
+
* **crypto-cli:** Synchronize repo versions
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
### Dependencies
|
|
314
|
+
|
|
315
|
+
* The following workspace dependencies were updated
|
|
316
|
+
* dependencies
|
|
317
|
+
* @twin.org/cli-core bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
318
|
+
* @twin.org/core bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
319
|
+
* @twin.org/crypto bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
320
|
+
* @twin.org/nameof bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
321
|
+
* devDependencies
|
|
322
|
+
* @twin.org/merge-locales bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
323
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
324
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
325
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
326
|
+
|
|
327
|
+
## [0.0.3-next.8](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.3-next.7...crypto-cli-v0.0.3-next.8) (2025-11-26)
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
### Miscellaneous Chores
|
|
331
|
+
|
|
332
|
+
* **crypto-cli:** Synchronize repo versions
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
### Dependencies
|
|
336
|
+
|
|
337
|
+
* The following workspace dependencies were updated
|
|
338
|
+
* dependencies
|
|
339
|
+
* @twin.org/cli-core bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
340
|
+
* @twin.org/core bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
341
|
+
* @twin.org/crypto bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
342
|
+
* @twin.org/nameof bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
343
|
+
* devDependencies
|
|
344
|
+
* @twin.org/merge-locales bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
345
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
346
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
347
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
348
|
+
|
|
349
|
+
## [0.0.3-next.7](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.3-next.6...crypto-cli-v0.0.3-next.7) (2025-11-25)
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
### Features
|
|
353
|
+
|
|
354
|
+
* add context id features ([#206](https://github.com/twinfoundation/framework/issues/206)) ([ef0d4ee](https://github.com/twinfoundation/framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
|
|
355
|
+
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
|
|
356
|
+
* add version type ([ae50cd9](https://github.com/twinfoundation/framework/commit/ae50cd99d342ed8eeb55290a52e9fed80a2af99e))
|
|
357
|
+
* eslint migration to flat config ([74427d7](https://github.com/twinfoundation/framework/commit/74427d78d342167f7850e49ab87269326355befe))
|
|
358
|
+
* locales validation ([#197](https://github.com/twinfoundation/framework/issues/197)) ([55fdadb](https://github.com/twinfoundation/framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
|
|
359
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
360
|
+
* remove version type ([553aa55](https://github.com/twinfoundation/framework/commit/553aa55bd79b8f930155035e522af2b0f6e3d0c8))
|
|
361
|
+
* update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
|
|
362
|
+
* use cause instead of inner for errors ([1f4acc4](https://github.com/twinfoundation/framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
|
|
363
|
+
* use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
### Bug Fixes
|
|
367
|
+
|
|
368
|
+
* crypto CLI address output to JSON ([0398604](https://github.com/twinfoundation/framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
|
|
369
|
+
* crypto CLI address output to JSON ([3397bfb](https://github.com/twinfoundation/framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
|
|
370
|
+
* remove bech32 from crypto-cli ([892aa5f](https://github.com/twinfoundation/framework/commit/892aa5f746a4bc806f2dada3611c03fadcfe5a7b))
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
### Dependencies
|
|
374
|
+
|
|
375
|
+
* The following workspace dependencies were updated
|
|
376
|
+
* dependencies
|
|
377
|
+
* @twin.org/cli-core bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
378
|
+
* @twin.org/core bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
379
|
+
* @twin.org/crypto bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
380
|
+
* @twin.org/nameof bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
381
|
+
* devDependencies
|
|
382
|
+
* @twin.org/merge-locales bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
383
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
384
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
385
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
386
|
+
|
|
387
|
+
## [0.0.3-next.6](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.3-next.5...crypto-cli-v0.0.3-next.6) (2025-11-25)
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
### Miscellaneous Chores
|
|
391
|
+
|
|
392
|
+
* **crypto-cli:** Synchronize repo versions
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
### Dependencies
|
|
396
|
+
|
|
397
|
+
* The following workspace dependencies were updated
|
|
398
|
+
* dependencies
|
|
399
|
+
* @twin.org/cli-core bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
400
|
+
* @twin.org/core bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
401
|
+
* @twin.org/crypto bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
402
|
+
* @twin.org/nameof bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
403
|
+
* devDependencies
|
|
404
|
+
* @twin.org/merge-locales bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
405
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
406
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
407
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
408
|
+
|
|
409
|
+
## [0.0.3-next.5](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.3-next.4...crypto-cli-v0.0.3-next.5) (2025-11-20)
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
### Miscellaneous Chores
|
|
413
|
+
|
|
414
|
+
* **crypto-cli:** Synchronize repo versions
|
|
415
|
+
|
|
416
|
+
|
|
417
|
+
### Dependencies
|
|
418
|
+
|
|
419
|
+
* The following workspace dependencies were updated
|
|
420
|
+
* dependencies
|
|
421
|
+
* @twin.org/cli-core bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
422
|
+
* @twin.org/core bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
423
|
+
* @twin.org/crypto bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
424
|
+
* @twin.org/nameof bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
425
|
+
* devDependencies
|
|
426
|
+
* @twin.org/merge-locales bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
427
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
428
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
429
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
430
|
+
|
|
431
|
+
## [0.0.3-next.4](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.3-next.3...crypto-cli-v0.0.3-next.4) (2025-11-13)
|
|
432
|
+
|
|
433
|
+
|
|
434
|
+
### Miscellaneous Chores
|
|
435
|
+
|
|
436
|
+
* **crypto-cli:** Synchronize repo versions
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
### Dependencies
|
|
440
|
+
|
|
441
|
+
* The following workspace dependencies were updated
|
|
442
|
+
* dependencies
|
|
443
|
+
* @twin.org/cli-core bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
444
|
+
* @twin.org/core bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
445
|
+
* @twin.org/crypto bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
446
|
+
* @twin.org/nameof bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
447
|
+
* devDependencies
|
|
448
|
+
* @twin.org/merge-locales bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
449
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
450
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
451
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
452
|
+
|
|
453
|
+
## [0.0.3-next.3](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.3-next.2...crypto-cli-v0.0.3-next.3) (2025-11-12)
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
### Miscellaneous Chores
|
|
457
|
+
|
|
458
|
+
* **crypto-cli:** Synchronize repo versions
|
|
459
|
+
|
|
460
|
+
|
|
461
|
+
### Dependencies
|
|
462
|
+
|
|
463
|
+
* The following workspace dependencies were updated
|
|
464
|
+
* dependencies
|
|
465
|
+
* @twin.org/cli-core bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
466
|
+
* @twin.org/core bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
467
|
+
* @twin.org/crypto bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
468
|
+
* @twin.org/nameof bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
469
|
+
* devDependencies
|
|
470
|
+
* @twin.org/merge-locales bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
471
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
472
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
473
|
+
* @twin.org/validate-locales bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
474
|
+
|
|
3
475
|
## [0.0.3-next.2](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.3-next.1...crypto-cli-v0.0.3-next.2) (2025-11-12)
|
|
4
476
|
|
|
5
477
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/crypto-cli",
|
|
3
|
-
"version": "0.0.3-next.
|
|
3
|
+
"version": "0.0.3-next.22",
|
|
4
4
|
"description": "A command line interface for interacting with the crypto tools",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,10 +14,10 @@
|
|
|
14
14
|
"node": ">=20.0.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@twin.org/cli-core": "0.0.3-next.
|
|
18
|
-
"@twin.org/core": "0.0.3-next.
|
|
19
|
-
"@twin.org/crypto": "0.0.3-next.
|
|
20
|
-
"@twin.org/nameof": "0.0.3-next.
|
|
17
|
+
"@twin.org/cli-core": "0.0.3-next.22",
|
|
18
|
+
"@twin.org/core": "0.0.3-next.22",
|
|
19
|
+
"@twin.org/crypto": "0.0.3-next.22",
|
|
20
|
+
"@twin.org/nameof": "0.0.3-next.22",
|
|
21
21
|
"commander": "14.0.2"
|
|
22
22
|
},
|
|
23
23
|
"main": "./dist/es/index.js",
|