@xyo-network/xl1-protocol-model 2.0.6 → 2.0.7
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
|
@@ -14,19 +14,15 @@ export declare const HydratedBlockZod: z.ZodMiniTuple<readonly [z.ZodMiniObject<
|
|
|
14
14
|
readonly __hex: true;
|
|
15
15
|
} & {
|
|
16
16
|
readonly __address: true;
|
|
17
|
-
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
18
|
-
readonly __hex: true;
|
|
19
|
-
} & {
|
|
20
|
-
readonly __address: true;
|
|
21
|
-
}, string>>]>>;
|
|
17
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
22
18
|
payload_hashes: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
23
19
|
payload_schemas: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>>;
|
|
24
20
|
previous_hashes: z.ZodMiniArray<z.ZodMiniNullable<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>>;
|
|
25
|
-
$destination: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
21
|
+
$destination: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
26
22
|
readonly __hex: true;
|
|
27
23
|
} & {
|
|
28
24
|
readonly __address: true;
|
|
29
|
-
}, string
|
|
25
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
30
26
|
$sourceQuery: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
31
27
|
$signatures: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>, z.ZodMiniNull]>>;
|
|
32
28
|
}, z.core.$strip>, z.ZodMiniArray<z.ZodMiniObject<{
|
|
@@ -47,18 +43,14 @@ export declare const isHydratedBlock: <T>(value: T) => value is T & [{
|
|
|
47
43
|
readonly __hex: true;
|
|
48
44
|
} & {
|
|
49
45
|
readonly __address: true;
|
|
50
|
-
}) | (
|
|
51
|
-
readonly __hex: true;
|
|
52
|
-
} & {
|
|
53
|
-
readonly __address: true;
|
|
54
|
-
}))[];
|
|
46
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
55
47
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
56
48
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
57
49
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
58
50
|
$signatures: (import("@xylabs/sdk-js").BrandedHex | null)[];
|
|
59
51
|
protocol?: number | undefined;
|
|
60
52
|
step_hashes?: import("@xylabs/sdk-js").BrandedHash[] | undefined;
|
|
61
|
-
$destination?: (Lowercase<string> & {
|
|
53
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
62
54
|
readonly __hex: true;
|
|
63
55
|
} & {
|
|
64
56
|
readonly __address: true;
|
|
@@ -81,18 +73,14 @@ export declare const asHydratedBlock: {
|
|
|
81
73
|
readonly __hex: true;
|
|
82
74
|
} & {
|
|
83
75
|
readonly __address: true;
|
|
84
|
-
}) | (
|
|
85
|
-
readonly __hex: true;
|
|
86
|
-
} & {
|
|
87
|
-
readonly __address: true;
|
|
88
|
-
}))[];
|
|
76
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
89
77
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
90
78
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
91
79
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
92
80
|
$signatures: (import("@xylabs/sdk-js").BrandedHex | null)[];
|
|
93
81
|
protocol?: number | undefined;
|
|
94
82
|
step_hashes?: import("@xylabs/sdk-js").BrandedHash[] | undefined;
|
|
95
|
-
$destination?: (Lowercase<string> & {
|
|
83
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
96
84
|
readonly __hex: true;
|
|
97
85
|
} & {
|
|
98
86
|
readonly __address: true;
|
|
@@ -113,18 +101,14 @@ export declare const asHydratedBlock: {
|
|
|
113
101
|
readonly __hex: true;
|
|
114
102
|
} & {
|
|
115
103
|
readonly __address: true;
|
|
116
|
-
}) | (
|
|
117
|
-
readonly __hex: true;
|
|
118
|
-
} & {
|
|
119
|
-
readonly __address: true;
|
|
120
|
-
}))[];
|
|
104
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
121
105
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
122
106
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
123
107
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
124
108
|
$signatures: (import("@xylabs/sdk-js").BrandedHex | null)[];
|
|
125
109
|
protocol?: number | undefined;
|
|
126
110
|
step_hashes?: import("@xylabs/sdk-js").BrandedHash[] | undefined;
|
|
127
|
-
$destination?: (Lowercase<string> & {
|
|
111
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
128
112
|
readonly __hex: true;
|
|
129
113
|
} & {
|
|
130
114
|
readonly __address: true;
|
|
@@ -148,18 +132,14 @@ export declare const toHydratedBlock: {
|
|
|
148
132
|
readonly __hex: true;
|
|
149
133
|
} & {
|
|
150
134
|
readonly __address: true;
|
|
151
|
-
}) | (
|
|
152
|
-
readonly __hex: true;
|
|
153
|
-
} & {
|
|
154
|
-
readonly __address: true;
|
|
155
|
-
}))[];
|
|
135
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
156
136
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
157
137
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
158
138
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
159
139
|
$signatures: (import("@xylabs/sdk-js").BrandedHex | null)[];
|
|
160
140
|
protocol?: number | undefined;
|
|
161
141
|
step_hashes?: import("@xylabs/sdk-js").BrandedHash[] | undefined;
|
|
162
|
-
$destination?: (Lowercase<string> & {
|
|
142
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
163
143
|
readonly __hex: true;
|
|
164
144
|
} & {
|
|
165
145
|
readonly __address: true;
|
|
@@ -180,18 +160,14 @@ export declare const toHydratedBlock: {
|
|
|
180
160
|
readonly __hex: true;
|
|
181
161
|
} & {
|
|
182
162
|
readonly __address: true;
|
|
183
|
-
}) | (
|
|
184
|
-
readonly __hex: true;
|
|
185
|
-
} & {
|
|
186
|
-
readonly __address: true;
|
|
187
|
-
}))[];
|
|
163
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
188
164
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
189
165
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
190
166
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
191
167
|
$signatures: (import("@xylabs/sdk-js").BrandedHex | null)[];
|
|
192
168
|
protocol?: number | undefined;
|
|
193
169
|
step_hashes?: import("@xylabs/sdk-js").BrandedHash[] | undefined;
|
|
194
|
-
$destination?: (Lowercase<string> & {
|
|
170
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
195
171
|
readonly __hex: true;
|
|
196
172
|
} & {
|
|
197
173
|
readonly __address: true;
|
|
@@ -216,19 +192,15 @@ export declare const HydratedBlockWithHashMetaZod: z.ZodMiniTuple<readonly [z.Zo
|
|
|
216
192
|
readonly __hex: true;
|
|
217
193
|
} & {
|
|
218
194
|
readonly __address: true;
|
|
219
|
-
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
220
|
-
readonly __hex: true;
|
|
221
|
-
} & {
|
|
222
|
-
readonly __address: true;
|
|
223
|
-
}, string>>]>>;
|
|
195
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
224
196
|
payload_hashes: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
225
197
|
payload_schemas: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>>;
|
|
226
198
|
previous_hashes: z.ZodMiniArray<z.ZodMiniNullable<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>>;
|
|
227
|
-
$destination: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
199
|
+
$destination: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
228
200
|
readonly __hex: true;
|
|
229
201
|
} & {
|
|
230
202
|
readonly __address: true;
|
|
231
|
-
}, string
|
|
203
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
232
204
|
$sourceQuery: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
233
205
|
$signatures: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>, z.ZodMiniNull]>>;
|
|
234
206
|
_hash: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
@@ -253,11 +225,7 @@ export declare const isHydratedBlockWithHashMeta: <T>(value: T) => value is T &
|
|
|
253
225
|
readonly __hex: true;
|
|
254
226
|
} & {
|
|
255
227
|
readonly __address: true;
|
|
256
|
-
}) | (
|
|
257
|
-
readonly __hex: true;
|
|
258
|
-
} & {
|
|
259
|
-
readonly __address: true;
|
|
260
|
-
}))[];
|
|
228
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
261
229
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
262
230
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
263
231
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
@@ -266,7 +234,7 @@ export declare const isHydratedBlockWithHashMeta: <T>(value: T) => value is T &
|
|
|
266
234
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
267
235
|
protocol?: number | undefined;
|
|
268
236
|
step_hashes?: import("@xylabs/sdk-js").BrandedHash[] | undefined;
|
|
269
|
-
$destination?: (Lowercase<string> & {
|
|
237
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
270
238
|
readonly __hex: true;
|
|
271
239
|
} & {
|
|
272
240
|
readonly __address: true;
|
|
@@ -292,11 +260,7 @@ export declare const asHydratedBlockWithHashMeta: {
|
|
|
292
260
|
readonly __hex: true;
|
|
293
261
|
} & {
|
|
294
262
|
readonly __address: true;
|
|
295
|
-
}) | (
|
|
296
|
-
readonly __hex: true;
|
|
297
|
-
} & {
|
|
298
|
-
readonly __address: true;
|
|
299
|
-
}))[];
|
|
263
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
300
264
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
301
265
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
302
266
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
@@ -305,7 +269,7 @@ export declare const asHydratedBlockWithHashMeta: {
|
|
|
305
269
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
306
270
|
protocol?: number | undefined;
|
|
307
271
|
step_hashes?: import("@xylabs/sdk-js").BrandedHash[] | undefined;
|
|
308
|
-
$destination?: (Lowercase<string> & {
|
|
272
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
309
273
|
readonly __hex: true;
|
|
310
274
|
} & {
|
|
311
275
|
readonly __address: true;
|
|
@@ -329,11 +293,7 @@ export declare const asHydratedBlockWithHashMeta: {
|
|
|
329
293
|
readonly __hex: true;
|
|
330
294
|
} & {
|
|
331
295
|
readonly __address: true;
|
|
332
|
-
}) | (
|
|
333
|
-
readonly __hex: true;
|
|
334
|
-
} & {
|
|
335
|
-
readonly __address: true;
|
|
336
|
-
}))[];
|
|
296
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
337
297
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
338
298
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
339
299
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
@@ -342,7 +302,7 @@ export declare const asHydratedBlockWithHashMeta: {
|
|
|
342
302
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
343
303
|
protocol?: number | undefined;
|
|
344
304
|
step_hashes?: import("@xylabs/sdk-js").BrandedHash[] | undefined;
|
|
345
|
-
$destination?: (Lowercase<string> & {
|
|
305
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
346
306
|
readonly __hex: true;
|
|
347
307
|
} & {
|
|
348
308
|
readonly __address: true;
|
|
@@ -369,11 +329,7 @@ export declare const toHydratedBlockWithHashMeta: {
|
|
|
369
329
|
readonly __hex: true;
|
|
370
330
|
} & {
|
|
371
331
|
readonly __address: true;
|
|
372
|
-
}) | (
|
|
373
|
-
readonly __hex: true;
|
|
374
|
-
} & {
|
|
375
|
-
readonly __address: true;
|
|
376
|
-
}))[];
|
|
332
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
377
333
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
378
334
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
379
335
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
@@ -382,7 +338,7 @@ export declare const toHydratedBlockWithHashMeta: {
|
|
|
382
338
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
383
339
|
protocol?: number | undefined;
|
|
384
340
|
step_hashes?: import("@xylabs/sdk-js").BrandedHash[] | undefined;
|
|
385
|
-
$destination?: (Lowercase<string> & {
|
|
341
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
386
342
|
readonly __hex: true;
|
|
387
343
|
} & {
|
|
388
344
|
readonly __address: true;
|
|
@@ -406,11 +362,7 @@ export declare const toHydratedBlockWithHashMeta: {
|
|
|
406
362
|
readonly __hex: true;
|
|
407
363
|
} & {
|
|
408
364
|
readonly __address: true;
|
|
409
|
-
}) | (
|
|
410
|
-
readonly __hex: true;
|
|
411
|
-
} & {
|
|
412
|
-
readonly __address: true;
|
|
413
|
-
}))[];
|
|
365
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
414
366
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
415
367
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
416
368
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
@@ -419,7 +371,7 @@ export declare const toHydratedBlockWithHashMeta: {
|
|
|
419
371
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
420
372
|
protocol?: number | undefined;
|
|
421
373
|
step_hashes?: import("@xylabs/sdk-js").BrandedHash[] | undefined;
|
|
422
|
-
$destination?: (Lowercase<string> & {
|
|
374
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
423
375
|
readonly __hex: true;
|
|
424
376
|
} & {
|
|
425
377
|
readonly __address: true;
|
|
@@ -447,19 +399,15 @@ export declare const HydratedBlockWithStorageMetaZod: z.ZodMiniTuple<readonly [z
|
|
|
447
399
|
readonly __hex: true;
|
|
448
400
|
} & {
|
|
449
401
|
readonly __address: true;
|
|
450
|
-
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
451
|
-
readonly __hex: true;
|
|
452
|
-
} & {
|
|
453
|
-
readonly __address: true;
|
|
454
|
-
}, string>>]>>;
|
|
402
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
455
403
|
payload_hashes: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
456
404
|
payload_schemas: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>>;
|
|
457
405
|
previous_hashes: z.ZodMiniArray<z.ZodMiniNullable<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>>;
|
|
458
|
-
$destination: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
406
|
+
$destination: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
459
407
|
readonly __hex: true;
|
|
460
408
|
} & {
|
|
461
409
|
readonly __address: true;
|
|
462
|
-
}, string
|
|
410
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
463
411
|
$sourceQuery: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
464
412
|
$signatures: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>, z.ZodMiniNull]>>;
|
|
465
413
|
_hash: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
@@ -486,11 +434,7 @@ export declare const isHydratedBlockWithStorageMeta: <T>(value: T) => value is T
|
|
|
486
434
|
readonly __hex: true;
|
|
487
435
|
} & {
|
|
488
436
|
readonly __address: true;
|
|
489
|
-
}) | (
|
|
490
|
-
readonly __hex: true;
|
|
491
|
-
} & {
|
|
492
|
-
readonly __address: true;
|
|
493
|
-
}))[];
|
|
437
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
494
438
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
495
439
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
496
440
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
@@ -500,7 +444,7 @@ export declare const isHydratedBlockWithStorageMeta: <T>(value: T) => value is T
|
|
|
500
444
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
501
445
|
protocol?: number | undefined;
|
|
502
446
|
step_hashes?: import("@xylabs/sdk-js").BrandedHash[] | undefined;
|
|
503
|
-
$destination?: (Lowercase<string> & {
|
|
447
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
504
448
|
readonly __hex: true;
|
|
505
449
|
} & {
|
|
506
450
|
readonly __address: true;
|
|
@@ -527,11 +471,7 @@ export declare const asHydratedBlockWithStorageMeta: {
|
|
|
527
471
|
readonly __hex: true;
|
|
528
472
|
} & {
|
|
529
473
|
readonly __address: true;
|
|
530
|
-
}) | (
|
|
531
|
-
readonly __hex: true;
|
|
532
|
-
} & {
|
|
533
|
-
readonly __address: true;
|
|
534
|
-
}))[];
|
|
474
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
535
475
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
536
476
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
537
477
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
@@ -541,7 +481,7 @@ export declare const asHydratedBlockWithStorageMeta: {
|
|
|
541
481
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
542
482
|
protocol?: number | undefined;
|
|
543
483
|
step_hashes?: import("@xylabs/sdk-js").BrandedHash[] | undefined;
|
|
544
|
-
$destination?: (Lowercase<string> & {
|
|
484
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
545
485
|
readonly __hex: true;
|
|
546
486
|
} & {
|
|
547
487
|
readonly __address: true;
|
|
@@ -566,11 +506,7 @@ export declare const asHydratedBlockWithStorageMeta: {
|
|
|
566
506
|
readonly __hex: true;
|
|
567
507
|
} & {
|
|
568
508
|
readonly __address: true;
|
|
569
|
-
}) | (
|
|
570
|
-
readonly __hex: true;
|
|
571
|
-
} & {
|
|
572
|
-
readonly __address: true;
|
|
573
|
-
}))[];
|
|
509
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
574
510
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
575
511
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
576
512
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
@@ -580,7 +516,7 @@ export declare const asHydratedBlockWithStorageMeta: {
|
|
|
580
516
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
581
517
|
protocol?: number | undefined;
|
|
582
518
|
step_hashes?: import("@xylabs/sdk-js").BrandedHash[] | undefined;
|
|
583
|
-
$destination?: (Lowercase<string> & {
|
|
519
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
584
520
|
readonly __hex: true;
|
|
585
521
|
} & {
|
|
586
522
|
readonly __address: true;
|
|
@@ -608,11 +544,7 @@ export declare const toHydratedBlockWithStorageMeta: {
|
|
|
608
544
|
readonly __hex: true;
|
|
609
545
|
} & {
|
|
610
546
|
readonly __address: true;
|
|
611
|
-
}) | (
|
|
612
|
-
readonly __hex: true;
|
|
613
|
-
} & {
|
|
614
|
-
readonly __address: true;
|
|
615
|
-
}))[];
|
|
547
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
616
548
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
617
549
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
618
550
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
@@ -622,7 +554,7 @@ export declare const toHydratedBlockWithStorageMeta: {
|
|
|
622
554
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
623
555
|
protocol?: number | undefined;
|
|
624
556
|
step_hashes?: import("@xylabs/sdk-js").BrandedHash[] | undefined;
|
|
625
|
-
$destination?: (Lowercase<string> & {
|
|
557
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
626
558
|
readonly __hex: true;
|
|
627
559
|
} & {
|
|
628
560
|
readonly __address: true;
|
|
@@ -647,11 +579,7 @@ export declare const toHydratedBlockWithStorageMeta: {
|
|
|
647
579
|
readonly __hex: true;
|
|
648
580
|
} & {
|
|
649
581
|
readonly __address: true;
|
|
650
|
-
}) | (
|
|
651
|
-
readonly __hex: true;
|
|
652
|
-
} & {
|
|
653
|
-
readonly __address: true;
|
|
654
|
-
}))[];
|
|
582
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
655
583
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
656
584
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
657
585
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
@@ -661,7 +589,7 @@ export declare const toHydratedBlockWithStorageMeta: {
|
|
|
661
589
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
662
590
|
protocol?: number | undefined;
|
|
663
591
|
step_hashes?: import("@xylabs/sdk-js").BrandedHash[] | undefined;
|
|
664
|
-
$destination?: (Lowercase<string> & {
|
|
592
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
665
593
|
readonly __hex: true;
|
|
666
594
|
} & {
|
|
667
595
|
readonly __address: true;
|
|
@@ -684,19 +612,15 @@ export declare const SignedHydratedBlockZod: z.ZodMiniTuple<readonly [z.ZodMiniO
|
|
|
684
612
|
readonly __hex: true;
|
|
685
613
|
} & {
|
|
686
614
|
readonly __address: true;
|
|
687
|
-
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
688
|
-
readonly __hex: true;
|
|
689
|
-
} & {
|
|
690
|
-
readonly __address: true;
|
|
691
|
-
}, string>>]>>;
|
|
615
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
692
616
|
payload_hashes: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
693
617
|
payload_schemas: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>>;
|
|
694
618
|
previous_hashes: z.ZodMiniArray<z.ZodMiniNullable<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>>;
|
|
695
|
-
$destination: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
619
|
+
$destination: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
696
620
|
readonly __hex: true;
|
|
697
621
|
} & {
|
|
698
622
|
readonly __address: true;
|
|
699
|
-
}, string
|
|
623
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
700
624
|
$sourceQuery: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
701
625
|
$signatures: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>>;
|
|
702
626
|
block: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../index.ts").XL1BlockNumber, number>>;
|
|
@@ -715,11 +639,7 @@ export declare const isSignedHydratedBlock: <T>(value: T) => value is T & [{
|
|
|
715
639
|
schema: "network.xyo.boundwitness" & {
|
|
716
640
|
readonly __schema: true;
|
|
717
641
|
};
|
|
718
|
-
addresses: ((Lowercase<string> & {
|
|
719
|
-
readonly __hex: true;
|
|
720
|
-
} & {
|
|
721
|
-
readonly __address: true;
|
|
722
|
-
}) | (Lowercase<string> & {
|
|
642
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
723
643
|
readonly __hex: true;
|
|
724
644
|
} & {
|
|
725
645
|
readonly __address: true;
|
|
@@ -732,7 +652,7 @@ export declare const isSignedHydratedBlock: <T>(value: T) => value is T & [{
|
|
|
732
652
|
chain: import("@xylabs/sdk-js").BrandedHex;
|
|
733
653
|
previous: import("@xylabs/sdk-js").BrandedHash | null;
|
|
734
654
|
$epoch: number;
|
|
735
|
-
$destination?: (Lowercase<string> & {
|
|
655
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
736
656
|
readonly __hex: true;
|
|
737
657
|
} & {
|
|
738
658
|
readonly __address: true;
|
|
@@ -750,11 +670,7 @@ export declare const asSignedHydratedBlock: {
|
|
|
750
670
|
schema: "network.xyo.boundwitness" & {
|
|
751
671
|
readonly __schema: true;
|
|
752
672
|
};
|
|
753
|
-
addresses: ((Lowercase<string> & {
|
|
754
|
-
readonly __hex: true;
|
|
755
|
-
} & {
|
|
756
|
-
readonly __address: true;
|
|
757
|
-
}) | (Lowercase<string> & {
|
|
673
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
758
674
|
readonly __hex: true;
|
|
759
675
|
} & {
|
|
760
676
|
readonly __address: true;
|
|
@@ -767,7 +683,7 @@ export declare const asSignedHydratedBlock: {
|
|
|
767
683
|
chain: import("@xylabs/sdk-js").BrandedHex;
|
|
768
684
|
previous: import("@xylabs/sdk-js").BrandedHash | null;
|
|
769
685
|
$epoch: number;
|
|
770
|
-
$destination?: (Lowercase<string> & {
|
|
686
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
771
687
|
readonly __hex: true;
|
|
772
688
|
} & {
|
|
773
689
|
readonly __address: true;
|
|
@@ -783,11 +699,7 @@ export declare const asSignedHydratedBlock: {
|
|
|
783
699
|
schema: "network.xyo.boundwitness" & {
|
|
784
700
|
readonly __schema: true;
|
|
785
701
|
};
|
|
786
|
-
addresses: ((Lowercase<string> & {
|
|
787
|
-
readonly __hex: true;
|
|
788
|
-
} & {
|
|
789
|
-
readonly __address: true;
|
|
790
|
-
}) | (Lowercase<string> & {
|
|
702
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
791
703
|
readonly __hex: true;
|
|
792
704
|
} & {
|
|
793
705
|
readonly __address: true;
|
|
@@ -800,7 +712,7 @@ export declare const asSignedHydratedBlock: {
|
|
|
800
712
|
chain: import("@xylabs/sdk-js").BrandedHex;
|
|
801
713
|
previous: import("@xylabs/sdk-js").BrandedHash | null;
|
|
802
714
|
$epoch: number;
|
|
803
|
-
$destination?: (Lowercase<string> & {
|
|
715
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
804
716
|
readonly __hex: true;
|
|
805
717
|
} & {
|
|
806
718
|
readonly __address: true;
|
|
@@ -819,11 +731,7 @@ export declare const toSignedHydratedBlock: {
|
|
|
819
731
|
schema: "network.xyo.boundwitness" & {
|
|
820
732
|
readonly __schema: true;
|
|
821
733
|
};
|
|
822
|
-
addresses: ((Lowercase<string> & {
|
|
823
|
-
readonly __hex: true;
|
|
824
|
-
} & {
|
|
825
|
-
readonly __address: true;
|
|
826
|
-
}) | (Lowercase<string> & {
|
|
734
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
827
735
|
readonly __hex: true;
|
|
828
736
|
} & {
|
|
829
737
|
readonly __address: true;
|
|
@@ -836,7 +744,7 @@ export declare const toSignedHydratedBlock: {
|
|
|
836
744
|
chain: import("@xylabs/sdk-js").BrandedHex;
|
|
837
745
|
previous: import("@xylabs/sdk-js").BrandedHash | null;
|
|
838
746
|
$epoch: number;
|
|
839
|
-
$destination?: (Lowercase<string> & {
|
|
747
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
840
748
|
readonly __hex: true;
|
|
841
749
|
} & {
|
|
842
750
|
readonly __address: true;
|
|
@@ -852,11 +760,7 @@ export declare const toSignedHydratedBlock: {
|
|
|
852
760
|
schema: "network.xyo.boundwitness" & {
|
|
853
761
|
readonly __schema: true;
|
|
854
762
|
};
|
|
855
|
-
addresses: ((Lowercase<string> & {
|
|
856
|
-
readonly __hex: true;
|
|
857
|
-
} & {
|
|
858
|
-
readonly __address: true;
|
|
859
|
-
}) | (Lowercase<string> & {
|
|
763
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
860
764
|
readonly __hex: true;
|
|
861
765
|
} & {
|
|
862
766
|
readonly __address: true;
|
|
@@ -869,7 +773,7 @@ export declare const toSignedHydratedBlock: {
|
|
|
869
773
|
chain: import("@xylabs/sdk-js").BrandedHex;
|
|
870
774
|
previous: import("@xylabs/sdk-js").BrandedHash | null;
|
|
871
775
|
$epoch: number;
|
|
872
|
-
$destination?: (Lowercase<string> & {
|
|
776
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
873
777
|
readonly __hex: true;
|
|
874
778
|
} & {
|
|
875
779
|
readonly __address: true;
|
|
@@ -891,19 +795,15 @@ export declare const SignedHydratedBlockToJsonZod: z.ZodMiniTuple<readonly [z.Zo
|
|
|
891
795
|
readonly __hex: true;
|
|
892
796
|
} & {
|
|
893
797
|
readonly __address: true;
|
|
894
|
-
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
895
|
-
readonly __hex: true;
|
|
896
|
-
} & {
|
|
897
|
-
readonly __address: true;
|
|
898
|
-
}, string>>]>>;
|
|
798
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
899
799
|
payload_hashes: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
900
800
|
payload_schemas: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>>;
|
|
901
801
|
previous_hashes: z.ZodMiniArray<z.ZodMiniNullable<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>>;
|
|
902
|
-
$destination: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
802
|
+
$destination: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
903
803
|
readonly __hex: true;
|
|
904
804
|
} & {
|
|
905
805
|
readonly __address: true;
|
|
906
|
-
}, string
|
|
806
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
907
807
|
$sourceQuery: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
908
808
|
$signatures: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>>;
|
|
909
809
|
block: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../index.ts").XL1BlockNumber, number>>;
|
|
@@ -922,11 +822,7 @@ export declare const isSignedHydratedBlockToJson: <T>(value: T) => value is T &
|
|
|
922
822
|
schema: "network.xyo.boundwitness" & {
|
|
923
823
|
readonly __schema: true;
|
|
924
824
|
};
|
|
925
|
-
addresses: ((Lowercase<string> & {
|
|
926
|
-
readonly __hex: true;
|
|
927
|
-
} & {
|
|
928
|
-
readonly __address: true;
|
|
929
|
-
}) | (Lowercase<string> & {
|
|
825
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
930
826
|
readonly __hex: true;
|
|
931
827
|
} & {
|
|
932
828
|
readonly __address: true;
|
|
@@ -939,7 +835,7 @@ export declare const isSignedHydratedBlockToJson: <T>(value: T) => value is T &
|
|
|
939
835
|
chain: import("@xylabs/sdk-js").BrandedHex;
|
|
940
836
|
previous: import("@xylabs/sdk-js").BrandedHash | null;
|
|
941
837
|
$epoch: number;
|
|
942
|
-
$destination?: (Lowercase<string> & {
|
|
838
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
943
839
|
readonly __hex: true;
|
|
944
840
|
} & {
|
|
945
841
|
readonly __address: true;
|
|
@@ -957,11 +853,7 @@ export declare const asSignedHydratedBlockToJson: {
|
|
|
957
853
|
schema: "network.xyo.boundwitness" & {
|
|
958
854
|
readonly __schema: true;
|
|
959
855
|
};
|
|
960
|
-
addresses: ((Lowercase<string> & {
|
|
961
|
-
readonly __hex: true;
|
|
962
|
-
} & {
|
|
963
|
-
readonly __address: true;
|
|
964
|
-
}) | (Lowercase<string> & {
|
|
856
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
965
857
|
readonly __hex: true;
|
|
966
858
|
} & {
|
|
967
859
|
readonly __address: true;
|
|
@@ -974,7 +866,7 @@ export declare const asSignedHydratedBlockToJson: {
|
|
|
974
866
|
chain: import("@xylabs/sdk-js").BrandedHex;
|
|
975
867
|
previous: import("@xylabs/sdk-js").BrandedHash | null;
|
|
976
868
|
$epoch: number;
|
|
977
|
-
$destination?: (Lowercase<string> & {
|
|
869
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
978
870
|
readonly __hex: true;
|
|
979
871
|
} & {
|
|
980
872
|
readonly __address: true;
|
|
@@ -990,11 +882,7 @@ export declare const asSignedHydratedBlockToJson: {
|
|
|
990
882
|
schema: "network.xyo.boundwitness" & {
|
|
991
883
|
readonly __schema: true;
|
|
992
884
|
};
|
|
993
|
-
addresses: ((Lowercase<string> & {
|
|
994
|
-
readonly __hex: true;
|
|
995
|
-
} & {
|
|
996
|
-
readonly __address: true;
|
|
997
|
-
}) | (Lowercase<string> & {
|
|
885
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
998
886
|
readonly __hex: true;
|
|
999
887
|
} & {
|
|
1000
888
|
readonly __address: true;
|
|
@@ -1007,7 +895,7 @@ export declare const asSignedHydratedBlockToJson: {
|
|
|
1007
895
|
chain: import("@xylabs/sdk-js").BrandedHex;
|
|
1008
896
|
previous: import("@xylabs/sdk-js").BrandedHash | null;
|
|
1009
897
|
$epoch: number;
|
|
1010
|
-
$destination?: (Lowercase<string> & {
|
|
898
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1011
899
|
readonly __hex: true;
|
|
1012
900
|
} & {
|
|
1013
901
|
readonly __address: true;
|
|
@@ -1026,11 +914,7 @@ export declare const toSignedHydratedBlockToJson: {
|
|
|
1026
914
|
schema: "network.xyo.boundwitness" & {
|
|
1027
915
|
readonly __schema: true;
|
|
1028
916
|
};
|
|
1029
|
-
addresses: ((Lowercase<string> & {
|
|
1030
|
-
readonly __hex: true;
|
|
1031
|
-
} & {
|
|
1032
|
-
readonly __address: true;
|
|
1033
|
-
}) | (Lowercase<string> & {
|
|
917
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1034
918
|
readonly __hex: true;
|
|
1035
919
|
} & {
|
|
1036
920
|
readonly __address: true;
|
|
@@ -1043,7 +927,7 @@ export declare const toSignedHydratedBlockToJson: {
|
|
|
1043
927
|
chain: import("@xylabs/sdk-js").BrandedHex;
|
|
1044
928
|
previous: import("@xylabs/sdk-js").BrandedHash | null;
|
|
1045
929
|
$epoch: number;
|
|
1046
|
-
$destination?: (Lowercase<string> & {
|
|
930
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1047
931
|
readonly __hex: true;
|
|
1048
932
|
} & {
|
|
1049
933
|
readonly __address: true;
|
|
@@ -1059,11 +943,7 @@ export declare const toSignedHydratedBlockToJson: {
|
|
|
1059
943
|
schema: "network.xyo.boundwitness" & {
|
|
1060
944
|
readonly __schema: true;
|
|
1061
945
|
};
|
|
1062
|
-
addresses: ((Lowercase<string> & {
|
|
1063
|
-
readonly __hex: true;
|
|
1064
|
-
} & {
|
|
1065
|
-
readonly __address: true;
|
|
1066
|
-
}) | (Lowercase<string> & {
|
|
946
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1067
947
|
readonly __hex: true;
|
|
1068
948
|
} & {
|
|
1069
949
|
readonly __address: true;
|
|
@@ -1076,7 +956,7 @@ export declare const toSignedHydratedBlockToJson: {
|
|
|
1076
956
|
chain: import("@xylabs/sdk-js").BrandedHex;
|
|
1077
957
|
previous: import("@xylabs/sdk-js").BrandedHash | null;
|
|
1078
958
|
$epoch: number;
|
|
1079
|
-
$destination?: (Lowercase<string> & {
|
|
959
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1080
960
|
readonly __hex: true;
|
|
1081
961
|
} & {
|
|
1082
962
|
readonly __address: true;
|
|
@@ -1098,19 +978,15 @@ export declare const SignedHydratedBlockWithHashMetaZod: z.ZodMiniTuple<readonly
|
|
|
1098
978
|
readonly __hex: true;
|
|
1099
979
|
} & {
|
|
1100
980
|
readonly __address: true;
|
|
1101
|
-
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
1102
|
-
readonly __hex: true;
|
|
1103
|
-
} & {
|
|
1104
|
-
readonly __address: true;
|
|
1105
|
-
}, string>>]>>;
|
|
981
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
1106
982
|
payload_hashes: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
1107
983
|
payload_schemas: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>>;
|
|
1108
984
|
previous_hashes: z.ZodMiniArray<z.ZodMiniNullable<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>>;
|
|
1109
|
-
$destination: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
985
|
+
$destination: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
1110
986
|
readonly __hex: true;
|
|
1111
987
|
} & {
|
|
1112
988
|
readonly __address: true;
|
|
1113
|
-
}, string
|
|
989
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
1114
990
|
$sourceQuery: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
1115
991
|
$signatures: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>>;
|
|
1116
992
|
block: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../index.ts").XL1BlockNumber, number>>;
|
|
@@ -1137,19 +1013,15 @@ export declare const SignedHydratedBlockWithHashMetaishZod: z.ZodMiniTuple<reado
|
|
|
1137
1013
|
readonly __hex: true;
|
|
1138
1014
|
} & {
|
|
1139
1015
|
readonly __address: true;
|
|
1140
|
-
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
1141
|
-
readonly __hex: true;
|
|
1142
|
-
} & {
|
|
1143
|
-
readonly __address: true;
|
|
1144
|
-
}, string>>]>>;
|
|
1016
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
1145
1017
|
payload_hashes: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
1146
1018
|
payload_schemas: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>>;
|
|
1147
1019
|
previous_hashes: z.ZodMiniArray<z.ZodMiniNullable<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>>;
|
|
1148
|
-
$destination: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
1020
|
+
$destination: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
1149
1021
|
readonly __hex: true;
|
|
1150
1022
|
} & {
|
|
1151
1023
|
readonly __address: true;
|
|
1152
|
-
}, string
|
|
1024
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
1153
1025
|
$sourceQuery: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
1154
1026
|
$signatures: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>>;
|
|
1155
1027
|
block: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../index.ts").XL1BlockNumber, number>>;
|
|
@@ -1170,11 +1042,7 @@ export declare const isSignedHydratedBlockWithHashMeta: <T>(value: T) => value i
|
|
|
1170
1042
|
schema: "network.xyo.boundwitness" & {
|
|
1171
1043
|
readonly __schema: true;
|
|
1172
1044
|
};
|
|
1173
|
-
addresses: ((Lowercase<string> & {
|
|
1174
|
-
readonly __hex: true;
|
|
1175
|
-
} & {
|
|
1176
|
-
readonly __address: true;
|
|
1177
|
-
}) | (Lowercase<string> & {
|
|
1045
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1178
1046
|
readonly __hex: true;
|
|
1179
1047
|
} & {
|
|
1180
1048
|
readonly __address: true;
|
|
@@ -1189,7 +1057,7 @@ export declare const isSignedHydratedBlockWithHashMeta: <T>(value: T) => value i
|
|
|
1189
1057
|
$epoch: number;
|
|
1190
1058
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1191
1059
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1192
|
-
$destination?: (Lowercase<string> & {
|
|
1060
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1193
1061
|
readonly __hex: true;
|
|
1194
1062
|
} & {
|
|
1195
1063
|
readonly __address: true;
|
|
@@ -1209,11 +1077,7 @@ export declare const asSignedHydratedBlockWithHashMeta: {
|
|
|
1209
1077
|
schema: "network.xyo.boundwitness" & {
|
|
1210
1078
|
readonly __schema: true;
|
|
1211
1079
|
};
|
|
1212
|
-
addresses: ((Lowercase<string> & {
|
|
1213
|
-
readonly __hex: true;
|
|
1214
|
-
} & {
|
|
1215
|
-
readonly __address: true;
|
|
1216
|
-
}) | (Lowercase<string> & {
|
|
1080
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1217
1081
|
readonly __hex: true;
|
|
1218
1082
|
} & {
|
|
1219
1083
|
readonly __address: true;
|
|
@@ -1228,7 +1092,7 @@ export declare const asSignedHydratedBlockWithHashMeta: {
|
|
|
1228
1092
|
$epoch: number;
|
|
1229
1093
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1230
1094
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1231
|
-
$destination?: (Lowercase<string> & {
|
|
1095
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1232
1096
|
readonly __hex: true;
|
|
1233
1097
|
} & {
|
|
1234
1098
|
readonly __address: true;
|
|
@@ -1246,11 +1110,7 @@ export declare const asSignedHydratedBlockWithHashMeta: {
|
|
|
1246
1110
|
schema: "network.xyo.boundwitness" & {
|
|
1247
1111
|
readonly __schema: true;
|
|
1248
1112
|
};
|
|
1249
|
-
addresses: ((Lowercase<string> & {
|
|
1250
|
-
readonly __hex: true;
|
|
1251
|
-
} & {
|
|
1252
|
-
readonly __address: true;
|
|
1253
|
-
}) | (Lowercase<string> & {
|
|
1113
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1254
1114
|
readonly __hex: true;
|
|
1255
1115
|
} & {
|
|
1256
1116
|
readonly __address: true;
|
|
@@ -1265,7 +1125,7 @@ export declare const asSignedHydratedBlockWithHashMeta: {
|
|
|
1265
1125
|
$epoch: number;
|
|
1266
1126
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1267
1127
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1268
|
-
$destination?: (Lowercase<string> & {
|
|
1128
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1269
1129
|
readonly __hex: true;
|
|
1270
1130
|
} & {
|
|
1271
1131
|
readonly __address: true;
|
|
@@ -1286,11 +1146,7 @@ export declare const toSignedHydratedBlockWithHashMeta: {
|
|
|
1286
1146
|
schema: "network.xyo.boundwitness" & {
|
|
1287
1147
|
readonly __schema: true;
|
|
1288
1148
|
};
|
|
1289
|
-
addresses: ((Lowercase<string> & {
|
|
1290
|
-
readonly __hex: true;
|
|
1291
|
-
} & {
|
|
1292
|
-
readonly __address: true;
|
|
1293
|
-
}) | (Lowercase<string> & {
|
|
1149
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1294
1150
|
readonly __hex: true;
|
|
1295
1151
|
} & {
|
|
1296
1152
|
readonly __address: true;
|
|
@@ -1305,7 +1161,7 @@ export declare const toSignedHydratedBlockWithHashMeta: {
|
|
|
1305
1161
|
$epoch: number;
|
|
1306
1162
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1307
1163
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1308
|
-
$destination?: (Lowercase<string> & {
|
|
1164
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1309
1165
|
readonly __hex: true;
|
|
1310
1166
|
} & {
|
|
1311
1167
|
readonly __address: true;
|
|
@@ -1323,11 +1179,7 @@ export declare const toSignedHydratedBlockWithHashMeta: {
|
|
|
1323
1179
|
schema: "network.xyo.boundwitness" & {
|
|
1324
1180
|
readonly __schema: true;
|
|
1325
1181
|
};
|
|
1326
|
-
addresses: ((Lowercase<string> & {
|
|
1327
|
-
readonly __hex: true;
|
|
1328
|
-
} & {
|
|
1329
|
-
readonly __address: true;
|
|
1330
|
-
}) | (Lowercase<string> & {
|
|
1182
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1331
1183
|
readonly __hex: true;
|
|
1332
1184
|
} & {
|
|
1333
1185
|
readonly __address: true;
|
|
@@ -1342,7 +1194,7 @@ export declare const toSignedHydratedBlockWithHashMeta: {
|
|
|
1342
1194
|
$epoch: number;
|
|
1343
1195
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1344
1196
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1345
|
-
$destination?: (Lowercase<string> & {
|
|
1197
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1346
1198
|
readonly __hex: true;
|
|
1347
1199
|
} & {
|
|
1348
1200
|
readonly __address: true;
|
|
@@ -1366,19 +1218,15 @@ export declare const SignedHydratedBlockWithStorageMetaZod: z.ZodMiniTuple<reado
|
|
|
1366
1218
|
readonly __hex: true;
|
|
1367
1219
|
} & {
|
|
1368
1220
|
readonly __address: true;
|
|
1369
|
-
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
1370
|
-
readonly __hex: true;
|
|
1371
|
-
} & {
|
|
1372
|
-
readonly __address: true;
|
|
1373
|
-
}, string>>]>>;
|
|
1221
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
1374
1222
|
payload_hashes: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
1375
1223
|
payload_schemas: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>>;
|
|
1376
1224
|
previous_hashes: z.ZodMiniArray<z.ZodMiniNullable<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>>;
|
|
1377
|
-
$destination: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
1225
|
+
$destination: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
1378
1226
|
readonly __hex: true;
|
|
1379
1227
|
} & {
|
|
1380
1228
|
readonly __address: true;
|
|
1381
|
-
}, string
|
|
1229
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
1382
1230
|
$sourceQuery: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
1383
1231
|
$signatures: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>>;
|
|
1384
1232
|
block: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../index.ts").XL1BlockNumber, number>>;
|
|
@@ -1403,11 +1251,7 @@ export declare const isSignedHydratedBlockWithStorageMeta: <T>(value: T) => valu
|
|
|
1403
1251
|
schema: "network.xyo.boundwitness" & {
|
|
1404
1252
|
readonly __schema: true;
|
|
1405
1253
|
};
|
|
1406
|
-
addresses: ((Lowercase<string> & {
|
|
1407
|
-
readonly __hex: true;
|
|
1408
|
-
} & {
|
|
1409
|
-
readonly __address: true;
|
|
1410
|
-
}) | (Lowercase<string> & {
|
|
1254
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1411
1255
|
readonly __hex: true;
|
|
1412
1256
|
} & {
|
|
1413
1257
|
readonly __address: true;
|
|
@@ -1423,7 +1267,7 @@ export declare const isSignedHydratedBlockWithStorageMeta: <T>(value: T) => valu
|
|
|
1423
1267
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1424
1268
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1425
1269
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
1426
|
-
$destination?: (Lowercase<string> & {
|
|
1270
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1427
1271
|
readonly __hex: true;
|
|
1428
1272
|
} & {
|
|
1429
1273
|
readonly __address: true;
|
|
@@ -1444,11 +1288,7 @@ export declare const asSignedHydratedBlockWithStorageMeta: {
|
|
|
1444
1288
|
schema: "network.xyo.boundwitness" & {
|
|
1445
1289
|
readonly __schema: true;
|
|
1446
1290
|
};
|
|
1447
|
-
addresses: ((Lowercase<string> & {
|
|
1448
|
-
readonly __hex: true;
|
|
1449
|
-
} & {
|
|
1450
|
-
readonly __address: true;
|
|
1451
|
-
}) | (Lowercase<string> & {
|
|
1291
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1452
1292
|
readonly __hex: true;
|
|
1453
1293
|
} & {
|
|
1454
1294
|
readonly __address: true;
|
|
@@ -1464,7 +1304,7 @@ export declare const asSignedHydratedBlockWithStorageMeta: {
|
|
|
1464
1304
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1465
1305
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1466
1306
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
1467
|
-
$destination?: (Lowercase<string> & {
|
|
1307
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1468
1308
|
readonly __hex: true;
|
|
1469
1309
|
} & {
|
|
1470
1310
|
readonly __address: true;
|
|
@@ -1483,11 +1323,7 @@ export declare const asSignedHydratedBlockWithStorageMeta: {
|
|
|
1483
1323
|
schema: "network.xyo.boundwitness" & {
|
|
1484
1324
|
readonly __schema: true;
|
|
1485
1325
|
};
|
|
1486
|
-
addresses: ((Lowercase<string> & {
|
|
1487
|
-
readonly __hex: true;
|
|
1488
|
-
} & {
|
|
1489
|
-
readonly __address: true;
|
|
1490
|
-
}) | (Lowercase<string> & {
|
|
1326
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1491
1327
|
readonly __hex: true;
|
|
1492
1328
|
} & {
|
|
1493
1329
|
readonly __address: true;
|
|
@@ -1503,7 +1339,7 @@ export declare const asSignedHydratedBlockWithStorageMeta: {
|
|
|
1503
1339
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1504
1340
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1505
1341
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
1506
|
-
$destination?: (Lowercase<string> & {
|
|
1342
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1507
1343
|
readonly __hex: true;
|
|
1508
1344
|
} & {
|
|
1509
1345
|
readonly __address: true;
|
|
@@ -1525,11 +1361,7 @@ export declare const toSignedHydratedBlockWithStorageMeta: {
|
|
|
1525
1361
|
schema: "network.xyo.boundwitness" & {
|
|
1526
1362
|
readonly __schema: true;
|
|
1527
1363
|
};
|
|
1528
|
-
addresses: ((Lowercase<string> & {
|
|
1529
|
-
readonly __hex: true;
|
|
1530
|
-
} & {
|
|
1531
|
-
readonly __address: true;
|
|
1532
|
-
}) | (Lowercase<string> & {
|
|
1364
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1533
1365
|
readonly __hex: true;
|
|
1534
1366
|
} & {
|
|
1535
1367
|
readonly __address: true;
|
|
@@ -1545,7 +1377,7 @@ export declare const toSignedHydratedBlockWithStorageMeta: {
|
|
|
1545
1377
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1546
1378
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1547
1379
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
1548
|
-
$destination?: (Lowercase<string> & {
|
|
1380
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1549
1381
|
readonly __hex: true;
|
|
1550
1382
|
} & {
|
|
1551
1383
|
readonly __address: true;
|
|
@@ -1564,11 +1396,7 @@ export declare const toSignedHydratedBlockWithStorageMeta: {
|
|
|
1564
1396
|
schema: "network.xyo.boundwitness" & {
|
|
1565
1397
|
readonly __schema: true;
|
|
1566
1398
|
};
|
|
1567
|
-
addresses: ((Lowercase<string> & {
|
|
1568
|
-
readonly __hex: true;
|
|
1569
|
-
} & {
|
|
1570
|
-
readonly __address: true;
|
|
1571
|
-
}) | (Lowercase<string> & {
|
|
1399
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1572
1400
|
readonly __hex: true;
|
|
1573
1401
|
} & {
|
|
1574
1402
|
readonly __address: true;
|
|
@@ -1584,7 +1412,7 @@ export declare const toSignedHydratedBlockWithStorageMeta: {
|
|
|
1584
1412
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
1585
1413
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
1586
1414
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
1587
|
-
$destination?: (Lowercase<string> & {
|
|
1415
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
1588
1416
|
readonly __hex: true;
|
|
1589
1417
|
} & {
|
|
1590
1418
|
readonly __address: true;
|
|
@@ -1609,19 +1437,15 @@ export declare const SignedHydratedBlockWithStorageMetaishZod: z.ZodMiniTuple<re
|
|
|
1609
1437
|
readonly __hex: true;
|
|
1610
1438
|
} & {
|
|
1611
1439
|
readonly __address: true;
|
|
1612
|
-
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
1613
|
-
readonly __hex: true;
|
|
1614
|
-
} & {
|
|
1615
|
-
readonly __address: true;
|
|
1616
|
-
}, string>>]>>;
|
|
1440
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
1617
1441
|
payload_hashes: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
1618
1442
|
payload_schemas: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>>;
|
|
1619
1443
|
previous_hashes: z.ZodMiniArray<z.ZodMiniNullable<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>>;
|
|
1620
|
-
$destination: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
1444
|
+
$destination: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
1621
1445
|
readonly __hex: true;
|
|
1622
1446
|
} & {
|
|
1623
1447
|
readonly __address: true;
|
|
1624
|
-
}, string
|
|
1448
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
1625
1449
|
$sourceQuery: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
1626
1450
|
$signatures: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>>;
|
|
1627
1451
|
block: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../index.ts").XL1BlockNumber, number>>;
|