@twin.org/identity-cli 0.0.3-next.2 → 0.0.3-next.21

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.
Files changed (49) hide show
  1. package/README.md +5 -5
  2. package/dist/es/cli.js +9 -1
  3. package/dist/es/cli.js.map +1 -1
  4. package/dist/es/commands/alsoKnownAsAdd.js +108 -0
  5. package/dist/es/commands/alsoKnownAsAdd.js.map +1 -0
  6. package/dist/es/commands/alsoKnownAsRemove.js +106 -0
  7. package/dist/es/commands/alsoKnownAsRemove.js.map +1 -0
  8. package/dist/es/commands/identityCreate.js +2 -1
  9. package/dist/es/commands/identityCreate.js.map +1 -1
  10. package/dist/es/commands/proofCreate.js +4 -9
  11. package/dist/es/commands/proofCreate.js.map +1 -1
  12. package/dist/es/commands/serviceAdd.js +4 -3
  13. package/dist/es/commands/serviceAdd.js.map +1 -1
  14. package/dist/es/commands/serviceRemove.js +3 -3
  15. package/dist/es/commands/serviceRemove.js.map +1 -1
  16. package/dist/es/commands/verifiableCredentialCreate.js +18 -16
  17. package/dist/es/commands/verifiableCredentialCreate.js.map +1 -1
  18. package/dist/es/commands/verifiableCredentialVerify.js +24 -5
  19. package/dist/es/commands/verifiableCredentialVerify.js.map +1 -1
  20. package/dist/es/commands/verifiablePresentationCreate.js +137 -0
  21. package/dist/es/commands/verifiablePresentationCreate.js.map +1 -0
  22. package/dist/es/commands/verifiablePresentationVerify.js +107 -0
  23. package/dist/es/commands/verifiablePresentationVerify.js.map +1 -0
  24. package/dist/es/commands/verificationMethodAdd.js +31 -10
  25. package/dist/es/commands/verificationMethodAdd.js.map +1 -1
  26. package/dist/es/index.js +2 -0
  27. package/dist/es/index.js.map +1 -1
  28. package/dist/locales/en.json +217 -41
  29. package/dist/types/commands/alsoKnownAsAdd.d.ts +30 -0
  30. package/dist/types/commands/alsoKnownAsRemove.d.ts +30 -0
  31. package/dist/types/commands/identityCreate.d.ts +1 -0
  32. package/dist/types/commands/proofCreate.d.ts +0 -2
  33. package/dist/types/commands/verifiableCredentialCreate.d.ts +4 -4
  34. package/dist/types/commands/verifiableCredentialVerify.d.ts +3 -1
  35. package/dist/types/commands/verifiablePresentationCreate.d.ts +32 -0
  36. package/dist/types/commands/verifiablePresentationVerify.d.ts +24 -0
  37. package/dist/types/index.d.ts +2 -0
  38. package/docs/changelog.md +419 -90
  39. package/docs/reference/classes/CLI.md +1 -1
  40. package/docs/reference/functions/actionCommandVerifiablePresentationCreate.md +17 -0
  41. package/docs/reference/functions/actionCommandVerifiablePresentationVerify.md +17 -0
  42. package/docs/reference/functions/buildCommandVerifiablePresentationCreate.md +11 -0
  43. package/docs/reference/functions/buildCommandVerifiablePresentationVerify.md +11 -0
  44. package/docs/reference/index.md +4 -0
  45. package/docs/reference/variables/IdentityConnectorTypes.md +1 -1
  46. package/docs/reference/variables/IdentityResolverConnectorTypes.md +1 -1
  47. package/docs/{examples.md → usage.md} +23 -27
  48. package/locales/en.json +153 -12
  49. package/package.json +7 -7
package/docs/changelog.md CHANGED
@@ -1,6 +1,335 @@
1
- # @twin.org/identity-cli - Changelog
1
+ # Changelog
2
2
 
