@xyo-network/xl1-protocol 1.14.1 → 1.14.3
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/dist/neutral/index.mjs +231 -74
- package/dist/neutral/index.mjs.map +1 -1
- package/dist/neutral/zod/BlockBoundWitness.d.ts +948 -0
- package/dist/neutral/zod/BlockBoundWitness.d.ts.map +1 -1
- package/dist/neutral/zod/TransactionBoundWitness.d.ts +880 -4
- package/dist/neutral/zod/TransactionBoundWitness.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/zod/BlockBoundWitness.ts +78 -0
- package/src/zod/TransactionBoundWitness.ts +78 -0
|
@@ -151,6 +151,298 @@ export declare const toTransactionBoundWitness: {
|
|
|
151
151
|
script?: string[] | undefined;
|
|
152
152
|
};
|
|
153
153
|
};
|
|
154
|
+
export declare const TransactionBoundWitnessWithHashMetaZod: z.ZodObject<{
|
|
155
|
+
schema: z.ZodLiteral<"network.xyo.boundwitness">;
|
|
156
|
+
addresses: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Address, string>>>;
|
|
157
|
+
payload_hashes: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>;
|
|
158
|
+
payload_schemas: z.ZodArray<z.ZodString>;
|
|
159
|
+
previous_hashes: z.ZodArray<z.ZodNullable<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>>;
|
|
160
|
+
$destination: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Address, string>>>;
|
|
161
|
+
$sourceQuery: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>;
|
|
162
|
+
$signatures: z.ZodArray<z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>, z.ZodNull]>>;
|
|
163
|
+
nbf: z.ZodPipe<z.ZodNumber, z.ZodTransform<import("../model/index.ts").BlockNumber, number>>;
|
|
164
|
+
exp: z.ZodPipe<z.ZodNumber, z.ZodTransform<import("../model/index.ts").BlockNumber, number>>;
|
|
165
|
+
fees: z.ZodObject<{
|
|
166
|
+
base: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>;
|
|
167
|
+
gasLimit: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>;
|
|
168
|
+
gasPrice: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>;
|
|
169
|
+
priority: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>;
|
|
170
|
+
}, z.core.$strip>;
|
|
171
|
+
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("../model/ChainId.ts").ChainId, string>>;
|
|
172
|
+
from: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Address, string>>;
|
|
173
|
+
script: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
174
|
+
_hash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>;
|
|
175
|
+
_dataHash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>;
|
|
176
|
+
}, z.core.$strip>;
|
|
177
|
+
export type TransactionBoundWitnessWithHashMeta = z.infer<typeof TransactionBoundWitnessWithHashMetaZod>;
|
|
178
|
+
export declare const isTransactionBoundWitnessWithHashMeta: (value: unknown) => value is {
|
|
179
|
+
schema: "network.xyo.boundwitness";
|
|
180
|
+
addresses: import("@xylabs/sdk-js").Address[];
|
|
181
|
+
payload_hashes: import("@xylabs/sdk-js").Hash[];
|
|
182
|
+
payload_schemas: string[];
|
|
183
|
+
previous_hashes: (import("@xylabs/sdk-js").Hash | null)[];
|
|
184
|
+
$signatures: (import("@xylabs/sdk-js").Hex | null)[];
|
|
185
|
+
nbf: import("../model/index.ts").BlockNumber;
|
|
186
|
+
exp: import("../model/index.ts").BlockNumber;
|
|
187
|
+
fees: {
|
|
188
|
+
base: import("@xylabs/sdk-js").Hex;
|
|
189
|
+
gasLimit: import("@xylabs/sdk-js").Hex;
|
|
190
|
+
gasPrice: import("@xylabs/sdk-js").Hex;
|
|
191
|
+
priority: import("@xylabs/sdk-js").Hex;
|
|
192
|
+
};
|
|
193
|
+
chain: import("../model/ChainId.ts").ChainId;
|
|
194
|
+
from: import("@xylabs/sdk-js").Address;
|
|
195
|
+
_hash: import("@xylabs/sdk-js").Hash;
|
|
196
|
+
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
197
|
+
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
198
|
+
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
199
|
+
script?: string[] | undefined;
|
|
200
|
+
};
|
|
201
|
+
export declare const asTransactionBoundWitnessWithHashMeta: {
|
|
202
|
+
(value: unknown): {
|
|
203
|
+
schema: "network.xyo.boundwitness";
|
|
204
|
+
addresses: import("@xylabs/sdk-js").Address[];
|
|
205
|
+
payload_hashes: import("@xylabs/sdk-js").Hash[];
|
|
206
|
+
payload_schemas: string[];
|
|
207
|
+
previous_hashes: (import("@xylabs/sdk-js").Hash | null)[];
|
|
208
|
+
$signatures: (import("@xylabs/sdk-js").Hex | null)[];
|
|
209
|
+
nbf: import("../model/index.ts").BlockNumber;
|
|
210
|
+
exp: import("../model/index.ts").BlockNumber;
|
|
211
|
+
fees: {
|
|
212
|
+
base: import("@xylabs/sdk-js").Hex;
|
|
213
|
+
gasLimit: import("@xylabs/sdk-js").Hex;
|
|
214
|
+
gasPrice: import("@xylabs/sdk-js").Hex;
|
|
215
|
+
priority: import("@xylabs/sdk-js").Hex;
|
|
216
|
+
};
|
|
217
|
+
chain: import("../model/ChainId.ts").ChainId;
|
|
218
|
+
from: import("@xylabs/sdk-js").Address;
|
|
219
|
+
_hash: import("@xylabs/sdk-js").Hash;
|
|
220
|
+
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
221
|
+
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
222
|
+
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
223
|
+
script?: string[] | undefined;
|
|
224
|
+
} | undefined;
|
|
225
|
+
(value: unknown, assert: import("@xylabs/zod").ZodFactoryConfig): {
|
|
226
|
+
schema: "network.xyo.boundwitness";
|
|
227
|
+
addresses: import("@xylabs/sdk-js").Address[];
|
|
228
|
+
payload_hashes: import("@xylabs/sdk-js").Hash[];
|
|
229
|
+
payload_schemas: string[];
|
|
230
|
+
previous_hashes: (import("@xylabs/sdk-js").Hash | null)[];
|
|
231
|
+
$signatures: (import("@xylabs/sdk-js").Hex | null)[];
|
|
232
|
+
nbf: import("../model/index.ts").BlockNumber;
|
|
233
|
+
exp: import("../model/index.ts").BlockNumber;
|
|
234
|
+
fees: {
|
|
235
|
+
base: import("@xylabs/sdk-js").Hex;
|
|
236
|
+
gasLimit: import("@xylabs/sdk-js").Hex;
|
|
237
|
+
gasPrice: import("@xylabs/sdk-js").Hex;
|
|
238
|
+
priority: import("@xylabs/sdk-js").Hex;
|
|
239
|
+
};
|
|
240
|
+
chain: import("../model/ChainId.ts").ChainId;
|
|
241
|
+
from: import("@xylabs/sdk-js").Address;
|
|
242
|
+
_hash: import("@xylabs/sdk-js").Hash;
|
|
243
|
+
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
244
|
+
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
245
|
+
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
246
|
+
script?: string[] | undefined;
|
|
247
|
+
};
|
|
248
|
+
};
|
|
249
|
+
export declare const toTransactionBoundWitnessWithHashMeta: {
|
|
250
|
+
(value: unknown): {
|
|
251
|
+
schema: "network.xyo.boundwitness";
|
|
252
|
+
addresses: import("@xylabs/sdk-js").Address[];
|
|
253
|
+
payload_hashes: import("@xylabs/sdk-js").Hash[];
|
|
254
|
+
payload_schemas: string[];
|
|
255
|
+
previous_hashes: (import("@xylabs/sdk-js").Hash | null)[];
|
|
256
|
+
$signatures: (import("@xylabs/sdk-js").Hex | null)[];
|
|
257
|
+
nbf: import("../model/index.ts").BlockNumber;
|
|
258
|
+
exp: import("../model/index.ts").BlockNumber;
|
|
259
|
+
fees: {
|
|
260
|
+
base: import("@xylabs/sdk-js").Hex;
|
|
261
|
+
gasLimit: import("@xylabs/sdk-js").Hex;
|
|
262
|
+
gasPrice: import("@xylabs/sdk-js").Hex;
|
|
263
|
+
priority: import("@xylabs/sdk-js").Hex;
|
|
264
|
+
};
|
|
265
|
+
chain: import("../model/ChainId.ts").ChainId;
|
|
266
|
+
from: import("@xylabs/sdk-js").Address;
|
|
267
|
+
_hash: import("@xylabs/sdk-js").Hash;
|
|
268
|
+
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
269
|
+
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
270
|
+
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
271
|
+
script?: string[] | undefined;
|
|
272
|
+
} | undefined;
|
|
273
|
+
(value: unknown, assert: import("@xylabs/zod").ZodFactoryConfig): {
|
|
274
|
+
schema: "network.xyo.boundwitness";
|
|
275
|
+
addresses: import("@xylabs/sdk-js").Address[];
|
|
276
|
+
payload_hashes: import("@xylabs/sdk-js").Hash[];
|
|
277
|
+
payload_schemas: string[];
|
|
278
|
+
previous_hashes: (import("@xylabs/sdk-js").Hash | null)[];
|
|
279
|
+
$signatures: (import("@xylabs/sdk-js").Hex | null)[];
|
|
280
|
+
nbf: import("../model/index.ts").BlockNumber;
|
|
281
|
+
exp: import("../model/index.ts").BlockNumber;
|
|
282
|
+
fees: {
|
|
283
|
+
base: import("@xylabs/sdk-js").Hex;
|
|
284
|
+
gasLimit: import("@xylabs/sdk-js").Hex;
|
|
285
|
+
gasPrice: import("@xylabs/sdk-js").Hex;
|
|
286
|
+
priority: import("@xylabs/sdk-js").Hex;
|
|
287
|
+
};
|
|
288
|
+
chain: import("../model/ChainId.ts").ChainId;
|
|
289
|
+
from: import("@xylabs/sdk-js").Address;
|
|
290
|
+
_hash: import("@xylabs/sdk-js").Hash;
|
|
291
|
+
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
292
|
+
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
293
|
+
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
294
|
+
script?: string[] | undefined;
|
|
295
|
+
};
|
|
296
|
+
};
|
|
297
|
+
export declare const TransactionBoundWitnessWithStorageMetaZod: z.ZodObject<{
|
|
298
|
+
schema: z.ZodLiteral<"network.xyo.boundwitness">;
|
|
299
|
+
addresses: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Address, string>>>;
|
|
300
|
+
payload_hashes: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>;
|
|
301
|
+
payload_schemas: z.ZodArray<z.ZodString>;
|
|
302
|
+
previous_hashes: z.ZodArray<z.ZodNullable<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>>;
|
|
303
|
+
$destination: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Address, string>>>;
|
|
304
|
+
$sourceQuery: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>;
|
|
305
|
+
$signatures: z.ZodArray<z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>, z.ZodNull]>>;
|
|
306
|
+
nbf: z.ZodPipe<z.ZodNumber, z.ZodTransform<import("../model/index.ts").BlockNumber, number>>;
|
|
307
|
+
exp: z.ZodPipe<z.ZodNumber, z.ZodTransform<import("../model/index.ts").BlockNumber, number>>;
|
|
308
|
+
fees: z.ZodObject<{
|
|
309
|
+
base: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>;
|
|
310
|
+
gasLimit: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>;
|
|
311
|
+
gasPrice: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>;
|
|
312
|
+
priority: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>;
|
|
313
|
+
}, z.core.$strip>;
|
|
314
|
+
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("../model/ChainId.ts").ChainId, string>>;
|
|
315
|
+
from: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Address, string>>;
|
|
316
|
+
script: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
317
|
+
_hash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>;
|
|
318
|
+
_dataHash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>;
|
|
319
|
+
_sequence: z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/payload-model").LocalSequence, string>>, z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/payload-model").QualifiedSequence, string>>]>;
|
|
320
|
+
}, z.core.$strip>;
|
|
321
|
+
export type TransactionBoundWitnessWithStorageMeta = z.infer<typeof TransactionBoundWitnessWithStorageMetaZod>;
|
|
322
|
+
export declare const isTransactionBoundWitnessWithStorageMeta: (value: unknown) => value is {
|
|
323
|
+
schema: "network.xyo.boundwitness";
|
|
324
|
+
addresses: import("@xylabs/sdk-js").Address[];
|
|
325
|
+
payload_hashes: import("@xylabs/sdk-js").Hash[];
|
|
326
|
+
payload_schemas: string[];
|
|
327
|
+
previous_hashes: (import("@xylabs/sdk-js").Hash | null)[];
|
|
328
|
+
$signatures: (import("@xylabs/sdk-js").Hex | null)[];
|
|
329
|
+
nbf: import("../model/index.ts").BlockNumber;
|
|
330
|
+
exp: import("../model/index.ts").BlockNumber;
|
|
331
|
+
fees: {
|
|
332
|
+
base: import("@xylabs/sdk-js").Hex;
|
|
333
|
+
gasLimit: import("@xylabs/sdk-js").Hex;
|
|
334
|
+
gasPrice: import("@xylabs/sdk-js").Hex;
|
|
335
|
+
priority: import("@xylabs/sdk-js").Hex;
|
|
336
|
+
};
|
|
337
|
+
chain: import("../model/ChainId.ts").ChainId;
|
|
338
|
+
from: import("@xylabs/sdk-js").Address;
|
|
339
|
+
_hash: import("@xylabs/sdk-js").Hash;
|
|
340
|
+
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
341
|
+
_sequence: import("@xyo-network/payload-model").LocalSequence | import("@xyo-network/payload-model").QualifiedSequence;
|
|
342
|
+
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
343
|
+
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
344
|
+
script?: string[] | undefined;
|
|
345
|
+
};
|
|
346
|
+
export declare const asTransactionBoundWitnessWithStorageMeta: {
|
|
347
|
+
(value: unknown): {
|
|
348
|
+
schema: "network.xyo.boundwitness";
|
|
349
|
+
addresses: import("@xylabs/sdk-js").Address[];
|
|
350
|
+
payload_hashes: import("@xylabs/sdk-js").Hash[];
|
|
351
|
+
payload_schemas: string[];
|
|
352
|
+
previous_hashes: (import("@xylabs/sdk-js").Hash | null)[];
|
|
353
|
+
$signatures: (import("@xylabs/sdk-js").Hex | null)[];
|
|
354
|
+
nbf: import("../model/index.ts").BlockNumber;
|
|
355
|
+
exp: import("../model/index.ts").BlockNumber;
|
|
356
|
+
fees: {
|
|
357
|
+
base: import("@xylabs/sdk-js").Hex;
|
|
358
|
+
gasLimit: import("@xylabs/sdk-js").Hex;
|
|
359
|
+
gasPrice: import("@xylabs/sdk-js").Hex;
|
|
360
|
+
priority: import("@xylabs/sdk-js").Hex;
|
|
361
|
+
};
|
|
362
|
+
chain: import("../model/ChainId.ts").ChainId;
|
|
363
|
+
from: import("@xylabs/sdk-js").Address;
|
|
364
|
+
_hash: import("@xylabs/sdk-js").Hash;
|
|
365
|
+
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
366
|
+
_sequence: import("@xyo-network/payload-model").LocalSequence | import("@xyo-network/payload-model").QualifiedSequence;
|
|
367
|
+
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
368
|
+
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
369
|
+
script?: string[] | undefined;
|
|
370
|
+
} | undefined;
|
|
371
|
+
(value: unknown, assert: import("@xylabs/zod").ZodFactoryConfig): {
|
|
372
|
+
schema: "network.xyo.boundwitness";
|
|
373
|
+
addresses: import("@xylabs/sdk-js").Address[];
|
|
374
|
+
payload_hashes: import("@xylabs/sdk-js").Hash[];
|
|
375
|
+
payload_schemas: string[];
|
|
376
|
+
previous_hashes: (import("@xylabs/sdk-js").Hash | null)[];
|
|
377
|
+
$signatures: (import("@xylabs/sdk-js").Hex | null)[];
|
|
378
|
+
nbf: import("../model/index.ts").BlockNumber;
|
|
379
|
+
exp: import("../model/index.ts").BlockNumber;
|
|
380
|
+
fees: {
|
|
381
|
+
base: import("@xylabs/sdk-js").Hex;
|
|
382
|
+
gasLimit: import("@xylabs/sdk-js").Hex;
|
|
383
|
+
gasPrice: import("@xylabs/sdk-js").Hex;
|
|
384
|
+
priority: import("@xylabs/sdk-js").Hex;
|
|
385
|
+
};
|
|
386
|
+
chain: import("../model/ChainId.ts").ChainId;
|
|
387
|
+
from: import("@xylabs/sdk-js").Address;
|
|
388
|
+
_hash: import("@xylabs/sdk-js").Hash;
|
|
389
|
+
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
390
|
+
_sequence: import("@xyo-network/payload-model").LocalSequence | import("@xyo-network/payload-model").QualifiedSequence;
|
|
391
|
+
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
392
|
+
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
393
|
+
script?: string[] | undefined;
|
|
394
|
+
};
|
|
395
|
+
};
|
|
396
|
+
export declare const toTransactionBoundWitnessWithStorageMeta: {
|
|
397
|
+
(value: unknown): {
|
|
398
|
+
schema: "network.xyo.boundwitness";
|
|
399
|
+
addresses: import("@xylabs/sdk-js").Address[];
|
|
400
|
+
payload_hashes: import("@xylabs/sdk-js").Hash[];
|
|
401
|
+
payload_schemas: string[];
|
|
402
|
+
previous_hashes: (import("@xylabs/sdk-js").Hash | null)[];
|
|
403
|
+
$signatures: (import("@xylabs/sdk-js").Hex | null)[];
|
|
404
|
+
nbf: import("../model/index.ts").BlockNumber;
|
|
405
|
+
exp: import("../model/index.ts").BlockNumber;
|
|
406
|
+
fees: {
|
|
407
|
+
base: import("@xylabs/sdk-js").Hex;
|
|
408
|
+
gasLimit: import("@xylabs/sdk-js").Hex;
|
|
409
|
+
gasPrice: import("@xylabs/sdk-js").Hex;
|
|
410
|
+
priority: import("@xylabs/sdk-js").Hex;
|
|
411
|
+
};
|
|
412
|
+
chain: import("../model/ChainId.ts").ChainId;
|
|
413
|
+
from: import("@xylabs/sdk-js").Address;
|
|
414
|
+
_hash: import("@xylabs/sdk-js").Hash;
|
|
415
|
+
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
416
|
+
_sequence: import("@xyo-network/payload-model").LocalSequence | import("@xyo-network/payload-model").QualifiedSequence;
|
|
417
|
+
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
418
|
+
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
419
|
+
script?: string[] | undefined;
|
|
420
|
+
} | undefined;
|
|
421
|
+
(value: unknown, assert: import("@xylabs/zod").ZodFactoryConfig): {
|
|
422
|
+
schema: "network.xyo.boundwitness";
|
|
423
|
+
addresses: import("@xylabs/sdk-js").Address[];
|
|
424
|
+
payload_hashes: import("@xylabs/sdk-js").Hash[];
|
|
425
|
+
payload_schemas: string[];
|
|
426
|
+
previous_hashes: (import("@xylabs/sdk-js").Hash | null)[];
|
|
427
|
+
$signatures: (import("@xylabs/sdk-js").Hex | null)[];
|
|
428
|
+
nbf: import("../model/index.ts").BlockNumber;
|
|
429
|
+
exp: import("../model/index.ts").BlockNumber;
|
|
430
|
+
fees: {
|
|
431
|
+
base: import("@xylabs/sdk-js").Hex;
|
|
432
|
+
gasLimit: import("@xylabs/sdk-js").Hex;
|
|
433
|
+
gasPrice: import("@xylabs/sdk-js").Hex;
|
|
434
|
+
priority: import("@xylabs/sdk-js").Hex;
|
|
435
|
+
};
|
|
436
|
+
chain: import("../model/ChainId.ts").ChainId;
|
|
437
|
+
from: import("@xylabs/sdk-js").Address;
|
|
438
|
+
_hash: import("@xylabs/sdk-js").Hash;
|
|
439
|
+
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
440
|
+
_sequence: import("@xyo-network/payload-model").LocalSequence | import("@xyo-network/payload-model").QualifiedSequence;
|
|
441
|
+
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
442
|
+
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
443
|
+
script?: string[] | undefined;
|
|
444
|
+
};
|
|
445
|
+
};
|
|
154
446
|
export declare const UnsignedTransactionBoundWitnessZod: z.ZodObject<{
|
|
155
447
|
schema: z.ZodLiteral<"network.xyo.boundwitness">;
|
|
156
448
|
addresses: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Address, string>>>;
|
|
@@ -172,8 +464,285 @@ export declare const UnsignedTransactionBoundWitnessZod: z.ZodObject<{
|
|
|
172
464
|
from: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Address, string>>;
|
|
173
465
|
script: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
174
466
|
}, z.core.$strip>;
|
|
175
|
-
export type UnsignedTransactionBoundWitness = z.infer<typeof UnsignedTransactionBoundWitnessZod>;
|
|
176
|
-
export declare const isUnsignedTransactionBoundWitness: (value: unknown) => value is {
|
|
467
|
+
export type UnsignedTransactionBoundWitness = z.infer<typeof UnsignedTransactionBoundWitnessZod>;
|
|
468
|
+
export declare const isUnsignedTransactionBoundWitness: (value: unknown) => value is {
|
|
469
|
+
schema: "network.xyo.boundwitness";
|
|
470
|
+
addresses: import("@xylabs/sdk-js").Address[];
|
|
471
|
+
payload_hashes: import("@xylabs/sdk-js").Hash[];
|
|
472
|
+
payload_schemas: string[];
|
|
473
|
+
previous_hashes: (import("@xylabs/sdk-js").Hash | null)[];
|
|
474
|
+
$signatures: (import("@xylabs/sdk-js").Hex | null)[];
|
|
475
|
+
nbf: import("../model/index.ts").BlockNumber;
|
|
476
|
+
exp: import("../model/index.ts").BlockNumber;
|
|
477
|
+
fees: {
|
|
478
|
+
base: import("@xylabs/sdk-js").Hex;
|
|
479
|
+
gasLimit: import("@xylabs/sdk-js").Hex;
|
|
480
|
+
gasPrice: import("@xylabs/sdk-js").Hex;
|
|
481
|
+
priority: import("@xylabs/sdk-js").Hex;
|
|
482
|
+
};
|
|
483
|
+
chain: import("../model/ChainId.ts").ChainId;
|
|
484
|
+
from: import("@xylabs/sdk-js").Address;
|
|
485
|
+
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
486
|
+
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
487
|
+
script?: string[] | undefined;
|
|
488
|
+
};
|
|
489
|
+
export declare const asUnsignedTransactionBoundWitness: {
|
|
490
|
+
(value: unknown): {
|
|
491
|
+
schema: "network.xyo.boundwitness";
|
|
492
|
+
addresses: import("@xylabs/sdk-js").Address[];
|
|
493
|
+
payload_hashes: import("@xylabs/sdk-js").Hash[];
|
|
494
|
+
payload_schemas: string[];
|
|
495
|
+
previous_hashes: (import("@xylabs/sdk-js").Hash | null)[];
|
|
496
|
+
$signatures: (import("@xylabs/sdk-js").Hex | null)[];
|
|
497
|
+
nbf: import("../model/index.ts").BlockNumber;
|
|
498
|
+
exp: import("../model/index.ts").BlockNumber;
|
|
499
|
+
fees: {
|
|
500
|
+
base: import("@xylabs/sdk-js").Hex;
|
|
501
|
+
gasLimit: import("@xylabs/sdk-js").Hex;
|
|
502
|
+
gasPrice: import("@xylabs/sdk-js").Hex;
|
|
503
|
+
priority: import("@xylabs/sdk-js").Hex;
|
|
504
|
+
};
|
|
505
|
+
chain: import("../model/ChainId.ts").ChainId;
|
|
506
|
+
from: import("@xylabs/sdk-js").Address;
|
|
507
|
+
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
508
|
+
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
509
|
+
script?: string[] | undefined;
|
|
510
|
+
} | undefined;
|
|
511
|
+
(value: unknown, assert: import("@xylabs/zod").ZodFactoryConfig): {
|
|
512
|
+
schema: "network.xyo.boundwitness";
|
|
513
|
+
addresses: import("@xylabs/sdk-js").Address[];
|
|
514
|
+
payload_hashes: import("@xylabs/sdk-js").Hash[];
|
|
515
|
+
payload_schemas: string[];
|
|
516
|
+
previous_hashes: (import("@xylabs/sdk-js").Hash | null)[];
|
|
517
|
+
$signatures: (import("@xylabs/sdk-js").Hex | null)[];
|
|
518
|
+
nbf: import("../model/index.ts").BlockNumber;
|
|
519
|
+
exp: import("../model/index.ts").BlockNumber;
|
|
520
|
+
fees: {
|
|
521
|
+
base: import("@xylabs/sdk-js").Hex;
|
|
522
|
+
gasLimit: import("@xylabs/sdk-js").Hex;
|
|
523
|
+
gasPrice: import("@xylabs/sdk-js").Hex;
|
|
524
|
+
priority: import("@xylabs/sdk-js").Hex;
|
|
525
|
+
};
|
|
526
|
+
chain: import("../model/ChainId.ts").ChainId;
|
|
527
|
+
from: import("@xylabs/sdk-js").Address;
|
|
528
|
+
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
529
|
+
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
530
|
+
script?: string[] | undefined;
|
|
531
|
+
};
|
|
532
|
+
};
|
|
533
|
+
export declare const toUnsignedTransactionBoundWitness: {
|
|
534
|
+
(value: unknown): {
|
|
535
|
+
schema: "network.xyo.boundwitness";
|
|
536
|
+
addresses: import("@xylabs/sdk-js").Address[];
|
|
537
|
+
payload_hashes: import("@xylabs/sdk-js").Hash[];
|
|
538
|
+
payload_schemas: string[];
|
|
539
|
+
previous_hashes: (import("@xylabs/sdk-js").Hash | null)[];
|
|
540
|
+
$signatures: (import("@xylabs/sdk-js").Hex | null)[];
|
|
541
|
+
nbf: import("../model/index.ts").BlockNumber;
|
|
542
|
+
exp: import("../model/index.ts").BlockNumber;
|
|
543
|
+
fees: {
|
|
544
|
+
base: import("@xylabs/sdk-js").Hex;
|
|
545
|
+
gasLimit: import("@xylabs/sdk-js").Hex;
|
|
546
|
+
gasPrice: import("@xylabs/sdk-js").Hex;
|
|
547
|
+
priority: import("@xylabs/sdk-js").Hex;
|
|
548
|
+
};
|
|
549
|
+
chain: import("../model/ChainId.ts").ChainId;
|
|
550
|
+
from: import("@xylabs/sdk-js").Address;
|
|
551
|
+
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
552
|
+
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
553
|
+
script?: string[] | undefined;
|
|
554
|
+
} | undefined;
|
|
555
|
+
(value: unknown, assert: import("@xylabs/zod").ZodFactoryConfig): {
|
|
556
|
+
schema: "network.xyo.boundwitness";
|
|
557
|
+
addresses: import("@xylabs/sdk-js").Address[];
|
|
558
|
+
payload_hashes: import("@xylabs/sdk-js").Hash[];
|
|
559
|
+
payload_schemas: string[];
|
|
560
|
+
previous_hashes: (import("@xylabs/sdk-js").Hash | null)[];
|
|
561
|
+
$signatures: (import("@xylabs/sdk-js").Hex | null)[];
|
|
562
|
+
nbf: import("../model/index.ts").BlockNumber;
|
|
563
|
+
exp: import("../model/index.ts").BlockNumber;
|
|
564
|
+
fees: {
|
|
565
|
+
base: import("@xylabs/sdk-js").Hex;
|
|
566
|
+
gasLimit: import("@xylabs/sdk-js").Hex;
|
|
567
|
+
gasPrice: import("@xylabs/sdk-js").Hex;
|
|
568
|
+
priority: import("@xylabs/sdk-js").Hex;
|
|
569
|
+
};
|
|
570
|
+
chain: import("../model/ChainId.ts").ChainId;
|
|
571
|
+
from: import("@xylabs/sdk-js").Address;
|
|
572
|
+
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
573
|
+
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
574
|
+
script?: string[] | undefined;
|
|
575
|
+
};
|
|
576
|
+
};
|
|
577
|
+
export declare const UnsignedTransactionBoundWitnessWithHashMetaZod: z.ZodObject<{
|
|
578
|
+
schema: z.ZodLiteral<"network.xyo.boundwitness">;
|
|
579
|
+
addresses: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Address, string>>>;
|
|
580
|
+
payload_hashes: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>;
|
|
581
|
+
payload_schemas: z.ZodArray<z.ZodString>;
|
|
582
|
+
previous_hashes: z.ZodArray<z.ZodNullable<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>>;
|
|
583
|
+
$destination: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Address, string>>>;
|
|
584
|
+
$sourceQuery: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>;
|
|
585
|
+
$signatures: z.ZodArray<z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>, z.ZodNull]>>;
|
|
586
|
+
nbf: z.ZodPipe<z.ZodNumber, z.ZodTransform<import("../model/index.ts").BlockNumber, number>>;
|
|
587
|
+
exp: z.ZodPipe<z.ZodNumber, z.ZodTransform<import("../model/index.ts").BlockNumber, number>>;
|
|
588
|
+
fees: z.ZodObject<{
|
|
589
|
+
base: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>;
|
|
590
|
+
gasLimit: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>;
|
|
591
|
+
gasPrice: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>;
|
|
592
|
+
priority: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>;
|
|
593
|
+
}, z.core.$strip>;
|
|
594
|
+
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("../model/ChainId.ts").ChainId, string>>;
|
|
595
|
+
from: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Address, string>>;
|
|
596
|
+
script: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
597
|
+
_hash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>;
|
|
598
|
+
_dataHash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>;
|
|
599
|
+
}, z.core.$strip>;
|
|
600
|
+
export type UnsignedTransactionBoundWitnessWithHashMeta = z.infer<typeof UnsignedTransactionBoundWitnessWithHashMetaZod>;
|
|
601
|
+
export declare const isUnsignedTransactionBoundWitnessWithHashMeta: (value: unknown) => value is {
|
|
602
|
+
schema: "network.xyo.boundwitness";
|
|
603
|
+
addresses: import("@xylabs/sdk-js").Address[];
|
|
604
|
+
payload_hashes: import("@xylabs/sdk-js").Hash[];
|
|
605
|
+
payload_schemas: string[];
|
|
606
|
+
previous_hashes: (import("@xylabs/sdk-js").Hash | null)[];
|
|
607
|
+
$signatures: (import("@xylabs/sdk-js").Hex | null)[];
|
|
608
|
+
nbf: import("../model/index.ts").BlockNumber;
|
|
609
|
+
exp: import("../model/index.ts").BlockNumber;
|
|
610
|
+
fees: {
|
|
611
|
+
base: import("@xylabs/sdk-js").Hex;
|
|
612
|
+
gasLimit: import("@xylabs/sdk-js").Hex;
|
|
613
|
+
gasPrice: import("@xylabs/sdk-js").Hex;
|
|
614
|
+
priority: import("@xylabs/sdk-js").Hex;
|
|
615
|
+
};
|
|
616
|
+
chain: import("../model/ChainId.ts").ChainId;
|
|
617
|
+
from: import("@xylabs/sdk-js").Address;
|
|
618
|
+
_hash: import("@xylabs/sdk-js").Hash;
|
|
619
|
+
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
620
|
+
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
621
|
+
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
622
|
+
script?: string[] | undefined;
|
|
623
|
+
};
|
|
624
|
+
export declare const asUnsignedTransactionBoundWitnessWithHashMeta: {
|
|
625
|
+
(value: unknown): {
|
|
626
|
+
schema: "network.xyo.boundwitness";
|
|
627
|
+
addresses: import("@xylabs/sdk-js").Address[];
|
|
628
|
+
payload_hashes: import("@xylabs/sdk-js").Hash[];
|
|
629
|
+
payload_schemas: string[];
|
|
630
|
+
previous_hashes: (import("@xylabs/sdk-js").Hash | null)[];
|
|
631
|
+
$signatures: (import("@xylabs/sdk-js").Hex | null)[];
|
|
632
|
+
nbf: import("../model/index.ts").BlockNumber;
|
|
633
|
+
exp: import("../model/index.ts").BlockNumber;
|
|
634
|
+
fees: {
|
|
635
|
+
base: import("@xylabs/sdk-js").Hex;
|
|
636
|
+
gasLimit: import("@xylabs/sdk-js").Hex;
|
|
637
|
+
gasPrice: import("@xylabs/sdk-js").Hex;
|
|
638
|
+
priority: import("@xylabs/sdk-js").Hex;
|
|
639
|
+
};
|
|
640
|
+
chain: import("../model/ChainId.ts").ChainId;
|
|
641
|
+
from: import("@xylabs/sdk-js").Address;
|
|
642
|
+
_hash: import("@xylabs/sdk-js").Hash;
|
|
643
|
+
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
644
|
+
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
645
|
+
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
646
|
+
script?: string[] | undefined;
|
|
647
|
+
} | undefined;
|
|
648
|
+
(value: unknown, assert: import("@xylabs/zod").ZodFactoryConfig): {
|
|
649
|
+
schema: "network.xyo.boundwitness";
|
|
650
|
+
addresses: import("@xylabs/sdk-js").Address[];
|
|
651
|
+
payload_hashes: import("@xylabs/sdk-js").Hash[];
|
|
652
|
+
payload_schemas: string[];
|
|
653
|
+
previous_hashes: (import("@xylabs/sdk-js").Hash | null)[];
|
|
654
|
+
$signatures: (import("@xylabs/sdk-js").Hex | null)[];
|
|
655
|
+
nbf: import("../model/index.ts").BlockNumber;
|
|
656
|
+
exp: import("../model/index.ts").BlockNumber;
|
|
657
|
+
fees: {
|
|
658
|
+
base: import("@xylabs/sdk-js").Hex;
|
|
659
|
+
gasLimit: import("@xylabs/sdk-js").Hex;
|
|
660
|
+
gasPrice: import("@xylabs/sdk-js").Hex;
|
|
661
|
+
priority: import("@xylabs/sdk-js").Hex;
|
|
662
|
+
};
|
|
663
|
+
chain: import("../model/ChainId.ts").ChainId;
|
|
664
|
+
from: import("@xylabs/sdk-js").Address;
|
|
665
|
+
_hash: import("@xylabs/sdk-js").Hash;
|
|
666
|
+
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
667
|
+
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
668
|
+
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
669
|
+
script?: string[] | undefined;
|
|
670
|
+
};
|
|
671
|
+
};
|
|
672
|
+
export declare const toUnsignedTransactionBoundWitnessWithHashMeta: {
|
|
673
|
+
(value: unknown): {
|
|
674
|
+
schema: "network.xyo.boundwitness";
|
|
675
|
+
addresses: import("@xylabs/sdk-js").Address[];
|
|
676
|
+
payload_hashes: import("@xylabs/sdk-js").Hash[];
|
|
677
|
+
payload_schemas: string[];
|
|
678
|
+
previous_hashes: (import("@xylabs/sdk-js").Hash | null)[];
|
|
679
|
+
$signatures: (import("@xylabs/sdk-js").Hex | null)[];
|
|
680
|
+
nbf: import("../model/index.ts").BlockNumber;
|
|
681
|
+
exp: import("../model/index.ts").BlockNumber;
|
|
682
|
+
fees: {
|
|
683
|
+
base: import("@xylabs/sdk-js").Hex;
|
|
684
|
+
gasLimit: import("@xylabs/sdk-js").Hex;
|
|
685
|
+
gasPrice: import("@xylabs/sdk-js").Hex;
|
|
686
|
+
priority: import("@xylabs/sdk-js").Hex;
|
|
687
|
+
};
|
|
688
|
+
chain: import("../model/ChainId.ts").ChainId;
|
|
689
|
+
from: import("@xylabs/sdk-js").Address;
|
|
690
|
+
_hash: import("@xylabs/sdk-js").Hash;
|
|
691
|
+
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
692
|
+
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
693
|
+
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
694
|
+
script?: string[] | undefined;
|
|
695
|
+
} | undefined;
|
|
696
|
+
(value: unknown, assert: import("@xylabs/zod").ZodFactoryConfig): {
|
|
697
|
+
schema: "network.xyo.boundwitness";
|
|
698
|
+
addresses: import("@xylabs/sdk-js").Address[];
|
|
699
|
+
payload_hashes: import("@xylabs/sdk-js").Hash[];
|
|
700
|
+
payload_schemas: string[];
|
|
701
|
+
previous_hashes: (import("@xylabs/sdk-js").Hash | null)[];
|
|
702
|
+
$signatures: (import("@xylabs/sdk-js").Hex | null)[];
|
|
703
|
+
nbf: import("../model/index.ts").BlockNumber;
|
|
704
|
+
exp: import("../model/index.ts").BlockNumber;
|
|
705
|
+
fees: {
|
|
706
|
+
base: import("@xylabs/sdk-js").Hex;
|
|
707
|
+
gasLimit: import("@xylabs/sdk-js").Hex;
|
|
708
|
+
gasPrice: import("@xylabs/sdk-js").Hex;
|
|
709
|
+
priority: import("@xylabs/sdk-js").Hex;
|
|
710
|
+
};
|
|
711
|
+
chain: import("../model/ChainId.ts").ChainId;
|
|
712
|
+
from: import("@xylabs/sdk-js").Address;
|
|
713
|
+
_hash: import("@xylabs/sdk-js").Hash;
|
|
714
|
+
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
715
|
+
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
716
|
+
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
717
|
+
script?: string[] | undefined;
|
|
718
|
+
};
|
|
719
|
+
};
|
|
720
|
+
export declare const UnsignedTransactionBoundWitnessWithStorageMetaZod: z.ZodObject<{
|
|
721
|
+
schema: z.ZodLiteral<"network.xyo.boundwitness">;
|
|
722
|
+
addresses: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Address, string>>>;
|
|
723
|
+
payload_hashes: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>;
|
|
724
|
+
payload_schemas: z.ZodArray<z.ZodString>;
|
|
725
|
+
previous_hashes: z.ZodArray<z.ZodNullable<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>>;
|
|
726
|
+
$destination: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Address, string>>>;
|
|
727
|
+
$sourceQuery: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>;
|
|
728
|
+
$signatures: z.ZodArray<z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>, z.ZodNull]>>;
|
|
729
|
+
nbf: z.ZodPipe<z.ZodNumber, z.ZodTransform<import("../model/index.ts").BlockNumber, number>>;
|
|
730
|
+
exp: z.ZodPipe<z.ZodNumber, z.ZodTransform<import("../model/index.ts").BlockNumber, number>>;
|
|
731
|
+
fees: z.ZodObject<{
|
|
732
|
+
base: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>;
|
|
733
|
+
gasLimit: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>;
|
|
734
|
+
gasPrice: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>;
|
|
735
|
+
priority: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>;
|
|
736
|
+
}, z.core.$strip>;
|
|
737
|
+
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("../model/ChainId.ts").ChainId, string>>;
|
|
738
|
+
from: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Address, string>>;
|
|
739
|
+
script: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
740
|
+
_hash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>;
|
|
741
|
+
_dataHash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>;
|
|
742
|
+
_sequence: z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/payload-model").LocalSequence, string>>, z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/payload-model").QualifiedSequence, string>>]>;
|
|
743
|
+
}, z.core.$strip>;
|
|
744
|
+
export type UnsignedTransactionBoundWitnessWithStorageMeta = z.infer<typeof UnsignedTransactionBoundWitnessWithStorageMetaZod>;
|
|
745
|
+
export declare const isUnsignedTransactionBoundWitnessWithStorageMeta: (value: unknown) => value is {
|
|
177
746
|
schema: "network.xyo.boundwitness";
|
|
178
747
|
addresses: import("@xylabs/sdk-js").Address[];
|
|
179
748
|
payload_hashes: import("@xylabs/sdk-js").Hash[];
|
|
@@ -190,11 +759,14 @@ export declare const isUnsignedTransactionBoundWitness: (value: unknown) => valu
|
|
|
190
759
|
};
|
|
191
760
|
chain: import("../model/ChainId.ts").ChainId;
|
|
192
761
|
from: import("@xylabs/sdk-js").Address;
|
|
762
|
+
_hash: import("@xylabs/sdk-js").Hash;
|
|
763
|
+
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
764
|
+
_sequence: import("@xyo-network/payload-model").LocalSequence | import("@xyo-network/payload-model").QualifiedSequence;
|
|
193
765
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
194
766
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
195
767
|
script?: string[] | undefined;
|
|
196
768
|
};
|
|
197
|
-
export declare const
|
|
769
|
+
export declare const asUnsignedTransactionBoundWitnessWithStorageMeta: {
|
|
198
770
|
(value: unknown): {
|
|
199
771
|
schema: "network.xyo.boundwitness";
|
|
200
772
|
addresses: import("@xylabs/sdk-js").Address[];
|
|
@@ -212,6 +784,9 @@ export declare const asUnsignedTransactionBoundWitness: {
|
|
|
212
784
|
};
|
|
213
785
|
chain: import("../model/ChainId.ts").ChainId;
|
|
214
786
|
from: import("@xylabs/sdk-js").Address;
|
|
787
|
+
_hash: import("@xylabs/sdk-js").Hash;
|
|
788
|
+
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
789
|
+
_sequence: import("@xyo-network/payload-model").LocalSequence | import("@xyo-network/payload-model").QualifiedSequence;
|
|
215
790
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
216
791
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
217
792
|
script?: string[] | undefined;
|
|
@@ -233,12 +808,15 @@ export declare const asUnsignedTransactionBoundWitness: {
|
|
|
233
808
|
};
|
|
234
809
|
chain: import("../model/ChainId.ts").ChainId;
|
|
235
810
|
from: import("@xylabs/sdk-js").Address;
|
|
811
|
+
_hash: import("@xylabs/sdk-js").Hash;
|
|
812
|
+
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
813
|
+
_sequence: import("@xyo-network/payload-model").LocalSequence | import("@xyo-network/payload-model").QualifiedSequence;
|
|
236
814
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
237
815
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
238
816
|
script?: string[] | undefined;
|
|
239
817
|
};
|
|
240
818
|
};
|
|
241
|
-
export declare const
|
|
819
|
+
export declare const toUnsignedTransactionBoundWitnessWithStorageMeta: {
|
|
242
820
|
(value: unknown): {
|
|
243
821
|
schema: "network.xyo.boundwitness";
|
|
244
822
|
addresses: import("@xylabs/sdk-js").Address[];
|
|
@@ -256,6 +834,9 @@ export declare const toUnsignedTransactionBoundWitness: {
|
|
|
256
834
|
};
|
|
257
835
|
chain: import("../model/ChainId.ts").ChainId;
|
|
258
836
|
from: import("@xylabs/sdk-js").Address;
|
|
837
|
+
_hash: import("@xylabs/sdk-js").Hash;
|
|
838
|
+
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
839
|
+
_sequence: import("@xyo-network/payload-model").LocalSequence | import("@xyo-network/payload-model").QualifiedSequence;
|
|
259
840
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
260
841
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
261
842
|
script?: string[] | undefined;
|
|
@@ -277,6 +858,9 @@ export declare const toUnsignedTransactionBoundWitness: {
|
|
|
277
858
|
};
|
|
278
859
|
chain: import("../model/ChainId.ts").ChainId;
|
|
279
860
|
from: import("@xylabs/sdk-js").Address;
|
|
861
|
+
_hash: import("@xylabs/sdk-js").Hash;
|
|
862
|
+
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
863
|
+
_sequence: import("@xyo-network/payload-model").LocalSequence | import("@xyo-network/payload-model").QualifiedSequence;
|
|
280
864
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
281
865
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
282
866
|
script?: string[] | undefined;
|
|
@@ -413,4 +997,296 @@ export declare const toSignedTransactionBoundWitness: {
|
|
|
413
997
|
script?: string[] | undefined;
|
|
414
998
|
};
|
|
415
999
|
};
|
|
1000
|
+
export declare const SignedTransactionBoundWitnessWithHashMetaZod: z.ZodObject<{
|
|
1001
|
+
schema: z.ZodLiteral<"network.xyo.boundwitness">;
|
|
1002
|
+
addresses: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Address, string>>>;
|
|
1003
|
+
payload_hashes: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>;
|
|
1004
|
+
payload_schemas: z.ZodArray<z.ZodString>;
|
|
1005
|
+
previous_hashes: z.ZodArray<z.ZodNullable<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>>;
|
|
1006
|
+
$destination: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Address, string>>>;
|
|
1007
|
+
$sourceQuery: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>;
|
|
1008
|
+
$signatures: z.ZodArray<z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>, z.ZodNull]>>;
|
|
1009
|
+
nbf: z.ZodPipe<z.ZodNumber, z.ZodTransform<import("../model/index.ts").BlockNumber, number>>;
|
|
1010
|
+
exp: z.ZodPipe<z.ZodNumber, z.ZodTransform<import("../model/index.ts").BlockNumber, number>>;
|
|
1011
|
+
fees: z.ZodObject<{
|
|
1012
|
+
base: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>;
|
|
1013
|
+
gasLimit: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>;
|
|
1014
|
+
gasPrice: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>;
|
|
1015
|
+
priority: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>;
|
|
1016
|
+
}, z.core.$strip>;
|
|
1017
|
+
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("../model/ChainId.ts").ChainId, string>>;
|
|
1018
|
+
from: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Address, string>>;
|
|
1019
|
+
script: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1020
|
+
_hash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>;
|
|
1021
|
+
_dataHash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>;
|
|
1022
|
+
}, z.core.$strip>;
|
|
1023
|
+
export type SignedTransactionBoundWitnessWithHashMeta = z.infer<typeof SignedTransactionBoundWitnessWithHashMetaZod>;
|
|
1024
|
+
export declare const isSignedTransactionBoundWitnessWithHashMeta: (value: unknown) => value is {
|
|
1025
|
+
schema: "network.xyo.boundwitness";
|
|
1026
|
+
addresses: import("@xylabs/sdk-js").Address[];
|
|
1027
|
+
payload_hashes: import("@xylabs/sdk-js").Hash[];
|
|
1028
|
+
payload_schemas: string[];
|
|
1029
|
+
previous_hashes: (import("@xylabs/sdk-js").Hash | null)[];
|
|
1030
|
+
$signatures: (import("@xylabs/sdk-js").Hex | null)[];
|
|
1031
|
+
nbf: import("../model/index.ts").BlockNumber;
|
|
1032
|
+
exp: import("../model/index.ts").BlockNumber;
|
|
1033
|
+
fees: {
|
|
1034
|
+
base: import("@xylabs/sdk-js").Hex;
|
|
1035
|
+
gasLimit: import("@xylabs/sdk-js").Hex;
|
|
1036
|
+
gasPrice: import("@xylabs/sdk-js").Hex;
|
|
1037
|
+
priority: import("@xylabs/sdk-js").Hex;
|
|
1038
|
+
};
|
|
1039
|
+
chain: import("../model/ChainId.ts").ChainId;
|
|
1040
|
+
from: import("@xylabs/sdk-js").Address;
|
|
1041
|
+
_hash: import("@xylabs/sdk-js").Hash;
|
|
1042
|
+
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
1043
|
+
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
1044
|
+
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
1045
|
+
script?: string[] | undefined;
|
|
1046
|
+
};
|
|
1047
|
+
export declare const asSignedTransactionBoundWitnessWithHashMeta: {
|
|
1048
|
+
(value: unknown): {
|
|
1049
|
+
schema: "network.xyo.boundwitness";
|
|
1050
|
+
addresses: import("@xylabs/sdk-js").Address[];
|
|
1051
|
+
payload_hashes: import("@xylabs/sdk-js").Hash[];
|
|
1052
|
+
payload_schemas: string[];
|
|
1053
|
+
previous_hashes: (import("@xylabs/sdk-js").Hash | null)[];
|
|
1054
|
+
$signatures: (import("@xylabs/sdk-js").Hex | null)[];
|
|
1055
|
+
nbf: import("../model/index.ts").BlockNumber;
|
|
1056
|
+
exp: import("../model/index.ts").BlockNumber;
|
|
1057
|
+
fees: {
|
|
1058
|
+
base: import("@xylabs/sdk-js").Hex;
|
|
1059
|
+
gasLimit: import("@xylabs/sdk-js").Hex;
|
|
1060
|
+
gasPrice: import("@xylabs/sdk-js").Hex;
|
|
1061
|
+
priority: import("@xylabs/sdk-js").Hex;
|
|
1062
|
+
};
|
|
1063
|
+
chain: import("../model/ChainId.ts").ChainId;
|
|
1064
|
+
from: import("@xylabs/sdk-js").Address;
|
|
1065
|
+
_hash: import("@xylabs/sdk-js").Hash;
|
|
1066
|
+
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
1067
|
+
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
1068
|
+
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
1069
|
+
script?: string[] | undefined;
|
|
1070
|
+
} | undefined;
|
|
1071
|
+
(value: unknown, assert: import("@xylabs/zod").ZodFactoryConfig): {
|
|
1072
|
+
schema: "network.xyo.boundwitness";
|
|
1073
|
+
addresses: import("@xylabs/sdk-js").Address[];
|
|
1074
|
+
payload_hashes: import("@xylabs/sdk-js").Hash[];
|
|
1075
|
+
payload_schemas: string[];
|
|
1076
|
+
previous_hashes: (import("@xylabs/sdk-js").Hash | null)[];
|
|
1077
|
+
$signatures: (import("@xylabs/sdk-js").Hex | null)[];
|
|
1078
|
+
nbf: import("../model/index.ts").BlockNumber;
|
|
1079
|
+
exp: import("../model/index.ts").BlockNumber;
|
|
1080
|
+
fees: {
|
|
1081
|
+
base: import("@xylabs/sdk-js").Hex;
|
|
1082
|
+
gasLimit: import("@xylabs/sdk-js").Hex;
|
|
1083
|
+
gasPrice: import("@xylabs/sdk-js").Hex;
|
|
1084
|
+
priority: import("@xylabs/sdk-js").Hex;
|
|
1085
|
+
};
|
|
1086
|
+
chain: import("../model/ChainId.ts").ChainId;
|
|
1087
|
+
from: import("@xylabs/sdk-js").Address;
|
|
1088
|
+
_hash: import("@xylabs/sdk-js").Hash;
|
|
1089
|
+
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
1090
|
+
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
1091
|
+
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
1092
|
+
script?: string[] | undefined;
|
|
1093
|
+
};
|
|
1094
|
+
};
|
|
1095
|
+
export declare const toSignedTransactionBoundWitnessWithHashMeta: {
|
|
1096
|
+
(value: unknown): {
|
|
1097
|
+
schema: "network.xyo.boundwitness";
|
|
1098
|
+
addresses: import("@xylabs/sdk-js").Address[];
|
|
1099
|
+
payload_hashes: import("@xylabs/sdk-js").Hash[];
|
|
1100
|
+
payload_schemas: string[];
|
|
1101
|
+
previous_hashes: (import("@xylabs/sdk-js").Hash | null)[];
|
|
1102
|
+
$signatures: (import("@xylabs/sdk-js").Hex | null)[];
|
|
1103
|
+
nbf: import("../model/index.ts").BlockNumber;
|
|
1104
|
+
exp: import("../model/index.ts").BlockNumber;
|
|
1105
|
+
fees: {
|
|
1106
|
+
base: import("@xylabs/sdk-js").Hex;
|
|
1107
|
+
gasLimit: import("@xylabs/sdk-js").Hex;
|
|
1108
|
+
gasPrice: import("@xylabs/sdk-js").Hex;
|
|
1109
|
+
priority: import("@xylabs/sdk-js").Hex;
|
|
1110
|
+
};
|
|
1111
|
+
chain: import("../model/ChainId.ts").ChainId;
|
|
1112
|
+
from: import("@xylabs/sdk-js").Address;
|
|
1113
|
+
_hash: import("@xylabs/sdk-js").Hash;
|
|
1114
|
+
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
1115
|
+
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
1116
|
+
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
1117
|
+
script?: string[] | undefined;
|
|
1118
|
+
} | undefined;
|
|
1119
|
+
(value: unknown, assert: import("@xylabs/zod").ZodFactoryConfig): {
|
|
1120
|
+
schema: "network.xyo.boundwitness";
|
|
1121
|
+
addresses: import("@xylabs/sdk-js").Address[];
|
|
1122
|
+
payload_hashes: import("@xylabs/sdk-js").Hash[];
|
|
1123
|
+
payload_schemas: string[];
|
|
1124
|
+
previous_hashes: (import("@xylabs/sdk-js").Hash | null)[];
|
|
1125
|
+
$signatures: (import("@xylabs/sdk-js").Hex | null)[];
|
|
1126
|
+
nbf: import("../model/index.ts").BlockNumber;
|
|
1127
|
+
exp: import("../model/index.ts").BlockNumber;
|
|
1128
|
+
fees: {
|
|
1129
|
+
base: import("@xylabs/sdk-js").Hex;
|
|
1130
|
+
gasLimit: import("@xylabs/sdk-js").Hex;
|
|
1131
|
+
gasPrice: import("@xylabs/sdk-js").Hex;
|
|
1132
|
+
priority: import("@xylabs/sdk-js").Hex;
|
|
1133
|
+
};
|
|
1134
|
+
chain: import("../model/ChainId.ts").ChainId;
|
|
1135
|
+
from: import("@xylabs/sdk-js").Address;
|
|
1136
|
+
_hash: import("@xylabs/sdk-js").Hash;
|
|
1137
|
+
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
1138
|
+
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
1139
|
+
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
1140
|
+
script?: string[] | undefined;
|
|
1141
|
+
};
|
|
1142
|
+
};
|
|
1143
|
+
export declare const SignedTransactionBoundWitnessWithStorageMetaZod: z.ZodObject<{
|
|
1144
|
+
schema: z.ZodLiteral<"network.xyo.boundwitness">;
|
|
1145
|
+
addresses: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Address, string>>>;
|
|
1146
|
+
payload_hashes: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>;
|
|
1147
|
+
payload_schemas: z.ZodArray<z.ZodString>;
|
|
1148
|
+
previous_hashes: z.ZodArray<z.ZodNullable<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>>;
|
|
1149
|
+
$destination: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Address, string>>>;
|
|
1150
|
+
$sourceQuery: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>;
|
|
1151
|
+
$signatures: z.ZodArray<z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>, z.ZodNull]>>;
|
|
1152
|
+
nbf: z.ZodPipe<z.ZodNumber, z.ZodTransform<import("../model/index.ts").BlockNumber, number>>;
|
|
1153
|
+
exp: z.ZodPipe<z.ZodNumber, z.ZodTransform<import("../model/index.ts").BlockNumber, number>>;
|
|
1154
|
+
fees: z.ZodObject<{
|
|
1155
|
+
base: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>;
|
|
1156
|
+
gasLimit: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>;
|
|
1157
|
+
gasPrice: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>;
|
|
1158
|
+
priority: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>;
|
|
1159
|
+
}, z.core.$strip>;
|
|
1160
|
+
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("../model/ChainId.ts").ChainId, string>>;
|
|
1161
|
+
from: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Address, string>>;
|
|
1162
|
+
script: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1163
|
+
_hash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>;
|
|
1164
|
+
_dataHash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>;
|
|
1165
|
+
_sequence: z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/payload-model").LocalSequence, string>>, z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/payload-model").QualifiedSequence, string>>]>;
|
|
1166
|
+
}, z.core.$strip>;
|
|
1167
|
+
export type SignedTransactionBoundWitnessWithStorageMeta = z.infer<typeof SignedTransactionBoundWitnessWithStorageMetaZod>;
|
|
1168
|
+
export declare const isSignedTransactionBoundWitnessWithStorageMeta: (value: unknown) => value is {
|
|
1169
|
+
schema: "network.xyo.boundwitness";
|
|
1170
|
+
addresses: import("@xylabs/sdk-js").Address[];
|
|
1171
|
+
payload_hashes: import("@xylabs/sdk-js").Hash[];
|
|
1172
|
+
payload_schemas: string[];
|
|
1173
|
+
previous_hashes: (import("@xylabs/sdk-js").Hash | null)[];
|
|
1174
|
+
$signatures: (import("@xylabs/sdk-js").Hex | null)[];
|
|
1175
|
+
nbf: import("../model/index.ts").BlockNumber;
|
|
1176
|
+
exp: import("../model/index.ts").BlockNumber;
|
|
1177
|
+
fees: {
|
|
1178
|
+
base: import("@xylabs/sdk-js").Hex;
|
|
1179
|
+
gasLimit: import("@xylabs/sdk-js").Hex;
|
|
1180
|
+
gasPrice: import("@xylabs/sdk-js").Hex;
|
|
1181
|
+
priority: import("@xylabs/sdk-js").Hex;
|
|
1182
|
+
};
|
|
1183
|
+
chain: import("../model/ChainId.ts").ChainId;
|
|
1184
|
+
from: import("@xylabs/sdk-js").Address;
|
|
1185
|
+
_hash: import("@xylabs/sdk-js").Hash;
|
|
1186
|
+
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
1187
|
+
_sequence: import("@xyo-network/payload-model").LocalSequence | import("@xyo-network/payload-model").QualifiedSequence;
|
|
1188
|
+
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
1189
|
+
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
1190
|
+
script?: string[] | undefined;
|
|
1191
|
+
};
|
|
1192
|
+
export declare const asSignedTransactionBoundWitnessWithStorageMeta: {
|
|
1193
|
+
(value: unknown): {
|
|
1194
|
+
schema: "network.xyo.boundwitness";
|
|
1195
|
+
addresses: import("@xylabs/sdk-js").Address[];
|
|
1196
|
+
payload_hashes: import("@xylabs/sdk-js").Hash[];
|
|
1197
|
+
payload_schemas: string[];
|
|
1198
|
+
previous_hashes: (import("@xylabs/sdk-js").Hash | null)[];
|
|
1199
|
+
$signatures: (import("@xylabs/sdk-js").Hex | null)[];
|
|
1200
|
+
nbf: import("../model/index.ts").BlockNumber;
|
|
1201
|
+
exp: import("../model/index.ts").BlockNumber;
|
|
1202
|
+
fees: {
|
|
1203
|
+
base: import("@xylabs/sdk-js").Hex;
|
|
1204
|
+
gasLimit: import("@xylabs/sdk-js").Hex;
|
|
1205
|
+
gasPrice: import("@xylabs/sdk-js").Hex;
|
|
1206
|
+
priority: import("@xylabs/sdk-js").Hex;
|
|
1207
|
+
};
|
|
1208
|
+
chain: import("../model/ChainId.ts").ChainId;
|
|
1209
|
+
from: import("@xylabs/sdk-js").Address;
|
|
1210
|
+
_hash: import("@xylabs/sdk-js").Hash;
|
|
1211
|
+
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
1212
|
+
_sequence: import("@xyo-network/payload-model").LocalSequence | import("@xyo-network/payload-model").QualifiedSequence;
|
|
1213
|
+
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
1214
|
+
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
1215
|
+
script?: string[] | undefined;
|
|
1216
|
+
} | undefined;
|
|
1217
|
+
(value: unknown, assert: import("@xylabs/zod").ZodFactoryConfig): {
|
|
1218
|
+
schema: "network.xyo.boundwitness";
|
|
1219
|
+
addresses: import("@xylabs/sdk-js").Address[];
|
|
1220
|
+
payload_hashes: import("@xylabs/sdk-js").Hash[];
|
|
1221
|
+
payload_schemas: string[];
|
|
1222
|
+
previous_hashes: (import("@xylabs/sdk-js").Hash | null)[];
|
|
1223
|
+
$signatures: (import("@xylabs/sdk-js").Hex | null)[];
|
|
1224
|
+
nbf: import("../model/index.ts").BlockNumber;
|
|
1225
|
+
exp: import("../model/index.ts").BlockNumber;
|
|
1226
|
+
fees: {
|
|
1227
|
+
base: import("@xylabs/sdk-js").Hex;
|
|
1228
|
+
gasLimit: import("@xylabs/sdk-js").Hex;
|
|
1229
|
+
gasPrice: import("@xylabs/sdk-js").Hex;
|
|
1230
|
+
priority: import("@xylabs/sdk-js").Hex;
|
|
1231
|
+
};
|
|
1232
|
+
chain: import("../model/ChainId.ts").ChainId;
|
|
1233
|
+
from: import("@xylabs/sdk-js").Address;
|
|
1234
|
+
_hash: import("@xylabs/sdk-js").Hash;
|
|
1235
|
+
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
1236
|
+
_sequence: import("@xyo-network/payload-model").LocalSequence | import("@xyo-network/payload-model").QualifiedSequence;
|
|
1237
|
+
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
1238
|
+
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
1239
|
+
script?: string[] | undefined;
|
|
1240
|
+
};
|
|
1241
|
+
};
|
|
1242
|
+
export declare const toSignedTransactionBoundWitnessWithStorageMeta: {
|
|
1243
|
+
(value: unknown): {
|
|
1244
|
+
schema: "network.xyo.boundwitness";
|
|
1245
|
+
addresses: import("@xylabs/sdk-js").Address[];
|
|
1246
|
+
payload_hashes: import("@xylabs/sdk-js").Hash[];
|
|
1247
|
+
payload_schemas: string[];
|
|
1248
|
+
previous_hashes: (import("@xylabs/sdk-js").Hash | null)[];
|
|
1249
|
+
$signatures: (import("@xylabs/sdk-js").Hex | null)[];
|
|
1250
|
+
nbf: import("../model/index.ts").BlockNumber;
|
|
1251
|
+
exp: import("../model/index.ts").BlockNumber;
|
|
1252
|
+
fees: {
|
|
1253
|
+
base: import("@xylabs/sdk-js").Hex;
|
|
1254
|
+
gasLimit: import("@xylabs/sdk-js").Hex;
|
|
1255
|
+
gasPrice: import("@xylabs/sdk-js").Hex;
|
|
1256
|
+
priority: import("@xylabs/sdk-js").Hex;
|
|
1257
|
+
};
|
|
1258
|
+
chain: import("../model/ChainId.ts").ChainId;
|
|
1259
|
+
from: import("@xylabs/sdk-js").Address;
|
|
1260
|
+
_hash: import("@xylabs/sdk-js").Hash;
|
|
1261
|
+
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
1262
|
+
_sequence: import("@xyo-network/payload-model").LocalSequence | import("@xyo-network/payload-model").QualifiedSequence;
|
|
1263
|
+
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
1264
|
+
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
1265
|
+
script?: string[] | undefined;
|
|
1266
|
+
} | undefined;
|
|
1267
|
+
(value: unknown, assert: import("@xylabs/zod").ZodFactoryConfig): {
|
|
1268
|
+
schema: "network.xyo.boundwitness";
|
|
1269
|
+
addresses: import("@xylabs/sdk-js").Address[];
|
|
1270
|
+
payload_hashes: import("@xylabs/sdk-js").Hash[];
|
|
1271
|
+
payload_schemas: string[];
|
|
1272
|
+
previous_hashes: (import("@xylabs/sdk-js").Hash | null)[];
|
|
1273
|
+
$signatures: (import("@xylabs/sdk-js").Hex | null)[];
|
|
1274
|
+
nbf: import("../model/index.ts").BlockNumber;
|
|
1275
|
+
exp: import("../model/index.ts").BlockNumber;
|
|
1276
|
+
fees: {
|
|
1277
|
+
base: import("@xylabs/sdk-js").Hex;
|
|
1278
|
+
gasLimit: import("@xylabs/sdk-js").Hex;
|
|
1279
|
+
gasPrice: import("@xylabs/sdk-js").Hex;
|
|
1280
|
+
priority: import("@xylabs/sdk-js").Hex;
|
|
1281
|
+
};
|
|
1282
|
+
chain: import("../model/ChainId.ts").ChainId;
|
|
1283
|
+
from: import("@xylabs/sdk-js").Address;
|
|
1284
|
+
_hash: import("@xylabs/sdk-js").Hash;
|
|
1285
|
+
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
1286
|
+
_sequence: import("@xyo-network/payload-model").LocalSequence | import("@xyo-network/payload-model").QualifiedSequence;
|
|
1287
|
+
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
1288
|
+
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
1289
|
+
script?: string[] | undefined;
|
|
1290
|
+
};
|
|
1291
|
+
};
|
|
416
1292
|
//# sourceMappingURL=TransactionBoundWitness.d.ts.map
|