@twin.org/nft-cli 0.0.1 → 0.0.2-next.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.cjs +1 -1
- package/dist/esm/index.mjs +1 -1
- package/dist/locales/en.json +12 -6
- package/docs/changelog.md +32 -0
- package/package.json +13 -13
package/dist/cjs/index.cjs
CHANGED
|
@@ -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.
|
|
441
|
+
version: "0.0.2-next.2", // x-release-please-version
|
|
442
442
|
icon: "🌍",
|
|
443
443
|
supportsEnvFiles: true,
|
|
444
444
|
overrideOutputWidth: options?.overrideOutputWidth
|
package/dist/esm/index.mjs
CHANGED
|
@@ -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.
|
|
438
|
+
version: "0.0.2-next.2", // x-release-please-version
|
|
439
439
|
icon: "🌍",
|
|
440
440
|
supportsEnvFiles: true,
|
|
441
441
|
overrideOutputWidth: options?.overrideOutputWidth
|
package/dist/locales/en.json
CHANGED
|
@@ -201,7 +201,11 @@
|
|
|
201
201
|
"deployTransactionFailed": "Deploying the contract failed with error: \"{error}\"",
|
|
202
202
|
"connectorNotStarted": "Please call start() before using this connector. Package ID: \"{packageId}\" is missing.",
|
|
203
203
|
"invalidImmutableMetadata": "The immutable metadata for NFT \"{nftId}\" is invalid",
|
|
204
|
-
"invalidMetadata": "The metadata for NFT \"{nftId}\" is invalid"
|
|
204
|
+
"invalidMetadata": "The metadata for NFT \"{nftId}\" is invalid",
|
|
205
|
+
"contractDataNotFound": "Contract data not found for network \"{network}\". Available networks: {availableNetworks}",
|
|
206
|
+
"packageNotFoundOnNetwork": "Package \"{deployedPackageId}\" not found on \"{network}\" network",
|
|
207
|
+
"deployedPackageIdRequired": "deployedPackageId is required for network operations on \"{network}\".",
|
|
208
|
+
"packageIdNotFound": "Package ID not found for network \"{network}\""
|
|
205
209
|
},
|
|
206
210
|
"iotaNftUtils": {
|
|
207
211
|
"invalidNftIdFormat": "The NFT ID \"{id}\" has an invalid format"
|
|
@@ -252,7 +256,8 @@
|
|
|
252
256
|
"transferFailed": "The wallet transfer failed."
|
|
253
257
|
},
|
|
254
258
|
"iotaFaucetConnector": {
|
|
255
|
-
"fundingFailed": "Fund the address from faucet failed"
|
|
259
|
+
"fundingFailed": "Fund the address from faucet failed",
|
|
260
|
+
"faucetRateLimit": "Faucet rate limit exceeded"
|
|
256
261
|
}
|
|
257
262
|
},
|
|
258
263
|
"errorNames": {
|
|
@@ -408,7 +413,7 @@
|
|
|
408
413
|
"options": {
|
|
409
414
|
"address": {
|
|
410
415
|
"param": "--address '<'address'>'",
|
|
411
|
-
"description": "The address to fill from the faucet
|
|
416
|
+
"description": "The address to fill from the faucet in hex format, or start with ! to read environment variable."
|
|
412
417
|
},
|
|
413
418
|
"faucet": {
|
|
414
419
|
"param": "--faucet '<'url'>'",
|
|
@@ -433,11 +438,11 @@
|
|
|
433
438
|
"options": {
|
|
434
439
|
"address": {
|
|
435
440
|
"param": "--address '<'address'>'",
|
|
436
|
-
"description": "The address to send the funds from
|
|
441
|
+
"description": "The address to send the funds from in hex format, or start with ! to read environment variable."
|
|
437
442
|
},
|
|
438
443
|
"dest-address": {
|
|
439
444
|
"param": "--dest-address '<'address'>'",
|
|
440
|
-
"description": "The address to send the funds to
|
|
445
|
+
"description": "The address to send the funds to in hex format, or start with ! to read environment variable."
|
|
441
446
|
},
|
|
442
447
|
"amount": {
|
|
443
448
|
"param": "--amount '<'amount'>'",
|
|
@@ -602,7 +607,8 @@
|
|
|
602
607
|
"iotaNftConnector": {
|
|
603
608
|
"contractAlreadyDeployed": "Contract already deployed",
|
|
604
609
|
"contractDeploymentStarted": "Contract deployment started",
|
|
605
|
-
"contractDeploymentCompleted": "Contract deployment completed"
|
|
610
|
+
"contractDeploymentCompleted": "Contract deployment completed",
|
|
611
|
+
"contractReady": "Contract ready for use"
|
|
606
612
|
}
|
|
607
613
|
},
|
|
608
614
|
"errorMessages": {
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# @twin.org/nft-cli - Changelog
|
|
2
2
|
|
|
3
|
+
## [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)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous Chores
|
|
7
|
+
|
|
8
|
+
* **nft-cli:** Synchronize repo versions
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/nft-connector-iota bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
16
|
+
|
|
17
|
+
## [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)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* add publish workflows ([3f2ae6b](https://github.com/twinfoundation/nft/commit/3f2ae6b5c29da8012e01ef719c2d91a6aa80c2ad))
|
|
23
|
+
* iota rebased release ([8d05d1f](https://github.com/twinfoundation/nft/commit/8d05d1f58c1aacac983c100697ab40a314ad34ea))
|
|
24
|
+
* update dependencies ([8660f76](https://github.com/twinfoundation/nft/commit/8660f76ca324b0f476e45544cac6bee4b3146c3b))
|
|
25
|
+
* update dlt packages ([12c4966](https://github.com/twinfoundation/nft/commit/12c4966bceb926b7cdcf1449165bee09187a426c))
|
|
26
|
+
* use shared store mechanism ([#16](https://github.com/twinfoundation/nft/issues/16)) ([897bc78](https://github.com/twinfoundation/nft/commit/897bc7805248ba1388b2dd03df24c33f1633f344))
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
### Dependencies
|
|
30
|
+
|
|
31
|
+
* The following workspace dependencies were updated
|
|
32
|
+
* dependencies
|
|
33
|
+
* @twin.org/nft-connector-iota bumped from 0.0.2-next.0 to 0.0.2-next.1
|
|
34
|
+
|
|
3
35
|
## 0.0.1 (2025-07-09)
|
|
4
36
|
|
|
5
37
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/nft-cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2-next.2",
|
|
4
4
|
"description": "A command line interface for interacting with the nft connectors",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,18 +14,18 @@
|
|
|
14
14
|
"node": ">=20.0.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@twin.org/cli-core": "
|
|
18
|
-
"@twin.org/core": "
|
|
19
|
-
"@twin.org/crypto": "
|
|
20
|
-
"@twin.org/crypto-cli": "
|
|
21
|
-
"@twin.org/entity": "
|
|
22
|
-
"@twin.org/entity-storage-connector-memory": "
|
|
23
|
-
"@twin.org/nameof": "
|
|
24
|
-
"@twin.org/nft-connector-iota": "
|
|
25
|
-
"@twin.org/vault-connector-entity-storage": "
|
|
26
|
-
"@twin.org/vault-models": "
|
|
27
|
-
"@twin.org/wallet-cli": "
|
|
28
|
-
"@twin.org/wallet-models": "
|
|
17
|
+
"@twin.org/cli-core": "next",
|
|
18
|
+
"@twin.org/core": "next",
|
|
19
|
+
"@twin.org/crypto": "next",
|
|
20
|
+
"@twin.org/crypto-cli": "next",
|
|
21
|
+
"@twin.org/entity": "next",
|
|
22
|
+
"@twin.org/entity-storage-connector-memory": "next",
|
|
23
|
+
"@twin.org/nameof": "next",
|
|
24
|
+
"@twin.org/nft-connector-iota": "0.0.2-next.2",
|
|
25
|
+
"@twin.org/vault-connector-entity-storage": "next",
|
|
26
|
+
"@twin.org/vault-models": "next",
|
|
27
|
+
"@twin.org/wallet-cli": "next",
|
|
28
|
+
"@twin.org/wallet-models": "next",
|
|
29
29
|
"commander": "14.0.0"
|
|
30
30
|
},
|
|
31
31
|
"main": "./dist/cjs/index.cjs",
|