@twin.org/crypto-cli 0.0.3-next.3 → 0.0.3-next.30

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 CHANGED
@@ -1,16 +1,16 @@
1
1
  # TWIN Crypto CLI
2
2
 
3
- A command line interface for interacting with the crypto tools.
3
+ This application is part of the framework workspace and provides command line interface for interacting with the crypto tools to support consistent development workflows across the ecosystem.
4
4
 
5
5
  ## Installation
6
6
 
7
7
  ```shell
8
- npm install @twin.org/crypto-cli
8
+ npm install -D @twin.org/crypto-cli
9
9
  ```
10
10
 
11
- ## Examples
11
+ ## Usage
12
12
 
13
- Usage of the tool is shown in the examples [docs/examples.md](docs/examples.md)
13
+ Usage of the tool is shown in the examples [docs/usage.md](docs/usage.md)
14
14
 
15
15
  ## Reference
16
16
 
package/dist/es/cli.js CHANGED
@@ -21,8 +21,8 @@ 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.3", // x-release-please-version
25
- icon: "🌍",
24
+ version: "0.0.3-next.30", // x-release-please-version
25
+ icon: "🔒",
26
26
  supportsEnvFiles: true,
27
27
  overrideOutputWidth: options?.overrideOutputWidth,
28
28
  showDevToolWarning: true
