@mysten/sui 2.2.0 → 2.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist/bcs/index.d.mts +20 -20
  3. package/dist/client/client.d.mts.map +1 -1
  4. package/dist/client/client.mjs +3 -2
  5. package/dist/client/client.mjs.map +1 -1
  6. package/dist/client/core-resolver.d.mts.map +1 -1
  7. package/dist/client/core-resolver.mjs +6 -2
  8. package/dist/client/core-resolver.mjs.map +1 -1
  9. package/dist/client/errors.d.mts +15 -0
  10. package/dist/client/errors.d.mts.map +1 -0
  11. package/dist/client/errors.mjs +7 -1
  12. package/dist/client/errors.mjs.map +1 -1
  13. package/dist/client/index.d.mts +2 -1
  14. package/dist/client/index.mjs +2 -1
  15. package/dist/client/utils.d.mts.map +1 -1
  16. package/dist/client/utils.mjs +20 -14
  17. package/dist/client/utils.mjs.map +1 -1
  18. package/dist/graphql/core.mjs +41 -16
  19. package/dist/graphql/core.mjs.map +1 -1
  20. package/dist/graphql/generated/queries.mjs +20 -0
  21. package/dist/graphql/generated/queries.mjs.map +1 -1
  22. package/dist/grpc/core.mjs +9 -6
  23. package/dist/grpc/core.mjs.map +1 -1
  24. package/dist/grpc/proto/sui/rpc/v2/move_package_service.client.d.mts +4 -4
  25. package/dist/grpc/proto/sui/rpc/v2/name_service.client.d.mts +4 -4
  26. package/dist/grpc/proto/sui/rpc/v2/signature_verification_service.client.d.mts +4 -4
  27. package/dist/grpc/proto/sui/rpc/v2/state_service.client.d.mts +4 -4
  28. package/dist/grpc/proto/sui/rpc/v2/subscription_service.client.d.mts +4 -4
  29. package/dist/grpc/proto/sui/rpc/v2/transaction.d.mts.map +1 -1
  30. package/dist/grpc/proto/sui/rpc/v2/transaction_execution_service.client.d.mts +4 -4
  31. package/dist/jsonRpc/core.mjs +1 -1
  32. package/dist/transactions/Transaction.d.mts +22 -10
  33. package/dist/transactions/Transaction.d.mts.map +1 -1
  34. package/dist/transactions/Transaction.mjs +18 -2
  35. package/dist/transactions/Transaction.mjs.map +1 -1
  36. package/dist/transactions/data/internal.d.mts +109 -109
  37. package/dist/transactions/data/internal.d.mts.map +1 -1
  38. package/dist/transactions/data/v1.d.mts +220 -220
  39. package/dist/transactions/data/v1.d.mts.map +1 -1
  40. package/dist/transactions/data/v2.d.mts +16 -16
  41. package/dist/transactions/data/v2.d.mts.map +1 -1
  42. package/dist/transactions/executor/serial.d.mts.map +1 -1
  43. package/dist/transactions/executor/serial.mjs +4 -0
  44. package/dist/transactions/executor/serial.mjs.map +1 -1
  45. package/dist/transactions/index.mjs +1 -1
  46. package/dist/transactions/intents/CoinWithBalance.d.mts +2 -0
  47. package/dist/transactions/intents/CoinWithBalance.d.mts.map +1 -1
  48. package/dist/transactions/intents/CoinWithBalance.mjs +1 -1
  49. package/dist/transactions/intents/CoinWithBalance.mjs.map +1 -1
  50. package/dist/version.mjs +1 -1
  51. package/dist/version.mjs.map +1 -1
  52. package/dist/zklogin/bcs.d.mts +14 -14
  53. package/package.json +3 -3
  54. package/src/client/client.ts +5 -2
  55. package/src/client/core-resolver.ts +7 -7
  56. package/src/client/errors.ts +13 -0
  57. package/src/client/index.ts +2 -0
  58. package/src/client/utils.ts +26 -19
  59. package/src/graphql/core.ts +47 -11
  60. package/src/graphql/generated/queries.ts +21 -1
  61. package/src/graphql/queries/transactions.graphql +20 -0
  62. package/src/grpc/core.ts +20 -4
  63. package/src/transactions/Transaction.ts +38 -6
  64. package/src/transactions/executor/serial.ts +4 -0
  65. package/src/transactions/intents/CoinWithBalance.ts +2 -2
  66. package/src/version.ts +1 -1
@@ -1,7 +1,7 @@
1
1
  import { SuiClientTypes } from "../../client/types.mjs";
2
2
  import { EnumInputShape, EnumOutputShape } from "@mysten/bcs";
3
3
  import { Simplify } from "@mysten/utils";
4
- import * as valibot0 from "valibot";
4
+ import * as valibot481 from "valibot";
5
5
  import { GenericSchema, InferInput, InferOutput, ObjectSchema } from "valibot";
6
6
 
7
7
  //#region src/transactions/data/internal.d.ts
@@ -9,12 +9,12 @@ type EnumSchemaInput<T extends Record<string, GenericSchema<any>>> = EnumInputSh
9
9
  type EnumSchemaOutput<T extends Record<string, GenericSchema<any>>> = EnumOutputShape<Simplify<{ [K in keyof T]: InferOutput<T[K]> }>>;
10
10
  type EnumSchema<T extends Record<string, GenericSchema<any>>> = GenericSchema<EnumSchemaInput<T>, EnumSchemaOutput<T>>;
11
11
  declare const ObjectRefSchema: ObjectSchema<{
12
- readonly objectId: valibot0.SchemaWithPipe<readonly [valibot0.StringSchema<undefined>, valibot0.TransformAction<string, string>, valibot0.CheckAction<string, undefined>]>;
13
- readonly version: valibot0.SchemaWithPipe<readonly [valibot0.UnionSchema<[valibot0.StringSchema<undefined>, valibot0.SchemaWithPipe<readonly [valibot0.NumberSchema<undefined>, valibot0.IntegerAction<number, undefined>]>], undefined>, valibot0.CheckAction<string | number, "Invalid u64">]>;
14
- readonly digest: valibot0.StringSchema<undefined>;
12
+ readonly objectId: valibot481.SchemaWithPipe<readonly [valibot481.StringSchema<undefined>, valibot481.TransformAction<string, string>, valibot481.CheckAction<string, undefined>]>;
13
+ readonly version: valibot481.SchemaWithPipe<readonly [valibot481.UnionSchema<[valibot481.StringSchema<undefined>, valibot481.SchemaWithPipe<readonly [valibot481.NumberSchema<undefined>, valibot481.IntegerAction<number, undefined>]>], undefined>, valibot481.CheckAction<string | number, "Invalid u64">]>;
14
+ readonly digest: valibot481.StringSchema<undefined>;
15
15
  }, undefined>;
16
16
  type ObjectRef = InferOutput<typeof ObjectRefSchema>;
