@twin.org/crypto-cli 0.0.3-next.31 → 0.0.3-next.32

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 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.31", // x-release-please-version
24
+ version: "0.0.3-next.32", // x-release-please-version
25
25
  icon: "🔒",
26
26
  supportsEnvFiles: true,
27
27
  overrideOutputWidth: options?.overrideOutputWidth,
@@ -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,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.31\", // 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.32\", // 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/docs/changelog.md CHANGED
@@ -1,6 +1,28 @@
1
1
  # Changelog
2
2
 
3
- ## [0.0.3-next.31](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.3-next.30...crypto-cli-v0.0.3-next.31) (2026-04-14)
3
+ ## [0.0.3-next.32](https://github.com/twinfoundation/twin-framework/compare/crypto-cli-v0.0.3-next.31...crypto-cli-v0.0.3-next.32) (2026-04-30)
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.31 to 0.0.3-next.32
16
+ * @twin.org/core bumped from 0.0.3-next.31 to 0.0.3-next.32
17
+ * @twin.org/crypto bumped from 0.0.3-next.31 to 0.0.3-next.32
18
+ * @twin.org/nameof bumped from 0.0.3-next.31 to 0.0.3-next.32
19
+ * devDependencies
20
+ * @twin.org/merge-locales bumped from 0.0.3-next.31 to 0.0.3-next.32
21
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.31 to 0.0.3-next.32
22
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.31 to 0.0.3-next.32
23
+ * @twin.org/validate-locales bumped from 0.0.3-next.31 to 0.0.3-next.32
24
+
25
+ ## [0.0.3-next.31](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.3-next.30...crypto-cli-v0.0.3-next.31) (2026-04-14)
4
26
 
5
27
 
6
28
  ### Miscellaneous Chores
@@ -22,7 +44,7 @@
22
44
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.30 to 0.0.3-next.31
23
45
  * @twin.org/validate-locales bumped from 0.0.3-next.30 to 0.0.3-next.31
24
46
 
25
- ## [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)
47
+ ## [0.0.3-next.30](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.3-next.29...crypto-cli-v0.0.3-next.30) (2026-04-14)
26
48
 
27
49
 
28
50
  ### Miscellaneous Chores
@@ -44,7 +66,7 @@
44
66
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.29 to 0.0.3-next.30
45
67
  * @twin.org/validate-locales bumped from 0.0.3-next.29 to 0.0.3-next.30
46
68
 
47
- ## [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)
69
+ ## [0.0.3-next.29](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.3-next.28...crypto-cli-v0.0.3-next.29) (2026-04-14)
48
70
 
49
71
 
50
72
  ### Miscellaneous Chores
@@ -66,7 +88,7 @@
66
88
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.28 to 0.0.3-next.29
67
89
  * @twin.org/validate-locales bumped from 0.0.3-next.28 to 0.0.3-next.29
68
90
 
69
- ## [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)
91
+ ## [0.0.3-next.28](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.3-next.27...crypto-cli-v0.0.3-next.28) (2026-03-27)
70
92
 
71
93
 
72
94
  ### Miscellaneous Chores
@@ -88,7 +110,7 @@
88
110
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.27 to 0.0.3-next.28
89
111
  * @twin.org/validate-locales bumped from 0.0.3-next.27 to 0.0.3-next.28
90
112
 
91
- ## [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)
113
+ ## [0.0.3-next.27](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.3-next.26...crypto-cli-v0.0.3-next.27) (2026-03-27)
92
114
 
93
115
 
94
116
  ### Miscellaneous Chores
@@ -110,7 +132,7 @@
110
132
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.26 to 0.0.3-next.27
111
133
  * @twin.org/validate-locales bumped from 0.0.3-next.26 to 0.0.3-next.27
112
134
 
113
- ## [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)
135
+ ## [0.0.3-next.26](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.3-next.25...crypto-cli-v0.0.3-next.26) (2026-03-24)
114
136
 
115
137
 
116
138
  ### Miscellaneous Chores
@@ -132,7 +154,7 @@
132
154
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.25 to 0.0.3-next.26
133
155
  * @twin.org/validate-locales bumped from 0.0.3-next.25 to 0.0.3-next.26
134
156
 
135
- ## [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)
157
+ ## [0.0.3-next.25](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.3-next.24...crypto-cli-v0.0.3-next.25) (2026-03-23)
136
158
 
137
159
 
138
160
  ### Miscellaneous Chores
@@ -154,12 +176,12 @@
154
176
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.24 to 0.0.3-next.25
155
177
  * @twin.org/validate-locales bumped from 0.0.3-next.24 to 0.0.3-next.25
156
178
 
157
- ## [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)
179
+ ## [0.0.3-next.24](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.3-next.23...crypto-cli-v0.0.3-next.24) (2026-03-19)
158
180
 
159
181
 
160
182
  ### Bug Fixes
161
183
 
