@twin.org/crypto-cli 0.0.1-next.9 → 0.0.2-next.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.cjs +6 -10
- package/dist/esm/index.mjs +6 -10
- package/dist/locales/en.json +334 -322
- package/dist/types/commands/address.d.ts +0 -2
- package/docs/changelog.md +506 -1
- package/docs/examples.md +34 -37
- package/docs/reference/classes/CLI.md +14 -8
- package/docs/reference/functions/actionCommandAddress.md +3 -1
- package/docs/reference/functions/actionCommandMnemonic.md +3 -1
- package/locales/en.json +4 -9
- package/package.json +8 -8
|
@@ -12,7 +12,6 @@ export declare function buildCommandAddress(): Command;
|
|
|
12
12
|
* @param opts.start The start index for the address generation.
|
|
13
13
|
* @param opts.count The number of addresses to generate.
|
|
14
14
|
* @param opts.account The account index for the address generation.
|
|
15
|
-
* @param opts.hrp The human readable part for the address.
|
|
16
15
|
* @param opts.coin The coin type for the address.
|
|
17
16
|
* @param opts.keyType The key type for the address.
|
|
18
17
|
* @param opts.keyFormat The output format of the key.
|
|
@@ -22,7 +21,6 @@ export declare function actionCommandAddress(opts: {
|
|
|
22
21
|
start: string;
|
|
23
22
|
count: string;
|
|
24
23
|
account: string;
|
|
25
|
-
hrp: string;
|
|
26
24
|
coin: string;
|
|
27
25
|
keyType: "Ed25519" | "Secp256k1";
|
|
28
26
|
keyFormat: "hex" | "base64";
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,510 @@
|
|
|
1
1
|
# @twin.org/crypto-cli - Changelog
|
|
2
2
|
|
|
3
|
-
## 0.0.
|
|
3
|
+
## [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)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
|
|
9
|
+
* add version type ([ae50cd9](https://github.com/twinfoundation/framework/commit/ae50cd99d342ed8eeb55290a52e9fed80a2af99e))
|
|
10
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
11
|
+
* remove version type ([553aa55](https://github.com/twinfoundation/framework/commit/553aa55bd79b8f930155035e522af2b0f6e3d0c8))
|
|
12
|
+
* update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
|
|
13
|
+
* use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* crypto CLI address output to JSON ([0398604](https://github.com/twinfoundation/framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
|
|
19
|
+
* crypto CLI address output to JSON ([3397bfb](https://github.com/twinfoundation/framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
|
|
20
|
+
* remove bech32 from crypto-cli ([892aa5f](https://github.com/twinfoundation/framework/commit/892aa5f746a4bc806f2dada3611c03fadcfe5a7b))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Dependencies
|
|
24
|
+
|
|
25
|
+
* The following workspace dependencies were updated
|
|
26
|
+
* dependencies
|
|
27
|
+
* @twin.org/cli-core bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
28
|
+
* @twin.org/core bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
29
|
+
* @twin.org/crypto bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
30
|
+
* @twin.org/nameof bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
31
|
+
* devDependencies
|
|
32
|
+
* @twin.org/merge-locales bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
33
|
+
* @twin.org/nameof-transformer bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
34
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
35
|
+
|
|
36
|
+
## [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)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
### Features
|
|
40
|
+
|
|
41
|
+
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
|
|
42
|
+
* add version type ([ae50cd9](https://github.com/twinfoundation/framework/commit/ae50cd99d342ed8eeb55290a52e9fed80a2af99e))
|
|
43
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
44
|
+
* remove version type ([553aa55](https://github.com/twinfoundation/framework/commit/553aa55bd79b8f930155035e522af2b0f6e3d0c8))
|
|
45
|
+
* update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
|
|
46
|
+
* use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
### Bug Fixes
|
|
50
|
+
|
|
51
|
+
* crypto CLI address output to JSON ([0398604](https://github.com/twinfoundation/framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
|
|
52
|
+
* crypto CLI address output to JSON ([3397bfb](https://github.com/twinfoundation/framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
|
|
53
|
+
* remove bech32 from crypto-cli ([892aa5f](https://github.com/twinfoundation/framework/commit/892aa5f746a4bc806f2dada3611c03fadcfe5a7b))
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
### Dependencies
|
|
57
|
+
|
|
58
|
+
* The following workspace dependencies were updated
|
|
59
|
+
* dependencies
|
|
60
|
+
* @twin.org/cli-core bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
61
|
+
* @twin.org/core bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
62
|
+
* @twin.org/crypto bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
63
|
+
* @twin.org/nameof bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
64
|
+
* devDependencies
|
|
65
|
+
* @twin.org/merge-locales bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
66
|
+
* @twin.org/nameof-transformer bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
67
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
68
|
+
|
|
69
|
+
## [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)
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
### Features
|
|
73
|
+
|
|
74
|
+
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
|
|
75
|
+
* add version type ([ae50cd9](https://github.com/twinfoundation/framework/commit/ae50cd99d342ed8eeb55290a52e9fed80a2af99e))
|
|
76
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
77
|
+
* remove version type ([553aa55](https://github.com/twinfoundation/framework/commit/553aa55bd79b8f930155035e522af2b0f6e3d0c8))
|
|
78
|
+
* update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
|
|
79
|
+
* use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
### Bug Fixes
|
|
83
|
+
|
|
84
|
+
* crypto CLI address output to JSON ([0398604](https://github.com/twinfoundation/framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
|
|
85
|
+
* crypto CLI address output to JSON ([3397bfb](https://github.com/twinfoundation/framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
|
|
86
|
+
* remove bech32 from crypto-cli ([892aa5f](https://github.com/twinfoundation/framework/commit/892aa5f746a4bc806f2dada3611c03fadcfe5a7b))
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
### Dependencies
|
|
90
|
+
|
|
91
|
+
* The following workspace dependencies were updated
|
|
92
|
+
* dependencies
|
|
93
|
+
* @twin.org/cli-core bumped from 0.0.2-next.0 to 0.0.2-next.1
|
|
94
|
+
* @twin.org/core bumped from 0.0.2-next.0 to 0.0.2-next.1
|
|
95
|
+
* @twin.org/crypto bumped from 0.0.2-next.0 to 0.0.2-next.1
|
|
96
|
+
* @twin.org/nameof bumped from 0.0.2-next.0 to 0.0.2-next.1
|
|
97
|
+
* devDependencies
|
|
98
|
+
* @twin.org/merge-locales bumped from 0.0.2-next.0 to 0.0.2-next.1
|
|
99
|
+
* @twin.org/nameof-transformer bumped from 0.0.2-next.0 to 0.0.2-next.1
|
|
100
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.0 to 0.0.2-next.1
|
|
101
|
+
|
|
102
|
+
## 0.0.1 (2025-07-03)
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
### Features
|
|
106
|
+
|
|
107
|
+
* release to production ([829d53d](https://github.com/twinfoundation/framework/commit/829d53d3953b1e1b40b0243c04cfdfd3842aac7b))
|
|
108
|
+
* release to production ([5cf3a76](https://github.com/twinfoundation/framework/commit/5cf3a76a09eff2e6414d0cba846c7c37400a11d6))
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
### Dependencies
|
|
112
|
+
|
|
113
|
+
* The following workspace dependencies were updated
|
|
114
|
+
* dependencies
|
|
115
|
+
* @twin.org/cli-core bumped from ^0.0.0 to ^0.0.1
|
|
116
|
+
* @twin.org/core bumped from ^0.0.0 to ^0.0.1
|
|
117
|
+
* @twin.org/crypto bumped from ^0.0.0 to ^0.0.1
|
|
118
|
+
* @twin.org/nameof bumped from ^0.0.0 to ^0.0.1
|
|
119
|
+
* devDependencies
|
|
120
|
+
* @twin.org/merge-locales bumped from ^0.0.0 to ^0.0.1
|
|
121
|
+
* @twin.org/nameof-transformer bumped from ^0.0.0 to ^0.0.1
|
|
122
|
+
* @twin.org/nameof-vitest-plugin bumped from ^0.0.0 to ^0.0.1
|
|
123
|
+
|
|
124
|
+
## [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)
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
### Features
|
|
128
|
+
|
|
129
|
+
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
|
|
130
|
+
* add version type ([ae50cd9](https://github.com/twinfoundation/framework/commit/ae50cd99d342ed8eeb55290a52e9fed80a2af99e))
|
|
131
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
132
|
+
* remove version type ([553aa55](https://github.com/twinfoundation/framework/commit/553aa55bd79b8f930155035e522af2b0f6e3d0c8))
|
|
133
|
+
* use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
### Bug Fixes
|
|
137
|
+
|
|
138
|
+
* crypto CLI address output to JSON ([0398604](https://github.com/twinfoundation/framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
|
|
139
|
+
* crypto CLI address output to JSON ([3397bfb](https://github.com/twinfoundation/framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
|
|
140
|
+
* remove bech32 from crypto-cli ([892aa5f](https://github.com/twinfoundation/framework/commit/892aa5f746a4bc806f2dada3611c03fadcfe5a7b))
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
### Dependencies
|
|
144
|
+
|
|
145
|
+
* The following workspace dependencies were updated
|
|
146
|
+
* dependencies
|
|
147
|
+
* @twin.org/cli-core bumped from 0.0.1-next.69 to 0.0.1-next.70
|
|
148
|
+
* @twin.org/core bumped from 0.0.1-next.69 to 0.0.1-next.70
|
|
149
|
+
* @twin.org/crypto bumped from 0.0.1-next.69 to 0.0.1-next.70
|
|
150
|
+
* @twin.org/nameof bumped from 0.0.1-next.69 to 0.0.1-next.70
|
|
151
|
+
* devDependencies
|
|
152
|
+
* @twin.org/merge-locales bumped from 0.0.1-next.69 to 0.0.1-next.70
|
|
153
|
+
* @twin.org/nameof-transformer bumped from 0.0.1-next.69 to 0.0.1-next.70
|
|
154
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.69 to 0.0.1-next.70
|
|
155
|
+
|
|
156
|
+
## [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)
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
### Features
|
|
160
|
+
|
|
161
|
+
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
|
|
162
|
+
* add version type ([ae50cd9](https://github.com/twinfoundation/framework/commit/ae50cd99d342ed8eeb55290a52e9fed80a2af99e))
|
|
163
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
164
|
+
* remove version type ([553aa55](https://github.com/twinfoundation/framework/commit/553aa55bd79b8f930155035e522af2b0f6e3d0c8))
|
|
165
|
+
* use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
### Bug Fixes
|
|
169
|
+
|
|
170
|
+
* crypto CLI address output to JSON ([0398604](https://github.com/twinfoundation/framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
|
|
171
|
+
* crypto CLI address output to JSON ([3397bfb](https://github.com/twinfoundation/framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
|
|
172
|
+
* remove bech32 from crypto-cli ([892aa5f](https://github.com/twinfoundation/framework/commit/892aa5f746a4bc806f2dada3611c03fadcfe5a7b))
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
### Dependencies
|
|
176
|
+
|
|
177
|
+
* The following workspace dependencies were updated
|
|
178
|
+
* dependencies
|
|
179
|
+
* @twin.org/cli-core bumped from 0.0.1-next.68 to 0.0.1-next.69
|
|
180
|
+
* @twin.org/core bumped from 0.0.1-next.68 to 0.0.1-next.69
|
|
181
|
+
* @twin.org/crypto bumped from 0.0.1-next.68 to 0.0.1-next.69
|
|
182
|
+
* @twin.org/nameof bumped from 0.0.1-next.68 to 0.0.1-next.69
|
|
183
|
+
* devDependencies
|
|
184
|
+
* @twin.org/merge-locales bumped from 0.0.1-next.68 to 0.0.1-next.69
|
|
185
|
+
* @twin.org/nameof-transformer bumped from 0.0.1-next.68 to 0.0.1-next.69
|
|
186
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.68 to 0.0.1-next.69
|
|
187
|
+
|
|
188
|
+
## [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)
|
|
189
|
+
|
|
190
|
+
|
|
191
|
+
### Features
|
|
192
|
+
|
|
193
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
### Dependencies
|
|
197
|
+
|
|
198
|
+
* The following workspace dependencies were updated
|
|
199
|
+
* dependencies
|
|
200
|
+
* @twin.org/cli-core bumped from 0.0.1-next.67 to 0.0.1-next.68
|
|
201
|
+
* @twin.org/core bumped from 0.0.1-next.67 to 0.0.1-next.68
|
|
202
|
+
* @twin.org/crypto bumped from 0.0.1-next.67 to 0.0.1-next.68
|
|
203
|
+
* @twin.org/nameof bumped from 0.0.1-next.67 to 0.0.1-next.68
|
|
204
|
+
* devDependencies
|
|
205
|
+
* @twin.org/merge-locales bumped from 0.0.1-next.67 to 0.0.1-next.68
|
|
206
|
+
* @twin.org/nameof-transformer bumped from 0.0.1-next.67 to 0.0.1-next.68
|
|
207
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.67 to 0.0.1-next.68
|
|
208
|
+
|
|
209
|
+
## [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)
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
### Bug Fixes
|
|
213
|
+
|
|
214
|
+
* remove bech32 from crypto-cli ([892aa5f](https://github.com/twinfoundation/framework/commit/892aa5f746a4bc806f2dada3611c03fadcfe5a7b))
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
### Dependencies
|
|
218
|
+
|
|
219
|
+
* The following workspace dependencies were updated
|
|
220
|
+
* dependencies
|
|
221
|
+
* @twin.org/cli-core bumped from 0.0.1-next.66 to 0.0.1-next.67
|
|
222
|
+
* @twin.org/core bumped from 0.0.1-next.66 to 0.0.1-next.67
|
|
223
|
+
* @twin.org/crypto bumped from 0.0.1-next.66 to 0.0.1-next.67
|
|
224
|
+
|
|
225
|
+
## [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)
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
### Miscellaneous Chores
|
|
229
|
+
|
|
230
|
+
* **crypto-cli:** Synchronize repo versions
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
### Dependencies
|
|
234
|
+
|
|
235
|
+
* The following workspace dependencies were updated
|
|
236
|
+
* dependencies
|
|
237
|
+
* @twin.org/cli-core bumped from 0.0.1-next.65 to 0.0.1-next.66
|
|
238
|
+
* @twin.org/core bumped from 0.0.1-next.65 to 0.0.1-next.66
|
|
239
|
+
* @twin.org/crypto bumped from 0.0.1-next.65 to 0.0.1-next.66
|
|
240
|
+
|
|
241
|
+
## [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)
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
### Miscellaneous Chores
|
|
245
|
+
|
|
246
|
+
* **crypto-cli:** Synchronize repo versions
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
### Dependencies
|
|
250
|
+
|
|
251
|
+
* The following workspace dependencies were updated
|
|
252
|
+
* dependencies
|
|
253
|
+
* @twin.org/cli-core bumped from 0.0.1-next.64 to 0.0.1-next.65
|
|
254
|
+
* @twin.org/core bumped from 0.0.1-next.64 to 0.0.1-next.65
|
|
255
|
+
* @twin.org/crypto bumped from 0.0.1-next.64 to 0.0.1-next.65
|
|
256
|
+
|
|
257
|
+
## [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)
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
### Miscellaneous Chores
|
|
261
|
+
|
|
262
|
+
* **crypto-cli:** Synchronize repo versions
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
### Dependencies
|
|
266
|
+
|
|
267
|
+
* The following workspace dependencies were updated
|
|
268
|
+
* dependencies
|
|
269
|
+
* @twin.org/cli-core bumped from 0.0.1-next.63 to 0.0.1-next.64
|
|
270
|
+
* @twin.org/core bumped from 0.0.1-next.63 to 0.0.1-next.64
|
|
271
|
+
* @twin.org/crypto bumped from 0.0.1-next.63 to 0.0.1-next.64
|
|
272
|
+
|
|
273
|
+
## [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)
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
### Miscellaneous Chores
|
|
277
|
+
|
|
278
|
+
* **crypto-cli:** Synchronize repo versions
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
### Dependencies
|
|
282
|
+
|
|
283
|
+
* The following workspace dependencies were updated
|
|
284
|
+
* dependencies
|
|
285
|
+
* @twin.org/cli-core bumped from 0.0.1-next.62 to 0.0.1-next.63
|
|
286
|
+
* @twin.org/core bumped from 0.0.1-next.62 to 0.0.1-next.63
|
|
287
|
+
* @twin.org/crypto bumped from 0.0.1-next.62 to 0.0.1-next.63
|
|
288
|
+
|
|
289
|
+
## [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)
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
### Features
|
|
293
|
+
|
|
294
|
+
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
|
|
295
|
+
* add version type ([ae50cd9](https://github.com/twinfoundation/framework/commit/ae50cd99d342ed8eeb55290a52e9fed80a2af99e))
|
|
296
|
+
* remove version type ([553aa55](https://github.com/twinfoundation/framework/commit/553aa55bd79b8f930155035e522af2b0f6e3d0c8))
|
|
297
|
+
* use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
### Bug Fixes
|
|
301
|
+
|
|
302
|
+
* crypto CLI address output to JSON ([0398604](https://github.com/twinfoundation/framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
|
|
303
|
+
* crypto CLI address output to JSON ([3397bfb](https://github.com/twinfoundation/framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
### Dependencies
|
|
307
|
+
|
|
308
|
+
* The following workspace dependencies were updated
|
|
309
|
+
* dependencies
|
|
310
|
+
* @twin.org/cli-core bumped from 0.0.1-next.61 to 0.0.1-next.62
|
|
311
|
+
* @twin.org/core bumped from 0.0.1-next.61 to 0.0.1-next.62
|
|
312
|
+
* @twin.org/crypto bumped from 0.0.1-next.61 to 0.0.1-next.62
|
|
313
|
+
|
|
314
|
+
## [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)
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
### Miscellaneous Chores
|
|
318
|
+
|
|
319
|
+
* **crypto-cli:** Synchronize repo versions
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
### Dependencies
|
|
323
|
+
|
|
324
|
+
* The following workspace dependencies were updated
|
|
325
|
+
* dependencies
|
|
326
|
+
* @twin.org/cli-core bumped from 0.0.1-next.60 to 0.0.1-next.61
|
|
327
|
+
* @twin.org/core bumped from 0.0.1-next.60 to 0.0.1-next.61
|
|
328
|
+
* @twin.org/crypto bumped from 0.0.1-next.60 to 0.0.1-next.61
|
|
329
|
+
|
|
330
|
+
## [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)
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
### Bug Fixes
|
|
334
|
+
|
|
335
|
+
* crypto CLI address output to JSON ([0398604](https://github.com/twinfoundation/framework/commit/0398604c5ad7673eddf1ee7bed7fafa94f3526f8))
|
|
336
|
+
* crypto CLI address output to JSON ([3397bfb](https://github.com/twinfoundation/framework/commit/3397bfbdde6be5dcb40b490009891e14338e2af7))
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
### Dependencies
|
|
340
|
+
|
|
341
|
+
* The following workspace dependencies were updated
|
|
342
|
+
* dependencies
|
|
343
|
+
* @twin.org/cli-core bumped from 0.0.1-next.59 to 0.0.1-next.60
|
|
344
|
+
* @twin.org/core bumped from 0.0.1-next.59 to 0.0.1-next.60
|
|
345
|
+
* @twin.org/crypto bumped from 0.0.1-next.59 to 0.0.1-next.60
|
|
346
|
+
|
|
347
|
+
## [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)
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
### Miscellaneous Chores
|
|
351
|
+
|
|
352
|
+
* **crypto-cli:** Synchronize repo versions
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
### Dependencies
|
|
356
|
+
|
|
357
|
+
* The following workspace dependencies were updated
|
|
358
|
+
* dependencies
|
|
359
|
+
* @twin.org/cli-core bumped from 0.0.1-next.58 to 0.0.1-next.59
|
|
360
|
+
* @twin.org/core bumped from 0.0.1-next.58 to 0.0.1-next.59
|
|
361
|
+
* @twin.org/crypto bumped from 0.0.1-next.58 to 0.0.1-next.59
|
|
362
|
+
|
|
363
|
+
## [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)
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
### Miscellaneous Chores
|
|
367
|
+
|
|
368
|
+
* **crypto-cli:** Synchronize repo versions
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
### Dependencies
|
|
372
|
+
|
|
373
|
+
* The following workspace dependencies were updated
|
|
374
|
+
* dependencies
|
|
375
|
+
* @twin.org/cli-core bumped from 0.0.1-next.57 to 0.0.1-next.58
|
|
376
|
+
* @twin.org/core bumped from 0.0.1-next.57 to 0.0.1-next.58
|
|
377
|
+
* @twin.org/crypto bumped from 0.0.1-next.57 to 0.0.1-next.58
|
|
378
|
+
|
|
379
|
+
## [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)
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
### Features
|
|
383
|
+
|
|
384
|
+
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
### Dependencies
|
|
388
|
+
|
|
389
|
+
* The following workspace dependencies were updated
|
|
390
|
+
* dependencies
|
|
391
|
+
* @twin.org/cli-core bumped from 0.0.1-next.56 to 0.0.1-next.57
|
|
392
|
+
* @twin.org/core bumped from 0.0.1-next.56 to 0.0.1-next.57
|
|
393
|
+
* @twin.org/crypto bumped from 0.0.1-next.56 to 0.0.1-next.57
|
|
394
|
+
|
|
395
|
+
## [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)
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
### Miscellaneous Chores
|
|
399
|
+
|
|
400
|
+
* **crypto-cli:** Synchronize repo versions
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
### Dependencies
|
|
404
|
+
|
|
405
|
+
* The following workspace dependencies were updated
|
|
406
|
+
* dependencies
|
|
407
|
+
* @twin.org/cli-core bumped from 0.0.1-next.55 to 0.0.1-next.56
|
|
408
|
+
* @twin.org/core bumped from 0.0.1-next.55 to 0.0.1-next.56
|
|
409
|
+
* @twin.org/crypto bumped from 0.0.1-next.55 to 0.0.1-next.56
|
|
410
|
+
|
|
411
|
+
## [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)
|
|
412
|
+
|
|
413
|
+
|
|
414
|
+
### Miscellaneous Chores
|
|
415
|
+
|
|
416
|
+
* **crypto-cli:** Synchronize repo versions
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
### Dependencies
|
|
420
|
+
|
|
421
|
+
* The following workspace dependencies were updated
|
|
422
|
+
* dependencies
|
|
423
|
+
* @twin.org/cli-core bumped from 0.0.1-next.54 to 0.0.1-next.55
|
|
424
|
+
* @twin.org/core bumped from 0.0.1-next.54 to 0.0.1-next.55
|
|
425
|
+
* @twin.org/crypto bumped from 0.0.1-next.54 to 0.0.1-next.55
|
|
426
|
+
|
|
427
|
+
## [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)
|
|
428
|
+
|
|
429
|
+
|
|
430
|
+
### Miscellaneous Chores
|
|
431
|
+
|
|
432
|
+
* **crypto-cli:** Synchronize repo versions
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+
### Dependencies
|
|
436
|
+
|
|
437
|
+
* The following workspace dependencies were updated
|
|
438
|
+
* dependencies
|
|
439
|
+
* @twin.org/cli-core bumped from 0.0.1-next.53 to 0.0.1-next.54
|
|
440
|
+
* @twin.org/core bumped from 0.0.1-next.53 to 0.0.1-next.54
|
|
441
|
+
* @twin.org/crypto bumped from 0.0.1-next.53 to 0.0.1-next.54
|
|
442
|
+
|
|
443
|
+
## [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)
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
### Miscellaneous Chores
|
|
447
|
+
|
|
448
|
+
* **crypto-cli:** Synchronize repo versions
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
### Dependencies
|
|
452
|
+
|
|
453
|
+
* The following workspace dependencies were updated
|
|
454
|
+
* dependencies
|
|
455
|
+
* @twin.org/cli-core bumped from 0.0.1-next.52 to 0.0.1-next.53
|
|
456
|
+
* @twin.org/core bumped from 0.0.1-next.52 to 0.0.1-next.53
|
|
457
|
+
* @twin.org/crypto bumped from 0.0.1-next.52 to 0.0.1-next.53
|
|
458
|
+
|
|
459
|
+
## [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)
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
### Features
|
|
463
|
+
|
|
464
|
+
* use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
### Dependencies
|
|
468
|
+
|
|
469
|
+
* The following workspace dependencies were updated
|
|
470
|
+
* dependencies
|
|
471
|
+
* @twin.org/cli-core bumped from 0.0.1-next.51 to 0.0.1-next.52
|
|
472
|
+
* @twin.org/core bumped from 0.0.1-next.51 to 0.0.1-next.52
|
|
473
|
+
* @twin.org/crypto bumped from 0.0.1-next.51 to 0.0.1-next.52
|
|
474
|
+
|
|
475
|
+
## [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)
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
### Miscellaneous Chores
|
|
479
|
+
|
|
480
|
+
* **crypto-cli:** Synchronize repo versions
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
### Dependencies
|
|
484
|
+
|
|
485
|
+
* The following workspace dependencies were updated
|
|
486
|
+
* dependencies
|
|
487
|
+
* @twin.org/cli-core bumped from 0.0.1-next.50 to 0.0.1-next.51
|
|
488
|
+
* @twin.org/core bumped from 0.0.1-next.50 to 0.0.1-next.51
|
|
489
|
+
* @twin.org/crypto bumped from 0.0.1-next.50 to 0.0.1-next.51
|
|
490
|
+
|
|
491
|
+
## [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)
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
### Features
|
|
495
|
+
|
|
496
|
+
* add version type ([ae50cd9](https://github.com/twinfoundation/framework/commit/ae50cd99d342ed8eeb55290a52e9fed80a2af99e))
|
|
497
|
+
* remove version type ([553aa55](https://github.com/twinfoundation/framework/commit/553aa55bd79b8f930155035e522af2b0f6e3d0c8))
|
|
498
|
+
|
|
499
|
+
|
|
500
|
+
### Dependencies
|
|
501
|
+
|
|
502
|
+
* The following workspace dependencies were updated
|
|
503
|
+
* dependencies
|
|
504
|
+
* @twin.org/cli-core bumped from 0.0.1-next.49 to 0.0.1-next.50
|
|
505
|
+
* @twin.org/core bumped from 0.0.1-next.49 to 0.0.1-next.50
|
|
506
|
+
* @twin.org/crypto bumped from 0.0.1-next.49 to 0.0.1-next.50
|
|
507
|
+
|
|
508
|
+
## 0.0.1-next.49
|
|
4
509
|
|
|
5
510
|
- Initial Release
|