@aztec/node-keystore 0.0.1-commit.21caa21

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.
@@ -0,0 +1,1404 @@
1
+ import { AztecAddress } from '@aztec/stdlib/aztec-address';
2
+ import { z } from 'zod';
3
+ import type { BLSPrivateKey, EthPrivateKey } from './types.js';
4
+ export declare const ethPrivateKeySchema: z.ZodEffects<z.ZodString, EthPrivateKey, string>;
5
+ export declare const blsPrivateKeySchema: z.ZodEffects<z.ZodString, BLSPrivateKey, string>;
6
+ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
7
+ schemaVersion: z.ZodLiteral<1>;
8
+ validators: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodArray<z.ZodObject<{
9
+ attester: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
10
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
11
+ remoteSignerUrl: z.ZodString;
12
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
13
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
14
+ }, "strict", z.ZodTypeAny, {
15
+ address: import("@aztec/foundation/schemas").EthAddress;
16
+ remoteSignerUrl: string;
17
+ certPath?: string | undefined;
18
+ certPass?: string | undefined;
19
+ }, {
20
+ address: string;
21
+ remoteSignerUrl: string;
22
+ certPath?: string | undefined;
23
+ certPass?: string | undefined;
24
+ }>]>, z.ZodObject<{
25
+ path: z.ZodString;
26
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
27
+ }, "strict", z.ZodTypeAny, {
28
+ path: string;
29
+ password?: string | undefined;
30
+ }, {
31
+ path: string;
32
+ password?: string | undefined;
33
+ }>]>, z.ZodObject<{
34
+ eth: z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
35
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
36
+ remoteSignerUrl: z.ZodString;
37
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
38
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
39
+ }, "strict", z.ZodTypeAny, {
40
+ address: import("@aztec/foundation/schemas").EthAddress;
41
+ remoteSignerUrl: string;
42
+ certPath?: string | undefined;
43
+ certPass?: string | undefined;
44
+ }, {
45
+ address: string;
46
+ remoteSignerUrl: string;
47
+ certPath?: string | undefined;
48
+ certPass?: string | undefined;
49
+ }>]>, z.ZodObject<{
50
+ path: z.ZodString;
51
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
52
+ }, "strict", z.ZodTypeAny, {
53
+ path: string;
54
+ password?: string | undefined;
55
+ }, {
56
+ path: string;
57
+ password?: string | undefined;
58
+ }>]>;
59
+ bls: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, BLSPrivateKey, string>, z.ZodObject<{
60
+ path: z.ZodString;
61
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
62
+ }, "strict", z.ZodTypeAny, {
63
+ path: string;
64
+ password?: string | undefined;
65
+ }, {
66
+ path: string;
67
+ password?: string | undefined;
68
+ }>]>>;
69
+ }, "strict", z.ZodTypeAny, {
70
+ eth: import("@aztec/foundation/schemas").EthAddress | {
71
+ address: import("@aztec/foundation/schemas").EthAddress;
72
+ remoteSignerUrl: string;
73
+ certPath?: string | undefined;
74
+ certPass?: string | undefined;
75
+ } | {
76
+ path: string;
77
+ password?: string | undefined;
78
+ } | EthPrivateKey;
79
+ bls?: {
80
+ path: string;
81
+ password?: string | undefined;
82
+ } | BLSPrivateKey | undefined;
83
+ }, {
84
+ eth: string | {
85
+ address: string;
86
+ remoteSignerUrl: string;
87
+ certPath?: string | undefined;
88
+ certPass?: string | undefined;
89
+ } | {
90
+ path: string;
91
+ password?: string | undefined;
92
+ };
93
+ bls?: string | {
94
+ path: string;
95
+ password?: string | undefined;
96
+ } | undefined;
97
+ }>]>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
98
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
99
+ remoteSignerUrl: z.ZodString;
100
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
101
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
102
+ }, "strict", z.ZodTypeAny, {
103
+ address: import("@aztec/foundation/schemas").EthAddress;
104
+ remoteSignerUrl: string;
105
+ certPath?: string | undefined;
106
+ certPass?: string | undefined;
107
+ }, {
108
+ address: string;
109
+ remoteSignerUrl: string;
110
+ certPath?: string | undefined;
111
+ certPass?: string | undefined;
112
+ }>]>, z.ZodObject<{
113
+ path: z.ZodString;
114
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
115
+ }, "strict", z.ZodTypeAny, {
116
+ path: string;
117
+ password?: string | undefined;
118
+ }, {
119
+ path: string;
120
+ password?: string | undefined;
121
+ }>]>, z.ZodObject<{
122
+ eth: z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
123
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
124
+ remoteSignerUrl: z.ZodString;
125
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
126
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
127
+ }, "strict", z.ZodTypeAny, {
128
+ address: import("@aztec/foundation/schemas").EthAddress;
129
+ remoteSignerUrl: string;
130
+ certPath?: string | undefined;
131
+ certPass?: string | undefined;
132
+ }, {
133
+ address: string;
134
+ remoteSignerUrl: string;
135
+ certPath?: string | undefined;
136
+ certPass?: string | undefined;
137
+ }>]>, z.ZodObject<{
138
+ path: z.ZodString;
139
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
140
+ }, "strict", z.ZodTypeAny, {
141
+ path: string;
142
+ password?: string | undefined;
143
+ }, {
144
+ path: string;
145
+ password?: string | undefined;
146
+ }>]>;
147
+ bls: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, BLSPrivateKey, string>, z.ZodObject<{
148
+ path: z.ZodString;
149
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
150
+ }, "strict", z.ZodTypeAny, {
151
+ path: string;
152
+ password?: string | undefined;
153
+ }, {
154
+ path: string;
155
+ password?: string | undefined;
156
+ }>]>>;
157
+ }, "strict", z.ZodTypeAny, {
158
+ eth: import("@aztec/foundation/schemas").EthAddress | {
159
+ address: import("@aztec/foundation/schemas").EthAddress;
160
+ remoteSignerUrl: string;
161
+ certPath?: string | undefined;
162
+ certPass?: string | undefined;
163
+ } | {
164
+ path: string;
165
+ password?: string | undefined;
166
+ } | EthPrivateKey;
167
+ bls?: {
168
+ path: string;
169
+ password?: string | undefined;
170
+ } | BLSPrivateKey | undefined;
171
+ }, {
172
+ eth: string | {
173
+ address: string;
174
+ remoteSignerUrl: string;
175
+ certPath?: string | undefined;
176
+ certPass?: string | undefined;
177
+ } | {
178
+ path: string;
179
+ password?: string | undefined;
180
+ };
181
+ bls?: string | {
182
+ path: string;
183
+ password?: string | undefined;
184
+ } | undefined;
185
+ }>]>, "many">, z.ZodObject<{
186
+ mnemonic: z.ZodString;
187
+ addressIndex: z.ZodDefault<z.ZodNumber>;
188
+ accountIndex: z.ZodDefault<z.ZodNumber>;
189
+ addressCount: z.ZodDefault<z.ZodNumber>;
190
+ accountCount: z.ZodDefault<z.ZodNumber>;
191
+ }, "strict", z.ZodTypeAny, {
192
+ mnemonic: string;
193
+ addressIndex: number;
194
+ accountIndex: number;
195
+ addressCount: number;
196
+ accountCount: number;
197
+ }, {
198
+ mnemonic: string;
199
+ addressIndex?: number | undefined;
200
+ accountIndex?: number | undefined;
201
+ addressCount?: number | undefined;
202
+ accountCount?: number | undefined;
203
+ }>]>;
204
+ coinbase: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>>;
205
+ publisher: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
206
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
207
+ remoteSignerUrl: z.ZodString;
208
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
209
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
210
+ }, "strict", z.ZodTypeAny, {
211
+ address: import("@aztec/foundation/schemas").EthAddress;
212
+ remoteSignerUrl: string;
213
+ certPath?: string | undefined;
214
+ certPass?: string | undefined;
215
+ }, {
216
+ address: string;
217
+ remoteSignerUrl: string;
218
+ certPath?: string | undefined;
219
+ certPass?: string | undefined;
220
+ }>]>, z.ZodObject<{
221
+ path: z.ZodString;
222
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
223
+ }, "strict", z.ZodTypeAny, {
224
+ path: string;
225
+ password?: string | undefined;
226
+ }, {
227
+ path: string;
228
+ password?: string | undefined;
229
+ }>]>, z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
230
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
231
+ remoteSignerUrl: z.ZodString;
232
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
233
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
234
+ }, "strict", z.ZodTypeAny, {
235
+ address: import("@aztec/foundation/schemas").EthAddress;
236
+ remoteSignerUrl: string;
237
+ certPath?: string | undefined;
238
+ certPass?: string | undefined;
239
+ }, {
240
+ address: string;
241
+ remoteSignerUrl: string;
242
+ certPath?: string | undefined;
243
+ certPass?: string | undefined;
244
+ }>]>, z.ZodObject<{
245
+ path: z.ZodString;
246
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
247
+ }, "strict", z.ZodTypeAny, {
248
+ path: string;
249
+ password?: string | undefined;
250
+ }, {
251
+ path: string;
252
+ password?: string | undefined;
253
+ }>]>, "many">, z.ZodObject<{
254
+ mnemonic: z.ZodString;
255
+ addressIndex: z.ZodDefault<z.ZodNumber>;
256
+ accountIndex: z.ZodDefault<z.ZodNumber>;
257
+ addressCount: z.ZodDefault<z.ZodNumber>;
258
+ accountCount: z.ZodDefault<z.ZodNumber>;
259
+ }, "strict", z.ZodTypeAny, {
260
+ mnemonic: string;
261
+ addressIndex: number;
262
+ accountIndex: number;
263
+ addressCount: number;
264
+ accountCount: number;
265
+ }, {
266
+ mnemonic: string;
267
+ addressIndex?: number | undefined;
268
+ accountIndex?: number | undefined;
269
+ addressCount?: number | undefined;
270
+ accountCount?: number | undefined;
271
+ }>]>>;
272
+ feeRecipient: import("@aztec/foundation/schemas").ZodFor<AztecAddress>;
273
+ remoteSigner: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
274
+ remoteSignerUrl: z.ZodString;
275
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
276
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
277
+ }, "strict", z.ZodTypeAny, {
278
+ remoteSignerUrl: string;
279
+ certPath?: string | undefined;
280
+ certPass?: string | undefined;
281
+ }, {
282
+ remoteSignerUrl: string;
283
+ certPath?: string | undefined;
284
+ certPass?: string | undefined;
285
+ }>]>>;
286
+ 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<{
287
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
288
+ remoteSignerUrl: z.ZodString;
289
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
290
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
291
+ }, "strict", z.ZodTypeAny, {
292
+ address: import("@aztec/foundation/schemas").EthAddress;
293
+ remoteSignerUrl: string;
294
+ certPath?: string | undefined;
295
+ certPass?: string | undefined;
296
+ }, {
297
+ address: string;
298
+ remoteSignerUrl: string;
299
+ certPath?: string | undefined;
300
+ certPass?: string | undefined;
301
+ }>]>, z.ZodObject<{
302
+ path: z.ZodString;
303
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
304
+ }, "strict", z.ZodTypeAny, {
305
+ path: string;
306
+ password?: string | undefined;
307
+ }, {
308
+ path: string;
309
+ password?: string | undefined;
310
+ }>]>>;
311
+ }, "strict", z.ZodTypeAny, {
312
+ attester: (import("@aztec/foundation/schemas").EthAddress | {
313
+ address: import("@aztec/foundation/schemas").EthAddress;
314
+ remoteSignerUrl: string;
315
+ certPath?: string | undefined;
316
+ certPass?: string | undefined;
317
+ } | {
318
+ path: string;
319
+ password?: string | undefined;
320
+ } | {
321
+ eth: import("@aztec/foundation/schemas").EthAddress | {
322
+ address: import("@aztec/foundation/schemas").EthAddress;
323
+ remoteSignerUrl: string;
324
+ certPath?: string | undefined;
325
+ certPass?: string | undefined;
326
+ } | {
327
+ path: string;
328
+ password?: string | undefined;
329
+ } | EthPrivateKey;
330
+ bls?: {
331
+ path: string;
332
+ password?: string | undefined;
333
+ } | BLSPrivateKey | undefined;
334
+ } | EthPrivateKey)[] | import("@aztec/foundation/schemas").EthAddress | {
335
+ address: import("@aztec/foundation/schemas").EthAddress;
336
+ remoteSignerUrl: string;
337
+ certPath?: string | undefined;
338
+ certPass?: string | undefined;
339
+ } | {
340
+ path: string;
341
+ password?: string | undefined;
342
+ } | {
343
+ mnemonic: string;
344
+ addressIndex: number;
345
+ accountIndex: number;
346
+ addressCount: number;
347
+ accountCount: number;
348
+ } | {
349
+ eth: import("@aztec/foundation/schemas").EthAddress | {
350
+ address: import("@aztec/foundation/schemas").EthAddress;
351
+ remoteSignerUrl: string;
352
+ certPath?: string | undefined;
353
+ certPass?: string | undefined;
354
+ } | {
355
+ path: string;
356
+ password?: string | undefined;
357
+ } | EthPrivateKey;
358
+ bls?: {
359
+ path: string;
360
+ password?: string | undefined;
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;
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 | {
373
+ address: import("@aztec/foundation/schemas").EthAddress;
374
+ remoteSignerUrl: string;
375
+ certPath?: string | undefined;
376
+ certPass?: string | undefined;
377
+ } | {
378
+ path: string;
379
+ password?: string | undefined;
380
+ } | {
381
+ mnemonic: string;
382
+ addressIndex: number;
383
+ accountIndex: number;
384
+ addressCount: number;
385
+ accountCount: number;
386
+ } | EthPrivateKey | undefined;
387
+ feeRecipient: AztecAddress;
388
+ remoteSigner?: string | {
389
+ remoteSignerUrl: string;
390
+ certPath?: string | undefined;
391
+ certPass?: string | undefined;
392
+ } | undefined;
393
+ fundingAccount?: import("@aztec/foundation/schemas").EthAddress | {
394
+ address: import("@aztec/foundation/schemas").EthAddress;
395
+ remoteSignerUrl: string;
396
+ certPath?: string | undefined;
397
+ certPass?: string | undefined;
398
+ } | {
399
+ path: string;
400
+ password?: string | undefined;
401
+ } | EthPrivateKey | undefined;
402
+ }, {
403
+ attester: string | (string | {
404
+ address: string;
405
+ remoteSignerUrl: string;
406
+ certPath?: string | undefined;
407
+ certPass?: string | undefined;
408
+ } | {
409
+ path: string;
410
+ password?: string | undefined;
411
+ } | {
412
+ eth: string | {
413
+ address: string;
414
+ remoteSignerUrl: string;
415
+ certPath?: string | undefined;
416
+ certPass?: string | undefined;
417
+ } | {
418
+ path: string;
419
+ password?: string | undefined;
420
+ };
421
+ bls?: string | {
422
+ path: string;
423
+ password?: string | undefined;
424
+ } | undefined;
425
+ })[] | {
426
+ address: string;
427
+ remoteSignerUrl: string;
428
+ certPath?: string | undefined;
429
+ certPass?: string | undefined;
430
+ } | {
431
+ path: string;
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
+ } | {
440
+ eth: string | {
441
+ address: string;
442
+ remoteSignerUrl: string;
443
+ certPath?: string | undefined;
444
+ certPass?: string | undefined;
445
+ } | {
446
+ path: string;
447
+ password?: string | undefined;
448
+ };
449
+ bls?: string | {
450
+ path: string;
451
+ password?: string | undefined;
452
+ } | undefined;
453
+ };
454
+ coinbase?: string | undefined;
455
+ publisher?: string | (string | {
456
+ address: string;
457
+ remoteSignerUrl: string;
458
+ certPath?: string | undefined;
459
+ certPass?: string | undefined;
460
+ } | {
461
+ path: string;
462
+ password?: string | undefined;
463
+ })[] | {
464
+ address: string;
465
+ remoteSignerUrl: string;
466
+ certPath?: string | undefined;
467
+ certPass?: string | undefined;
468
+ } | {
469
+ path: string;
470
+ password?: string | undefined;
471
+ } | {
472
+ mnemonic: string;
473
+ addressIndex?: number | undefined;
474
+ accountIndex?: number | undefined;
475
+ addressCount?: number | undefined;
476
+ accountCount?: number | undefined;
477
+ } | undefined;
478
+ feeRecipient?: any;
479
+ remoteSigner?: string | {
480
+ remoteSignerUrl: string;
481
+ certPath?: string | undefined;
482
+ certPass?: string | undefined;
483
+ } | undefined;
484
+ fundingAccount?: string | {
485
+ address: string;
486
+ remoteSignerUrl: string;
487
+ certPath?: string | undefined;
488
+ certPass?: string | undefined;
489
+ } | {
490
+ path: string;
491
+ password?: string | undefined;
492
+ } | undefined;
493
+ }>, "many">>;
494
+ slasher: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
495
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
496
+ remoteSignerUrl: z.ZodString;
497
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
498
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
499
+ }, "strict", z.ZodTypeAny, {
500
+ address: import("@aztec/foundation/schemas").EthAddress;
501
+ remoteSignerUrl: string;
502
+ certPath?: string | undefined;
503
+ certPass?: string | undefined;
504
+ }, {
505
+ address: string;
506
+ remoteSignerUrl: string;
507
+ certPath?: string | undefined;
508
+ certPass?: string | undefined;
509
+ }>]>, z.ZodObject<{
510
+ path: z.ZodString;
511
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
512
+ }, "strict", z.ZodTypeAny, {
513
+ path: string;
514
+ password?: string | undefined;
515
+ }, {
516
+ path: string;
517
+ password?: string | undefined;
518
+ }>]>, z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
519
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
520
+ remoteSignerUrl: z.ZodString;
521
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
522
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
523
+ }, "strict", z.ZodTypeAny, {
524
+ address: import("@aztec/foundation/schemas").EthAddress;
525
+ remoteSignerUrl: string;
526
+ certPath?: string | undefined;
527
+ certPass?: string | undefined;
528
+ }, {
529
+ address: string;
530
+ remoteSignerUrl: string;
531
+ certPath?: string | undefined;
532
+ certPass?: string | undefined;
533
+ }>]>, z.ZodObject<{
534
+ path: z.ZodString;
535
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
536
+ }, "strict", z.ZodTypeAny, {
537
+ path: string;
538
+ password?: string | undefined;
539
+ }, {
540
+ path: string;
541
+ password?: string | undefined;
542
+ }>]>, "many">, z.ZodObject<{
543
+ mnemonic: z.ZodString;
544
+ addressIndex: z.ZodDefault<z.ZodNumber>;
545
+ accountIndex: z.ZodDefault<z.ZodNumber>;
546
+ addressCount: z.ZodDefault<z.ZodNumber>;
547
+ accountCount: z.ZodDefault<z.ZodNumber>;
548
+ }, "strict", z.ZodTypeAny, {
549
+ mnemonic: string;
550
+ addressIndex: number;
551
+ accountIndex: number;
552
+ addressCount: number;
553
+ accountCount: number;
554
+ }, {
555
+ mnemonic: string;
556
+ addressIndex?: number | undefined;
557
+ accountIndex?: number | undefined;
558
+ addressCount?: number | undefined;
559
+ accountCount?: number | undefined;
560
+ }>]>>;
561
+ remoteSigner: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
562
+ remoteSignerUrl: z.ZodString;
563
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
564
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
565
+ }, "strict", z.ZodTypeAny, {
566
+ remoteSignerUrl: string;
567
+ certPath?: string | undefined;
568
+ certPass?: string | undefined;
569
+ }, {
570
+ remoteSignerUrl: string;
571
+ certPath?: string | undefined;
572
+ certPass?: string | undefined;
573
+ }>]>>;
574
+ prover: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
575
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
576
+ remoteSignerUrl: z.ZodString;
577
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
578
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
579
+ }, "strict", z.ZodTypeAny, {
580
+ address: import("@aztec/foundation/schemas").EthAddress;
581
+ remoteSignerUrl: string;
582
+ certPath?: string | undefined;
583
+ certPass?: string | undefined;
584
+ }, {
585
+ address: string;
586
+ remoteSignerUrl: string;
587
+ certPath?: string | undefined;
588
+ certPass?: string | undefined;
589
+ }>]>, z.ZodObject<{
590
+ path: z.ZodString;
591
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
592
+ }, "strict", z.ZodTypeAny, {
593
+ path: string;
594
+ password?: string | undefined;
595
+ }, {
596
+ path: string;
597
+ password?: string | undefined;
598
+ }>]>, z.ZodObject<{
599
+ id: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
600
+ publisher: z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
601
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
602
+ remoteSignerUrl: z.ZodString;
603
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
604
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
605
+ }, "strict", z.ZodTypeAny, {
606
+ address: import("@aztec/foundation/schemas").EthAddress;
607
+ remoteSignerUrl: string;
608
+ certPath?: string | undefined;
609
+ certPass?: string | undefined;
610
+ }, {
611
+ address: string;
612
+ remoteSignerUrl: string;
613
+ certPath?: string | undefined;
614
+ certPass?: string | undefined;
615
+ }>]>, z.ZodObject<{
616
+ path: z.ZodString;
617
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
618
+ }, "strict", z.ZodTypeAny, {
619
+ path: string;
620
+ password?: string | undefined;
621
+ }, {
622
+ path: string;
623
+ password?: string | undefined;
624
+ }>]>, z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
625
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
626
+ remoteSignerUrl: z.ZodString;
627
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
628
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
629
+ }, "strict", z.ZodTypeAny, {
630
+ address: import("@aztec/foundation/schemas").EthAddress;
631
+ remoteSignerUrl: string;
632
+ certPath?: string | undefined;
633
+ certPass?: string | undefined;
634
+ }, {
635
+ address: string;
636
+ remoteSignerUrl: string;
637
+ certPath?: string | undefined;
638
+ certPass?: string | undefined;
639
+ }>]>, z.ZodObject<{
640
+ path: z.ZodString;
641
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
642
+ }, "strict", z.ZodTypeAny, {
643
+ path: string;
644
+ password?: string | undefined;
645
+ }, {
646
+ path: string;
647
+ password?: string | undefined;
648
+ }>]>, "many">, z.ZodObject<{
649
+ mnemonic: z.ZodString;
650
+ addressIndex: z.ZodDefault<z.ZodNumber>;
651
+ accountIndex: z.ZodDefault<z.ZodNumber>;
652
+ addressCount: z.ZodDefault<z.ZodNumber>;
653
+ accountCount: z.ZodDefault<z.ZodNumber>;
654
+ }, "strict", z.ZodTypeAny, {
655
+ mnemonic: string;
656
+ addressIndex: number;
657
+ accountIndex: number;
658
+ addressCount: number;
659
+ accountCount: number;
660
+ }, {
661
+ mnemonic: string;
662
+ addressIndex?: number | undefined;
663
+ accountIndex?: number | undefined;
664
+ addressCount?: number | undefined;
665
+ accountCount?: number | undefined;
666
+ }>]>;
667
+ }, "strict", z.ZodTypeAny, {
668
+ id: import("@aztec/foundation/schemas").EthAddress;
669
+ publisher: (import("@aztec/foundation/schemas").EthAddress | {
670
+ address: import("@aztec/foundation/schemas").EthAddress;
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 | {
678
+ address: import("@aztec/foundation/schemas").EthAddress;
679
+ remoteSignerUrl: string;
680
+ certPath?: string | undefined;
681
+ certPass?: string | undefined;
682
+ } | {
683
+ path: string;
684
+ password?: string | undefined;
685
+ } | {
686
+ mnemonic: string;
687
+ addressIndex: number;
688
+ accountIndex: number;
689
+ addressCount: number;
690
+ accountCount: number;
691
+ } | EthPrivateKey;
692
+ }, {
693
+ id: string;
694
+ publisher: string | (string | {
695
+ address: string;
696
+ remoteSignerUrl: string;
697
+ certPath?: string | undefined;
698
+ certPass?: string | undefined;
699
+ } | {
700
+ path: string;
701
+ password?: string | undefined;
702
+ })[] | {
703
+ address: string;
704
+ remoteSignerUrl: string;
705
+ certPath?: string | undefined;
706
+ certPass?: string | undefined;
707
+ } | {
708
+ path: string;
709
+ password?: string | undefined;
710
+ } | {
711
+ mnemonic: string;
712
+ addressIndex?: number | undefined;
713
+ accountIndex?: number | undefined;
714
+ addressCount?: number | undefined;
715
+ accountCount?: number | undefined;
716
+ };
717
+ }>]>>;
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
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
720
+ remoteSignerUrl: z.ZodString;
721
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
722
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
723
+ }, "strict", z.ZodTypeAny, {
724
+ address: import("@aztec/foundation/schemas").EthAddress;
725
+ remoteSignerUrl: string;
726
+ certPath?: string | undefined;
727
+ certPass?: string | undefined;
728
+ }, {
729
+ address: string;
730
+ remoteSignerUrl: string;
731
+ certPath?: string | undefined;
732
+ certPass?: string | undefined;
733
+ }>]>, z.ZodObject<{
734
+ path: z.ZodString;
735
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
736
+ }, "strict", z.ZodTypeAny, {
737
+ path: string;
738
+ password?: string | undefined;
739
+ }, {
740
+ path: string;
741
+ password?: string | undefined;
742
+ }>]>>;
743
+ }, "strict", z.ZodTypeAny, {
744
+ schemaVersion: 1;
745
+ validators?: {
746
+ attester: (import("@aztec/foundation/schemas").EthAddress | {
747
+ address: import("@aztec/foundation/schemas").EthAddress;
748
+ remoteSignerUrl: string;
749
+ certPath?: string | undefined;
750
+ certPass?: string | undefined;
751
+ } | {
752
+ path: string;
753
+ password?: string | undefined;
754
+ } | {
755
+ eth: import("@aztec/foundation/schemas").EthAddress | {
756
+ address: import("@aztec/foundation/schemas").EthAddress;
757
+ remoteSignerUrl: string;
758
+ certPath?: string | undefined;
759
+ certPass?: string | undefined;
760
+ } | {
761
+ path: string;
762
+ password?: string | undefined;
763
+ } | EthPrivateKey;
764
+ bls?: {
765
+ path: string;
766
+ password?: string | undefined;
767
+ } | BLSPrivateKey | undefined;
768
+ } | EthPrivateKey)[] | import("@aztec/foundation/schemas").EthAddress | {
769
+ address: import("@aztec/foundation/schemas").EthAddress;
770
+ remoteSignerUrl: string;
771
+ certPath?: string | undefined;
772
+ certPass?: string | undefined;
773
+ } | {
774
+ path: string;
775
+ password?: string | undefined;
776
+ } | {
777
+ mnemonic: string;
778
+ addressIndex: number;
779
+ accountIndex: number;
780
+ addressCount: number;
781
+ accountCount: number;
782
+ } | {
783
+ eth: import("@aztec/foundation/schemas").EthAddress | {
784
+ address: import("@aztec/foundation/schemas").EthAddress;
785
+ remoteSignerUrl: string;
786
+ certPath?: string | undefined;
787
+ certPass?: string | undefined;
788
+ } | {
789
+ path: string;
790
+ password?: string | undefined;
791
+ } | EthPrivateKey;
792
+ bls?: {
793
+ path: string;
794
+ password?: string | undefined;
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;
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 | {
807
+ address: import("@aztec/foundation/schemas").EthAddress;
808
+ remoteSignerUrl: string;
809
+ certPath?: string | undefined;
810
+ certPass?: string | undefined;
811
+ } | {
812
+ path: string;
813
+ password?: string | undefined;
814
+ } | {
815
+ mnemonic: string;
816
+ addressIndex: number;
817
+ accountIndex: number;
818
+ addressCount: number;
819
+ accountCount: number;
820
+ } | EthPrivateKey | undefined;
821
+ feeRecipient: AztecAddress;
822
+ remoteSigner?: string | {
823
+ remoteSignerUrl: string;
824
+ certPath?: string | undefined;
825
+ certPass?: string | undefined;
826
+ } | undefined;
827
+ fundingAccount?: import("@aztec/foundation/schemas").EthAddress | {
828
+ address: import("@aztec/foundation/schemas").EthAddress;
829
+ remoteSignerUrl: string;
830
+ certPath?: string | undefined;
831
+ certPass?: string | undefined;
832
+ } | {
833
+ path: string;
834
+ password?: string | undefined;
835
+ } | EthPrivateKey | undefined;
836
+ }[] | undefined;
837
+ slasher?: (import("@aztec/foundation/schemas").EthAddress | {
838
+ address: import("@aztec/foundation/schemas").EthAddress;
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 | {
846
+ address: import("@aztec/foundation/schemas").EthAddress;
847
+ remoteSignerUrl: string;
848
+ certPath?: string | undefined;
849
+ certPass?: string | undefined;
850
+ } | {
851
+ path: string;
852
+ password?: string | undefined;
853
+ } | {
854
+ mnemonic: string;
855
+ addressIndex: number;
856
+ accountIndex: number;
857
+ addressCount: number;
858
+ accountCount: number;
859
+ } | EthPrivateKey | undefined;
860
+ remoteSigner?: string | {
861
+ remoteSignerUrl: string;
862
+ certPath?: string | undefined;
863
+ certPass?: string | undefined;
864
+ } | undefined;
865
+ prover?: import("@aztec/foundation/schemas").EthAddress | {
866
+ address: import("@aztec/foundation/schemas").EthAddress;
867
+ remoteSignerUrl: string;
868
+ certPath?: string | undefined;
869
+ certPass?: string | undefined;
870
+ } | {
871
+ path: string;
872
+ password?: string | undefined;
873
+ } | {
874
+ id: import("@aztec/foundation/schemas").EthAddress;
875
+ publisher: (import("@aztec/foundation/schemas").EthAddress | {
876
+ address: import("@aztec/foundation/schemas").EthAddress;
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 | {
884
+ address: import("@aztec/foundation/schemas").EthAddress;
885
+ remoteSignerUrl: string;
886
+ certPath?: string | undefined;
887
+ certPass?: string | undefined;
888
+ } | {
889
+ path: string;
890
+ password?: string | undefined;
891
+ } | {
892
+ mnemonic: string;
893
+ addressIndex: number;
894
+ accountIndex: number;
895
+ addressCount: number;
896
+ accountCount: number;
897
+ } | EthPrivateKey;
898
+ } | EthPrivateKey | undefined;
899
+ fundingAccount?: import("@aztec/foundation/schemas").EthAddress | {
900
+ address: import("@aztec/foundation/schemas").EthAddress;
901
+ remoteSignerUrl: string;
902
+ certPath?: string | undefined;
903
+ certPass?: string | undefined;
904
+ } | {
905
+ path: string;
906
+ password?: string | undefined;
907
+ } | EthPrivateKey | undefined;
908
+ }, {
909
+ schemaVersion: 1;
910
+ validators?: {
911
+ attester: string | (string | {
912
+ address: string;
913
+ remoteSignerUrl: string;
914
+ certPath?: string | undefined;
915
+ certPass?: string | undefined;
916
+ } | {
917
+ path: string;
918
+ password?: string | undefined;
919
+ } | {
920
+ eth: string | {
921
+ address: string;
922
+ remoteSignerUrl: string;
923
+ certPath?: string | undefined;
924
+ certPass?: string | undefined;
925
+ } | {
926
+ path: string;
927
+ password?: string | undefined;
928
+ };
929
+ bls?: string | {
930
+ path: string;
931
+ password?: string | undefined;
932
+ } | undefined;
933
+ })[] | {
934
+ address: string;
935
+ remoteSignerUrl: string;
936
+ certPath?: string | undefined;
937
+ certPass?: string | undefined;
938
+ } | {
939
+ path: string;
940
+ password?: string | undefined;
941
+ } | {
942
+ mnemonic: string;
943
+ addressIndex?: number | undefined;
944
+ accountIndex?: number | undefined;
945
+ addressCount?: number | undefined;
946
+ accountCount?: number | undefined;
947
+ } | {
948
+ eth: string | {
949
+ address: string;
950
+ remoteSignerUrl: string;
951
+ certPath?: string | undefined;
952
+ certPass?: string | undefined;
953
+ } | {
954
+ path: string;
955
+ password?: string | undefined;
956
+ };
957
+ bls?: string | {
958
+ path: string;
959
+ password?: string | undefined;
960
+ } | undefined;
961
+ };
962
+ coinbase?: string | undefined;
963
+ publisher?: string | (string | {
964
+ address: string;
965
+ remoteSignerUrl: string;
966
+ certPath?: string | undefined;
967
+ certPass?: string | undefined;
968
+ } | {
969
+ path: string;
970
+ password?: string | undefined;
971
+ })[] | {
972
+ address: string;
973
+ remoteSignerUrl: string;
974
+ certPath?: string | undefined;
975
+ certPass?: string | undefined;
976
+ } | {
977
+ path: string;
978
+ password?: string | undefined;
979
+ } | {
980
+ mnemonic: string;
981
+ addressIndex?: number | undefined;
982
+ accountIndex?: number | undefined;
983
+ addressCount?: number | undefined;
984
+ accountCount?: number | undefined;
985
+ } | undefined;
986
+ feeRecipient?: any;
987
+ remoteSigner?: string | {
988
+ remoteSignerUrl: string;
989
+ certPath?: string | undefined;
990
+ certPass?: string | undefined;
991
+ } | undefined;
992
+ fundingAccount?: string | {
993
+ address: string;
994
+ remoteSignerUrl: string;
995
+ certPath?: string | undefined;
996
+ certPass?: string | undefined;
997
+ } | {
998
+ path: string;
999
+ password?: string | undefined;
1000
+ } | undefined;
1001
+ }[] | undefined;
1002
+ slasher?: string | (string | {
1003
+ address: string;
1004
+ remoteSignerUrl: string;
1005
+ certPath?: string | undefined;
1006
+ certPass?: string | undefined;
1007
+ } | {
1008
+ path: string;
1009
+ password?: string | undefined;
1010
+ })[] | {
1011
+ address: string;
1012
+ remoteSignerUrl: string;
1013
+ certPath?: string | undefined;
1014
+ certPass?: string | undefined;
1015
+ } | {
1016
+ path: string;
1017
+ password?: string | undefined;
1018
+ } | {
1019
+ mnemonic: string;
1020
+ addressIndex?: number | undefined;
1021
+ accountIndex?: number | undefined;
1022
+ addressCount?: number | undefined;
1023
+ accountCount?: number | undefined;
1024
+ } | undefined;
1025
+ remoteSigner?: string | {
1026
+ remoteSignerUrl: string;
1027
+ certPath?: string | undefined;
1028
+ certPass?: string | undefined;
1029
+ } | undefined;
1030
+ prover?: string | {
1031
+ address: string;
1032
+ remoteSignerUrl: string;
1033
+ certPath?: string | undefined;
1034
+ certPass?: string | undefined;
1035
+ } | {
1036
+ path: string;
1037
+ password?: string | undefined;
1038
+ } | {
1039
+ id: string;
1040
+ publisher: string | (string | {
1041
+ address: string;
1042
+ remoteSignerUrl: string;
1043
+ certPath?: string | undefined;
1044
+ certPass?: string | undefined;
1045
+ } | {
1046
+ path: string;
1047
+ password?: string | undefined;
1048
+ })[] | {
1049
+ address: string;
1050
+ remoteSignerUrl: string;
1051
+ certPath?: string | undefined;
1052
+ certPass?: string | undefined;
1053
+ } | {
1054
+ path: string;
1055
+ password?: string | undefined;
1056
+ } | {
1057
+ mnemonic: string;
1058
+ addressIndex?: number | undefined;
1059
+ accountIndex?: number | undefined;
1060
+ addressCount?: number | undefined;
1061
+ accountCount?: number | undefined;
1062
+ };
1063
+ } | undefined;
1064
+ fundingAccount?: string | {
1065
+ address: string;
1066
+ remoteSignerUrl: string;
1067
+ certPath?: string | undefined;
1068
+ certPass?: string | undefined;
1069
+ } | {
1070
+ path: string;
1071
+ password?: string | undefined;
1072
+ } | undefined;
1073
+ }>, {
1074
+ schemaVersion: 1;
1075
+ validators?: {
1076
+ attester: (import("@aztec/foundation/schemas").EthAddress | {
1077
+ address: import("@aztec/foundation/schemas").EthAddress;
1078
+ remoteSignerUrl: string;
1079
+ certPath?: string | undefined;
1080
+ certPass?: string | undefined;
1081
+ } | {
1082
+ path: string;
1083
+ password?: string | undefined;
1084
+ } | {
1085
+ eth: import("@aztec/foundation/schemas").EthAddress | {
1086
+ address: import("@aztec/foundation/schemas").EthAddress;
1087
+ remoteSignerUrl: string;
1088
+ certPath?: string | undefined;
1089
+ certPass?: string | undefined;
1090
+ } | {
1091
+ path: string;
1092
+ password?: string | undefined;
1093
+ } | EthPrivateKey;
1094
+ bls?: {
1095
+ path: string;
1096
+ password?: string | undefined;
1097
+ } | BLSPrivateKey | undefined;
1098
+ } | EthPrivateKey)[] | import("@aztec/foundation/schemas").EthAddress | {
1099
+ address: import("@aztec/foundation/schemas").EthAddress;
1100
+ remoteSignerUrl: string;
1101
+ certPath?: string | undefined;
1102
+ certPass?: string | undefined;
1103
+ } | {
1104
+ path: string;
1105
+ password?: string | undefined;
1106
+ } | {
1107
+ mnemonic: string;
1108
+ addressIndex: number;
1109
+ accountIndex: number;
1110
+ addressCount: number;
1111
+ accountCount: number;
1112
+ } | {
1113
+ eth: import("@aztec/foundation/schemas").EthAddress | {
1114
+ address: import("@aztec/foundation/schemas").EthAddress;
1115
+ remoteSignerUrl: string;
1116
+ certPath?: string | undefined;
1117
+ certPass?: string | undefined;
1118
+ } | {
1119
+ path: string;
1120
+ password?: string | undefined;
1121
+ } | EthPrivateKey;
1122
+ bls?: {
1123
+ path: string;
1124
+ password?: string | undefined;
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;
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 | {
1137
+ address: import("@aztec/foundation/schemas").EthAddress;
1138
+ remoteSignerUrl: string;
1139
+ certPath?: string | undefined;
1140
+ certPass?: string | undefined;
1141
+ } | {
1142
+ path: string;
1143
+ password?: string | undefined;
1144
+ } | {
1145
+ mnemonic: string;
1146
+ addressIndex: number;
1147
+ accountIndex: number;
1148
+ addressCount: number;
1149
+ accountCount: number;
1150
+ } | EthPrivateKey | undefined;
1151
+ feeRecipient: AztecAddress;
1152
+ remoteSigner?: string | {
1153
+ remoteSignerUrl: string;
1154
+ certPath?: string | undefined;
1155
+ certPass?: string | undefined;
1156
+ } | undefined;
1157
+ fundingAccount?: import("@aztec/foundation/schemas").EthAddress | {
1158
+ address: import("@aztec/foundation/schemas").EthAddress;
1159
+ remoteSignerUrl: string;
1160
+ certPath?: string | undefined;
1161
+ certPass?: string | undefined;
1162
+ } | {
1163
+ path: string;
1164
+ password?: string | undefined;
1165
+ } | EthPrivateKey | undefined;
1166
+ }[] | undefined;
1167
+ slasher?: (import("@aztec/foundation/schemas").EthAddress | {
1168
+ address: import("@aztec/foundation/schemas").EthAddress;
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 | {
1176
+ address: import("@aztec/foundation/schemas").EthAddress;
1177
+ remoteSignerUrl: string;
1178
+ certPath?: string | undefined;
1179
+ certPass?: string | undefined;
1180
+ } | {
1181
+ path: string;
1182
+ password?: string | undefined;
1183
+ } | {
1184
+ mnemonic: string;
1185
+ addressIndex: number;
1186
+ accountIndex: number;
1187
+ addressCount: number;
1188
+ accountCount: number;
1189
+ } | EthPrivateKey | undefined;
1190
+ remoteSigner?: string | {
1191
+ remoteSignerUrl: string;
1192
+ certPath?: string | undefined;
1193
+ certPass?: string | undefined;
1194
+ } | undefined;
1195
+ prover?: import("@aztec/foundation/schemas").EthAddress | {
1196
+ address: import("@aztec/foundation/schemas").EthAddress;
1197
+ remoteSignerUrl: string;
1198
+ certPath?: string | undefined;
1199
+ certPass?: string | undefined;
1200
+ } | {
1201
+ path: string;
1202
+ password?: string | undefined;
1203
+ } | {
1204
+ id: import("@aztec/foundation/schemas").EthAddress;
1205
+ publisher: (import("@aztec/foundation/schemas").EthAddress | {
1206
+ address: import("@aztec/foundation/schemas").EthAddress;
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 | {
1214
+ address: import("@aztec/foundation/schemas").EthAddress;
1215
+ remoteSignerUrl: string;
1216
+ certPath?: string | undefined;
1217
+ certPass?: string | undefined;
1218
+ } | {
1219
+ path: string;
1220
+ password?: string | undefined;
1221
+ } | {
1222
+ mnemonic: string;
1223
+ addressIndex: number;
1224
+ accountIndex: number;
1225
+ addressCount: number;
1226
+ accountCount: number;
1227
+ } | EthPrivateKey;
1228
+ } | EthPrivateKey | undefined;
1229
+ fundingAccount?: import("@aztec/foundation/schemas").EthAddress | {
1230
+ address: import("@aztec/foundation/schemas").EthAddress;
1231
+ remoteSignerUrl: string;
1232
+ certPath?: string | undefined;
1233
+ certPass?: string | undefined;
1234
+ } | {
1235
+ path: string;
1236
+ password?: string | undefined;
1237
+ } | EthPrivateKey | undefined;
1238
+ }, {
1239
+ schemaVersion: 1;
1240
+ validators?: {
1241
+ attester: string | (string | {
1242
+ address: string;
1243
+ remoteSignerUrl: string;
1244
+ certPath?: string | undefined;
1245
+ certPass?: string | undefined;
1246
+ } | {
1247
+ path: string;
1248
+ password?: string | undefined;
1249
+ } | {
1250
+ eth: string | {
1251
+ address: string;
1252
+ remoteSignerUrl: string;
1253
+ certPath?: string | undefined;
1254
+ certPass?: string | undefined;
1255
+ } | {
1256
+ path: string;
1257
+ password?: string | undefined;
1258
+ };
1259
+ bls?: string | {
1260
+ path: string;
1261
+ password?: string | undefined;
1262
+ } | undefined;
1263
+ })[] | {
1264
+ address: string;
1265
+ remoteSignerUrl: string;
1266
+ certPath?: string | undefined;
1267
+ certPass?: string | undefined;
1268
+ } | {
1269
+ path: string;
1270
+ password?: string | undefined;
1271
+ } | {
1272
+ mnemonic: string;
1273
+ addressIndex?: number | undefined;
1274
+ accountIndex?: number | undefined;
1275
+ addressCount?: number | undefined;
1276
+ accountCount?: number | undefined;
1277
+ } | {
1278
+ eth: string | {
1279
+ address: string;
1280
+ remoteSignerUrl: string;
1281
+ certPath?: string | undefined;
1282
+ certPass?: string | undefined;
1283
+ } | {
1284
+ path: string;
1285
+ password?: string | undefined;
1286
+ };
1287
+ bls?: string | {
1288
+ path: string;
1289
+ password?: string | undefined;
1290
+ } | undefined;
1291
+ };
1292
+ coinbase?: string | undefined;
1293
+ publisher?: string | (string | {
1294
+ address: string;
1295
+ remoteSignerUrl: string;
1296
+ certPath?: string | undefined;
1297
+ certPass?: string | undefined;
1298
+ } | {
1299
+ path: string;
1300
+ password?: string | undefined;
1301
+ })[] | {
1302
+ address: string;
1303
+ remoteSignerUrl: string;
1304
+ certPath?: string | undefined;
1305
+ certPass?: string | undefined;
1306
+ } | {
1307
+ path: string;
1308
+ password?: string | undefined;
1309
+ } | {
1310
+ mnemonic: string;
1311
+ addressIndex?: number | undefined;
1312
+ accountIndex?: number | undefined;
1313
+ addressCount?: number | undefined;
1314
+ accountCount?: number | undefined;
1315
+ } | undefined;
1316
+ feeRecipient?: any;
1317
+ remoteSigner?: string | {
1318
+ remoteSignerUrl: string;
1319
+ certPath?: string | undefined;
1320
+ certPass?: string | undefined;
1321
+ } | undefined;
1322
+ fundingAccount?: string | {
1323
+ address: string;
1324
+ remoteSignerUrl: string;
1325
+ certPath?: string | undefined;
1326
+ certPass?: string | undefined;
1327
+ } | {
1328
+ path: string;
1329
+ password?: string | undefined;
1330
+ } | undefined;
1331
+ }[] | undefined;
1332
+ slasher?: string | (string | {
1333
+ address: string;
1334
+ remoteSignerUrl: string;
1335
+ certPath?: string | undefined;
1336
+ certPass?: string | undefined;
1337
+ } | {
1338
+ path: string;
1339
+ password?: string | undefined;
1340
+ })[] | {
1341
+ address: string;
1342
+ remoteSignerUrl: string;
1343
+ certPath?: string | undefined;
1344
+ certPass?: string | undefined;
1345
+ } | {
1346
+ path: string;
1347
+ password?: string | undefined;
1348
+ } | {
1349
+ mnemonic: string;
1350
+ addressIndex?: number | undefined;
1351
+ accountIndex?: number | undefined;
1352
+ addressCount?: number | undefined;
1353
+ accountCount?: number | undefined;
1354
+ } | undefined;
1355
+ remoteSigner?: string | {
1356
+ remoteSignerUrl: string;
1357
+ certPath?: string | undefined;
1358
+ certPass?: string | undefined;
1359
+ } | undefined;
1360
+ prover?: string | {
1361
+ address: string;
1362
+ remoteSignerUrl: string;
1363
+ certPath?: string | undefined;
1364
+ certPass?: string | undefined;
1365
+ } | {
1366
+ path: string;
1367
+ password?: string | undefined;
1368
+ } | {
1369
+ id: string;
1370
+ publisher: string | (string | {
1371
+ address: string;
1372
+ remoteSignerUrl: string;
1373
+ certPath?: string | undefined;
1374
+ certPass?: string | undefined;
1375
+ } | {
1376
+ path: string;
1377
+ password?: string | undefined;
1378
+ })[] | {
1379
+ address: string;
1380
+ remoteSignerUrl: string;
1381
+ certPath?: string | undefined;
1382
+ certPass?: string | undefined;
1383
+ } | {
1384
+ path: string;
1385
+ password?: string | undefined;
1386
+ } | {
1387
+ mnemonic: string;
1388
+ addressIndex?: number | undefined;
1389
+ accountIndex?: number | undefined;
1390
+ addressCount?: number | undefined;
1391
+ accountCount?: number | undefined;
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
+ } | undefined;
1403
+ }>;
1404
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2NoZW1hcy5kLnRzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vc3JjL3NjaGVtYXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBSUEsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLDZCQUE2QixDQUFDO0FBRTNELE9BQU8sRUFBRSxDQUFDLEVBQUUsTUFBTSxLQUFLLENBQUM7QUFFeEIsT0FBTyxLQUFLLEVBQUUsYUFBYSxFQUFFLGFBQWEsRUFBRSxNQUFNLFlBQVksQ0FBQztBQUcvRCxlQUFPLE1BQU0sbUJBQW1CLGtEQUdLLENBQUM7QUFDdEMsZUFBTyxNQUFNLG1CQUFtQixrREFHSyxDQUFDO0FBOEZ0QyxlQUFPLE1BQU0sY0FBYzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7RUFhdkIsQ0FBQyJ9