@twin.org/nft-cli 0.0.1 → 0.0.2-next.1
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 +5 -4
- package/docs/changelog.md +18 -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.1", // x-release-please-version
|
|
441
|
+
version: "0.0.2-next.1", // 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.1", // x-release-please-version
|
|
438
|
+
version: "0.0.2-next.1", // x-release-please-version
|
|
439
439
|
icon: "🌍",
|
|
440
440
|
supportsEnvFiles: true,
|
|
441
441
|
overrideOutputWidth: options?.overrideOutputWidth
|
package/dist/locales/en.json
CHANGED
|
@@ -252,7 +252,8 @@
|
|
|
252
252
|
"transferFailed": "The wallet transfer failed."
|
|
253
253
|
},
|
|
254
254
|
"iotaFaucetConnector": {
|
|
255
|
-
"fundingFailed": "Fund the address from faucet failed"
|
|
255
|
+
"fundingFailed": "Fund the address from faucet failed",
|
|
256
|
+
"faucetRateLimit": "Faucet rate limit exceeded"
|
|
256
257
|
}
|
|
257
258
|
},
|
|
258
259
|
"errorNames": {
|
|
@@ -408,7 +409,7 @@
|
|
|
408
409
|
"options": {
|
|
409
410
|
"address": {
|
|
410
411
|
"param": "--address '<'address'>'",
|
|
411
|
-
"description": "The address to fill from the faucet
|
|
412
|
+
"description": "The address to fill from the faucet in hex format, or start with ! to read environment variable."
|
|
412
413
|
},
|
|
413
414
|
"faucet": {
|
|
414
415
|
"param": "--faucet '<'url'>'",
|
|
@@ -433,11 +434,11 @@
|
|
|
433
434
|
"options": {
|
|
434
435
|
"address": {
|
|
435
436
|
"param": "--address '<'address'>'",
|
|
436
|
-
"description": "The address to send the funds from
|
|
437
|
+
"description": "The address to send the funds from in hex format, or start with ! to read environment variable."
|
|
437
438
|
},
|
|
438
439
|
"dest-address": {
|
|
439
440
|
"param": "--dest-address '<'address'>'",
|
|
440
|
-
"description": "The address to send the funds to
|
|
441
|
+
"description": "The address to send the funds to in hex format, or start with ! to read environment variable."
|
|
441
442
|
},
|
|
442
443
|
"amount": {
|
|
443
444
|
"param": "--amount '<'amount'>'",
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @twin.org/nft-cli - Changelog
|
|
2
2
|
|
|
3
|
+
## [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)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add publish workflows ([3f2ae6b](https://github.com/twinfoundation/nft/commit/3f2ae6b5c29da8012e01ef719c2d91a6aa80c2ad))
|
|
9
|
+
* iota rebased release ([8d05d1f](https://github.com/twinfoundation/nft/commit/8d05d1f58c1aacac983c100697ab40a314ad34ea))
|
|
10
|
+
* update dependencies ([8660f76](https://github.com/twinfoundation/nft/commit/8660f76ca324b0f476e45544cac6bee4b3146c3b))
|
|
11
|
+
* update dlt packages ([12c4966](https://github.com/twinfoundation/nft/commit/12c4966bceb926b7cdcf1449165bee09187a426c))
|
|
12
|
+
* use shared store mechanism ([#16](https://github.com/twinfoundation/nft/issues/16)) ([897bc78](https://github.com/twinfoundation/nft/commit/897bc7805248ba1388b2dd03df24c33f1633f344))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Dependencies
|
|
16
|
+
|
|
17
|
+
* The following workspace dependencies were updated
|
|
18
|
+
* dependencies
|
|
19
|
+
* @twin.org/nft-connector-iota bumped from 0.0.2-next.0 to 0.0.2-next.1
|
|
20
|
+
|
|
3
21
|
## 0.0.1 (2025-07-09)
|
|
4
22
|
|
|
5
23
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/nft-cli",
|
|
3
|
-
"version": "0.0.1",
|
|
3
|
+
"version": "0.0.2-next.1",
|
|
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.1",
|
|
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",
|