@xyo-network/xl1-protocol 1.24.39 → 1.24.40
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/block/BlockBoundWitness.d.ts +137 -181
- package/dist/neutral/block/BlockBoundWitness.d.ts.map +1 -1
- package/dist/neutral/block/HydratedBlock.d.ts +218 -306
- package/dist/neutral/block/HydratedBlock.d.ts.map +1 -1
- package/dist/neutral/index.mjs +53 -48
- package/dist/neutral/index.mjs.map +1 -1
- package/dist/neutral/model/AccountBalance.d.ts +12 -17
- package/dist/neutral/model/AccountBalance.d.ts.map +1 -1
- package/dist/neutral/model/ChainQualification.d.ts +2 -2
- package/dist/neutral/model/ChainQualification.d.ts.map +1 -1
- package/dist/neutral/model/Context/ChainContext.zod.d.ts +32 -44
- package/dist/neutral/model/Context/ChainContext.zod.d.ts.map +1 -1
- package/dist/neutral/model/Context/HeadContext.zod.d.ts +18 -24
- package/dist/neutral/model/Context/HeadContext.zod.d.ts.map +1 -1
- package/dist/neutral/model/HydratedTransaction.d.ts +153 -225
- package/dist/neutral/model/HydratedTransaction.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/block/BlockBoundWitness.ts +22 -10
- package/src/model/Context/HeadContext.zod.ts +3 -2
|
@@ -226,7 +226,7 @@ export declare const toHydratedTransaction: {
|
|
|
226
226
|
schema: import("@xyo-network/sdk-js").BrandedSchema<string>;
|
|
227
227
|
}[]];
|
|
228
228
|
};
|
|
229
|
-
export declare const HydratedTransactionWithHashMetaZod: z.ZodTuple<[z.
|
|
229
|
+
export declare const HydratedTransactionWithHashMetaZod: z.ZodTuple<[z.ZodObject<{
|
|
230
230
|
schema: z.ZodLiteral<"network.xyo.boundwitness" & {
|
|
231
231
|
readonly __schema: true;
|
|
232
232
|
}>;
|
|
@@ -260,15 +260,13 @@ export declare const HydratedTransactionWithHashMetaZod: z.ZodTuple<[z.ZodInters
|
|
|
260
260
|
readonly __address: true;
|
|
261
261
|
}, string>>;
|
|
262
262
|
script: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
263
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
264
263
|
_hash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
265
264
|
_dataHash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
266
|
-
}, z.core.$strip
|
|
265
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
267
266
|
schema: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>;
|
|
268
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
269
267
|
_hash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
270
268
|
_dataHash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
271
|
-
}, z.core.$strip
|
|
269
|
+
}, z.core.$strip>>], null>;
|
|
272
270
|
export type HydratedTransactionWithHashMeta = z.infer<typeof HydratedTransactionWithHashMetaZod>;
|
|
273
271
|
export declare const isHydratedTransactionWithHashMeta: <T>(value: T) => value is T & [{
|
|
274
272
|
schema: "network.xyo.boundwitness" & {
|
|
@@ -297,6 +295,8 @@ export declare const isHydratedTransactionWithHashMeta: <T>(value: T) => value i
|
|
|
297
295
|
} & {
|
|
298
296
|
readonly __address: true;
|
|
299
297
|
};
|
|
298
|
+
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
299
|
+
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
300
300
|
$destination?: (Lowercase<string> & {
|
|
301
301
|
readonly __hex: true;
|
|
302
302
|
} & {
|
|
@@ -304,15 +304,11 @@ export declare const isHydratedTransactionWithHashMeta: <T>(value: T) => value i
|
|
|
304
304
|
}) | undefined;
|
|
305
305
|
$sourceQuery?: import("@xylabs/sdk-js").BrandedHash | undefined;
|
|
306
306
|
script?: string[] | undefined;
|
|
307
|
-
}
|
|
308
|
-
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
309
|
-
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
310
|
-
}, ({
|
|
307
|
+
}, {
|
|
311
308
|
schema: import("@xyo-network/sdk-js").BrandedSchema<string>;
|
|
312
|
-
} & {
|
|
313
309
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
314
310
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
315
|
-
}
|
|
311
|
+
}[]];
|
|
316
312
|
export declare const asHydratedTransactionWithHashMeta: {
|
|
317
313
|
<T>(value: T): (T & [{
|
|
318
314
|
schema: "network.xyo.boundwitness" & {
|
|
@@ -341,6 +337,8 @@ export declare const asHydratedTransactionWithHashMeta: {
|
|
|
341
337
|
} & {
|
|
342
338
|
readonly __address: true;
|
|
343
339
|
};
|
|
340
|
+
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
341
|
+
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
344
342
|
$destination?: (Lowercase<string> & {
|
|
345
343
|
readonly __hex: true;
|
|
346
344
|
} & {
|
|
@@ -348,15 +346,11 @@ export declare const asHydratedTransactionWithHashMeta: {
|
|
|
348
346
|
}) | undefined;
|
|
349
347
|
$sourceQuery?: import("@xylabs/sdk-js").BrandedHash | undefined;
|
|
350
348
|
script?: string[] | undefined;
|
|
351
|
-
}
|
|
352
|
-
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
353
|
-
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
354
|
-
}, ({
|
|
349
|
+
}, {
|
|
355
350
|
schema: import("@xyo-network/sdk-js").BrandedSchema<string>;
|
|
356
|
-
} & {
|
|
357
351
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
358
352
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
359
|
-
}
|
|
353
|
+
}[]]) | undefined;
|
|
360
354
|
<T>(value: T, assert: import("@xylabs/sdk-js").ZodFactoryConfig): T & [{
|
|
361
355
|
schema: "network.xyo.boundwitness" & {
|
|
362
356
|
readonly __schema: true;
|
|
@@ -384,6 +378,8 @@ export declare const asHydratedTransactionWithHashMeta: {
|
|
|
384
378
|
} & {
|
|
385
379
|
readonly __address: true;
|
|
386
380
|
};
|
|
381
|
+
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
382
|
+
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
387
383
|
$destination?: (Lowercase<string> & {
|
|
388
384
|
readonly __hex: true;
|
|
389
385
|
} & {
|
|
@@ -391,15 +387,11 @@ export declare const asHydratedTransactionWithHashMeta: {
|
|
|
391
387
|
}) | undefined;
|
|
392
388
|
$sourceQuery?: import("@xylabs/sdk-js").BrandedHash | undefined;
|
|
393
389
|
script?: string[] | undefined;
|
|
394
|
-
}
|
|
395
|
-
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
396
|
-
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
397
|
-
}, ({
|
|
390
|
+
}, {
|
|
398
391
|
schema: import("@xyo-network/sdk-js").BrandedSchema<string>;
|
|
399
|
-
} & {
|
|
400
392
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
401
393
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
402
|
-
}
|
|
394
|
+
}[]];
|
|
403
395
|
};
|
|
404
396
|
export declare const toHydratedTransactionWithHashMeta: {
|
|
405
397
|
<T>(value: T): (T & [{
|
|
@@ -429,6 +421,8 @@ export declare const toHydratedTransactionWithHashMeta: {
|
|
|
429
421
|
} & {
|
|
430
422
|
readonly __address: true;
|
|
431
423
|
};
|
|
424
|
+
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
425
|
+
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
432
426
|
$destination?: (Lowercase<string> & {
|
|
433
427
|
readonly __hex: true;
|
|
434
428
|
} & {
|
|
@@ -436,15 +430,11 @@ export declare const toHydratedTransactionWithHashMeta: {
|
|
|
436
430
|
}) | undefined;
|
|
437
431
|
$sourceQuery?: import("@xylabs/sdk-js").BrandedHash | undefined;
|
|
438
432
|
script?: string[] | undefined;
|
|
439
|
-
}
|
|
440
|
-
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
441
|
-
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
442
|
-
}, ({
|
|
433
|
+
}, {
|
|
443
434
|
schema: import("@xyo-network/sdk-js").BrandedSchema<string>;
|
|
444
|
-
} & {
|
|
445
435
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
446
436
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
447
|
-
}
|
|
437
|
+
}[]]) | undefined;
|
|
448
438
|
<T>(value: T, assert: import("@xylabs/sdk-js").ZodFactoryConfig): T & [{
|
|
449
439
|
schema: "network.xyo.boundwitness" & {
|
|
450
440
|
readonly __schema: true;
|
|
@@ -472,6 +462,8 @@ export declare const toHydratedTransactionWithHashMeta: {
|
|
|
472
462
|
} & {
|
|
473
463
|
readonly __address: true;
|
|
474
464
|
};
|
|
465
|
+
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
466
|
+
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
475
467
|
$destination?: (Lowercase<string> & {
|
|
476
468
|
readonly __hex: true;
|
|
477
469
|
} & {
|
|
@@ -479,17 +471,13 @@ export declare const toHydratedTransactionWithHashMeta: {
|
|
|
479
471
|
}) | undefined;
|
|
480
472
|
$sourceQuery?: import("@xylabs/sdk-js").BrandedHash | undefined;
|
|
481
473
|
script?: string[] | undefined;
|
|
482
|
-
}
|
|
483
|
-
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
484
|
-
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
485
|
-
}, ({
|
|
474
|
+
}, {
|
|
486
475
|
schema: import("@xyo-network/sdk-js").BrandedSchema<string>;
|
|
487
|
-
} & {
|
|
488
476
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
489
477
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
490
|
-
}
|
|
478
|
+
}[]];
|
|
491
479
|
};
|
|
492
|
-
export declare const HydratedTransactionWithStorageMetaZod: z.ZodTuple<[z.
|
|
480
|
+
export declare const HydratedTransactionWithStorageMetaZod: z.ZodTuple<[z.ZodObject<{
|
|
493
481
|
schema: z.ZodLiteral<"network.xyo.boundwitness" & {
|
|
494
482
|
readonly __schema: true;
|
|
495
483
|
}>;
|
|
@@ -523,17 +511,15 @@ export declare const HydratedTransactionWithStorageMetaZod: z.ZodTuple<[z.ZodInt
|
|
|
523
511
|
readonly __address: true;
|
|
524
512
|
}, string>>;
|
|
525
513
|
script: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
526
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
527
514
|
_hash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
528
515
|
_dataHash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
529
516
|
_sequence: z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/sdk-js").LocalSequence, string>>, z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/sdk-js").QualifiedSequence, string>>]>;
|
|
530
|
-
}, z.core.$strip
|
|
517
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
531
518
|
schema: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>;
|
|
532
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
533
519
|
_hash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
534
520
|
_dataHash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
535
521
|
_sequence: z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/sdk-js").LocalSequence, string>>, z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/sdk-js").QualifiedSequence, string>>]>;
|
|
536
|
-
}, z.core.$strip
|
|
522
|
+
}, z.core.$strip>>], null>;
|
|
537
523
|
export type HydratedTransactionWithStorageMeta = z.infer<typeof HydratedTransactionWithStorageMetaZod>;
|
|
538
524
|
export declare const isHydratedTransactionWithStorageMeta: <T>(value: T) => value is T & [{
|
|
539
525
|
schema: "network.xyo.boundwitness" & {
|
|
@@ -562,6 +548,9 @@ export declare const isHydratedTransactionWithStorageMeta: <T>(value: T) => valu
|
|
|
562
548
|
} & {
|
|
563
549
|
readonly __address: true;
|
|
564
550
|
};
|
|
551
|
+
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
552
|
+
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
553
|
+
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
565
554
|
$destination?: (Lowercase<string> & {
|
|
566
555
|
readonly __hex: true;
|
|
567
556
|
} & {
|
|
@@ -569,17 +558,12 @@ export declare const isHydratedTransactionWithStorageMeta: <T>(value: T) => valu
|
|
|
569
558
|
}) | undefined;
|
|
570
559
|
$sourceQuery?: import("@xylabs/sdk-js").BrandedHash | undefined;
|
|
571
560
|
script?: string[] | undefined;
|
|
572
|
-
}
|
|
573
|
-
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
574
|
-
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
575
|
-
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
576
|
-
}, ({
|
|
561
|
+
}, {
|
|
577
562
|
schema: import("@xyo-network/sdk-js").BrandedSchema<string>;
|
|
578
|
-
} & {
|
|
579
563
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
580
564
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
581
565
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
582
|
-
}
|
|
566
|
+
}[]];
|
|
583
567
|
export declare const asHydratedTransactionWithStorageMeta: {
|
|
584
568
|
<T>(value: T): (T & [{
|
|
585
569
|
schema: "network.xyo.boundwitness" & {
|
|
@@ -608,6 +592,9 @@ export declare const asHydratedTransactionWithStorageMeta: {
|
|
|
608
592
|
} & {
|
|
609
593
|
readonly __address: true;
|
|
610
594
|
};
|
|
595
|
+
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
596
|
+
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
597
|
+
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
611
598
|
$destination?: (Lowercase<string> & {
|
|
612
599
|
readonly __hex: true;
|
|
613
600
|
} & {
|
|
@@ -615,17 +602,12 @@ export declare const asHydratedTransactionWithStorageMeta: {
|
|
|
615
602
|
}) | undefined;
|
|
616
603
|
$sourceQuery?: import("@xylabs/sdk-js").BrandedHash | undefined;
|
|
617
604
|
script?: string[] | undefined;
|
|
618
|
-
}
|
|
619
|
-
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
620
|
-
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
621
|
-
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
622
|
-
}, ({
|
|
605
|
+
}, {
|
|
623
606
|
schema: import("@xyo-network/sdk-js").BrandedSchema<string>;
|
|
624
|
-
} & {
|
|
625
607
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
626
608
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
627
609
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
628
|
-
}
|
|
610
|
+
}[]]) | undefined;
|
|
629
611
|
<T>(value: T, assert: import("@xylabs/sdk-js").ZodFactoryConfig): T & [{
|
|
630
612
|
schema: "network.xyo.boundwitness" & {
|
|
631
613
|
readonly __schema: true;
|
|
@@ -653,6 +635,9 @@ export declare const asHydratedTransactionWithStorageMeta: {
|
|
|
653
635
|
} & {
|
|
654
636
|
readonly __address: true;
|
|
655
637
|
};
|
|
638
|
+
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
639
|
+
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
640
|
+
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
656
641
|
$destination?: (Lowercase<string> & {
|
|
657
642
|
readonly __hex: true;
|
|
658
643
|
} & {
|
|
@@ -660,17 +645,12 @@ export declare const asHydratedTransactionWithStorageMeta: {
|
|
|
660
645
|
}) | undefined;
|
|
661
646
|
$sourceQuery?: import("@xylabs/sdk-js").BrandedHash | undefined;
|
|
662
647
|
script?: string[] | undefined;
|
|
663
|
-
}
|
|
664
|
-
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
665
|
-
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
666
|
-
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
667
|
-
}, ({
|
|
648
|
+
}, {
|
|
668
649
|
schema: import("@xyo-network/sdk-js").BrandedSchema<string>;
|
|
669
|
-
} & {
|
|
670
650
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
671
651
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
672
652
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
673
|
-
}
|
|
653
|
+
}[]];
|
|
674
654
|
};
|
|
675
655
|
export declare const toHydratedTransactionWithStorageMeta: {
|
|
676
656
|
<T>(value: T): (T & [{
|
|
@@ -700,6 +680,9 @@ export declare const toHydratedTransactionWithStorageMeta: {
|
|
|
700
680
|
} & {
|
|
701
681
|
readonly __address: true;
|
|
702
682
|
};
|
|
683
|
+
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
684
|
+
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
685
|
+
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
703
686
|
$destination?: (Lowercase<string> & {
|
|
704
687
|
readonly __hex: true;
|
|
705
688
|
} & {
|
|
@@ -707,17 +690,12 @@ export declare const toHydratedTransactionWithStorageMeta: {
|
|
|
707
690
|
}) | undefined;
|
|
708
691
|
$sourceQuery?: import("@xylabs/sdk-js").BrandedHash | undefined;
|
|
709
692
|
script?: string[] | undefined;
|
|
710
|
-
}
|
|
711
|
-
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
712
|
-
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
713
|
-
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
714
|
-
}, ({
|
|
693
|
+
}, {
|
|
715
694
|
schema: import("@xyo-network/sdk-js").BrandedSchema<string>;
|
|
716
|
-
} & {
|
|
717
695
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
718
696
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
719
697
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
720
|
-
}
|
|
698
|
+
}[]]) | undefined;
|
|
721
699
|
<T>(value: T, assert: import("@xylabs/sdk-js").ZodFactoryConfig): T & [{
|
|
722
700
|
schema: "network.xyo.boundwitness" & {
|
|
723
701
|
readonly __schema: true;
|
|
@@ -745,6 +723,9 @@ export declare const toHydratedTransactionWithStorageMeta: {
|
|
|
745
723
|
} & {
|
|
746
724
|
readonly __address: true;
|
|
747
725
|
};
|
|
726
|
+
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
727
|
+
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
728
|
+
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
748
729
|
$destination?: (Lowercase<string> & {
|
|
749
730
|
readonly __hex: true;
|
|
750
731
|
} & {
|
|
@@ -752,17 +733,12 @@ export declare const toHydratedTransactionWithStorageMeta: {
|
|
|
752
733
|
}) | undefined;
|
|
753
734
|
$sourceQuery?: import("@xylabs/sdk-js").BrandedHash | undefined;
|
|
754
735
|
script?: string[] | undefined;
|
|
755
|
-
}
|
|
756
|
-
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
757
|
-
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
758
|
-
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
759
|
-
}, ({
|
|
736
|
+
}, {
|
|
760
737
|
schema: import("@xyo-network/sdk-js").BrandedSchema<string>;
|
|
761
|
-
} & {
|
|
762
738
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
763
739
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
764
740
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
765
|
-
}
|
|
741
|
+
}[]];
|
|
766
742
|
};
|
|
767
743
|
export declare const UnsignedHydratedTransactionZod: z.ZodTuple<[z.ZodObject<{
|
|
768
744
|
schema: z.ZodLiteral<"network.xyo.boundwitness" & {
|
|
@@ -991,7 +967,7 @@ export declare const toUnsignedHydratedTransaction: {
|
|
|
991
967
|
schema: import("@xyo-network/sdk-js").BrandedSchema<string>;
|
|
992
968
|
}[]];
|
|
993
969
|
};
|
|
994
|
-
export declare const UnsignedHydratedTransactionWithHashMetaZod: z.ZodTuple<[z.
|
|
970
|
+
export declare const UnsignedHydratedTransactionWithHashMetaZod: z.ZodTuple<[z.ZodObject<{
|
|
995
971
|
schema: z.ZodLiteral<"network.xyo.boundwitness" & {
|
|
996
972
|
readonly __schema: true;
|
|
997
973
|
}>;
|
|
@@ -1025,15 +1001,13 @@ export declare const UnsignedHydratedTransactionWithHashMetaZod: z.ZodTuple<[z.Z
|
|
|
1025
1001
|
readonly __address: true;
|
|
1026
1002
|
}, string>>;
|
|
1027
1003
|
script: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1028
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
1029
1004
|
_hash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
1030
1005
|
_dataHash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
1031
|
-
}, z.core.$strip
|
|
1006
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
1032
1007
|
schema: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>;
|
|
1033
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
1034
1008
|
_hash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
1035
1009
|
_dataHash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
1036
|
-
}, z.core.$strip
|
|
1010
|
+
}, z.core.$strip>>], null>;
|
|
1037
1011
|
export type UnsignedHydratedTransactionWithHashMeta = z.infer<typeof UnsignedHydratedTransactionWithHashMetaZod>;
|
|
1038
1012
|
export declare const isUnsignedHydratedTransactionWithHashMeta: <T>(value: T) => value is T & [{
|
|
1039
1013
|
schema: "network.xyo.boundwitness" & {
|
|
@@ -1062,6 +1036,8 @@ export declare const isUnsignedHydratedTransactionWithHashMeta: <T>(value: T) =>
|
|
|
1062
1036
|
} & {
|
|
1063
1037
|
readonly __address: true;
|
|
1064
1038
|
};
|
|
1039
|
+
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1040
|
+
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1065
1041
|
$destination?: (Lowercase<string> & {
|
|
1066
1042
|
readonly __hex: true;
|
|
1067
1043
|
} & {
|
|
@@ -1069,15 +1045,11 @@ export declare const isUnsignedHydratedTransactionWithHashMeta: <T>(value: T) =>
|
|
|
1069
1045
|
}) | undefined;
|
|
1070
1046
|
$sourceQuery?: import("@xylabs/sdk-js").BrandedHash | undefined;
|
|
1071
1047
|
script?: string[] | undefined;
|
|
1072
|
-
}
|
|
1073
|
-
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1074
|
-
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1075
|
-
}, ({
|
|
1048
|
+
}, {
|
|
1076
1049
|
schema: import("@xyo-network/sdk-js").BrandedSchema<string>;
|
|
1077
|
-
} & {
|
|
1078
1050
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1079
1051
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1080
|
-
}
|
|
1052
|
+
}[]];
|
|
1081
1053
|
export declare const asUnsignedHydratedTransactionWithHashMeta: {
|
|
1082
1054
|
<T>(value: T): (T & [{
|
|
1083
1055
|
schema: "network.xyo.boundwitness" & {
|
|
@@ -1106,6 +1078,8 @@ export declare const asUnsignedHydratedTransactionWithHashMeta: {
|
|
|
1106
1078
|
} & {
|
|
1107
1079
|
readonly __address: true;
|
|
1108
1080
|
};
|
|
1081
|
+
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1082
|
+
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1109
1083
|
$destination?: (Lowercase<string> & {
|
|
1110
1084
|
readonly __hex: true;
|
|
1111
1085
|
} & {
|
|
@@ -1113,15 +1087,11 @@ export declare const asUnsignedHydratedTransactionWithHashMeta: {
|
|
|
1113
1087
|
}) | undefined;
|
|
1114
1088
|
$sourceQuery?: import("@xylabs/sdk-js").BrandedHash | undefined;
|
|
1115
1089
|
script?: string[] | undefined;
|
|
1116
|
-
}
|
|
1117
|
-
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1118
|
-
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1119
|
-
}, ({
|
|
1090
|
+
}, {
|
|
1120
1091
|
schema: import("@xyo-network/sdk-js").BrandedSchema<string>;
|
|
1121
|
-
} & {
|
|
1122
1092
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1123
1093
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1124
|
-
}
|
|
1094
|
+
}[]]) | undefined;
|
|
1125
1095
|
<T>(value: T, assert: import("@xylabs/sdk-js").ZodFactoryConfig): T & [{
|
|
1126
1096
|
schema: "network.xyo.boundwitness" & {
|
|
1127
1097
|
readonly __schema: true;
|
|
@@ -1149,6 +1119,8 @@ export declare const asUnsignedHydratedTransactionWithHashMeta: {
|
|
|
1149
1119
|
} & {
|
|
1150
1120
|
readonly __address: true;
|
|
1151
1121
|
};
|
|
1122
|
+
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1123
|
+
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1152
1124
|
$destination?: (Lowercase<string> & {
|
|
1153
1125
|
readonly __hex: true;
|
|
1154
1126
|
} & {
|
|
@@ -1156,15 +1128,11 @@ export declare const asUnsignedHydratedTransactionWithHashMeta: {
|
|
|
1156
1128
|
}) | undefined;
|
|
1157
1129
|
$sourceQuery?: import("@xylabs/sdk-js").BrandedHash | undefined;
|
|
1158
1130
|
script?: string[] | undefined;
|
|
1159
|
-
}
|
|
1160
|
-
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1161
|
-
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1162
|
-
}, ({
|
|
1131
|
+
}, {
|
|
1163
1132
|
schema: import("@xyo-network/sdk-js").BrandedSchema<string>;
|
|
1164
|
-
} & {
|
|
1165
1133
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1166
1134
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1167
|
-
}
|
|
1135
|
+
}[]];
|
|
1168
1136
|
};
|
|
1169
1137
|
export declare const toUnsignedHydratedTransactionWithHashMeta: {
|
|
1170
1138
|
<T>(value: T): (T & [{
|
|
@@ -1194,6 +1162,8 @@ export declare const toUnsignedHydratedTransactionWithHashMeta: {
|
|
|
1194
1162
|
} & {
|
|
1195
1163
|
readonly __address: true;
|
|
1196
1164
|
};
|
|
1165
|
+
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1166
|
+
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1197
1167
|
$destination?: (Lowercase<string> & {
|
|
1198
1168
|
readonly __hex: true;
|
|
1199
1169
|
} & {
|
|
@@ -1201,15 +1171,11 @@ export declare const toUnsignedHydratedTransactionWithHashMeta: {
|
|
|
1201
1171
|
}) | undefined;
|
|
1202
1172
|
$sourceQuery?: import("@xylabs/sdk-js").BrandedHash | undefined;
|
|
1203
1173
|
script?: string[] | undefined;
|
|
1204
|
-
}
|
|
1205
|
-
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1206
|
-
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1207
|
-
}, ({
|
|
1174
|
+
}, {
|
|
1208
1175
|
schema: import("@xyo-network/sdk-js").BrandedSchema<string>;
|
|
1209
|
-
} & {
|
|
1210
1176
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1211
1177
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1212
|
-
}
|
|
1178
|
+
}[]]) | undefined;
|
|
1213
1179
|
<T>(value: T, assert: import("@xylabs/sdk-js").ZodFactoryConfig): T & [{
|
|
1214
1180
|
schema: "network.xyo.boundwitness" & {
|
|
1215
1181
|
readonly __schema: true;
|
|
@@ -1237,6 +1203,8 @@ export declare const toUnsignedHydratedTransactionWithHashMeta: {
|
|
|
1237
1203
|
} & {
|
|
1238
1204
|
readonly __address: true;
|
|
1239
1205
|
};
|
|
1206
|
+
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1207
|
+
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1240
1208
|
$destination?: (Lowercase<string> & {
|
|
1241
1209
|
readonly __hex: true;
|
|
1242
1210
|
} & {
|
|
@@ -1244,17 +1212,13 @@ export declare const toUnsignedHydratedTransactionWithHashMeta: {
|
|
|
1244
1212
|
}) | undefined;
|
|
1245
1213
|
$sourceQuery?: import("@xylabs/sdk-js").BrandedHash | undefined;
|
|
1246
1214
|
script?: string[] | undefined;
|
|
1247
|
-
}
|
|
1248
|
-
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1249
|
-
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1250
|
-
}, ({
|
|
1215
|
+
}, {
|
|
1251
1216
|
schema: import("@xyo-network/sdk-js").BrandedSchema<string>;
|
|
1252
|
-
} & {
|
|
1253
1217
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1254
1218
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1255
|
-
}
|
|
1219
|
+
}[]];
|
|
1256
1220
|
};
|
|
1257
|
-
export declare const UnsignedHydratedTransactionWithStorageMetaZod: z.ZodTuple<[z.
|
|
1221
|
+
export declare const UnsignedHydratedTransactionWithStorageMetaZod: z.ZodTuple<[z.ZodObject<{
|
|
1258
1222
|
schema: z.ZodLiteral<"network.xyo.boundwitness" & {
|
|
1259
1223
|
readonly __schema: true;
|
|
1260
1224
|
}>;
|
|
@@ -1288,17 +1252,15 @@ export declare const UnsignedHydratedTransactionWithStorageMetaZod: z.ZodTuple<[
|
|
|
1288
1252
|
readonly __address: true;
|
|
1289
1253
|
}, string>>;
|
|
1290
1254
|
script: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1291
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
1292
1255
|
_hash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
1293
1256
|
_dataHash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
1294
1257
|
_sequence: z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/sdk-js").LocalSequence, string>>, z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/sdk-js").QualifiedSequence, string>>]>;
|
|
1295
|
-
}, z.core.$strip
|
|
1258
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
1296
1259
|
schema: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>;
|
|
1297
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
1298
1260
|
_hash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
1299
1261
|
_dataHash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
1300
1262
|
_sequence: z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/sdk-js").LocalSequence, string>>, z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/sdk-js").QualifiedSequence, string>>]>;
|
|
1301
|
-
}, z.core.$strip
|
|
1263
|
+
}, z.core.$strip>>], null>;
|
|
1302
1264
|
export type UnsignedHydratedTransactionWithStorageMeta = z.infer<typeof UnsignedHydratedTransactionWithStorageMetaZod>;
|
|
1303
1265
|
export declare const isUnsignedHydratedTransactionWithStorageMeta: <T>(value: T) => value is T & [{
|
|
1304
1266
|
schema: "network.xyo.boundwitness" & {
|
|
@@ -1327,6 +1289,9 @@ export declare const isUnsignedHydratedTransactionWithStorageMeta: <T>(value: T)
|
|
|
1327
1289
|
} & {
|
|
1328
1290
|
readonly __address: true;
|
|
1329
1291
|
};
|
|
1292
|
+
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1293
|
+
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1294
|
+
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
1330
1295
|
$destination?: (Lowercase<string> & {
|
|
1331
1296
|
readonly __hex: true;
|
|
1332
1297
|
} & {
|
|
@@ -1334,17 +1299,12 @@ export declare const isUnsignedHydratedTransactionWithStorageMeta: <T>(value: T)
|
|
|
1334
1299
|
}) | undefined;
|
|
1335
1300
|
$sourceQuery?: import("@xylabs/sdk-js").BrandedHash | undefined;
|
|
1336
1301
|
script?: string[] | undefined;
|
|
1337
|
-
}
|
|
1338
|
-
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1339
|
-
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1340
|
-
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
1341
|
-
}, ({
|
|
1302
|
+
}, {
|
|
1342
1303
|
schema: import("@xyo-network/sdk-js").BrandedSchema<string>;
|
|
1343
|
-
} & {
|
|
1344
1304
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1345
1305
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1346
1306
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
1347
|
-
}
|
|
1307
|
+
}[]];
|
|
1348
1308
|
export declare const asUnsignedHydratedTransactionWithStorageMeta: {
|
|
1349
1309
|
<T>(value: T): (T & [{
|
|
1350
1310
|
schema: "network.xyo.boundwitness" & {
|
|
@@ -1373,6 +1333,9 @@ export declare const asUnsignedHydratedTransactionWithStorageMeta: {
|
|
|
1373
1333
|
} & {
|
|
1374
1334
|
readonly __address: true;
|
|
1375
1335
|
};
|
|
1336
|
+
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1337
|
+
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1338
|
+
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
1376
1339
|
$destination?: (Lowercase<string> & {
|
|
1377
1340
|
readonly __hex: true;
|
|
1378
1341
|
} & {
|
|
@@ -1380,17 +1343,12 @@ export declare const asUnsignedHydratedTransactionWithStorageMeta: {
|
|
|
1380
1343
|
}) | undefined;
|
|
1381
1344
|
$sourceQuery?: import("@xylabs/sdk-js").BrandedHash | undefined;
|
|
1382
1345
|
script?: string[] | undefined;
|
|
1383
|
-
}
|
|
1384
|
-
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1385
|
-
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1386
|
-
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
1387
|
-
}, ({
|
|
1346
|
+
}, {
|
|
1388
1347
|
schema: import("@xyo-network/sdk-js").BrandedSchema<string>;
|
|
1389
|
-
} & {
|
|
1390
1348
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1391
1349
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1392
1350
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
1393
|
-
}
|
|
1351
|
+
}[]]) | undefined;
|
|
1394
1352
|
<T>(value: T, assert: import("@xylabs/sdk-js").ZodFactoryConfig): T & [{
|
|
1395
1353
|
schema: "network.xyo.boundwitness" & {
|
|
1396
1354
|
readonly __schema: true;
|
|
@@ -1418,6 +1376,9 @@ export declare const asUnsignedHydratedTransactionWithStorageMeta: {
|
|
|
1418
1376
|
} & {
|
|
1419
1377
|
readonly __address: true;
|
|
1420
1378
|
};
|
|
1379
|
+
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1380
|
+
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1381
|
+
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
1421
1382
|
$destination?: (Lowercase<string> & {
|
|
1422
1383
|
readonly __hex: true;
|
|
1423
1384
|
} & {
|
|
@@ -1425,17 +1386,12 @@ export declare const asUnsignedHydratedTransactionWithStorageMeta: {
|
|
|
1425
1386
|
}) | undefined;
|
|
1426
1387
|
$sourceQuery?: import("@xylabs/sdk-js").BrandedHash | undefined;
|
|
1427
1388
|
script?: string[] | undefined;
|
|
1428
|
-
}
|
|
1429
|
-
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1430
|
-
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1431
|
-
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
1432
|
-
}, ({
|
|
1389
|
+
}, {
|
|
1433
1390
|
schema: import("@xyo-network/sdk-js").BrandedSchema<string>;
|
|
1434
|
-
} & {
|
|
1435
1391
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1436
1392
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1437
1393
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
1438
|
-
}
|
|
1394
|
+
}[]];
|
|
1439
1395
|
};
|
|
1440
1396
|
export declare const toUnsignedHydratedTransactionWithStorageMeta: {
|
|
1441
1397
|
<T>(value: T): (T & [{
|
|
@@ -1465,6 +1421,9 @@ export declare const toUnsignedHydratedTransactionWithStorageMeta: {
|
|
|
1465
1421
|
} & {
|
|
1466
1422
|
readonly __address: true;
|
|
1467
1423
|
};
|
|
1424
|
+
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1425
|
+
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1426
|
+
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
1468
1427
|
$destination?: (Lowercase<string> & {
|
|
1469
1428
|
readonly __hex: true;
|
|
1470
1429
|
} & {
|
|
@@ -1472,17 +1431,12 @@ export declare const toUnsignedHydratedTransactionWithStorageMeta: {
|
|
|
1472
1431
|
}) | undefined;
|
|
1473
1432
|
$sourceQuery?: import("@xylabs/sdk-js").BrandedHash | undefined;
|
|
1474
1433
|
script?: string[] | undefined;
|
|
1475
|
-
}
|
|
1476
|
-
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1477
|
-
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1478
|
-
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
1479
|
-
}, ({
|
|
1434
|
+
}, {
|
|
1480
1435
|
schema: import("@xyo-network/sdk-js").BrandedSchema<string>;
|
|
1481
|
-
} & {
|
|
1482
1436
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1483
1437
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1484
1438
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
1485
|
-
}
|
|
1439
|
+
}[]]) | undefined;
|
|
1486
1440
|
<T>(value: T, assert: import("@xylabs/sdk-js").ZodFactoryConfig): T & [{
|
|
1487
1441
|
schema: "network.xyo.boundwitness" & {
|
|
1488
1442
|
readonly __schema: true;
|
|
@@ -1510,6 +1464,9 @@ export declare const toUnsignedHydratedTransactionWithStorageMeta: {
|
|
|
1510
1464
|
} & {
|
|
1511
1465
|
readonly __address: true;
|
|
1512
1466
|
};
|
|
1467
|
+
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1468
|
+
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1469
|
+
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
1513
1470
|
$destination?: (Lowercase<string> & {
|
|
1514
1471
|
readonly __hex: true;
|
|
1515
1472
|
} & {
|
|
@@ -1517,17 +1474,12 @@ export declare const toUnsignedHydratedTransactionWithStorageMeta: {
|
|
|
1517
1474
|
}) | undefined;
|
|
1518
1475
|
$sourceQuery?: import("@xylabs/sdk-js").BrandedHash | undefined;
|
|
1519
1476
|
script?: string[] | undefined;
|
|
1520
|
-
}
|
|
1521
|
-
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1522
|
-
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1523
|
-
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
1524
|
-
}, ({
|
|
1477
|
+
}, {
|
|
1525
1478
|
schema: import("@xyo-network/sdk-js").BrandedSchema<string>;
|
|
1526
|
-
} & {
|
|
1527
1479
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1528
1480
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1529
1481
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
1530
|
-
}
|
|
1482
|
+
}[]];
|
|
1531
1483
|
};
|
|
1532
1484
|
export declare const SignedHydratedTransactionZod: z.ZodTuple<[z.ZodObject<{
|
|
1533
1485
|
schema: z.ZodLiteral<"network.xyo.boundwitness" & {
|
|
@@ -1756,7 +1708,7 @@ export declare const toSignedHydratedTransaction: {
|
|
|
1756
1708
|
schema: import("@xyo-network/sdk-js").BrandedSchema<string>;
|
|
1757
1709
|
}[]];
|
|
1758
1710
|
};
|
|
1759
|
-
export declare const SignedHydratedTransactionWithHashMetaZod: z.ZodTuple<[z.
|
|
1711
|
+
export declare const SignedHydratedTransactionWithHashMetaZod: z.ZodTuple<[z.ZodObject<{
|
|
1760
1712
|
schema: z.ZodLiteral<"network.xyo.boundwitness" & {
|
|
1761
1713
|
readonly __schema: true;
|
|
1762
1714
|
}>;
|
|
@@ -1790,15 +1742,13 @@ export declare const SignedHydratedTransactionWithHashMetaZod: z.ZodTuple<[z.Zod
|
|
|
1790
1742
|
readonly __address: true;
|
|
1791
1743
|
}, string>>;
|
|
1792
1744
|
script: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1793
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
1794
1745
|
_hash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
1795
1746
|
_dataHash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
1796
|
-
}, z.core.$strip
|
|
1747
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
1797
1748
|
schema: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>;
|
|
1798
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
1799
1749
|
_hash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
1800
1750
|
_dataHash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
1801
|
-
}, z.core.$strip
|
|
1751
|
+
}, z.core.$strip>>], null>;
|
|
1802
1752
|
export type SignedHydratedTransactionWithHashMeta = z.infer<typeof SignedHydratedTransactionWithHashMetaZod>;
|
|
1803
1753
|
export declare const isSignedHydratedTransactionWithHashMeta: <T>(value: T) => value is T & [{
|
|
1804
1754
|
schema: "network.xyo.boundwitness" & {
|
|
@@ -1827,6 +1777,8 @@ export declare const isSignedHydratedTransactionWithHashMeta: <T>(value: T) => v
|
|
|
1827
1777
|
} & {
|
|
1828
1778
|
readonly __address: true;
|
|
1829
1779
|
};
|
|
1780
|
+
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1781
|
+
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1830
1782
|
$destination?: (Lowercase<string> & {
|
|
1831
1783
|
readonly __hex: true;
|
|
1832
1784
|
} & {
|
|
@@ -1834,15 +1786,11 @@ export declare const isSignedHydratedTransactionWithHashMeta: <T>(value: T) => v
|
|
|
1834
1786
|
}) | undefined;
|
|
1835
1787
|
$sourceQuery?: import("@xylabs/sdk-js").BrandedHash | undefined;
|
|
1836
1788
|
script?: string[] | undefined;
|
|
1837
|
-
}
|
|
1838
|
-
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1839
|
-
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1840
|
-
}, ({
|
|
1789
|
+
}, {
|
|
1841
1790
|
schema: import("@xyo-network/sdk-js").BrandedSchema<string>;
|
|
1842
|
-
} & {
|
|
1843
1791
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1844
1792
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1845
|
-
}
|
|
1793
|
+
}[]];
|
|
1846
1794
|
export declare const asSignedHydratedTransactionWithHashMeta: {
|
|
1847
1795
|
<T>(value: T): (T & [{
|
|
1848
1796
|
schema: "network.xyo.boundwitness" & {
|
|
@@ -1871,6 +1819,8 @@ export declare const asSignedHydratedTransactionWithHashMeta: {
|
|
|
1871
1819
|
} & {
|
|
1872
1820
|
readonly __address: true;
|
|
1873
1821
|
};
|
|
1822
|
+
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1823
|
+
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1874
1824
|
$destination?: (Lowercase<string> & {
|
|
1875
1825
|
readonly __hex: true;
|
|
1876
1826
|
} & {
|
|
@@ -1878,15 +1828,11 @@ export declare const asSignedHydratedTransactionWithHashMeta: {
|
|
|
1878
1828
|
}) | undefined;
|
|
1879
1829
|
$sourceQuery?: import("@xylabs/sdk-js").BrandedHash | undefined;
|
|
1880
1830
|
script?: string[] | undefined;
|
|
1881
|
-
}
|
|
1882
|
-
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1883
|
-
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1884
|
-
}, ({
|
|
1831
|
+
}, {
|
|
1885
1832
|
schema: import("@xyo-network/sdk-js").BrandedSchema<string>;
|
|
1886
|
-
} & {
|
|
1887
1833
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1888
1834
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1889
|
-
}
|
|
1835
|
+
}[]]) | undefined;
|
|
1890
1836
|
<T>(value: T, assert: import("@xylabs/sdk-js").ZodFactoryConfig): T & [{
|
|
1891
1837
|
schema: "network.xyo.boundwitness" & {
|
|
1892
1838
|
readonly __schema: true;
|
|
@@ -1914,6 +1860,8 @@ export declare const asSignedHydratedTransactionWithHashMeta: {
|
|
|
1914
1860
|
} & {
|
|
1915
1861
|
readonly __address: true;
|
|
1916
1862
|
};
|
|
1863
|
+
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1864
|
+
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1917
1865
|
$destination?: (Lowercase<string> & {
|
|
1918
1866
|
readonly __hex: true;
|
|
1919
1867
|
} & {
|
|
@@ -1921,15 +1869,11 @@ export declare const asSignedHydratedTransactionWithHashMeta: {
|
|
|
1921
1869
|
}) | undefined;
|
|
1922
1870
|
$sourceQuery?: import("@xylabs/sdk-js").BrandedHash | undefined;
|
|
1923
1871
|
script?: string[] | undefined;
|
|
1924
|
-
}
|
|
1925
|
-
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1926
|
-
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1927
|
-
}, ({
|
|
1872
|
+
}, {
|
|
1928
1873
|
schema: import("@xyo-network/sdk-js").BrandedSchema<string>;
|
|
1929
|
-
} & {
|
|
1930
1874
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1931
1875
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1932
|
-
}
|
|
1876
|
+
}[]];
|
|
1933
1877
|
};
|
|
1934
1878
|
export declare const toSignedHydratedTransactionWithHashMeta: {
|
|
1935
1879
|
<T>(value: T): (T & [{
|
|
@@ -1959,6 +1903,8 @@ export declare const toSignedHydratedTransactionWithHashMeta: {
|
|
|
1959
1903
|
} & {
|
|
1960
1904
|
readonly __address: true;
|
|
1961
1905
|
};
|
|
1906
|
+
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1907
|
+
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1962
1908
|
$destination?: (Lowercase<string> & {
|
|
1963
1909
|
readonly __hex: true;
|
|
1964
1910
|
} & {
|
|
@@ -1966,15 +1912,11 @@ export declare const toSignedHydratedTransactionWithHashMeta: {
|
|
|
1966
1912
|
}) | undefined;
|
|
1967
1913
|
$sourceQuery?: import("@xylabs/sdk-js").BrandedHash | undefined;
|
|
1968
1914
|
script?: string[] | undefined;
|
|
1969
|
-
}
|
|
1970
|
-
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1971
|
-
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1972
|
-
}, ({
|
|
1915
|
+
}, {
|
|
1973
1916
|
schema: import("@xyo-network/sdk-js").BrandedSchema<string>;
|
|
1974
|
-
} & {
|
|
1975
1917
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1976
1918
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1977
|
-
}
|
|
1919
|
+
}[]]) | undefined;
|
|
1978
1920
|
<T>(value: T, assert: import("@xylabs/sdk-js").ZodFactoryConfig): T & [{
|
|
1979
1921
|
schema: "network.xyo.boundwitness" & {
|
|
1980
1922
|
readonly __schema: true;
|
|
@@ -2002,6 +1944,8 @@ export declare const toSignedHydratedTransactionWithHashMeta: {
|
|
|
2002
1944
|
} & {
|
|
2003
1945
|
readonly __address: true;
|
|
2004
1946
|
};
|
|
1947
|
+
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1948
|
+
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
2005
1949
|
$destination?: (Lowercase<string> & {
|
|
2006
1950
|
readonly __hex: true;
|
|
2007
1951
|
} & {
|
|
@@ -2009,17 +1953,13 @@ export declare const toSignedHydratedTransactionWithHashMeta: {
|
|
|
2009
1953
|
}) | undefined;
|
|
2010
1954
|
$sourceQuery?: import("@xylabs/sdk-js").BrandedHash | undefined;
|
|
2011
1955
|
script?: string[] | undefined;
|
|
2012
|
-
}
|
|
2013
|
-
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
2014
|
-
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
2015
|
-
}, ({
|
|
1956
|
+
}, {
|
|
2016
1957
|
schema: import("@xyo-network/sdk-js").BrandedSchema<string>;
|
|
2017
|
-
} & {
|
|
2018
1958
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
2019
1959
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
2020
|
-
}
|
|
1960
|
+
}[]];
|
|
2021
1961
|
};
|
|
2022
|
-
export declare const SignedHydratedTransactionWithStorageMetaZod: z.ZodTuple<[z.
|
|
1962
|
+
export declare const SignedHydratedTransactionWithStorageMetaZod: z.ZodTuple<[z.ZodObject<{
|
|
2023
1963
|
schema: z.ZodLiteral<"network.xyo.boundwitness" & {
|
|
2024
1964
|
readonly __schema: true;
|
|
2025
1965
|
}>;
|
|
@@ -2053,17 +1993,15 @@ export declare const SignedHydratedTransactionWithStorageMetaZod: z.ZodTuple<[z.
|
|
|
2053
1993
|
readonly __address: true;
|
|
2054
1994
|
}, string>>;
|
|
2055
1995
|
script: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2056
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
2057
1996
|
_hash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
2058
1997
|
_dataHash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
2059
1998
|
_sequence: z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/sdk-js").LocalSequence, string>>, z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/sdk-js").QualifiedSequence, string>>]>;
|
|
2060
|
-
}, z.core.$strip
|
|
1999
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
2061
2000
|
schema: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>;
|
|
2062
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
2063
2001
|
_hash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
2064
2002
|
_dataHash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
2065
2003
|
_sequence: z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/sdk-js").LocalSequence, string>>, z.ZodPipe<z.ZodString, z.ZodTransform<import("@xyo-network/sdk-js").QualifiedSequence, string>>]>;
|
|
2066
|
-
}, z.core.$strip
|
|
2004
|
+
}, z.core.$strip>>], null>;
|
|
2067
2005
|
export type SignedHydratedTransactionWithStorageMeta = z.infer<typeof SignedHydratedTransactionWithStorageMetaZod>;
|
|
2068
2006
|
export declare const isSignedHydratedTransactionWithStorageMeta: <T>(value: T) => value is T & [{
|
|
2069
2007
|
schema: "network.xyo.boundwitness" & {
|
|
@@ -2092,6 +2030,9 @@ export declare const isSignedHydratedTransactionWithStorageMeta: <T>(value: T) =
|
|
|
2092
2030
|
} & {
|
|
2093
2031
|
readonly __address: true;
|
|
2094
2032
|
};
|
|
2033
|
+
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
2034
|
+
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
2035
|
+
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
2095
2036
|
$destination?: (Lowercase<string> & {
|
|
2096
2037
|
readonly __hex: true;
|
|
2097
2038
|
} & {
|
|
@@ -2099,17 +2040,12 @@ export declare const isSignedHydratedTransactionWithStorageMeta: <T>(value: T) =
|
|
|
2099
2040
|
}) | undefined;
|
|
2100
2041
|
$sourceQuery?: import("@xylabs/sdk-js").BrandedHash | undefined;
|
|
2101
2042
|
script?: string[] | undefined;
|
|
2102
|
-
}
|
|
2103
|
-
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
2104
|
-
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
2105
|
-
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
2106
|
-
}, ({
|
|
2043
|
+
}, {
|
|
2107
2044
|
schema: import("@xyo-network/sdk-js").BrandedSchema<string>;
|
|
2108
|
-
} & {
|
|
2109
2045
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
2110
2046
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
2111
2047
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
2112
|
-
}
|
|
2048
|
+
}[]];
|
|
2113
2049
|
export declare const asSignedHydratedTransactionWithStorageMeta: {
|
|
2114
2050
|
<T>(value: T): (T & [{
|
|
2115
2051
|
schema: "network.xyo.boundwitness" & {
|
|
@@ -2138,6 +2074,9 @@ export declare const asSignedHydratedTransactionWithStorageMeta: {
|
|
|
2138
2074
|
} & {
|
|
2139
2075
|
readonly __address: true;
|
|
2140
2076
|
};
|
|
2077
|
+
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
2078
|
+
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
2079
|
+
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
2141
2080
|
$destination?: (Lowercase<string> & {
|
|
2142
2081
|
readonly __hex: true;
|
|
2143
2082
|
} & {
|
|
@@ -2145,17 +2084,12 @@ export declare const asSignedHydratedTransactionWithStorageMeta: {
|
|
|
2145
2084
|
}) | undefined;
|
|
2146
2085
|
$sourceQuery?: import("@xylabs/sdk-js").BrandedHash | undefined;
|
|
2147
2086
|
script?: string[] | undefined;
|
|
2148
|
-
}
|
|
2149
|
-
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
2150
|
-
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
2151
|
-
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
2152
|
-
}, ({
|
|
2087
|
+
}, {
|
|
2153
2088
|
schema: import("@xyo-network/sdk-js").BrandedSchema<string>;
|
|
2154
|
-
} & {
|
|
2155
2089
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
2156
2090
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
2157
2091
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
2158
|
-
}
|
|
2092
|
+
}[]]) | undefined;
|
|
2159
2093
|
<T>(value: T, assert: import("@xylabs/sdk-js").ZodFactoryConfig): T & [{
|
|
2160
2094
|
schema: "network.xyo.boundwitness" & {
|
|
2161
2095
|
readonly __schema: true;
|
|
@@ -2183,6 +2117,9 @@ export declare const asSignedHydratedTransactionWithStorageMeta: {
|
|
|
2183
2117
|
} & {
|
|
2184
2118
|
readonly __address: true;
|
|
2185
2119
|
};
|
|
2120
|
+
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
2121
|
+
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
2122
|
+
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
2186
2123
|
$destination?: (Lowercase<string> & {
|
|
2187
2124
|
readonly __hex: true;
|
|
2188
2125
|
} & {
|
|
@@ -2190,17 +2127,12 @@ export declare const asSignedHydratedTransactionWithStorageMeta: {
|
|
|
2190
2127
|
}) | undefined;
|
|
2191
2128
|
$sourceQuery?: import("@xylabs/sdk-js").BrandedHash | undefined;
|
|
2192
2129
|
script?: string[] | undefined;
|
|
2193
|
-
}
|
|
2194
|
-
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
2195
|
-
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
2196
|
-
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
2197
|
-
}, ({
|
|
2130
|
+
}, {
|
|
2198
2131
|
schema: import("@xyo-network/sdk-js").BrandedSchema<string>;
|
|
2199
|
-
} & {
|
|
2200
2132
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
2201
2133
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
2202
2134
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
2203
|
-
}
|
|
2135
|
+
}[]];
|
|
2204
2136
|
};
|
|
2205
2137
|
export declare const toSignedHydratedTransactionWithStorageMeta: {
|
|
2206
2138
|
<T>(value: T): (T & [{
|
|
@@ -2230,6 +2162,9 @@ export declare const toSignedHydratedTransactionWithStorageMeta: {
|
|
|
2230
2162
|
} & {
|
|
2231
2163
|
readonly __address: true;
|
|
2232
2164
|
};
|
|
2165
|
+
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
2166
|
+
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
2167
|
+
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
2233
2168
|
$destination?: (Lowercase<string> & {
|
|
2234
2169
|
readonly __hex: true;
|
|
2235
2170
|
} & {
|
|
@@ -2237,17 +2172,12 @@ export declare const toSignedHydratedTransactionWithStorageMeta: {
|
|
|
2237
2172
|
}) | undefined;
|
|
2238
2173
|
$sourceQuery?: import("@xylabs/sdk-js").BrandedHash | undefined;
|
|
2239
2174
|
script?: string[] | undefined;
|
|
2240
|
-
}
|
|
2241
|
-
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
2242
|
-
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
2243
|
-
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
2244
|
-
}, ({
|
|
2175
|
+
}, {
|
|
2245
2176
|
schema: import("@xyo-network/sdk-js").BrandedSchema<string>;
|
|
2246
|
-
} & {
|
|
2247
2177
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
2248
2178
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
2249
2179
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
2250
|
-
}
|
|
2180
|
+
}[]]) | undefined;
|
|
2251
2181
|
<T>(value: T, assert: import("@xylabs/sdk-js").ZodFactoryConfig): T & [{
|
|
2252
2182
|
schema: "network.xyo.boundwitness" & {
|
|
2253
2183
|
readonly __schema: true;
|
|
@@ -2275,6 +2205,9 @@ export declare const toSignedHydratedTransactionWithStorageMeta: {
|
|
|
2275
2205
|
} & {
|
|
2276
2206
|
readonly __address: true;
|
|
2277
2207
|
};
|
|
2208
|
+
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
2209
|
+
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
2210
|
+
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
2278
2211
|
$destination?: (Lowercase<string> & {
|
|
2279
2212
|
readonly __hex: true;
|
|
2280
2213
|
} & {
|
|
@@ -2282,16 +2215,11 @@ export declare const toSignedHydratedTransactionWithStorageMeta: {
|
|
|
2282
2215
|
}) | undefined;
|
|
2283
2216
|
$sourceQuery?: import("@xylabs/sdk-js").BrandedHash | undefined;
|
|
2284
2217
|
script?: string[] | undefined;
|
|
2285
|
-
}
|
|
2286
|
-
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
2287
|
-
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
2288
|
-
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
2289
|
-
}, ({
|
|
2218
|
+
}, {
|
|
2290
2219
|
schema: import("@xyo-network/sdk-js").BrandedSchema<string>;
|
|
2291
|
-
} & {
|
|
2292
2220
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
2293
2221
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
2294
2222
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
2295
|
-
}
|
|
2223
|
+
}[]];
|
|
2296
2224
|
};
|
|
2297
2225
|
//# sourceMappingURL=HydratedTransaction.d.ts.map
|