@xyo-network/xl1-protocol-model 2.0.6 → 2.0.8
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 +39 -111
- package/dist/neutral/block/BlockBoundWitness.d.ts.map +1 -1
- package/dist/neutral/block/HydratedBlock.d.ts +97 -273
- package/dist/neutral/block/HydratedBlock.d.ts.map +1 -1
- package/dist/neutral/block/signed/SignedBlockBoundWitness.d.ts +13 -37
- package/dist/neutral/block/signed/SignedBlockBoundWitness.d.ts.map +1 -1
- package/dist/neutral/block/signed/SignedBlockBoundWitnessWithHashMeta.d.ts +22 -62
- package/dist/neutral/block/signed/SignedBlockBoundWitnessWithHashMeta.d.ts.map +1 -1
- package/dist/neutral/block/signed/SignedBlockBoundWitnessWithStorageMeta.d.ts +26 -74
- package/dist/neutral/block/signed/SignedBlockBoundWitnessWithStorageMeta.d.ts.map +1 -1
- package/dist/neutral/block/unsigned/UnsignedBlockBoundWitness.d.ts +13 -37
- package/dist/neutral/block/unsigned/UnsignedBlockBoundWitness.d.ts.map +1 -1
- package/dist/neutral/model/AccountBalance.d.ts +6 -14
- package/dist/neutral/model/AccountBalance.d.ts.map +1 -1
- package/dist/neutral/model/Context/ChainContext.zod.d.ts +9 -21
- package/dist/neutral/model/Context/ChainContext.zod.d.ts.map +1 -1
- package/dist/neutral/model/Context/HeadContext.zod.d.ts +6 -14
- package/dist/neutral/model/Context/HeadContext.zod.d.ts.map +1 -1
- package/dist/neutral/model/HydratedTransaction.d.ts +117 -333
- package/dist/neutral/model/HydratedTransaction.d.ts.map +1 -1
- package/dist/neutral/model/SyncStepSummary.d.ts +13 -37
- package/dist/neutral/model/SyncStepSummary.d.ts.map +1 -1
- package/dist/neutral/rejection/BlockRejectionPayload.d.ts +10 -26
- package/dist/neutral/rejection/BlockRejectionPayload.d.ts.map +1 -1
- package/dist/neutral/rejection/TransactionRejectionPayload.d.ts +10 -26
- package/dist/neutral/rejection/TransactionRejectionPayload.d.ts.map +1 -1
- package/dist/neutral/transaction/TransactionBoundWitness.d.ts +117 -333
- package/dist/neutral/transaction/TransactionBoundWitness.d.ts.map +1 -1
- package/package.json +11 -17
|
@@ -63,19 +63,15 @@ export declare const TransactionBoundWitnessZod: z.ZodMiniObject<{
|
|
|
63
63
|
readonly __hex: true;
|
|
64
64
|
} & {
|
|
65
65
|
readonly __address: true;
|
|
66
|
-
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
67
|
-
readonly __hex: true;
|
|
68
|
-
} & {
|
|
69
|
-
readonly __address: true;
|
|
70
|
-
}, string>>]>>;
|
|
66
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
71
67
|
payload_hashes: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
72
68
|
payload_schemas: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>>;
|
|
73
69
|
previous_hashes: z.ZodMiniArray<z.ZodMiniNullable<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>>;
|
|
74
|
-
$destination: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
70
|
+
$destination: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
75
71
|
readonly __hex: true;
|
|
76
72
|
} & {
|
|
77
73
|
readonly __address: true;
|
|
78
|
-
}, string
|
|
74
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
79
75
|
$sourceQuery: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
80
76
|
$signatures: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>, z.ZodMiniNull]>>;
|
|
81
77
|
nbf: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../BlockNumber/XL1BlockNumber.ts").XL1BlockNumber, number>>;
|
|
@@ -105,11 +101,7 @@ export declare const isTransactionBoundWitness: <T>(value: T) => value is T & {
|
|
|
105
101
|
readonly __hex: true;
|
|
106
102
|
} & {
|
|
107
103
|
readonly __address: true;
|
|
108
|
-
}) | (
|
|
109
|
-
readonly __hex: true;
|
|
110
|
-
} & {
|
|
111
|
-
readonly __address: true;
|
|
112
|
-
}))[];
|
|
104
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
113
105
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
114
106
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
115
107
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
@@ -128,7 +120,7 @@ export declare const isTransactionBoundWitness: <T>(value: T) => value is T & {
|
|
|
128
120
|
} & {
|
|
129
121
|
readonly __address: true;
|
|
130
122
|
};
|
|
131
|
-
$destination?: (Lowercase<string> & {
|
|
123
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
132
124
|
readonly __hex: true;
|
|
133
125
|
} & {
|
|
134
126
|
readonly __address: true;
|
|
@@ -146,11 +138,7 @@ export declare const asTransactionBoundWitness: {
|
|
|
146
138
|
readonly __hex: true;
|
|
147
139
|
} & {
|
|
148
140
|
readonly __address: true;
|
|
149
|
-
}) | (
|
|
150
|
-
readonly __hex: true;
|
|
151
|
-
} & {
|
|
152
|
-
readonly __address: true;
|
|
153
|
-
}))[];
|
|
141
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
154
142
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
155
143
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
156
144
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
@@ -169,7 +157,7 @@ export declare const asTransactionBoundWitness: {
|
|
|
169
157
|
} & {
|
|
170
158
|
readonly __address: true;
|
|
171
159
|
};
|
|
172
|
-
$destination?: (Lowercase<string> & {
|
|
160
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
173
161
|
readonly __hex: true;
|
|
174
162
|
} & {
|
|
175
163
|
readonly __address: true;
|
|
@@ -185,11 +173,7 @@ export declare const asTransactionBoundWitness: {
|
|
|
185
173
|
readonly __hex: true;
|
|
186
174
|
} & {
|
|
187
175
|
readonly __address: true;
|
|
188
|
-
}) | (
|
|
189
|
-
readonly __hex: true;
|
|
190
|
-
} & {
|
|
191
|
-
readonly __address: true;
|
|
192
|
-
}))[];
|
|
176
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
193
177
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
194
178
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
195
179
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
@@ -208,7 +192,7 @@ export declare const asTransactionBoundWitness: {
|
|
|
208
192
|
} & {
|
|
209
193
|
readonly __address: true;
|
|
210
194
|
};
|
|
211
|
-
$destination?: (Lowercase<string> & {
|
|
195
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
212
196
|
readonly __hex: true;
|
|
213
197
|
} & {
|
|
214
198
|
readonly __address: true;
|
|
@@ -227,11 +211,7 @@ export declare const toTransactionBoundWitness: {
|
|
|
227
211
|
readonly __hex: true;
|
|
228
212
|
} & {
|
|
229
213
|
readonly __address: true;
|
|
230
|
-
}) | (
|
|
231
|
-
readonly __hex: true;
|
|
232
|
-
} & {
|
|
233
|
-
readonly __address: true;
|
|
234
|
-
}))[];
|
|
214
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
235
215
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
236
216
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
237
217
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
@@ -250,7 +230,7 @@ export declare const toTransactionBoundWitness: {
|
|
|
250
230
|
} & {
|
|
251
231
|
readonly __address: true;
|
|
252
232
|
};
|
|
253
|
-
$destination?: (Lowercase<string> & {
|
|
233
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
254
234
|
readonly __hex: true;
|
|
255
235
|
} & {
|
|
256
236
|
readonly __address: true;
|
|
@@ -266,11 +246,7 @@ export declare const toTransactionBoundWitness: {
|
|
|
266
246
|
readonly __hex: true;
|
|
267
247
|
} & {
|
|
268
248
|
readonly __address: true;
|
|
269
|
-
}) | (
|
|
270
|
-
readonly __hex: true;
|
|
271
|
-
} & {
|
|
272
|
-
readonly __address: true;
|
|
273
|
-
}))[];
|
|
249
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
274
250
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
275
251
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
276
252
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
@@ -289,7 +265,7 @@ export declare const toTransactionBoundWitness: {
|
|
|
289
265
|
} & {
|
|
290
266
|
readonly __address: true;
|
|
291
267
|
};
|
|
292
|
-
$destination?: (Lowercase<string> & {
|
|
268
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
293
269
|
readonly __hex: true;
|
|
294
270
|
} & {
|
|
295
271
|
readonly __address: true;
|
|
@@ -307,19 +283,15 @@ export declare const TransactionBoundWitnessWithHashMetaZod: z.ZodMiniObject<{
|
|
|
307
283
|
readonly __hex: true;
|
|
308
284
|
} & {
|
|
309
285
|
readonly __address: true;
|
|
310
|
-
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
311
|
-
readonly __hex: true;
|
|
312
|
-
} & {
|
|
313
|
-
readonly __address: true;
|
|
314
|
-
}, string>>]>>;
|
|
286
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
315
287
|
payload_hashes: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
316
288
|
payload_schemas: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>>;
|
|
317
289
|
previous_hashes: z.ZodMiniArray<z.ZodMiniNullable<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>>;
|
|
318
|
-
$destination: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
290
|
+
$destination: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
319
291
|
readonly __hex: true;
|
|
320
292
|
} & {
|
|
321
293
|
readonly __address: true;
|
|
322
|
-
}, string
|
|
294
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
323
295
|
$sourceQuery: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
324
296
|
$signatures: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>, z.ZodMiniNull]>>;
|
|
325
297
|
nbf: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../BlockNumber/XL1BlockNumber.ts").XL1BlockNumber, number>>;
|
|
@@ -351,11 +323,7 @@ export declare const isTransactionBoundWitnessWithHashMeta: <T>(value: T) => val
|
|
|
351
323
|
readonly __hex: true;
|
|
352
324
|
} & {
|
|
353
325
|
readonly __address: true;
|
|
354
|
-
}) | (
|
|
355
|
-
readonly __hex: true;
|
|
356
|
-
} & {
|
|
357
|
-
readonly __address: true;
|
|
358
|
-
}))[];
|
|
326
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
359
327
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
360
328
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
361
329
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
@@ -376,7 +344,7 @@ export declare const isTransactionBoundWitnessWithHashMeta: <T>(value: T) => val
|
|
|
376
344
|
};
|
|
377
345
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
378
346
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
379
|
-
$destination?: (Lowercase<string> & {
|
|
347
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
380
348
|
readonly __hex: true;
|
|
381
349
|
} & {
|
|
382
350
|
readonly __address: true;
|
|
@@ -394,11 +362,7 @@ export declare const asTransactionBoundWitnessWithHashMeta: {
|
|
|
394
362
|
readonly __hex: true;
|
|
395
363
|
} & {
|
|
396
364
|
readonly __address: true;
|
|
397
|
-
}) | (
|
|
398
|
-
readonly __hex: true;
|
|
399
|
-
} & {
|
|
400
|
-
readonly __address: true;
|
|
401
|
-
}))[];
|
|
365
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
402
366
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
403
367
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
404
368
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
@@ -419,7 +383,7 @@ export declare const asTransactionBoundWitnessWithHashMeta: {
|
|
|
419
383
|
};
|
|
420
384
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
421
385
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
422
|
-
$destination?: (Lowercase<string> & {
|
|
386
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
423
387
|
readonly __hex: true;
|
|
424
388
|
} & {
|
|
425
389
|
readonly __address: true;
|
|
@@ -435,11 +399,7 @@ export declare const asTransactionBoundWitnessWithHashMeta: {
|
|
|
435
399
|
readonly __hex: true;
|
|
436
400
|
} & {
|
|
437
401
|
readonly __address: true;
|
|
438
|
-
}) | (
|
|
439
|
-
readonly __hex: true;
|
|
440
|
-
} & {
|
|
441
|
-
readonly __address: true;
|
|
442
|
-
}))[];
|
|
402
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
443
403
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
444
404
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
445
405
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
@@ -460,7 +420,7 @@ export declare const asTransactionBoundWitnessWithHashMeta: {
|
|
|
460
420
|
};
|
|
461
421
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
462
422
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
463
|
-
$destination?: (Lowercase<string> & {
|
|
423
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
464
424
|
readonly __hex: true;
|
|
465
425
|
} & {
|
|
466
426
|
readonly __address: true;
|
|
@@ -479,11 +439,7 @@ export declare const toTransactionBoundWitnessWithHashMeta: {
|
|
|
479
439
|
readonly __hex: true;
|
|
480
440
|
} & {
|
|
481
441
|
readonly __address: true;
|
|
482
|
-
}) | (
|
|
483
|
-
readonly __hex: true;
|
|
484
|
-
} & {
|
|
485
|
-
readonly __address: true;
|
|
486
|
-
}))[];
|
|
442
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
487
443
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
488
444
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
489
445
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
@@ -504,7 +460,7 @@ export declare const toTransactionBoundWitnessWithHashMeta: {
|
|
|
504
460
|
};
|
|
505
461
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
506
462
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
507
|
-
$destination?: (Lowercase<string> & {
|
|
463
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
508
464
|
readonly __hex: true;
|
|
509
465
|
} & {
|
|
510
466
|
readonly __address: true;
|
|
@@ -520,11 +476,7 @@ export declare const toTransactionBoundWitnessWithHashMeta: {
|
|
|
520
476
|
readonly __hex: true;
|
|
521
477
|
} & {
|
|
522
478
|
readonly __address: true;
|
|
523
|
-
}) | (
|
|
524
|
-
readonly __hex: true;
|
|
525
|
-
} & {
|
|
526
|
-
readonly __address: true;
|
|
527
|
-
}))[];
|
|
479
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
528
480
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
529
481
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
530
482
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
@@ -545,7 +497,7 @@ export declare const toTransactionBoundWitnessWithHashMeta: {
|
|
|
545
497
|
};
|
|
546
498
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
547
499
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
548
|
-
$destination?: (Lowercase<string> & {
|
|
500
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
549
501
|
readonly __hex: true;
|
|
550
502
|
} & {
|
|
551
503
|
readonly __address: true;
|
|
@@ -563,19 +515,15 @@ export declare const TransactionBoundWitnessWithStorageMetaZod: z.ZodMiniObject<
|
|
|
563
515
|
readonly __hex: true;
|
|
564
516
|
} & {
|
|
565
517
|
readonly __address: true;
|
|
566
|
-
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
567
|
-
readonly __hex: true;
|
|
568
|
-
} & {
|
|
569
|
-
readonly __address: true;
|
|
570
|
-
}, string>>]>>;
|
|
518
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
571
519
|
payload_hashes: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
572
520
|
payload_schemas: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>>;
|
|
573
521
|
previous_hashes: z.ZodMiniArray<z.ZodMiniNullable<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>>;
|
|
574
|
-
$destination: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
522
|
+
$destination: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
575
523
|
readonly __hex: true;
|
|
576
524
|
} & {
|
|
577
525
|
readonly __address: true;
|
|
578
|
-
}, string
|
|
526
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
579
527
|
$sourceQuery: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
580
528
|
$signatures: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>, z.ZodMiniNull]>>;
|
|
581
529
|
nbf: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../BlockNumber/XL1BlockNumber.ts").XL1BlockNumber, number>>;
|
|
@@ -608,11 +556,7 @@ export declare const isTransactionBoundWitnessWithStorageMeta: <T>(value: T) =>
|
|
|
608
556
|
readonly __hex: true;
|
|
609
557
|
} & {
|
|
610
558
|
readonly __address: true;
|
|
611
|
-
}) | (
|
|
612
|
-
readonly __hex: true;
|
|
613
|
-
} & {
|
|
614
|
-
readonly __address: true;
|
|
615
|
-
}))[];
|
|
559
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
616
560
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
617
561
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
618
562
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
@@ -634,7 +578,7 @@ export declare const isTransactionBoundWitnessWithStorageMeta: <T>(value: T) =>
|
|
|
634
578
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
635
579
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
636
580
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
637
|
-
$destination?: (Lowercase<string> & {
|
|
581
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
638
582
|
readonly __hex: true;
|
|
639
583
|
} & {
|
|
640
584
|
readonly __address: true;
|
|
@@ -652,11 +596,7 @@ export declare const asTransactionBoundWitnessWithStorageMeta: {
|
|
|
652
596
|
readonly __hex: true;
|
|
653
597
|
} & {
|
|
654
598
|
readonly __address: true;
|
|
655
|
-
}) | (
|
|
656
|
-
readonly __hex: true;
|
|
657
|
-
} & {
|
|
658
|
-
readonly __address: true;
|
|
659
|
-
}))[];
|
|
599
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
660
600
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
661
601
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
662
602
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
@@ -678,7 +618,7 @@ export declare const asTransactionBoundWitnessWithStorageMeta: {
|
|
|
678
618
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
679
619
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
680
620
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
681
|
-
$destination?: (Lowercase<string> & {
|
|
621
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
682
622
|
readonly __hex: true;
|
|
683
623
|
} & {
|
|
684
624
|
readonly __address: true;
|
|
@@ -694,11 +634,7 @@ export declare const asTransactionBoundWitnessWithStorageMeta: {
|
|
|
694
634
|
readonly __hex: true;
|
|
695
635
|
} & {
|
|
696
636
|
readonly __address: true;
|
|
697
|
-
}) | (
|
|
698
|
-
readonly __hex: true;
|
|
699
|
-
} & {
|
|
700
|
-
readonly __address: true;
|
|
701
|
-
}))[];
|
|
637
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
702
638
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
703
639
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
704
640
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
@@ -720,7 +656,7 @@ export declare const asTransactionBoundWitnessWithStorageMeta: {
|
|
|
720
656
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
721
657
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
722
658
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
723
|
-
$destination?: (Lowercase<string> & {
|
|
659
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
724
660
|
readonly __hex: true;
|
|
725
661
|
} & {
|
|
726
662
|
readonly __address: true;
|
|
@@ -739,11 +675,7 @@ export declare const toTransactionBoundWitnessWithStorageMeta: {
|
|
|
739
675
|
readonly __hex: true;
|
|
740
676
|
} & {
|
|
741
677
|
readonly __address: true;
|
|
742
|
-
}) | (
|
|
743
|
-
readonly __hex: true;
|
|
744
|
-
} & {
|
|
745
|
-
readonly __address: true;
|
|
746
|
-
}))[];
|
|
678
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
747
679
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
748
680
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
749
681
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
@@ -765,7 +697,7 @@ export declare const toTransactionBoundWitnessWithStorageMeta: {
|
|
|
765
697
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
766
698
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
767
699
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
768
|
-
$destination?: (Lowercase<string> & {
|
|
700
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
769
701
|
readonly __hex: true;
|
|
770
702
|
} & {
|
|
771
703
|
readonly __address: true;
|
|
@@ -781,11 +713,7 @@ export declare const toTransactionBoundWitnessWithStorageMeta: {
|
|
|
781
713
|
readonly __hex: true;
|
|
782
714
|
} & {
|
|
783
715
|
readonly __address: true;
|
|
784
|
-
}) | (
|
|
785
|
-
readonly __hex: true;
|
|
786
|
-
} & {
|
|
787
|
-
readonly __address: true;
|
|
788
|
-
}))[];
|
|
716
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
789
717
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
790
718
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
791
719
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
@@ -807,7 +735,7 @@ export declare const toTransactionBoundWitnessWithStorageMeta: {
|
|
|
807
735
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
808
736
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
809
737
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
810
|
-
$destination?: (Lowercase<string> & {
|
|
738
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
811
739
|
readonly __hex: true;
|
|
812
740
|
} & {
|
|
813
741
|
readonly __address: true;
|
|
@@ -825,19 +753,15 @@ export declare const UnsignedTransactionBoundWitnessZod: z.ZodMiniObject<{
|
|
|
825
753
|
readonly __hex: true;
|
|
826
754
|
} & {
|
|
827
755
|
readonly __address: true;
|
|
828
|
-
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
829
|
-
readonly __hex: true;
|
|
830
|
-
} & {
|
|
831
|
-
readonly __address: true;
|
|
832
|
-
}, string>>]>>;
|
|
756
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
833
757
|
payload_hashes: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
834
758
|
payload_schemas: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>>;
|
|
835
759
|
previous_hashes: z.ZodMiniArray<z.ZodMiniNullable<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>>;
|
|
836
|
-
$destination: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
760
|
+
$destination: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
837
761
|
readonly __hex: true;
|
|
838
762
|
} & {
|
|
839
763
|
readonly __address: true;
|
|
840
|
-
}, string
|
|
764
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
841
765
|
$sourceQuery: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
842
766
|
$signatures: z.ZodMiniArray<z.ZodMiniNull>;
|
|
843
767
|
nbf: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../BlockNumber/XL1BlockNumber.ts").XL1BlockNumber, number>>;
|
|
@@ -863,11 +787,7 @@ export declare const isUnsignedTransactionBoundWitness: <T>(value: T) => value i
|
|
|
863
787
|
schema: "network.xyo.boundwitness" & {
|
|
864
788
|
readonly __schema: true;
|
|
865
789
|
};
|
|
866
|
-
addresses: ((Lowercase<string> & {
|
|
867
|
-
readonly __hex: true;
|
|
868
|
-
} & {
|
|
869
|
-
readonly __address: true;
|
|
870
|
-
}) | (Lowercase<string> & {
|
|
790
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
871
791
|
readonly __hex: true;
|
|
872
792
|
} & {
|
|
873
793
|
readonly __address: true;
|
|
@@ -890,7 +810,7 @@ export declare const isUnsignedTransactionBoundWitness: <T>(value: T) => value i
|
|
|
890
810
|
} & {
|
|
891
811
|
readonly __address: true;
|
|
892
812
|
};
|
|
893
|
-
$destination?: (Lowercase<string> & {
|
|
813
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
894
814
|
readonly __hex: true;
|
|
895
815
|
} & {
|
|
896
816
|
readonly __address: true;
|
|
@@ -904,11 +824,7 @@ export declare const asUnsignedTransactionBoundWitness: {
|
|
|
904
824
|
schema: "network.xyo.boundwitness" & {
|
|
905
825
|
readonly __schema: true;
|
|
906
826
|
};
|
|
907
|
-
addresses: ((Lowercase<string> & {
|
|
908
|
-
readonly __hex: true;
|
|
909
|
-
} & {
|
|
910
|
-
readonly __address: true;
|
|
911
|
-
}) | (Lowercase<string> & {
|
|
827
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
912
828
|
readonly __hex: true;
|
|
913
829
|
} & {
|
|
914
830
|
readonly __address: true;
|
|
@@ -931,7 +847,7 @@ export declare const asUnsignedTransactionBoundWitness: {
|
|
|
931
847
|
} & {
|
|
932
848
|
readonly __address: true;
|
|
933
849
|
};
|
|
934
|
-
$destination?: (Lowercase<string> & {
|
|
850
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
935
851
|
readonly __hex: true;
|
|
936
852
|
} & {
|
|
937
853
|
readonly __address: true;
|
|
@@ -943,11 +859,7 @@ export declare const asUnsignedTransactionBoundWitness: {
|
|
|
943
859
|
schema: "network.xyo.boundwitness" & {
|
|
944
860
|
readonly __schema: true;
|
|
945
861
|
};
|
|
946
|
-
addresses: ((Lowercase<string> & {
|
|
947
|
-
readonly __hex: true;
|
|
948
|
-
} & {
|
|
949
|
-
readonly __address: true;
|
|
950
|
-
}) | (Lowercase<string> & {
|
|
862
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
951
863
|
readonly __hex: true;
|
|
952
864
|
} & {
|
|
953
865
|
readonly __address: true;
|
|
@@ -970,7 +882,7 @@ export declare const asUnsignedTransactionBoundWitness: {
|
|
|
970
882
|
} & {
|
|
971
883
|
readonly __address: true;
|
|
972
884
|
};
|
|
973
|
-
$destination?: (Lowercase<string> & {
|
|
885
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
974
886
|
readonly __hex: true;
|
|
975
887
|
} & {
|
|
976
888
|
readonly __address: true;
|
|
@@ -985,11 +897,7 @@ export declare const toUnsignedTransactionBoundWitness: {
|
|
|
985
897
|
schema: "network.xyo.boundwitness" & {
|
|
986
898
|
readonly __schema: true;
|
|
987
899
|
};
|
|
988
|
-
addresses: ((Lowercase<string> & {
|
|
989
|
-
readonly __hex: true;
|
|
990
|
-
} & {
|
|
991
|
-
readonly __address: true;
|
|
992
|
-
}) | (Lowercase<string> & {
|
|
900
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
993
901
|
readonly __hex: true;
|
|
994
902
|
} & {
|
|
995
903
|
readonly __address: true;
|
|
@@ -1012,7 +920,7 @@ export declare const toUnsignedTransactionBoundWitness: {
|
|
|
1012
920
|
} & {
|
|
1013
921
|
readonly __address: true;
|
|
1014
922
|
};
|
|
1015
|
-
$destination?: (Lowercase<string> & {
|
|
923
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1016
924
|
readonly __hex: true;
|
|
1017
925
|
} & {
|
|
1018
926
|
readonly __address: true;
|
|
@@ -1024,11 +932,7 @@ export declare const toUnsignedTransactionBoundWitness: {
|
|
|
1024
932
|
schema: "network.xyo.boundwitness" & {
|
|
1025
933
|
readonly __schema: true;
|
|
1026
934
|
};
|
|
1027
|
-
addresses: ((Lowercase<string> & {
|
|
1028
|
-
readonly __hex: true;
|
|
1029
|
-
} & {
|
|
1030
|
-
readonly __address: true;
|
|
1031
|
-
}) | (Lowercase<string> & {
|
|
935
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1032
936
|
readonly __hex: true;
|
|
1033
937
|
} & {
|
|
1034
938
|
readonly __address: true;
|
|
@@ -1051,7 +955,7 @@ export declare const toUnsignedTransactionBoundWitness: {
|
|
|
1051
955
|
} & {
|
|
1052
956
|
readonly __address: true;
|
|
1053
957
|
};
|
|
1054
|
-
$destination?: (Lowercase<string> & {
|
|
958
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1055
959
|
readonly __hex: true;
|
|
1056
960
|
} & {
|
|
1057
961
|
readonly __address: true;
|
|
@@ -1069,19 +973,15 @@ export declare const UnsignedTransactionBoundWitnessWithHashMetaZod: z.ZodMiniOb
|
|
|
1069
973
|
readonly __hex: true;
|
|
1070
974
|
} & {
|
|
1071
975
|
readonly __address: true;
|
|
1072
|
-
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
1073
|
-
readonly __hex: true;
|
|
1074
|
-
} & {
|
|
1075
|
-
readonly __address: true;
|
|
1076
|
-
}, string>>]>>;
|
|
976
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
1077
977
|
payload_hashes: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
1078
978
|
payload_schemas: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>>;
|
|
1079
979
|
previous_hashes: z.ZodMiniArray<z.ZodMiniNullable<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>>;
|
|
1080
|
-
$destination: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
980
|
+
$destination: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
1081
981
|
readonly __hex: true;
|
|
1082
982
|
} & {
|
|
1083
983
|
readonly __address: true;
|
|
1084
|
-
}, string
|
|
984
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
1085
985
|
$sourceQuery: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
1086
986
|
$signatures: z.ZodMiniArray<z.ZodMiniNull>;
|
|
1087
987
|
nbf: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../BlockNumber/XL1BlockNumber.ts").XL1BlockNumber, number>>;
|
|
@@ -1109,11 +1009,7 @@ export declare const isUnsignedTransactionBoundWitnessWithHashMeta: <T>(value: T
|
|
|
1109
1009
|
schema: "network.xyo.boundwitness" & {
|
|
1110
1010
|
readonly __schema: true;
|
|
1111
1011
|
};
|
|
1112
|
-
addresses: ((Lowercase<string> & {
|
|
1113
|
-
readonly __hex: true;
|
|
1114
|
-
} & {
|
|
1115
|
-
readonly __address: true;
|
|
1116
|
-
}) | (Lowercase<string> & {
|
|
1012
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1117
1013
|
readonly __hex: true;
|
|
1118
1014
|
} & {
|
|
1119
1015
|
readonly __address: true;
|
|
@@ -1138,7 +1034,7 @@ export declare const isUnsignedTransactionBoundWitnessWithHashMeta: <T>(value: T
|
|
|
1138
1034
|
};
|
|
1139
1035
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1140
1036
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1141
|
-
$destination?: (Lowercase<string> & {
|
|
1037
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1142
1038
|
readonly __hex: true;
|
|
1143
1039
|
} & {
|
|
1144
1040
|
readonly __address: true;
|
|
@@ -1152,11 +1048,7 @@ export declare const asUnsignedTransactionBoundWitnessWithHashMeta: {
|
|
|
1152
1048
|
schema: "network.xyo.boundwitness" & {
|
|
1153
1049
|
readonly __schema: true;
|
|
1154
1050
|
};
|
|
1155
|
-
addresses: ((Lowercase<string> & {
|
|
1156
|
-
readonly __hex: true;
|
|
1157
|
-
} & {
|
|
1158
|
-
readonly __address: true;
|
|
1159
|
-
}) | (Lowercase<string> & {
|
|
1051
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1160
1052
|
readonly __hex: true;
|
|
1161
1053
|
} & {
|
|
1162
1054
|
readonly __address: true;
|
|
@@ -1181,7 +1073,7 @@ export declare const asUnsignedTransactionBoundWitnessWithHashMeta: {
|
|
|
1181
1073
|
};
|
|
1182
1074
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1183
1075
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1184
|
-
$destination?: (Lowercase<string> & {
|
|
1076
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1185
1077
|
readonly __hex: true;
|
|
1186
1078
|
} & {
|
|
1187
1079
|
readonly __address: true;
|
|
@@ -1193,11 +1085,7 @@ export declare const asUnsignedTransactionBoundWitnessWithHashMeta: {
|
|
|
1193
1085
|
schema: "network.xyo.boundwitness" & {
|
|
1194
1086
|
readonly __schema: true;
|
|
1195
1087
|
};
|
|
1196
|
-
addresses: ((Lowercase<string> & {
|
|
1197
|
-
readonly __hex: true;
|
|
1198
|
-
} & {
|
|
1199
|
-
readonly __address: true;
|
|
1200
|
-
}) | (Lowercase<string> & {
|
|
1088
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1201
1089
|
readonly __hex: true;
|
|
1202
1090
|
} & {
|
|
1203
1091
|
readonly __address: true;
|
|
@@ -1222,7 +1110,7 @@ export declare const asUnsignedTransactionBoundWitnessWithHashMeta: {
|
|
|
1222
1110
|
};
|
|
1223
1111
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1224
1112
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1225
|
-
$destination?: (Lowercase<string> & {
|
|
1113
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1226
1114
|
readonly __hex: true;
|
|
1227
1115
|
} & {
|
|
1228
1116
|
readonly __address: true;
|
|
@@ -1237,11 +1125,7 @@ export declare const toUnsignedTransactionBoundWitnessWithHashMeta: {
|
|
|
1237
1125
|
schema: "network.xyo.boundwitness" & {
|
|
1238
1126
|
readonly __schema: true;
|
|
1239
1127
|
};
|
|
1240
|
-
addresses: ((Lowercase<string> & {
|
|
1241
|
-
readonly __hex: true;
|
|
1242
|
-
} & {
|
|
1243
|
-
readonly __address: true;
|
|
1244
|
-
}) | (Lowercase<string> & {
|
|
1128
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1245
1129
|
readonly __hex: true;
|
|
1246
1130
|
} & {
|
|
1247
1131
|
readonly __address: true;
|
|
@@ -1266,7 +1150,7 @@ export declare const toUnsignedTransactionBoundWitnessWithHashMeta: {
|
|
|
1266
1150
|
};
|
|
1267
1151
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1268
1152
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1269
|
-
$destination?: (Lowercase<string> & {
|
|
1153
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1270
1154
|
readonly __hex: true;
|
|
1271
1155
|
} & {
|
|
1272
1156
|
readonly __address: true;
|
|
@@ -1278,11 +1162,7 @@ export declare const toUnsignedTransactionBoundWitnessWithHashMeta: {
|
|
|
1278
1162
|
schema: "network.xyo.boundwitness" & {
|
|
1279
1163
|
readonly __schema: true;
|
|
1280
1164
|
};
|
|
1281
|
-
addresses: ((Lowercase<string> & {
|
|
1282
|
-
readonly __hex: true;
|
|
1283
|
-
} & {
|
|
1284
|
-
readonly __address: true;
|
|
1285
|
-
}) | (Lowercase<string> & {
|
|
1165
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1286
1166
|
readonly __hex: true;
|
|
1287
1167
|
} & {
|
|
1288
1168
|
readonly __address: true;
|
|
@@ -1307,7 +1187,7 @@ export declare const toUnsignedTransactionBoundWitnessWithHashMeta: {
|
|
|
1307
1187
|
};
|
|
1308
1188
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1309
1189
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1310
|
-
$destination?: (Lowercase<string> & {
|
|
1190
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1311
1191
|
readonly __hex: true;
|
|
1312
1192
|
} & {
|
|
1313
1193
|
readonly __address: true;
|
|
@@ -1325,19 +1205,15 @@ export declare const UnsignedTransactionBoundWitnessWithStorageMetaZod: z.ZodMin
|
|
|
1325
1205
|
readonly __hex: true;
|
|
1326
1206
|
} & {
|
|
1327
1207
|
readonly __address: true;
|
|
1328
|
-
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
1329
|
-
readonly __hex: true;
|
|
1330
|
-
} & {
|
|
1331
|
-
readonly __address: true;
|
|
1332
|
-
}, string>>]>>;
|
|
1208
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
1333
1209
|
payload_hashes: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
1334
1210
|
payload_schemas: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>>;
|
|
1335
1211
|
previous_hashes: z.ZodMiniArray<z.ZodMiniNullable<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>>;
|
|
1336
|
-
$destination: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
1212
|
+
$destination: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
1337
1213
|
readonly __hex: true;
|
|
1338
1214
|
} & {
|
|
1339
1215
|
readonly __address: true;
|
|
1340
|
-
}, string
|
|
1216
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
1341
1217
|
$sourceQuery: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
1342
1218
|
$signatures: z.ZodMiniArray<z.ZodMiniNull>;
|
|
1343
1219
|
nbf: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../BlockNumber/XL1BlockNumber.ts").XL1BlockNumber, number>>;
|
|
@@ -1366,11 +1242,7 @@ export declare const isUnsignedTransactionBoundWitnessWithStorageMeta: <T>(value
|
|
|
1366
1242
|
schema: "network.xyo.boundwitness" & {
|
|
1367
1243
|
readonly __schema: true;
|
|
1368
1244
|
};
|
|
1369
|
-
addresses: ((Lowercase<string> & {
|
|
1370
|
-
readonly __hex: true;
|
|
1371
|
-
} & {
|
|
1372
|
-
readonly __address: true;
|
|
1373
|
-
}) | (Lowercase<string> & {
|
|
1245
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1374
1246
|
readonly __hex: true;
|
|
1375
1247
|
} & {
|
|
1376
1248
|
readonly __address: true;
|
|
@@ -1396,7 +1268,7 @@ export declare const isUnsignedTransactionBoundWitnessWithStorageMeta: <T>(value
|
|
|
1396
1268
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1397
1269
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1398
1270
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
1399
|
-
$destination?: (Lowercase<string> & {
|
|
1271
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1400
1272
|
readonly __hex: true;
|
|
1401
1273
|
} & {
|
|
1402
1274
|
readonly __address: true;
|
|
@@ -1410,11 +1282,7 @@ export declare const asUnsignedTransactionBoundWitnessWithStorageMeta: {
|
|
|
1410
1282
|
schema: "network.xyo.boundwitness" & {
|
|
1411
1283
|
readonly __schema: true;
|
|
1412
1284
|
};
|
|
1413
|
-
addresses: ((Lowercase<string> & {
|
|
1414
|
-
readonly __hex: true;
|
|
1415
|
-
} & {
|
|
1416
|
-
readonly __address: true;
|
|
1417
|
-
}) | (Lowercase<string> & {
|
|
1285
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1418
1286
|
readonly __hex: true;
|
|
1419
1287
|
} & {
|
|
1420
1288
|
readonly __address: true;
|
|
@@ -1440,7 +1308,7 @@ export declare const asUnsignedTransactionBoundWitnessWithStorageMeta: {
|
|
|
1440
1308
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1441
1309
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1442
1310
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
1443
|
-
$destination?: (Lowercase<string> & {
|
|
1311
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1444
1312
|
readonly __hex: true;
|
|
1445
1313
|
} & {
|
|
1446
1314
|
readonly __address: true;
|
|
@@ -1452,11 +1320,7 @@ export declare const asUnsignedTransactionBoundWitnessWithStorageMeta: {
|
|
|
1452
1320
|
schema: "network.xyo.boundwitness" & {
|
|
1453
1321
|
readonly __schema: true;
|
|
1454
1322
|
};
|
|
1455
|
-
addresses: ((Lowercase<string> & {
|
|
1456
|
-
readonly __hex: true;
|
|
1457
|
-
} & {
|
|
1458
|
-
readonly __address: true;
|
|
1459
|
-
}) | (Lowercase<string> & {
|
|
1323
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1460
1324
|
readonly __hex: true;
|
|
1461
1325
|
} & {
|
|
1462
1326
|
readonly __address: true;
|
|
@@ -1482,7 +1346,7 @@ export declare const asUnsignedTransactionBoundWitnessWithStorageMeta: {
|
|
|
1482
1346
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1483
1347
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1484
1348
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
1485
|
-
$destination?: (Lowercase<string> & {
|
|
1349
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1486
1350
|
readonly __hex: true;
|
|
1487
1351
|
} & {
|
|
1488
1352
|
readonly __address: true;
|
|
@@ -1497,11 +1361,7 @@ export declare const toUnsignedTransactionBoundWitnessWithStorageMeta: {
|
|
|
1497
1361
|
schema: "network.xyo.boundwitness" & {
|
|
1498
1362
|
readonly __schema: true;
|
|
1499
1363
|
};
|
|
1500
|
-
addresses: ((Lowercase<string> & {
|
|
1501
|
-
readonly __hex: true;
|
|
1502
|
-
} & {
|
|
1503
|
-
readonly __address: true;
|
|
1504
|
-
}) | (Lowercase<string> & {
|
|
1364
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1505
1365
|
readonly __hex: true;
|
|
1506
1366
|
} & {
|
|
1507
1367
|
readonly __address: true;
|
|
@@ -1527,7 +1387,7 @@ export declare const toUnsignedTransactionBoundWitnessWithStorageMeta: {
|
|
|
1527
1387
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1528
1388
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1529
1389
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
1530
|
-
$destination?: (Lowercase<string> & {
|
|
1390
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1531
1391
|
readonly __hex: true;
|
|
1532
1392
|
} & {
|
|
1533
1393
|
readonly __address: true;
|
|
@@ -1539,11 +1399,7 @@ export declare const toUnsignedTransactionBoundWitnessWithStorageMeta: {
|
|
|
1539
1399
|
schema: "network.xyo.boundwitness" & {
|
|
1540
1400
|
readonly __schema: true;
|
|
1541
1401
|
};
|
|
1542
|
-
addresses: ((Lowercase<string> & {
|
|
1543
|
-
readonly __hex: true;
|
|
1544
|
-
} & {
|
|
1545
|
-
readonly __address: true;
|
|
1546
|
-
}) | (Lowercase<string> & {
|
|
1402
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1547
1403
|
readonly __hex: true;
|
|
1548
1404
|
} & {
|
|
1549
1405
|
readonly __address: true;
|
|
@@ -1569,7 +1425,7 @@ export declare const toUnsignedTransactionBoundWitnessWithStorageMeta: {
|
|
|
1569
1425
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1570
1426
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1571
1427
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
1572
|
-
$destination?: (Lowercase<string> & {
|
|
1428
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1573
1429
|
readonly __hex: true;
|
|
1574
1430
|
} & {
|
|
1575
1431
|
readonly __address: true;
|
|
@@ -1587,19 +1443,15 @@ export declare const SignedTransactionBoundWitnessZod: z.ZodMiniObject<{
|
|
|
1587
1443
|
readonly __hex: true;
|
|
1588
1444
|
} & {
|
|
1589
1445
|
readonly __address: true;
|
|
1590
|
-
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
1591
|
-
readonly __hex: true;
|
|
1592
|
-
} & {
|
|
1593
|
-
readonly __address: true;
|
|
1594
|
-
}, string>>]>>;
|
|
1446
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
1595
1447
|
payload_hashes: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
1596
1448
|
payload_schemas: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>>;
|
|
1597
1449
|
previous_hashes: z.ZodMiniArray<z.ZodMiniNullable<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>>;
|
|
1598
|
-
$destination: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
1450
|
+
$destination: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
1599
1451
|
readonly __hex: true;
|
|
1600
1452
|
} & {
|
|
1601
1453
|
readonly __address: true;
|
|
1602
|
-
}, string
|
|
1454
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
1603
1455
|
$sourceQuery: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
1604
1456
|
$signatures: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>>;
|
|
1605
1457
|
nbf: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../BlockNumber/XL1BlockNumber.ts").XL1BlockNumber, number>>;
|
|
@@ -1625,11 +1477,7 @@ export declare const isSignedTransactionBoundWitness: <T>(value: T) => value is
|
|
|
1625
1477
|
schema: "network.xyo.boundwitness" & {
|
|
1626
1478
|
readonly __schema: true;
|
|
1627
1479
|
};
|
|
1628
|
-
addresses: ((Lowercase<string> & {
|
|
1629
|
-
readonly __hex: true;
|
|
1630
|
-
} & {
|
|
1631
|
-
readonly __address: true;
|
|
1632
|
-
}) | (Lowercase<string> & {
|
|
1480
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1633
1481
|
readonly __hex: true;
|
|
1634
1482
|
} & {
|
|
1635
1483
|
readonly __address: true;
|
|
@@ -1652,7 +1500,7 @@ export declare const isSignedTransactionBoundWitness: <T>(value: T) => value is
|
|
|
1652
1500
|
} & {
|
|
1653
1501
|
readonly __address: true;
|
|
1654
1502
|
};
|
|
1655
|
-
$destination?: (Lowercase<string> & {
|
|
1503
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1656
1504
|
readonly __hex: true;
|
|
1657
1505
|
} & {
|
|
1658
1506
|
readonly __address: true;
|
|
@@ -1666,11 +1514,7 @@ export declare const asSignedTransactionBoundWitness: {
|
|
|
1666
1514
|
schema: "network.xyo.boundwitness" & {
|
|
1667
1515
|
readonly __schema: true;
|
|
1668
1516
|
};
|
|
1669
|
-
addresses: ((Lowercase<string> & {
|
|
1670
|
-
readonly __hex: true;
|
|
1671
|
-
} & {
|
|
1672
|
-
readonly __address: true;
|
|
1673
|
-
}) | (Lowercase<string> & {
|
|
1517
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1674
1518
|
readonly __hex: true;
|
|
1675
1519
|
} & {
|
|
1676
1520
|
readonly __address: true;
|
|
@@ -1693,7 +1537,7 @@ export declare const asSignedTransactionBoundWitness: {
|
|
|
1693
1537
|
} & {
|
|
1694
1538
|
readonly __address: true;
|
|
1695
1539
|
};
|
|
1696
|
-
$destination?: (Lowercase<string> & {
|
|
1540
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1697
1541
|
readonly __hex: true;
|
|
1698
1542
|
} & {
|
|
1699
1543
|
readonly __address: true;
|
|
@@ -1705,11 +1549,7 @@ export declare const asSignedTransactionBoundWitness: {
|
|
|
1705
1549
|
schema: "network.xyo.boundwitness" & {
|
|
1706
1550
|
readonly __schema: true;
|
|
1707
1551
|
};
|
|
1708
|
-
addresses: ((Lowercase<string> & {
|
|
1709
|
-
readonly __hex: true;
|
|
1710
|
-
} & {
|
|
1711
|
-
readonly __address: true;
|
|
1712
|
-
}) | (Lowercase<string> & {
|
|
1552
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1713
1553
|
readonly __hex: true;
|
|
1714
1554
|
} & {
|
|
1715
1555
|
readonly __address: true;
|
|
@@ -1732,7 +1572,7 @@ export declare const asSignedTransactionBoundWitness: {
|
|
|
1732
1572
|
} & {
|
|
1733
1573
|
readonly __address: true;
|
|
1734
1574
|
};
|
|
1735
|
-
$destination?: (Lowercase<string> & {
|
|
1575
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1736
1576
|
readonly __hex: true;
|
|
1737
1577
|
} & {
|
|
1738
1578
|
readonly __address: true;
|
|
@@ -1747,11 +1587,7 @@ export declare const toSignedTransactionBoundWitness: {
|
|
|
1747
1587
|
schema: "network.xyo.boundwitness" & {
|
|
1748
1588
|
readonly __schema: true;
|
|
1749
1589
|
};
|
|
1750
|
-
addresses: ((Lowercase<string> & {
|
|
1751
|
-
readonly __hex: true;
|
|
1752
|
-
} & {
|
|
1753
|
-
readonly __address: true;
|
|
1754
|
-
}) | (Lowercase<string> & {
|
|
1590
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1755
1591
|
readonly __hex: true;
|
|
1756
1592
|
} & {
|
|
1757
1593
|
readonly __address: true;
|
|
@@ -1774,7 +1610,7 @@ export declare const toSignedTransactionBoundWitness: {
|
|
|
1774
1610
|
} & {
|
|
1775
1611
|
readonly __address: true;
|
|
1776
1612
|
};
|
|
1777
|
-
$destination?: (Lowercase<string> & {
|
|
1613
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1778
1614
|
readonly __hex: true;
|
|
1779
1615
|
} & {
|
|
1780
1616
|
readonly __address: true;
|
|
@@ -1786,11 +1622,7 @@ export declare const toSignedTransactionBoundWitness: {
|
|
|
1786
1622
|
schema: "network.xyo.boundwitness" & {
|
|
1787
1623
|
readonly __schema: true;
|
|
1788
1624
|
};
|
|
1789
|
-
addresses: ((Lowercase<string> & {
|
|
1790
|
-
readonly __hex: true;
|
|
1791
|
-
} & {
|
|
1792
|
-
readonly __address: true;
|
|
1793
|
-
}) | (Lowercase<string> & {
|
|
1625
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1794
1626
|
readonly __hex: true;
|
|
1795
1627
|
} & {
|
|
1796
1628
|
readonly __address: true;
|
|
@@ -1813,7 +1645,7 @@ export declare const toSignedTransactionBoundWitness: {
|
|
|
1813
1645
|
} & {
|
|
1814
1646
|
readonly __address: true;
|
|
1815
1647
|
};
|
|
1816
|
-
$destination?: (Lowercase<string> & {
|
|
1648
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1817
1649
|
readonly __hex: true;
|
|
1818
1650
|
} & {
|
|
1819
1651
|
readonly __address: true;
|
|
@@ -1831,19 +1663,15 @@ export declare const SignedTransactionBoundWitnessWithHashMetaZod: z.ZodMiniObje
|
|
|
1831
1663
|
readonly __hex: true;
|
|
1832
1664
|
} & {
|
|
1833
1665
|
readonly __address: true;
|
|
1834
|
-
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
1835
|
-
readonly __hex: true;
|
|
1836
|
-
} & {
|
|
1837
|
-
readonly __address: true;
|
|
1838
|
-
}, string>>]>>;
|
|
1666
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
1839
1667
|
payload_hashes: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
1840
1668
|
payload_schemas: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>>;
|
|
1841
1669
|
previous_hashes: z.ZodMiniArray<z.ZodMiniNullable<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>>;
|
|
1842
|
-
$destination: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
1670
|
+
$destination: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
1843
1671
|
readonly __hex: true;
|
|
1844
1672
|
} & {
|
|
1845
1673
|
readonly __address: true;
|
|
1846
|
-
}, string
|
|
1674
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
1847
1675
|
$sourceQuery: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
1848
1676
|
$signatures: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>>;
|
|
1849
1677
|
nbf: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../BlockNumber/XL1BlockNumber.ts").XL1BlockNumber, number>>;
|
|
@@ -1871,11 +1699,7 @@ export declare const isSignedTransactionBoundWitnessWithHashMeta: <T>(value: T)
|
|
|
1871
1699
|
schema: "network.xyo.boundwitness" & {
|
|
1872
1700
|
readonly __schema: true;
|
|
1873
1701
|
};
|
|
1874
|
-
addresses: ((Lowercase<string> & {
|
|
1875
|
-
readonly __hex: true;
|
|
1876
|
-
} & {
|
|
1877
|
-
readonly __address: true;
|
|
1878
|
-
}) | (Lowercase<string> & {
|
|
1702
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1879
1703
|
readonly __hex: true;
|
|
1880
1704
|
} & {
|
|
1881
1705
|
readonly __address: true;
|
|
@@ -1900,7 +1724,7 @@ export declare const isSignedTransactionBoundWitnessWithHashMeta: <T>(value: T)
|
|
|
1900
1724
|
};
|
|
1901
1725
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1902
1726
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1903
|
-
$destination?: (Lowercase<string> & {
|
|
1727
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1904
1728
|
readonly __hex: true;
|
|
1905
1729
|
} & {
|
|
1906
1730
|
readonly __address: true;
|
|
@@ -1914,11 +1738,7 @@ export declare const asSignedTransactionBoundWitnessWithHashMeta: {
|
|
|
1914
1738
|
schema: "network.xyo.boundwitness" & {
|
|
1915
1739
|
readonly __schema: true;
|
|
1916
1740
|
};
|
|
1917
|
-
addresses: ((Lowercase<string> & {
|
|
1918
|
-
readonly __hex: true;
|
|
1919
|
-
} & {
|
|
1920
|
-
readonly __address: true;
|
|
1921
|
-
}) | (Lowercase<string> & {
|
|
1741
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1922
1742
|
readonly __hex: true;
|
|
1923
1743
|
} & {
|
|
1924
1744
|
readonly __address: true;
|
|
@@ -1943,7 +1763,7 @@ export declare const asSignedTransactionBoundWitnessWithHashMeta: {
|
|
|
1943
1763
|
};
|
|
1944
1764
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1945
1765
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1946
|
-
$destination?: (Lowercase<string> & {
|
|
1766
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1947
1767
|
readonly __hex: true;
|
|
1948
1768
|
} & {
|
|
1949
1769
|
readonly __address: true;
|
|
@@ -1955,11 +1775,7 @@ export declare const asSignedTransactionBoundWitnessWithHashMeta: {
|
|
|
1955
1775
|
schema: "network.xyo.boundwitness" & {
|
|
1956
1776
|
readonly __schema: true;
|
|
1957
1777
|
};
|
|
1958
|
-
addresses: ((Lowercase<string> & {
|
|
1959
|
-
readonly __hex: true;
|
|
1960
|
-
} & {
|
|
1961
|
-
readonly __address: true;
|
|
1962
|
-
}) | (Lowercase<string> & {
|
|
1778
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1963
1779
|
readonly __hex: true;
|
|
1964
1780
|
} & {
|
|
1965
1781
|
readonly __address: true;
|
|
@@ -1984,7 +1800,7 @@ export declare const asSignedTransactionBoundWitnessWithHashMeta: {
|
|
|
1984
1800
|
};
|
|
1985
1801
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1986
1802
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1987
|
-
$destination?: (Lowercase<string> & {
|
|
1803
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1988
1804
|
readonly __hex: true;
|
|
1989
1805
|
} & {
|
|
1990
1806
|
readonly __address: true;
|
|
@@ -1999,11 +1815,7 @@ export declare const toSignedTransactionBoundWitnessWithHashMeta: {
|
|
|
1999
1815
|
schema: "network.xyo.boundwitness" & {
|
|
2000
1816
|
readonly __schema: true;
|
|
2001
1817
|
};
|
|
2002
|
-
addresses: ((Lowercase<string> & {
|
|
2003
|
-
readonly __hex: true;
|
|
2004
|
-
} & {
|
|
2005
|
-
readonly __address: true;
|
|
2006
|
-
}) | (Lowercase<string> & {
|
|
1818
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
2007
1819
|
readonly __hex: true;
|
|
2008
1820
|
} & {
|
|
2009
1821
|
readonly __address: true;
|
|
@@ -2028,7 +1840,7 @@ export declare const toSignedTransactionBoundWitnessWithHashMeta: {
|
|
|
2028
1840
|
};
|
|
2029
1841
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
2030
1842
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
2031
|
-
$destination?: (Lowercase<string> & {
|
|
1843
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
2032
1844
|
readonly __hex: true;
|
|
2033
1845
|
} & {
|
|
2034
1846
|
readonly __address: true;
|
|
@@ -2040,11 +1852,7 @@ export declare const toSignedTransactionBoundWitnessWithHashMeta: {
|
|
|
2040
1852
|
schema: "network.xyo.boundwitness" & {
|
|
2041
1853
|
readonly __schema: true;
|
|
2042
1854
|
};
|
|
2043
|
-
addresses: ((Lowercase<string> & {
|
|
2044
|
-
readonly __hex: true;
|
|
2045
|
-
} & {
|
|
2046
|
-
readonly __address: true;
|
|
2047
|
-
}) | (Lowercase<string> & {
|
|
1855
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
2048
1856
|
readonly __hex: true;
|
|
2049
1857
|
} & {
|
|
2050
1858
|
readonly __address: true;
|
|
@@ -2069,7 +1877,7 @@ export declare const toSignedTransactionBoundWitnessWithHashMeta: {
|
|
|
2069
1877
|
};
|
|
2070
1878
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
2071
1879
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
2072
|
-
$destination?: (Lowercase<string> & {
|
|
1880
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
2073
1881
|
readonly __hex: true;
|
|
2074
1882
|
} & {
|
|
2075
1883
|
readonly __address: true;
|
|
@@ -2087,19 +1895,15 @@ export declare const SignedTransactionBoundWitnessWithStorageMetaZod: z.ZodMiniO
|
|
|
2087
1895
|
readonly __hex: true;
|
|
2088
1896
|
} & {
|
|
2089
1897
|
readonly __address: true;
|
|
2090
|
-
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
2091
|
-
readonly __hex: true;
|
|
2092
|
-
} & {
|
|
2093
|
-
readonly __address: true;
|
|
2094
|
-
}, string>>]>>;
|
|
1898
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
2095
1899
|
payload_hashes: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
2096
1900
|
payload_schemas: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>>;
|
|
2097
1901
|
previous_hashes: z.ZodMiniArray<z.ZodMiniNullable<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>>;
|
|
2098
|
-
$destination: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
1902
|
+
$destination: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
2099
1903
|
readonly __hex: true;
|
|
2100
1904
|
} & {
|
|
2101
1905
|
readonly __address: true;
|
|
2102
|
-
}, string
|
|
1906
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
2103
1907
|
$sourceQuery: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
2104
1908
|
$signatures: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>>;
|
|
2105
1909
|
nbf: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../BlockNumber/XL1BlockNumber.ts").XL1BlockNumber, number>>;
|
|
@@ -2128,11 +1932,7 @@ export declare const isSignedTransactionBoundWitnessWithStorageMeta: <T>(value:
|
|
|
2128
1932
|
schema: "network.xyo.boundwitness" & {
|
|
2129
1933
|
readonly __schema: true;
|
|
2130
1934
|
};
|
|
2131
|
-
addresses: ((Lowercase<string> & {
|
|
2132
|
-
readonly __hex: true;
|
|
2133
|
-
} & {
|
|
2134
|
-
readonly __address: true;
|
|
2135
|
-
}) | (Lowercase<string> & {
|
|
1935
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
2136
1936
|
readonly __hex: true;
|
|
2137
1937
|
} & {
|
|
2138
1938
|
readonly __address: true;
|
|
@@ -2158,7 +1958,7 @@ export declare const isSignedTransactionBoundWitnessWithStorageMeta: <T>(value:
|
|
|
2158
1958
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
2159
1959
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
2160
1960
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
2161
|
-
$destination?: (Lowercase<string> & {
|
|
1961
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
2162
1962
|
readonly __hex: true;
|
|
2163
1963
|
} & {
|
|
2164
1964
|
readonly __address: true;
|
|
@@ -2172,11 +1972,7 @@ export declare const asSignedTransactionBoundWitnessWithStorageMeta: {
|
|
|
2172
1972
|
schema: "network.xyo.boundwitness" & {
|
|
2173
1973
|
readonly __schema: true;
|
|
2174
1974
|
};
|
|
2175
|
-
addresses: ((Lowercase<string> & {
|
|
2176
|
-
readonly __hex: true;
|
|
2177
|
-
} & {
|
|
2178
|
-
readonly __address: true;
|
|
2179
|
-
}) | (Lowercase<string> & {
|
|
1975
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
2180
1976
|
readonly __hex: true;
|
|
2181
1977
|
} & {
|
|
2182
1978
|
readonly __address: true;
|
|
@@ -2202,7 +1998,7 @@ export declare const asSignedTransactionBoundWitnessWithStorageMeta: {
|
|
|
2202
1998
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
2203
1999
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
2204
2000
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
2205
|
-
$destination?: (Lowercase<string> & {
|
|
2001
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
2206
2002
|
readonly __hex: true;
|
|
2207
2003
|
} & {
|
|
2208
2004
|
readonly __address: true;
|
|
@@ -2214,11 +2010,7 @@ export declare const asSignedTransactionBoundWitnessWithStorageMeta: {
|
|
|
2214
2010
|
schema: "network.xyo.boundwitness" & {
|
|
2215
2011
|
readonly __schema: true;
|
|
2216
2012
|
};
|
|
2217
|
-
addresses: ((Lowercase<string> & {
|
|
2218
|
-
readonly __hex: true;
|
|
2219
|
-
} & {
|
|
2220
|
-
readonly __address: true;
|
|
2221
|
-
}) | (Lowercase<string> & {
|
|
2013
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
2222
2014
|
readonly __hex: true;
|
|
2223
2015
|
} & {
|
|
2224
2016
|
readonly __address: true;
|
|
@@ -2244,7 +2036,7 @@ export declare const asSignedTransactionBoundWitnessWithStorageMeta: {
|
|
|
2244
2036
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
2245
2037
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
2246
2038
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
2247
|
-
$destination?: (Lowercase<string> & {
|
|
2039
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
2248
2040
|
readonly __hex: true;
|
|
2249
2041
|
} & {
|
|
2250
2042
|
readonly __address: true;
|
|
@@ -2259,11 +2051,7 @@ export declare const toSignedTransactionBoundWitnessWithStorageMeta: {
|
|
|
2259
2051
|
schema: "network.xyo.boundwitness" & {
|
|
2260
2052
|
readonly __schema: true;
|
|
2261
2053
|
};
|
|
2262
|
-
addresses: ((Lowercase<string> & {
|
|
2263
|
-
readonly __hex: true;
|
|
2264
|
-
} & {
|
|
2265
|
-
readonly __address: true;
|
|
2266
|
-
}) | (Lowercase<string> & {
|
|
2054
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
2267
2055
|
readonly __hex: true;
|
|
2268
2056
|
} & {
|
|
2269
2057
|
readonly __address: true;
|
|
@@ -2289,7 +2077,7 @@ export declare const toSignedTransactionBoundWitnessWithStorageMeta: {
|
|
|
2289
2077
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
2290
2078
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
2291
2079
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
2292
|
-
$destination?: (Lowercase<string> & {
|
|
2080
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
2293
2081
|
readonly __hex: true;
|
|
2294
2082
|
} & {
|
|
2295
2083
|
readonly __address: true;
|
|
@@ -2301,11 +2089,7 @@ export declare const toSignedTransactionBoundWitnessWithStorageMeta: {
|
|
|
2301
2089
|
schema: "network.xyo.boundwitness" & {
|
|
2302
2090
|
readonly __schema: true;
|
|
2303
2091
|
};
|
|
2304
|
-
addresses: ((Lowercase<string> & {
|
|
2305
|
-
readonly __hex: true;
|
|
2306
|
-
} & {
|
|
2307
|
-
readonly __address: true;
|
|
2308
|
-
}) | (Lowercase<string> & {
|
|
2092
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
2309
2093
|
readonly __hex: true;
|
|
2310
2094
|
} & {
|
|
2311
2095
|
readonly __address: true;
|
|
@@ -2331,7 +2115,7 @@ export declare const toSignedTransactionBoundWitnessWithStorageMeta: {
|
|
|
2331
2115
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
2332
2116
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
2333
2117
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
2334
|
-
$destination?: (Lowercase<string> & {
|
|
2118
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
2335
2119
|
readonly __hex: true;
|
|
2336
2120
|
} & {
|
|
2337
2121
|
readonly __address: true;
|