3
- ## [0.0.3-next.2](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.3-next.1...identity-cli-v0.0.3-next.2) (2025-11-14)
3
+ ## [0.0.3-next.21](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.20...identity-cli-v0.0.3-next.21) (2026-05-07)
4
+
5
+
6
+ ### Miscellaneous Chores
7
+
8
+ * **identity-cli:** Synchronize repo versions
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/identity-models bumped from 0.0.3-next.20 to 0.0.3-next.21
16
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.20 to 0.0.3-next.21
17
+
18
+ ## [0.0.3-next.20](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.19...identity-cli-v0.0.3-next.20) (2026-04-29)
19
+
20
+
21
+ ### Features
22
+
23
+ * expanded cli methods ([#121](https://github.com/iotaledger/twin-identity/issues/121)) ([80a52b7](https://github.com/iotaledger/twin-identity/commit/80a52b779237cd633d1f2813fa976585cef6e551))
24
+
25
+
26
+ ### Dependencies
27
+
28
+ * The following workspace dependencies were updated
29
+ * dependencies
30
+ * @twin.org/identity-models bumped from 0.0.3-next.19 to 0.0.3-next.20
31
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.19 to 0.0.3-next.20
32
+
33
+ ## [0.0.3-next.19](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.18...identity-cli-v0.0.3-next.19) (2026-04-29)
34
+
35
+
36
+ ### Miscellaneous Chores
37
+
38
+ * **identity-cli:** Synchronize repo versions
39
+
40
+
41
+ ### Dependencies
42
+
43
+ * The following workspace dependencies were updated
44
+ * dependencies
45
+ * @twin.org/identity-models bumped from 0.0.3-next.18 to 0.0.3-next.19
46
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.18 to 0.0.3-next.19
47
+
48
+ ## [0.0.3-next.18](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.17...identity-cli-v0.0.3-next.18) (2026-02-27)
49
+
50
+
51
+ ### Miscellaneous Chores
52
+
53
+ * **identity-cli:** Synchronize repo versions
54
+
55
+
56
+ ### Dependencies
57
+
58
+ * The following workspace dependencies were updated
59
+ * dependencies
60
+ * @twin.org/identity-models bumped from 0.0.3-next.17 to 0.0.3-next.18
61
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.17 to 0.0.3-next.18
62
+
63
+ ## [0.0.3-next.17](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.16...identity-cli-v0.0.3-next.17) (2026-02-24)
64
+
65
+
66
+ ### Features
67
+
68
+ * implement async proof signing with vault security ([#110](https://github.com/iotaledger/twin-identity/issues/110)) ([9651c24](https://github.com/iotaledger/twin-identity/commit/9651c2492d63eca6545735f5638d3191e25bd185))
69
+
70
+
71
+ ### Dependencies
72
+
73
+ * The following workspace dependencies were updated
74
+ * dependencies
75
+ * @twin.org/identity-models bumped from 0.0.3-next.16 to 0.0.3-next.17
76
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.16 to 0.0.3-next.17
77
+
78
+ ## [0.0.3-next.16](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.15...identity-cli-v0.0.3-next.16) (2026-02-13)
79
+
80
+
81
+ ### Miscellaneous Chores
82
+
83
+ * **identity-cli:** Synchronize repo versions
84
+
85
+
86
+ ### Dependencies
87
+
88
+ * The following workspace dependencies were updated
89
+ * dependencies
90
+ * @twin.org/identity-models bumped from 0.0.3-next.15 to 0.0.3-next.16
91
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.15 to 0.0.3-next.16
92
+
93
+ ## [0.0.3-next.15](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.14...identity-cli-v0.0.3-next.15) (2026-02-12)
94
+
95
+
96
+ ### Bug Fixes
97
+
98
+ * correct vault usage in cli commands ([#106](https://github.com/iotaledger/twin-identity/issues/106)) ([d81671d](https://github.com/iotaledger/twin-identity/commit/d81671d994390c9db7ded82e5f42b4bc521603fc))
99
+
100
+
101
+ ### Dependencies
102
+
103
+ * The following workspace dependencies were updated
104
+ * dependencies
105
+ * @twin.org/identity-models bumped from 0.0.3-next.14 to 0.0.3-next.15
106
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.14 to 0.0.3-next.15
107
+
108
+ ## [0.0.3-next.14](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.13...identity-cli-v0.0.3-next.14) (2026-02-10)
109
+
110
+
111
+ ### Miscellaneous Chores
112
+
113
+ * **identity-cli:** Synchronize repo versions
114
+
115
+
116
+ ### Dependencies
117
+
118
+ * The following workspace dependencies were updated
119
+ * dependencies
120
+ * @twin.org/identity-models bumped from 0.0.3-next.13 to 0.0.3-next.14
121
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.13 to 0.0.3-next.14
122
+
123
+ ## [0.0.3-next.13](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.12...identity-cli-v0.0.3-next.13) (2026-01-21)
124
+
125
+
126
+ ### Miscellaneous Chores
127
+
128
+ * **identity-cli:** Synchronize repo versions
129
+
130
+
131
+ ### Dependencies
132
+
133
+ * The following workspace dependencies were updated
134
+ * dependencies
135
+ * @twin.org/identity-models bumped from 0.0.3-next.12 to 0.0.3-next.13
136
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.12 to 0.0.3-next.13
137
+
138
+ ## [0.0.3-next.12](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.11...identity-cli-v0.0.3-next.12) (2026-01-19)
139
+
140
+
141
+ ### Miscellaneous Chores
142
+
143
+ * **identity-cli:** Synchronize repo versions
144
+
145
+
146
+ ### Dependencies
147
+
148
+ * The following workspace dependencies were updated
149
+ * dependencies
150
+ * @twin.org/identity-models bumped from 0.0.3-next.11 to 0.0.3-next.12
151
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.11 to 0.0.3-next.12
152
+
153
+ ## [0.0.3-next.11](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.10...identity-cli-v0.0.3-next.11) (2026-01-15)
154
+
155
+
156
+ ### Features
157
+
158
+ * add addressIndex option to all commands ([a644674](https://github.com/iotaledger/twin-identity/commit/a644674017d1a8fe5d8685950316bec922a9b195))
159
+ * add context id features ([#62](https://github.com/iotaledger/twin-identity/issues/62)) ([e02ecca](https://github.com/iotaledger/twin-identity/commit/e02ecca9c45a849104bfbf7bc18a1f44e6eea8a1))
160
+ * add expiration date option to vc creation ([73e05e1](https://github.com/iotaledger/twin-identity/commit/73e05e1ae61112c7e056889969751f4ff82d9f29))
161
+ * add mainnet support ([af56a38](https://github.com/iotaledger/twin-identity/commit/af56a382837896cd4e13d5814c0924c46658b99c))
162
+ * add validate-locales ([04d74b4](https://github.com/iotaledger/twin-identity/commit/04d74b4d1ebe42672e8ca75a7bdb8e3556afd0be))
163
+ * eslint migration to flat config ([fd6246d](https://github.com/iotaledger/twin-identity/commit/fd6246d566280b6d5d10a108eb1e92c4b510f2f2))
164
+ * identity key separator use slash ([1319d0d](https://github.com/iotaledger/twin-identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
165
+ * iota rebased release ([5d14674](https://github.com/iotaledger/twin-identity/commit/5d146744ca9eed622ef7eb34a7fa935216f9e975))
166
+ * support mainnet for alias extraction ([1114e0f](https://github.com/iotaledger/twin-identity/commit/1114e0f518070ef930d7d6ed73a616cce647206c))
167
+ * update framework core ([c824497](https://github.com/iotaledger/twin-identity/commit/c82449709af0215eb7af496cf687c93fb30b5ae0))
168
+ * update namespaces and contexts ([#90](https://github.com/iotaledger/twin-identity/issues/90)) ([0c34d64](https://github.com/iotaledger/twin-identity/commit/0c34d64add8cca77856fa2d0357e774d72fbbfc1))
169
+ * use new generateKid method ([f0fe779](https://github.com/iotaledger/twin-identity/commit/f0fe779323b675575bb9f80aa74f1957dc57a094))
170
+ * use shared store mechanism ([#27](https://github.com/iotaledger/twin-identity/issues/27)) ([ce41f3f](https://github.com/iotaledger/twin-identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
171
+ * verification method output JWK and hex on CLI ([49db9da](https://github.com/iotaledger/twin-identity/commit/49db9da2371eafdcd7176ce44303961b9b8b8380))
172
+
173
+
174
+ ### Bug Fixes
175
+
176
+ * correctly display mainnet explorer urls ([45a9f3c](https://github.com/iotaledger/twin-identity/commit/45a9f3cc041cce7b40a86e98df306931a95f48ea))
177
+ * expiration date coerced to full date time ([83e94e3](https://github.com/iotaledger/twin-identity/commit/83e94e3fc2b982fbb41f87a177e0e79a7f2e4079))
178
+ * explorer urls in CLI ([82a745d](https://github.com/iotaledger/twin-identity/commit/82a745d536e8fe42554e7ad92a7468a653fc0cfb))
179
+ * Import path and bump version ([#21](https://github.com/iotaledger/twin-identity/issues/21)) ([ccea845](https://github.com/iotaledger/twin-identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
180
+ * Install sdk-wasm ([#20](https://github.com/iotaledger/twin-identity/issues/20)) ([75ec14e](https://github.com/iotaledger/twin-identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
181
+ * remove unused address index params in CLI ([c4c0cc1](https://github.com/iotaledger/twin-identity/commit/c4c0cc18e17804380cf52330e1b9de8716cc193d))
182
+ * update vault key naming convention to use document ID prefix ([#94](https://github.com/iotaledger/twin-identity/issues/94)) ([ab125c1](https://github.com/iotaledger/twin-identity/commit/ab125c1b7eb189b5dceaddc69e5e53e33a0886db))
183
+
184
+
185
+ ### Dependencies
186
+
187
+ * The following workspace dependencies were updated
188
+ * dependencies
189
+ * @twin.org/identity-models bumped from 0.0.3-next.10 to 0.0.3-next.11
190
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.10 to 0.0.3-next.11
191
+
192
+ ## [0.0.3-next.10](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.9...identity-cli-v0.0.3-next.10) (2026-01-15)
193
+
194
+
195
+ ### Bug Fixes
196
+
197
+ * expiration date coerced to full date time ([83e94e3](https://github.com/iotaledger/twin-identity/commit/83e94e3fc2b982fbb41f87a177e0e79a7f2e4079))
198
+
199
+
200
+ ### Dependencies
201
+
202
+ * The following workspace dependencies were updated
203
+ * dependencies
204
+ * @twin.org/identity-models bumped from 0.0.3-next.9 to 0.0.3-next.10
205
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.9 to 0.0.3-next.10
206
+
207
+ ## [0.0.3-next.9](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.8...identity-cli-v0.0.3-next.9) (2026-01-14)
208
+
209
+
210
+ ### Bug Fixes
211
+
212
+ * update vault key naming convention to use document ID prefix ([#94](https://github.com/iotaledger/twin-identity/issues/94)) ([ab125c1](https://github.com/iotaledger/twin-identity/commit/ab125c1b7eb189b5dceaddc69e5e53e33a0886db))
213
+
214
+
215
+ ### Dependencies
216
+
217
+ * The following workspace dependencies were updated
218
+ * dependencies
219
+ * @twin.org/identity-models bumped from 0.0.3-next.8 to 0.0.3-next.9
220
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.8 to 0.0.3-next.9
221
+
222
+ ## [0.0.3-next.8](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.7...identity-cli-v0.0.3-next.8) (2026-01-14)
223
+
224
+
225
+ ### Features
226
+
227
+ * update namespaces and contexts ([#90](https://github.com/iotaledger/twin-identity/issues/90)) ([0c34d64](https://github.com/iotaledger/twin-identity/commit/0c34d64add8cca77856fa2d0357e774d72fbbfc1))
228
+
229
+
230
+ ### Dependencies
231
+
232
+ * The following workspace dependencies were updated
233
+ * dependencies
234
+ * @twin.org/identity-models bumped from 0.0.3-next.7 to 0.0.3-next.8
235
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.7 to 0.0.3-next.8
236
+
237
+ ## [0.0.3-next.7](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.6...identity-cli-v0.0.3-next.7) (2026-01-13)
238
+
239
+
240
+ ### Miscellaneous Chores
241
+
242
+ * **identity-cli:** Synchronize repo versions
243
+
244
+
245
+ ### Dependencies
246
+
247
+ * The following workspace dependencies were updated
248
+ * dependencies
249
+ * @twin.org/identity-models bumped from 0.0.3-next.6 to 0.0.3-next.7
250
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.6 to 0.0.3-next.7
251
+
252
+ ## [0.0.3-next.6](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.5...identity-cli-v0.0.3-next.6) (2025-11-26)
253
+
254
+
255
+ ### Miscellaneous Chores
256
+
257
+ * **identity-cli:** Synchronize repo versions
258
+
259
+
260
+ ### Dependencies
261
+
262
+ * The following workspace dependencies were updated
263
+ * dependencies
264
+ * @twin.org/identity-models bumped from 0.0.3-next.5 to 0.0.3-next.6
265
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.5 to 0.0.3-next.6
266
+
267
+ ## [0.0.3-next.5](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.4...identity-cli-v0.0.3-next.5) (2025-11-20)
268
+
269
+
270
+ ### Bug Fixes
271
+
272
+ * remove unused address index params in CLI ([c4c0cc1](https://github.com/iotaledger/twin-identity/commit/c4c0cc18e17804380cf52330e1b9de8716cc193d))
273
+
274
+
275
+ ### Dependencies
276
+
277
+ * The following workspace dependencies were updated
278
+ * dependencies
279
+ * @twin.org/identity-models bumped from 0.0.3-next.4 to 0.0.3-next.5
280
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.4 to 0.0.3-next.5
281
+
282
+ ## [0.0.3-next.4](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.3...identity-cli-v0.0.3-next.4) (2025-11-17)
283
+
284
+
285
+ ### Features
286
+
287
+ * add addressIndex option to all commands ([a644674](https://github.com/iotaledger/twin-identity/commit/a644674017d1a8fe5d8685950316bec922a9b195))
288
+ * add context id features ([#62](https://github.com/iotaledger/twin-identity/issues/62)) ([e02ecca](https://github.com/iotaledger/twin-identity/commit/e02ecca9c45a849104bfbf7bc18a1f44e6eea8a1))
289
+ * add expiration date option to vc creation ([73e05e1](https://github.com/iotaledger/twin-identity/commit/73e05e1ae61112c7e056889969751f4ff82d9f29))
290
+ * add mainnet support ([af56a38](https://github.com/iotaledger/twin-identity/commit/af56a382837896cd4e13d5814c0924c46658b99c))
291
+ * add validate-locales ([04d74b4](https://github.com/iotaledger/twin-identity/commit/04d74b4d1ebe42672e8ca75a7bdb8e3556afd0be))
292
+ * eslint migration to flat config ([fd6246d](https://github.com/iotaledger/twin-identity/commit/fd6246d566280b6d5d10a108eb1e92c4b510f2f2))
293
+ * identity key separator use slash ([1319d0d](https://github.com/iotaledger/twin-identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
294
+ * iota rebased release ([5d14674](https://github.com/iotaledger/twin-identity/commit/5d146744ca9eed622ef7eb34a7fa935216f9e975))
295
+ * support mainnet for alias extraction ([1114e0f](https://github.com/iotaledger/twin-identity/commit/1114e0f518070ef930d7d6ed73a616cce647206c))
296
+ * update framework core ([c824497](https://github.com/iotaledger/twin-identity/commit/c82449709af0215eb7af496cf687c93fb30b5ae0))
297
+ * use new generateKid method ([f0fe779](https://github.com/iotaledger/twin-identity/commit/f0fe779323b675575bb9f80aa74f1957dc57a094))
298
+ * use shared store mechanism ([#27](https://github.com/iotaledger/twin-identity/issues/27)) ([ce41f3f](https://github.com/iotaledger/twin-identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
299
+ * verification method output JWK and hex on CLI ([49db9da](https://github.com/iotaledger/twin-identity/commit/49db9da2371eafdcd7176ce44303961b9b8b8380))
300
+
301
+
302
+ ### Bug Fixes
303
+
304
+ * correctly display mainnet explorer urls ([45a9f3c](https://github.com/iotaledger/twin-identity/commit/45a9f3cc041cce7b40a86e98df306931a95f48ea))
305
+ * explorer urls in CLI ([82a745d](https://github.com/iotaledger/twin-identity/commit/82a745d536e8fe42554e7ad92a7468a653fc0cfb))
306
+ * Import path and bump version ([#21](https://github.com/iotaledger/twin-identity/issues/21)) ([ccea845](https://github.com/iotaledger/twin-identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
307
+ * Install sdk-wasm ([#20](https://github.com/iotaledger/twin-identity/issues/20)) ([75ec14e](https://github.com/iotaledger/twin-identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
308
+
309
+
310
+ ### Dependencies
311
+
312
+ * The following workspace dependencies were updated
313
+ * dependencies
314
+ * @twin.org/identity-models bumped from 0.0.3-next.3 to 0.0.3-next.4
315
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.3 to 0.0.3-next.4
316
+
317
+ ## [0.0.3-next.3](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.2...identity-cli-v0.0.3-next.3) (2025-11-17)
318
+
319
+
320
+ ### Miscellaneous Chores
321
+
322
+ * **identity-cli:** Synchronize repo versions
323
+
324
+
325
+ ### Dependencies
326
+
327
+ * The following workspace dependencies were updated
328
+ * dependencies
329
+ * @twin.org/identity-models bumped from 0.0.3-next.2 to 0.0.3-next.3
330
+ * @twin.org/identity-connector-iota bumped from 0.0.3-next.2 to 0.0.3-next.3
331
+
332
+ ## [0.0.3-next.2](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.1...identity-cli-v0.0.3-next.2) (2025-11-14)
4
333
 
5
334
 
6
335
  ### Miscellaneous Chores
@@ -15,32 +344,32 @@
15
344
  * @twin.org/identity-models bumped from 0.0.3-next.1 to 0.0.3-next.2
16
345
  * @twin.org/identity-connector-iota bumped from 0.0.3-next.1 to 0.0.3-next.2
17
346
 
18
- ## [0.0.3-next.1](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.3-next.0...identity-cli-v0.0.3-next.1) (2025-11-11)
347
+ ## [0.0.3-next.1](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.3-next.0...identity-cli-v0.0.3-next.1) (2025-11-11)
19
348
 
20
349
 
21
350
  ### Features
22
351
 
23
- * add addressIndex option to all commands ([a644674](https://github.com/twinfoundation/identity/commit/a644674017d1a8fe5d8685950316bec922a9b195))
24
- * add context id features ([#62](https://github.com/twinfoundation/identity/issues/62)) ([e02ecca](https://github.com/twinfoundation/identity/commit/e02ecca9c45a849104bfbf7bc18a1f44e6eea8a1))
25
- * add expiration date option to vc creation ([73e05e1](https://github.com/twinfoundation/identity/commit/73e05e1ae61112c7e056889969751f4ff82d9f29))
26
- * add mainnet support ([af56a38](https://github.com/twinfoundation/identity/commit/af56a382837896cd4e13d5814c0924c46658b99c))
27
- * add validate-locales ([04d74b4](https://github.com/twinfoundation/identity/commit/04d74b4d1ebe42672e8ca75a7bdb8e3556afd0be))
28
- * eslint migration to flat config ([fd6246d](https://github.com/twinfoundation/identity/commit/fd6246d566280b6d5d10a108eb1e92c4b510f2f2))
29
- * identity key separator use slash ([1319d0d](https://github.com/twinfoundation/identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
30
- * iota rebased release ([5d14674](https://github.com/twinfoundation/identity/commit/5d146744ca9eed622ef7eb34a7fa935216f9e975))
31
- * support mainnet for alias extraction ([1114e0f](https://github.com/twinfoundation/identity/commit/1114e0f518070ef930d7d6ed73a616cce647206c))
32
- * update framework core ([c824497](https://github.com/twinfoundation/identity/commit/c82449709af0215eb7af496cf687c93fb30b5ae0))
33
- * use new generateKid method ([f0fe779](https://github.com/twinfoundation/identity/commit/f0fe779323b675575bb9f80aa74f1957dc57a094))
34
- * use shared store mechanism ([#27](https://github.com/twinfoundation/identity/issues/27)) ([ce41f3f](https://github.com/twinfoundation/identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
35
- * verification method output JWK and hex on CLI ([49db9da](https://github.com/twinfoundation/identity/commit/49db9da2371eafdcd7176ce44303961b9b8b8380))
352
+ * add addressIndex option to all commands ([a644674](https://github.com/iotaledger/twin-identity/commit/a644674017d1a8fe5d8685950316bec922a9b195))
353
+ * add context id features ([#62](https://github.com/iotaledger/twin-identity/issues/62)) ([e02ecca](https://github.com/iotaledger/twin-identity/commit/e02ecca9c45a849104bfbf7bc18a1f44e6eea8a1))
354
+ * add expiration date option to vc creation ([73e05e1](https://github.com/iotaledger/twin-identity/commit/73e05e1ae61112c7e056889969751f4ff82d9f29))
355
+ * add mainnet support ([af56a38](https://github.com/iotaledger/twin-identity/commit/af56a382837896cd4e13d5814c0924c46658b99c))
356
+ * add validate-locales ([04d74b4](https://github.com/iotaledger/twin-identity/commit/04d74b4d1ebe42672e8ca75a7bdb8e3556afd0be))
357
+ * eslint migration to flat config ([fd6246d](https://github.com/iotaledger/twin-identity/commit/fd6246d566280b6d5d10a108eb1e92c4b510f2f2))
358
+ * identity key separator use slash ([1319d0d](https://github.com/iotaledger/twin-identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
359
+ * iota rebased release ([5d14674](https://github.com/iotaledger/twin-identity/commit/5d146744ca9eed622ef7eb34a7fa935216f9e975))
360
+ * support mainnet for alias extraction ([1114e0f](https://github.com/iotaledger/twin-identity/commit/1114e0f518070ef930d7d6ed73a616cce647206c))
361
+ * update framework core ([c824497](https://github.com/iotaledger/twin-identity/commit/c82449709af0215eb7af496cf687c93fb30b5ae0))
362
+ * use new generateKid method ([f0fe779](https://github.com/iotaledger/twin-identity/commit/f0fe779323b675575bb9f80aa74f1957dc57a094))
363
+ * use shared store mechanism ([#27](https://github.com/iotaledger/twin-identity/issues/27)) ([ce41f3f](https://github.com/iotaledger/twin-identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
364
+ * verification method output JWK and hex on CLI ([49db9da](https://github.com/iotaledger/twin-identity/commit/49db9da2371eafdcd7176ce44303961b9b8b8380))
36
365
 
37
366
 
38
367
  ### Bug Fixes
39
368
 
40
- * correctly display mainnet explorer urls ([45a9f3c](https://github.com/twinfoundation/identity/commit/45a9f3cc041cce7b40a86e98df306931a95f48ea))
41
- * explorer urls in CLI ([82a745d](https://github.com/twinfoundation/identity/commit/82a745d536e8fe42554e7ad92a7468a653fc0cfb))
42
- * Import path and bump version ([#21](https://github.com/twinfoundation/identity/issues/21)) ([ccea845](https://github.com/twinfoundation/identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
43
- * Install sdk-wasm ([#20](https://github.com/twinfoundation/identity/issues/20)) ([75ec14e](https://github.com/twinfoundation/identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
369
+ * correctly display mainnet explorer urls ([45a9f3c](https://github.com/iotaledger/twin-identity/commit/45a9f3cc041cce7b40a86e98df306931a95f48ea))
370
+ * explorer urls in CLI ([82a745d](https://github.com/iotaledger/twin-identity/commit/82a745d536e8fe42554e7ad92a7468a653fc0cfb))
371
+ * Import path and bump version ([#21](https://github.com/iotaledger/twin-identity/issues/21)) ([ccea845](https://github.com/iotaledger/twin-identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
372
+ * Install sdk-wasm ([#20](https://github.com/iotaledger/twin-identity/issues/20)) ([75ec14e](https://github.com/iotaledger/twin-identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
44
373
 
45
374
 
46
375
  ### Dependencies
@@ -50,7 +379,7 @@
50
379
  * @twin.org/identity-models bumped from 0.0.3-next.0 to 0.0.3-next.1
51
380
  * @twin.org/identity-connector-iota bumped from 0.0.3-next.0 to 0.0.3-next.1
52
381
 
53
- ## [0.0.2-next.10](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.2-next.9...identity-cli-v0.0.2-next.10) (2025-10-27)
382
+ ## [0.0.2-next.10](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.2-next.9...identity-cli-v0.0.2-next.10) (2025-10-27)
54
383
 
55
384
 
56
385
  ### Miscellaneous Chores
@@ -65,12 +394,12 @@
65
394
  * @twin.org/identity-models bumped from 0.0.2-next.9 to 0.0.2-next.10
66
395
  * @twin.org/identity-connector-iota bumped from 0.0.2-next.9 to 0.0.2-next.10
67
396
 
68
- ## [0.0.2-next.9](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.2-next.8...identity-cli-v0.0.2-next.9) (2025-10-09)
397
+ ## [0.0.2-next.9](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.2-next.8...identity-cli-v0.0.2-next.9) (2025-10-09)
69
398
 
70
399
 
71
400
  ### Features
72
401
 
73
- * add validate-locales ([04d74b4](https://github.com/twinfoundation/identity/commit/04d74b4d1ebe42672e8ca75a7bdb8e3556afd0be))
402
+ * add validate-locales ([04d74b4](https://github.com/iotaledger/twin-identity/commit/04d74b4d1ebe42672e8ca75a7bdb8e3556afd0be))
74
403
 
75
404
 
76
405
  ### Dependencies
@@ -80,7 +409,7 @@
80
409
  * @twin.org/identity-models bumped from 0.0.2-next.8 to 0.0.2-next.9
81
410
  * @twin.org/identity-connector-iota bumped from 0.0.2-next.8 to 0.0.2-next.9
82
411
 
83
- ## [0.0.2-next.8](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.2-next.7...identity-cli-v0.0.2-next.8) (2025-09-25)
412
+ ## [0.0.2-next.8](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.2-next.7...identity-cli-v0.0.2-next.8) (2025-09-25)
84
413
 
85
414
 
86
415
  ### Miscellaneous Chores
@@ -95,7 +424,7 @@
95
424
  * @twin.org/identity-models bumped from 0.0.2-next.7 to 0.0.2-next.8
96
425
  * @twin.org/identity-connector-iota bumped from 0.0.2-next.7 to 0.0.2-next.8
97
426
 
98
- ## [0.0.2-next.7](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.2-next.6...identity-cli-v0.0.2-next.7) (2025-09-23)
427
+ ## [0.0.2-next.7](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.2-next.6...identity-cli-v0.0.2-next.7) (2025-09-23)
99
428
 
100
429
 
101
430
  ### Miscellaneous Chores
@@ -110,7 +439,7 @@
110
439
  * @twin.org/identity-models bumped from 0.0.2-next.6 to 0.0.2-next.7
111
440
  * @twin.org/identity-connector-iota bumped from 0.0.2-next.6 to 0.0.2-next.7
112
441
 
113
- ## [0.0.2-next.6](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.2-next.5...identity-cli-v0.0.2-next.6) (2025-09-23)
442
+ ## [0.0.2-next.6](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.2-next.5...identity-cli-v0.0.2-next.6) (2025-09-23)
114
443
 
115
444
 
116
445
  ### Miscellaneous Chores
@@ -125,12 +454,12 @@
125
454
  * @twin.org/identity-models bumped from 0.0.2-next.5 to 0.0.2-next.6
126
455
  * @twin.org/identity-connector-iota bumped from 0.0.2-next.5 to 0.0.2-next.6
127
456
 
128
- ## [0.0.2-next.5](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.2-next.4...identity-cli-v0.0.2-next.5) (2025-09-15)
457
+ ## [0.0.2-next.5](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.2-next.4...identity-cli-v0.0.2-next.5) (2025-09-15)
129
458
 
130
459
 
131
460
  ### Features
132
461
 
133
- * add addressIndex option to all commands ([a644674](https://github.com/twinfoundation/identity/commit/a644674017d1a8fe5d8685950316bec922a9b195))
462
+ * add addressIndex option to all commands ([a644674](https://github.com/iotaledger/twin-identity/commit/a644674017d1a8fe5d8685950316bec922a9b195))
134
463
 
135
464
 
136
465
  ### Dependencies
@@ -140,12 +469,12 @@
140
469
  * @twin.org/identity-models bumped from 0.0.2-next.4 to 0.0.2-next.5
141
470
  * @twin.org/identity-connector-iota bumped from 0.0.2-next.4 to 0.0.2-next.5
142
471
 
143
- ## [0.0.2-next.4](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.2-next.3...identity-cli-v0.0.2-next.4) (2025-09-12)
472
+ ## [0.0.2-next.4](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.2-next.3...identity-cli-v0.0.2-next.4) (2025-09-12)
144
473
 
145
474
 
146
475
  ### Features
147
476
 
148
- * add expiration date option to vc creation ([73e05e1](https://github.com/twinfoundation/identity/commit/73e05e1ae61112c7e056889969751f4ff82d9f29))
477
+ * add expiration date option to vc creation ([73e05e1](https://github.com/iotaledger/twin-identity/commit/73e05e1ae61112c7e056889969751f4ff82d9f29))
149
478
 
150
479
 
151
480
  ### Dependencies
@@ -155,12 +484,12 @@
155
484
  * @twin.org/identity-models bumped from 0.0.2-next.3 to 0.0.2-next.4
156
485
  * @twin.org/identity-connector-iota bumped from 0.0.2-next.3 to 0.0.2-next.4
157
486
 
158
- ## [0.0.2-next.3](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.2-next.2...identity-cli-v0.0.2-next.3) (2025-08-29)
487
+ ## [0.0.2-next.3](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.2-next.2...identity-cli-v0.0.2-next.3) (2025-08-29)
159
488
 
160
489
 
161
490
  ### Features
162
491
 
163
- * eslint migration to flat config ([fd6246d](https://github.com/twinfoundation/identity/commit/fd6246d566280b6d5d10a108eb1e92c4b510f2f2))
492
+ * eslint migration to flat config ([fd6246d](https://github.com/iotaledger/twin-identity/commit/fd6246d566280b6d5d10a108eb1e92c4b510f2f2))
164
493
 
165
494
 
166
495
  ### Dependencies
@@ -170,12 +499,12 @@
170
499
  * @twin.org/identity-models bumped from 0.0.2-next.2 to 0.0.2-next.3
171
500
  * @twin.org/identity-connector-iota bumped from 0.0.2-next.2 to 0.0.2-next.3
172
501
 
173
- ## [0.0.2-next.2](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.2-next.1...identity-cli-v0.0.2-next.2) (2025-08-20)
502
+ ## [0.0.2-next.2](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.2-next.1...identity-cli-v0.0.2-next.2) (2025-08-20)
174
503
 
175
504
 
176
505
  ### Features
177
506
 
178
- * update framework core ([c824497](https://github.com/twinfoundation/identity/commit/c82449709af0215eb7af496cf687c93fb30b5ae0))
507
+ * update framework core ([c824497](https://github.com/iotaledger/twin-identity/commit/c82449709af0215eb7af496cf687c93fb30b5ae0))
179
508
 
180
509
 
181
510
  ### Dependencies
@@ -185,26 +514,26 @@
185
514
  * @twin.org/identity-models bumped from 0.0.2-next.1 to 0.0.2-next.2
186
515
  * @twin.org/identity-connector-iota bumped from 0.0.2-next.1 to 0.0.2-next.2
187
516
 
188
- ## [0.0.2-next.1](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.2-next.0...identity-cli-v0.0.2-next.1) (2025-08-18)
517
+ ## [0.0.2-next.1](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.2-next.0...identity-cli-v0.0.2-next.1) (2025-08-18)
189
518
 
190
519
 
191
520
  ### Features
192
521
 
193
- * add mainnet support ([af56a38](https://github.com/twinfoundation/identity/commit/af56a382837896cd4e13d5814c0924c46658b99c))
194
- * identity key separator use slash ([1319d0d](https://github.com/twinfoundation/identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
195
- * iota rebased release ([5d14674](https://github.com/twinfoundation/identity/commit/5d146744ca9eed622ef7eb34a7fa935216f9e975))
196
- * support mainnet for alias extraction ([1114e0f](https://github.com/twinfoundation/identity/commit/1114e0f518070ef930d7d6ed73a616cce647206c))
197
- * use new generateKid method ([f0fe779](https://github.com/twinfoundation/identity/commit/f0fe779323b675575bb9f80aa74f1957dc57a094))
198
- * use shared store mechanism ([#27](https://github.com/twinfoundation/identity/issues/27)) ([ce41f3f](https://github.com/twinfoundation/identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
199
- * verification method output JWK and hex on CLI ([49db9da](https://github.com/twinfoundation/identity/commit/49db9da2371eafdcd7176ce44303961b9b8b8380))
522
+ * add mainnet support ([af56a38](https://github.com/iotaledger/twin-identity/commit/af56a382837896cd4e13d5814c0924c46658b99c))
523
+ * identity key separator use slash ([1319d0d](https://github.com/iotaledger/twin-identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
524
+ * iota rebased release ([5d14674](https://github.com/iotaledger/twin-identity/commit/5d146744ca9eed622ef7eb34a7fa935216f9e975))
525
+ * support mainnet for alias extraction ([1114e0f](https://github.com/iotaledger/twin-identity/commit/1114e0f518070ef930d7d6ed73a616cce647206c))
526
+ * use new generateKid method ([f0fe779](https://github.com/iotaledger/twin-identity/commit/f0fe779323b675575bb9f80aa74f1957dc57a094))
527
+ * use shared store mechanism ([#27](https://github.com/iotaledger/twin-identity/issues/27)) ([ce41f3f](https://github.com/iotaledger/twin-identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
528
+ * verification method output JWK and hex on CLI ([49db9da](https://github.com/iotaledger/twin-identity/commit/49db9da2371eafdcd7176ce44303961b9b8b8380))
200
529
 
201
530
 
202
531
  ### Bug Fixes
203
532
 
204
- * correctly display mainnet explorer urls ([45a9f3c](https://github.com/twinfoundation/identity/commit/45a9f3cc041cce7b40a86e98df306931a95f48ea))
205
- * explorer urls in CLI ([82a745d](https://github.com/twinfoundation/identity/commit/82a745d536e8fe42554e7ad92a7468a653fc0cfb))
206
- * Import path and bump version ([#21](https://github.com/twinfoundation/identity/issues/21)) ([ccea845](https://github.com/twinfoundation/identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
207
- * Install sdk-wasm ([#20](https://github.com/twinfoundation/identity/issues/20)) ([75ec14e](https://github.com/twinfoundation/identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
533
+ * correctly display mainnet explorer urls ([45a9f3c](https://github.com/iotaledger/twin-identity/commit/45a9f3cc041cce7b40a86e98df306931a95f48ea))
534
+ * explorer urls in CLI ([82a745d](https://github.com/iotaledger/twin-identity/commit/82a745d536e8fe42554e7ad92a7468a653fc0cfb))
535
+ * Import path and bump version ([#21](https://github.com/iotaledger/twin-identity/issues/21)) ([ccea845](https://github.com/iotaledger/twin-identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
536
+ * Install sdk-wasm ([#20](https://github.com/iotaledger/twin-identity/issues/20)) ([75ec14e](https://github.com/iotaledger/twin-identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
208
537
 
209
538
 
210
539
  ### Dependencies
@@ -219,7 +548,7 @@
219
548
 
220
549
  ### Features
221
550
 
222
- * release to production ([8450ad7](https://github.com/twinfoundation/identity/commit/8450ad727e0c4d665f2ce483e41798c2ff5b7d55))
551
+ * release to production ([8450ad7](https://github.com/iotaledger/twin-identity/commit/8450ad727e0c4d665f2ce483e41798c2ff5b7d55))
223
552
 
224
553
 
225
554
  ### Dependencies
@@ -229,7 +558,7 @@
229
558
  * @twin.org/identity-models bumped from ^0.0.0 to ^0.0.1
230
559
  * @twin.org/identity-connector-iota bumped from ^0.0.0 to ^0.0.1
231
560
 
232
- ## [0.0.1-next.57](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.56...identity-cli-v0.0.1-next.57) (2025-07-08)
561
+ ## [0.0.1-next.57](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.56...identity-cli-v0.0.1-next.57) (2025-07-08)
233
562
 
234
563
 
235
564
  ### Miscellaneous Chores
@@ -244,7 +573,7 @@
244
573
  * @twin.org/identity-models bumped from 0.0.1-next.56 to 0.0.1-next.57
245
574
  * @twin.org/identity-connector-iota bumped from 0.0.1-next.56 to 0.0.1-next.57
246
575
 
247
- ## [0.0.1-next.56](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.55...identity-cli-v0.0.1-next.56) (2025-06-30)
576
+ ## [0.0.1-next.56](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.55...identity-cli-v0.0.1-next.56) (2025-06-30)
248
577
 
249
578
 
250
579
  ### Miscellaneous Chores
@@ -259,25 +588,25 @@
259
588
  * @twin.org/identity-models bumped from 0.0.1-next.55 to 0.0.1-next.56
260
589
  * @twin.org/identity-connector-iota bumped from 0.0.1-next.55 to 0.0.1-next.56
261
590
 
262
- ## [0.0.1-next.55](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.54...identity-cli-v0.0.1-next.55) (2025-06-26)
591
+ ## [0.0.1-next.55](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.54...identity-cli-v0.0.1-next.55) (2025-06-26)
263
592
 
264
593
 
265
594
  ### Features
266
595
 
267
- * add mainnet support ([af56a38](https://github.com/twinfoundation/identity/commit/af56a382837896cd4e13d5814c0924c46658b99c))
268
- * identity key separator use slash ([1319d0d](https://github.com/twinfoundation/identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
269
- * iota rebased release ([5d14674](https://github.com/twinfoundation/identity/commit/5d146744ca9eed622ef7eb34a7fa935216f9e975))
270
- * support mainnet for alias extraction ([1114e0f](https://github.com/twinfoundation/identity/commit/1114e0f518070ef930d7d6ed73a616cce647206c))
271
- * use new generateKid method ([f0fe779](https://github.com/twinfoundation/identity/commit/f0fe779323b675575bb9f80aa74f1957dc57a094))
272
- * use shared store mechanism ([#27](https://github.com/twinfoundation/identity/issues/27)) ([ce41f3f](https://github.com/twinfoundation/identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
273
- * verification method output JWK and hex on CLI ([49db9da](https://github.com/twinfoundation/identity/commit/49db9da2371eafdcd7176ce44303961b9b8b8380))
596
+ * add mainnet support ([af56a38](https://github.com/iotaledger/twin-identity/commit/af56a382837896cd4e13d5814c0924c46658b99c))
597
+ * identity key separator use slash ([1319d0d](https://github.com/iotaledger/twin-identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
598
+ * iota rebased release ([5d14674](https://github.com/iotaledger/twin-identity/commit/5d146744ca9eed622ef7eb34a7fa935216f9e975))
599
+ * support mainnet for alias extraction ([1114e0f](https://github.com/iotaledger/twin-identity/commit/1114e0f518070ef930d7d6ed73a616cce647206c))
600
+ * use new generateKid method ([f0fe779](https://github.com/iotaledger/twin-identity/commit/f0fe779323b675575bb9f80aa74f1957dc57a094))
601
+ * use shared store mechanism ([#27](https://github.com/iotaledger/twin-identity/issues/27)) ([ce41f3f](https://github.com/iotaledger/twin-identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
602
+ * verification method output JWK and hex on CLI ([49db9da](https://github.com/iotaledger/twin-identity/commit/49db9da2371eafdcd7176ce44303961b9b8b8380))
274
603
 
275
604
 
276
605
  ### Bug Fixes
277
606
 
278
- * explorer urls in CLI ([82a745d](https://github.com/twinfoundation/identity/commit/82a745d536e8fe42554e7ad92a7468a653fc0cfb))
279
- * Import path and bump version ([#21](https://github.com/twinfoundation/identity/issues/21)) ([ccea845](https://github.com/twinfoundation/identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
280
- * Install sdk-wasm ([#20](https://github.com/twinfoundation/identity/issues/20)) ([75ec14e](https://github.com/twinfoundation/identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
607
+ * explorer urls in CLI ([82a745d](https://github.com/iotaledger/twin-identity/commit/82a745d536e8fe42554e7ad92a7468a653fc0cfb))
608
+ * Import path and bump version ([#21](https://github.com/iotaledger/twin-identity/issues/21)) ([ccea845](https://github.com/iotaledger/twin-identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
609
+ * Install sdk-wasm ([#20](https://github.com/iotaledger/twin-identity/issues/20)) ([75ec14e](https://github.com/iotaledger/twin-identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
281
610
 
282
611
 
283
612
  ### Dependencies
@@ -287,7 +616,7 @@
287
616
  * @twin.org/identity-models bumped from 0.0.1-next.54 to 0.0.1-next.55
288
617
  * @twin.org/identity-connector-iota bumped from 0.0.1-next.54 to 0.0.1-next.55
289
618
 
290
- ## [0.0.1-next.54](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.53...identity-cli-v0.0.1-next.54) (2025-06-26)
619
+ ## [0.0.1-next.54](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.53...identity-cli-v0.0.1-next.54) (2025-06-26)
291
620
 
292
621
 
293
622
  ### Miscellaneous Chores
@@ -302,7 +631,7 @@
302
631
  * @twin.org/identity-models bumped from 0.0.1-next.53 to 0.0.1-next.54
303
632
  * @twin.org/identity-connector-iota bumped from 0.0.1-next.53 to 0.0.1-next.54
304
633
 
305
- ## [0.0.1-next.53](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.52...identity-cli-v0.0.1-next.53) (2025-06-23)
634
+ ## [0.0.1-next.53](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.52...identity-cli-v0.0.1-next.53) (2025-06-23)
306
635
 
307
636
 
308
637
  ### Miscellaneous Chores
@@ -317,7 +646,7 @@
317
646
  * @twin.org/identity-models bumped from 0.0.1-next.52 to 0.0.1-next.53
318
647
  * @twin.org/identity-connector-iota bumped from 0.0.1-next.52 to 0.0.1-next.53
319
648
 
320
- ## [0.0.1-next.52](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.51...identity-cli-v0.0.1-next.52) (2025-06-20)
649
+ ## [0.0.1-next.52](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.51...identity-cli-v0.0.1-next.52) (2025-06-20)
321
650
 
322
651
 
323
652
  ### Miscellaneous Chores
@@ -332,12 +661,12 @@
332
661
  * @twin.org/identity-models bumped from 0.0.1-next.51 to 0.0.1-next.52
333
662
  * @twin.org/identity-connector-iota bumped from 0.0.1-next.51 to 0.0.1-next.52
334
663
 
335
- ## [0.0.1-next.51](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.50...identity-cli-v0.0.1-next.51) (2025-06-19)
664
+ ## [0.0.1-next.51](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.50...identity-cli-v0.0.1-next.51) (2025-06-19)
336
665
 
337
666
 
338
667
  ### Features
339
668
 
340
- * support mainnet for alias extraction ([1114e0f](https://github.com/twinfoundation/identity/commit/1114e0f518070ef930d7d6ed73a616cce647206c))
669
+ * support mainnet for alias extraction ([1114e0f](https://github.com/iotaledger/twin-identity/commit/1114e0f518070ef930d7d6ed73a616cce647206c))
341
670
 
342
671
 
343
672
  ### Dependencies
@@ -347,12 +676,12 @@
347
676
  * @twin.org/identity-models bumped from 0.0.1-next.50 to 0.0.1-next.51
348
677
  * @twin.org/identity-connector-iota bumped from 0.0.1-next.50 to 0.0.1-next.51
349
678
 
350
- ## [0.0.1-next.50](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.49...identity-cli-v0.0.1-next.50) (2025-06-19)
679
+ ## [0.0.1-next.50](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.49...identity-cli-v0.0.1-next.50) (2025-06-19)
351
680
 
352
681
 
353
682
  ### Features
354
683
 
355
- * use new generateKid method ([f0fe779](https://github.com/twinfoundation/identity/commit/f0fe779323b675575bb9f80aa74f1957dc57a094))
684
+ * use new generateKid method ([f0fe779](https://github.com/iotaledger/twin-identity/commit/f0fe779323b675575bb9f80aa74f1957dc57a094))
356
685
 
357
686
 
358
687
  ### Dependencies
@@ -362,12 +691,12 @@
362
691
  * @twin.org/identity-models bumped from 0.0.1-next.49 to 0.0.1-next.50
363
692
  * @twin.org/identity-connector-iota bumped from 0.0.1-next.49 to 0.0.1-next.50
364
693
 
365
- ## [0.0.1-next.49](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.48...identity-cli-v0.0.1-next.49) (2025-06-18)
694
+ ## [0.0.1-next.49](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.48...identity-cli-v0.0.1-next.49) (2025-06-18)
366
695
 
367
696
 
368
697
  ### Features
369
698
 
370
- * verification method output JWK and hex on CLI ([49db9da](https://github.com/twinfoundation/identity/commit/49db9da2371eafdcd7176ce44303961b9b8b8380))
699
+ * verification method output JWK and hex on CLI ([49db9da](https://github.com/iotaledger/twin-identity/commit/49db9da2371eafdcd7176ce44303961b9b8b8380))
371
700
 
372
701
 
373
702
  ### Dependencies
@@ -377,12 +706,12 @@
377
706
  * @twin.org/identity-models bumped from 0.0.1-next.48 to 0.0.1-next.49
378
707
  * @twin.org/identity-connector-iota bumped from 0.0.1-next.48 to 0.0.1-next.49
379
708
 
380
- ## [0.0.1-next.48](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.47...identity-cli-v0.0.1-next.48) (2025-06-17)
709
+ ## [0.0.1-next.48](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.47...identity-cli-v0.0.1-next.48) (2025-06-17)
381
710
 
382
711
 
383
712
  ### Features
384
713
 
385
- * add mainnet support ([af56a38](https://github.com/twinfoundation/identity/commit/af56a382837896cd4e13d5814c0924c46658b99c))
714
+ * add mainnet support ([af56a38](https://github.com/iotaledger/twin-identity/commit/af56a382837896cd4e13d5814c0924c46658b99c))
386
715
 
387
716
 
388
717
  ### Dependencies
@@ -392,12 +721,12 @@
392
721
  * @twin.org/identity-models bumped from 0.0.1-next.47 to 0.0.1-next.48
393
722
  * @twin.org/identity-connector-iota bumped from 0.0.1-next.47 to 0.0.1-next.48
394
723
 
395
- ## [0.0.1-next.47](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.46...identity-cli-v0.0.1-next.47) (2025-06-12)
724
+ ## [0.0.1-next.47](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.46...identity-cli-v0.0.1-next.47) (2025-06-12)
396
725
 
397
726
 
398
727
  ### Features
399
728
 
400
- * identity key separator use slash ([1319d0d](https://github.com/twinfoundation/identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
729
+ * identity key separator use slash ([1319d0d](https://github.com/iotaledger/twin-identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
401
730
 
402
731
 
403
732
  ### Dependencies
@@ -407,20 +736,20 @@
407
736
  * @twin.org/identity-models bumped from 0.0.1-next.46 to 0.0.1-next.47
408
737
  * @twin.org/identity-connector-iota bumped from 0.0.1-next.46 to 0.0.1-next.47
409
738
 
410
- ## [0.0.1-next.46](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.45...identity-cli-v0.0.1-next.46) (2025-05-20)
739
+ ## [0.0.1-next.46](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.45...identity-cli-v0.0.1-next.46) (2025-05-20)
411
740
 
412
741
 
413
742
  ### Features
414
743
 
415
- * iota rebased release ([5d14674](https://github.com/twinfoundation/identity/commit/5d146744ca9eed622ef7eb34a7fa935216f9e975))
416
- * use shared store mechanism ([#27](https://github.com/twinfoundation/identity/issues/27)) ([ce41f3f](https://github.com/twinfoundation/identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
744
+ * iota rebased release ([5d14674](https://github.com/iotaledger/twin-identity/commit/5d146744ca9eed622ef7eb34a7fa935216f9e975))
745
+ * use shared store mechanism ([#27](https://github.com/iotaledger/twin-identity/issues/27)) ([ce41f3f](https://github.com/iotaledger/twin-identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
417
746
 
418
747
 
419
748
  ### Bug Fixes
420
749
 
421
- * explorer urls in CLI ([82a745d](https://github.com/twinfoundation/identity/commit/82a745d536e8fe42554e7ad92a7468a653fc0cfb))
422
- * Import path and bump version ([#21](https://github.com/twinfoundation/identity/issues/21)) ([ccea845](https://github.com/twinfoundation/identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
423
- * Install sdk-wasm ([#20](https://github.com/twinfoundation/identity/issues/20)) ([75ec14e](https://github.com/twinfoundation/identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
750
+ * explorer urls in CLI ([82a745d](https://github.com/iotaledger/twin-identity/commit/82a745d536e8fe42554e7ad92a7468a653fc0cfb))
751
+ * Import path and bump version ([#21](https://github.com/iotaledger/twin-identity/issues/21)) ([ccea845](https://github.com/iotaledger/twin-identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
752
+ * Install sdk-wasm ([#20](https://github.com/iotaledger/twin-identity/issues/20)) ([75ec14e](https://github.com/iotaledger/twin-identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
424
753
 
425
754
 
426
755
  ### Dependencies
@@ -430,12 +759,12 @@
430
759
  * @twin.org/identity-models bumped from 0.0.1-next.45 to 0.0.1-next.46
431
760
  * @twin.org/identity-connector-iota bumped from 0.0.1-next.45 to 0.0.1-next.46
432
761
 
433
- ## [0.0.1-next.45](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.44...identity-cli-v0.0.1-next.45) (2025-05-06)
762
+ ## [0.0.1-next.45](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.44...identity-cli-v0.0.1-next.45) (2025-05-06)
434
763
 
435
764
 
436
765
  ### Features
437
766
 
438
- * iota rebased release ([5d14674](https://github.com/twinfoundation/identity/commit/5d146744ca9eed622ef7eb34a7fa935216f9e975))
767
+ * iota rebased release ([5d14674](https://github.com/iotaledger/twin-identity/commit/5d146744ca9eed622ef7eb34a7fa935216f9e975))
439
768
 
440
769
 
441
770
  ### Dependencies
@@ -445,7 +774,7 @@
445
774
  * @twin.org/identity-models bumped from 0.0.1-next.44 to 0.0.1-next.45
446
775
  * @twin.org/identity-connector-iota bumped from 0.0.1-next.44 to 0.0.1-next.45
447
776
 
448
- ## [0.0.1-next.44](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.43...identity-cli-v0.0.1-next.44) (2025-04-30)
777
+ ## [0.0.1-next.44](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.43...identity-cli-v0.0.1-next.44) (2025-04-30)
449
778
 
450
779
 
451
780
  ### Miscellaneous Chores
@@ -460,12 +789,12 @@
460
789
  * @twin.org/identity-models bumped from 0.0.1-next.43 to 0.0.1-next.44
461
790
  * @twin.org/identity-connector-iota bumped from 0.0.1-next.43 to 0.0.1-next.44
462
791
 
463
- ## [0.0.1-next.43](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.42...identity-cli-v0.0.1-next.43) (2025-04-25)
792
+ ## [0.0.1-next.43](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.42...identity-cli-v0.0.1-next.43) (2025-04-25)
464
793
 
465
794
 
466
795
  ### Bug Fixes
467
796
 
468
- * explorer urls in CLI ([82a745d](https://github.com/twinfoundation/identity/commit/82a745d536e8fe42554e7ad92a7468a653fc0cfb))
797
+ * explorer urls in CLI ([82a745d](https://github.com/iotaledger/twin-identity/commit/82a745d536e8fe42554e7ad92a7468a653fc0cfb))
469
798
 
470
799
 
471
800
  ### Dependencies
@@ -475,12 +804,12 @@
475
804
  * @twin.org/identity-models bumped from 0.0.1-next.42 to 0.0.1-next.43
476
805
  * @twin.org/identity-connector-iota bumped from 0.0.1-next.42 to 0.0.1-next.43
477
806
 
478
- ## [0.0.1-next.42](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.41...identity-cli-v0.0.1-next.42) (2025-04-17)
807
+ ## [0.0.1-next.42](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.41...identity-cli-v0.0.1-next.42) (2025-04-17)
479
808
 
480
809
 
481
810
  ### Features
482
811
 
483
- * use shared store mechanism ([#27](https://github.com/twinfoundation/identity/issues/27)) ([ce41f3f](https://github.com/twinfoundation/identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
812
+ * use shared store mechanism ([#27](https://github.com/iotaledger/twin-identity/issues/27)) ([ce41f3f](https://github.com/iotaledger/twin-identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
484
813
 
485
814
 
486
815
  ### Dependencies
@@ -490,7 +819,7 @@
490
819
  * @twin.org/identity-models bumped from 0.0.1-next.41 to 0.0.1-next.42
491
820
  * @twin.org/identity-connector-iota bumped from 0.0.1-next.41 to 0.0.1-next.42
492
821
 
493
- ## [0.0.1-next.41](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.40...identity-cli-v0.0.1-next.41) (2025-04-09)
822
+ ## [0.0.1-next.41](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.40...identity-cli-v0.0.1-next.41) (2025-04-09)
494
823
 
495
824
 
496
825
  ### Miscellaneous Chores
@@ -505,13 +834,13 @@
505
834
  * @twin.org/identity-models bumped from 0.0.1-next.40 to 0.0.1-next.41
506
835
  * @twin.org/identity-connector-iota bumped from 0.0.1-next.40 to 0.0.1-next.41
507
836
 
508
- ## [0.0.1-next.40](https://github.com/twinfoundation/identity/compare/identity-cli-v0.0.1-next.39...identity-cli-v0.0.1-next.40) (2025-03-28)
837
+ ## [0.0.1-next.40](https://github.com/iotaledger/twin-identity/compare/identity-cli-v0.0.1-next.39...identity-cli-v0.0.1-next.40) (2025-03-28)
509
838
 
510
839
 
511
840
  ### Bug Fixes
512
841
 
513
- * Import path and bump version ([#21](https://github.com/twinfoundation/identity/issues/21)) ([ccea845](https://github.com/twinfoundation/identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
514
- * Install sdk-wasm ([#20](https://github.com/twinfoundation/identity/issues/20)) ([75ec14e](https://github.com/twinfoundation/identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
842
+ * Import path and bump version ([#21](https://github.com/iotaledger/twin-identity/issues/21)) ([ccea845](https://github.com/iotaledger/twin-identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
843
+ * Install sdk-wasm ([#20](https://github.com/iotaledger/twin-identity/issues/20)) ([75ec14e](https://github.com/iotaledger/twin-identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
515
844
 
516
845
 
517
846
  ### Dependencies