@aztec/node-keystore 2.0.0-nightly.20250903 → 3.0.0-canary.a9708bd
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/dest/schemas.d.ts +533 -533
- package/dest/schemas.js +15 -15
- package/package.json +4 -4
- package/src/schemas.ts +15 -15
package/dest/schemas.d.ts
CHANGED
|
@@ -1,43 +1,43 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
3
3
|
schemaVersion: z.ZodLiteral<1>;
|
|
4
|
-
validators: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4
|
+
validators: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
5
5
|
attester: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
6
6
|
address: z.ZodEffects<z.ZodString, string, string>;
|
|
7
|
-
remoteSignerUrl: z.ZodOptional<z.ZodString
|
|
8
|
-
certPath: z.ZodOptional<z.ZodString
|
|
9
|
-
certPass: z.ZodOptional<z.ZodString
|
|
7
|
+
remoteSignerUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8
|
+
certPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9
|
+
certPass: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10
10
|
}, "strip", z.ZodTypeAny, {
|
|
11
11
|
address: string;
|
|
12
|
-
remoteSignerUrl?: string | undefined;
|
|
13
|
-
certPath?: string | undefined;
|
|
14
|
-
certPass?: string | undefined;
|
|
12
|
+
remoteSignerUrl?: string | null | undefined;
|
|
13
|
+
certPath?: string | null | undefined;
|
|
14
|
+
certPass?: string | null | undefined;
|
|
15
15
|
}, {
|
|
16
16
|
address: string;
|
|
17
|
-
remoteSignerUrl?: string | undefined;
|
|
18
|
-
certPath?: string | undefined;
|
|
19
|
-
certPass?: string | undefined;
|
|
17
|
+
remoteSignerUrl?: string | null | undefined;
|
|
18
|
+
certPath?: string | null | undefined;
|
|
19
|
+
certPass?: string | null | undefined;
|
|
20
20
|
}>]>, z.ZodObject<{
|
|
21
21
|
path: z.ZodString;
|
|
22
|
-
password: z.ZodOptional<z.ZodString
|
|
22
|
+
password: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23
23
|
}, "strip", z.ZodTypeAny, {
|
|
24
24
|
path: string;
|
|
25
|
-
password?: string | undefined;
|
|
25
|
+
password?: string | null | undefined;
|
|
26
26
|
}, {
|
|
27
27
|
path: string;
|
|
28
|
-
password?: string | undefined;
|
|
28
|
+
password?: string | null | undefined;
|
|
29
29
|
}>, z.ZodObject<{
|
|
30
30
|
mnemonic: z.ZodString;
|
|
31
|
-
addressIndex: z.
|
|
32
|
-
accountIndex: z.
|
|
33
|
-
addressCount: z.
|
|
34
|
-
accountCount: z.
|
|
31
|
+
addressIndex: z.ZodDefault<z.ZodNumber>;
|
|
32
|
+
accountIndex: z.ZodDefault<z.ZodNumber>;
|
|
33
|
+
addressCount: z.ZodDefault<z.ZodNumber>;
|
|
34
|
+
accountCount: z.ZodDefault<z.ZodNumber>;
|
|
35
35
|
}, "strip", z.ZodTypeAny, {
|
|
36
36
|
mnemonic: string;
|
|
37
|
-
addressIndex
|
|
38
|
-
accountIndex
|
|
39
|
-
addressCount
|
|
40
|
-
accountCount
|
|
37
|
+
addressIndex: number;
|
|
38
|
+
accountIndex: number;
|
|
39
|
+
addressCount: number;
|
|
40
|
+
accountCount: number;
|
|
41
41
|
}, {
|
|
42
42
|
mnemonic: string;
|
|
43
43
|
addressIndex?: number | undefined;
|
|
@@ -46,40 +46,40 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
46
46
|
accountCount?: number | undefined;
|
|
47
47
|
}>]>, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
48
48
|
address: z.ZodEffects<z.ZodString, string, string>;
|
|
49
|
-
remoteSignerUrl: z.ZodOptional<z.ZodString
|
|
50
|
-
certPath: z.ZodOptional<z.ZodString
|
|
51
|
-
certPass: z.ZodOptional<z.ZodString
|
|
49
|
+
remoteSignerUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
50
|
+
certPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
51
|
+
certPass: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
52
52
|
}, "strip", z.ZodTypeAny, {
|
|
53
53
|
address: string;
|
|
54
|
-
remoteSignerUrl?: string | undefined;
|
|
55
|
-
certPath?: string | undefined;
|
|
56
|
-
certPass?: string | undefined;
|
|
54
|
+
remoteSignerUrl?: string | null | undefined;
|
|
55
|
+
certPath?: string | null | undefined;
|
|
56
|
+
certPass?: string | null | undefined;
|
|
57
57
|
}, {
|
|
58
58
|
address: string;
|
|
59
|
-
remoteSignerUrl?: string | undefined;
|
|
60
|
-
certPath?: string | undefined;
|
|
61
|
-
certPass?: string | undefined;
|
|
59
|
+
remoteSignerUrl?: string | null | undefined;
|
|
60
|
+
certPath?: string | null | undefined;
|
|
61
|
+
certPass?: string | null | undefined;
|
|
62
62
|
}>]>, z.ZodObject<{
|
|
63
63
|
path: z.ZodString;
|
|
64
|
-
password: z.ZodOptional<z.ZodString
|
|
64
|
+
password: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
65
65
|
}, "strip", z.ZodTypeAny, {
|
|
66
66
|
path: string;
|
|
67
|
-
password?: string | undefined;
|
|
67
|
+
password?: string | null | undefined;
|
|
68
68
|
}, {
|
|
69
69
|
path: string;
|
|
70
|
-
password?: string | undefined;
|
|
70
|
+
password?: string | null | undefined;
|
|
71
71
|
}>, z.ZodObject<{
|
|
72
72
|
mnemonic: z.ZodString;
|
|
73
|
-
addressIndex: z.
|
|
74
|
-
accountIndex: z.
|
|
75
|
-
addressCount: z.
|
|
76
|
-
accountCount: z.
|
|
73
|
+
addressIndex: z.ZodDefault<z.ZodNumber>;
|
|
74
|
+
accountIndex: z.ZodDefault<z.ZodNumber>;
|
|
75
|
+
addressCount: z.ZodDefault<z.ZodNumber>;
|
|
76
|
+
accountCount: z.ZodDefault<z.ZodNumber>;
|
|
77
77
|
}, "strip", z.ZodTypeAny, {
|
|
78
78
|
mnemonic: string;
|
|
79
|
-
addressIndex
|
|
80
|
-
accountIndex
|
|
81
|
-
addressCount
|
|
82
|
-
accountCount
|
|
79
|
+
addressIndex: number;
|
|
80
|
+
accountIndex: number;
|
|
81
|
+
addressCount: number;
|
|
82
|
+
accountCount: number;
|
|
83
83
|
}, {
|
|
84
84
|
mnemonic: string;
|
|
85
85
|
addressIndex?: number | undefined;
|
|
@@ -87,43 +87,43 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
87
87
|
addressCount?: number | undefined;
|
|
88
88
|
accountCount?: number | undefined;
|
|
89
89
|
}>]>, "many">]>;
|
|
90
|
-
coinbase: z.ZodOptional<z.ZodEffects<z.ZodString, string, string
|
|
91
|
-
publisher: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
90
|
+
coinbase: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>>;
|
|
91
|
+
publisher: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
92
92
|
address: z.ZodEffects<z.ZodString, string, string>;
|
|
93
|
-
remoteSignerUrl: z.ZodOptional<z.ZodString
|
|
94
|
-
certPath: z.ZodOptional<z.ZodString
|
|
95
|
-
certPass: z.ZodOptional<z.ZodString
|
|
93
|
+
remoteSignerUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
94
|
+
certPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
95
|
+
certPass: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
96
96
|
}, "strip", z.ZodTypeAny, {
|
|
97
97
|
address: string;
|
|
98
|
-
remoteSignerUrl?: string | undefined;
|
|
99
|
-
certPath?: string | undefined;
|
|
100
|
-
certPass?: string | undefined;
|
|
98
|
+
remoteSignerUrl?: string | null | undefined;
|
|
99
|
+
certPath?: string | null | undefined;
|
|
100
|
+
certPass?: string | null | undefined;
|
|
101
101
|
}, {
|
|
102
102
|
address: string;
|
|
103
|
-
remoteSignerUrl?: string | undefined;
|
|
104
|
-
certPath?: string | undefined;
|
|
105
|
-
certPass?: string | undefined;
|
|
103
|
+
remoteSignerUrl?: string | null | undefined;
|
|
104
|
+
certPath?: string | null | undefined;
|
|
105
|
+
certPass?: string | null | undefined;
|
|
106
106
|
}>]>, z.ZodObject<{
|
|
107
107
|
path: z.ZodString;
|
|
108
|
-
password: z.ZodOptional<z.ZodString
|
|
108
|
+
password: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
109
109
|
}, "strip", z.ZodTypeAny, {
|
|
110
110
|
path: string;
|
|
111
|
-
password?: string | undefined;
|
|
111
|
+
password?: string | null | undefined;
|
|
112
112
|
}, {
|
|
113
113
|
path: string;
|
|
114
|
-
password?: string | undefined;
|
|
114
|
+
password?: string | null | undefined;
|
|
115
115
|
}>, z.ZodObject<{
|
|
116
116
|
mnemonic: z.ZodString;
|
|
117
|
-
addressIndex: z.
|
|
118
|
-
accountIndex: z.
|
|
119
|
-
addressCount: z.
|
|
120
|
-
accountCount: z.
|
|
117
|
+
addressIndex: z.ZodDefault<z.ZodNumber>;
|
|
118
|
+
accountIndex: z.ZodDefault<z.ZodNumber>;
|
|
119
|
+
addressCount: z.ZodDefault<z.ZodNumber>;
|
|
120
|
+
accountCount: z.ZodDefault<z.ZodNumber>;
|
|
121
121
|
}, "strip", z.ZodTypeAny, {
|
|
122
122
|
mnemonic: string;
|
|
123
|
-
addressIndex
|
|
124
|
-
accountIndex
|
|
125
|
-
addressCount
|
|
126
|
-
accountCount
|
|
123
|
+
addressIndex: number;
|
|
124
|
+
accountIndex: number;
|
|
125
|
+
addressCount: number;
|
|
126
|
+
accountCount: number;
|
|
127
127
|
}, {
|
|
128
128
|
mnemonic: string;
|
|
129
129
|
addressIndex?: number | undefined;
|
|
@@ -132,136 +132,136 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
132
132
|
accountCount?: number | undefined;
|
|
133
133
|
}>]>, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
134
134
|
address: z.ZodEffects<z.ZodString, string, string>;
|
|
135
|
-
remoteSignerUrl: z.ZodOptional<z.ZodString
|
|
136
|
-
certPath: z.ZodOptional<z.ZodString
|
|
137
|
-
certPass: z.ZodOptional<z.ZodString
|
|
135
|
+
remoteSignerUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
136
|
+
certPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
137
|
+
certPass: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
138
138
|
}, "strip", z.ZodTypeAny, {
|
|
139
139
|
address: string;
|
|
140
|
-
remoteSignerUrl?: string | undefined;
|
|
141
|
-
certPath?: string | undefined;
|
|
142
|
-
certPass?: string | undefined;
|
|
140
|
+
remoteSignerUrl?: string | null | undefined;
|
|
141
|
+
certPath?: string | null | undefined;
|
|
142
|
+
certPass?: string | null | undefined;
|
|
143
143
|
}, {
|
|
144
144
|
address: string;
|
|
145
|
-
remoteSignerUrl?: string | undefined;
|
|
146
|
-
certPath?: string | undefined;
|
|
147
|
-
certPass?: string | undefined;
|
|
145
|
+
remoteSignerUrl?: string | null | undefined;
|
|
146
|
+
certPath?: string | null | undefined;
|
|
147
|
+
certPass?: string | null | undefined;
|
|
148
148
|
}>]>, z.ZodObject<{
|
|
149
149
|
path: z.ZodString;
|
|
150
|
-
password: z.ZodOptional<z.ZodString
|
|
150
|
+
password: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
151
151
|
}, "strip", z.ZodTypeAny, {
|
|
152
152
|
path: string;
|
|
153
|
-
password?: string | undefined;
|
|
153
|
+
password?: string | null | undefined;
|
|
154
154
|
}, {
|
|
155
155
|
path: string;
|
|
156
|
-
password?: string | undefined;
|
|
156
|
+
password?: string | null | undefined;
|
|
157
157
|
}>, z.ZodObject<{
|
|
158
158
|
mnemonic: z.ZodString;
|
|
159
|
-
addressIndex: z.
|
|
160
|
-
accountIndex: z.
|
|
161
|
-
addressCount: z.
|
|
162
|
-
accountCount: z.
|
|
159
|
+
addressIndex: z.ZodDefault<z.ZodNumber>;
|
|
160
|
+
accountIndex: z.ZodDefault<z.ZodNumber>;
|
|
161
|
+
addressCount: z.ZodDefault<z.ZodNumber>;
|
|
162
|
+
accountCount: z.ZodDefault<z.ZodNumber>;
|
|
163
163
|
}, "strip", z.ZodTypeAny, {
|
|
164
164
|
mnemonic: string;
|
|
165
|
-
addressIndex
|
|
166
|
-
accountIndex
|
|
167
|
-
addressCount
|
|
168
|
-
accountCount
|
|
165
|
+
addressIndex: number;
|
|
166
|
+
accountIndex: number;
|
|
167
|
+
addressCount: number;
|
|
168
|
+
accountCount: number;
|
|
169
169
|
}, {
|
|
170
170
|
mnemonic: string;
|
|
171
171
|
addressIndex?: number | undefined;
|
|
172
172
|
accountIndex?: number | undefined;
|
|
173
173
|
addressCount?: number | undefined;
|
|
174
174
|
accountCount?: number | undefined;
|
|
175
|
-
}>]>, "many">]
|
|
175
|
+
}>]>, "many">]>>>;
|
|
176
176
|
feeRecipient: z.ZodEffects<z.ZodString, string, string>;
|
|
177
177
|
remoteSigner: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
178
178
|
remoteSignerUrl: z.ZodString;
|
|
179
|
-
certPath: z.ZodOptional<z.ZodString
|
|
180
|
-
certPass: z.ZodOptional<z.ZodString
|
|
179
|
+
certPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
180
|
+
certPass: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
181
181
|
}, "strip", z.ZodTypeAny, {
|
|
182
182
|
remoteSignerUrl: string;
|
|
183
|
-
certPath?: string | undefined;
|
|
184
|
-
certPass?: string | undefined;
|
|
183
|
+
certPath?: string | null | undefined;
|
|
184
|
+
certPass?: string | null | undefined;
|
|
185
185
|
}, {
|
|
186
186
|
remoteSignerUrl: string;
|
|
187
|
-
certPath?: string | undefined;
|
|
188
|
-
certPass?: string | undefined;
|
|
187
|
+
certPath?: string | null | undefined;
|
|
188
|
+
certPass?: string | null | undefined;
|
|
189
189
|
}>]>>>;
|
|
190
190
|
}, "strip", z.ZodTypeAny, {
|
|
191
191
|
attester: string | {
|
|
192
192
|
address: string;
|
|
193
|
-
remoteSignerUrl?: string | undefined;
|
|
194
|
-
certPath?: string | undefined;
|
|
195
|
-
certPass?: string | undefined;
|
|
193
|
+
remoteSignerUrl?: string | null | undefined;
|
|
194
|
+
certPath?: string | null | undefined;
|
|
195
|
+
certPass?: string | null | undefined;
|
|
196
196
|
} | {
|
|
197
197
|
path: string;
|
|
198
|
-
password?: string | undefined;
|
|
198
|
+
password?: string | null | undefined;
|
|
199
199
|
} | {
|
|
200
200
|
mnemonic: string;
|
|
201
|
-
addressIndex
|
|
202
|
-
accountIndex
|
|
203
|
-
addressCount
|
|
204
|
-
accountCount
|
|
201
|
+
addressIndex: number;
|
|
202
|
+
accountIndex: number;
|
|
203
|
+
addressCount: number;
|
|
204
|
+
accountCount: number;
|
|
205
205
|
} | (string | {
|
|
206
206
|
address: string;
|
|
207
|
-
remoteSignerUrl?: string | undefined;
|
|
208
|
-
certPath?: string | undefined;
|
|
209
|
-
certPass?: string | undefined;
|
|
207
|
+
remoteSignerUrl?: string | null | undefined;
|
|
208
|
+
certPath?: string | null | undefined;
|
|
209
|
+
certPass?: string | null | undefined;
|
|
210
210
|
} | {
|
|
211
211
|
path: string;
|
|
212
|
-
password?: string | undefined;
|
|
212
|
+
password?: string | null | undefined;
|
|
213
213
|
} | {
|
|
214
214
|
mnemonic: string;
|
|
215
|
-
addressIndex
|
|
216
|
-
accountIndex
|
|
217
|
-
addressCount
|
|
218
|
-
accountCount
|
|
215
|
+
addressIndex: number;
|
|
216
|
+
accountIndex: number;
|
|
217
|
+
addressCount: number;
|
|
218
|
+
accountCount: number;
|
|
219
219
|
})[];
|
|
220
220
|
feeRecipient: string;
|
|
221
221
|
publisher?: string | {
|
|
222
222
|
address: string;
|
|
223
|
-
remoteSignerUrl?: string | undefined;
|
|
224
|
-
certPath?: string | undefined;
|
|
225
|
-
certPass?: string | undefined;
|
|
223
|
+
remoteSignerUrl?: string | null | undefined;
|
|
224
|
+
certPath?: string | null | undefined;
|
|
225
|
+
certPass?: string | null | undefined;
|
|
226
226
|
} | {
|
|
227
227
|
path: string;
|
|
228
|
-
password?: string | undefined;
|
|
228
|
+
password?: string | null | undefined;
|
|
229
229
|
} | {
|
|
230
230
|
mnemonic: string;
|
|
231
|
-
addressIndex
|
|
232
|
-
accountIndex
|
|
233
|
-
addressCount
|
|
234
|
-
accountCount
|
|
231
|
+
addressIndex: number;
|
|
232
|
+
accountIndex: number;
|
|
233
|
+
addressCount: number;
|
|
234
|
+
accountCount: number;
|
|
235
235
|
} | (string | {
|
|
236
236
|
address: string;
|
|
237
|
-
remoteSignerUrl?: string | undefined;
|
|
238
|
-
certPath?: string | undefined;
|
|
239
|
-
certPass?: string | undefined;
|
|
237
|
+
remoteSignerUrl?: string | null | undefined;
|
|
238
|
+
certPath?: string | null | undefined;
|
|
239
|
+
certPass?: string | null | undefined;
|
|
240
240
|
} | {
|
|
241
241
|
path: string;
|
|
242
|
-
password?: string | undefined;
|
|
242
|
+
password?: string | null | undefined;
|
|
243
243
|
} | {
|
|
244
244
|
mnemonic: string;
|
|
245
|
-
addressIndex
|
|
246
|
-
accountIndex
|
|
247
|
-
addressCount
|
|
248
|
-
accountCount
|
|
249
|
-
})[] | undefined;
|
|
250
|
-
coinbase?: string | undefined;
|
|
245
|
+
addressIndex: number;
|
|
246
|
+
accountIndex: number;
|
|
247
|
+
addressCount: number;
|
|
248
|
+
accountCount: number;
|
|
249
|
+
})[] | null | undefined;
|
|
250
|
+
coinbase?: string | null | undefined;
|
|
251
251
|
remoteSigner?: string | {
|
|
252
252
|
remoteSignerUrl: string;
|
|
253
|
-
certPath?: string | undefined;
|
|
254
|
-
certPass?: string | undefined;
|
|
253
|
+
certPath?: string | null | undefined;
|
|
254
|
+
certPass?: string | null | undefined;
|
|
255
255
|
} | null | undefined;
|
|
256
256
|
}, {
|
|
257
257
|
attester: string | {
|
|
258
258
|
address: string;
|
|
259
|
-
remoteSignerUrl?: string | undefined;
|
|
260
|
-
certPath?: string | undefined;
|
|
261
|
-
certPass?: string | undefined;
|
|
259
|
+
remoteSignerUrl?: string | null | undefined;
|
|
260
|
+
certPath?: string | null | undefined;
|
|
261
|
+
certPass?: string | null | undefined;
|
|
262
262
|
} | {
|
|
263
263
|
path: string;
|
|
264
|
-
password?: string | undefined;
|
|
264
|
+
password?: string | null | undefined;
|
|
265
265
|
} | {
|
|
266
266
|
mnemonic: string;
|
|
267
267
|
addressIndex?: number | undefined;
|
|
@@ -270,12 +270,12 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
270
270
|
accountCount?: number | undefined;
|
|
271
271
|
} | (string | {
|
|
272
272
|
address: string;
|
|
273
|
-
remoteSignerUrl?: string | undefined;
|
|
274
|
-
certPath?: string | undefined;
|
|
275
|
-
certPass?: string | undefined;
|
|
273
|
+
remoteSignerUrl?: string | null | undefined;
|
|
274
|
+
certPath?: string | null | undefined;
|
|
275
|
+
certPass?: string | null | undefined;
|
|
276
276
|
} | {
|
|
277
277
|
path: string;
|
|
278
|
-
password?: string | undefined;
|
|
278
|
+
password?: string | null | undefined;
|
|
279
279
|
} | {
|
|
280
280
|
mnemonic: string;
|
|
281
281
|
addressIndex?: number | undefined;
|
|
@@ -286,12 +286,12 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
286
286
|
feeRecipient: string;
|
|
287
287
|
publisher?: string | {
|
|
288
288
|
address: string;
|
|
289
|
-
remoteSignerUrl?: string | undefined;
|
|
290
|
-
certPath?: string | undefined;
|
|
291
|
-
certPass?: string | undefined;
|
|
289
|
+
remoteSignerUrl?: string | null | undefined;
|
|
290
|
+
certPath?: string | null | undefined;
|
|
291
|
+
certPass?: string | null | undefined;
|
|
292
292
|
} | {
|
|
293
293
|
path: string;
|
|
294
|
-
password?: string | undefined;
|
|
294
|
+
password?: string | null | undefined;
|
|
295
295
|
} | {
|
|
296
296
|
mnemonic: string;
|
|
297
297
|
addressIndex?: number | undefined;
|
|
@@ -300,62 +300,62 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
300
300
|
accountCount?: number | undefined;
|
|
301
301
|
} | (string | {
|
|
302
302
|
address: string;
|
|
303
|
-
remoteSignerUrl?: string | undefined;
|
|
304
|
-
certPath?: string | undefined;
|
|
305
|
-
certPass?: string | undefined;
|
|
303
|
+
remoteSignerUrl?: string | null | undefined;
|
|
304
|
+
certPath?: string | null | undefined;
|
|
305
|
+
certPass?: string | null | undefined;
|
|
306
306
|
} | {
|
|
307
307
|
path: string;
|
|
308
|
-
password?: string | undefined;
|
|
308
|
+
password?: string | null | undefined;
|
|
309
309
|
} | {
|
|
310
310
|
mnemonic: string;
|
|
311
311
|
addressIndex?: number | undefined;
|
|
312
312
|
accountIndex?: number | undefined;
|
|
313
313
|
addressCount?: number | undefined;
|
|
314
314
|
accountCount?: number | undefined;
|
|
315
|
-
})[] | undefined;
|
|
316
|
-
coinbase?: string | undefined;
|
|
315
|
+
})[] | null | undefined;
|
|
316
|
+
coinbase?: string | null | undefined;
|
|
317
317
|
remoteSigner?: string | {
|
|
318
318
|
remoteSignerUrl: string;
|
|
319
|
-
certPath?: string | undefined;
|
|
320
|
-
certPass?: string | undefined;
|
|
319
|
+
certPath?: string | null | undefined;
|
|
320
|
+
certPass?: string | null | undefined;
|
|
321
321
|
} | null | undefined;
|
|
322
|
-
}>, "many"
|
|
323
|
-
slasher: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
322
|
+
}>, "many">>>;
|
|
323
|
+
slasher: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
324
324
|
address: z.ZodEffects<z.ZodString, string, string>;
|
|
325
|
-
remoteSignerUrl: z.ZodOptional<z.ZodString
|
|
326
|
-
certPath: z.ZodOptional<z.ZodString
|
|
327
|
-
certPass: z.ZodOptional<z.ZodString
|
|
325
|
+
remoteSignerUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
326
|
+
certPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
327
|
+
certPass: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
328
328
|
}, "strip", z.ZodTypeAny, {
|
|
329
329
|
address: string;
|
|
330
|
-
remoteSignerUrl?: string | undefined;
|
|
331
|
-
certPath?: string | undefined;
|
|
332
|
-
certPass?: string | undefined;
|
|
330
|
+
remoteSignerUrl?: string | null | undefined;
|
|
331
|
+
certPath?: string | null | undefined;
|
|
332
|
+
certPass?: string | null | undefined;
|
|
333
333
|
}, {
|
|
334
334
|
address: string;
|
|
335
|
-
remoteSignerUrl?: string | undefined;
|
|
336
|
-
certPath?: string | undefined;
|
|
337
|
-
certPass?: string | undefined;
|
|
335
|
+
remoteSignerUrl?: string | null | undefined;
|
|
336
|
+
certPath?: string | null | undefined;
|
|
337
|
+
certPass?: string | null | undefined;
|
|
338
338
|
}>]>, z.ZodObject<{
|
|
339
339
|
path: z.ZodString;
|
|
340
|
-
password: z.ZodOptional<z.ZodString
|
|
340
|
+
password: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
341
341
|
}, "strip", z.ZodTypeAny, {
|
|
342
342
|
path: string;
|
|
343
|
-
password?: string | undefined;
|
|
343
|
+
password?: string | null | undefined;
|
|
344
344
|
}, {
|
|
345
345
|
path: string;
|
|
346
|
-
password?: string | undefined;
|
|
346
|
+
password?: string | null | undefined;
|
|
347
347
|
}>, z.ZodObject<{
|
|
348
348
|
mnemonic: z.ZodString;
|
|
349
|
-
addressIndex: z.
|
|
350
|
-
accountIndex: z.
|
|
351
|
-
addressCount: z.
|
|
352
|
-
accountCount: z.
|
|
349
|
+
addressIndex: z.ZodDefault<z.ZodNumber>;
|
|
350
|
+
accountIndex: z.ZodDefault<z.ZodNumber>;
|
|
351
|
+
addressCount: z.ZodDefault<z.ZodNumber>;
|
|
352
|
+
accountCount: z.ZodDefault<z.ZodNumber>;
|
|
353
353
|
}, "strip", z.ZodTypeAny, {
|
|
354
354
|
mnemonic: string;
|
|
355
|
-
addressIndex
|
|
356
|
-
accountIndex
|
|
357
|
-
addressCount
|
|
358
|
-
accountCount
|
|
355
|
+
addressIndex: number;
|
|
356
|
+
accountIndex: number;
|
|
357
|
+
addressCount: number;
|
|
358
|
+
accountCount: number;
|
|
359
359
|
}, {
|
|
360
360
|
mnemonic: string;
|
|
361
361
|
addressIndex?: number | undefined;
|
|
@@ -364,96 +364,96 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
364
364
|
accountCount?: number | undefined;
|
|
365
365
|
}>]>, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
366
366
|
address: z.ZodEffects<z.ZodString, string, string>;
|
|
367
|
-
remoteSignerUrl: z.ZodOptional<z.ZodString
|
|
368
|
-
certPath: z.ZodOptional<z.ZodString
|
|
369
|
-
certPass: z.ZodOptional<z.ZodString
|
|
367
|
+
remoteSignerUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
368
|
+
certPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
369
|
+
certPass: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
370
370
|
}, "strip", z.ZodTypeAny, {
|
|
371
371
|
address: string;
|
|
372
|
-
remoteSignerUrl?: string | undefined;
|
|
373
|
-
certPath?: string | undefined;
|
|
374
|
-
certPass?: string | undefined;
|
|
372
|
+
remoteSignerUrl?: string | null | undefined;
|
|
373
|
+
certPath?: string | null | undefined;
|
|
374
|
+
certPass?: string | null | undefined;
|
|
375
375
|
}, {
|
|
376
376
|
address: string;
|
|
377
|
-
remoteSignerUrl?: string | undefined;
|
|
378
|
-
certPath?: string | undefined;
|
|
379
|
-
certPass?: string | undefined;
|
|
377
|
+
remoteSignerUrl?: string | null | undefined;
|
|
378
|
+
certPath?: string | null | undefined;
|
|
379
|
+
certPass?: string | null | undefined;
|
|
380
380
|
}>]>, z.ZodObject<{
|
|
381
381
|
path: z.ZodString;
|
|
382
|
-
password: z.ZodOptional<z.ZodString
|
|
382
|
+
password: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
383
383
|
}, "strip", z.ZodTypeAny, {
|
|
384
384
|
path: string;
|
|
385
|
-
password?: string | undefined;
|
|
385
|
+
password?: string | null | undefined;
|
|
386
386
|
}, {
|
|
387
387
|
path: string;
|
|
388
|
-
password?: string | undefined;
|
|
388
|
+
password?: string | null | undefined;
|
|
389
389
|
}>, z.ZodObject<{
|
|
390
390
|
mnemonic: z.ZodString;
|
|
391
|
-
addressIndex: z.
|
|
392
|
-
accountIndex: z.
|
|
393
|
-
addressCount: z.
|
|
394
|
-
accountCount: z.
|
|
391
|
+
addressIndex: z.ZodDefault<z.ZodNumber>;
|
|
392
|
+
accountIndex: z.ZodDefault<z.ZodNumber>;
|
|
393
|
+
addressCount: z.ZodDefault<z.ZodNumber>;
|
|
394
|
+
accountCount: z.ZodDefault<z.ZodNumber>;
|
|
395
395
|
}, "strip", z.ZodTypeAny, {
|
|
396
396
|
mnemonic: string;
|
|
397
|
-
addressIndex
|
|
398
|
-
accountIndex
|
|
399
|
-
addressCount
|
|
400
|
-
accountCount
|
|
397
|
+
addressIndex: number;
|
|
398
|
+
accountIndex: number;
|
|
399
|
+
addressCount: number;
|
|
400
|
+
accountCount: number;
|
|
401
401
|
}, {
|
|
402
402
|
mnemonic: string;
|
|
403
403
|
addressIndex?: number | undefined;
|
|
404
404
|
accountIndex?: number | undefined;
|
|
405
405
|
addressCount?: number | undefined;
|
|
406
406
|
accountCount?: number | undefined;
|
|
407
|
-
}>]>, "many">]
|
|
407
|
+
}>]>, "many">]>>>;
|
|
408
408
|
remoteSigner: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
409
409
|
remoteSignerUrl: z.ZodString;
|
|
410
|
-
certPath: z.ZodOptional<z.ZodString
|
|
411
|
-
certPass: z.ZodOptional<z.ZodString
|
|
410
|
+
certPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
411
|
+
certPass: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
412
412
|
}, "strip", z.ZodTypeAny, {
|
|
413
413
|
remoteSignerUrl: string;
|
|
414
|
-
certPath?: string | undefined;
|
|
415
|
-
certPass?: string | undefined;
|
|
414
|
+
certPath?: string | null | undefined;
|
|
415
|
+
certPass?: string | null | undefined;
|
|
416
416
|
}, {
|
|
417
417
|
remoteSignerUrl: string;
|
|
418
|
-
certPath?: string | undefined;
|
|
419
|
-
certPass?: string | undefined;
|
|
418
|
+
certPath?: string | null | undefined;
|
|
419
|
+
certPass?: string | null | undefined;
|
|
420
420
|
}>]>>>;
|
|
421
|
-
prover: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
421
|
+
prover: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
422
422
|
address: z.ZodEffects<z.ZodString, string, string>;
|
|
423
|
-
remoteSignerUrl: z.ZodOptional<z.ZodString
|
|
424
|
-
certPath: z.ZodOptional<z.ZodString
|
|
425
|
-
certPass: z.ZodOptional<z.ZodString
|
|
423
|
+
remoteSignerUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
424
|
+
certPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
425
|
+
certPass: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
426
426
|
}, "strip", z.ZodTypeAny, {
|
|
427
427
|
address: string;
|
|
428
|
-
remoteSignerUrl?: string | undefined;
|
|
429
|
-
certPath?: string | undefined;
|
|
430
|
-
certPass?: string | undefined;
|
|
428
|
+
remoteSignerUrl?: string | null | undefined;
|
|
429
|
+
certPath?: string | null | undefined;
|
|
430
|
+
certPass?: string | null | undefined;
|
|
431
431
|
}, {
|
|
432
432
|
address: string;
|
|
433
|
-
remoteSignerUrl?: string | undefined;
|
|
434
|
-
certPath?: string | undefined;
|
|
435
|
-
certPass?: string | undefined;
|
|
433
|
+
remoteSignerUrl?: string | null | undefined;
|
|
434
|
+
certPath?: string | null | undefined;
|
|
435
|
+
certPass?: string | null | undefined;
|
|
436
436
|
}>]>, z.ZodObject<{
|
|
437
437
|
path: z.ZodString;
|
|
438
|
-
password: z.ZodOptional<z.ZodString
|
|
438
|
+
password: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
439
439
|
}, "strip", z.ZodTypeAny, {
|
|
440
440
|
path: string;
|
|
441
|
-
password?: string | undefined;
|
|
441
|
+
password?: string | null | undefined;
|
|
442
442
|
}, {
|
|
443
443
|
path: string;
|
|
444
|
-
password?: string | undefined;
|
|
444
|
+
password?: string | null | undefined;
|
|
445
445
|
}>, z.ZodObject<{
|
|
446
446
|
mnemonic: z.ZodString;
|
|
447
|
-
addressIndex: z.
|
|
448
|
-
accountIndex: z.
|
|
449
|
-
addressCount: z.
|
|
450
|
-
accountCount: z.
|
|
447
|
+
addressIndex: z.ZodDefault<z.ZodNumber>;
|
|
448
|
+
accountIndex: z.ZodDefault<z.ZodNumber>;
|
|
449
|
+
addressCount: z.ZodDefault<z.ZodNumber>;
|
|
450
|
+
accountCount: z.ZodDefault<z.ZodNumber>;
|
|
451
451
|
}, "strip", z.ZodTypeAny, {
|
|
452
452
|
mnemonic: string;
|
|
453
|
-
addressIndex
|
|
454
|
-
accountIndex
|
|
455
|
-
addressCount
|
|
456
|
-
accountCount
|
|
453
|
+
addressIndex: number;
|
|
454
|
+
accountIndex: number;
|
|
455
|
+
addressCount: number;
|
|
456
|
+
accountCount: number;
|
|
457
457
|
}, {
|
|
458
458
|
mnemonic: string;
|
|
459
459
|
addressIndex?: number | undefined;
|
|
@@ -464,40 +464,40 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
464
464
|
id: z.ZodEffects<z.ZodString, string, string>;
|
|
465
465
|
publisher: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
466
466
|
address: z.ZodEffects<z.ZodString, string, string>;
|
|
467
|
-
remoteSignerUrl: z.ZodOptional<z.ZodString
|
|
468
|
-
certPath: z.ZodOptional<z.ZodString
|
|
469
|
-
certPass: z.ZodOptional<z.ZodString
|
|
467
|
+
remoteSignerUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
468
|
+
certPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
469
|
+
certPass: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
470
470
|
}, "strip", z.ZodTypeAny, {
|
|
471
471
|
address: string;
|
|
472
|
-
remoteSignerUrl?: string | undefined;
|
|
473
|
-
certPath?: string | undefined;
|
|
474
|
-
certPass?: string | undefined;
|
|
472
|
+
remoteSignerUrl?: string | null | undefined;
|
|
473
|
+
certPath?: string | null | undefined;
|
|
474
|
+
certPass?: string | null | undefined;
|
|
475
475
|
}, {
|
|
476
476
|
address: string;
|
|
477
|
-
remoteSignerUrl?: string | undefined;
|
|
478
|
-
certPath?: string | undefined;
|
|
479
|
-
certPass?: string | undefined;
|
|
477
|
+
remoteSignerUrl?: string | null | undefined;
|
|
478
|
+
certPath?: string | null | undefined;
|
|
479
|
+
certPass?: string | null | undefined;
|
|
480
480
|
}>]>, z.ZodObject<{
|
|
481
481
|
path: z.ZodString;
|
|
482
|
-
password: z.ZodOptional<z.ZodString
|
|
482
|
+
password: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
483
483
|
}, "strip", z.ZodTypeAny, {
|
|
484
484
|
path: string;
|
|
485
|
-
password?: string | undefined;
|
|
485
|
+
password?: string | null | undefined;
|
|
486
486
|
}, {
|
|
487
487
|
path: string;
|
|
488
|
-
password?: string | undefined;
|
|
488
|
+
password?: string | null | undefined;
|
|
489
489
|
}>, z.ZodObject<{
|
|
490
490
|
mnemonic: z.ZodString;
|
|
491
|
-
addressIndex: z.
|
|
492
|
-
accountIndex: z.
|
|
493
|
-
addressCount: z.
|
|
494
|
-
accountCount: z.
|
|
491
|
+
addressIndex: z.ZodDefault<z.ZodNumber>;
|
|
492
|
+
accountIndex: z.ZodDefault<z.ZodNumber>;
|
|
493
|
+
addressCount: z.ZodDefault<z.ZodNumber>;
|
|
494
|
+
accountCount: z.ZodDefault<z.ZodNumber>;
|
|
495
495
|
}, "strip", z.ZodTypeAny, {
|
|
496
496
|
mnemonic: string;
|
|
497
|
-
addressIndex
|
|
498
|
-
accountIndex
|
|
499
|
-
addressCount
|
|
500
|
-
accountCount
|
|
497
|
+
addressIndex: number;
|
|
498
|
+
accountIndex: number;
|
|
499
|
+
addressCount: number;
|
|
500
|
+
accountCount: number;
|
|
501
501
|
}, {
|
|
502
502
|
mnemonic: string;
|
|
503
503
|
addressIndex?: number | undefined;
|
|
@@ -506,40 +506,40 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
506
506
|
accountCount?: number | undefined;
|
|
507
507
|
}>]>, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
508
508
|
address: z.ZodEffects<z.ZodString, string, string>;
|
|
509
|
-
remoteSignerUrl: z.ZodOptional<z.ZodString
|
|
510
|
-
certPath: z.ZodOptional<z.ZodString
|
|
511
|
-
certPass: z.ZodOptional<z.ZodString
|
|
509
|
+
remoteSignerUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
510
|
+
certPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
511
|
+
certPass: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
512
512
|
}, "strip", z.ZodTypeAny, {
|
|
513
513
|
address: string;
|
|
514
|
-
remoteSignerUrl?: string | undefined;
|
|
515
|
-
certPath?: string | undefined;
|
|
516
|
-
certPass?: string | undefined;
|
|
514
|
+
remoteSignerUrl?: string | null | undefined;
|
|
515
|
+
certPath?: string | null | undefined;
|
|
516
|
+
certPass?: string | null | undefined;
|
|
517
517
|
}, {
|
|
518
518
|
address: string;
|
|
519
|
-
remoteSignerUrl?: string | undefined;
|
|
520
|
-
certPath?: string | undefined;
|
|
521
|
-
certPass?: string | undefined;
|
|
519
|
+
remoteSignerUrl?: string | null | undefined;
|
|
520
|
+
certPath?: string | null | undefined;
|
|
521
|
+
certPass?: string | null | undefined;
|
|
522
522
|
}>]>, z.ZodObject<{
|
|
523
523
|
path: z.ZodString;
|
|
524
|
-
password: z.ZodOptional<z.ZodString
|
|
524
|
+
password: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
525
525
|
}, "strip", z.ZodTypeAny, {
|
|
526
526
|
path: string;
|
|
527
|
-
password?: string | undefined;
|
|
527
|
+
password?: string | null | undefined;
|
|
528
528
|
}, {
|
|
529
529
|
path: string;
|
|
530
|
-
password?: string | undefined;
|
|
530
|
+
password?: string | null | undefined;
|
|
531
531
|
}>, z.ZodObject<{
|
|
532
532
|
mnemonic: z.ZodString;
|
|
533
|
-
addressIndex: z.
|
|
534
|
-
accountIndex: z.
|
|
535
|
-
addressCount: z.
|
|
536
|
-
accountCount: z.
|
|
533
|
+
addressIndex: z.ZodDefault<z.ZodNumber>;
|
|
534
|
+
accountIndex: z.ZodDefault<z.ZodNumber>;
|
|
535
|
+
addressCount: z.ZodDefault<z.ZodNumber>;
|
|
536
|
+
accountCount: z.ZodDefault<z.ZodNumber>;
|
|
537
537
|
}, "strip", z.ZodTypeAny, {
|
|
538
538
|
mnemonic: string;
|
|
539
|
-
addressIndex
|
|
540
|
-
accountIndex
|
|
541
|
-
addressCount
|
|
542
|
-
accountCount
|
|
539
|
+
addressIndex: number;
|
|
540
|
+
accountIndex: number;
|
|
541
|
+
addressCount: number;
|
|
542
|
+
accountCount: number;
|
|
543
543
|
}, {
|
|
544
544
|
mnemonic: string;
|
|
545
545
|
addressIndex?: number | undefined;
|
|
@@ -551,43 +551,43 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
551
551
|
id: string;
|
|
552
552
|
publisher: string | {
|
|
553
553
|
address: string;
|
|
554
|
-
remoteSignerUrl?: string | undefined;
|
|
555
|
-
certPath?: string | undefined;
|
|
556
|
-
certPass?: string | undefined;
|
|
554
|
+
remoteSignerUrl?: string | null | undefined;
|
|
555
|
+
certPath?: string | null | undefined;
|
|
556
|
+
certPass?: string | null | undefined;
|
|
557
557
|
} | {
|
|
558
558
|
path: string;
|
|
559
|
-
password?: string | undefined;
|
|
559
|
+
password?: string | null | undefined;
|
|
560
560
|
} | {
|
|
561
561
|
mnemonic: string;
|
|
562
|
-
addressIndex
|
|
563
|
-
accountIndex
|
|
564
|
-
addressCount
|
|
565
|
-
accountCount
|
|
562
|
+
addressIndex: number;
|
|
563
|
+
accountIndex: number;
|
|
564
|
+
addressCount: number;
|
|
565
|
+
accountCount: number;
|
|
566
566
|
} | (string | {
|
|
567
567
|
address: string;
|
|
568
|
-
remoteSignerUrl?: string | undefined;
|
|
569
|
-
certPath?: string | undefined;
|
|
570
|
-
certPass?: string | undefined;
|
|
568
|
+
remoteSignerUrl?: string | null | undefined;
|
|
569
|
+
certPath?: string | null | undefined;
|
|
570
|
+
certPass?: string | null | undefined;
|
|
571
571
|
} | {
|
|
572
572
|
path: string;
|
|
573
|
-
password?: string | undefined;
|
|
573
|
+
password?: string | null | undefined;
|
|
574
574
|
} | {
|
|
575
575
|
mnemonic: string;
|
|
576
|
-
addressIndex
|
|
577
|
-
accountIndex
|
|
578
|
-
addressCount
|
|
579
|
-
accountCount
|
|
576
|
+
addressIndex: number;
|
|
577
|
+
accountIndex: number;
|
|
578
|
+
addressCount: number;
|
|
579
|
+
accountCount: number;
|
|
580
580
|
})[];
|
|
581
581
|
}, {
|
|
582
582
|
id: string;
|
|
583
583
|
publisher: string | {
|
|
584
584
|
address: string;
|
|
585
|
-
remoteSignerUrl?: string | undefined;
|
|
586
|
-
certPath?: string | undefined;
|
|
587
|
-
certPass?: string | undefined;
|
|
585
|
+
remoteSignerUrl?: string | null | undefined;
|
|
586
|
+
certPath?: string | null | undefined;
|
|
587
|
+
certPass?: string | null | undefined;
|
|
588
588
|
} | {
|
|
589
589
|
path: string;
|
|
590
|
-
password?: string | undefined;
|
|
590
|
+
password?: string | null | undefined;
|
|
591
591
|
} | {
|
|
592
592
|
mnemonic: string;
|
|
593
593
|
addressIndex?: number | undefined;
|
|
@@ -596,12 +596,12 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
596
596
|
accountCount?: number | undefined;
|
|
597
597
|
} | (string | {
|
|
598
598
|
address: string;
|
|
599
|
-
remoteSignerUrl?: string | undefined;
|
|
600
|
-
certPath?: string | undefined;
|
|
601
|
-
certPass?: string | undefined;
|
|
599
|
+
remoteSignerUrl?: string | null | undefined;
|
|
600
|
+
certPath?: string | null | undefined;
|
|
601
|
+
certPass?: string | null | undefined;
|
|
602
602
|
} | {
|
|
603
603
|
path: string;
|
|
604
|
-
password?: string | undefined;
|
|
604
|
+
password?: string | null | undefined;
|
|
605
605
|
} | {
|
|
606
606
|
mnemonic: string;
|
|
607
607
|
addressIndex?: number | undefined;
|
|
@@ -609,172 +609,172 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
609
609
|
addressCount?: number | undefined;
|
|
610
610
|
accountCount?: number | undefined;
|
|
611
611
|
})[];
|
|
612
|
-
}>]
|
|
612
|
+
}>]>>>;
|
|
613
613
|
}, "strip", z.ZodTypeAny, {
|
|
614
614
|
schemaVersion: 1;
|
|
615
615
|
remoteSigner?: string | {
|
|
616
616
|
remoteSignerUrl: string;
|
|
617
|
-
certPath?: string | undefined;
|
|
618
|
-
certPass?: string | undefined;
|
|
617
|
+
certPath?: string | null | undefined;
|
|
618
|
+
certPass?: string | null | undefined;
|
|
619
619
|
} | null | undefined;
|
|
620
620
|
validators?: {
|
|
621
621
|
attester: string | {
|
|
622
622
|
address: string;
|
|
623
|
-
remoteSignerUrl?: string | undefined;
|
|
624
|
-
certPath?: string | undefined;
|
|
625
|
-
certPass?: string | undefined;
|
|
623
|
+
remoteSignerUrl?: string | null | undefined;
|
|
624
|
+
certPath?: string | null | undefined;
|
|
625
|
+
certPass?: string | null | undefined;
|
|
626
626
|
} | {
|
|
627
627
|
path: string;
|
|
628
|
-
password?: string | undefined;
|
|
628
|
+
password?: string | null | undefined;
|
|
629
629
|
} | {
|
|
630
630
|
mnemonic: string;
|
|
631
|
-
addressIndex
|
|
632
|
-
accountIndex
|
|
633
|
-
addressCount
|
|
634
|
-
accountCount
|
|
631
|
+
addressIndex: number;
|
|
632
|
+
accountIndex: number;
|
|
633
|
+
addressCount: number;
|
|
634
|
+
accountCount: number;
|
|
635
635
|
} | (string | {
|
|
636
636
|
address: string;
|
|
637
|
-
remoteSignerUrl?: string | undefined;
|
|
638
|
-
certPath?: string | undefined;
|
|
639
|
-
certPass?: string | undefined;
|
|
637
|
+
remoteSignerUrl?: string | null | undefined;
|
|
638
|
+
certPath?: string | null | undefined;
|
|
639
|
+
certPass?: string | null | undefined;
|
|
640
640
|
} | {
|
|
641
641
|
path: string;
|
|
642
|
-
password?: string | undefined;
|
|
642
|
+
password?: string | null | undefined;
|
|
643
643
|
} | {
|
|
644
644
|
mnemonic: string;
|
|
645
|
-
addressIndex
|
|
646
|
-
accountIndex
|
|
647
|
-
addressCount
|
|
648
|
-
accountCount
|
|
645
|
+
addressIndex: number;
|
|
646
|
+
accountIndex: number;
|
|
647
|
+
addressCount: number;
|
|
648
|
+
accountCount: number;
|
|
649
649
|
})[];
|
|
650
650
|
feeRecipient: string;
|
|
651
651
|
publisher?: string | {
|
|
652
652
|
address: string;
|
|
653
|
-
remoteSignerUrl?: string | undefined;
|
|
654
|
-
certPath?: string | undefined;
|
|
655
|
-
certPass?: string | undefined;
|
|
653
|
+
remoteSignerUrl?: string | null | undefined;
|
|
654
|
+
certPath?: string | null | undefined;
|
|
655
|
+
certPass?: string | null | undefined;
|
|
656
656
|
} | {
|
|
657
657
|
path: string;
|
|
658
|
-
password?: string | undefined;
|
|
658
|
+
password?: string | null | undefined;
|
|
659
659
|
} | {
|
|
660
660
|
mnemonic: string;
|
|
661
|
-
addressIndex
|
|
662
|
-
accountIndex
|
|
663
|
-
addressCount
|
|
664
|
-
accountCount
|
|
661
|
+
addressIndex: number;
|
|
662
|
+
accountIndex: number;
|
|
663
|
+
addressCount: number;
|
|
664
|
+
accountCount: number;
|
|
665
665
|
} | (string | {
|
|
666
666
|
address: string;
|
|
667
|
-
remoteSignerUrl?: string | undefined;
|
|
668
|
-
certPath?: string | undefined;
|
|
669
|
-
certPass?: string | undefined;
|
|
667
|
+
remoteSignerUrl?: string | null | undefined;
|
|
668
|
+
certPath?: string | null | undefined;
|
|
669
|
+
certPass?: string | null | undefined;
|
|
670
670
|
} | {
|
|
671
671
|
path: string;
|
|
672
|
-
password?: string | undefined;
|
|
672
|
+
password?: string | null | undefined;
|
|
673
673
|
} | {
|
|
674
674
|
mnemonic: string;
|
|
675
|
-
addressIndex
|
|
676
|
-
accountIndex
|
|
677
|
-
addressCount
|
|
678
|
-
accountCount
|
|
679
|
-
})[] | undefined;
|
|
680
|
-
coinbase?: string | undefined;
|
|
675
|
+
addressIndex: number;
|
|
676
|
+
accountIndex: number;
|
|
677
|
+
addressCount: number;
|
|
678
|
+
accountCount: number;
|
|
679
|
+
})[] | null | undefined;
|
|
680
|
+
coinbase?: string | null | undefined;
|
|
681
681
|
remoteSigner?: string | {
|
|
682
682
|
remoteSignerUrl: string;
|
|
683
|
-
certPath?: string | undefined;
|
|
684
|
-
certPass?: string | undefined;
|
|
683
|
+
certPath?: string | null | undefined;
|
|
684
|
+
certPass?: string | null | undefined;
|
|
685
685
|
} | null | undefined;
|
|
686
|
-
}[] | undefined;
|
|
686
|
+
}[] | null | undefined;
|
|
687
687
|
slasher?: string | {
|
|
688
688
|
address: string;
|
|
689
|
-
remoteSignerUrl?: string | undefined;
|
|
690
|
-
certPath?: string | undefined;
|
|
691
|
-
certPass?: string | undefined;
|
|
689
|
+
remoteSignerUrl?: string | null | undefined;
|
|
690
|
+
certPath?: string | null | undefined;
|
|
691
|
+
certPass?: string | null | undefined;
|
|
692
692
|
} | {
|
|
693
693
|
path: string;
|
|
694
|
-
password?: string | undefined;
|
|
694
|
+
password?: string | null | undefined;
|
|
695
695
|
} | {
|
|
696
696
|
mnemonic: string;
|
|
697
|
-
addressIndex
|
|
698
|
-
accountIndex
|
|
699
|
-
addressCount
|
|
700
|
-
accountCount
|
|
697
|
+
addressIndex: number;
|
|
698
|
+
accountIndex: number;
|
|
699
|
+
addressCount: number;
|
|
700
|
+
accountCount: number;
|
|
701
701
|
} | (string | {
|
|
702
702
|
address: string;
|
|
703
|
-
remoteSignerUrl?: string | undefined;
|
|
704
|
-
certPath?: string | undefined;
|
|
705
|
-
certPass?: string | undefined;
|
|
703
|
+
remoteSignerUrl?: string | null | undefined;
|
|
704
|
+
certPath?: string | null | undefined;
|
|
705
|
+
certPass?: string | null | undefined;
|
|
706
706
|
} | {
|
|
707
707
|
path: string;
|
|
708
|
-
password?: string | undefined;
|
|
708
|
+
password?: string | null | undefined;
|
|
709
709
|
} | {
|
|
710
710
|
mnemonic: string;
|
|
711
|
-
addressIndex
|
|
712
|
-
accountIndex
|
|
713
|
-
addressCount
|
|
714
|
-
accountCount
|
|
715
|
-
})[] | undefined;
|
|
711
|
+
addressIndex: number;
|
|
712
|
+
accountIndex: number;
|
|
713
|
+
addressCount: number;
|
|
714
|
+
accountCount: number;
|
|
715
|
+
})[] | null | undefined;
|
|
716
716
|
prover?: string | {
|
|
717
717
|
address: string;
|
|
718
|
-
remoteSignerUrl?: string | undefined;
|
|
719
|
-
certPath?: string | undefined;
|
|
720
|
-
certPass?: string | undefined;
|
|
718
|
+
remoteSignerUrl?: string | null | undefined;
|
|
719
|
+
certPath?: string | null | undefined;
|
|
720
|
+
certPass?: string | null | undefined;
|
|
721
721
|
} | {
|
|
722
722
|
path: string;
|
|
723
|
-
password?: string | undefined;
|
|
723
|
+
password?: string | null | undefined;
|
|
724
724
|
} | {
|
|
725
725
|
mnemonic: string;
|
|
726
|
-
addressIndex
|
|
727
|
-
accountIndex
|
|
728
|
-
addressCount
|
|
729
|
-
accountCount
|
|
726
|
+
addressIndex: number;
|
|
727
|
+
accountIndex: number;
|
|
728
|
+
addressCount: number;
|
|
729
|
+
accountCount: number;
|
|
730
730
|
} | {
|
|
731
731
|
id: string;
|
|
732
732
|
publisher: string | {
|
|
733
733
|
address: string;
|
|
734
|
-
remoteSignerUrl?: string | undefined;
|
|
735
|
-
certPath?: string | undefined;
|
|
736
|
-
certPass?: string | undefined;
|
|
734
|
+
remoteSignerUrl?: string | null | undefined;
|
|
735
|
+
certPath?: string | null | undefined;
|
|
736
|
+
certPass?: string | null | undefined;
|
|
737
737
|
} | {
|
|
738
738
|
path: string;
|
|
739
|
-
password?: string | undefined;
|
|
739
|
+
password?: string | null | undefined;
|
|
740
740
|
} | {
|
|
741
741
|
mnemonic: string;
|
|
742
|
-
addressIndex
|
|
743
|
-
accountIndex
|
|
744
|
-
addressCount
|
|
745
|
-
accountCount
|
|
742
|
+
addressIndex: number;
|
|
743
|
+
accountIndex: number;
|
|
744
|
+
addressCount: number;
|
|
745
|
+
accountCount: number;
|
|
746
746
|
} | (string | {
|
|
747
747
|
address: string;
|
|
748
|
-
remoteSignerUrl?: string | undefined;
|
|
749
|
-
certPath?: string | undefined;
|
|
750
|
-
certPass?: string | undefined;
|
|
748
|
+
remoteSignerUrl?: string | null | undefined;
|
|
749
|
+
certPath?: string | null | undefined;
|
|
750
|
+
certPass?: string | null | undefined;
|
|
751
751
|
} | {
|
|
752
752
|
path: string;
|
|
753
|
-
password?: string | undefined;
|
|
753
|
+
password?: string | null | undefined;
|
|
754
754
|
} | {
|
|
755
755
|
mnemonic: string;
|
|
756
|
-
addressIndex
|
|
757
|
-
accountIndex
|
|
758
|
-
addressCount
|
|
759
|
-
accountCount
|
|
756
|
+
addressIndex: number;
|
|
757
|
+
accountIndex: number;
|
|
758
|
+
addressCount: number;
|
|
759
|
+
accountCount: number;
|
|
760
760
|
})[];
|
|
761
|
-
} | undefined;
|
|
761
|
+
} | null | undefined;
|
|
762
762
|
}, {
|
|
763
763
|
schemaVersion: 1;
|
|
764
764
|
remoteSigner?: string | {
|
|
765
765
|
remoteSignerUrl: string;
|
|
766
|
-
certPath?: string | undefined;
|
|
767
|
-
certPass?: string | undefined;
|
|
766
|
+
certPath?: string | null | undefined;
|
|
767
|
+
certPass?: string | null | undefined;
|
|
768
768
|
} | null | undefined;
|
|
769
769
|
validators?: {
|
|
770
770
|
attester: string | {
|
|
771
771
|
address: string;
|
|
772
|
-
remoteSignerUrl?: string | undefined;
|
|
773
|
-
certPath?: string | undefined;
|
|
774
|
-
certPass?: string | undefined;
|
|
772
|
+
remoteSignerUrl?: string | null | undefined;
|
|
773
|
+
certPath?: string | null | undefined;
|
|
774
|
+
certPass?: string | null | undefined;
|
|
775
775
|
} | {
|
|
776
776
|
path: string;
|
|
777
|
-
password?: string | undefined;
|
|
777
|
+
password?: string | null | undefined;
|
|
778
778
|
} | {
|
|
779
779
|
mnemonic: string;
|
|
780
780
|
addressIndex?: number | undefined;
|
|
@@ -783,12 +783,12 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
783
783
|
accountCount?: number | undefined;
|
|
784
784
|
} | (string | {
|
|
785
785
|
address: string;
|
|
786
|
-
remoteSignerUrl?: string | undefined;
|
|
787
|
-
certPath?: string | undefined;
|
|
788
|
-
certPass?: string | undefined;
|
|
786
|
+
remoteSignerUrl?: string | null | undefined;
|
|
787
|
+
certPath?: string | null | undefined;
|
|
788
|
+
certPass?: string | null | undefined;
|
|
789
789
|
} | {
|
|
790
790
|
path: string;
|
|
791
|
-
password?: string | undefined;
|
|
791
|
+
password?: string | null | undefined;
|
|
792
792
|
} | {
|
|
793
793
|
mnemonic: string;
|
|
794
794
|
addressIndex?: number | undefined;
|
|
@@ -799,12 +799,12 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
799
799
|
feeRecipient: string;
|
|
800
800
|
publisher?: string | {
|
|
801
801
|
address: string;
|
|
802
|
-
remoteSignerUrl?: string | undefined;
|
|
803
|
-
certPath?: string | undefined;
|
|
804
|
-
certPass?: string | undefined;
|
|
802
|
+
remoteSignerUrl?: string | null | undefined;
|
|
803
|
+
certPath?: string | null | undefined;
|
|
804
|
+
certPass?: string | null | undefined;
|
|
805
805
|
} | {
|
|
806
806
|
path: string;
|
|
807
|
-
password?: string | undefined;
|
|
807
|
+
password?: string | null | undefined;
|
|
808
808
|
} | {
|
|
809
809
|
mnemonic: string;
|
|
810
810
|
addressIndex?: number | undefined;
|
|
@@ -813,34 +813,34 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
813
813
|
accountCount?: number | undefined;
|
|
814
814
|
} | (string | {
|
|
815
815
|
address: string;
|
|
816
|
-
remoteSignerUrl?: string | undefined;
|
|
817
|
-
certPath?: string | undefined;
|
|
818
|
-
certPass?: string | undefined;
|
|
816
|
+
remoteSignerUrl?: string | null | undefined;
|
|
817
|
+
certPath?: string | null | undefined;
|
|
818
|
+
certPass?: string | null | undefined;
|
|
819
819
|
} | {
|
|
820
820
|
path: string;
|
|
821
|
-
password?: string | undefined;
|
|
821
|
+
password?: string | null | undefined;
|
|
822
822
|
} | {
|
|
823
823
|
mnemonic: string;
|
|
824
824
|
addressIndex?: number | undefined;
|
|
825
825
|
accountIndex?: number | undefined;
|
|
826
826
|
addressCount?: number | undefined;
|
|
827
827
|
accountCount?: number | undefined;
|
|
828
|
-
})[] | undefined;
|
|
829
|
-
coinbase?: string | undefined;
|
|
828
|
+
})[] | null | undefined;
|
|
829
|
+
coinbase?: string | null | undefined;
|
|
830
830
|
remoteSigner?: string | {
|
|
831
831
|
remoteSignerUrl: string;
|
|
832
|
-
certPath?: string | undefined;
|
|
833
|
-
certPass?: string | undefined;
|
|
832
|
+
certPath?: string | null | undefined;
|
|
833
|
+
certPass?: string | null | undefined;
|
|
834
834
|
} | null | undefined;
|
|
835
|
-
}[] | undefined;
|
|
835
|
+
}[] | null | undefined;
|
|
836
836
|
slasher?: string | {
|
|
837
837
|
address: string;
|
|
838
|
-
remoteSignerUrl?: string | undefined;
|
|
839
|
-
certPath?: string | undefined;
|
|
840
|
-
certPass?: string | undefined;
|
|
838
|
+
remoteSignerUrl?: string | null | undefined;
|
|
839
|
+
certPath?: string | null | undefined;
|
|
840
|
+
certPass?: string | null | undefined;
|
|
841
841
|
} | {
|
|
842
842
|
path: string;
|
|
843
|
-
password?: string | undefined;
|
|
843
|
+
password?: string | null | undefined;
|
|
844
844
|
} | {
|
|
845
845
|
mnemonic: string;
|
|
846
846
|
addressIndex?: number | undefined;
|
|
@@ -849,27 +849,27 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
849
849
|
accountCount?: number | undefined;
|
|
850
850
|
} | (string | {
|
|
851
851
|
address: string;
|
|
852
|
-
remoteSignerUrl?: string | undefined;
|
|
853
|
-
certPath?: string | undefined;
|
|
854
|
-
certPass?: string | undefined;
|
|
852
|
+
remoteSignerUrl?: string | null | undefined;
|
|
853
|
+
certPath?: string | null | undefined;
|
|
854
|
+
certPass?: string | null | undefined;
|
|
855
855
|
} | {
|
|
856
856
|
path: string;
|
|
857
|
-
password?: string | undefined;
|
|
857
|
+
password?: string | null | undefined;
|
|
858
858
|
} | {
|
|
859
859
|
mnemonic: string;
|
|
860
860
|
addressIndex?: number | undefined;
|
|
861
861
|
accountIndex?: number | undefined;
|
|
862
862
|
addressCount?: number | undefined;
|
|
863
863
|
accountCount?: number | undefined;
|
|
864
|
-
})[] | undefined;
|
|
864
|
+
})[] | null | undefined;
|
|
865
865
|
prover?: string | {
|
|
866
866
|
address: string;
|
|
867
|
-
remoteSignerUrl?: string | undefined;
|
|
868
|
-
certPath?: string | undefined;
|
|
869
|
-
certPass?: string | undefined;
|
|
867
|
+
remoteSignerUrl?: string | null | undefined;
|
|
868
|
+
certPath?: string | null | undefined;
|
|
869
|
+
certPass?: string | null | undefined;
|
|
870
870
|
} | {
|
|
871
871
|
path: string;
|
|
872
|
-
password?: string | undefined;
|
|
872
|
+
password?: string | null | undefined;
|
|
873
873
|
} | {
|
|
874
874
|
mnemonic: string;
|
|
875
875
|
addressIndex?: number | undefined;
|
|
@@ -880,12 +880,12 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
880
880
|
id: string;
|
|
881
881
|
publisher: string | {
|
|
882
882
|
address: string;
|
|
883
|
-
remoteSignerUrl?: string | undefined;
|
|
884
|
-
certPath?: string | undefined;
|
|
885
|
-
certPass?: string | undefined;
|
|
883
|
+
remoteSignerUrl?: string | null | undefined;
|
|
884
|
+
certPath?: string | null | undefined;
|
|
885
|
+
certPass?: string | null | undefined;
|
|
886
886
|
} | {
|
|
887
887
|
path: string;
|
|
888
|
-
password?: string | undefined;
|
|
888
|
+
password?: string | null | undefined;
|
|
889
889
|
} | {
|
|
890
890
|
mnemonic: string;
|
|
891
891
|
addressIndex?: number | undefined;
|
|
@@ -894,12 +894,12 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
894
894
|
accountCount?: number | undefined;
|
|
895
895
|
} | (string | {
|
|
896
896
|
address: string;
|
|
897
|
-
remoteSignerUrl?: string | undefined;
|
|
898
|
-
certPath?: string | undefined;
|
|
899
|
-
certPass?: string | undefined;
|
|
897
|
+
remoteSignerUrl?: string | null | undefined;
|
|
898
|
+
certPath?: string | null | undefined;
|
|
899
|
+
certPass?: string | null | undefined;
|
|
900
900
|
} | {
|
|
901
901
|
path: string;
|
|
902
|
-
password?: string | undefined;
|
|
902
|
+
password?: string | null | undefined;
|
|
903
903
|
} | {
|
|
904
904
|
mnemonic: string;
|
|
905
905
|
addressIndex?: number | undefined;
|
|
@@ -907,172 +907,172 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
907
907
|
addressCount?: number | undefined;
|
|
908
908
|
accountCount?: number | undefined;
|
|
909
909
|
})[];
|
|
910
|
-
} | undefined;
|
|
910
|
+
} | null | undefined;
|
|
911
911
|
}>, {
|
|
912
912
|
schemaVersion: 1;
|
|
913
913
|
remoteSigner?: string | {
|
|
914
914
|
remoteSignerUrl: string;
|
|
915
|
-
certPath?: string | undefined;
|
|
916
|
-
certPass?: string | undefined;
|
|
915
|
+
certPath?: string | null | undefined;
|
|
916
|
+
certPass?: string | null | undefined;
|
|
917
917
|
} | null | undefined;
|
|
918
918
|
validators?: {
|
|
919
919
|
attester: string | {
|
|
920
920
|
address: string;
|
|
921
|
-
remoteSignerUrl?: string | undefined;
|
|
922
|
-
certPath?: string | undefined;
|
|
923
|
-
certPass?: string | undefined;
|
|
921
|
+
remoteSignerUrl?: string | null | undefined;
|
|
922
|
+
certPath?: string | null | undefined;
|
|
923
|
+
certPass?: string | null | undefined;
|
|
924
924
|
} | {
|
|
925
925
|
path: string;
|
|
926
|
-
password?: string | undefined;
|
|
926
|
+
password?: string | null | undefined;
|
|
927
927
|
} | {
|
|
928
928
|
mnemonic: string;
|
|
929
|
-
addressIndex
|
|
930
|
-
accountIndex
|
|
931
|
-
addressCount
|
|
932
|
-
accountCount
|
|
929
|
+
addressIndex: number;
|
|
930
|
+
accountIndex: number;
|
|
931
|
+
addressCount: number;
|
|
932
|
+
accountCount: number;
|
|
933
933
|
} | (string | {
|
|
934
934
|
address: string;
|
|
935
|
-
remoteSignerUrl?: string | undefined;
|
|
936
|
-
certPath?: string | undefined;
|
|
937
|
-
certPass?: string | undefined;
|
|
935
|
+
remoteSignerUrl?: string | null | undefined;
|
|
936
|
+
certPath?: string | null | undefined;
|
|
937
|
+
certPass?: string | null | undefined;
|
|
938
938
|
} | {
|
|
939
939
|
path: string;
|
|
940
|
-
password?: string | undefined;
|
|
940
|
+
password?: string | null | undefined;
|
|
941
941
|
} | {
|
|
942
942
|
mnemonic: string;
|
|
943
|
-
addressIndex
|
|
944
|
-
accountIndex
|
|
945
|
-
addressCount
|
|
946
|
-
accountCount
|
|
943
|
+
addressIndex: number;
|
|
944
|
+
accountIndex: number;
|
|
945
|
+
addressCount: number;
|
|
946
|
+
accountCount: number;
|
|
947
947
|
})[];
|
|
948
948
|
feeRecipient: string;
|
|
949
949
|
publisher?: string | {
|
|
950
950
|
address: string;
|
|
951
|
-
remoteSignerUrl?: string | undefined;
|
|
952
|
-
certPath?: string | undefined;
|
|
953
|
-
certPass?: string | undefined;
|
|
951
|
+
remoteSignerUrl?: string | null | undefined;
|
|
952
|
+
certPath?: string | null | undefined;
|
|
953
|
+
certPass?: string | null | undefined;
|
|
954
954
|
} | {
|
|
955
955
|
path: string;
|
|
956
|
-
password?: string | undefined;
|
|
956
|
+
password?: string | null | undefined;
|
|
957
957
|
} | {
|
|
958
958
|
mnemonic: string;
|
|
959
|
-
addressIndex
|
|
960
|
-
accountIndex
|
|
961
|
-
addressCount
|
|
962
|
-
accountCount
|
|
959
|
+
addressIndex: number;
|
|
960
|
+
accountIndex: number;
|
|
961
|
+
addressCount: number;
|
|
962
|
+
accountCount: number;
|
|
963
963
|
} | (string | {
|
|
964
964
|
address: string;
|
|
965
|
-
remoteSignerUrl?: string | undefined;
|
|
966
|
-
certPath?: string | undefined;
|
|
967
|
-
certPass?: string | undefined;
|
|
965
|
+
remoteSignerUrl?: string | null | undefined;
|
|
966
|
+
certPath?: string | null | undefined;
|
|
967
|
+
certPass?: string | null | undefined;
|
|
968
968
|
} | {
|
|
969
969
|
path: string;
|
|
970
|
-
password?: string | undefined;
|
|
970
|
+
password?: string | null | undefined;
|
|
971
971
|
} | {
|
|
972
972
|
mnemonic: string;
|
|
973
|
-
addressIndex
|
|
974
|
-
accountIndex
|
|
975
|
-
addressCount
|
|
976
|
-
accountCount
|
|
977
|
-
})[] | undefined;
|
|
978
|
-
coinbase?: string | undefined;
|
|
973
|
+
addressIndex: number;
|
|
974
|
+
accountIndex: number;
|
|
975
|
+
addressCount: number;
|
|
976
|
+
accountCount: number;
|
|
977
|
+
})[] | null | undefined;
|
|
978
|
+
coinbase?: string | null | undefined;
|
|
979
979
|
remoteSigner?: string | {
|
|
980
980
|
remoteSignerUrl: string;
|
|
981
|
-
certPath?: string | undefined;
|
|
982
|
-
certPass?: string | undefined;
|
|
981
|
+
certPath?: string | null | undefined;
|
|
982
|
+
certPass?: string | null | undefined;
|
|
983
983
|
} | null | undefined;
|
|
984
|
-
}[] | undefined;
|
|
984
|
+
}[] | null | undefined;
|
|
985
985
|
slasher?: string | {
|
|
986
986
|
address: string;
|
|
987
|
-
remoteSignerUrl?: string | undefined;
|
|
988
|
-
certPath?: string | undefined;
|
|
989
|
-
certPass?: string | undefined;
|
|
987
|
+
remoteSignerUrl?: string | null | undefined;
|
|
988
|
+
certPath?: string | null | undefined;
|
|
989
|
+
certPass?: string | null | undefined;
|
|
990
990
|
} | {
|
|
991
991
|
path: string;
|
|
992
|
-
password?: string | undefined;
|
|
992
|
+
password?: string | null | undefined;
|
|
993
993
|
} | {
|
|
994
994
|
mnemonic: string;
|
|
995
|
-
addressIndex
|
|
996
|
-
accountIndex
|
|
997
|
-
addressCount
|
|
998
|
-
accountCount
|
|
995
|
+
addressIndex: number;
|
|
996
|
+
accountIndex: number;
|
|
997
|
+
addressCount: number;
|
|
998
|
+
accountCount: number;
|
|
999
999
|
} | (string | {
|
|
1000
1000
|
address: string;
|
|
1001
|
-
remoteSignerUrl?: string | undefined;
|
|
1002
|
-
certPath?: string | undefined;
|
|
1003
|
-
certPass?: string | undefined;
|
|
1001
|
+
remoteSignerUrl?: string | null | undefined;
|
|
1002
|
+
certPath?: string | null | undefined;
|
|
1003
|
+
certPass?: string | null | undefined;
|
|
1004
1004
|
} | {
|
|
1005
1005
|
path: string;
|
|
1006
|
-
password?: string | undefined;
|
|
1006
|
+
password?: string | null | undefined;
|
|
1007
1007
|
} | {
|
|
1008
1008
|
mnemonic: string;
|
|
1009
|
-
addressIndex
|
|
1010
|
-
accountIndex
|
|
1011
|
-
addressCount
|
|
1012
|
-
accountCount
|
|
1013
|
-
})[] | undefined;
|
|
1009
|
+
addressIndex: number;
|
|
1010
|
+
accountIndex: number;
|
|
1011
|
+
addressCount: number;
|
|
1012
|
+
accountCount: number;
|
|
1013
|
+
})[] | null | undefined;
|
|
1014
1014
|
prover?: string | {
|
|
1015
1015
|
address: string;
|
|
1016
|
-
remoteSignerUrl?: string | undefined;
|
|
1017
|
-
certPath?: string | undefined;
|
|
1018
|
-
certPass?: string | undefined;
|
|
1016
|
+
remoteSignerUrl?: string | null | undefined;
|
|
1017
|
+
certPath?: string | null | undefined;
|
|
1018
|
+
certPass?: string | null | undefined;
|
|
1019
1019
|
} | {
|
|
1020
1020
|
path: string;
|
|
1021
|
-
password?: string | undefined;
|
|
1021
|
+
password?: string | null | undefined;
|
|
1022
1022
|
} | {
|
|
1023
1023
|
mnemonic: string;
|
|
1024
|
-
addressIndex
|
|
1025
|
-
accountIndex
|
|
1026
|
-
addressCount
|
|
1027
|
-
accountCount
|
|
1024
|
+
addressIndex: number;
|
|
1025
|
+
accountIndex: number;
|
|
1026
|
+
addressCount: number;
|
|
1027
|
+
accountCount: number;
|
|
1028
1028
|
} | {
|
|
1029
1029
|
id: string;
|
|
1030
1030
|
publisher: string | {
|
|
1031
1031
|
address: string;
|
|
1032
|
-
remoteSignerUrl?: string | undefined;
|
|
1033
|
-
certPath?: string | undefined;
|
|
1034
|
-
certPass?: string | undefined;
|
|
1032
|
+
remoteSignerUrl?: string | null | undefined;
|
|
1033
|
+
certPath?: string | null | undefined;
|
|
1034
|
+
certPass?: string | null | undefined;
|
|
1035
1035
|
} | {
|
|
1036
1036
|
path: string;
|
|
1037
|
-
password?: string | undefined;
|
|
1037
|
+
password?: string | null | undefined;
|
|
1038
1038
|
} | {
|
|
1039
1039
|
mnemonic: string;
|
|
1040
|
-
addressIndex
|
|
1041
|
-
accountIndex
|
|
1042
|
-
addressCount
|
|
1043
|
-
accountCount
|
|
1040
|
+
addressIndex: number;
|
|
1041
|
+
accountIndex: number;
|
|
1042
|
+
addressCount: number;
|
|
1043
|
+
accountCount: number;
|
|
1044
1044
|
} | (string | {
|
|
1045
1045
|
address: string;
|
|
1046
|
-
remoteSignerUrl?: string | undefined;
|
|
1047
|
-
certPath?: string | undefined;
|
|
1048
|
-
certPass?: string | undefined;
|
|
1046
|
+
remoteSignerUrl?: string | null | undefined;
|
|
1047
|
+
certPath?: string | null | undefined;
|
|
1048
|
+
certPass?: string | null | undefined;
|
|
1049
1049
|
} | {
|
|
1050
1050
|
path: string;
|
|
1051
|
-
password?: string | undefined;
|
|
1051
|
+
password?: string | null | undefined;
|
|
1052
1052
|
} | {
|
|
1053
1053
|
mnemonic: string;
|
|
1054
|
-
addressIndex
|
|
1055
|
-
accountIndex
|
|
1056
|
-
addressCount
|
|
1057
|
-
accountCount
|
|
1054
|
+
addressIndex: number;
|
|
1055
|
+
accountIndex: number;
|
|
1056
|
+
addressCount: number;
|
|
1057
|
+
accountCount: number;
|
|
1058
1058
|
})[];
|
|
1059
|
-
} | undefined;
|
|
1059
|
+
} | null | undefined;
|
|
1060
1060
|
}, {
|
|
1061
1061
|
schemaVersion: 1;
|
|
1062
1062
|
remoteSigner?: string | {
|
|
1063
1063
|
remoteSignerUrl: string;
|
|
1064
|
-
certPath?: string | undefined;
|
|
1065
|
-
certPass?: string | undefined;
|
|
1064
|
+
certPath?: string | null | undefined;
|
|
1065
|
+
certPass?: string | null | undefined;
|
|
1066
1066
|
} | null | undefined;
|
|
1067
1067
|
validators?: {
|
|
1068
1068
|
attester: string | {
|
|
1069
1069
|
address: string;
|
|
1070
|
-
remoteSignerUrl?: string | undefined;
|
|
1071
|
-
certPath?: string | undefined;
|
|
1072
|
-
certPass?: string | undefined;
|
|
1070
|
+
remoteSignerUrl?: string | null | undefined;
|
|
1071
|
+
certPath?: string | null | undefined;
|
|
1072
|
+
certPass?: string | null | undefined;
|
|
1073
1073
|
} | {
|
|
1074
1074
|
path: string;
|
|
1075
|
-
password?: string | undefined;
|
|
1075
|
+
password?: string | null | undefined;
|
|
1076
1076
|
} | {
|
|
1077
1077
|
mnemonic: string;
|
|
1078
1078
|
addressIndex?: number | undefined;
|
|
@@ -1081,12 +1081,12 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1081
1081
|
accountCount?: number | undefined;
|
|
1082
1082
|
} | (string | {
|
|
1083
1083
|
address: string;
|
|
1084
|
-
remoteSignerUrl?: string | undefined;
|
|
1085
|
-
certPath?: string | undefined;
|
|
1086
|
-
certPass?: string | undefined;
|
|
1084
|
+
remoteSignerUrl?: string | null | undefined;
|
|
1085
|
+
certPath?: string | null | undefined;
|
|
1086
|
+
certPass?: string | null | undefined;
|
|
1087
1087
|
} | {
|
|
1088
1088
|
path: string;
|
|
1089
|
-
password?: string | undefined;
|
|
1089
|
+
password?: string | null | undefined;
|
|
1090
1090
|
} | {
|
|
1091
1091
|
mnemonic: string;
|
|
1092
1092
|
addressIndex?: number | undefined;
|
|
@@ -1097,12 +1097,12 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1097
1097
|
feeRecipient: string;
|
|
1098
1098
|
publisher?: string | {
|
|
1099
1099
|
address: string;
|
|
1100
|
-
remoteSignerUrl?: string | undefined;
|
|
1101
|
-
certPath?: string | undefined;
|
|
1102
|
-
certPass?: string | undefined;
|
|
1100
|
+
remoteSignerUrl?: string | null | undefined;
|
|
1101
|
+
certPath?: string | null | undefined;
|
|
1102
|
+
certPass?: string | null | undefined;
|
|
1103
1103
|
} | {
|
|
1104
1104
|
path: string;
|
|
1105
|
-
password?: string | undefined;
|
|
1105
|
+
password?: string | null | undefined;
|
|
1106
1106
|
} | {
|
|
1107
1107
|
mnemonic: string;
|
|
1108
1108
|
addressIndex?: number | undefined;
|
|
@@ -1111,34 +1111,34 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1111
1111
|
accountCount?: number | undefined;
|
|
1112
1112
|
} | (string | {
|
|
1113
1113
|
address: string;
|
|
1114
|
-
remoteSignerUrl?: string | undefined;
|
|
1115
|
-
certPath?: string | undefined;
|
|
1116
|
-
certPass?: string | undefined;
|
|
1114
|
+
remoteSignerUrl?: string | null | undefined;
|
|
1115
|
+
certPath?: string | null | undefined;
|
|
1116
|
+
certPass?: string | null | undefined;
|
|
1117
1117
|
} | {
|
|
1118
1118
|
path: string;
|
|
1119
|
-
password?: string | undefined;
|
|
1119
|
+
password?: string | null | undefined;
|
|
1120
1120
|
} | {
|
|
1121
1121
|
mnemonic: string;
|
|
1122
1122
|
addressIndex?: number | undefined;
|
|
1123
1123
|
accountIndex?: number | undefined;
|
|
1124
1124
|
addressCount?: number | undefined;
|
|
1125
1125
|
accountCount?: number | undefined;
|
|
1126
|
-
})[] | undefined;
|
|
1127
|
-
coinbase?: string | undefined;
|
|
1126
|
+
})[] | null | undefined;
|
|
1127
|
+
coinbase?: string | null | undefined;
|
|
1128
1128
|
remoteSigner?: string | {
|
|
1129
1129
|
remoteSignerUrl: string;
|
|
1130
|
-
certPath?: string | undefined;
|
|
1131
|
-
certPass?: string | undefined;
|
|
1130
|
+
certPath?: string | null | undefined;
|
|
1131
|
+
certPass?: string | null | undefined;
|
|
1132
1132
|
} | null | undefined;
|
|
1133
|
-
}[] | undefined;
|
|
1133
|
+
}[] | null | undefined;
|
|
1134
1134
|
slasher?: string | {
|
|
1135
1135
|
address: string;
|
|
1136
|
-
remoteSignerUrl?: string | undefined;
|
|
1137
|
-
certPath?: string | undefined;
|
|
1138
|
-
certPass?: string | undefined;
|
|
1136
|
+
remoteSignerUrl?: string | null | undefined;
|
|
1137
|
+
certPath?: string | null | undefined;
|
|
1138
|
+
certPass?: string | null | undefined;
|
|
1139
1139
|
} | {
|
|
1140
1140
|
path: string;
|
|
1141
|
-
password?: string | undefined;
|
|
1141
|
+
password?: string | null | undefined;
|
|
1142
1142
|
} | {
|
|
1143
1143
|
mnemonic: string;
|
|
1144
1144
|
addressIndex?: number | undefined;
|
|
@@ -1147,27 +1147,27 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1147
1147
|
accountCount?: number | undefined;
|
|
1148
1148
|
} | (string | {
|
|
1149
1149
|
address: string;
|
|
1150
|
-
remoteSignerUrl?: string | undefined;
|
|
1151
|
-
certPath?: string | undefined;
|
|
1152
|
-
certPass?: string | undefined;
|
|
1150
|
+
remoteSignerUrl?: string | null | undefined;
|
|
1151
|
+
certPath?: string | null | undefined;
|
|
1152
|
+
certPass?: string | null | undefined;
|
|
1153
1153
|
} | {
|
|
1154
1154
|
path: string;
|
|
1155
|
-
password?: string | undefined;
|
|
1155
|
+
password?: string | null | undefined;
|
|
1156
1156
|
} | {
|
|
1157
1157
|
mnemonic: string;
|
|
1158
1158
|
addressIndex?: number | undefined;
|
|
1159
1159
|
accountIndex?: number | undefined;
|
|
1160
1160
|
addressCount?: number | undefined;
|
|
1161
1161
|
accountCount?: number | undefined;
|
|
1162
|
-
})[] | undefined;
|
|
1162
|
+
})[] | null | undefined;
|
|
1163
1163
|
prover?: string | {
|
|
1164
1164
|
address: string;
|
|
1165
|
-
remoteSignerUrl?: string | undefined;
|
|
1166
|
-
certPath?: string | undefined;
|
|
1167
|
-
certPass?: string | undefined;
|
|
1165
|
+
remoteSignerUrl?: string | null | undefined;
|
|
1166
|
+
certPath?: string | null | undefined;
|
|
1167
|
+
certPass?: string | null | undefined;
|
|
1168
1168
|
} | {
|
|
1169
1169
|
path: string;
|
|
1170
|
-
password?: string | undefined;
|
|
1170
|
+
password?: string | null | undefined;
|
|
1171
1171
|
} | {
|
|
1172
1172
|
mnemonic: string;
|
|
1173
1173
|
addressIndex?: number | undefined;
|
|
@@ -1178,12 +1178,12 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1178
1178
|
id: string;
|
|
1179
1179
|
publisher: string | {
|
|
1180
1180
|
address: string;
|
|
1181
|
-
remoteSignerUrl?: string | undefined;
|
|
1182
|
-
certPath?: string | undefined;
|
|
1183
|
-
certPass?: string | undefined;
|
|
1181
|
+
remoteSignerUrl?: string | null | undefined;
|
|
1182
|
+
certPath?: string | null | undefined;
|
|
1183
|
+
certPass?: string | null | undefined;
|
|
1184
1184
|
} | {
|
|
1185
1185
|
path: string;
|
|
1186
|
-
password?: string | undefined;
|
|
1186
|
+
password?: string | null | undefined;
|
|
1187
1187
|
} | {
|
|
1188
1188
|
mnemonic: string;
|
|
1189
1189
|
addressIndex?: number | undefined;
|
|
@@ -1192,12 +1192,12 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1192
1192
|
accountCount?: number | undefined;
|
|
1193
1193
|
} | (string | {
|
|
1194
1194
|
address: string;
|
|
1195
|
-
remoteSignerUrl?: string | undefined;
|
|
1196
|
-
certPath?: string | undefined;
|
|
1197
|
-
certPass?: string | undefined;
|
|
1195
|
+
remoteSignerUrl?: string | null | undefined;
|
|
1196
|
+
certPath?: string | null | undefined;
|
|
1197
|
+
certPass?: string | null | undefined;
|
|
1198
1198
|
} | {
|
|
1199
1199
|
path: string;
|
|
1200
|
-
password?: string | undefined;
|
|
1200
|
+
password?: string | null | undefined;
|
|
1201
1201
|
} | {
|
|
1202
1202
|
mnemonic: string;
|
|
1203
1203
|
addressIndex?: number | undefined;
|
|
@@ -1205,7 +1205,7 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1205
1205
|
addressCount?: number | undefined;
|
|
1206
1206
|
accountCount?: number | undefined;
|
|
1207
1207
|
})[];
|
|
1208
|
-
} | undefined;
|
|
1208
|
+
} | null | undefined;
|
|
1209
1209
|
}>;
|
|
1210
1210
|
export type KeyStoreSchema = z.infer<typeof keystoreSchema>;
|
|
1211
1211
|
//# sourceMappingURL=schemas.d.ts.map
|