@twin.org/nft-cli 0.0.3-next.4 → 0.0.3-next.6

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
@@ -25,7 +25,7 @@ export class CLI extends CLIBase {
25
25
  return this.execute({
26
26
  title: "TWIN NFT",
27
27
  appName: "twin-nft",
28
- version: "0.0.3-next.4", // x-release-please-version
28
+ version: "0.0.3-next.6", // x-release-please-version
29
29
  icon: "🌍",
30
30
  supportsEnvFiles: true,
31
31
  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;AAC7C,OAAO,EAAE,mBAAmB,EAAE,oBAAoB,EAAE,MAAM,sBAAsB,CAAC;AACjF,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAE1D,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAC;AAClE,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AAEpE;;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,UAAU;YACjB,OAAO,EAAE,UAAU;YACnB,OAAO,EAAE,cAAc,EAAE,2BAA2B;YACpD,IAAI,EAAE,IAAI;YACV,gBAAgB,EAAE,IAAI;YACtB,mBAAmB,EAAE,OAAO,EAAE,mBAAmB;YACjD,kBAAkB,EAAE,IAAI;SACxB,EACD,gBAAgB,IAAI,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,YAAY,CAAC,EACzF,IAAI,CACJ,CAAC;IACH,CAAC;IAED;;;;OAIG;IACO,WAAW,CAAC,OAAgB;QACrC,OAAO;YACN,oBAAoB,EAAE;YACtB,mBAAmB,EAAE;YACrB,kBAAkB,EAAE;YACpB,mBAAmB,EAAE;YACrB,sBAAsB,EAAE;YACxB,mBAAmB,EAAE;YACrB,uBAAuB,EAAE;SACzB,CAAC;IACH,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 { buildCommandAddress, buildCommandMnemonic } from \"@twin.org/crypto-cli\";\nimport { buildCommandFaucet } from \"@twin.org/wallet-cli\";\nimport type { Command } from \"commander\";\nimport { buildCommandNftBurn } from \"./commands/nftBurn.js\";\nimport { buildCommandNftMint } from \"./commands/nftMint.js\";\nimport { buildCommandNftResolve } from \"./commands/nftResolve.js\";\nimport { buildCommandNftTransfer } from \"./commands/nftTransfer.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 for the CLI.\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 NFT\",\n\t\t\t\tappName: \"twin-nft\",\n\t\t\t\tversion: \"0.0.3-next.4\", // 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 [\n\t\t\tbuildCommandMnemonic(),\n\t\t\tbuildCommandAddress(),\n\t\t\tbuildCommandFaucet(),\n\t\t\tbuildCommandNftMint(),\n\t\t\tbuildCommandNftResolve(),\n\t\t\tbuildCommandNftBurn(),\n\t\t\tbuildCommandNftTransfer()\n\t\t];\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;AAC7C,OAAO,EAAE,mBAAmB,EAAE,oBAAoB,EAAE,MAAM,sBAAsB,CAAC;AACjF,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAE1D,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAC;AAClE,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AAEpE;;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,UAAU;YACjB,OAAO,EAAE,UAAU;YACnB,OAAO,EAAE,cAAc,EAAE,2BAA2B;YACpD,IAAI,EAAE,IAAI;YACV,gBAAgB,EAAE,IAAI;YACtB,mBAAmB,EAAE,OAAO,EAAE,mBAAmB;YACjD,kBAAkB,EAAE,IAAI;SACxB,EACD,gBAAgB,IAAI,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,YAAY,CAAC,EACzF,IAAI,CACJ,CAAC;IACH,CAAC;IAED;;;;OAIG;IACO,WAAW,CAAC,OAAgB;QACrC,OAAO;YACN,oBAAoB,EAAE;YACtB,mBAAmB,EAAE;YACrB,kBAAkB,EAAE;YACpB,mBAAmB,EAAE;YACrB,sBAAsB,EAAE;YACxB,mBAAmB,EAAE;YACrB,uBAAuB,EAAE;SACzB,CAAC;IACH,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 { buildCommandAddress, buildCommandMnemonic } from \"@twin.org/crypto-cli\";\nimport { buildCommandFaucet } from \"@twin.org/wallet-cli\";\nimport type { Command } from \"commander\";\nimport { buildCommandNftBurn } from \"./commands/nftBurn.js\";\nimport { buildCommandNftMint } from \"./commands/nftMint.js\";\nimport { buildCommandNftResolve } from \"./commands/nftResolve.js\";\nimport { buildCommandNftTransfer } from \"./commands/nftTransfer.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 for the CLI.\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 NFT\",\n\t\t\t\tappName: \"twin-nft\",\n\t\t\t\tversion: \"0.0.3-next.6\", // 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 [\n\t\t\tbuildCommandMnemonic(),\n\t\t\tbuildCommandAddress(),\n\t\t\tbuildCommandFaucet(),\n\t\t\tbuildCommandNftMint(),\n\t\t\tbuildCommandNftResolve(),\n\t\t\tbuildCommandNftBurn(),\n\t\t\tbuildCommandNftTransfer()\n\t\t];\n\t}\n}\n"]}
@@ -147,6 +147,9 @@
147
147
  "slip0010": {
148
148
  "invalidSeed": "The seed is invalid \"{seed}\""
149
149
  },
150
+ "pbkdf2": {
151
+ "keyLengthTooSmall": "The key length must be at least 1, it is \"{keyLength}\""
152
+ },
150
153
  "commands": {
151
154
  "common": {
152
155
  "missingEnv": "The \"{option}\" option is configured as an environment variable, but there is no environment variable with the name \"{value}\" set.",
@@ -157,6 +160,10 @@
157
160
  "optionMaxValue": "The \"{option}\" option must be less than or equal to {maxValue}, it is {value}."
158
161
  }
159
162
  },
163
+ "entitySchemaDiffHelper": {
164
+ "duplicateOldProperty": "The oldProperties array contains a duplicate property key \"{property}\"",
165
+ "duplicateNewProperty": "The newProperties array contains a duplicate property key \"{property}\""
166
+ },
160
167
  "entitySchemaHelper": {
161
168
  "noIsPrimary": "Property \"entitySchema.properties\" must contain a value with isPrimary set",
162
169
  "multipleIsPrimary": "Property \"entitySchema.properties\" contains more than one property with isPrimary set",
@@ -172,6 +179,11 @@
172
179
  "contextIdStore": {
173
180
  "asyncHooksNotAvailable": "Async Hooks are not available in this environment, please ensure you are running in Node.js"
174
181
  },
182
+ "migrationHelper": {
183
+ "migrationFailed": "Migration failed.",
184
+ "transformRequiredForProperty": "A transformation function is required to migrate property \"{from}\" to \"{to}\" of type \"{type}\"",
185
+ "coercionProducedUndefined": "Coercion of property \"{property}\" to type \"{type}\" produced undefined but the property is not optional"
186
+ },
175
187
  "iotaNftConnector": {
176
188
  "mintingFailed": "Minting the NFT failed",
177
189
  "resolvingFailed": "Resolving the NFT failed",
@@ -190,8 +202,7 @@
190
202
  "packageNotFoundOnNetwork": "Package \"{deployedPackageId}\" not found on \"{network}\" network",
191
203
  "deployedPackageIdRequired": "deployedPackageId is required for network operations on \"{network}\".",
192
204
  "packageIdNotFound": "Package ID not found for network \"{network}\"",
193
- "invalidGasBudget": "Invalid gas budget: {gasBudget}",
194
- "noWalletConfigured": "For write operations a wallet must be configured in the connector options"
205
+ "invalidGasBudget": "Invalid gas budget: {gasBudget}"
195
206
  },
196
207
  "iotaNftUtils": {
197
208
  "invalidNftIdFormat": "The NFT ID \"{id}\" has an invalid format"
@@ -204,7 +215,9 @@
204
215
  "transactionFailed": "The transaction failed",
205
216
  "addressNotFound": "The address is missing could not be found from the seed \"{address}\"",
206
217
  "gasStationTransactionFailed": "The gas station transaction failed",
207
- "dryRunFailed": "The dry run execution failed"
218
+ "dryRunFailed": "The dry run execution failed",
219
+ "fundingFailed": "Fund the address from faucet failed",
220
+ "faucetRateLimit": "Faucet rate limit exceeded"
208
221
  },
209
222
  "iotaIdentityUtils": {
210
223
  "getControllerCapInfoFailed": "Getting the controller capability info for the identity failed",
@@ -267,10 +280,6 @@
267
280
  },
268
281
  "iotaWalletConnector": {
269
282
  "transferFailed": "The wallet transfer failed."
270
- },
271
- "iotaFaucetConnector": {
272
- "fundingFailed": "Fund the address from faucet failed",
273
- "faucetRateLimit": "Faucet rate limit exceeded"
274
283
  }
275
284
  },
276
285
  "errorNames": {
@@ -605,6 +614,10 @@
605
614
  }
606
615
  },
