@mysten/sui 2.28.0 → 2.30.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.
Files changed (58) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist/client/core-resolver.d.mts.map +1 -1
  3. package/dist/client/core-resolver.mjs +2 -5
  4. package/dist/client/core-resolver.mjs.map +1 -1
  5. package/dist/cryptography/signature.d.mts +14 -14
  6. package/dist/grpc/client.d.mts +1 -1
  7. package/dist/grpc/client.d.mts.map +1 -1
  8. package/dist/grpc/client.mjs +3 -5
  9. package/dist/grpc/client.mjs.map +1 -1
  10. package/dist/grpc/core.d.mts.map +1 -1
  11. package/dist/grpc/core.mjs +10 -10
  12. package/dist/grpc/core.mjs.map +1 -1
  13. package/dist/grpc/index.d.mts +4 -3
  14. package/dist/grpc/index.mjs +4 -2
  15. package/dist/grpc/proto/sui/forking/v1alpha/forking_service.client.d.mts +4 -4
  16. package/dist/grpc/proto/sui/rpc/v2/move_package_service.client.d.mts +4 -4
  17. package/dist/grpc/proto/sui/rpc/v2/name_service.client.d.mts +4 -4
  18. package/dist/grpc/proto/sui/rpc/v2/signature_verification_service.client.d.mts +4 -4
  19. package/dist/grpc/proto/sui/rpc/v2/state_service.client.d.mts +4 -4
  20. package/dist/grpc/proto/sui/rpc/v2/transaction_execution_service.client.d.mts +4 -4
  21. package/dist/grpc/transport.d.mts +18 -0
  22. package/dist/grpc/transport.d.mts.map +1 -0
  23. package/dist/grpc/transport.mjs +97 -0
  24. package/dist/grpc/transport.mjs.map +1 -0
  25. package/dist/transactions/Transaction.d.mts +7 -10
  26. package/dist/transactions/Transaction.d.mts.map +1 -1
  27. package/dist/transactions/Transaction.mjs.map +1 -1
  28. package/dist/transactions/data/internal.d.mts +127 -127
  29. package/dist/transactions/data/v1.d.mts +239 -239
  30. package/dist/transactions/data/v1.d.mts.map +1 -1
  31. package/dist/transactions/data/v2.d.mts +16 -16
  32. package/dist/transactions/data/v2.d.mts.map +1 -1
  33. package/dist/transactions/intents/CoinWithBalance.mjs +4 -2
  34. package/dist/transactions/intents/CoinWithBalance.mjs.map +1 -1
  35. package/dist/transactions/resolution-utils.mjs +13 -0
  36. package/dist/transactions/resolution-utils.mjs.map +1 -0
  37. package/dist/transactions/resolve.d.mts +8 -0
  38. package/dist/transactions/resolve.d.mts.map +1 -1
  39. package/dist/transactions/resolve.mjs +6 -2
  40. package/dist/transactions/resolve.mjs.map +1 -1
  41. package/dist/version.mjs +1 -1
  42. package/dist/version.mjs.map +1 -1
  43. package/dist/zklogin/bcs.d.mts +14 -14
  44. package/docs/clients/grpc.md +31 -7
  45. package/docs/migrations/sui-2.0/json-rpc-migration.md +50 -1
  46. package/docs/transactions/basics.md +19 -14
  47. package/docs/transactions/offline.md +137 -88
  48. package/package.json +2 -2
  49. package/src/client/core-resolver.ts +2 -7
  50. package/src/grpc/client.ts +12 -4
  51. package/src/grpc/core.ts +18 -14
  52. package/src/grpc/index.ts +7 -3
  53. package/src/grpc/transport.ts +160 -0
  54. package/src/transactions/Transaction.ts +1 -4
  55. package/src/transactions/intents/CoinWithBalance.ts +32 -25
  56. package/src/transactions/resolution-utils.ts +18 -0
  57. package/src/transactions/resolve.ts +29 -2
  58. 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 valibot525 from "valibot";
4
+ import * as valibot575 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: valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>;
13
- readonly version: valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>;
14
- readonly digest: valibot525.StringSchema<undefined>;
12
+ readonly objectId: valibot575.SchemaWithPipe<readonly [valibot575.StringSchema<undefined>, valibot575.TransformAction<string, string>, valibot575.CheckAction<string, undefined>]>;
13
+ readonly version: valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>;
14
+ readonly digest: valibot575.StringSchema<undefined>;
15
15
  }, undefined>;
16
16
  type ObjectRef = InferOutput<typeof ObjectRefSchema>;
