@twin.org/nft-cli 0.0.3-next.3 → 0.0.3-next.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,16 +1,16 @@
1
1
  # TWIN NFT CLI
2
2
 
3
- A command line interface for interacting with the nft connectors.
3
+ This application provides command line workflows for creating, resolving, transferring, and burning NFTs in local and network-backed environments. It is intended for developer tooling, scripted operations, and operational checks.
4
4
 
5
5
  ## Installation
6
6
 
7
7
  ```shell
8
- npm install @twin.org/nft-cli
8
+ npm install @twin.org/nft-cli -D
9
9
  ```
10
10
 
11
- ## Examples
11
+ ## Usage
12
12
 
13
- Usage of the tool is shown in the examples [docs/examples.md](docs/examples.md)
13
+ Usage of the tool is shown in the examples [docs/usage.md](docs/usage.md)
14
14
 
15
15
  ## Reference
16
16
 
package/dist/es/cli.js CHANGED
@@ -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.3", // x-release-please-version
28
+ version: "0.0.3-next.5", // 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.3\", // x-release-please-version\n\t\t\t\ticon: \"🌍\",\n\t\t\t\tsupportsEnvFiles: true,\n\t\t\t\toverrideOutputWidth: options?.overrideOutputWidth,\n\t\t\t\tshowDevToolWarning: true\n\t\t\t},\n\t\t\tlocalesDirectory ?? path.join(path.dirname(fileURLToPath(import.meta.url)), \"../locales\"),\n\t\t\targv\n\t\t);\n\t}\n\n\t/**\n\t * Get the commands for the CLI.\n\t * @param program The main program to add the commands to.\n\t * @internal\n\t */\n\tprotected getCommands(program: Command): Command[] {\n\t\treturn [\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.5\", // 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.",
@@ -190,8 +193,7 @@
190
193
  "packageNotFoundOnNetwork": "Package \"{deployedPackageId}\" not found on \"{network}\" network",
191
194
  "deployedPackageIdRequired": "deployedPackageId is required for network operations on \"{network}\".",
192
195
  "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"
196
+ "invalidGasBudget": "Invalid gas budget: {gasBudget}"
195
197
  },
196
198
  "iotaNftUtils": {
197
199
  "invalidNftIdFormat": "The NFT ID \"{id}\" has an invalid format"
@@ -204,7 +206,15 @@
204
206
  "transactionFailed": "The transaction failed",
205
207
  "addressNotFound": "The address is missing could not be found from the seed \"{address}\"",
206
208
  "gasStationTransactionFailed": "The gas station transaction failed",
207
- "dryRunFailed": "The dry run execution failed"
209
+ "dryRunFailed": "The dry run execution failed",
210
+ "fundingFailed": "Fund the address from faucet failed",
211
+ "faucetRateLimit": "Faucet rate limit exceeded"
212
+ },
213
+ "iotaIdentityUtils": {
214
+ "getControllerCapInfoFailed": "Getting the controller capability info for the identity failed",
215
+ "identityNotFound": "The identity could not be found \"{notFoundId}\"",
216
+ "identityDeleted": "The identity \"{identityId}\" has been deleted and cannot be used for minting",
217
+ "controllerTokenNotFound": "No controller token found for the identity \"{notFoundId}\" with the provided controller address"
208
218
  },
209
219
  "iotaSmartContractUtils": {
210
220
  "migrationFailed": "Smart contract migration failed",
@@ -261,10 +271,6 @@
261
271
  },
262
272
  "iotaWalletConnector": {
263
273
  "transferFailed": "The wallet transfer failed."
264
- },
265
- "iotaFaucetConnector": {
266
- "fundingFailed": "Fund the address from faucet failed",
267
- "faucetRateLimit": "Faucet rate limit exceeded"
268
274
  }
269
275
  },
270
276
  "errorNames": {
@@ -599,6 +605,10 @@
599
605
  }
600
606
  },
601
607
  "info": {
608
+ "memoryEntityStorageConnector": {
609
+ "storeTearingDown": "Tearing down entity storage",
610
+ "storeTornDown": "Entity storage torn down"
611
+ },
602
612
  "iotaNftConnector": {
603
613
  "contractReady": "Contract ready for use"
604
614
  },
@@ -606,7 +616,9 @@
606
616
  "transactionCosts": "Transaction costs for operation \"{operation}\", \"{cost}\""
607
617
  }
608
618
  },
