@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
|
@@ -26,19 +26,15 @@ export declare const BlockBoundWitnessZod: z.ZodMiniObject<{
|
|
|
26
26
|
readonly __hex: true;
|
|
27
27
|
} & {
|
|
28
28
|
readonly __address: true;
|
|
29
|
-
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
30
|
-
readonly __hex: true;
|
|
31
|
-
} & {
|
|
32
|
-
readonly __address: true;
|
|
33
|
-
}, string>>]>>;
|
|
29
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
34
30
|
payload_hashes: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
35
31
|
payload_schemas: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>>;
|
|
36
32
|
previous_hashes: z.ZodMiniArray<z.ZodMiniNullable<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>>;
|
|
37
|
-
$destination: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
33
|
+
$destination: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
38
34
|
readonly __hex: true;
|
|
39
35
|
} & {
|
|
40
36
|
readonly __address: true;
|
|
41
|
-
}, string
|
|
37
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
42
38
|
$sourceQuery: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
43
39
|
$signatures: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>, z.ZodMiniNull]>>;
|
|
44
40
|
}, z.core.$strip>;
|
|
@@ -57,18 +53,14 @@ export declare const isBlockBoundWitness: <T>(value: T) => value is T & {
|
|
|
57
53
|
readonly __hex: true;
|
|
58
54
|
} & {
|
|
59
55
|
readonly __address: true;
|
|
60
|
-
}) | (
|
|
61
|
-
readonly __hex: true;
|
|
62
|
-
} & {
|
|
63
|
-
readonly __address: true;
|
|
64
|
-
}))[];
|
|
56
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
65
57
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
66
58
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
67
59
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
68
60
|
$signatures: (import("@xylabs/sdk-js").BrandedHex | null)[];
|
|
69
61
|
protocol?: number | undefined;
|
|
70
62
|
step_hashes?: import("@xylabs/sdk-js").BrandedHash[] | undefined;
|
|
71
|
-
$destination?: (Lowercase<string> & {
|
|
63
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
72
64
|
readonly __hex: true;
|
|
73
65
|
} & {
|
|
74
66
|
readonly __address: true;
|
|
@@ -89,18 +81,14 @@ export declare const asBlockBoundWitness: {
|
|
|
89
81
|
readonly __hex: true;
|
|
90
82
|
} & {
|
|
91
83
|
readonly __address: true;
|
|
92
|
-
}) | (
|
|
93
|
-
readonly __hex: true;
|
|
94
|
-
} & {
|
|
95
|
-
readonly __address: true;
|
|
96
|
-
}))[];
|
|
84
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
97
85
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
98
86
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
99
87
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
100
88
|
$signatures: (import("@xylabs/sdk-js").BrandedHex | null)[];
|
|
101
89
|
protocol?: number | undefined;
|
|
102
90
|
step_hashes?: import("@xylabs/sdk-js").BrandedHash[] | undefined;
|
|
103
|
-
$destination?: (Lowercase<string> & {
|
|
91
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
104
92
|
readonly __hex: true;
|
|
105
93
|
} & {
|
|
106
94
|
readonly __address: true;
|
|
@@ -119,18 +107,14 @@ export declare const asBlockBoundWitness: {
|
|
|
119
107
|
readonly __hex: true;
|
|
120
108
|
} & {
|
|
121
109
|
readonly __address: true;
|
|
122
|
-
}) | (
|
|
123
|
-
readonly __hex: true;
|
|
124
|
-
} & {
|
|
125
|
-
readonly __address: true;
|
|
126
|
-
}))[];
|
|
110
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
127
111
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
128
112
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
129
113
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
130
114
|
$signatures: (import("@xylabs/sdk-js").BrandedHex | null)[];
|
|
131
115
|
protocol?: number | undefined;
|
|
132
116
|
step_hashes?: import("@xylabs/sdk-js").BrandedHash[] | undefined;
|
|
133
|
-
$destination?: (Lowercase<string> & {
|
|
117
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
134
118
|
readonly __hex: true;
|
|
135
119
|
} & {
|
|
136
120
|
readonly __address: true;
|
|
@@ -152,18 +136,14 @@ export declare const toBlockBoundWitness: {
|
|
|
152
136
|
readonly __hex: true;
|
|
153
137
|
} & {
|
|
154
138
|
readonly __address: true;
|
|
155
|
-
}) | (
|
|
156
|
-
readonly __hex: true;
|
|
157
|
-
} & {
|
|
158
|
-
readonly __address: true;
|
|
159
|
-
}))[];
|
|
139
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
160
140
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
161
141
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
162
142
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
163
143
|
$signatures: (import("@xylabs/sdk-js").BrandedHex | null)[];
|
|
164
144
|
protocol?: number | undefined;
|
|
165
145
|
step_hashes?: import("@xylabs/sdk-js").BrandedHash[] | undefined;
|
|
166
|
-
$destination?: (Lowercase<string> & {
|
|
146
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
167
147
|
readonly __hex: true;
|
|
168
148
|
} & {
|
|
169
149
|
readonly __address: true;
|
|
@@ -182,18 +162,14 @@ export declare const toBlockBoundWitness: {
|
|
|
182
162
|
readonly __hex: true;
|
|
183
163
|
} & {
|
|
184
164
|
readonly __address: true;
|
|
185
|
-
}) | (
|
|
186
|
-
readonly __hex: true;
|
|
187
|
-
} & {
|
|
188
|
-
readonly __address: true;
|
|
189
|
-
}))[];
|
|
165
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
190
166
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
191
167
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
192
168
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
193
169
|
$signatures: (import("@xylabs/sdk-js").BrandedHex | null)[];
|
|
194
170
|
protocol?: number | undefined;
|
|
195
171
|
step_hashes?: import("@xylabs/sdk-js").BrandedHash[] | undefined;
|
|
196
|
-
$destination?: (Lowercase<string> & {
|
|
172
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
197
173
|
readonly __hex: true;
|
|
198
174
|
} & {
|
|
199
175
|
readonly __address: true;
|
|
@@ -216,19 +192,15 @@ export declare const BlockBoundWitnessWithHashMetaZod: z.ZodMiniObject<{
|
|
|
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>>;
|
|
@@ -250,11 +222,7 @@ export declare const isBlockBoundWitnessWithHashMeta: <T>(value: T) => value is
|
|
|
250
222
|
readonly __hex: true;
|
|
251
223
|
} & {
|
|
252
224
|
readonly __address: true;
|
|
253
|
-
}) | (
|
|
254
|
-
readonly __hex: true;
|
|
255
|
-
} & {
|
|
256
|
-
readonly __address: true;
|
|
257
|
-
}))[];
|
|
225
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
258
226
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
259
227
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
260
228
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
@@ -263,7 +231,7 @@ export declare const isBlockBoundWitnessWithHashMeta: <T>(value: T) => value is
|
|
|
263
231
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
264
232
|
protocol?: number | undefined;
|
|
265
233
|
step_hashes?: import("@xylabs/sdk-js").BrandedHash[] | undefined;
|
|
266
|
-
$destination?: (Lowercase<string> & {
|
|
234
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
267
235
|
readonly __hex: true;
|
|
268
236
|
} & {
|
|
269
237
|
readonly __address: true;
|
|
@@ -284,11 +252,7 @@ export declare const asBlockBoundWitnessWithHashMeta: {
|
|
|
284
252
|
readonly __hex: true;
|
|
285
253
|
} & {
|
|
286
254
|
readonly __address: true;
|
|
287
|
-
}) | (
|
|
288
|
-
readonly __hex: true;
|
|
289
|
-
} & {
|
|
290
|
-
readonly __address: true;
|
|
291
|
-
}))[];
|
|
255
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
292
256
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
293
257
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
294
258
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
@@ -297,7 +261,7 @@ export declare const asBlockBoundWitnessWithHashMeta: {
|
|
|
297
261
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
298
262
|
protocol?: number | undefined;
|
|
299
263
|
step_hashes?: import("@xylabs/sdk-js").BrandedHash[] | undefined;
|
|
300
|
-
$destination?: (Lowercase<string> & {
|
|
264
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
301
265
|
readonly __hex: true;
|
|
302
266
|
} & {
|
|
303
267
|
readonly __address: true;
|
|
@@ -316,11 +280,7 @@ export declare const asBlockBoundWitnessWithHashMeta: {
|
|
|
316
280
|
readonly __hex: true;
|
|
317
281
|
} & {
|
|
318
282
|
readonly __address: true;
|
|
319
|
-
}) | (
|
|
320
|
-
readonly __hex: true;
|
|
321
|
-
} & {
|
|
322
|
-
readonly __address: true;
|
|
323
|
-
}))[];
|
|
283
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
324
284
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
325
285
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
326
286
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
@@ -329,7 +289,7 @@ export declare const asBlockBoundWitnessWithHashMeta: {
|
|
|
329
289
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
330
290
|
protocol?: number | undefined;
|
|
331
291
|
step_hashes?: import("@xylabs/sdk-js").BrandedHash[] | undefined;
|
|
332
|
-
$destination?: (Lowercase<string> & {
|
|
292
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
333
293
|
readonly __hex: true;
|
|
334
294
|
} & {
|
|
335
295
|
readonly __address: true;
|
|
@@ -351,11 +311,7 @@ export declare const toBlockBoundWitnessWithHashMeta: {
|
|
|
351
311
|
readonly __hex: true;
|
|
352
312
|
} & {
|
|
353
313
|
readonly __address: true;
|
|
354
|
-
}) | (
|
|
355
|
-
readonly __hex: true;
|
|
356
|
-
} & {
|
|
357
|
-
readonly __address: true;
|
|
358
|
-
}))[];
|
|
314
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
359
315
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
360
316
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
361
317
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
@@ -364,7 +320,7 @@ export declare const toBlockBoundWitnessWithHashMeta: {
|
|
|
364
320
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
365
321
|
protocol?: number | undefined;
|
|
366
322
|
step_hashes?: import("@xylabs/sdk-js").BrandedHash[] | undefined;
|
|
367
|
-
$destination?: (Lowercase<string> & {
|
|
323
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
368
324
|
readonly __hex: true;
|
|
369
325
|
} & {
|
|
370
326
|
readonly __address: true;
|
|
@@ -383,11 +339,7 @@ export declare const toBlockBoundWitnessWithHashMeta: {
|
|
|
383
339
|
readonly __hex: true;
|
|
384
340
|
} & {
|
|
385
341
|
readonly __address: true;
|
|
386
|
-
}) | (
|
|
387
|
-
readonly __hex: true;
|
|
388
|
-
} & {
|
|
389
|
-
readonly __address: true;
|
|
390
|
-
}))[];
|
|
342
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
391
343
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
392
344
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
393
345
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
@@ -396,7 +348,7 @@ export declare const toBlockBoundWitnessWithHashMeta: {
|
|
|
396
348
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
397
349
|
protocol?: number | undefined;
|
|
398
350
|
step_hashes?: import("@xylabs/sdk-js").BrandedHash[] | undefined;
|
|
399
|
-
$destination?: (Lowercase<string> & {
|
|
351
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
400
352
|
readonly __hex: true;
|
|
401
353
|
} & {
|
|
402
354
|
readonly __address: true;
|
|
@@ -419,19 +371,15 @@ export declare const BlockBoundWitnessWithStorageMetaZod: z.ZodMiniObject<{
|
|
|
419
371
|
readonly __hex: true;
|
|
420
372
|
} & {
|
|
421
373
|
readonly __address: true;
|
|
422
|
-
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
423
|
-
readonly __hex: true;
|
|
424
|
-
} & {
|
|
425
|
-
readonly __address: true;
|
|
426
|
-
}, string>>]>>;
|
|
374
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
427
375
|
payload_hashes: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
428
376
|
payload_schemas: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>>;
|
|
429
377
|
previous_hashes: z.ZodMiniArray<z.ZodMiniNullable<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>>;
|
|
430
|
-
$destination: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
378
|
+
$destination: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
431
379
|
readonly __hex: true;
|
|
432
380
|
} & {
|
|
433
381
|
readonly __address: true;
|
|
434
|
-
}, string
|
|
382
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuant1Address, string>>]>>;
|
|
435
383
|
$sourceQuery: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
436
384
|
$signatures: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>, z.ZodMiniNull]>>;
|
|
437
385
|
_hash: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
@@ -454,11 +402,7 @@ export declare const isBlockBoundWitnessWithStorageMeta: <T>(value: T) => value
|
|
|
454
402
|
readonly __hex: true;
|
|
455
403
|
} & {
|
|
456
404
|
readonly __address: true;
|
|
457
|
-
}) | (
|
|
458
|
-
readonly __hex: true;
|
|
459
|
-
} & {
|
|
460
|
-
readonly __address: true;
|
|
461
|
-
}))[];
|
|
405
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
462
406
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
463
407
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
464
408
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
@@ -468,7 +412,7 @@ export declare const isBlockBoundWitnessWithStorageMeta: <T>(value: T) => value
|
|
|
468
412
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
469
413
|
protocol?: number | undefined;
|
|
470
414
|
step_hashes?: import("@xylabs/sdk-js").BrandedHash[] | undefined;
|
|
471
|
-
$destination?: (Lowercase<string> & {
|
|
415
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
472
416
|
readonly __hex: true;
|
|
473
417
|
} & {
|
|
474
418
|
readonly __address: true;
|
|
@@ -489,11 +433,7 @@ export declare const asBlockBoundWitnessWithStorageMeta: {
|
|
|
489
433
|
readonly __hex: true;
|
|
490
434
|
} & {
|
|
491
435
|
readonly __address: true;
|
|
492
|
-
}) | (
|
|
493
|
-
readonly __hex: true;
|
|
494
|
-
} & {
|
|
495
|
-
readonly __address: true;
|
|
496
|
-
}))[];
|
|
436
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
497
437
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
498
438
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
499
439
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
@@ -503,7 +443,7 @@ export declare const asBlockBoundWitnessWithStorageMeta: {
|
|
|
503
443
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
504
444
|
protocol?: number | undefined;
|
|
505
445
|
step_hashes?: import("@xylabs/sdk-js").BrandedHash[] | undefined;
|
|
506
|
-
$destination?: (Lowercase<string> & {
|
|
446
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
507
447
|
readonly __hex: true;
|
|
508
448
|
} & {
|
|
509
449
|
readonly __address: true;
|
|
@@ -522,11 +462,7 @@ export declare const asBlockBoundWitnessWithStorageMeta: {
|
|
|
522
462
|
readonly __hex: true;
|
|
523
463
|
} & {
|
|
524
464
|
readonly __address: true;
|
|
525
|
-
}) | (
|
|
526
|
-
readonly __hex: true;
|
|
527
|
-
} & {
|
|
528
|
-
readonly __address: true;
|
|
529
|
-
}))[];
|
|
465
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
530
466
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
531
467
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
532
468
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
@@ -536,7 +472,7 @@ export declare const asBlockBoundWitnessWithStorageMeta: {
|
|
|
536
472
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
537
473
|
protocol?: number | undefined;
|
|
538
474
|
step_hashes?: import("@xylabs/sdk-js").BrandedHash[] | undefined;
|
|
539
|
-
$destination?: (Lowercase<string> & {
|
|
475
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
540
476
|
readonly __hex: true;
|
|
541
477
|
} & {
|
|
542
478
|
readonly __address: true;
|
|
@@ -558,11 +494,7 @@ export declare const toBlockBoundWitnessWithStorageMeta: {
|
|
|
558
494
|
readonly __hex: true;
|
|
559
495
|
} & {
|
|
560
496
|
readonly __address: true;
|
|
561
|
-
}) | (
|
|
562
|
-
readonly __hex: true;
|
|
563
|
-
} & {
|
|
564
|
-
readonly __address: true;
|
|
565
|
-
}))[];
|
|
497
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
566
498
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
567
499
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
568
500
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
@@ -572,7 +504,7 @@ export declare const toBlockBoundWitnessWithStorageMeta: {
|
|
|
572
504
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
573
505
|
protocol?: number | undefined;
|
|
574
506
|
step_hashes?: import("@xylabs/sdk-js").BrandedHash[] | undefined;
|
|
575
|
-
$destination?: (Lowercase<string> & {
|
|
507
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
576
508
|
readonly __hex: true;
|
|
577
509
|
} & {
|
|
578
510
|
readonly __address: true;
|
|
@@ -591,11 +523,7 @@ export declare const toBlockBoundWitnessWithStorageMeta: {
|
|
|
591
523
|
readonly __hex: true;
|
|
592
524
|
} & {
|
|
593
525
|
readonly __address: true;
|
|
594
|
-
}) | (
|
|
595
|
-
readonly __hex: true;
|
|
596
|
-
} & {
|
|
597
|
-
readonly __address: true;
|
|
598
|
-
}))[];
|
|
526
|
+
}) | import("@xyo-network/sdk-js").XyoQuant1Address)[];
|
|
599
527
|
payload_hashes: import("@xylabs/sdk-js").BrandedHash[];
|
|
600
528
|
payload_schemas: import("@xyo-network/sdk-js").BrandedSchema<string>[];
|
|
601
529
|
previous_hashes: (import("@xylabs/sdk-js").BrandedHash | null)[];
|
|
@@ -605,7 +533,7 @@ export declare const toBlockBoundWitnessWithStorageMeta: {
|
|
|
605
533
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
606
534
|
protocol?: number | undefined;
|
|
607
535
|
step_hashes?: import("@xylabs/sdk-js").BrandedHash[] | undefined;
|
|
608
|
-
$destination?: (Lowercase<string> & {
|
|
536
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuant1Address | (Lowercase<string> & {
|
|
609
537
|
readonly __hex: true;
|
|
610
538
|
} & {
|
|
611
539
|
readonly __address: true;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BlockBoundWitness.d.ts","sourceRoot":"","sources":["../../../src/block/BlockBoundWitness.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,CAAC,EAAE,MAAM,UAAU,CAAA;AAK5B,2CAA2C;AAC3C,eAAO,MAAM,0BAA0B;;;;;;iBAMrC,CAAA;AAEF,yCAAyC;AACzC,eAAO,MAAM,wBAAwB;;iBAAmC,CAAA;AAExE,qCAAqC;AACrC,eAAO,MAAM,oBAAoB
|
|
1
|
+
{"version":3,"file":"BlockBoundWitness.d.ts","sourceRoot":"","sources":["../../../src/block/BlockBoundWitness.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,CAAC,EAAE,MAAM,UAAU,CAAA;AAK5B,2CAA2C;AAC3C,eAAO,MAAM,0BAA0B;;;;;;iBAMrC,CAAA;AAEF,yCAAyC;AACzC,eAAO,MAAM,wBAAwB;;iBAAmC,CAAA;AAExE,qCAAqC;AACrC,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;iBAI/B,CAAA;AAEF,8BAA8B;AAC9B,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAA;AAEpE,sEAAsE;AACtE,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;CAAqC,CAAA;AACrE,kEAAkE;AAClE,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA4D,CAAA;AAC5F,oCAAoC;AACpC,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA4D,CAAA;AAE5F,oEAAoE;AACpE,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAAwC,CAAA;AAErF,8DAA8D;AAE9D,0CAA0C;AAE1C,MAAM,MAAM,6BAA6B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gCAAgC,CAAC,CAAA;AAE5F,kFAAkF;AAClF,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAsD,CAAA;AAClG,8EAA8E;AAC9E,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAyF,CAAA;AACrI,gDAAgD;AAChD,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAyF,CAAA;AAErI,uEAAuE;AACvE,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAA2C,CAAA;AAE3F,iEAAiE;AAEjE,6CAA6C;AAE7C,MAAM,MAAM,gCAAgC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mCAAmC,CAAC,CAAA;AAElG,qFAAqF;AACrF,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAyD,CAAA;AACxG,iFAAiF;AACjF,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA+F,CAAA;AAC9I,mDAAmD;AACnD,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA+F,CAAA"}
|