17
- declare const ArgumentSchema: valibot0.UnionSchema<[GenericSchema<{
17
+ declare const ArgumentSchema: valibot481.UnionSchema<[GenericSchema<{
18
18
  GasCoin: true;
19
19
  $kind?: "GasCoin" | undefined;
20
20
  }, {
@@ -43,13 +43,13 @@ declare const ArgumentSchema: valibot0.UnionSchema<[GenericSchema<{
43
43
  }>], undefined>;
44
44
  type Argument = InferOutput<typeof ArgumentSchema>;
45
45
  declare const GasDataSchema: ObjectSchema<{
46
- readonly budget: valibot0.NullableSchema<valibot0.SchemaWithPipe<readonly [valibot0.UnionSchema<[valibot0.StringSchema<undefined>, valibot0.SchemaWithPipe<readonly [valibot0.NumberSchema<undefined>, valibot0.IntegerAction<number, undefined>]>], undefined>, valibot0.CheckAction<string | number, "Invalid u64">]>, undefined>;
47
- readonly price: valibot0.NullableSchema<valibot0.SchemaWithPipe<readonly [valibot0.UnionSchema<[valibot0.StringSchema<undefined>, valibot0.SchemaWithPipe<readonly [valibot0.NumberSchema<undefined>, valibot0.IntegerAction<number, undefined>]>], undefined>, valibot0.CheckAction<string | number, "Invalid u64">]>, undefined>;
48
- readonly owner: valibot0.NullableSchema<valibot0.SchemaWithPipe<readonly [valibot0.StringSchema<undefined>, valibot0.TransformAction<string, string>, valibot0.CheckAction<string, undefined>]>, undefined>;
49
- readonly payment: valibot0.NullableSchema<valibot0.ArraySchema<ObjectSchema<{
50
- readonly objectId: valibot0.SchemaWithPipe<readonly [valibot0.StringSchema<undefined>, valibot0.TransformAction<string, string>, valibot0.CheckAction<string, undefined>]>;
51
- readonly version: valibot0.SchemaWithPipe<readonly [valibot0.UnionSchema<[valibot0.StringSchema<undefined>, valibot0.SchemaWithPipe<readonly [valibot0.NumberSchema<undefined>, valibot0.IntegerAction<number, undefined>]>], undefined>, valibot0.CheckAction<string | number, "Invalid u64">]>;
52
- readonly digest: valibot0.StringSchema<undefined>;
46
+ readonly budget: valibot481.NullableSchema<valibot481.SchemaWithPipe<readonly [valibot481.UnionSchema<[valibot481.StringSchema<undefined>, valibot481.SchemaWithPipe<readonly [valibot481.NumberSchema<undefined>, valibot481.IntegerAction<number, undefined>]>], undefined>, valibot481.CheckAction<string | number, "Invalid u64">]>, undefined>;
47
+ readonly price: valibot481.NullableSchema<valibot481.SchemaWithPipe<readonly [valibot481.UnionSchema<[valibot481.StringSchema<undefined>, valibot481.SchemaWithPipe<readonly [valibot481.NumberSchema<undefined>, valibot481.IntegerAction<number, undefined>]>], undefined>, valibot481.CheckAction<string | number, "Invalid u64">]>, undefined>;
48
+ readonly owner: valibot481.NullableSchema<valibot481.SchemaWithPipe<readonly [valibot481.StringSchema<undefined>, valibot481.TransformAction<string, string>, valibot481.CheckAction<string, undefined>]>, undefined>;
49
+ readonly payment: valibot481.NullableSchema<valibot481.ArraySchema<ObjectSchema<{
50
+ readonly objectId: valibot481.SchemaWithPipe<readonly [valibot481.StringSchema<undefined>, valibot481.TransformAction<string, string>, valibot481.CheckAction<string, undefined>]>;
51
+ readonly version: valibot481.SchemaWithPipe<readonly [valibot481.UnionSchema<[valibot481.StringSchema<undefined>, valibot481.SchemaWithPipe<readonly [valibot481.NumberSchema<undefined>, valibot481.IntegerAction<number, undefined>]>], undefined>, valibot481.CheckAction<string | number, "Invalid u64">]>;
52
+ readonly digest: valibot481.StringSchema<undefined>;
53
53
  }, undefined>, undefined>, undefined>;
54
54
  }, undefined>;
55
55
  type GasData = InferOutput<typeof GasDataSchema>;
@@ -95,152 +95,152 @@ type Command<Arg = Argument> = EnumOutputShape<{
95
95
  };
96
96
  }>;
97
97
  declare const ReservationSchema: EnumSchema<{
98
- MaxAmountU64: valibot0.SchemaWithPipe<readonly [valibot0.UnionSchema<[valibot0.StringSchema<undefined>, valibot0.SchemaWithPipe<readonly [valibot0.NumberSchema<undefined>, valibot0.IntegerAction<number, undefined>]>], undefined>, valibot0.CheckAction<string | number, "Invalid u64">]>;
98
+ MaxAmountU64: valibot481.SchemaWithPipe<readonly [valibot481.UnionSchema<[valibot481.StringSchema<undefined>, valibot481.SchemaWithPipe<readonly [valibot481.NumberSchema<undefined>, valibot481.IntegerAction<number, undefined>]>], undefined>, valibot481.CheckAction<string | number, "Invalid u64">]>;
99
99
  }>;
100
100
  type Reservation = InferOutput<typeof ReservationSchema>;
101
101
  declare const WithdrawalTypeArgSchema: EnumSchema<{
102
- Balance: valibot0.StringSchema<undefined>;
102
+ Balance: valibot481.StringSchema<undefined>;
103
103
  }>;
104
104
  type WithdrawalTypeArg = InferOutput<typeof WithdrawalTypeArgSchema>;
105
105
  declare const WithdrawFromSchema: EnumSchema<{
106
- Sender: valibot0.LiteralSchema<true, undefined>;
107
- Sponsor: valibot0.LiteralSchema<true, undefined>;
106
+ Sender: valibot481.LiteralSchema<true, undefined>;
107
+ Sponsor: valibot481.LiteralSchema<true, undefined>;
108
108
  }>;
109
109
  type WithdrawFrom = InferOutput<typeof WithdrawFromSchema>;
110
110
  declare const CallArgSchema: EnumSchema<{
111
111
  Object: EnumSchema<{
112
112
  ImmOrOwnedObject: ObjectSchema<{
113
- readonly objectId: valibot0.SchemaWithPipe<readonly [valibot0.StringSchema<undefined>, valibot0.TransformAction<string, string>, valibot0.CheckAction<string, undefined>]>;
114
- readonly version: valibot0.SchemaWithPipe<readonly [valibot0.UnionSchema<[valibot0.StringSchema<undefined>, valibot0.SchemaWithPipe<readonly [valibot0.NumberSchema<undefined>, valibot0.IntegerAction<number, undefined>]>], undefined>, valibot0.CheckAction<string | number, "Invalid u64">]>;
115
- readonly digest: valibot0.StringSchema<undefined>;
113
+ readonly objectId: valibot481.SchemaWithPipe<readonly [valibot481.StringSchema<undefined>, valibot481.TransformAction<string, string>, valibot481.CheckAction<string, undefined>]>;
114
+ readonly version: valibot481.SchemaWithPipe<readonly [valibot481.UnionSchema<[valibot481.StringSchema<undefined>, valibot481.SchemaWithPipe<readonly [valibot481.NumberSchema<undefined>, valibot481.IntegerAction<number, undefined>]>], undefined>, valibot481.CheckAction<string | number, "Invalid u64">]>;
115
+ readonly digest: valibot481.StringSchema<undefined>;
116
116
  }, undefined>;
117
117
  SharedObject: ObjectSchema<{
118
- readonly objectId: valibot0.SchemaWithPipe<readonly [valibot0.StringSchema<undefined>, valibot0.TransformAction<string, string>, valibot0.CheckAction<string, undefined>]>;
119
- readonly initialSharedVersion: valibot0.SchemaWithPipe<readonly [valibot0.UnionSchema<[valibot0.StringSchema<undefined>, valibot0.SchemaWithPipe<readonly [valibot0.NumberSchema<undefined>, valibot0.IntegerAction<number, undefined>]>], undefined>, valibot0.CheckAction<string | number, "Invalid u64">]>;
120
- readonly mutable: valibot0.BooleanSchema<undefined>;
118
+ readonly objectId: valibot481.SchemaWithPipe<readonly [valibot481.StringSchema<undefined>, valibot481.TransformAction<string, string>, valibot481.CheckAction<string, undefined>]>;
119
+ readonly initialSharedVersion: valibot481.SchemaWithPipe<readonly [valibot481.UnionSchema<[valibot481.StringSchema<undefined>, valibot481.SchemaWithPipe<readonly [valibot481.NumberSchema<undefined>, valibot481.IntegerAction<number, undefined>]>], undefined>, valibot481.CheckAction<string | number, "Invalid u64">]>;
120
+ readonly mutable: valibot481.BooleanSchema<undefined>;
121
121
  }, undefined>;
122
122
  Receiving: ObjectSchema<{
123
- readonly objectId: valibot0.SchemaWithPipe<readonly [valibot0.StringSchema<undefined>, valibot0.TransformAction<string, string>, valibot0.CheckAction<string, undefined>]>;
124
- readonly version: valibot0.SchemaWithPipe<readonly [valibot0.UnionSchema<[valibot0.StringSchema<undefined>, valibot0.SchemaWithPipe<readonly [valibot0.NumberSchema<undefined>, valibot0.IntegerAction<number, undefined>]>], undefined>, valibot0.CheckAction<string | number, "Invalid u64">]>;
125
- readonly digest: valibot0.StringSchema<undefined>;
123
+ readonly objectId: valibot481.SchemaWithPipe<readonly [valibot481.StringSchema<undefined>, valibot481.TransformAction<string, string>, valibot481.CheckAction<string, undefined>]>;
124
+ readonly version: valibot481.SchemaWithPipe<readonly [valibot481.UnionSchema<[valibot481.StringSchema<undefined>, valibot481.SchemaWithPipe<readonly [valibot481.NumberSchema<undefined>, valibot481.IntegerAction<number, undefined>]>], undefined>, valibot481.CheckAction<string | number, "Invalid u64">]>;
125
+ readonly digest: valibot481.StringSchema<undefined>;
126
126
  }, undefined>;
127
127
  }>;
128
128
  Pure: ObjectSchema<{
129
- readonly bytes: valibot0.StringSchema<undefined>;
129
+ readonly bytes: valibot481.StringSchema<undefined>;
130
130
  }, undefined>;
131
131
  UnresolvedPure: ObjectSchema<{
132
- readonly value: valibot0.UnknownSchema;
132
+ readonly value: valibot481.UnknownSchema;
133
133
  }, undefined>;
134
134
  UnresolvedObject: ObjectSchema<{
135
- readonly objectId: valibot0.SchemaWithPipe<readonly [valibot0.StringSchema<undefined>, valibot0.TransformAction<string, string>, valibot0.CheckAction<string, undefined>]>;
136
- readonly version: valibot0.OptionalSchema<valibot0.NullableSchema<valibot0.SchemaWithPipe<readonly [valibot0.UnionSchema<[valibot0.StringSchema<undefined>, valibot0.SchemaWithPipe<readonly [valibot0.NumberSchema<undefined>, valibot0.IntegerAction<number, undefined>]>], undefined>, valibot0.CheckAction<string | number, "Invalid u64">]>, undefined>, undefined>;
137
- readonly digest: valibot0.OptionalSchema<valibot0.NullableSchema<valibot0.StringSchema<undefined>, undefined>, undefined>;
138
- readonly initialSharedVersion: valibot0.OptionalSchema<valibot0.NullableSchema<valibot0.SchemaWithPipe<readonly [valibot0.UnionSchema<[valibot0.StringSchema<undefined>, valibot0.SchemaWithPipe<readonly [valibot0.NumberSchema<undefined>, valibot0.IntegerAction<number, undefined>]>], undefined>, valibot0.CheckAction<string | number, "Invalid u64">]>, undefined>, undefined>;
139
- readonly mutable: valibot0.OptionalSchema<valibot0.NullableSchema<valibot0.BooleanSchema<undefined>, undefined>, undefined>;
135
+ readonly objectId: valibot481.SchemaWithPipe<readonly [valibot481.StringSchema<undefined>, valibot481.TransformAction<string, string>, valibot481.CheckAction<string, undefined>]>;
136
+ readonly version: valibot481.OptionalSchema<valibot481.NullableSchema<valibot481.SchemaWithPipe<readonly [valibot481.UnionSchema<[valibot481.StringSchema<undefined>, valibot481.SchemaWithPipe<readonly [valibot481.NumberSchema<undefined>, valibot481.IntegerAction<number, undefined>]>], undefined>, valibot481.CheckAction<string | number, "Invalid u64">]>, undefined>, undefined>;
137
+ readonly digest: valibot481.OptionalSchema<valibot481.NullableSchema<valibot481.StringSchema<undefined>, undefined>, undefined>;
138
+ readonly initialSharedVersion: valibot481.OptionalSchema<valibot481.NullableSchema<valibot481.SchemaWithPipe<readonly [valibot481.UnionSchema<[valibot481.StringSchema<undefined>, valibot481.SchemaWithPipe<readonly [valibot481.NumberSchema<undefined>, valibot481.IntegerAction<number, undefined>]>], undefined>, valibot481.CheckAction<string | number, "Invalid u64">]>, undefined>, undefined>;
139
+ readonly mutable: valibot481.OptionalSchema<valibot481.NullableSchema<valibot481.BooleanSchema<undefined>, undefined>, undefined>;
140
140
  }, undefined>;
141
141
  FundsWithdrawal: ObjectSchema<{
142
142
  readonly reservation: EnumSchema<{
143
- MaxAmountU64: valibot0.SchemaWithPipe<readonly [valibot0.UnionSchema<[valibot0.StringSchema<undefined>, valibot0.SchemaWithPipe<readonly [valibot0.NumberSchema<undefined>, valibot0.IntegerAction<number, undefined>]>], undefined>, valibot0.CheckAction<string | number, "Invalid u64">]>;
143
+ MaxAmountU64: valibot481.SchemaWithPipe<readonly [valibot481.UnionSchema<[valibot481.StringSchema<undefined>, valibot481.SchemaWithPipe<readonly [valibot481.NumberSchema<undefined>, valibot481.IntegerAction<number, undefined>]>], undefined>, valibot481.CheckAction<string | number, "Invalid u64">]>;
144
144
  }>;
145
145
  readonly typeArg: EnumSchema<{
146
- Balance: valibot0.StringSchema<undefined>;
146
+ Balance: valibot481.StringSchema<undefined>;
147
147
  }>;
148
148
  readonly withdrawFrom: EnumSchema<{
149
- Sender: valibot0.LiteralSchema<true, undefined>;
150
- Sponsor: valibot0.LiteralSchema<true, undefined>;
149
+ Sender: valibot481.LiteralSchema<true, undefined>;
150
+ Sponsor: valibot481.LiteralSchema<true, undefined>;
151
151
  }>;
152
152
  }, undefined>;
153
153
  }>;
154
154
  type CallArg = InferOutput<typeof CallArgSchema>;
155
155
  declare const TransactionExpiration: EnumSchema<{
156
- None: valibot0.LiteralSchema<true, undefined>;
157
- Epoch: valibot0.SchemaWithPipe<readonly [valibot0.UnionSchema<[valibot0.StringSchema<undefined>, valibot0.SchemaWithPipe<readonly [valibot0.NumberSchema<undefined>, valibot0.IntegerAction<number, undefined>]>], undefined>, valibot0.CheckAction<string | number, "Invalid u64">]>;
156
+ None: valibot481.LiteralSchema<true, undefined>;
157
+ Epoch: valibot481.SchemaWithPipe<readonly [valibot481.UnionSchema<[valibot481.StringSchema<undefined>, valibot481.SchemaWithPipe<readonly [valibot481.NumberSchema<undefined>, valibot481.IntegerAction<number, undefined>]>], undefined>, valibot481.CheckAction<string | number, "Invalid u64">]>;
158
158
  ValidDuring: ObjectSchema<{
159
- readonly minEpoch: valibot0.NullableSchema<valibot0.SchemaWithPipe<readonly [valibot0.UnionSchema<[valibot0.StringSchema<undefined>, valibot0.SchemaWithPipe<readonly [valibot0.NumberSchema<undefined>, valibot0.IntegerAction<number, undefined>]>], undefined>, valibot0.CheckAction<string | number, "Invalid u64">]>, undefined>;
160
- readonly maxEpoch: valibot0.NullableSchema<valibot0.SchemaWithPipe<readonly [valibot0.UnionSchema<[valibot0.StringSchema<undefined>, valibot0.SchemaWithPipe<readonly [valibot0.NumberSchema<undefined>, valibot0.IntegerAction<number, undefined>]>], undefined>, valibot0.CheckAction<string | number, "Invalid u64">]>, undefined>;
161
- readonly minTimestamp: valibot0.NullableSchema<valibot0.SchemaWithPipe<readonly [valibot0.UnionSchema<[valibot0.StringSchema<undefined>, valibot0.SchemaWithPipe<readonly [valibot0.NumberSchema<undefined>, valibot0.IntegerAction<number, undefined>]>], undefined>, valibot0.CheckAction<string | number, "Invalid u64">]>, undefined>;
162
- readonly maxTimestamp: valibot0.NullableSchema<valibot0.SchemaWithPipe<readonly [valibot0.UnionSchema<[valibot0.StringSchema<undefined>, valibot0.SchemaWithPipe<readonly [valibot0.NumberSchema<undefined>, valibot0.IntegerAction<number, undefined>]>], undefined>, valibot0.CheckAction<string | number, "Invalid u64">]>, undefined>;
163
- readonly chain: valibot0.StringSchema<undefined>;
164
- readonly nonce: valibot0.SchemaWithPipe<readonly [valibot0.NumberSchema<undefined>, valibot0.IntegerAction<number, undefined>, valibot0.CheckAction<number, "Invalid u32">]>;
159
+ readonly minEpoch: valibot481.NullableSchema<valibot481.SchemaWithPipe<readonly [valibot481.UnionSchema<[valibot481.StringSchema<undefined>, valibot481.SchemaWithPipe<readonly [valibot481.NumberSchema<undefined>, valibot481.IntegerAction<number, undefined>]>], undefined>, valibot481.CheckAction<string | number, "Invalid u64">]>, undefined>;
160
+ readonly maxEpoch: valibot481.NullableSchema<valibot481.SchemaWithPipe<readonly [valibot481.UnionSchema<[valibot481.StringSchema<undefined>, valibot481.SchemaWithPipe<readonly [valibot481.NumberSchema<undefined>, valibot481.IntegerAction<number, undefined>]>], undefined>, valibot481.CheckAction<string | number, "Invalid u64">]>, undefined>;
161
+ readonly minTimestamp: valibot481.NullableSchema<valibot481.SchemaWithPipe<readonly [valibot481.UnionSchema<[valibot481.StringSchema<undefined>, valibot481.SchemaWithPipe<readonly [valibot481.NumberSchema<undefined>, valibot481.IntegerAction<number, undefined>]>], undefined>, valibot481.CheckAction<string | number, "Invalid u64">]>, undefined>;
162
+ readonly maxTimestamp: valibot481.NullableSchema<valibot481.SchemaWithPipe<readonly [valibot481.UnionSchema<[valibot481.StringSchema<undefined>, valibot481.SchemaWithPipe<readonly [valibot481.NumberSchema<undefined>, valibot481.IntegerAction<number, undefined>]>], undefined>, valibot481.CheckAction<string | number, "Invalid u64">]>, undefined>;
163
+ readonly chain: valibot481.StringSchema<undefined>;
164
+ readonly nonce: valibot481.SchemaWithPipe<readonly [valibot481.NumberSchema<undefined>, valibot481.IntegerAction<number, undefined>, valibot481.CheckAction<number, "Invalid u32">]>;
165
165
  }, undefined>;
166
166
  }>;
167
167
  type TransactionExpiration = InferOutput<typeof TransactionExpiration>;
168
168
  declare const TransactionDataSchema: ObjectSchema<{
169
- readonly version: valibot0.LiteralSchema<2, undefined>;
170
- readonly sender: valibot0.NullishSchema<valibot0.SchemaWithPipe<readonly [valibot0.StringSchema<undefined>, valibot0.TransformAction<string, string>, valibot0.CheckAction<string, undefined>]>, undefined>;
171
- readonly expiration: valibot0.NullishSchema<EnumSchema<{
172
- None: valibot0.LiteralSchema<true, undefined>;
173
- Epoch: valibot0.SchemaWithPipe<readonly [valibot0.UnionSchema<[valibot0.StringSchema<undefined>, valibot0.SchemaWithPipe<readonly [valibot0.NumberSchema<undefined>, valibot0.IntegerAction<number, undefined>]>], undefined>, valibot0.CheckAction<string | number, "Invalid u64">]>;
169
+ readonly version: valibot481.LiteralSchema<2, undefined>;
170
+ readonly sender: valibot481.NullishSchema<valibot481.SchemaWithPipe<readonly [valibot481.StringSchema<undefined>, valibot481.TransformAction<string, string>, valibot481.CheckAction<string, undefined>]>, undefined>;
171
+ readonly expiration: valibot481.NullishSchema<EnumSchema<{
172
+ None: valibot481.LiteralSchema<true, undefined>;
173
+ Epoch: valibot481.SchemaWithPipe<readonly [valibot481.UnionSchema<[valibot481.StringSchema<undefined>, valibot481.SchemaWithPipe<readonly [valibot481.NumberSchema<undefined>, valibot481.IntegerAction<number, undefined>]>], undefined>, valibot481.CheckAction<string | number, "Invalid u64">]>;
174
174
  ValidDuring: ObjectSchema<{
175
- readonly minEpoch: valibot0.NullableSchema<valibot0.SchemaWithPipe<readonly [valibot0.UnionSchema<[valibot0.StringSchema<undefined>, valibot0.SchemaWithPipe<readonly [valibot0.NumberSchema<undefined>, valibot0.IntegerAction<number, undefined>]>], undefined>, valibot0.CheckAction<string | number, "Invalid u64">]>, undefined>;
176
- readonly maxEpoch: valibot0.NullableSchema<valibot0.SchemaWithPipe<readonly [valibot0.UnionSchema<[valibot0.StringSchema<undefined>, valibot0.SchemaWithPipe<readonly [valibot0.NumberSchema<undefined>, valibot0.IntegerAction<number, undefined>]>], undefined>, valibot0.CheckAction<string | number, "Invalid u64">]>, undefined>;
177
- readonly minTimestamp: valibot0.NullableSchema<valibot0.SchemaWithPipe<readonly [valibot0.UnionSchema<[valibot0.StringSchema<undefined>, valibot0.SchemaWithPipe<readonly [valibot0.NumberSchema<undefined>, valibot0.IntegerAction<number, undefined>]>], undefined>, valibot0.CheckAction<string | number, "Invalid u64">]>, undefined>;
178
- readonly maxTimestamp: valibot0.NullableSchema<valibot0.SchemaWithPipe<readonly [valibot0.UnionSchema<[valibot0.StringSchema<undefined>, valibot0.SchemaWithPipe<readonly [valibot0.NumberSchema<undefined>, valibot0.IntegerAction<number, undefined>]>], undefined>, valibot0.CheckAction<string | number, "Invalid u64">]>, undefined>;
179
- readonly chain: valibot0.StringSchema<undefined>;
180
- readonly nonce: valibot0.SchemaWithPipe<readonly [valibot0.NumberSchema<undefined>, valibot0.IntegerAction<number, undefined>, valibot0.CheckAction<number, "Invalid u32">]>;
175
+ readonly minEpoch: valibot481.NullableSchema<valibot481.SchemaWithPipe<readonly [valibot481.UnionSchema<[valibot481.StringSchema<undefined>, valibot481.SchemaWithPipe<readonly [valibot481.NumberSchema<undefined>, valibot481.IntegerAction<number, undefined>]>], undefined>, valibot481.CheckAction<string | number, "Invalid u64">]>, undefined>;
176
+ readonly maxEpoch: valibot481.NullableSchema<valibot481.SchemaWithPipe<readonly [valibot481.UnionSchema<[valibot481.StringSchema<undefined>, valibot481.SchemaWithPipe<readonly [valibot481.NumberSchema<undefined>, valibot481.IntegerAction<number, undefined>]>], undefined>, valibot481.CheckAction<string | number, "Invalid u64">]>, undefined>;
177
+ readonly minTimestamp: valibot481.NullableSchema<valibot481.SchemaWithPipe<readonly [valibot481.UnionSchema<[valibot481.StringSchema<undefined>, valibot481.SchemaWithPipe<readonly [valibot481.NumberSchema<undefined>, valibot481.IntegerAction<number, undefined>]>], undefined>, valibot481.CheckAction<string | number, "Invalid u64">]>, undefined>;
178
+ readonly maxTimestamp: valibot481.NullableSchema<valibot481.SchemaWithPipe<readonly [valibot481.UnionSchema<[valibot481.StringSchema<undefined>, valibot481.SchemaWithPipe<readonly [valibot481.NumberSchema<undefined>, valibot481.IntegerAction<number, undefined>]>], undefined>, valibot481.CheckAction<string | number, "Invalid u64">]>, undefined>;
179
+ readonly chain: valibot481.StringSchema<undefined>;
180
+ readonly nonce: valibot481.SchemaWithPipe<readonly [valibot481.NumberSchema<undefined>, valibot481.IntegerAction<number, undefined>, valibot481.CheckAction<number, "Invalid u32">]>;
181
181
  }, undefined>;
182
182
  }>, undefined>;
183
183
  readonly gasData: ObjectSchema<{
184
- readonly budget: valibot0.NullableSchema<valibot0.SchemaWithPipe<readonly [valibot0.UnionSchema<[valibot0.StringSchema<undefined>, valibot0.SchemaWithPipe<readonly [valibot0.NumberSchema<undefined>, valibot0.IntegerAction<number, undefined>]>], undefined>, valibot0.CheckAction<string | number, "Invalid u64">]>, undefined>;
185
- readonly price: valibot0.NullableSchema<valibot0.SchemaWithPipe<readonly [valibot0.UnionSchema<[valibot0.StringSchema<undefined>, valibot0.SchemaWithPipe<readonly [valibot0.NumberSchema<undefined>, valibot0.IntegerAction<number, undefined>]>], undefined>, valibot0.CheckAction<string | number, "Invalid u64">]>, undefined>;
186
- readonly owner: valibot0.NullableSchema<valibot0.SchemaWithPipe<readonly [valibot0.StringSchema<undefined>, valibot0.TransformAction<string, string>, valibot0.CheckAction<string, undefined>]>, undefined>;
187
- readonly payment: valibot0.NullableSchema<valibot0.ArraySchema<ObjectSchema<{
188
- readonly objectId: valibot0.SchemaWithPipe<readonly [valibot0.StringSchema<undefined>, valibot0.TransformAction<string, string>, valibot0.CheckAction<string, undefined>]>;
189
- readonly version: valibot0.SchemaWithPipe<readonly [valibot0.UnionSchema<[valibot0.StringSchema<undefined>, valibot0.SchemaWithPipe<readonly [valibot0.NumberSchema<undefined>, valibot0.IntegerAction<number, undefined>]>], undefined>, valibot0.CheckAction<string | number, "Invalid u64">]>;
190
- readonly digest: valibot0.StringSchema<undefined>;
184
+ readonly budget: valibot481.NullableSchema<valibot481.SchemaWithPipe<readonly [valibot481.UnionSchema<[valibot481.StringSchema<undefined>, valibot481.SchemaWithPipe<readonly [valibot481.NumberSchema<undefined>, valibot481.IntegerAction<number, undefined>]>], undefined>, valibot481.CheckAction<string | number, "Invalid u64">]>, undefined>;
185
+ readonly price: valibot481.NullableSchema<valibot481.SchemaWithPipe<readonly [valibot481.UnionSchema<[valibot481.StringSchema<undefined>, valibot481.SchemaWithPipe<readonly [valibot481.NumberSchema<undefined>, valibot481.IntegerAction<number, undefined>]>], undefined>, valibot481.CheckAction<string | number, "Invalid u64">]>, undefined>;
186
+ readonly owner: valibot481.NullableSchema<valibot481.SchemaWithPipe<readonly [valibot481.StringSchema<undefined>, valibot481.TransformAction<string, string>, valibot481.CheckAction<string, undefined>]>, undefined>;
187
+ readonly payment: valibot481.NullableSchema<valibot481.ArraySchema<ObjectSchema<{
188
+ readonly objectId: valibot481.SchemaWithPipe<readonly [valibot481.StringSchema<undefined>, valibot481.TransformAction<string, string>, valibot481.CheckAction<string, undefined>]>;
189
+ readonly version: valibot481.SchemaWithPipe<readonly [valibot481.UnionSchema<[valibot481.StringSchema<undefined>, valibot481.SchemaWithPipe<readonly [valibot481.NumberSchema<undefined>, valibot481.IntegerAction<number, undefined>]>], undefined>, valibot481.CheckAction<string | number, "Invalid u64">]>;
190
+ readonly digest: valibot481.StringSchema<undefined>;
191
191
  }, undefined>, undefined>, undefined>;
192
192
  }, undefined>;
193
- readonly inputs: valibot0.ArraySchema<EnumSchema<{
193
+ readonly inputs: valibot481.ArraySchema<EnumSchema<{
194
194
  Object: EnumSchema<{
195
195
  ImmOrOwnedObject: ObjectSchema<{
196
- readonly objectId: valibot0.SchemaWithPipe<readonly [valibot0.StringSchema<undefined>, valibot0.TransformAction<string, string>, valibot0.CheckAction<string, undefined>]>;
197
- readonly version: valibot0.SchemaWithPipe<readonly [valibot0.UnionSchema<[valibot0.StringSchema<undefined>, valibot0.SchemaWithPipe<readonly [valibot0.NumberSchema<undefined>, valibot0.IntegerAction<number, undefined>]>], undefined>, valibot0.CheckAction<string | number, "Invalid u64">]>;
198
- readonly digest: valibot0.StringSchema<undefined>;
196
+ readonly objectId: valibot481.SchemaWithPipe<readonly [valibot481.StringSchema<undefined>, valibot481.TransformAction<string, string>, valibot481.CheckAction<string, undefined>]>;
197
+ readonly version: valibot481.SchemaWithPipe<readonly [valibot481.UnionSchema<[valibot481.StringSchema<undefined>, valibot481.SchemaWithPipe<readonly [valibot481.NumberSchema<undefined>, valibot481.IntegerAction<number, undefined>]>], undefined>, valibot481.CheckAction<string | number, "Invalid u64">]>;
198
+ readonly digest: valibot481.StringSchema<undefined>;
199
199
  }, undefined>;
200
200
  SharedObject: ObjectSchema<{
201
- readonly objectId: valibot0.SchemaWithPipe<readonly [valibot0.StringSchema<undefined>, valibot0.TransformAction<string, string>, valibot0.CheckAction<string, undefined>]>;
202
- readonly initialSharedVersion: valibot0.SchemaWithPipe<readonly [valibot0.UnionSchema<[valibot0.StringSchema<undefined>, valibot0.SchemaWithPipe<readonly [valibot0.NumberSchema<undefined>, valibot0.IntegerAction<number, undefined>]>], undefined>, valibot0.CheckAction<string | number, "Invalid u64">]>;
203
- readonly mutable: valibot0.BooleanSchema<undefined>;
201
+ readonly objectId: valibot481.SchemaWithPipe<readonly [valibot481.StringSchema<undefined>, valibot481.TransformAction<string, string>, valibot481.CheckAction<string, undefined>]>;
202
+ readonly initialSharedVersion: valibot481.SchemaWithPipe<readonly [valibot481.UnionSchema<[valibot481.StringSchema<undefined>, valibot481.SchemaWithPipe<readonly [valibot481.NumberSchema<undefined>, valibot481.IntegerAction<number, undefined>]>], undefined>, valibot481.CheckAction<string | number, "Invalid u64">]>;
203
+ readonly mutable: valibot481.BooleanSchema<undefined>;
204
204
  }, undefined>;
205
205
  Receiving: ObjectSchema<{
206
- readonly objectId: valibot0.SchemaWithPipe<readonly [valibot0.StringSchema<undefined>, valibot0.TransformAction<string, string>, valibot0.CheckAction<string, undefined>]>;
207
- readonly version: valibot0.SchemaWithPipe<readonly [valibot0.UnionSchema<[valibot0.StringSchema<undefined>, valibot0.SchemaWithPipe<readonly [valibot0.NumberSchema<undefined>, valibot0.IntegerAction<number, undefined>]>], undefined>, valibot0.CheckAction<string | number, "Invalid u64">]>;
208
- readonly digest: valibot0.StringSchema<undefined>;
206
+ readonly objectId: valibot481.SchemaWithPipe<readonly [valibot481.StringSchema<undefined>, valibot481.TransformAction<string, string>, valibot481.CheckAction<string, undefined>]>;
207
+ readonly version: valibot481.SchemaWithPipe<readonly [valibot481.UnionSchema<[valibot481.StringSchema<undefined>, valibot481.SchemaWithPipe<readonly [valibot481.NumberSchema<undefined>, valibot481.IntegerAction<number, undefined>]>], undefined>, valibot481.CheckAction<string | number, "Invalid u64">]>;
208
+ readonly digest: valibot481.StringSchema<undefined>;
209
209
  }, undefined>;
210
210
  }>;
211
211
  Pure: ObjectSchema<{
212
- readonly bytes: valibot0.StringSchema<undefined>;
212
+ readonly bytes: valibot481.StringSchema<undefined>;
213
213
  }, undefined>;
214
214
  UnresolvedPure: ObjectSchema<{
215
- readonly value: valibot0.UnknownSchema;
215
+ readonly value: valibot481.UnknownSchema;
216
216
  }, undefined>;
217
217
  UnresolvedObject: ObjectSchema<{
218
- readonly objectId: valibot0.SchemaWithPipe<readonly [valibot0.StringSchema<undefined>, valibot0.TransformAction<string, string>, valibot0.CheckAction<string, undefined>]>;
219
- readonly version: valibot0.OptionalSchema<valibot0.NullableSchema<valibot0.SchemaWithPipe<readonly [valibot0.UnionSchema<[valibot0.StringSchema<undefined>, valibot0.SchemaWithPipe<readonly [valibot0.NumberSchema<undefined>, valibot0.IntegerAction<number, undefined>]>], undefined>, valibot0.CheckAction<string | number, "Invalid u64">]>, undefined>, undefined>;
220
- readonly digest: valibot0.OptionalSchema<valibot0.NullableSchema<valibot0.StringSchema<undefined>, undefined>, undefined>;
221
- readonly initialSharedVersion: valibot0.OptionalSchema<valibot0.NullableSchema<valibot0.SchemaWithPipe<readonly [valibot0.UnionSchema<[valibot0.StringSchema<undefined>, valibot0.SchemaWithPipe<readonly [valibot0.NumberSchema<undefined>, valibot0.IntegerAction<number, undefined>]>], undefined>, valibot0.CheckAction<string | number, "Invalid u64">]>, undefined>, undefined>;
222
- readonly mutable: valibot0.OptionalSchema<valibot0.NullableSchema<valibot0.BooleanSchema<undefined>, undefined>, undefined>;
218
+ readonly objectId: valibot481.SchemaWithPipe<readonly [valibot481.StringSchema<undefined>, valibot481.TransformAction<string, string>, valibot481.CheckAction<string, undefined>]>;
219
+ readonly version: valibot481.OptionalSchema<valibot481.NullableSchema<valibot481.SchemaWithPipe<readonly [valibot481.UnionSchema<[valibot481.StringSchema<undefined>, valibot481.SchemaWithPipe<readonly [valibot481.NumberSchema<undefined>, valibot481.IntegerAction<number, undefined>]>], undefined>, valibot481.CheckAction<string | number, "Invalid u64">]>, undefined>, undefined>;
220
+ readonly digest: valibot481.OptionalSchema<valibot481.NullableSchema<valibot481.StringSchema<undefined>, undefined>, undefined>;
221
+ readonly initialSharedVersion: valibot481.OptionalSchema<valibot481.NullableSchema<valibot481.SchemaWithPipe<readonly [valibot481.UnionSchema<[valibot481.StringSchema<undefined>, valibot481.SchemaWithPipe<readonly [valibot481.NumberSchema<undefined>, valibot481.IntegerAction<number, undefined>]>], undefined>, valibot481.CheckAction<string | number, "Invalid u64">]>, undefined>, undefined>;
222
+ readonly mutable: valibot481.OptionalSchema<valibot481.NullableSchema<valibot481.BooleanSchema<undefined>, undefined>, undefined>;
223
223
  }, undefined>;
224
224
  FundsWithdrawal: ObjectSchema<{
225
225
  readonly reservation: EnumSchema<{
226
- MaxAmountU64: valibot0.SchemaWithPipe<readonly [valibot0.UnionSchema<[valibot0.StringSchema<undefined>, valibot0.SchemaWithPipe<readonly [valibot0.NumberSchema<undefined>, valibot0.IntegerAction<number, undefined>]>], undefined>, valibot0.CheckAction<string | number, "Invalid u64">]>;
226
+ MaxAmountU64: valibot481.SchemaWithPipe<readonly [valibot481.UnionSchema<[valibot481.StringSchema<undefined>, valibot481.SchemaWithPipe<readonly [valibot481.NumberSchema<undefined>, valibot481.IntegerAction<number, undefined>]>], undefined>, valibot481.CheckAction<string | number, "Invalid u64">]>;
227
227
  }>;
228
228
  readonly typeArg: EnumSchema<{
229
- Balance: valibot0.StringSchema<undefined>;
229
+ Balance: valibot481.StringSchema<undefined>;
230
230
  }>;
231
231
  readonly withdrawFrom: EnumSchema<{
232
- Sender: valibot0.LiteralSchema<true, undefined>;
233
- Sponsor: valibot0.LiteralSchema<true, undefined>;
232
+ Sender: valibot481.LiteralSchema<true, undefined>;
233
+ Sponsor: valibot481.LiteralSchema<true, undefined>;
234
234
  }>;
235
235
  }, undefined>;
236
236
  }>, undefined>;
237
- readonly commands: valibot0.ArraySchema<EnumSchema<{
237
+ readonly commands: valibot481.ArraySchema<EnumSchema<{
238
238
  MoveCall: ObjectSchema<{
239
- readonly package: valibot0.SchemaWithPipe<readonly [valibot0.StringSchema<undefined>, valibot0.TransformAction<string, string>, valibot0.CheckAction<string, undefined>]>;
240
- readonly module: valibot0.StringSchema<undefined>;
241
- readonly function: valibot0.StringSchema<undefined>;
242
- readonly typeArguments: valibot0.ArraySchema<valibot0.StringSchema<undefined>, undefined>;
243
- readonly arguments: valibot0.ArraySchema<valibot0.UnionSchema<[GenericSchema<{
239
+ readonly package: valibot481.SchemaWithPipe<readonly [valibot481.StringSchema<undefined>, valibot481.TransformAction<string, string>, valibot481.CheckAction<string, undefined>]>;
240
+ readonly module: valibot481.StringSchema<undefined>;
241
+ readonly function: valibot481.StringSchema<undefined>;
242
+ readonly typeArguments: valibot481.ArraySchema<valibot481.StringSchema<undefined>, undefined>;
243
+ readonly arguments: valibot481.ArraySchema<valibot481.UnionSchema<[GenericSchema<{
244
244
  GasCoin: true;
245
245
  $kind?: "GasCoin" | undefined;
246
246
  }, {
@@ -267,13 +267,13 @@ declare const TransactionDataSchema: ObjectSchema<{
267
267
  NestedResult: [number, number];
268
268
  $kind: "NestedResult";
269
269
  }>], undefined>, undefined>;
270
- readonly _argumentTypes: valibot0.OptionalSchema<valibot0.NullableSchema<valibot0.ArraySchema<ObjectSchema<{
271
- readonly reference: valibot0.NullableSchema<valibot0.UnionSchema<[valibot0.LiteralSchema<"mutable", undefined>, valibot0.LiteralSchema<"immutable", undefined>, valibot0.LiteralSchema<"unknown", undefined>], undefined>, undefined>;
270
+ readonly _argumentTypes: valibot481.OptionalSchema<valibot481.NullableSchema<valibot481.ArraySchema<ObjectSchema<{
271
+ readonly reference: valibot481.NullableSchema<valibot481.UnionSchema<[valibot481.LiteralSchema<"mutable", undefined>, valibot481.LiteralSchema<"immutable", undefined>, valibot481.LiteralSchema<"unknown", undefined>], undefined>, undefined>;
272
272
  readonly body: GenericSchema<SuiClientTypes.OpenSignatureBody>;
273
273
  }, undefined>, undefined>, undefined>, undefined>;
274
274
  }, undefined>;
275
275
  TransferObjects: ObjectSchema<{
276
- readonly objects: valibot0.ArraySchema<valibot0.UnionSchema<[GenericSchema<{
276
+ readonly objects: valibot481.ArraySchema<valibot481.UnionSchema<[GenericSchema<{
277
277
  GasCoin: true;
278
278
  $kind?: "GasCoin" | undefined;
279
279
  }, {
@@ -300,7 +300,7 @@ declare const TransactionDataSchema: ObjectSchema<{
300
300
  NestedResult: [number, number];
301
301
  $kind: "NestedResult";
302
302
  }>], undefined>, undefined>;
303
- readonly address: valibot0.UnionSchema<[GenericSchema<{
303
+ readonly address: valibot481.UnionSchema<[GenericSchema<{
304
304
  GasCoin: true;
305
305
  $kind?: "GasCoin" | undefined;
306
306
  }, {
@@ -329,7 +329,7 @@ declare const TransactionDataSchema: ObjectSchema<{
329
329
  }>], undefined>;
330
330
  }, undefined>;
331
331
  SplitCoins: ObjectSchema<{
332
- readonly coin: valibot0.UnionSchema<[GenericSchema<{
332
+ readonly coin: valibot481.UnionSchema<[GenericSchema<{
333
333
  GasCoin: true;
334
334
  $kind?: "GasCoin" | undefined;
335
335
  }, {
@@ -356,7 +356,7 @@ declare const TransactionDataSchema: ObjectSchema<{
356
356
  NestedResult: [number, number];
357
357
  $kind: "NestedResult";
358
358
  }>], undefined>;
359
- readonly amounts: valibot0.ArraySchema<valibot0.UnionSchema<[GenericSchema<{
359
+ readonly amounts: valibot481.ArraySchema<valibot481.UnionSchema<[GenericSchema<{
360
360
  GasCoin: true;
361
361
  $kind?: "GasCoin" | undefined;
362
362
  }, {
@@ -385,7 +385,7 @@ declare const TransactionDataSchema: ObjectSchema<{
385
385
  }>], undefined>, undefined>;
386
386
  }, undefined>;
387
387
  MergeCoins: ObjectSchema<{
388
- readonly destination: valibot0.UnionSchema<[GenericSchema<{
388
+ readonly destination: valibot481.UnionSchema<[GenericSchema<{
389
389
  GasCoin: true;
390
390
  $kind?: "GasCoin" | undefined;
391
391
  }, {
@@ -412,7 +412,7 @@ declare const TransactionDataSchema: ObjectSchema<{
412
412
  NestedResult: [number, number];
413
413
  $kind: "NestedResult";
414
414
  }>], undefined>;
415
- readonly sources: valibot0.ArraySchema<valibot0.UnionSchema<[GenericSchema<{
415
+ readonly sources: valibot481.ArraySchema<valibot481.UnionSchema<[GenericSchema<{
416
416
  GasCoin: true;
417
417
  $kind?: "GasCoin" | undefined;
418
418
  }, {
@@ -441,12 +441,12 @@ declare const TransactionDataSchema: ObjectSchema<{
441
441
  }>], undefined>, undefined>;
442
442
  }, undefined>;
443
443
  Publish: ObjectSchema<{
444
- readonly modules: valibot0.ArraySchema<valibot0.StringSchema<undefined>, undefined>;
445
- readonly dependencies: valibot0.ArraySchema<valibot0.SchemaWithPipe<readonly [valibot0.StringSchema<undefined>, valibot0.TransformAction<string, string>, valibot0.CheckAction<string, undefined>]>, undefined>;
444
+ readonly modules: valibot481.ArraySchema<valibot481.StringSchema<undefined>, undefined>;
445
+ readonly dependencies: valibot481.ArraySchema<valibot481.SchemaWithPipe<readonly [valibot481.StringSchema<undefined>, valibot481.TransformAction<string, string>, valibot481.CheckAction<string, undefined>]>, undefined>;
446
446
  }, undefined>;
447
447
  MakeMoveVec: ObjectSchema<{
448
- readonly type: valibot0.NullableSchema<valibot0.StringSchema<undefined>, undefined>;
449
- readonly elements: valibot0.ArraySchema<valibot0.UnionSchema<[GenericSchema<{
448
+ readonly type: valibot481.NullableSchema<valibot481.StringSchema<undefined>, undefined>;
449
+ readonly elements: valibot481.ArraySchema<valibot481.UnionSchema<[GenericSchema<{
450
450
  GasCoin: true;
451
451
  $kind?: "GasCoin" | undefined;
452
452
  }, {
@@ -475,10 +475,10 @@ declare const TransactionDataSchema: ObjectSchema<{
475
475
  }>], undefined>, undefined>;
476
476
  }, undefined>;
477
477
  Upgrade: ObjectSchema<{
478
- readonly modules: valibot0.ArraySchema<valibot0.StringSchema<undefined>, undefined>;
479
- readonly dependencies: valibot0.ArraySchema<valibot0.SchemaWithPipe<readonly [valibot0.StringSchema<undefined>, valibot0.TransformAction<string, string>, valibot0.CheckAction<string, undefined>]>, undefined>;
480
- readonly package: valibot0.SchemaWithPipe<readonly [valibot0.StringSchema<undefined>, valibot0.TransformAction<string, string>, valibot0.CheckAction<string, undefined>]>;
481
- readonly ticket: valibot0.UnionSchema<[GenericSchema<{
478
+ readonly modules: valibot481.ArraySchema<valibot481.StringSchema<undefined>, undefined>;
479
+ readonly dependencies: valibot481.ArraySchema<valibot481.SchemaWithPipe<readonly [valibot481.StringSchema<undefined>, valibot481.TransformAction<string, string>, valibot481.CheckAction<string, undefined>]>, undefined>;
480
+ readonly package: valibot481.SchemaWithPipe<readonly [valibot481.StringSchema<undefined>, valibot481.TransformAction<string, string>, valibot481.CheckAction<string, undefined>]>;
481
+ readonly ticket: valibot481.UnionSchema<[GenericSchema<{
482
482
  GasCoin: true;
483
483
  $kind?: "GasCoin" | undefined;
484
484
  }, {
@@ -507,8 +507,8 @@ declare const TransactionDataSchema: ObjectSchema<{
507
507
  }>], undefined>;
508
508
  }, undefined>;
509
509
  $Intent: ObjectSchema<{
510
- readonly name: valibot0.StringSchema<undefined>;
511
- readonly inputs: valibot0.RecordSchema<valibot0.StringSchema<undefined>, valibot0.UnionSchema<[valibot0.UnionSchema<[GenericSchema<{
510
+ readonly name: valibot481.StringSchema<undefined>;
511
+ readonly inputs: valibot481.RecordSchema<valibot481.StringSchema<undefined>, valibot481.UnionSchema<[valibot481.UnionSchema<[GenericSchema<{
512
512
  GasCoin: true;
513
513
  $kind?: "GasCoin" | undefined;
514
514
  }, {
@@ -534,7 +534,7 @@ declare const TransactionDataSchema: ObjectSchema<{
534
534
  }, {
535
535
  NestedResult: [number, number];
536
536
  $kind: "NestedResult";
537
- }>], undefined>, valibot0.ArraySchema<valibot0.UnionSchema<[GenericSchema<{
537
+ }>], undefined>, valibot481.ArraySchema<valibot481.UnionSchema<[GenericSchema<{
538
538
  GasCoin: true;
539
539
  $kind?: "GasCoin" | undefined;
540
540
  }, {
@@ -561,7 +561,7 @@ declare const TransactionDataSchema: ObjectSchema<{
561
561
  NestedResult: [number, number];
562
562
  $kind: "NestedResult";
563
563
  }>], undefined>, undefined>], undefined>, undefined>;
564
- readonly data: valibot0.RecordSchema<valibot0.StringSchema<undefined>, valibot0.UnknownSchema, undefined>;
564
+ readonly data: valibot481.RecordSchema<valibot481.StringSchema<undefined>, valibot481.UnknownSchema, undefined>;
565
565
  }, undefined>;
566
566
  }>, undefined>;
567
567
  }, undefined>;
@@ -1 +1 @@
1
- {"version":3,"file":"internal.d.mts","names":[],"sources":["../../../src/transactions/data/internal.ts"],"sourcesContent":[],"mappings":"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"}
1
+ {"version":3,"file":"internal.d.mts","names":[],"sources":["../../../src/transactions/data/internal.ts"],"sourcesContent":[],"mappings":"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"}