@twin.org/nft-cli 0.0.1-next.28 → 0.0.1-next.29

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.
@@ -438,7 +438,7 @@ class CLI extends cliCore.CLIBase {
438
438
  return this.execute({
439
439
  title: "TWIN NFT",
440
440
  appName: "twin-nft",
441
- version: "0.0.1-next.28", // x-release-please-version
441
+ version: "0.0.1-next.29", // x-release-please-version
442
442
  icon: "🌍",
443
443
  supportsEnvFiles: true,
444
444
  overrideOutputWidth: options?.overrideOutputWidth
@@ -435,7 +435,7 @@ class CLI extends CLIBase {
435
435
  return this.execute({
436
436
  title: "TWIN NFT",
437
437
  appName: "twin-nft",
438
- version: "0.0.1-next.28", // x-release-please-version
438
+ version: "0.0.1-next.29", // x-release-please-version
439
439
  icon: "🌍",
440
440
  supportsEnvFiles: true,
441
441
  overrideOutputWidth: options?.overrideOutputWidth
@@ -208,7 +208,8 @@
208
208
  "insufficientFunds": "There were insufficient funds to complete the operation",
209
209
  "packageNotFoundOnNetwork": "The package \"{packageId}\" was not found on the network",
210
210
  "packageObjectError": "Failed to fetch the package object \"{packageId}\"",
211
- "nftTransactionFailed": "The NFT transaction failed",
211
+ "valueTransactionFailed": "The value transaction failed",
212
+ "transactionFailed": "The transaction failed",
212
213
  "addressNotFound": "The address is missing could not be found from the seed \"{address}\""
213
214
  },
214
215
  "vaultConnectorHelper": {
package/docs/changelog.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @twin.org/nft-cli - Changelog
2
2
 
3
+ ## [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)
4
+
5
+
6
+ ### Features
7
+
8
+ * update dlt packages ([12c4966](https://github.com/twinfoundation/nft/commit/12c4966bceb926b7cdcf1449165bee09187a426c))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/nft-connector-iota bumped from 0.0.1-next.28 to 0.0.1-next.29
16
+
3
17
  ## [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)
4
18
 
5
19
 
package/docs/examples.md CHANGED
@@ -84,12 +84,12 @@ twin-nft mnemonic --env wallet.env
84
84
  twin-nft address --load-env wallet.env --hrp tst --seed !SEED --count 4 --env wallet.env --merge-env
85
85
  ```
86
86
 
87
- To run this on the IOTA testnet you will need an env file with the following settings. Store the following config as config.env
87
+ To run this on the IOTA devnet you will need an env file with the following settings. Store the following config as config.env
88
88
 
89
89
  ```shell
90
- NODE_URL="https://api.testnet.iotaledger.net"
91
- FAUCET_URL="https://faucet.testnet.iotaledger.net/api/enqueue"
92
- EXPLORER_URL="https://explorer.iota.org/iota-testnet/"
90
+ NODE_URL="https://api.devnet.iota.cafe"
91
+ FAUCET_URL="https://faucet.devnet.iota.cafe"
92
+ EXPLORER_URL="https://explorer.iota.org/?network=devnet"
93
93
  ```
94
94
 
95
95
  We also need to create a JSON file containing the immutable metadata for the NFT. The following JSON file follows the IRC27 standard for NFT data. Save this file as `immutable.json` to use in the following scripts.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/nft-cli",
3
- "version": "0.0.1-next.28",
3
+ "version": "0.0.1-next.29",
4
4
  "description": "A command line interface for interacting with the nft connectors",
5
5
  "repository": {
6
6
  "type": "git",
@@ -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.1-next.28",
24
+ "@twin.org/nft-connector-iota": "0.0.1-next.29",
25
25
  "@twin.org/vault-connector-entity-storage": "next",
26
26
  "@twin.org/vault-models": "next",
27
27
  "@twin.org/wallet-cli": "next",