@twin.org/nft-cli 0.0.3-next.4 → 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/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.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.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.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,9 @@
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"
208
212
  },
209
213
  "iotaIdentityUtils": {
210
214
  "getControllerCapInfoFailed": "Getting the controller capability info for the identity failed",
@@ -267,10 +271,6 @@
267
271
  },
268
272
  "iotaWalletConnector": {
269
273
  "transferFailed": "The wallet transfer failed."
270
- },
271
- "iotaFaucetConnector": {
272
- "fundingFailed": "Fund the address from faucet failed",
273
- "faucetRateLimit": "Faucet rate limit exceeded"
274
274
  }
275
275
  },
276
276
  "errorNames": {
@@ -605,6 +605,10 @@
605
605
  }
606
606
  },
607
607
  "info": {
608
+ "memoryEntityStorageConnector": {
609
+ "storeTearingDown": "Tearing down entity storage",
610
+ "storeTornDown": "Entity storage torn down"
611
+ },
608
612
  "iotaNftConnector": {
609
613
  "contractReady": "Contract ready for use"
610
614
  },
@@ -612,7 +616,9 @@
612
616
  "transactionCosts": "Transaction costs for operation \"{operation}\", \"{cost}\""
613
617
  }
614
618
  },
615
- "errorMessages": {
616
- "fetch": "Fetch"
619
+ "health": {
620
+ "memoryEntityStorageConnector": {
621
+ "healthDescription": "Memory entity storage for \"{entityType}\" is always available"
622
+ }
617
623
  }
618
624
  }
package/docs/changelog.md CHANGED
@@ -1,6 +1,20 @@
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.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)
4
18
 
5
19
 
6
20
  ### Miscellaneous Chores
@@ -14,7 +28,7 @@
14
28
  * dependencies
15
29
  * @twin.org/nft-connector-iota bumped from 0.0.3-next.3 to 0.0.3-next.4
16
30
 
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)
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)
18
32
 
19
33
 
20
34
  ### Miscellaneous Chores
@@ -28,7 +42,7 @@
28
42
  * dependencies
29
43
  * @twin.org/nft-connector-iota bumped from 0.0.3-next.2 to 0.0.3-next.3
30
44
 
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)
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)
32
46
 
33
47
 
34
48
  ### Miscellaneous Chores
@@ -42,26 +56,26 @@
42
56
  * dependencies
43
57
  * @twin.org/nft-connector-iota bumped from 0.0.3-next.1 to 0.0.3-next.2
44
58
 
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)
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)
46
60
 
47
61
 
48
62
  ### Features
49
63
 
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))
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))
60
74
 
61
75
 
62
76
  ### Bug Fixes
63
77
 
64
- * 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))
65
79
 
66
80
 
67
81
  ### Dependencies
@@ -70,12 +84,12 @@
70
84
  * dependencies
71
85
  * @twin.org/nft-connector-iota bumped from 0.0.3-next.0 to 0.0.3-next.1
72
86
 
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)
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)
74
88
 
75
89
 
76
90
  ### Features
77
91
 
78
- * add validate-locales ([0055a56](https://github.com/twinfoundation/nft/commit/0055a56ed166946f1db860aa0725ad53248b3427))
92
+ * add validate-locales ([0055a56](https://github.com/iotaledger/twin-nft/commit/0055a56ed166946f1db860aa0725ad53248b3427))
79
93
 
80
94
 
81
95
  ### Dependencies
@@ -84,7 +98,7 @@
84
98
  * dependencies
85
99
  * @twin.org/nft-connector-iota bumped from 0.0.2-next.7 to 0.0.2-next.8
86
100
 
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)
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)
88
102
 
89
103
 
90
104
  ### Miscellaneous Chores
@@ -98,7 +112,7 @@
98
112
  * dependencies
99
113
  * @twin.org/nft-connector-iota bumped from 0.0.2-next.6 to 0.0.2-next.7
100
114
 
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)
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)
102
116
 
103
117
 
104
118
  ### Miscellaneous Chores
@@ -112,7 +126,7 @@
112
126
  * dependencies
113
127
  * @twin.org/nft-connector-iota bumped from 0.0.2-next.5 to 0.0.2-next.6
114
128
 
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)
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)
116
130
 
117
131
 
118
132
  ### Miscellaneous Chores
@@ -126,17 +140,17 @@
126
140
  * dependencies
127
141
  * @twin.org/nft-connector-iota bumped from 0.0.2-next.4 to 0.0.2-next.5
128
142
 
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)
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)
130
144
 
131
145
 
132
146
  ### Features
133
147
 
134
- * 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))
135
149
 
136
150
 
137
151
  ### Bug Fixes
138
152
 
139
- * 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))
140
154
 
141
155
 
142
156
  ### Dependencies
@@ -145,12 +159,12 @@
145
159
  * dependencies
146
160
  * @twin.org/nft-connector-iota bumped from 0.0.2-next.3 to 0.0.2-next.4
147
161
 
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)
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)
149
163
 
150
164
 
151
165
  ### Features
152
166
 
