@aztec/node-keystore 3.0.0-nightly.20251127 → 3.0.0-nightly.20251201.2
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/config.d.ts +1 -1
- package/dest/index.d.ts +1 -1
- package/dest/keystore_manager.d.ts +1 -1
- package/dest/keystore_manager.d.ts.map +1 -1
- package/dest/loader.d.ts +1 -1
- package/dest/loader.d.ts.map +1 -1
- package/dest/schemas.d.ts +358 -358
- package/dest/signer.d.ts +1 -16
- package/dest/signer.d.ts.map +1 -1
- package/dest/types.d.ts +1 -1
- package/package.json +7 -6
package/dest/schemas.d.ts
CHANGED
|
@@ -12,13 +12,13 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
12
12
|
certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
|
|
13
13
|
certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
|
|
14
14
|
}, "strict", z.ZodTypeAny, {
|
|
15
|
-
remoteSignerUrl: string;
|
|
16
15
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
16
|
+
remoteSignerUrl: string;
|
|
17
17
|
certPath?: string | undefined;
|
|
18
18
|
certPass?: string | undefined;
|
|
19
19
|
}, {
|
|
20
|
-
remoteSignerUrl: string;
|
|
21
20
|
address: string;
|
|
21
|
+
remoteSignerUrl: string;
|
|
22
22
|
certPath?: string | undefined;
|
|
23
23
|
certPass?: string | undefined;
|
|
24
24
|
}>]>, z.ZodObject<{
|
|
@@ -37,13 +37,13 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
37
37
|
certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
|
|
38
38
|
certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
|
|
39
39
|
}, "strict", z.ZodTypeAny, {
|
|
40
|
-
remoteSignerUrl: string;
|
|
41
40
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
41
|
+
remoteSignerUrl: string;
|
|
42
42
|
certPath?: string | undefined;
|
|
43
43
|
certPass?: string | undefined;
|
|
44
44
|
}, {
|
|
45
|
-
remoteSignerUrl: string;
|
|
46
45
|
address: string;
|
|
46
|
+
remoteSignerUrl: string;
|
|
47
47
|
certPath?: string | undefined;
|
|
48
48
|
certPass?: string | undefined;
|
|
49
49
|
}>]>, z.ZodObject<{
|
|
@@ -67,23 +67,23 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
67
67
|
password?: string | undefined;
|
|
68
68
|
}>]>>;
|
|
69
69
|
}, "strict", z.ZodTypeAny, {
|
|
70
|
-
eth:
|
|
71
|
-
remoteSignerUrl: string;
|
|
70
|
+
eth: import("@aztec/foundation/schemas").EthAddress | {
|
|
72
71
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
72
|
+
remoteSignerUrl: string;
|
|
73
73
|
certPath?: string | undefined;
|
|
74
74
|
certPass?: string | undefined;
|
|
75
75
|
} | {
|
|
76
76
|
path: string;
|
|
77
77
|
password?: string | undefined;
|
|
78
|
-
};
|
|
79
|
-
bls?:
|
|
78
|
+
} | EthPrivateKey;
|
|
79
|
+
bls?: {
|
|
80
80
|
path: string;
|
|
81
81
|
password?: string | undefined;
|
|
82
|
-
} | undefined;
|
|
82
|
+
} | BLSPrivateKey | undefined;
|
|
83
83
|
}, {
|
|
84
84
|
eth: string | {
|
|
85
|
-
remoteSignerUrl: string;
|
|
86
85
|
address: string;
|
|
86
|
+
remoteSignerUrl: string;
|
|
87
87
|
certPath?: string | undefined;
|
|
88
88
|
certPass?: string | undefined;
|
|
89
89
|
} | {
|
|
@@ -100,13 +100,13 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
100
100
|
certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
|
|
101
101
|
certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
|
|
102
102
|
}, "strict", z.ZodTypeAny, {
|
|
103
|
-
remoteSignerUrl: string;
|
|
104
103
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
104
|
+
remoteSignerUrl: string;
|
|
105
105
|
certPath?: string | undefined;
|
|
106
106
|
certPass?: string | undefined;
|
|
107
107
|
}, {
|
|
108
|
-
remoteSignerUrl: string;
|
|
109
108
|
address: string;
|
|
109
|
+
remoteSignerUrl: string;
|
|
110
110
|
certPath?: string | undefined;
|
|
111
111
|
certPass?: string | undefined;
|
|
112
112
|
}>]>, z.ZodObject<{
|
|
@@ -125,13 +125,13 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
125
125
|
certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
|
|
126
126
|
certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
|
|
127
127
|
}, "strict", z.ZodTypeAny, {
|
|
128
|
-
remoteSignerUrl: string;
|
|
129
128
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
129
|
+
remoteSignerUrl: string;
|
|
130
130
|
certPath?: string | undefined;
|
|
131
131
|
certPass?: string | undefined;
|
|
132
132
|
}, {
|
|
133
|
-
remoteSignerUrl: string;
|
|
134
133
|
address: string;
|
|
134
|
+
remoteSignerUrl: string;
|
|
135
135
|
certPath?: string | undefined;
|
|
136
136
|
certPass?: string | undefined;
|
|
137
137
|
}>]>, z.ZodObject<{
|
|
@@ -155,23 +155,23 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
155
155
|
password?: string | undefined;
|
|
156
156
|
}>]>>;
|
|
157
157
|
}, "strict", z.ZodTypeAny, {
|
|
158
|
-
eth:
|
|
159
|
-
remoteSignerUrl: string;
|
|
158
|
+
eth: import("@aztec/foundation/schemas").EthAddress | {
|
|
160
159
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
160
|
+
remoteSignerUrl: string;
|
|
161
161
|
certPath?: string | undefined;
|
|
162
162
|
certPass?: string | undefined;
|
|
163
163
|
} | {
|
|
164
164
|
path: string;
|
|
165
165
|
password?: string | undefined;
|
|
166
|
-
};
|
|
167
|
-
bls?:
|
|
166
|
+
} | EthPrivateKey;
|
|
167
|
+
bls?: {
|
|
168
168
|
path: string;
|
|
169
169
|
password?: string | undefined;
|
|
170
|
-
} | undefined;
|
|
170
|
+
} | BLSPrivateKey | undefined;
|
|
171
171
|
}, {
|
|
172
172
|
eth: string | {
|
|
173
|
-
remoteSignerUrl: string;
|
|
174
173
|
address: string;
|
|
174
|
+
remoteSignerUrl: string;
|
|
175
175
|
certPath?: string | undefined;
|
|
176
176
|
certPass?: string | undefined;
|
|
177
177
|
} | {
|
|
@@ -208,13 +208,13 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
208
208
|
certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
|
|
209
209
|
certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
|
|
210
210
|
}, "strict", z.ZodTypeAny, {
|
|
211
|
-
remoteSignerUrl: string;
|
|
212
211
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
212
|
+
remoteSignerUrl: string;
|
|
213
213
|
certPath?: string | undefined;
|
|
214
214
|
certPass?: string | undefined;
|
|
215
215
|
}, {
|
|
216
|
-
remoteSignerUrl: string;
|
|
217
216
|
address: string;
|
|
217
|
+
remoteSignerUrl: string;
|
|
218
218
|
certPath?: string | undefined;
|
|
219
219
|
certPass?: string | undefined;
|
|
220
220
|
}>]>, z.ZodObject<{
|
|
@@ -232,13 +232,13 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
232
232
|
certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
|
|
233
233
|
certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
|
|
234
234
|
}, "strict", z.ZodTypeAny, {
|
|
235
|
-
remoteSignerUrl: string;
|
|
236
235
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
236
|
+
remoteSignerUrl: string;
|
|
237
237
|
certPath?: string | undefined;
|
|
238
238
|
certPass?: string | undefined;
|
|
239
239
|
}, {
|
|
240
|
-
remoteSignerUrl: string;
|
|
241
240
|
address: string;
|
|
241
|
+
remoteSignerUrl: string;
|
|
242
242
|
certPath?: string | undefined;
|
|
243
243
|
certPass?: string | undefined;
|
|
244
244
|
}>]>, z.ZodObject<{
|
|
@@ -289,13 +289,13 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
289
289
|
certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
|
|
290
290
|
certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
|
|
291
291
|
}, "strict", z.ZodTypeAny, {
|
|
292
|
-
remoteSignerUrl: string;
|
|
293
292
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
293
|
+
remoteSignerUrl: string;
|
|
294
294
|
certPath?: string | undefined;
|
|
295
295
|
certPass?: string | undefined;
|
|
296
296
|
}, {
|
|
297
|
-
remoteSignerUrl: string;
|
|
298
297
|
address: string;
|
|
298
|
+
remoteSignerUrl: string;
|
|
299
299
|
certPath?: string | undefined;
|
|
300
300
|
certPass?: string | undefined;
|
|
301
301
|
}>]>, z.ZodObject<{
|
|
@@ -309,61 +309,69 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
309
309
|
password?: string | undefined;
|
|
310
310
|
}>]>>;
|
|
311
311
|
}, "strict", z.ZodTypeAny, {
|
|
312
|
-
attester:
|
|
313
|
-
remoteSignerUrl: string;
|
|
312
|
+
attester: (import("@aztec/foundation/schemas").EthAddress | {
|
|
314
313
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
314
|
+
remoteSignerUrl: string;
|
|
315
315
|
certPath?: string | undefined;
|
|
316
316
|
certPass?: string | undefined;
|
|
317
317
|
} | {
|
|
318
318
|
path: string;
|
|
319
319
|
password?: string | undefined;
|
|
320
320
|
} | {
|
|
321
|
-
|
|
322
|
-
addressIndex: number;
|
|
323
|
-
accountIndex: number;
|
|
324
|
-
addressCount: number;
|
|
325
|
-
accountCount: number;
|
|
326
|
-
} | {
|
|
327
|
-
eth: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
|
|
328
|
-
remoteSignerUrl: string;
|
|
321
|
+
eth: import("@aztec/foundation/schemas").EthAddress | {
|
|
329
322
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
323
|
+
remoteSignerUrl: string;
|
|
330
324
|
certPath?: string | undefined;
|
|
331
325
|
certPass?: string | undefined;
|
|
332
326
|
} | {
|
|
333
327
|
path: string;
|
|
334
328
|
password?: string | undefined;
|
|
335
|
-
};
|
|
336
|
-
bls?:
|
|
329
|
+
} | EthPrivateKey;
|
|
330
|
+
bls?: {
|
|
337
331
|
path: string;
|
|
338
332
|
password?: string | undefined;
|
|
339
|
-
} | undefined;
|
|
340
|
-
} |
|
|
341
|
-
remoteSignerUrl: string;
|
|
333
|
+
} | BLSPrivateKey | undefined;
|
|
334
|
+
} | EthPrivateKey)[] | import("@aztec/foundation/schemas").EthAddress | {
|
|
342
335
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
336
|
+
remoteSignerUrl: string;
|
|
343
337
|
certPath?: string | undefined;
|
|
344
338
|
certPass?: string | undefined;
|
|
345
339
|
} | {
|
|
346
340
|
path: string;
|
|
347
341
|
password?: string | undefined;
|
|
348
342
|
} | {
|
|
349
|
-
|
|
350
|
-
|
|
343
|
+
mnemonic: string;
|
|
344
|
+
addressIndex: number;
|
|
345
|
+
accountIndex: number;
|
|
346
|
+
addressCount: number;
|
|
347
|
+
accountCount: number;
|
|
348
|
+
} | {
|
|
349
|
+
eth: import("@aztec/foundation/schemas").EthAddress | {
|
|
351
350
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
351
|
+
remoteSignerUrl: string;
|
|
352
352
|
certPath?: string | undefined;
|
|
353
353
|
certPass?: string | undefined;
|
|
354
354
|
} | {
|
|
355
355
|
path: string;
|
|
356
356
|
password?: string | undefined;
|
|
357
|
-
};
|
|
358
|
-
bls?:
|
|
357
|
+
} | EthPrivateKey;
|
|
358
|
+
bls?: {
|
|
359
359
|
path: string;
|
|
360
360
|
password?: string | undefined;
|
|
361
|
-
} | undefined;
|
|
362
|
-
}
|
|
363
|
-
|
|
364
|
-
publisher?:
|
|
361
|
+
} | BLSPrivateKey | undefined;
|
|
362
|
+
} | EthPrivateKey;
|
|
363
|
+
coinbase?: import("@aztec/foundation/schemas").EthAddress | undefined;
|
|
364
|
+
publisher?: (import("@aztec/foundation/schemas").EthAddress | {
|
|
365
|
+
address: import("@aztec/foundation/schemas").EthAddress;
|
|
365
366
|
remoteSignerUrl: string;
|
|
367
|
+
certPath?: string | undefined;
|
|
368
|
+
certPass?: string | undefined;
|
|
369
|
+
} | {
|
|
370
|
+
path: string;
|
|
371
|
+
password?: string | undefined;
|
|
372
|
+
} | EthPrivateKey)[] | import("@aztec/foundation/schemas").EthAddress | {
|
|
366
373
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
374
|
+
remoteSignerUrl: string;
|
|
367
375
|
certPath?: string | undefined;
|
|
368
376
|
certPass?: string | undefined;
|
|
369
377
|
} | {
|
|
@@ -375,49 +383,35 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
375
383
|
accountIndex: number;
|
|
376
384
|
addressCount: number;
|
|
377
385
|
accountCount: number;
|
|
378
|
-
} |
|
|
379
|
-
|
|
380
|
-
address: import("@aztec/foundation/schemas").EthAddress;
|
|
381
|
-
certPath?: string | undefined;
|
|
382
|
-
certPass?: string | undefined;
|
|
383
|
-
} | {
|
|
384
|
-
path: string;
|
|
385
|
-
password?: string | undefined;
|
|
386
|
-
})[] | undefined;
|
|
387
|
-
coinbase?: import("@aztec/foundation/schemas").EthAddress | undefined;
|
|
386
|
+
} | EthPrivateKey | undefined;
|
|
387
|
+
feeRecipient: AztecAddress;
|
|
388
388
|
remoteSigner?: string | {
|
|
389
389
|
remoteSignerUrl: string;
|
|
390
390
|
certPath?: string | undefined;
|
|
391
391
|
certPass?: string | undefined;
|
|
392
392
|
} | undefined;
|
|
393
|
-
fundingAccount?:
|
|
394
|
-
remoteSignerUrl: string;
|
|
393
|
+
fundingAccount?: import("@aztec/foundation/schemas").EthAddress | {
|
|
395
394
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
395
|
+
remoteSignerUrl: string;
|
|
396
396
|
certPath?: string | undefined;
|
|
397
397
|
certPass?: string | undefined;
|
|
398
398
|
} | {
|
|
399
399
|
path: string;
|
|
400
400
|
password?: string | undefined;
|
|
401
|
-
} | undefined;
|
|
401
|
+
} | EthPrivateKey | undefined;
|
|
402
402
|
}, {
|
|
403
|
-
attester: string | {
|
|
404
|
-
remoteSignerUrl: string;
|
|
403
|
+
attester: string | (string | {
|
|
405
404
|
address: string;
|
|
405
|
+
remoteSignerUrl: string;
|
|
406
406
|
certPath?: string | undefined;
|
|
407
407
|
certPass?: string | undefined;
|
|
408
408
|
} | {
|
|
409
409
|
path: string;
|
|
410
410
|
password?: string | undefined;
|
|
411
|
-
} | {
|
|
412
|
-
mnemonic: string;
|
|
413
|
-
addressIndex?: number | undefined;
|
|
414
|
-
accountIndex?: number | undefined;
|
|
415
|
-
addressCount?: number | undefined;
|
|
416
|
-
accountCount?: number | undefined;
|
|
417
411
|
} | {
|
|
418
412
|
eth: string | {
|
|
419
|
-
remoteSignerUrl: string;
|
|
420
413
|
address: string;
|
|
414
|
+
remoteSignerUrl: string;
|
|
421
415
|
certPath?: string | undefined;
|
|
422
416
|
certPass?: string | undefined;
|
|
423
417
|
} | {
|
|
@@ -428,18 +422,24 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
428
422
|
path: string;
|
|
429
423
|
password?: string | undefined;
|
|
430
424
|
} | undefined;
|
|
431
|
-
} |
|
|
432
|
-
remoteSignerUrl: string;
|
|
425
|
+
})[] | {
|
|
433
426
|
address: string;
|
|
427
|
+
remoteSignerUrl: string;
|
|
434
428
|
certPath?: string | undefined;
|
|
435
429
|
certPass?: string | undefined;
|
|
436
430
|
} | {
|
|
437
431
|
path: string;
|
|
438
432
|
password?: string | undefined;
|
|
433
|
+
} | {
|
|
434
|
+
mnemonic: string;
|
|
435
|
+
addressIndex?: number | undefined;
|
|
436
|
+
accountIndex?: number | undefined;
|
|
437
|
+
addressCount?: number | undefined;
|
|
438
|
+
accountCount?: number | undefined;
|
|
439
439
|
} | {
|
|
440
440
|
eth: string | {
|
|
441
|
-
remoteSignerUrl: string;
|
|
442
441
|
address: string;
|
|
442
|
+
remoteSignerUrl: string;
|
|
443
443
|
certPath?: string | undefined;
|
|
444
444
|
certPass?: string | undefined;
|
|
445
445
|
} | {
|
|
@@ -450,10 +450,19 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
450
450
|
path: string;
|
|
451
451
|
password?: string | undefined;
|
|
452
452
|
} | undefined;
|
|
453
|
-
}
|
|
454
|
-
|
|
453
|
+
};
|
|
454
|
+
coinbase?: string | undefined;
|
|
455
|
+
publisher?: string | (string | {
|
|
456
|
+
address: string;
|
|
455
457
|
remoteSignerUrl: string;
|
|
458
|
+
certPath?: string | undefined;
|
|
459
|
+
certPass?: string | undefined;
|
|
460
|
+
} | {
|
|
461
|
+
path: string;
|
|
462
|
+
password?: string | undefined;
|
|
463
|
+
})[] | {
|
|
456
464
|
address: string;
|
|
465
|
+
remoteSignerUrl: string;
|
|
457
466
|
certPath?: string | undefined;
|
|
458
467
|
certPass?: string | undefined;
|
|
459
468
|
} | {
|
|
@@ -465,16 +474,7 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
465
474
|
accountIndex?: number | undefined;
|
|
466
475
|
addressCount?: number | undefined;
|
|
467
476
|
accountCount?: number | undefined;
|
|
468
|
-
} |
|
|
469
|
-
remoteSignerUrl: string;
|
|
470
|
-
address: string;
|
|
471
|
-
certPath?: string | undefined;
|
|
472
|
-
certPass?: string | undefined;
|
|
473
|
-
} | {
|
|
474
|
-
path: string;
|
|
475
|
-
password?: string | undefined;
|
|
476
|
-
})[] | undefined;
|
|
477
|
-
coinbase?: string | undefined;
|
|
477
|
+
} | undefined;
|
|
478
478
|
feeRecipient?: any;
|
|
479
479
|
remoteSigner?: string | {
|
|
480
480
|
remoteSignerUrl: string;
|
|
@@ -482,8 +482,8 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
482
482
|
certPass?: string | undefined;
|
|
483
483
|
} | undefined;
|
|
484
484
|
fundingAccount?: string | {
|
|
485
|
-
remoteSignerUrl: string;
|
|
486
485
|
address: string;
|
|
486
|
+
remoteSignerUrl: string;
|
|
487
487
|
certPath?: string | undefined;
|
|
488
488
|
certPass?: string | undefined;
|
|
489
489
|
} | {
|
|
@@ -497,13 +497,13 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
497
497
|
certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
|
|
498
498
|
certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
|
|
499
499
|
}, "strict", z.ZodTypeAny, {
|
|
500
|
-
remoteSignerUrl: string;
|
|
501
500
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
501
|
+
remoteSignerUrl: string;
|
|
502
502
|
certPath?: string | undefined;
|
|
503
503
|
certPass?: string | undefined;
|
|
504
504
|
}, {
|
|
505
|
-
remoteSignerUrl: string;
|
|
506
505
|
address: string;
|
|
506
|
+
remoteSignerUrl: string;
|
|
507
507
|
certPath?: string | undefined;
|
|
508
508
|
certPass?: string | undefined;
|
|
509
509
|
}>]>, z.ZodObject<{
|
|
@@ -521,13 +521,13 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
521
521
|
certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
|
|
522
522
|
certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
|
|
523
523
|
}, "strict", z.ZodTypeAny, {
|
|
524
|
-
remoteSignerUrl: string;
|
|
525
524
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
525
|
+
remoteSignerUrl: string;
|
|
526
526
|
certPath?: string | undefined;
|
|
527
527
|
certPass?: string | undefined;
|
|
528
528
|
}, {
|
|
529
|
-
remoteSignerUrl: string;
|
|
530
529
|
address: string;
|
|
530
|
+
remoteSignerUrl: string;
|
|
531
531
|
certPath?: string | undefined;
|
|
532
532
|
certPass?: string | undefined;
|
|
533
533
|
}>]>, z.ZodObject<{
|
|
@@ -577,13 +577,13 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
577
577
|
certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
|
|
578
578
|
certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
|
|
579
579
|
}, "strict", z.ZodTypeAny, {
|
|
580
|
-
remoteSignerUrl: string;
|
|
581
580
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
581
|
+
remoteSignerUrl: string;
|
|
582
582
|
certPath?: string | undefined;
|
|
583
583
|
certPass?: string | undefined;
|
|
584
584
|
}, {
|
|
585
|
-
remoteSignerUrl: string;
|
|
586
585
|
address: string;
|
|
586
|
+
remoteSignerUrl: string;
|
|
587
587
|
certPath?: string | undefined;
|
|
588
588
|
certPass?: string | undefined;
|
|
589
589
|
}>]>, z.ZodObject<{
|
|
@@ -603,13 +603,13 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
603
603
|
certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
|
|
604
604
|
certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
|
|
605
605
|
}, "strict", z.ZodTypeAny, {
|
|
606
|
-
remoteSignerUrl: string;
|
|
607
606
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
607
|
+
remoteSignerUrl: string;
|
|
608
608
|
certPath?: string | undefined;
|
|
609
609
|
certPass?: string | undefined;
|
|
610
610
|
}, {
|
|
611
|
-
remoteSignerUrl: string;
|
|
612
611
|
address: string;
|
|
612
|
+
remoteSignerUrl: string;
|
|
613
613
|
certPath?: string | undefined;
|
|
614
614
|
certPass?: string | undefined;
|
|
615
615
|
}>]>, z.ZodObject<{
|
|
@@ -627,13 +627,13 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
627
627
|
certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
|
|
628
628
|
certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
|
|
629
629
|
}, "strict", z.ZodTypeAny, {
|
|
630
|
-
remoteSignerUrl: string;
|
|
631
630
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
631
|
+
remoteSignerUrl: string;
|
|
632
632
|
certPath?: string | undefined;
|
|
633
633
|
certPass?: string | undefined;
|
|
634
634
|
}, {
|
|
635
|
-
remoteSignerUrl: string;
|
|
636
635
|
address: string;
|
|
636
|
+
remoteSignerUrl: string;
|
|
637
637
|
certPath?: string | undefined;
|
|
638
638
|
certPass?: string | undefined;
|
|
639
639
|
}>]>, z.ZodObject<{
|
|
@@ -666,9 +666,17 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
666
666
|
}>]>;
|
|
667
667
|
}, "strict", z.ZodTypeAny, {
|
|
668
668
|
id: import("@aztec/foundation/schemas").EthAddress;
|
|
669
|
-
publisher:
|
|
669
|
+
publisher: (import("@aztec/foundation/schemas").EthAddress | {
|
|
670
|
+
address: import("@aztec/foundation/schemas").EthAddress;
|
|
670
671
|
remoteSignerUrl: string;
|
|
672
|
+
certPath?: string | undefined;
|
|
673
|
+
certPass?: string | undefined;
|
|
674
|
+
} | {
|
|
675
|
+
path: string;
|
|
676
|
+
password?: string | undefined;
|
|
677
|
+
} | EthPrivateKey)[] | import("@aztec/foundation/schemas").EthAddress | {
|
|
671
678
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
679
|
+
remoteSignerUrl: string;
|
|
672
680
|
certPath?: string | undefined;
|
|
673
681
|
certPass?: string | undefined;
|
|
674
682
|
} | {
|
|
@@ -680,20 +688,20 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
680
688
|
accountIndex: number;
|
|
681
689
|
addressCount: number;
|
|
682
690
|
accountCount: number;
|
|
683
|
-
} |
|
|
691
|
+
} | EthPrivateKey;
|
|
692
|
+
}, {
|
|
693
|
+
id: string;
|
|
694
|
+
publisher: string | (string | {
|
|
695
|
+
address: string;
|
|
684
696
|
remoteSignerUrl: string;
|
|
685
|
-
address: import("@aztec/foundation/schemas").EthAddress;
|
|
686
697
|
certPath?: string | undefined;
|
|
687
698
|
certPass?: string | undefined;
|
|
688
699
|
} | {
|
|
689
700
|
path: string;
|
|
690
701
|
password?: string | undefined;
|
|
691
|
-
})[]
|
|
692
|
-
}, {
|
|
693
|
-
id: string;
|
|
694
|
-
publisher: string | {
|
|
695
|
-
remoteSignerUrl: string;
|
|
702
|
+
})[] | {
|
|
696
703
|
address: string;
|
|
704
|
+
remoteSignerUrl: string;
|
|
697
705
|
certPath?: string | undefined;
|
|
698
706
|
certPass?: string | undefined;
|
|
699
707
|
} | {
|
|
@@ -705,15 +713,7 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
705
713
|
accountIndex?: number | undefined;
|
|
706
714
|
addressCount?: number | undefined;
|
|
707
715
|
accountCount?: number | undefined;
|
|
708
|
-
}
|
|
709
|
-
remoteSignerUrl: string;
|
|
710
|
-
address: string;
|
|
711
|
-
certPath?: string | undefined;
|
|
712
|
-
certPass?: string | undefined;
|
|
713
|
-
} | {
|
|
714
|
-
path: string;
|
|
715
|
-
password?: string | undefined;
|
|
716
|
-
})[];
|
|
716
|
+
};
|
|
717
717
|
}>]>>;
|
|
718
718
|
fundingAccount: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
|
|
719
719
|
address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
|
|
@@ -721,13 +721,13 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
721
721
|
certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
|
|
722
722
|
certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
|
|
723
723
|
}, "strict", z.ZodTypeAny, {
|
|
724
|
-
remoteSignerUrl: string;
|
|
725
724
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
725
|
+
remoteSignerUrl: string;
|
|
726
726
|
certPath?: string | undefined;
|
|
727
727
|
certPass?: string | undefined;
|
|
728
728
|
}, {
|
|
729
|
-
remoteSignerUrl: string;
|
|
730
729
|
address: string;
|
|
730
|
+
remoteSignerUrl: string;
|
|
731
731
|
certPath?: string | undefined;
|
|
732
732
|
certPass?: string | undefined;
|
|
733
733
|
}>]>, z.ZodObject<{
|
|
@@ -742,76 +742,70 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
742
742
|
}>]>>;
|
|
743
743
|
}, "strict", z.ZodTypeAny, {
|
|
744
744
|
schemaVersion: 1;
|
|
745
|
-
remoteSigner?: string | {
|
|
746
|
-
remoteSignerUrl: string;
|
|
747
|
-
certPath?: string | undefined;
|
|
748
|
-
certPass?: string | undefined;
|
|
749
|
-
} | undefined;
|
|
750
|
-
fundingAccount?: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
|
|
751
|
-
remoteSignerUrl: string;
|
|
752
|
-
address: import("@aztec/foundation/schemas").EthAddress;
|
|
753
|
-
certPath?: string | undefined;
|
|
754
|
-
certPass?: string | undefined;
|
|
755
|
-
} | {
|
|
756
|
-
path: string;
|
|
757
|
-
password?: string | undefined;
|
|
758
|
-
} | undefined;
|
|
759
745
|
validators?: {
|
|
760
|
-
attester:
|
|
761
|
-
remoteSignerUrl: string;
|
|
746
|
+
attester: (import("@aztec/foundation/schemas").EthAddress | {
|
|
762
747
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
748
|
+
remoteSignerUrl: string;
|
|
763
749
|
certPath?: string | undefined;
|
|
764
750
|
certPass?: string | undefined;
|
|
765
751
|
} | {
|
|
766
752
|
path: string;
|
|
767
753
|
password?: string | undefined;
|
|
768
754
|
} | {
|
|
769
|
-
|
|
770
|
-
addressIndex: number;
|
|
771
|
-
accountIndex: number;
|
|
772
|
-
addressCount: number;
|
|
773
|
-
accountCount: number;
|
|
774
|
-
} | {
|
|
775
|
-
eth: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
|
|
776
|
-
remoteSignerUrl: string;
|
|
755
|
+
eth: import("@aztec/foundation/schemas").EthAddress | {
|
|
777
756
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
757
|
+
remoteSignerUrl: string;
|
|
778
758
|
certPath?: string | undefined;
|
|
779
759
|
certPass?: string | undefined;
|
|
780
760
|
} | {
|
|
781
761
|
path: string;
|
|
782
762
|
password?: string | undefined;
|
|
783
|
-
};
|
|
784
|
-
bls?:
|
|
763
|
+
} | EthPrivateKey;
|
|
764
|
+
bls?: {
|
|
785
765
|
path: string;
|
|
786
766
|
password?: string | undefined;
|
|
787
|
-
} | undefined;
|
|
788
|
-
} |
|
|
789
|
-
remoteSignerUrl: string;
|
|
767
|
+
} | BLSPrivateKey | undefined;
|
|
768
|
+
} | EthPrivateKey)[] | import("@aztec/foundation/schemas").EthAddress | {
|
|
790
769
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
770
|
+
remoteSignerUrl: string;
|
|
791
771
|
certPath?: string | undefined;
|
|
792
772
|
certPass?: string | undefined;
|
|
793
773
|
} | {
|
|
794
774
|
path: string;
|
|
795
775
|
password?: string | undefined;
|
|
796
776
|
} | {
|
|
797
|
-
|
|
798
|
-
|
|
777
|
+
mnemonic: string;
|
|
778
|
+
addressIndex: number;
|
|
779
|
+
accountIndex: number;
|
|
780
|
+
addressCount: number;
|
|
781
|
+
accountCount: number;
|
|
782
|
+
} | {
|
|
783
|
+
eth: import("@aztec/foundation/schemas").EthAddress | {
|
|
799
784
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
785
|
+
remoteSignerUrl: string;
|
|
800
786
|
certPath?: string | undefined;
|
|
801
787
|
certPass?: string | undefined;
|
|
802
788
|
} | {
|
|
803
789
|
path: string;
|
|
804
790
|
password?: string | undefined;
|
|
805
|
-
};
|
|
806
|
-
bls?:
|
|
791
|
+
} | EthPrivateKey;
|
|
792
|
+
bls?: {
|
|
807
793
|
path: string;
|
|
808
794
|
password?: string | undefined;
|
|
809
|
-
} | undefined;
|
|
810
|
-
}
|
|
811
|
-
|
|
812
|
-
publisher?:
|
|
795
|
+
} | BLSPrivateKey | undefined;
|
|
796
|
+
} | EthPrivateKey;
|
|
797
|
+
coinbase?: import("@aztec/foundation/schemas").EthAddress | undefined;
|
|
798
|
+
publisher?: (import("@aztec/foundation/schemas").EthAddress | {
|
|
799
|
+
address: import("@aztec/foundation/schemas").EthAddress;
|
|
813
800
|
remoteSignerUrl: string;
|
|
801
|
+
certPath?: string | undefined;
|
|
802
|
+
certPass?: string | undefined;
|
|
803
|
+
} | {
|
|
804
|
+
path: string;
|
|
805
|
+
password?: string | undefined;
|
|
806
|
+
} | EthPrivateKey)[] | import("@aztec/foundation/schemas").EthAddress | {
|
|
814
807
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
808
|
+
remoteSignerUrl: string;
|
|
815
809
|
certPath?: string | undefined;
|
|
816
810
|
certPass?: string | undefined;
|
|
817
811
|
} | {
|
|
@@ -823,34 +817,34 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
823
817
|
accountIndex: number;
|
|
824
818
|
addressCount: number;
|
|
825
819
|
accountCount: number;
|
|
826
|
-
} |
|
|
827
|
-
|
|
828
|
-
address: import("@aztec/foundation/schemas").EthAddress;
|
|
829
|
-
certPath?: string | undefined;
|
|
830
|
-
certPass?: string | undefined;
|
|
831
|
-
} | {
|
|
832
|
-
path: string;
|
|
833
|
-
password?: string | undefined;
|
|
834
|
-
})[] | undefined;
|
|
835
|
-
coinbase?: import("@aztec/foundation/schemas").EthAddress | undefined;
|
|
820
|
+
} | EthPrivateKey | undefined;
|
|
821
|
+
feeRecipient: AztecAddress;
|
|
836
822
|
remoteSigner?: string | {
|
|
837
823
|
remoteSignerUrl: string;
|
|
838
824
|
certPath?: string | undefined;
|
|
839
825
|
certPass?: string | undefined;
|
|
840
826
|
} | undefined;
|
|
841
|
-
fundingAccount?:
|
|
842
|
-
remoteSignerUrl: string;
|
|
827
|
+
fundingAccount?: import("@aztec/foundation/schemas").EthAddress | {
|
|
843
828
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
829
|
+
remoteSignerUrl: string;
|
|
844
830
|
certPath?: string | undefined;
|
|
845
831
|
certPass?: string | undefined;
|
|
846
832
|
} | {
|
|
847
833
|
path: string;
|
|
848
834
|
password?: string | undefined;
|
|
849
|
-
} | undefined;
|
|
835
|
+
} | EthPrivateKey | undefined;
|
|
850
836
|
}[] | undefined;
|
|
851
|
-
slasher?:
|
|
837
|
+
slasher?: (import("@aztec/foundation/schemas").EthAddress | {
|
|
838
|
+
address: import("@aztec/foundation/schemas").EthAddress;
|
|
852
839
|
remoteSignerUrl: string;
|
|
840
|
+
certPath?: string | undefined;
|
|
841
|
+
certPass?: string | undefined;
|
|
842
|
+
} | {
|
|
843
|
+
path: string;
|
|
844
|
+
password?: string | undefined;
|
|
845
|
+
} | EthPrivateKey)[] | import("@aztec/foundation/schemas").EthAddress | {
|
|
853
846
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
847
|
+
remoteSignerUrl: string;
|
|
854
848
|
certPath?: string | undefined;
|
|
855
849
|
certPass?: string | undefined;
|
|
856
850
|
} | {
|
|
@@ -862,18 +856,15 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
862
856
|
accountIndex: number;
|
|
863
857
|
addressCount: number;
|
|
864
858
|
accountCount: number;
|
|
865
|
-
} |
|
|
859
|
+
} | EthPrivateKey | undefined;
|
|
860
|
+
remoteSigner?: string | {
|
|
866
861
|
remoteSignerUrl: string;
|
|
867
|
-
address: import("@aztec/foundation/schemas").EthAddress;
|
|
868
862
|
certPath?: string | undefined;
|
|
869
863
|
certPass?: string | undefined;
|
|
870
|
-
} |
|
|
871
|
-
|
|
872
|
-
password?: string | undefined;
|
|
873
|
-
})[] | undefined;
|
|
874
|
-
prover?: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
|
|
875
|
-
remoteSignerUrl: string;
|
|
864
|
+
} | undefined;
|
|
865
|
+
prover?: import("@aztec/foundation/schemas").EthAddress | {
|
|
876
866
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
867
|
+
remoteSignerUrl: string;
|
|
877
868
|
certPath?: string | undefined;
|
|
878
869
|
certPass?: string | undefined;
|
|
879
870
|
} | {
|
|
@@ -881,9 +872,17 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
881
872
|
password?: string | undefined;
|
|
882
873
|
} | {
|
|
883
874
|
id: import("@aztec/foundation/schemas").EthAddress;
|
|
884
|
-
publisher:
|
|
875
|
+
publisher: (import("@aztec/foundation/schemas").EthAddress | {
|
|
876
|
+
address: import("@aztec/foundation/schemas").EthAddress;
|
|
885
877
|
remoteSignerUrl: string;
|
|
878
|
+
certPath?: string | undefined;
|
|
879
|
+
certPass?: string | undefined;
|
|
880
|
+
} | {
|
|
881
|
+
path: string;
|
|
882
|
+
password?: string | undefined;
|
|
883
|
+
} | EthPrivateKey)[] | import("@aztec/foundation/schemas").EthAddress | {
|
|
886
884
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
885
|
+
remoteSignerUrl: string;
|
|
887
886
|
certPath?: string | undefined;
|
|
888
887
|
certPass?: string | undefined;
|
|
889
888
|
} | {
|
|
@@ -895,51 +894,32 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
895
894
|
accountIndex: number;
|
|
896
895
|
addressCount: number;
|
|
897
896
|
accountCount: number;
|
|
898
|
-
} |
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
certPass?: string | undefined;
|
|
903
|
-
} | {
|
|
904
|
-
path: string;
|
|
905
|
-
password?: string | undefined;
|
|
906
|
-
})[];
|
|
907
|
-
} | undefined;
|
|
908
|
-
}, {
|
|
909
|
-
schemaVersion: 1;
|
|
910
|
-
remoteSigner?: string | {
|
|
911
|
-
remoteSignerUrl: string;
|
|
912
|
-
certPath?: string | undefined;
|
|
913
|
-
certPass?: string | undefined;
|
|
914
|
-
} | undefined;
|
|
915
|
-
fundingAccount?: string | {
|
|
897
|
+
} | EthPrivateKey;
|
|
898
|
+
} | EthPrivateKey | undefined;
|
|
899
|
+
fundingAccount?: import("@aztec/foundation/schemas").EthAddress | {
|
|
900
|
+
address: import("@aztec/foundation/schemas").EthAddress;
|
|
916
901
|
remoteSignerUrl: string;
|
|
917
|
-
address: string;
|
|
918
902
|
certPath?: string | undefined;
|
|
919
903
|
certPass?: string | undefined;
|
|
920
904
|
} | {
|
|
921
905
|
path: string;
|
|
922
906
|
password?: string | undefined;
|
|
923
|
-
} | undefined;
|
|
907
|
+
} | EthPrivateKey | undefined;
|
|
908
|
+
}, {
|
|
909
|
+
schemaVersion: 1;
|
|
924
910
|
validators?: {
|
|
925
|
-
attester: string | {
|
|
926
|
-
remoteSignerUrl: string;
|
|
911
|
+
attester: string | (string | {
|
|
927
912
|
address: string;
|
|
913
|
+
remoteSignerUrl: string;
|
|
928
914
|
certPath?: string | undefined;
|
|
929
915
|
certPass?: string | undefined;
|
|
930
916
|
} | {
|
|
931
917
|
path: string;
|
|
932
918
|
password?: string | undefined;
|
|
933
|
-
} | {
|
|
934
|
-
mnemonic: string;
|
|
935
|
-
addressIndex?: number | undefined;
|
|
936
|
-
accountIndex?: number | undefined;
|
|
937
|
-
addressCount?: number | undefined;
|
|
938
|
-
accountCount?: number | undefined;
|
|
939
919
|
} | {
|
|
940
920
|
eth: string | {
|
|
941
|
-
remoteSignerUrl: string;
|
|
942
921
|
address: string;
|
|
922
|
+
remoteSignerUrl: string;
|
|
943
923
|
certPath?: string | undefined;
|
|
944
924
|
certPass?: string | undefined;
|
|
945
925
|
} | {
|
|
@@ -950,18 +930,24 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
950
930
|
path: string;
|
|
951
931
|
password?: string | undefined;
|
|
952
932
|
} | undefined;
|
|
953
|
-
} |
|
|
954
|
-
remoteSignerUrl: string;
|
|
933
|
+
})[] | {
|
|
955
934
|
address: string;
|
|
935
|
+
remoteSignerUrl: string;
|
|
956
936
|
certPath?: string | undefined;
|
|
957
937
|
certPass?: string | undefined;
|
|
958
938
|
} | {
|
|
959
939
|
path: string;
|
|
960
940
|
password?: string | undefined;
|
|
941
|
+
} | {
|
|
942
|
+
mnemonic: string;
|
|
943
|
+
addressIndex?: number | undefined;
|
|
944
|
+
accountIndex?: number | undefined;
|
|
945
|
+
addressCount?: number | undefined;
|
|
946
|
+
accountCount?: number | undefined;
|
|
961
947
|
} | {
|
|
962
948
|
eth: string | {
|
|
963
|
-
remoteSignerUrl: string;
|
|
964
949
|
address: string;
|
|
950
|
+
remoteSignerUrl: string;
|
|
965
951
|
certPath?: string | undefined;
|
|
966
952
|
certPass?: string | undefined;
|
|
967
953
|
} | {
|
|
@@ -972,10 +958,19 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
972
958
|
path: string;
|
|
973
959
|
password?: string | undefined;
|
|
974
960
|
} | undefined;
|
|
975
|
-
}
|
|
976
|
-
|
|
961
|
+
};
|
|
962
|
+
coinbase?: string | undefined;
|
|
963
|
+
publisher?: string | (string | {
|
|
964
|
+
address: string;
|
|
977
965
|
remoteSignerUrl: string;
|
|
966
|
+
certPath?: string | undefined;
|
|
967
|
+
certPass?: string | undefined;
|
|
968
|
+
} | {
|
|
969
|
+
path: string;
|
|
970
|
+
password?: string | undefined;
|
|
971
|
+
})[] | {
|
|
978
972
|
address: string;
|
|
973
|
+
remoteSignerUrl: string;
|
|
979
974
|
certPath?: string | undefined;
|
|
980
975
|
certPass?: string | undefined;
|
|
981
976
|
} | {
|
|
@@ -987,16 +982,7 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
987
982
|
accountIndex?: number | undefined;
|
|
988
983
|
addressCount?: number | undefined;
|
|
989
984
|
accountCount?: number | undefined;
|
|
990
|
-
} |
|
|
991
|
-
remoteSignerUrl: string;
|
|
992
|
-
address: string;
|
|
993
|
-
certPath?: string | undefined;
|
|
994
|
-
certPass?: string | undefined;
|
|
995
|
-
} | {
|
|
996
|
-
path: string;
|
|
997
|
-
password?: string | undefined;
|
|
998
|
-
})[] | undefined;
|
|
999
|
-
coinbase?: string | undefined;
|
|
985
|
+
} | undefined;
|
|
1000
986
|
feeRecipient?: any;
|
|
1001
987
|
remoteSigner?: string | {
|
|
1002
988
|
remoteSignerUrl: string;
|
|
@@ -1004,8 +990,8 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1004
990
|
certPass?: string | undefined;
|
|
1005
991
|
} | undefined;
|
|
1006
992
|
fundingAccount?: string | {
|
|
1007
|
-
remoteSignerUrl: string;
|
|
1008
993
|
address: string;
|
|
994
|
+
remoteSignerUrl: string;
|
|
1009
995
|
certPath?: string | undefined;
|
|
1010
996
|
certPass?: string | undefined;
|
|
1011
997
|
} | {
|
|
@@ -1013,9 +999,17 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1013
999
|
password?: string | undefined;
|
|
1014
1000
|
} | undefined;
|
|
1015
1001
|
}[] | undefined;
|
|
1016
|
-
slasher?: string | {
|
|
1002
|
+
slasher?: string | (string | {
|
|
1003
|
+
address: string;
|
|
1017
1004
|
remoteSignerUrl: string;
|
|
1005
|
+
certPath?: string | undefined;
|
|
1006
|
+
certPass?: string | undefined;
|
|
1007
|
+
} | {
|
|
1008
|
+
path: string;
|
|
1009
|
+
password?: string | undefined;
|
|
1010
|
+
})[] | {
|
|
1018
1011
|
address: string;
|
|
1012
|
+
remoteSignerUrl: string;
|
|
1019
1013
|
certPath?: string | undefined;
|
|
1020
1014
|
certPass?: string | undefined;
|
|
1021
1015
|
} | {
|
|
@@ -1027,18 +1021,15 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1027
1021
|
accountIndex?: number | undefined;
|
|
1028
1022
|
addressCount?: number | undefined;
|
|
1029
1023
|
accountCount?: number | undefined;
|
|
1030
|
-
} |
|
|
1024
|
+
} | undefined;
|
|
1025
|
+
remoteSigner?: string | {
|
|
1031
1026
|
remoteSignerUrl: string;
|
|
1032
|
-
address: string;
|
|
1033
1027
|
certPath?: string | undefined;
|
|
1034
1028
|
certPass?: string | undefined;
|
|
1035
|
-
} |
|
|
1036
|
-
path: string;
|
|
1037
|
-
password?: string | undefined;
|
|
1038
|
-
})[] | undefined;
|
|
1029
|
+
} | undefined;
|
|
1039
1030
|
prover?: string | {
|
|
1040
|
-
remoteSignerUrl: string;
|
|
1041
1031
|
address: string;
|
|
1032
|
+
remoteSignerUrl: string;
|
|
1042
1033
|
certPath?: string | undefined;
|
|
1043
1034
|
certPass?: string | undefined;
|
|
1044
1035
|
} | {
|
|
@@ -1046,9 +1037,17 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1046
1037
|
password?: string | undefined;
|
|
1047
1038
|
} | {
|
|
1048
1039
|
id: string;
|
|
1049
|
-
publisher: string | {
|
|
1040
|
+
publisher: string | (string | {
|
|
1041
|
+
address: string;
|
|
1050
1042
|
remoteSignerUrl: string;
|
|
1043
|
+
certPath?: string | undefined;
|
|
1044
|
+
certPass?: string | undefined;
|
|
1045
|
+
} | {
|
|
1046
|
+
path: string;
|
|
1047
|
+
password?: string | undefined;
|
|
1048
|
+
})[] | {
|
|
1051
1049
|
address: string;
|
|
1050
|
+
remoteSignerUrl: string;
|
|
1052
1051
|
certPath?: string | undefined;
|
|
1053
1052
|
certPass?: string | undefined;
|
|
1054
1053
|
} | {
|
|
@@ -1060,88 +1059,83 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1060
1059
|
accountIndex?: number | undefined;
|
|
1061
1060
|
addressCount?: number | undefined;
|
|
1062
1061
|
accountCount?: number | undefined;
|
|
1063
|
-
}
|
|
1064
|
-
remoteSignerUrl: string;
|
|
1065
|
-
address: string;
|
|
1066
|
-
certPath?: string | undefined;
|
|
1067
|
-
certPass?: string | undefined;
|
|
1068
|
-
} | {
|
|
1069
|
-
path: string;
|
|
1070
|
-
password?: string | undefined;
|
|
1071
|
-
})[];
|
|
1072
|
-
} | undefined;
|
|
1073
|
-
}>, {
|
|
1074
|
-
schemaVersion: 1;
|
|
1075
|
-
remoteSigner?: string | {
|
|
1076
|
-
remoteSignerUrl: string;
|
|
1077
|
-
certPath?: string | undefined;
|
|
1078
|
-
certPass?: string | undefined;
|
|
1062
|
+
};
|
|
1079
1063
|
} | undefined;
|
|
1080
|
-
fundingAccount?:
|
|
1064
|
+
fundingAccount?: string | {
|
|
1065
|
+
address: string;
|
|
1081
1066
|
remoteSignerUrl: string;
|
|
1082
|
-
address: import("@aztec/foundation/schemas").EthAddress;
|
|
1083
1067
|
certPath?: string | undefined;
|
|
1084
1068
|
certPass?: string | undefined;
|
|
1085
1069
|
} | {
|
|
1086
1070
|
path: string;
|
|
1087
1071
|
password?: string | undefined;
|
|
1088
1072
|
} | undefined;
|
|
1073
|
+
}>, {
|
|
1074
|
+
schemaVersion: 1;
|
|
1089
1075
|
validators?: {
|
|
1090
|
-
attester:
|
|
1091
|
-
remoteSignerUrl: string;
|
|
1076
|
+
attester: (import("@aztec/foundation/schemas").EthAddress | {
|
|
1092
1077
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
1078
|
+
remoteSignerUrl: string;
|
|
1093
1079
|
certPath?: string | undefined;
|
|
1094
1080
|
certPass?: string | undefined;
|
|
1095
1081
|
} | {
|
|
1096
1082
|
path: string;
|
|
1097
1083
|
password?: string | undefined;
|
|
1098
1084
|
} | {
|
|
1099
|
-
|
|
1100
|
-
addressIndex: number;
|
|
1101
|
-
accountIndex: number;
|
|
1102
|
-
addressCount: number;
|
|
1103
|
-
accountCount: number;
|
|
1104
|
-
} | {
|
|
1105
|
-
eth: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
|
|
1106
|
-
remoteSignerUrl: string;
|
|
1085
|
+
eth: import("@aztec/foundation/schemas").EthAddress | {
|
|
1107
1086
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
1087
|
+
remoteSignerUrl: string;
|
|
1108
1088
|
certPath?: string | undefined;
|
|
1109
1089
|
certPass?: string | undefined;
|
|
1110
1090
|
} | {
|
|
1111
1091
|
path: string;
|
|
1112
1092
|
password?: string | undefined;
|
|
1113
|
-
};
|
|
1114
|
-
bls?:
|
|
1093
|
+
} | EthPrivateKey;
|
|
1094
|
+
bls?: {
|
|
1115
1095
|
path: string;
|
|
1116
1096
|
password?: string | undefined;
|
|
1117
|
-
} | undefined;
|
|
1118
|
-
} |
|
|
1119
|
-
remoteSignerUrl: string;
|
|
1097
|
+
} | BLSPrivateKey | undefined;
|
|
1098
|
+
} | EthPrivateKey)[] | import("@aztec/foundation/schemas").EthAddress | {
|
|
1120
1099
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
1100
|
+
remoteSignerUrl: string;
|
|
1121
1101
|
certPath?: string | undefined;
|
|
1122
1102
|
certPass?: string | undefined;
|
|
1123
1103
|
} | {
|
|
1124
1104
|
path: string;
|
|
1125
1105
|
password?: string | undefined;
|
|
1126
1106
|
} | {
|
|
1127
|
-
|
|
1128
|
-
|
|
1107
|
+
mnemonic: string;
|
|
1108
|
+
addressIndex: number;
|
|
1109
|
+
accountIndex: number;
|
|
1110
|
+
addressCount: number;
|
|
1111
|
+
accountCount: number;
|
|
1112
|
+
} | {
|
|
1113
|
+
eth: import("@aztec/foundation/schemas").EthAddress | {
|
|
1129
1114
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
1115
|
+
remoteSignerUrl: string;
|
|
1130
1116
|
certPath?: string | undefined;
|
|
1131
1117
|
certPass?: string | undefined;
|
|
1132
1118
|
} | {
|
|
1133
1119
|
path: string;
|
|
1134
1120
|
password?: string | undefined;
|
|
1135
|
-
};
|
|
1136
|
-
bls?:
|
|
1121
|
+
} | EthPrivateKey;
|
|
1122
|
+
bls?: {
|
|
1137
1123
|
path: string;
|
|
1138
1124
|
password?: string | undefined;
|
|
1139
|
-
} | undefined;
|
|
1140
|
-
}
|
|
1141
|
-
|
|
1142
|
-
publisher?:
|
|
1125
|
+
} | BLSPrivateKey | undefined;
|
|
1126
|
+
} | EthPrivateKey;
|
|
1127
|
+
coinbase?: import("@aztec/foundation/schemas").EthAddress | undefined;
|
|
1128
|
+
publisher?: (import("@aztec/foundation/schemas").EthAddress | {
|
|
1129
|
+
address: import("@aztec/foundation/schemas").EthAddress;
|
|
1143
1130
|
remoteSignerUrl: string;
|
|
1131
|
+
certPath?: string | undefined;
|
|
1132
|
+
certPass?: string | undefined;
|
|
1133
|
+
} | {
|
|
1134
|
+
path: string;
|
|
1135
|
+
password?: string | undefined;
|
|
1136
|
+
} | EthPrivateKey)[] | import("@aztec/foundation/schemas").EthAddress | {
|
|
1144
1137
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
1138
|
+
remoteSignerUrl: string;
|
|
1145
1139
|
certPath?: string | undefined;
|
|
1146
1140
|
certPass?: string | undefined;
|
|
1147
1141
|
} | {
|
|
@@ -1153,34 +1147,34 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1153
1147
|
accountIndex: number;
|
|
1154
1148
|
addressCount: number;
|
|
1155
1149
|
accountCount: number;
|
|
1156
|
-
} |
|
|
1157
|
-
|
|
1158
|
-
address: import("@aztec/foundation/schemas").EthAddress;
|
|
1159
|
-
certPath?: string | undefined;
|
|
1160
|
-
certPass?: string | undefined;
|
|
1161
|
-
} | {
|
|
1162
|
-
path: string;
|
|
1163
|
-
password?: string | undefined;
|
|
1164
|
-
})[] | undefined;
|
|
1165
|
-
coinbase?: import("@aztec/foundation/schemas").EthAddress | undefined;
|
|
1150
|
+
} | EthPrivateKey | undefined;
|
|
1151
|
+
feeRecipient: AztecAddress;
|
|
1166
1152
|
remoteSigner?: string | {
|
|
1167
1153
|
remoteSignerUrl: string;
|
|
1168
1154
|
certPath?: string | undefined;
|
|
1169
1155
|
certPass?: string | undefined;
|
|
1170
1156
|
} | undefined;
|
|
1171
|
-
fundingAccount?:
|
|
1172
|
-
remoteSignerUrl: string;
|
|
1157
|
+
fundingAccount?: import("@aztec/foundation/schemas").EthAddress | {
|
|
1173
1158
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
1159
|
+
remoteSignerUrl: string;
|
|
1174
1160
|
certPath?: string | undefined;
|
|
1175
1161
|
certPass?: string | undefined;
|
|
1176
1162
|
} | {
|
|
1177
1163
|
path: string;
|
|
1178
1164
|
password?: string | undefined;
|
|
1179
|
-
} | undefined;
|
|
1165
|
+
} | EthPrivateKey | undefined;
|
|
1180
1166
|
}[] | undefined;
|
|
1181
|
-
slasher?:
|
|
1167
|
+
slasher?: (import("@aztec/foundation/schemas").EthAddress | {
|
|
1168
|
+
address: import("@aztec/foundation/schemas").EthAddress;
|
|
1182
1169
|
remoteSignerUrl: string;
|
|
1170
|
+
certPath?: string | undefined;
|
|
1171
|
+
certPass?: string | undefined;
|
|
1172
|
+
} | {
|
|
1173
|
+
path: string;
|
|
1174
|
+
password?: string | undefined;
|
|
1175
|
+
} | EthPrivateKey)[] | import("@aztec/foundation/schemas").EthAddress | {
|
|
1183
1176
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
1177
|
+
remoteSignerUrl: string;
|
|
1184
1178
|
certPath?: string | undefined;
|
|
1185
1179
|
certPass?: string | undefined;
|
|
1186
1180
|
} | {
|
|
@@ -1192,18 +1186,15 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1192
1186
|
accountIndex: number;
|
|
1193
1187
|
addressCount: number;
|
|
1194
1188
|
accountCount: number;
|
|
1195
|
-
} |
|
|
1189
|
+
} | EthPrivateKey | undefined;
|
|
1190
|
+
remoteSigner?: string | {
|
|
1196
1191
|
remoteSignerUrl: string;
|
|
1197
|
-
address: import("@aztec/foundation/schemas").EthAddress;
|
|
1198
1192
|
certPath?: string | undefined;
|
|
1199
1193
|
certPass?: string | undefined;
|
|
1200
|
-
} |
|
|
1201
|
-
|
|
1202
|
-
password?: string | undefined;
|
|
1203
|
-
})[] | undefined;
|
|
1204
|
-
prover?: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
|
|
1205
|
-
remoteSignerUrl: string;
|
|
1194
|
+
} | undefined;
|
|
1195
|
+
prover?: import("@aztec/foundation/schemas").EthAddress | {
|
|
1206
1196
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
1197
|
+
remoteSignerUrl: string;
|
|
1207
1198
|
certPath?: string | undefined;
|
|
1208
1199
|
certPass?: string | undefined;
|
|
1209
1200
|
} | {
|
|
@@ -1211,9 +1202,17 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1211
1202
|
password?: string | undefined;
|
|
1212
1203
|
} | {
|
|
1213
1204
|
id: import("@aztec/foundation/schemas").EthAddress;
|
|
1214
|
-
publisher:
|
|
1205
|
+
publisher: (import("@aztec/foundation/schemas").EthAddress | {
|
|
1206
|
+
address: import("@aztec/foundation/schemas").EthAddress;
|
|
1215
1207
|
remoteSignerUrl: string;
|
|
1208
|
+
certPath?: string | undefined;
|
|
1209
|
+
certPass?: string | undefined;
|
|
1210
|
+
} | {
|
|
1211
|
+
path: string;
|
|
1212
|
+
password?: string | undefined;
|
|
1213
|
+
} | EthPrivateKey)[] | import("@aztec/foundation/schemas").EthAddress | {
|
|
1216
1214
|
address: import("@aztec/foundation/schemas").EthAddress;
|
|
1215
|
+
remoteSignerUrl: string;
|
|
1217
1216
|
certPath?: string | undefined;
|
|
1218
1217
|
certPass?: string | undefined;
|
|
1219
1218
|
} | {
|
|
@@ -1225,51 +1224,32 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1225
1224
|
accountIndex: number;
|
|
1226
1225
|
addressCount: number;
|
|
1227
1226
|
accountCount: number;
|
|
1228
|
-
} |
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
certPass?: string | undefined;
|
|
1233
|
-
} | {
|
|
1234
|
-
path: string;
|
|
1235
|
-
password?: string | undefined;
|
|
1236
|
-
})[];
|
|
1237
|
-
} | undefined;
|
|
1238
|
-
}, {
|
|
1239
|
-
schemaVersion: 1;
|
|
1240
|
-
remoteSigner?: string | {
|
|
1241
|
-
remoteSignerUrl: string;
|
|
1242
|
-
certPath?: string | undefined;
|
|
1243
|
-
certPass?: string | undefined;
|
|
1244
|
-
} | undefined;
|
|
1245
|
-
fundingAccount?: string | {
|
|
1227
|
+
} | EthPrivateKey;
|
|
1228
|
+
} | EthPrivateKey | undefined;
|
|
1229
|
+
fundingAccount?: import("@aztec/foundation/schemas").EthAddress | {
|
|
1230
|
+
address: import("@aztec/foundation/schemas").EthAddress;
|
|
1246
1231
|
remoteSignerUrl: string;
|
|
1247
|
-
address: string;
|
|
1248
1232
|
certPath?: string | undefined;
|
|
1249
1233
|
certPass?: string | undefined;
|
|
1250
1234
|
} | {
|
|
1251
1235
|
path: string;
|
|
1252
1236
|
password?: string | undefined;
|
|
1253
|
-
} | undefined;
|
|
1237
|
+
} | EthPrivateKey | undefined;
|
|
1238
|
+
}, {
|
|
1239
|
+
schemaVersion: 1;
|
|
1254
1240
|
validators?: {
|
|
1255
|
-
attester: string | {
|
|
1256
|
-
remoteSignerUrl: string;
|
|
1241
|
+
attester: string | (string | {
|
|
1257
1242
|
address: string;
|
|
1243
|
+
remoteSignerUrl: string;
|
|
1258
1244
|
certPath?: string | undefined;
|
|
1259
1245
|
certPass?: string | undefined;
|
|
1260
1246
|
} | {
|
|
1261
1247
|
path: string;
|
|
1262
1248
|
password?: string | undefined;
|
|
1263
|
-
} | {
|
|
1264
|
-
mnemonic: string;
|
|
1265
|
-
addressIndex?: number | undefined;
|
|
1266
|
-
accountIndex?: number | undefined;
|
|
1267
|
-
addressCount?: number | undefined;
|
|
1268
|
-
accountCount?: number | undefined;
|
|
1269
1249
|
} | {
|
|
1270
1250
|
eth: string | {
|
|
1271
|
-
remoteSignerUrl: string;
|
|
1272
1251
|
address: string;
|
|
1252
|
+
remoteSignerUrl: string;
|
|
1273
1253
|
certPath?: string | undefined;
|
|
1274
1254
|
certPass?: string | undefined;
|
|
1275
1255
|
} | {
|
|
@@ -1280,18 +1260,24 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1280
1260
|
path: string;
|
|
1281
1261
|
password?: string | undefined;
|
|
1282
1262
|
} | undefined;
|
|
1283
|
-
} |
|
|
1284
|
-
remoteSignerUrl: string;
|
|
1263
|
+
})[] | {
|
|
1285
1264
|
address: string;
|
|
1265
|
+
remoteSignerUrl: string;
|
|
1286
1266
|
certPath?: string | undefined;
|
|
1287
1267
|
certPass?: string | undefined;
|
|
1288
1268
|
} | {
|
|
1289
1269
|
path: string;
|
|
1290
1270
|
password?: string | undefined;
|
|
1271
|
+
} | {
|
|
1272
|
+
mnemonic: string;
|
|
1273
|
+
addressIndex?: number | undefined;
|
|
1274
|
+
accountIndex?: number | undefined;
|
|
1275
|
+
addressCount?: number | undefined;
|
|
1276
|
+
accountCount?: number | undefined;
|
|
1291
1277
|
} | {
|
|
1292
1278
|
eth: string | {
|
|
1293
|
-
remoteSignerUrl: string;
|
|
1294
1279
|
address: string;
|
|
1280
|
+
remoteSignerUrl: string;
|
|
1295
1281
|
certPath?: string | undefined;
|
|
1296
1282
|
certPass?: string | undefined;
|
|
1297
1283
|
} | {
|
|
@@ -1302,10 +1288,19 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1302
1288
|
path: string;
|
|
1303
1289
|
password?: string | undefined;
|
|
1304
1290
|
} | undefined;
|
|
1305
|
-
}
|
|
1306
|
-
|
|
1291
|
+
};
|
|
1292
|
+
coinbase?: string | undefined;
|
|
1293
|
+
publisher?: string | (string | {
|
|
1294
|
+
address: string;
|
|
1307
1295
|
remoteSignerUrl: string;
|
|
1296
|
+
certPath?: string | undefined;
|
|
1297
|
+
certPass?: string | undefined;
|
|
1298
|
+
} | {
|
|
1299
|
+
path: string;
|
|
1300
|
+
password?: string | undefined;
|
|
1301
|
+
})[] | {
|
|
1308
1302
|
address: string;
|
|
1303
|
+
remoteSignerUrl: string;
|
|
1309
1304
|
certPath?: string | undefined;
|
|
1310
1305
|
certPass?: string | undefined;
|
|
1311
1306
|
} | {
|
|
@@ -1317,16 +1312,7 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1317
1312
|
accountIndex?: number | undefined;
|
|
1318
1313
|
addressCount?: number | undefined;
|
|
1319
1314
|
accountCount?: number | undefined;
|
|
1320
|
-
} |
|
|
1321
|
-
remoteSignerUrl: string;
|
|
1322
|
-
address: string;
|
|
1323
|
-
certPath?: string | undefined;
|
|
1324
|
-
certPass?: string | undefined;
|
|
1325
|
-
} | {
|
|
1326
|
-
path: string;
|
|
1327
|
-
password?: string | undefined;
|
|
1328
|
-
})[] | undefined;
|
|
1329
|
-
coinbase?: string | undefined;
|
|
1315
|
+
} | undefined;
|
|
1330
1316
|
feeRecipient?: any;
|
|
1331
1317
|
remoteSigner?: string | {
|
|
1332
1318
|
remoteSignerUrl: string;
|
|
@@ -1334,8 +1320,8 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1334
1320
|
certPass?: string | undefined;
|
|
1335
1321
|
} | undefined;
|
|
1336
1322
|
fundingAccount?: string | {
|
|
1337
|
-
remoteSignerUrl: string;
|
|
1338
1323
|
address: string;
|
|
1324
|
+
remoteSignerUrl: string;
|
|
1339
1325
|
certPath?: string | undefined;
|
|
1340
1326
|
certPass?: string | undefined;
|
|
1341
1327
|
} | {
|
|
@@ -1343,9 +1329,17 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1343
1329
|
password?: string | undefined;
|
|
1344
1330
|
} | undefined;
|
|
1345
1331
|
}[] | undefined;
|
|
1346
|
-
slasher?: string | {
|
|
1332
|
+
slasher?: string | (string | {
|
|
1333
|
+
address: string;
|
|
1347
1334
|
remoteSignerUrl: string;
|
|
1335
|
+
certPath?: string | undefined;
|
|
1336
|
+
certPass?: string | undefined;
|
|
1337
|
+
} | {
|
|
1338
|
+
path: string;
|
|
1339
|
+
password?: string | undefined;
|
|
1340
|
+
})[] | {
|
|
1348
1341
|
address: string;
|
|
1342
|
+
remoteSignerUrl: string;
|
|
1349
1343
|
certPath?: string | undefined;
|
|
1350
1344
|
certPass?: string | undefined;
|
|
1351
1345
|
} | {
|
|
@@ -1357,18 +1351,15 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1357
1351
|
accountIndex?: number | undefined;
|
|
1358
1352
|
addressCount?: number | undefined;
|
|
1359
1353
|
accountCount?: number | undefined;
|
|
1360
|
-
} |
|
|
1354
|
+
} | undefined;
|
|
1355
|
+
remoteSigner?: string | {
|
|
1361
1356
|
remoteSignerUrl: string;
|
|
1362
|
-
address: string;
|
|
1363
1357
|
certPath?: string | undefined;
|
|
1364
1358
|
certPass?: string | undefined;
|
|
1365
|
-
} |
|
|
1366
|
-
path: string;
|
|
1367
|
-
password?: string | undefined;
|
|
1368
|
-
})[] | undefined;
|
|
1359
|
+
} | undefined;
|
|
1369
1360
|
prover?: string | {
|
|
1370
|
-
remoteSignerUrl: string;
|
|
1371
1361
|
address: string;
|
|
1362
|
+
remoteSignerUrl: string;
|
|
1372
1363
|
certPath?: string | undefined;
|
|
1373
1364
|
certPass?: string | undefined;
|
|
1374
1365
|
} | {
|
|
@@ -1376,9 +1367,17 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1376
1367
|
password?: string | undefined;
|
|
1377
1368
|
} | {
|
|
1378
1369
|
id: string;
|
|
1379
|
-
publisher: string | {
|
|
1370
|
+
publisher: string | (string | {
|
|
1371
|
+
address: string;
|
|
1380
1372
|
remoteSignerUrl: string;
|
|
1373
|
+
certPath?: string | undefined;
|
|
1374
|
+
certPass?: string | undefined;
|
|
1375
|
+
} | {
|
|
1376
|
+
path: string;
|
|
1377
|
+
password?: string | undefined;
|
|
1378
|
+
})[] | {
|
|
1381
1379
|
address: string;
|
|
1380
|
+
remoteSignerUrl: string;
|
|
1382
1381
|
certPath?: string | undefined;
|
|
1383
1382
|
certPass?: string | undefined;
|
|
1384
1383
|
} | {
|
|
@@ -1390,15 +1389,16 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1390
1389
|
accountIndex?: number | undefined;
|
|
1391
1390
|
addressCount?: number | undefined;
|
|
1392
1391
|
accountCount?: number | undefined;
|
|
1393
|
-
}
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1392
|
+
};
|
|
1393
|
+
} | undefined;
|
|
1394
|
+
fundingAccount?: string | {
|
|
1395
|
+
address: string;
|
|
1396
|
+
remoteSignerUrl: string;
|
|
1397
|
+
certPath?: string | undefined;
|
|
1398
|
+
certPass?: string | undefined;
|
|
1399
|
+
} | {
|
|
1400
|
+
path: string;
|
|
1401
|
+
password?: string | undefined;
|
|
1402
1402
|
} | undefined;
|
|
1403
1403
|
}>;
|
|
1404
|
-
//# sourceMappingURL=
|
|
1404
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2NoZW1hcy5kLnRzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vc3JjL3NjaGVtYXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBSUEsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLDZCQUE2QixDQUFDO0FBRTNELE9BQU8sRUFBRSxDQUFDLEVBQUUsTUFBTSxLQUFLLENBQUM7QUFFeEIsT0FBTyxLQUFLLEVBQUUsYUFBYSxFQUFFLGFBQWEsRUFBRSxNQUFNLFlBQVksQ0FBQztBQUcvRCxlQUFPLE1BQU0sbUJBQW1CLGtEQUdLLENBQUM7QUFDdEMsZUFBTyxNQUFNLG1CQUFtQixrREFHSyxDQUFDO0FBOEZ0QyxlQUFPLE1BQU0sY0FBYzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7RUFhdkIsQ0FBQyJ9
|