@xyo-network/xl1-protocol-model 2.0.9 → 2.0.11
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/README.md +3 -6
- package/dist/neutral/TransferPayload.d.ts +8 -8
- package/dist/neutral/block/BlockBoundWitness.d.ts +36 -36
- package/dist/neutral/block/HydratedBlock.d.ts +88 -88
- package/dist/neutral/block/signed/SignedBlockBoundWitness.d.ts +12 -12
- package/dist/neutral/block/signed/SignedBlockBoundWitnessWithHashMeta.d.ts +20 -20
- package/dist/neutral/block/signed/SignedBlockBoundWitnessWithStorageMeta.d.ts +24 -24
- package/dist/neutral/block/unsigned/UnsignedBlockBoundWitness.d.ts +12 -12
- package/dist/neutral/index.mjs +1 -1
- package/dist/neutral/index.mjs.map +2 -2
- package/dist/neutral/model/AccountBalance.d.ts +7 -7
- package/dist/neutral/model/Context/ChainContext.zod.d.ts +6 -6
- package/dist/neutral/model/Context/HeadContext.zod.d.ts +4 -4
- package/dist/neutral/model/HydratedTransaction.d.ts +162 -162
- package/dist/neutral/model/RewardsRangeOptions.d.ts +1 -1
- package/dist/neutral/model/Stake.d.ts +14 -14
- package/dist/neutral/model/SyncStepSummary.d.ts +12 -12
- package/dist/neutral/model/TransferPair.d.ts +2 -2
- package/dist/neutral/model/TransferPair.d.ts.map +1 -1
- package/dist/neutral/rejection/BlockRejectionPayload.d.ts +8 -8
- package/dist/neutral/rejection/TransactionRejectionPayload.d.ts +12 -12
- package/dist/neutral/transaction/TransactionBoundWitness.d.ts +164 -164
- package/package.json +12 -14
|
@@ -8,7 +8,7 @@ export declare const SignedBlockBoundWitnessZod: z.ZodMiniObject<{
|
|
|
8
8
|
readonly __hex: true;
|
|
9
9
|
} & {
|
|
10
10
|
readonly __address: true;
|
|
11
|
-
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").
|
|
11
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuantAddress, string>>]>>;
|
|
12
12
|
payload_hashes: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
13
13
|
payload_schemas: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>>;
|
|
14
14
|
previous_hashes: z.ZodMiniArray<z.ZodMiniNullable<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>>;
|
|
@@ -16,7 +16,7 @@ export declare const SignedBlockBoundWitnessZod: z.ZodMiniObject<{
|
|
|
16
16
|
readonly __hex: true;
|
|
17
17
|
} & {
|
|
18
18
|
readonly __address: true;
|
|
19
|
-
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").
|
|
19
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuantAddress, string>>]>>;
|
|
20
20
|
$sourceQuery: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
21
21
|
$signatures: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>>;
|
|
22
22
|
block: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../../index.ts").XL1BlockNumber, number>>;
|
|
@@ -33,7 +33,7 @@ export declare const isSignedBlockBoundWitness: <T>(value: T) => value is T & {
|
|
|
33
33
|
schema: "network.xyo.boundwitness" & {
|
|
34
34
|
readonly __schema: true;
|
|
35
35
|
};
|
|
36
|
-
addresses: (import("@xyo-network/sdk-js").
|
|
36
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
37
37
|
readonly __hex: true;
|
|
38
38
|
} & {
|
|
39
39
|
readonly __address: true;
|
|
@@ -46,7 +46,7 @@ export declare const isSignedBlockBoundWitness: <T>(value: T) => value is T & {
|
|
|
46
46
|
chain: import("@xylabs/sdk-js").BrandedHex;
|
|
47
47
|
previous: import("@xylabs/sdk-js").BrandedHash | null;
|
|
48
48
|
$epoch: number;
|
|
49
|
-
$destination?: import("@xyo-network/sdk-js").
|
|
49
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
50
50
|
readonly __hex: true;
|
|
51
51
|
} & {
|
|
52
52
|
readonly __address: true;
|
|
@@ -61,7 +61,7 @@ export declare const asSignedBlockBoundWitness: {
|
|
|
61
61
|
schema: "network.xyo.boundwitness" & {
|
|
62
62
|
readonly __schema: true;
|
|
63
63
|
};
|
|
64
|
-
addresses: (import("@xyo-network/sdk-js").
|
|
64
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
65
65
|
readonly __hex: true;
|
|
66
66
|
} & {
|
|
67
67
|
readonly __address: true;
|
|
@@ -74,7 +74,7 @@ export declare const asSignedBlockBoundWitness: {
|
|
|
74
74
|
chain: import("@xylabs/sdk-js").BrandedHex;
|
|
75
75
|
previous: import("@xylabs/sdk-js").BrandedHash | null;
|
|
76
76
|
$epoch: number;
|
|
77
|
-
$destination?: import("@xyo-network/sdk-js").
|
|
77
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
78
78
|
readonly __hex: true;
|
|
79
79
|
} & {
|
|
80
80
|
readonly __address: true;
|
|
@@ -87,7 +87,7 @@ export declare const asSignedBlockBoundWitness: {
|
|
|
87
87
|
schema: "network.xyo.boundwitness" & {
|
|
88
88
|
readonly __schema: true;
|
|
89
89
|
};
|
|
90
|
-
addresses: (import("@xyo-network/sdk-js").
|
|
90
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
91
91
|
readonly __hex: true;
|
|
92
92
|
} & {
|
|
93
93
|
readonly __address: true;
|
|
@@ -100,7 +100,7 @@ export declare const asSignedBlockBoundWitness: {
|
|
|
100
100
|
chain: import("@xylabs/sdk-js").BrandedHex;
|
|
101
101
|
previous: import("@xylabs/sdk-js").BrandedHash | null;
|
|
102
102
|
$epoch: number;
|
|
103
|
-
$destination?: import("@xyo-network/sdk-js").
|
|
103
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
104
104
|
readonly __hex: true;
|
|
105
105
|
} & {
|
|
106
106
|
readonly __address: true;
|
|
@@ -116,7 +116,7 @@ export declare const toSignedBlockBoundWitness: {
|
|
|
116
116
|
schema: "network.xyo.boundwitness" & {
|
|
117
117
|
readonly __schema: true;
|
|
118
118
|
};
|
|
119
|
-
addresses: (import("@xyo-network/sdk-js").
|
|
119
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
120
120
|
readonly __hex: true;
|
|
121
121
|
} & {
|
|
122
122
|
readonly __address: true;
|
|
@@ -129,7 +129,7 @@ export declare const toSignedBlockBoundWitness: {
|
|
|
129
129
|
chain: import("@xylabs/sdk-js").BrandedHex;
|
|
130
130
|
previous: import("@xylabs/sdk-js").BrandedHash | null;
|
|
131
131
|
$epoch: number;
|
|
132
|
-
$destination?: import("@xyo-network/sdk-js").
|
|
132
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
133
133
|
readonly __hex: true;
|
|
134
134
|
} & {
|
|
135
135
|
readonly __address: true;
|
|
@@ -142,7 +142,7 @@ export declare const toSignedBlockBoundWitness: {
|
|
|
142
142
|
schema: "network.xyo.boundwitness" & {
|
|
143
143
|
readonly __schema: true;
|
|
144
144
|
};
|
|
145
|
-
addresses: (import("@xyo-network/sdk-js").
|
|
145
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
146
146
|
readonly __hex: true;
|
|
147
147
|
} & {
|
|
148
148
|
readonly __address: true;
|
|
@@ -155,7 +155,7 @@ export declare const toSignedBlockBoundWitness: {
|
|
|
155
155
|
chain: import("@xylabs/sdk-js").BrandedHex;
|
|
156
156
|
previous: import("@xylabs/sdk-js").BrandedHash | null;
|
|
157
157
|
$epoch: number;
|
|
158
|
-
$destination?: import("@xyo-network/sdk-js").
|
|
158
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
159
159
|
readonly __hex: true;
|
|
160
160
|
} & {
|
|
161
161
|
readonly __address: true;
|
|
@@ -8,7 +8,7 @@ export declare const SignedBlockBoundWitnessWithHashMetaZod: z.ZodMiniObject<{
|
|
|
8
8
|
readonly __hex: true;
|
|
9
9
|
} & {
|
|
10
10
|
readonly __address: true;
|
|
11
|
-
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").
|
|
11
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuantAddress, string>>]>>;
|
|
12
12
|
payload_hashes: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
13
13
|
payload_schemas: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>>;
|
|
14
14
|
previous_hashes: z.ZodMiniArray<z.ZodMiniNullable<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>>;
|
|
@@ -16,7 +16,7 @@ export declare const SignedBlockBoundWitnessWithHashMetaZod: z.ZodMiniObject<{
|
|
|
16
16
|
readonly __hex: true;
|
|
17
17
|
} & {
|
|
18
18
|
readonly __address: true;
|
|
19
|
-
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").
|
|
19
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuantAddress, string>>]>>;
|
|
20
20
|
$sourceQuery: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
21
21
|
$signatures: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>>;
|
|
22
22
|
block: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../../index.ts").XL1BlockNumber, number>>;
|
|
@@ -35,7 +35,7 @@ export declare const isSignedBlockBoundWitnessWithHashMeta: <T>(value: T) => val
|
|
|
35
35
|
schema: "network.xyo.boundwitness" & {
|
|
36
36
|
readonly __schema: true;
|
|
37
37
|
};
|
|
38
|
-
addresses: (import("@xyo-network/sdk-js").
|
|
38
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
39
39
|
readonly __hex: true;
|
|
40
40
|
} & {
|
|
41
41
|
readonly __address: true;
|
|
@@ -50,7 +50,7 @@ export declare const isSignedBlockBoundWitnessWithHashMeta: <T>(value: T) => val
|
|
|
50
50
|
$epoch: number;
|
|
51
51
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
52
52
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
53
|
-
$destination?: import("@xyo-network/sdk-js").
|
|
53
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
54
54
|
readonly __hex: true;
|
|
55
55
|
} & {
|
|
56
56
|
readonly __address: true;
|
|
@@ -65,7 +65,7 @@ export declare const asSignedBlockBoundWitnessWithHashMeta: {
|
|
|
65
65
|
schema: "network.xyo.boundwitness" & {
|
|
66
66
|
readonly __schema: true;
|
|
67
67
|
};
|
|
68
|
-
addresses: (import("@xyo-network/sdk-js").
|
|
68
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
69
69
|
readonly __hex: true;
|
|
70
70
|
} & {
|
|
71
71
|
readonly __address: true;
|
|
@@ -80,7 +80,7 @@ export declare const asSignedBlockBoundWitnessWithHashMeta: {
|
|
|
80
80
|
$epoch: number;
|
|
81
81
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
82
82
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
83
|
-
$destination?: import("@xyo-network/sdk-js").
|
|
83
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
84
84
|
readonly __hex: true;
|
|
85
85
|
} & {
|
|
86
86
|
readonly __address: true;
|
|
@@ -93,7 +93,7 @@ export declare const asSignedBlockBoundWitnessWithHashMeta: {
|
|
|
93
93
|
schema: "network.xyo.boundwitness" & {
|
|
94
94
|
readonly __schema: true;
|
|
95
95
|
};
|
|
96
|
-
addresses: (import("@xyo-network/sdk-js").
|
|
96
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
97
97
|
readonly __hex: true;
|
|
98
98
|
} & {
|
|
99
99
|
readonly __address: true;
|
|
@@ -108,7 +108,7 @@ export declare const asSignedBlockBoundWitnessWithHashMeta: {
|
|
|
108
108
|
$epoch: number;
|
|
109
109
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
110
110
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
111
|
-
$destination?: import("@xyo-network/sdk-js").
|
|
111
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
112
112
|
readonly __hex: true;
|
|
113
113
|
} & {
|
|
114
114
|
readonly __address: true;
|
|
@@ -127,7 +127,7 @@ export declare const SignedBlockBoundWitnessWithHashMetaishZod: z.ZodMiniPipe<z.
|
|
|
127
127
|
readonly __hex: true;
|
|
128
128
|
} & {
|
|
129
129
|
readonly __address: true;
|
|
130
|
-
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").
|
|
130
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuantAddress, string>>]>>;
|
|
131
131
|
payload_hashes: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
132
132
|
payload_schemas: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>>;
|
|
133
133
|
previous_hashes: z.ZodMiniArray<z.ZodMiniNullable<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>>;
|
|
@@ -135,7 +135,7 @@ export declare const SignedBlockBoundWitnessWithHashMetaishZod: z.ZodMiniPipe<z.
|
|
|
135
135
|
readonly __hex: true;
|
|
136
136
|
} & {
|
|
137
137
|
readonly __address: true;
|
|
138
|
-
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").
|
|
138
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuantAddress, string>>]>>;
|
|
139
139
|
$sourceQuery: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
140
140
|
$signatures: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>>;
|
|
141
141
|
block: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../../index.ts").XL1BlockNumber, number>>;
|
|
@@ -148,7 +148,7 @@ export declare const SignedBlockBoundWitnessWithHashMetaishZod: z.ZodMiniPipe<z.
|
|
|
148
148
|
schema: "network.xyo.boundwitness" & {
|
|
149
149
|
readonly __schema: true;
|
|
150
150
|
};
|
|
151
|
-
addresses: (import("@xyo-network/sdk-js").
|
|
151
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
152
152
|
readonly __hex: true;
|
|
153
153
|
} & {
|
|
154
154
|
readonly __address: true;
|
|
@@ -161,7 +161,7 @@ export declare const SignedBlockBoundWitnessWithHashMetaishZod: z.ZodMiniPipe<z.
|
|
|
161
161
|
chain: import("@xylabs/sdk-js").BrandedHex;
|
|
162
162
|
previous: import("@xylabs/sdk-js").BrandedHash | null;
|
|
163
163
|
$epoch: number;
|
|
164
|
-
$destination?: import("@xyo-network/sdk-js").
|
|
164
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
165
165
|
readonly __hex: true;
|
|
166
166
|
} & {
|
|
167
167
|
readonly __address: true;
|
|
@@ -173,7 +173,7 @@ export declare const SignedBlockBoundWitnessWithHashMetaishZod: z.ZodMiniPipe<z.
|
|
|
173
173
|
schema: "network.xyo.boundwitness" & {
|
|
174
174
|
readonly __schema: true;
|
|
175
175
|
};
|
|
176
|
-
addresses: (import("@xyo-network/sdk-js").
|
|
176
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
177
177
|
readonly __hex: true;
|
|
178
178
|
} & {
|
|
179
179
|
readonly __address: true;
|
|
@@ -188,7 +188,7 @@ export declare const SignedBlockBoundWitnessWithHashMetaishZod: z.ZodMiniPipe<z.
|
|
|
188
188
|
$epoch: number;
|
|
189
189
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
190
190
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
191
|
-
$destination?: import("@xyo-network/sdk-js").
|
|
191
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
192
192
|
readonly __hex: true;
|
|
193
193
|
} & {
|
|
194
194
|
readonly __address: true;
|
|
@@ -200,7 +200,7 @@ export declare const SignedBlockBoundWitnessWithHashMetaishZod: z.ZodMiniPipe<z.
|
|
|
200
200
|
schema: "network.xyo.boundwitness" & {
|
|
201
201
|
readonly __schema: true;
|
|
202
202
|
};
|
|
203
|
-
addresses: (import("@xyo-network/sdk-js").
|
|
203
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
204
204
|
readonly __hex: true;
|
|
205
205
|
} & {
|
|
206
206
|
readonly __address: true;
|
|
@@ -213,7 +213,7 @@ export declare const SignedBlockBoundWitnessWithHashMetaishZod: z.ZodMiniPipe<z.
|
|
|
213
213
|
chain: import("@xylabs/sdk-js").BrandedHex;
|
|
214
214
|
previous: import("@xylabs/sdk-js").BrandedHash | null;
|
|
215
215
|
$epoch: number;
|
|
216
|
-
$destination?: import("@xyo-network/sdk-js").
|
|
216
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
217
217
|
readonly __hex: true;
|
|
218
218
|
} & {
|
|
219
219
|
readonly __address: true;
|
|
@@ -230,7 +230,7 @@ export declare const toSignedBlockBoundWitnessWithHashMeta: {
|
|
|
230
230
|
schema: "network.xyo.boundwitness" & {
|
|
231
231
|
readonly __schema: true;
|
|
232
232
|
};
|
|
233
|
-
addresses: (import("@xyo-network/sdk-js").
|
|
233
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
234
234
|
readonly __hex: true;
|
|
235
235
|
} & {
|
|
236
236
|
readonly __address: true;
|
|
@@ -245,7 +245,7 @@ export declare const toSignedBlockBoundWitnessWithHashMeta: {
|
|
|
245
245
|
$epoch: number;
|
|
246
246
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
247
247
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
248
|
-
$destination?: import("@xyo-network/sdk-js").
|
|
248
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
249
249
|
readonly __hex: true;
|
|
250
250
|
} & {
|
|
251
251
|
readonly __address: true;
|
|
@@ -258,7 +258,7 @@ export declare const toSignedBlockBoundWitnessWithHashMeta: {
|
|
|
258
258
|
schema: "network.xyo.boundwitness" & {
|
|
259
259
|
readonly __schema: true;
|
|
260
260
|
};
|
|
261
|
-
addresses: (import("@xyo-network/sdk-js").
|
|
261
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
262
262
|
readonly __hex: true;
|
|
263
263
|
} & {
|
|
264
264
|
readonly __address: true;
|
|
@@ -273,7 +273,7 @@ export declare const toSignedBlockBoundWitnessWithHashMeta: {
|
|
|
273
273
|
$epoch: number;
|
|
274
274
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
275
275
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
276
|
-
$destination?: import("@xyo-network/sdk-js").
|
|
276
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
277
277
|
readonly __hex: true;
|
|
278
278
|
} & {
|
|
279
279
|
readonly __address: true;
|
|
@@ -8,7 +8,7 @@ export declare const SignedBlockBoundWitnessWithStorageMetaZod: z.ZodMiniObject<
|
|
|
8
8
|
readonly __hex: true;
|
|
9
9
|
} & {
|
|
10
10
|
readonly __address: true;
|
|
11
|
-
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").
|
|
11
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuantAddress, string>>]>>;
|
|
12
12
|
payload_hashes: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
13
13
|
payload_schemas: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>>;
|
|
14
14
|
previous_hashes: z.ZodMiniArray<z.ZodMiniNullable<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>>;
|
|
@@ -16,7 +16,7 @@ export declare const SignedBlockBoundWitnessWithStorageMetaZod: z.ZodMiniObject<
|
|
|
16
16
|
readonly __hex: true;
|
|
17
17
|
} & {
|
|
18
18
|
readonly __address: true;
|
|
19
|
-
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").
|
|
19
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuantAddress, string>>]>>;
|
|
20
20
|
$sourceQuery: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
21
21
|
$signatures: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>>;
|
|
22
22
|
block: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../../index.ts").XL1BlockNumber, number>>;
|
|
@@ -36,7 +36,7 @@ export declare const isSignedBlockBoundWitnessWithStorageMeta: <T>(value: T) =>
|
|
|
36
36
|
schema: "network.xyo.boundwitness" & {
|
|
37
37
|
readonly __schema: true;
|
|
38
38
|
};
|
|
39
|
-
addresses: (import("@xyo-network/sdk-js").
|
|
39
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
40
40
|
readonly __hex: true;
|
|
41
41
|
} & {
|
|
42
42
|
readonly __address: true;
|
|
@@ -52,7 +52,7 @@ export declare const isSignedBlockBoundWitnessWithStorageMeta: <T>(value: T) =>
|
|
|
52
52
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
53
53
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
54
54
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
55
|
-
$destination?: import("@xyo-network/sdk-js").
|
|
55
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
56
56
|
readonly __hex: true;
|
|
57
57
|
} & {
|
|
58
58
|
readonly __address: true;
|
|
@@ -67,7 +67,7 @@ export declare const asSignedBlockBoundWitnessWithStorageMeta: {
|
|
|
67
67
|
schema: "network.xyo.boundwitness" & {
|
|
68
68
|
readonly __schema: true;
|
|
69
69
|
};
|
|
70
|
-
addresses: (import("@xyo-network/sdk-js").
|
|
70
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
71
71
|
readonly __hex: true;
|
|
72
72
|
} & {
|
|
73
73
|
readonly __address: true;
|
|
@@ -83,7 +83,7 @@ export declare const asSignedBlockBoundWitnessWithStorageMeta: {
|
|
|
83
83
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
84
84
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
85
85
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
86
|
-
$destination?: import("@xyo-network/sdk-js").
|
|
86
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
87
87
|
readonly __hex: true;
|
|
88
88
|
} & {
|
|
89
89
|
readonly __address: true;
|
|
@@ -96,7 +96,7 @@ export declare const asSignedBlockBoundWitnessWithStorageMeta: {
|
|
|
96
96
|
schema: "network.xyo.boundwitness" & {
|
|
97
97
|
readonly __schema: true;
|
|
98
98
|
};
|
|
99
|
-
addresses: (import("@xyo-network/sdk-js").
|
|
99
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
100
100
|
readonly __hex: true;
|
|
101
101
|
} & {
|
|
102
102
|
readonly __address: true;
|
|
@@ -112,7 +112,7 @@ export declare const asSignedBlockBoundWitnessWithStorageMeta: {
|
|
|
112
112
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
113
113
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
114
114
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
115
|
-
$destination?: import("@xyo-network/sdk-js").
|
|
115
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
116
116
|
readonly __hex: true;
|
|
117
117
|
} & {
|
|
118
118
|
readonly __address: true;
|
|
@@ -131,7 +131,7 @@ export declare const SignedBlockBoundWitnessWithStorageMetaishZod: z.ZodMiniPipe
|
|
|
131
131
|
readonly __hex: true;
|
|
132
132
|
} & {
|
|
133
133
|
readonly __address: true;
|
|
134
|
-
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").
|
|
134
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuantAddress, string>>]>>;
|
|
135
135
|
payload_hashes: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
136
136
|
payload_schemas: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>>;
|
|
137
137
|
previous_hashes: z.ZodMiniArray<z.ZodMiniNullable<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>>;
|
|
@@ -139,7 +139,7 @@ export declare const SignedBlockBoundWitnessWithStorageMetaishZod: z.ZodMiniPipe
|
|
|
139
139
|
readonly __hex: true;
|
|
140
140
|
} & {
|
|
141
141
|
readonly __address: true;
|
|
142
|
-
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").
|
|
142
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuantAddress, string>>]>>;
|
|
143
143
|
$sourceQuery: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
144
144
|
$signatures: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHex, string>>>;
|
|
145
145
|
block: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../../index.ts").XL1BlockNumber, number>>;
|
|
@@ -152,7 +152,7 @@ export declare const SignedBlockBoundWitnessWithStorageMetaishZod: z.ZodMiniPipe
|
|
|
152
152
|
schema: "network.xyo.boundwitness" & {
|
|
153
153
|
readonly __schema: true;
|
|
154
154
|
};
|
|
155
|
-
addresses: (import("@xyo-network/sdk-js").
|
|
155
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
156
156
|
readonly __hex: true;
|
|
157
157
|
} & {
|
|
158
158
|
readonly __address: true;
|
|
@@ -165,7 +165,7 @@ export declare const SignedBlockBoundWitnessWithStorageMetaishZod: z.ZodMiniPipe
|
|
|
165
165
|
chain: import("@xylabs/sdk-js").BrandedHex;
|
|
166
166
|
previous: import("@xylabs/sdk-js").BrandedHash | null;
|
|
167
167
|
$epoch: number;
|
|
168
|
-
$destination?: import("@xyo-network/sdk-js").
|
|
168
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
169
169
|
readonly __hex: true;
|
|
170
170
|
} & {
|
|
171
171
|
readonly __address: true;
|
|
@@ -177,7 +177,7 @@ export declare const SignedBlockBoundWitnessWithStorageMetaishZod: z.ZodMiniPipe
|
|
|
177
177
|
schema: "network.xyo.boundwitness" & {
|
|
178
178
|
readonly __schema: true;
|
|
179
179
|
};
|
|
180
|
-
addresses: (import("@xyo-network/sdk-js").
|
|
180
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
181
181
|
readonly __hex: true;
|
|
182
182
|
} & {
|
|
183
183
|
readonly __address: true;
|
|
@@ -193,7 +193,7 @@ export declare const SignedBlockBoundWitnessWithStorageMetaishZod: z.ZodMiniPipe
|
|
|
193
193
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
194
194
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
195
195
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
196
|
-
$destination?: import("@xyo-network/sdk-js").
|
|
196
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
197
197
|
readonly __hex: true;
|
|
198
198
|
} & {
|
|
199
199
|
readonly __address: true;
|
|
@@ -205,7 +205,7 @@ export declare const SignedBlockBoundWitnessWithStorageMetaishZod: z.ZodMiniPipe
|
|
|
205
205
|
schema: "network.xyo.boundwitness" & {
|
|
206
206
|
readonly __schema: true;
|
|
207
207
|
};
|
|
208
|
-
addresses: (import("@xyo-network/sdk-js").
|
|
208
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
209
209
|
readonly __hex: true;
|
|
210
210
|
} & {
|
|
211
211
|
readonly __address: true;
|
|
@@ -218,7 +218,7 @@ export declare const SignedBlockBoundWitnessWithStorageMetaishZod: z.ZodMiniPipe
|
|
|
218
218
|
chain: import("@xylabs/sdk-js").BrandedHex;
|
|
219
219
|
previous: import("@xylabs/sdk-js").BrandedHash | null;
|
|
220
220
|
$epoch: number;
|
|
221
|
-
$destination?: import("@xyo-network/sdk-js").
|
|
221
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
222
222
|
readonly __hex: true;
|
|
223
223
|
} & {
|
|
224
224
|
readonly __address: true;
|
|
@@ -235,7 +235,7 @@ export declare const toSignedBlockBoundWitnessWithStorageMeta: {
|
|
|
235
235
|
schema: "network.xyo.boundwitness" & {
|
|
236
236
|
readonly __schema: true;
|
|
237
237
|
};
|
|
238
|
-
addresses: (import("@xyo-network/sdk-js").
|
|
238
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
239
239
|
readonly __hex: true;
|
|
240
240
|
} & {
|
|
241
241
|
readonly __address: true;
|
|
@@ -248,7 +248,7 @@ export declare const toSignedBlockBoundWitnessWithStorageMeta: {
|
|
|
248
248
|
chain: import("@xylabs/sdk-js").BrandedHex;
|
|
249
249
|
previous: import("@xylabs/sdk-js").BrandedHash | null;
|
|
250
250
|
$epoch: number;
|
|
251
|
-
$destination?: import("@xyo-network/sdk-js").
|
|
251
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
252
252
|
readonly __hex: true;
|
|
253
253
|
} & {
|
|
254
254
|
readonly __address: true;
|
|
@@ -260,7 +260,7 @@ export declare const toSignedBlockBoundWitnessWithStorageMeta: {
|
|
|
260
260
|
schema: "network.xyo.boundwitness" & {
|
|
261
261
|
readonly __schema: true;
|
|
262
262
|
};
|
|
263
|
-
addresses: (import("@xyo-network/sdk-js").
|
|
263
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
264
264
|
readonly __hex: true;
|
|
265
265
|
} & {
|
|
266
266
|
readonly __address: true;
|
|
@@ -276,7 +276,7 @@ export declare const toSignedBlockBoundWitnessWithStorageMeta: {
|
|
|
276
276
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
277
277
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
278
278
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
279
|
-
$destination?: import("@xyo-network/sdk-js").
|
|
279
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
280
280
|
readonly __hex: true;
|
|
281
281
|
} & {
|
|
282
282
|
readonly __address: true;
|
|
@@ -289,7 +289,7 @@ export declare const toSignedBlockBoundWitnessWithStorageMeta: {
|
|
|
289
289
|
schema: "network.xyo.boundwitness" & {
|
|
290
290
|
readonly __schema: true;
|
|
291
291
|
};
|
|
292
|
-
addresses: (import("@xyo-network/sdk-js").
|
|
292
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
293
293
|
readonly __hex: true;
|
|
294
294
|
} & {
|
|
295
295
|
readonly __address: true;
|
|
@@ -302,7 +302,7 @@ export declare const toSignedBlockBoundWitnessWithStorageMeta: {
|
|
|
302
302
|
chain: import("@xylabs/sdk-js").BrandedHex;
|
|
303
303
|
previous: import("@xylabs/sdk-js").BrandedHash | null;
|
|
304
304
|
$epoch: number;
|
|
305
|
-
$destination?: import("@xyo-network/sdk-js").
|
|
305
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
306
306
|
readonly __hex: true;
|
|
307
307
|
} & {
|
|
308
308
|
readonly __address: true;
|
|
@@ -314,7 +314,7 @@ export declare const toSignedBlockBoundWitnessWithStorageMeta: {
|
|
|
314
314
|
schema: "network.xyo.boundwitness" & {
|
|
315
315
|
readonly __schema: true;
|
|
316
316
|
};
|
|
317
|
-
addresses: (import("@xyo-network/sdk-js").
|
|
317
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
318
318
|
readonly __hex: true;
|
|
319
319
|
} & {
|
|
320
320
|
readonly __address: true;
|
|
@@ -330,7 +330,7 @@ export declare const toSignedBlockBoundWitnessWithStorageMeta: {
|
|
|
330
330
|
_hash: import("@xylabs/sdk-js").BrandedHash;
|
|
331
331
|
_dataHash: import("@xylabs/sdk-js").BrandedHash;
|
|
332
332
|
_sequence: import("@xyo-network/sdk-js").LocalSequence | import("@xyo-network/sdk-js").QualifiedSequence;
|
|
333
|
-
$destination?: import("@xyo-network/sdk-js").
|
|
333
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
334
334
|
readonly __hex: true;
|
|
335
335
|
} & {
|
|
336
336
|
readonly __address: true;
|
|
@@ -8,7 +8,7 @@ export declare const UnsignedBlockBoundWitnessZod: z.ZodMiniObject<{
|
|
|
8
8
|
readonly __hex: true;
|
|
9
9
|
} & {
|
|
10
10
|
readonly __address: true;
|
|
11
|
-
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").
|
|
11
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuantAddress, string>>]>>;
|
|
12
12
|
payload_hashes: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
13
13
|
payload_schemas: z.ZodMiniArray<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").BrandedSchema<string>, string>>>;
|
|
14
14
|
previous_hashes: z.ZodMiniArray<z.ZodMiniNullable<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>>;
|
|
@@ -16,7 +16,7 @@ export declare const UnsignedBlockBoundWitnessZod: z.ZodMiniObject<{
|
|
|
16
16
|
readonly __hex: true;
|
|
17
17
|
} & {
|
|
18
18
|
readonly __address: true;
|
|
19
|
-
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").
|
|
19
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xyo-network/sdk-js").XyoQuantAddress, string>>]>>;
|
|
20
20
|
$sourceQuery: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<import("@xylabs/sdk-js").BrandedHash, string>>>;
|
|
21
21
|
$signatures: z.ZodMiniArray<z.ZodMiniNull>;
|
|
22
22
|
block: import("zod").ZodPipe<import("zod").ZodNumber, import("zod").ZodTransform<import("../../index.ts").XL1BlockNumber, number>>;
|
|
@@ -33,7 +33,7 @@ export declare const isUnsignedBlockBoundWitness: <T>(value: T) => value is T &
|
|
|
33
33
|
schema: "network.xyo.boundwitness" & {
|
|
34
34
|
readonly __schema: true;
|
|
35
35
|
};
|
|
36
|
-
addresses: (import("@xyo-network/sdk-js").
|
|
36
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
37
37
|
readonly __hex: true;
|
|
38
38
|
} & {
|
|
39
39
|
readonly __address: true;
|
|
@@ -46,7 +46,7 @@ export declare const isUnsignedBlockBoundWitness: <T>(value: T) => value is T &
|
|
|
46
46
|
chain: import("@xylabs/sdk-js").BrandedHex;
|
|
47
47
|
previous: import("@xylabs/sdk-js").BrandedHash | null;
|
|
48
48
|
$epoch: number;
|
|
49
|
-
$destination?: import("@xyo-network/sdk-js").
|
|
49
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
50
50
|
readonly __hex: true;
|
|
51
51
|
} & {
|
|
52
52
|
readonly __address: true;
|
|
@@ -61,7 +61,7 @@ export declare const asUnsignedBlockBoundWitness: {
|
|
|
61
61
|
schema: "network.xyo.boundwitness" & {
|
|
62
62
|
readonly __schema: true;
|
|
63
63
|
};
|
|
64
|
-
addresses: (import("@xyo-network/sdk-js").
|
|
64
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
65
65
|
readonly __hex: true;
|
|
66
66
|
} & {
|
|
67
67
|
readonly __address: true;
|
|
@@ -74,7 +74,7 @@ export declare const asUnsignedBlockBoundWitness: {
|
|
|
74
74
|
chain: import("@xylabs/sdk-js").BrandedHex;
|
|
75
75
|
previous: import("@xylabs/sdk-js").BrandedHash | null;
|
|
76
76
|
$epoch: number;
|
|
77
|
-
$destination?: import("@xyo-network/sdk-js").
|
|
77
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
78
78
|
readonly __hex: true;
|
|
79
79
|
} & {
|
|
80
80
|
readonly __address: true;
|
|
@@ -87,7 +87,7 @@ export declare const asUnsignedBlockBoundWitness: {
|
|
|
87
87
|
schema: "network.xyo.boundwitness" & {
|
|
88
88
|
readonly __schema: true;
|
|
89
89
|
};
|
|
90
|
-
addresses: (import("@xyo-network/sdk-js").
|
|
90
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
91
91
|
readonly __hex: true;
|
|
92
92
|
} & {
|
|
93
93
|
readonly __address: true;
|
|
@@ -100,7 +100,7 @@ export declare const asUnsignedBlockBoundWitness: {
|
|
|
100
100
|
chain: import("@xylabs/sdk-js").BrandedHex;
|
|
101
101
|
previous: import("@xylabs/sdk-js").BrandedHash | null;
|
|
102
102
|
$epoch: number;
|
|
103
|
-
$destination?: import("@xyo-network/sdk-js").
|
|
103
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
104
104
|
readonly __hex: true;
|
|
105
105
|
} & {
|
|
106
106
|
readonly __address: true;
|
|
@@ -116,7 +116,7 @@ export declare const toUnsignedBlockBoundWitness: {
|
|
|
116
116
|
schema: "network.xyo.boundwitness" & {
|
|
117
117
|
readonly __schema: true;
|
|
118
118
|
};
|
|
119
|
-
addresses: (import("@xyo-network/sdk-js").
|
|
119
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
120
120
|
readonly __hex: true;
|
|
121
121
|
} & {
|
|
122
122
|
readonly __address: true;
|
|
@@ -129,7 +129,7 @@ export declare const toUnsignedBlockBoundWitness: {
|
|
|
129
129
|
chain: import("@xylabs/sdk-js").BrandedHex;
|
|
130
130
|
previous: import("@xylabs/sdk-js").BrandedHash | null;
|
|
131
131
|
$epoch: number;
|
|
132
|
-
$destination?: import("@xyo-network/sdk-js").
|
|
132
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
133
133
|
readonly __hex: true;
|
|
134
134
|
} & {
|
|
135
135
|
readonly __address: true;
|
|
@@ -142,7 +142,7 @@ export declare const toUnsignedBlockBoundWitness: {
|
|
|
142
142
|
schema: "network.xyo.boundwitness" & {
|
|
143
143
|
readonly __schema: true;
|
|
144
144
|
};
|
|
145
|
-
addresses: (import("@xyo-network/sdk-js").
|
|
145
|
+
addresses: (import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
146
146
|
readonly __hex: true;
|
|
147
147
|
} & {
|
|
148
148
|
readonly __address: true;
|
|
@@ -155,7 +155,7 @@ export declare const toUnsignedBlockBoundWitness: {
|
|
|
155
155
|
chain: import("@xylabs/sdk-js").BrandedHex;
|
|
156
156
|
previous: import("@xylabs/sdk-js").BrandedHash | null;
|
|
157
157
|
$epoch: number;
|
|
158
|
-
$destination?: import("@xyo-network/sdk-js").
|
|
158
|
+
$destination?: import("@xyo-network/sdk-js").XyoQuantAddress | (Lowercase<string> & {
|
|
159
159
|
readonly __hex: true;
|
|
160
160
|
} & {
|
|
161
161
|
readonly __address: true;
|
package/dist/neutral/index.mjs
CHANGED
|
@@ -204,7 +204,7 @@ import { z as z7 } from "zod";
|
|
|
204
204
|
|
|
205
205
|
// src/BlockNumber/Numberish.ts
|
|
206
206
|
import { z as z6 } from "zod";
|
|
207
|
-
var NumberishZod = z6.union([z6.number(), z6.string(), z6.bigint()]).transform((v) => typeof v === "bigint"
|
|
207
|
+
var NumberishZod = z6.union([z6.number(), z6.string(), z6.bigint()]).transform((v) => typeof v === "bigint" || typeof v === "string" ? Number(v) : v).pipe(z6.number());
|
|
208
208
|
|
|
209
209
|
// src/BlockNumber/BlockNumber.ts
|
|
210
210
|
var BlockNumberZod = z7.number().transform((v) => v);
|