153
- * update framework core ([f3496b6](https://github.com/twinfoundation/nft/commit/f3496b61bfebbb3479bb92df39ecfa9ac8d90b9b))
167
+ * update framework core ([f3496b6](https://github.com/iotaledger/twin-nft/commit/f3496b61bfebbb3479bb92df39ecfa9ac8d90b9b))
154
168
 
155
169
 
156
170
  ### Dependencies
@@ -159,7 +173,7 @@
159
173
  * dependencies
160
174
  * @twin.org/nft-connector-iota bumped from 0.0.2-next.2 to 0.0.2-next.3
161
175
 
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)
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)
163
177
 
164
178
 
165
179
  ### Miscellaneous Chores
@@ -173,16 +187,16 @@
173
187
  * dependencies
174
188
  * @twin.org/nft-connector-iota bumped from 0.0.2-next.1 to 0.0.2-next.2
175
189
 
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)
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)
177
191
 
178
192
 
179
193
  ### Features
180
194
 
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))
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))
186
200
 
187
201
 
188
202
  ### Dependencies
@@ -196,7 +210,7 @@
196
210
 
197
211
  ### Features
198
212
 
199
- * release to production ([4d338b3](https://github.com/twinfoundation/nft/commit/4d338b3e8a4dbccc61a1d1da3c470ba86cefe535))
213
+ * release to production ([4d338b3](https://github.com/iotaledger/twin-nft/commit/4d338b3e8a4dbccc61a1d1da3c470ba86cefe535))
200
214
 
201
215
 
202
216
  ### Dependencies
@@ -205,7 +219,7 @@
205
219
  * dependencies
206
220
  * @twin.org/nft-connector-iota bumped from ^0.0.0 to ^0.0.1
207
221
 
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)
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)
209
223
 
210
224
 
211
225
  ### Miscellaneous Chores
@@ -219,12 +233,12 @@
219
233
  * dependencies
220
234
  * @twin.org/nft-connector-iota bumped from 0.0.1-next.31 to 0.0.1-next.32
221
235
 
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)
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)
223
237
 
224
238
 
225
239
  ### Features
226
240
 
227
- * update dependencies ([8660f76](https://github.com/twinfoundation/nft/commit/8660f76ca324b0f476e45544cac6bee4b3146c3b))
241
+ * update dependencies ([8660f76](https://github.com/iotaledger/twin-nft/commit/8660f76ca324b0f476e45544cac6bee4b3146c3b))
228
242
 
229
243
 
230
244
  ### Dependencies
@@ -233,7 +247,7 @@
233
247
  * dependencies
234
248
  * @twin.org/nft-connector-iota bumped from 0.0.1-next.30 to 0.0.1-next.31
235
249
 
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)
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)
237
251
 
238
252
 
239
253
  ### Miscellaneous Chores
@@ -247,12 +261,12 @@
247
261
  * dependencies
248
262
  * @twin.org/nft-connector-iota bumped from 0.0.1-next.29 to 0.0.1-next.30
249
263
 
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)
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)
251
265
 
252
266
 
253
267
  ### Features
254
268
 
255
- * update dlt packages ([12c4966](https://github.com/twinfoundation/nft/commit/12c4966bceb926b7cdcf1449165bee09187a426c))
269
+ * update dlt packages ([12c4966](https://github.com/iotaledger/twin-nft/commit/12c4966bceb926b7cdcf1449165bee09187a426c))
256
270
 
257
271
 
258
272
  ### Dependencies
@@ -261,12 +275,12 @@
261
275
  * dependencies
262
276
  * @twin.org/nft-connector-iota bumped from 0.0.1-next.28 to 0.0.1-next.29
263
277
 
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)
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)
265
279
 
266
280
 
267
281
  ### Features
268
282
 
269
- * iota rebased release ([8d05d1f](https://github.com/twinfoundation/nft/commit/8d05d1f58c1aacac983c100697ab40a314ad34ea))
283
+ * iota rebased release ([8d05d1f](https://github.com/iotaledger/twin-nft/commit/8d05d1f58c1aacac983c100697ab40a314ad34ea))
270
284
 
271
285
 
272
286
  ### Dependencies
@@ -275,7 +289,7 @@
275
289
  * dependencies
276
290
  * @twin.org/nft-connector-iota bumped from 0.0.1-next.27 to 0.0.1-next.28
277
291
 
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)
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)
279
293
 
280
294
 
281
295
  ### Miscellaneous Chores
@@ -289,12 +303,12 @@
289
303
  * dependencies
290
304
  * @twin.org/nft-connector-iota bumped from 0.0.1-next.26 to 0.0.1-next.27
291
305
 
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)
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)
293
307
 
294
308
 
295
309
  ### Features
296
310
 
297
- * 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))
298
312
 
299
313
 
300
314
  ### Dependencies
@@ -303,7 +317,7 @@
303
317
  * dependencies
304
318
  * @twin.org/nft-connector-iota bumped from 0.0.1-next.25 to 0.0.1-next.26
305
319
 
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)
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)
307
321
 
308
322
 
309
323
  ### Miscellaneous Chores
@@ -317,12 +331,12 @@
317
331
  * dependencies
318
332
  * @twin.org/nft-connector-iota bumped from 0.0.1-next.24 to 0.0.1-next.25
319
333
 
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)
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)
321
335
 
322
336
 
323
337
  ### Features
324
338
 
325
- * add publish workflows ([3f2ae6b](https://github.com/twinfoundation/nft/commit/3f2ae6b5c29da8012e01ef719c2d91a6aa80c2ad))
339
+ * add publish workflows ([3f2ae6b](https://github.com/iotaledger/twin-nft/commit/3f2ae6b5c29da8012e01ef719c2d91a6aa80c2ad))
326
340
 
327
341
 
328
342
  ### 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.5",
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.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
  }