@@ -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,cAAc,EAAE,2BAA2B;YACpD,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.3\", // 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"]}
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.30\", // 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"]}
@@ -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,4 +1,630 @@
1
- # @twin.org/crypto-cli - Changelog
1
+ # Changelog
2
+
3
+ ## [0.0.3-next.30](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.3-next.29...crypto-cli-v0.0.3-next.30) (2026-04-14)
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.29 to 0.0.3-next.30
16
+ * @twin.org/core bumped from 0.0.3-next.29 to 0.0.3-next.30
17
+ * @twin.org/crypto bumped from 0.0.3-next.29 to 0.0.3-next.30
18
+ * @twin.org/nameof bumped from 0.0.3-next.29 to 0.0.3-next.30
19
+ * devDependencies
20
+ * @twin.org/merge-locales bumped from 0.0.3-next.29 to 0.0.3-next.30
21
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.29 to 0.0.3-next.30
22
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.29 to 0.0.3-next.30
23
+ * @twin.org/validate-locales bumped from 0.0.3-next.29 to 0.0.3-next.30
24
+
25
+ ## [0.0.3-next.29](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.3-next.28...crypto-cli-v0.0.3-next.29) (2026-04-14)
26
+
27
+
28
+ ### Miscellaneous Chores
29
+
30
+ * **crypto-cli:** Synchronize repo versions
31
+
32
+
33
+ ### Dependencies
34
+
35
+ * The following workspace dependencies were updated
36
+ * dependencies
37
+ * @twin.org/cli-core bumped from 0.0.3-next.28 to 0.0.3-next.29
38
+ * @twin.org/core bumped from 0.0.3-next.28 to 0.0.3-next.29
39
+ * @twin.org/crypto bumped from 0.0.3-next.28 to 0.0.3-next.29
40
+ * @twin.org/nameof bumped from 0.0.3-next.28 to 0.0.3-next.29
41
+ * devDependencies
42
+ * @twin.org/merge-locales bumped from 0.0.3-next.28 to 0.0.3-next.29
43
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.28 to 0.0.3-next.29
44
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.28 to 0.0.3-next.29
45
+ * @twin.org/validate-locales bumped from 0.0.3-next.28 to 0.0.3-next.29
46
+
47
+ ## [0.0.3-next.28](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.3-next.27...crypto-cli-v0.0.3-next.28) (2026-03-27)
48
+
49
+
50
+ ### Miscellaneous Chores
51
+
52
+ * **crypto-cli:** Synchronize repo versions
53
+
54
+
55
+ ### Dependencies
56
+
57
+ * The following workspace dependencies were updated
58
+ * dependencies
59
+ * @twin.org/cli-core bumped from 0.0.3-next.27 to 0.0.3-next.28
60
+ * @twin.org/core bumped from 0.0.3-next.27 to 0.0.3-next.28
61
+ * @twin.org/crypto bumped from 0.0.3-next.27 to 0.0.3-next.28
62
+ * @twin.org/nameof bumped from 0.0.3-next.27 to 0.0.3-next.28
63
+ * devDependencies
64
+ * @twin.org/merge-locales bumped from 0.0.3-next.27 to 0.0.3-next.28
65
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.27 to 0.0.3-next.28
66
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.27 to 0.0.3-next.28
67
+ * @twin.org/validate-locales bumped from 0.0.3-next.27 to 0.0.3-next.28
68
+
69
+ ## [0.0.3-next.27](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.3-next.26...crypto-cli-v0.0.3-next.27) (2026-03-27)
70
+
71
+
72
+ ### Miscellaneous Chores
73
+
74
+ * **crypto-cli:** Synchronize repo versions
75
+
76
+
77
+ ### Dependencies
78
+
79
+ * The following workspace dependencies were updated
80
+ * dependencies
81
+ * @twin.org/cli-core bumped from 0.0.3-next.26 to 0.0.3-next.27
82
+ * @twin.org/core bumped from 0.0.3-next.26 to 0.0.3-next.27
83
+ * @twin.org/crypto bumped from 0.0.3-next.26 to 0.0.3-next.27
84
+ * @twin.org/nameof bumped from 0.0.3-next.26 to 0.0.3-next.27
85
+ * devDependencies
86
+ * @twin.org/merge-locales bumped from 0.0.3-next.26 to 0.0.3-next.27
87
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.26 to 0.0.3-next.27
88
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.26 to 0.0.3-next.27
89
+ * @twin.org/validate-locales bumped from 0.0.3-next.26 to 0.0.3-next.27
90
+
91
+ ## [0.0.3-next.26](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.3-next.25...crypto-cli-v0.0.3-next.26) (2026-03-24)
92
+
93
+
94
+ ### Miscellaneous Chores
95
+
96
+ * **crypto-cli:** Synchronize repo versions
97
+
98
+
99
+ ### Dependencies
100
+
101
+ * The following workspace dependencies were updated
102
+ * dependencies
103
+ * @twin.org/cli-core bumped from 0.0.3-next.25 to 0.0.3-next.26
104
+ * @twin.org/core bumped from 0.0.3-next.25 to 0.0.3-next.26
105
+ * @twin.org/crypto bumped from 0.0.3-next.25 to 0.0.3-next.26
106
+ * @twin.org/nameof bumped from 0.0.3-next.25 to 0.0.3-next.26
107
+ * devDependencies
108
+ * @twin.org/merge-locales bumped from 0.0.3-next.25 to 0.0.3-next.26
109
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.25 to 0.0.3-next.26
110
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.25 to 0.0.3-next.26
111
+ * @twin.org/validate-locales bumped from 0.0.3-next.25 to 0.0.3-next.26
112
+
113
+ ## [0.0.3-next.25](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.3-next.24...crypto-cli-v0.0.3-next.25) (2026-03-23)
114
+
115
+
116
+ ### Miscellaneous Chores
117
+
118
+ * **crypto-cli:** Synchronize repo versions
119
+
120
+
121
+ ### Dependencies
122
+
123
+ * The following workspace dependencies were updated
124
+ * dependencies
125
+ * @twin.org/cli-core bumped from 0.0.3-next.24 to 0.0.3-next.25
126
+ * @twin.org/core bumped from 0.0.3-next.24 to 0.0.3-next.25
127
+ * @twin.org/crypto bumped from 0.0.3-next.24 to 0.0.3-next.25
128
+ * @twin.org/nameof bumped from 0.0.3-next.24 to 0.0.3-next.25
129
+ * devDependencies
130
+ * @twin.org/merge-locales bumped from 0.0.3-next.24 to 0.0.3-next.25
131
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.24 to 0.0.3-next.25
132
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.24 to 0.0.3-next.25
133
+ * @twin.org/validate-locales bumped from 0.0.3-next.24 to 0.0.3-next.25
134
+
135
+ ## [0.0.3-next.24](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.3-next.23...crypto-cli-v0.0.3-next.24) (2026-03-19)
136
+
137
+
138
+ ### Bug Fixes
139
+
140
+ * ensure __decorate is defined for decorators ([103a563](https://github.com/twinfoundation/framework/commit/103a563ce01ebdef6240d2e590e7b026e8692684))
141
+
142
+
143
+ ### Dependencies
144
+
145
+ * The following workspace dependencies were updated
146
+ * dependencies
147
+ * @twin.org/cli-core bumped from 0.0.3-next.23 to 0.0.3-next.24
148
+ * @twin.org/core bumped from 0.0.3-next.23 to 0.0.3-next.24
149
+ * @twin.org/crypto bumped from 0.0.3-next.23 to 0.0.3-next.24
150
+ * @twin.org/nameof bumped from 0.0.3-next.23 to 0.0.3-next.24
151
+ * devDependencies
152
+ * @twin.org/merge-locales bumped from 0.0.3-next.23 to 0.0.3-next.24
153
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.23 to 0.0.3-next.24
154
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.23 to 0.0.3-next.24
155
+ * @twin.org/validate-locales bumped from 0.0.3-next.23 to 0.0.3-next.24
156
+
157
+ ## [0.0.3-next.23](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.3-next.22...crypto-cli-v0.0.3-next.23) (2026-03-17)
158
+
159
+
160
+ ### Miscellaneous Chores
161
+
162
+ * **crypto-cli:** Synchronize repo versions
163
+
164
+
165
+ ### Dependencies
166
+
167
+ * The following workspace dependencies were updated
168
+ * dependencies
169
+ * @twin.org/cli-core bumped from 0.0.3-next.22 to 0.0.3-next.23
170
+ * @twin.org/core bumped from 0.0.3-next.22 to 0.0.3-next.23
171
+ * @twin.org/crypto bumped from 0.0.3-next.22 to 0.0.3-next.23
172
+ * @twin.org/nameof bumped from 0.0.3-next.22 to 0.0.3-next.23
173
+ * devDependencies
174
+ * @twin.org/merge-locales bumped from 0.0.3-next.22 to 0.0.3-next.23
175
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.22 to 0.0.3-next.23
176
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.22 to 0.0.3-next.23
177
+ * @twin.org/validate-locales bumped from 0.0.3-next.22 to 0.0.3-next.23
178
+
179
+ ## [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)
180
+
181
+
182
+ ### Miscellaneous Chores
183
+
184
+ * **crypto-cli:** Synchronize repo versions
185
+
186
+
187
+ ### Dependencies
188
+
189
+ * The following workspace dependencies were updated
190
+ * dependencies
191
+ * @twin.org/cli-core bumped from 0.0.3-next.21 to 0.0.3-next.22
192
+ * @twin.org/core bumped from 0.0.3-next.21 to 0.0.3-next.22
193
+ * @twin.org/crypto bumped from 0.0.3-next.21 to 0.0.3-next.22
194
+ * @twin.org/nameof bumped from 0.0.3-next.21 to 0.0.3-next.22
195
+ * devDependencies
196
+ * @twin.org/merge-locales bumped from 0.0.3-next.21 to 0.0.3-next.22
197
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.21 to 0.0.3-next.22
198
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.21 to 0.0.3-next.22
199
+ * @twin.org/validate-locales bumped from 0.0.3-next.21 to 0.0.3-next.22
200
+
201
+ ## [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)
202
+
203
+
204
+ ### Features
205
+
206
+ * add context id features ([#206](https://github.com/twinfoundation/framework/issues/206)) ([ef0d4ee](https://github.com/twinfoundation/framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
207
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
208
+ * add version type ([ae50cd9](https://github.com/twinfoundation/framework/commit/ae50cd99d342ed8eeb55290a52e9fed80a2af99e))
209
+ * eslint migration to flat config ([74427d7](https://github.com/twinfoundation/framework/commit/74427d78d342167f7850e49ab87269326355befe))
210
+ * locales validation ([#197](https://github.com/twinfoundation/framework/issues/197)) ([55fdadb](https://github.com/twinfoundation/framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
211
+ * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
212
+ * remove version type ([553aa55](https://github.com/twinfoundation/framework/commit/553aa55bd79b8f930155035e522af2b0f6e3d0c8))
213
+ * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
214
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/twinfoundation/framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
215
+ * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
216
+
217
+
218
+ ### Bug Fixes
219
+
220
+ * crypto CLI address output to JSON ([0398604](https://github.com/twinfoundation/framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
221
+ * crypto CLI address output to JSON ([3397bfb](https://github.com/twinfoundation/framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
222
+ * remove bech32 from crypto-cli ([892aa5f](https://github.com/twinfoundation/framework/commit/892aa5f746a4bc806f2dada3611c03fadcfe5a7b))
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.20 to 0.0.3-next.21
230
+ * @twin.org/core bumped from 0.0.3-next.20 to 0.0.3-next.21
231
+ * @twin.org/crypto bumped from 0.0.3-next.20 to 0.0.3-next.21
232
+ * @twin.org/nameof bumped from 0.0.3-next.20 to 0.0.3-next.21
233
+ * devDependencies
234
+ * @twin.org/merge-locales bumped from 0.0.3-next.20 to 0.0.3-next.21
235
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.20 to 0.0.3-next.21
236
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.20 to 0.0.3-next.21
237
+ * @twin.org/validate-locales bumped from 0.0.3-next.20 to 0.0.3-next.21
238
+
239
+ ## [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)
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.19 to 0.0.3-next.20
252
+ * @twin.org/core bumped from 0.0.3-next.19 to 0.0.3-next.20
253
+ * @twin.org/crypto bumped from 0.0.3-next.19 to 0.0.3-next.20
254
+ * @twin.org/nameof bumped from 0.0.3-next.19 to 0.0.3-next.20
255
+ * devDependencies
256
+ * @twin.org/merge-locales bumped from 0.0.3-next.19 to 0.0.3-next.20
257
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.19 to 0.0.3-next.20
258
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.19 to 0.0.3-next.20
259
+ * @twin.org/validate-locales bumped from 0.0.3-next.19 to 0.0.3-next.20
260
+
261
+ ## [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)
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.18 to 0.0.3-next.19
274
+ * @twin.org/core bumped from 0.0.3-next.18 to 0.0.3-next.19
275
+ * @twin.org/crypto bumped from 0.0.3-next.18 to 0.0.3-next.19
276
+ * @twin.org/nameof bumped from 0.0.3-next.18 to 0.0.3-next.19
277
+ * devDependencies
278
+ * @twin.org/merge-locales bumped from 0.0.3-next.18 to 0.0.3-next.19
279
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.18 to 0.0.3-next.19
280
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.18 to 0.0.3-next.19
281
+ * @twin.org/validate-locales bumped from 0.0.3-next.18 to 0.0.3-next.19
282
+
283
+ ## [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)
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.17 to 0.0.3-next.18
296
+ * @twin.org/core bumped from 0.0.3-next.17 to 0.0.3-next.18
297
+ * @twin.org/crypto bumped from 0.0.3-next.17 to 0.0.3-next.18
298
+ * @twin.org/nameof bumped from 0.0.3-next.17 to 0.0.3-next.18
299
+ * devDependencies
300
+ * @twin.org/merge-locales bumped from 0.0.3-next.17 to 0.0.3-next.18
301
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.17 to 0.0.3-next.18
302
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.17 to 0.0.3-next.18
303
+ * @twin.org/validate-locales bumped from 0.0.3-next.17 to 0.0.3-next.18
304
+
305
+ ## [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)
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.16 to 0.0.3-next.17
318
+ * @twin.org/core bumped from 0.0.3-next.16 to 0.0.3-next.17
319
+ * @twin.org/crypto bumped from 0.0.3-next.16 to 0.0.3-next.17
320
+ * @twin.org/nameof bumped from 0.0.3-next.16 to 0.0.3-next.17
321
+ * devDependencies
322
+ * @twin.org/merge-locales bumped from 0.0.3-next.16 to 0.0.3-next.17
323
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.16 to 0.0.3-next.17
324
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.16 to 0.0.3-next.17
325
+ * @twin.org/validate-locales bumped from 0.0.3-next.16 to 0.0.3-next.17
326
+
327
+ ## [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)
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.15 to 0.0.3-next.16
340
+ * @twin.org/core bumped from 0.0.3-next.15 to 0.0.3-next.16
341
+ * @twin.org/crypto bumped from 0.0.3-next.15 to 0.0.3-next.16
342
+ * @twin.org/nameof bumped from 0.0.3-next.15 to 0.0.3-next.16
343
+ * devDependencies
344
+ * @twin.org/merge-locales bumped from 0.0.3-next.15 to 0.0.3-next.16
345
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.15 to 0.0.3-next.16
346
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.15 to 0.0.3-next.16
347
+ * @twin.org/validate-locales bumped from 0.0.3-next.15 to 0.0.3-next.16
348
+
349
+ ## [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)
350
+
351
+
352
+ ### Miscellaneous Chores
353
+
354
+ * **crypto-cli:** Synchronize repo versions
355
+
356
+
357
+ ### Dependencies
358
+
359
+ * The following workspace dependencies were updated
360
+ * dependencies
361
+ * @twin.org/cli-core bumped from 0.0.3-next.14 to 0.0.3-next.15
362
+ * @twin.org/core bumped from 0.0.3-next.14 to 0.0.3-next.15
363
+ * @twin.org/crypto bumped from 0.0.3-next.14 to 0.0.3-next.15
364
+ * @twin.org/nameof bumped from 0.0.3-next.14 to 0.0.3-next.15
365
+ * devDependencies
366
+ * @twin.org/merge-locales bumped from 0.0.3-next.14 to 0.0.3-next.15
367
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.14 to 0.0.3-next.15
368
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.14 to 0.0.3-next.15
369
+ * @twin.org/validate-locales bumped from 0.0.3-next.14 to 0.0.3-next.15
370
+
371
+ ## [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)
372
+
373
+
374
+ ### Miscellaneous Chores
375
+
376
+ * **crypto-cli:** Synchronize repo versions
377
+
378
+
379
+ ### Dependencies
380
+
381
+ * The following workspace dependencies were updated
382
+ * dependencies
383
+ * @twin.org/cli-core bumped from 0.0.3-next.13 to 0.0.3-next.14
384
+ * @twin.org/core bumped from 0.0.3-next.13 to 0.0.3-next.14
385
+ * @twin.org/crypto bumped from 0.0.3-next.13 to 0.0.3-next.14
386
+ * @twin.org/nameof bumped from 0.0.3-next.13 to 0.0.3-next.14
387
+ * devDependencies
388
+ * @twin.org/merge-locales bumped from 0.0.3-next.13 to 0.0.3-next.14
389
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.13 to 0.0.3-next.14
390
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.13 to 0.0.3-next.14
391
+ * @twin.org/validate-locales bumped from 0.0.3-next.13 to 0.0.3-next.14
392
+
393
+ ## [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)
394
+
395
+
396
+ ### Miscellaneous Chores
397
+
398
+ * **crypto-cli:** Synchronize repo versions
399
+
400
+
401
+ ### Dependencies
402
+
403
+ * The following workspace dependencies were updated
404
+ * dependencies
405
+ * @twin.org/cli-core bumped from 0.0.3-next.12 to 0.0.3-next.13
406
+ * @twin.org/core bumped from 0.0.3-next.12 to 0.0.3-next.13
407
+ * @twin.org/crypto bumped from 0.0.3-next.12 to 0.0.3-next.13
408
+ * @twin.org/nameof bumped from 0.0.3-next.12 to 0.0.3-next.13
409
+ * devDependencies
410
+ * @twin.org/merge-locales bumped from 0.0.3-next.12 to 0.0.3-next.13
411
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.12 to 0.0.3-next.13
412
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.12 to 0.0.3-next.13
413
+ * @twin.org/validate-locales bumped from 0.0.3-next.12 to 0.0.3-next.13
414
+
415
+ ## [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)
416
+
417
+
418
+ ### Miscellaneous Chores
419
+
420
+ * **crypto-cli:** Synchronize repo versions
421
+
422
+
423
+ ### Dependencies
424
+
425
+ * The following workspace dependencies were updated
426
+ * dependencies
427
+ * @twin.org/cli-core bumped from 0.0.3-next.11 to 0.0.3-next.12
428
+ * @twin.org/core bumped from 0.0.3-next.11 to 0.0.3-next.12
429
+ * @twin.org/crypto bumped from 0.0.3-next.11 to 0.0.3-next.12
430
+ * @twin.org/nameof bumped from 0.0.3-next.11 to 0.0.3-next.12
431
+ * devDependencies
432
+ * @twin.org/merge-locales bumped from 0.0.3-next.11 to 0.0.3-next.12
433
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.11 to 0.0.3-next.12
434
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.11 to 0.0.3-next.12
435
+ * @twin.org/validate-locales bumped from 0.0.3-next.11 to 0.0.3-next.12
436
+
437
+ ## [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)
438
+
439
+
440
+ ### Miscellaneous Chores
441
+
442
+ * **crypto-cli:** Synchronize repo versions
443
+
444
+
445
+ ### Dependencies
446
+
447
+ * The following workspace dependencies were updated
448
+ * dependencies
449
+ * @twin.org/cli-core bumped from 0.0.3-next.10 to 0.0.3-next.11
450
+ * @twin.org/core bumped from 0.0.3-next.10 to 0.0.3-next.11
451
+ * @twin.org/crypto bumped from 0.0.3-next.10 to 0.0.3-next.11
452
+ * @twin.org/nameof bumped from 0.0.3-next.10 to 0.0.3-next.11
453
+ * devDependencies
454
+ * @twin.org/merge-locales bumped from 0.0.3-next.10 to 0.0.3-next.11
455
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.10 to 0.0.3-next.11
456
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.10 to 0.0.3-next.11
457
+ * @twin.org/validate-locales bumped from 0.0.3-next.10 to 0.0.3-next.11
458
+
459
+ ## [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)
460
+
461
+
462
+ ### Miscellaneous Chores
463
+
464
+ * **crypto-cli:** Synchronize repo versions
465
+
466
+
467
+ ### Dependencies
468
+
469
+ * The following workspace dependencies were updated
470
+ * dependencies
471
+ * @twin.org/cli-core bumped from 0.0.3-next.9 to 0.0.3-next.10
472
+ * @twin.org/core bumped from 0.0.3-next.9 to 0.0.3-next.10
473
+ * @twin.org/crypto bumped from 0.0.3-next.9 to 0.0.3-next.10
474
+ * @twin.org/nameof bumped from 0.0.3-next.9 to 0.0.3-next.10
475
+ * devDependencies
476
+ * @twin.org/merge-locales bumped from 0.0.3-next.9 to 0.0.3-next.10
477
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.9 to 0.0.3-next.10
478
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.9 to 0.0.3-next.10
479
+ * @twin.org/validate-locales bumped from 0.0.3-next.9 to 0.0.3-next.10
480
+
481
+ ## [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)
482
+
483
+
484
+ ### Miscellaneous Chores
485
+
486
+ * **crypto-cli:** Synchronize repo versions
487
+
488
+
489
+ ### Dependencies
490
+
491
+ * The following workspace dependencies were updated
492
+ * dependencies
493
+ * @twin.org/cli-core bumped from 0.0.3-next.8 to 0.0.3-next.9
494
+ * @twin.org/core bumped from 0.0.3-next.8 to 0.0.3-next.9
495
+ * @twin.org/crypto bumped from 0.0.3-next.8 to 0.0.3-next.9
496
+ * @twin.org/nameof bumped from 0.0.3-next.8 to 0.0.3-next.9
497
+ * devDependencies
498
+ * @twin.org/merge-locales bumped from 0.0.3-next.8 to 0.0.3-next.9
499
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.8 to 0.0.3-next.9
500
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.8 to 0.0.3-next.9
501
+ * @twin.org/validate-locales bumped from 0.0.3-next.8 to 0.0.3-next.9
502
+
503
+ ## [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)
504
+
505
+
506
+ ### Miscellaneous Chores
507
+
508
+ * **crypto-cli:** Synchronize repo versions
509
+
510
+
511
+ ### Dependencies
512
+
513
+ * The following workspace dependencies were updated
514
+ * dependencies
515
+ * @twin.org/cli-core bumped from 0.0.3-next.7 to 0.0.3-next.8
516
+ * @twin.org/core bumped from 0.0.3-next.7 to 0.0.3-next.8
517
+ * @twin.org/crypto bumped from 0.0.3-next.7 to 0.0.3-next.8
518
+ * @twin.org/nameof bumped from 0.0.3-next.7 to 0.0.3-next.8
519
+ * devDependencies
520
+ * @twin.org/merge-locales bumped from 0.0.3-next.7 to 0.0.3-next.8
521
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.7 to 0.0.3-next.8
522
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.7 to 0.0.3-next.8
523
+ * @twin.org/validate-locales bumped from 0.0.3-next.7 to 0.0.3-next.8
524
+
525
+ ## [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)
526
+
527
+
528
+ ### Features
529
+
530
+ * add context id features ([#206](https://github.com/twinfoundation/framework/issues/206)) ([ef0d4ee](https://github.com/twinfoundation/framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
531
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
532
+ * add version type ([ae50cd9](https://github.com/twinfoundation/framework/commit/ae50cd99d342ed8eeb55290a52e9fed80a2af99e))
533
+ * eslint migration to flat config ([74427d7](https://github.com/twinfoundation/framework/commit/74427d78d342167f7850e49ab87269326355befe))
534
+ * locales validation ([#197](https://github.com/twinfoundation/framework/issues/197)) ([55fdadb](https://github.com/twinfoundation/framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
535
+ * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
536
+ * remove version type ([553aa55](https://github.com/twinfoundation/framework/commit/553aa55bd79b8f930155035e522af2b0f6e3d0c8))
537
+ * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
538
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/twinfoundation/framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
539
+ * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
540
+
541
+
542
+ ### Bug Fixes
543
+
544
+ * crypto CLI address output to JSON ([0398604](https://github.com/twinfoundation/framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
545
+ * crypto CLI address output to JSON ([3397bfb](https://github.com/twinfoundation/framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
546
+ * remove bech32 from crypto-cli ([892aa5f](https://github.com/twinfoundation/framework/commit/892aa5f746a4bc806f2dada3611c03fadcfe5a7b))
547
+
548
+
549
+ ### Dependencies
550
+
551
+ * The following workspace dependencies were updated
552
+ * dependencies
553
+ * @twin.org/cli-core bumped from 0.0.3-next.6 to 0.0.3-next.7
554
+ * @twin.org/core bumped from 0.0.3-next.6 to 0.0.3-next.7
555
+ * @twin.org/crypto bumped from 0.0.3-next.6 to 0.0.3-next.7
556
+ * @twin.org/nameof bumped from 0.0.3-next.6 to 0.0.3-next.7
557
+ * devDependencies
558
+ * @twin.org/merge-locales bumped from 0.0.3-next.6 to 0.0.3-next.7
559
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.6 to 0.0.3-next.7
560
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.6 to 0.0.3-next.7
561
+ * @twin.org/validate-locales bumped from 0.0.3-next.6 to 0.0.3-next.7
562
+
563
+ ## [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)
564
+
565
+
566
+ ### Miscellaneous Chores
567
+
568
+ * **crypto-cli:** Synchronize repo versions
569
+
570
+
571
+ ### Dependencies
572
+
573
+ * The following workspace dependencies were updated
574
+ * dependencies
575
+ * @twin.org/cli-core bumped from 0.0.3-next.5 to 0.0.3-next.6
576
+ * @twin.org/core bumped from 0.0.3-next.5 to 0.0.3-next.6
577
+ * @twin.org/crypto bumped from 0.0.3-next.5 to 0.0.3-next.6
578
+ * @twin.org/nameof bumped from 0.0.3-next.5 to 0.0.3-next.6
579
+ * devDependencies
580
+ * @twin.org/merge-locales bumped from 0.0.3-next.5 to 0.0.3-next.6
581
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.5 to 0.0.3-next.6
582
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.5 to 0.0.3-next.6
583
+ * @twin.org/validate-locales bumped from 0.0.3-next.5 to 0.0.3-next.6
584
+
585
+ ## [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)
586
+
587
+
588
+ ### Miscellaneous Chores
589
+
590
+ * **crypto-cli:** Synchronize repo versions
591
+
592
+
593
+ ### Dependencies
594
+
595
+ * The following workspace dependencies were updated
596
+ * dependencies
597
+ * @twin.org/cli-core bumped from 0.0.3-next.4 to 0.0.3-next.5
598
+ * @twin.org/core bumped from 0.0.3-next.4 to 0.0.3-next.5
599
+ * @twin.org/crypto bumped from 0.0.3-next.4 to 0.0.3-next.5
600
+ * @twin.org/nameof bumped from 0.0.3-next.4 to 0.0.3-next.5
601
+ * devDependencies
602
+ * @twin.org/merge-locales bumped from 0.0.3-next.4 to 0.0.3-next.5
603
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.4 to 0.0.3-next.5
604
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.4 to 0.0.3-next.5
605
+ * @twin.org/validate-locales bumped from 0.0.3-next.4 to 0.0.3-next.5
606
+
607
+ ## [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)
608
+
609
+
610
+ ### Miscellaneous Chores
611
+
612
+ * **crypto-cli:** Synchronize repo versions
613
+
614
+
615
+ ### Dependencies
616
+
617
+ * The following workspace dependencies were updated
618
+ * dependencies
619
+ * @twin.org/cli-core bumped from 0.0.3-next.3 to 0.0.3-next.4
620
+ * @twin.org/core bumped from 0.0.3-next.3 to 0.0.3-next.4
621
+ * @twin.org/crypto bumped from 0.0.3-next.3 to 0.0.3-next.4
622
+ * @twin.org/nameof bumped from 0.0.3-next.3 to 0.0.3-next.4
623
+ * devDependencies
624
+ * @twin.org/merge-locales bumped from 0.0.3-next.3 to 0.0.3-next.4
625
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.3 to 0.0.3-next.4
626
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.3 to 0.0.3-next.4
627
+ * @twin.org/validate-locales bumped from 0.0.3-next.3 to 0.0.3-next.4
2
628
 
3
629
  ## [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)
4
630
 
@@ -22,7 +22,69 @@ The main entry point for the CLI.
22
22
 
23
23
  ## Methods
24
24
 
25
- ### run()
25
+ ### execute() {#execute}
26
+
27
+ > **execute**(`options`, `localesDirectory`, `argv`): `Promise`\<`number`\>
28
+
29
+ Execute the command line processing.
30
+
31
+ #### Parameters
32
+
33
+ ##### options
34
+
35
+ `ICliOptions`
36
+
37
+ The options for the CLI.
38
+
39
+ ##### localesDirectory
40
+
41
+ `string`
42
+
43
+ The path to load the locales from.
44
+
45
+ ##### argv
46
+
47
+ `string`[]
48
+
49
+ The process arguments.
50
+
51
+ #### Returns
52
+
53
+ `Promise`\<`number`\>
54
+
55
+ The exit code.
56
+
57
+ #### Inherited from
58
+
59
+ `CLIBase.execute`
60
+
61
+ ***
62
+
63
+ ### configureRoot() {#configureroot}
64
+
65
+ > `protected` **configureRoot**(`program`): `void`
66
+
67
+ Configure any options or actions at the root program level.
68
+
69
+ #### Parameters
70
+
71
+ ##### program
72
+
73
+ `Command`
74
+
75
+ The root program command.
76
+
77
+ #### Returns
78
+
79
+ `void`
80
+
81
+ #### Inherited from
82
+
83
+ `CLIBase.configureRoot`
84
+
85
+ ***
86
+
87
+ ### run() {#run}
26
88
 
27
89
  > **run**(`argv`, `localesDirectory?`, `options?`): `Promise`\<`number`\>
28
90
 
@@ -1,4 +1,6 @@
1
- # @twin.org/crypto-cli - Examples
1
+ # Crypto CLI Usage
2
+
3
+ Use this guide to run commands, inspect options and check expected terminal output before automation.
2
4
 
3
5
  ## Running
4
6
 
@@ -33,9 +35,7 @@ Commands:
33
35
  help [command] display help for command
34
36
  ```
35
37
 
36
- ## Command
37
-
38
- ### mnemonic
38
+ ## Mnemonic Output
39
39
 
40
40
  The mnemonic command can be used to generate a new mnemonic for use in the other crypto functions.
41
41
 
@@ -78,7 +78,7 @@ Options:
78
78
  -h, --help display help for command
79
79
  ```
80
80
 
81
- #### Example
81
+ ### Example
82
82
 
83
83
  To output generate mnemonic and base64 formatted seed, store them in a JSON and env file but not display them to the console you would enter the following.
84
84
 
@@ -102,7 +102,7 @@ and the JSON file would be:
102
102
  }
103
103
  ```
104
104
 
105
- ### address
105
+ ## Address Output
106
106
 
107
107
  The address command can be used to generate addresses and key pairs based on the specified seed. The seed can be provided from the command line of read from an environment variable or .env file. By default 10 addresses will be generated starting at address index 0, for account 0.
108
108
 
@@ -209,7 +209,7 @@ Options:
209
209
  -h, --help display help for command
210
210
  ```
211
211
 
212
- #### Examples
212
+ ### Examples
213
213
 
214
214
  To read from an env file and load the variable named SEED from the file, and output only 2 addresses, outputting the keys in base64 format.
215
215
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@twin.org/crypto-cli",
3
- "version": "0.0.3-next.3",
4
- "description": "A command line interface for interacting with the crypto tools",
3
+ "version": "0.0.3-next.30",
4
+ "description": "Command line interface for interacting with the crypto tools",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/twinfoundation/framework.git",
@@ -14,11 +14,11 @@
14
14
  "node": ">=20.0.0"
15
15
  },
16
16
  "dependencies": {
17
- "@twin.org/cli-core": "0.0.3-next.3",
18
- "@twin.org/core": "0.0.3-next.3",
19
- "@twin.org/crypto": "0.0.3-next.3",
20
- "@twin.org/nameof": "0.0.3-next.3",
21
- "commander": "14.0.2"
17
+ "@twin.org/cli-core": "0.0.3-next.30",
18
+ "@twin.org/core": "0.0.3-next.30",
19
+ "@twin.org/crypto": "0.0.3-next.30",
20
+ "@twin.org/nameof": "0.0.3-next.30",
21
+ "commander": "14.0.3"
22
22
  },
23
23
  "main": "./dist/es/index.js",
24
24
  "types": "./dist/types/index.d.ts",