@xyo-network/xl1-protocol 1.14.11 → 1.14.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/neutral/index.mjs +1 -1
- package/dist/neutral/index.mjs.map +1 -1
- package/dist/neutral/validation/transaction/error.d.ts +2 -2
- package/dist/neutral/validation/transaction/error.d.ts.map +1 -1
- package/dist/neutral/zod/BlockBoundWitness.d.ts +55 -55
- package/dist/neutral/zod/HydratedBlock.d.ts +37 -37
- package/package.json +1 -1
- package/src/validation/transaction/error.ts +2 -2
- package/src/zod/BlockBoundWitness.ts +1 -1
|
@@ -3,7 +3,7 @@ export declare const BlockBoundWitnessFieldsZod: z.ZodObject<{
|
|
|
3
3
|
block: z.ZodPipe<z.ZodNumber, z.ZodTransform<import("../model/index.ts").XL1BlockNumber, number>>;
|
|
4
4
|
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>;
|
|
5
5
|
previous: z.ZodNullable<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>;
|
|
6
|
-
protocol: z.ZodNumber
|
|
6
|
+
protocol: z.ZodOptional<z.ZodNumber>;
|
|
7
7
|
step_hashes: z.ZodOptional<z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>>;
|
|
8
8
|
}, z.core.$strip>;
|
|
9
9
|
export declare const BlockBoundWitnessMetaZod: z.ZodObject<{
|
|
@@ -21,7 +21,7 @@ export declare const BlockBoundWitnessZod: z.ZodObject<{
|
|
|
21
21
|
block: z.ZodPipe<z.ZodNumber, z.ZodTransform<import("../model/index.ts").XL1BlockNumber, number>>;
|
|
22
22
|
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>;
|
|
23
23
|
previous: z.ZodNullable<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>;
|
|
24
|
-
protocol: z.ZodNumber
|
|
24
|
+
protocol: z.ZodOptional<z.ZodNumber>;
|
|
25
25
|
step_hashes: z.ZodOptional<z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>>;
|
|
26
26
|
$epoch: z.ZodNumber;
|
|
27
27
|
}, z.core.$strip>;
|
|
@@ -36,10 +36,10 @@ export declare const isBlockBoundWitness: (value: unknown) => value is {
|
|
|
36
36
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
37
37
|
chain: import("@xylabs/sdk-js").Hex;
|
|
38
38
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
39
|
-
protocol: number;
|
|
40
39
|
$epoch: number;
|
|
41
40
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
42
41
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
42
|
+
protocol?: number | undefined;
|
|
43
43
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
44
44
|
};
|
|
45
45
|
export declare const asBlockBoundWitness: {
|
|
@@ -53,10 +53,10 @@ export declare const asBlockBoundWitness: {
|
|
|
53
53
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
54
54
|
chain: import("@xylabs/sdk-js").Hex;
|
|
55
55
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
56
|
-
protocol: number;
|
|
57
56
|
$epoch: number;
|
|
58
57
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
59
58
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
59
|
+
protocol?: number | undefined;
|
|
60
60
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
61
61
|
} | undefined;
|
|
62
62
|
(value: unknown, assert: import("@xylabs/zod").ZodFactoryConfig): {
|
|
@@ -69,10 +69,10 @@ export declare const asBlockBoundWitness: {
|
|
|
69
69
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
70
70
|
chain: import("@xylabs/sdk-js").Hex;
|
|
71
71
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
72
|
-
protocol: number;
|
|
73
72
|
$epoch: number;
|
|
74
73
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
75
74
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
75
|
+
protocol?: number | undefined;
|
|
76
76
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
77
77
|
};
|
|
78
78
|
};
|
|
@@ -87,10 +87,10 @@ export declare const toBlockBoundWitness: {
|
|
|
87
87
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
88
88
|
chain: import("@xylabs/sdk-js").Hex;
|
|
89
89
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
90
|
-
protocol: number;
|
|
91
90
|
$epoch: number;
|
|
92
91
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
93
92
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
93
|
+
protocol?: number | undefined;
|
|
94
94
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
95
95
|
} | undefined;
|
|
96
96
|
(value: unknown, assert: import("@xylabs/zod").ZodFactoryConfig): {
|
|
@@ -103,10 +103,10 @@ export declare const toBlockBoundWitness: {
|
|
|
103
103
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
104
104
|
chain: import("@xylabs/sdk-js").Hex;
|
|
105
105
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
106
|
-
protocol: number;
|
|
107
106
|
$epoch: number;
|
|
108
107
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
109
108
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
109
|
+
protocol?: number | undefined;
|
|
110
110
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
111
111
|
};
|
|
112
112
|
};
|
|
@@ -122,7 +122,7 @@ export declare const BlockBoundWitnessWithHashMetaZod: z.ZodObject<{
|
|
|
122
122
|
block: z.ZodPipe<z.ZodNumber, z.ZodTransform<import("../model/index.ts").XL1BlockNumber, number>>;
|
|
123
123
|
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>;
|
|
124
124
|
previous: z.ZodNullable<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>;
|
|
125
|
-
protocol: z.ZodNumber
|
|
125
|
+
protocol: z.ZodOptional<z.ZodNumber>;
|
|
126
126
|
step_hashes: z.ZodOptional<z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>>;
|
|
127
127
|
$epoch: z.ZodNumber;
|
|
128
128
|
_hash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>;
|
|
@@ -139,12 +139,12 @@ export declare const isBlockBoundWitnessWithHashMeta: (value: unknown) => value
|
|
|
139
139
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
140
140
|
chain: import("@xylabs/sdk-js").Hex;
|
|
141
141
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
142
|
-
protocol: number;
|
|
143
142
|
$epoch: number;
|
|
144
143
|
_hash: import("@xylabs/sdk-js").Hash;
|
|
145
144
|
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
146
145
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
147
146
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
147
|
+
protocol?: number | undefined;
|
|
148
148
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
149
149
|
};
|
|
150
150
|
export declare const asBlockBoundWitnessWithHashMeta: {
|
|
@@ -158,12 +158,12 @@ export declare const asBlockBoundWitnessWithHashMeta: {
|
|
|
158
158
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
159
159
|
chain: import("@xylabs/sdk-js").Hex;
|
|
160
160
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
161
|
-
protocol: number;
|
|
162
161
|
$epoch: number;
|
|
163
162
|
_hash: import("@xylabs/sdk-js").Hash;
|
|
164
163
|
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
165
164
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
166
165
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
166
|
+
protocol?: number | undefined;
|
|
167
167
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
168
168
|
} | undefined;
|
|
169
169
|
(value: unknown, assert: import("@xylabs/zod").ZodFactoryConfig): {
|
|
@@ -176,12 +176,12 @@ export declare const asBlockBoundWitnessWithHashMeta: {
|
|
|
176
176
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
177
177
|
chain: import("@xylabs/sdk-js").Hex;
|
|
178
178
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
179
|
-
protocol: number;
|
|
180
179
|
$epoch: number;
|
|
181
180
|
_hash: import("@xylabs/sdk-js").Hash;
|
|
182
181
|
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
183
182
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
184
183
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
184
|
+
protocol?: number | undefined;
|
|
185
185
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
186
186
|
};
|
|
187
187
|
};
|
|
@@ -196,12 +196,12 @@ export declare const toBlockBoundWitnessWithHashMeta: {
|
|
|
196
196
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
197
197
|
chain: import("@xylabs/sdk-js").Hex;
|
|
198
198
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
199
|
-
protocol: number;
|
|
200
199
|
$epoch: number;
|
|
201
200
|
_hash: import("@xylabs/sdk-js").Hash;
|
|
202
201
|
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
203
202
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
204
203
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
204
|
+
protocol?: number | undefined;
|
|
205
205
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
206
206
|
} | undefined;
|
|
207
207
|
(value: unknown, assert: import("@xylabs/zod").ZodFactoryConfig): {
|
|
@@ -214,12 +214,12 @@ export declare const toBlockBoundWitnessWithHashMeta: {
|
|
|
214
214
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
215
215
|
chain: import("@xylabs/sdk-js").Hex;
|
|
216
216
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
217
|
-
protocol: number;
|
|
218
217
|
$epoch: number;
|
|
219
218
|
_hash: import("@xylabs/sdk-js").Hash;
|
|
220
219
|
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
221
220
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
222
221
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
222
|
+
protocol?: number | undefined;
|
|
223
223
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
224
224
|
};
|
|
225
225
|
};
|
|
@@ -235,7 +235,7 @@ export declare const BlockBoundWitnessWithStorageMetaZod: z.ZodObject<{
|
|
|
235
235
|
block: z.ZodPipe<z.ZodNumber, z.ZodTransform<import("../model/index.ts").XL1BlockNumber, number>>;
|
|
236
236
|
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>;
|
|
237
237
|
previous: z.ZodNullable<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>;
|
|
238
|
-
protocol: z.ZodNumber
|
|
238
|
+
protocol: z.ZodOptional<z.ZodNumber>;
|
|
239
239
|
step_hashes: z.ZodOptional<z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>>;
|
|
240
240
|
$epoch: z.ZodNumber;
|
|
241
241
|
_hash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>;
|
|
@@ -253,13 +253,13 @@ export declare const isBlockBoundWitnessWithStorageMeta: (value: unknown) => val
|
|
|
253
253
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
254
254
|
chain: import("@xylabs/sdk-js").Hex;
|
|
255
255
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
256
|
-
protocol: number;
|
|
257
256
|
$epoch: number;
|
|
258
257
|
_hash: import("@xylabs/sdk-js").Hash;
|
|
259
258
|
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
260
259
|
_sequence: import("@xyo-network/payload-model").LocalSequence | import("@xyo-network/payload-model").QualifiedSequence;
|
|
261
260
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
262
261
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
262
|
+
protocol?: number | undefined;
|
|
263
263
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
264
264
|
};
|
|
265
265
|
export declare const asBlockBoundWitnessWithStorageMeta: {
|
|
@@ -273,13 +273,13 @@ export declare const asBlockBoundWitnessWithStorageMeta: {
|
|
|
273
273
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
274
274
|
chain: import("@xylabs/sdk-js").Hex;
|
|
275
275
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
276
|
-
protocol: number;
|
|
277
276
|
$epoch: number;
|
|
278
277
|
_hash: import("@xylabs/sdk-js").Hash;
|
|
279
278
|
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
280
279
|
_sequence: import("@xyo-network/payload-model").LocalSequence | import("@xyo-network/payload-model").QualifiedSequence;
|
|
281
280
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
282
281
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
282
|
+
protocol?: number | undefined;
|
|
283
283
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
284
284
|
} | undefined;
|
|
285
285
|
(value: unknown, assert: import("@xylabs/zod").ZodFactoryConfig): {
|
|
@@ -292,13 +292,13 @@ export declare const asBlockBoundWitnessWithStorageMeta: {
|
|
|
292
292
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
293
293
|
chain: import("@xylabs/sdk-js").Hex;
|
|
294
294
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
295
|
-
protocol: number;
|
|
296
295
|
$epoch: number;
|
|
297
296
|
_hash: import("@xylabs/sdk-js").Hash;
|
|
298
297
|
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
299
298
|
_sequence: import("@xyo-network/payload-model").LocalSequence | import("@xyo-network/payload-model").QualifiedSequence;
|
|
300
299
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
301
300
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
301
|
+
protocol?: number | undefined;
|
|
302
302
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
303
303
|
};
|
|
304
304
|
};
|
|
@@ -313,13 +313,13 @@ export declare const toBlockBoundWitnessWithStorageMeta: {
|
|
|
313
313
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
314
314
|
chain: import("@xylabs/sdk-js").Hex;
|
|
315
315
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
316
|
-
protocol: number;
|
|
317
316
|
$epoch: number;
|
|
318
317
|
_hash: import("@xylabs/sdk-js").Hash;
|
|
319
318
|
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
320
319
|
_sequence: import("@xyo-network/payload-model").LocalSequence | import("@xyo-network/payload-model").QualifiedSequence;
|
|
321
320
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
322
321
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
322
|
+
protocol?: number | undefined;
|
|
323
323
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
324
324
|
} | undefined;
|
|
325
325
|
(value: unknown, assert: import("@xylabs/zod").ZodFactoryConfig): {
|
|
@@ -332,13 +332,13 @@ export declare const toBlockBoundWitnessWithStorageMeta: {
|
|
|
332
332
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
333
333
|
chain: import("@xylabs/sdk-js").Hex;
|
|
334
334
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
335
|
-
protocol: number;
|
|
336
335
|
$epoch: number;
|
|
337
336
|
_hash: import("@xylabs/sdk-js").Hash;
|
|
338
337
|
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
339
338
|
_sequence: import("@xyo-network/payload-model").LocalSequence | import("@xyo-network/payload-model").QualifiedSequence;
|
|
340
339
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
341
340
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
341
|
+
protocol?: number | undefined;
|
|
342
342
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
343
343
|
};
|
|
344
344
|
};
|
|
@@ -354,7 +354,7 @@ export declare const UnsignedBlockBoundWitnessZod: z.ZodObject<{
|
|
|
354
354
|
block: z.ZodPipe<z.ZodNumber, z.ZodTransform<import("../model/index.ts").XL1BlockNumber, number>>;
|
|
355
355
|
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>;
|
|
356
356
|
previous: z.ZodNullable<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>;
|
|
357
|
-
protocol: z.ZodNumber
|
|
357
|
+
protocol: z.ZodOptional<z.ZodNumber>;
|
|
358
358
|
step_hashes: z.ZodOptional<z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>>;
|
|
359
359
|
$epoch: z.ZodNumber;
|
|
360
360
|
}, z.core.$strip>;
|
|
@@ -369,10 +369,10 @@ export declare const isUnsignedBlockBoundWitness: (value: unknown) => value is {
|
|
|
369
369
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
370
370
|
chain: import("@xylabs/sdk-js").Hex;
|
|
371
371
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
372
|
-
protocol: number;
|
|
373
372
|
$epoch: number;
|
|
374
373
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
375
374
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
375
|
+
protocol?: number | undefined;
|
|
376
376
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
377
377
|
};
|
|
378
378
|
export declare const asUnsignedBlockBoundWitness: {
|
|
@@ -386,10 +386,10 @@ export declare const asUnsignedBlockBoundWitness: {
|
|
|
386
386
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
387
387
|
chain: import("@xylabs/sdk-js").Hex;
|
|
388
388
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
389
|
-
protocol: number;
|
|
390
389
|
$epoch: number;
|
|
391
390
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
392
391
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
392
|
+
protocol?: number | undefined;
|
|
393
393
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
394
394
|
} | undefined;
|
|
395
395
|
(value: unknown, assert: import("@xylabs/zod").ZodFactoryConfig): {
|
|
@@ -402,10 +402,10 @@ export declare const asUnsignedBlockBoundWitness: {
|
|
|
402
402
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
403
403
|
chain: import("@xylabs/sdk-js").Hex;
|
|
404
404
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
405
|
-
protocol: number;
|
|
406
405
|
$epoch: number;
|
|
407
406
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
408
407
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
408
|
+
protocol?: number | undefined;
|
|
409
409
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
410
410
|
};
|
|
411
411
|
};
|
|
@@ -420,10 +420,10 @@ export declare const toUnsignedBlockBoundWitness: {
|
|
|
420
420
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
421
421
|
chain: import("@xylabs/sdk-js").Hex;
|
|
422
422
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
423
|
-
protocol: number;
|
|
424
423
|
$epoch: number;
|
|
425
424
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
426
425
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
426
|
+
protocol?: number | undefined;
|
|
427
427
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
428
428
|
} | undefined;
|
|
429
429
|
(value: unknown, assert: import("@xylabs/zod").ZodFactoryConfig): {
|
|
@@ -436,10 +436,10 @@ export declare const toUnsignedBlockBoundWitness: {
|
|
|
436
436
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
437
437
|
chain: import("@xylabs/sdk-js").Hex;
|
|
438
438
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
439
|
-
protocol: number;
|
|
440
439
|
$epoch: number;
|
|
441
440
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
442
441
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
442
|
+
protocol?: number | undefined;
|
|
443
443
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
444
444
|
};
|
|
445
445
|
};
|
|
@@ -455,7 +455,7 @@ export declare const UnsignedBlockBoundWitnessWithHashMetaZod: z.ZodObject<{
|
|
|
455
455
|
block: z.ZodPipe<z.ZodNumber, z.ZodTransform<import("../model/index.ts").XL1BlockNumber, number>>;
|
|
456
456
|
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>;
|
|
457
457
|
previous: z.ZodNullable<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>;
|
|
458
|
-
protocol: z.ZodNumber
|
|
458
|
+
protocol: z.ZodOptional<z.ZodNumber>;
|
|
459
459
|
step_hashes: z.ZodOptional<z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>>;
|
|
460
460
|
$epoch: z.ZodNumber;
|
|
461
461
|
_hash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>;
|
|
@@ -472,12 +472,12 @@ export declare const isUnsignedBlockBoundWitnessWithHashMeta: (value: unknown) =
|
|
|
472
472
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
473
473
|
chain: import("@xylabs/sdk-js").Hex;
|
|
474
474
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
475
|
-
protocol: number;
|
|
476
475
|
$epoch: number;
|
|
477
476
|
_hash: import("@xylabs/sdk-js").Hash;
|
|
478
477
|
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
479
478
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
480
479
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
480
|
+
protocol?: number | undefined;
|
|
481
481
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
482
482
|
};
|
|
483
483
|
export declare const asUnsignedBlockBoundWitnessWithHashMeta: {
|
|
@@ -491,12 +491,12 @@ export declare const asUnsignedBlockBoundWitnessWithHashMeta: {
|
|
|
491
491
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
492
492
|
chain: import("@xylabs/sdk-js").Hex;
|
|
493
493
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
494
|
-
protocol: number;
|
|
495
494
|
$epoch: number;
|
|
496
495
|
_hash: import("@xylabs/sdk-js").Hash;
|
|
497
496
|
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
498
497
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
499
498
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
499
|
+
protocol?: number | undefined;
|
|
500
500
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
501
501
|
} | undefined;
|
|
502
502
|
(value: unknown, assert: import("@xylabs/zod").ZodFactoryConfig): {
|
|
@@ -509,12 +509,12 @@ export declare const asUnsignedBlockBoundWitnessWithHashMeta: {
|
|
|
509
509
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
510
510
|
chain: import("@xylabs/sdk-js").Hex;
|
|
511
511
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
512
|
-
protocol: number;
|
|
513
512
|
$epoch: number;
|
|
514
513
|
_hash: import("@xylabs/sdk-js").Hash;
|
|
515
514
|
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
516
515
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
517
516
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
517
|
+
protocol?: number | undefined;
|
|
518
518
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
519
519
|
};
|
|
520
520
|
};
|
|
@@ -529,12 +529,12 @@ export declare const toUnsignedBlockBoundWitnessWithHashMeta: {
|
|
|
529
529
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
530
530
|
chain: import("@xylabs/sdk-js").Hex;
|
|
531
531
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
532
|
-
protocol: number;
|
|
533
532
|
$epoch: number;
|
|
534
533
|
_hash: import("@xylabs/sdk-js").Hash;
|
|
535
534
|
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
536
535
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
537
536
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
537
|
+
protocol?: number | undefined;
|
|
538
538
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
539
539
|
} | undefined;
|
|
540
540
|
(value: unknown, assert: import("@xylabs/zod").ZodFactoryConfig): {
|
|
@@ -547,12 +547,12 @@ export declare const toUnsignedBlockBoundWitnessWithHashMeta: {
|
|
|
547
547
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
548
548
|
chain: import("@xylabs/sdk-js").Hex;
|
|
549
549
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
550
|
-
protocol: number;
|
|
551
550
|
$epoch: number;
|
|
552
551
|
_hash: import("@xylabs/sdk-js").Hash;
|
|
553
552
|
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
554
553
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
555
554
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
555
|
+
protocol?: number | undefined;
|
|
556
556
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
557
557
|
};
|
|
558
558
|
};
|
|
@@ -568,7 +568,7 @@ export declare const UnsignedBlockBoundWitnessWithStorageMetaZod: z.ZodObject<{
|
|
|
568
568
|
block: z.ZodPipe<z.ZodNumber, z.ZodTransform<import("../model/index.ts").XL1BlockNumber, number>>;
|
|
569
569
|
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>;
|
|
570
570
|
previous: z.ZodNullable<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>;
|
|
571
|
-
protocol: z.ZodNumber
|
|
571
|
+
protocol: z.ZodOptional<z.ZodNumber>;
|
|
572
572
|
step_hashes: z.ZodOptional<z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>>;
|
|
573
573
|
$epoch: z.ZodNumber;
|
|
574
574
|
_hash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>;
|
|
@@ -586,13 +586,13 @@ export declare const isUnsignedBlockBoundWitnessWithStorageMeta: (value: unknown
|
|
|
586
586
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
587
587
|
chain: import("@xylabs/sdk-js").Hex;
|
|
588
588
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
589
|
-
protocol: number;
|
|
590
589
|
$epoch: number;
|
|
591
590
|
_hash: import("@xylabs/sdk-js").Hash;
|
|
592
591
|
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
593
592
|
_sequence: import("@xyo-network/payload-model").LocalSequence | import("@xyo-network/payload-model").QualifiedSequence;
|
|
594
593
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
595
594
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
595
|
+
protocol?: number | undefined;
|
|
596
596
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
597
597
|
};
|
|
598
598
|
export declare const asUnsignedBlockBoundWitnessWithStorageMeta: {
|
|
@@ -606,13 +606,13 @@ export declare const asUnsignedBlockBoundWitnessWithStorageMeta: {
|
|
|
606
606
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
607
607
|
chain: import("@xylabs/sdk-js").Hex;
|
|
608
608
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
609
|
-
protocol: number;
|
|
610
609
|
$epoch: number;
|
|
611
610
|
_hash: import("@xylabs/sdk-js").Hash;
|
|
612
611
|
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
613
612
|
_sequence: import("@xyo-network/payload-model").LocalSequence | import("@xyo-network/payload-model").QualifiedSequence;
|
|
614
613
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
615
614
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
615
|
+
protocol?: number | undefined;
|
|
616
616
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
617
617
|
} | undefined;
|
|
618
618
|
(value: unknown, assert: import("@xylabs/zod").ZodFactoryConfig): {
|
|
@@ -625,13 +625,13 @@ export declare const asUnsignedBlockBoundWitnessWithStorageMeta: {
|
|
|
625
625
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
626
626
|
chain: import("@xylabs/sdk-js").Hex;
|
|
627
627
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
628
|
-
protocol: number;
|
|
629
628
|
$epoch: number;
|
|
630
629
|
_hash: import("@xylabs/sdk-js").Hash;
|
|
631
630
|
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
632
631
|
_sequence: import("@xyo-network/payload-model").LocalSequence | import("@xyo-network/payload-model").QualifiedSequence;
|
|
633
632
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
634
633
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
634
|
+
protocol?: number | undefined;
|
|
635
635
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
636
636
|
};
|
|
637
637
|
};
|
|
@@ -646,13 +646,13 @@ export declare const toUnsignedBlockBoundWitnessWithStorageMeta: {
|
|
|
646
646
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
647
647
|
chain: import("@xylabs/sdk-js").Hex;
|
|
648
648
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
649
|
-
protocol: number;
|
|
650
649
|
$epoch: number;
|
|
651
650
|
_hash: import("@xylabs/sdk-js").Hash;
|
|
652
651
|
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
653
652
|
_sequence: import("@xyo-network/payload-model").LocalSequence | import("@xyo-network/payload-model").QualifiedSequence;
|
|
654
653
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
655
654
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
655
|
+
protocol?: number | undefined;
|
|
656
656
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
657
657
|
} | undefined;
|
|
658
658
|
(value: unknown, assert: import("@xylabs/zod").ZodFactoryConfig): {
|
|
@@ -665,13 +665,13 @@ export declare const toUnsignedBlockBoundWitnessWithStorageMeta: {
|
|
|
665
665
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
666
666
|
chain: import("@xylabs/sdk-js").Hex;
|
|
667
667
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
668
|
-
protocol: number;
|
|
669
668
|
$epoch: number;
|
|
670
669
|
_hash: import("@xylabs/sdk-js").Hash;
|
|
671
670
|
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
672
671
|
_sequence: import("@xyo-network/payload-model").LocalSequence | import("@xyo-network/payload-model").QualifiedSequence;
|
|
673
672
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
674
673
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
674
|
+
protocol?: number | undefined;
|
|
675
675
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
676
676
|
};
|
|
677
677
|
};
|
|
@@ -687,7 +687,7 @@ export declare const SignedBlockBoundWitnessZod: z.ZodObject<{
|
|
|
687
687
|
block: z.ZodPipe<z.ZodNumber, z.ZodTransform<import("../model/index.ts").XL1BlockNumber, number>>;
|
|
688
688
|
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>;
|
|
689
689
|
previous: z.ZodNullable<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>;
|
|
690
|
-
protocol: z.ZodNumber
|
|
690
|
+
protocol: z.ZodOptional<z.ZodNumber>;
|
|
691
691
|
step_hashes: z.ZodOptional<z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>>;
|
|
692
692
|
$epoch: z.ZodNumber;
|
|
693
693
|
}, z.core.$strip>;
|
|
@@ -702,10 +702,10 @@ export declare const isSignedBlockBoundWitness: (value: unknown) => value is {
|
|
|
702
702
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
703
703
|
chain: import("@xylabs/sdk-js").Hex;
|
|
704
704
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
705
|
-
protocol: number;
|
|
706
705
|
$epoch: number;
|
|
707
706
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
708
707
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
708
|
+
protocol?: number | undefined;
|
|
709
709
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
710
710
|
};
|
|
711
711
|
export declare const asSignedBlockBoundWitness: {
|
|
@@ -719,10 +719,10 @@ export declare const asSignedBlockBoundWitness: {
|
|
|
719
719
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
720
720
|
chain: import("@xylabs/sdk-js").Hex;
|
|
721
721
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
722
|
-
protocol: number;
|
|
723
722
|
$epoch: number;
|
|
724
723
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
725
724
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
725
|
+
protocol?: number | undefined;
|
|
726
726
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
727
727
|
} | undefined;
|
|
728
728
|
(value: unknown, assert: import("@xylabs/zod").ZodFactoryConfig): {
|
|
@@ -735,10 +735,10 @@ export declare const asSignedBlockBoundWitness: {
|
|
|
735
735
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
736
736
|
chain: import("@xylabs/sdk-js").Hex;
|
|
737
737
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
738
|
-
protocol: number;
|
|
739
738
|
$epoch: number;
|
|
740
739
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
741
740
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
741
|
+
protocol?: number | undefined;
|
|
742
742
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
743
743
|
};
|
|
744
744
|
};
|
|
@@ -753,10 +753,10 @@ export declare const toSignedBlockBoundWitness: {
|
|
|
753
753
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
754
754
|
chain: import("@xylabs/sdk-js").Hex;
|
|
755
755
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
756
|
-
protocol: number;
|
|
757
756
|
$epoch: number;
|
|
758
757
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
759
758
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
759
|
+
protocol?: number | undefined;
|
|
760
760
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
761
761
|
} | undefined;
|
|
762
762
|
(value: unknown, assert: import("@xylabs/zod").ZodFactoryConfig): {
|
|
@@ -769,10 +769,10 @@ export declare const toSignedBlockBoundWitness: {
|
|
|
769
769
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
770
770
|
chain: import("@xylabs/sdk-js").Hex;
|
|
771
771
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
772
|
-
protocol: number;
|
|
773
772
|
$epoch: number;
|
|
774
773
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
775
774
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
775
|
+
protocol?: number | undefined;
|
|
776
776
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
777
777
|
};
|
|
778
778
|
};
|
|
@@ -788,7 +788,7 @@ export declare const SignedBlockBoundWitnessWithHashMetaZod: z.ZodObject<{
|
|
|
788
788
|
block: z.ZodPipe<z.ZodNumber, z.ZodTransform<import("../model/index.ts").XL1BlockNumber, number>>;
|
|
789
789
|
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>;
|
|
790
790
|
previous: z.ZodNullable<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>;
|
|
791
|
-
protocol: z.ZodNumber
|
|
791
|
+
protocol: z.ZodOptional<z.ZodNumber>;
|
|
792
792
|
step_hashes: z.ZodOptional<z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>>;
|
|
793
793
|
$epoch: z.ZodNumber;
|
|
794
794
|
_hash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>;
|
|
@@ -805,12 +805,12 @@ export declare const isSignedBlockBoundWitnessWithHashMeta: (value: unknown) =>
|
|
|
805
805
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
806
806
|
chain: import("@xylabs/sdk-js").Hex;
|
|
807
807
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
808
|
-
protocol: number;
|
|
809
808
|
$epoch: number;
|
|
810
809
|
_hash: import("@xylabs/sdk-js").Hash;
|
|
811
810
|
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
812
811
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
813
812
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
813
|
+
protocol?: number | undefined;
|
|
814
814
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
815
815
|
};
|
|
816
816
|
export declare const asSignedBlockBoundWitnessWithHashMeta: {
|
|
@@ -824,12 +824,12 @@ export declare const asSignedBlockBoundWitnessWithHashMeta: {
|
|
|
824
824
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
825
825
|
chain: import("@xylabs/sdk-js").Hex;
|
|
826
826
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
827
|
-
protocol: number;
|
|
828
827
|
$epoch: number;
|
|
829
828
|
_hash: import("@xylabs/sdk-js").Hash;
|
|
830
829
|
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
831
830
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
832
831
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
832
|
+
protocol?: number | undefined;
|
|
833
833
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
834
834
|
} | undefined;
|
|
835
835
|
(value: unknown, assert: import("@xylabs/zod").ZodFactoryConfig): {
|
|
@@ -842,12 +842,12 @@ export declare const asSignedBlockBoundWitnessWithHashMeta: {
|
|
|
842
842
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
843
843
|
chain: import("@xylabs/sdk-js").Hex;
|
|
844
844
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
845
|
-
protocol: number;
|
|
846
845
|
$epoch: number;
|
|
847
846
|
_hash: import("@xylabs/sdk-js").Hash;
|
|
848
847
|
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
849
848
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
850
849
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
850
|
+
protocol?: number | undefined;
|
|
851
851
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
852
852
|
};
|
|
853
853
|
};
|
|
@@ -862,12 +862,12 @@ export declare const toSignedBlockBoundWitnessWithHashMeta: {
|
|
|
862
862
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
863
863
|
chain: import("@xylabs/sdk-js").Hex;
|
|
864
864
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
865
|
-
protocol: number;
|
|
866
865
|
$epoch: number;
|
|
867
866
|
_hash: import("@xylabs/sdk-js").Hash;
|
|
868
867
|
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
869
868
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
870
869
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
870
|
+
protocol?: number | undefined;
|
|
871
871
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
872
872
|
} | undefined;
|
|
873
873
|
(value: unknown, assert: import("@xylabs/zod").ZodFactoryConfig): {
|
|
@@ -880,12 +880,12 @@ export declare const toSignedBlockBoundWitnessWithHashMeta: {
|
|
|
880
880
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
881
881
|
chain: import("@xylabs/sdk-js").Hex;
|
|
882
882
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
883
|
-
protocol: number;
|
|
884
883
|
$epoch: number;
|
|
885
884
|
_hash: import("@xylabs/sdk-js").Hash;
|
|
886
885
|
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
887
886
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
888
887
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
888
|
+
protocol?: number | undefined;
|
|
889
889
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
890
890
|
};
|
|
891
891
|
};
|
|
@@ -901,7 +901,7 @@ export declare const SignedBlockBoundWitnessWithStorageMetaZod: z.ZodObject<{
|
|
|
901
901
|
block: z.ZodPipe<z.ZodNumber, z.ZodTransform<import("../model/index.ts").XL1BlockNumber, number>>;
|
|
902
902
|
chain: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hex, string>>;
|
|
903
903
|
previous: z.ZodNullable<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>;
|
|
904
|
-
protocol: z.ZodNumber
|
|
904
|
+
protocol: z.ZodOptional<z.ZodNumber>;
|
|
905
905
|
step_hashes: z.ZodOptional<z.ZodArray<z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>>>;
|
|
906
906
|
$epoch: z.ZodNumber;
|
|
907
907
|
_hash: z.ZodPipe<z.ZodString, z.ZodTransform<import("@xylabs/sdk-js").Hash, string>>;
|
|
@@ -919,13 +919,13 @@ export declare const isSignedBlockBoundWitnessWithStorageMeta: (value: unknown)
|
|
|
919
919
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
920
920
|
chain: import("@xylabs/sdk-js").Hex;
|
|
921
921
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
922
|
-
protocol: number;
|
|
923
922
|
$epoch: number;
|
|
924
923
|
_hash: import("@xylabs/sdk-js").Hash;
|
|
925
924
|
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
926
925
|
_sequence: import("@xyo-network/payload-model").LocalSequence | import("@xyo-network/payload-model").QualifiedSequence;
|
|
927
926
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
928
927
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
928
|
+
protocol?: number | undefined;
|
|
929
929
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
930
930
|
};
|
|
931
931
|
export declare const asSignedBlockBoundWitnessWithStorageMeta: {
|
|
@@ -939,13 +939,13 @@ export declare const asSignedBlockBoundWitnessWithStorageMeta: {
|
|
|
939
939
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
940
940
|
chain: import("@xylabs/sdk-js").Hex;
|
|
941
941
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
942
|
-
protocol: number;
|
|
943
942
|
$epoch: number;
|
|
944
943
|
_hash: import("@xylabs/sdk-js").Hash;
|
|
945
944
|
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
946
945
|
_sequence: import("@xyo-network/payload-model").LocalSequence | import("@xyo-network/payload-model").QualifiedSequence;
|
|
947
946
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
948
947
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
948
|
+
protocol?: number | undefined;
|
|
949
949
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
950
950
|
} | undefined;
|
|
951
951
|
(value: unknown, assert: import("@xylabs/zod").ZodFactoryConfig): {
|
|
@@ -958,13 +958,13 @@ export declare const asSignedBlockBoundWitnessWithStorageMeta: {
|
|
|
958
958
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
959
959
|
chain: import("@xylabs/sdk-js").Hex;
|
|
960
960
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
961
|
-
protocol: number;
|
|
962
961
|
$epoch: number;
|
|
963
962
|
_hash: import("@xylabs/sdk-js").Hash;
|
|
964
963
|
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
965
964
|
_sequence: import("@xyo-network/payload-model").LocalSequence | import("@xyo-network/payload-model").QualifiedSequence;
|
|
966
965
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
967
966
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
967
|
+
protocol?: number | undefined;
|
|
968
968
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
969
969
|
};
|
|
970
970
|
};
|
|
@@ -979,13 +979,13 @@ export declare const toSignedBlockBoundWitnessWithStorageMeta: {
|
|
|
979
979
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
980
980
|
chain: import("@xylabs/sdk-js").Hex;
|
|
981
981
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
982
|
-
protocol: number;
|
|
983
982
|
$epoch: number;
|
|
984
983
|
_hash: import("@xylabs/sdk-js").Hash;
|
|
985
984
|
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
986
985
|
_sequence: import("@xyo-network/payload-model").LocalSequence | import("@xyo-network/payload-model").QualifiedSequence;
|
|
987
986
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
988
987
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
988
|
+
protocol?: number | undefined;
|
|
989
989
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
990
990
|
} | undefined;
|
|
991
991
|
(value: unknown, assert: import("@xylabs/zod").ZodFactoryConfig): {
|
|
@@ -998,13 +998,13 @@ export declare const toSignedBlockBoundWitnessWithStorageMeta: {
|
|
|
998
998
|
block: import("../model/index.ts").XL1BlockNumber;
|
|
999
999
|
chain: import("@xylabs/sdk-js").Hex;
|
|
1000
1000
|
previous: import("@xylabs/sdk-js").Hash | null;
|
|
1001
|
-
protocol: number;
|
|
1002
1001
|
$epoch: number;
|
|
1003
1002
|
_hash: import("@xylabs/sdk-js").Hash;
|
|
1004
1003
|
_dataHash: import("@xylabs/sdk-js").Hash;
|
|
1005
1004
|
_sequence: import("@xyo-network/payload-model").LocalSequence | import("@xyo-network/payload-model").QualifiedSequence;
|
|
1006
1005
|
$destination?: import("@xylabs/sdk-js").Address | undefined;
|
|
1007
1006
|
$sourceQuery?: import("@xylabs/sdk-js").Hash | undefined;
|
|
1007
|
+
protocol?: number | undefined;
|
|
1008
1008
|
step_hashes?: import("@xylabs/sdk-js").Hash[] | undefined;
|
|
1009
1009
|
};
|
|
1010
1010
|
};
|