@mysten/sui 2.31.0 → 2.31.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist/client/core-resolver.d.mts.map +1 -1
- package/dist/client/core-resolver.mjs +3 -2
- package/dist/client/core-resolver.mjs.map +1 -1
- package/dist/client/mvr.mjs +2 -1
- package/dist/client/mvr.mjs.map +1 -1
- package/dist/cryptography/signature.d.mts +6 -6
- package/dist/grpc/proto/sui/forking/v1alpha/forking_service.client.d.mts +4 -4
- package/dist/grpc/proto/sui/rpc/v2/ledger_service.client.d.mts +4 -4
- package/dist/grpc/proto/sui/rpc/v2/move_package_service.client.d.mts +4 -4
- package/dist/grpc/proto/sui/rpc/v2/name_service.client.d.mts +4 -4
- package/dist/grpc/proto/sui/rpc/v2/signature_verification_service.client.d.mts +4 -4
- package/dist/grpc/proto/sui/rpc/v2/state_service.client.d.mts +4 -4
- package/dist/grpc/proto/sui/rpc/v2/subscription_service.client.d.mts +4 -4
- package/dist/grpc/proto/sui/rpc/v2/transaction_execution_service.client.d.mts +4 -4
- package/dist/jsonRpc/client.mjs +1 -1
- package/dist/transactions/data/internal.d.mts +133 -133
- package/dist/transactions/data/v1.d.mts +239 -239
- package/dist/transactions/data/v1.d.mts.map +1 -1
- package/dist/transactions/data/v2.d.mts +16 -16
- package/dist/transactions/data/v2.d.mts.map +1 -1
- package/dist/utils/index.d.mts +2 -1
- package/dist/utils/index.mjs +2 -1
- package/dist/utils/move-registry.d.mts +3 -2
- package/dist/utils/move-registry.d.mts.map +1 -1
- package/dist/utils/move-registry.mjs +2 -18
- package/dist/utils/move-registry.mjs.map +1 -1
- package/dist/utils/named-packages.d.mts +5 -0
- package/dist/utils/named-packages.d.mts.map +1 -0
- package/dist/utils/named-packages.mjs +23 -0
- package/dist/utils/named-packages.mjs.map +1 -0
- package/dist/utils/sui-types.mjs +1 -1
- package/dist/utils/sui-types.mjs.map +1 -1
- package/dist/version.mjs +1 -1
- package/dist/version.mjs.map +1 -1
- package/package.json +1 -1
- package/src/client/core-resolver.ts +6 -2
- package/src/utils/move-registry.ts +2 -25
- package/src/utils/named-packages.ts +29 -0
- package/src/utils/sui-types.ts +1 -1
- 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
|
|
4
|
+
import * as valibot525 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:
|
|
13
|
-
readonly version:
|
|
14
|
-
readonly digest:
|
|
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>;
|
|
15
15
|
}, undefined>;
|
|
16
16
|
type ObjectRef = InferOutput<typeof ObjectRefSchema>;
|
|
17
|
-
declare const ArgumentSchema:
|
|
17
|
+
declare const ArgumentSchema: valibot525.UnionSchema<[GenericSchema<{
|
|
18
18
|
GasCoin: true;
|
|
19
19
|
$kind?: "GasCoin" | undefined;
|
|
20
20
|
}, {
|
|
@@ -43,13 +43,13 @@ declare const ArgumentSchema: valibot575.UnionSchema<[GenericSchema<{
|
|
|
43
43
|
}>], undefined>;
|
|
44
44
|
type Argument = InferOutput<typeof ArgumentSchema>;
|
|
45
45
|
declare const GasDataSchema: ObjectSchema<{
|
|
46
|
-
readonly budget:
|
|
47
|
-
readonly price:
|
|
48
|
-
readonly owner:
|
|
49
|
-
readonly payment:
|
|
50
|
-
readonly objectId:
|
|
51
|
-
readonly version:
|
|
52
|
-
readonly digest:
|
|
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>;
|
|
53
53
|
}, undefined>, undefined>, undefined>;
|
|
54
54
|
}, undefined>;
|
|
55
55
|
type GasData = InferOutput<typeof GasDataSchema>;
|
|
@@ -95,188 +95,188 @@ type Command<Arg = Argument> = EnumOutputShape<{
|
|
|
95
95
|
};
|
|
96
96
|
}>;
|
|
97
97
|
declare const ReservationSchema: EnumSchema<{
|
|
98
|
-
MaxAmountU64:
|
|
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">]>;
|
|
99
99
|
}>;
|
|
100
100
|
type Reservation = InferOutput<typeof ReservationSchema>;
|
|
101
101
|
declare const WithdrawalTypeArgSchema: EnumSchema<{
|
|
102
|
-
Balance:
|
|
102
|
+
Balance: valibot525.StringSchema<undefined>;
|
|
103
103
|
}>;
|
|
104
104
|
type WithdrawalTypeArg = InferOutput<typeof WithdrawalTypeArgSchema>;
|
|
105
105
|
declare const WithdrawFromSchema: EnumSchema<{
|
|
106
|
-
Sender:
|
|
107
|
-
Sponsor:
|
|
106
|
+
Sender: valibot525.LiteralSchema<true, undefined>;
|
|
107
|
+
Sponsor: valibot525.LiteralSchema<true, undefined>;
|
|
108
108
|
SenderAllowance: ObjectSchema<{
|
|
109
|
-
readonly funder:
|
|
110
|
-
readonly allowance:
|
|
109
|
+
readonly funder: valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>;
|
|
110
|
+
readonly allowance: valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>;
|
|
111
111
|
}, undefined>;
|
|
112
112
|
}>;
|
|
113
113
|
type WithdrawFrom = InferOutput<typeof WithdrawFromSchema>;
|
|
114
114
|
declare const CallArgSchema: EnumSchema<{
|
|
115
115
|
Object: EnumSchema<{
|
|
116
116
|
ImmOrOwnedObject: ObjectSchema<{
|
|
117
|
-
readonly objectId:
|
|
118
|
-
readonly version:
|
|
119
|
-
readonly digest:
|
|
117
|
+
readonly objectId: valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>;
|
|
118
|
+
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">]>;
|
|
119
|
+
readonly digest: valibot525.StringSchema<undefined>;
|
|
120
120
|
}, undefined>;
|
|
121
121
|
SharedObject: ObjectSchema<{
|
|
122
|
-
readonly objectId:
|
|
123
|
-
readonly initialSharedVersion:
|
|
124
|
-
readonly mutable:
|
|
122
|
+
readonly objectId: valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>;
|
|
123
|
+
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">]>;
|
|
124
|
+
readonly mutable: valibot525.BooleanSchema<undefined>;
|
|
125
125
|
}, undefined>;
|
|
126
126
|
Receiving: ObjectSchema<{
|
|
127
|
-
readonly objectId:
|
|
128
|
-
readonly version:
|
|
129
|
-
readonly digest:
|
|
127
|
+
readonly objectId: valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>;
|
|
128
|
+
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">]>;
|
|
129
|
+
readonly digest: valibot525.StringSchema<undefined>;
|
|
130
130
|
}, undefined>;
|
|
131
131
|
}>;
|
|
132
132
|
Pure: ObjectSchema<{
|
|
133
|
-
readonly bytes:
|
|
133
|
+
readonly bytes: valibot525.StringSchema<undefined>;
|
|
134
134
|
}, undefined>;
|
|
135
135
|
UnresolvedPure: ObjectSchema<{
|
|
136
|
-
readonly value:
|
|
136
|
+
readonly value: valibot525.UnknownSchema;
|
|
137
137
|
}, undefined>;
|
|
138
138
|
UnresolvedObject: ObjectSchema<{
|
|
139
|
-
readonly objectId:
|
|
140
|
-
readonly version:
|
|
141
|
-
readonly digest:
|
|
142
|
-
readonly initialSharedVersion:
|
|
143
|
-
readonly mutable:
|
|
139
|
+
readonly objectId: valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>;
|
|
140
|
+
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>;
|
|
141
|
+
readonly digest: valibot525.OptionalSchema<valibot525.NullableSchema<valibot525.StringSchema<undefined>, undefined>, undefined>;
|
|
142
|
+
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>;
|
|
143
|
+
readonly mutable: valibot525.OptionalSchema<valibot525.NullableSchema<valibot525.BooleanSchema<undefined>, undefined>, undefined>;
|
|
144
144
|
}, undefined>;
|
|
145
145
|
FundsWithdrawal: ObjectSchema<{
|
|
146
146
|
readonly reservation: EnumSchema<{
|
|
147
|
-
MaxAmountU64:
|
|
147
|
+
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">]>;
|
|
148
148
|
}>;
|
|
149
149
|
readonly typeArg: EnumSchema<{
|
|
150
|
-
Balance:
|
|
150
|
+
Balance: valibot525.StringSchema<undefined>;
|
|
151
151
|
}>;
|
|
152
152
|
readonly withdrawFrom: EnumSchema<{
|
|
153
|
-
Sender:
|
|
154
|
-
Sponsor:
|
|
153
|
+
Sender: valibot525.LiteralSchema<true, undefined>;
|
|
154
|
+
Sponsor: valibot525.LiteralSchema<true, undefined>;
|
|
155
155
|
SenderAllowance: ObjectSchema<{
|
|
156
|
-
readonly funder:
|
|
157
|
-
readonly allowance:
|
|
156
|
+
readonly funder: valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>;
|
|
157
|
+
readonly allowance: valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>;
|
|
158
158
|
}, undefined>;
|
|
159
159
|
}>;
|
|
160
160
|
}, undefined>;
|
|
161
161
|
}>;
|
|
162
162
|
type CallArg = InferOutput<typeof CallArgSchema>;
|
|
163
163
|
declare const TransactionExpiration: EnumSchema<{
|
|
164
|
-
None:
|
|
165
|
-
Epoch:
|
|
164
|
+
None: valibot525.LiteralSchema<true, undefined>;
|
|
165
|
+
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">]>;
|
|
166
166
|
ValidDuring: ObjectSchema<{
|
|
167
|
-
readonly minEpoch:
|
|
168
|
-
readonly maxEpoch:
|
|
169
|
-
readonly minTimestamp:
|
|
170
|
-
readonly maxTimestamp:
|
|
171
|
-
readonly chain:
|
|
172
|
-
readonly nonce:
|
|
167
|
+
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>;
|
|
168
|
+
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>;
|
|
169
|
+
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>;
|
|
170
|
+
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>;
|
|
171
|
+
readonly chain: valibot525.StringSchema<undefined>;
|
|
172
|
+
readonly nonce: valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>, valibot525.CheckAction<number, "Invalid u32">]>;
|
|
173
173
|
}, undefined>;
|
|
174
174
|
Validity: ObjectSchema<{
|
|
175
|
-
readonly allowedProposers:
|
|
176
|
-
readonly epoch:
|
|
177
|
-
readonly proposers:
|
|
175
|
+
readonly allowedProposers: valibot525.NullableSchema<ObjectSchema<{
|
|
176
|
+
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">]>;
|
|
177
|
+
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">]>;
|
|
178
178
|
}, undefined>, undefined>;
|
|
179
|
-
readonly minEpoch:
|
|
180
|
-
readonly maxEpoch:
|
|
181
|
-
readonly minTimestamp:
|
|
182
|
-
readonly maxTimestamp:
|
|
183
|
-
readonly chain:
|
|
184
|
-
readonly nonce:
|
|
179
|
+
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>;
|
|
180
|
+
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>;
|
|
181
|
+
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>;
|
|
182
|
+
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>;
|
|
183
|
+
readonly chain: valibot525.StringSchema<undefined>;
|
|
184
|
+
readonly nonce: valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>, valibot525.CheckAction<number, "Invalid u32">]>;
|
|
185
185
|
}, undefined>;
|
|
186
186
|
}>;
|
|
187
187
|
type TransactionExpiration = InferOutput<typeof TransactionExpiration>;
|
|
188
188
|
declare const TransactionDataSchema: ObjectSchema<{
|
|
189
|
-
readonly version:
|
|
190
|
-
readonly sender:
|
|
191
|
-
readonly expiration:
|
|
192
|
-
None:
|
|
193
|
-
Epoch:
|
|
189
|
+
readonly version: valibot525.LiteralSchema<2, undefined>;
|
|
190
|
+
readonly sender: valibot525.NullishSchema<valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>, undefined>;
|
|
191
|
+
readonly expiration: valibot525.NullishSchema<EnumSchema<{
|
|
192
|
+
None: valibot525.LiteralSchema<true, undefined>;
|
|
193
|
+
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">]>;
|
|
194
194
|
ValidDuring: ObjectSchema<{
|
|
195
|
-
readonly minEpoch:
|
|
196
|
-
readonly maxEpoch:
|
|
197
|
-
readonly minTimestamp:
|
|
198
|
-
readonly maxTimestamp:
|
|
199
|
-
readonly chain:
|
|
200
|
-
readonly nonce:
|
|
195
|
+
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>;
|
|
196
|
+
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>;
|
|
197
|
+
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>;
|
|
198
|
+
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>;
|
|
199
|
+
readonly chain: valibot525.StringSchema<undefined>;
|
|
200
|
+
readonly nonce: valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>, valibot525.CheckAction<number, "Invalid u32">]>;
|
|
201
201
|
}, undefined>;
|
|
202
202
|
Validity: ObjectSchema<{
|
|
203
|
-
readonly allowedProposers:
|
|
204
|
-
readonly epoch:
|
|
205
|
-
readonly proposers:
|
|
203
|
+
readonly allowedProposers: valibot525.NullableSchema<ObjectSchema<{
|
|
204
|
+
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">]>;
|
|
205
|
+
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">]>;
|
|
206
206
|
}, undefined>, undefined>;
|
|
207
|
-
readonly minEpoch:
|
|
208
|
-
readonly maxEpoch:
|
|
209
|
-
readonly minTimestamp:
|
|
210
|
-
readonly maxTimestamp:
|
|
211
|
-
readonly chain:
|
|
212
|
-
readonly nonce:
|
|
207
|
+
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>;
|
|
208
|
+
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>;
|
|
209
|
+
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>;
|
|
210
|
+
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>;
|
|
211
|
+
readonly chain: valibot525.StringSchema<undefined>;
|
|
212
|
+
readonly nonce: valibot525.SchemaWithPipe<readonly [valibot525.NumberSchema<undefined>, valibot525.IntegerAction<number, undefined>, valibot525.CheckAction<number, "Invalid u32">]>;
|
|
213
213
|
}, undefined>;
|
|
214
214
|
}>, undefined>;
|
|
215
215
|
readonly gasData: ObjectSchema<{
|
|
216
|
-
readonly budget:
|
|
217
|
-
readonly price:
|
|
218
|
-
readonly owner:
|
|
219
|
-
readonly payment:
|
|
220
|
-
readonly objectId:
|
|
221
|
-
readonly version:
|
|
222
|
-
readonly digest:
|
|
216
|
+
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>;
|
|
217
|
+
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>;
|
|
218
|
+
readonly owner: valibot525.NullableSchema<valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>, undefined>;
|
|
219
|
+
readonly payment: valibot525.NullableSchema<valibot525.ArraySchema<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>;
|
|
223
223
|
}, undefined>, undefined>, undefined>;
|
|
224
224
|
}, undefined>;
|
|
225
|
-
readonly inputs:
|
|
225
|
+
readonly inputs: valibot525.ArraySchema<EnumSchema<{
|
|
226
226
|
Object: EnumSchema<{
|
|
227
227
|
ImmOrOwnedObject: ObjectSchema<{
|
|
228
|
-
readonly objectId:
|
|
229
|
-
readonly version:
|
|
230
|
-
readonly digest:
|
|
228
|
+
readonly objectId: valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>;
|
|
229
|
+
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">]>;
|
|
230
|
+
readonly digest: valibot525.StringSchema<undefined>;
|
|
231
231
|
}, undefined>;
|
|
232
232
|
SharedObject: ObjectSchema<{
|
|
233
|
-
readonly objectId:
|
|
234
|
-
readonly initialSharedVersion:
|
|
235
|
-
readonly mutable:
|
|
233
|
+
readonly objectId: valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>;
|
|
234
|
+
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">]>;
|
|
235
|
+
readonly mutable: valibot525.BooleanSchema<undefined>;
|
|
236
236
|
}, undefined>;
|
|
237
237
|
Receiving: ObjectSchema<{
|
|
238
|
-
readonly objectId:
|
|
239
|
-
readonly version:
|
|
240
|
-
readonly digest:
|
|
238
|
+
readonly objectId: valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>;
|
|
239
|
+
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">]>;
|
|
240
|
+
readonly digest: valibot525.StringSchema<undefined>;
|
|
241
241
|
}, undefined>;
|
|
242
242
|
}>;
|
|
243
243
|
Pure: ObjectSchema<{
|
|
244
|
-
readonly bytes:
|
|
244
|
+
readonly bytes: valibot525.StringSchema<undefined>;
|
|
245
245
|
}, undefined>;
|
|
246
246
|
UnresolvedPure: ObjectSchema<{
|
|
247
|
-
readonly value:
|
|
247
|
+
readonly value: valibot525.UnknownSchema;
|
|
248
248
|
}, undefined>;
|
|
249
249
|
UnresolvedObject: ObjectSchema<{
|
|
250
|
-
readonly objectId:
|
|
251
|
-
readonly version:
|
|
252
|
-
readonly digest:
|
|
253
|
-
readonly initialSharedVersion:
|
|
254
|
-
readonly mutable:
|
|
250
|
+
readonly objectId: valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>;
|
|
251
|
+
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>;
|
|
252
|
+
readonly digest: valibot525.OptionalSchema<valibot525.NullableSchema<valibot525.StringSchema<undefined>, undefined>, undefined>;
|
|
253
|
+
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>;
|
|
254
|
+
readonly mutable: valibot525.OptionalSchema<valibot525.NullableSchema<valibot525.BooleanSchema<undefined>, undefined>, undefined>;
|
|
255
255
|
}, undefined>;
|
|
256
256
|
FundsWithdrawal: ObjectSchema<{
|
|
257
257
|
readonly reservation: EnumSchema<{
|
|
258
|
-
MaxAmountU64:
|
|
258
|
+
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">]>;
|
|
259
259
|
}>;
|
|
260
260
|
readonly typeArg: EnumSchema<{
|
|
261
|
-
Balance:
|
|
261
|
+
Balance: valibot525.StringSchema<undefined>;
|
|
262
262
|
}>;
|
|
263
263
|
readonly withdrawFrom: EnumSchema<{
|
|
264
|
-
Sender:
|
|
265
|
-
Sponsor:
|
|
264
|
+
Sender: valibot525.LiteralSchema<true, undefined>;
|
|
265
|
+
Sponsor: valibot525.LiteralSchema<true, undefined>;
|
|
266
266
|
SenderAllowance: ObjectSchema<{
|
|
267
|
-
readonly funder:
|
|
268
|
-
readonly allowance:
|
|
267
|
+
readonly funder: valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>;
|
|
268
|
+
readonly allowance: valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>;
|
|
269
269
|
}, undefined>;
|
|
270
270
|
}>;
|
|
271
271
|
}, undefined>;
|
|
272
272
|
}>, undefined>;
|
|
273
|
-
readonly commands:
|
|
273
|
+
readonly commands: valibot525.ArraySchema<EnumSchema<{
|
|
274
274
|
MoveCall: ObjectSchema<{
|
|
275
|
-
readonly package:
|
|
276
|
-
readonly module:
|
|
277
|
-
readonly function:
|
|
278
|
-
readonly typeArguments:
|
|
279
|
-
readonly arguments:
|
|
275
|
+
readonly package: valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>;
|
|
276
|
+
readonly module: valibot525.StringSchema<undefined>;
|
|
277
|
+
readonly function: valibot525.StringSchema<undefined>;
|
|
278
|
+
readonly typeArguments: valibot525.ArraySchema<valibot525.StringSchema<undefined>, undefined>;
|
|
279
|
+
readonly arguments: valibot525.ArraySchema<valibot525.UnionSchema<[GenericSchema<{
|
|
280
280
|
GasCoin: true;
|
|
281
281
|
$kind?: "GasCoin" | undefined;
|
|
282
282
|
}, {
|
|
@@ -303,13 +303,13 @@ declare const TransactionDataSchema: ObjectSchema<{
|
|
|
303
303
|
NestedResult: [number, number];
|
|
304
304
|
$kind: "NestedResult";
|
|
305
305
|
}>], undefined>, undefined>;
|
|
306
|
-
readonly _argumentTypes:
|
|
307
|
-
readonly reference:
|
|
306
|
+
readonly _argumentTypes: valibot525.OptionalSchema<valibot525.NullableSchema<valibot525.ArraySchema<ObjectSchema<{
|
|
307
|
+
readonly reference: valibot525.NullableSchema<valibot525.UnionSchema<[valibot525.LiteralSchema<"mutable", undefined>, valibot525.LiteralSchema<"immutable", undefined>, valibot525.LiteralSchema<"unknown", undefined>], undefined>, undefined>;
|
|
308
308
|
readonly body: GenericSchema<SuiClientTypes.OpenSignatureBody>;
|
|
309
309
|
}, undefined>, undefined>, undefined>, undefined>;
|
|
310
310
|
}, undefined>;
|
|
311
311
|
TransferObjects: ObjectSchema<{
|
|
312
|
-
readonly objects:
|
|
312
|
+
readonly objects: valibot525.ArraySchema<valibot525.UnionSchema<[GenericSchema<{
|
|
313
313
|
GasCoin: true;
|
|
314
314
|
$kind?: "GasCoin" | undefined;
|
|
315
315
|
}, {
|
|
@@ -336,7 +336,7 @@ declare const TransactionDataSchema: ObjectSchema<{
|
|
|
336
336
|
NestedResult: [number, number];
|
|
337
337
|
$kind: "NestedResult";
|
|
338
338
|
}>], undefined>, undefined>;
|
|
339
|
-
readonly address:
|
|
339
|
+
readonly address: valibot525.UnionSchema<[GenericSchema<{
|
|
340
340
|
GasCoin: true;
|
|
341
341
|
$kind?: "GasCoin" | undefined;
|
|
342
342
|
}, {
|
|
@@ -365,7 +365,7 @@ declare const TransactionDataSchema: ObjectSchema<{
|
|
|
365
365
|
}>], undefined>;
|
|
366
366
|
}, undefined>;
|
|
367
367
|
SplitCoins: ObjectSchema<{
|
|
368
|
-
readonly coin:
|
|
368
|
+
readonly coin: valibot525.UnionSchema<[GenericSchema<{
|
|
369
369
|
GasCoin: true;
|
|
370
370
|
$kind?: "GasCoin" | undefined;
|
|
371
371
|
}, {
|
|
@@ -392,7 +392,7 @@ declare const TransactionDataSchema: ObjectSchema<{
|
|
|
392
392
|
NestedResult: [number, number];
|
|
393
393
|
$kind: "NestedResult";
|
|
394
394
|
}>], undefined>;
|
|
395
|
-
readonly amounts:
|
|
395
|
+
readonly amounts: valibot525.ArraySchema<valibot525.UnionSchema<[GenericSchema<{
|
|
396
396
|
GasCoin: true;
|
|
397
397
|
$kind?: "GasCoin" | undefined;
|
|
398
398
|
}, {
|
|
@@ -421,7 +421,7 @@ declare const TransactionDataSchema: ObjectSchema<{
|
|
|
421
421
|
}>], undefined>, undefined>;
|
|
422
422
|
}, undefined>;
|
|
423
423
|
MergeCoins: ObjectSchema<{
|
|
424
|
-
readonly destination:
|
|
424
|
+
readonly destination: valibot525.UnionSchema<[GenericSchema<{
|
|
425
425
|
GasCoin: true;
|
|
426
426
|
$kind?: "GasCoin" | undefined;
|
|
427
427
|
}, {
|
|
@@ -448,7 +448,7 @@ declare const TransactionDataSchema: ObjectSchema<{
|
|
|
448
448
|
NestedResult: [number, number];
|
|
449
449
|
$kind: "NestedResult";
|
|
450
450
|
}>], undefined>;
|
|
451
|
-
readonly sources:
|
|
451
|
+
readonly sources: valibot525.ArraySchema<valibot525.UnionSchema<[GenericSchema<{
|
|
452
452
|
GasCoin: true;
|
|
453
453
|
$kind?: "GasCoin" | undefined;
|
|
454
454
|
}, {
|
|
@@ -477,12 +477,12 @@ declare const TransactionDataSchema: ObjectSchema<{
|
|
|
477
477
|
}>], undefined>, undefined>;
|
|
478
478
|
}, undefined>;
|
|
479
479
|
Publish: ObjectSchema<{
|
|
480
|
-
readonly modules:
|
|
481
|
-
readonly dependencies:
|
|
480
|
+
readonly modules: valibot525.ArraySchema<valibot525.StringSchema<undefined>, undefined>;
|
|
481
|
+
readonly dependencies: valibot525.ArraySchema<valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>, undefined>;
|
|
482
482
|
}, undefined>;
|
|
483
483
|
MakeMoveVec: ObjectSchema<{
|
|
484
|
-
readonly type:
|
|
485
|
-
readonly elements:
|
|
484
|
+
readonly type: valibot525.NullableSchema<valibot525.StringSchema<undefined>, undefined>;
|
|
485
|
+
readonly elements: valibot525.ArraySchema<valibot525.UnionSchema<[GenericSchema<{
|
|
486
486
|
GasCoin: true;
|
|
487
487
|
$kind?: "GasCoin" | undefined;
|
|
488
488
|
}, {
|
|
@@ -511,10 +511,10 @@ declare const TransactionDataSchema: ObjectSchema<{
|
|
|
511
511
|
}>], undefined>, undefined>;
|
|
512
512
|
}, undefined>;
|
|
513
513
|
Upgrade: ObjectSchema<{
|
|
514
|
-
readonly modules:
|
|
515
|
-
readonly dependencies:
|
|
516
|
-
readonly package:
|
|
517
|
-
readonly ticket:
|
|
514
|
+
readonly modules: valibot525.ArraySchema<valibot525.StringSchema<undefined>, undefined>;
|
|
515
|
+
readonly dependencies: valibot525.ArraySchema<valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>, undefined>;
|
|
516
|
+
readonly package: valibot525.SchemaWithPipe<readonly [valibot525.StringSchema<undefined>, valibot525.TransformAction<string, string>, valibot525.CheckAction<string, undefined>]>;
|
|
517
|
+
readonly ticket: valibot525.UnionSchema<[GenericSchema<{
|
|
518
518
|
GasCoin: true;
|
|
519
519
|
$kind?: "GasCoin" | undefined;
|
|
520
520
|
}, {
|
|
@@ -543,8 +543,8 @@ declare const TransactionDataSchema: ObjectSchema<{
|
|
|
543
543
|
}>], undefined>;
|
|
544
544
|
}, undefined>;
|
|
545
545
|
$Intent: ObjectSchema<{
|
|
546
|
-
readonly name:
|
|
547
|
-
readonly inputs:
|
|
546
|
+
readonly name: valibot525.StringSchema<undefined>;
|
|
547
|
+
readonly inputs: valibot525.RecordSchema<valibot525.StringSchema<undefined>, valibot525.UnionSchema<[valibot525.UnionSchema<[GenericSchema<{
|
|
548
548
|
GasCoin: true;
|
|
549
549
|
$kind?: "GasCoin" | undefined;
|
|
550
550
|
}, {
|
|
@@ -570,7 +570,7 @@ declare const TransactionDataSchema: ObjectSchema<{
|
|
|
570
570
|
}, {
|
|
571
571
|
NestedResult: [number, number];
|
|
572
572
|
$kind: "NestedResult";
|
|
573
|
-
}>], undefined>,
|
|
573
|
+
}>], undefined>, valibot525.ArraySchema<valibot525.UnionSchema<[GenericSchema<{
|
|
574
574
|
GasCoin: true;
|
|
575
575
|
$kind?: "GasCoin" | undefined;
|
|
576
576
|
}, {
|
|
@@ -597,7 +597,7 @@ declare const TransactionDataSchema: ObjectSchema<{
|
|
|
597
597
|
NestedResult: [number, number];
|
|
598
598
|
$kind: "NestedResult";
|
|
599
599
|
}>], undefined>, undefined>], undefined>, undefined>;
|
|
600
|
-
readonly data:
|
|
600
|
+
readonly data: valibot525.RecordSchema<valibot525.StringSchema<undefined>, valibot525.UnknownSchema, undefined>;
|
|
601
601
|
}, undefined>;
|
|
602
602
|
}>, undefined>;
|
|
603
603
|
}, undefined>;
|