17
- declare const ArgumentSchema: valibot525.UnionSchema<[GenericSchema<{
17
+ declare const ArgumentSchema: valibot575.UnionSchema<[GenericSchema<{
18
18
  GasCoin: true;
19
19
  $kind?: "GasCoin" | undefined;
20
20
  }, {
@@ -43,13 +43,13 @@ declare const ArgumentSchema: valibot525.UnionSchema<[GenericSchema<{
43
43
  }>], undefined>;
44
44
  type Argument = InferOutput<typeof ArgumentSchema>;
45
45
  declare const GasDataSchema: ObjectSchema<{
46
- readonly budget: valibot525.NullableSchema<valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>, undefined>;
47
- readonly price: valibot525.NullableSchema<valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>, undefined>;
48
- readonly owner: valibot525.NullableSchema<valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>, undefined>;
49
- readonly payment: valibot525.NullableSchema<valibot525.ArraySchema<ObjectSchema<{
50
- readonly objectId: valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>;
51
- readonly version: valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>;
52
- readonly digest: valibot525.StringSchema<undefined>;
46
+ readonly budget: valibot575.NullableSchema<valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>, undefined>;
47
+ readonly price: valibot575.NullableSchema<valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>, undefined>;
48
+ readonly owner: valibot575.NullableSchema<valibot575.SchemaWithPipe<readonly [valibot575.StringSchema<undefined>, valibot575.TransformAction<string, string>, valibot575.CheckAction<string, undefined>]>, undefined>;
49
+ readonly payment: valibot575.NullableSchema<valibot575.ArraySchema<ObjectSchema<{
50
+ readonly objectId: valibot575.SchemaWithPipe<readonly [valibot575.StringSchema<undefined>, valibot575.TransformAction<string, string>, valibot575.CheckAction<string, undefined>]>;
51
+ readonly version: valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>;
52
+ readonly digest: valibot575.StringSchema<undefined>;
53
53
  }, undefined>, undefined>, undefined>;
54
54
  }, undefined>;
55
55
  type GasData = InferOutput<typeof GasDataSchema>;
@@ -95,176 +95,176 @@ type Command<Arg = Argument> = EnumOutputShape<{
95
95
  };
96
96
  }>;
97
97
  declare const ReservationSchema: EnumSchema<{
98
- MaxAmountU64: valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>;
98
+ MaxAmountU64: valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>;
99
99
  }>;
100
100
  type Reservation = InferOutput<typeof ReservationSchema>;
101
101
  declare const WithdrawalTypeArgSchema: EnumSchema<{
102
- Balance: valibot525.StringSchema<undefined>;
102
+ Balance: valibot575.StringSchema<undefined>;
103
103
  }>;
104
104
  type WithdrawalTypeArg = InferOutput<typeof WithdrawalTypeArgSchema>;
105
105
  declare const WithdrawFromSchema: EnumSchema<{
106
- Sender: valibot525.LiteralSchema<true, undefined>;
107
- Sponsor: valibot525.LiteralSchema<true, undefined>;
106
+ Sender: valibot575.LiteralSchema<true, undefined>;
107
+ Sponsor: valibot575.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: valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>;
114
- readonly version: valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>;
115
- readonly digest: valibot525.StringSchema<undefined>;
113
+ readonly objectId: valibot575.SchemaWithPipe<readonly [valibot575.StringSchema<undefined>, valibot575.TransformAction<string, string>, valibot575.CheckAction<string, undefined>]>;
114
+ readonly version: valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>;
115
+ readonly digest: valibot575.StringSchema<undefined>;
116
116
  }, undefined>;
117
117
  SharedObject: ObjectSchema<{
118
- readonly objectId: valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>;
119
- readonly initialSharedVersion: valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>;
120
- readonly mutable: valibot525.BooleanSchema<undefined>;
118
+ readonly objectId: valibot575.SchemaWithPipe<readonly [valibot575.StringSchema<undefined>, valibot575.TransformAction<string, string>, valibot575.CheckAction<string, undefined>]>;
119
+ readonly initialSharedVersion: valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>;
120
+ readonly mutable: valibot575.BooleanSchema<undefined>;
121
121
  }, undefined>;
122
122
  Receiving: ObjectSchema<{
123
- readonly objectId: valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>;
124
- readonly version: valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>;
125
- readonly digest: valibot525.StringSchema<undefined>;
123
+ readonly objectId: valibot575.SchemaWithPipe<readonly [valibot575.StringSchema<undefined>, valibot575.TransformAction<string, string>, valibot575.CheckAction<string, undefined>]>;
124
+ readonly version: valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>;
125
+ readonly digest: valibot575.StringSchema<undefined>;
126
126
  }, undefined>;
127
127
  }>;
128
128
  Pure: ObjectSchema<{
129
- readonly bytes: valibot525.StringSchema<undefined>;
129
+ readonly bytes: valibot575.StringSchema<undefined>;
130
130
  }, undefined>;
131
131
  UnresolvedPure: ObjectSchema<{
132
- readonly value: valibot525.UnknownSchema;
132
+ readonly value: valibot575.UnknownSchema;
133
133
  }, undefined>;
134
134
  UnresolvedObject: ObjectSchema<{
135
- readonly objectId: valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>;
136
- readonly version: valibot525.OptionalSchema<valibot525.NullableSchema<valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>, undefined>, undefined>;
137
- readonly digest: valibot525.OptionalSchema<valibot525.NullableSchema<valibot525.StringSchema<undefined>, undefined>, undefined>;
138
- readonly initialSharedVersion: valibot525.OptionalSchema<valibot525.NullableSchema<valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>, undefined>, undefined>;
139
- readonly mutable: valibot525.OptionalSchema<valibot525.NullableSchema<valibot525.BooleanSchema<undefined>, undefined>, undefined>;
135
+ readonly objectId: valibot575.SchemaWithPipe<readonly [valibot575.StringSchema<undefined>, valibot575.TransformAction<string, string>, valibot575.CheckAction<string, undefined>]>;
136
+ readonly version: valibot575.OptionalSchema<valibot575.NullableSchema<valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>, undefined>, undefined>;
137
+ readonly digest: valibot575.OptionalSchema<valibot575.NullableSchema<valibot575.StringSchema<undefined>, undefined>, undefined>;
138
+ readonly initialSharedVersion: valibot575.OptionalSchema<valibot575.NullableSchema<valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>, undefined>, undefined>;
139
+ readonly mutable: valibot575.OptionalSchema<valibot575.NullableSchema<valibot575.BooleanSchema<undefined>, undefined>, undefined>;
140
140
  }, undefined>;
141
141
  FundsWithdrawal: ObjectSchema<{
142
142
  readonly reservation: EnumSchema<{
143
- MaxAmountU64: valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>;
143
+ MaxAmountU64: valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>;
144
144
  }>;
145
145
  readonly typeArg: EnumSchema<{
146
- Balance: valibot525.StringSchema<undefined>;
146
+ Balance: valibot575.StringSchema<undefined>;
147
147
  }>;
148
148
  readonly withdrawFrom: EnumSchema<{
149
- Sender: valibot525.LiteralSchema<true, undefined>;
150
- Sponsor: valibot525.LiteralSchema<true, undefined>;
149
+ Sender: valibot575.LiteralSchema<true, undefined>;
150
+ Sponsor: valibot575.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: valibot525.LiteralSchema<true, undefined>;
157
- Epoch: valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>;
156
+ None: valibot575.LiteralSchema<true, undefined>;
157
+ Epoch: valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>;
158
158
  ValidDuring: ObjectSchema<{
159
- readonly minEpoch: valibot525.NullableSchema<valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>, undefined>;
160
- readonly maxEpoch: valibot525.NullableSchema<valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>, undefined>;
161
- readonly minTimestamp: valibot525.NullableSchema<valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>, undefined>;
162
- readonly maxTimestamp: valibot525.NullableSchema<valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>, undefined>;
163
- readonly chain: valibot525.StringSchema<undefined>;
164
- readonly nonce: valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>, valibot525.CheckAction<number, "Invalid u32">]>;
159
+ readonly minEpoch: valibot575.NullableSchema<valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>, undefined>;
160
+ readonly maxEpoch: valibot575.NullableSchema<valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>, undefined>;
161
+ readonly minTimestamp: valibot575.NullableSchema<valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>, undefined>;
162
+ readonly maxTimestamp: valibot575.NullableSchema<valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>, undefined>;
163
+ readonly chain: valibot575.StringSchema<undefined>;
164
+ readonly nonce: valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>, valibot575.CheckAction<number, "Invalid u32">]>;
165
165
  }, undefined>;
166
166
  Validity: ObjectSchema<{
167
- readonly allowedProposers: valibot525.NullableSchema<ObjectSchema<{
168
- readonly epoch: valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>;
169
- readonly proposers: valibot525.SchemaWithPipe<readonly [valibot525.ArraySchema<valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>, valibot525.CheckAction<number, "Invalid u32">]>, undefined>, valibot525.CheckAction<number[], "Allowed proposers must not be empty">]>;
167
+ readonly allowedProposers: valibot575.NullableSchema<ObjectSchema<{
168
+ readonly epoch: valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>;
169
+ readonly proposers: valibot575.SchemaWithPipe<readonly [valibot575.ArraySchema<valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>, valibot575.CheckAction<number, "Invalid u32">]>, undefined>, valibot575.CheckAction<number[], "Allowed proposers must not be empty">]>;
170
170
  }, undefined>, undefined>;
171
- readonly minEpoch: valibot525.NullableSchema<valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>, undefined>;
172
- readonly maxEpoch: valibot525.NullableSchema<valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>, undefined>;
173
- readonly minTimestamp: valibot525.NullableSchema<valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>, undefined>;
174
- readonly maxTimestamp: valibot525.NullableSchema<valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>, undefined>;
175
- readonly chain: valibot525.StringSchema<undefined>;
176
- readonly nonce: valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>, valibot525.CheckAction<number, "Invalid u32">]>;
171
+ readonly minEpoch: valibot575.NullableSchema<valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>, undefined>;
172
+ readonly maxEpoch: valibot575.NullableSchema<valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>, undefined>;
173
+ readonly minTimestamp: valibot575.NullableSchema<valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>, undefined>;
174
+ readonly maxTimestamp: valibot575.NullableSchema<valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>, undefined>;
175
+ readonly chain: valibot575.StringSchema<undefined>;
176
+ readonly nonce: valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>, valibot575.CheckAction<number, "Invalid u32">]>;
177
177
  }, undefined>;
