@t2000/cli 5.14.0 → 5.14.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.
|
@@ -80332,7 +80332,7 @@ Through this wallet you can reach essentially any major external API, billed to
|
|
|
80332
80332
|
CRITICAL: When the user asks to use any external or paid API, names a provider (e.g. "via fal.ai", "with ElevenLabs"), or requests a capability one of the services above provides, DO NOT say you cannot reach that service, that it isn't on an allowlist, or that there's no connector \u2014 and do NOT fall back to writing a script for the user to run. You CAN do it directly through this wallet. Use t2000_services to discover the endpoint and request shape, then t2000_pay to execute, then show the user the result (display image/audio URLs returned in the response).
|
|
80333
80333
|
|
|
80334
80334
|
Spending is the user's own USDC and every t2000_pay call is bounded by maxPrice. For larger or multi-step spends, state the estimated cost first and proceed once the user is happy. Use t2000_balance to check funds. The v4 wallet is payments-only; savings / lending live on audric.ai.`;
|
|
80335
|
-
var PKG_VERSION = "5.14.
|
|
80335
|
+
var PKG_VERSION = "5.14.2";
|
|
80336
80336
|
console.log = (...args) => console.error("[log]", ...args);
|
|
80337
80337
|
console.warn = (...args) => console.error("[warn]", ...args);
|
|
80338
80338
|
async function startMcpServer(opts) {
|
|
@@ -80398,4 +80398,4 @@ mime-types/index.js:
|
|
|
80398
80398
|
@scure/bip39/index.js:
|
|
80399
80399
|
(*! scure-bip39 - MIT License (c) 2022 Patricio Palladino, Paul Miller (paulmillr.com) *)
|
|
80400
80400
|
*/
|
|
80401
|
-
//# sourceMappingURL=dist-
|
|
80401
|
+
//# sourceMappingURL=dist-M7PSITSX.js.map
|
package/dist/index.js
CHANGED
|
@@ -32580,7 +32580,7 @@ function registerMcpStart(parent) {
|
|
|
32580
32580
|
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) => {
|
|
32581
32581
|
let mod2;
|
|
32582
32582
|
try {
|
|
32583
|
-
mod2 = await import("./dist-
|
|
32583
|
+
mod2 = await import("./dist-M7PSITSX.js");
|
|
32584
32584
|
} catch {
|
|
32585
32585
|
console.error("MCP server not installed. Run:\n npm install -g @t2000/mcp");
|
|
32586
32586
|
process.exit(1);
|
|
@@ -32923,6 +32923,7 @@ For MCP-aware clients (Claude Desktop, Cursor, Windsurf), prefer
|
|
|
32923
32923
|
import { createHash } from "crypto";
|
|
32924
32924
|
var DEFAULT_API_BASE2 = process.env.T2000_API_URL ?? "https://api.t2000.ai/v1";
|
|
32925
32925
|
var DEFAULT_GATEWAY = process.env.T2000_GATEWAY_URL ?? "https://mpp.t2000.ai";
|
|
32926
|
+
var DEFAULT_RAIL = process.env.T2000_RAIL_URL ?? "https://x402.t2000.ai";
|
|
32926
32927
|
function collectHeader(value, previous) {
|
|
32927
32928
|
const [key, ...rest] = value.split("=");
|
|
32928
32929
|
if (key && rest.length > 0) {
|
|
@@ -33098,6 +33099,16 @@ Subcommands:
|
|
|
33098
33099
|
const base = opts.api ?? DEFAULT_API_BASE2;
|
|
33099
33100
|
const agent = await withAgent({ keyPath: opts.key });
|
|
33100
33101
|
const address = agent.address();
|
|
33102
|
+
if (!isValidSuiAddress(owner)) {
|
|
33103
|
+
throw new Error(
|
|
33104
|
+
"Provide a valid Sui address for the owner (your Passport, e.g. 0x\u2026)."
|
|
33105
|
+
);
|
|
33106
|
+
}
|
|
33107
|
+
if (normalizeSuiAddress(owner) === normalizeSuiAddress(address)) {
|
|
33108
|
+
throw new Error(
|
|
33109
|
+
"That's this agent's own address. Pass YOUR Passport address (the human owner) \u2014 e.g. the one shown in platform.t2000.ai."
|
|
33110
|
+
);
|
|
33111
|
+
}
|
|
33101
33112
|
const { digest } = await runSponsoredTx({
|
|
33102
33113
|
keypair: agent.keypair,
|
|
33103
33114
|
actor: address,
|
|
@@ -33328,7 +33339,7 @@ Subcommands:
|
|
|
33328
33339
|
prepareUrl: `${base}/agent/service/prepare`,
|
|
33329
33340
|
prepareBody: {
|
|
33330
33341
|
address,
|
|
33331
|
-
mcpEndpoint: `${
|
|
33342
|
+
mcpEndpoint: `${DEFAULT_RAIL}/deploy/${address}`,
|
|
33332
33343
|
paymentMethods: ["x402"],
|
|
33333
33344
|
priceUsdc: opts.price
|
|
33334
33345
|
},
|