162
- * ensure __decorate is defined for decorators ([103a563](https://github.com/twinfoundation/framework/commit/103a563ce01ebdef6240d2e590e7b026e8692684))
184
+ * ensure __decorate is defined for decorators ([103a563](https://github.com/iotaledger/twin-framework/commit/103a563ce01ebdef6240d2e590e7b026e8692684))
163
185
 
164
186
 
165
187
  ### Dependencies
@@ -176,7 +198,7 @@
176
198
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.23 to 0.0.3-next.24
177
199
  * @twin.org/validate-locales bumped from 0.0.3-next.23 to 0.0.3-next.24
178
200
 
179
- ## [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)
201
+ ## [0.0.3-next.23](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.3-next.22...crypto-cli-v0.0.3-next.23) (2026-03-17)
180
202
 
181
203
 
182
204
  ### Miscellaneous Chores
@@ -198,7 +220,7 @@
198
220
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.22 to 0.0.3-next.23
199
221
  * @twin.org/validate-locales bumped from 0.0.3-next.22 to 0.0.3-next.23
200
222
 
201
- ## [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)
223
+ ## [0.0.3-next.22](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.3-next.21...crypto-cli-v0.0.3-next.22) (2026-02-26)
202
224
 
203
225
 
204
226
  ### Miscellaneous Chores
@@ -220,28 +242,28 @@
220
242
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.21 to 0.0.3-next.22
221
243
  * @twin.org/validate-locales bumped from 0.0.3-next.21 to 0.0.3-next.22
222
244
 
223
- ## [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)
245
+ ## [0.0.3-next.21](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.3-next.20...crypto-cli-v0.0.3-next.21) (2026-02-26)
224
246
 
225
247
 
226
248
  ### Features
227
249
 
228
- * add context id features ([#206](https://github.com/twinfoundation/framework/issues/206)) ([ef0d4ee](https://github.com/twinfoundation/framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
229
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
230
- * add version type ([ae50cd9](https://github.com/twinfoundation/framework/commit/ae50cd99d342ed8eeb55290a52e9fed80a2af99e))
231
- * eslint migration to flat config ([74427d7](https://github.com/twinfoundation/framework/commit/74427d78d342167f7850e49ab87269326355befe))
232
- * locales validation ([#197](https://github.com/twinfoundation/framework/issues/197)) ([55fdadb](https://github.com/twinfoundation/framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
233
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
234
- * remove version type ([553aa55](https://github.com/twinfoundation/framework/commit/553aa55bd79b8f930155035e522af2b0f6e3d0c8))
235
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
236
- * use cause instead of inner for errors ([1f4acc4](https://github.com/twinfoundation/framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
237
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
250
+ * add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
251
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
252
+ * add version type ([ae50cd9](https://github.com/iotaledger/twin-framework/commit/ae50cd99d342ed8eeb55290a52e9fed80a2af99e))
253
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
254
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
255
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
256
+ * remove version type ([553aa55](https://github.com/iotaledger/twin-framework/commit/553aa55bd79b8f930155035e522af2b0f6e3d0c8))
257
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
258
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
259
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
238
260
 
239
261
 
240
262
  ### Bug Fixes
241
263
 
242
- * crypto CLI address output to JSON ([0398604](https://github.com/twinfoundation/framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
243
- * crypto CLI address output to JSON ([3397bfb](https://github.com/twinfoundation/framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
244
- * remove bech32 from crypto-cli ([892aa5f](https://github.com/twinfoundation/framework/commit/892aa5f746a4bc806f2dada3611c03fadcfe5a7b))
264
+ * crypto CLI address output to JSON ([0398604](https://github.com/iotaledger/twin-framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
265
+ * crypto CLI address output to JSON ([3397bfb](https://github.com/iotaledger/twin-framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
266
+ * remove bech32 from crypto-cli ([892aa5f](https://github.com/iotaledger/twin-framework/commit/892aa5f746a4bc806f2dada3611c03fadcfe5a7b))
245
267
 
246
268
 
247
269
  ### Dependencies
@@ -258,7 +280,7 @@
258
280
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.20 to 0.0.3-next.21
259
281
  * @twin.org/validate-locales bumped from 0.0.3-next.20 to 0.0.3-next.21
260
282
 
261
- ## [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)
283
+ ## [0.0.3-next.20](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.3-next.19...crypto-cli-v0.0.3-next.20) (2026-02-26)
262
284
 
263
285
 
264
286
  ### Miscellaneous Chores
@@ -280,7 +302,7 @@
280
302
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.19 to 0.0.3-next.20
281
303
  * @twin.org/validate-locales bumped from 0.0.3-next.19 to 0.0.3-next.20
282
304
 
283
- ## [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)
305
+ ## [0.0.3-next.19](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.3-next.18...crypto-cli-v0.0.3-next.19) (2026-02-26)
284
306
 
285
307
 
286
308
  ### Miscellaneous Chores
@@ -302,7 +324,7 @@
302
324
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.18 to 0.0.3-next.19
303
325
  * @twin.org/validate-locales bumped from 0.0.3-next.18 to 0.0.3-next.19
304
326
 
305
- ## [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)
327
+ ## [0.0.3-next.18](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.3-next.17...crypto-cli-v0.0.3-next.18) (2026-02-23)
306
328
 
307
329
 
308
330
  ### Miscellaneous Chores
@@ -324,7 +346,7 @@
324
346
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.17 to 0.0.3-next.18
325
347
  * @twin.org/validate-locales bumped from 0.0.3-next.17 to 0.0.3-next.18
326
348
 
327
- ## [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)
349
+ ## [0.0.3-next.17](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.3-next.16...crypto-cli-v0.0.3-next.17) (2026-02-09)
328
350
 
329
351
 
330
352
  ### Miscellaneous Chores
@@ -346,7 +368,7 @@
346
368
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.16 to 0.0.3-next.17
347
369
  * @twin.org/validate-locales bumped from 0.0.3-next.16 to 0.0.3-next.17
348
370
 
349
- ## [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)
371
+ ## [0.0.3-next.16](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.3-next.15...crypto-cli-v0.0.3-next.16) (2026-02-06)
350
372
 
351
373
 
352
374
  ### Miscellaneous Chores
@@ -368,7 +390,7 @@
368
390
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.15 to 0.0.3-next.16
369
391
  * @twin.org/validate-locales bumped from 0.0.3-next.15 to 0.0.3-next.16
370
392
 
371
- ## [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)
393
+ ## [0.0.3-next.15](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.3-next.14...crypto-cli-v0.0.3-next.15) (2026-01-29)
372
394
 
373
395
 
374
396
  ### Miscellaneous Chores
@@ -390,7 +412,7 @@
390
412
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.14 to 0.0.3-next.15
391
413
  * @twin.org/validate-locales bumped from 0.0.3-next.14 to 0.0.3-next.15
392
414
 
393
- ## [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)
415
+ ## [0.0.3-next.14](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.3-next.13...crypto-cli-v0.0.3-next.14) (2026-01-22)
394
416
 
395
417
 
396
418
  ### Miscellaneous Chores
@@ -412,7 +434,7 @@
412
434
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.13 to 0.0.3-next.14
413
435
  * @twin.org/validate-locales bumped from 0.0.3-next.13 to 0.0.3-next.14
414
436
 
415
- ## [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)
437
+ ## [0.0.3-next.13](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.3-next.12...crypto-cli-v0.0.3-next.13) (2026-01-08)
416
438
 
417
439
 
418
440
  ### Miscellaneous Chores
@@ -434,7 +456,7 @@
434
456
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.12 to 0.0.3-next.13
435
457
  * @twin.org/validate-locales bumped from 0.0.3-next.12 to 0.0.3-next.13
436
458
 
437
- ## [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)
459
+ ## [0.0.3-next.12](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.3-next.11...crypto-cli-v0.0.3-next.12) (2026-01-08)
438
460
 
439
461
 
440
462
  ### Miscellaneous Chores
@@ -456,7 +478,7 @@
456
478
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.11 to 0.0.3-next.12
457
479
  * @twin.org/validate-locales bumped from 0.0.3-next.11 to 0.0.3-next.12
458
480
 
459
- ## [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)
481
+ ## [0.0.3-next.11](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.3-next.10...crypto-cli-v0.0.3-next.11) (2026-01-07)
460
482
 
461
483
 
462
484
  ### Miscellaneous Chores
@@ -478,7 +500,7 @@
478
500
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.10 to 0.0.3-next.11
479
501
  * @twin.org/validate-locales bumped from 0.0.3-next.10 to 0.0.3-next.11
480
502
 
481
- ## [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)
503
+ ## [0.0.3-next.10](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.3-next.9...crypto-cli-v0.0.3-next.10) (2026-01-07)
482
504
 
483
505
 
484
506
  ### Miscellaneous Chores
@@ -500,7 +522,7 @@
500
522
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.9 to 0.0.3-next.10
501
523
  * @twin.org/validate-locales bumped from 0.0.3-next.9 to 0.0.3-next.10
502
524
 
503
- ## [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)
525
+ ## [0.0.3-next.9](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.3-next.8...crypto-cli-v0.0.3-next.9) (2026-01-05)
504
526
 
505
527
 
506
528
  ### Miscellaneous Chores
@@ -522,7 +544,7 @@
522
544
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.8 to 0.0.3-next.9
523
545
  * @twin.org/validate-locales bumped from 0.0.3-next.8 to 0.0.3-next.9
524
546
 
525
- ## [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)
547
+ ## [0.0.3-next.8](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.3-next.7...crypto-cli-v0.0.3-next.8) (2025-11-26)
526
548
 
527
549
 
528
550
  ### Miscellaneous Chores
@@ -544,28 +566,28 @@
544
566
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.7 to 0.0.3-next.8
545
567
  * @twin.org/validate-locales bumped from 0.0.3-next.7 to 0.0.3-next.8
546
568
 
547
- ## [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)
569
+ ## [0.0.3-next.7](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.3-next.6...crypto-cli-v0.0.3-next.7) (2025-11-25)
548
570
 
549
571
 
550
572
  ### Features
551
573
 
552
- * add context id features ([#206](https://github.com/twinfoundation/framework/issues/206)) ([ef0d4ee](https://github.com/twinfoundation/framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
553
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
554
- * add version type ([ae50cd9](https://github.com/twinfoundation/framework/commit/ae50cd99d342ed8eeb55290a52e9fed80a2af99e))
555
- * eslint migration to flat config ([74427d7](https://github.com/twinfoundation/framework/commit/74427d78d342167f7850e49ab87269326355befe))
556
- * locales validation ([#197](https://github.com/twinfoundation/framework/issues/197)) ([55fdadb](https://github.com/twinfoundation/framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
557
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
558
- * remove version type ([553aa55](https://github.com/twinfoundation/framework/commit/553aa55bd79b8f930155035e522af2b0f6e3d0c8))
559
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
560
- * use cause instead of inner for errors ([1f4acc4](https://github.com/twinfoundation/framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
561
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
574
+ * add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
575
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
576
+ * add version type ([ae50cd9](https://github.com/iotaledger/twin-framework/commit/ae50cd99d342ed8eeb55290a52e9fed80a2af99e))
577
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
578
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
579
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
580
+ * remove version type ([553aa55](https://github.com/iotaledger/twin-framework/commit/553aa55bd79b8f930155035e522af2b0f6e3d0c8))
581
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
582
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
583
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
562
584
 
563
585
 
564
586
  ### Bug Fixes
565
587
 
566
- * crypto CLI address output to JSON ([0398604](https://github.com/twinfoundation/framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
567
- * crypto CLI address output to JSON ([3397bfb](https://github.com/twinfoundation/framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
568
- * remove bech32 from crypto-cli ([892aa5f](https://github.com/twinfoundation/framework/commit/892aa5f746a4bc806f2dada3611c03fadcfe5a7b))
588
+ * crypto CLI address output to JSON ([0398604](https://github.com/iotaledger/twin-framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
589
+ * crypto CLI address output to JSON ([3397bfb](https://github.com/iotaledger/twin-framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
590
+ * remove bech32 from crypto-cli ([892aa5f](https://github.com/iotaledger/twin-framework/commit/892aa5f746a4bc806f2dada3611c03fadcfe5a7b))
569
591
 
570
592
 
571
593
  ### Dependencies
@@ -582,7 +604,7 @@
582
604
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.6 to 0.0.3-next.7
583
605
  * @twin.org/validate-locales bumped from 0.0.3-next.6 to 0.0.3-next.7
584
606
 
585
- ## [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)
607
+ ## [0.0.3-next.6](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.3-next.5...crypto-cli-v0.0.3-next.6) (2025-11-25)
586
608
 
587
609
 
588
610
  ### Miscellaneous Chores
@@ -604,7 +626,7 @@
604
626
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.5 to 0.0.3-next.6
605
627
  * @twin.org/validate-locales bumped from 0.0.3-next.5 to 0.0.3-next.6
606
628
 
607
- ## [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)
629
+ ## [0.0.3-next.5](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.3-next.4...crypto-cli-v0.0.3-next.5) (2025-11-20)
608
630
 
609
631
 
610
632
  ### Miscellaneous Chores
@@ -626,7 +648,7 @@
626
648
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.4 to 0.0.3-next.5
627
649
  * @twin.org/validate-locales bumped from 0.0.3-next.4 to 0.0.3-next.5
628
650
 
629
- ## [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)
651
+ ## [0.0.3-next.4](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.3-next.3...crypto-cli-v0.0.3-next.4) (2025-11-13)
630
652
 
631
653
 
632
654
  ### Miscellaneous Chores
@@ -648,7 +670,7 @@
648
670
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.3 to 0.0.3-next.4
649
671
  * @twin.org/validate-locales bumped from 0.0.3-next.3 to 0.0.3-next.4
650
672
 
651
- ## [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)
673
+ ## [0.0.3-next.3](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.3-next.2...crypto-cli-v0.0.3-next.3) (2025-11-12)
652
674
 
653
675
 
654
676
  ### Miscellaneous Chores
@@ -670,7 +692,7 @@
670
692
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.2 to 0.0.3-next.3
671
693
  * @twin.org/validate-locales bumped from 0.0.3-next.2 to 0.0.3-next.3
672
694
 
673
- ## [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)
695
+ ## [0.0.3-next.2](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.3-next.1...crypto-cli-v0.0.3-next.2) (2025-11-12)
674
696
 
675
697
 
676
698
  ### Miscellaneous Chores
@@ -692,28 +714,28 @@
692
714
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.1 to 0.0.3-next.2
693
715
  * @twin.org/validate-locales bumped from 0.0.3-next.1 to 0.0.3-next.2
694
716
 
695
- ## [0.0.3-next.1](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.3-next.0...crypto-cli-v0.0.3-next.1) (2025-11-10)
717
+ ## [0.0.3-next.1](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.3-next.0...crypto-cli-v0.0.3-next.1) (2025-11-10)
696
718
 
697
719
 
698
720
  ### Features
699
721
 
700
- * add context id features ([#206](https://github.com/twinfoundation/framework/issues/206)) ([ef0d4ee](https://github.com/twinfoundation/framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
701
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
702
- * add version type ([ae50cd9](https://github.com/twinfoundation/framework/commit/ae50cd99d342ed8eeb55290a52e9fed80a2af99e))
703
- * eslint migration to flat config ([74427d7](https://github.com/twinfoundation/framework/commit/74427d78d342167f7850e49ab87269326355befe))
704
- * locales validation ([#197](https://github.com/twinfoundation/framework/issues/197)) ([55fdadb](https://github.com/twinfoundation/framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
705
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
706
- * remove version type ([553aa55](https://github.com/twinfoundation/framework/commit/553aa55bd79b8f930155035e522af2b0f6e3d0c8))
707
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
708
- * use cause instead of inner for errors ([1f4acc4](https://github.com/twinfoundation/framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
709
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
722
+ * add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
723
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
724
+ * add version type ([ae50cd9](https://github.com/iotaledger/twin-framework/commit/ae50cd99d342ed8eeb55290a52e9fed80a2af99e))
725
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
726
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
727
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
728
+ * remove version type ([553aa55](https://github.com/iotaledger/twin-framework/commit/553aa55bd79b8f930155035e522af2b0f6e3d0c8))
729
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
730
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
731
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
710
732
 
711
733
 
712
734
  ### Bug Fixes
713
735
 
714
- * crypto CLI address output to JSON ([0398604](https://github.com/twinfoundation/framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
715
- * crypto CLI address output to JSON ([3397bfb](https://github.com/twinfoundation/framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
716
- * remove bech32 from crypto-cli ([892aa5f](https://github.com/twinfoundation/framework/commit/892aa5f746a4bc806f2dada3611c03fadcfe5a7b))
736
+ * crypto CLI address output to JSON ([0398604](https://github.com/iotaledger/twin-framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
737
+ * crypto CLI address output to JSON ([3397bfb](https://github.com/iotaledger/twin-framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
738
+ * remove bech32 from crypto-cli ([892aa5f](https://github.com/iotaledger/twin-framework/commit/892aa5f746a4bc806f2dada3611c03fadcfe5a7b))
717
739
 
718
740
 
719
741
  ### Dependencies
@@ -730,7 +752,7 @@
730
752
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.0 to 0.0.3-next.1
731
753
  * @twin.org/validate-locales bumped from 0.0.3-next.0 to 0.0.3-next.1
732
754
 
733
- ## [0.0.2-next.22](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.21...crypto-cli-v0.0.2-next.22) (2025-10-10)
755
+ ## [0.0.2-next.22](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.2-next.21...crypto-cli-v0.0.2-next.22) (2025-10-10)
734
756
 
735
757
 
736
758
  ### Miscellaneous Chores
@@ -752,12 +774,12 @@
752
774
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.21 to 0.0.2-next.22
753
775
  * @twin.org/validate-locales bumped from 0.0.2-next.21 to 0.0.2-next.22
754
776
 
755
- ## [0.0.2-next.21](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.20...crypto-cli-v0.0.2-next.21) (2025-10-09)
777
+ ## [0.0.2-next.21](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.2-next.20...crypto-cli-v0.0.2-next.21) (2025-10-09)
756
778
 
757
779
 
758
780
  ### Features
759
781
 
760
- * locales validation ([#197](https://github.com/twinfoundation/framework/issues/197)) ([55fdadb](https://github.com/twinfoundation/framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
782
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
761
783
 
762
784
 
763
785
  ### Dependencies
@@ -774,7 +796,7 @@
774
796
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.20 to 0.0.2-next.21
775
797
  * @twin.org/validate-locales bumped from 0.0.2-next.20 to 0.0.2-next.21
776
798
 
777
- ## [0.0.2-next.20](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.19...crypto-cli-v0.0.2-next.20) (2025-10-02)
799
+ ## [0.0.2-next.20](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.2-next.19...crypto-cli-v0.0.2-next.20) (2025-10-02)
778
800
 
779
801
 
780
802
  ### Miscellaneous Chores
@@ -795,7 +817,7 @@
795
817
  * @twin.org/nameof-transformer bumped from 0.0.2-next.19 to 0.0.2-next.20
796
818
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.19 to 0.0.2-next.20
797
819
 
798
- ## [0.0.2-next.19](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.18...crypto-cli-v0.0.2-next.19) (2025-09-30)
820
+ ## [0.0.2-next.19](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.2-next.18...crypto-cli-v0.0.2-next.19) (2025-09-30)
799
821
 
800
822
 
801
823
  ### Miscellaneous Chores
@@ -816,7 +838,7 @@
816
838
  * @twin.org/nameof-transformer bumped from 0.0.2-next.18 to 0.0.2-next.19
817
839
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.18 to 0.0.2-next.19
818
840
 
819
- ## [0.0.2-next.18](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.17...crypto-cli-v0.0.2-next.18) (2025-09-29)
841
+ ## [0.0.2-next.18](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.2-next.17...crypto-cli-v0.0.2-next.18) (2025-09-29)
820
842
 
821
843
 
822
844
  ### Miscellaneous Chores
@@ -837,7 +859,7 @@
837
859
  * @twin.org/nameof-transformer bumped from 0.0.2-next.17 to 0.0.2-next.18
838
860
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.17 to 0.0.2-next.18
839
861
 
840
- ## [0.0.2-next.17](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.16...crypto-cli-v0.0.2-next.17) (2025-09-29)
862
+ ## [0.0.2-next.17](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.2-next.16...crypto-cli-v0.0.2-next.17) (2025-09-29)
841
863
 
842
864
 
843
865
  ### Miscellaneous Chores
@@ -858,7 +880,7 @@
858
880
  * @twin.org/nameof-transformer bumped from 0.0.2-next.16 to 0.0.2-next.17
859
881
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.16 to 0.0.2-next.17
860
882
 
861
- ## [0.0.2-next.16](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.15...crypto-cli-v0.0.2-next.16) (2025-09-28)
883
+ ## [0.0.2-next.16](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.2-next.15...crypto-cli-v0.0.2-next.16) (2025-09-28)
862
884
 
863
885
 
864
886
  ### Miscellaneous Chores
@@ -879,7 +901,7 @@
879
901
  * @twin.org/nameof-transformer bumped from 0.0.2-next.15 to 0.0.2-next.16
880
902
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.15 to 0.0.2-next.16
881
903
 
882
- ## [0.0.2-next.15](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.14...crypto-cli-v0.0.2-next.15) (2025-09-22)
904
+ ## [0.0.2-next.15](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.2-next.14...crypto-cli-v0.0.2-next.15) (2025-09-22)
883
905
 
884
906
 
885
907
  ### Miscellaneous Chores
@@ -900,7 +922,7 @@
900
922
  * @twin.org/nameof-transformer bumped from 0.0.2-next.14 to 0.0.2-next.15
901
923
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.14 to 0.0.2-next.15
902
924
 
903
- ## [0.0.2-next.14](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.13...crypto-cli-v0.0.2-next.14) (2025-09-22)
925
+ ## [0.0.2-next.14](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.2-next.13...crypto-cli-v0.0.2-next.14) (2025-09-22)
904
926
 
905
927
 
906
928
  ### Miscellaneous Chores
@@ -921,7 +943,7 @@
921
943
  * @twin.org/nameof-transformer bumped from 0.0.2-next.13 to 0.0.2-next.14
922
944
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.13 to 0.0.2-next.14
923
945
 
924
- ## [0.0.2-next.13](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.12...crypto-cli-v0.0.2-next.13) (2025-09-22)
946
+ ## [0.0.2-next.13](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.2-next.12...crypto-cli-v0.0.2-next.13) (2025-09-22)
925
947
 
926
948
 
927
949
  ### Miscellaneous Chores
@@ -942,7 +964,7 @@
942
964
  * @twin.org/nameof-transformer bumped from 0.0.2-next.12 to 0.0.2-next.13
943
965
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.12 to 0.0.2-next.13
944
966
 
945
- ## [0.0.2-next.12](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.11...crypto-cli-v0.0.2-next.12) (2025-09-15)
967
+ ## [0.0.2-next.12](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.2-next.11...crypto-cli-v0.0.2-next.12) (2025-09-15)
946
968
 
947
969
 
948
970
  ### Miscellaneous Chores
@@ -963,7 +985,7 @@
963
985
  * @twin.org/nameof-transformer bumped from 0.0.2-next.11 to 0.0.2-next.12
964
986
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.11 to 0.0.2-next.12
965
987
 
966
- ## [0.0.2-next.11](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.10...crypto-cli-v0.0.2-next.11) (2025-09-15)
988
+ ## [0.0.2-next.11](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.2-next.10...crypto-cli-v0.0.2-next.11) (2025-09-15)
967
989
 
968
990
 
969
991
  ### Miscellaneous Chores
@@ -984,7 +1006,7 @@
984
1006
  * @twin.org/nameof-transformer bumped from 0.0.2-next.10 to 0.0.2-next.11
985
1007
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.10 to 0.0.2-next.11
986
1008
 
987
- ## [0.0.2-next.10](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.9...crypto-cli-v0.0.2-next.10) (2025-09-11)
1009
+ ## [0.0.2-next.10](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.2-next.9...crypto-cli-v0.0.2-next.10) (2025-09-11)
988
1010
 
989
1011
 
990
1012
  ### Miscellaneous Chores
@@ -1005,7 +1027,7 @@
1005
1027
  * @twin.org/nameof-transformer bumped from 0.0.2-next.9 to 0.0.2-next.10
1006
1028
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.9 to 0.0.2-next.10
1007
1029
 
1008
- ## [0.0.2-next.9](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.8...crypto-cli-v0.0.2-next.9) (2025-09-08)
1030
+ ## [0.0.2-next.9](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.2-next.8...crypto-cli-v0.0.2-next.9) (2025-09-08)
1009
1031
 
1010
1032
 
1011
1033
  ### Miscellaneous Chores
@@ -1026,7 +1048,7 @@
1026
1048
  * @twin.org/nameof-transformer bumped from 0.0.2-next.8 to 0.0.2-next.9
1027
1049
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.8 to 0.0.2-next.9
1028
1050
 
1029
- ## [0.0.2-next.8](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.7...crypto-cli-v0.0.2-next.8) (2025-09-05)
1051
+ ## [0.0.2-next.8](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.2-next.7...crypto-cli-v0.0.2-next.8) (2025-09-05)
1030
1052
 
1031
1053
 
1032
1054
  ### Miscellaneous Chores
@@ -1047,12 +1069,12 @@
1047
1069
  * @twin.org/nameof-transformer bumped from 0.0.2-next.7 to 0.0.2-next.8
1048
1070
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.7 to 0.0.2-next.8
1049
1071
 
1050
- ## [0.0.2-next.7](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.6...crypto-cli-v0.0.2-next.7) (2025-08-29)
1072
+ ## [0.0.2-next.7](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.2-next.6...crypto-cli-v0.0.2-next.7) (2025-08-29)
1051
1073
 
1052
1074
 
1053
1075
  ### Features
1054
1076
 
1055
- * eslint migration to flat config ([74427d7](https://github.com/twinfoundation/framework/commit/74427d78d342167f7850e49ab87269326355befe))
1077
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
1056
1078
 
1057
1079
 
1058
1080
  ### Dependencies
@@ -1068,7 +1090,7 @@
1068
1090
  * @twin.org/nameof-transformer bumped from 0.0.2-next.6 to 0.0.2-next.7
1069
1091
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.6 to 0.0.2-next.7
1070
1092
 
1071
- ## [0.0.2-next.6](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.5...crypto-cli-v0.0.2-next.6) (2025-08-27)
1093
+ ## [0.0.2-next.6](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.2-next.5...crypto-cli-v0.0.2-next.6) (2025-08-27)
1072
1094
 
1073
1095
 
1074
1096
  ### Miscellaneous Chores
@@ -1089,12 +1111,12 @@
1089
1111
  * @twin.org/nameof-transformer bumped from 0.0.2-next.5 to 0.0.2-next.6
1090
1112
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.5 to 0.0.2-next.6
1091
1113
 
1092
- ## [0.0.2-next.5](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.4...crypto-cli-v0.0.2-next.5) (2025-08-19)
1114
+ ## [0.0.2-next.5](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.2-next.4...crypto-cli-v0.0.2-next.5) (2025-08-19)
1093
1115
 
1094
1116
 
1095
1117
  ### Features
1096
1118
 
1097
- * use cause instead of inner for errors ([1f4acc4](https://github.com/twinfoundation/framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
1119
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
1098
1120
 
1099
1121
 
1100
1122
  ### Dependencies
@@ -1110,7 +1132,7 @@
1110
1132
  * @twin.org/nameof-transformer bumped from 0.0.2-next.4 to 0.0.2-next.5
1111
1133
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.4 to 0.0.2-next.5
1112
1134
 
1113
- ## [0.0.2-next.4](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.3...crypto-cli-v0.0.2-next.4) (2025-08-15)
1135
+ ## [0.0.2-next.4](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.2-next.3...crypto-cli-v0.0.2-next.4) (2025-08-15)
1114
1136
 
1115
1137
 
1116
1138
  ### Miscellaneous Chores
@@ -1131,24 +1153,24 @@
1131
1153
  * @twin.org/nameof-transformer bumped from 0.0.2-next.3 to 0.0.2-next.4
1132
1154
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.3 to 0.0.2-next.4
1133
1155
 
1134
- ## [0.0.2-next.3](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.2...crypto-cli-v0.0.2-next.3) (2025-08-06)
1156
+ ## [0.0.2-next.3](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.2-next.2...crypto-cli-v0.0.2-next.3) (2025-08-06)
1135
1157
 
1136
1158
 
1137
1159
  ### Features
1138
1160
 
1139
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1140
- * add version type ([ae50cd9](https://github.com/twinfoundation/framework/commit/ae50cd99d342ed8eeb55290a52e9fed80a2af99e))
1141
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1142
- * remove version type ([553aa55](https://github.com/twinfoundation/framework/commit/553aa55bd79b8f930155035e522af2b0f6e3d0c8))
1143
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
1144
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1161
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1162
+ * add version type ([ae50cd9](https://github.com/iotaledger/twin-framework/commit/ae50cd99d342ed8eeb55290a52e9fed80a2af99e))
1163
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1164
+ * remove version type ([553aa55](https://github.com/iotaledger/twin-framework/commit/553aa55bd79b8f930155035e522af2b0f6e3d0c8))
1165
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
1166
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1145
1167
 
1146
1168
 
1147
1169
  ### Bug Fixes
1148
1170
 
1149
- * crypto CLI address output to JSON ([0398604](https://github.com/twinfoundation/framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
1150
- * crypto CLI address output to JSON ([3397bfb](https://github.com/twinfoundation/framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
1151
- * remove bech32 from crypto-cli ([892aa5f](https://github.com/twinfoundation/framework/commit/892aa5f746a4bc806f2dada3611c03fadcfe5a7b))
1171
+ * crypto CLI address output to JSON ([0398604](https://github.com/iotaledger/twin-framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
1172
+ * crypto CLI address output to JSON ([3397bfb](https://github.com/iotaledger/twin-framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
1173
+ * remove bech32 from crypto-cli ([892aa5f](https://github.com/iotaledger/twin-framework/commit/892aa5f746a4bc806f2dada3611c03fadcfe5a7b))
1152
1174
 
1153
1175
 
1154
1176
  ### Dependencies
@@ -1164,24 +1186,24 @@
1164
1186
  * @twin.org/nameof-transformer bumped from 0.0.2-next.2 to 0.0.2-next.3
1165
1187
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.2 to 0.0.2-next.3
1166
1188
 
1167
- ## [0.0.2-next.2](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.1...crypto-cli-v0.0.2-next.2) (2025-08-06)
1189
+ ## [0.0.2-next.2](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.2-next.1...crypto-cli-v0.0.2-next.2) (2025-08-06)
1168
1190
 
1169
1191
 
1170
1192
  ### Features
1171
1193
 
1172
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1173
- * add version type ([ae50cd9](https://github.com/twinfoundation/framework/commit/ae50cd99d342ed8eeb55290a52e9fed80a2af99e))
1174
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1175
- * remove version type ([553aa55](https://github.com/twinfoundation/framework/commit/553aa55bd79b8f930155035e522af2b0f6e3d0c8))
1176
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
1177
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1194
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1195
+ * add version type ([ae50cd9](https://github.com/iotaledger/twin-framework/commit/ae50cd99d342ed8eeb55290a52e9fed80a2af99e))
1196
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1197
+ * remove version type ([553aa55](https://github.com/iotaledger/twin-framework/commit/553aa55bd79b8f930155035e522af2b0f6e3d0c8))
1198
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
1199
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1178
1200
 
1179
1201
 
1180
1202
  ### Bug Fixes
1181
1203
 
1182
- * crypto CLI address output to JSON ([0398604](https://github.com/twinfoundation/framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
1183
- * crypto CLI address output to JSON ([3397bfb](https://github.com/twinfoundation/framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
1184
- * remove bech32 from crypto-cli ([892aa5f](https://github.com/twinfoundation/framework/commit/892aa5f746a4bc806f2dada3611c03fadcfe5a7b))
1204
+ * crypto CLI address output to JSON ([0398604](https://github.com/iotaledger/twin-framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
1205
+ * crypto CLI address output to JSON ([3397bfb](https://github.com/iotaledger/twin-framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
1206
+ * remove bech32 from crypto-cli ([892aa5f](https://github.com/iotaledger/twin-framework/commit/892aa5f746a4bc806f2dada3611c03fadcfe5a7b))
1185
1207
 
1186
1208
 
1187
1209
  ### Dependencies
@@ -1197,24 +1219,24 @@
1197
1219
  * @twin.org/nameof-transformer bumped from 0.0.2-next.1 to 0.0.2-next.2
1198
1220
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.1 to 0.0.2-next.2
1199
1221
 
1200
- ## [0.0.2-next.1](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.2-next.0...crypto-cli-v0.0.2-next.1) (2025-08-06)
1222
+ ## [0.0.2-next.1](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.2-next.0...crypto-cli-v0.0.2-next.1) (2025-08-06)
1201
1223
 
1202
1224
 
1203
1225
  ### Features
1204
1226
 
1205
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1206
- * add version type ([ae50cd9](https://github.com/twinfoundation/framework/commit/ae50cd99d342ed8eeb55290a52e9fed80a2af99e))
1207
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1208
- * remove version type ([553aa55](https://github.com/twinfoundation/framework/commit/553aa55bd79b8f930155035e522af2b0f6e3d0c8))
1209
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
1210
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1227
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1228
+ * add version type ([ae50cd9](https://github.com/iotaledger/twin-framework/commit/ae50cd99d342ed8eeb55290a52e9fed80a2af99e))
1229
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1230
+ * remove version type ([553aa55](https://github.com/iotaledger/twin-framework/commit/553aa55bd79b8f930155035e522af2b0f6e3d0c8))
1231
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
1232
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1211
1233
 
1212
1234
 
1213
1235
  ### Bug Fixes
1214
1236
 
1215
- * crypto CLI address output to JSON ([0398604](https://github.com/twinfoundation/framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
1216
- * crypto CLI address output to JSON ([3397bfb](https://github.com/twinfoundation/framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
1217
- * remove bech32 from crypto-cli ([892aa5f](https://github.com/twinfoundation/framework/commit/892aa5f746a4bc806f2dada3611c03fadcfe5a7b))
1237
+ * crypto CLI address output to JSON ([0398604](https://github.com/iotaledger/twin-framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
1238
+ * crypto CLI address output to JSON ([3397bfb](https://github.com/iotaledger/twin-framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
1239
+ * remove bech32 from crypto-cli ([892aa5f](https://github.com/iotaledger/twin-framework/commit/892aa5f746a4bc806f2dada3611c03fadcfe5a7b))
1218
1240
 
1219
1241
 
1220
1242
  ### Dependencies
@@ -1235,8 +1257,8 @@
1235
1257
 
1236
1258
  ### Features
1237
1259
 
1238
- * release to production ([829d53d](https://github.com/twinfoundation/framework/commit/829d53d3953b1e1b40b0243c04cfdfd3842aac7b))
1239
- * release to production ([5cf3a76](https://github.com/twinfoundation/framework/commit/5cf3a76a09eff2e6414d0cba846c7c37400a11d6))
1260
+ * release to production ([829d53d](https://github.com/iotaledger/twin-framework/commit/829d53d3953b1e1b40b0243c04cfdfd3842aac7b))
1261
+ * release to production ([5cf3a76](https://github.com/iotaledger/twin-framework/commit/5cf3a76a09eff2e6414d0cba846c7c37400a11d6))
1240
1262
 
1241
1263
 
1242
1264
  ### Dependencies
@@ -1252,23 +1274,23 @@
1252
1274
  * @twin.org/nameof-transformer bumped from ^0.0.0 to ^0.0.1
1253
1275
  * @twin.org/nameof-vitest-plugin bumped from ^0.0.0 to ^0.0.1
1254
1276
 
1255
- ## [0.0.1-next.70](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.1-next.69...crypto-cli-v0.0.1-next.70) (2025-07-02)
1277
+ ## [0.0.1-next.70](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.1-next.69...crypto-cli-v0.0.1-next.70) (2025-07-02)
1256
1278
 
1257
1279
 
1258
1280
  ### Features
1259
1281
 
1260
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1261
- * add version type ([ae50cd9](https://github.com/twinfoundation/framework/commit/ae50cd99d342ed8eeb55290a52e9fed80a2af99e))
1262
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1263
- * remove version type ([553aa55](https://github.com/twinfoundation/framework/commit/553aa55bd79b8f930155035e522af2b0f6e3d0c8))
1264
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1282
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1283
+ * add version type ([ae50cd9](https://github.com/iotaledger/twin-framework/commit/ae50cd99d342ed8eeb55290a52e9fed80a2af99e))
1284
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1285
+ * remove version type ([553aa55](https://github.com/iotaledger/twin-framework/commit/553aa55bd79b8f930155035e522af2b0f6e3d0c8))
1286
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1265
1287
 
1266
1288
 
1267
1289
  ### Bug Fixes
1268
1290
 
1269
- * crypto CLI address output to JSON ([0398604](https://github.com/twinfoundation/framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
1270
- * crypto CLI address output to JSON ([3397bfb](https://github.com/twinfoundation/framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
1271
- * remove bech32 from crypto-cli ([892aa5f](https://github.com/twinfoundation/framework/commit/892aa5f746a4bc806f2dada3611c03fadcfe5a7b))
1291
+ * crypto CLI address output to JSON ([0398604](https://github.com/iotaledger/twin-framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
1292
+ * crypto CLI address output to JSON ([3397bfb](https://github.com/iotaledger/twin-framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
1293
+ * remove bech32 from crypto-cli ([892aa5f](https://github.com/iotaledger/twin-framework/commit/892aa5f746a4bc806f2dada3611c03fadcfe5a7b))
1272
1294
 
1273
1295
 
1274
1296
  ### Dependencies
@@ -1284,23 +1306,23 @@
1284
1306
  * @twin.org/nameof-transformer bumped from 0.0.1-next.69 to 0.0.1-next.70
1285
1307
  * @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.69 to 0.0.1-next.70
1286
1308
 
1287
- ## [0.0.1-next.69](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.1-next.68...crypto-cli-v0.0.1-next.69) (2025-07-02)
1309
+ ## [0.0.1-next.69](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.1-next.68...crypto-cli-v0.0.1-next.69) (2025-07-02)
1288
1310
 
1289
1311
 
1290
1312
  ### Features
1291
1313
 
1292
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1293
- * add version type ([ae50cd9](https://github.com/twinfoundation/framework/commit/ae50cd99d342ed8eeb55290a52e9fed80a2af99e))
1294
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1295
- * remove version type ([553aa55](https://github.com/twinfoundation/framework/commit/553aa55bd79b8f930155035e522af2b0f6e3d0c8))
1296
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1314
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1315
+ * add version type ([ae50cd9](https://github.com/iotaledger/twin-framework/commit/ae50cd99d342ed8eeb55290a52e9fed80a2af99e))
1316
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1317
+ * remove version type ([553aa55](https://github.com/iotaledger/twin-framework/commit/553aa55bd79b8f930155035e522af2b0f6e3d0c8))
1318
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1297
1319
 
1298
1320
 
1299
1321
  ### Bug Fixes
1300
1322
 
1301
- * crypto CLI address output to JSON ([0398604](https://github.com/twinfoundation/framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
1302
- * crypto CLI address output to JSON ([3397bfb](https://github.com/twinfoundation/framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
1303
- * remove bech32 from crypto-cli ([892aa5f](https://github.com/twinfoundation/framework/commit/892aa5f746a4bc806f2dada3611c03fadcfe5a7b))
1323
+ * crypto CLI address output to JSON ([0398604](https://github.com/iotaledger/twin-framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
1324
+ * crypto CLI address output to JSON ([3397bfb](https://github.com/iotaledger/twin-framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
1325
+ * remove bech32 from crypto-cli ([892aa5f](https://github.com/iotaledger/twin-framework/commit/892aa5f746a4bc806f2dada3611c03fadcfe5a7b))
1304
1326
 
1305
1327
 
1306
1328
  ### Dependencies
@@ -1316,12 +1338,12 @@
1316
1338
  * @twin.org/nameof-transformer bumped from 0.0.1-next.68 to 0.0.1-next.69
1317
1339
  * @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.68 to 0.0.1-next.69
1318
1340
 
1319
- ## [0.0.1-next.68](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.1-next.67...crypto-cli-v0.0.1-next.68) (2025-07-02)
1341
+ ## [0.0.1-next.68](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.1-next.67...crypto-cli-v0.0.1-next.68) (2025-07-02)
1320
1342
 
1321
1343
 
1322
1344
  ### Features
1323
1345
 
1324
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1346
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1325
1347
 
1326
1348
 
1327
1349
  ### Dependencies
@@ -1337,12 +1359,12 @@
1337
1359
  * @twin.org/nameof-transformer bumped from 0.0.1-next.67 to 0.0.1-next.68
1338
1360
  * @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.67 to 0.0.1-next.68
1339
1361
 
1340
- ## [0.0.1-next.67](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.1-next.66...crypto-cli-v0.0.1-next.67) (2025-06-26)
1362
+ ## [0.0.1-next.67](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.1-next.66...crypto-cli-v0.0.1-next.67) (2025-06-26)
1341
1363
 
1342
1364
 
1343
1365
  ### Bug Fixes
1344
1366
 
1345
- * remove bech32 from crypto-cli ([892aa5f](https://github.com/twinfoundation/framework/commit/892aa5f746a4bc806f2dada3611c03fadcfe5a7b))
1367
+ * remove bech32 from crypto-cli ([892aa5f](https://github.com/iotaledger/twin-framework/commit/892aa5f746a4bc806f2dada3611c03fadcfe5a7b))
1346
1368
 
1347
1369
 
1348
1370
  ### Dependencies
@@ -1353,7 +1375,7 @@
1353
1375
  * @twin.org/core bumped from 0.0.1-next.66 to 0.0.1-next.67
1354
1376
  * @twin.org/crypto bumped from 0.0.1-next.66 to 0.0.1-next.67
1355
1377
 
1356
- ## [0.0.1-next.66](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.1-next.65...crypto-cli-v0.0.1-next.66) (2025-06-26)
1378
+ ## [0.0.1-next.66](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.1-next.65...crypto-cli-v0.0.1-next.66) (2025-06-26)
1357
1379
 
1358
1380
 
1359
1381
  ### Miscellaneous Chores
@@ -1369,7 +1391,7 @@
1369
1391
  * @twin.org/core bumped from 0.0.1-next.65 to 0.0.1-next.66
1370
1392
  * @twin.org/crypto bumped from 0.0.1-next.65 to 0.0.1-next.66
1371
1393
 
1372
- ## [0.0.1-next.65](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.1-next.64...crypto-cli-v0.0.1-next.65) (2025-06-19)
1394
+ ## [0.0.1-next.65](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.1-next.64...crypto-cli-v0.0.1-next.65) (2025-06-19)
1373
1395
 
1374
1396
 
1375
1397
  ### Miscellaneous Chores
@@ -1385,7 +1407,7 @@
1385
1407
  * @twin.org/core bumped from 0.0.1-next.64 to 0.0.1-next.65
1386
1408
  * @twin.org/crypto bumped from 0.0.1-next.64 to 0.0.1-next.65
1387
1409
 
1388
- ## [0.0.1-next.64](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.1-next.63...crypto-cli-v0.0.1-next.64) (2025-06-19)
1410
+ ## [0.0.1-next.64](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.1-next.63...crypto-cli-v0.0.1-next.64) (2025-06-19)
1389
1411
 
1390
1412
 
1391
1413
  ### Miscellaneous Chores
@@ -1401,7 +1423,7 @@
1401
1423
  * @twin.org/core bumped from 0.0.1-next.63 to 0.0.1-next.64
1402
1424
  * @twin.org/crypto bumped from 0.0.1-next.63 to 0.0.1-next.64
1403
1425
 
1404
- ## [0.0.1-next.63](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.1-next.62...crypto-cli-v0.0.1-next.63) (2025-06-18)
1426
+ ## [0.0.1-next.63](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.1-next.62...crypto-cli-v0.0.1-next.63) (2025-06-18)
1405
1427
 
1406
1428
 
1407
1429
  ### Miscellaneous Chores
@@ -1417,21 +1439,21 @@
1417
1439
  * @twin.org/core bumped from 0.0.1-next.62 to 0.0.1-next.63
1418
1440
  * @twin.org/crypto bumped from 0.0.1-next.62 to 0.0.1-next.63
1419
1441
 
1420
- ## [0.0.1-next.62](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.1-next.61...crypto-cli-v0.0.1-next.62) (2025-06-17)
1442
+ ## [0.0.1-next.62](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.1-next.61...crypto-cli-v0.0.1-next.62) (2025-06-17)
1421
1443
 
1422
1444
 
1423
1445
  ### Features
1424
1446
 
1425
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1426
- * add version type ([ae50cd9](https://github.com/twinfoundation/framework/commit/ae50cd99d342ed8eeb55290a52e9fed80a2af99e))
1427
- * remove version type ([553aa55](https://github.com/twinfoundation/framework/commit/553aa55bd79b8f930155035e522af2b0f6e3d0c8))
1428
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1447
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1448
+ * add version type ([ae50cd9](https://github.com/iotaledger/twin-framework/commit/ae50cd99d342ed8eeb55290a52e9fed80a2af99e))
1449
+ * remove version type ([553aa55](https://github.com/iotaledger/twin-framework/commit/553aa55bd79b8f930155035e522af2b0f6e3d0c8))
1450
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1429
1451
 
1430
1452
 
1431
1453
  ### Bug Fixes
1432
1454
 
1433
- * crypto CLI address output to JSON ([0398604](https://github.com/twinfoundation/framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
1434
- * crypto CLI address output to JSON ([3397bfb](https://github.com/twinfoundation/framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
1455
+ * crypto CLI address output to JSON ([0398604](https://github.com/iotaledger/twin-framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
1456
+ * crypto CLI address output to JSON ([3397bfb](https://github.com/iotaledger/twin-framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
1435
1457
 
1436
1458
 
1437
1459
  ### Dependencies
@@ -1442,7 +1464,7 @@
1442
1464
  * @twin.org/core bumped from 0.0.1-next.61 to 0.0.1-next.62
1443
1465
  * @twin.org/crypto bumped from 0.0.1-next.61 to 0.0.1-next.62
1444
1466
 
1445
- ## [0.0.1-next.61](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.1-next.60...crypto-cli-v0.0.1-next.61) (2025-06-17)
1467
+ ## [0.0.1-next.61](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.1-next.60...crypto-cli-v0.0.1-next.61) (2025-06-17)
1446
1468
 
1447
1469
 
1448
1470
  ### Miscellaneous Chores
@@ -1458,13 +1480,13 @@
1458
1480
  * @twin.org/core bumped from 0.0.1-next.60 to 0.0.1-next.61
1459
1481
  * @twin.org/crypto bumped from 0.0.1-next.60 to 0.0.1-next.61
1460
1482
 
1461
- ## [0.0.1-next.60](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.1-next.59...crypto-cli-v0.0.1-next.60) (2025-06-17)
1483
+ ## [0.0.1-next.60](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.1-next.59...crypto-cli-v0.0.1-next.60) (2025-06-17)
1462
1484
 
1463
1485
 
1464
1486
  ### Bug Fixes
1465
1487
 
1466
- * crypto CLI address output to JSON ([0398604](https://github.com/twinfoundation/framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
1467
- * crypto CLI address output to JSON ([3397bfb](https://github.com/twinfoundation/framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
1488
+ * crypto CLI address output to JSON ([0398604](https://github.com/iotaledger/twin-framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
1489
+ * crypto CLI address output to JSON ([3397bfb](https://github.com/iotaledger/twin-framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
1468
1490
 
1469
1491
 
1470
1492
  ### Dependencies
@@ -1475,7 +1497,7 @@
1475
1497
  * @twin.org/core bumped from 0.0.1-next.59 to 0.0.1-next.60
1476
1498
  * @twin.org/crypto bumped from 0.0.1-next.59 to 0.0.1-next.60
1477
1499
 
1478
- ## [0.0.1-next.59](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.1-next.58...crypto-cli-v0.0.1-next.59) (2025-06-17)
1500
+ ## [0.0.1-next.59](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.1-next.58...crypto-cli-v0.0.1-next.59) (2025-06-17)
1479
1501
 
1480
1502
 
1481
1503
  ### Miscellaneous Chores
@@ -1491,7 +1513,7 @@
1491
1513
  * @twin.org/core bumped from 0.0.1-next.58 to 0.0.1-next.59
1492
1514
  * @twin.org/crypto bumped from 0.0.1-next.58 to 0.0.1-next.59
1493
1515
 
1494
- ## [0.0.1-next.58](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.1-next.57...crypto-cli-v0.0.1-next.58) (2025-06-13)
1516
+ ## [0.0.1-next.58](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.1-next.57...crypto-cli-v0.0.1-next.58) (2025-06-13)
1495
1517
 
1496
1518
 
1497
1519
  ### Miscellaneous Chores
@@ -1507,12 +1529,12 @@
1507
1529
  * @twin.org/core bumped from 0.0.1-next.57 to 0.0.1-next.58
1508
1530
  * @twin.org/crypto bumped from 0.0.1-next.57 to 0.0.1-next.58
1509
1531
 
1510
- ## [0.0.1-next.57](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.1-next.56...crypto-cli-v0.0.1-next.57) (2025-06-10)
1532
+ ## [0.0.1-next.57](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.1-next.56...crypto-cli-v0.0.1-next.57) (2025-06-10)
1511
1533
 
1512
1534
 
1513
1535
  ### Features
1514
1536
 
1515
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1537
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1516
1538
 
1517
1539
 
1518
1540
  ### Dependencies
@@ -1523,7 +1545,7 @@
1523
1545
  * @twin.org/core bumped from 0.0.1-next.56 to 0.0.1-next.57
1524
1546
  * @twin.org/crypto bumped from 0.0.1-next.56 to 0.0.1-next.57
1525
1547
 
1526
- ## [0.0.1-next.56](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.1-next.55...crypto-cli-v0.0.1-next.56) (2025-05-08)
1548
+ ## [0.0.1-next.56](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.1-next.55...crypto-cli-v0.0.1-next.56) (2025-05-08)
1527
1549
 
1528
1550
 
1529
1551
  ### Miscellaneous Chores
@@ -1539,7 +1561,7 @@
1539
1561
  * @twin.org/core bumped from 0.0.1-next.55 to 0.0.1-next.56
1540
1562
  * @twin.org/crypto bumped from 0.0.1-next.55 to 0.0.1-next.56
1541
1563
 
1542
- ## [0.0.1-next.55](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.1-next.54...crypto-cli-v0.0.1-next.55) (2025-05-07)
1564
+ ## [0.0.1-next.55](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.1-next.54...crypto-cli-v0.0.1-next.55) (2025-05-07)
1543
1565
 
1544
1566
 
1545
1567
  ### Miscellaneous Chores
@@ -1555,7 +1577,7 @@
1555
1577
  * @twin.org/core bumped from 0.0.1-next.54 to 0.0.1-next.55
1556
1578
  * @twin.org/crypto bumped from 0.0.1-next.54 to 0.0.1-next.55
1557
1579
 
1558
- ## [0.0.1-next.54](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.1-next.53...crypto-cli-v0.0.1-next.54) (2025-05-06)
1580
+ ## [0.0.1-next.54](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.1-next.53...crypto-cli-v0.0.1-next.54) (2025-05-06)
1559
1581
 
1560
1582
 
1561
1583
  ### Miscellaneous Chores
@@ -1571,7 +1593,7 @@
1571
1593
  * @twin.org/core bumped from 0.0.1-next.53 to 0.0.1-next.54
1572
1594
  * @twin.org/crypto bumped from 0.0.1-next.53 to 0.0.1-next.54
1573
1595
 
1574
- ## [0.0.1-next.53](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.1-next.52...crypto-cli-v0.0.1-next.53) (2025-05-01)
1596
+ ## [0.0.1-next.53](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.1-next.52...crypto-cli-v0.0.1-next.53) (2025-05-01)
1575
1597
 
1576
1598
 
1577
1599
  ### Miscellaneous Chores
@@ -1587,12 +1609,12 @@
1587
1609
  * @twin.org/core bumped from 0.0.1-next.52 to 0.0.1-next.53
1588
1610
  * @twin.org/crypto bumped from 0.0.1-next.52 to 0.0.1-next.53
1589
1611
 
1590
- ## [0.0.1-next.52](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.1-next.51...crypto-cli-v0.0.1-next.52) (2025-04-17)
1612
+ ## [0.0.1-next.52](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.1-next.51...crypto-cli-v0.0.1-next.52) (2025-04-17)
1591
1613
 
1592
1614
 
1593
1615
  ### Features
1594
1616
 
1595
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1617
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1596
1618
 
1597
1619
 
1598
1620
  ### Dependencies
@@ -1603,7 +1625,7 @@
1603
1625
  * @twin.org/core bumped from 0.0.1-next.51 to 0.0.1-next.52
1604
1626
  * @twin.org/crypto bumped from 0.0.1-next.51 to 0.0.1-next.52
1605
1627
 
1606
- ## [0.0.1-next.51](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.1-next.50...crypto-cli-v0.0.1-next.51) (2025-03-27)
1628
+ ## [0.0.1-next.51](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.1-next.50...crypto-cli-v0.0.1-next.51) (2025-03-27)
1607
1629
 
1608
1630
 
1609
1631
  ### Miscellaneous Chores
@@ -1619,13 +1641,13 @@
1619
1641
  * @twin.org/core bumped from 0.0.1-next.50 to 0.0.1-next.51
1620
1642
  * @twin.org/crypto bumped from 0.0.1-next.50 to 0.0.1-next.51
1621
1643
 
1622
- ## [0.0.1-next.50](https://github.com/twinfoundation/framework/compare/crypto-cli-v0.0.1-next.49...crypto-cli-v0.0.1-next.50) (2025-03-26)
1644
+ ## [0.0.1-next.50](https://github.com/iotaledger/twin-framework/compare/crypto-cli-v0.0.1-next.49...crypto-cli-v0.0.1-next.50) (2025-03-26)
1623
1645
 
1624
1646
 
1625
1647
  ### Features
1626
1648
 
1627
- * add version type ([ae50cd9](https://github.com/twinfoundation/framework/commit/ae50cd99d342ed8eeb55290a52e9fed80a2af99e))
1628
- * remove version type ([553aa55](https://github.com/twinfoundation/framework/commit/553aa55bd79b8f930155035e522af2b0f6e3d0c8))
1649
+ * add version type ([ae50cd9](https://github.com/iotaledger/twin-framework/commit/ae50cd99d342ed8eeb55290a52e9fed80a2af99e))
1650
+ * remove version type ([553aa55](https://github.com/iotaledger/twin-framework/commit/553aa55bd79b8f930155035e522af2b0f6e3d0c8))
1629
1651
 
1630
1652
 
1631
1653
  ### Dependencies
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/crypto-cli",
3
- "version": "0.0.3-next.31",
3
+ "version": "0.0.3-next.32",
4
4
  "description": "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.31",
18
- "@twin.org/core": "0.0.3-next.31",
19
- "@twin.org/crypto": "0.0.3-next.31",
20
- "@twin.org/nameof": "0.0.3-next.31",
17
+ "@twin.org/cli-core": "0.0.3-next.32",
18
+ "@twin.org/core": "0.0.3-next.32",
19
+ "@twin.org/crypto": "0.0.3-next.32",
20
+ "@twin.org/nameof": "0.0.3-next.32",
21
21
  "commander": "14.0.3"
22
22
  },
23
23
  "main": "./dist/es/index.js",