178
178
  }>;
179
179
  type TransactionExpiration = InferOutput<typeof TransactionExpiration>;
180
180
  declare const TransactionDataSchema: ObjectSchema<{
181
- readonly version: valibot525.LiteralSchema<2, undefined>;
182
- readonly sender: valibot525.NullishSchema<valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>, undefined>;
183
- readonly expiration: valibot525.NullishSchema<EnumSchema<{
184
- None: valibot525.LiteralSchema<true, undefined>;
185
- Epoch: valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>;
181
+ readonly version: valibot575.LiteralSchema<2, undefined>;
182
+ readonly sender: valibot575.NullishSchema<valibot575.SchemaWithPipe<readonly [valibot575.StringSchema<undefined>, valibot575.TransformAction<string, string>, valibot575.CheckAction<string, undefined>]>, undefined>;
183
+ readonly expiration: valibot575.NullishSchema<EnumSchema<{
184
+ None: valibot575.LiteralSchema<true, undefined>;
185
+ Epoch: valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>;
186
186
  ValidDuring: ObjectSchema<{
187
- readonly minEpoch: valibot525.NullableSchema<valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>, undefined>;
188
- readonly maxEpoch: valibot525.NullableSchema<valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>, undefined>;
189
- readonly minTimestamp: valibot525.NullableSchema<valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>, undefined>;
190
- readonly maxTimestamp: valibot525.NullableSchema<valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>, undefined>;
191
- readonly chain: valibot525.StringSchema<undefined>;
192
- readonly nonce: valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>, valibot525.CheckAction<number, "Invalid u32">]>;
187
+ readonly minEpoch: valibot575.NullableSchema<valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>, undefined>;
188
+ readonly maxEpoch: valibot575.NullableSchema<valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>, undefined>;
189
+ readonly minTimestamp: valibot575.NullableSchema<valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>, undefined>;
190
+ readonly maxTimestamp: valibot575.NullableSchema<valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>, undefined>;
191
+ readonly chain: valibot575.StringSchema<undefined>;
192
+ readonly nonce: valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>, valibot575.CheckAction<number, "Invalid u32">]>;
193
193
  }, undefined>;
194
194
  Validity: ObjectSchema<{
195
- readonly allowedProposers: valibot525.NullableSchema<ObjectSchema<{
196
- readonly epoch: valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>;
197
- readonly proposers: valibot525.SchemaWithPipe<readonly [valibot525.ArraySchema<valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>, valibot525.CheckAction<number, "Invalid u32">]>, undefined>, valibot525.CheckAction<number[], "Allowed proposers must not be empty">]>;
195
+ readonly allowedProposers: valibot575.NullableSchema<ObjectSchema<{
196
+ readonly epoch: valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>;
197
+ readonly proposers: valibot575.SchemaWithPipe<readonly [valibot575.ArraySchema<valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>, valibot575.CheckAction<number, "Invalid u32">]>, undefined>, valibot575.CheckAction<number[], "Allowed proposers must not be empty">]>;
198
198
  }, undefined>, undefined>;
199
- readonly minEpoch: valibot525.NullableSchema<valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>, undefined>;
200
- readonly maxEpoch: valibot525.NullableSchema<valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>, undefined>;
201
- readonly minTimestamp: valibot525.NullableSchema<valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>, undefined>;
202
- readonly maxTimestamp: valibot525.NullableSchema<valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>, undefined>;
203
- readonly chain: valibot525.StringSchema<undefined>;
204
- readonly nonce: valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>, valibot525.CheckAction<number, "Invalid u32">]>;
199
+ readonly minEpoch: valibot575.NullableSchema<valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>, undefined>;
200
+ readonly maxEpoch: valibot575.NullableSchema<valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>, undefined>;
201
+ readonly minTimestamp: valibot575.NullableSchema<valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>, undefined>;
202
+ readonly maxTimestamp: valibot575.NullableSchema<valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>, undefined>;
203
+ readonly chain: valibot575.StringSchema<undefined>;
204
+ readonly nonce: valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>, valibot575.CheckAction<number, "Invalid u32">]>;
205
205
  }, undefined>;