609
- "errorMessages": {
610
- "fetch": "Fetch"
619
+ "health": {
620
+ "memoryEntityStorageConnector": {
621
+ "healthDescription": "Memory entity storage for \"{entityType}\" is always available"
622
+ }
611
623
  }
612
624
  }
package/docs/changelog.md CHANGED
@@ -1,6 +1,34 @@
1
- # @twin.org/nft-cli - Changelog
1
+ # Changelog
2
2
 
3
- ## [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)
3
+ ## [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)
4
+
5
+
6
+ ### Features
7
+
8
+ * typescript 6 update ([91b94b8](https://github.com/iotaledger/twin-nft/commit/91b94b846ea081b09b2228681776ce30f104a36e))
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.4 to 0.0.3-next.5
16
+
17
+ ## [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)
18
+
19
+
20
+ ### Miscellaneous Chores
21
+
22
+ * **nft-cli:** Synchronize repo versions
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.3 to 0.0.3-next.4
30
+
31
+ ## [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)
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.2 to 0.0.3-next.3
16
44
 
17
- ## [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)
45
+ ## [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)
18
46
 
19
47
 
20
48
  ### Miscellaneous Chores
@@ -28,26 +56,26 @@
28
56
  * dependencies
29
57
  * @twin.org/nft-connector-iota bumped from 0.0.3-next.1 to 0.0.3-next.2
30
58
 
31
- ## [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)
59
+ ## [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)
32
60
 
33
61
 
34
62
  ### Features
35
63
 
36
- * add context id features ([#50](https://github.com/twinfoundation/nft/issues/50)) ([56c31c7](https://github.com/twinfoundation/nft/commit/56c31c7ba10e3ef8ad44f6463153f90888e64711))
37
- * add publish workflows ([3f2ae6b](https://github.com/twinfoundation/nft/commit/3f2ae6b5c29da8012e01ef719c2d91a6aa80c2ad))
38
- * add validate-locales ([0055a56](https://github.com/twinfoundation/nft/commit/0055a56ed166946f1db860aa0725ad53248b3427))
39
- * eslint migration to flat config ([0e6fc12](https://github.com/twinfoundation/nft/commit/0e6fc128c3c8f6cd34db793787437dd4af2c9994))
40
- * iota rebased release ([8d05d1f](https://github.com/twinfoundation/nft/commit/8d05d1f58c1aacac983c100697ab40a314ad34ea))
41
- * remove connector type from CLI ([59c0faa](https://github.com/twinfoundation/nft/commit/59c0faab46caf0def1981aab790238c289ae0e22))
42
- * update dependencies ([8660f76](https://github.com/twinfoundation/nft/commit/8660f76ca324b0f476e45544cac6bee4b3146c3b))
43
- * update dlt packages ([12c4966](https://github.com/twinfoundation/nft/commit/12c4966bceb926b7cdcf1449165bee09187a426c))
44
- * update framework core ([f3496b6](https://github.com/twinfoundation/nft/commit/f3496b61bfebbb3479bb92df39ecfa9ac8d90b9b))
45
- * use shared store mechanism ([#16](https://github.com/twinfoundation/nft/issues/16)) ([897bc78](https://github.com/twinfoundation/nft/commit/897bc7805248ba1388b2dd03df24c33f1633f344))
64
+ * add context id features ([#50](https://github.com/iotaledger/twin-nft/issues/50)) ([56c31c7](https://github.com/iotaledger/twin-nft/commit/56c31c7ba10e3ef8ad44f6463153f90888e64711))
65
+ * add publish workflows ([3f2ae6b](https://github.com/iotaledger/twin-nft/commit/3f2ae6b5c29da8012e01ef719c2d91a6aa80c2ad))
66
+ * add validate-locales ([0055a56](https://github.com/iotaledger/twin-nft/commit/0055a56ed166946f1db860aa0725ad53248b3427))
67
+ * eslint migration to flat config ([0e6fc12](https://github.com/iotaledger/twin-nft/commit/0e6fc128c3c8f6cd34db793787437dd4af2c9994))
68
+ * iota rebased release ([8d05d1f](https://github.com/iotaledger/twin-nft/commit/8d05d1f58c1aacac983c100697ab40a314ad34ea))
69
+ * remove connector type from CLI ([59c0faa](https://github.com/iotaledger/twin-nft/commit/59c0faab46caf0def1981aab790238c289ae0e22))
70
+ * update dependencies ([8660f76](https://github.com/iotaledger/twin-nft/commit/8660f76ca324b0f476e45544cac6bee4b3146c3b))
71
+ * update dlt packages ([12c4966](https://github.com/iotaledger/twin-nft/commit/12c4966bceb926b7cdcf1449165bee09187a426c))
72
+ * update framework core ([f3496b6](https://github.com/iotaledger/twin-nft/commit/f3496b61bfebbb3479bb92df39ecfa9ac8d90b9b))
73
+ * use shared store mechanism ([#16](https://github.com/iotaledger/twin-nft/issues/16)) ([897bc78](https://github.com/iotaledger/twin-nft/commit/897bc7805248ba1388b2dd03df24c33f1633f344))
46
74
 
47
75
 
48
76
  ### Bug Fixes
49
77
 
50
- * contract independent tests ([#35](https://github.com/twinfoundation/nft/issues/35)) ([b54ad6e](https://github.com/twinfoundation/nft/commit/b54ad6e1727284230f21db0032dc8ff437444812))
78
+ * contract independent tests ([#35](https://github.com/iotaledger/twin-nft/issues/35)) ([b54ad6e](https://github.com/iotaledger/twin-nft/commit/b54ad6e1727284230f21db0032dc8ff437444812))
51
79
 
52
80
 
53
81
  ### Dependencies
@@ -56,12 +84,12 @@
56
84
  * dependencies
57
85
  * @twin.org/nft-connector-iota bumped from 0.0.3-next.0 to 0.0.3-next.1
58
86
 
59
- ## [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)
87
+ ## [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)
60
88
 
61
89
 
62
90
  ### Features
63
91
 
64
- * add validate-locales ([0055a56](https://github.com/twinfoundation/nft/commit/0055a56ed166946f1db860aa0725ad53248b3427))
92
+ * add validate-locales ([0055a56](https://github.com/iotaledger/twin-nft/commit/0055a56ed166946f1db860aa0725ad53248b3427))
65
93
 
66
94
 
67
95
  ### Dependencies
@@ -70,7 +98,7 @@
70
98
  * dependencies
71
99
  * @twin.org/nft-connector-iota bumped from 0.0.2-next.7 to 0.0.2-next.8
72
100
 
73
- ## [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)
101
+ ## [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)
74
102
 
75
103
 
76
104
  ### Miscellaneous Chores
@@ -84,7 +112,7 @@
84
112
  * dependencies
85
113
  * @twin.org/nft-connector-iota bumped from 0.0.2-next.6 to 0.0.2-next.7
86
114
 
87
- ## [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)
115
+ ## [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)
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.5 to 0.0.2-next.6
100
128
 
101
- ## [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)
129
+ ## [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)
102
130
 
103
131
 
104
132
  ### Miscellaneous Chores
@@ -112,17 +140,17 @@
112
140
  * dependencies
113
141
  * @twin.org/nft-connector-iota bumped from 0.0.2-next.4 to 0.0.2-next.5
114
142
 
115
- ## [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)
143
+ ## [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)
116
144
 
117
145
 
118
146
  ### Features
119
147
 
120
- * eslint migration to flat config ([0e6fc12](https://github.com/twinfoundation/nft/commit/0e6fc128c3c8f6cd34db793787437dd4af2c9994))
148
+ * eslint migration to flat config ([0e6fc12](https://github.com/iotaledger/twin-nft/commit/0e6fc128c3c8f6cd34db793787437dd4af2c9994))
121
149
 
122
150
 
123
151
  ### Bug Fixes
124
152
 
125
- * contract independent tests ([#35](https://github.com/twinfoundation/nft/issues/35)) ([b54ad6e](https://github.com/twinfoundation/nft/commit/b54ad6e1727284230f21db0032dc8ff437444812))
153
+ * contract independent tests ([#35](https://github.com/iotaledger/twin-nft/issues/35)) ([b54ad6e](https://github.com/iotaledger/twin-nft/commit/b54ad6e1727284230f21db0032dc8ff437444812))
126
154
 
127
155
 
128
156
  ### Dependencies
@@ -131,12 +159,12 @@
131
159
  * dependencies
132
160
  * @twin.org/nft-connector-iota bumped from 0.0.2-next.3 to 0.0.2-next.4
133
161
 
134
- ## [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)
162
+ ## [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)
135
163
 
136
164
 
137
165
  ### Features
138
166
 
139
- * update framework core ([f3496b6](https://github.com/twinfoundation/nft/commit/f3496b61bfebbb3479bb92df39ecfa9ac8d90b9b))
167
+ * update framework core ([f3496b6](https://github.com/iotaledger/twin-nft/commit/f3496b61bfebbb3479bb92df39ecfa9ac8d90b9b))
140
168
 
141
169
 
142
170
  ### Dependencies
@@ -145,7 +173,7 @@
145
173
  * dependencies
146
174
  * @twin.org/nft-connector-iota bumped from 0.0.2-next.2 to 0.0.2-next.3
147
175
 
148
- ## [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)
176
+ ## [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)
149
177
 
150
178
 
151
179
  ### Miscellaneous Chores
@@ -159,16 +187,16 @@
159
187
  * dependencies
160
188
  * @twin.org/nft-connector-iota bumped from 0.0.2-next.1 to 0.0.2-next.2
161
189
 
162
- ## [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)
190
+ ## [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)
163
191
 
164
192
 
165
193
  ### Features
166
194
 
167
- * add publish workflows ([3f2ae6b](https://github.com/twinfoundation/nft/commit/3f2ae6b5c29da8012e01ef719c2d91a6aa80c2ad))
168
- * iota rebased release ([8d05d1f](https://github.com/twinfoundation/nft/commit/8d05d1f58c1aacac983c100697ab40a314ad34ea))
169
- * update dependencies ([8660f76](https://github.com/twinfoundation/nft/commit/8660f76ca324b0f476e45544cac6bee4b3146c3b))
170
- * update dlt packages ([12c4966](https://github.com/twinfoundation/nft/commit/12c4966bceb926b7cdcf1449165bee09187a426c))
171
- * use shared store mechanism ([#16](https://github.com/twinfoundation/nft/issues/16)) ([897bc78](https://github.com/twinfoundation/nft/commit/897bc7805248ba1388b2dd03df24c33f1633f344))
195
+ * add publish workflows ([3f2ae6b](https://github.com/iotaledger/twin-nft/commit/3f2ae6b5c29da8012e01ef719c2d91a6aa80c2ad))
196
+ * iota rebased release ([8d05d1f](https://github.com/iotaledger/twin-nft/commit/8d05d1f58c1aacac983c100697ab40a314ad34ea))
197
+ * update dependencies ([8660f76](https://github.com/iotaledger/twin-nft/commit/8660f76ca324b0f476e45544cac6bee4b3146c3b))
198
+ * update dlt packages ([12c4966](https://github.com/iotaledger/twin-nft/commit/12c4966bceb926b7cdcf1449165bee09187a426c))
199
+ * use shared store mechanism ([#16](https://github.com/iotaledger/twin-nft/issues/16)) ([897bc78](https://github.com/iotaledger/twin-nft/commit/897bc7805248ba1388b2dd03df24c33f1633f344))
172
200
 
173
201
 
174
202
  ### Dependencies
@@ -182,7 +210,7 @@
182
210
 
183
211
  ### Features
184
212
 
185
- * release to production ([4d338b3](https://github.com/twinfoundation/nft/commit/4d338b3e8a4dbccc61a1d1da3c470ba86cefe535))
213
+ * release to production ([4d338b3](https://github.com/iotaledger/twin-nft/commit/4d338b3e8a4dbccc61a1d1da3c470ba86cefe535))
186
214
 
187
215
 
188
216
  ### Dependencies
@@ -191,7 +219,7 @@
191
219
  * dependencies
192
220
  * @twin.org/nft-connector-iota bumped from ^0.0.0 to ^0.0.1
193
221
 
194
- ## [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)
222
+ ## [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)
195
223
 
196
224
 
197
225
  ### Miscellaneous Chores
@@ -205,12 +233,12 @@
205
233
  * dependencies
206
234
  * @twin.org/nft-connector-iota bumped from 0.0.1-next.31 to 0.0.1-next.32
207
235
 
208
- ## [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)
236
+ ## [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)
209
237
 
210
238
 
211
239
  ### Features
212
240
 
213
- * update dependencies ([8660f76](https://github.com/twinfoundation/nft/commit/8660f76ca324b0f476e45544cac6bee4b3146c3b))
241
+ * update dependencies ([8660f76](https://github.com/iotaledger/twin-nft/commit/8660f76ca324b0f476e45544cac6bee4b3146c3b))
214
242
 
215
243
 
216
244
  ### Dependencies
@@ -219,7 +247,7 @@
219
247
  * dependencies
220
248
  * @twin.org/nft-connector-iota bumped from 0.0.1-next.30 to 0.0.1-next.31
221
249
 
222
- ## [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)
250
+ ## [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)
223
251
 
224
252
 
225
253
  ### Miscellaneous Chores
@@ -233,12 +261,12 @@
233
261
  * dependencies
234
262
  * @twin.org/nft-connector-iota bumped from 0.0.1-next.29 to 0.0.1-next.30
235
263
 
236
- ## [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)
264
+ ## [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)
237
265
 
238
266
 
239
267
  ### Features
240
268
 
241
- * update dlt packages ([12c4966](https://github.com/twinfoundation/nft/commit/12c4966bceb926b7cdcf1449165bee09187a426c))
269
+ * update dlt packages ([12c4966](https://github.com/iotaledger/twin-nft/commit/12c4966bceb926b7cdcf1449165bee09187a426c))
242
270
 
243
271
 
244
272
  ### Dependencies
@@ -247,12 +275,12 @@
247
275
  * dependencies
248
276
  * @twin.org/nft-connector-iota bumped from 0.0.1-next.28 to 0.0.1-next.29
249
277
 
250
- ## [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)
278
+ ## [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)
251
279
 
252
280
 
253
281
  ### Features
254
282
 
255
- * iota rebased release ([8d05d1f](https://github.com/twinfoundation/nft/commit/8d05d1f58c1aacac983c100697ab40a314ad34ea))
283
+ * iota rebased release ([8d05d1f](https://github.com/iotaledger/twin-nft/commit/8d05d1f58c1aacac983c100697ab40a314ad34ea))
256
284
 
257
285
 
258
286
  ### Dependencies
@@ -261,7 +289,7 @@
261
289
  * dependencies
262
290
  * @twin.org/nft-connector-iota bumped from 0.0.1-next.27 to 0.0.1-next.28
263
291
 
264
- ## [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)
292
+ ## [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)
265
293
 
266
294
 
267
295
  ### Miscellaneous Chores
@@ -275,12 +303,12 @@
275
303
  * dependencies
276
304
  * @twin.org/nft-connector-iota bumped from 0.0.1-next.26 to 0.0.1-next.27
277
305
 
278
- ## [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)
306
+ ## [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)
279
307
 
280
308
 
281
309
  ### Features
282
310
 
283
- * use shared store mechanism ([#16](https://github.com/twinfoundation/nft/issues/16)) ([897bc78](https://github.com/twinfoundation/nft/commit/897bc7805248ba1388b2dd03df24c33f1633f344))
311
+ * use shared store mechanism ([#16](https://github.com/iotaledger/twin-nft/issues/16)) ([897bc78](https://github.com/iotaledger/twin-nft/commit/897bc7805248ba1388b2dd03df24c33f1633f344))
284
312
 
285
313
 
286
314
  ### Dependencies
@@ -289,7 +317,7 @@
289
317
  * dependencies
290
318
  * @twin.org/nft-connector-iota bumped from 0.0.1-next.25 to 0.0.1-next.26
291
319
 
292
- ## [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)
320
+ ## [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)
293
321
 
294
322
 
295
323
  ### Miscellaneous Chores
@@ -303,12 +331,12 @@
303
331
  * dependencies
304
332
  * @twin.org/nft-connector-iota bumped from 0.0.1-next.24 to 0.0.1-next.25
305
333
 
306
- ## [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)
334
+ ## [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)
307
335
 
308
336
 
309
337
  ### Features
310
338
 
311
- * add publish workflows ([3f2ae6b](https://github.com/twinfoundation/nft/commit/3f2ae6b5c29da8012e01ef719c2d91a6aa80c2ad))
339
+ * add publish workflows ([3f2ae6b](https://github.com/iotaledger/twin-nft/commit/3f2ae6b5c29da8012e01ef719c2d91a6aa80c2ad))
312
340
 
313
341
 
314
342
  ### Dependencies
@@ -22,7 +22,7 @@ The main entry point for the CLI.
22
22
 
23
23
  ## Methods
24
24
 
25
- ### run()
25
+ ### run() {#run}
26
26
 
27
27
  > **run**(`argv`, `localesDirectory?`, `options?`): `Promise`\<`number`\>
28
28
 
@@ -1,4 +1,6 @@
1
- # @twin.org/nft-cli - Examples
1
+ # NFT CLI Usage
2
+
3
+ Use these commands to run the CLI locally and check available NFT operations before wiring them into scripts or CI pipelines.
2
4
 
3
5
  ## Running
4
6
 
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@twin.org/nft-cli",
3
- "version": "0.0.3-next.3",
4
- "description": "A command line interface for interacting with the nft connectors",
3
+ "version": "0.0.3-next.5",
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.3",
24
+ "@twin.org/nft-connector-iota": "0.0.3-next.5",
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
  }