@t2000/cli 10.25.1 → 10.27.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.
@@ -2154,6 +2154,8 @@ var _BLAKE2b = class extends _BLAKE2 {
2154
2154
  var blake2b = /* @__PURE__ */ createHasher((opts) => new _BLAKE2b(opts));
2155
2155
 
2156
2156
  export {
2157
+ isValidNamedPackage,
2158
+ isValidNamedType,
2157
2159
  base64urlnopad,
2158
2160
  bech32,
2159
2161
  toBase58,
@@ -2172,8 +2174,6 @@ export {
2172
2174
  normalizeStructTag,
2173
2175
  normalizeSuiAddress,
2174
2176
  normalizeSuiObjectId,
2175
- isValidNamedPackage,
2176
- isValidNamedType,
2177
2177
  isBytes2 as isBytes,
2178
2178
  anumber2 as anumber,
2179
2179
  abytes,
@@ -2212,4 +2212,4 @@ export {
2212
2212
  @noble/hashes/utils.js:
2213
2213
  (*! noble-hashes - MIT License (c) 2022 Paul Miller (paulmillr.com) *)
2214
2214
  */
2215
- //# sourceMappingURL=chunk-D3DUYZYR.js.map
2215
+ //# sourceMappingURL=chunk-BX4V52TZ.js.map
@@ -47,7 +47,7 @@ import {
47
47
  tuple,
48
48
  union,
49
49
  unknown
50
- } from "./chunk-5MAY6SK7.js";
50
+ } from "./chunk-T32A4PV6.js";
51
51
  import {
52
52
  fromBase58,
53
53
  fromBase64,
@@ -59,7 +59,7 @@ import {
59
59
  toBase58,
60
60
  toBase64,
61
61
  toHex
62
- } from "./chunk-D3DUYZYR.js";
62
+ } from "./chunk-BX4V52TZ.js";
63
63
 
64
64
  // ../../node_modules/.pnpm/@mysten+sui@2.17.0_typescript@5.9.3/node_modules/@mysten/sui/dist/transactions/Commands.mjs
65
65
  var TransactionCommands = {
@@ -1635,4 +1635,4 @@ export {
1635
1635
  coinWithBalance,
1636
1636
  Transaction
1637
1637
  };
1638
- //# sourceMappingURL=chunk-JEIOQF6Q.js.map
1638
+ //# sourceMappingURL=chunk-CNTCUDEZ.js.map
@@ -10,7 +10,7 @@ import {
10
10
  fromBase64 as fromBase642,
11
11
  suiBcs,
12
12
  toBase64 as toBase642
13
- } from "./chunk-5MAY6SK7.js";
13
+ } from "./chunk-T32A4PV6.js";
14
14
  import {
15
15
  SUI_ADDRESS_LENGTH,
16
16
  fromBase64,
@@ -18,7 +18,7 @@ import {
18
18
  normalizeSuiAddress,
19
19
  parseStructTag,
20
20
  toBase64
21
- } from "./chunk-D3DUYZYR.js";
21
+ } from "./chunk-BX4V52TZ.js";
22
22
 
23
23
  // ../../node_modules/.pnpm/@mysten+sui@2.17.0_typescript@5.9.3/node_modules/@mysten/sui/dist/client/cache.mjs
24
24
  var ClientCache = class ClientCache2 {
@@ -12463,4 +12463,4 @@ export {
12463
12463
  SuiGrpcClient,
12464
12464
  types_exports
12465
12465
  };
12466
- //# sourceMappingURL=chunk-R6QER65C.js.map
12466
+ //# sourceMappingURL=chunk-SHZC6TMU.js.map
@@ -16,7 +16,7 @@ import {
16
16
  toBase58,
17
17
  toBase64,
18
18
  toHex
19
- } from "./chunk-D3DUYZYR.js";
19
+ } from "./chunk-BX4V52TZ.js";
20
20
 
21
21
  // ../../node_modules/.pnpm/@mysten+sui@2.17.0_typescript@5.9.3/node_modules/@mysten/sui/dist/bcs/type-tag-serializer.mjs
22
22
  var VECTOR_REGEX = /^vector<(.+)>$/;
@@ -665,20 +665,6 @@ var SUI_SYSTEM_STATE_OBJECT_ID = "0x00000000000000000000000000000000000000000000
665
665
  var SUI_RANDOM_OBJECT_ID = "0x0000000000000000000000000000000000000000000000000000000000000008";
666
666
  var SUI_DENY_LIST_OBJECT_ID = "0x0000000000000000000000000000000000000000000000000000000000000403";
667
667
 
668
- // ../../node_modules/.pnpm/@mysten+sui@2.17.0_typescript@5.9.3/node_modules/@mysten/sui/dist/utils/dynamic-fields.mjs
669
- function deriveDynamicFieldID(parentId, typeTag, key) {
670
- const address = suiBcs.Address.serialize(parentId).toBytes();
671
- const tag = suiBcs.TypeTag.serialize(typeTag).toBytes();
672
- const keyLength = suiBcs.u64().serialize(key.length).toBytes();
673
- const hash = blake2b.create({ dkLen: 32 });
674
- hash.update(new Uint8Array([240]));
675
- hash.update(address);
676
- hash.update(keyLength);
677
- hash.update(key);
678
- hash.update(tag);
679
- return `0x${toHex(hash.digest().slice(0, 32))}`;
680
- }
681
-
682
668
  // ../../node_modules/.pnpm/valibot@1.3.1_typescript@5.9.3/node_modules/valibot/dist/index.mjs
683
669
  var store$4;
684
670
  // @__NO_SIDE_EFFECTS__
@@ -2285,6 +2271,20 @@ var ObjectError = class ObjectError2 extends SuiClientError {
2285
2271
  }
2286
2272
  };
2287
2273
 
2274
+ // ../../node_modules/.pnpm/@mysten+sui@2.17.0_typescript@5.9.3/node_modules/@mysten/sui/dist/utils/dynamic-fields.mjs
2275
+ function deriveDynamicFieldID(parentId, typeTag, key) {
2276
+ const address = suiBcs.Address.serialize(parentId).toBytes();
2277
+ const tag = suiBcs.TypeTag.serialize(typeTag).toBytes();
2278
+ const keyLength = suiBcs.u64().serialize(key.length).toBytes();
2279
+ const hash = blake2b.create({ dkLen: 32 });
2280
+ hash.update(new Uint8Array([240]));
2281
+ hash.update(address);
2282
+ hash.update(keyLength);
2283
+ hash.update(key);
2284
+ hash.update(tag);
2285
+ return `0x${toHex(hash.digest().slice(0, 32))}`;
2286
+ }
2287
+
2288
2288
  // ../../node_modules/.pnpm/@mysten+utils@0.3.3/node_modules/@mysten/utils/dist/b64.mjs
2289
2289
  function fromBase642(base64String2) {
2290
2290
  return Uint8Array.from(atob(base64String2), (char) => char.charCodeAt(0));
@@ -2760,18 +2760,6 @@ function getNamesFromTypeList(types) {
2760
2760
  }
2761
2761
 
2762
2762
  export {
2763
- TypeTagSerializer,
2764
- ExecutionStatus,
2765
- pureBcsSchemaFromTypeName,
2766
- suiBcs,
2767
- deriveDynamicFieldID,
2768
- MOVE_STDLIB_ADDRESS,
2769
- SUI_FRAMEWORK_ADDRESS,
2770
- SUI_CLOCK_OBJECT_ID,
2771
- SUI_TYPE_ARG,
2772
- SUI_SYSTEM_STATE_OBJECT_ID,
2773
- SUI_RANDOM_OBJECT_ID,
2774
- SUI_DENY_LIST_OBJECT_ID,
2775
2763
  integer,
2776
2764
  is,
2777
2765
  array,
@@ -2802,10 +2790,22 @@ export {
2802
2790
  ValidDuringSchema,
2803
2791
  TransactionExpiration2 as TransactionExpiration,
2804
2792
  getIdFromCallArg,
2793
+ TypeTagSerializer,
2794
+ ExecutionStatus,
2795
+ pureBcsSchemaFromTypeName,
2796
+ suiBcs,
2805
2797
  serializeV1TransactionData,
2806
2798
  TransactionDataBuilder,
2799
+ MOVE_STDLIB_ADDRESS,
2800
+ SUI_FRAMEWORK_ADDRESS,
2801
+ SUI_CLOCK_OBJECT_ID,
2802
+ SUI_TYPE_ARG,
2803
+ SUI_SYSTEM_STATE_OBJECT_ID,
2804
+ SUI_RANDOM_OBJECT_ID,
2805
+ SUI_DENY_LIST_OBJECT_ID,
2807
2806
  SimulationError,
2808
2807
  ObjectError,
2808
+ deriveDynamicFieldID,
2809
2809
  fromBase642 as fromBase64,
2810
2810
  toBase642 as toBase64,
2811
2811
  chunk,
@@ -2813,4 +2813,4 @@ export {
2813
2813
  findNamesInTransaction,
2814
2814
  replaceNames
2815
2815
  };
2816
- //# sourceMappingURL=chunk-5MAY6SK7.js.map
2816
+ //# sourceMappingURL=chunk-T32A4PV6.js.map