206
206
  }>, undefined>;
207
207
  readonly gasData: ObjectSchema<{
208
- readonly budget: valibot525.NullableSchema<valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>, undefined>;
209
- readonly price: valibot525.NullableSchema<valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>, undefined>;
210
- readonly owner: valibot525.NullableSchema<valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>, undefined>;
211
- readonly payment: valibot525.NullableSchema<valibot525.ArraySchema<ObjectSchema<{
212
- readonly objectId: valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>;
213
- readonly version: valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>;
214
- readonly digest: valibot525.StringSchema<undefined>;
208
+ readonly budget: valibot575.NullableSchema<valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>, undefined>;
209
+ readonly price: valibot575.NullableSchema<valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>, undefined>;
210
+ readonly owner: valibot575.NullableSchema<valibot575.SchemaWithPipe<readonly [valibot575.StringSchema<undefined>, valibot575.TransformAction<string, string>, valibot575.CheckAction<string, undefined>]>, undefined>;
211
+ readonly payment: valibot575.NullableSchema<valibot575.ArraySchema<ObjectSchema<{
212
+ readonly objectId: valibot575.SchemaWithPipe<readonly [valibot575.StringSchema<undefined>, valibot575.TransformAction<string, string>, valibot575.CheckAction<string, undefined>]>;
213
+ readonly version: valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>;
214
+ readonly digest: valibot575.StringSchema<undefined>;
215
215
  }, undefined>, undefined>, undefined>;
216
216
  }, undefined>;
217
- readonly inputs: valibot525.ArraySchema<EnumSchema<{
217
+ readonly inputs: valibot575.ArraySchema<EnumSchema<{
218
218
  Object: EnumSchema<{
219
219
  ImmOrOwnedObject: ObjectSchema<{
220
- readonly objectId: valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>;
221
- readonly version: valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>;
222
- readonly digest: valibot525.StringSchema<undefined>;
220
+ readonly objectId: valibot575.SchemaWithPipe<readonly [valibot575.StringSchema<undefined>, valibot575.TransformAction<string, string>, valibot575.CheckAction<string, undefined>]>;
221
+ readonly version: valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>;
222
+ readonly digest: valibot575.StringSchema<undefined>;
223
223
  }, undefined>;
224
224
  SharedObject: ObjectSchema<{
225
- readonly objectId: valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>;
226
- readonly initialSharedVersion: valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>;
227
- readonly mutable: valibot525.BooleanSchema<undefined>;
225
+ readonly objectId: valibot575.SchemaWithPipe<readonly [valibot575.StringSchema<undefined>, valibot575.TransformAction<string, string>, valibot575.CheckAction<string, undefined>]>;
226
+ readonly initialSharedVersion: valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>;
227
+ readonly mutable: valibot575.BooleanSchema<undefined>;
228
228
  }, undefined>;
229
229
  Receiving: ObjectSchema<{
230
- readonly objectId: valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>;
231
- readonly version: valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>;
232
- readonly digest: valibot525.StringSchema<undefined>;
230
+ readonly objectId: valibot575.SchemaWithPipe<readonly [valibot575.StringSchema<undefined>, valibot575.TransformAction<string, string>, valibot575.CheckAction<string, undefined>]>;
231
+ readonly version: valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>;
232
+ readonly digest: valibot575.StringSchema<undefined>;
233
233
  }, undefined>;
234
234
  }>;
235
235
  Pure: ObjectSchema<{
236
- readonly bytes: valibot525.StringSchema<undefined>;
236
+ readonly bytes: valibot575.StringSchema<undefined>;
237
237
  }, undefined>;
238
238
  UnresolvedPure: ObjectSchema<{
239
- readonly value: valibot525.UnknownSchema;
239
+ readonly value: valibot575.UnknownSchema;
240
240
  }, undefined>;
241
241
  UnresolvedObject: ObjectSchema<{
242
- readonly objectId: valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>;
243
- readonly version: valibot525.OptionalSchema<valibot525.NullableSchema<valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>, undefined>, undefined>;
244
- readonly digest: valibot525.OptionalSchema<valibot525.NullableSchema<valibot525.StringSchema<undefined>, undefined>, undefined>;
245
- readonly initialSharedVersion: valibot525.OptionalSchema<valibot525.NullableSchema<valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>, undefined>, undefined>;
246
- readonly mutable: valibot525.OptionalSchema<valibot525.NullableSchema<valibot525.BooleanSchema<undefined>, undefined>, undefined>;
242
+ readonly objectId: valibot575.SchemaWithPipe<readonly [valibot575.StringSchema<undefined>, valibot575.TransformAction<string, string>, valibot575.CheckAction<string, undefined>]>;
243
+ readonly version: valibot575.OptionalSchema<valibot575.NullableSchema<valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>, undefined>, undefined>;
244
+ readonly digest: valibot575.OptionalSchema<valibot575.NullableSchema<valibot575.StringSchema<undefined>, undefined>, undefined>;
245
+ readonly initialSharedVersion: valibot575.OptionalSchema<valibot575.NullableSchema<valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>, undefined>, undefined>;
246
+ readonly mutable: valibot575.OptionalSchema<valibot575.NullableSchema<valibot575.BooleanSchema<undefined>, undefined>, undefined>;
247
247
  }, undefined>;
248
248
  FundsWithdrawal: ObjectSchema<{
249
249
  readonly reservation: EnumSchema<{
250
- MaxAmountU64: valibot525.SchemaWithPipe<readonly [valibot525.UnionSchema<[valibot525.StringSchema<undefined>, valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>]>], undefined>, valibot525.CheckAction<string | number, "Invalid u64">]>;
250
+ MaxAmountU64: valibot575.SchemaWithPipe<readonly [valibot575.UnionSchema<[valibot575.StringSchema<undefined>, valibot575.SchemaWithPipe<readonly [valibot575.NumberSchema<undefined>, valibot575.IntegerAction<number, undefined>]>], undefined>, valibot575.CheckAction<string | number, "Invalid u64">]>;
251
251
  }>;
252
252
  readonly typeArg: EnumSchema<{
253
- Balance: valibot525.StringSchema<undefined>;
253
+ Balance: valibot575.StringSchema<undefined>;
254
254
  }>;
255
255
  readonly withdrawFrom: EnumSchema<{
256
- Sender: valibot525.LiteralSchema<true, undefined>;
257
- Sponsor: valibot525.LiteralSchema<true, undefined>;
256
+ Sender: valibot575.LiteralSchema<true, undefined>;
257
+ Sponsor: valibot575.LiteralSchema<true, undefined>;
258
258
  }>;
259
259
  }, undefined>;
260
260
  }>, undefined>;
261
- readonly commands: valibot525.ArraySchema<EnumSchema<{
261
+ readonly commands: valibot575.ArraySchema<EnumSchema<{
262
262
  MoveCall: ObjectSchema<{
263
- readonly package: valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>;
264
- readonly module: valibot525.StringSchema<undefined>;
265
- readonly function: valibot525.StringSchema<undefined>;
266
- readonly typeArguments: valibot525.ArraySchema<valibot525.StringSchema<undefined>, undefined>;
267
- readonly arguments: valibot525.ArraySchema<valibot525.UnionSchema<[GenericSchema<{
263
+ readonly package: valibot575.SchemaWithPipe<readonly [valibot575.StringSchema<undefined>, valibot575.TransformAction<string, string>, valibot575.CheckAction<string, undefined>]>;
264
+ readonly module: valibot575.StringSchema<undefined>;
265
+ readonly function: valibot575.StringSchema<undefined>;
266
+ readonly typeArguments: valibot575.ArraySchema<valibot575.StringSchema<undefined>, undefined>;
267
+ readonly arguments: valibot575.ArraySchema<valibot575.UnionSchema<[GenericSchema<{
268
268
  GasCoin: true;
269
269
  $kind?: "GasCoin" | undefined;
270
270
  }, {
@@ -291,13 +291,13 @@ declare const TransactionDataSchema: ObjectSchema<{
291
291
  NestedResult: [number, number];
292
292
  $kind: "NestedResult";
293
293
  }>], undefined>, undefined>;
294
- readonly _argumentTypes: valibot525.OptionalSchema<valibot525.NullableSchema<valibot525.ArraySchema<ObjectSchema<{
295
- readonly reference: valibot525.NullableSchema<valibot525.UnionSchema<[valibot525.LiteralSchema<"mutable", undefined>, valibot525.LiteralSchema<"immutable", undefined>, valibot525.LiteralSchema<"unknown", undefined>], undefined>, undefined>;
294
+ readonly _argumentTypes: valibot575.OptionalSchema<valibot575.NullableSchema<valibot575.ArraySchema<ObjectSchema<{
295
+ readonly reference: valibot575.NullableSchema<valibot575.UnionSchema<[valibot575.LiteralSchema<"mutable", undefined>, valibot575.LiteralSchema<"immutable", undefined>, valibot575.LiteralSchema<"unknown", undefined>], undefined>, undefined>;
296
296
  readonly body: GenericSchema<SuiClientTypes.OpenSignatureBody>;
297
297
  }, undefined>, undefined>, undefined>, undefined>;
298
298
  }, undefined>;
299
299
  TransferObjects: ObjectSchema<{
300
- readonly objects: valibot525.ArraySchema<valibot525.UnionSchema<[GenericSchema<{
300
+ readonly objects: valibot575.ArraySchema<valibot575.UnionSchema<[GenericSchema<{
301
301
  GasCoin: true;
302
302
  $kind?: "GasCoin" | undefined;
303
303
  }, {
@@ -324,7 +324,7 @@ declare const TransactionDataSchema: ObjectSchema<{
324
324
  NestedResult: [number, number];
325
325
  $kind: "NestedResult";
326
326
  }>], undefined>, undefined>;
327
- readonly address: valibot525.UnionSchema<[GenericSchema<{
327
+ readonly address: valibot575.UnionSchema<[GenericSchema<{
328
328
  GasCoin: true;
329
329
  $kind?: "GasCoin" | undefined;
330
330
  }, {
@@ -353,7 +353,7 @@ declare const TransactionDataSchema: ObjectSchema<{
353
353
  }>], undefined>;
354
354
  }, undefined>;
355
355
  SplitCoins: ObjectSchema<{
356
- readonly coin: valibot525.UnionSchema<[GenericSchema<{
356
+ readonly coin: valibot575.UnionSchema<[GenericSchema<{
357
357
  GasCoin: true;
358
358
  $kind?: "GasCoin" | undefined;
359
359
  }, {
@@ -380,7 +380,7 @@ declare const TransactionDataSchema: ObjectSchema<{
380
380
  NestedResult: [number, number];
381
381
  $kind: "NestedResult";
382
382
  }>], undefined>;
383
- readonly amounts: valibot525.ArraySchema<valibot525.UnionSchema<[GenericSchema<{
383
+ readonly amounts: valibot575.ArraySchema<valibot575.UnionSchema<[GenericSchema<{
384
384
  GasCoin: true;
385
385
  $kind?: "GasCoin" | undefined;
386
386
  }, {
@@ -409,7 +409,7 @@ declare const TransactionDataSchema: ObjectSchema<{
409
409
  }>], undefined>, undefined>;
410
410
  }, undefined>;
411
411
  MergeCoins: ObjectSchema<{
412
- readonly destination: valibot525.UnionSchema<[GenericSchema<{
412
+ readonly destination: valibot575.UnionSchema<[GenericSchema<{
413
413
  GasCoin: true;
414
414
  $kind?: "GasCoin" | undefined;
415
415
  }, {
@@ -436,7 +436,7 @@ declare const TransactionDataSchema: ObjectSchema<{
436
436
  NestedResult: [number, number];
437
437
  $kind: "NestedResult";
438
438
  }>], undefined>;
439
- readonly sources: valibot525.ArraySchema<valibot525.UnionSchema<[GenericSchema<{
439
+ readonly sources: valibot575.ArraySchema<valibot575.UnionSchema<[GenericSchema<{
440
440
  GasCoin: true;
441
441
  $kind?: "GasCoin" | undefined;
442
442
  }, {
@@ -465,12 +465,12 @@ declare const TransactionDataSchema: ObjectSchema<{
465
465
  }>], undefined>, undefined>;
466
466
  }, undefined>;
467
467
  Publish: ObjectSchema<{
468
- readonly modules: valibot525.ArraySchema<valibot525.StringSchema<undefined>, undefined>;
469
- readonly dependencies: valibot525.ArraySchema<valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>, undefined>;
468
+ readonly modules: valibot575.ArraySchema<valibot575.StringSchema<undefined>, undefined>;
469
+ readonly dependencies: valibot575.ArraySchema<valibot575.SchemaWithPipe<readonly [valibot575.StringSchema<undefined>, valibot575.TransformAction<string, string>, valibot575.CheckAction<string, undefined>]>, undefined>;
470
470
  }, undefined>;
471
471
  MakeMoveVec: ObjectSchema<{
472
- readonly type: valibot525.NullableSchema<valibot525.StringSchema<undefined>, undefined>;
473
- readonly elements: valibot525.ArraySchema<valibot525.UnionSchema<[GenericSchema<{
472
+ readonly type: valibot575.NullableSchema<valibot575.StringSchema<undefined>, undefined>;
473
+ readonly elements: valibot575.ArraySchema<valibot575.UnionSchema<[GenericSchema<{
474
474
  GasCoin: true;
475
475
  $kind?: "GasCoin" | undefined;
476
476
  }, {
@@ -499,10 +499,10 @@ declare const TransactionDataSchema: ObjectSchema<{
499
499
  }>], undefined>, undefined>;
500
500
  }, undefined>;
501
501
  Upgrade: ObjectSchema<{
502
- readonly modules: valibot525.ArraySchema<valibot525.StringSchema<undefined>, undefined>;
503
- readonly dependencies: valibot525.ArraySchema<valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>, undefined>;
504
- readonly package: valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>;
505
- readonly ticket: valibot525.UnionSchema<[GenericSchema<{
502
+ readonly modules: valibot575.ArraySchema<valibot575.StringSchema<undefined>, undefined>;
503
+ readonly dependencies: valibot575.ArraySchema<valibot575.SchemaWithPipe<readonly [valibot575.StringSchema<undefined>, valibot575.TransformAction<string, string>, valibot575.CheckAction<string, undefined>]>, undefined>;
504
+ readonly package: valibot575.SchemaWithPipe<readonly [valibot575.StringSchema<undefined>, valibot575.TransformAction<string, string>, valibot575.CheckAction<string, undefined>]>;
505
+ readonly ticket: valibot575.UnionSchema<[GenericSchema<{
506
506
  GasCoin: true;
507
507
  $kind?: "GasCoin" | undefined;
508
508
  }, {
@@ -531,8 +531,8 @@ declare const TransactionDataSchema: ObjectSchema<{
531
531
  }>], undefined>;
532
532
  }, undefined>;
533
533
  $Intent: ObjectSchema<{
534
- readonly name: valibot525.StringSchema<undefined>;
535
- readonly inputs: valibot525.RecordSchema<valibot525.StringSchema<undefined>, valibot525.UnionSchema<[valibot525.UnionSchema<[GenericSchema<{
534
+ readonly name: valibot575.StringSchema<undefined>;
535
+ readonly inputs: valibot575.RecordSchema<valibot575.StringSchema<undefined>, valibot575.UnionSchema<[valibot575.UnionSchema<[GenericSchema<{
536
536
  GasCoin: true;
537
537
  $kind?: "GasCoin" | undefined;
538
538
  }, {
@@ -558,7 +558,7 @@ declare const TransactionDataSchema: ObjectSchema<{
558
558
  }, {
559
559
  NestedResult: [number, number];
560
560
  $kind: "NestedResult";
561
- }>], undefined>, valibot525.ArraySchema<valibot525.UnionSchema<[GenericSchema<{
561
+ }>], undefined>, valibot575.ArraySchema<valibot575.UnionSchema<[GenericSchema<{
562
562
  GasCoin: true;
563
563
  $kind?: "GasCoin" | undefined;
564
564
  }, {
@@ -585,7 +585,7 @@ declare const TransactionDataSchema: ObjectSchema<{
585
585
  NestedResult: [number, number];
586
586
  $kind: "NestedResult";
587
587
  }>], undefined>, undefined>], undefined>, undefined>;
588
- readonly data: valibot525.RecordSchema<valibot525.StringSchema<undefined>, valibot525.UnknownSchema, undefined>;
588
+ readonly data: valibot575.RecordSchema<valibot575.StringSchema<undefined>, valibot575.UnknownSchema, undefined>;
589
589
  }, undefined>;
590
590
  }>, undefined>;
591
591
  }, undefined>;