@t2000/cli 5.23.0 → 5.24.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 +2 -0
- package/dist/{chunk-X6ON6NN5.js → chunk-5MAY6SK7.js} +2 -2
- package/dist/{chunk-I2DCISQP.js → chunk-D3DUYZYR.js} +1 -20
- package/dist/{chunk-I2DCISQP.js.map → chunk-D3DUYZYR.js.map} +1 -1
- package/dist/{chunk-TP3M7BAU.js → chunk-JEIOQF6Q.js} +3 -3
- package/dist/{chunk-5AD7I65O.js → chunk-R6QER65C.js} +3 -3
- package/dist/{chunk-3TZXRO3E.js → chunk-UJGE644R.js} +5 -5
- package/dist/{dist-AFL7T3GQ.js → dist-4S52EVO3.js} +6 -6
- package/dist/{dist-TCGFVCLO.js → dist-B7O5FUPB.js} +724 -145
- package/dist/{dist-TCGFVCLO.js.map → dist-B7O5FUPB.js.map} +1 -1
- package/dist/{esm-ORCGSDY7.js → esm-ZKAIHFAJ.js} +2 -2
- package/dist/{grpc-CM6M7ZV3.js → grpc-G3RQE2L5.js} +4 -4
- package/dist/index.js +1037 -160
- package/dist/index.js.map +1 -1
- package/dist/{x402-YYM5ZJIK.js → x402-ALCPXKII.js} +4 -4
- package/package.json +3 -3
- /package/dist/{chunk-X6ON6NN5.js.map → chunk-5MAY6SK7.js.map} +0 -0
- /package/dist/{chunk-TP3M7BAU.js.map → chunk-JEIOQF6Q.js.map} +0 -0
- /package/dist/{chunk-5AD7I65O.js.map → chunk-R6QER65C.js.map} +0 -0
- /package/dist/{chunk-3TZXRO3E.js.map → chunk-UJGE644R.js.map} +0 -0
- /package/dist/{dist-AFL7T3GQ.js.map → dist-4S52EVO3.js.map} +0 -0
- /package/dist/{esm-ORCGSDY7.js.map → esm-ZKAIHFAJ.js.map} +0 -0
- /package/dist/{grpc-CM6M7ZV3.js.map → grpc-G3RQE2L5.js.map} +0 -0
- /package/dist/{x402-YYM5ZJIK.js.map → x402-ALCPXKII.js.map} +0 -0
package/README.md
CHANGED
|
@@ -23,6 +23,8 @@ t2 fund # show address + ANSI QR
|
|
|
23
23
|
t2 send 5 USDC alice.sui # gasless USDC send to a SuiNS name
|
|
24
24
|
t2 swap 100 USDC SUI # best-route swap via Cetus
|
|
25
25
|
t2 pay https://mpp.t2000.ai/openai/v1/chat/completions --data '…'
|
|
26
|
+
t2 agents # browse the agent store (agents.t2000.ai)
|
|
27
|
+
t2 task list # reward tasks + the community task board
|
|
26
28
|
t2 mcp install # wire Claude Desktop / Cursor / Windsurf
|
|
27
29
|
```
|
|
28
30
|
|
|
@@ -16,7 +16,7 @@ import {
|
|
|
16
16
|
toBase58,
|
|
17
17
|
toBase64,
|
|
18
18
|
toHex
|
|
19
|
-
} from "./chunk-
|
|
19
|
+
} from "./chunk-D3DUYZYR.js";
|
|
20
20
|
|
|
21
21
|
// ../../node_modules/.pnpm/@mysten+sui@2.17.0_typescript@5.9.3/node_modules/@mysten/sui/dist/bcs/type-tag-serializer.mjs
|
|
22
22
|
var VECTOR_REGEX = /^vector<(.+)>$/;
|
|
@@ -2813,4 +2813,4 @@ export {
|
|
|
2813
2813
|
findNamesInTransaction,
|
|
2814
2814
|
replaceNames
|
|
2815
2815
|
};
|
|
2816
|
-
//# sourceMappingURL=chunk-
|
|
2816
|
+
//# sourceMappingURL=chunk-5MAY6SK7.js.map
|
|
@@ -1420,16 +1420,6 @@ function hexToBytes(hex) {
|
|
|
1420
1420
|
}
|
|
1421
1421
|
return array;
|
|
1422
1422
|
}
|
|
1423
|
-
function utf8ToBytes(str) {
|
|
1424
|
-
if (typeof str !== "string")
|
|
1425
|
-
throw new Error("string expected");
|
|
1426
|
-
return new Uint8Array(new TextEncoder().encode(str));
|
|
1427
|
-
}
|
|
1428
|
-
function kdfInputToBytes(data, errorTitle = "") {
|
|
1429
|
-
if (typeof data === "string")
|
|
1430
|
-
return utf8ToBytes(data);
|
|
1431
|
-
return abytes(data, void 0, errorTitle);
|
|
1432
|
-
}
|
|
1433
1423
|
function concatBytes(...arrays) {
|
|
1434
1424
|
let sum = 0;
|
|
1435
1425
|
for (let i = 0; i < arrays.length; i++) {
|
|
@@ -1445,12 +1435,6 @@ function concatBytes(...arrays) {
|
|
|
1445
1435
|
}
|
|
1446
1436
|
return res;
|
|
1447
1437
|
}
|
|
1448
|
-
function checkOpts(defaults, opts) {
|
|
1449
|
-
if (opts !== void 0 && {}.toString.call(opts) !== "[object Object]")
|
|
1450
|
-
throw new Error("options must be object or undefined");
|
|
1451
|
-
const merged = Object.assign(defaults, opts);
|
|
1452
|
-
return merged;
|
|
1453
|
-
}
|
|
1454
1438
|
function createHasher(hashCons, info = {}) {
|
|
1455
1439
|
const hashC = (msg, opts) => hashCons(opts).update(msg).digest();
|
|
1456
1440
|
const tmp = hashCons(void 0);
|
|
@@ -2196,12 +2180,9 @@ export {
|
|
|
2196
2180
|
ahash,
|
|
2197
2181
|
aexists,
|
|
2198
2182
|
clean,
|
|
2199
|
-
createView,
|
|
2200
2183
|
bytesToHex,
|
|
2201
2184
|
hexToBytes,
|
|
2202
|
-
kdfInputToBytes,
|
|
2203
2185
|
concatBytes,
|
|
2204
|
-
checkOpts,
|
|
2205
2186
|
createHasher,
|
|
2206
2187
|
randomBytes,
|
|
2207
2188
|
oidNist,
|
|
@@ -2231,4 +2212,4 @@ export {
|
|
|
2231
2212
|
@noble/hashes/utils.js:
|
|
2232
2213
|
(*! noble-hashes - MIT License (c) 2022 Paul Miller (paulmillr.com) *)
|
|
2233
2214
|
*/
|
|
2234
|
-
//# sourceMappingURL=chunk-
|
|
2215
|
+
//# sourceMappingURL=chunk-D3DUYZYR.js.map
|