@xyo-network/xl1-protocol-model 1.30.3 → 2.0.0
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/TransferPayload.d.ts +14 -14
- package/dist/neutral/TransferPayload.d.ts.map +1 -1
- package/dist/neutral/block/BlockBoundWitness.d.ts +59 -59
- package/dist/neutral/block/BlockBoundWitness.d.ts.map +1 -1
- package/dist/neutral/block/HydratedBlock.d.ts +184 -184
- package/dist/neutral/block/HydratedBlock.d.ts.map +1 -1
- package/dist/neutral/block/signed/SignedBlockBoundWitness.d.ts +16 -16
- package/dist/neutral/block/signed/SignedBlockBoundWitness.d.ts.map +1 -1
- package/dist/neutral/block/signed/SignedBlockBoundWitnessWithHashMeta.d.ts +34 -34
- package/dist/neutral/block/signed/SignedBlockBoundWitnessWithHashMeta.d.ts.map +1 -1
- package/dist/neutral/block/signed/SignedBlockBoundWitnessWithStorageMeta.d.ts +35 -35
- package/dist/neutral/block/signed/SignedBlockBoundWitnessWithStorageMeta.d.ts.map +1 -1
- package/dist/neutral/block/unsigned/UnsignedBlockBoundWitness.d.ts +16 -16
- package/dist/neutral/block/unsigned/UnsignedBlockBoundWitness.d.ts.map +1 -1
- package/dist/neutral/index.mjs +308 -265
- package/dist/neutral/index.mjs.map +3 -3
- package/dist/neutral/model/AccountBalance.d.ts +56 -56
- package/dist/neutral/model/AccountBalance.d.ts.map +1 -1
- package/dist/neutral/model/ChainQualification.d.ts +4 -4
- package/dist/neutral/model/Context/ChainContext.zod.d.ts +45 -45
- package/dist/neutral/model/Context/HeadContext.zod.d.ts +30 -30
- package/dist/neutral/model/HydratedTransaction.d.ts +220 -220
- package/dist/neutral/model/HydratedTransaction.d.ts.map +1 -1
- package/dist/neutral/model/RewardsRangeOptions.d.ts +1 -1
- package/dist/neutral/model/Stake.d.ts +9 -9
- package/dist/neutral/model/TransferPair.d.ts +2 -2
- package/dist/neutral/payload/elevatable/Bridge/BridgeDestinationObservation.d.ts +11 -11
- package/dist/neutral/payload/elevatable/Bridge/BridgeDestinationObservation.d.ts.map +1 -1
- package/dist/neutral/payload/elevatable/Bridge/BridgeDetails.d.ts +20 -20
- package/dist/neutral/payload/elevatable/Bridge/BridgeDetails.d.ts.map +1 -1
- package/dist/neutral/payload/elevatable/Bridge/BridgeIntent.d.ts +11 -11
- package/dist/neutral/payload/elevatable/Bridge/BridgeIntent.d.ts.map +1 -1
- package/dist/neutral/payload/elevatable/Bridge/BridgeSourceObservation.d.ts +11 -11
- package/dist/neutral/payload/elevatable/Bridge/BridgeSourceObservation.d.ts.map +1 -1
- package/dist/neutral/payload/elevatable/Time.d.ts +22 -22
- package/dist/neutral/payload/elevatable/Time.d.ts.map +1 -1
- package/dist/neutral/rejection/BlockRejectionPayload.d.ts +48 -48
- package/dist/neutral/rejection/BlockRejectionPayload.d.ts.map +1 -1
- package/dist/neutral/rejection/RejectionError.d.ts +1 -1
- package/dist/neutral/rejection/TransactionRejectionPayload.d.ts +56 -56
- package/dist/neutral/rejection/TransactionRejectionPayload.d.ts.map +1 -1
- package/dist/neutral/transaction/TransactionBoundWitness.d.ts +216 -216
- package/dist/neutral/transaction/TransactionBoundWitness.d.ts.map +1 -1
- package/dist/neutral/transaction/TransactionFees.d.ts +25 -25
- package/dist/neutral/transaction/TransactionFees.d.ts.map +1 -1
- package/package.json +51 -51
|
@@ -1,94 +1,94 @@
|
|
|
1
|
-
import { z } from 'zod';
|
|
1
|
+
import { z } from 'zod/mini';
|
|
2
2
|
/** BlockStartZod constant. */
|
|
3
|
-
export declare const BlockStartZod: z.
|
|
4
|
-
nbf:
|
|
3
|
+
export declare const BlockStartZod: z.ZodMiniObject<{
|
|
4
|
+
nbf: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../BlockNumber/XL1BlockNumber.ts").XL1BlockNumber, number>>;
|
|
5
5
|
}, z.core.$strip>;
|
|
6
6
|
/** BlockEndZod constant. */
|
|
7
|
-
export declare const BlockEndZod: z.
|
|
8
|
-
exp:
|
|
7
|
+
export declare const BlockEndZod: z.ZodMiniObject<{
|
|
8
|
+
exp: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../BlockNumber/XL1BlockNumber.ts").XL1BlockNumber, number>>;
|
|
9
9
|
}, z.core.$strip>;
|
|
10
10
|
/** BlockDurationZod constant. */
|
|
11
|
-
export declare const BlockDurationZod: z.
|
|
12
|
-
nbf:
|
|
13
|
-
exp:
|
|
11
|
+
export declare const BlockDurationZod: z.ZodMiniObject<{
|
|
12
|
+
nbf: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../BlockNumber/XL1BlockNumber.ts").XL1BlockNumber, number>>;
|
|
13
|
+
exp: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../BlockNumber/XL1BlockNumber.ts").XL1BlockNumber, number>>;
|
|
14
14
|
}, z.core.$strip>;
|
|
15
15
|
/** BlockScriptsZod constant. */
|
|
16
|
-
export declare const BlockScriptsZod: z.
|
|
17
|
-
script: z.
|
|
16
|
+
export declare const BlockScriptsZod: z.ZodMiniObject<{
|
|
17
|
+
script: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
18
18
|
}, z.core.$strip>;
|
|
19
19
|
/** TransactionFeesZod constant. */
|
|
20
|
-
export declare const TransactionFeesZod: z.
|
|
21
|
-
fees: z.
|
|
22
|
-
base: z.
|
|
23
|
-
gasLimit: z.
|
|
24
|
-
gasPrice: z.
|
|
25
|
-
priority: z.
|
|
20
|
+
export declare const TransactionFeesZod: z.ZodMiniObject<{
|
|
21
|
+
fees: z.ZodMiniObject<{
|
|
22
|
+
base: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
23
|
+
gasLimit: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
24
|
+
gasPrice: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
25
|
+
priority: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
26
26
|
}, z.core.$strip>;
|
|
27
27
|
}, z.core.$strip>;
|
|
28
28
|
/** TransactionBoundWitnessIdentityFields constant. */
|
|
29
|
-
export declare const TransactionBoundWitnessIdentityFields: z.
|
|
30
|
-
chain:
|
|
31
|
-
from: z.
|
|
29
|
+
export declare const TransactionBoundWitnessIdentityFields: z.ZodMiniObject<{
|
|
30
|
+
chain: import("zod").ZodPipe<import("zod").ZodString, import("zod").ZodTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
31
|
+
from: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
32
32
|
readonly __hex: true;
|
|
33
33
|
} & {
|
|
34
34
|
readonly __address: true;
|
|
35
35
|
}, string>>;
|
|
36
36
|
}, z.core.$strip>;
|
|
37
37
|
/** TransactionBoundWitnessFieldsZod constant. */
|
|
38
|
-
export declare const TransactionBoundWitnessFieldsZod: z.
|
|
39
|
-
nbf:
|
|
40
|
-
exp:
|
|
41
|
-
fees: z.
|
|
42
|
-
base: z.
|
|
43
|
-
gasLimit: z.
|
|
44
|
-
gasPrice: z.
|
|
45
|
-
priority: z.
|
|
38
|
+
export declare const TransactionBoundWitnessFieldsZod: z.ZodMiniObject<{
|
|
39
|
+
nbf: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../BlockNumber/XL1BlockNumber.ts").XL1BlockNumber, number>>;
|
|
40
|
+
exp: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../BlockNumber/XL1BlockNumber.ts").XL1BlockNumber, number>>;
|
|
41
|
+
fees: z.ZodMiniObject<{
|
|
42
|
+
base: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
43
|
+
gasLimit: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
44
|
+
gasPrice: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
45
|
+
priority: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
46
46
|
}, z.core.$strip>;
|
|
47
|
-
chain:
|
|
48
|
-
from: z.
|
|
47
|
+
chain: import("zod").ZodPipe<import("zod").ZodString, import("zod").ZodTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
48
|
+
from: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
49
49
|
readonly __hex: true;
|
|
50
50
|
} & {
|
|
51
51
|
readonly __address: true;
|
|
52
52
|
}, string>>;
|
|
53
|
-
script: z.
|
|
53
|
+
script: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
54
54
|
}, z.core.$strip>;
|
|
55
55
|
/** TransactionBoundWitnessFields type. */
|
|
56
56
|
export type TransactionBoundWitnessFields = z.infer<typeof TransactionBoundWitnessFieldsZod>;
|
|
57
57
|
/** TransactionBoundWitnessZod constant. */
|
|
58
|
-
export declare const TransactionBoundWitnessZod: z.
|
|
59
|
-
schema: z.
|
|
58
|
+
export declare const TransactionBoundWitnessZod: z.ZodMiniObject<{
|
|
59
|
+
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
60
60
|
readonly __schema: true;
|
|
61
61
|
}>;
|
|
62
|
-
addresses: z.
|
|
62
|
+
addresses: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
63
63
|
readonly __hex: true;
|
|
64
64
|
} & {
|
|
65
65
|
readonly __address: true;
|
|
66
66
|
}, string>>>;
|
|
67
|
-
payload_hashes: z.
|
|
68
|
-
payload_schemas: z.
|
|
69
|
-
previous_hashes: z.
|
|
70
|
-
$destination: z.
|
|
67
|
+
payload_hashes: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
68
|
+
payload_schemas: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>>;
|
|
69
|
+
previous_hashes: z.ZodMiniArray<z.ZodMiniNullable<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>>;
|
|
70
|
+
$destination: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
71
71
|
readonly __hex: true;
|
|
72
72
|
} & {
|
|
73
73
|
readonly __address: true;
|
|
74
74
|
}, string>>>;
|
|
75
|
-
$sourceQuery: z.
|
|
76
|
-
$signatures: z.
|
|
77
|
-
nbf:
|
|
78
|
-
exp:
|
|
79
|
-
fees: z.
|
|
80
|
-
base: z.
|
|
81
|
-
gasLimit: z.
|
|
82
|
-
gasPrice: z.
|
|
83
|
-
priority: z.
|
|
75
|
+
$sourceQuery: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
76
|
+
$signatures: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>, z.ZodMiniNull]>>;
|
|
77
|
+
nbf: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../BlockNumber/XL1BlockNumber.ts").XL1BlockNumber, number>>;
|
|
78
|
+
exp: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../BlockNumber/XL1BlockNumber.ts").XL1BlockNumber, number>>;
|
|
79
|
+
fees: z.ZodMiniObject<{
|
|
80
|
+
base: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
81
|
+
gasLimit: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
82
|
+
gasPrice: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
83
|
+
priority: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
84
84
|
}, z.core.$strip>;
|
|
85
|
-
chain:
|
|
86
|
-
from: z.
|
|
85
|
+
chain: import("zod").ZodPipe<import("zod").ZodString, import("zod").ZodTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
86
|
+
from: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
87
87
|
readonly __hex: true;
|
|
88
88
|
} & {
|
|
89
89
|
readonly __address: true;
|
|
90
90
|
}, string>>;
|
|
91
|
-
script: z.
|
|
91
|
+
script: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
92
92
|
}, z.core.$strip>;
|
|
93
93
|
/** TransactionBoundWitness type. */
|
|
94
94
|
export type TransactionBoundWitness = z.infer<typeof TransactionBoundWitnessZod>;
|
|
@@ -275,42 +275,42 @@ export declare const toTransactionBoundWitness: {
|
|
|
275
275
|
};
|
|
276
276
|
};
|
|
277
277
|
/** TransactionBoundWitnessWithHashMetaZod constant. */
|
|
278
|
-
export declare const TransactionBoundWitnessWithHashMetaZod: z.
|
|
279
|
-
schema: z.
|
|
278
|
+
export declare const TransactionBoundWitnessWithHashMetaZod: z.ZodMiniObject<{
|
|
279
|
+
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
280
280
|
readonly __schema: true;
|
|
281
281
|
}>;
|
|
282
|
-
addresses: z.
|
|
282
|
+
addresses: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
283
283
|
readonly __hex: true;
|
|
284
284
|
} & {
|
|
285
285
|
readonly __address: true;
|
|
286
286
|
}, string>>>;
|
|
287
|
-
payload_hashes: z.
|
|
288
|
-
payload_schemas: z.
|
|
289
|
-
previous_hashes: z.
|
|
290
|
-
$destination: z.
|
|
287
|
+
payload_hashes: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
288
|
+
payload_schemas: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>>;
|
|
289
|
+
previous_hashes: z.ZodMiniArray<z.ZodMiniNullable<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>>;
|
|
290
|
+
$destination: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
291
291
|
readonly __hex: true;
|
|
292
292
|
} & {
|
|
293
293
|
readonly __address: true;
|
|
294
294
|
}, string>>>;
|
|
295
|
-
$sourceQuery: z.
|
|
296
|
-
$signatures: z.
|
|
297
|
-
nbf:
|
|
298
|
-
exp:
|
|
299
|
-
fees: z.
|
|
300
|
-
base: z.
|
|
301
|
-
gasLimit: z.
|
|
302
|
-
gasPrice: z.
|
|
303
|
-
priority: z.
|
|
295
|
+
$sourceQuery: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
296
|
+
$signatures: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>, z.ZodMiniNull]>>;
|
|
297
|
+
nbf: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../BlockNumber/XL1BlockNumber.ts").XL1BlockNumber, number>>;
|
|
298
|
+
exp: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../BlockNumber/XL1BlockNumber.ts").XL1BlockNumber, number>>;
|
|
299
|
+
fees: z.ZodMiniObject<{
|
|
300
|
+
base: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
301
|
+
gasLimit: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
302
|
+
gasPrice: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
303
|
+
priority: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
304
304
|
}, z.core.$strip>;
|
|
305
|
-
chain:
|
|
306
|
-
from: z.
|
|
305
|
+
chain: import("zod").ZodPipe<import("zod").ZodString, import("zod").ZodTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
306
|
+
from: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
307
307
|
readonly __hex: true;
|
|
308
308
|
} & {
|
|
309
309
|
readonly __address: true;
|
|
310
310
|
}, string>>;
|
|
311
|
-
script: z.
|
|
312
|
-
_hash: z.
|
|
313
|
-
_dataHash: z.
|
|
311
|
+
script: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
312
|
+
_hash: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
313
|
+
_dataHash: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
314
314
|
}, z.core.$strip>;
|
|
315
315
|
/** TransactionBoundWitnessWithHashMeta type. */
|
|
316
316
|
export type TransactionBoundWitnessWithHashMeta = z.infer<typeof TransactionBoundWitnessWithHashMetaZod>;
|
|
@@ -507,43 +507,43 @@ export declare const toTransactionBoundWitnessWithHashMeta: {
|
|
|
507
507
|
};
|
|
508
508
|
};
|
|
509
509
|
/** TransactionBoundWitnessWithStorageMetaZod constant. */
|
|
510
|
-
export declare const TransactionBoundWitnessWithStorageMetaZod: z.
|
|
511
|
-
schema: z.
|
|
510
|
+
export declare const TransactionBoundWitnessWithStorageMetaZod: z.ZodMiniObject<{
|
|
511
|
+
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
512
512
|
readonly __schema: true;
|
|
513
513
|
}>;
|
|
514
|
-
addresses: z.
|
|
514
|
+
addresses: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
515
515
|
readonly __hex: true;
|
|
516
516
|
} & {
|
|
517
517
|
readonly __address: true;
|
|
518
518
|
}, string>>>;
|
|
519
|
-
payload_hashes: z.
|
|
520
|
-
payload_schemas: z.
|
|
521
|
-
previous_hashes: z.
|
|
522
|
-
$destination: z.
|
|
519
|
+
payload_hashes: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
520
|
+
payload_schemas: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>>;
|
|
521
|
+
previous_hashes: z.ZodMiniArray<z.ZodMiniNullable<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>>;
|
|
522
|
+
$destination: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
523
523
|
readonly __hex: true;
|
|
524
524
|
} & {
|
|
525
525
|
readonly __address: true;
|
|
526
526
|
}, string>>>;
|
|
527
|
-
$sourceQuery: z.
|
|
528
|
-
$signatures: z.
|
|
529
|
-
nbf:
|
|
530
|
-
exp:
|
|
531
|
-
fees: z.
|
|
532
|
-
base: z.
|
|
533
|
-
gasLimit: z.
|
|
534
|
-
gasPrice: z.
|
|
535
|
-
priority: z.
|
|
527
|
+
$sourceQuery: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
528
|
+
$signatures: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>, z.ZodMiniNull]>>;
|
|
529
|
+
nbf: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../BlockNumber/XL1BlockNumber.ts").XL1BlockNumber, number>>;
|
|
530
|
+
exp: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../BlockNumber/XL1BlockNumber.ts").XL1BlockNumber, number>>;
|
|
531
|
+
fees: z.ZodMiniObject<{
|
|
532
|
+
base: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
533
|
+
gasLimit: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
534
|
+
gasPrice: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
535
|
+
priority: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
536
536
|
}, z.core.$strip>;
|
|
537
|
-
chain:
|
|
538
|
-
from: z.
|
|
537
|
+
chain: import("zod").ZodPipe<import("zod").ZodString, import("zod").ZodTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
538
|
+
from: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
539
539
|
readonly __hex: true;
|
|
540
540
|
} & {
|
|
541
541
|
readonly __address: true;
|
|
542
542
|
}, string>>;
|
|
543
|
-
script: z.
|
|
544
|
-
_hash: z.
|
|
545
|
-
_dataHash: z.
|
|
546
|
-
_sequence: z.
|
|
543
|
+
script: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
544
|
+
_hash: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
545
|
+
_dataHash: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
546
|
+
_sequence: z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").LocalSequence, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").QualifiedSequence, string>>]>;
|
|
547
547
|
}, z.core.$strip>;
|
|
548
548
|
/** TransactionBoundWitnessWithStorageMeta type. */
|
|
549
549
|
export type TransactionBoundWitnessWithStorageMeta = z.infer<typeof TransactionBoundWitnessWithStorageMetaZod>;
|
|
@@ -745,40 +745,40 @@ export declare const toTransactionBoundWitnessWithStorageMeta: {
|
|
|
745
745
|
};
|
|
746
746
|
};
|
|
747
747
|
/** UnsignedTransactionBoundWitnessZod constant. */
|
|
748
|
-
export declare const UnsignedTransactionBoundWitnessZod: z.
|
|
749
|
-
schema: z.
|
|
748
|
+
export declare const UnsignedTransactionBoundWitnessZod: z.ZodMiniObject<{
|
|
749
|
+
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
750
750
|
readonly __schema: true;
|
|
751
751
|
}>;
|
|
752
|
-
addresses: z.
|
|
752
|
+
addresses: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
753
753
|
readonly __hex: true;
|
|
754
754
|
} & {
|
|
755
755
|
readonly __address: true;
|
|
756
756
|
}, string>>>;
|
|
757
|
-
payload_hashes: z.
|
|
758
|
-
payload_schemas: z.
|
|
759
|
-
previous_hashes: z.
|
|
760
|
-
$destination: z.
|
|
757
|
+
payload_hashes: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
758
|
+
payload_schemas: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>>;
|
|
759
|
+
previous_hashes: z.ZodMiniArray<z.ZodMiniNullable<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>>;
|
|
760
|
+
$destination: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
761
761
|
readonly __hex: true;
|
|
762
762
|
} & {
|
|
763
763
|
readonly __address: true;
|
|
764
764
|
}, string>>>;
|
|
765
|
-
$sourceQuery: z.
|
|
766
|
-
$signatures: z.
|
|
767
|
-
nbf:
|
|
768
|
-
exp:
|
|
769
|
-
fees: z.
|
|
770
|
-
base: z.
|
|
771
|
-
gasLimit: z.
|
|
772
|
-
gasPrice: z.
|
|
773
|
-
priority: z.
|
|
765
|
+
$sourceQuery: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
766
|
+
$signatures: z.ZodMiniArray<z.ZodMiniNull>;
|
|
767
|
+
nbf: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../BlockNumber/XL1BlockNumber.ts").XL1BlockNumber, number>>;
|
|
768
|
+
exp: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../BlockNumber/XL1BlockNumber.ts").XL1BlockNumber, number>>;
|
|
769
|
+
fees: z.ZodMiniObject<{
|
|
770
|
+
base: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
771
|
+
gasLimit: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
772
|
+
gasPrice: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
773
|
+
priority: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
774
774
|
}, z.core.$strip>;
|
|
775
|
-
chain:
|
|
776
|
-
from: z.
|
|
775
|
+
chain: import("zod").ZodPipe<import("zod").ZodString, import("zod").ZodTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
776
|
+
from: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
777
777
|
readonly __hex: true;
|
|
778
778
|
} & {
|
|
779
779
|
readonly __address: true;
|
|
780
780
|
}, string>>;
|
|
781
|
-
script: z.
|
|
781
|
+
script: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
782
782
|
}, z.core.$strip>;
|
|
783
783
|
/** UnsignedTransactionBoundWitness type. */
|
|
784
784
|
export type UnsignedTransactionBoundWitness = z.infer<typeof UnsignedTransactionBoundWitnessZod>;
|
|
@@ -965,42 +965,42 @@ export declare const toUnsignedTransactionBoundWitness: {
|
|
|
965
965
|
};
|
|
966
966
|
};
|
|
967
967
|
/** UnsignedTransactionBoundWitnessWithHashMetaZod constant. */
|
|
968
|
-
export declare const UnsignedTransactionBoundWitnessWithHashMetaZod: z.
|
|
969
|
-
schema: z.
|
|
968
|
+
export declare const UnsignedTransactionBoundWitnessWithHashMetaZod: z.ZodMiniObject<{
|
|
969
|
+
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
970
970
|
readonly __schema: true;
|
|
971
971
|
}>;
|
|
972
|
-
addresses: z.
|
|
972
|
+
addresses: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
973
973
|
readonly __hex: true;
|
|
974
974
|
} & {
|
|
975
975
|
readonly __address: true;
|
|
976
976
|
}, string>>>;
|
|
977
|
-
payload_hashes: z.
|
|
978
|
-
payload_schemas: z.
|
|
979
|
-
previous_hashes: z.
|
|
980
|
-
$destination: z.
|
|
977
|
+
payload_hashes: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
978
|
+
payload_schemas: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>>;
|
|
979
|
+
previous_hashes: z.ZodMiniArray<z.ZodMiniNullable<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>>;
|
|
980
|
+
$destination: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
981
981
|
readonly __hex: true;
|
|
982
982
|
} & {
|
|
983
983
|
readonly __address: true;
|
|
984
984
|
}, string>>>;
|
|
985
|
-
$sourceQuery: z.
|
|
986
|
-
$signatures: z.
|
|
987
|
-
nbf:
|
|
988
|
-
exp:
|
|
989
|
-
fees: z.
|
|
990
|
-
base: z.
|
|
991
|
-
gasLimit: z.
|
|
992
|
-
gasPrice: z.
|
|
993
|
-
priority: z.
|
|
985
|
+
$sourceQuery: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
986
|
+
$signatures: z.ZodMiniArray<z.ZodMiniNull>;
|
|
987
|
+
nbf: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../BlockNumber/XL1BlockNumber.ts").XL1BlockNumber, number>>;
|
|
988
|
+
exp: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../BlockNumber/XL1BlockNumber.ts").XL1BlockNumber, number>>;
|
|
989
|
+
fees: z.ZodMiniObject<{
|
|
990
|
+
base: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
991
|
+
gasLimit: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
992
|
+
gasPrice: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
993
|
+
priority: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
994
994
|
}, z.core.$strip>;
|
|
995
|
-
chain:
|
|
996
|
-
from: z.
|
|
995
|
+
chain: import("zod").ZodPipe<import("zod").ZodString, import("zod").ZodTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
996
|
+
from: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
997
997
|
readonly __hex: true;
|
|
998
998
|
} & {
|
|
999
999
|
readonly __address: true;
|
|
1000
1000
|
}, string>>;
|
|
1001
|
-
script: z.
|
|
1002
|
-
_hash: z.
|
|
1003
|
-
_dataHash: z.
|
|
1001
|
+
script: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
1002
|
+
_hash: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
1003
|
+
_dataHash: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
1004
1004
|
}, z.core.$strip>;
|
|
1005
1005
|
/** UnsignedTransactionBoundWitnessWithHashMeta type. */
|
|
1006
1006
|
export type UnsignedTransactionBoundWitnessWithHashMeta = z.infer<typeof UnsignedTransactionBoundWitnessWithHashMetaZod>;
|
|
@@ -1197,43 +1197,43 @@ export declare const toUnsignedTransactionBoundWitnessWithHashMeta: {
|
|
|
1197
1197
|
};
|
|
1198
1198
|
};
|
|
1199
1199
|
/** UnsignedTransactionBoundWitnessWithStorageMetaZod constant. */
|
|
1200
|
-
export declare const UnsignedTransactionBoundWitnessWithStorageMetaZod: z.
|
|
1201
|
-
schema: z.
|
|
1200
|
+
export declare const UnsignedTransactionBoundWitnessWithStorageMetaZod: z.ZodMiniObject<{
|
|
1201
|
+
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
1202
1202
|
readonly __schema: true;
|
|
1203
1203
|
}>;
|
|
1204
|
-
addresses: z.
|
|
1204
|
+
addresses: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
1205
1205
|
readonly __hex: true;
|
|
1206
1206
|
} & {
|
|
1207
1207
|
readonly __address: true;
|
|
1208
1208
|
}, string>>>;
|
|
1209
|
-
payload_hashes: z.
|
|
1210
|
-
payload_schemas: z.
|
|
1211
|
-
previous_hashes: z.
|
|
1212
|
-
$destination: z.
|
|
1209
|
+
payload_hashes: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
1210
|
+
payload_schemas: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>>;
|
|
1211
|
+
previous_hashes: z.ZodMiniArray<z.ZodMiniNullable<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>>;
|
|
1212
|
+
$destination: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
1213
1213
|
readonly __hex: true;
|
|
1214
1214
|
} & {
|
|
1215
1215
|
readonly __address: true;
|
|
1216
1216
|
}, string>>>;
|
|
1217
|
-
$sourceQuery: z.
|
|
1218
|
-
$signatures: z.
|
|
1219
|
-
nbf:
|
|
1220
|
-
exp:
|
|
1221
|
-
fees: z.
|
|
1222
|
-
base: z.
|
|
1223
|
-
gasLimit: z.
|
|
1224
|
-
gasPrice: z.
|
|
1225
|
-
priority: z.
|
|
1217
|
+
$sourceQuery: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
1218
|
+
$signatures: z.ZodMiniArray<z.ZodMiniNull>;
|
|
1219
|
+
nbf: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../BlockNumber/XL1BlockNumber.ts").XL1BlockNumber, number>>;
|
|
1220
|
+
exp: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../BlockNumber/XL1BlockNumber.ts").XL1BlockNumber, number>>;
|
|
1221
|
+
fees: z.ZodMiniObject<{
|
|
1222
|
+
base: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
1223
|
+
gasLimit: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
1224
|
+
gasPrice: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
1225
|
+
priority: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
1226
1226
|
}, z.core.$strip>;
|
|
1227
|
-
chain:
|
|
1228
|
-
from: z.
|
|
1227
|
+
chain: import("zod").ZodPipe<import("zod").ZodString, import("zod").ZodTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
1228
|
+
from: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
1229
1229
|
readonly __hex: true;
|
|
1230
1230
|
} & {
|
|
1231
1231
|
readonly __address: true;
|
|
1232
1232
|
}, string>>;
|
|
1233
|
-
script: z.
|
|
1234
|
-
_hash: z.
|
|
1235
|
-
_dataHash: z.
|
|
1236
|
-
_sequence: z.
|
|
1233
|
+
script: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
1234
|
+
_hash: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
1235
|
+
_dataHash: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
1236
|
+
_sequence: z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").LocalSequence, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").QualifiedSequence, string>>]>;
|
|
1237
1237
|
}, z.core.$strip>;
|
|
1238
1238
|
/** UnsignedTransactionBoundWitnessWithStorageMeta type. */
|
|
1239
1239
|
export type UnsignedTransactionBoundWitnessWithStorageMeta = z.infer<typeof UnsignedTransactionBoundWitnessWithStorageMetaZod>;
|
|
@@ -1435,40 +1435,40 @@ export declare const toUnsignedTransactionBoundWitnessWithStorageMeta: {
|
|
|
1435
1435
|
};
|
|
1436
1436
|
};
|
|
1437
1437
|
/** SignedTransactionBoundWitnessZod constant. */
|
|
1438
|
-
export declare const SignedTransactionBoundWitnessZod: z.
|
|
1439
|
-
schema: z.
|
|
1438
|
+
export declare const SignedTransactionBoundWitnessZod: z.ZodMiniObject<{
|
|
1439
|
+
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
1440
1440
|
readonly __schema: true;
|
|
1441
1441
|
}>;
|
|
1442
|
-
addresses: z.
|
|
1442
|
+
addresses: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
1443
1443
|
readonly __hex: true;
|
|
1444
1444
|
} & {
|
|
1445
1445
|
readonly __address: true;
|
|
1446
1446
|
}, string>>>;
|
|
1447
|
-
payload_hashes: z.
|
|
1448
|
-
payload_schemas: z.
|
|
1449
|
-
previous_hashes: z.
|
|
1450
|
-
$destination: z.
|
|
1447
|
+
payload_hashes: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
1448
|
+
payload_schemas: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>>;
|
|
1449
|
+
previous_hashes: z.ZodMiniArray<z.ZodMiniNullable<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>>;
|
|
1450
|
+
$destination: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
1451
1451
|
readonly __hex: true;
|
|
1452
1452
|
} & {
|
|
1453
1453
|
readonly __address: true;
|
|
1454
1454
|
}, string>>>;
|
|
1455
|
-
$sourceQuery: z.
|
|
1456
|
-
$signatures: z.
|
|
1457
|
-
nbf:
|
|
1458
|
-
exp:
|
|
1459
|
-
fees: z.
|
|
1460
|
-
base: z.
|
|
1461
|
-
gasLimit: z.
|
|
1462
|
-
gasPrice: z.
|
|
1463
|
-
priority: z.
|
|
1455
|
+
$sourceQuery: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
1456
|
+
$signatures: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>>;
|
|
1457
|
+
nbf: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../BlockNumber/XL1BlockNumber.ts").XL1BlockNumber, number>>;
|
|
1458
|
+
exp: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../BlockNumber/XL1BlockNumber.ts").XL1BlockNumber, number>>;
|
|
1459
|
+
fees: z.ZodMiniObject<{
|
|
1460
|
+
base: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
1461
|
+
gasLimit: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
1462
|
+
gasPrice: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
1463
|
+
priority: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
1464
1464
|
}, z.core.$strip>;
|
|
1465
|
-
chain:
|
|
1466
|
-
from: z.
|
|
1465
|
+
chain: import("zod").ZodPipe<import("zod").ZodString, import("zod").ZodTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
1466
|
+
from: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
1467
1467
|
readonly __hex: true;
|
|
1468
1468
|
} & {
|
|
1469
1469
|
readonly __address: true;
|
|
1470
1470
|
}, string>>;
|
|
1471
|
-
script: z.
|
|
1471
|
+
script: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
1472
1472
|
}, z.core.$strip>;
|
|
1473
1473
|
/** SignedTransactionBoundWitness type. */
|
|
1474
1474
|
export type SignedTransactionBoundWitness = z.infer<typeof SignedTransactionBoundWitnessZod>;
|
|
@@ -1655,42 +1655,42 @@ export declare const toSignedTransactionBoundWitness: {
|
|
|
1655
1655
|
};
|
|
1656
1656
|
};
|
|
1657
1657
|
/** SignedTransactionBoundWitnessWithHashMetaZod constant. */
|
|
1658
|
-
export declare const SignedTransactionBoundWitnessWithHashMetaZod: z.
|
|
1659
|
-
schema: z.
|
|
1658
|
+
export declare const SignedTransactionBoundWitnessWithHashMetaZod: z.ZodMiniObject<{
|
|
1659
|
+
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
1660
1660
|
readonly __schema: true;
|
|
1661
1661
|
}>;
|
|
1662
|
-
addresses: z.
|
|
1662
|
+
addresses: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
1663
1663
|
readonly __hex: true;
|
|
1664
1664
|
} & {
|
|
1665
1665
|
readonly __address: true;
|
|
1666
1666
|
}, string>>>;
|
|
1667
|
-
payload_hashes: z.
|
|
1668
|
-
payload_schemas: z.
|
|
1669
|
-
previous_hashes: z.
|
|
1670
|
-
$destination: z.
|
|
1667
|
+
payload_hashes: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
1668
|
+
payload_schemas: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>>;
|
|
1669
|
+
previous_hashes: z.ZodMiniArray<z.ZodMiniNullable<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>>;
|
|
1670
|
+
$destination: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
1671
1671
|
readonly __hex: true;
|
|
1672
1672
|
} & {
|
|
1673
1673
|
readonly __address: true;
|
|
1674
1674
|
}, string>>>;
|
|
1675
|
-
$sourceQuery: z.
|
|
1676
|
-
$signatures: z.
|
|
1677
|
-
nbf:
|
|
1678
|
-
exp:
|
|
1679
|
-
fees: z.
|
|
1680
|
-
base: z.
|
|
1681
|
-
gasLimit: z.
|
|
1682
|
-
gasPrice: z.
|
|
1683
|
-
priority: z.
|
|
1675
|
+
$sourceQuery: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
1676
|
+
$signatures: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>>;
|
|
1677
|
+
nbf: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../BlockNumber/XL1BlockNumber.ts").XL1BlockNumber, number>>;
|
|
1678
|
+
exp: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../BlockNumber/XL1BlockNumber.ts").XL1BlockNumber, number>>;
|
|
1679
|
+
fees: z.ZodMiniObject<{
|
|
1680
|
+
base: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
1681
|
+
gasLimit: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
1682
|
+
gasPrice: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
1683
|
+
priority: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
1684
1684
|
}, z.core.$strip>;
|
|
1685
|
-
chain:
|
|
1686
|
-
from: z.
|
|
1685
|
+
chain: import("zod").ZodPipe<import("zod").ZodString, import("zod").ZodTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
1686
|
+
from: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
1687
1687
|
readonly __hex: true;
|
|
1688
1688
|
} & {
|
|
1689
1689
|
readonly __address: true;
|
|
1690
1690
|
}, string>>;
|
|
1691
|
-
script: z.
|
|
1692
|
-
_hash: z.
|
|
1693
|
-
_dataHash: z.
|
|
1691
|
+
script: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
1692
|
+
_hash: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
1693
|
+
_dataHash: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
1694
1694
|
}, z.core.$strip>;
|
|
1695
1695
|
/** SignedTransactionBoundWitnessWithHashMeta type. */
|
|
1696
1696
|
export type SignedTransactionBoundWitnessWithHashMeta = z.infer<typeof SignedTransactionBoundWitnessWithHashMetaZod>;
|
|
@@ -1887,43 +1887,43 @@ export declare const toSignedTransactionBoundWitnessWithHashMeta: {
|
|
|
1887
1887
|
};
|
|
1888
1888
|
};
|
|
1889
1889
|
/** SignedTransactionBoundWitnessWithStorageMetaZod constant. */
|
|
1890
|
-
export declare const SignedTransactionBoundWitnessWithStorageMetaZod: z.
|
|
1891
|
-
schema: z.
|
|
1890
|
+
export declare const SignedTransactionBoundWitnessWithStorageMetaZod: z.ZodMiniObject<{
|
|
1891
|
+
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
1892
1892
|
readonly __schema: true;
|
|
1893
1893
|
}>;
|
|
1894
|
-
addresses: z.
|
|
1894
|
+
addresses: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
1895
1895
|
readonly __hex: true;
|
|
1896
1896
|
} & {
|
|
1897
1897
|
readonly __address: true;
|
|
1898
1898
|
}, string>>>;
|
|
1899
|
-
payload_hashes: z.
|
|
1900
|
-
payload_schemas: z.
|
|
1901
|
-
previous_hashes: z.
|
|
1902
|
-
$destination: z.
|
|
1899
|
+
payload_hashes: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
1900
|
+
payload_schemas: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>>;
|
|
1901
|
+
previous_hashes: z.ZodMiniArray<z.ZodMiniNullable<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>>;
|
|
1902
|
+
$destination: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
1903
1903
|
readonly __hex: true;
|
|
1904
1904
|
} & {
|
|
1905
1905
|
readonly __address: true;
|
|
1906
1906
|
}, string>>>;
|
|
1907
|
-
$sourceQuery: z.
|
|
1908
|
-
$signatures: z.
|
|
1909
|
-
nbf:
|
|
1910
|
-
exp:
|
|
1911
|
-
fees: z.
|
|
1912
|
-
base: z.
|
|
1913
|
-
gasLimit: z.
|
|
1914
|
-
gasPrice: z.
|
|
1915
|
-
priority: z.
|
|
1907
|
+
$sourceQuery: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
1908
|
+
$signatures: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>>;
|
|
1909
|
+
nbf: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../BlockNumber/XL1BlockNumber.ts").XL1BlockNumber, number>>;
|
|
1910
|
+
exp: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../BlockNumber/XL1BlockNumber.ts").XL1BlockNumber, number>>;
|
|
1911
|
+
fees: z.ZodMiniObject<{
|
|
1912
|
+
base: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
1913
|
+
gasLimit: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
1914
|
+
gasPrice: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
1915
|
+
priority: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
1916
1916
|
}, z.core.$strip>;
|
|
1917
|
-
chain:
|
|
1918
|
-
from: z.
|
|
1917
|
+
chain: import("zod").ZodPipe<import("zod").ZodString, import("zod").ZodTransform<import("@xylabs/sdk-js").BrandedHex, string>>;
|
|
1918
|
+
from: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
1919
1919
|
readonly __hex: true;
|
|
1920
1920
|
} & {
|
|
1921
1921
|
readonly __address: true;
|
|
1922
1922
|
}, string>>;
|
|
1923
|
-
script: z.
|
|
1924
|
-
_hash: z.
|
|
1925
|
-
_dataHash: z.
|
|
1926
|
-
_sequence: z.
|
|
1923
|
+
script: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
1924
|
+
_hash: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
1925
|
+
_dataHash: z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>;
|
|
1926
|
+
_sequence: z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").LocalSequence, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").QualifiedSequence, string>>]>;
|
|
1927
1927
|
}, z.core.$strip>;
|
|
1928
1928
|
/** SignedTransactionBoundWitnessWithStorageMeta type. */
|
|
1929
1929
|
export type SignedTransactionBoundWitnessWithStorageMeta = z.infer<typeof SignedTransactionBoundWitnessWithStorageMetaZod>;
|