@t2000/cli 10.16.0 → 10.16.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/{chunk-5ALZ45JV.js → chunk-C7LCO4A7.js} +5 -1
- package/dist/{chunk-5ALZ45JV.js.map → chunk-C7LCO4A7.js.map} +1 -1
- package/dist/{dist-QZRCABOR.js → dist-5TZXQJKI.js} +6 -2
- package/dist/{dist-ARMXCCON.js → dist-E4KORHNV.js} +2 -2
- package/dist/{dist-ARMXCCON.js.map → dist-E4KORHNV.js.map} +1 -1
- package/dist/index.js +3 -3
- package/package.json +4 -4
- /package/dist/{dist-QZRCABOR.js.map → dist-5TZXQJKI.js.map} +0 -0
package/dist/index.js
CHANGED
|
@@ -38,7 +38,7 @@ import {
|
|
|
38
38
|
verifyJobForSeller,
|
|
39
39
|
verifyReceipt,
|
|
40
40
|
walletExists
|
|
41
|
-
} from "./chunk-
|
|
41
|
+
} from "./chunk-C7LCO4A7.js";
|
|
42
42
|
import "./chunk-634W6JCI.js";
|
|
43
43
|
import "./chunk-3ZUWXUSN.js";
|
|
44
44
|
import "./chunk-QSITA6GU.js";
|
|
@@ -22291,7 +22291,7 @@ async function runEstimate(url, opts) {
|
|
|
22291
22291
|
let req = accepts.find((a) => a.scheme === "exact" && a.network?.startsWith("sui:")) ?? accepts[0];
|
|
22292
22292
|
let dialect = "x402";
|
|
22293
22293
|
if (!req) {
|
|
22294
|
-
const { parseMppSuiChallenge } = await import("./dist-
|
|
22294
|
+
const { parseMppSuiChallenge } = await import("./dist-5TZXQJKI.js");
|
|
22295
22295
|
const challenge = await parseMppSuiChallenge(response);
|
|
22296
22296
|
if (!challenge) {
|
|
22297
22297
|
throw new Error(
|
|
@@ -23395,7 +23395,7 @@ function registerMcpStart(parent) {
|
|
|
23395
23395
|
parent.command("start", { isDefault: true }).description("Start MCP server (stdio transport \u2014 for AI client integration)").option("--key <path>", "Custom wallet path (default ~/.t2000/wallet.key)").action(async (opts) => {
|
|
23396
23396
|
let mod;
|
|
23397
23397
|
try {
|
|
23398
|
-
mod = await import("./dist-
|
|
23398
|
+
mod = await import("./dist-E4KORHNV.js");
|
|
23399
23399
|
} catch {
|
|
23400
23400
|
console.error("MCP server not installed. Run:\n npm install -g @t2000/mcp");
|
|
23401
23401
|
process.exit(1);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@t2000/cli",
|
|
3
|
-
"version": "10.16.
|
|
3
|
+
"version": "10.16.1",
|
|
4
4
|
"description": "Agent Wallet for AI agents on Sui — gasless USDC + USDsui sends, Cetus swap, MPP paid API access, MCP integration, scriptable from any shell.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -46,13 +46,13 @@
|
|
|
46
46
|
"typescript": "^5",
|
|
47
47
|
"typescript-eslint": "^8.58.0",
|
|
48
48
|
"vitest": "^3",
|
|
49
|
-
"@t2000/
|
|
50
|
-
"@t2000/
|
|
49
|
+
"@t2000/sdk": "10.16.1",
|
|
50
|
+
"@t2000/mcp": "10.16.1"
|
|
51
51
|
},
|
|
52
52
|
"license": "MIT",
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"qrcode": "^1.5.4",
|
|
55
|
-
"@t2000/id": "^10.16.
|
|
55
|
+
"@t2000/id": "^10.16.1"
|
|
56
56
|
},
|
|
57
57
|
"scripts": {
|
|
58
58
|
"build": "tsup",
|
|
File without changes
|