@t2000/cli 0.36.4 → 0.37.0
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 +1 -1
- package/dist/{ccip-JEEJV65M.js → ccip-XP27NGI7.js} +3 -3
- package/dist/{chunk-A5X4KG7U.js → chunk-3I6VJOM6.js} +210 -970
- package/dist/chunk-3I6VJOM6.js.map +1 -0
- package/dist/{chunk-FSSTF3LM.js → chunk-7PIRCLKI.js} +68 -10
- package/dist/chunk-7PIRCLKI.js.map +1 -0
- package/dist/chunk-EI3GHTKX.js +968 -0
- package/dist/chunk-EI3GHTKX.js.map +1 -0
- package/dist/{chunk-HGA6AHN5.js → chunk-TYYJRUQI.js} +70 -644
- package/dist/chunk-TYYJRUQI.js.map +1 -0
- package/dist/{client-KQCHOXLV.js → client-IXUBQ3HM.js} +197 -197
- package/dist/client-IXUBQ3HM.js.map +1 -0
- package/dist/{client-2MUO6VAJ.js → client-YNWQPUC5.js} +4 -4
- package/dist/{client-2MUO6VAJ.js.map → client-YNWQPUC5.js.map} +1 -1
- package/dist/{dist-4JQX7CWE.js → dist-EDYMBYNA.js} +2 -2
- package/dist/{dist-55H37ULN.js → dist-NREODDWO.js} +3 -3
- package/dist/{dist-55H37ULN.js.map → dist-NREODDWO.js.map} +1 -1
- package/dist/index.js +6 -5
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/dist/chunk-77SWBATH.js +0 -204
- package/dist/chunk-77SWBATH.js.map +0 -1
- package/dist/chunk-A5X4KG7U.js.map +0 -1
- package/dist/chunk-FSSTF3LM.js.map +0 -1
- package/dist/chunk-HGA6AHN5.js.map +0 -1
- package/dist/client-KQCHOXLV.js.map +0 -1
- /package/dist/{ccip-JEEJV65M.js.map → ccip-XP27NGI7.js.map} +0 -0
- /package/dist/{dist-4JQX7CWE.js.map → dist-EDYMBYNA.js.map} +0 -0
package/dist/index.js
CHANGED
|
@@ -17,7 +17,7 @@ import {
|
|
|
17
17
|
saveKey,
|
|
18
18
|
truncateAddress,
|
|
19
19
|
walletExists
|
|
20
|
-
} from "./chunk-
|
|
20
|
+
} from "./chunk-7PIRCLKI.js";
|
|
21
21
|
import "./chunk-V7PXDEKG.js";
|
|
22
22
|
import "./chunk-Q2LY5BHK.js";
|
|
23
23
|
import "./chunk-3XUF7GM3.js";
|
|
@@ -7832,7 +7832,7 @@ function registerLock(program3) {
|
|
|
7832
7832
|
});
|
|
7833
7833
|
program3.command("unlock").description("Unlock agent \u2014 resume operations").action(async () => {
|
|
7834
7834
|
try {
|
|
7835
|
-
const { T2000: T20003 } = await import("./dist-
|
|
7835
|
+
const { T2000: T20003 } = await import("./dist-EDYMBYNA.js");
|
|
7836
7836
|
const MAX_ATTEMPTS2 = 3;
|
|
7837
7837
|
let pin;
|
|
7838
7838
|
for (let attempt = 1; attempt <= MAX_ATTEMPTS2; attempt++) {
|
|
@@ -8006,7 +8006,7 @@ function registerMcp(program3) {
|
|
|
8006
8006
|
mcp.command("start", { isDefault: true }).description("Start MCP server (stdio transport)").option("--key <path>", "Key file path").action(async (opts) => {
|
|
8007
8007
|
let mod;
|
|
8008
8008
|
try {
|
|
8009
|
-
mod = await import("./dist-
|
|
8009
|
+
mod = await import("./dist-NREODDWO.js");
|
|
8010
8010
|
} catch {
|
|
8011
8011
|
console.error(
|
|
8012
8012
|
"MCP server not installed. Run:\n npm install -g @t2000/mcp"
|
|
@@ -8419,14 +8419,15 @@ function registerReceive(program3) {
|
|
|
8419
8419
|
printDivider();
|
|
8420
8420
|
printKeyValue("Address", request.address);
|
|
8421
8421
|
printKeyValue("Network", "Sui Mainnet");
|
|
8422
|
+
printKeyValue("Nonce", request.nonce);
|
|
8422
8423
|
if (request.memo) {
|
|
8423
8424
|
printKeyValue("Memo", request.memo);
|
|
8424
8425
|
}
|
|
8425
8426
|
printDivider();
|
|
8426
8427
|
printBlank();
|
|
8427
|
-
printKeyValue("
|
|
8428
|
+
printKeyValue("Payment URI", request.qrUri);
|
|
8428
8429
|
printBlank();
|
|
8429
|
-
printLine(import_picocolors18.default.dim("Share this
|
|
8430
|
+
printLine(import_picocolors18.default.dim("Share this URI or scan the QR to pay via any Sui wallet."));
|
|
8430
8431
|
printBlank();
|
|
8431
8432
|
} catch (error) {
|
|
8432
8433
|
handleError(error);
|