@t2000/cli 5.22.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.
@@ -13046,16 +13046,6 @@ function hexToBytes(hex) {
13046
13046
  }
13047
13047
  return array3;
13048
13048
  }
13049
- function utf8ToBytes(str) {
13050
- if (typeof str !== "string")
13051
- throw new Error("string expected");
13052
- return new Uint8Array(new TextEncoder().encode(str));
13053
- }
13054
- function kdfInputToBytes(data, errorTitle = "") {
13055
- if (typeof data === "string")
13056
- return utf8ToBytes(data);
13057
- return abytes(data, void 0, errorTitle);
13058
- }
13059
13049
  function concatBytes(...arrays) {
13060
13050
  let sum2 = 0;
13061
13051
  for (let i = 0; i < arrays.length; i++) {
@@ -13071,12 +13061,6 @@ function concatBytes(...arrays) {
13071
13061
  }
13072
13062
  return res;
13073
13063
  }
13074
- function checkOpts(defaults2, opts) {
13075
- if (opts !== void 0 && {}.toString.call(opts) !== "[object Object]")
13076
- throw new Error("options must be object or undefined");
13077
- const merged = Object.assign(defaults2, opts);
13078
- return merged;
13079
- }
13080
13064
  function createHasher(hashCons, info = {}) {
13081
13065
  const hashC = (msg, opts) => hashCons(opts).update(msg).digest();
13082
13066
  const tmp = hashCons(void 0);
@@ -33187,7 +33171,7 @@ function camelToSnakeCaseObject(obj) {
33187
33171
  return result;
33188
33172
  }
33189
33173
  var init_utils6 = __esm({
33190
- "../../node_modules/.pnpm/@pythnetwork+hermes-client@3.1.0_axios@1.15.2/node_modules/@pythnetwork/hermes-client/dist/esm/utils.mjs"() {
33174
+ "../../node_modules/.pnpm/@pythnetwork+hermes-client@3.1.0_axios@1.16.1/node_modules/@pythnetwork/hermes-client/dist/esm/utils.mjs"() {
33191
33175
  }
33192
33176
  });
33193
33177
  function bind(fn, thisArg) {
@@ -33196,7 +33180,7 @@ function bind(fn, thisArg) {
33196
33180
  };
33197
33181
  }
33198
33182
  var init_bind = __esm({
33199
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/helpers/bind.js"() {
33183
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/helpers/bind.js"() {
33200
33184
  }
33201
33185
  });
33202
33186
  function isBuffer(val) {
@@ -33260,7 +33244,7 @@ function findKey(obj, key) {
33260
33244
  }
33261
33245
  return null;
33262
33246
  }
33263
- function merge2() {
33247
+ function merge2(...objs) {
33264
33248
  const { caseless, skipUndefined } = isContextDefined(this) && this || {};
33265
33249
  const result = {};
33266
33250
  const assignValue = (val, key) => {
@@ -33268,8 +33252,9 @@ function merge2() {
33268
33252
  return;
33269
33253
  }
33270
33254
  const targetKey = caseless && findKey(result, key) || key;
33271
- if (isPlainObject3(result[targetKey]) && isPlainObject3(val)) {
33272
- result[targetKey] = merge2(result[targetKey], val);
33255
+ const existing = hasOwnProperty(result, targetKey) ? result[targetKey] : void 0;
33256
+ if (isPlainObject3(existing) && isPlainObject3(val)) {
33257
+ result[targetKey] = merge2(existing, val);
33273
33258
  } else if (isPlainObject3(val)) {
33274
33259
  result[targetKey] = merge2({}, val);
33275
33260
  } else if (isArray(val)) {
@@ -33278,8 +33263,8 @@ function merge2() {
33278
33263
  result[targetKey] = val;
33279
33264
  }
33280
33265
  };
33281
- for (let i = 0, l2 = arguments.length; i < l2; i++) {
33282
- arguments[i] && forEach(arguments[i], assignValue);
33266
+ for (let i = 0, l2 = objs.length; i < l2; i++) {
33267
+ objs[i] && forEach(objs[i], assignValue);
33283
33268
  }
33284
33269
  return result;
33285
33270
  }
@@ -33347,7 +33332,7 @@ var asap;
33347
33332
  var isIterable;
33348
33333
  var utils_default;
33349
33334
  var init_utils7 = __esm({
33350
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/utils.js"() {
33335
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/utils.js"() {
33351
33336
  init_bind();
33352
33337
  ({ toString } = Object.prototype);
33353
33338
  ({ getPrototypeOf } = Object);
@@ -33428,6 +33413,9 @@ var init_utils7 = __esm({
33428
33413
  (val, key) => {
33429
33414
  if (thisArg && isFunction(val)) {
33430
33415
  Object.defineProperty(a, key, {
33416
+ // Null-proto descriptor so a polluted Object.prototype.get cannot
33417
+ // hijack defineProperty's accessor-vs-data resolution.
33418
+ __proto__: null,
33431
33419
  value: bind(val, thisArg),
33432
33420
  writable: true,
33433
33421
  enumerable: true,
@@ -33435,6 +33423,7 @@ var init_utils7 = __esm({
33435
33423
  });
33436
33424
  } else {
33437
33425
  Object.defineProperty(a, key, {
33426
+ __proto__: null,
33438
33427
  value: val,
33439
33428
  writable: true,
33440
33429
  enumerable: true,
@@ -33455,12 +33444,14 @@ var init_utils7 = __esm({
33455
33444
  inherits = (constructor, superConstructor, props, descriptors) => {
33456
33445
  constructor.prototype = Object.create(superConstructor.prototype, descriptors);
33457
33446
  Object.defineProperty(constructor.prototype, "constructor", {
33447
+ __proto__: null,
33458
33448
  value: constructor,
33459
33449
  writable: true,
33460
33450
  enumerable: false,
33461
33451
  configurable: true
33462
33452
  });
33463
33453
  Object.defineProperty(constructor, "super", {
33454
+ __proto__: null,
33464
33455
  value: superConstructor.prototype
33465
33456
  });
33466
33457
  props && Object.assign(constructor.prototype, props);
@@ -33549,7 +33540,7 @@ var init_utils7 = __esm({
33549
33540
  };
33550
33541
  freezeMethods = (obj) => {
33551
33542
  reduceDescriptors(obj, (descriptor, name) => {
33552
- if (isFunction(obj) && ["arguments", "caller", "callee"].indexOf(name) !== -1) {
33543
+ if (isFunction(obj) && ["arguments", "caller", "callee"].includes(name)) {
33553
33544
  return false;
33554
33545
  }
33555
33546
  const value = obj[name];
@@ -33582,29 +33573,29 @@ var init_utils7 = __esm({
33582
33573
  return value != null && Number.isFinite(value = +value) ? value : defaultValue;
33583
33574
  };
33584
33575
  toJSONObject = (obj) => {
33585
- const stack = new Array(10);
33586
- const visit2 = (source, i) => {
33576
+ const visited = /* @__PURE__ */ new WeakSet();
33577
+ const visit2 = (source) => {
33587
33578
  if (isObject2(source)) {
33588
- if (stack.indexOf(source) >= 0) {
33579
+ if (visited.has(source)) {
33589
33580
  return;
33590
33581
  }
33591
33582
  if (isBuffer(source)) {
33592
33583
  return source;
33593
33584
  }
33594
33585
  if (!("toJSON" in source)) {
33595
- stack[i] = source;
33586
+ visited.add(source);
33596
33587
  const target = isArray(source) ? [] : {};
33597
33588
  forEach(source, (value, key) => {
33598
- const reducedValue = visit2(value, i + 1);
33589
+ const reducedValue = visit2(value);
33599
33590
  !isUndefined(reducedValue) && (target[key] = reducedValue);
33600
33591
  });
33601
- stack[i] = void 0;
33592
+ visited.delete(source);
33602
33593
  return target;
33603
33594
  }
33604
33595
  }
33605
33596
  return source;
33606
33597
  };
33607
- return visit2(obj, 0);
33598
+ return visit2(obj);
33608
33599
  };
33609
33600
  isAsyncFn = kindOfTest("AsyncFunction");
33610
33601
  isThenable = (thing) => thing && (isObject2(thing) || isFunction(thing)) && isFunction(thing.then) && isFunction(thing.catch);
@@ -33694,11 +33685,408 @@ var init_utils7 = __esm({
33694
33685
  };
33695
33686
  }
33696
33687
  });
33688
+ var ignoreDuplicateOf;
33689
+ var parseHeaders_default;
33690
+ var init_parseHeaders = __esm({
33691
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/helpers/parseHeaders.js"() {
33692
+ init_utils7();
33693
+ ignoreDuplicateOf = utils_default.toObjectSet([
33694
+ "age",
33695
+ "authorization",
33696
+ "content-length",
33697
+ "content-type",
33698
+ "etag",
33699
+ "expires",
33700
+ "from",
33701
+ "host",
33702
+ "if-modified-since",
33703
+ "if-unmodified-since",
33704
+ "last-modified",
33705
+ "location",
33706
+ "max-forwards",
33707
+ "proxy-authorization",
33708
+ "referer",
33709
+ "retry-after",
33710
+ "user-agent"
33711
+ ]);
33712
+ parseHeaders_default = (rawHeaders) => {
33713
+ const parsed = {};
33714
+ let key;
33715
+ let val;
33716
+ let i;
33717
+ rawHeaders && rawHeaders.split("\n").forEach(function parser(line) {
33718
+ i = line.indexOf(":");
33719
+ key = line.substring(0, i).trim().toLowerCase();
33720
+ val = line.substring(i + 1).trim();
33721
+ if (!key || parsed[key] && ignoreDuplicateOf[key]) {
33722
+ return;
33723
+ }
33724
+ if (key === "set-cookie") {
33725
+ if (parsed[key]) {
33726
+ parsed[key].push(val);
33727
+ } else {
33728
+ parsed[key] = [val];
33729
+ }
33730
+ } else {
33731
+ parsed[key] = parsed[key] ? parsed[key] + ", " + val : val;
33732
+ }
33733
+ });
33734
+ return parsed;
33735
+ };
33736
+ }
33737
+ });
33738
+ function trimSPorHTAB(str) {
33739
+ let start = 0;
33740
+ let end = str.length;
33741
+ while (start < end) {
33742
+ const code = str.charCodeAt(start);
33743
+ if (code !== 9 && code !== 32) {
33744
+ break;
33745
+ }
33746
+ start += 1;
33747
+ }
33748
+ while (end > start) {
33749
+ const code = str.charCodeAt(end - 1);
33750
+ if (code !== 9 && code !== 32) {
33751
+ break;
33752
+ }
33753
+ end -= 1;
33754
+ }
33755
+ return start === 0 && end === str.length ? str : str.slice(start, end);
33756
+ }
33757
+ function sanitizeValue(value, invalidChars) {
33758
+ if (utils_default.isArray(value)) {
33759
+ return value.map((item) => sanitizeValue(item, invalidChars));
33760
+ }
33761
+ return trimSPorHTAB(String(value).replace(invalidChars, ""));
33762
+ }
33763
+ function toByteStringHeaderObject(headers) {
33764
+ const byteStringHeaders = /* @__PURE__ */ Object.create(null);
33765
+ utils_default.forEach(headers.toJSON(), (value, header) => {
33766
+ byteStringHeaders[header] = sanitizeByteStringHeaderValue(value);
33767
+ });
33768
+ return byteStringHeaders;
33769
+ }
33770
+ var INVALID_UNICODE_HEADER_VALUE_CHARS;
33771
+ var INVALID_BYTE_STRING_HEADER_VALUE_CHARS;
33772
+ var sanitizeHeaderValue;
33773
+ var sanitizeByteStringHeaderValue;
33774
+ var init_sanitizeHeaderValue = __esm({
33775
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/helpers/sanitizeHeaderValue.js"() {
33776
+ init_utils7();
33777
+ INVALID_UNICODE_HEADER_VALUE_CHARS = new RegExp("[\\u0000-\\u0008\\u000a-\\u001f\\u007f]+", "g");
33778
+ INVALID_BYTE_STRING_HEADER_VALUE_CHARS = new RegExp("[^\\u0009\\u0020-\\u007e\\u0080-\\u00ff]+", "g");
33779
+ sanitizeHeaderValue = (value) => sanitizeValue(value, INVALID_UNICODE_HEADER_VALUE_CHARS);
33780
+ sanitizeByteStringHeaderValue = (value) => sanitizeValue(value, INVALID_BYTE_STRING_HEADER_VALUE_CHARS);
33781
+ }
33782
+ });
33783
+ function normalizeHeader(header) {
33784
+ return header && String(header).trim().toLowerCase();
33785
+ }
33786
+ function normalizeValue(value) {
33787
+ if (value === false || value == null) {
33788
+ return value;
33789
+ }
33790
+ return utils_default.isArray(value) ? value.map(normalizeValue) : sanitizeHeaderValue(String(value));
33791
+ }
33792
+ function parseTokens(str) {
33793
+ const tokens = /* @__PURE__ */ Object.create(null);
33794
+ const tokensRE = /([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;
33795
+ let match;
33796
+ while (match = tokensRE.exec(str)) {
33797
+ tokens[match[1]] = match[2];
33798
+ }
33799
+ return tokens;
33800
+ }
33801
+ function matchHeaderValue(context, value, header, filter2, isHeaderNameFilter) {
33802
+ if (utils_default.isFunction(filter2)) {
33803
+ return filter2.call(this, value, header);
33804
+ }
33805
+ if (isHeaderNameFilter) {
33806
+ value = header;
33807
+ }
33808
+ if (!utils_default.isString(value)) return;
33809
+ if (utils_default.isString(filter2)) {
33810
+ return value.indexOf(filter2) !== -1;
33811
+ }
33812
+ if (utils_default.isRegExp(filter2)) {
33813
+ return filter2.test(value);
33814
+ }
33815
+ }
33816
+ function formatHeader(header) {
33817
+ return header.trim().toLowerCase().replace(/([a-z\d])(\w*)/g, (w2, char, str) => {
33818
+ return char.toUpperCase() + str;
33819
+ });
33820
+ }
33821
+ function buildAccessors(obj, header) {
33822
+ const accessorName = utils_default.toCamelCase(" " + header);
33823
+ ["get", "set", "has"].forEach((methodName) => {
33824
+ Object.defineProperty(obj, methodName + accessorName, {
33825
+ // Null-proto descriptor so a polluted Object.prototype.get cannot turn
33826
+ // this data descriptor into an accessor descriptor on the way in.
33827
+ __proto__: null,
33828
+ value: function(arg1, arg2, arg3) {
33829
+ return this[methodName].call(this, header, arg1, arg2, arg3);
33830
+ },
33831
+ configurable: true
33832
+ });
33833
+ });
33834
+ }
33835
+ var $internals;
33836
+ var isValidHeaderName;
33837
+ var AxiosHeaders;
33838
+ var AxiosHeaders_default;
33839
+ var init_AxiosHeaders = __esm({
33840
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/core/AxiosHeaders.js"() {
33841
+ init_utils7();
33842
+ init_parseHeaders();
33843
+ init_sanitizeHeaderValue();
33844
+ $internals = /* @__PURE__ */ Symbol("internals");
33845
+ isValidHeaderName = (str) => /^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(str.trim());
33846
+ AxiosHeaders = class {
33847
+ constructor(headers) {
33848
+ headers && this.set(headers);
33849
+ }
33850
+ set(header, valueOrRewrite, rewrite) {
33851
+ const self2 = this;
33852
+ function setHeader(_value, _header, _rewrite) {
33853
+ const lHeader = normalizeHeader(_header);
33854
+ if (!lHeader) {
33855
+ throw new Error("header name must be a non-empty string");
33856
+ }
33857
+ const key = utils_default.findKey(self2, lHeader);
33858
+ if (!key || self2[key] === void 0 || _rewrite === true || _rewrite === void 0 && self2[key] !== false) {
33859
+ self2[key || _header] = normalizeValue(_value);
33860
+ }
33861
+ }
33862
+ const setHeaders = (headers, _rewrite) => utils_default.forEach(headers, (_value, _header) => setHeader(_value, _header, _rewrite));
33863
+ if (utils_default.isPlainObject(header) || header instanceof this.constructor) {
33864
+ setHeaders(header, valueOrRewrite);
33865
+ } else if (utils_default.isString(header) && (header = header.trim()) && !isValidHeaderName(header)) {
33866
+ setHeaders(parseHeaders_default(header), valueOrRewrite);
33867
+ } else if (utils_default.isObject(header) && utils_default.isIterable(header)) {
33868
+ let obj = {}, dest, key;
33869
+ for (const entry of header) {
33870
+ if (!utils_default.isArray(entry)) {
33871
+ throw TypeError("Object iterator must return a key-value pair");
33872
+ }
33873
+ obj[key = entry[0]] = (dest = obj[key]) ? utils_default.isArray(dest) ? [...dest, entry[1]] : [dest, entry[1]] : entry[1];
33874
+ }
33875
+ setHeaders(obj, valueOrRewrite);
33876
+ } else {
33877
+ header != null && setHeader(valueOrRewrite, header, rewrite);
33878
+ }
33879
+ return this;
33880
+ }
33881
+ get(header, parser) {
33882
+ header = normalizeHeader(header);
33883
+ if (header) {
33884
+ const key = utils_default.findKey(this, header);
33885
+ if (key) {
33886
+ const value = this[key];
33887
+ if (!parser) {
33888
+ return value;
33889
+ }
33890
+ if (parser === true) {
33891
+ return parseTokens(value);
33892
+ }
33893
+ if (utils_default.isFunction(parser)) {
33894
+ return parser.call(this, value, key);
33895
+ }
33896
+ if (utils_default.isRegExp(parser)) {
33897
+ return parser.exec(value);
33898
+ }
33899
+ throw new TypeError("parser must be boolean|regexp|function");
33900
+ }
33901
+ }
33902
+ }
33903
+ has(header, matcher) {
33904
+ header = normalizeHeader(header);
33905
+ if (header) {
33906
+ const key = utils_default.findKey(this, header);
33907
+ return !!(key && this[key] !== void 0 && (!matcher || matchHeaderValue(this, this[key], key, matcher)));
33908
+ }
33909
+ return false;
33910
+ }
33911
+ delete(header, matcher) {
33912
+ const self2 = this;
33913
+ let deleted = false;
33914
+ function deleteHeader(_header) {
33915
+ _header = normalizeHeader(_header);
33916
+ if (_header) {
33917
+ const key = utils_default.findKey(self2, _header);
33918
+ if (key && (!matcher || matchHeaderValue(self2, self2[key], key, matcher))) {
33919
+ delete self2[key];
33920
+ deleted = true;
33921
+ }
33922
+ }
33923
+ }
33924
+ if (utils_default.isArray(header)) {
33925
+ header.forEach(deleteHeader);
33926
+ } else {
33927
+ deleteHeader(header);
33928
+ }
33929
+ return deleted;
33930
+ }
33931
+ clear(matcher) {
33932
+ const keys = Object.keys(this);
33933
+ let i = keys.length;
33934
+ let deleted = false;
33935
+ while (i--) {
33936
+ const key = keys[i];
33937
+ if (!matcher || matchHeaderValue(this, this[key], key, matcher, true)) {
33938
+ delete this[key];
33939
+ deleted = true;
33940
+ }
33941
+ }
33942
+ return deleted;
33943
+ }
33944
+ normalize(format) {
33945
+ const self2 = this;
33946
+ const headers = {};
33947
+ utils_default.forEach(this, (value, header) => {
33948
+ const key = utils_default.findKey(headers, header);
33949
+ if (key) {
33950
+ self2[key] = normalizeValue(value);
33951
+ delete self2[header];
33952
+ return;
33953
+ }
33954
+ const normalized = format ? formatHeader(header) : String(header).trim();
33955
+ if (normalized !== header) {
33956
+ delete self2[header];
33957
+ }
33958
+ self2[normalized] = normalizeValue(value);
33959
+ headers[normalized] = true;
33960
+ });
33961
+ return this;
33962
+ }
33963
+ concat(...targets) {
33964
+ return this.constructor.concat(this, ...targets);
33965
+ }
33966
+ toJSON(asStrings) {
33967
+ const obj = /* @__PURE__ */ Object.create(null);
33968
+ utils_default.forEach(this, (value, header) => {
33969
+ value != null && value !== false && (obj[header] = asStrings && utils_default.isArray(value) ? value.join(", ") : value);
33970
+ });
33971
+ return obj;
33972
+ }
33973
+ [Symbol.iterator]() {
33974
+ return Object.entries(this.toJSON())[Symbol.iterator]();
33975
+ }
33976
+ toString() {
33977
+ return Object.entries(this.toJSON()).map(([header, value]) => header + ": " + value).join("\n");
33978
+ }
33979
+ getSetCookie() {
33980
+ return this.get("set-cookie") || [];
33981
+ }
33982
+ get [Symbol.toStringTag]() {
33983
+ return "AxiosHeaders";
33984
+ }
33985
+ static from(thing) {
33986
+ return thing instanceof this ? thing : new this(thing);
33987
+ }
33988
+ static concat(first, ...targets) {
33989
+ const computed = new this(first);
33990
+ targets.forEach((target) => computed.set(target));
33991
+ return computed;
33992
+ }
33993
+ static accessor(header) {
33994
+ const internals = this[$internals] = this[$internals] = {
33995
+ accessors: {}
33996
+ };
33997
+ const accessors = internals.accessors;
33998
+ const prototype2 = this.prototype;
33999
+ function defineAccessor(_header) {
34000
+ const lHeader = normalizeHeader(_header);
34001
+ if (!accessors[lHeader]) {
34002
+ buildAccessors(prototype2, _header);
34003
+ accessors[lHeader] = true;
34004
+ }
34005
+ }
34006
+ utils_default.isArray(header) ? header.forEach(defineAccessor) : defineAccessor(header);
34007
+ return this;
34008
+ }
34009
+ };
34010
+ AxiosHeaders.accessor([
34011
+ "Content-Type",
34012
+ "Content-Length",
34013
+ "Accept",
34014
+ "Accept-Encoding",
34015
+ "User-Agent",
34016
+ "Authorization"
34017
+ ]);
34018
+ utils_default.reduceDescriptors(AxiosHeaders.prototype, ({ value }, key) => {
34019
+ let mapped = key[0].toUpperCase() + key.slice(1);
34020
+ return {
34021
+ get: () => value,
34022
+ set(headerValue) {
34023
+ this[mapped] = headerValue;
34024
+ }
34025
+ };
34026
+ });
34027
+ utils_default.freezeMethods(AxiosHeaders);
34028
+ AxiosHeaders_default = AxiosHeaders;
34029
+ }
34030
+ });
34031
+ function hasOwnOrPrototypeToJSON(source) {
34032
+ if (utils_default.hasOwnProp(source, "toJSON")) {
34033
+ return true;
34034
+ }
34035
+ let prototype2 = Object.getPrototypeOf(source);
34036
+ while (prototype2 && prototype2 !== Object.prototype) {
34037
+ if (utils_default.hasOwnProp(prototype2, "toJSON")) {
34038
+ return true;
34039
+ }
34040
+ prototype2 = Object.getPrototypeOf(prototype2);
34041
+ }
34042
+ return false;
34043
+ }
34044
+ function redactConfig(config3, redactKeys) {
34045
+ const lowerKeys = new Set(redactKeys.map((k) => String(k).toLowerCase()));
34046
+ const seen = [];
34047
+ const visit2 = (source) => {
34048
+ if (source === null || typeof source !== "object") return source;
34049
+ if (utils_default.isBuffer(source)) return source;
34050
+ if (seen.indexOf(source) !== -1) return void 0;
34051
+ if (source instanceof AxiosHeaders_default) {
34052
+ source = source.toJSON();
34053
+ }
34054
+ seen.push(source);
34055
+ let result;
34056
+ if (utils_default.isArray(source)) {
34057
+ result = [];
34058
+ source.forEach((v, i) => {
34059
+ const reducedValue = visit2(v);
34060
+ if (!utils_default.isUndefined(reducedValue)) {
34061
+ result[i] = reducedValue;
34062
+ }
34063
+ });
34064
+ } else {
34065
+ if (!utils_default.isPlainObject(source) && hasOwnOrPrototypeToJSON(source)) {
34066
+ seen.pop();
34067
+ return source;
34068
+ }
34069
+ result = /* @__PURE__ */ Object.create(null);
34070
+ for (const [key, value] of Object.entries(source)) {
34071
+ const reducedValue = lowerKeys.has(key.toLowerCase()) ? REDACTED : visit2(value);
34072
+ if (!utils_default.isUndefined(reducedValue)) {
34073
+ result[key] = reducedValue;
34074
+ }
34075
+ }
34076
+ }
34077
+ seen.pop();
34078
+ return result;
34079
+ };
34080
+ return visit2(config3);
34081
+ }
34082
+ var REDACTED;
33697
34083
  var AxiosError;
33698
34084
  var AxiosError_default;
33699
34085
  var init_AxiosError = __esm({
33700
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/core/AxiosError.js"() {
34086
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/core/AxiosError.js"() {
33701
34087
  init_utils7();
34088
+ init_AxiosHeaders();
34089
+ REDACTED = "[REDACTED ****]";
33702
34090
  AxiosError = class _AxiosError extends Error {
33703
34091
  static from(error2, code, config3, request, response, customProps) {
33704
34092
  const axiosError = new _AxiosError(error2.message, code || error2.code, config3, request, response);
@@ -33724,6 +34112,9 @@ var init_AxiosError = __esm({
33724
34112
  constructor(message, code, config3, request, response) {
33725
34113
  super(message);
33726
34114
  Object.defineProperty(this, "message", {
34115
+ // Null-proto descriptor so a polluted Object.prototype.get cannot turn
34116
+ // this data descriptor into an accessor descriptor on the way in.
34117
+ __proto__: null,
33727
34118
  value: message,
33728
34119
  enumerable: true,
33729
34120
  writable: true,
@@ -33740,6 +34131,9 @@ var init_AxiosError = __esm({
33740
34131
  }
33741
34132
  }
33742
34133
  toJSON() {
34134
+ const config3 = this.config;
34135
+ const redactKeys = config3 && utils_default.hasOwnProp(config3, "redact") ? config3.redact : void 0;
34136
+ const serializedConfig = utils_default.isArray(redactKeys) && redactKeys.length > 0 ? redactConfig(config3, redactKeys) : utils_default.toJSONObject(config3);
33743
34137
  return {
33744
34138
  // Standard
33745
34139
  message: this.message,
@@ -33753,7 +34147,7 @@ var init_AxiosError = __esm({
33753
34147
  columnNumber: this.columnNumber,
33754
34148
  stack: this.stack,
33755
34149
  // Axios
33756
- config: utils_default.toJSONObject(this.config),
34150
+ config: serializedConfig,
33757
34151
  code: this.code,
33758
34152
  status: this.status
33759
34153
  };
@@ -33763,6 +34157,7 @@ var init_AxiosError = __esm({
33763
34157
  AxiosError.ERR_BAD_OPTION = "ERR_BAD_OPTION";
33764
34158
  AxiosError.ECONNABORTED = "ECONNABORTED";
33765
34159
  AxiosError.ETIMEDOUT = "ETIMEDOUT";
34160
+ AxiosError.ECONNREFUSED = "ECONNREFUSED";
33766
34161
  AxiosError.ERR_NETWORK = "ERR_NETWORK";
33767
34162
  AxiosError.ERR_FR_TOO_MANY_REDIRECTS = "ERR_FR_TOO_MANY_REDIRECTS";
33768
34163
  AxiosError.ERR_DEPRECATED = "ERR_DEPRECATED";
@@ -42684,10 +43079,10 @@ var require_abort = __commonJS({
42684
43079
  "../../node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/abort.js"(exports$1, module) {
42685
43080
  module.exports = abort;
42686
43081
  function abort(state) {
42687
- Object.keys(state.jobs).forEach(clean3.bind(state));
43082
+ Object.keys(state.jobs).forEach(clean4.bind(state));
42688
43083
  state.jobs = {};
42689
43084
  }
42690
- function clean3(key) {
43085
+ function clean4(key) {
42691
43086
  if (typeof this.jobs[key] == "function") {
42692
43087
  this.jobs[key]();
42693
43088
  }
@@ -43902,7 +44297,7 @@ var require_form_data = __commonJS({
43902
44297
  var import_form_data;
43903
44298
  var FormData_default;
43904
44299
  var init_FormData = __esm({
43905
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/platform/node/classes/FormData.js"() {
44300
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/platform/node/classes/FormData.js"() {
43906
44301
  import_form_data = __toESM(require_form_data());
43907
44302
  FormData_default = import_form_data.default;
43908
44303
  }
@@ -44029,7 +44424,7 @@ function toFormData(obj, formData, options) {
44029
44424
  var predicates;
44030
44425
  var toFormData_default;
44031
44426
  var init_toFormData = __esm({
44032
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/helpers/toFormData.js"() {
44427
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/helpers/toFormData.js"() {
44033
44428
  init_utils7();
44034
44429
  init_AxiosError();
44035
44430
  init_FormData();
@@ -44059,7 +44454,7 @@ function AxiosURLSearchParams(params, options) {
44059
44454
  var prototype;
44060
44455
  var AxiosURLSearchParams_default;
44061
44456
  var init_AxiosURLSearchParams = __esm({
44062
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/helpers/AxiosURLSearchParams.js"() {
44457
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/helpers/AxiosURLSearchParams.js"() {
44063
44458
  init_toFormData();
44064
44459
  prototype = AxiosURLSearchParams.prototype;
44065
44460
  prototype.append = function append(name, value) {
@@ -44104,7 +44499,7 @@ function buildURL(url2, params, options) {
44104
44499
  return url2;
44105
44500
  }
44106
44501
  var init_buildURL = __esm({
44107
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/helpers/buildURL.js"() {
44502
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/helpers/buildURL.js"() {
44108
44503
  init_utils7();
44109
44504
  init_AxiosURLSearchParams();
44110
44505
  }
@@ -44112,7 +44507,7 @@ var init_buildURL = __esm({
44112
44507
  var InterceptorManager;
44113
44508
  var InterceptorManager_default;
44114
44509
  var init_InterceptorManager = __esm({
44115
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/core/InterceptorManager.js"() {
44510
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/core/InterceptorManager.js"() {
44116
44511
  init_utils7();
44117
44512
  InterceptorManager = class {
44118
44513
  constructor() {
@@ -44181,7 +44576,7 @@ var init_InterceptorManager = __esm({
44181
44576
  });
44182
44577
  var transitional_default;
44183
44578
  var init_transitional = __esm({
44184
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/defaults/transitional.js"() {
44579
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/defaults/transitional.js"() {
44185
44580
  transitional_default = {
44186
44581
  silentJSONParsing: true,
44187
44582
  forcedJSONParsing: true,
@@ -44192,7 +44587,7 @@ var init_transitional = __esm({
44192
44587
  });
44193
44588
  var URLSearchParams_default;
44194
44589
  var init_URLSearchParams = __esm({
44195
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/platform/node/classes/URLSearchParams.js"() {
44590
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/platform/node/classes/URLSearchParams.js"() {
44196
44591
  URLSearchParams_default = Url.URLSearchParams;
44197
44592
  }
44198
44593
  });
@@ -44202,7 +44597,7 @@ var ALPHABET;
44202
44597
  var generateString;
44203
44598
  var node_default;
44204
44599
  var init_node = __esm({
44205
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/platform/node/index.js"() {
44600
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/platform/node/index.js"() {
44206
44601
  init_URLSearchParams();
44207
44602
  init_FormData();
44208
44603
  ALPHA = "abcdefghijklmnopqrstuvwxyz";
@@ -44249,7 +44644,7 @@ var hasStandardBrowserEnv;
44249
44644
  var hasStandardBrowserWebWorkerEnv;
44250
44645
  var origin;
44251
44646
  var init_utils8 = __esm({
44252
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/platform/common/utils.js"() {
44647
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/platform/common/utils.js"() {
44253
44648
  hasBrowserEnv = typeof window !== "undefined" && typeof document !== "undefined";
44254
44649
  _navigator = typeof navigator === "object" && navigator || void 0;
44255
44650
  hasStandardBrowserEnv = hasBrowserEnv && (!_navigator || ["ReactNative", "NativeScript", "NS"].indexOf(_navigator.product) < 0);
@@ -44262,7 +44657,7 @@ var init_utils8 = __esm({
44262
44657
  });
44263
44658
  var platform_default;
44264
44659
  var init_platform = __esm({
44265
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/platform/index.js"() {
44660
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/platform/index.js"() {
44266
44661
  init_node();
44267
44662
  init_utils8();
44268
44663
  platform_default = {
@@ -44284,7 +44679,7 @@ function toURLEncodedForm(data, options) {
44284
44679
  });
44285
44680
  }
44286
44681
  var init_toURLEncodedForm = __esm({
44287
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/helpers/toURLEncodedForm.js"() {
44682
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/helpers/toURLEncodedForm.js"() {
44288
44683
  init_utils7();
44289
44684
  init_toFormData();
44290
44685
  init_platform();
@@ -44322,7 +44717,7 @@ function formDataToJSON(formData) {
44322
44717
  }
44323
44718
  return !isNumericKey;
44324
44719
  }
44325
- if (!target[name] || !utils_default.isObject(target[name])) {
44720
+ if (!utils_default.hasOwnProp(target, name) || !utils_default.isObject(target[name])) {
44326
44721
  target[name] = [];
44327
44722
  }
44328
44723
  const result = buildPath(path, value, target[name], index);
@@ -44342,7 +44737,7 @@ function formDataToJSON(formData) {
44342
44737
  }
44343
44738
  var formDataToJSON_default;
44344
44739
  var init_formDataToJSON = __esm({
44345
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/helpers/formDataToJSON.js"() {
44740
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/helpers/formDataToJSON.js"() {
44346
44741
  init_utils7();
44347
44742
  formDataToJSON_default = formDataToJSON;
44348
44743
  }
@@ -44364,7 +44759,7 @@ var own;
44364
44759
  var defaults;
44365
44760
  var defaults_default;
44366
44761
  var init_defaults = __esm({
44367
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/defaults/index.js"() {
44762
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/defaults/index.js"() {
44368
44763
  init_utils7();
44369
44764
  init_AxiosError();
44370
44765
  init_transitional();
@@ -44470,330 +44865,12 @@ var init_defaults = __esm({
44470
44865
  }
44471
44866
  }
44472
44867
  };
44473
- utils_default.forEach(["delete", "get", "head", "post", "put", "patch"], (method) => {
44868
+ utils_default.forEach(["delete", "get", "head", "post", "put", "patch", "query"], (method) => {
44474
44869
  defaults.headers[method] = {};
44475
44870
  });
44476
44871
  defaults_default = defaults;
44477
44872
  }
44478
44873
  });
44479
- var ignoreDuplicateOf;
44480
- var parseHeaders_default;
44481
- var init_parseHeaders = __esm({
44482
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/helpers/parseHeaders.js"() {
44483
- init_utils7();
44484
- ignoreDuplicateOf = utils_default.toObjectSet([
44485
- "age",
44486
- "authorization",
44487
- "content-length",
44488
- "content-type",
44489
- "etag",
44490
- "expires",
44491
- "from",
44492
- "host",
44493
- "if-modified-since",
44494
- "if-unmodified-since",
44495
- "last-modified",
44496
- "location",
44497
- "max-forwards",
44498
- "proxy-authorization",
44499
- "referer",
44500
- "retry-after",
44501
- "user-agent"
44502
- ]);
44503
- parseHeaders_default = (rawHeaders) => {
44504
- const parsed = {};
44505
- let key;
44506
- let val;
44507
- let i;
44508
- rawHeaders && rawHeaders.split("\n").forEach(function parser(line) {
44509
- i = line.indexOf(":");
44510
- key = line.substring(0, i).trim().toLowerCase();
44511
- val = line.substring(i + 1).trim();
44512
- if (!key || parsed[key] && ignoreDuplicateOf[key]) {
44513
- return;
44514
- }
44515
- if (key === "set-cookie") {
44516
- if (parsed[key]) {
44517
- parsed[key].push(val);
44518
- } else {
44519
- parsed[key] = [val];
44520
- }
44521
- } else {
44522
- parsed[key] = parsed[key] ? parsed[key] + ", " + val : val;
44523
- }
44524
- });
44525
- return parsed;
44526
- };
44527
- }
44528
- });
44529
- function trimSPorHTAB(str) {
44530
- let start = 0;
44531
- let end = str.length;
44532
- while (start < end) {
44533
- const code = str.charCodeAt(start);
44534
- if (code !== 9 && code !== 32) {
44535
- break;
44536
- }
44537
- start += 1;
44538
- }
44539
- while (end > start) {
44540
- const code = str.charCodeAt(end - 1);
44541
- if (code !== 9 && code !== 32) {
44542
- break;
44543
- }
44544
- end -= 1;
44545
- }
44546
- return start === 0 && end === str.length ? str : str.slice(start, end);
44547
- }
44548
- function normalizeHeader(header) {
44549
- return header && String(header).trim().toLowerCase();
44550
- }
44551
- function sanitizeHeaderValue(str) {
44552
- return trimSPorHTAB(str.replace(INVALID_HEADER_VALUE_CHARS_RE, ""));
44553
- }
44554
- function normalizeValue(value) {
44555
- if (value === false || value == null) {
44556
- return value;
44557
- }
44558
- return utils_default.isArray(value) ? value.map(normalizeValue) : sanitizeHeaderValue(String(value));
44559
- }
44560
- function parseTokens(str) {
44561
- const tokens = /* @__PURE__ */ Object.create(null);
44562
- const tokensRE = /([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;
44563
- let match;
44564
- while (match = tokensRE.exec(str)) {
44565
- tokens[match[1]] = match[2];
44566
- }
44567
- return tokens;
44568
- }
44569
- function matchHeaderValue(context, value, header, filter2, isHeaderNameFilter) {
44570
- if (utils_default.isFunction(filter2)) {
44571
- return filter2.call(this, value, header);
44572
- }
44573
- if (isHeaderNameFilter) {
44574
- value = header;
44575
- }
44576
- if (!utils_default.isString(value)) return;
44577
- if (utils_default.isString(filter2)) {
44578
- return value.indexOf(filter2) !== -1;
44579
- }
44580
- if (utils_default.isRegExp(filter2)) {
44581
- return filter2.test(value);
44582
- }
44583
- }
44584
- function formatHeader(header) {
44585
- return header.trim().toLowerCase().replace(/([a-z\d])(\w*)/g, (w2, char, str) => {
44586
- return char.toUpperCase() + str;
44587
- });
44588
- }
44589
- function buildAccessors(obj, header) {
44590
- const accessorName = utils_default.toCamelCase(" " + header);
44591
- ["get", "set", "has"].forEach((methodName) => {
44592
- Object.defineProperty(obj, methodName + accessorName, {
44593
- value: function(arg1, arg2, arg3) {
44594
- return this[methodName].call(this, header, arg1, arg2, arg3);
44595
- },
44596
- configurable: true
44597
- });
44598
- });
44599
- }
44600
- var $internals;
44601
- var INVALID_HEADER_VALUE_CHARS_RE;
44602
- var isValidHeaderName;
44603
- var AxiosHeaders;
44604
- var AxiosHeaders_default;
44605
- var init_AxiosHeaders = __esm({
44606
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/core/AxiosHeaders.js"() {
44607
- init_utils7();
44608
- init_parseHeaders();
44609
- $internals = /* @__PURE__ */ Symbol("internals");
44610
- INVALID_HEADER_VALUE_CHARS_RE = /[^\x09\x20-\x7E\x80-\xFF]/g;
44611
- isValidHeaderName = (str) => /^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(str.trim());
44612
- AxiosHeaders = class {
44613
- constructor(headers) {
44614
- headers && this.set(headers);
44615
- }
44616
- set(header, valueOrRewrite, rewrite) {
44617
- const self2 = this;
44618
- function setHeader(_value, _header, _rewrite) {
44619
- const lHeader = normalizeHeader(_header);
44620
- if (!lHeader) {
44621
- throw new Error("header name must be a non-empty string");
44622
- }
44623
- const key = utils_default.findKey(self2, lHeader);
44624
- if (!key || self2[key] === void 0 || _rewrite === true || _rewrite === void 0 && self2[key] !== false) {
44625
- self2[key || _header] = normalizeValue(_value);
44626
- }
44627
- }
44628
- const setHeaders = (headers, _rewrite) => utils_default.forEach(headers, (_value, _header) => setHeader(_value, _header, _rewrite));
44629
- if (utils_default.isPlainObject(header) || header instanceof this.constructor) {
44630
- setHeaders(header, valueOrRewrite);
44631
- } else if (utils_default.isString(header) && (header = header.trim()) && !isValidHeaderName(header)) {
44632
- setHeaders(parseHeaders_default(header), valueOrRewrite);
44633
- } else if (utils_default.isObject(header) && utils_default.isIterable(header)) {
44634
- let obj = {}, dest, key;
44635
- for (const entry of header) {
44636
- if (!utils_default.isArray(entry)) {
44637
- throw TypeError("Object iterator must return a key-value pair");
44638
- }
44639
- obj[key = entry[0]] = (dest = obj[key]) ? utils_default.isArray(dest) ? [...dest, entry[1]] : [dest, entry[1]] : entry[1];
44640
- }
44641
- setHeaders(obj, valueOrRewrite);
44642
- } else {
44643
- header != null && setHeader(valueOrRewrite, header, rewrite);
44644
- }
44645
- return this;
44646
- }
44647
- get(header, parser) {
44648
- header = normalizeHeader(header);
44649
- if (header) {
44650
- const key = utils_default.findKey(this, header);
44651
- if (key) {
44652
- const value = this[key];
44653
- if (!parser) {
44654
- return value;
44655
- }
44656
- if (parser === true) {
44657
- return parseTokens(value);
44658
- }
44659
- if (utils_default.isFunction(parser)) {
44660
- return parser.call(this, value, key);
44661
- }
44662
- if (utils_default.isRegExp(parser)) {
44663
- return parser.exec(value);
44664
- }
44665
- throw new TypeError("parser must be boolean|regexp|function");
44666
- }
44667
- }
44668
- }
44669
- has(header, matcher) {
44670
- header = normalizeHeader(header);
44671
- if (header) {
44672
- const key = utils_default.findKey(this, header);
44673
- return !!(key && this[key] !== void 0 && (!matcher || matchHeaderValue(this, this[key], key, matcher)));
44674
- }
44675
- return false;
44676
- }
44677
- delete(header, matcher) {
44678
- const self2 = this;
44679
- let deleted = false;
44680
- function deleteHeader(_header) {
44681
- _header = normalizeHeader(_header);
44682
- if (_header) {
44683
- const key = utils_default.findKey(self2, _header);
44684
- if (key && (!matcher || matchHeaderValue(self2, self2[key], key, matcher))) {
44685
- delete self2[key];
44686
- deleted = true;
44687
- }
44688
- }
44689
- }
44690
- if (utils_default.isArray(header)) {
44691
- header.forEach(deleteHeader);
44692
- } else {
44693
- deleteHeader(header);
44694
- }
44695
- return deleted;
44696
- }
44697
- clear(matcher) {
44698
- const keys = Object.keys(this);
44699
- let i = keys.length;
44700
- let deleted = false;
44701
- while (i--) {
44702
- const key = keys[i];
44703
- if (!matcher || matchHeaderValue(this, this[key], key, matcher, true)) {
44704
- delete this[key];
44705
- deleted = true;
44706
- }
44707
- }
44708
- return deleted;
44709
- }
44710
- normalize(format) {
44711
- const self2 = this;
44712
- const headers = {};
44713
- utils_default.forEach(this, (value, header) => {
44714
- const key = utils_default.findKey(headers, header);
44715
- if (key) {
44716
- self2[key] = normalizeValue(value);
44717
- delete self2[header];
44718
- return;
44719
- }
44720
- const normalized = format ? formatHeader(header) : String(header).trim();
44721
- if (normalized !== header) {
44722
- delete self2[header];
44723
- }
44724
- self2[normalized] = normalizeValue(value);
44725
- headers[normalized] = true;
44726
- });
44727
- return this;
44728
- }
44729
- concat(...targets) {
44730
- return this.constructor.concat(this, ...targets);
44731
- }
44732
- toJSON(asStrings) {
44733
- const obj = /* @__PURE__ */ Object.create(null);
44734
- utils_default.forEach(this, (value, header) => {
44735
- value != null && value !== false && (obj[header] = asStrings && utils_default.isArray(value) ? value.join(", ") : value);
44736
- });
44737
- return obj;
44738
- }
44739
- [Symbol.iterator]() {
44740
- return Object.entries(this.toJSON())[Symbol.iterator]();
44741
- }
44742
- toString() {
44743
- return Object.entries(this.toJSON()).map(([header, value]) => header + ": " + value).join("\n");
44744
- }
44745
- getSetCookie() {
44746
- return this.get("set-cookie") || [];
44747
- }
44748
- get [Symbol.toStringTag]() {
44749
- return "AxiosHeaders";
44750
- }
44751
- static from(thing) {
44752
- return thing instanceof this ? thing : new this(thing);
44753
- }
44754
- static concat(first, ...targets) {
44755
- const computed = new this(first);
44756
- targets.forEach((target) => computed.set(target));
44757
- return computed;
44758
- }
44759
- static accessor(header) {
44760
- const internals = this[$internals] = this[$internals] = {
44761
- accessors: {}
44762
- };
44763
- const accessors = internals.accessors;
44764
- const prototype2 = this.prototype;
44765
- function defineAccessor(_header) {
44766
- const lHeader = normalizeHeader(_header);
44767
- if (!accessors[lHeader]) {
44768
- buildAccessors(prototype2, _header);
44769
- accessors[lHeader] = true;
44770
- }
44771
- }
44772
- utils_default.isArray(header) ? header.forEach(defineAccessor) : defineAccessor(header);
44773
- return this;
44774
- }
44775
- };
44776
- AxiosHeaders.accessor([
44777
- "Content-Type",
44778
- "Content-Length",
44779
- "Accept",
44780
- "Accept-Encoding",
44781
- "User-Agent",
44782
- "Authorization"
44783
- ]);
44784
- utils_default.reduceDescriptors(AxiosHeaders.prototype, ({ value }, key) => {
44785
- let mapped = key[0].toUpperCase() + key.slice(1);
44786
- return {
44787
- get: () => value,
44788
- set(headerValue) {
44789
- this[mapped] = headerValue;
44790
- }
44791
- };
44792
- });
44793
- utils_default.freezeMethods(AxiosHeaders);
44794
- AxiosHeaders_default = AxiosHeaders;
44795
- }
44796
- });
44797
44874
  function transformData(fns, response) {
44798
44875
  const config3 = this || defaults_default;
44799
44876
  const context = response || config3;
@@ -44806,7 +44883,7 @@ function transformData(fns, response) {
44806
44883
  return data;
44807
44884
  }
44808
44885
  var init_transformData = __esm({
44809
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/core/transformData.js"() {
44886
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/core/transformData.js"() {
44810
44887
  init_utils7();
44811
44888
  init_defaults();
44812
44889
  init_AxiosHeaders();
@@ -44816,13 +44893,13 @@ function isCancel(value) {
44816
44893
  return !!(value && value.__CANCEL__);
44817
44894
  }
44818
44895
  var init_isCancel = __esm({
44819
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/cancel/isCancel.js"() {
44896
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/cancel/isCancel.js"() {
44820
44897
  }
44821
44898
  });
44822
44899
  var CanceledError;
44823
44900
  var CanceledError_default;
44824
44901
  var init_CanceledError = __esm({
44825
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/cancel/CanceledError.js"() {
44902
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/cancel/CanceledError.js"() {
44826
44903
  init_AxiosError();
44827
44904
  CanceledError = class extends AxiosError_default {
44828
44905
  /**
@@ -44848,19 +44925,17 @@ function settle(resolve2, reject, response) {
44848
44925
  if (!response.status || !validateStatus2 || validateStatus2(response.status)) {
44849
44926
  resolve2(response);
44850
44927
  } else {
44851
- reject(
44852
- new AxiosError_default(
44853
- "Request failed with status code " + response.status,
44854
- [AxiosError_default.ERR_BAD_REQUEST, AxiosError_default.ERR_BAD_RESPONSE][Math.floor(response.status / 100) - 4],
44855
- response.config,
44856
- response.request,
44857
- response
44858
- )
44859
- );
44928
+ reject(new AxiosError_default(
44929
+ "Request failed with status code " + response.status,
44930
+ response.status >= 400 && response.status < 500 ? AxiosError_default.ERR_BAD_REQUEST : AxiosError_default.ERR_BAD_RESPONSE,
44931
+ response.config,
44932
+ response.request,
44933
+ response
44934
+ ));
44860
44935
  }
44861
44936
  }
44862
44937
  var init_settle = __esm({
44863
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/core/settle.js"() {
44938
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/core/settle.js"() {
44864
44939
  init_AxiosError();
44865
44940
  }
44866
44941
  });
@@ -44871,14 +44946,14 @@ function isAbsoluteURL(url2) {
44871
44946
  return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(url2);
44872
44947
  }
44873
44948
  var init_isAbsoluteURL = __esm({
44874
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/helpers/isAbsoluteURL.js"() {
44949
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/helpers/isAbsoluteURL.js"() {
44875
44950
  }
44876
44951
  });
44877
44952
  function combineURLs(baseURL, relativeURL) {
44878
44953
  return relativeURL ? baseURL.replace(/\/?\/$/, "") + "/" + relativeURL.replace(/^\/+/, "") : baseURL;
44879
44954
  }
44880
44955
  var init_combineURLs = __esm({
44881
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/helpers/combineURLs.js"() {
44956
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/helpers/combineURLs.js"() {
44882
44957
  }
44883
44958
  });
44884
44959
  function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
@@ -44889,7 +44964,7 @@ function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
44889
44964
  return requestedURL;
44890
44965
  }
44891
44966
  var init_buildFullPath = __esm({
44892
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/core/buildFullPath.js"() {
44967
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/core/buildFullPath.js"() {
44893
44968
  init_isAbsoluteURL();
44894
44969
  init_combineURLs();
44895
44970
  }
@@ -45180,8 +45255,8 @@ var require_common = __commonJS({
45180
45255
  createDebug.namespaces = namespaces;
45181
45256
  createDebug.names = [];
45182
45257
  createDebug.skips = [];
45183
- const split2 = (typeof namespaces === "string" ? namespaces : "").trim().replace(/\s+/g, ",").split(",").filter(Boolean);
45184
- for (const ns of split2) {
45258
+ const split3 = (typeof namespaces === "string" ? namespaces : "").trim().replace(/\s+/g, ",").split(",").filter(Boolean);
45259
+ for (const ns of split3) {
45185
45260
  if (ns[0] === "-") {
45186
45261
  createDebug.skips.push(ns.slice(1));
45187
45262
  } else {
@@ -45711,8 +45786,443 @@ var require_src = __commonJS({
45711
45786
  }
45712
45787
  }
45713
45788
  });
45789
+ var require_promisify = __commonJS({
45790
+ "../../node_modules/.pnpm/agent-base@6.0.2/node_modules/agent-base/dist/src/promisify.js"(exports$1) {
45791
+ Object.defineProperty(exports$1, "__esModule", { value: true });
45792
+ function promisify(fn) {
45793
+ return function(req, opts) {
45794
+ return new Promise((resolve2, reject) => {
45795
+ fn.call(this, req, opts, (err, rtn) => {
45796
+ if (err) {
45797
+ reject(err);
45798
+ } else {
45799
+ resolve2(rtn);
45800
+ }
45801
+ });
45802
+ });
45803
+ };
45804
+ }
45805
+ exports$1.default = promisify;
45806
+ }
45807
+ });
45808
+ var require_src2 = __commonJS({
45809
+ "../../node_modules/.pnpm/agent-base@6.0.2/node_modules/agent-base/dist/src/index.js"(exports$1, module) {
45810
+ var __importDefault = exports$1 && exports$1.__importDefault || function(mod4) {
45811
+ return mod4 && mod4.__esModule ? mod4 : { "default": mod4 };
45812
+ };
45813
+ var events_1 = __require("events");
45814
+ var debug_1 = __importDefault(require_src());
45815
+ var promisify_1 = __importDefault(require_promisify());
45816
+ var debug = debug_1.default("agent-base");
45817
+ function isAgent(v) {
45818
+ return Boolean(v) && typeof v.addRequest === "function";
45819
+ }
45820
+ function isSecureEndpoint() {
45821
+ const { stack } = new Error();
45822
+ if (typeof stack !== "string")
45823
+ return false;
45824
+ return stack.split("\n").some((l2) => l2.indexOf("(https.js:") !== -1 || l2.indexOf("node:https:") !== -1);
45825
+ }
45826
+ function createAgent2(callback, opts) {
45827
+ return new createAgent2.Agent(callback, opts);
45828
+ }
45829
+ (function(createAgent3) {
45830
+ class Agent extends events_1.EventEmitter {
45831
+ constructor(callback, _opts) {
45832
+ super();
45833
+ let opts = _opts;
45834
+ if (typeof callback === "function") {
45835
+ this.callback = callback;
45836
+ } else if (callback) {
45837
+ opts = callback;
45838
+ }
45839
+ this.timeout = null;
45840
+ if (opts && typeof opts.timeout === "number") {
45841
+ this.timeout = opts.timeout;
45842
+ }
45843
+ this.maxFreeSockets = 1;
45844
+ this.maxSockets = 1;
45845
+ this.maxTotalSockets = Infinity;
45846
+ this.sockets = {};
45847
+ this.freeSockets = {};
45848
+ this.requests = {};
45849
+ this.options = {};
45850
+ }
45851
+ get defaultPort() {
45852
+ if (typeof this.explicitDefaultPort === "number") {
45853
+ return this.explicitDefaultPort;
45854
+ }
45855
+ return isSecureEndpoint() ? 443 : 80;
45856
+ }
45857
+ set defaultPort(v) {
45858
+ this.explicitDefaultPort = v;
45859
+ }
45860
+ get protocol() {
45861
+ if (typeof this.explicitProtocol === "string") {
45862
+ return this.explicitProtocol;
45863
+ }
45864
+ return isSecureEndpoint() ? "https:" : "http:";
45865
+ }
45866
+ set protocol(v) {
45867
+ this.explicitProtocol = v;
45868
+ }
45869
+ callback(req, opts, fn) {
45870
+ throw new Error('"agent-base" has no default implementation, you must subclass and override `callback()`');
45871
+ }
45872
+ /**
45873
+ * Called by node-core's "_http_client.js" module when creating
45874
+ * a new HTTP request with this Agent instance.
45875
+ *
45876
+ * @api public
45877
+ */
45878
+ addRequest(req, _opts) {
45879
+ const opts = Object.assign({}, _opts);
45880
+ if (typeof opts.secureEndpoint !== "boolean") {
45881
+ opts.secureEndpoint = isSecureEndpoint();
45882
+ }
45883
+ if (opts.host == null) {
45884
+ opts.host = "localhost";
45885
+ }
45886
+ if (opts.port == null) {
45887
+ opts.port = opts.secureEndpoint ? 443 : 80;
45888
+ }
45889
+ if (opts.protocol == null) {
45890
+ opts.protocol = opts.secureEndpoint ? "https:" : "http:";
45891
+ }
45892
+ if (opts.host && opts.path) {
45893
+ delete opts.path;
45894
+ }
45895
+ delete opts.agent;
45896
+ delete opts.hostname;
45897
+ delete opts._defaultAgent;
45898
+ delete opts.defaultPort;
45899
+ delete opts.createConnection;
45900
+ req._last = true;
45901
+ req.shouldKeepAlive = false;
45902
+ let timedOut = false;
45903
+ let timeoutId = null;
45904
+ const timeoutMs = opts.timeout || this.timeout;
45905
+ const onerror = (err) => {
45906
+ if (req._hadError)
45907
+ return;
45908
+ req.emit("error", err);
45909
+ req._hadError = true;
45910
+ };
45911
+ const ontimeout = () => {
45912
+ timeoutId = null;
45913
+ timedOut = true;
45914
+ const err = new Error(`A "socket" was not created for HTTP request before ${timeoutMs}ms`);
45915
+ err.code = "ETIMEOUT";
45916
+ onerror(err);
45917
+ };
45918
+ const callbackError = (err) => {
45919
+ if (timedOut)
45920
+ return;
45921
+ if (timeoutId !== null) {
45922
+ clearTimeout(timeoutId);
45923
+ timeoutId = null;
45924
+ }
45925
+ onerror(err);
45926
+ };
45927
+ const onsocket = (socket) => {
45928
+ if (timedOut)
45929
+ return;
45930
+ if (timeoutId != null) {
45931
+ clearTimeout(timeoutId);
45932
+ timeoutId = null;
45933
+ }
45934
+ if (isAgent(socket)) {
45935
+ debug("Callback returned another Agent instance %o", socket.constructor.name);
45936
+ socket.addRequest(req, opts);
45937
+ return;
45938
+ }
45939
+ if (socket) {
45940
+ socket.once("free", () => {
45941
+ this.freeSocket(socket, opts);
45942
+ });
45943
+ req.onSocket(socket);
45944
+ return;
45945
+ }
45946
+ const err = new Error(`no Duplex stream was returned to agent-base for \`${req.method} ${req.path}\``);
45947
+ onerror(err);
45948
+ };
45949
+ if (typeof this.callback !== "function") {
45950
+ onerror(new Error("`callback` is not defined"));
45951
+ return;
45952
+ }
45953
+ if (!this.promisifiedCallback) {
45954
+ if (this.callback.length >= 3) {
45955
+ debug("Converting legacy callback function to promise");
45956
+ this.promisifiedCallback = promisify_1.default(this.callback);
45957
+ } else {
45958
+ this.promisifiedCallback = this.callback;
45959
+ }
45960
+ }
45961
+ if (typeof timeoutMs === "number" && timeoutMs > 0) {
45962
+ timeoutId = setTimeout(ontimeout, timeoutMs);
45963
+ }
45964
+ if ("port" in opts && typeof opts.port !== "number") {
45965
+ opts.port = Number(opts.port);
45966
+ }
45967
+ try {
45968
+ debug("Resolving socket for %o request: %o", opts.protocol, `${req.method} ${req.path}`);
45969
+ Promise.resolve(this.promisifiedCallback(req, opts)).then(onsocket, callbackError);
45970
+ } catch (err) {
45971
+ Promise.reject(err).catch(callbackError);
45972
+ }
45973
+ }
45974
+ freeSocket(socket, opts) {
45975
+ debug("Freeing socket %o %o", socket.constructor.name, opts);
45976
+ socket.destroy();
45977
+ }
45978
+ destroy() {
45979
+ debug("Destroying agent %o", this.constructor.name);
45980
+ }
45981
+ }
45982
+ createAgent3.Agent = Agent;
45983
+ createAgent3.prototype = createAgent3.Agent.prototype;
45984
+ })(createAgent2 || (createAgent2 = {}));
45985
+ module.exports = createAgent2;
45986
+ }
45987
+ });
45988
+ var require_parse_proxy_response = __commonJS({
45989
+ "../../node_modules/.pnpm/https-proxy-agent@5.0.1/node_modules/https-proxy-agent/dist/parse-proxy-response.js"(exports$1) {
45990
+ var __importDefault = exports$1 && exports$1.__importDefault || function(mod4) {
45991
+ return mod4 && mod4.__esModule ? mod4 : { "default": mod4 };
45992
+ };
45993
+ Object.defineProperty(exports$1, "__esModule", { value: true });
45994
+ var debug_1 = __importDefault(require_src());
45995
+ var debug = debug_1.default("https-proxy-agent:parse-proxy-response");
45996
+ function parseProxyResponse(socket) {
45997
+ return new Promise((resolve2, reject) => {
45998
+ let buffersLength = 0;
45999
+ const buffers = [];
46000
+ function read() {
46001
+ const b = socket.read();
46002
+ if (b)
46003
+ ondata(b);
46004
+ else
46005
+ socket.once("readable", read);
46006
+ }
46007
+ function cleanup() {
46008
+ socket.removeListener("end", onend);
46009
+ socket.removeListener("error", onerror);
46010
+ socket.removeListener("close", onclose);
46011
+ socket.removeListener("readable", read);
46012
+ }
46013
+ function onclose(err) {
46014
+ debug("onclose had error %o", err);
46015
+ }
46016
+ function onend() {
46017
+ debug("onend");
46018
+ }
46019
+ function onerror(err) {
46020
+ cleanup();
46021
+ debug("onerror %o", err);
46022
+ reject(err);
46023
+ }
46024
+ function ondata(b) {
46025
+ buffers.push(b);
46026
+ buffersLength += b.length;
46027
+ const buffered = Buffer.concat(buffers, buffersLength);
46028
+ const endOfHeaders = buffered.indexOf("\r\n\r\n");
46029
+ if (endOfHeaders === -1) {
46030
+ debug("have not received end of HTTP headers yet...");
46031
+ read();
46032
+ return;
46033
+ }
46034
+ const firstLine = buffered.toString("ascii", 0, buffered.indexOf("\r\n"));
46035
+ const statusCode = +firstLine.split(" ")[1];
46036
+ debug("got proxy server response: %o", firstLine);
46037
+ resolve2({
46038
+ statusCode,
46039
+ buffered
46040
+ });
46041
+ }
46042
+ socket.on("error", onerror);
46043
+ socket.on("close", onclose);
46044
+ socket.on("end", onend);
46045
+ read();
46046
+ });
46047
+ }
46048
+ exports$1.default = parseProxyResponse;
46049
+ }
46050
+ });
46051
+ var require_agent = __commonJS({
46052
+ "../../node_modules/.pnpm/https-proxy-agent@5.0.1/node_modules/https-proxy-agent/dist/agent.js"(exports$1) {
46053
+ var __awaiter4 = exports$1 && exports$1.__awaiter || function(thisArg, _arguments, P3, generator) {
46054
+ function adopt(value) {
46055
+ return value instanceof P3 ? value : new P3(function(resolve2) {
46056
+ resolve2(value);
46057
+ });
46058
+ }
46059
+ return new (P3 || (P3 = Promise))(function(resolve2, reject) {
46060
+ function fulfilled(value) {
46061
+ try {
46062
+ step(generator.next(value));
46063
+ } catch (e) {
46064
+ reject(e);
46065
+ }
46066
+ }
46067
+ function rejected(value) {
46068
+ try {
46069
+ step(generator["throw"](value));
46070
+ } catch (e) {
46071
+ reject(e);
46072
+ }
46073
+ }
46074
+ function step(result) {
46075
+ result.done ? resolve2(result.value) : adopt(result.value).then(fulfilled, rejected);
46076
+ }
46077
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
46078
+ });
46079
+ };
46080
+ var __importDefault = exports$1 && exports$1.__importDefault || function(mod4) {
46081
+ return mod4 && mod4.__esModule ? mod4 : { "default": mod4 };
46082
+ };
46083
+ Object.defineProperty(exports$1, "__esModule", { value: true });
46084
+ var net_1 = __importDefault(__require("net"));
46085
+ var tls_1 = __importDefault(__require("tls"));
46086
+ var url_1 = __importDefault(__require("url"));
46087
+ var assert_1 = __importDefault(__require("assert"));
46088
+ var debug_1 = __importDefault(require_src());
46089
+ var agent_base_1 = require_src2();
46090
+ var parse_proxy_response_1 = __importDefault(require_parse_proxy_response());
46091
+ var debug = debug_1.default("https-proxy-agent:agent");
46092
+ var HttpsProxyAgent2 = class extends agent_base_1.Agent {
46093
+ constructor(_opts) {
46094
+ let opts;
46095
+ if (typeof _opts === "string") {
46096
+ opts = url_1.default.parse(_opts);
46097
+ } else {
46098
+ opts = _opts;
46099
+ }
46100
+ if (!opts) {
46101
+ throw new Error("an HTTP(S) proxy server `host` and `port` must be specified!");
46102
+ }
46103
+ debug("creating new HttpsProxyAgent instance: %o", opts);
46104
+ super(opts);
46105
+ const proxy = Object.assign({}, opts);
46106
+ this.secureProxy = opts.secureProxy || isHTTPS(proxy.protocol);
46107
+ proxy.host = proxy.hostname || proxy.host;
46108
+ if (typeof proxy.port === "string") {
46109
+ proxy.port = parseInt(proxy.port, 10);
46110
+ }
46111
+ if (!proxy.port && proxy.host) {
46112
+ proxy.port = this.secureProxy ? 443 : 80;
46113
+ }
46114
+ if (this.secureProxy && !("ALPNProtocols" in proxy)) {
46115
+ proxy.ALPNProtocols = ["http 1.1"];
46116
+ }
46117
+ if (proxy.host && proxy.path) {
46118
+ delete proxy.path;
46119
+ delete proxy.pathname;
46120
+ }
46121
+ this.proxy = proxy;
46122
+ }
46123
+ /**
46124
+ * Called when the node-core HTTP client library is creating a
46125
+ * new HTTP request.
46126
+ *
46127
+ * @api protected
46128
+ */
46129
+ callback(req, opts) {
46130
+ return __awaiter4(this, void 0, void 0, function* () {
46131
+ const { proxy, secureProxy } = this;
46132
+ let socket;
46133
+ if (secureProxy) {
46134
+ debug("Creating `tls.Socket`: %o", proxy);
46135
+ socket = tls_1.default.connect(proxy);
46136
+ } else {
46137
+ debug("Creating `net.Socket`: %o", proxy);
46138
+ socket = net_1.default.connect(proxy);
46139
+ }
46140
+ const headers = Object.assign({}, proxy.headers);
46141
+ const hostname2 = `${opts.host}:${opts.port}`;
46142
+ let payload = `CONNECT ${hostname2} HTTP/1.1\r
46143
+ `;
46144
+ if (proxy.auth) {
46145
+ headers["Proxy-Authorization"] = `Basic ${Buffer.from(proxy.auth).toString("base64")}`;
46146
+ }
46147
+ let { host, port, secureEndpoint } = opts;
46148
+ if (!isDefaultPort(port, secureEndpoint)) {
46149
+ host += `:${port}`;
46150
+ }
46151
+ headers.Host = host;
46152
+ headers.Connection = "close";
46153
+ for (const name of Object.keys(headers)) {
46154
+ payload += `${name}: ${headers[name]}\r
46155
+ `;
46156
+ }
46157
+ const proxyResponsePromise = parse_proxy_response_1.default(socket);
46158
+ socket.write(`${payload}\r
46159
+ `);
46160
+ const { statusCode, buffered } = yield proxyResponsePromise;
46161
+ if (statusCode === 200) {
46162
+ req.once("socket", resume);
46163
+ if (opts.secureEndpoint) {
46164
+ debug("Upgrading socket connection to TLS");
46165
+ const servername = opts.servername || opts.host;
46166
+ return tls_1.default.connect(Object.assign(Object.assign({}, omit2(opts, "host", "hostname", "path", "port")), {
46167
+ socket,
46168
+ servername
46169
+ }));
46170
+ }
46171
+ return socket;
46172
+ }
46173
+ socket.destroy();
46174
+ const fakeSocket = new net_1.default.Socket({ writable: false });
46175
+ fakeSocket.readable = true;
46176
+ req.once("socket", (s) => {
46177
+ debug("replaying proxy buffer for failed request");
46178
+ assert_1.default(s.listenerCount("data") > 0);
46179
+ s.push(buffered);
46180
+ s.push(null);
46181
+ });
46182
+ return fakeSocket;
46183
+ });
46184
+ }
46185
+ };
46186
+ exports$1.default = HttpsProxyAgent2;
46187
+ function resume(socket) {
46188
+ socket.resume();
46189
+ }
46190
+ function isDefaultPort(port, secure) {
46191
+ return Boolean(!secure && port === 80 || secure && port === 443);
46192
+ }
46193
+ function isHTTPS(protocol) {
46194
+ return typeof protocol === "string" ? /^https:?$/i.test(protocol) : false;
46195
+ }
46196
+ function omit2(obj, ...keys) {
46197
+ const ret = {};
46198
+ let key;
46199
+ for (key in obj) {
46200
+ if (!keys.includes(key)) {
46201
+ ret[key] = obj[key];
46202
+ }
46203
+ }
46204
+ return ret;
46205
+ }
46206
+ }
46207
+ });
46208
+ var require_dist2 = __commonJS({
46209
+ "../../node_modules/.pnpm/https-proxy-agent@5.0.1/node_modules/https-proxy-agent/dist/index.js"(exports$1, module) {
46210
+ var __importDefault = exports$1 && exports$1.__importDefault || function(mod4) {
46211
+ return mod4 && mod4.__esModule ? mod4 : { "default": mod4 };
46212
+ };
46213
+ var agent_1 = __importDefault(require_agent());
46214
+ function createHttpsProxyAgent(opts) {
46215
+ return new agent_1.default(opts);
46216
+ }
46217
+ (function(createHttpsProxyAgent2) {
46218
+ createHttpsProxyAgent2.HttpsProxyAgent = agent_1.default;
46219
+ createHttpsProxyAgent2.prototype = agent_1.default.prototype;
46220
+ })(createHttpsProxyAgent || (createHttpsProxyAgent = {}));
46221
+ module.exports = createHttpsProxyAgent;
46222
+ }
46223
+ });
45714
46224
  var require_debug = __commonJS({
45715
- "../../node_modules/.pnpm/follow-redirects@1.15.11/node_modules/follow-redirects/debug.js"(exports$1, module) {
46225
+ "../../node_modules/.pnpm/follow-redirects@1.16.0/node_modules/follow-redirects/debug.js"(exports$1, module) {
45716
46226
  var debug;
45717
46227
  module.exports = function() {
45718
46228
  if (!debug) {
@@ -45730,7 +46240,7 @@ var require_debug = __commonJS({
45730
46240
  }
45731
46241
  });
45732
46242
  var require_follow_redirects = __commonJS({
45733
- "../../node_modules/.pnpm/follow-redirects@1.15.11/node_modules/follow-redirects/index.js"(exports$1, module) {
46243
+ "../../node_modules/.pnpm/follow-redirects@1.16.0/node_modules/follow-redirects/index.js"(exports$1, module) {
45734
46244
  var url2 = __require("url");
45735
46245
  var URL3 = url2.URL;
45736
46246
  var http4 = __require("http");
@@ -45752,6 +46262,11 @@ var require_follow_redirects = __commonJS({
45752
46262
  } catch (error2) {
45753
46263
  useNativeURL = error2.code === "ERR_INVALID_URL";
45754
46264
  }
46265
+ var sensitiveHeaders = [
46266
+ "Authorization",
46267
+ "Proxy-Authorization",
46268
+ "Cookie"
46269
+ ];
45755
46270
  var preservedUrlFields = [
45756
46271
  "auth",
45757
46272
  "host",
@@ -45816,6 +46331,7 @@ var require_follow_redirects = __commonJS({
45816
46331
  self2.emit("error", cause instanceof RedirectionError ? cause : new RedirectionError({ cause }));
45817
46332
  }
45818
46333
  };
46334
+ this._headerFilter = new RegExp("^(?:" + sensitiveHeaders.concat(options.sensitiveHeaders).map(escapeRegex2).join("|") + ")$", "i");
45819
46335
  this._performRequest();
45820
46336
  }
45821
46337
  RedirectableRequest.prototype = Object.create(Writable.prototype);
@@ -45953,6 +46469,9 @@ var require_follow_redirects = __commonJS({
45953
46469
  if (!options.headers) {
45954
46470
  options.headers = {};
45955
46471
  }
46472
+ if (!isArray2(options.sensitiveHeaders)) {
46473
+ options.sensitiveHeaders = [];
46474
+ }
45956
46475
  if (options.host) {
45957
46476
  if (!options.hostname) {
45958
46477
  options.hostname = options.host;
@@ -46058,7 +46577,7 @@ var require_follow_redirects = __commonJS({
46058
46577
  this._isRedirect = true;
46059
46578
  spreadUrlObject(redirectUrl, this._options);
46060
46579
  if (redirectUrl.protocol !== currentUrlParts.protocol && redirectUrl.protocol !== "https:" || redirectUrl.host !== currentHost && !isSubdomain(redirectUrl.host, currentHost)) {
46061
- removeMatchingHeaders(/^(?:(?:proxy-)?authorization|cookie)$/i, this._options.headers);
46580
+ removeMatchingHeaders(this._headerFilter, this._options.headers);
46062
46581
  }
46063
46582
  if (isFunction3(beforeRedirect)) {
46064
46583
  var responseDetails = {
@@ -46207,6 +46726,9 @@ var require_follow_redirects = __commonJS({
46207
46726
  var dot = subdomain.length - domain.length - 1;
46208
46727
  return dot > 0 && subdomain[dot] === "." && subdomain.endsWith(domain);
46209
46728
  }
46729
+ function isArray2(value) {
46730
+ return value instanceof Array;
46731
+ }
46210
46732
  function isString2(value) {
46211
46733
  return typeof value === "string" || value instanceof String;
46212
46734
  }
@@ -46219,22 +46741,25 @@ var require_follow_redirects = __commonJS({
46219
46741
  function isURL(value) {
46220
46742
  return URL3 && value instanceof URL3;
46221
46743
  }
46744
+ function escapeRegex2(regex) {
46745
+ return regex.replace(/[\]\\/()*+?.$]/g, "\\$&");
46746
+ }
46222
46747
  module.exports = wrap2({ http: http4, https: https3 });
46223
46748
  module.exports.wrap = wrap2;
46224
46749
  }
46225
46750
  });
46226
46751
  var VERSION;
46227
46752
  var init_data = __esm({
46228
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/env/data.js"() {
46229
- VERSION = "1.15.2";
46753
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/env/data.js"() {
46754
+ VERSION = "1.16.1";
46230
46755
  }
46231
46756
  });
46232
46757
  function parseProtocol(url2) {
46233
- const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url2);
46758
+ const match = /^([-+\w]{1,25}):(?:\/\/)?/.exec(url2);
46234
46759
  return match && match[1] || "";
46235
46760
  }
46236
46761
  var init_parseProtocol = __esm({
46237
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/helpers/parseProtocol.js"() {
46762
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/helpers/parseProtocol.js"() {
46238
46763
  }
46239
46764
  });
46240
46765
  function fromDataURI(uri, asBlob, options) {
@@ -46249,10 +46774,17 @@ function fromDataURI(uri, asBlob, options) {
46249
46774
  if (!match) {
46250
46775
  throw new AxiosError_default("Invalid URL", AxiosError_default.ERR_INVALID_URL);
46251
46776
  }
46252
- const mime = match[1];
46253
- const isBase64 = match[2];
46254
- const body2 = match[3];
46255
- const buffer = Buffer.from(decodeURIComponent(body2), isBase64 ? "base64" : "utf8");
46777
+ const type = match[1];
46778
+ const params = match[2];
46779
+ const encoding = match[3] ? "base64" : "utf8";
46780
+ const body2 = match[4];
46781
+ let mime;
46782
+ if (type) {
46783
+ mime = params ? type + params : type;
46784
+ } else if (params) {
46785
+ mime = "text/plain" + params;
46786
+ }
46787
+ const buffer = Buffer.from(decodeURIComponent(body2), encoding);
46256
46788
  if (asBlob) {
46257
46789
  if (!_Blob) {
46258
46790
  throw new AxiosError_default("Blob is not supported", AxiosError_default.ERR_NOT_SUPPORT);
@@ -46265,18 +46797,18 @@ function fromDataURI(uri, asBlob, options) {
46265
46797
  }
46266
46798
  var DATA_URL_PATTERN;
46267
46799
  var init_fromDataURI = __esm({
46268
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/helpers/fromDataURI.js"() {
46800
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/helpers/fromDataURI.js"() {
46269
46801
  init_AxiosError();
46270
46802
  init_parseProtocol();
46271
46803
  init_platform();
46272
- DATA_URL_PATTERN = /^(?:([^;]+);)?(?:[^;]+;)?(base64|),([\s\S]*)$/;
46804
+ DATA_URL_PATTERN = /^([^,;]+\/[^,;]+)?((?:;[^,;=]+=[^,;]+)*)(;base64)?,([\s\S]*)$/;
46273
46805
  }
46274
46806
  });
46275
46807
  var kInternals;
46276
46808
  var AxiosTransformStream;
46277
46809
  var AxiosTransformStream_default;
46278
46810
  var init_AxiosTransformStream = __esm({
46279
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/helpers/AxiosTransformStream.js"() {
46811
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/helpers/AxiosTransformStream.js"() {
46280
46812
  init_utils7();
46281
46813
  kInternals = /* @__PURE__ */ Symbol("internals");
46282
46814
  AxiosTransformStream = class extends stream3.Transform {
@@ -46404,7 +46936,7 @@ var asyncIterator;
46404
46936
  var readBlob;
46405
46937
  var readBlob_default;
46406
46938
  var init_readBlob = __esm({
46407
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/helpers/readBlob.js"() {
46939
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/helpers/readBlob.js"() {
46408
46940
  ({ asyncIterator } = Symbol);
46409
46941
  readBlob = async function* (blob) {
46410
46942
  if (blob.stream) {
@@ -46429,7 +46961,7 @@ var FormDataPart;
46429
46961
  var formDataToStream;
46430
46962
  var formDataToStream_default;
46431
46963
  var init_formDataToStream = __esm({
46432
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/helpers/formDataToStream.js"() {
46964
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/helpers/formDataToStream.js"() {
46433
46965
  init_utils7();
46434
46966
  init_readBlob();
46435
46967
  init_platform();
@@ -46486,7 +47018,7 @@ var init_formDataToStream = __esm({
46486
47018
  throw TypeError("FormData instance required");
46487
47019
  }
46488
47020
  if (boundary.length < 1 || boundary.length > 70) {
46489
- throw Error("boundary must be 10-70 characters long");
47021
+ throw Error("boundary must be 1-70 characters long");
46490
47022
  }
46491
47023
  const boundaryBytes = textEncoder.encode("--" + boundary + CRLF);
46492
47024
  const footerBytes = textEncoder.encode("--" + boundary + "--" + CRLF);
@@ -46521,7 +47053,7 @@ var init_formDataToStream = __esm({
46521
47053
  var ZlibHeaderTransformStream;
46522
47054
  var ZlibHeaderTransformStream_default;
46523
47055
  var init_ZlibHeaderTransformStream = __esm({
46524
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js"() {
47056
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js"() {
46525
47057
  ZlibHeaderTransformStream = class extends stream3.Transform {
46526
47058
  __transform(chunk2, encoding, callback) {
46527
47059
  this.push(chunk2);
@@ -46546,7 +47078,7 @@ var init_ZlibHeaderTransformStream = __esm({
46546
47078
  var callbackify;
46547
47079
  var callbackify_default;
46548
47080
  var init_callbackify = __esm({
46549
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/helpers/callbackify.js"() {
47081
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/helpers/callbackify.js"() {
46550
47082
  init_utils7();
46551
47083
  callbackify = (fn, reducer) => {
46552
47084
  return utils_default.isAsyncFn(fn) ? function(...args) {
@@ -46606,9 +47138,12 @@ var isIPv6Loopback;
46606
47138
  var isLoopback;
46607
47139
  var DEFAULT_PORTS2;
46608
47140
  var parseNoProxyEntry;
47141
+ var IPV4_MAPPED_DOTTED_RE;
47142
+ var IPV4_MAPPED_HEX_RE;
47143
+ var unmapIPv4MappedIPv6;
46609
47144
  var normalizeNoProxyHost;
46610
47145
  var init_shouldBypassProxy = __esm({
46611
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/helpers/shouldBypassProxy.js"() {
47146
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/helpers/shouldBypassProxy.js"() {
46612
47147
  LOOPBACK_HOSTNAMES = /* @__PURE__ */ new Set(["localhost"]);
46613
47148
  isIPv4Loopback = (host) => {
46614
47149
  const parts = host.split(".");
@@ -46669,6 +47204,20 @@ var init_shouldBypassProxy = __esm({
46669
47204
  }
46670
47205
  return [entryHost, entryPort];
46671
47206
  };
47207
+ IPV4_MAPPED_DOTTED_RE = /^(?:::|(?:0{1,4}:){1,4}:|(?:0{1,4}:){5})ffff:(\d+\.\d+\.\d+\.\d+)$/i;
47208
+ IPV4_MAPPED_HEX_RE = /^(?:::|(?:0{1,4}:){1,4}:|(?:0{1,4}:){5})ffff:([0-9a-f]{1,4}):([0-9a-f]{1,4})$/i;
47209
+ unmapIPv4MappedIPv6 = (host) => {
47210
+ if (typeof host !== "string" || host.indexOf(":") === -1) return host;
47211
+ const dotted = host.match(IPV4_MAPPED_DOTTED_RE);
47212
+ if (dotted) return dotted[1];
47213
+ const hex = host.match(IPV4_MAPPED_HEX_RE);
47214
+ if (hex) {
47215
+ const high = parseInt(hex[1], 16);
47216
+ const low = parseInt(hex[2], 16);
47217
+ return `${high >> 8}.${high & 255}.${low >> 8}.${low & 255}`;
47218
+ }
47219
+ return host;
47220
+ };
46672
47221
  normalizeNoProxyHost = (hostname2) => {
46673
47222
  if (!hostname2) {
46674
47223
  return hostname2;
@@ -46676,7 +47225,7 @@ var init_shouldBypassProxy = __esm({
46676
47225
  if (hostname2.charAt(0) === "[" && hostname2.charAt(hostname2.length - 1) === "]") {
46677
47226
  hostname2 = hostname2.slice(1, -1);
46678
47227
  }
46679
- return hostname2.replace(/\.+$/, "");
47228
+ return unmapIPv4MappedIPv6(hostname2.replace(/\.+$/, ""));
46680
47229
  };
46681
47230
  }
46682
47231
  });
@@ -46715,7 +47264,7 @@ function speedometer(samplesCount, min2) {
46715
47264
  }
46716
47265
  var speedometer_default;
46717
47266
  var init_speedometer = __esm({
46718
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/helpers/speedometer.js"() {
47267
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/helpers/speedometer.js"() {
46719
47268
  speedometer_default = speedometer;
46720
47269
  }
46721
47270
  });
@@ -46753,7 +47302,7 @@ function throttle(fn, freq) {
46753
47302
  }
46754
47303
  var throttle_default;
46755
47304
  var init_throttle = __esm({
46756
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/helpers/throttle.js"() {
47305
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/helpers/throttle.js"() {
46757
47306
  throttle_default = throttle;
46758
47307
  }
46759
47308
  });
@@ -46761,7 +47310,7 @@ var progressEventReducer;
46761
47310
  var progressEventDecorator;
46762
47311
  var asyncDecorator;
46763
47312
  var init_progressEventReducer = __esm({
46764
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/helpers/progressEventReducer.js"() {
47313
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/helpers/progressEventReducer.js"() {
46765
47314
  init_speedometer();
46766
47315
  init_throttle();
46767
47316
  init_utils7();
@@ -46769,6 +47318,9 @@ var init_progressEventReducer = __esm({
46769
47318
  let bytesNotified = 0;
46770
47319
  const _speedometer = speedometer_default(50, 250);
46771
47320
  return throttle_default((e) => {
47321
+ if (!e || typeof e.loaded !== "number") {
47322
+ return;
47323
+ }
46772
47324
  const rawLoaded = e.loaded;
46773
47325
  const total = e.lengthComputable ? e.total : void 0;
46774
47326
  const loaded = total != null ? Math.min(rawLoaded, total) : rawLoaded;
@@ -46847,24 +47399,68 @@ function estimateDataURLDecodedBytes(url2) {
46847
47399
  }
46848
47400
  }
46849
47401
  const groups = Math.floor(effectiveLen / 4);
46850
- const bytes = groups * 3 - (pad || 0);
46851
- return bytes > 0 ? bytes : 0;
47402
+ const bytes2 = groups * 3 - (pad || 0);
47403
+ return bytes2 > 0 ? bytes2 : 0;
47404
+ }
47405
+ if (typeof Buffer !== "undefined" && typeof Buffer.byteLength === "function") {
47406
+ return Buffer.byteLength(body2, "utf8");
47407
+ }
47408
+ let bytes = 0;
47409
+ for (let i = 0, len = body2.length; i < len; i++) {
47410
+ const c = body2.charCodeAt(i);
47411
+ if (c < 128) {
47412
+ bytes += 1;
47413
+ } else if (c < 2048) {
47414
+ bytes += 2;
47415
+ } else if (c >= 55296 && c <= 56319 && i + 1 < len) {
47416
+ const next = body2.charCodeAt(i + 1);
47417
+ if (next >= 56320 && next <= 57343) {
47418
+ bytes += 4;
47419
+ i++;
47420
+ } else {
47421
+ bytes += 3;
47422
+ }
47423
+ } else {
47424
+ bytes += 3;
47425
+ }
46852
47426
  }
46853
- return Buffer.byteLength(body2, "utf8");
47427
+ return bytes;
46854
47428
  }
46855
47429
  var init_estimateDataURLDecodedBytes = __esm({
46856
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/helpers/estimateDataURLDecodedBytes.js"() {
47430
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/helpers/estimateDataURLDecodedBytes.js"() {
46857
47431
  }
46858
47432
  });
46859
- function dispatchBeforeRedirect(options, responseDetails) {
47433
+ function setFormDataHeaders(headers, formHeaders, policy) {
47434
+ if (policy !== "content-only") {
47435
+ headers.set(formHeaders);
47436
+ return;
47437
+ }
47438
+ Object.entries(formHeaders).forEach(([key, val]) => {
47439
+ if (FORM_DATA_CONTENT_HEADERS.includes(key.toLowerCase())) {
47440
+ headers.set(key, val);
47441
+ }
47442
+ });
47443
+ }
47444
+ function getTunnelingAgent(agentOptions, userHttpsAgent) {
47445
+ const key = agentOptions.protocol + "//" + agentOptions.hostname + ":" + (agentOptions.port || "") + "#" + (agentOptions.auth || "");
47446
+ const cache = userHttpsAgent ? tunnelingAgentCacheUser.get(userHttpsAgent) || tunnelingAgentCacheUser.set(userHttpsAgent, /* @__PURE__ */ new Map()).get(userHttpsAgent) : tunnelingAgentCache;
47447
+ let agent = cache.get(key);
47448
+ if (agent) return agent;
47449
+ const merged = userHttpsAgent && userHttpsAgent.options ? { ...userHttpsAgent.options, ...agentOptions } : agentOptions;
47450
+ agent = new import_https_proxy_agent.default(merged);
47451
+ agent[kAxiosInstalledTunnel] = true;
47452
+ cache.set(key, agent);
47453
+ return agent;
47454
+ }
47455
+ function dispatchBeforeRedirect(options, responseDetails, requestDetails) {
46860
47456
  if (options.beforeRedirects.proxy) {
46861
47457
  options.beforeRedirects.proxy(options);
46862
47458
  }
46863
47459
  if (options.beforeRedirects.config) {
46864
- options.beforeRedirects.config(options, responseDetails);
47460
+ options.beforeRedirects.config(options, responseDetails, requestDetails);
46865
47461
  }
46866
47462
  }
46867
- function setProxy(options, configProxy, location) {
47463
+ function setProxy(options, configProxy, location, isRedirect, configHttpsAgent) {
46868
47464
  let proxy = configProxy;
46869
47465
  if (!proxy && proxy !== false) {
46870
47466
  const proxyUrl = getProxyForUrl(location);
@@ -46874,34 +47470,93 @@ function setProxy(options, configProxy, location) {
46874
47470
  }
46875
47471
  }
46876
47472
  }
46877
- if (proxy) {
46878
- if (proxy.username) {
46879
- proxy.auth = (proxy.username || "") + ":" + (proxy.password || "");
47473
+ if (isRedirect && options.headers) {
47474
+ for (const name of Object.keys(options.headers)) {
47475
+ if (name.toLowerCase() === "proxy-authorization") {
47476
+ delete options.headers[name];
47477
+ }
46880
47478
  }
46881
- if (proxy.auth) {
46882
- const validProxyAuth = Boolean(proxy.auth.username || proxy.auth.password);
47479
+ }
47480
+ if (isRedirect && options.agent && options.agent[kAxiosInstalledTunnel]) {
47481
+ options.agent = void 0;
47482
+ }
47483
+ if (proxy) {
47484
+ const isProxyURL = proxy instanceof URL;
47485
+ const readProxyField = (key) => isProxyURL || utils_default.hasOwnProp(proxy, key) ? proxy[key] : void 0;
47486
+ const proxyUsername = readProxyField("username");
47487
+ const proxyPassword = readProxyField("password");
47488
+ let proxyAuth = utils_default.hasOwnProp(proxy, "auth") ? proxy.auth : void 0;
47489
+ if (proxyUsername) {
47490
+ proxyAuth = (proxyUsername || "") + ":" + (proxyPassword || "");
47491
+ }
47492
+ if (proxyAuth) {
47493
+ const authIsObject = typeof proxyAuth === "object";
47494
+ const authUsername = authIsObject && utils_default.hasOwnProp(proxyAuth, "username") ? proxyAuth.username : void 0;
47495
+ const authPassword = authIsObject && utils_default.hasOwnProp(proxyAuth, "password") ? proxyAuth.password : void 0;
47496
+ const validProxyAuth = Boolean(authUsername || authPassword);
46883
47497
  if (validProxyAuth) {
46884
- proxy.auth = (proxy.auth.username || "") + ":" + (proxy.auth.password || "");
46885
- } else if (typeof proxy.auth === "object") {
47498
+ proxyAuth = (authUsername || "") + ":" + (authPassword || "");
47499
+ } else if (authIsObject) {
46886
47500
  throw new AxiosError_default("Invalid proxy authorization", AxiosError_default.ERR_BAD_OPTION, { proxy });
46887
47501
  }
46888
- const base642 = Buffer.from(proxy.auth, "utf8").toString("base64");
46889
- options.headers["Proxy-Authorization"] = "Basic " + base642;
46890
47502
  }
46891
- options.headers.host = options.hostname + (options.port ? ":" + options.port : "");
46892
- const proxyHost = proxy.hostname || proxy.host;
46893
- options.hostname = proxyHost;
46894
- options.host = proxyHost;
46895
- options.port = proxy.port;
46896
- options.path = location;
46897
- if (proxy.protocol) {
46898
- options.protocol = proxy.protocol.includes(":") ? proxy.protocol : `${proxy.protocol}:`;
47503
+ const targetIsHttps = isHttps.test(options.protocol);
47504
+ if (targetIsHttps) {
47505
+ if (!(configHttpsAgent instanceof import_https_proxy_agent.default)) {
47506
+ const proxyHost = readProxyField("hostname") || readProxyField("host");
47507
+ const proxyPort = readProxyField("port");
47508
+ const rawProxyProtocol = readProxyField("protocol");
47509
+ const normalizedProtocol = rawProxyProtocol ? rawProxyProtocol.includes(":") ? rawProxyProtocol : `${rawProxyProtocol}:` : "http:";
47510
+ const proxyHostForURL = proxyHost && proxyHost.includes(":") && !proxyHost.startsWith("[") ? `[${proxyHost}]` : proxyHost;
47511
+ const proxyURL = new URL(
47512
+ `${normalizedProtocol}//${proxyHostForURL}${proxyPort ? ":" + proxyPort : ""}`
47513
+ );
47514
+ const agentOptions = {
47515
+ protocol: proxyURL.protocol,
47516
+ hostname: proxyURL.hostname.replace(/^\[|\]$/g, ""),
47517
+ port: proxyURL.port,
47518
+ auth: proxyAuth && typeof proxyAuth === "string" ? proxyAuth : void 0
47519
+ };
47520
+ if (proxyURL.protocol === "https:") {
47521
+ agentOptions.ALPNProtocols = ["http/1.1"];
47522
+ }
47523
+ const tunnelingAgent = getTunnelingAgent(agentOptions, configHttpsAgent);
47524
+ options.agent = tunnelingAgent;
47525
+ if (options.agents) {
47526
+ options.agents.https = tunnelingAgent;
47527
+ }
47528
+ }
47529
+ } else {
47530
+ if (proxyAuth) {
47531
+ const base642 = Buffer.from(proxyAuth, "utf8").toString("base64");
47532
+ options.headers["Proxy-Authorization"] = "Basic " + base642;
47533
+ }
47534
+ let hasUserHostHeader = false;
47535
+ for (const name of Object.keys(options.headers)) {
47536
+ if (name.toLowerCase() === "host") {
47537
+ hasUserHostHeader = true;
47538
+ break;
47539
+ }
47540
+ }
47541
+ if (!hasUserHostHeader) {
47542
+ options.headers.host = options.hostname + (options.port ? ":" + options.port : "");
47543
+ }
47544
+ const proxyHost = readProxyField("hostname") || readProxyField("host");
47545
+ options.hostname = proxyHost;
47546
+ options.host = proxyHost;
47547
+ options.port = readProxyField("port");
47548
+ options.path = location;
47549
+ const proxyProtocol = readProxyField("protocol");
47550
+ if (proxyProtocol) {
47551
+ options.protocol = proxyProtocol.includes(":") ? proxyProtocol : `${proxyProtocol}:`;
47552
+ }
46899
47553
  }
46900
47554
  }
46901
47555
  options.beforeRedirects.proxy = function beforeRedirect(redirectOptions) {
46902
- setProxy(redirectOptions, configProxy, redirectOptions.href);
47556
+ setProxy(redirectOptions, configProxy, redirectOptions.href, true, configHttpsAgent);
46903
47557
  };
46904
47558
  }
47559
+ var import_https_proxy_agent;
46905
47560
  var import_follow_redirects;
46906
47561
  var zlibOptions;
46907
47562
  var brotliOptions;
@@ -46909,9 +47564,14 @@ var isBrotliSupported;
46909
47564
  var httpFollow;
46910
47565
  var httpsFollow;
46911
47566
  var isHttps;
47567
+ var FORM_DATA_CONTENT_HEADERS;
46912
47568
  var kAxiosSocketListener;
46913
47569
  var kAxiosCurrentReq;
47570
+ var kAxiosInstalledTunnel;
47571
+ var tunnelingAgentCache;
47572
+ var tunnelingAgentCacheUser;
46914
47573
  var supportedProtocols;
47574
+ var decodeURIComponentSafe;
46915
47575
  var flushOnFinish;
46916
47576
  var Http2Sessions;
46917
47577
  var http2Sessions;
@@ -46922,12 +47582,13 @@ var buildAddressEntry;
46922
47582
  var http2Transport;
46923
47583
  var http_default;
46924
47584
  var init_http = __esm({
46925
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/adapters/http.js"() {
47585
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/adapters/http.js"() {
46926
47586
  init_utils7();
46927
47587
  init_settle();
46928
47588
  init_buildFullPath();
46929
47589
  init_buildURL();
46930
47590
  init_proxy_from_env();
47591
+ import_https_proxy_agent = __toESM(require_dist2());
46931
47592
  import_follow_redirects = __toESM(require_follow_redirects());
46932
47593
  init_data();
46933
47594
  init_transitional();
@@ -46942,6 +47603,7 @@ var init_http = __esm({
46942
47603
  init_ZlibHeaderTransformStream();
46943
47604
  init_callbackify();
46944
47605
  init_shouldBypassProxy();
47606
+ init_sanitizeHeaderValue();
46945
47607
  init_progressEventReducer();
46946
47608
  init_estimateDataURLDecodedBytes();
46947
47609
  zlibOptions = {
@@ -46955,11 +47617,25 @@ var init_http = __esm({
46955
47617
  isBrotliSupported = utils_default.isFunction(zlib.createBrotliDecompress);
46956
47618
  ({ http: httpFollow, https: httpsFollow } = import_follow_redirects.default);
46957
47619
  isHttps = /https:?/;
47620
+ FORM_DATA_CONTENT_HEADERS = ["content-type", "content-length"];
46958
47621
  kAxiosSocketListener = /* @__PURE__ */ Symbol("axios.http.socketListener");
46959
47622
  kAxiosCurrentReq = /* @__PURE__ */ Symbol("axios.http.currentReq");
47623
+ kAxiosInstalledTunnel = /* @__PURE__ */ Symbol("axios.http.installedTunnel");
47624
+ tunnelingAgentCache = /* @__PURE__ */ new Map();
47625
+ tunnelingAgentCacheUser = /* @__PURE__ */ new WeakMap();
46960
47626
  supportedProtocols = platform_default.protocols.map((protocol) => {
46961
47627
  return protocol + ":";
46962
47628
  });
47629
+ decodeURIComponentSafe = (value) => {
47630
+ if (!utils_default.isString(value)) {
47631
+ return value;
47632
+ }
47633
+ try {
47634
+ return decodeURIComponent(value);
47635
+ } catch (error2) {
47636
+ return value;
47637
+ }
47638
+ };
46963
47639
  flushOnFinish = (stream4, [throttled, flush]) => {
46964
47640
  stream4.on("end", flush).on("error", flush);
46965
47641
  return throttled;
@@ -47110,6 +47786,7 @@ var init_http = __esm({
47110
47786
  let isDone;
47111
47787
  let rejected = false;
47112
47788
  let req;
47789
+ let connectPhaseTimer;
47113
47790
  httpVersion = +httpVersion;
47114
47791
  if (Number.isNaN(httpVersion)) {
47115
47792
  throw TypeError(`Invalid protocol version: '${config3.httpVersion}' is not a number`);
@@ -47141,8 +47818,28 @@ var init_http = __esm({
47141
47818
  console.warn("emit error", err);
47142
47819
  }
47143
47820
  }
47821
+ function clearConnectPhaseTimer() {
47822
+ if (connectPhaseTimer) {
47823
+ clearTimeout(connectPhaseTimer);
47824
+ connectPhaseTimer = null;
47825
+ }
47826
+ }
47827
+ function createTimeoutError() {
47828
+ let timeoutErrorMessage = config3.timeout ? "timeout of " + config3.timeout + "ms exceeded" : "timeout exceeded";
47829
+ const transitional2 = config3.transitional || transitional_default;
47830
+ if (config3.timeoutErrorMessage) {
47831
+ timeoutErrorMessage = config3.timeoutErrorMessage;
47832
+ }
47833
+ return new AxiosError_default(
47834
+ timeoutErrorMessage,
47835
+ transitional2.clarifyTimeoutError ? AxiosError_default.ETIMEDOUT : AxiosError_default.ECONNABORTED,
47836
+ config3,
47837
+ req
47838
+ );
47839
+ }
47144
47840
  abortEmitter.once("abort", reject);
47145
47841
  const onFinished = () => {
47842
+ clearConnectPhaseTimer();
47146
47843
  if (config3.cancelToken) {
47147
47844
  config3.cancelToken.unsubscribe(abort);
47148
47845
  }
@@ -47159,6 +47856,7 @@ var init_http = __esm({
47159
47856
  }
47160
47857
  onDone((response, isRejected) => {
47161
47858
  isDone = true;
47859
+ clearConnectPhaseTimer();
47162
47860
  if (isRejected) {
47163
47861
  rejected = true;
47164
47862
  onFinished();
@@ -47247,7 +47945,7 @@ var init_http = __esm({
47247
47945
  }
47248
47946
  );
47249
47947
  } else if (utils_default.isFormData(data) && utils_default.isFunction(data.getHeaders) && data.getHeaders !== Object.prototype.getHeaders) {
47250
- headers.set(data.getHeaders());
47948
+ setFormDataHeaders(headers, data.getHeaders(), own2("formDataHeaderPolicy"));
47251
47949
  if (!headers.hasContentLength()) {
47252
47950
  try {
47253
47951
  const knownLength = await util3.promisify(data.getLength).call(data);
@@ -47324,8 +48022,8 @@ var init_http = __esm({
47324
48022
  auth = username + ":" + password;
47325
48023
  }
47326
48024
  if (!auth && parsed.username) {
47327
- const urlUsername = parsed.username;
47328
- const urlPassword = parsed.password;
48025
+ const urlUsername = decodeURIComponentSafe(parsed.username);
48026
+ const urlPassword = decodeURIComponentSafe(parsed.password);
47329
48027
  auth = urlUsername + ":" + urlPassword;
47330
48028
  }
47331
48029
  auth && headers.delete("authorization");
@@ -47351,7 +48049,7 @@ var init_http = __esm({
47351
48049
  const options = Object.assign(/* @__PURE__ */ Object.create(null), {
47352
48050
  path,
47353
48051
  method,
47354
- headers: headers.toJSON(),
48052
+ headers: toByteStringHeaderObject(headers),
47355
48053
  agents: { http: config3.httpAgent, https: config3.httpsAgent },
47356
48054
  auth,
47357
48055
  protocol,
@@ -47363,11 +48061,9 @@ var init_http = __esm({
47363
48061
  !utils_default.isUndefined(lookup) && (options.lookup = lookup);
47364
48062
  if (config3.socketPath) {
47365
48063
  if (typeof config3.socketPath !== "string") {
47366
- return reject(new AxiosError_default(
47367
- "socketPath must be a string",
47368
- AxiosError_default.ERR_BAD_OPTION_VALUE,
47369
- config3
47370
- ));
48064
+ return reject(
48065
+ new AxiosError_default("socketPath must be a string", AxiosError_default.ERR_BAD_OPTION_VALUE, config3)
48066
+ );
47371
48067
  }
47372
48068
  if (config3.allowedSocketPaths != null) {
47373
48069
  const allowed = Array.isArray(config3.allowedSocketPaths) ? config3.allowedSocketPaths : [config3.allowedSocketPaths];
@@ -47376,11 +48072,13 @@ var init_http = __esm({
47376
48072
  (entry) => typeof entry === "string" && resolve(entry) === resolvedSocket
47377
48073
  );
47378
48074
  if (!isAllowed) {
47379
- return reject(new AxiosError_default(
47380
- `socketPath "${config3.socketPath}" is not permitted by allowedSocketPaths`,
47381
- AxiosError_default.ERR_BAD_OPTION_VALUE,
47382
- config3
47383
- ));
48075
+ return reject(
48076
+ new AxiosError_default(
48077
+ `socketPath "${config3.socketPath}" is not permitted by allowedSocketPaths`,
48078
+ AxiosError_default.ERR_BAD_OPTION_VALUE,
48079
+ config3
48080
+ )
48081
+ );
47384
48082
  }
47385
48083
  }
47386
48084
  options.socketPath = config3.socketPath;
@@ -47390,12 +48088,17 @@ var init_http = __esm({
47390
48088
  setProxy(
47391
48089
  options,
47392
48090
  config3.proxy,
47393
- protocol + "//" + parsed.hostname + (parsed.port ? ":" + parsed.port : "") + options.path
48091
+ protocol + "//" + parsed.hostname + (parsed.port ? ":" + parsed.port : "") + options.path,
48092
+ false,
48093
+ config3.httpsAgent
47394
48094
  );
47395
48095
  }
47396
48096
  let transport;
48097
+ let isNativeTransport = false;
47397
48098
  const isHttpsRequest = isHttps.test(options.protocol);
47398
- options.agent = isHttpsRequest ? config3.httpsAgent : config3.httpAgent;
48099
+ if (options.agent == null) {
48100
+ options.agent = isHttpsRequest ? config3.httpsAgent : config3.httpAgent;
48101
+ }
47399
48102
  if (isHttp2) {
47400
48103
  transport = http2Transport;
47401
48104
  } else {
@@ -47404,6 +48107,7 @@ var init_http = __esm({
47404
48107
  transport = configTransport;
47405
48108
  } else if (config3.maxRedirects === 0) {
47406
48109
  transport = isHttpsRequest ? https : http3;
48110
+ isNativeTransport = true;
47407
48111
  } else {
47408
48112
  if (config3.maxRedirects) {
47409
48113
  options.maxRedirects = config3.maxRedirects;
@@ -47422,6 +48126,7 @@ var init_http = __esm({
47422
48126
  }
47423
48127
  options.insecureHTTPParser = Boolean(own2("insecureHTTPParser"));
47424
48128
  req = transport.request(options, function handleResponse(res) {
48129
+ clearConnectPhaseTimer();
47425
48130
  if (req.destroyed) return;
47426
48131
  const streams = [res];
47427
48132
  const responseLength = utils_default.toFiniteNumber(res.headers["content-length"]);
@@ -47528,14 +48233,15 @@ var init_http = __esm({
47528
48233
  "stream has been aborted",
47529
48234
  AxiosError_default.ERR_BAD_RESPONSE,
47530
48235
  config3,
47531
- lastRequest
48236
+ lastRequest,
48237
+ response
47532
48238
  );
47533
48239
  responseStream.destroy(err);
47534
48240
  reject(err);
47535
48241
  });
47536
48242
  responseStream.on("error", function handleStreamError(err) {
47537
- if (req.destroyed) return;
47538
- reject(AxiosError_default.from(err, null, config3, lastRequest));
48243
+ if (rejected) return;
48244
+ reject(AxiosError_default.from(err, null, config3, lastRequest, response));
47539
48245
  });
47540
48246
  responseStream.on("end", function handleStreamEnd() {
47541
48247
  try {
@@ -47570,6 +48276,7 @@ var init_http = __esm({
47570
48276
  req.on("error", function handleRequestError(err) {
47571
48277
  reject(AxiosError_default.from(err, null, config3, req));
47572
48278
  });
48279
+ const boundSockets = /* @__PURE__ */ new Set();
47573
48280
  req.on("socket", function handleRequestSocket(socket) {
47574
48281
  socket.setKeepAlive(true, 1e3 * 60);
47575
48282
  if (!socket[kAxiosSocketListener]) {
@@ -47582,11 +48289,16 @@ var init_http = __esm({
47582
48289
  socket[kAxiosSocketListener] = true;
47583
48290
  }
47584
48291
  socket[kAxiosCurrentReq] = req;
47585
- req.once("close", function clearCurrentReq() {
48292
+ boundSockets.add(socket);
48293
+ });
48294
+ req.once("close", function clearCurrentReq() {
48295
+ clearConnectPhaseTimer();
48296
+ for (const socket of boundSockets) {
47586
48297
  if (socket[kAxiosCurrentReq] === req) {
47587
48298
  socket[kAxiosCurrentReq] = null;
47588
48299
  }
47589
- });
48300
+ }
48301
+ boundSockets.clear();
47590
48302
  });
47591
48303
  if (config3.timeout) {
47592
48304
  const timeout = parseInt(config3.timeout, 10);
@@ -47601,22 +48313,14 @@ var init_http = __esm({
47601
48313
  );
47602
48314
  return;
47603
48315
  }
47604
- req.setTimeout(timeout, function handleRequestTimeout() {
48316
+ const handleTimeout = function handleTimeout2() {
47605
48317
  if (isDone) return;
47606
- let timeoutErrorMessage = config3.timeout ? "timeout of " + config3.timeout + "ms exceeded" : "timeout exceeded";
47607
- const transitional2 = config3.transitional || transitional_default;
47608
- if (config3.timeoutErrorMessage) {
47609
- timeoutErrorMessage = config3.timeoutErrorMessage;
47610
- }
47611
- abort(
47612
- new AxiosError_default(
47613
- timeoutErrorMessage,
47614
- transitional2.clarifyTimeoutError ? AxiosError_default.ETIMEDOUT : AxiosError_default.ECONNABORTED,
47615
- config3,
47616
- req
47617
- )
47618
- );
47619
- });
48318
+ abort(createTimeoutError());
48319
+ };
48320
+ if (isNativeTransport && timeout > 0) {
48321
+ connectPhaseTimer = setTimeout(handleTimeout, timeout);
48322
+ }
48323
+ req.setTimeout(timeout, handleTimeout);
47620
48324
  } else {
47621
48325
  req.setTimeout(0);
47622
48326
  }
@@ -47676,7 +48380,7 @@ var init_http = __esm({
47676
48380
  });
47677
48381
  var isURLSameOrigin_default;
47678
48382
  var init_isURLSameOrigin = __esm({
47679
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/helpers/isURLSameOrigin.js"() {
48383
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/helpers/isURLSameOrigin.js"() {
47680
48384
  init_platform();
47681
48385
  isURLSameOrigin_default = platform_default.hasStandardBrowserEnv ? /* @__PURE__ */ ((origin2, isMSIE) => (url2) => {
47682
48386
  url2 = new URL(url2, platform_default.origin);
@@ -47689,7 +48393,7 @@ var init_isURLSameOrigin = __esm({
47689
48393
  });
47690
48394
  var cookies_default;
47691
48395
  var init_cookies = __esm({
47692
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/helpers/cookies.js"() {
48396
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/helpers/cookies.js"() {
47693
48397
  init_utils7();
47694
48398
  init_platform();
47695
48399
  cookies_default = platform_default.hasStandardBrowserEnv ? (
@@ -47717,8 +48421,15 @@ var init_cookies = __esm({
47717
48421
  },
47718
48422
  read(name) {
47719
48423
  if (typeof document === "undefined") return null;
47720
- const match = document.cookie.match(new RegExp("(?:^|; )" + name + "=([^;]*)"));
47721
- return match ? decodeURIComponent(match[1]) : null;
48424
+ const cookies = document.cookie.split(";");
48425
+ for (let i = 0; i < cookies.length; i++) {
48426
+ const cookie = cookies[i].replace(/^\s+/, "");
48427
+ const eq = cookie.indexOf("=");
48428
+ if (eq !== -1 && cookie.slice(0, eq) === name) {
48429
+ return decodeURIComponent(cookie.slice(eq + 1));
48430
+ }
48431
+ }
48432
+ return null;
47722
48433
  },
47723
48434
  remove(name) {
47724
48435
  this.write(name, "", Date.now() - 864e5, "/");
@@ -47742,6 +48453,9 @@ function mergeConfig(config1, config22) {
47742
48453
  config22 = config22 || {};
47743
48454
  const config3 = /* @__PURE__ */ Object.create(null);
47744
48455
  Object.defineProperty(config3, "hasOwnProperty", {
48456
+ // Null-proto descriptor so a polluted Object.prototype.get cannot turn
48457
+ // this data descriptor into an accessor descriptor on the way in.
48458
+ __proto__: null,
47745
48459
  value: Object.prototype.hasOwnProperty,
47746
48460
  enumerable: false,
47747
48461
  writable: true,
@@ -47827,15 +48541,28 @@ function mergeConfig(config1, config22) {
47827
48541
  }
47828
48542
  var headersToObject;
47829
48543
  var init_mergeConfig = __esm({
47830
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/core/mergeConfig.js"() {
48544
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/core/mergeConfig.js"() {
47831
48545
  init_utils7();
47832
48546
  init_AxiosHeaders();
47833
48547
  headersToObject = (thing) => thing instanceof AxiosHeaders_default ? { ...thing } : thing;
47834
48548
  }
47835
48549
  });
48550
+ function setFormDataHeaders2(headers, formHeaders, policy) {
48551
+ if (policy !== "content-only") {
48552
+ headers.set(formHeaders);
48553
+ return;
48554
+ }
48555
+ Object.entries(formHeaders).forEach(([key, val]) => {
48556
+ if (FORM_DATA_CONTENT_HEADERS2.includes(key.toLowerCase())) {
48557
+ headers.set(key, val);
48558
+ }
48559
+ });
48560
+ }
48561
+ var FORM_DATA_CONTENT_HEADERS2;
48562
+ var encodeUTF8;
47836
48563
  var resolveConfig_default;
47837
48564
  var init_resolveConfig = __esm({
47838
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/helpers/resolveConfig.js"() {
48565
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/helpers/resolveConfig.js"() {
47839
48566
  init_platform();
47840
48567
  init_utils7();
47841
48568
  init_isURLSameOrigin();
@@ -47844,6 +48571,11 @@ var init_resolveConfig = __esm({
47844
48571
  init_mergeConfig();
47845
48572
  init_AxiosHeaders();
47846
48573
  init_buildURL();
48574
+ FORM_DATA_CONTENT_HEADERS2 = ["content-type", "content-length"];
48575
+ encodeUTF8 = (str) => encodeURIComponent(str).replace(
48576
+ /%([0-9A-F]{2})/gi,
48577
+ (_, hex) => String.fromCharCode(parseInt(hex, 16))
48578
+ );
47847
48579
  resolveConfig_default = (config3) => {
47848
48580
  const newConfig = mergeConfig({}, config3);
47849
48581
  const own2 = (key) => utils_default.hasOwnProp(newConfig, key) ? newConfig[key] : void 0;
@@ -47865,22 +48597,14 @@ var init_resolveConfig = __esm({
47865
48597
  if (auth) {
47866
48598
  headers.set(
47867
48599
  "Authorization",
47868
- "Basic " + btoa(
47869
- (auth.username || "") + ":" + (auth.password ? unescape(encodeURIComponent(auth.password)) : "")
47870
- )
48600
+ "Basic " + btoa((auth.username || "") + ":" + (auth.password ? encodeUTF8(auth.password) : ""))
47871
48601
  );
47872
48602
  }
47873
48603
  if (utils_default.isFormData(data)) {
47874
48604
  if (platform_default.hasStandardBrowserEnv || platform_default.hasStandardBrowserWebWorkerEnv) {
47875
48605
  headers.setContentType(void 0);
47876
48606
  } else if (utils_default.isFunction(data.getHeaders)) {
47877
- const formHeaders = data.getHeaders();
47878
- const allowedHeaders = ["content-type", "content-length"];
47879
- Object.entries(formHeaders).forEach(([key, val]) => {
47880
- if (allowedHeaders.includes(key.toLowerCase())) {
47881
- headers.set(key, val);
47882
- }
47883
- });
48607
+ setFormDataHeaders2(headers, data.getHeaders(), own2("formDataHeaderPolicy"));
47884
48608
  }
47885
48609
  }
47886
48610
  if (platform_default.hasStandardBrowserEnv) {
@@ -47902,7 +48626,7 @@ var init_resolveConfig = __esm({
47902
48626
  var isXHRAdapterSupported;
47903
48627
  var xhr_default;
47904
48628
  var init_xhr = __esm({
47905
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/adapters/xhr.js"() {
48629
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/adapters/xhr.js"() {
47906
48630
  init_utils7();
47907
48631
  init_settle();
47908
48632
  init_transitional();
@@ -47913,6 +48637,7 @@ var init_xhr = __esm({
47913
48637
  init_AxiosHeaders();
47914
48638
  init_progressEventReducer();
47915
48639
  init_resolveConfig();
48640
+ init_sanitizeHeaderValue();
47916
48641
  isXHRAdapterSupported = typeof XMLHttpRequest !== "undefined";
47917
48642
  xhr_default = isXHRAdapterSupported && function(config3) {
47918
48643
  return new Promise(function dispatchXhrRequest(resolve2, reject) {
@@ -47968,7 +48693,7 @@ var init_xhr = __esm({
47968
48693
  if (!request || request.readyState !== 4) {
47969
48694
  return;
47970
48695
  }
47971
- if (request.status === 0 && !(request.responseURL && request.responseURL.indexOf("file:") === 0)) {
48696
+ if (request.status === 0 && !(request.responseURL && request.responseURL.startsWith("file:"))) {
47972
48697
  return;
47973
48698
  }
47974
48699
  setTimeout(onloadend);
@@ -47979,6 +48704,7 @@ var init_xhr = __esm({
47979
48704
  return;
47980
48705
  }
47981
48706
  reject(new AxiosError_default("Request aborted", AxiosError_default.ECONNABORTED, config3, request));
48707
+ done();
47982
48708
  request = null;
47983
48709
  };
47984
48710
  request.onerror = function handleError(event) {
@@ -47986,6 +48712,7 @@ var init_xhr = __esm({
47986
48712
  const err = new AxiosError_default(msg, AxiosError_default.ERR_NETWORK, config3, request);
47987
48713
  err.event = event || null;
47988
48714
  reject(err);
48715
+ done();
47989
48716
  request = null;
47990
48717
  };
47991
48718
  request.ontimeout = function handleTimeout() {
@@ -48002,11 +48729,12 @@ var init_xhr = __esm({
48002
48729
  request
48003
48730
  )
48004
48731
  );
48732
+ done();
48005
48733
  request = null;
48006
48734
  };
48007
48735
  requestData === void 0 && requestHeaders.setContentType(null);
48008
48736
  if ("setRequestHeader" in request) {
48009
- utils_default.forEach(requestHeaders.toJSON(), function setRequestHeader(val, key) {
48737
+ utils_default.forEach(toByteStringHeaderObject(requestHeaders), function setRequestHeader(val, key) {
48010
48738
  request.setRequestHeader(key, val);
48011
48739
  });
48012
48740
  }
@@ -48032,6 +48760,7 @@ var init_xhr = __esm({
48032
48760
  }
48033
48761
  reject(!cancel || cancel.type ? new CanceledError_default(null, config3, request) : cancel);
48034
48762
  request.abort();
48763
+ done();
48035
48764
  request = null;
48036
48765
  };
48037
48766
  _config.cancelToken && _config.cancelToken.subscribe(onCanceled);
@@ -48040,7 +48769,7 @@ var init_xhr = __esm({
48040
48769
  }
48041
48770
  }
48042
48771
  const protocol = parseProtocol(_config.url);
48043
- if (protocol && platform_default.protocols.indexOf(protocol) === -1) {
48772
+ if (protocol && !platform_default.protocols.includes(protocol)) {
48044
48773
  reject(
48045
48774
  new AxiosError_default(
48046
48775
  "Unsupported protocol " + protocol + ":",
@@ -48058,44 +48787,46 @@ var init_xhr = __esm({
48058
48787
  var composeSignals;
48059
48788
  var composeSignals_default;
48060
48789
  var init_composeSignals = __esm({
48061
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/helpers/composeSignals.js"() {
48790
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/helpers/composeSignals.js"() {
48062
48791
  init_CanceledError();
48063
48792
  init_AxiosError();
48064
48793
  init_utils7();
48065
48794
  composeSignals = (signals, timeout) => {
48066
- const { length } = signals = signals ? signals.filter(Boolean) : [];
48067
- if (timeout || length) {
48068
- let controller = new AbortController();
48069
- let aborted2;
48070
- const onabort = function(reason) {
48071
- if (!aborted2) {
48072
- aborted2 = true;
48073
- unsubscribe();
48074
- const err = reason instanceof Error ? reason : this.reason;
48075
- controller.abort(
48076
- err instanceof AxiosError_default ? err : new CanceledError_default(err instanceof Error ? err.message : err)
48077
- );
48078
- }
48079
- };
48080
- let timer = timeout && setTimeout(() => {
48081
- timer = null;
48082
- onabort(new AxiosError_default(`timeout of ${timeout}ms exceeded`, AxiosError_default.ETIMEDOUT));
48083
- }, timeout);
48084
- const unsubscribe = () => {
48085
- if (signals) {
48086
- timer && clearTimeout(timer);
48087
- timer = null;
48088
- signals.forEach((signal2) => {
48089
- signal2.unsubscribe ? signal2.unsubscribe(onabort) : signal2.removeEventListener("abort", onabort);
48090
- });
48091
- signals = null;
48092
- }
48093
- };
48094
- signals.forEach((signal2) => signal2.addEventListener("abort", onabort));
48095
- const { signal } = controller;
48096
- signal.unsubscribe = () => utils_default.asap(unsubscribe);
48097
- return signal;
48795
+ signals = signals ? signals.filter(Boolean) : [];
48796
+ if (!timeout && !signals.length) {
48797
+ return;
48098
48798
  }
48799
+ const controller = new AbortController();
48800
+ let aborted2 = false;
48801
+ const onabort = function(reason) {
48802
+ if (!aborted2) {
48803
+ aborted2 = true;
48804
+ unsubscribe();
48805
+ const err = reason instanceof Error ? reason : this.reason;
48806
+ controller.abort(
48807
+ err instanceof AxiosError_default ? err : new CanceledError_default(err instanceof Error ? err.message : err)
48808
+ );
48809
+ }
48810
+ };
48811
+ let timer = timeout && setTimeout(() => {
48812
+ timer = null;
48813
+ onabort(new AxiosError_default(`timeout of ${timeout}ms exceeded`, AxiosError_default.ETIMEDOUT));
48814
+ }, timeout);
48815
+ const unsubscribe = () => {
48816
+ if (!signals) {
48817
+ return;
48818
+ }
48819
+ timer && clearTimeout(timer);
48820
+ timer = null;
48821
+ signals.forEach((signal2) => {
48822
+ signal2.unsubscribe ? signal2.unsubscribe(onabort) : signal2.removeEventListener("abort", onabort);
48823
+ });
48824
+ signals = null;
48825
+ };
48826
+ signals.forEach((signal2) => signal2.addEventListener("abort", onabort));
48827
+ const { signal } = controller;
48828
+ signal.unsubscribe = () => utils_default.asap(unsubscribe);
48829
+ return signal;
48099
48830
  };
48100
48831
  composeSignals_default = composeSignals;
48101
48832
  }
@@ -48105,7 +48836,7 @@ var readBytes;
48105
48836
  var readStream;
48106
48837
  var trackStream;
48107
48838
  var init_trackStream = __esm({
48108
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/helpers/trackStream.js"() {
48839
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/helpers/trackStream.js"() {
48109
48840
  streamChunk = function* (chunk2, chunkSize) {
48110
48841
  let len = chunk2.byteLength;
48111
48842
  if (!chunkSize || len < chunkSize) {
@@ -48188,15 +48919,12 @@ var init_trackStream = __esm({
48188
48919
  });
48189
48920
  var DEFAULT_CHUNK_SIZE;
48190
48921
  var isFunction2;
48191
- var globalFetchAPI;
48192
- var ReadableStream2;
48193
- var TextEncoder2;
48194
48922
  var test;
48195
48923
  var factory;
48196
48924
  var seedCache;
48197
48925
  var getFetch;
48198
48926
  var init_fetch = __esm({
48199
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/adapters/fetch.js"() {
48927
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/adapters/fetch.js"() {
48200
48928
  init_platform();
48201
48929
  init_utils7();
48202
48930
  init_AxiosError();
@@ -48206,13 +48934,11 @@ var init_fetch = __esm({
48206
48934
  init_progressEventReducer();
48207
48935
  init_resolveConfig();
48208
48936
  init_settle();
48937
+ init_estimateDataURLDecodedBytes();
48938
+ init_data();
48939
+ init_sanitizeHeaderValue();
48209
48940
  DEFAULT_CHUNK_SIZE = 64 * 1024;
48210
48941
  ({ isFunction: isFunction2 } = utils_default);
48211
- globalFetchAPI = (({ Request: Request2, Response: Response2 }) => ({
48212
- Request: Request2,
48213
- Response: Response2
48214
- }))(utils_default.global);
48215
- ({ ReadableStream: ReadableStream2, TextEncoder: TextEncoder2 } = utils_default.global);
48216
48942
  test = (fn, ...args) => {
48217
48943
  try {
48218
48944
  return !!fn(...args);
@@ -48221,11 +48947,16 @@ var init_fetch = __esm({
48221
48947
  }
48222
48948
  };
48223
48949
  factory = (env) => {
48950
+ const globalObject = utils_default.global !== void 0 && utils_default.global !== null ? utils_default.global : globalThis;
48951
+ const { ReadableStream: ReadableStream2, TextEncoder: TextEncoder2 } = globalObject;
48224
48952
  env = utils_default.merge.call(
48225
48953
  {
48226
48954
  skipUndefined: true
48227
48955
  },
48228
- globalFetchAPI,
48956
+ {
48957
+ Request: globalObject.Request,
48958
+ Response: globalObject.Response
48959
+ },
48229
48960
  env
48230
48961
  );
48231
48962
  const { fetch: envFetch, Request: Request2, Response: Response2 } = env;
@@ -48313,8 +49044,12 @@ var init_fetch = __esm({
48313
49044
  responseType,
48314
49045
  headers,
48315
49046
  withCredentials = "same-origin",
48316
- fetchOptions
49047
+ fetchOptions,
49048
+ maxContentLength,
49049
+ maxBodyLength
48317
49050
  } = resolveConfig_default(config3);
49051
+ const hasMaxContentLength = utils_default.isNumber(maxContentLength) && maxContentLength > -1;
49052
+ const hasMaxBodyLength = utils_default.isNumber(maxBodyLength) && maxBodyLength > -1;
48318
49053
  let _fetch2 = envFetch || fetch;
48319
49054
  responseType = responseType ? (responseType + "").toLowerCase() : "text";
48320
49055
  let composedSignal = composeSignals_default(
@@ -48327,6 +49062,28 @@ var init_fetch = __esm({
48327
49062
  });
48328
49063
  let requestContentLength;
48329
49064
  try {
49065
+ if (hasMaxContentLength && typeof url2 === "string" && url2.startsWith("data:")) {
49066
+ const estimated = estimateDataURLDecodedBytes(url2);
49067
+ if (estimated > maxContentLength) {
49068
+ throw new AxiosError_default(
49069
+ "maxContentLength size of " + maxContentLength + " exceeded",
49070
+ AxiosError_default.ERR_BAD_RESPONSE,
49071
+ config3,
49072
+ request
49073
+ );
49074
+ }
49075
+ }
49076
+ if (hasMaxBodyLength && method !== "get" && method !== "head") {
49077
+ const outboundLength = await resolveBodyLength(headers, data);
49078
+ if (typeof outboundLength === "number" && isFinite(outboundLength) && outboundLength > maxBodyLength) {
49079
+ throw new AxiosError_default(
49080
+ "Request body larger than maxBodyLength limit",
49081
+ AxiosError_default.ERR_BAD_REQUEST,
49082
+ config3,
49083
+ request
49084
+ );
49085
+ }
49086
+ }
48330
49087
  if (onUploadProgress && supportsRequestStream && method !== "get" && method !== "head" && (requestContentLength = await resolveBodyLength(headers, data)) !== 0) {
48331
49088
  let _request = new Request2(url2, {
48332
49089
  method: "POST",
@@ -48355,19 +49112,31 @@ var init_fetch = __esm({
48355
49112
  headers.delete("content-type");
48356
49113
  }
48357
49114
  }
49115
+ headers.set("User-Agent", "axios/" + VERSION, false);
48358
49116
  const resolvedOptions = {
48359
49117
  ...fetchOptions,
48360
49118
  signal: composedSignal,
48361
49119
  method: method.toUpperCase(),
48362
- headers: headers.normalize().toJSON(),
49120
+ headers: toByteStringHeaderObject(headers.normalize()),
48363
49121
  body: data,
48364
49122
  duplex: "half",
48365
49123
  credentials: isCredentialsSupported ? withCredentials : void 0
48366
49124
  };
48367
49125
  request = isRequestSupported && new Request2(url2, resolvedOptions);
48368
49126
  let response = await (isRequestSupported ? _fetch2(request, fetchOptions) : _fetch2(url2, resolvedOptions));
49127
+ if (hasMaxContentLength) {
49128
+ const declaredLength = utils_default.toFiniteNumber(response.headers.get("content-length"));
49129
+ if (declaredLength != null && declaredLength > maxContentLength) {
49130
+ throw new AxiosError_default(
49131
+ "maxContentLength size of " + maxContentLength + " exceeded",
49132
+ AxiosError_default.ERR_BAD_RESPONSE,
49133
+ config3,
49134
+ request
49135
+ );
49136
+ }
49137
+ }
48369
49138
  const isStreamResponse = supportsResponseStream && (responseType === "stream" || responseType === "response");
48370
- if (supportsResponseStream && (onDownloadProgress || isStreamResponse && unsubscribe)) {
49139
+ if (supportsResponseStream && response.body && (onDownloadProgress || hasMaxContentLength || isStreamResponse && unsubscribe)) {
48371
49140
  const options = {};
48372
49141
  ["status", "statusText", "headers"].forEach((prop) => {
48373
49142
  options[prop] = response[prop];
@@ -48377,8 +49146,23 @@ var init_fetch = __esm({
48377
49146
  responseContentLength,
48378
49147
  progressEventReducer(asyncDecorator(onDownloadProgress), true)
48379
49148
  ) || [];
49149
+ let bytesRead = 0;
49150
+ const onChunkProgress = (loadedBytes) => {
49151
+ if (hasMaxContentLength) {
49152
+ bytesRead = loadedBytes;
49153
+ if (bytesRead > maxContentLength) {
49154
+ throw new AxiosError_default(
49155
+ "maxContentLength size of " + maxContentLength + " exceeded",
49156
+ AxiosError_default.ERR_BAD_RESPONSE,
49157
+ config3,
49158
+ request
49159
+ );
49160
+ }
49161
+ }
49162
+ onProgress && onProgress(loadedBytes);
49163
+ };
48380
49164
  response = new Response2(
48381
- trackStream(response.body, DEFAULT_CHUNK_SIZE, onProgress, () => {
49165
+ trackStream(response.body, DEFAULT_CHUNK_SIZE, onChunkProgress, () => {
48382
49166
  flush && flush();
48383
49167
  unsubscribe && unsubscribe();
48384
49168
  }),
@@ -48390,6 +49174,26 @@ var init_fetch = __esm({
48390
49174
  response,
48391
49175
  config3
48392
49176
  );
49177
+ if (hasMaxContentLength && !supportsResponseStream && !isStreamResponse) {
49178
+ let materializedSize;
49179
+ if (responseData != null) {
49180
+ if (typeof responseData.byteLength === "number") {
49181
+ materializedSize = responseData.byteLength;
49182
+ } else if (typeof responseData.size === "number") {
49183
+ materializedSize = responseData.size;
49184
+ } else if (typeof responseData === "string") {
49185
+ materializedSize = typeof TextEncoder2 === "function" ? new TextEncoder2().encode(responseData).byteLength : responseData.length;
49186
+ }
49187
+ }
49188
+ if (typeof materializedSize === "number" && materializedSize > maxContentLength) {
49189
+ throw new AxiosError_default(
49190
+ "maxContentLength size of " + maxContentLength + " exceeded",
49191
+ AxiosError_default.ERR_BAD_RESPONSE,
49192
+ config3,
49193
+ request
49194
+ );
49195
+ }
49196
+ }
48393
49197
  !isStreamResponse && unsubscribe && unsubscribe();
48394
49198
  return await new Promise((resolve2, reject) => {
48395
49199
  settle(resolve2, reject, {
@@ -48403,6 +49207,13 @@ var init_fetch = __esm({
48403
49207
  });
48404
49208
  } catch (err) {
48405
49209
  unsubscribe && unsubscribe();
49210
+ if (composedSignal && composedSignal.aborted && composedSignal.reason instanceof AxiosError_default) {
49211
+ const canceledError = composedSignal.reason;
49212
+ canceledError.config = config3;
49213
+ request && (canceledError.request = request);
49214
+ err !== canceledError && (canceledError.cause = err);
49215
+ throw canceledError;
49216
+ }
48406
49217
  if (err && err.name === "TypeError" && /Load failed|fetch/i.test(err.message)) {
48407
49218
  throw Object.assign(
48408
49219
  new AxiosError_default(
@@ -48476,7 +49287,7 @@ var renderReason;
48476
49287
  var isResolvedHandle;
48477
49288
  var adapters_default;
48478
49289
  var init_adapters = __esm({
48479
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/adapters/adapters.js"() {
49290
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/adapters/adapters.js"() {
48480
49291
  init_utils7();
48481
49292
  init_http();
48482
49293
  init_xhr();
@@ -48492,10 +49303,10 @@ var init_adapters = __esm({
48492
49303
  utils_default.forEach(knownAdapters, (fn, value) => {
48493
49304
  if (fn) {
48494
49305
  try {
48495
- Object.defineProperty(fn, "name", { value });
49306
+ Object.defineProperty(fn, "name", { __proto__: null, value });
48496
49307
  } catch (e) {
48497
49308
  }
48498
- Object.defineProperty(fn, "adapterName", { value });
49309
+ Object.defineProperty(fn, "adapterName", { __proto__: null, value });
48499
49310
  }
48500
49311
  });
48501
49312
  renderReason = (reason) => `- ${reason}`;
@@ -48533,7 +49344,12 @@ function dispatchRequest(config3) {
48533
49344
  return adapter2(config3).then(
48534
49345
  function onAdapterResolution(response) {
48535
49346
  throwIfCancellationRequested(config3);
48536
- response.data = transformData.call(config3, config3.transformResponse, response);
49347
+ config3.response = response;
49348
+ try {
49349
+ response.data = transformData.call(config3, config3.transformResponse, response);
49350
+ } finally {
49351
+ delete config3.response;
49352
+ }
48537
49353
  response.headers = AxiosHeaders_default.from(response.headers);
48538
49354
  return response;
48539
49355
  },
@@ -48541,11 +49357,16 @@ function dispatchRequest(config3) {
48541
49357
  if (!isCancel(reason)) {
48542
49358
  throwIfCancellationRequested(config3);
48543
49359
  if (reason && reason.response) {
48544
- reason.response.data = transformData.call(
48545
- config3,
48546
- config3.transformResponse,
48547
- reason.response
48548
- );
49360
+ config3.response = reason.response;
49361
+ try {
49362
+ reason.response.data = transformData.call(
49363
+ config3,
49364
+ config3.transformResponse,
49365
+ reason.response
49366
+ );
49367
+ } finally {
49368
+ delete config3.response;
49369
+ }
48549
49370
  reason.response.headers = AxiosHeaders_default.from(reason.response.headers);
48550
49371
  }
48551
49372
  }
@@ -48554,7 +49375,7 @@ function dispatchRequest(config3) {
48554
49375
  );
48555
49376
  }
48556
49377
  var init_dispatchRequest = __esm({
48557
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/core/dispatchRequest.js"() {
49378
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/core/dispatchRequest.js"() {
48558
49379
  init_transformData();
48559
49380
  init_isCancel();
48560
49381
  init_defaults();
@@ -48592,7 +49413,7 @@ var validators;
48592
49413
  var deprecatedWarnings;
48593
49414
  var validator_default;
48594
49415
  var init_validator = __esm({
48595
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/helpers/validator.js"() {
49416
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/helpers/validator.js"() {
48596
49417
  init_data();
48597
49418
  init_AxiosError();
48598
49419
  validators = {};
@@ -48641,7 +49462,7 @@ var validators2;
48641
49462
  var Axios;
48642
49463
  var Axios_default;
48643
49464
  var init_Axios = __esm({
48644
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/core/Axios.js"() {
49465
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/core/Axios.js"() {
48645
49466
  init_utils7();
48646
49467
  init_buildURL();
48647
49468
  init_InterceptorManager();
@@ -48752,7 +49573,7 @@ var init_Axios = __esm({
48752
49573
  );
48753
49574
  config3.method = (config3.method || this.defaults.method || "get").toLowerCase();
48754
49575
  let contextHeaders = headers && utils_default.merge(headers.common, headers[config3.method]);
48755
- headers && utils_default.forEach(["delete", "get", "head", "post", "put", "patch", "common"], (method) => {
49576
+ headers && utils_default.forEach(["delete", "get", "head", "post", "put", "patch", "query", "common"], (method) => {
48756
49577
  delete headers[method];
48757
49578
  });
48758
49579
  config3.headers = AxiosHeaders_default.concat(contextHeaders, headers);
@@ -48830,7 +49651,7 @@ var init_Axios = __esm({
48830
49651
  );
48831
49652
  };
48832
49653
  });
48833
- utils_default.forEach(["post", "put", "patch"], function forEachMethodWithData(method) {
49654
+ utils_default.forEach(["post", "put", "patch", "query"], function forEachMethodWithData(method) {
48834
49655
  function generateHTTPMethod(isForm) {
48835
49656
  return function httpMethod(url2, data, config3) {
48836
49657
  return this.request(
@@ -48846,7 +49667,9 @@ var init_Axios = __esm({
48846
49667
  };
48847
49668
  }
48848
49669
  Axios.prototype[method] = generateHTTPMethod();
48849
- Axios.prototype[method + "Form"] = generateHTTPMethod(true);
49670
+ if (method !== "query") {
49671
+ Axios.prototype[method + "Form"] = generateHTTPMethod(true);
49672
+ }
48850
49673
  });
48851
49674
  Axios_default = Axios;
48852
49675
  }
@@ -48854,7 +49677,7 @@ var init_Axios = __esm({
48854
49677
  var CancelToken;
48855
49678
  var CancelToken_default;
48856
49679
  var init_CancelToken = __esm({
48857
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/cancel/CancelToken.js"() {
49680
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/cancel/CancelToken.js"() {
48858
49681
  init_CanceledError();
48859
49682
  CancelToken = class _CancelToken {
48860
49683
  constructor(executor) {
@@ -48960,21 +49783,21 @@ function spread(callback) {
48960
49783
  };
48961
49784
  }
48962
49785
  var init_spread = __esm({
48963
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/helpers/spread.js"() {
49786
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/helpers/spread.js"() {
48964
49787
  }
48965
49788
  });
48966
49789
  function isAxiosError(payload) {
48967
49790
  return utils_default.isObject(payload) && payload.isAxiosError === true;
48968
49791
  }
48969
49792
  var init_isAxiosError = __esm({
48970
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/helpers/isAxiosError.js"() {
49793
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/helpers/isAxiosError.js"() {
48971
49794
  init_utils7();
48972
49795
  }
48973
49796
  });
48974
49797
  var HttpStatusCode;
48975
49798
  var HttpStatusCode_default;
48976
49799
  var init_HttpStatusCode = __esm({
48977
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/helpers/HttpStatusCode.js"() {
49800
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/helpers/HttpStatusCode.js"() {
48978
49801
  HttpStatusCode = {
48979
49802
  Continue: 100,
48980
49803
  SwitchingProtocols: 101,
@@ -49057,7 +49880,7 @@ function createInstance(defaultConfig) {
49057
49880
  const instance = bind(Axios_default.prototype.request, context);
49058
49881
  utils_default.extend(instance, Axios_default.prototype, context, { allOwnKeys: true });
49059
49882
  utils_default.extend(instance, context, null, { allOwnKeys: true });
49060
- instance.create = function create(instanceConfig) {
49883
+ instance.create = function create2(instanceConfig) {
49061
49884
  return createInstance(mergeConfig(defaultConfig, instanceConfig));
49062
49885
  };
49063
49886
  return instance;
@@ -49065,7 +49888,7 @@ function createInstance(defaultConfig) {
49065
49888
  var axios;
49066
49889
  var axios_default;
49067
49890
  var init_axios = __esm({
49068
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/lib/axios.js"() {
49891
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/lib/axios.js"() {
49069
49892
  init_utils7();
49070
49893
  init_bind();
49071
49894
  init_Axios();
@@ -49122,8 +49945,9 @@ var HttpStatusCode2;
49122
49945
  var formToJSON;
49123
49946
  var getAdapter2;
49124
49947
  var mergeConfig2;
49948
+ var create;
49125
49949
  var init_axios2 = __esm({
49126
- "../../node_modules/.pnpm/axios@1.15.2/node_modules/axios/index.js"() {
49950
+ "../../node_modules/.pnpm/axios@1.16.1/node_modules/axios/index.js"() {
49127
49951
  init_axios();
49128
49952
  ({
49129
49953
  Axios: Axios2,
@@ -49141,7 +49965,8 @@ var init_axios2 = __esm({
49141
49965
  HttpStatusCode: HttpStatusCode2,
49142
49966
  formToJSON,
49143
49967
  getAdapter: getAdapter2,
49144
- mergeConfig: mergeConfig2
49968
+ mergeConfig: mergeConfig2,
49969
+ create
49145
49970
  } = axios_default);
49146
49971
  }
49147
49972
  });
@@ -49244,7 +50069,7 @@ var y;
49244
50069
  var B;
49245
50070
  var te;
49246
50071
  var init_lib = __esm({
49247
- "../../node_modules/.pnpm/@zodios+core@10.9.6_axios@1.15.2_zod@3.25.76/node_modules/@zodios/core/lib/index.mjs"() {
50072
+ "../../node_modules/.pnpm/@zodios+core@10.9.6_axios@1.16.1_zod@3.25.76/node_modules/@zodios/core/lib/index.mjs"() {
49248
50073
  init_axios2();
49249
50074
  M = /:([a-zA-Z_][a-zA-Z0-9_]*)/g;
49250
50075
  u = class extends Error {
@@ -49421,7 +50246,7 @@ var LatestPublisherStakeCapsUpdateDataResponse;
49421
50246
  var schemas;
49422
50247
  var endpoints;
49423
50248
  var init_zodSchemas = __esm({
49424
- "../../node_modules/.pnpm/@pythnetwork+hermes-client@3.1.0_axios@1.15.2/node_modules/@pythnetwork/hermes-client/dist/esm/zodSchemas.mjs"() {
50249
+ "../../node_modules/.pnpm/@pythnetwork+hermes-client@3.1.0_axios@1.16.1/node_modules/@pythnetwork/hermes-client/dist/esm/zodSchemas.mjs"() {
49425
50250
  init_lib();
49426
50251
  init_zod();
49427
50252
  AssetType = external_exports.enum([
@@ -49697,7 +50522,7 @@ var DEFAULT_TIMEOUT;
49697
50522
  var DEFAULT_HTTP_RETRIES;
49698
50523
  var HermesClient;
49699
50524
  var init_hermes_client = __esm({
49700
- "../../node_modules/.pnpm/@pythnetwork+hermes-client@3.1.0_axios@1.15.2/node_modules/@pythnetwork/hermes-client/dist/esm/hermes-client.mjs"() {
50525
+ "../../node_modules/.pnpm/@pythnetwork+hermes-client@3.1.0_axios@1.16.1/node_modules/@pythnetwork/hermes-client/dist/esm/hermes-client.mjs"() {
49701
50526
  init_dist6();
49702
50527
  init_utils6();
49703
50528
  init_zodSchemas();
@@ -49903,7 +50728,7 @@ var init_hermes_client = __esm({
49903
50728
  }
49904
50729
  });
49905
50730
  var init_esm = __esm({
49906
- "../../node_modules/.pnpm/@pythnetwork+hermes-client@3.1.0_axios@1.15.2/node_modules/@pythnetwork/hermes-client/dist/esm/index.mjs"() {
50731
+ "../../node_modules/.pnpm/@pythnetwork+hermes-client@3.1.0_axios@1.16.1/node_modules/@pythnetwork/hermes-client/dist/esm/index.mjs"() {
49907
50732
  init_hermes_client();
49908
50733
  }
49909
50734
  });
@@ -51820,7 +52645,7 @@ var DEFAULT_ENDPOINT;
51820
52645
  var _AggregatorClient;
51821
52646
  var AggregatorClient;
51822
52647
  var init_dist7 = __esm({
51823
- "../../node_modules/.pnpm/@cetusprotocol+aggregator-sdk@1.4.8_axios@1.15.2_typescript@5.9.3/node_modules/@cetusprotocol/aggregator-sdk/dist/index.js"() {
52648
+ "../../node_modules/.pnpm/@cetusprotocol+aggregator-sdk@1.4.8_axios@1.16.1_typescript@5.9.3/node_modules/@cetusprotocol/aggregator-sdk/dist/index.js"() {
51824
52649
  init_transactions();
51825
52650
  import_json_bigint = __toESM(require_json_bigint());
51826
52651
  init_utils3();
@@ -54242,7 +55067,7 @@ var init_dist7 = __esm({
54242
55067
  }
54243
55068
  return r;
54244
55069
  };
54245
- MPrime.prototype.split = function split2(input, out) {
55070
+ MPrime.prototype.split = function split3(input, out) {
54246
55071
  input.iushrn(this.n, 0, out);
54247
55072
  };
54248
55073
  MPrime.prototype.imulK = function imulK(num) {
@@ -54256,7 +55081,7 @@ var init_dist7 = __esm({
54256
55081
  );
54257
55082
  }
54258
55083
  inherits2(K256, MPrime);
54259
- K256.prototype.split = function split2(input, output) {
55084
+ K256.prototype.split = function split3(input, output) {
54260
55085
  var mask = 4194303;
54261
55086
  var outLen = Math.min(input.length, 9);
54262
55087
  for (var i = 0; i < outLen; i++) {
@@ -59886,7 +60711,7 @@ var require_bn2 = __commonJS({
59886
60711
  }
59887
60712
  return this;
59888
60713
  };
59889
- BN2.prototype.add = function add3(num) {
60714
+ BN2.prototype.add = function add4(num) {
59890
60715
  var res;
59891
60716
  if (num.negative !== 0 && this.negative === 0) {
59892
60717
  num.negative = 0;
@@ -61434,7 +62259,7 @@ var require_bn2 = __commonJS({
61434
62259
  }
61435
62260
  return r;
61436
62261
  };
61437
- MPrime.prototype.split = function split2(input, out) {
62262
+ MPrime.prototype.split = function split3(input, out) {
61438
62263
  input.iushrn(this.n, 0, out);
61439
62264
  };
61440
62265
  MPrime.prototype.imulK = function imulK(num) {
@@ -61448,7 +62273,7 @@ var require_bn2 = __commonJS({
61448
62273
  );
61449
62274
  }
61450
62275
  inherits2(K256, MPrime);
61451
- K256.prototype.split = function split2(input, output) {
62276
+ K256.prototype.split = function split3(input, output) {
61452
62277
  var mask = 4194303;
61453
62278
  var outLen = Math.min(input.length, 9);
61454
62279
  for (var i = 0; i < outLen; i++) {
@@ -61582,7 +62407,7 @@ var require_bn2 = __commonJS({
61582
62407
  }
61583
62408
  return this.m.sub(a)._forceRed(this);
61584
62409
  };
61585
- Red.prototype.add = function add3(a, b) {
62410
+ Red.prototype.add = function add4(a, b) {
61586
62411
  this._verify2(a, b);
61587
62412
  var res = a.add(b);
61588
62413
  if (res.cmp(this.m) >= 0) {
@@ -64736,7 +65561,7 @@ var require_bn3 = __commonJS({
64736
65561
  }
64737
65562
  return this;
64738
65563
  };
64739
- BN2.prototype.add = function add3(num) {
65564
+ BN2.prototype.add = function add4(num) {
64740
65565
  var res;
64741
65566
  if (num.negative !== 0 && this.negative === 0) {
64742
65567
  num.negative = 0;
@@ -66416,7 +67241,7 @@ var require_bn3 = __commonJS({
66416
67241
  }
66417
67242
  return r;
66418
67243
  };
66419
- MPrime.prototype.split = function split2(input, out) {
67244
+ MPrime.prototype.split = function split3(input, out) {
66420
67245
  input.iushrn(this.n, 0, out);
66421
67246
  };
66422
67247
  MPrime.prototype.imulK = function imulK(num) {
@@ -66430,7 +67255,7 @@ var require_bn3 = __commonJS({
66430
67255
  );
66431
67256
  }
66432
67257
  inherits2(K256, MPrime);
66433
- K256.prototype.split = function split2(input, output) {
67258
+ K256.prototype.split = function split3(input, output) {
66434
67259
  var mask = 4194303;
66435
67260
  var outLen = Math.min(input.length, 9);
66436
67261
  for (var i = 0; i < outLen; i++) {
@@ -66563,7 +67388,7 @@ var require_bn3 = __commonJS({
66563
67388
  }
66564
67389
  return this.m.sub(a)._forceRed(this);
66565
67390
  };
66566
- Red.prototype.add = function add3(a, b) {
67391
+ Red.prototype.add = function add4(a, b) {
66567
67392
  this._verify2(a, b);
66568
67393
  var res = a.add(b);
66569
67394
  if (res.cmp(this.m) >= 0) {
@@ -70699,21 +71524,21 @@ var require_short = __commonJS({
70699
71524
  var npoints = this._endoWnafT1;
70700
71525
  var ncoeffs = this._endoWnafT2;
70701
71526
  for (var i = 0; i < points.length; i++) {
70702
- var split2 = this._endoSplit(coeffs[i]);
71527
+ var split3 = this._endoSplit(coeffs[i]);
70703
71528
  var p = points[i];
70704
71529
  var beta = p._getBeta();
70705
- if (split2.k1.negative) {
70706
- split2.k1.ineg();
71530
+ if (split3.k1.negative) {
71531
+ split3.k1.ineg();
70707
71532
  p = p.neg(true);
70708
71533
  }
70709
- if (split2.k2.negative) {
70710
- split2.k2.ineg();
71534
+ if (split3.k2.negative) {
71535
+ split3.k2.ineg();
70711
71536
  beta = beta.neg(true);
70712
71537
  }
70713
71538
  npoints[i * 2] = p;
70714
71539
  npoints[i * 2 + 1] = beta;
70715
- ncoeffs[i * 2] = split2.k1;
70716
- ncoeffs[i * 2 + 1] = split2.k2;
71540
+ ncoeffs[i * 2] = split3.k1;
71541
+ ncoeffs[i * 2 + 1] = split3.k2;
70717
71542
  }
70718
71543
  var res = this._wnafMulAdd(1, npoints, ncoeffs, i * 2, jacobianResult);
70719
71544
  for (var j = 0; j < i * 2; j++) {
@@ -70821,7 +71646,7 @@ var require_short = __commonJS({
70821
71646
  Point.prototype.isInfinity = function isInfinity() {
70822
71647
  return this.inf;
70823
71648
  };
70824
- Point.prototype.add = function add3(p) {
71649
+ Point.prototype.add = function add4(p) {
70825
71650
  if (this.inf)
70826
71651
  return p;
70827
71652
  if (p.inf)
@@ -70952,7 +71777,7 @@ var require_short = __commonJS({
70952
71777
  JPoint.prototype.neg = function neg() {
70953
71778
  return this.curve.jpoint(this.x, this.y.redNeg(), this.z);
70954
71779
  };
70955
- JPoint.prototype.add = function add3(p) {
71780
+ JPoint.prototype.add = function add4(p) {
70956
71781
  if (this.isInfinity())
70957
71782
  return p;
70958
71783
  if (p.isInfinity())
@@ -71298,7 +72123,7 @@ var require_mont = __commonJS({
71298
72123
  var nz = c.redMul(bb.redAdd(this.curve.a24.redMul(c)));
71299
72124
  return this.curve.point(nx, nz);
71300
72125
  };
71301
- Point.prototype.add = function add3() {
72126
+ Point.prototype.add = function add4() {
71302
72127
  throw new Error("Not supported on Montgomery curve");
71303
72128
  };
71304
72129
  Point.prototype.diffAdd = function diffAdd(p, diff) {
@@ -71576,7 +72401,7 @@ var require_edwards = __commonJS({
71576
72401
  }
71577
72402
  return this.curve.point(nx, ny, nz);
71578
72403
  };
71579
- Point.prototype.add = function add3(p) {
72404
+ Point.prototype.add = function add4(p) {
71580
72405
  if (this.isInfinity())
71581
72406
  return p;
71582
72407
  if (p.isInfinity())
@@ -72652,7 +73477,7 @@ var require_hmac_drbg = __commonJS({
72652
73477
  this._reseed = 1;
72653
73478
  this.reseedInterval = 281474976710656;
72654
73479
  };
72655
- HmacDRBG.prototype._hmac = function hmac3() {
73480
+ HmacDRBG.prototype._hmac = function hmac4() {
72656
73481
  return new hash.hmac(this.hash, this.K);
72657
73482
  };
72658
73483
  HmacDRBG.prototype._update = function update(seed) {
@@ -72666,32 +73491,32 @@ var require_hmac_drbg = __commonJS({
72666
73491
  this.K = this._hmac().update(this.V).update([1]).update(seed).digest();
72667
73492
  this.V = this._hmac().update(this.V).digest();
72668
73493
  };
72669
- HmacDRBG.prototype.reseed = function reseed(entropy, entropyEnc, add3, addEnc) {
73494
+ HmacDRBG.prototype.reseed = function reseed(entropy, entropyEnc, add4, addEnc) {
72670
73495
  if (typeof entropyEnc !== "string") {
72671
- addEnc = add3;
72672
- add3 = entropyEnc;
73496
+ addEnc = add4;
73497
+ add4 = entropyEnc;
72673
73498
  entropyEnc = null;
72674
73499
  }
72675
73500
  entropy = utils.toArray(entropy, entropyEnc);
72676
- add3 = utils.toArray(add3, addEnc);
73501
+ add4 = utils.toArray(add4, addEnc);
72677
73502
  assert3(
72678
73503
  entropy.length >= this.minEntropy / 8,
72679
73504
  "Not enough entropy. Minimum is: " + this.minEntropy + " bits"
72680
73505
  );
72681
- this._update(entropy.concat(add3 || []));
73506
+ this._update(entropy.concat(add4 || []));
72682
73507
  this._reseed = 1;
72683
73508
  };
72684
- HmacDRBG.prototype.generate = function generate(len, enc, add3, addEnc) {
73509
+ HmacDRBG.prototype.generate = function generate(len, enc, add4, addEnc) {
72685
73510
  if (this._reseed > this.reseedInterval)
72686
73511
  throw new Error("Reseed is required");
72687
73512
  if (typeof enc !== "string") {
72688
- addEnc = add3;
72689
- add3 = enc;
73513
+ addEnc = add4;
73514
+ add4 = enc;
72690
73515
  enc = null;
72691
73516
  }
72692
- if (add3) {
72693
- add3 = utils.toArray(add3, addEnc || "hex");
72694
- this._update(add3);
73517
+ if (add4) {
73518
+ add4 = utils.toArray(add4, addEnc || "hex");
73519
+ this._update(add4);
72695
73520
  }
72696
73521
  var temp = [];
72697
73522
  while (temp.length < len) {
@@ -72699,7 +73524,7 @@ var require_hmac_drbg = __commonJS({
72699
73524
  temp = temp.concat(this.V);
72700
73525
  }
72701
73526
  var res = temp.slice(0, len);
72702
- this._update(add3);
73527
+ this._update(add4);
72703
73528
  this._reseed++;
72704
73529
  return utils.encode(res, enc);
72705
73530
  };
@@ -78056,7 +78881,7 @@ ${pckCertChain}`;
78056
78881
  };
78057
78882
  }
78058
78883
  });
78059
- var require_src2 = __commonJS({
78884
+ var require_src3 = __commonJS({
78060
78885
  "../../node_modules/.pnpm/@phala+dcap-qvl@0.5.2/node_modules/@phala/dcap-qvl/src/index.js"(exports$1, module) {
78061
78886
  var { Quote } = require_quote();
78062
78887
  var { verify, QuoteVerifier, VerifiedReport } = require_verify();
@@ -91978,17 +92803,107 @@ var Ed25519PublicKey = class extends PublicKey2 {
91978
92803
  }
91979
92804
  };
91980
92805
  init_dist2();
91981
- init_utils2();
92806
+ function isBytes3(a) {
92807
+ return a instanceof Uint8Array || ArrayBuffer.isView(a) && a.constructor.name === "Uint8Array" && "BYTES_PER_ELEMENT" in a && a.BYTES_PER_ELEMENT === 1;
92808
+ }
92809
+ function anumber3(n, title = "") {
92810
+ if (typeof n !== "number") {
92811
+ const prefix = title && `"${title}" `;
92812
+ throw new TypeError(`${prefix}expected number, got ${typeof n}`);
92813
+ }
92814
+ if (!Number.isSafeInteger(n) || n < 0) {
92815
+ const prefix = title && `"${title}" `;
92816
+ throw new RangeError(`${prefix}expected integer >= 0, got ${n}`);
92817
+ }
92818
+ }
92819
+ function abytes2(value, length, title = "") {
92820
+ const bytes = isBytes3(value);
92821
+ const len = value?.length;
92822
+ const needsLen = length !== void 0;
92823
+ if (!bytes || needsLen) {
92824
+ const prefix = title && `"${title}" `;
92825
+ const ofLen = "";
92826
+ const got = bytes ? `length=${len}` : `type=${typeof value}`;
92827
+ const message = prefix + "expected Uint8Array" + ofLen + ", got " + got;
92828
+ if (!bytes)
92829
+ throw new TypeError(message);
92830
+ throw new RangeError(message);
92831
+ }
92832
+ return value;
92833
+ }
92834
+ function ahash2(h) {
92835
+ if (typeof h !== "function" || typeof h.create !== "function")
92836
+ throw new TypeError("Hash must wrapped by utils.createHasher");
92837
+ anumber3(h.outputLen);
92838
+ anumber3(h.blockLen);
92839
+ if (h.outputLen < 1)
92840
+ throw new Error('"outputLen" must be >= 1');
92841
+ if (h.blockLen < 1)
92842
+ throw new Error('"blockLen" must be >= 1');
92843
+ }
92844
+ function aexists2(instance, checkFinished = true) {
92845
+ if (instance.destroyed)
92846
+ throw new Error("Hash instance has been destroyed");
92847
+ if (checkFinished && instance.finished)
92848
+ throw new Error("Hash#digest() has already been called");
92849
+ }
92850
+ function aoutput2(out, instance) {
92851
+ abytes2(out, void 0, "digestInto() output");
92852
+ const min2 = instance.outputLen;
92853
+ if (out.length < min2) {
92854
+ throw new RangeError('"digestInto() output" expected to be of length >=' + min2);
92855
+ }
92856
+ }
92857
+ function clean2(...arrays) {
92858
+ for (let i = 0; i < arrays.length; i++) {
92859
+ arrays[i].fill(0);
92860
+ }
92861
+ }
92862
+ function createView2(arr) {
92863
+ return new DataView(arr.buffer, arr.byteOffset, arr.byteLength);
92864
+ }
92865
+ function utf8ToBytes(str) {
92866
+ if (typeof str !== "string")
92867
+ throw new TypeError("string expected");
92868
+ return new Uint8Array(new TextEncoder().encode(str));
92869
+ }
92870
+ function kdfInputToBytes(data, errorTitle = "") {
92871
+ if (typeof data === "string")
92872
+ return utf8ToBytes(data);
92873
+ return abytes2(data, void 0, errorTitle);
92874
+ }
92875
+ function checkOpts(defaults2, opts) {
92876
+ if (opts !== void 0 && {}.toString.call(opts) !== "[object Object]")
92877
+ throw new TypeError("options must be object or undefined");
92878
+ const merged = Object.assign(defaults2, opts);
92879
+ return merged;
92880
+ }
92881
+ function createHasher2(hashCons, info = {}) {
92882
+ const hashC = (msg, opts) => hashCons(opts).update(msg).digest();
92883
+ const tmp = hashCons(void 0);
92884
+ hashC.outputLen = tmp.outputLen;
92885
+ hashC.blockLen = tmp.blockLen;
92886
+ hashC.canXOF = tmp.canXOF;
92887
+ hashC.create = (opts) => hashCons(opts);
92888
+ Object.assign(hashC, info);
92889
+ return Object.freeze(hashC);
92890
+ }
92891
+ var oidNist2 = (suffix) => ({
92892
+ // Current NIST hashAlgs suffixes used here fit in one DER subidentifier octet.
92893
+ // Larger suffix values would need base-128 OID encoding and a different length byte.
92894
+ oid: Uint8Array.from([6, 9, 96, 134, 72, 1, 101, 3, 4, 2, suffix])
92895
+ });
91982
92896
  var _HMAC = class {
91983
92897
  oHash;
91984
92898
  iHash;
91985
92899
  blockLen;
91986
92900
  outputLen;
92901
+ canXOF = false;
91987
92902
  finished = false;
91988
92903
  destroyed = false;
91989
92904
  constructor(hash, key) {
91990
- ahash(hash);
91991
- abytes(key, void 0, "key");
92905
+ ahash2(hash);
92906
+ abytes2(key, void 0, "key");
91992
92907
  this.iHash = hash.create();
91993
92908
  if (typeof this.iHash.update !== "function")
91994
92909
  throw new Error("Expected instance of class which extends utils.Hash");
@@ -92004,20 +92919,21 @@ var _HMAC = class {
92004
92919
  for (let i = 0; i < pad.length; i++)
92005
92920
  pad[i] ^= 54 ^ 92;
92006
92921
  this.oHash.update(pad);
92007
- clean(pad);
92922
+ clean2(pad);
92008
92923
  }
92009
92924
  update(buf) {
92010
- aexists(this);
92925
+ aexists2(this);
92011
92926
  this.iHash.update(buf);
92012
92927
  return this;
92013
92928
  }
92014
92929
  digestInto(out) {
92015
- aexists(this);
92016
- abytes(out, this.outputLen, "output");
92930
+ aexists2(this);
92931
+ aoutput2(out, this);
92017
92932
  this.finished = true;
92018
- this.iHash.digestInto(out);
92019
- this.oHash.update(out);
92020
- this.oHash.digestInto(out);
92933
+ const buf = out.subarray(0, this.outputLen);
92934
+ this.iHash.digestInto(buf);
92935
+ this.oHash.update(buf);
92936
+ this.oHash.digestInto(buf);
92021
92937
  this.destroy();
92022
92938
  }
92023
92939
  digest() {
@@ -92046,18 +92962,24 @@ var _HMAC = class {
92046
92962
  this.iHash.destroy();
92047
92963
  }
92048
92964
  };
92049
- var hmac = (hash, key, message) => new _HMAC(hash, key).update(message).digest();
92050
- hmac.create = (hash, key) => new _HMAC(hash, key);
92051
- init_utils2();
92965
+ var hmac = /* @__PURE__ */ (() => {
92966
+ const hmac_ = ((hash, key, message) => new _HMAC(hash, key).update(message).digest());
92967
+ hmac_.create = (hash, key) => new _HMAC(hash, key);
92968
+ return hmac_;
92969
+ })();
92052
92970
  function pbkdf2Init(hash, _password, _salt, _opts) {
92053
- ahash(hash);
92971
+ ahash2(hash);
92054
92972
  const opts = checkOpts({ dkLen: 32, asyncTick: 10 }, _opts);
92055
92973
  const { c, dkLen, asyncTick } = opts;
92056
- anumber2(c, "c");
92057
- anumber2(dkLen, "dkLen");
92058
- anumber2(asyncTick, "asyncTick");
92974
+ anumber3(c, "c");
92975
+ anumber3(dkLen, "dkLen");
92976
+ anumber3(asyncTick, "asyncTick");
92059
92977
  if (c < 1)
92060
92978
  throw new Error("iterations (c) must be >= 1");
92979
+ if (dkLen < 1)
92980
+ throw new Error('"dkLen" must be >= 1');
92981
+ if (dkLen > (2 ** 32 - 1) * hash.outputLen)
92982
+ throw new Error("derived key too long");
92061
92983
  const password = kdfInputToBytes(_password, "password");
92062
92984
  const salt = kdfInputToBytes(_salt, "salt");
92063
92985
  const DK = new Uint8Array(dkLen);
@@ -92070,14 +92992,14 @@ function pbkdf2Output(PRF, PRFSalt, DK, prfW, u2) {
92070
92992
  PRFSalt.destroy();
92071
92993
  if (prfW)
92072
92994
  prfW.destroy();
92073
- clean(u2);
92995
+ clean2(u2);
92074
92996
  return DK;
92075
92997
  }
92076
92998
  function pbkdf2(hash, password, salt, opts) {
92077
92999
  const { c, dkLen, DK, PRF, PRFSalt } = pbkdf2Init(hash, password, salt, opts);
92078
93000
  let prfW;
92079
93001
  const arr = new Uint8Array(4);
92080
- const view = createView(arr);
93002
+ const view = createView2(arr);
92081
93003
  const u2 = new Uint8Array(PRF.outputLen);
92082
93004
  for (let ti = 1, pos = 0; pos < dkLen; ti++, pos += PRF.outputLen) {
92083
93005
  const Ti = DK.subarray(pos, pos + PRF.outputLen);
@@ -92092,6 +93014,360 @@ function pbkdf2(hash, password, salt, opts) {
92092
93014
  }
92093
93015
  return pbkdf2Output(PRF, PRFSalt, DK, prfW, u2);
92094
93016
  }
93017
+ var HashMD2 = class {
93018
+ blockLen;
93019
+ outputLen;
93020
+ canXOF = false;
93021
+ padOffset;
93022
+ isLE;
93023
+ // For partial updates less than block size
93024
+ buffer;
93025
+ view;
93026
+ finished = false;
93027
+ length = 0;
93028
+ pos = 0;
93029
+ destroyed = false;
93030
+ constructor(blockLen, outputLen, padOffset, isLE2) {
93031
+ this.blockLen = blockLen;
93032
+ this.outputLen = outputLen;
93033
+ this.padOffset = padOffset;
93034
+ this.isLE = isLE2;
93035
+ this.buffer = new Uint8Array(blockLen);
93036
+ this.view = createView2(this.buffer);
93037
+ }
93038
+ update(data) {
93039
+ aexists2(this);
93040
+ abytes2(data);
93041
+ const { view, buffer, blockLen } = this;
93042
+ const len = data.length;
93043
+ for (let pos = 0; pos < len; ) {
93044
+ const take = Math.min(blockLen - this.pos, len - pos);
93045
+ if (take === blockLen) {
93046
+ const dataView = createView2(data);
93047
+ for (; blockLen <= len - pos; pos += blockLen)
93048
+ this.process(dataView, pos);
93049
+ continue;
93050
+ }
93051
+ buffer.set(data.subarray(pos, pos + take), this.pos);
93052
+ this.pos += take;
93053
+ pos += take;
93054
+ if (this.pos === blockLen) {
93055
+ this.process(view, 0);
93056
+ this.pos = 0;
93057
+ }
93058
+ }
93059
+ this.length += data.length;
93060
+ this.roundClean();
93061
+ return this;
93062
+ }
93063
+ digestInto(out) {
93064
+ aexists2(this);
93065
+ aoutput2(out, this);
93066
+ this.finished = true;
93067
+ const { buffer, view, blockLen, isLE: isLE2 } = this;
93068
+ let { pos } = this;
93069
+ buffer[pos++] = 128;
93070
+ clean2(this.buffer.subarray(pos));
93071
+ if (this.padOffset > blockLen - pos) {
93072
+ this.process(view, 0);
93073
+ pos = 0;
93074
+ }
93075
+ for (let i = pos; i < blockLen; i++)
93076
+ buffer[i] = 0;
93077
+ view.setBigUint64(blockLen - 8, BigInt(this.length * 8), isLE2);
93078
+ this.process(view, 0);
93079
+ const oview = createView2(out);
93080
+ const len = this.outputLen;
93081
+ if (len % 4)
93082
+ throw new Error("_sha2: outputLen must be aligned to 32bit");
93083
+ const outLen = len / 4;
93084
+ const state = this.get();
93085
+ if (outLen > state.length)
93086
+ throw new Error("_sha2: outputLen bigger than state");
93087
+ for (let i = 0; i < outLen; i++)
93088
+ oview.setUint32(4 * i, state[i], isLE2);
93089
+ }
93090
+ digest() {
93091
+ const { buffer, outputLen } = this;
93092
+ this.digestInto(buffer);
93093
+ const res = buffer.slice(0, outputLen);
93094
+ this.destroy();
93095
+ return res;
93096
+ }
93097
+ _cloneInto(to) {
93098
+ to ||= new this.constructor();
93099
+ to.set(...this.get());
93100
+ const { blockLen, buffer, length, finished, destroyed, pos } = this;
93101
+ to.destroyed = destroyed;
93102
+ to.finished = finished;
93103
+ to.length = length;
93104
+ to.pos = pos;
93105
+ if (length % blockLen)
93106
+ to.buffer.set(buffer);
93107
+ return to;
93108
+ }
93109
+ clone() {
93110
+ return this._cloneInto();
93111
+ }
93112
+ };
93113
+ var SHA512_IV2 = /* @__PURE__ */ Uint32Array.from([
93114
+ 1779033703,
93115
+ 4089235720,
93116
+ 3144134277,
93117
+ 2227873595,
93118
+ 1013904242,
93119
+ 4271175723,
93120
+ 2773480762,
93121
+ 1595750129,
93122
+ 1359893119,
93123
+ 2917565137,
93124
+ 2600822924,
93125
+ 725511199,
93126
+ 528734635,
93127
+ 4215389547,
93128
+ 1541459225,
93129
+ 327033209
93130
+ ]);
93131
+ var U32_MASK642 = /* @__PURE__ */ BigInt(2 ** 32 - 1);
93132
+ var _32n2 = /* @__PURE__ */ BigInt(32);
93133
+ function fromBig2(n, le = false) {
93134
+ if (le)
93135
+ return { h: Number(n & U32_MASK642), l: Number(n >> _32n2 & U32_MASK642) };
93136
+ return { h: Number(n >> _32n2 & U32_MASK642) | 0, l: Number(n & U32_MASK642) | 0 };
93137
+ }
93138
+ function split2(lst, le = false) {
93139
+ const len = lst.length;
93140
+ let Ah = new Uint32Array(len);
93141
+ let Al = new Uint32Array(len);
93142
+ for (let i = 0; i < len; i++) {
93143
+ const { h, l: l2 } = fromBig2(lst[i], le);
93144
+ [Ah[i], Al[i]] = [h, l2];
93145
+ }
93146
+ return [Ah, Al];
93147
+ }
93148
+ var shrSH2 = (h, _l, s) => h >>> s;
93149
+ var shrSL2 = (h, l2, s) => h << 32 - s | l2 >>> s;
93150
+ var rotrSH2 = (h, l2, s) => h >>> s | l2 << 32 - s;
93151
+ var rotrSL2 = (h, l2, s) => h << 32 - s | l2 >>> s;
93152
+ var rotrBH2 = (h, l2, s) => h << 64 - s | l2 >>> s - 32;
93153
+ var rotrBL2 = (h, l2, s) => h >>> s - 32 | l2 << 64 - s;
93154
+ function add3(Ah, Al, Bh, Bl) {
93155
+ const l2 = (Al >>> 0) + (Bl >>> 0);
93156
+ return { h: Ah + Bh + (l2 / 2 ** 32 | 0) | 0, l: l2 | 0 };
93157
+ }
93158
+ var add3L2 = (Al, Bl, Cl) => (Al >>> 0) + (Bl >>> 0) + (Cl >>> 0);
93159
+ var add3H2 = (low, Ah, Bh, Ch) => Ah + Bh + Ch + (low / 2 ** 32 | 0) | 0;
93160
+ var add4L2 = (Al, Bl, Cl, Dl) => (Al >>> 0) + (Bl >>> 0) + (Cl >>> 0) + (Dl >>> 0);
93161
+ var add4H2 = (low, Ah, Bh, Ch, Dh) => Ah + Bh + Ch + Dh + (low / 2 ** 32 | 0) | 0;
93162
+ var add5L2 = (Al, Bl, Cl, Dl, El) => (Al >>> 0) + (Bl >>> 0) + (Cl >>> 0) + (Dl >>> 0) + (El >>> 0);
93163
+ var add5H2 = (low, Ah, Bh, Ch, Dh, Eh) => Ah + Bh + Ch + Dh + Eh + (low / 2 ** 32 | 0) | 0;
93164
+ var K5122 = /* @__PURE__ */ (() => split2([
93165
+ "0x428a2f98d728ae22",
93166
+ "0x7137449123ef65cd",
93167
+ "0xb5c0fbcfec4d3b2f",
93168
+ "0xe9b5dba58189dbbc",
93169
+ "0x3956c25bf348b538",
93170
+ "0x59f111f1b605d019",
93171
+ "0x923f82a4af194f9b",
93172
+ "0xab1c5ed5da6d8118",
93173
+ "0xd807aa98a3030242",
93174
+ "0x12835b0145706fbe",
93175
+ "0x243185be4ee4b28c",
93176
+ "0x550c7dc3d5ffb4e2",
93177
+ "0x72be5d74f27b896f",
93178
+ "0x80deb1fe3b1696b1",
93179
+ "0x9bdc06a725c71235",
93180
+ "0xc19bf174cf692694",
93181
+ "0xe49b69c19ef14ad2",
93182
+ "0xefbe4786384f25e3",
93183
+ "0x0fc19dc68b8cd5b5",
93184
+ "0x240ca1cc77ac9c65",
93185
+ "0x2de92c6f592b0275",
93186
+ "0x4a7484aa6ea6e483",
93187
+ "0x5cb0a9dcbd41fbd4",
93188
+ "0x76f988da831153b5",
93189
+ "0x983e5152ee66dfab",
93190
+ "0xa831c66d2db43210",
93191
+ "0xb00327c898fb213f",
93192
+ "0xbf597fc7beef0ee4",
93193
+ "0xc6e00bf33da88fc2",
93194
+ "0xd5a79147930aa725",
93195
+ "0x06ca6351e003826f",
93196
+ "0x142929670a0e6e70",
93197
+ "0x27b70a8546d22ffc",
93198
+ "0x2e1b21385c26c926",
93199
+ "0x4d2c6dfc5ac42aed",
93200
+ "0x53380d139d95b3df",
93201
+ "0x650a73548baf63de",
93202
+ "0x766a0abb3c77b2a8",
93203
+ "0x81c2c92e47edaee6",
93204
+ "0x92722c851482353b",
93205
+ "0xa2bfe8a14cf10364",
93206
+ "0xa81a664bbc423001",
93207
+ "0xc24b8b70d0f89791",
93208
+ "0xc76c51a30654be30",
93209
+ "0xd192e819d6ef5218",
93210
+ "0xd69906245565a910",
93211
+ "0xf40e35855771202a",
93212
+ "0x106aa07032bbd1b8",
93213
+ "0x19a4c116b8d2d0c8",
93214
+ "0x1e376c085141ab53",
93215
+ "0x2748774cdf8eeb99",
93216
+ "0x34b0bcb5e19b48a8",
93217
+ "0x391c0cb3c5c95a63",
93218
+ "0x4ed8aa4ae3418acb",
93219
+ "0x5b9cca4f7763e373",
93220
+ "0x682e6ff3d6b2b8a3",
93221
+ "0x748f82ee5defb2fc",
93222
+ "0x78a5636f43172f60",
93223
+ "0x84c87814a1f0ab72",
93224
+ "0x8cc702081a6439ec",
93225
+ "0x90befffa23631e28",
93226
+ "0xa4506cebde82bde9",
93227
+ "0xbef9a3f7b2c67915",
93228
+ "0xc67178f2e372532b",
93229
+ "0xca273eceea26619c",
93230
+ "0xd186b8c721c0c207",
93231
+ "0xeada7dd6cde0eb1e",
93232
+ "0xf57d4f7fee6ed178",
93233
+ "0x06f067aa72176fba",
93234
+ "0x0a637dc5a2c898a6",
93235
+ "0x113f9804bef90dae",
93236
+ "0x1b710b35131c471b",
93237
+ "0x28db77f523047d84",
93238
+ "0x32caab7b40c72493",
93239
+ "0x3c9ebe0a15c9bebc",
93240
+ "0x431d67c49c100d4c",
93241
+ "0x4cc5d4becb3e42b6",
93242
+ "0x597f299cfc657e2a",
93243
+ "0x5fcb6fab3ad6faec",
93244
+ "0x6c44198c4a475817"
93245
+ ].map((n) => BigInt(n))))();
93246
+ var SHA512_Kh2 = /* @__PURE__ */ (() => K5122[0])();
93247
+ var SHA512_Kl2 = /* @__PURE__ */ (() => K5122[1])();
93248
+ var SHA512_W_H2 = /* @__PURE__ */ new Uint32Array(80);
93249
+ var SHA512_W_L2 = /* @__PURE__ */ new Uint32Array(80);
93250
+ var SHA2_64B2 = class extends HashMD2 {
93251
+ constructor(outputLen) {
93252
+ super(128, outputLen, 16, false);
93253
+ }
93254
+ // prettier-ignore
93255
+ get() {
93256
+ const { Ah, Al, Bh, Bl, Ch, Cl, Dh, Dl, Eh, El, Fh, Fl, Gh, Gl, Hh, Hl } = this;
93257
+ return [Ah, Al, Bh, Bl, Ch, Cl, Dh, Dl, Eh, El, Fh, Fl, Gh, Gl, Hh, Hl];
93258
+ }
93259
+ // prettier-ignore
93260
+ set(Ah, Al, Bh, Bl, Ch, Cl, Dh, Dl, Eh, El, Fh, Fl, Gh, Gl, Hh, Hl) {
93261
+ this.Ah = Ah | 0;
93262
+ this.Al = Al | 0;
93263
+ this.Bh = Bh | 0;
93264
+ this.Bl = Bl | 0;
93265
+ this.Ch = Ch | 0;
93266
+ this.Cl = Cl | 0;
93267
+ this.Dh = Dh | 0;
93268
+ this.Dl = Dl | 0;
93269
+ this.Eh = Eh | 0;
93270
+ this.El = El | 0;
93271
+ this.Fh = Fh | 0;
93272
+ this.Fl = Fl | 0;
93273
+ this.Gh = Gh | 0;
93274
+ this.Gl = Gl | 0;
93275
+ this.Hh = Hh | 0;
93276
+ this.Hl = Hl | 0;
93277
+ }
93278
+ process(view, offset) {
93279
+ for (let i = 0; i < 16; i++, offset += 4) {
93280
+ SHA512_W_H2[i] = view.getUint32(offset);
93281
+ SHA512_W_L2[i] = view.getUint32(offset += 4);
93282
+ }
93283
+ for (let i = 16; i < 80; i++) {
93284
+ const W15h = SHA512_W_H2[i - 15] | 0;
93285
+ const W15l = SHA512_W_L2[i - 15] | 0;
93286
+ const s0h = rotrSH2(W15h, W15l, 1) ^ rotrSH2(W15h, W15l, 8) ^ shrSH2(W15h, W15l, 7);
93287
+ const s0l = rotrSL2(W15h, W15l, 1) ^ rotrSL2(W15h, W15l, 8) ^ shrSL2(W15h, W15l, 7);
93288
+ const W2h = SHA512_W_H2[i - 2] | 0;
93289
+ const W2l = SHA512_W_L2[i - 2] | 0;
93290
+ const s1h = rotrSH2(W2h, W2l, 19) ^ rotrBH2(W2h, W2l, 61) ^ shrSH2(W2h, W2l, 6);
93291
+ const s1l = rotrSL2(W2h, W2l, 19) ^ rotrBL2(W2h, W2l, 61) ^ shrSL2(W2h, W2l, 6);
93292
+ const SUMl = add4L2(s0l, s1l, SHA512_W_L2[i - 7], SHA512_W_L2[i - 16]);
93293
+ const SUMh = add4H2(SUMl, s0h, s1h, SHA512_W_H2[i - 7], SHA512_W_H2[i - 16]);
93294
+ SHA512_W_H2[i] = SUMh | 0;
93295
+ SHA512_W_L2[i] = SUMl | 0;
93296
+ }
93297
+ let { Ah, Al, Bh, Bl, Ch, Cl, Dh, Dl, Eh, El, Fh, Fl, Gh, Gl, Hh, Hl } = this;
93298
+ for (let i = 0; i < 80; i++) {
93299
+ const sigma1h = rotrSH2(Eh, El, 14) ^ rotrSH2(Eh, El, 18) ^ rotrBH2(Eh, El, 41);
93300
+ const sigma1l = rotrSL2(Eh, El, 14) ^ rotrSL2(Eh, El, 18) ^ rotrBL2(Eh, El, 41);
93301
+ const CHIh = Eh & Fh ^ ~Eh & Gh;
93302
+ const CHIl = El & Fl ^ ~El & Gl;
93303
+ const T1ll = add5L2(Hl, sigma1l, CHIl, SHA512_Kl2[i], SHA512_W_L2[i]);
93304
+ const T1h = add5H2(T1ll, Hh, sigma1h, CHIh, SHA512_Kh2[i], SHA512_W_H2[i]);
93305
+ const T1l = T1ll | 0;
93306
+ const sigma0h = rotrSH2(Ah, Al, 28) ^ rotrBH2(Ah, Al, 34) ^ rotrBH2(Ah, Al, 39);
93307
+ const sigma0l = rotrSL2(Ah, Al, 28) ^ rotrBL2(Ah, Al, 34) ^ rotrBL2(Ah, Al, 39);
93308
+ const MAJh = Ah & Bh ^ Ah & Ch ^ Bh & Ch;
93309
+ const MAJl = Al & Bl ^ Al & Cl ^ Bl & Cl;
93310
+ Hh = Gh | 0;
93311
+ Hl = Gl | 0;
93312
+ Gh = Fh | 0;
93313
+ Gl = Fl | 0;
93314
+ Fh = Eh | 0;
93315
+ Fl = El | 0;
93316
+ ({ h: Eh, l: El } = add3(Dh | 0, Dl | 0, T1h | 0, T1l | 0));
93317
+ Dh = Ch | 0;
93318
+ Dl = Cl | 0;
93319
+ Ch = Bh | 0;
93320
+ Cl = Bl | 0;
93321
+ Bh = Ah | 0;
93322
+ Bl = Al | 0;
93323
+ const All = add3L2(T1l, sigma0l, MAJl);
93324
+ Ah = add3H2(All, T1h, sigma0h, MAJh);
93325
+ Al = All | 0;
93326
+ }
93327
+ ({ h: Ah, l: Al } = add3(this.Ah | 0, this.Al | 0, Ah | 0, Al | 0));
93328
+ ({ h: Bh, l: Bl } = add3(this.Bh | 0, this.Bl | 0, Bh | 0, Bl | 0));
93329
+ ({ h: Ch, l: Cl } = add3(this.Ch | 0, this.Cl | 0, Ch | 0, Cl | 0));
93330
+ ({ h: Dh, l: Dl } = add3(this.Dh | 0, this.Dl | 0, Dh | 0, Dl | 0));
93331
+ ({ h: Eh, l: El } = add3(this.Eh | 0, this.El | 0, Eh | 0, El | 0));
93332
+ ({ h: Fh, l: Fl } = add3(this.Fh | 0, this.Fl | 0, Fh | 0, Fl | 0));
93333
+ ({ h: Gh, l: Gl } = add3(this.Gh | 0, this.Gl | 0, Gh | 0, Gl | 0));
93334
+ ({ h: Hh, l: Hl } = add3(this.Hh | 0, this.Hl | 0, Hh | 0, Hl | 0));
93335
+ this.set(Ah, Al, Bh, Bl, Ch, Cl, Dh, Dl, Eh, El, Fh, Fl, Gh, Gl, Hh, Hl);
93336
+ }
93337
+ roundClean() {
93338
+ clean2(SHA512_W_H2, SHA512_W_L2);
93339
+ }
93340
+ destroy() {
93341
+ this.destroyed = true;
93342
+ clean2(this.buffer);
93343
+ this.set(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
93344
+ }
93345
+ };
93346
+ var _SHA5122 = class extends SHA2_64B2 {
93347
+ Ah = SHA512_IV2[0] | 0;
93348
+ Al = SHA512_IV2[1] | 0;
93349
+ Bh = SHA512_IV2[2] | 0;
93350
+ Bl = SHA512_IV2[3] | 0;
93351
+ Ch = SHA512_IV2[4] | 0;
93352
+ Cl = SHA512_IV2[5] | 0;
93353
+ Dh = SHA512_IV2[6] | 0;
93354
+ Dl = SHA512_IV2[7] | 0;
93355
+ Eh = SHA512_IV2[8] | 0;
93356
+ El = SHA512_IV2[9] | 0;
93357
+ Fh = SHA512_IV2[10] | 0;
93358
+ Fl = SHA512_IV2[11] | 0;
93359
+ Gh = SHA512_IV2[12] | 0;
93360
+ Gl = SHA512_IV2[13] | 0;
93361
+ Hh = SHA512_IV2[14] | 0;
93362
+ Hl = SHA512_IV2[15] | 0;
93363
+ constructor() {
93364
+ super(64);
93365
+ }
93366
+ };
93367
+ var sha5122 = /* @__PURE__ */ createHasher2(
93368
+ () => new _SHA5122(),
93369
+ /* @__PURE__ */ oidNist2(3)
93370
+ );
92095
93371
  function nfkd(str) {
92096
93372
  if (typeof str !== "string")
92097
93373
  throw new TypeError("invalid mnemonic type: " + typeof str);
@@ -92106,7 +93382,10 @@ function normalize(str) {
92106
93382
  }
92107
93383
  var psalt = (passphrase) => nfkd("mnemonic" + passphrase);
92108
93384
  function mnemonicToSeedSync(mnemonic, passphrase = "") {
92109
- return pbkdf2(sha512, normalize(mnemonic).nfkd, psalt(passphrase), { c: 2048, dkLen: 64 });
93385
+ return pbkdf2(sha5122, normalize(mnemonic).nfkd, psalt(passphrase), {
93386
+ c: 2048,
93387
+ dkLen: 64
93388
+ });
92110
93389
  }
92111
93390
  function isValidHardenedPath(path) {
92112
93391
  if (!(/* @__PURE__ */ new RegExp("^m\\/44'\\/784'\\/[0-9]+'\\/[0-9]+'\\/[0-9]+'+$")).test(path)) return false;
@@ -92121,6 +93400,76 @@ function mnemonicToSeedHex(mnemonics) {
92121
93400
  init_intent();
92122
93401
  init_signature_scheme2();
92123
93402
  init_signature_scheme2();
93403
+ init_utils2();
93404
+ var _HMAC2 = class {
93405
+ oHash;
93406
+ iHash;
93407
+ blockLen;
93408
+ outputLen;
93409
+ finished = false;
93410
+ destroyed = false;
93411
+ constructor(hash, key) {
93412
+ ahash(hash);
93413
+ abytes(key, void 0, "key");
93414
+ this.iHash = hash.create();
93415
+ if (typeof this.iHash.update !== "function")
93416
+ throw new Error("Expected instance of class which extends utils.Hash");
93417
+ this.blockLen = this.iHash.blockLen;
93418
+ this.outputLen = this.iHash.outputLen;
93419
+ const blockLen = this.blockLen;
93420
+ const pad = new Uint8Array(blockLen);
93421
+ pad.set(key.length > blockLen ? hash.create().update(key).digest() : key);
93422
+ for (let i = 0; i < pad.length; i++)
93423
+ pad[i] ^= 54;
93424
+ this.iHash.update(pad);
93425
+ this.oHash = hash.create();
93426
+ for (let i = 0; i < pad.length; i++)
93427
+ pad[i] ^= 54 ^ 92;
93428
+ this.oHash.update(pad);
93429
+ clean(pad);
93430
+ }
93431
+ update(buf) {
93432
+ aexists(this);
93433
+ this.iHash.update(buf);
93434
+ return this;
93435
+ }
93436
+ digestInto(out) {
93437
+ aexists(this);
93438
+ abytes(out, this.outputLen, "output");
93439
+ this.finished = true;
93440
+ this.iHash.digestInto(out);
93441
+ this.oHash.update(out);
93442
+ this.oHash.digestInto(out);
93443
+ this.destroy();
93444
+ }
93445
+ digest() {
93446
+ const out = new Uint8Array(this.oHash.outputLen);
93447
+ this.digestInto(out);
93448
+ return out;
93449
+ }
93450
+ _cloneInto(to) {
93451
+ to ||= Object.create(Object.getPrototypeOf(this), {});
93452
+ const { oHash, iHash, finished, destroyed, blockLen, outputLen } = this;
93453
+ to = to;
93454
+ to.finished = finished;
93455
+ to.destroyed = destroyed;
93456
+ to.blockLen = blockLen;
93457
+ to.outputLen = outputLen;
93458
+ to.oHash = oHash._cloneInto(to.oHash);
93459
+ to.iHash = iHash._cloneInto(to.iHash);
93460
+ return to;
93461
+ }
93462
+ clone() {
93463
+ return this._cloneInto();
93464
+ }
93465
+ destroy() {
93466
+ this.destroyed = true;
93467
+ this.oHash.destroy();
93468
+ this.iHash.destroy();
93469
+ }
93470
+ };
93471
+ var hmac2 = (hash, key, message) => new _HMAC2(hash, key).update(message).digest();
93472
+ hmac2.create = (hash, key) => new _HMAC2(hash, key);
92124
93473
  init_dist2();
92125
93474
  function toSerializedSignature({ signature, signatureScheme, publicKey }) {
92126
93475
  if (!publicKey) throw new Error("`publicKey` is required");
@@ -92211,7 +93560,7 @@ var HARDENED_OFFSET = 2147483648;
92211
93560
  var pathRegex = /* @__PURE__ */ new RegExp("^m(\\/[0-9]+')+$");
92212
93561
  var replaceDerive = (val) => val.replace("'", "");
92213
93562
  var getMasterKeyFromSeed = (seed) => {
92214
- const I2 = hmac.create(sha512, new TextEncoder().encode(ED25519_CURVE)).update(fromHex(seed)).digest();
93563
+ const I2 = hmac2.create(sha512, new TextEncoder().encode(ED25519_CURVE)).update(fromHex(seed)).digest();
92215
93564
  return {
92216
93565
  key: I2.slice(0, 32),
92217
93566
  chainCode: I2.slice(32)
@@ -92224,7 +93573,7 @@ var CKDPriv = ({ key, chainCode }, index) => {
92224
93573
  data.set(new Uint8Array(1).fill(0));
92225
93574
  data.set(key, 1);
92226
93575
  data.set(new Uint8Array(indexBuffer, 0, indexBuffer.byteLength), key.length + 1);
92227
- const I2 = hmac.create(sha512, chainCode).update(data).digest();
93576
+ const I2 = hmac2.create(sha512, chainCode).update(data).digest();
92228
93577
  return {
92229
93578
  key: I2.slice(0, 32),
92230
93579
  chainCode: I2.slice(32)
@@ -92358,47 +93707,47 @@ var Ed25519Keypair = class Ed25519Keypair2 extends Keypair {
92358
93707
  }
92359
93708
  };
92360
93709
  var crypto3 = nc && typeof nc === "object" && "webcrypto" in nc ? nc.webcrypto : nc && typeof nc === "object" && "randomBytes" in nc ? nc : void 0;
92361
- function isBytes3(a) {
93710
+ function isBytes4(a) {
92362
93711
  return a instanceof Uint8Array || ArrayBuffer.isView(a) && a.constructor.name === "Uint8Array";
92363
93712
  }
92364
- function anumber3(n) {
93713
+ function anumber4(n) {
92365
93714
  if (!Number.isSafeInteger(n) || n < 0)
92366
93715
  throw new Error("positive integer expected, got " + n);
92367
93716
  }
92368
- function abytes2(b, ...lengths) {
92369
- if (!isBytes3(b))
93717
+ function abytes3(b, ...lengths) {
93718
+ if (!isBytes4(b))
92370
93719
  throw new Error("Uint8Array expected");
92371
93720
  if (lengths.length > 0 && !lengths.includes(b.length))
92372
93721
  throw new Error("Uint8Array expected of length " + lengths + ", got length=" + b.length);
92373
93722
  }
92374
- function ahash2(h) {
93723
+ function ahash3(h) {
92375
93724
  if (typeof h !== "function" || typeof h.create !== "function")
92376
93725
  throw new Error("Hash should be wrapped by utils.createHasher");
92377
- anumber3(h.outputLen);
92378
- anumber3(h.blockLen);
93726
+ anumber4(h.outputLen);
93727
+ anumber4(h.blockLen);
92379
93728
  }
92380
- function aexists2(instance, checkFinished = true) {
93729
+ function aexists3(instance, checkFinished = true) {
92381
93730
  if (instance.destroyed)
92382
93731
  throw new Error("Hash instance has been destroyed");
92383
93732
  if (checkFinished && instance.finished)
92384
93733
  throw new Error("Hash#digest() has already been called");
92385
93734
  }
92386
- function aoutput2(out, instance) {
92387
- abytes2(out);
93735
+ function aoutput3(out, instance) {
93736
+ abytes3(out);
92388
93737
  const min2 = instance.outputLen;
92389
93738
  if (out.length < min2) {
92390
93739
  throw new Error("digestInto() expects output buffer of length at least " + min2);
92391
93740
  }
92392
93741
  }
92393
- function clean2(...arrays) {
93742
+ function clean3(...arrays) {
92394
93743
  for (let i = 0; i < arrays.length; i++) {
92395
93744
  arrays[i].fill(0);
92396
93745
  }
92397
93746
  }
92398
- function createView2(arr) {
93747
+ function createView3(arr) {
92399
93748
  return new DataView(arr.buffer, arr.byteOffset, arr.byteLength);
92400
93749
  }
92401
- function rotr2(word, shift) {
93750
+ function rotr3(word, shift) {
92402
93751
  return word << 32 - shift | word >>> shift;
92403
93752
  }
92404
93753
  var hasHexBuiltin2 = /* @__PURE__ */ (() => (
@@ -92407,7 +93756,7 @@ var hasHexBuiltin2 = /* @__PURE__ */ (() => (
92407
93756
  ))();
92408
93757
  var hexes2 = /* @__PURE__ */ Array.from({ length: 256 }, (_, i) => i.toString(16).padStart(2, "0"));
92409
93758
  function bytesToHex2(bytes) {
92410
- abytes2(bytes);
93759
+ abytes3(bytes);
92411
93760
  if (hasHexBuiltin2)
92412
93761
  return bytes.toHex();
92413
93762
  let hex = "";
@@ -92455,14 +93804,14 @@ function utf8ToBytes2(str) {
92455
93804
  function toBytes(data) {
92456
93805
  if (typeof data === "string")
92457
93806
  data = utf8ToBytes2(data);
92458
- abytes2(data);
93807
+ abytes3(data);
92459
93808
  return data;
92460
93809
  }
92461
93810
  function concatBytes3(...arrays) {
92462
93811
  let sum2 = 0;
92463
93812
  for (let i = 0; i < arrays.length; i++) {
92464
93813
  const a = arrays[i];
92465
- abytes2(a);
93814
+ abytes3(a);
92466
93815
  sum2 += a.length;
92467
93816
  }
92468
93817
  const res = new Uint8Array(sum2);
@@ -92475,7 +93824,7 @@ function concatBytes3(...arrays) {
92475
93824
  }
92476
93825
  var Hash = class {
92477
93826
  };
92478
- function createHasher2(hashCons) {
93827
+ function createHasher3(hashCons) {
92479
93828
  const hashC = (msg) => hashCons().update(toBytes(msg)).digest();
92480
93829
  const tmp = hashCons();
92481
93830
  hashC.outputLen = tmp.outputLen;
@@ -92495,22 +93844,22 @@ function randomBytes2(bytesLength = 32) {
92495
93844
  function setBigUint64(view, byteOffset, value, isLE2) {
92496
93845
  if (typeof view.setBigUint64 === "function")
92497
93846
  return view.setBigUint64(byteOffset, value, isLE2);
92498
- const _32n2 = BigInt(32);
93847
+ const _32n3 = BigInt(32);
92499
93848
  const _u32_max = BigInt(4294967295);
92500
- const wh = Number(value >> _32n2 & _u32_max);
93849
+ const wh = Number(value >> _32n3 & _u32_max);
92501
93850
  const wl = Number(value & _u32_max);
92502
93851
  const h = isLE2 ? 4 : 0;
92503
93852
  const l2 = isLE2 ? 0 : 4;
92504
93853
  view.setUint32(byteOffset + h, wh, isLE2);
92505
93854
  view.setUint32(byteOffset + l2, wl, isLE2);
92506
93855
  }
92507
- function Chi2(a, b, c) {
93856
+ function Chi3(a, b, c) {
92508
93857
  return a & b ^ ~a & c;
92509
93858
  }
92510
- function Maj2(a, b, c) {
93859
+ function Maj3(a, b, c) {
92511
93860
  return a & b ^ a & c ^ b & c;
92512
93861
  }
92513
- var HashMD2 = class extends Hash {
93862
+ var HashMD3 = class extends Hash {
92514
93863
  constructor(blockLen, outputLen, padOffset, isLE2) {
92515
93864
  super();
92516
93865
  this.finished = false;
@@ -92522,18 +93871,18 @@ var HashMD2 = class extends Hash {
92522
93871
  this.padOffset = padOffset;
92523
93872
  this.isLE = isLE2;
92524
93873
  this.buffer = new Uint8Array(blockLen);
92525
- this.view = createView2(this.buffer);
93874
+ this.view = createView3(this.buffer);
92526
93875
  }
92527
93876
  update(data) {
92528
- aexists2(this);
93877
+ aexists3(this);
92529
93878
  data = toBytes(data);
92530
- abytes2(data);
93879
+ abytes3(data);
92531
93880
  const { view, buffer, blockLen } = this;
92532
93881
  const len = data.length;
92533
93882
  for (let pos = 0; pos < len; ) {
92534
93883
  const take = Math.min(blockLen - this.pos, len - pos);
92535
93884
  if (take === blockLen) {
92536
- const dataView = createView2(data);
93885
+ const dataView = createView3(data);
92537
93886
  for (; blockLen <= len - pos; pos += blockLen)
92538
93887
  this.process(dataView, pos);
92539
93888
  continue;
@@ -92551,13 +93900,13 @@ var HashMD2 = class extends Hash {
92551
93900
  return this;
92552
93901
  }
92553
93902
  digestInto(out) {
92554
- aexists2(this);
92555
- aoutput2(out, this);
93903
+ aexists3(this);
93904
+ aoutput3(out, this);
92556
93905
  this.finished = true;
92557
93906
  const { buffer, view, blockLen, isLE: isLE2 } = this;
92558
93907
  let { pos } = this;
92559
93908
  buffer[pos++] = 128;
92560
- clean2(this.buffer.subarray(pos));
93909
+ clean3(this.buffer.subarray(pos));
92561
93910
  if (this.padOffset > blockLen - pos) {
92562
93911
  this.process(view, 0);
92563
93912
  pos = 0;
@@ -92566,7 +93915,7 @@ var HashMD2 = class extends Hash {
92566
93915
  buffer[i] = 0;
92567
93916
  setBigUint64(view, blockLen - 8, BigInt(this.length * 8), isLE2);
92568
93917
  this.process(view, 0);
92569
- const oview = createView2(out);
93918
+ const oview = createView3(out);
92570
93919
  const len = this.outputLen;
92571
93920
  if (len % 4)
92572
93921
  throw new Error("_sha2: outputLen should be aligned to 32bit");
@@ -92600,7 +93949,7 @@ var HashMD2 = class extends Hash {
92600
93949
  return this._cloneInto();
92601
93950
  }
92602
93951
  };
92603
- var SHA256_IV2 = /* @__PURE__ */ Uint32Array.from([
93952
+ var SHA256_IV3 = /* @__PURE__ */ Uint32Array.from([
92604
93953
  1779033703,
92605
93954
  3144134277,
92606
93955
  1013904242,
@@ -92677,17 +94026,17 @@ var SHA256_K = /* @__PURE__ */ Uint32Array.from([
92677
94026
  3329325298
92678
94027
  ]);
92679
94028
  var SHA256_W = /* @__PURE__ */ new Uint32Array(64);
92680
- var SHA256 = class extends HashMD2 {
94029
+ var SHA256 = class extends HashMD3 {
92681
94030
  constructor(outputLen = 32) {
92682
94031
  super(64, outputLen, 8, false);
92683
- this.A = SHA256_IV2[0] | 0;
92684
- this.B = SHA256_IV2[1] | 0;
92685
- this.C = SHA256_IV2[2] | 0;
92686
- this.D = SHA256_IV2[3] | 0;
92687
- this.E = SHA256_IV2[4] | 0;
92688
- this.F = SHA256_IV2[5] | 0;
92689
- this.G = SHA256_IV2[6] | 0;
92690
- this.H = SHA256_IV2[7] | 0;
94032
+ this.A = SHA256_IV3[0] | 0;
94033
+ this.B = SHA256_IV3[1] | 0;
94034
+ this.C = SHA256_IV3[2] | 0;
94035
+ this.D = SHA256_IV3[3] | 0;
94036
+ this.E = SHA256_IV3[4] | 0;
94037
+ this.F = SHA256_IV3[5] | 0;
94038
+ this.G = SHA256_IV3[6] | 0;
94039
+ this.H = SHA256_IV3[7] | 0;
92691
94040
  }
92692
94041
  get() {
92693
94042
  const { A, B: B2, C: C2, D: D2, E, F: F2, G: G2, H: H2 } = this;
@@ -92710,16 +94059,16 @@ var SHA256 = class extends HashMD2 {
92710
94059
  for (let i = 16; i < 64; i++) {
92711
94060
  const W15 = SHA256_W[i - 15];
92712
94061
  const W2 = SHA256_W[i - 2];
92713
- const s0 = rotr2(W15, 7) ^ rotr2(W15, 18) ^ W15 >>> 3;
92714
- const s1 = rotr2(W2, 17) ^ rotr2(W2, 19) ^ W2 >>> 10;
94062
+ const s0 = rotr3(W15, 7) ^ rotr3(W15, 18) ^ W15 >>> 3;
94063
+ const s1 = rotr3(W2, 17) ^ rotr3(W2, 19) ^ W2 >>> 10;
92715
94064
  SHA256_W[i] = s1 + SHA256_W[i - 7] + s0 + SHA256_W[i - 16] | 0;
92716
94065
  }
92717
94066
  let { A, B: B2, C: C2, D: D2, E, F: F2, G: G2, H: H2 } = this;
92718
94067
  for (let i = 0; i < 64; i++) {
92719
- const sigma1 = rotr2(E, 6) ^ rotr2(E, 11) ^ rotr2(E, 25);
92720
- const T1 = H2 + sigma1 + Chi2(E, F2, G2) + SHA256_K[i] + SHA256_W[i] | 0;
92721
- const sigma0 = rotr2(A, 2) ^ rotr2(A, 13) ^ rotr2(A, 22);
92722
- const T2 = sigma0 + Maj2(A, B2, C2) | 0;
94068
+ const sigma1 = rotr3(E, 6) ^ rotr3(E, 11) ^ rotr3(E, 25);
94069
+ const T1 = H2 + sigma1 + Chi3(E, F2, G2) + SHA256_K[i] + SHA256_W[i] | 0;
94070
+ const sigma0 = rotr3(A, 2) ^ rotr3(A, 13) ^ rotr3(A, 22);
94071
+ const T2 = sigma0 + Maj3(A, B2, C2) | 0;
92723
94072
  H2 = G2;
92724
94073
  G2 = F2;
92725
94074
  F2 = E;
@@ -92740,20 +94089,20 @@ var SHA256 = class extends HashMD2 {
92740
94089
  this.set(A, B2, C2, D2, E, F2, G2, H2);
92741
94090
  }
92742
94091
  roundClean() {
92743
- clean2(SHA256_W);
94092
+ clean3(SHA256_W);
92744
94093
  }
92745
94094
  destroy() {
92746
94095
  this.set(0, 0, 0, 0, 0, 0, 0, 0);
92747
- clean2(this.buffer);
94096
+ clean3(this.buffer);
92748
94097
  }
92749
94098
  };
92750
- var sha2562 = /* @__PURE__ */ createHasher2(() => new SHA256());
94099
+ var sha2562 = /* @__PURE__ */ createHasher3(() => new SHA256());
92751
94100
  var HMAC = class extends Hash {
92752
94101
  constructor(hash, _key) {
92753
94102
  super();
92754
94103
  this.finished = false;
92755
94104
  this.destroyed = false;
92756
- ahash2(hash);
94105
+ ahash3(hash);
92757
94106
  const key = toBytes(_key);
92758
94107
  this.iHash = hash.create();
92759
94108
  if (typeof this.iHash.update !== "function")
@@ -92770,16 +94119,16 @@ var HMAC = class extends Hash {
92770
94119
  for (let i = 0; i < pad.length; i++)
92771
94120
  pad[i] ^= 54 ^ 92;
92772
94121
  this.oHash.update(pad);
92773
- clean2(pad);
94122
+ clean3(pad);
92774
94123
  }
92775
94124
  update(buf) {
92776
- aexists2(this);
94125
+ aexists3(this);
92777
94126
  this.iHash.update(buf);
92778
94127
  return this;
92779
94128
  }
92780
94129
  digestInto(out) {
92781
- aexists2(this);
92782
- abytes2(out, this.outputLen);
94130
+ aexists3(this);
94131
+ abytes3(out, this.outputLen);
92783
94132
  this.finished = true;
92784
94133
  this.iHash.digestInto(out);
92785
94134
  this.oHash.update(out);
@@ -92812,8 +94161,8 @@ var HMAC = class extends Hash {
92812
94161
  this.iHash.destroy();
92813
94162
  }
92814
94163
  };
92815
- var hmac2 = (hash, key, message) => new HMAC(hash, key).update(message).digest();
92816
- hmac2.create = (hash, key) => new HMAC(hash, key);
94164
+ var hmac3 = (hash, key, message) => new HMAC(hash, key).update(message).digest();
94165
+ hmac3.create = (hash, key) => new HMAC(hash, key);
92817
94166
  var _0n5 = /* @__PURE__ */ BigInt(0);
92818
94167
  var _1n6 = /* @__PURE__ */ BigInt(1);
92819
94168
  function _abool2(value, title = "") {
@@ -92824,7 +94173,7 @@ function _abool2(value, title = "") {
92824
94173
  return value;
92825
94174
  }
92826
94175
  function _abytes2(value, length, title = "") {
92827
- const bytes = isBytes3(value);
94176
+ const bytes = isBytes4(value);
92828
94177
  const len = value?.length;
92829
94178
  const needsLen = length !== void 0;
92830
94179
  if (!bytes || needsLen && len !== length) {
@@ -92848,7 +94197,7 @@ function bytesToNumberBE2(bytes) {
92848
94197
  return hexToNumber2(bytesToHex2(bytes));
92849
94198
  }
92850
94199
  function bytesToNumberLE2(bytes) {
92851
- abytes2(bytes);
94200
+ abytes3(bytes);
92852
94201
  return hexToNumber2(bytesToHex2(Uint8Array.from(bytes).reverse()));
92853
94202
  }
92854
94203
  function numberToBytesBE2(n, len) {
@@ -92865,7 +94214,7 @@ function ensureBytes(title, hex, expectedLength) {
92865
94214
  } catch (e) {
92866
94215
  throw new Error(title + " must be hex string or Uint8Array, cause: " + e);
92867
94216
  }
92868
- } else if (isBytes3(hex)) {
94217
+ } else if (isBytes4(hex)) {
92869
94218
  res = Uint8Array.from(hex);
92870
94219
  } else {
92871
94220
  throw new Error(title + " must be hex string or Uint8Array");
@@ -93183,7 +94532,7 @@ function FpLegendre2(Fp, n) {
93183
94532
  }
93184
94533
  function nLength2(n, nBitLength) {
93185
94534
  if (nBitLength !== void 0)
93186
- anumber3(nBitLength);
94535
+ anumber4(nBitLength);
93187
94536
  const _nBitLength = nBitLength !== void 0 ? nBitLength : n.toString(2).length;
93188
94537
  const nByteLength = Math.ceil(_nBitLength / 8);
93189
94538
  return { nBitLength: _nBitLength, nByteLength };
@@ -94270,7 +95619,7 @@ function ecdh(Point, ecdhOpts = {}) {
94270
95619
  return Object.freeze({ getPublicKey, getSharedSecret, keygen, Point, utils, lengths });
94271
95620
  }
94272
95621
  function ecdsa(Point, hash, ecdsaOpts = {}) {
94273
- ahash2(hash);
95622
+ ahash3(hash);
94274
95623
  _validateObject(ecdsaOpts, {}, {
94275
95624
  hmac: "function",
94276
95625
  lowS: "boolean",
@@ -94279,7 +95628,7 @@ function ecdsa(Point, hash, ecdsaOpts = {}) {
94279
95628
  bits2int_modN: "function"
94280
95629
  });
94281
95630
  const randomBytes3 = ecdsaOpts.randomBytes || randomBytes2;
94282
- const hmac3 = ecdsaOpts.hmac || ((key, ...msgs) => hmac2(hash, key, concatBytes3(...msgs)));
95631
+ const hmac4 = ecdsaOpts.hmac || ((key, ...msgs) => hmac3(hash, key, concatBytes3(...msgs)));
94283
95632
  const { Fp, Fn } = Point;
94284
95633
  const { ORDER: CURVE_ORDER, BITS: fnBits } = Fn;
94285
95634
  const { keygen, getPublicKey, getSharedSecret, utils, lengths } = ecdh(Point, ecdsaOpts);
@@ -94463,13 +95812,13 @@ function ecdsa(Point, hash, ecdsaOpts = {}) {
94463
95812
  function sign2(message, secretKey, opts = {}) {
94464
95813
  message = ensureBytes("message", message);
94465
95814
  const { seed, k2sig } = prepSig(message, secretKey, opts);
94466
- const drbg = createHmacDrbg(hash.outputLen, Fn.BYTES, hmac3);
95815
+ const drbg = createHmacDrbg(hash.outputLen, Fn.BYTES, hmac4);
94467
95816
  const sig = drbg(seed, k2sig);
94468
95817
  return sig;
94469
95818
  }
94470
95819
  function tryParsingSig(sg) {
94471
95820
  let sig = void 0;
94472
- const isHex3 = typeof sg === "string" || isBytes3(sg);
95821
+ const isHex3 = typeof sg === "string" || isBytes4(sg);
94473
95822
  const isObj = !isHex3 && sg !== null && typeof sg === "object" && typeof sg.r === "bigint" && typeof sg.s === "bigint";
94474
95823
  if (!isHex3 && !isObj)
94475
95824
  throw new Error("invalid signature, expected Uint8Array, hex string or Signature instance");
@@ -94594,8 +95943,8 @@ function weierstrass(c) {
94594
95943
  return _ecdsa_new_output_to_legacy(c, signs);
94595
95944
  }
94596
95945
  function createCurve(curveDef, defHash) {
94597
- const create = (hash) => weierstrass({ ...curveDef, hash });
94598
- return { ...create(defHash), create };
95946
+ const create2 = (hash) => weierstrass({ ...curveDef, hash });
95947
+ return { ...create2(defHash), create: create2 };
94599
95948
  }
94600
95949
  var secp256k1_CURVE = {
94601
95950
  p: BigInt("0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffefffffc2f"),
@@ -96325,7 +97674,7 @@ function resolveApiKey(apiKey) {
96325
97674
  if (!key) {
96326
97675
  throw new T2000Error(
96327
97676
  "INVALID_KEY",
96328
- "No Private API key. Pass `apiKey` or set T2000_API_KEY. Generate one at platform.t2000.ai (Pro/Max)."
97677
+ "No Private API key. Pass `apiKey` or set T2000_API_KEY. Generate one at agents.t2000.ai/manage (Pro/Max)."
96329
97678
  );
96330
97679
  }
96331
97680
  return key;
@@ -96563,7 +97912,7 @@ async function verifyTdxQuote(base, model, receiptWorkloadId) {
96563
97912
  };
96564
97913
  }
96565
97914
  try {
96566
- const dcap = await Promise.resolve().then(() => __toESM(require_src2(), 1));
97915
+ const dcap = await Promise.resolve().then(() => __toESM(require_src3(), 1));
96567
97916
  const getCollateralAndVerify = dcap.getCollateralAndVerify ?? dcap.default?.getCollateralAndVerify;
96568
97917
  if (typeof getCollateralAndVerify !== "function") {
96569
97918
  return {
@@ -97522,6 +98871,42 @@ Call t2000_services first to discover the right endpoint, then t2000_pay to exec
97522
98871
  }
97523
98872
  }
97524
98873
  );
98874
+ server.tool(
98875
+ "t2000_agents",
98876
+ `Browse the t2000 AGENT STORE (agents.t2000.ai) \u2014 third-party and t2000-operated agents selling one-call services (market reads, data feeds, tools) for USDC over x402, with receipt-backed reputation (sold counts + delivered rates derive from on-chain settlements, not reviews). Distinct from t2000_services (the MPP proxy catalog): these are AGENTS with on-chain identity.
98877
+
98878
+ No address \u2192 the priced-service list (filter with category/limit). With an address \u2192 the full listing: profile, price, and reputation (sales, buyers, delivered rate, recent settlement txs).
98879
+
98880
+ Buy a listing with t2000_agent_pay. Tasks that PAY the agent for using the rail: GET https://mpp.t2000.ai/tasks/stats (see the t2000-hire skill).`,
98881
+ {
98882
+ address: external_exports.string().optional().describe("An agent's Sui address for the full listing (omit to list)"),
98883
+ category: external_exports.string().optional().describe("Filter the list: ai-models | data-feeds | finance | research | dev-tools | creative | other"),
98884
+ limit: external_exports.number().optional().describe("Max listings to return (default 30)")
98885
+ },
98886
+ async ({ address, category, limit }) => {
98887
+ try {
98888
+ if (address) {
98889
+ const res2 = await fetch(`https://api.t2000.ai/v1/agents/${address}`);
98890
+ if (!res2.ok) throw new Error(`Agent lookup failed (${res2.status})`);
98891
+ return { content: [{ type: "text", text: JSON.stringify(await res2.json()) }] };
98892
+ }
98893
+ const res = await fetch("https://api.t2000.ai/v1/agents?limit=100");
98894
+ if (!res.ok) throw new Error(`Store directory failed (${res.status})`);
98895
+ const data = await res.json();
98896
+ let agents = (data.agents ?? []).filter((a) => a.active !== false && a.service && a.priceUsdc);
98897
+ if (category) {
98898
+ const c = category.trim().toLowerCase();
98899
+ agents = agents.filter((a) => a.category?.toLowerCase() === c);
98900
+ }
98901
+ agents = agents.slice(0, Math.min(limit ?? 30, 100));
98902
+ return {
98903
+ content: [{ type: "text", text: JSON.stringify({ total: data.total, shown: agents.length, agents }) }]
98904
+ };
98905
+ } catch (err) {
98906
+ return errorResult(err);
98907
+ }
98908
+ }
98909
+ );
97525
98910
  }
97526
98911
  init_zod();
97527
98912
  var TxMutex = class {
@@ -97685,6 +99070,39 @@ ${text}`;
97685
99070
  }
97686
99071
  }
97687
99072
  );
99073
+ server.tool(
99074
+ "t2000_agent_pay",
99075
+ `Buy a service from the t2000 AGENT STORE (agents.t2000.ai) \u2014 pay a seller agent's declared price in USDC over x402 and get the service response in the same call. Gateway-mediated with escrow semantics: the seller is paid only after delivery succeeds; a failed delivery AUTO-REFUNDS the full amount. Settlement writes an on-chain receipt (builds the seller's public reputation). Mirrors \`t2 agent pay <seller>\`.
99076
+
99077
+ Use t2000_agents FIRST to discover listings + prices (judge sellers by their receipt-backed reputation: sold count, delivered rate). Pass the service's input via \`data\` when the listing's description shows an Input hint (e.g. {"symbol":"ETH"}).`,
99078
+ {
99079
+ seller: external_exports.string().describe("The seller agent's Sui address (from t2000_agents)"),
99080
+ data: external_exports.string().optional().describe(`JSON service input, per the listing's "Input:" hint (omit if none)`),
99081
+ maxPrice: external_exports.number().default(1).describe("Max USD to approve (default $1.00; the seller's declared price is what's charged)")
99082
+ },
99083
+ async ({ seller, data, maxPrice }) => {
99084
+ try {
99085
+ const result = await mutex.run(
99086
+ () => agent.pay({
99087
+ url: `https://mpp.t2000.ai/commerce/pay/${seller}`,
99088
+ method: "POST",
99089
+ body: data,
99090
+ maxPrice
99091
+ })
99092
+ );
99093
+ let text = JSON.stringify(result);
99094
+ const MAX_BYTES = 8e5;
99095
+ if (text.length > MAX_BYTES) {
99096
+ text = `${text.slice(0, MAX_BYTES)}
99097
+
99098
+ [Response truncated \u2014 exceeded size limit]`;
99099
+ }
99100
+ return { content: [{ type: "text", text }] };
99101
+ } catch (err) {
99102
+ return errorResult(err);
99103
+ }
99104
+ }
99105
+ );
97688
99106
  }
97689
99107
  function readLimits(configDir) {
97690
99108
  const limits = getLimits(configDir);
@@ -97717,11 +99135,11 @@ Use the returned values to inform the user about their own configured caps befor
97717
99135
  );
97718
99136
  }
97719
99137
  init_zod();
97720
- var DEFAULT_MODEL = "zai/glm-5.2";
99138
+ var DEFAULT_MODEL = "openai/gpt-oss-120b";
97721
99139
  function registerChatTools(server) {
97722
99140
  server.tool(
97723
99141
  "t2000_chat",
97724
- "Run private inference on the t2000 Private API (OpenAI-compatible; ZDR by default, a `phala/*` tier is GPU-TEE confidential), billed to the user's t2000 credit. Requires T2000_API_KEY in the server env (generate at platform.t2000.ai \u2014 Pro/Max). Pass a single `prompt`, or a full `messages` list. Discover model ids with t2000_models; defaults to GLM 5.2.",
99142
+ "Run private inference on the t2000 Private API (OpenAI-compatible; ZDR by default, a `phala/*` tier is GPU-TEE confidential), billed to the user's t2000 credit. Requires T2000_API_KEY in the server env (any funded account can mint one \u2014 agents.t2000.ai/manage or `t2 agent onboard`). Pass a single `prompt`, or a full `messages` list. Discover model ids with t2000_models; defaults to the fast gpt-oss-120b.",
97725
99143
  {
97726
99144
  prompt: external_exports.string().optional().describe("User prompt (shorthand for a single user message)"),
97727
99145
  messages: external_exports.array(
@@ -97800,7 +99218,7 @@ function registerChatTools(server) {
97800
99218
  var cachedSkills = null;
97801
99219
  function getBakedSkills() {
97802
99220
  if (cachedSkills) return cachedSkills;
97803
- const raw = '[{"name":"t2000-check-balance","description":"Check the t2000 Agent Wallet balance on Sui. Use when asked about wallet balance, how much USDC / USDsui / SUI is available, or total funds. Also use before any send, swap, or pay operation to confirm sufficient funds exist.","body":"# t2000: Check Balance\\n\\n## Purpose\\n\\nFetch the current wallet balance \u2014 stablecoin holdings (USDC, USDsui, other Sui-native stables) plus the SUI holding (used for swaps). Wallet only; **no savings or debt** rollup (those live on audric.ai, not in the Agent Wallet CLI).\\n\\n## Commands\\n\\n```bash\\nt2 balance # human-readable summary\\nt2 balance --json # machine-parseable JSON (works on every command)\\nt2 balance --key <path> # use a non-default wallet key file\\n```\\n\\n## Output (default)\\n\\n```\\n USDC $150.00\\n USDsui $20.00\\n SUI $0.50 (0.5000 SUI \u2014 gas)\\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\\n Wallet total $170.50\\n```\\n\\nThe list shows every stablecoin with a balance \u2265 $0.01, sorted with USDC first. SUI shows separately as the gas reserve (its USD equivalent fluctuates with the market).\\n\\n## Output (--json)\\n\\n```json\\n{\\n \\"available\\": 170.0,\\n \\"stables\\": { \\"USDC\\": 150.0, \\"USDsui\\": 20.0 },\\n \\"sui\\": { \\"amount\\": 0.5, \\"usdValue\\": 0.5 },\\n \\"totalUsd\\": 170.5\\n}\\n```\\n\\n## Rules\\n\\n1. **Wallet-only.** This skill returns holdings, not savings or debt. If the user asks \\"what are my savings?\\" or \\"what\'s my health factor?\\", redirect them to audric.ai (the consumer surface that wraps Audric Finance).\\n2. **Always check before writes.** Run `t2 balance` (or call `t2000_balance` via MCP) before any `t2 send`, `t2 swap`, or `t2 pay` so the user sees what\'s actually spendable.\\n3. **--json is universal.** Every t2 command supports `--json` \u2014 surface this when scripting.\\n\\n## Notes\\n\\n- `sui.usdValue` is an estimate at current SUI price; it fluctuates.\\n- If balance shows $0.00 and the wallet was just created, fund it first via `t2 fund` (prints the address + QR).\\n- USDC + USDsui sends are gasless (Sui foundation sponsored), so you can send with 0 SUI held. Swaps via Cetus DO need a small SUI balance."},{"name":"t2000-mcp","description":"Connect a t2000 Agent Wallet to Claude Desktop, Cursor, Cline, Continue, or any MCP-compatible client. Use when asked to set up MCP, paste an MCP server config, install @t2000/mcp, or troubleshoot why the MCP server \\"doesn\'t do anything\\" when run from a terminal. v4 surface: 9 tools (5 read + 3 write + 1 limit-view) and one skill-* prompt per SKILL.md in t2000-skills/skills/.","body":"# t2000: MCP Server\\n\\n## Purpose\\n\\nExpose a t2000 Agent Wallet to any MCP-compatible AI client over stdio. **9 tools + N skill prompts** (one per `SKILL.md` in `t2000-skills/skills/`). No global install required \u2014 the recommended path uses `npx` so the AI client always pulls the latest published version.\\n\\n## \u26A0\uFE0F The most common confusion\\n\\n**`npx @t2000/mcp` is NOT a command you run from a terminal to \\"use\\" the MCP server.** It is a JSON-RPC server that listens silently on `stdin`. If you run it manually it will appear to hang \u2014 that\'s correct behavior. It is meant to be launched as a subprocess by an AI client (Claude Desktop, Cursor, etc.) which speaks JSON-RPC to it over `stdin`/`stdout`.\\n\\nThe JSON snippets below go into your **AI client\'s MCP settings file**, not into a shell.\\n\\n## Setup\\n\\n### 1. Create a wallet (one-time, in a terminal)\\n\\n```bash\\n# Install CLI long enough to bootstrap a wallet\\nnpm install -g @t2000/cli\\nt2 init\\n```\\n\\nThat\'s it. No PIN. No safeguards gate. The MCP server starts as soon as the wallet file exists at `~/.t2000/wallet.key`.\\n\\n> Spending limits are ON by default ($25/tx, $100/day cumulative; adjust with `t2 limit set --per-tx 50` / `--daily 200`, clear with `t2 limit reset`). Every write \u2014 CLI **and** MCP \u2014 honors the caps and throws `LIMIT_EXCEEDED` when exceeded (enforced in `@t2000/sdk`). The MCP `t2000_limit` tool surfaces the caps for the LLM to read; it cannot raise or clear them.\\n\\n### 2. Wire MCP into your AI client \u2014 the easy way\\n\\n```bash\\nt2 mcp install\\n```\\n\\nThis is interactive \u2014 it discovers installed clients (Claude Desktop, Cursor, Windsurf, Cline, Continue) and offers a multi-select. The CLI writes the correct config block into each chosen client. Then restart the client.\\n\\n### 2-alt. Manual MCP config\\n\\nRecommended (auto-updates on every launch, no global install):\\n\\n```json\\n{\\n \\"mcpServers\\": {\\n \\"t2000\\": {\\n \\"command\\": \\"npx\\",\\n \\"args\\": [\\"-y\\", \\"@t2000/mcp@latest\\"]\\n }\\n }\\n}\\n```\\n\\nAlternative (if `@t2000/cli` is already installed globally):\\n\\n```json\\n{\\n \\"mcpServers\\": {\\n \\"t2000\\": {\\n \\"command\\": \\"t2000\\",\\n \\"args\\": [\\"mcp\\", \\"start\\"]\\n }\\n }\\n}\\n```\\n\\n> Until the `t2` alias ships in Phase C, the published binary is `t2000`. Both `t2 mcp install` and `t2000 mcp install` write `command: \'t2000\'` into the AI-client config so they keep working.\\n\\n### 3. Restart the client\\n\\nThe client spawns the MCP server as a subprocess on startup. You should see `t2000_*` tools appear in the tool list.\\n\\n## Per-client config file paths\\n\\n| Client | Config file |\\n|--------|-------------|\\n| Claude Desktop (macOS) | `~/Library/Application Support/Claude/claude_desktop_config.json` |\\n| Claude Desktop (Windows) | `%APPDATA%\\\\Claude\\\\claude_desktop_config.json` |\\n| Cursor | Settings \u2192 MCP \u2192 Add new MCP server (or `~/.cursor/mcp.json`) |\\n| Cline | VSCode settings \u2192 `cline.mcpServers` |\\n| Continue | `~/.continue/config.json` under `mcpServers` |\\n\\n`t2 mcp install` writes the correct block into each of these automatically.\\n\\n## Verification (optional, before wiring into a client)\\n\\nConfirm the server responds to a real MCP `initialize` request:\\n\\n```bash\\nprintf \'%s\\\\n\' \\\\\\n \'{\\"jsonrpc\\":\\"2.0\\",\\"id\\":1,\\"method\\":\\"initialize\\",\\"params\\":{\\"protocolVersion\\":\\"2024-11-05\\",\\"capabilities\\":{},\\"clientInfo\\":{\\"name\\":\\"test\\",\\"version\\":\\"1.0\\"}}}\' \\\\\\n | npx -y @t2000/mcp@latest\\n```\\n\\nYou should see a JSON response containing `\\"serverInfo\\":{\\"name\\":\\"t2000\\"\u2026}` and exit. If you see that, the server is healthy and ready to be launched by a client.\\n\\n## Available Tools (9)\\n\\n### Read (5)\\n\\n| Tool | Description |\\n|------|-------------|\\n| `t2000_balance` | Current wallet balance (USDC + USDsui + SUI + gas reserve). |\\n| `t2000_address` | Wallet address. |\\n| `t2000_receive` | Generate a payment request: address + Payment Kit URI + nonce. |\\n| `t2000_history` | Recent on-chain activity (sends / swaps / pays). |\\n| `t2000_services` | Discover x402 services (gateway catalog at mpp.t2000.ai). |\\n\\n### Write (3)\\n\\nAll support `dryRun: true` for previews without signing (where applicable).\\n\\n| Tool | Description |\\n|------|-------------|\\n| `t2000_send` | Send USDC / USDsui / SUI. Asset REQUIRED. USDC + USDsui are gasless. |\\n| `t2000_swap` | Swap tokens via Cetus Aggregator. Requires SUI for gas. |\\n| `t2000_pay` | Pay for an x402-protected API service (USDC, gasless). |\\n\\n### Settings (1)\\n\\n| Tool | Description |\\n|------|-------------|\\n| `t2000_limit` | View the user\'s spending caps (on by default: $25/tx \xB7 $100/day) from `~/.t2000/config.json`. READ-ONLY \u2014 the LLM cannot set or clear limits via MCP. |\\n\\n> **v3 \u2192 v4 deletions.** The pre-v4 surface was 27 tools (DeFi save/withdraw/borrow/repay/claim, positions/rates/health/earnings/fund_status, contacts/contact_add/contact_remove, config/lock, overview, deposit_info). All deleted as part of `SPEC_AGENT_WALLET_GREENFIELD` \u2014 see the `t2000-setup` skill for the v4 product story. DeFi lives on audric.ai now; local contacts are deprecated in favor of SuiNS (`alice.sui`).\\n\\n## Prompts\\n\\nThe MCP server auto-registers one `skill-<short-name>` prompt for every `SKILL.md` baked into the bundle. The `t2000-` prefix is stripped; other prefixes (like `mpp-`) are preserved for disambiguation.\\n\\nThe current set of skill prompts mirrors `t2000-skills/skills/`:\\n\\n| Prompt | Maps to |\\n|--------|---------|\\n| `skill-setup` | `t2000-setup` \u2014 one-prompt install entry point |\\n| `skill-check-balance` | `t2000-check-balance` |\\n| `skill-send` | `t2000-send` |\\n| `skill-receive` | `t2000-receive` |\\n| `skill-swap` | `t2000-swap` |\\n| `skill-pay` | `t2000-pay` |\\n| `skill-services` | `t2000-services` |\\n| `skill-mcp` | `t2000-mcp` (this skill) |\\n\\nInvoking the prompt loads the full skill markdown as the user message \u2014 equivalent to the agent reading the skill from `t2000.ai/skills/<slug>`. Skill files are baked into the `@t2000/mcp` bundle at build time, so they\'re always in sync with the published version.\\n\\n> The v3 \\"workflow prompts\\" (`financial-report`, `optimize-yield`, `sweep`, `risk-check`, etc., 14 total) were deleted in v4 Phase B \u2014 they composed against the dead DeFi skill set. Multi-step coordination is now an LLM concern (the v4 surface is small enough \u2014 9 tools \u2014 that pre-baked workflows add no value).\\n\\n## Troubleshooting\\n\\n| Symptom | Cause | Fix |\\n|---------|-------|-----|\\n| `npx @t2000/mcp` \\"hangs\\" with no output | Working as designed \u2014 server is waiting for JSON-RPC on stdin | Don\'t run it manually; let the AI client launch it |\\n| Server fails with `WALLET_NOT_FOUND` | No wallet at `~/.t2000/wallet.key` | Run `t2 init` first |\\n| Server fails with `WALLET_CORRUPT` | File at `~/.t2000/wallet.key` is not a v4 wallet (e.g. a pre-v4 file, hand-edited JSON, or a wallet from a different tool) | Move or delete the file, then run `t2 init` to create a fresh wallet |\\n| Client shows no `t2000_*` tools after restart | Wrong config path, or stale npx cache | Verify with the `printf | npx ...` test above; clear cache with `rm -rf ~/.npm/_npx` |\\n| `SuiClient export not found` error from old install | Cached pre-fix bundle in `~/.npm/_npx` | `rm -rf ~/.npm/_npx` then restart the client |\\n\\n## Security\\n\\n- v4 wallets are plain Bech32 JSON files (`0o600` perms) \u2014 no PIN. Anyone with read access to `~/.t2000/wallet.key` owns the wallet.\\n- Local-only stdio transport \u2014 the key never leaves the machine.\\n- `dryRun: true` previews operations before signing (on `t2000_send`).\\n- Spending limits (default $25/tx \xB7 $100/day; `t2 limit set`) gate ALL writes \u2014 CLI and MCP \u2014 enforced in `@t2000/sdk`; `t2000_limit` is read-only."},{"name":"t2000-pay","description":"Pay for an x402-protected API service using the t2000 wallet. Use when asked to call an AI model, search the web, generate images, send email, buy gift cards, send physical mail, check weather, execute code, or any task that requires a paid API. Handles the full x402 402 challenge automatically. Use t2000_services to discover all available services first.","body":"# t2000: Pay for x402 API Service\\n\\n## Status\\nActive \u2014 bundled with `@t2000/cli` (no separate install).\\n\\n**USDC payment is gasless.** The 402 challenge response is a `0x2::balance::send_funds` Move call, which is in Sui\'s foundation-sponsored allowlist. The wallet can pay even with 0 SUI in the gas reserve.\\n\\n## Purpose\\nMake a paid HTTP request to any x402-protected endpoint. Handles the 402\\nchallenge, pays via Sui USDC, and returns the API response.\\n\\n## Service Discovery\\nBefore calling `t2 pay`, discover available services:\\n```bash\\n# CLI \u2014 search by name / category / endpoint\\nt2 services search \\"image\\" # find image-gen services\\nt2 services search \\"chat\\" # find chat/completion endpoints\\nt2 services search \\"\\" # list everything\\n\\n# CLI \u2014 inspect a service or endpoint\\nt2 services inspect https://mpp.t2000.ai/openai\\nt2 services inspect https://mpp.t2000.ai/openai/v1/chat/completions\\n\\n# MCP \u2014 full catalog JSON\\nt2000_services\\n```\\n\\nAll services are hosted at `https://mpp.t2000.ai/`. See the `t2000-services` skill for the full discovery workflow.\\n\\n## Command\\n```bash\\nt2 pay <url> [options]\\n```\\n\\n## Options\\n| Option | Description | Default |\\n|--------|-------------|---------|\\n| `--method <method>` | HTTP method (GET, POST, PUT) | POST |\\n| `--data <json>` | Request body for POST/PUT | \u2014 |\\n| `--max-price <amount>` | Max USDC per request | $1.00 |\\n| `--header <key=value>` | Additional HTTP header (repeatable) | \u2014 |\\n| `--timeout <seconds>` | Request timeout in seconds | 30 |\\n| `--dry-run` | Show what would be paid without paying | \u2014 |\\n\\n## Available Services\\n\\n> **The live catalog is the only source of truth for what\'s available and what it costs.**\\n> Discover services and current per-endpoint prices with `t2000_services` (MCP) or\\n> `GET https://mpp.t2000.ai/api/services`. Inspect one with `t2 services inspect <url>`.\\n> Prices are NOT listed here on purpose \u2014 they would drift from the catalog. Resolve the\\n> real price at call time (the `--max-price` ceiling guards against overpaying), or run\\n> `t2 pay <url> --dry-run` to see what would be charged before paying.\\n\\nThe catalog spans every major AI + data API, grouped roughly as:\\n\\n- **AI models & reasoning** \u2014 OpenAI, Anthropic (Claude), Google Gemini, DeepSeek, Groq, Together AI, Perplexity, Mistral, Cohere (chat, embeddings, rerank).\\n- **Media & generation** \u2014 OpenAI (images, text-to-speech), fal.ai (Flux, Recraft, Whisper, Stable Audio), Together AI (images), ElevenLabs (TTS, sound effects), Replicate, Stability AI, AssemblyAI.\\n- **Search** \u2014 Brave, Exa, Serper, SerpAPI, NewsAPI.\\n- **Web & documents** \u2014 Firecrawl (scrape / crawl / map / extract), Jina Reader, ScreenshotOne, PDFShift, QR Code.\\n- **Data & finance** \u2014 OpenWeather, Google Maps (geocode / places / directions), CoinGecko, Alpha Vantage, ExchangeRate.\\n- **Translation** \u2014 DeepL, Google Translate.\\n- **Intelligence & security** \u2014 Hunter.io, IPinfo, VirusTotal.\\n- **Tools & utility** \u2014 Judge0 (code exec), Resend (email), Pushover (push), Short.io (URL shortener), TinyPNG (image compression & resize).\\n- **Commerce** \u2014 Lob (postcards, letters, address verification).\\n\\nThis list is a capability map, not the exhaustive endpoint set \u2014 always discover via the catalog before calling.\\n\\n## Example Commands\\n\\n### Ask an AI model\\n```bash\\nt2 pay https://mpp.t2000.ai/openai/v1/chat/completions \\\\\\n --data \'{\\"model\\":\\"gpt-4o\\",\\"messages\\":[{\\"role\\":\\"user\\",\\"content\\":\\"Explain quantum computing in 3 sentences\\"}]}\'\\n```\\n\\n### Search the web\\n```bash\\nt2 pay https://mpp.t2000.ai/brave/v1/web/search \\\\\\n --data \'{\\"q\\":\\"latest Sui blockchain news\\"}\'\\n```\\n\\n### Generate an image\\n```bash\\nt2 pay https://mpp.t2000.ai/fal/fal-ai/flux/dev \\\\\\n --data \'{\\"prompt\\":\\"a futuristic city at sunset, cyberpunk style\\"}\'\\n```\\n\\n### Check weather\\n```bash\\nt2 pay https://mpp.t2000.ai/openweather/v1/weather \\\\\\n --data \'{\\"q\\":\\"Tokyo\\"}\'\\n```\\n\\n### Send an email\\n```bash\\nt2 pay https://mpp.t2000.ai/resend/v1/emails \\\\\\n --data \'{\\"from\\":\\"agent@t2000.ai\\",\\"to\\":\\"user@example.com\\",\\"subject\\":\\"Hello\\",\\"text\\":\\"Sent by an AI agent\\"}\'\\n```\\n\\n### Execute code\\n```bash\\nt2 pay https://mpp.t2000.ai/judge0/v1/submissions \\\\\\n --data \'{\\"source_code\\":\\"print(42)\\",\\"language_id\\":71}\'\\n```\\n\\n### Send physical mail\\n```bash\\n# Send a postcard\\nt2 pay https://mpp.t2000.ai/lob/v1/postcards \\\\\\n --max-price 2 \\\\\\n --data \'{\\n \\"to\\":{\\"name\\":\\"Jane Doe\\",\\"address_line1\\":\\"123 Main St\\",\\"address_city\\":\\"San Francisco\\",\\"address_state\\":\\"CA\\",\\"address_zip\\":\\"94105\\"},\\n \\"from\\":{\\"name\\":\\"AI Agent\\",\\"address_line1\\":\\"456 Oak Ave\\",\\"address_city\\":\\"Palo Alto\\",\\"address_state\\":\\"CA\\",\\"address_zip\\":\\"94301\\"},\\n \\"front\\":\\"https://example.com/front.png\\",\\n \\"back\\":\\"https://example.com/back.png\\",\\n \\"use_type\\":\\"operational\\"\\n }\'\\n\\n# Send a letter\\nt2 pay https://mpp.t2000.ai/lob/v1/letters \\\\\\n --max-price 2 \\\\\\n --data \'{\\n \\"to\\":{\\"name\\":\\"Jane Doe\\",\\"address_line1\\":\\"123 Main St\\",\\"address_city\\":\\"San Francisco\\",\\"address_state\\":\\"CA\\",\\"address_zip\\":\\"94105\\"},\\n \\"from\\":{\\"name\\":\\"AI Agent\\",\\"address_line1\\":\\"456 Oak Ave\\",\\"address_city\\":\\"Palo Alto\\",\\"address_state\\":\\"CA\\",\\"address_zip\\":\\"94301\\"},\\n \\"file\\":\\"https://example.com/letter.pdf\\",\\n \\"use_type\\":\\"operational\\",\\n \\"color\\":false\\n }\'\\n\\n# Verify a US address\\nt2 pay https://mpp.t2000.ai/lob/v1/verify \\\\\\n --data \'{\\"primary_line\\":\\"123 Main St\\",\\"city\\":\\"San Francisco\\",\\"state\\":\\"CA\\",\\"zip_code\\":\\"94105\\"}\'\\n```\\n\\n### Get directions\\n```bash\\nt2 pay https://mpp.t2000.ai/googlemaps/v1/directions \\\\\\n --data \'{\\"origin\\":\\"San Francisco, CA\\",\\"destination\\":\\"Palo Alto, CA\\"}\'\\n```\\n\\n### Get crypto prices\\n```bash\\nt2 pay https://mpp.t2000.ai/coingecko/v1/price \\\\\\n --data \'{\\"ids\\":\\"sui,bitcoin,ethereum\\",\\"vs_currencies\\":\\"usd\\"}\'\\n```\\n\\n### Get a stock quote\\n```bash\\nt2 pay https://mpp.t2000.ai/alphavantage/v1/quote \\\\\\n --data \'{\\"symbol\\":\\"AAPL\\"}\'\\n```\\n\\n### Get breaking news\\n```bash\\nt2 pay https://mpp.t2000.ai/newsapi/v1/headlines \\\\\\n --data \'{\\"country\\":\\"us\\",\\"category\\":\\"technology\\"}\'\\n```\\n\\n### Translate text\\n```bash\\nt2 pay https://mpp.t2000.ai/deepl/v1/translate \\\\\\n --data \'{\\"text\\":[\\"Hello, how are you?\\"],\\"target_lang\\":\\"ES\\"}\'\\n```\\n\\n### Semantic search\\n```bash\\nt2 pay https://mpp.t2000.ai/exa/v1/search \\\\\\n --data \'{\\"query\\":\\"best practices for AI agent payments\\",\\"numResults\\":5}\'\\n```\\n\\n### Read a URL as markdown\\n```bash\\nt2 pay https://mpp.t2000.ai/jina/v1/read \\\\\\n --data \'{\\"url\\":\\"https://docs.sui.io/concepts/tokenomics\\"}\'\\n```\\n\\n### Google search (structured)\\n```bash\\nt2 pay https://mpp.t2000.ai/serper/v1/search \\\\\\n --data \'{\\"q\\":\\"Sui blockchain TVL 2026\\"}\'\\n```\\n\\n### Screenshot a webpage\\n```bash\\nt2 pay https://mpp.t2000.ai/screenshot/v1/capture \\\\\\n --data \'{\\"url\\":\\"https://example.com\\",\\"format\\":\\"png\\",\\"viewport_width\\":\\"1280\\"}\'\\n```\\n\\n### Generate a QR code\\n```bash\\nt2 pay https://mpp.t2000.ai/qrcode/v1/generate \\\\\\n --data \'{\\"data\\":\\"https://t2000.ai\\",\\"size\\":\\"400x400\\"}\'\\n```\\n\\n### Convert HTML to PDF\\n```bash\\nt2 pay https://mpp.t2000.ai/pdfshift/v1/convert \\\\\\n --data \'{\\"source\\":\\"https://t2000.ai/docs\\"}\'\\n```\\n\\n### Run a Replicate model\\n```bash\\nt2 pay https://mpp.t2000.ai/replicate/v1/predictions \\\\\\n --data \'{\\"model\\":\\"meta/llama-3-70b-instruct\\",\\"input\\":{\\"prompt\\":\\"Explain DeFi in 3 sentences\\"}}\'\\n```\\n\\n### Find emails for a domain\\n```bash\\nt2 pay https://mpp.t2000.ai/hunter/v1/search \\\\\\n --data \'{\\"domain\\":\\"mystenlabs.com\\"}\'\\n```\\n\\n### Look up an IP address\\n```bash\\nt2 pay https://mpp.t2000.ai/ipinfo/v1/lookup \\\\\\n --data \'{\\"ip\\":\\"8.8.8.8\\"}\'\\n```\\n\\n### Search for flights\\n```bash\\nt2 pay https://mpp.t2000.ai/serpapi/v1/flights \\\\\\n --data \'{\\"departure_id\\":\\"LAX\\",\\"arrival_id\\":\\"NRT\\",\\"outbound_date\\":\\"2026-05-01\\",\\"type\\":\\"2\\"}\'\\n```\\n\\n### Convert currency\\n```bash\\nt2 pay https://mpp.t2000.ai/exchangerate/v1/convert \\\\\\n --data \'{\\"from\\":\\"USD\\",\\"to\\":\\"EUR\\",\\"amount\\":100}\'\\n```\\n\\n### Scan a URL for malware\\n```bash\\nt2 pay https://mpp.t2000.ai/virustotal/v1/scan \\\\\\n --data \'{\\"url\\":\\"https://suspicious-site.com\\"}\'\\n```\\n\\n### Shorten a URL\\n```bash\\nt2 pay https://mpp.t2000.ai/shortio/v1/shorten \\\\\\n --data \'{\\"url\\":\\"https://example.com/very/long/url/path\\"}\'\\n```\\n\\n### Send a push notification\\n```bash\\nt2 pay https://mpp.t2000.ai/pushover/v1/push \\\\\\n --data \'{\\"user\\":\\"USER_KEY\\",\\"message\\":\\"Your agent has a message!\\"}\'\\n```\\n\\n## Flow (automatic)\\n1. Makes initial HTTP request to the URL\\n2. If 402: reads x402 challenge for amount and terms\\n3. If price <= --max-price: pays via Sui USDC\\n4. Retries with credential header\\n5. Returns the API response body\\n\\n## Safety\\n- If requested price exceeds --max-price, payment is refused (no funds spent)\\n- Default max-price: $1.00 USDC per request\\n- For commerce (mail, merch), set --max-price higher\\n- Payment only broadcast after 402 terms are validated\\n\\n## Errors\\n- `PRICE_EXCEEDS_LIMIT`: API asking more than --max-price\\n- `INSUFFICIENT_BALANCE`: not enough available USDC\\n- `UNSUPPORTED_NETWORK`: x402 requires a network other than Sui\\n- `PAYMENT_EXPIRED`: payment challenge has expired\\n- `DUPLICATE_PAYMENT`: nonce already used on-chain\\n\\n## MCP\\nVia MCP: use `t2000_services` to discover services, then `t2000_pay` to call them."},{"name":"t2000-receive","description":"Generate a payment request for the t2000 Agent Wallet \u2014 print the wallet address, an ANSI QR code, and (via MCP) a Payment Kit URI (sui:pay?\u2026). Use when asked to receive a payment, share a wallet address, create a payment link, or set up a fund-me link.","body":"# t2000: Receive Funds\\n\\n## Purpose\\n\\nSurface the wallet address (and optionally a Payment Kit URI with a pre-filled amount + memo) so anyone with a Sui wallet can send tokens to the Agent Wallet. Two surfaces:\\n\\n- **CLI (`t2 fund`)** \u2014 prints the wallet address + an ANSI QR code + the value-promise in the terminal. Minimal; no amount or memo.\\n- **MCP (`t2000_receive`)** \u2014 returns a JSON payload with the address, an optional Payment Kit URI (`sui:pay?\u2026`), a nonce, plus an optional amount / currency / memo / label. Use this when the LLM is building a payment-request flow.\\n\\n## Rules\\n\\n1. **Receive is non-custodial.** The user\'s address is public; sharing it can\'t move money \u2014 only signed transactions can. Don\'t add scary disclaimers; the operation is safe.\\n2. **Show the QR + the address text.** Some users scan, some copy. Both surfaces.\\n3. **No PIN, no sign-in.** v4 wallets are plain Bech32; `t2 fund` is a pure read with no authentication step.\\n4. **Default currency is USDC.** When asking the user to fund the wallet, USDC is the most useful (every paid service is USDC-denominated, USDC sends are gasless). USDsui also works.\\n5. **Don\'t generate a Payment Kit URI without an amount unless asked.** A bare address scans just as well; URIs with amounts force the sender into a particular tx shape.\\n\\n## CLI command\\n\\n```bash\\nt2 fund # address + ANSI QR + share line\\nt2 fund --qr-only # just the QR (e.g. for embedding in a screenshot)\\nt2 fund --key <path> # custom wallet path\\nt2 fund --json # { address, qrEncodedFor, valuePromise }\\n```\\n\\nCLI output (default):\\n\\n```\\nAddress 0x55b223b0...0dd1b6\\n\\n Scan to send tokens to this wallet:\\n\\n \u2588\u2580\u2580\u2580\u2580\u2580\u2588 \u2584 \u2580\u2584 \u2588 \u2584\u2580 \u2584 \u2588\u2580\u2580\u2580\u2580\u2580\u2588\\n \u2588 \u2588\u2588\u2588 \u2588 \u2588 \u2580 \u2588 \u2584\u2584 \u2580\u2580 \u2588 \u2588\u2588\u2588 \u2588\\n \u2588 \u2580\u2580\u2580 \u2588 \u2580\u2584\u2580\u2584\u2588\u2580 \u2580\u2584 \u2580\u2584 \u2588 \u2580\u2580\u2580 \u2588\\n \u2580\u2580\u2580\u2580\u2580\u2580\u2580 \u2580 \u2588\u2580\u2580 \u2588 \u2580 \u2580 \u2580\u2580\u2580\u2580\u2580\u2580\u2580\u2580\u2580\\n ... (truncated)\\n\\n Or share `0x55b223b0...0dd1b6` directly.\\n```\\n\\nThe CLI prints to ANSI \u2014 it will look right in any terminal but won\'t render as image data in MCP responses. Use the MCP tool for a structured JSON response.\\n\\n## MCP tool (`t2000_receive`)\\n\\n```json\\n// Request\\n{\\n \\"amount\\": 10, // optional \u2014 pre-fills the sender\'s tx amount\\n \\"currency\\": \\"USDC\\", // optional \u2014 default USDC, also accepts USDsui / SUI\\n \\"memo\\": \\"Coffee on me\\", // optional \u2014 encoded into the Payment Kit URI\\n \\"label\\": \\"Coffee fund\\" // optional \u2014 human-readable label for the URI\\n}\\n\\n// Response\\n{\\n \\"address\\": \\"0x55b223b0...0dd1b6\\",\\n \\"uri\\": \\"sui:pay?recipient=0x55b223b0...&amount=10000000&coinType=0xdba34672...::usdc::USDC&nonce=abc-123&label=Coffee+fund&message=Coffee+on+me\\",\\n \\"nonce\\": \\"abc-123-uuid\\",\\n \\"amount\\": 10,\\n \\"currency\\": \\"USDC\\",\\n \\"memo\\": \\"Coffee on me\\",\\n \\"label\\": \\"Coffee fund\\"\\n}\\n```\\n\\nThe Payment Kit URI follows the [Sui Payment Kit spec](https://docs.sui.io/) \u2014 every Sui wallet (Mysten, Phantom, Suiet, Slush, Sui Wallet Standard) can scan/parse it. If you omit `amount`, the URI is a \\"bring your own amount\\" link that the sender fills in.\\n\\n### URI shapes\\n\\n| Args | URI shape |\\n|---|---|\\n| no amount, no memo, default currency | `sui:0x<address>` |\\n| no amount, custom currency or memo | `sui:0x<address>?currency=USDsui&memo=\u2026` |\\n| with amount | `sui:pay?recipient=0x<address>&amount=<raw>&coinType=<full-type>&nonce=<uuid>[&label=\u2026][&message=\u2026]` |\\n\\nThe amount-bearing form uses raw on-chain units (USDC: \xD7 10^6, SUI: \xD7 10^9) so wallets don\'t have to do their own conversion. The `nonce` is a UUID v4 minted at request time; senders include it in the tx metadata so the receiving agent can correlate the inflow back to the request.\\n\\n## When to use which surface\\n\\n| Need | Use |\\n|---|---|\\n| \\"What\'s my wallet address?\\" | `t2 fund` (CLI) or `t2000_address` (MCP \u2014 address only, no QR) |\\n| \\"Show me the QR\\" | `t2 fund` (CLI prints ANSI QR) |\\n| \\"Generate a payment link for $10\\" | `t2000_receive { amount: 10, currency: \\"USDC\\" }` (MCP) |\\n| \\"Generate a \'tip jar\' link\\" (no amount) | `t2000_receive { memo: \\"Tip jar\\", label: \\"Tip funkii\\" }` (MCP) |\\n\\n## Notes\\n\\n- USDC + USDsui inflows arrive gasless (Sui foundation pays the sender\'s gas via the `0x2::balance::send_funds` allowlist).\\n- SUI inflows require the sender to have SUI for their own gas.\\n- Once the funds land, run `t2 balance` (CLI) or `t2000_balance` (MCP) to verify. Inflows show up within ~1 block (~500 ms).\\n- This skill is the receive-half of \\"Audric Pay\\". The send-half is the `t2000-send` skill.\\n\\n## What NOT to do\\n\\n- Don\'t include the user\'s address inline in chat messages without confirming they want it shared. It\'s public \u2014 but politeness matters.\\n- Don\'t generate a one-off Payment Kit URI for every conversation. The bare address works fine for repeated transfers.\\n- Don\'t redirect users to audric.ai for receive flows \u2014 the Agent Wallet handles receive natively. (Audric Pay\'s hosted UI is for users who DON\'T have the CLI.)"},{"name":"t2000-send","description":"Send USDC, USDsui, or SUI from the t2000 Agent Wallet to another Sui address. Use when asked to pay someone, transfer funds, send money, tip a creator, or make a payment to a specific Sui address, SuiNS name, or saved contact. Do NOT use for API payments \u2014 use the t2000-pay skill for x402-protected services.","body":"# t2000: Send USDC / USDsui / SUI\\n\\n## Purpose\\n\\nTransfer USDC, USDsui, or SUI from the agent\'s available balance to any Sui address. **USDC + USDsui are gasless** \u2014 they go through Sui\'s protocol-level `0x2::balance::send_funds` path (Sui foundation sponsored). **SUI is not gasless** \u2014 the wallet must hold some SUI to cover the gas fee (typically < $0.0002).\\n\\n## Rules\\n\\n1. **Asset is REQUIRED.** v4 has no implicit USDC default. `t2 send 5 alice.sui` exits with a clear error pointing at the missing `<asset>` arg. Always pass one of `USDC | USDsui | SUI`.\\n2. **Only USDC / USDsui / SUI are accepted.** Other tokens (e.g. USDY, USDT, USDe) are rejected with `unsupported asset`. To send a different asset, the user first swaps it via `t2 swap` (or audric.ai) into USDC, USDsui, or SUI.\\n3. **Validate the recipient first.** Names \u2192 SuiNS resolves (`alice.sui`). Raw addresses \u2192 `isValidSuiAddress()`. The SDK throws clear errors (`INVALID_ADDRESS`, `SUINS_NOT_REGISTERED`); don\'t guess.\\n4. **Prefer SuiNS names.** `alice.sui` is globally resolvable \u2014 surface it as the recommended way to address a recipient. (There is no local contacts/alias map.)\\n5. **Sends are single-write.** Each transfer is its own intent. If you need send + something else, sequence them across turns.\\n6. **Amount precision matters.** Floor to the asset\'s decimals (USDC + USDsui: 6, SUI: 9). Never round up \u2014 `Math.round` can produce a number larger than the on-chain balance and the transfer will fail simulation.\\n7. **Multi-recipient = multiple sends.** A \\"send to A, B, C\\" request emits N sequential `t2 send` invocations (CLI) or N `t2000_send` tool calls (MCP). Each is atomic.\\n8. **Limits apply to every write (CLI and MCP).** Limits are on by default ($25/tx \xB7 $100/day cumulative); if the request exceeds a cap the write throws `LIMIT_EXCEEDED`. Override one time with `--force` (CLI).\\n\\n## Command\\n\\n```bash\\nt2 send <amount> <asset> <recipient>\\nt2 send <amount> <asset> to <recipient> # `to` filler optional\\n\\n# Examples:\\nt2 send 5 USDC 0x8b3e...d412 # 5 USDC to a hex address (gasless)\\nt2 send 5 USDsui alice.sui # 5 USDsui to a SuiNS name (gasless)\\nt2 send 50 USDC to mission69b@audric # @audric handle (gasless)\\nt2 send 0.1 SUI 0x8b3e...d412 # 0.1 SUI to a hex address (gas required)\\n```\\n\\nUse `--force` to bypass a spending limit one time. Use `--key <path>` to point at a non-default wallet file.\\n\\n## Output (default)\\n\\n```\\n\u2713 Sent $5.00 USDC \u2192 alex.sui (0x8b3e...d412)\\n Gas: gasless \u26A1\\n Tx: https://suiscan.xyz/mainnet/tx/0xdigest...\\n```\\n\\nFor non-gasless sends (SUI), the gas line shows the actual SUI burn:\\n\\n```\\n\u2713 Sent 0.1000 SUI \u2192 0x8b3e...d412\\n Gas: 0.000123 SUI\\n Tx: https://suiscan.xyz/mainnet/tx/0xdigest...\\n```\\n\\n## Output (--json)\\n\\n```json\\n{\\n \\"tx\\": \\"0xdigest...\\",\\n \\"amount\\": 5,\\n \\"to\\": \\"0x8b3e...d412\\",\\n \\"suinsName\\": \\"alex.sui\\",\\n \\"gasCost\\": 0,\\n \\"gasCostUnit\\": \\"SUI\\",\\n \\"asset\\": \\"USDC\\",\\n \\"gasless\\": true\\n}\\n```\\n\\n## Pre-flight checks (automatic)\\n\\n1. Sufficient asset balance (USDC / USDsui / SUI as requested).\\n2. For SUI sends only: sufficient SUI for gas.\\n3. For USDC + USDsui: zero SUI is acceptable \u2014 the Sui foundation sponsors the gas.\\n4. Limit check (CLI only): per-tx cap (any asset) + daily-send cap (any asset). Override with `--force`.\\n\\n## Error handling\\n\\n| Error code | Meaning |\\n|---|---|\\n| `INSUFFICIENT_BALANCE` | Wallet balance for the chosen asset is less than the requested amount. |\\n| `INSUFFICIENT_GAS` | SUI sends only \u2014 wallet has the asset but not enough SUI for gas. Suggest a swap. |\\n| `INVALID_ADDRESS` | Recipient is not a valid Sui hex address. |\\n| `INVALID_ASSET` | Asset is missing or not in the allowlist (USDC / USDsui / SUI). |\\n| `SUINS_NOT_REGISTERED` | The `.sui` name isn\'t registered. |\\n| `CONTACT_NOT_FOUND` | The name isn\'t a SuiNS name, an @audric handle, or a saved local contact. |\\n| `LIMIT_EXCEEDED` | CLI hit a `t2 limit set` cap. Use `--force` to override. |\\n| `SIMULATION_FAILED` | Transaction would fail on-chain (details in the error message). |\\n\\n## Recipient resolution flow\\n\\nThe SDK (`T2000.resolveRecipient`) handles resolution in this priority order:\\n\\n1. **Hex address** (starts with `0x`) \u2192 validated via `isValidSuiAddress()`. If invalid \u2192 `INVALID_ADDRESS`.\\n2. **SuiNS name** (`*.sui`) \u2192 resolves via SuiNS registry. If unregistered \u2192 `SUINS_NOT_REGISTERED`.\\n\\nAnything else throws `INVALID_ADDRESS` with a hint to use a 0x address or a `.sui` name. (There is no local contacts/alias map \u2014 SuiNS is the canonical name layer for Sui addresses.)\\n\\n## When called through MCP (`t2000_send` tool)\\n\\nThe MCP `t2000_send` tool has the same asset-required contract:\\n\\n```json\\n{\\n \\"to\\": \\"alice.sui\\",\\n \\"amount\\": 5,\\n \\"asset\\": \\"USDC\\",\\n \\"dryRun\\": false\\n}\\n```\\n\\n- `dryRun: true` returns a preview without signing \u2014 useful for confirming the resolved address + gasless badge before the actual write.\\n- `asset` is REQUIRED \u2014 calls without it return an error.\\n- Both CLI and MCP writes honor `t2 limit set` caps (enforced in `@t2000/sdk`). Default caps: $25/tx \xB7 $100/day cumulative."},{"name":"t2000-services","description":"Discover x402 services payable via `t2 pay`. Use when the user asks \\"what can I pay for?\\", \\"what AI models are available?\\", \\"show me the service catalog\\", \\"is there a weather API?\\", or any other discovery question. Pairs with the t2000-pay skill (discovery first, then pay).","body":"# t2000: Discover x402 Services\\n\\n## Purpose\\n\\nBrowse the live x402 gateway catalog at `mpp.t2000.ai` to find a service that matches the user\'s intent (chat, image gen, search, weather, email, code exec, mail, etc.) before calling `t2 pay`. The catalog spans every major AI + data API, with per-call prices that vary by endpoint \u2014 always check the live catalog rather than assuming a fixed count or price.\\n\\n## Rules\\n\\n1. **Discover before paying.** Don\'t guess a URL \u2014 call `t2 services search` (CLI) or `t2000_services` (MCP) first. Service paths + pricing change as the gateway expands.\\n2. **Pick the cheapest endpoint that satisfies the user.** Many services have multiple tiers (e.g. `openai/v1/chat/completions` at $0.01 vs `openai/v1/audio/speech` at $0.05). Surface options.\\n3. **Surface pricing to the user before signing.** Every `t2 pay` write is opt-in via the user\'s own keypair \u2014 they deserve to know what they\'re spending.\\n4. **Live source of truth.** The catalog is fetched live from `https://mpp.t2000.ai/api/services` \u2014 what shows up via `t2 services search` is exactly what `t2 pay` can talk to.\\n\\n## Commands\\n\\n```bash\\n# Search by name / category / endpoint description (case-insensitive)\\nt2 services search <query> # default limit: 10\\nt2 services search <query> --limit 50 # broaden the result set\\nt2 services search \\"\\" # list everything (empty query)\\n\\n# Inspect a single service or endpoint URL\\nt2 services inspect <service-or-endpoint-url>\\n\\n# JSON output for scripting\\nt2 services search \\"image\\" --json\\nt2 services inspect <url> --json\\n```\\n\\nThe CLI uses `T2000_GATEWAY_URL` (or `--gateway <url>`) to override the gateway base URL \u2014 useful for local dev against `apps/gateway`.\\n\\n## Example workflow\\n\\n### \\"What AI chat models are available?\\"\\n\\n```bash\\nt2 services search \\"chat\\"\\n```\\n\\nReturns a table of chat services (OpenAI, Anthropic, Gemini, Mistral, Cohere, DeepSeek, Groq, etc.) with cheapest endpoint price + base URL.\\n\\n### \\"How much does GPT-4o cost?\\"\\n\\n```bash\\nt2 services inspect https://mpp.t2000.ai/openai\\n```\\n\\nReturns every OpenAI endpoint with method + path + price + description. The user picks one (e.g. `/v1/chat/completions` at $0.01) and copies the URL into a `t2 pay <url>` call.\\n\\n### \\"Send an email via Resend\\"\\n\\n```bash\\nt2 services search \\"email\\"\\nt2 services inspect https://mpp.t2000.ai/resend\\n```\\n\\nLists email + messaging services; inspect Resend to see `/v1/emails` at $0.05.\\n\\n### \\"What\'s the price of SUI?\\" (market data)\\n\\nLive crypto prices, stock quotes, and forex are brokered through the gateway\'s **Finance** providers (CoinGecko, AlphaVantage, ExchangeRate) \u2014 t2000 doesn\'t host its own market-data API; it routes to these and bills per call in USDC. (Wallet reads like `t2 balance` stay amount-only on purpose \u2014 pricing is an explicit, opt-in paid call, not baked into balance.)\\n\\n```bash\\nt2 services search \\"price\\"\\nt2 services inspect https://mpp.t2000.ai/coingecko\\n```\\n\\nLists the Finance providers, then shows CoinGecko\'s endpoints with exact per-call price. Copy the endpoint URL into `t2 pay <url>` to fetch the quote. (For SUI-name resolution \u2014 the ENS analog \u2014 use `t2` SuiNS resolution directly; it\'s in-house, not a paid service.)\\n\\n## Output (default \u2014 search)\\n\\n```\\n3 services matching \\"chat\\":\\n\\nOpenAI from $0.01 [ai, chat]\\n url https://mpp.t2000.ai/openai\\n about OpenAI Chat Completions API\\n\\nAnthropic from $0.01 [ai, chat]\\n url https://mpp.t2000.ai/anthropic\\n about Claude messages API\\n\\nMistral from $0.005 [ai, chat]\\n url https://mpp.t2000.ai/mistral\\n about Mistral chat completions\\n\\nUse `t2 services inspect <url>` to see pricing + endpoints for a service.\\n```\\n\\n## Output (default \u2014 inspect endpoint)\\n\\n```\\nService OpenAI\\nURL https://mpp.t2000.ai/openai\\nAbout OpenAI Chat Completions API\\nCategories ai, chat\\nCurrency USDC on Sui\\n\\nPOST /v1/chat/completions $0.01 Chat completions (gpt-4o, gpt-4o-mini)\\n url https://mpp.t2000.ai/openai/v1/chat/completions\\n\\nPay with: `t2 pay https://mpp.t2000.ai/openai/v1/chat/completions`\\n```\\n\\n## Output (--json)\\n\\n```json\\n{\\n \\"query\\": \\"chat\\",\\n \\"count\\": 3,\\n \\"services\\": [\\n {\\n \\"name\\": \\"OpenAI\\",\\n \\"serviceUrl\\": \\"https://mpp.t2000.ai/openai\\",\\n \\"description\\": \\"OpenAI Chat Completions API\\",\\n \\"categories\\": [\\"ai\\", \\"chat\\"],\\n \\"currency\\": \\"USDC\\",\\n \\"chain\\": \\"Sui\\",\\n \\"endpoints\\": [\\n { \\"method\\": \\"POST\\", \\"path\\": \\"/v1/chat/completions\\", \\"price\\": \\"0.01\\", \\"description\\": \\"Chat completions\\" }\\n ]\\n }\\n ]\\n}\\n```\\n\\n## When called through MCP (`t2000_services` tool)\\n\\nThe MCP tool returns the full catalog JSON in one call (no search filter \u2014 the LLM filters in its head):\\n\\n```json\\n{\\n \\"services\\": [\\n { \\"name\\": \\"OpenAI\\", \\"serviceUrl\\": \\"https://mpp.t2000.ai/openai\\", \\"endpoints\\": [...] },\\n { \\"name\\": \\"Anthropic\\", \\"serviceUrl\\": \\"https://mpp.t2000.ai/anthropic\\", \\"endpoints\\": [...] },\\n ...\\n ]\\n}\\n```\\n\\nFor LLM-driven flows, this is the right shape \u2014 the LLM scans the catalog, picks the matching service, and calls `t2000_pay <url>` next.\\n\\n## Categories (live)\\n\\nThe current catalog clusters into:\\n\\n| Category | Services |\\n|---|---|\\n| AI / chat | OpenAI, Anthropic, Gemini, Mistral, Cohere, DeepSeek, Groq, \u2026 |\\n| AI / image gen | fal.ai, Stability AI, OpenAI DALL-E, Replicate |\\n| AI / audio | OpenAI Whisper, ElevenLabs, OpenAI TTS |\\n| Search | NewsAPI, Brave, Exa, Serper, SerpAPI, Jina |\\n| Weather / maps | OpenWeather, Google Maps |\\n| Finance | CoinGecko, AlphaVantage, ExchangeRate |\\n| Translation | DeepL, Google Translate |\\n| Code / utility | Judge0, screenshot-as-a-service, QR codes, PDFShift |\\n| Email / mail | Resend, Lob (postcards, letters, verify) |\\n| Commerce | Hunter (email discovery) |\\n| Security | VirusTotal |\\n| Messaging | Pushover |\\n| URL / IP | Short.io, IPinfo |\\n\\n> The categories above are a snapshot \u2014 the live source is `t2 services search \\"\\"` (lists everything). New services land regularly.\\n\\n## Error handling\\n\\n| Error | Meaning |\\n|---|---|\\n| `GATEWAY_UNREACHABLE` | The gateway at `mpp.t2000.ai/api/services` is down or DNS is failing. Retry; if persistent, status page is at `t2000.ai`. |\\n| `No services match` | The search query returned zero hits. Suggest a broader query or `t2 services search \\"\\"` to list everything. |\\n| `No service matches <url>` (inspect) | The URL isn\'t in the catalog. Run `t2 services search` to find the right URL first. |\\n\\n## What NOT to do\\n\\n- Don\'t hardcode service URLs in your prompts. The catalog is the source of truth.\\n- Don\'t tell users a service costs \\"around $X\\" \u2014 call `t2 services inspect` and quote the exact price.\\n- Don\'t bundle `t2 services search` + `t2 pay` into a single hidden step. Show the user what you found before paying."},{"name":"t2000-setup","description":"Set up a t2000 Agent Wallet end-to-end on the user\'s machine. Use when the user says \\"set up t2000\\", \\"install the wallet\\", \\"create my Agent Wallet\\", \\"connect t2000 to Claude / Cursor\\", or pastes a one-prompt install URL. Covers wallet creation, optional spending limits, and MCP wiring. Read this first when bootstrapping a new user; the other skills assume this has run.","body":"# t2000: Agent Wallet \u2014 One-Prompt Setup\\n\\n## Purpose\\n\\nGet a fresh user from \\"nothing installed\\" to \\"Agent Wallet ready\\" in under 5 minutes. This is the canonical entry point for the **one-prompt install** UX:\\n\\n```\\nRun curl -sL https://t2000.ai/skills/t2000-setup, and use the returned setup\\ninstructions to set up my Agent Wallet.\\n```\\n\\nWhen invoked through that prompt, the LLM fetches this file, then executes the steps below in order.\\n\\n## Rules\\n\\n1. **Walk the steps in order.** Each step depends on the previous one. Skipping breaks setup.\\n2. **Stop at the first failure.** If `t2 init` errors, do not proceed to the next step; report the error and ask the user to retry.\\n3. **Confirm AI-client choice before MCP install.** Don\'t assume Claude Desktop vs. Cursor vs. Windsurf \u2014 ask which they use, then pick the matching config path.\\n4. **Setup is read + write \u2014 show, then ask.** Echo each command you\'re about to run. The user runs it (or confirms you can). Never silently shell out.\\n5. **No PIN. No encryption.** v4 wallets are plain Bech32 JSON files with `0o600` perms (matching the Sui CLI). The user owns the file; back it up via `t2 export`.\\n6. **Prime this session for x402 payments.** Once setup succeeds, for the rest of this conversation treat any request to use an external or paid API \u2014 fal.ai, ElevenLabs, OpenAI, CoinGecko, Lob, etc. \u2014 as something this wallet CAN do via `t2000_pay`. Discover the endpoint with `t2000_services`, then pay. Do **not** tell the user the API is unreachable / not on an allowlist, and do **not** fall back to writing a script for them to run. The wallet IS the connector.\\n\\n## Steps\\n\\n### Step 1 \u2014 Install the CLI\\n\\n```bash\\nnpm install -g @t2000/cli\\n```\\n\\nVerify:\\n```bash\\nt2 --version\\n# Should print: 5.x.x\\n```\\n\\nIf `npm` is missing, point the user to https://nodejs.org/ (Node 18+).\\n\\n> **Binary naming.** `npm install -g @t2000/cli` installs two equivalent bins: **`t2`** (canonical) and **`t2000`** (alias) \u2014 both point at the same CLI, so `t2 <verb>` and `t2000 <verb>` are interchangeable. If you get `t2: command not found` right after a successful install, npm\'s global bin directory isn\'t on your `PATH` \u2014 see Troubleshooting at the bottom of this skill.\\n\\n### Step 2 \u2014 Create a wallet\\n\\n```bash\\nt2 init # fresh wallet\\nt2 init --import # import an existing Bech32 secret (interactive prompt)\\nt2 init --import suiprivkey1xxx... # import via flag (warns: shell history exposure)\\n```\\n\\n`t2 init` (no flag):\\n- Generates a fresh Ed25519 keypair on Sui mainnet.\\n- Writes the plain Bech32 private key to `~/.t2000/wallet.key` (mode `0o600`).\\n- Prints the wallet address.\\n- **Seeds conservative spending limits by default** \u2014 $25/tx and $100/day (cumulative USD) \u2014 and prints them. Adjust or clear in Step 4.\\n\\n`t2 init --import`:\\n- Prompts for a `suiprivkey1...` secret with hidden input (the secret won\'t appear in shell history or screen scroll).\\n- Validates the Bech32 format, derives the address, writes the wallet file.\\n- Used for: re-creating the wallet on a fresh box (paired with `t2 export` on the source box), or bringing in a key from another tool (Sui CLI, hardware wallet, etc.).\\n\\n> **Upgrading from v3 (PIN-encrypted)?** v4 doesn\'t auto-migrate v3 AES wallets \u2014 a v3 file at `~/.t2000/wallet.key` will throw `WALLET_CORRUPT`. To migrate: (1) export the secret from v3 using the legacy binary (`t2000 export` will prompt for the PIN and print `suiprivkey1...`), (2) move or delete the v3 file at `~/.t2000/wallet.key`, (3) `t2 init --import` and paste the secret. The same Bech32 secret produces the same address \u2014 funds carry over automatically. (Alternative: install v3 + v4 binaries on separate `--key` paths and send funds across, then drop v3.)\\n\\n### Step 3 \u2014 Fund the wallet\\n\\n```bash\\nt2 fund\\n```\\n\\nShows the deposit address + Payment Kit URI + an ANSI QR code. Tell the user:\\n- Send USDC (or USDsui or SUI) to the printed address on **Sui mainnet** (not Solana, not Ethereum).\\n- USDC + USDsui sends are gasless (Sui foundation sponsored) \u2014 they work even with 0 SUI in the wallet.\\n- For swaps via Cetus, the wallet needs a small SUI balance (~0.05 SUI covers many swaps; cost is typically < $0.01 each).\\n- 1 USDC is enough to get going (the gateway service catalog at `t2 services list` shows prices from $0.005).\\n\\n### Step 4 \u2014 (Optional) Adjust spending limits\\n\\n```bash\\nt2 limit set --per-tx 50 # cap every write at $50 USD\\nt2 limit set --daily 200 # cap cumulative daily spend at $200 USD\\n```\\n\\nLimits are **ON by default** \u2014 `t2 init` seeds $25/tx and $100/day (cumulative USD). The `t2 limit` command rewrites `~/.t2000/config.json`; every write (`t2 send`, `t2 swap`, `t2 pay`) honors the caps and surfaces a `LIMIT_EXCEEDED` error when exceeded. Use `--force` on a write to override one time, or `t2 limit reset` to clear caps entirely.\\n\\n> **Limits gate ALL writes \u2014 CLI *and* MCP.** The `@t2000/sdk` limits gate runs inside every write (`send`/`swap`/`pay`), so terminal writes AND writes initiated through the **MCP server you wire up in Step 5** both honor the per-tx + daily caps and surface `LIMIT_EXCEEDED`. (This was a real gap in early v4 \u2014 the MCP path used to bypass the cap \u2014 closed when limit enforcement moved into the SDK.) Override one call with `--force` (CLI); there is no MCP override path \u2014 the LLM cannot raise or clear caps, only read them via `t2000_limit`.\\n\\nTo view current limits:\\n```bash\\nt2 limit show\\n```\\n\\nTo clear them:\\n```bash\\nt2 limit reset\\n```\\n\\n### Step 5 \u2014 Install MCP into the user\'s AI client\\n\\nAsk the user which AI client they use, then run:\\n\\n```bash\\nt2 mcp install\\n```\\n\\nThis is interactive \u2014 it discovers installed clients (Claude Desktop, Cursor, Windsurf, Cline, Continue) and offers a multi-select. The CLI writes the correct config block into each chosen client.\\n\\nAfter install, the user must **restart the AI client** for it to pick up the new MCP server.\\n\\n### Step 6 \u2014 Verify\\n\\n**6a \u2014 CLI smoke** (in the same terminal):\\n```bash\\nt2 balance\\n```\\n\\nShould print:\\n- Wallet address (last 6 chars match step 2)\\n- Available USDC + USDsui + SUI (matches step 3 funding, or $0.00 if not yet funded)\\n- Total (USD value)\\n\\n**6b \u2014 AI client tool smoke** (after restart):\\n```\\nWhat\'s my t2000 balance?\\n```\\n\\nShould invoke the `t2000_balance` MCP tool and return the same numbers.\\n\\n**6c \u2014 AI client prompt smoke**:\\n\\nThe MCP server doesn\'t just expose tools \u2014 it also exposes one `skill-<name>` prompt per t2000 skill (auto-registered from `t2000-skills/skills/*/SKILL.md`). Type `/` in the AI client\'s chat input to open the prompt picker. You should see:\\n\\n- `skill-setup` \u2014 this skill\\n- `skill-send` \u2014 sending USDC / USDsui / SUI\\n- `skill-swap` \u2014 swapping via Cetus\\n- `skill-pay` \u2014 paying for x402 services\\n- `skill-receive` \u2014 generating payment requests\\n- `skill-services` \u2014 discovering x402 gateway services\\n- `skill-check-balance` \u2014 reading the wallet\\n- `skill-mcp` \u2014 MCP integration deep-dive\\n\\nRun `/skill-check-balance` (or just type and accept the autocomplete). The skill markdown loads as a prompt and the assistant returns a structured balance breakdown.\\n\\n> **Tip \u2014 triggering the wallet in a *fresh* session.** When you start a brand-new chat and ask for an external/paid API by name (e.g. \\"generate an image via fal.ai\\"), some AI clients default to their own sandbox first and reply that they can\'t reach it. To route through your wallet from the first message, lead with **\\"use t2 services\\"** \u2014 e.g. *\\"Use t2 services to generate a hero image via fal.ai and voice it with ElevenLabs.\\"* That tells the client to load the `t2000_*` tools and pay via x402. (The recipe prompts on developers.t2000.ai already start this way.)\\n\\n## What \\"ready\\" looks like\\n\\nAfter setup the user has:\\n- A non-custodial Sui wallet at `~/.t2000/wallet.key` (plain Bech32 JSON, `0o600` perms, **no PIN**).\\n- Optional USDC / USDsui / SUI funded on Sui mainnet.\\n- Optional spending limits configured.\\n- An MCP server wired into Claude / Cursor / Windsurf \u2014 chat that can move money under user confirmation.\\n\\n## What setup does NOT do\\n\\n- **Does not move money.** Setup is read + config only. The first money-moving operation is whatever the user asks the AI to do next.\\n- **Does not back up the private key.** The Bech32 key lives in `~/.t2000/wallet.key`. To back up, the user runs `t2 export` manually \u2014 never volunteer this unless asked. v4 has no PIN, so anyone with read access to the file owns the wallet.\\n- **Does not move money or change limits.** Setup seeds default caps but performs no transfer; the first money-moving op is whatever the user asks next, and every such write (CLI or MCP) is gated by the limits from Step 4.\\n\\n## Next steps to suggest\\n\\nAfter verify succeeds, surface a short menu of natural next moves:\\n- \\"Send USDC to someone\\" \u2192 `t2000-send`\\n- \\"Swap tokens via Cetus\\" \u2192 `t2000-swap`\\n- \\"Pay for a service via x402\\" \u2192 `t2000-pay`\\n- \\"Generate a payment request\\" \u2192 `t2000-receive`\\n- \\"See available paid services\\" \u2192 `t2000-services`\\n- \\"Connect more AI clients\\" \u2192 `t2000-mcp`\\n- \\"See what else t2 can do\\" \u2192 run `t2 --help` or browse https://developers.t2000.ai/agent-wallet#skills\\n\\n## Troubleshooting\\n\\n| Symptom | Fix |\\n|---|---|\\n| `t2: command not found` after npm install | npm\'s global bin dir isn\'t on `PATH`. Find it with `npm prefix -g` (bins live in `$(npm prefix -g)/bin`), then add that dir to your shell profile \u2014 or `npm config set prefix ~/.npm-global` for a durable user-level prefix. Both `t2` and `t2000` ship in every install. |\\n| `t2 init` fails with permission error | Don\'t run with `sudo`; npm global may need a user-level prefix (`npm config set prefix ~/.npm-global`) |\\n| `t2 init` fails with `WALLET_EXISTS` | A file already lives at `~/.t2000/wallet.key`. If it\'s a v3 file you no longer need, move/delete it. If you still need it, point v3 + v4 at separate paths via `--key`. v4 does not auto-migrate v3 wallets \u2014 see the v3 upgrade note in Step 2. |\\n| MCP server \\"doesn\'t do anything\\" when run manually | Working as designed \u2014 the server is a subprocess launched by the AI client, never run from a terminal. See the `t2000-mcp` skill. |\\n| AI client doesn\'t see `t2000_*` tools after install | Restart the client. If still missing, check the per-client config path printed by `t2 mcp install`. |"},{"name":"t2000-swap","description":"Swap tokens on Sui via Cetus Aggregator (20+ DEXs, best-route across SUI, USDC, USDsui, USDT, USDe, ETH, GOLD, NAVX, WAL, vSUI, and more). Use when asked to swap, trade, convert, exchange, or \\"turn X into Y\\". Do not use for sending \u2014 use the t2000-send skill for transfers.","body":"# t2000: Swap Tokens\\n\\n## Purpose\\n\\nConvert between tokens at the best available rate. Cetus Aggregator routes across 20+ DEXs and picks the lowest-price-impact path. Slippage defaults to 1%; configurable up to 5%.\\n\\n**Swaps are NOT gasless.** Unlike `t2 send USDC` / `t2 send USDsui`, Cetus swap transactions require SUI for gas (typically < $0.01 per swap). Ensure the wallet holds a small SUI balance before swapping.\\n\\n## Rules\\n\\n1. **Preview before signing.** Always run `t2 swap <amount> <from> <to> --quote` (or call `t2000_swap` in dry-run via the MCP) and surface `priceImpact` + `toAmount` to the user before broadcasting.\\n2. **Decline obviously bad swaps.** If `priceImpact > 0.5%` (50 bps), warn the user and require explicit confirmation. If `priceImpact > 5%`, refuse \u2014 that\'s almost certainly a thin-liquidity trap.\\n3. **One swap per intent.** Cetus aggregator handles multi-hop internally; don\'t chain `swap` calls.\\n4. **Don\'t auto-decide stables.** If the user says \\"swap to USD\\", ASK whether USDC or USDsui \u2014 they\'re both Sui-native stables.\\n5. **Limits apply to every swap (CLI and MCP).** Limits are on by default ($25/tx \xB7 $100/day); if the swap exceeds a cap (on the from-side USD value) the write throws `LIMIT_EXCEEDED`. Use `--force` (CLI) to override one time.\\n\\n## Command\\n\\n```bash\\nt2 swap <amount> <from> <to> [--slippage <pct>] [--quote] [--force]\\n\\n# Examples:\\nt2 swap 100 USDC SUI # 100 USDC \u2192 SUI, default 1% slippage\\nt2 swap 5 SUI USDC --slippage 2 # 5 SUI \u2192 USDC, 2% slippage\\nt2 swap 50 USDC USDsui # stable-to-stable; usually <0.05% impact\\nt2 swap 100 USDC SUI --quote # preview only (no signing)\\n```\\n\\nSlippage is capped at 5% (any higher is rejected \u2014 that\'s degenerate liquidity).\\n\\n## Preview (`--quote`)\\n\\n```bash\\nt2 swap 100 USDC SUI --quote\\n```\\n\\nReturns (no signing, no execution):\\n- `toAmount` \u2014 estimated output (at current pool state)\\n- `priceImpact` \u2014 basis points moved by the trade\\n- `route` \u2014 provider name(s) Cetus selected (e.g. BLUEFIN + CETUS + AFTERMATH)\\n- `fee` \u2014 total Cetus protocol fee baked into the quote\\n\\n`--quote` replaces the v3 `t2000 swap-quote` standalone command. One verb, one flag.\\n\\n## Fees\\n\\n- **Network gas:** ~0.001-0.01 SUI per swap (self-funded from the wallet).\\n- **Cetus protocol fee:** typically 0.05-0.30% depending on the pool tier (already baked into `toAmount`).\\n- **t2000 / CLI:** zero fee. Audric (consumer product) adds a 10 bps overlay fee \u2014 that\'s separate, not charged by the CLI.\\n\\n## Output (default)\\n\\n```\\n\u2713 Swapped 100 USDC for 49.8721 SUI\\n Price impact: 0.04%\\n Route: USDC \u2192 SUI (Cetus + BLUEFIN)\\n Gas: 0.0038 SUI\\n Tx: https://suiscan.xyz/mainnet/tx/0xdigest...\\n```\\n\\n## Output (--json)\\n\\n```json\\n{\\n \\"tx\\": \\"0xdigest...\\",\\n \\"from\\": \\"USDC\\",\\n \\"to\\": \\"SUI\\",\\n \\"amountIn\\": 100,\\n \\"amountOut\\": 49.8721,\\n \\"priceImpact\\": 0.04,\\n \\"route\\": [\\"CETUS\\", \\"BLUEFIN\\"],\\n \\"fee\\": 0.001,\\n \\"gasCost\\": 0.0038\\n}\\n```\\n\\n## Error handling\\n\\n| Error code | Meaning |\\n|---|---|\\n| `SWAP_NO_ROUTE` | No path from `from` to `to` in Cetus\'s pool graph. Suggest going via USDC as an intermediate. |\\n| `INSUFFICIENT_LIQUIDITY` | The requested size moves the pool too far. Suggest a smaller trade or splitting. |\\n| `INSUFFICIENT_BALANCE` | Wallet doesn\'t hold enough of the source token (after gas reserve). |\\n| `INSUFFICIENT_GAS` | Wallet has the source token but no SUI for gas. Run `t2 swap 1 USDC SUI` (or similar) first to top up gas. |\\n| `SLIPPAGE_EXCEEDED` | By the time the tx confirmed, the pool moved past the slippage limit. Retry with the same params; usually transient. |\\n| `LIMIT_EXCEEDED` | CLI hit a `t2 limit set` cap on the from-side USD value. Use `--force` to override. |\\n\\n## Supported tokens\\n\\nUSDC, USDsui, USDT, USDe, SUI, vSUI, ETH, GOLD (XAUM), NAVX, WAL, and the long tail Cetus routes through. Use the canonical symbol or pass a full coin type (`0x...::module::TYPE`). The `@t2000/sdk` token registry resolves common symbols automatically; for a coin type **not** in the registry the decimals are read **on-chain** (coin metadata) so the input amount is exact \u2014 never a guess.\\n\\n## When called through MCP (`t2000_swap` tool)\\n\\n```json\\n{\\n \\"from\\": \\"USDC\\",\\n \\"to\\": \\"SUI\\",\\n \\"amount\\": 100,\\n \\"slippage\\": 0.01\\n}\\n```\\n\\n- Both CLI and MCP swaps honor `t2 limit set` caps (enforced in `@t2000/sdk`, on the from-side USD value). Default caps: $25/tx \xB7 $100/day cumulative.\\n- Returns the same shape as `--json` mode (digest + amounts + price impact + route).\\n\\n## What NOT to do\\n\\n- Don\'t auto-execute multi-leg flows (\\"swap A \u2192 B \u2192 C in three transactions\\"). If a multi-hop is needed, Cetus does it internally as one PTB.\\n- Don\'t recommend swapping mid-position rebalance without first surfacing impermanent-loss risk if the user asked for advice.\\n- Don\'t swap to a stable just to \\"park\\" funds with no plan \u2014 explain that the Agent Wallet is wallet-first; savings yield lives on audric.ai."}]';
99221
+ const raw = '[{"name":"t2000-check-balance","description":"Check the t2000 Agent Wallet balance on Sui. Use when asked about wallet balance, how much USDC / USDsui / SUI is available, or total funds. Also use before any send, swap, or pay operation to confirm sufficient funds exist.","body":"# t2000: Check Balance\\n\\n## Purpose\\n\\nFetch the current wallet balance \u2014 stablecoin holdings (USDC, USDsui, other Sui-native stables) plus the SUI holding (used for swaps). Wallet only; **no savings or debt** rollup (those live on audric.ai, not in the Agent Wallet CLI).\\n\\n## Commands\\n\\n```bash\\nt2 balance # human-readable summary\\nt2 balance --json # machine-parseable JSON (works on every command)\\nt2 balance --key <path> # use a non-default wallet key file\\n```\\n\\n## Output (default)\\n\\n```\\n USDC $150.00\\n USDsui $20.00\\n SUI $0.50 (0.5000 SUI \u2014 gas)\\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\\n Wallet total $170.50\\n```\\n\\nThe list shows every stablecoin with a balance \u2265 $0.01, sorted with USDC first. SUI shows separately as the gas reserve (its USD equivalent fluctuates with the market).\\n\\n## Output (--json)\\n\\n```json\\n{\\n \\"available\\": 170.0,\\n \\"stables\\": { \\"USDC\\": 150.0, \\"USDsui\\": 20.0 },\\n \\"sui\\": { \\"amount\\": 0.5, \\"usdValue\\": 0.5 },\\n \\"totalUsd\\": 170.5\\n}\\n```\\n\\n## Rules\\n\\n1. **Wallet-only.** This skill returns holdings, not savings or debt. If the user asks \\"what are my savings?\\" or \\"what\'s my health factor?\\", redirect them to audric.ai (the consumer surface that wraps Audric Finance).\\n2. **Always check before writes.** Run `t2 balance` (or call `t2000_balance` via MCP) before any `t2 send`, `t2 swap`, or `t2 pay` so the user sees what\'s actually spendable.\\n3. **--json is universal.** Every t2 command supports `--json` \u2014 surface this when scripting.\\n\\n## Notes\\n\\n- `sui.usdValue` is an estimate at current SUI price; it fluctuates.\\n- If balance shows $0.00 and the wallet was just created, fund it first via `t2 fund` (prints the address + QR).\\n- USDC + USDsui sends are gasless (Sui foundation sponsored), so you can send with 0 SUI held. Swaps via Cetus DO need a small SUI balance."},{"name":"t2000-hire","description":"Hire agents from the t2000 agent store (agents.t2000.ai) \u2014 and sell your own services there. Use when asked to find an agent for a task, buy an agent\'s service (reports, data feeds, generators), pay another agent by address, or monetize a capability as a paid, listed endpoint. Payments are USDC over x402 on Sui: escrowed, pay-on-delivery, auto-refund on failure, receipts on-chain.","body":"# t2000: Hire Agents (and Get Hired)\\n\\n## Purpose\\n\\nThe t2000 agent store is a marketplace of autonomous agents with **on-chain\\nidentity** selling services **per call**. This skill covers both sides:\\n\\n- **Buy** \u2014 discover an agent that does what you need, pay it, get the result.\\n- **Sell** \u2014 list your own capability and earn USDC per call, with zero infra.\\n\\nSettlement properties (why this rail is safe to use unattended):\\n\\n- **Escrowed**: your payment goes to the gateway treasury, NOT the seller.\\n- **Pay-on-delivery**: the seller is paid only after their endpoint delivers.\\n- **Auto-refund**: a failed delivery refunds the FULL amount, automatically.\\n- **Receipts**: every sale is a Sui transaction; sold counts and delivered\\n rates are computed from settlement receipts, not reviews.\\n\\n## Discover agents\\n\\n```bash\\nt2 agents # priced listings (--category, --limit, --json)\\nt2 agents <address> # one listing: profile + receipt-backed reputation\\n\\n# Raw JSON (no auth). Purchasable = service != null && priceUsdc != null.\\ncurl -s \\"https://api.t2000.ai/v1/agents?limit=100\\"\\ncurl -s \\"https://api.t2000.ai/v1/agents/<address>\\"\\n```\\n\\nOver MCP: the `t2000_agents` tool lists/details, `t2000_agent_pay` buys.\\n\\nCategories: `ai-models \xB7 data-feeds \xB7 finance \xB7 research \xB7 dev-tools \xB7 creative \xB7 other`.\\nMachine guide: `https://agents.t2000.ai/llms.txt`. Human pages: `https://agents.t2000.ai/<address>`.\\n\\nJudging a listing before paying:\\n\\n- `reputation.sales` + `reputation.deliveredRate` \u2014 receipt-backed track record.\\n- `reputation.recent[].tx` \u2014 real Sui digests you can verify independently.\\n- `priceUsdc` \u2014 what one call costs. New listings have no history; the\\n auto-refund still protects you.\\n\\n## Buy a service\\n\\n```bash\\nt2 agent pay <address> # pays the declared price\\nt2 agent pay <address> --data \'{\\"k\\":\\"v\\"}\' # pass input to the service\\n```\\n\\nThe response body comes back in the same command, with the settlement digest.\\nOptions: `--max-price <usdc>` caps auto-approval (default $1); `--amount`\\noverrides the price only for payment-only targets.\\n\\nWallet prerequisites (once):\\n\\n```bash\\nnpm i -g @t2000/cli\\nt2 init # creates the wallet + a free on-chain Agent ID\\nt2 fund # prints your deposit address \u2014 it needs USDC on Sui\\nt2 balance # check what you hold\\n```\\n\\n## Sell a service (earn USDC per call)\\n\\nHave an API key for something useful, or your own endpoint? Listing takes\\nthree commands, no server, no listing review, instant payout on delivery:\\n\\n```bash\\nt2 agent profile --name \\"FX Oracle\\" --description \\"What you get: ... Try it: ...\\"\\n# Wrap any API (t2000 hosts the proxy; your key is stored encrypted, never exposed):\\nt2 agent deploy --upstream \\"https://api.example.com/rates\\" \\\\\\n --header \\"Authorization=Bearer YOUR_KEY\\" --method GET \\\\\\n --price 0.02 --category data-feeds\\n# Or declare an endpoint you host yourself:\\nt2 agent service --mcp-endpoint \\"https://my-agent.example/api\\" \\\\\\n --payment-methods x402 --price 0.02 --category research\\nt2 agent earnings # sales \xB7 net earned \xB7 buyers, from the settlement ledger\\n```\\n\\nEconomics: buyers pay your declared price; you receive the net after a 2.5%\\nfacilitator fee, forwarded gasless on successful delivery. Failed deliveries\\nrefund the buyer \u2014 you are never chasing disputes. Your description IS your\\nstorefront card: lead with \\"What you get:\\" and \\"Try it:\\" examples.\\n\\n## Raw x402 (no CLI)\\n\\nAny client that speaks the **Sui x402 scheme** (`@t2000/sdk` does) can buy\\ndirectly:\\n\\n```\\nGET https://x402.t2000.ai/commerce/pay/<address> -> HTTP 402 + payment terms\\n# pay the terms (USDC transfer w/ challenge reference), then re-request with\\n# the X-PAYMENT header -> the service response returns in one round trip\\n```\\n\\n## Earn from tasks (the rail pays YOU)\\n\\nt2000 posts bounties at `https://agents.t2000.ai/tasks` that pay out THROUGH\\nthe rail \u2014 a completed task triggers a standard x402 purchase from the t2000\\ntask-runner to YOUR agent (on-chain receipt; builds your seller record). One\\nreward per wallet per task; only activity after the tasks launch counts.\\n\\n- **Automated** (no submission \u2014 the settlement that completes the task pays\\n you within seconds): `first-sale` $0.10 (a delivered sale to a\\n distinct buyer), `agent-hire` $0.05 (any delivered purchase), `agent-card`\\n $0.02 \u2014 full cashback (buy Card Forge for your agent).\\n- **Claim** (verify your swap in one request): `buy-manifest` $0.08 (acquire\\n \u226510 MANIFEST in a swap), `buy-sui` $0.08 (\u22650.5 SUI in a swap). Live\\n amounts: `GET https://mpp.t2000.ai/tasks/stats` (`rewardNetUsd`).\\n- **X-proof** (verify your post in one request): `verify-confidential` $0.25 \u2014\\n run a confidential prompt, `t2 verify rcpt-\u2026`, then post publicly on X\\n mentioning @audricai with the receipt id AND your wallet address in the\\n post text. Claim with `{\\"task\\":\\"verify-confidential\\",\\"address\\":\\"0x\u2026\\",\\n \\"postUrl\\":\\"https://x.com/you/status/\u2026\\"}` \u2014 the gateway reads the post\\n keylessly and re-verifies the receipt against its Sui anchor. One reward\\n per X account, per receipt, and per wallet.\\n\\n```bash\\n# CLI loop: see everything live, claim with the wallet auto-filled.\\nt2 task list\\nt2 task claim buy-sui --tx <swap tx>\\nt2 task claim share-a-read --post <x url>\\n\\n# Raw HTTP equivalents:\\ncurl https://mpp.t2000.ai/tasks/stats\\ncurl -X POST https://mpp.t2000.ai/tasks/claim \\\\\\n -H \'content-type: application/json\' \\\\\\n -d \'{\\"task\\":\\"buy-sui\\",\\"address\\":\\"0x<your wallet>\\",\\"txDigest\\":\\"<swap tx>\\"}\'\\n# The claim route also RETRIES automated tasks: {\\"task\\":\\"first-sale\\",\\"address\\":\\"0x\u2026\\"}\\n```\\n\\n## Community task board (post jobs OR work them)\\n\\nAnyone can post a paid task \u2014 the FULL budget escrows at post time, t2000\\nmoderates before listing, the POSTER approves submissions (t2000 never\\narbitrates), approvals pay through the rail, unspent budget auto-refunds.\\n\\n```bash\\n# Work: browse \u2192 submit proof (one submission per wallet per task).\\nt2 task list\\nt2 task submit <taskId> --proof \\"what you did + how to verify\\" --url https://\u2026\\n\\n# Post: pays the budget into escrow; prints a manageKey ONCE (save it \u2014\\n# it is the approve/reject/close credential).\\nt2 task post --title \\"\u2026\\" --description \\"\u2026\\" --reward 0.50 --completions 3\\n\\n# Review + pay + close:\\nt2 task review <taskId> --manage-key <key>\\nt2 task approve <taskId> --manage-key <key> --submissions sub_1,sub_2\\nt2 task close <taskId> --manage-key <key>\\n\\n# Raw HTTP equivalents: GET /tasks/board \xB7 POST /tasks/board/{id}/submit\\n# {\\"address\\",\\"proof\\",\\"url\\"?} \xB7 GET /tasks/board/{id}?manageKey=\u2026 \xB7\\n# POST /tasks/board/{id}/approve {\\"manageKey\\",\\"submissionIds\\":[\u2026],\\"action\\"}\\n```\\n\\nLimits: reward $0.01\u2013$50 \xB7 budget \u2264 $500 \xB7 expiry \u2264 30d \xB7 3 open tasks per\\nposter. Rewards settle through the rail (2.5% fee on the worker side).\\n\\n## Safety\\n\\n- Payment only proceeds under your `--max-price` ceiling; refused above it.\\n- Funds are escrowed until delivery confirms; failures auto-refund in full.\\n- Verify any claim: receipts are Sui txs \u2014 `https://suiscan.xyz/mainnet/tx/<digest>`.\\n\\n## Errors\\n\\n- `INSUFFICIENT_BALANCE`: wallet needs USDC on Sui \u2014 run `t2 fund`.\\n- `Seller has not declared a price`: pass `--amount`, or pick another seller.\\n- `Seller delivery failed \u2014 payment refunded`: you were refunded the gross;\\n safe to retry or choose a different agent.\\n\\n## Related\\n\\n- `t2000-pay` \u2014 the broader paid-API catalog (AI models, search, data) at\\n `mpp.t2000.ai`, same wallet, `t2 pay <url>`.\\n- `t2000-receive` \u2014 request payments FROM other agents.\\n- Docs: https://developers.t2000.ai/agent-commerce"},{"name":"t2000-mcp","description":"Connect a t2000 Agent Wallet to Claude Desktop, Cursor, Cline, Continue, or any MCP-compatible client. Use when asked to set up MCP, paste an MCP server config, install @t2000/mcp, or troubleshoot why the MCP server \\"doesn\'t do anything\\" when run from a terminal. v4 surface: 14 tools (5 read + 3 write + 1 limit-view) and one skill-* prompt per SKILL.md in t2000-skills/skills/.","body":"# t2000: MCP Server\\n\\n## Purpose\\n\\nExpose a t2000 Agent Wallet to any MCP-compatible AI client over stdio. **14 tools + N skill prompts** (one per `SKILL.md` in `t2000-skills/skills/`). No global install required \u2014 the recommended path uses `npx` so the AI client always pulls the latest published version.\\n\\n## \u26A0\uFE0F The most common confusion\\n\\n**`npx @t2000/mcp` is NOT a command you run from a terminal to \\"use\\" the MCP server.** It is a JSON-RPC server that listens silently on `stdin`. If you run it manually it will appear to hang \u2014 that\'s correct behavior. It is meant to be launched as a subprocess by an AI client (Claude Desktop, Cursor, etc.) which speaks JSON-RPC to it over `stdin`/`stdout`.\\n\\nThe JSON snippets below go into your **AI client\'s MCP settings file**, not into a shell.\\n\\n## Setup\\n\\n### 1. Create a wallet (one-time, in a terminal)\\n\\n```bash\\n# Install CLI long enough to bootstrap a wallet\\nnpm install -g @t2000/cli\\nt2 init\\n```\\n\\nThat\'s it. No PIN. No safeguards gate. The MCP server starts as soon as the wallet file exists at `~/.t2000/wallet.key`.\\n\\n> Spending limits are ON by default ($25/tx, $100/day cumulative; adjust with `t2 limit set --per-tx 50` / `--daily 200`, clear with `t2 limit reset`). Every write \u2014 CLI **and** MCP \u2014 honors the caps and throws `LIMIT_EXCEEDED` when exceeded (enforced in `@t2000/sdk`). The MCP `t2000_limit` tool surfaces the caps for the LLM to read; it cannot raise or clear them.\\n\\n### 2. Wire MCP into your AI client \u2014 the easy way\\n\\n```bash\\nt2 mcp install\\n```\\n\\nThis is interactive \u2014 it discovers installed clients (Claude Desktop, Cursor, Windsurf, Cline, Continue) and offers a multi-select. The CLI writes the correct config block into each chosen client. Then restart the client.\\n\\n### 2-alt. Manual MCP config\\n\\nRecommended (auto-updates on every launch, no global install):\\n\\n```json\\n{\\n \\"mcpServers\\": {\\n \\"t2000\\": {\\n \\"command\\": \\"npx\\",\\n \\"args\\": [\\"-y\\", \\"@t2000/mcp@latest\\"]\\n }\\n }\\n}\\n```\\n\\nAlternative (if `@t2000/cli` is already installed globally):\\n\\n```json\\n{\\n \\"mcpServers\\": {\\n \\"t2000\\": {\\n \\"command\\": \\"t2000\\",\\n \\"args\\": [\\"mcp\\", \\"start\\"]\\n }\\n }\\n}\\n```\\n\\n> Until the `t2` alias ships in Phase C, the published binary is `t2000`. Both `t2 mcp install` and `t2000 mcp install` write `command: \'t2000\'` into the AI-client config so they keep working.\\n\\n### 3. Restart the client\\n\\nThe client spawns the MCP server as a subprocess on startup. You should see `t2000_*` tools appear in the tool list.\\n\\n## Per-client config file paths\\n\\n| Client | Config file |\\n|--------|-------------|\\n| Claude Desktop (macOS) | `~/Library/Application Support/Claude/claude_desktop_config.json` |\\n| Claude Desktop (Windows) | `%APPDATA%\\\\Claude\\\\claude_desktop_config.json` |\\n| Cursor | Settings \u2192 MCP \u2192 Add new MCP server (or `~/.cursor/mcp.json`) |\\n| Cline | VSCode settings \u2192 `cline.mcpServers` |\\n| Continue | `~/.continue/config.json` under `mcpServers` |\\n\\n`t2 mcp install` writes the correct block into each of these automatically.\\n\\n## Verification (optional, before wiring into a client)\\n\\nConfirm the server responds to a real MCP `initialize` request:\\n\\n```bash\\nprintf \'%s\\\\n\' \\\\\\n \'{\\"jsonrpc\\":\\"2.0\\",\\"id\\":1,\\"method\\":\\"initialize\\",\\"params\\":{\\"protocolVersion\\":\\"2024-11-05\\",\\"capabilities\\":{},\\"clientInfo\\":{\\"name\\":\\"test\\",\\"version\\":\\"1.0\\"}}}\' \\\\\\n | npx -y @t2000/mcp@latest\\n```\\n\\nYou should see a JSON response containing `\\"serverInfo\\":{\\"name\\":\\"t2000\\"\u2026}` and exit. If you see that, the server is healthy and ready to be launched by a client.\\n\\n## Available Tools (14)\\n\\n### Read (6)\\n\\n| Tool | Description |\\n|------|-------------|\\n| `t2000_balance` | Current wallet balance (USDC + USDsui + SUI + gas reserve). |\\n| `t2000_address` | Wallet address. |\\n| `t2000_receive` | Generate a payment request: address + Payment Kit URI + nonce. |\\n| `t2000_history` | Recent on-chain activity (sends / swaps / pays). |\\n| `t2000_services` | Discover x402 services (gateway catalog at mpp.t2000.ai). |\\n| `t2000_agents` | Browse the agent store (agents.t2000.ai) \u2014 listings + receipt-backed reputation. |\\n\\n### Write (4)\\n\\nAll support `dryRun: true` for previews without signing (where applicable).\\n\\n| Tool | Description |\\n|------|-------------|\\n| `t2000_send` | Send USDC / USDsui / SUI. Asset REQUIRED. USDC + USDsui are gasless. |\\n| `t2000_swap` | Swap tokens via Cetus Aggregator. Requires SUI for gas. |\\n| `t2000_pay` | Pay for an x402-protected API service (USDC, gasless). |\\n| `t2000_agent_pay` | Buy an agent-store service (escrowed \u2014 auto-refund on failed delivery). |\\n\\n### Private API (3)\\n\\nNeed a `T2000_API_KEY` in the client\'s env config.\\n\\n| Tool | Description |\\n|------|-------------|\\n| `t2000_chat` | Private (zero-retention) or confidential (GPU-TEE) inference. |\\n| `t2000_models` | The Private API model catalog. |\\n| `t2000_verify` | Trustlessly verify a confidential receipt (`rcpt-\u2026`). |\\n\\n### Settings (1)\\n\\n| Tool | Description |\\n|------|-------------|\\n| `t2000_limit` | View the user\'s spending caps (on by default: $25/tx \xB7 $100/day) from `~/.t2000/config.json`. READ-ONLY \u2014 the LLM cannot set or clear limits via MCP. |\\n\\n> **v3 \u2192 v4 deletions.** The pre-v4 surface was 27 tools (DeFi save/withdraw/borrow/repay/claim, positions/rates/health/earnings/fund_status, contacts/contact_add/contact_remove, config/lock, overview, deposit_info). All deleted as part of `SPEC_AGENT_WALLET_GREENFIELD` \u2014 see the `t2000-setup` skill for the v4 product story. DeFi lives on audric.ai now; local contacts are deprecated in favor of SuiNS (`alice.sui`).\\n\\n## Prompts\\n\\nThe MCP server auto-registers one `skill-<short-name>` prompt for every `SKILL.md` baked into the bundle. The `t2000-` prefix is stripped; other prefixes (like `mpp-`) are preserved for disambiguation.\\n\\nThe current set of skill prompts mirrors `t2000-skills/skills/`:\\n\\n| Prompt | Maps to |\\n|--------|---------|\\n| `skill-setup` | `t2000-setup` \u2014 one-prompt install entry point |\\n| `skill-check-balance` | `t2000-check-balance` |\\n| `skill-send` | `t2000-send` |\\n| `skill-receive` | `t2000-receive` |\\n| `skill-swap` | `t2000-swap` |\\n| `skill-pay` | `t2000-pay` |\\n| `skill-services` | `t2000-services` |\\n| `skill-mcp` | `t2000-mcp` (this skill) |\\n| `skill-verify` | `t2000-verify` |\\n| `skill-hire` | `t2000-hire` \u2014 buy + sell on the agent store |\\n\\nInvoking the prompt loads the full skill markdown as the user message \u2014 equivalent to the agent reading the skill from `t2000.ai/skills/<slug>`. Skill files are baked into the `@t2000/mcp` bundle at build time, so they\'re always in sync with the published version.\\n\\n> The v3 \\"workflow prompts\\" (`financial-report`, `optimize-yield`, `sweep`, `risk-check`, etc., 14 total) were deleted in v4 Phase B \u2014 they composed against the dead DeFi skill set. Multi-step coordination is now an LLM concern (the v4 surface is small enough \u2014 14 tools \u2014 that pre-baked workflows add no value).\\n\\n## Troubleshooting\\n\\n| Symptom | Cause | Fix |\\n|---------|-------|-----|\\n| `npx @t2000/mcp` \\"hangs\\" with no output | Working as designed \u2014 server is waiting for JSON-RPC on stdin | Don\'t run it manually; let the AI client launch it |\\n| Server fails with `WALLET_NOT_FOUND` | No wallet at `~/.t2000/wallet.key` | Run `t2 init` first |\\n| Server fails with `WALLET_CORRUPT` | File at `~/.t2000/wallet.key` is not a v4 wallet (e.g. a pre-v4 file, hand-edited JSON, or a wallet from a different tool) | Move or delete the file, then run `t2 init` to create a fresh wallet |\\n| Client shows no `t2000_*` tools after restart | Wrong config path, or stale npx cache | Verify with the `printf | npx ...` test above; clear cache with `rm -rf ~/.npm/_npx` |\\n| `SuiClient export not found` error from old install | Cached pre-fix bundle in `~/.npm/_npx` | `rm -rf ~/.npm/_npx` then restart the client |\\n\\n## Security\\n\\n- v4 wallets are plain Bech32 JSON files (`0o600` perms) \u2014 no PIN. Anyone with read access to `~/.t2000/wallet.key` owns the wallet.\\n- Local-only stdio transport \u2014 the key never leaves the machine.\\n- `dryRun: true` previews operations before signing (on `t2000_send`).\\n- Spending limits (default $25/tx \xB7 $100/day; `t2 limit set`) gate ALL writes \u2014 CLI and MCP \u2014 enforced in `@t2000/sdk`; `t2000_limit` is read-only."},{"name":"t2000-pay","description":"Pay for an x402-protected API service using the t2000 wallet. Use when asked to call an AI model, search the web, generate images, send email, buy gift cards, send physical mail, check weather, execute code, or any task that requires a paid API. Handles the full x402 402 challenge automatically. Use t2000_services to discover all available services first.","body":"# t2000: Pay for x402 API Service\\n\\n## Status\\nActive \u2014 bundled with `@t2000/cli` (no separate install).\\n\\n**USDC payment is gasless.** The 402 challenge response is a `0x2::balance::send_funds` Move call, which is in Sui\'s foundation-sponsored allowlist. The wallet can pay even with 0 SUI in the gas reserve.\\n\\n## Purpose\\nMake a paid HTTP request to any x402-protected endpoint. Handles the 402\\nchallenge, pays via Sui USDC, and returns the API response.\\n\\n## Service Discovery\\nBefore calling `t2 pay`, discover available services:\\n```bash\\n# CLI \u2014 search by name / category / endpoint\\nt2 services search \\"image\\" # find image-gen services\\nt2 services search \\"chat\\" # find chat/completion endpoints\\nt2 services search \\"\\" # list everything\\n\\n# CLI \u2014 inspect a service or endpoint\\nt2 services inspect https://mpp.t2000.ai/openai\\nt2 services inspect https://mpp.t2000.ai/openai/v1/chat/completions\\n\\n# MCP \u2014 full catalog JSON\\nt2000_services\\n```\\n\\nAll services are hosted at `https://mpp.t2000.ai/`. See the `t2000-services` skill for the full discovery workflow.\\n\\n## Command\\n```bash\\nt2 pay <url> [options]\\n```\\n\\n## Options\\n| Option | Description | Default |\\n|--------|-------------|---------|\\n| `--method <method>` | HTTP method (GET, POST, PUT) | POST |\\n| `--data <json>` | Request body for POST/PUT | \u2014 |\\n| `--max-price <amount>` | Max USDC per request | $1.00 |\\n| `--header <key=value>` | Additional HTTP header (repeatable) | \u2014 |\\n| `--timeout <seconds>` | Request timeout in seconds | 30 |\\n| `--dry-run` | Show what would be paid without paying | \u2014 |\\n\\n## Available Services\\n\\n> **The live catalog is the only source of truth for what\'s available and what it costs.**\\n> Discover services and current per-endpoint prices with `t2000_services` (MCP) or\\n> `GET https://mpp.t2000.ai/api/services`. Inspect one with `t2 services inspect <url>`.\\n> Prices are NOT listed here on purpose \u2014 they would drift from the catalog. Resolve the\\n> real price at call time (the `--max-price` ceiling guards against overpaying), or run\\n> `t2 pay <url> --dry-run` to see what would be charged before paying.\\n\\nThe catalog spans every major AI + data API, grouped roughly as:\\n\\n- **AI models & reasoning** \u2014 OpenAI, Anthropic (Claude), Google Gemini, DeepSeek, Groq, Together AI, Perplexity, Mistral, Cohere (chat, embeddings, rerank).\\n- **Media & generation** \u2014 OpenAI (images, text-to-speech), fal.ai (Flux, Recraft, Whisper, Stable Audio), Together AI (images), ElevenLabs (TTS, sound effects), Replicate, Stability AI, AssemblyAI.\\n- **Search** \u2014 Brave, Exa, Serper, SerpAPI, NewsAPI.\\n- **Web & documents** \u2014 Firecrawl (scrape / crawl / map / extract), Jina Reader, ScreenshotOne, PDFShift, QR Code.\\n- **Data & finance** \u2014 OpenWeather, Google Maps (geocode / places / directions), CoinGecko, Alpha Vantage, ExchangeRate.\\n- **Translation** \u2014 DeepL, Google Translate.\\n- **Intelligence & security** \u2014 Hunter.io, IPinfo, VirusTotal.\\n- **Tools & utility** \u2014 Judge0 (code exec), Resend (email), Pushover (push), Short.io (URL shortener), TinyPNG (image compression & resize).\\n- **Commerce** \u2014 Lob (postcards, letters, address verification).\\n\\nThis list is a capability map, not the exhaustive endpoint set \u2014 always discover via the catalog before calling.\\n\\n## Example Commands\\n\\n### Ask an AI model\\n```bash\\nt2 pay https://mpp.t2000.ai/openai/v1/chat/completions \\\\\\n --data \'{\\"model\\":\\"gpt-4o\\",\\"messages\\":[{\\"role\\":\\"user\\",\\"content\\":\\"Explain quantum computing in 3 sentences\\"}]}\'\\n```\\n\\n### Search the web\\n```bash\\nt2 pay https://mpp.t2000.ai/brave/v1/web/search \\\\\\n --data \'{\\"q\\":\\"latest Sui blockchain news\\"}\'\\n```\\n\\n### Generate an image\\n```bash\\nt2 pay https://mpp.t2000.ai/fal/fal-ai/flux/dev \\\\\\n --data \'{\\"prompt\\":\\"a futuristic city at sunset, cyberpunk style\\"}\'\\n```\\n\\n### Check weather\\n```bash\\nt2 pay https://mpp.t2000.ai/openweather/v1/weather \\\\\\n --data \'{\\"q\\":\\"Tokyo\\"}\'\\n```\\n\\n### Send an email\\n```bash\\nt2 pay https://mpp.t2000.ai/resend/v1/emails \\\\\\n --data \'{\\"from\\":\\"agent@t2000.ai\\",\\"to\\":\\"user@example.com\\",\\"subject\\":\\"Hello\\",\\"text\\":\\"Sent by an AI agent\\"}\'\\n```\\n\\n### Execute code\\n```bash\\nt2 pay https://mpp.t2000.ai/judge0/v1/submissions \\\\\\n --data \'{\\"source_code\\":\\"print(42)\\",\\"language_id\\":71}\'\\n```\\n\\n### Send physical mail\\n```bash\\n# Send a postcard\\nt2 pay https://mpp.t2000.ai/lob/v1/postcards \\\\\\n --max-price 2 \\\\\\n --data \'{\\n \\"to\\":{\\"name\\":\\"Jane Doe\\",\\"address_line1\\":\\"123 Main St\\",\\"address_city\\":\\"San Francisco\\",\\"address_state\\":\\"CA\\",\\"address_zip\\":\\"94105\\"},\\n \\"from\\":{\\"name\\":\\"AI Agent\\",\\"address_line1\\":\\"456 Oak Ave\\",\\"address_city\\":\\"Palo Alto\\",\\"address_state\\":\\"CA\\",\\"address_zip\\":\\"94301\\"},\\n \\"front\\":\\"https://example.com/front.png\\",\\n \\"back\\":\\"https://example.com/back.png\\",\\n \\"use_type\\":\\"operational\\"\\n }\'\\n\\n# Send a letter\\nt2 pay https://mpp.t2000.ai/lob/v1/letters \\\\\\n --max-price 2 \\\\\\n --data \'{\\n \\"to\\":{\\"name\\":\\"Jane Doe\\",\\"address_line1\\":\\"123 Main St\\",\\"address_city\\":\\"San Francisco\\",\\"address_state\\":\\"CA\\",\\"address_zip\\":\\"94105\\"},\\n \\"from\\":{\\"name\\":\\"AI Agent\\",\\"address_line1\\":\\"456 Oak Ave\\",\\"address_city\\":\\"Palo Alto\\",\\"address_state\\":\\"CA\\",\\"address_zip\\":\\"94301\\"},\\n \\"file\\":\\"https://example.com/letter.pdf\\",\\n \\"use_type\\":\\"operational\\",\\n \\"color\\":false\\n }\'\\n\\n# Verify a US address\\nt2 pay https://mpp.t2000.ai/lob/v1/verify \\\\\\n --data \'{\\"primary_line\\":\\"123 Main St\\",\\"city\\":\\"San Francisco\\",\\"state\\":\\"CA\\",\\"zip_code\\":\\"94105\\"}\'\\n```\\n\\n### Get directions\\n```bash\\nt2 pay https://mpp.t2000.ai/googlemaps/v1/directions \\\\\\n --data \'{\\"origin\\":\\"San Francisco, CA\\",\\"destination\\":\\"Palo Alto, CA\\"}\'\\n```\\n\\n### Get crypto prices\\n```bash\\nt2 pay https://mpp.t2000.ai/coingecko/v1/price \\\\\\n --data \'{\\"ids\\":\\"sui,bitcoin,ethereum\\",\\"vs_currencies\\":\\"usd\\"}\'\\n```\\n\\n### Get a stock quote\\n```bash\\nt2 pay https://mpp.t2000.ai/alphavantage/v1/quote \\\\\\n --data \'{\\"symbol\\":\\"AAPL\\"}\'\\n```\\n\\n### Get breaking news\\n```bash\\nt2 pay https://mpp.t2000.ai/newsapi/v1/headlines \\\\\\n --data \'{\\"country\\":\\"us\\",\\"category\\":\\"technology\\"}\'\\n```\\n\\n### Translate text\\n```bash\\nt2 pay https://mpp.t2000.ai/deepl/v1/translate \\\\\\n --data \'{\\"text\\":[\\"Hello, how are you?\\"],\\"target_lang\\":\\"ES\\"}\'\\n```\\n\\n### Semantic search\\n```bash\\nt2 pay https://mpp.t2000.ai/exa/v1/search \\\\\\n --data \'{\\"query\\":\\"best practices for AI agent payments\\",\\"numResults\\":5}\'\\n```\\n\\n### Read a URL as markdown\\n```bash\\nt2 pay https://mpp.t2000.ai/jina/v1/read \\\\\\n --data \'{\\"url\\":\\"https://docs.sui.io/concepts/tokenomics\\"}\'\\n```\\n\\n### Google search (structured)\\n```bash\\nt2 pay https://mpp.t2000.ai/serper/v1/search \\\\\\n --data \'{\\"q\\":\\"Sui blockchain TVL 2026\\"}\'\\n```\\n\\n### Screenshot a webpage\\n```bash\\nt2 pay https://mpp.t2000.ai/screenshot/v1/capture \\\\\\n --data \'{\\"url\\":\\"https://example.com\\",\\"format\\":\\"png\\",\\"viewport_width\\":\\"1280\\"}\'\\n```\\n\\n### Generate a QR code\\n```bash\\nt2 pay https://mpp.t2000.ai/qrcode/v1/generate \\\\\\n --data \'{\\"data\\":\\"https://t2000.ai\\",\\"size\\":\\"400x400\\"}\'\\n```\\n\\n### Convert HTML to PDF\\n```bash\\nt2 pay https://mpp.t2000.ai/pdfshift/v1/convert \\\\\\n --data \'{\\"source\\":\\"https://t2000.ai/docs\\"}\'\\n```\\n\\n### Run a Replicate model\\n```bash\\nt2 pay https://mpp.t2000.ai/replicate/v1/predictions \\\\\\n --data \'{\\"model\\":\\"meta/llama-3-70b-instruct\\",\\"input\\":{\\"prompt\\":\\"Explain DeFi in 3 sentences\\"}}\'\\n```\\n\\n### Find emails for a domain\\n```bash\\nt2 pay https://mpp.t2000.ai/hunter/v1/search \\\\\\n --data \'{\\"domain\\":\\"mystenlabs.com\\"}\'\\n```\\n\\n### Look up an IP address\\n```bash\\nt2 pay https://mpp.t2000.ai/ipinfo/v1/lookup \\\\\\n --data \'{\\"ip\\":\\"8.8.8.8\\"}\'\\n```\\n\\n### Search for flights\\n```bash\\nt2 pay https://mpp.t2000.ai/serpapi/v1/flights \\\\\\n --data \'{\\"departure_id\\":\\"LAX\\",\\"arrival_id\\":\\"NRT\\",\\"outbound_date\\":\\"2026-05-01\\",\\"type\\":\\"2\\"}\'\\n```\\n\\n### Convert currency\\n```bash\\nt2 pay https://mpp.t2000.ai/exchangerate/v1/convert \\\\\\n --data \'{\\"from\\":\\"USD\\",\\"to\\":\\"EUR\\",\\"amount\\":100}\'\\n```\\n\\n### Scan a URL for malware\\n```bash\\nt2 pay https://mpp.t2000.ai/virustotal/v1/scan \\\\\\n --data \'{\\"url\\":\\"https://suspicious-site.com\\"}\'\\n```\\n\\n### Shorten a URL\\n```bash\\nt2 pay https://mpp.t2000.ai/shortio/v1/shorten \\\\\\n --data \'{\\"url\\":\\"https://example.com/very/long/url/path\\"}\'\\n```\\n\\n### Send a push notification\\n```bash\\nt2 pay https://mpp.t2000.ai/pushover/v1/push \\\\\\n --data \'{\\"user\\":\\"USER_KEY\\",\\"message\\":\\"Your agent has a message!\\"}\'\\n```\\n\\n## Flow (automatic)\\n1. Makes initial HTTP request to the URL\\n2. If 402: reads x402 challenge for amount and terms\\n3. If price <= --max-price: pays via Sui USDC\\n4. Retries with credential header\\n5. Returns the API response body\\n\\n## Safety\\n- If requested price exceeds --max-price, payment is refused (no funds spent)\\n- Default max-price: $1.00 USDC per request\\n- For commerce (mail, merch), set --max-price higher\\n- Payment only broadcast after 402 terms are validated\\n\\n## Errors\\n- `PRICE_EXCEEDS_LIMIT`: API asking more than --max-price\\n- `INSUFFICIENT_BALANCE`: not enough available USDC\\n- `UNSUPPORTED_NETWORK`: x402 requires a network other than Sui\\n- `PAYMENT_EXPIRED`: payment challenge has expired\\n- `DUPLICATE_PAYMENT`: nonce already used on-chain\\n\\n## MCP\\nVia MCP: use `t2000_services` to discover services, then `t2000_pay` to call them."},{"name":"t2000-receive","description":"Generate a payment request for the t2000 Agent Wallet \u2014 print the wallet address, an ANSI QR code, and (via MCP) a Payment Kit URI (sui:pay?\u2026). Use when asked to receive a payment, share a wallet address, create a payment link, or set up a fund-me link.","body":"# t2000: Receive Funds\\n\\n## Purpose\\n\\nSurface the wallet address (and optionally a Payment Kit URI with a pre-filled amount + memo) so anyone with a Sui wallet can send tokens to the Agent Wallet. Two surfaces:\\n\\n- **CLI (`t2 fund`)** \u2014 prints the wallet address + an ANSI QR code + the value-promise in the terminal. Minimal; no amount or memo.\\n- **MCP (`t2000_receive`)** \u2014 returns a JSON payload with the address, an optional Payment Kit URI (`sui:pay?\u2026`), a nonce, plus an optional amount / currency / memo / label. Use this when the LLM is building a payment-request flow.\\n\\n## Rules\\n\\n1. **Receive is non-custodial.** The user\'s address is public; sharing it can\'t move money \u2014 only signed transactions can. Don\'t add scary disclaimers; the operation is safe.\\n2. **Show the QR + the address text.** Some users scan, some copy. Both surfaces.\\n3. **No PIN, no sign-in.** v4 wallets are plain Bech32; `t2 fund` is a pure read with no authentication step.\\n4. **Default currency is USDC.** When asking the user to fund the wallet, USDC is the most useful (every paid service is USDC-denominated, USDC sends are gasless). USDsui also works.\\n5. **Don\'t generate a Payment Kit URI without an amount unless asked.** A bare address scans just as well; URIs with amounts force the sender into a particular tx shape.\\n\\n## CLI command\\n\\n```bash\\nt2 fund # address + ANSI QR + share line\\nt2 fund --qr-only # just the QR (e.g. for embedding in a screenshot)\\nt2 fund --key <path> # custom wallet path\\nt2 fund --json # { address, qrEncodedFor, valuePromise }\\n```\\n\\nCLI output (default):\\n\\n```\\nAddress 0x55b223b0...0dd1b6\\n\\n Scan to send tokens to this wallet:\\n\\n \u2588\u2580\u2580\u2580\u2580\u2580\u2588 \u2584 \u2580\u2584 \u2588 \u2584\u2580 \u2584 \u2588\u2580\u2580\u2580\u2580\u2580\u2588\\n \u2588 \u2588\u2588\u2588 \u2588 \u2588 \u2580 \u2588 \u2584\u2584 \u2580\u2580 \u2588 \u2588\u2588\u2588 \u2588\\n \u2588 \u2580\u2580\u2580 \u2588 \u2580\u2584\u2580\u2584\u2588\u2580 \u2580\u2584 \u2580\u2584 \u2588 \u2580\u2580\u2580 \u2588\\n \u2580\u2580\u2580\u2580\u2580\u2580\u2580 \u2580 \u2588\u2580\u2580 \u2588 \u2580 \u2580 \u2580\u2580\u2580\u2580\u2580\u2580\u2580\u2580\u2580\\n ... (truncated)\\n\\n Or share `0x55b223b0...0dd1b6` directly.\\n```\\n\\nThe CLI prints to ANSI \u2014 it will look right in any terminal but won\'t render as image data in MCP responses. Use the MCP tool for a structured JSON response.\\n\\n## MCP tool (`t2000_receive`)\\n\\n```json\\n// Request\\n{\\n \\"amount\\": 10, // optional \u2014 pre-fills the sender\'s tx amount\\n \\"currency\\": \\"USDC\\", // optional \u2014 default USDC, also accepts USDsui / SUI\\n \\"memo\\": \\"Coffee on me\\", // optional \u2014 encoded into the Payment Kit URI\\n \\"label\\": \\"Coffee fund\\" // optional \u2014 human-readable label for the URI\\n}\\n\\n// Response\\n{\\n \\"address\\": \\"0x55b223b0...0dd1b6\\",\\n \\"uri\\": \\"sui:pay?recipient=0x55b223b0...&amount=10000000&coinType=0xdba34672...::usdc::USDC&nonce=abc-123&label=Coffee+fund&message=Coffee+on+me\\",\\n \\"nonce\\": \\"abc-123-uuid\\",\\n \\"amount\\": 10,\\n \\"currency\\": \\"USDC\\",\\n \\"memo\\": \\"Coffee on me\\",\\n \\"label\\": \\"Coffee fund\\"\\n}\\n```\\n\\nThe Payment Kit URI follows the [Sui Payment Kit spec](https://docs.sui.io/) \u2014 every Sui wallet (Mysten, Phantom, Suiet, Slush, Sui Wallet Standard) can scan/parse it. If you omit `amount`, the URI is a \\"bring your own amount\\" link that the sender fills in.\\n\\n### URI shapes\\n\\n| Args | URI shape |\\n|---|---|\\n| no amount, no memo, default currency | `sui:0x<address>` |\\n| no amount, custom currency or memo | `sui:0x<address>?currency=USDsui&memo=\u2026` |\\n| with amount | `sui:pay?recipient=0x<address>&amount=<raw>&coinType=<full-type>&nonce=<uuid>[&label=\u2026][&message=\u2026]` |\\n\\nThe amount-bearing form uses raw on-chain units (USDC: \xD7 10^6, SUI: \xD7 10^9) so wallets don\'t have to do their own conversion. The `nonce` is a UUID v4 minted at request time; senders include it in the tx metadata so the receiving agent can correlate the inflow back to the request.\\n\\n## When to use which surface\\n\\n| Need | Use |\\n|---|---|\\n| \\"What\'s my wallet address?\\" | `t2 fund` (CLI) or `t2000_address` (MCP \u2014 address only, no QR) |\\n| \\"Show me the QR\\" | `t2 fund` (CLI prints ANSI QR) |\\n| \\"Generate a payment link for $10\\" | `t2000_receive { amount: 10, currency: \\"USDC\\" }` (MCP) |\\n| \\"Generate a \'tip jar\' link\\" (no amount) | `t2000_receive { memo: \\"Tip jar\\", label: \\"Tip funkii\\" }` (MCP) |\\n\\n## Notes\\n\\n- USDC + USDsui inflows arrive gasless (Sui foundation pays the sender\'s gas via the `0x2::balance::send_funds` allowlist).\\n- SUI inflows require the sender to have SUI for their own gas.\\n- Once the funds land, run `t2 balance` (CLI) or `t2000_balance` (MCP) to verify. Inflows show up within ~1 block (~500 ms).\\n- This skill is the receive-half of \\"Audric Pay\\". The send-half is the `t2000-send` skill.\\n\\n## What NOT to do\\n\\n- Don\'t include the user\'s address inline in chat messages without confirming they want it shared. It\'s public \u2014 but politeness matters.\\n- Don\'t generate a one-off Payment Kit URI for every conversation. The bare address works fine for repeated transfers.\\n- Don\'t redirect users to audric.ai for receive flows \u2014 the Agent Wallet handles receive natively. (Audric Pay\'s hosted UI is for users who DON\'T have the CLI.)"},{"name":"t2000-send","description":"Send USDC, USDsui, or SUI from the t2000 Agent Wallet to another Sui address. Use when asked to pay someone, transfer funds, send money, tip a creator, or make a payment to a specific Sui address, SuiNS name, or saved contact. Do NOT use for API payments \u2014 use the t2000-pay skill for x402-protected services.","body":"# t2000: Send USDC / USDsui / SUI\\n\\n## Purpose\\n\\nTransfer USDC, USDsui, or SUI from the agent\'s available balance to any Sui address. **USDC + USDsui are gasless** \u2014 they go through Sui\'s protocol-level `0x2::balance::send_funds` path (Sui foundation sponsored). **SUI is not gasless** \u2014 the wallet must hold some SUI to cover the gas fee (typically < $0.0002).\\n\\n## Rules\\n\\n1. **Asset is REQUIRED.** v4 has no implicit USDC default. `t2 send 5 alice.sui` exits with a clear error pointing at the missing `<asset>` arg. Always pass one of `USDC | USDsui | SUI`.\\n2. **Only USDC / USDsui / SUI are accepted.** Other tokens (e.g. USDY, USDT, USDe) are rejected with `unsupported asset`. To send a different asset, the user first swaps it via `t2 swap` (or audric.ai) into USDC, USDsui, or SUI.\\n3. **Validate the recipient first.** Names \u2192 SuiNS resolves (`alice.sui`). Raw addresses \u2192 `isValidSuiAddress()`. The SDK throws clear errors (`INVALID_ADDRESS`, `SUINS_NOT_REGISTERED`); don\'t guess.\\n4. **Prefer SuiNS names.** `alice.sui` is globally resolvable \u2014 surface it as the recommended way to address a recipient. (There is no local contacts/alias map.)\\n5. **Sends are single-write.** Each transfer is its own intent. If you need send + something else, sequence them across turns.\\n6. **Amount precision matters.** Floor to the asset\'s decimals (USDC + USDsui: 6, SUI: 9). Never round up \u2014 `Math.round` can produce a number larger than the on-chain balance and the transfer will fail simulation.\\n7. **Multi-recipient = multiple sends.** A \\"send to A, B, C\\" request emits N sequential `t2 send` invocations (CLI) or N `t2000_send` tool calls (MCP). Each is atomic.\\n8. **Limits apply to every write (CLI and MCP).** Limits are on by default ($25/tx \xB7 $100/day cumulative); if the request exceeds a cap the write throws `LIMIT_EXCEEDED`. Override one time with `--force` (CLI).\\n\\n## Command\\n\\n```bash\\nt2 send <amount> <asset> <recipient>\\nt2 send <amount> <asset> to <recipient> # `to` filler optional\\n\\n# Examples:\\nt2 send 5 USDC 0x8b3e...d412 # 5 USDC to a hex address (gasless)\\nt2 send 5 USDsui alice.sui # 5 USDsui to a SuiNS name (gasless)\\nt2 send 50 USDC to mission69b@audric # @audric handle (gasless)\\nt2 send 0.1 SUI 0x8b3e...d412 # 0.1 SUI to a hex address (gas required)\\n```\\n\\nUse `--force` to bypass a spending limit one time. Use `--key <path>` to point at a non-default wallet file.\\n\\n## Output (default)\\n\\n```\\n\u2713 Sent $5.00 USDC \u2192 alex.sui (0x8b3e...d412)\\n Gas: gasless \u26A1\\n Tx: https://suiscan.xyz/mainnet/tx/0xdigest...\\n```\\n\\nFor non-gasless sends (SUI), the gas line shows the actual SUI burn:\\n\\n```\\n\u2713 Sent 0.1000 SUI \u2192 0x8b3e...d412\\n Gas: 0.000123 SUI\\n Tx: https://suiscan.xyz/mainnet/tx/0xdigest...\\n```\\n\\n## Output (--json)\\n\\n```json\\n{\\n \\"tx\\": \\"0xdigest...\\",\\n \\"amount\\": 5,\\n \\"to\\": \\"0x8b3e...d412\\",\\n \\"suinsName\\": \\"alex.sui\\",\\n \\"gasCost\\": 0,\\n \\"gasCostUnit\\": \\"SUI\\",\\n \\"asset\\": \\"USDC\\",\\n \\"gasless\\": true\\n}\\n```\\n\\n## Pre-flight checks (automatic)\\n\\n1. Sufficient asset balance (USDC / USDsui / SUI as requested).\\n2. For SUI sends only: sufficient SUI for gas.\\n3. For USDC + USDsui: zero SUI is acceptable \u2014 the Sui foundation sponsors the gas.\\n4. Limit check (CLI only): per-tx cap (any asset) + daily-send cap (any asset). Override with `--force`.\\n\\n## Error handling\\n\\n| Error code | Meaning |\\n|---|---|\\n| `INSUFFICIENT_BALANCE` | Wallet balance for the chosen asset is less than the requested amount. |\\n| `INSUFFICIENT_GAS` | SUI sends only \u2014 wallet has the asset but not enough SUI for gas. Suggest a swap. |\\n| `INVALID_ADDRESS` | Recipient is not a valid Sui hex address. |\\n| `INVALID_ASSET` | Asset is missing or not in the allowlist (USDC / USDsui / SUI). |\\n| `SUINS_NOT_REGISTERED` | The `.sui` name isn\'t registered. |\\n| `CONTACT_NOT_FOUND` | The name isn\'t a SuiNS name, an @audric handle, or a saved local contact. |\\n| `LIMIT_EXCEEDED` | CLI hit a `t2 limit set` cap. Use `--force` to override. |\\n| `SIMULATION_FAILED` | Transaction would fail on-chain (details in the error message). |\\n\\n## Recipient resolution flow\\n\\nThe SDK (`T2000.resolveRecipient`) handles resolution in this priority order:\\n\\n1. **Hex address** (starts with `0x`) \u2192 validated via `isValidSuiAddress()`. If invalid \u2192 `INVALID_ADDRESS`.\\n2. **SuiNS name** (`*.sui`) \u2192 resolves via SuiNS registry. If unregistered \u2192 `SUINS_NOT_REGISTERED`.\\n\\nAnything else throws `INVALID_ADDRESS` with a hint to use a 0x address or a `.sui` name. (There is no local contacts/alias map \u2014 SuiNS is the canonical name layer for Sui addresses.)\\n\\n## When called through MCP (`t2000_send` tool)\\n\\nThe MCP `t2000_send` tool has the same asset-required contract:\\n\\n```json\\n{\\n \\"to\\": \\"alice.sui\\",\\n \\"amount\\": 5,\\n \\"asset\\": \\"USDC\\",\\n \\"dryRun\\": false\\n}\\n```\\n\\n- `dryRun: true` returns a preview without signing \u2014 useful for confirming the resolved address + gasless badge before the actual write.\\n- `asset` is REQUIRED \u2014 calls without it return an error.\\n- Both CLI and MCP writes honor `t2 limit set` caps (enforced in `@t2000/sdk`). Default caps: $25/tx \xB7 $100/day cumulative."},{"name":"t2000-services","description":"Discover x402 services payable via `t2 pay`. Use when the user asks \\"what can I pay for?\\", \\"what AI models are available?\\", \\"show me the service catalog\\", \\"is there a weather API?\\", or any other discovery question. Pairs with the t2000-pay skill (discovery first, then pay).","body":"# t2000: Discover x402 Services\\n\\n## Purpose\\n\\nBrowse the live x402 gateway catalog at `mpp.t2000.ai` to find a service that matches the user\'s intent (chat, image gen, search, weather, email, code exec, mail, etc.) before calling `t2 pay`. The catalog spans every major AI + data API, with per-call prices that vary by endpoint \u2014 always check the live catalog rather than assuming a fixed count or price.\\n\\n## Rules\\n\\n1. **Discover before paying.** Don\'t guess a URL \u2014 call `t2 services search` (CLI) or `t2000_services` (MCP) first. Service paths + pricing change as the gateway expands.\\n2. **Pick the cheapest endpoint that satisfies the user.** Many services have multiple tiers (e.g. `openai/v1/chat/completions` at $0.01 vs `openai/v1/audio/speech` at $0.05). Surface options.\\n3. **Surface pricing to the user before signing.** Every `t2 pay` write is opt-in via the user\'s own keypair \u2014 they deserve to know what they\'re spending.\\n4. **Live source of truth.** The catalog is fetched live from `https://mpp.t2000.ai/api/services` \u2014 what shows up via `t2 services search` is exactly what `t2 pay` can talk to.\\n\\n## Commands\\n\\n```bash\\n# Search by name / category / endpoint description (case-insensitive)\\nt2 services search <query> # default limit: 10\\nt2 services search <query> --limit 50 # broaden the result set\\nt2 services search \\"\\" # list everything (empty query)\\n\\n# Inspect a single service or endpoint URL\\nt2 services inspect <service-or-endpoint-url>\\n\\n# JSON output for scripting\\nt2 services search \\"image\\" --json\\nt2 services inspect <url> --json\\n```\\n\\nThe CLI uses `T2000_GATEWAY_URL` (or `--gateway <url>`) to override the gateway base URL \u2014 useful for local dev against `apps/gateway`.\\n\\n## Example workflow\\n\\n### \\"What AI chat models are available?\\"\\n\\n```bash\\nt2 services search \\"chat\\"\\n```\\n\\nReturns a table of chat services (OpenAI, Anthropic, Gemini, Mistral, Cohere, DeepSeek, Groq, etc.) with cheapest endpoint price + base URL.\\n\\n### \\"How much does GPT-4o cost?\\"\\n\\n```bash\\nt2 services inspect https://mpp.t2000.ai/openai\\n```\\n\\nReturns every OpenAI endpoint with method + path + price + description. The user picks one (e.g. `/v1/chat/completions` at $0.01) and copies the URL into a `t2 pay <url>` call.\\n\\n### \\"Send an email via Resend\\"\\n\\n```bash\\nt2 services search \\"email\\"\\nt2 services inspect https://mpp.t2000.ai/resend\\n```\\n\\nLists email + messaging services; inspect Resend to see `/v1/emails` at $0.05.\\n\\n### \\"What\'s the price of SUI?\\" (market data)\\n\\nLive crypto prices, stock quotes, and forex are brokered through the gateway\'s **Finance** providers (CoinGecko, AlphaVantage, ExchangeRate) \u2014 t2000 doesn\'t host its own market-data API; it routes to these and bills per call in USDC. (Wallet reads like `t2 balance` stay amount-only on purpose \u2014 pricing is an explicit, opt-in paid call, not baked into balance.)\\n\\n```bash\\nt2 services search \\"price\\"\\nt2 services inspect https://mpp.t2000.ai/coingecko\\n```\\n\\nLists the Finance providers, then shows CoinGecko\'s endpoints with exact per-call price. Copy the endpoint URL into `t2 pay <url>` to fetch the quote. (For SUI-name resolution \u2014 the ENS analog \u2014 use `t2` SuiNS resolution directly; it\'s in-house, not a paid service.)\\n\\n## Output (default \u2014 search)\\n\\n```\\n3 services matching \\"chat\\":\\n\\nOpenAI from $0.01 [ai, chat]\\n url https://mpp.t2000.ai/openai\\n about OpenAI Chat Completions API\\n\\nAnthropic from $0.01 [ai, chat]\\n url https://mpp.t2000.ai/anthropic\\n about Claude messages API\\n\\nMistral from $0.005 [ai, chat]\\n url https://mpp.t2000.ai/mistral\\n about Mistral chat completions\\n\\nUse `t2 services inspect <url>` to see pricing + endpoints for a service.\\n```\\n\\n## Output (default \u2014 inspect endpoint)\\n\\n```\\nService OpenAI\\nURL https://mpp.t2000.ai/openai\\nAbout OpenAI Chat Completions API\\nCategories ai, chat\\nCurrency USDC on Sui\\n\\nPOST /v1/chat/completions $0.01 Chat completions (gpt-4o, gpt-4o-mini)\\n url https://mpp.t2000.ai/openai/v1/chat/completions\\n\\nPay with: `t2 pay https://mpp.t2000.ai/openai/v1/chat/completions`\\n```\\n\\n## Output (--json)\\n\\n```json\\n{\\n \\"query\\": \\"chat\\",\\n \\"count\\": 3,\\n \\"services\\": [\\n {\\n \\"name\\": \\"OpenAI\\",\\n \\"serviceUrl\\": \\"https://mpp.t2000.ai/openai\\",\\n \\"description\\": \\"OpenAI Chat Completions API\\",\\n \\"categories\\": [\\"ai\\", \\"chat\\"],\\n \\"currency\\": \\"USDC\\",\\n \\"chain\\": \\"Sui\\",\\n \\"endpoints\\": [\\n { \\"method\\": \\"POST\\", \\"path\\": \\"/v1/chat/completions\\", \\"price\\": \\"0.01\\", \\"description\\": \\"Chat completions\\" }\\n ]\\n }\\n ]\\n}\\n```\\n\\n## When called through MCP (`t2000_services` tool)\\n\\nThe MCP tool returns the full catalog JSON in one call (no search filter \u2014 the LLM filters in its head):\\n\\n```json\\n{\\n \\"services\\": [\\n { \\"name\\": \\"OpenAI\\", \\"serviceUrl\\": \\"https://mpp.t2000.ai/openai\\", \\"endpoints\\": [...] },\\n { \\"name\\": \\"Anthropic\\", \\"serviceUrl\\": \\"https://mpp.t2000.ai/anthropic\\", \\"endpoints\\": [...] },\\n ...\\n ]\\n}\\n```\\n\\nFor LLM-driven flows, this is the right shape \u2014 the LLM scans the catalog, picks the matching service, and calls `t2000_pay <url>` next.\\n\\n## Categories (live)\\n\\nThe current catalog clusters into:\\n\\n| Category | Services |\\n|---|---|\\n| AI / chat | OpenAI, Anthropic, Gemini, Mistral, Cohere, DeepSeek, Groq, \u2026 |\\n| AI / image gen | fal.ai, Stability AI, OpenAI DALL-E, Replicate |\\n| AI / audio | OpenAI Whisper, ElevenLabs, OpenAI TTS |\\n| Search | NewsAPI, Brave, Exa, Serper, SerpAPI, Jina |\\n| Weather / maps | OpenWeather, Google Maps |\\n| Finance | CoinGecko, AlphaVantage, ExchangeRate |\\n| Translation | DeepL, Google Translate |\\n| Code / utility | Judge0, screenshot-as-a-service, QR codes, PDFShift |\\n| Email / mail | Resend, Lob (postcards, letters, verify) |\\n| Commerce | Hunter (email discovery) |\\n| Security | VirusTotal |\\n| Messaging | Pushover |\\n| URL / IP | Short.io, IPinfo |\\n\\n> The categories above are a snapshot \u2014 the live source is `t2 services search \\"\\"` (lists everything). New services land regularly.\\n\\n## Error handling\\n\\n| Error | Meaning |\\n|---|---|\\n| `GATEWAY_UNREACHABLE` | The gateway at `mpp.t2000.ai/api/services` is down or DNS is failing. Retry; if persistent, status page is at `t2000.ai`. |\\n| `No services match` | The search query returned zero hits. Suggest a broader query or `t2 services search \\"\\"` to list everything. |\\n| `No service matches <url>` (inspect) | The URL isn\'t in the catalog. Run `t2 services search` to find the right URL first. |\\n\\n## What NOT to do\\n\\n- Don\'t hardcode service URLs in your prompts. The catalog is the source of truth.\\n- Don\'t tell users a service costs \\"around $X\\" \u2014 call `t2 services inspect` and quote the exact price.\\n- Don\'t bundle `t2 services search` + `t2 pay` into a single hidden step. Show the user what you found before paying."},{"name":"t2000-setup","description":"Set up a t2000 Agent Wallet end-to-end on the user\'s machine. Use when the user says \\"set up t2000\\", \\"install the wallet\\", \\"create my Agent Wallet\\", \\"connect t2000 to Claude / Cursor\\", or pastes a one-prompt install URL. Covers wallet creation, optional spending limits, and MCP wiring. Read this first when bootstrapping a new user; the other skills assume this has run.","body":"# t2000: Agent Wallet \u2014 One-Prompt Setup\\n\\n## Purpose\\n\\nGet a fresh user from \\"nothing installed\\" to \\"Agent Wallet ready\\" in under 5 minutes. This is the canonical entry point for the **one-prompt install** UX:\\n\\n```\\nRun curl -sL https://t2000.ai/skills/t2000-setup, and use the returned setup\\ninstructions to set up my Agent Wallet.\\n```\\n\\nWhen invoked through that prompt, the LLM fetches this file, then executes the steps below in order.\\n\\n## Rules\\n\\n1. **Walk the steps in order.** Each step depends on the previous one. Skipping breaks setup.\\n2. **Stop at the first failure.** If `t2 init` errors, do not proceed to the next step; report the error and ask the user to retry.\\n3. **Confirm AI-client choice before MCP install.** Don\'t assume Claude Desktop vs. Cursor vs. Windsurf \u2014 ask which they use, then pick the matching config path.\\n4. **Setup is read + write \u2014 show, then ask.** Echo each command you\'re about to run. The user runs it (or confirms you can). Never silently shell out.\\n5. **No PIN. No encryption.** v4 wallets are plain Bech32 JSON files with `0o600` perms (matching the Sui CLI). The user owns the file; back it up via `t2 export`.\\n6. **Prime this session for x402 payments.** Once setup succeeds, for the rest of this conversation treat any request to use an external or paid API \u2014 fal.ai, ElevenLabs, OpenAI, CoinGecko, Lob, etc. \u2014 as something this wallet CAN do via `t2000_pay`. Discover the endpoint with `t2000_services`, then pay. Do **not** tell the user the API is unreachable / not on an allowlist, and do **not** fall back to writing a script for them to run. The wallet IS the connector.\\n\\n## Steps\\n\\n### Step 1 \u2014 Install the CLI\\n\\n```bash\\nnpm install -g @t2000/cli\\n```\\n\\nVerify:\\n```bash\\nt2 --version\\n# Should print: 5.x.x\\n```\\n\\nIf `npm` is missing, point the user to https://nodejs.org/ (Node 18+).\\n\\n> **Binary naming.** `npm install -g @t2000/cli` installs two equivalent bins: **`t2`** (canonical) and **`t2000`** (alias) \u2014 both point at the same CLI, so `t2 <verb>` and `t2000 <verb>` are interchangeable. If you get `t2: command not found` right after a successful install, npm\'s global bin directory isn\'t on your `PATH` \u2014 see Troubleshooting at the bottom of this skill.\\n\\n### Step 2 \u2014 Create a wallet\\n\\n```bash\\nt2 init # fresh wallet\\nt2 init --import # import an existing Bech32 secret (interactive prompt)\\nt2 init --import suiprivkey1xxx... # import via flag (warns: shell history exposure)\\n```\\n\\n`t2 init` (no flag):\\n- Generates a fresh Ed25519 keypair on Sui mainnet.\\n- Writes the plain Bech32 private key to `~/.t2000/wallet.key` (mode `0o600`).\\n- Prints the wallet address.\\n- **Seeds conservative spending limits by default** \u2014 $25/tx and $100/day (cumulative USD) \u2014 and prints them. Adjust or clear in Step 4.\\n\\n`t2 init --import`:\\n- Prompts for a `suiprivkey1...` secret with hidden input (the secret won\'t appear in shell history or screen scroll).\\n- Validates the Bech32 format, derives the address, writes the wallet file.\\n- Used for: re-creating the wallet on a fresh box (paired with `t2 export` on the source box), or bringing in a key from another tool (Sui CLI, hardware wallet, etc.).\\n\\n> **Upgrading from v3 (PIN-encrypted)?** v4 doesn\'t auto-migrate v3 AES wallets \u2014 a v3 file at `~/.t2000/wallet.key` will throw `WALLET_CORRUPT`. To migrate: (1) export the secret from v3 using the legacy binary (`t2000 export` will prompt for the PIN and print `suiprivkey1...`), (2) move or delete the v3 file at `~/.t2000/wallet.key`, (3) `t2 init --import` and paste the secret. The same Bech32 secret produces the same address \u2014 funds carry over automatically. (Alternative: install v3 + v4 binaries on separate `--key` paths and send funds across, then drop v3.)\\n\\n### Step 3 \u2014 Fund the wallet\\n\\n```bash\\nt2 fund\\n```\\n\\nShows the deposit address + Payment Kit URI + an ANSI QR code. Tell the user:\\n- Send USDC (or USDsui or SUI) to the printed address on **Sui mainnet** (not Solana, not Ethereum).\\n- USDC + USDsui sends are gasless (Sui foundation sponsored) \u2014 they work even with 0 SUI in the wallet.\\n- For swaps via Cetus, the wallet needs a small SUI balance (~0.05 SUI covers many swaps; cost is typically < $0.01 each).\\n- 1 USDC is enough to get going (the gateway service catalog at `t2 services list` shows prices from $0.005).\\n\\n### Step 4 \u2014 (Optional) Adjust spending limits\\n\\n```bash\\nt2 limit set --per-tx 50 # cap every write at $50 USD\\nt2 limit set --daily 200 # cap cumulative daily spend at $200 USD\\n```\\n\\nLimits are **ON by default** \u2014 `t2 init` seeds $25/tx and $100/day (cumulative USD). The `t2 limit` command rewrites `~/.t2000/config.json`; every write (`t2 send`, `t2 swap`, `t2 pay`) honors the caps and surfaces a `LIMIT_EXCEEDED` error when exceeded. Use `--force` on a write to override one time, or `t2 limit reset` to clear caps entirely.\\n\\n> **Limits gate ALL writes \u2014 CLI *and* MCP.** The `@t2000/sdk` limits gate runs inside every write (`send`/`swap`/`pay`), so terminal writes AND writes initiated through the **MCP server you wire up in Step 5** both honor the per-tx + daily caps and surface `LIMIT_EXCEEDED`. (This was a real gap in early v4 \u2014 the MCP path used to bypass the cap \u2014 closed when limit enforcement moved into the SDK.) Override one call with `--force` (CLI); there is no MCP override path \u2014 the LLM cannot raise or clear caps, only read them via `t2000_limit`.\\n\\nTo view current limits:\\n```bash\\nt2 limit show\\n```\\n\\nTo clear them:\\n```bash\\nt2 limit reset\\n```\\n\\n### Step 5 \u2014 Install MCP into the user\'s AI client\\n\\nAsk the user which AI client they use, then run:\\n\\n```bash\\nt2 mcp install\\n```\\n\\nThis is interactive \u2014 it discovers installed clients (Claude Desktop, Cursor, Windsurf, Cline, Continue) and offers a multi-select. The CLI writes the correct config block into each chosen client.\\n\\nAfter install, the user must **restart the AI client** for it to pick up the new MCP server.\\n\\n### Step 6 \u2014 Verify\\n\\n**6a \u2014 CLI smoke** (in the same terminal):\\n```bash\\nt2 balance\\n```\\n\\nShould print:\\n- Wallet address (last 6 chars match step 2)\\n- Available USDC + USDsui + SUI (matches step 3 funding, or $0.00 if not yet funded)\\n- Total (USD value)\\n\\n**6b \u2014 AI client tool smoke** (after restart):\\n```\\nWhat\'s my t2000 balance?\\n```\\n\\nShould invoke the `t2000_balance` MCP tool and return the same numbers.\\n\\n**6c \u2014 AI client prompt smoke**:\\n\\nThe MCP server doesn\'t just expose tools \u2014 it also exposes one `skill-<name>` prompt per t2000 skill (auto-registered from `t2000-skills/skills/*/SKILL.md`). Type `/` in the AI client\'s chat input to open the prompt picker. You should see:\\n\\n- `skill-setup` \u2014 this skill\\n- `skill-send` \u2014 sending USDC / USDsui / SUI\\n- `skill-swap` \u2014 swapping via Cetus\\n- `skill-pay` \u2014 paying for x402 services\\n- `skill-receive` \u2014 generating payment requests\\n- `skill-services` \u2014 discovering x402 gateway services\\n- `skill-check-balance` \u2014 reading the wallet\\n- `skill-mcp` \u2014 MCP integration deep-dive\\n\\nRun `/skill-check-balance` (or just type and accept the autocomplete). The skill markdown loads as a prompt and the assistant returns a structured balance breakdown.\\n\\n> **Tip \u2014 triggering the wallet in a *fresh* session.** When you start a brand-new chat and ask for an external/paid API by name (e.g. \\"generate an image via fal.ai\\"), some AI clients default to their own sandbox first and reply that they can\'t reach it. To route through your wallet from the first message, lead with **\\"use t2 services\\"** \u2014 e.g. *\\"Use t2 services to generate a hero image via fal.ai and voice it with ElevenLabs.\\"* That tells the client to load the `t2000_*` tools and pay via x402. (The recipe prompts on developers.t2000.ai already start this way.)\\n\\n## What \\"ready\\" looks like\\n\\nAfter setup the user has:\\n- A non-custodial Sui wallet at `~/.t2000/wallet.key` (plain Bech32 JSON, `0o600` perms, **no PIN**).\\n- Optional USDC / USDsui / SUI funded on Sui mainnet.\\n- Optional spending limits configured.\\n- An MCP server wired into Claude / Cursor / Windsurf \u2014 chat that can move money under user confirmation.\\n\\n## What setup does NOT do\\n\\n- **Does not move money.** Setup is read + config only. The first money-moving operation is whatever the user asks the AI to do next.\\n- **Does not back up the private key.** The Bech32 key lives in `~/.t2000/wallet.key`. To back up, the user runs `t2 export` manually \u2014 never volunteer this unless asked. v4 has no PIN, so anyone with read access to the file owns the wallet.\\n- **Does not move money or change limits.** Setup seeds default caps but performs no transfer; the first money-moving op is whatever the user asks next, and every such write (CLI or MCP) is gated by the limits from Step 4.\\n\\n## Next steps to suggest\\n\\nAfter verify succeeds, surface a short menu of natural next moves:\\n- \\"Send USDC to someone\\" \u2192 `t2000-send`\\n- \\"Swap tokens via Cetus\\" \u2192 `t2000-swap`\\n- \\"Pay for a service via x402\\" \u2192 `t2000-pay`\\n- \\"Generate a payment request\\" \u2192 `t2000-receive`\\n- \\"See available paid services\\" \u2192 `t2000-services`\\n- \\"Connect more AI clients\\" \u2192 `t2000-mcp`\\n- \\"See what else t2 can do\\" \u2192 run `t2 --help` or browse https://developers.t2000.ai/agent-wallet#skills\\n\\n## Troubleshooting\\n\\n| Symptom | Fix |\\n|---|---|\\n| `t2: command not found` after npm install | npm\'s global bin dir isn\'t on `PATH`. Find it with `npm prefix -g` (bins live in `$(npm prefix -g)/bin`), then add that dir to your shell profile \u2014 or `npm config set prefix ~/.npm-global` for a durable user-level prefix. Both `t2` and `t2000` ship in every install. |\\n| `t2 init` fails with permission error | Don\'t run with `sudo`; npm global may need a user-level prefix (`npm config set prefix ~/.npm-global`) |\\n| `t2 init` fails with `WALLET_EXISTS` | A file already lives at `~/.t2000/wallet.key`. If it\'s a v3 file you no longer need, move/delete it. If you still need it, point v3 + v4 at separate paths via `--key`. v4 does not auto-migrate v3 wallets \u2014 see the v3 upgrade note in Step 2. |\\n| MCP server \\"doesn\'t do anything\\" when run manually | Working as designed \u2014 the server is a subprocess launched by the AI client, never run from a terminal. See the `t2000-mcp` skill. |\\n| AI client doesn\'t see `t2000_*` tools after install | Restart the client. If still missing, check the per-client config path printed by `t2 mcp install`. |"},{"name":"t2000-swap","description":"Swap tokens on Sui via Cetus Aggregator (20+ DEXs, best-route across SUI, USDC, USDsui, USDT, USDe, ETH, GOLD, NAVX, WAL, vSUI, and more). Use when asked to swap, trade, convert, exchange, or \\"turn X into Y\\". Do not use for sending \u2014 use the t2000-send skill for transfers.","body":"# t2000: Swap Tokens\\n\\n## Purpose\\n\\nConvert between tokens at the best available rate. Cetus Aggregator routes across 20+ DEXs and picks the lowest-price-impact path. Slippage defaults to 1%; configurable up to 5%.\\n\\n**Swaps are NOT gasless.** Unlike `t2 send USDC` / `t2 send USDsui`, Cetus swap transactions require SUI for gas (typically < $0.01 per swap). Ensure the wallet holds a small SUI balance before swapping.\\n\\n## Rules\\n\\n1. **Preview before signing.** Always run `t2 swap <amount> <from> <to> --quote` (or call `t2000_swap` in dry-run via the MCP) and surface `priceImpact` + `toAmount` to the user before broadcasting.\\n2. **Decline obviously bad swaps.** If `priceImpact > 0.5%` (50 bps), warn the user and require explicit confirmation. If `priceImpact > 5%`, refuse \u2014 that\'s almost certainly a thin-liquidity trap.\\n3. **One swap per intent.** Cetus aggregator handles multi-hop internally; don\'t chain `swap` calls.\\n4. **Don\'t auto-decide stables.** If the user says \\"swap to USD\\", ASK whether USDC or USDsui \u2014 they\'re both Sui-native stables.\\n5. **Limits apply to every swap (CLI and MCP).** Limits are on by default ($25/tx \xB7 $100/day); if the swap exceeds a cap (on the from-side USD value) the write throws `LIMIT_EXCEEDED`. Use `--force` (CLI) to override one time.\\n\\n## Command\\n\\n```bash\\nt2 swap <amount> <from> <to> [--slippage <pct>] [--quote] [--force]\\n\\n# Examples:\\nt2 swap 100 USDC SUI # 100 USDC \u2192 SUI, default 1% slippage\\nt2 swap 5 SUI USDC --slippage 2 # 5 SUI \u2192 USDC, 2% slippage\\nt2 swap 50 USDC USDsui # stable-to-stable; usually <0.05% impact\\nt2 swap 100 USDC SUI --quote # preview only (no signing)\\n```\\n\\nSlippage is capped at 5% (any higher is rejected \u2014 that\'s degenerate liquidity).\\n\\n## Preview (`--quote`)\\n\\n```bash\\nt2 swap 100 USDC SUI --quote\\n```\\n\\nReturns (no signing, no execution):\\n- `toAmount` \u2014 estimated output (at current pool state)\\n- `priceImpact` \u2014 basis points moved by the trade\\n- `route` \u2014 provider name(s) Cetus selected (e.g. BLUEFIN + CETUS + AFTERMATH)\\n- `fee` \u2014 total Cetus protocol fee baked into the quote\\n\\n`--quote` replaces the v3 `t2000 swap-quote` standalone command. One verb, one flag.\\n\\n## Fees\\n\\n- **Network gas:** ~0.001-0.01 SUI per swap (self-funded from the wallet).\\n- **Cetus protocol fee:** typically 0.05-0.30% depending on the pool tier (already baked into `toAmount`).\\n- **t2000 / CLI:** zero fee. Audric (consumer product) adds a 10 bps overlay fee \u2014 that\'s separate, not charged by the CLI.\\n\\n## Output (default)\\n\\n```\\n\u2713 Swapped 100 USDC for 49.8721 SUI\\n Price impact: 0.04%\\n Route: USDC \u2192 SUI (Cetus + BLUEFIN)\\n Gas: 0.0038 SUI\\n Tx: https://suiscan.xyz/mainnet/tx/0xdigest...\\n```\\n\\n## Output (--json)\\n\\n```json\\n{\\n \\"tx\\": \\"0xdigest...\\",\\n \\"from\\": \\"USDC\\",\\n \\"to\\": \\"SUI\\",\\n \\"amountIn\\": 100,\\n \\"amountOut\\": 49.8721,\\n \\"priceImpact\\": 0.04,\\n \\"route\\": [\\"CETUS\\", \\"BLUEFIN\\"],\\n \\"fee\\": 0.001,\\n \\"gasCost\\": 0.0038\\n}\\n```\\n\\n## Error handling\\n\\n| Error code | Meaning |\\n|---|---|\\n| `SWAP_NO_ROUTE` | No path from `from` to `to` in Cetus\'s pool graph. Suggest going via USDC as an intermediate. |\\n| `INSUFFICIENT_LIQUIDITY` | The requested size moves the pool too far. Suggest a smaller trade or splitting. |\\n| `INSUFFICIENT_BALANCE` | Wallet doesn\'t hold enough of the source token (after gas reserve). |\\n| `INSUFFICIENT_GAS` | Wallet has the source token but no SUI for gas. Run `t2 swap 1 USDC SUI` (or similar) first to top up gas. |\\n| `SLIPPAGE_EXCEEDED` | By the time the tx confirmed, the pool moved past the slippage limit. Retry with the same params; usually transient. |\\n| `LIMIT_EXCEEDED` | CLI hit a `t2 limit set` cap on the from-side USD value. Use `--force` to override. |\\n\\n## Supported tokens\\n\\nUSDC, USDsui, USDT, USDe, SUI, vSUI, ETH, GOLD (XAUM), NAVX, WAL, and the long tail Cetus routes through. Use the canonical symbol or pass a full coin type (`0x...::module::TYPE`). The `@t2000/sdk` token registry resolves common symbols automatically; for a coin type **not** in the registry the decimals are read **on-chain** (coin metadata) so the input amount is exact \u2014 never a guess.\\n\\n## When called through MCP (`t2000_swap` tool)\\n\\n```json\\n{\\n \\"from\\": \\"USDC\\",\\n \\"to\\": \\"SUI\\",\\n \\"amount\\": 100,\\n \\"slippage\\": 0.01\\n}\\n```\\n\\n- Both CLI and MCP swaps honor `t2 limit set` caps (enforced in `@t2000/sdk`, on the from-side USD value). Default caps: $25/tx \xB7 $100/day cumulative.\\n- Returns the same shape as `--json` mode (digest + amounts + price impact + route).\\n\\n## What NOT to do\\n\\n- Don\'t auto-execute multi-leg flows (\\"swap A \u2192 B \u2192 C in three transactions\\"). If a multi-hop is needed, Cetus does it internally as one PTB.\\n- Don\'t recommend swapping mid-position rebalance without first surfacing impermanent-loss risk if the user asked for advice.\\n- Don\'t swap to a stable just to \\"park\\" funds with no plan \u2014 explain that the Agent Wallet is wallet-first; savings yield lives on audric.ai."},{"name":"t2000-verify","description":"Check \u2014 don\'t trust \u2014 a confidential (GPU-TEE) AI response by its receipt id. Use when asked to verify, prove, or audit that an AI response ran in a genuine hardware enclave (Intel TDX), wasn\'t tampered with, and is anchored on Sui. Works on any t2000 Private API confidential (`phala/*`) response. No key needed.","body":"# t2000: Verify a Confidential Response\\n\\n## Purpose\\n\\nConfidential (`phala/*`) responses from the t2000 Private API run inside a verified\\nGPU-TEE and carry a **signed receipt** that\'s **auto-anchored on Sui**. `t2 verify`\\nchecks the whole chain **client-side** and **fails closed** on any forgery \u2014 you (or\\nyour agent) prove the response is genuine without trusting t2000.\\n\\n## Where the receipt id comes from\\n\\nAny confidential inference call returns one:\\n\\n```bash\\nt2 chat --model phala/glm-5.2 \\"\u2026\\" # \u2192 \u{1F512} confidential \xB7 attested \xB7 receipt rcpt-\u2026\\n```\\n\\nThe API returns it in the `x-receipt-id` header (streaming: `x_receipt_id` on the\\nfinal usage chunk). Any `phala/*` model is confidential; non-`phala/*` responses\\naren\'t (nothing to verify).\\n\\n## Command\\n\\n```bash\\nt2 verify <receipt-id> # full check (incl. client-side Intel TDX quote)\\nt2 verify <receipt-id> --quick # skip the slower DCAP quote check\\nt2 verify <receipt-id> --json # machine-readable per-check result\\n```\\n\\nNo API key required \u2014 verification is public + trustless.\\n\\n## What it checks (fails closed on any mismatch)\\n\\n- **Receipt** \u2014 well-formed signed transparency log (hashes, never your prompt).\\n- **Confidential upstream** \u2014 the upstream was an attested TEE (typed TCB claims).\\n- **Sui anchor (trustless)** \u2014 reads the on-chain `ReceiptAnchored` event straight\\n from a fullnode; confirms the committed `wire_hash` + `workload_id` match. t2000\\n can\'t forge it.\\n- **Receipt signature (trustless)** \u2014 recovers the signer, matches the attested key.\\n- **TDX quote / DCAP (trustless)** \u2014 re-verifies the hardware quote against Intel\'s\\n root CA locally (skip with `--quick`).\\n\\nExit code is non-zero if anything doesn\'t line up.\\n\\n## Other surfaces\\n\\n- **Browser:** paste any receipt id at **`verify.t2000.ai`** \u2014 same checks + a live\\n public feed of every confidential response anchored on Sui.\\n- **MCP:** the `t2000_verify` tool takes a `receiptId` and returns the per-check\\n result (`verified:false` on any forgery). No key required.\\n- **SDK:** `verifyReceipt(receiptId)` from `@t2000/sdk`; `agent.verify(id)` on a\\n `T2000` instance.\\n\\n## Honest framing (don\'t overclaim)\\n\\nVerified = genuine TDX + TEE-signed receipt + Sui anchor, all checked client-side \u2014\\nthat\'s trustless. What it does NOT claim: the gateway\'s forwarding leg still sees\\nplaintext (zero data retention, but not end-to-end encrypted \u2014 that\'s a future\\nrung). State exactly what\'s proven; a wrong \\"verified\\" claim is worse than honest."}]';
97804
99222
  cachedSkills = JSON.parse(raw);
97805
99223
  return cachedSkills;
97806
99224
  }
@@ -97862,8 +99280,10 @@ Through this wallet you can reach essentially any major external API, billed to
97862
99280
 
97863
99281
  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).
97864
99282
 
99283
+ The wallet can also HIRE OTHER AGENTS: the agent store (agents.t2000.ai) lists agents selling one-call services (market reads, data feeds, tools) with receipt-backed reputation. Browse with t2000_agents, buy with t2000_agent_pay (escrowed \u2014 auto-refund if delivery fails). The user's wallet can EARN too: reward tasks + a community task board live at mpp.t2000.ai/tasks (see the skill-hire prompt or the t2000-hire skill).
99284
+
97865
99285
  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.`;
97866
- var PKG_VERSION = "5.22.0";
99286
+ var PKG_VERSION = "5.24.0";
97867
99287
  console.log = (...args) => console.error("[log]", ...args);
97868
99288
  console.warn = (...args) => console.error("[warn]", ...args);
97869
99289
  async function startMcpServer(opts) {
@@ -97937,4 +99357,4 @@ mime-types/index.js:
97937
99357
  @scure/bip39/index.js:
97938
99358
  (*! scure-bip39 - MIT License (c) 2022 Patricio Palladino, Paul Miller (paulmillr.com) *)
97939
99359
  */
97940
- //# sourceMappingURL=dist-3T3V2562.js.map
99360
+ //# sourceMappingURL=dist-B7O5FUPB.js.map