607
616
  "info": {
617
+ "memoryEntityStorageConnector": {
618
+ "storeTearingDown": "Tearing down entity storage",
619
+ "storeTornDown": "Entity storage torn down"
620
+ },
608
621
  "iotaNftConnector": {
609
622
  "contractReady": "Contract ready for use"
610
623
  },
@@ -612,7 +625,9 @@
612
625
  "transactionCosts": "Transaction costs for operation \"{operation}\", \"{cost}\""
613
626
  }
614
627
  },
615
- "errorMessages": {
616
- "fetch": "Fetch"
628
+ "health": {
629
+ "memoryEntityStorageConnector": {
630
+ "healthDescription": "Memory entity storage for \"{entityType}\" is always available"
631
+ }
617
632
  }
618
633
  }
package/docs/changelog.md CHANGED
@@ -1,6 +1,34 @@
1
1
  # Changelog
2
2
 
3
- ## [0.0.3-next.4](https://github.com/twinfoundation/nft/compare/nft-cli-v0.0.3-next.3...nft-cli-v0.0.3-next.4) (2026-04-20)
3
+ ## [0.0.3-next.6](https://github.com/iotaledger/twin-nft/compare/nft-cli-v0.0.3-next.5...nft-cli-v0.0.3-next.6) (2026-05-20)
4
+
5
+
6
+ ### Features
7
+
8
+ * update dependencies ([2f40b97](https://github.com/iotaledger/twin-nft/commit/2f40b97a7d77d6614d064ad0caf8a0cccc81f1a5))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/nft-connector-iota bumped from 0.0.3-next.5 to 0.0.3-next.6
16
+
17
+ ## [0.0.3-next.5](https://github.com/iotaledger/twin-nft/compare/nft-cli-v0.0.3-next.4...nft-cli-v0.0.3-next.5) (2026-05-12)
18
+
19
+
20
+ ### Features
21
+
22
+ * typescript 6 update ([91b94b8](https://github.com/iotaledger/twin-nft/commit/91b94b846ea081b09b2228681776ce30f104a36e))
23
+
24
+
25
+ ### Dependencies
26
+
27
+ * The following workspace dependencies were updated
28
+ * dependencies
29
+ * @twin.org/nft-connector-iota bumped from 0.0.3-next.4 to 0.0.3-next.5
30
+
31
+ ## [0.0.3-next.4](https://github.com/iotaledger/twin-nft/compare/nft-cli-v0.0.3-next.3...nft-cli-v0.0.3-next.4) (2026-04-20)
4
32
 
5
33
 
6
34
  ### Miscellaneous Chores
@@ -14,7 +42,7 @@
14
42
  * dependencies
15
43
  * @twin.org/nft-connector-iota bumped from 0.0.3-next.3 to 0.0.3-next.4
16
44
 
17
- ## [0.0.3-next.3](https://github.com/twinfoundation/nft/compare/nft-cli-v0.0.3-next.2...nft-cli-v0.0.3-next.3) (2026-03-03)
45
+ ## [0.0.3-next.3](https://github.com/iotaledger/twin-nft/compare/nft-cli-v0.0.3-next.2...nft-cli-v0.0.3-next.3) (2026-03-03)
18
46
 
19
47
 
20
48
  ### Miscellaneous Chores
@@ -28,7 +56,7 @@
28
56
  * dependencies
29
57
  * @twin.org/nft-connector-iota bumped from 0.0.3-next.2 to 0.0.3-next.3
30
58
 
31
- ## [0.0.3-next.2](https://github.com/twinfoundation/nft/compare/nft-cli-v0.0.3-next.1...nft-cli-v0.0.3-next.2) (2026-02-25)
59
+ ## [0.0.3-next.2](https://github.com/iotaledger/twin-nft/compare/nft-cli-v0.0.3-next.1...nft-cli-v0.0.3-next.2) (2026-02-25)
32
60
 
33
61
 
34
62
  ### Miscellaneous Chores
@@ -42,26 +70,26 @@
42
70
  * dependencies
43
71
  * @twin.org/nft-connector-iota bumped from 0.0.3-next.1 to 0.0.3-next.2
44
72
 
45
- ## [0.0.3-next.1](https://github.com/twinfoundation/nft/compare/nft-cli-v0.0.3-next.0...nft-cli-v0.0.3-next.1) (2025-11-12)
73
+ ## [0.0.3-next.1](https://github.com/iotaledger/twin-nft/compare/nft-cli-v0.0.3-next.0...nft-cli-v0.0.3-next.1) (2025-11-12)
46
74
 
47
75
 
48
76
  ### Features
49
77
 
50
- * add context id features ([#50](https://github.com/twinfoundation/nft/issues/50)) ([56c31c7](https://github.com/twinfoundation/nft/commit/56c31c7ba10e3ef8ad44f6463153f90888e64711))
51
- * add publish workflows ([3f2ae6b](https://github.com/twinfoundation/nft/commit/3f2ae6b5c29da8012e01ef719c2d91a6aa80c2ad))
52
- * add validate-locales ([0055a56](https://github.com/twinfoundation/nft/commit/0055a56ed166946f1db860aa0725ad53248b3427))
53
- * eslint migration to flat config ([0e6fc12](https://github.com/twinfoundation/nft/commit/0e6fc128c3c8f6cd34db793787437dd4af2c9994))
54
- * iota rebased release ([8d05d1f](https://github.com/twinfoundation/nft/commit/8d05d1f58c1aacac983c100697ab40a314ad34ea))
55
- * remove connector type from CLI ([59c0faa](https://github.com/twinfoundation/nft/commit/59c0faab46caf0def1981aab790238c289ae0e22))
56
- * update dependencies ([8660f76](https://github.com/twinfoundation/nft/commit/8660f76ca324b0f476e45544cac6bee4b3146c3b))
57
- * update dlt packages ([12c4966](https://github.com/twinfoundation/nft/commit/12c4966bceb926b7cdcf1449165bee09187a426c))
58
- * update framework core ([f3496b6](https://github.com/twinfoundation/nft/commit/f3496b61bfebbb3479bb92df39ecfa9ac8d90b9b))
59
- * use shared store mechanism ([#16](https://github.com/twinfoundation/nft/issues/16)) ([897bc78](https://github.com/twinfoundation/nft/commit/897bc7805248ba1388b2dd03df24c33f1633f344))
78
+ * add context id features ([#50](https://github.com/iotaledger/twin-nft/issues/50)) ([56c31c7](https://github.com/iotaledger/twin-nft/commit/56c31c7ba10e3ef8ad44f6463153f90888e64711))
79
+ * add publish workflows ([3f2ae6b](https://github.com/iotaledger/twin-nft/commit/3f2ae6b5c29da8012e01ef719c2d91a6aa80c2ad))
80
+ * add validate-locales ([0055a56](https://github.com/iotaledger/twin-nft/commit/0055a56ed166946f1db860aa0725ad53248b3427))
81
+ * eslint migration to flat config ([0e6fc12](https://github.com/iotaledger/twin-nft/commit/0e6fc128c3c8f6cd34db793787437dd4af2c9994))
82
+ * iota rebased release ([8d05d1f](https://github.com/iotaledger/twin-nft/commit/8d05d1f58c1aacac983c100697ab40a314ad34ea))
83
+ * remove connector type from CLI ([59c0faa](https://github.com/iotaledger/twin-nft/commit/59c0faab46caf0def1981aab790238c289ae0e22))
84
+ * update dependencies ([8660f76](https://github.com/iotaledger/twin-nft/commit/8660f76ca324b0f476e45544cac6bee4b3146c3b))
85
+ * update dlt packages ([12c4966](https://github.com/iotaledger/twin-nft/commit/12c4966bceb926b7cdcf1449165bee09187a426c))
86
+ * update framework core ([f3496b6](https://github.com/iotaledger/twin-nft/commit/f3496b61bfebbb3479bb92df39ecfa9ac8d90b9b))
87
+ * use shared store mechanism ([#16](https://github.com/iotaledger/twin-nft/issues/16)) ([897bc78](https://github.com/iotaledger/twin-nft/commit/897bc7805248ba1388b2dd03df24c33f1633f344))
60
88
 
61
89
 
62
90
  ### Bug Fixes
63
91
 
64
- * contract independent tests ([#35](https://github.com/twinfoundation/nft/issues/35)) ([b54ad6e](https://github.com/twinfoundation/nft/commit/b54ad6e1727284230f21db0032dc8ff437444812))
92
+ * contract independent tests ([#35](https://github.com/iotaledger/twin-nft/issues/35)) ([b54ad6e](https://github.com/iotaledger/twin-nft/commit/b54ad6e1727284230f21db0032dc8ff437444812))
65
93
 
66
94
 
67
95
  ### Dependencies
@@ -70,12 +98,12 @@
70
98
  * dependencies
71
99
  * @twin.org/nft-connector-iota bumped from 0.0.3-next.0 to 0.0.3-next.1
72
100
 
73
- ## [0.0.2-next.8](https://github.com/twinfoundation/nft/compare/nft-cli-v0.0.2-next.7...nft-cli-v0.0.2-next.8) (2025-10-09)
101
+ ## [0.0.2-next.8](https://github.com/iotaledger/twin-nft/compare/nft-cli-v0.0.2-next.7...nft-cli-v0.0.2-next.8) (2025-10-09)
74
102
 
75
103
 
76
104
  ### Features
77
105
 
78
- * add validate-locales ([0055a56](https://github.com/twinfoundation/nft/commit/0055a56ed166946f1db860aa0725ad53248b3427))
106
+ * add validate-locales ([0055a56](https://github.com/iotaledger/twin-nft/commit/0055a56ed166946f1db860aa0725ad53248b3427))
79
107
 
80
108
 
81
109
  ### Dependencies
@@ -84,7 +112,7 @@
84
112
  * dependencies
85
113
  * @twin.org/nft-connector-iota bumped from 0.0.2-next.7 to 0.0.2-next.8
86
114
 
87
- ## [0.0.2-next.7](https://github.com/twinfoundation/nft/compare/nft-cli-v0.0.2-next.6...nft-cli-v0.0.2-next.7) (2025-09-26)
115
+ ## [0.0.2-next.7](https://github.com/iotaledger/twin-nft/compare/nft-cli-v0.0.2-next.6...nft-cli-v0.0.2-next.7) (2025-09-26)
88
116
 
89
117
 
90
118
  ### Miscellaneous Chores
@@ -98,7 +126,7 @@
98
126
  * dependencies
99
127
  * @twin.org/nft-connector-iota bumped from 0.0.2-next.6 to 0.0.2-next.7
100
128
 
101
- ## [0.0.2-next.6](https://github.com/twinfoundation/nft/compare/nft-cli-v0.0.2-next.5...nft-cli-v0.0.2-next.6) (2025-09-25)
129
+ ## [0.0.2-next.6](https://github.com/iotaledger/twin-nft/compare/nft-cli-v0.0.2-next.5...nft-cli-v0.0.2-next.6) (2025-09-25)
102
130
 
103
131
 
104
132
  ### Miscellaneous Chores
@@ -112,7 +140,7 @@
112
140
  * dependencies
113
141
  * @twin.org/nft-connector-iota bumped from 0.0.2-next.5 to 0.0.2-next.6
114
142
 
115
- ## [0.0.2-next.5](https://github.com/twinfoundation/nft/compare/nft-cli-v0.0.2-next.4...nft-cli-v0.0.2-next.5) (2025-09-22)
143
+ ## [0.0.2-next.5](https://github.com/iotaledger/twin-nft/compare/nft-cli-v0.0.2-next.4...nft-cli-v0.0.2-next.5) (2025-09-22)
116
144
 
117
145
 
118
146
  ### Miscellaneous Chores
@@ -126,17 +154,17 @@
126
154
  * dependencies
127
155
  * @twin.org/nft-connector-iota bumped from 0.0.2-next.4 to 0.0.2-next.5
128
156
 
129
- ## [0.0.2-next.4](https://github.com/twinfoundation/nft/compare/nft-cli-v0.0.2-next.3...nft-cli-v0.0.2-next.4) (2025-09-10)
157
+ ## [0.0.2-next.4](https://github.com/iotaledger/twin-nft/compare/nft-cli-v0.0.2-next.3...nft-cli-v0.0.2-next.4) (2025-09-10)
130
158
 
131
159
 
132
160
  ### Features
133
161
 
134
- * eslint migration to flat config ([0e6fc12](https://github.com/twinfoundation/nft/commit/0e6fc128c3c8f6cd34db793787437dd4af2c9994))
162
+ * eslint migration to flat config ([0e6fc12](https://github.com/iotaledger/twin-nft/commit/0e6fc128c3c8f6cd34db793787437dd4af2c9994))
135
163
 
136
164
 
137
165
  ### Bug Fixes
138
166
 
139
- * contract independent tests ([#35](https://github.com/twinfoundation/nft/issues/35)) ([b54ad6e](https://github.com/twinfoundation/nft/commit/b54ad6e1727284230f21db0032dc8ff437444812))
167
+ * contract independent tests ([#35](https://github.com/iotaledger/twin-nft/issues/35)) ([b54ad6e](https://github.com/iotaledger/twin-nft/commit/b54ad6e1727284230f21db0032dc8ff437444812))
140
168
 
141
169
 
142
170
  ### Dependencies
@@ -145,12 +173,12 @@
145
173
  * dependencies
146
174
  * @twin.org/nft-connector-iota bumped from 0.0.2-next.3 to 0.0.2-next.4
147
175
 
148
- ## [0.0.2-next.3](https://github.com/twinfoundation/nft/compare/nft-cli-v0.0.2-next.2...nft-cli-v0.0.2-next.3) (2025-08-20)
176
+ ## [0.0.2-next.3](https://github.com/iotaledger/twin-nft/compare/nft-cli-v0.0.2-next.2...nft-cli-v0.0.2-next.3) (2025-08-20)
149
177
 
150
178
 
151
179
  ### Features
152
180
 
153
- * update framework core ([f3496b6](https://github.com/twinfoundation/nft/commit/f3496b61bfebbb3479bb92df39ecfa9ac8d90b9b))
181
+ * update framework core ([f3496b6](https://github.com/iotaledger/twin-nft/commit/f3496b61bfebbb3479bb92df39ecfa9ac8d90b9b))
154
182
 
155
183
 
156
184
  ### Dependencies
@@ -159,7 +187,7 @@
159
187
  * dependencies
160
188
  * @twin.org/nft-connector-iota bumped from 0.0.2-next.2 to 0.0.2-next.3
161
189
 
162
- ## [0.0.2-next.2](https://github.com/twinfoundation/nft/compare/nft-cli-v0.0.2-next.1...nft-cli-v0.0.2-next.2) (2025-07-25)
190
+ ## [0.0.2-next.2](https://github.com/iotaledger/twin-nft/compare/nft-cli-v0.0.2-next.1...nft-cli-v0.0.2-next.2) (2025-07-25)
163
191
 
164
192
 
165
193
  ### Miscellaneous Chores
@@ -173,16 +201,16 @@
173
201
  * dependencies
174
202
  * @twin.org/nft-connector-iota bumped from 0.0.2-next.1 to 0.0.2-next.2
175
203
 
176
- ## [0.0.2-next.1](https://github.com/twinfoundation/nft/compare/nft-cli-v0.0.2-next.0...nft-cli-v0.0.2-next.1) (2025-07-16)
204
+ ## [0.0.2-next.1](https://github.com/iotaledger/twin-nft/compare/nft-cli-v0.0.2-next.0...nft-cli-v0.0.2-next.1) (2025-07-16)
177
205
 
178
206
 
179
207
  ### Features
180
208
 
181
- * add publish workflows ([3f2ae6b](https://github.com/twinfoundation/nft/commit/3f2ae6b5c29da8012e01ef719c2d91a6aa80c2ad))
182
- * iota rebased release ([8d05d1f](https://github.com/twinfoundation/nft/commit/8d05d1f58c1aacac983c100697ab40a314ad34ea))
183
- * update dependencies ([8660f76](https://github.com/twinfoundation/nft/commit/8660f76ca324b0f476e45544cac6bee4b3146c3b))
184
- * update dlt packages ([12c4966](https://github.com/twinfoundation/nft/commit/12c4966bceb926b7cdcf1449165bee09187a426c))
185
- * use shared store mechanism ([#16](https://github.com/twinfoundation/nft/issues/16)) ([897bc78](https://github.com/twinfoundation/nft/commit/897bc7805248ba1388b2dd03df24c33f1633f344))
209
+ * add publish workflows ([3f2ae6b](https://github.com/iotaledger/twin-nft/commit/3f2ae6b5c29da8012e01ef719c2d91a6aa80c2ad))
210
+ * iota rebased release ([8d05d1f](https://github.com/iotaledger/twin-nft/commit/8d05d1f58c1aacac983c100697ab40a314ad34ea))
211
+ * update dependencies ([8660f76](https://github.com/iotaledger/twin-nft/commit/8660f76ca324b0f476e45544cac6bee4b3146c3b))
212
+ * update dlt packages ([12c4966](https://github.com/iotaledger/twin-nft/commit/12c4966bceb926b7cdcf1449165bee09187a426c))
213
+ * use shared store mechanism ([#16](https://github.com/iotaledger/twin-nft/issues/16)) ([897bc78](https://github.com/iotaledger/twin-nft/commit/897bc7805248ba1388b2dd03df24c33f1633f344))
186
214
 
187
215
 
188
216
  ### Dependencies
@@ -196,7 +224,7 @@
196
224
 
197
225
  ### Features
198
226
 
199
- * release to production ([4d338b3](https://github.com/twinfoundation/nft/commit/4d338b3e8a4dbccc61a1d1da3c470ba86cefe535))
227
+ * release to production ([4d338b3](https://github.com/iotaledger/twin-nft/commit/4d338b3e8a4dbccc61a1d1da3c470ba86cefe535))
200
228
 
201
229
 
202
230
  ### Dependencies
@@ -205,7 +233,7 @@
205
233
  * dependencies
206
234
  * @twin.org/nft-connector-iota bumped from ^0.0.0 to ^0.0.1
207
235
 
208
- ## [0.0.1-next.32](https://github.com/twinfoundation/nft/compare/nft-cli-v0.0.1-next.31...nft-cli-v0.0.1-next.32) (2025-06-24)
236
+ ## [0.0.1-next.32](https://github.com/iotaledger/twin-nft/compare/nft-cli-v0.0.1-next.31...nft-cli-v0.0.1-next.32) (2025-06-24)
209
237
 
210
238
 
211
239
  ### Miscellaneous Chores
@@ -219,12 +247,12 @@
219
247
  * dependencies
220
248
  * @twin.org/nft-connector-iota bumped from 0.0.1-next.31 to 0.0.1-next.32
221
249
 
222
- ## [0.0.1-next.31](https://github.com/twinfoundation/nft/compare/nft-cli-v0.0.1-next.30...nft-cli-v0.0.1-next.31) (2025-06-12)
250
+ ## [0.0.1-next.31](https://github.com/iotaledger/twin-nft/compare/nft-cli-v0.0.1-next.30...nft-cli-v0.0.1-next.31) (2025-06-12)
223
251
 
224
252
 
225
253
  ### Features
226
254
 
227
- * update dependencies ([8660f76](https://github.com/twinfoundation/nft/commit/8660f76ca324b0f476e45544cac6bee4b3146c3b))
255
+ * update dependencies ([8660f76](https://github.com/iotaledger/twin-nft/commit/8660f76ca324b0f476e45544cac6bee4b3146c3b))
228
256
 
229
257
 
230
258
  ### Dependencies
@@ -233,7 +261,7 @@
233
261
  * dependencies
234
262
  * @twin.org/nft-connector-iota bumped from 0.0.1-next.30 to 0.0.1-next.31
235
263
 
236
- ## [0.0.1-next.30](https://github.com/twinfoundation/nft/compare/nft-cli-v0.0.1-next.29...nft-cli-v0.0.1-next.30) (2025-05-22)
264
+ ## [0.0.1-next.30](https://github.com/iotaledger/twin-nft/compare/nft-cli-v0.0.1-next.29...nft-cli-v0.0.1-next.30) (2025-05-22)
237
265
 
238
266
 
239
267
  ### Miscellaneous Chores
@@ -247,12 +275,12 @@
247
275
  * dependencies
248
276
  * @twin.org/nft-connector-iota bumped from 0.0.1-next.29 to 0.0.1-next.30
249
277
 
250
- ## [0.0.1-next.29](https://github.com/twinfoundation/nft/compare/nft-cli-v0.0.1-next.28...nft-cli-v0.0.1-next.29) (2025-05-21)
278
+ ## [0.0.1-next.29](https://github.com/iotaledger/twin-nft/compare/nft-cli-v0.0.1-next.28...nft-cli-v0.0.1-next.29) (2025-05-21)
251
279
 
252
280
 
253
281
  ### Features
254
282
 
255
- * update dlt packages ([12c4966](https://github.com/twinfoundation/nft/commit/12c4966bceb926b7cdcf1449165bee09187a426c))
283
+ * update dlt packages ([12c4966](https://github.com/iotaledger/twin-nft/commit/12c4966bceb926b7cdcf1449165bee09187a426c))
256
284
 
257
285
 
258
286
  ### Dependencies
@@ -261,12 +289,12 @@
261
289
  * dependencies
262
290
  * @twin.org/nft-connector-iota bumped from 0.0.1-next.28 to 0.0.1-next.29
263
291
 
264
- ## [0.0.1-next.28](https://github.com/twinfoundation/nft/compare/nft-cli-v0.0.1-next.27...nft-cli-v0.0.1-next.28) (2025-05-06)
292
+ ## [0.0.1-next.28](https://github.com/iotaledger/twin-nft/compare/nft-cli-v0.0.1-next.27...nft-cli-v0.0.1-next.28) (2025-05-06)
265
293
 
266
294
 
267
295
  ### Features
268
296
 
269
- * iota rebased release ([8d05d1f](https://github.com/twinfoundation/nft/commit/8d05d1f58c1aacac983c100697ab40a314ad34ea))
297
+ * iota rebased release ([8d05d1f](https://github.com/iotaledger/twin-nft/commit/8d05d1f58c1aacac983c100697ab40a314ad34ea))
270
298
 
271
299
 
272
300
  ### Dependencies
@@ -275,7 +303,7 @@
275
303
  * dependencies
276
304
  * @twin.org/nft-connector-iota bumped from 0.0.1-next.27 to 0.0.1-next.28
277
305
 
278
- ## [0.0.1-next.27](https://github.com/twinfoundation/nft/compare/nft-cli-v0.0.1-next.26...nft-cli-v0.0.1-next.27) (2025-04-24)
306
+ ## [0.0.1-next.27](https://github.com/iotaledger/twin-nft/compare/nft-cli-v0.0.1-next.26...nft-cli-v0.0.1-next.27) (2025-04-24)
279
307
 
280
308
 
281
309
  ### Miscellaneous Chores
@@ -289,12 +317,12 @@
289
317
  * dependencies
290
318
  * @twin.org/nft-connector-iota bumped from 0.0.1-next.26 to 0.0.1-next.27
291
319
 
292
- ## [0.0.1-next.26](https://github.com/twinfoundation/nft/compare/nft-cli-v0.0.1-next.25...nft-cli-v0.0.1-next.26) (2025-04-17)
320
+ ## [0.0.1-next.26](https://github.com/iotaledger/twin-nft/compare/nft-cli-v0.0.1-next.25...nft-cli-v0.0.1-next.26) (2025-04-17)
293
321
 
294
322
 
295
323
  ### Features
296
324
 
297
- * use shared store mechanism ([#16](https://github.com/twinfoundation/nft/issues/16)) ([897bc78](https://github.com/twinfoundation/nft/commit/897bc7805248ba1388b2dd03df24c33f1633f344))
325
+ * use shared store mechanism ([#16](https://github.com/iotaledger/twin-nft/issues/16)) ([897bc78](https://github.com/iotaledger/twin-nft/commit/897bc7805248ba1388b2dd03df24c33f1633f344))
298
326
 
299
327
 
300
328
  ### Dependencies
@@ -303,7 +331,7 @@
303
331
  * dependencies
304
332
  * @twin.org/nft-connector-iota bumped from 0.0.1-next.25 to 0.0.1-next.26
305
333
 
306
- ## [0.0.1-next.25](https://github.com/twinfoundation/nft/compare/nft-cli-v0.0.1-next.24...nft-cli-v0.0.1-next.25) (2025-04-17)
334
+ ## [0.0.1-next.25](https://github.com/iotaledger/twin-nft/compare/nft-cli-v0.0.1-next.24...nft-cli-v0.0.1-next.25) (2025-04-17)
307
335
 
308
336
 
309
337
  ### Miscellaneous Chores
@@ -317,12 +345,12 @@
317
345
  * dependencies
318
346
  * @twin.org/nft-connector-iota bumped from 0.0.1-next.24 to 0.0.1-next.25
319
347
 
320
- ## [0.0.1-next.24](https://github.com/twinfoundation/nft/compare/nft-cli-v0.0.1-next.23...nft-cli-v0.0.1-next.24) (2025-03-28)
348
+ ## [0.0.1-next.24](https://github.com/iotaledger/twin-nft/compare/nft-cli-v0.0.1-next.23...nft-cli-v0.0.1-next.24) (2025-03-28)
321
349
 
322
350
 
323
351
  ### Features
324
352
 
325
- * add publish workflows ([3f2ae6b](https://github.com/twinfoundation/nft/commit/3f2ae6b5c29da8012e01ef719c2d91a6aa80c2ad))
353
+ * add publish workflows ([3f2ae6b](https://github.com/iotaledger/twin-nft/commit/3f2ae6b5c29da8012e01ef719c2d91a6aa80c2ad))
326
354
 
327
355
 
328
356
  ### Dependencies
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@twin.org/nft-cli",
3
- "version": "0.0.3-next.4",
3
+ "version": "0.0.3-next.6",
4
4
  "description": "Command line application for running end-to-end NFT operations.",
5
5
  "repository": {
6
6
  "type": "git",
7
- "url": "git+https://github.com/twinfoundation/nft.git",
7
+ "url": "git+https://github.com/iotaledger/nft.git",
8
8
  "directory": "apps/nft-cli"
9
9
  },
10
10
  "author": "martyn.janes@iota.org",
@@ -21,7 +21,7 @@
21
21
  "@twin.org/entity": "next",
22
22
  "@twin.org/entity-storage-connector-memory": "next",
23
23
  "@twin.org/nameof": "next",
24
- "@twin.org/nft-connector-iota": "0.0.3-next.4",
24
+ "@twin.org/nft-connector-iota": "0.0.3-next.6",
25
25
  "@twin.org/vault-connector-entity-storage": "next",
26
26
  "@twin.org/vault-models": "next",
27
27
  "@twin.org/wallet-cli": "next",
@@ -60,7 +60,7 @@
60
60
  "assets"
61
61
  ],
62
62
  "bugs": {
63
- "url": "git+https://github.com/twinfoundation/nft/issues"
63
+ "url": "git+https://github.com/iotaledger/nft/issues"
64
64
  },
65
65
  "homepage": "https://twindev.org"
66
66
  }