@aztec/node-keystore 0.0.1-commit.b655e406 → 0.0.1-commit.c31f2472

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dest/schemas.d.ts CHANGED
@@ -3,53 +3,53 @@ import { z } from 'zod';
3
3
  import type { BLSPrivateKey, EthPrivateKey } from './types.js';
4
4
  export declare const ethPrivateKeySchema: z.ZodEffects<z.ZodString, EthPrivateKey, string>;
5
5
  export declare const blsPrivateKeySchema: z.ZodEffects<z.ZodString, BLSPrivateKey, string>;
6
- export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
6
+ export declare const keystoreSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
7
7
  schemaVersion: z.ZodLiteral<1>;
8
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>;
9
+ attester: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
10
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
11
11
  remoteSignerUrl: z.ZodString;
12
12
  certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
13
13
  certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
14
- }, "strip", z.ZodTypeAny, {
14
+ }, "strict", z.ZodTypeAny, {
15
+ address: import("@aztec/foundation/eth-address").EthAddress;
15
16
  remoteSignerUrl: string;
16
- address: import("@aztec/foundation/schemas").EthAddress;
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<{
25
25
  path: z.ZodString;
26
26
  password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
27
- }, "strip", z.ZodTypeAny, {
27
+ }, "strict", z.ZodTypeAny, {
28
28
  path: string;
29
29
  password?: string | undefined;
30
30
  }, {
31
31
  path: string;
32
32
  password?: string | undefined;
33
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>;
34
+ eth: z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
35
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
36
36
  remoteSignerUrl: z.ZodString;
37
37
  certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
38
38
  certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
39
- }, "strip", z.ZodTypeAny, {
39
+ }, "strict", z.ZodTypeAny, {
40
+ address: import("@aztec/foundation/eth-address").EthAddress;
40
41
  remoteSignerUrl: string;
41
- address: import("@aztec/foundation/schemas").EthAddress;
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<{
50
50
  path: z.ZodString;
51
51
  password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
52
- }, "strip", z.ZodTypeAny, {
52
+ }, "strict", z.ZodTypeAny, {
53
53
  path: string;
54
54
  password?: string | undefined;
55
55
  }, {
@@ -59,31 +59,31 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
59
59
  bls: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, BLSPrivateKey, string>, z.ZodObject<{
60
60
  path: z.ZodString;
61
61
  password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
62
- }, "strip", z.ZodTypeAny, {
62
+ }, "strict", z.ZodTypeAny, {
63
63
  path: string;
64
64
  password?: string | undefined;
65
65
  }, {
66
66
  path: string;
67
67
  password?: string | undefined;
68
68
  }>]>>;
69
- }, "strip", z.ZodTypeAny, {
70
- eth: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
69
+ }, "strict", z.ZodTypeAny, {
70
+ eth: import("@aztec/foundation/eth-address").EthAddress | {
71
+ address: import("@aztec/foundation/eth-address").EthAddress;
71
72
  remoteSignerUrl: string;
72
- address: import("@aztec/foundation/schemas").EthAddress;
73
73
  certPath?: string | undefined;
74
74
  certPass?: string | undefined;
75
75
  } | {
76
76
  path: string;
77
77
  password?: string | undefined;
78
- };
79
- bls?: BLSPrivateKey | {
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
  } | {
@@ -94,50 +94,50 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
94
94
  path: string;
95
95
  password?: string | undefined;
96
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>;
97
+ }>]>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
98
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
99
99
  remoteSignerUrl: z.ZodString;
100
100
  certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
101
101
  certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
102
- }, "strip", z.ZodTypeAny, {
102
+ }, "strict", z.ZodTypeAny, {
103
+ address: import("@aztec/foundation/eth-address").EthAddress;
103
104
  remoteSignerUrl: string;
104
- address: import("@aztec/foundation/schemas").EthAddress;
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<{
113
113
  path: z.ZodString;
114
114
  password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
115
- }, "strip", z.ZodTypeAny, {
115
+ }, "strict", z.ZodTypeAny, {
116
116
  path: string;
117
117
  password?: string | undefined;
118
118
  }, {
119
119
  path: string;
120
120
  password?: string | undefined;
121
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>;
122
+ eth: z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
123
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
124
124
  remoteSignerUrl: z.ZodString;
125
125
  certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
126
126
  certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
127
- }, "strip", z.ZodTypeAny, {
127
+ }, "strict", z.ZodTypeAny, {
128
+ address: import("@aztec/foundation/eth-address").EthAddress;
128
129
  remoteSignerUrl: string;
129
- address: import("@aztec/foundation/schemas").EthAddress;
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<{
138
138
  path: z.ZodString;
139
139
  password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
140
- }, "strip", z.ZodTypeAny, {
140
+ }, "strict", z.ZodTypeAny, {
141
141
  path: string;
142
142
  password?: string | undefined;
143
143
  }, {
@@ -147,31 +147,31 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
147
147
  bls: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, BLSPrivateKey, string>, z.ZodObject<{
148
148
  path: z.ZodString;
149
149
  password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
150
- }, "strip", z.ZodTypeAny, {
150
+ }, "strict", z.ZodTypeAny, {
151
151
  path: string;
152
152
  password?: string | undefined;
153
153
  }, {
154
154
  path: string;
155
155
  password?: string | undefined;
156
156
  }>]>>;
157
- }, "strip", z.ZodTypeAny, {
158
- eth: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
157
+ }, "strict", z.ZodTypeAny, {
158
+ eth: import("@aztec/foundation/eth-address").EthAddress | {
159
+ address: import("@aztec/foundation/eth-address").EthAddress;
159
160
  remoteSignerUrl: string;
160
- address: import("@aztec/foundation/schemas").EthAddress;
161
161
  certPath?: string | undefined;
162
162
  certPass?: string | undefined;
163
163
  } | {
164
164
  path: string;
165
165
  password?: string | undefined;
166
- };
167
- bls?: BLSPrivateKey | {
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
  } | {
@@ -188,7 +188,7 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
188
188
  accountIndex: z.ZodDefault<z.ZodNumber>;
189
189
  addressCount: z.ZodDefault<z.ZodNumber>;
190
190
  accountCount: z.ZodDefault<z.ZodNumber>;
191
- }, "strip", z.ZodTypeAny, {
191
+ }, "strict", z.ZodTypeAny, {
192
192
  mnemonic: string;
193
193
  addressIndex: number;
194
194
  accountIndex: number;
@@ -201,50 +201,50 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
201
201
  addressCount?: number | undefined;
202
202
  accountCount?: number | undefined;
203
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>;
204
+ coinbase: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodType<import("@aztec/foundation/eth-address").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/eth-address").EthAddress, any, string>, z.ZodObject<{
206
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
207
207
  remoteSignerUrl: z.ZodString;
208
208
  certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
209
209
  certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
210
- }, "strip", z.ZodTypeAny, {
210
+ }, "strict", z.ZodTypeAny, {
211
+ address: import("@aztec/foundation/eth-address").EthAddress;
211
212
  remoteSignerUrl: string;
212
- address: import("@aztec/foundation/schemas").EthAddress;
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<{
221
221
  path: z.ZodString;
222
222
  password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
223
- }, "strip", z.ZodTypeAny, {
223
+ }, "strict", z.ZodTypeAny, {
224
224
  path: string;
225
225
  password?: string | undefined;
226
226
  }, {
227
227
  path: string;
228
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>;
229
+ }>]>, z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
230
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
231
231
  remoteSignerUrl: z.ZodString;
232
232
  certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
233
233
  certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
234
- }, "strip", z.ZodTypeAny, {
234
+ }, "strict", z.ZodTypeAny, {
235
+ address: import("@aztec/foundation/eth-address").EthAddress;
235
236
  remoteSignerUrl: string;
236
- address: import("@aztec/foundation/schemas").EthAddress;
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<{
245
245
  path: z.ZodString;
246
246
  password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
247
- }, "strip", z.ZodTypeAny, {
247
+ }, "strict", z.ZodTypeAny, {
248
248
  path: string;
249
249
  password?: string | undefined;
250
250
  }, {
@@ -256,7 +256,7 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
256
256
  accountIndex: z.ZodDefault<z.ZodNumber>;
257
257
  addressCount: z.ZodDefault<z.ZodNumber>;
258
258
  accountCount: z.ZodDefault<z.ZodNumber>;
259
- }, "strip", z.ZodTypeAny, {
259
+ }, "strict", z.ZodTypeAny, {
260
260
  mnemonic: string;
261
261
  addressIndex: number;
262
262
  accountIndex: number;
@@ -274,7 +274,7 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
274
274
  remoteSignerUrl: z.ZodString;
275
275
  certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
276
276
  certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
277
- }, "strip", z.ZodTypeAny, {
277
+ }, "strict", z.ZodTypeAny, {
278
278
  remoteSignerUrl: string;
279
279
  certPath?: string | undefined;
280
280
  certPass?: string | undefined;
@@ -283,141 +283,135 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
283
283
  certPath?: string | undefined;
284
284
  certPass?: string | undefined;
285
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>;
286
+ fundingAccount: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
287
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
288
288
  remoteSignerUrl: z.ZodString;
289
289
  certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
290
290
  certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
291
- }, "strip", z.ZodTypeAny, {
291
+ }, "strict", z.ZodTypeAny, {
292
+ address: import("@aztec/foundation/eth-address").EthAddress;
292
293
  remoteSignerUrl: string;
293
- address: import("@aztec/foundation/schemas").EthAddress;
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<{
302
302
  path: z.ZodString;
303
303
  password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
304
- }, "strip", z.ZodTypeAny, {
304
+ }, "strict", z.ZodTypeAny, {
305
305
  path: string;
306
306
  password?: string | undefined;
307
307
  }, {
308
308
  path: string;
309
309
  password?: string | undefined;
310
310
  }>]>>;
311
- }, "strip", z.ZodTypeAny, {
312
- attester: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
311
+ }, "strict", z.ZodTypeAny, {
312
+ attester: (import("@aztec/foundation/eth-address").EthAddress | {
313
+ address: import("@aztec/foundation/eth-address").EthAddress;
313
314
  remoteSignerUrl: string;
314
- address: import("@aztec/foundation/schemas").EthAddress;
315
315
  certPath?: string | undefined;
316
316
  certPass?: string | undefined;
317
317
  } | {
318
318
  path: string;
319
319
  password?: string | undefined;
320
320
  } | {
321
- mnemonic: string;
322
- addressIndex: number;
323
- accountIndex: number;
324
- addressCount: number;
325
- accountCount: number;
326
- } | {
327
- eth: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
321
+ eth: import("@aztec/foundation/eth-address").EthAddress | {
322
+ address: import("@aztec/foundation/eth-address").EthAddress;
328
323
  remoteSignerUrl: string;
329
- address: import("@aztec/foundation/schemas").EthAddress;
330
324
  certPath?: string | undefined;
331
325
  certPass?: string | undefined;
332
326
  } | {
333
327
  path: string;
334
328
  password?: string | undefined;
335
- };
336
- bls?: BLSPrivateKey | {
329
+ } | EthPrivateKey;
330
+ bls?: {
337
331
  path: string;
338
332
  password?: string | undefined;
339
- } | undefined;
340
- } | (EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
333
+ } | BLSPrivateKey | undefined;
334
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
335
+ address: import("@aztec/foundation/eth-address").EthAddress;
341
336
  remoteSignerUrl: string;
342
- address: import("@aztec/foundation/schemas").EthAddress;
343
337
  certPath?: string | undefined;
344
338
  certPass?: string | undefined;
345
339
  } | {
346
340
  path: string;
347
341
  password?: string | undefined;
348
342
  } | {
349
- eth: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
343
+ mnemonic: string;
344
+ addressIndex: number;
345
+ accountIndex: number;
346
+ addressCount: number;
347
+ accountCount: number;
348
+ } | {
349
+ eth: import("@aztec/foundation/eth-address").EthAddress | {
350
+ address: import("@aztec/foundation/eth-address").EthAddress;
350
351
  remoteSignerUrl: string;
351
- address: import("@aztec/foundation/schemas").EthAddress;
352
352
  certPath?: string | undefined;
353
353
  certPass?: string | undefined;
354
354
  } | {
355
355
  path: string;
356
356
  password?: string | undefined;
357
- };
358
- bls?: BLSPrivateKey | {
357
+ } | EthPrivateKey;
358
+ bls?: {
359
359
  path: string;
360
360
  password?: string | undefined;
361
- } | undefined;
362
- })[];
363
- feeRecipient: AztecAddress;
364
- publisher?: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
361
+ } | BLSPrivateKey | undefined;
362
+ } | EthPrivateKey;
363
+ coinbase?: import("@aztec/foundation/eth-address").EthAddress | undefined;
364
+ publisher?: (import("@aztec/foundation/eth-address").EthAddress | {
365
+ address: import("@aztec/foundation/eth-address").EthAddress;
365
366
  remoteSignerUrl: string;
366
- address: import("@aztec/foundation/schemas").EthAddress;
367
367
  certPath?: string | undefined;
368
368
  certPass?: string | undefined;
369
369
  } | {
370
370
  path: string;
371
371
  password?: string | undefined;
372
- } | {
373
- mnemonic: string;
374
- addressIndex: number;
375
- accountIndex: number;
376
- addressCount: number;
377
- accountCount: number;
378
- } | (EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
372
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
373
+ address: import("@aztec/foundation/eth-address").EthAddress;
379
374
  remoteSignerUrl: string;
380
- address: import("@aztec/foundation/schemas").EthAddress;
381
375
  certPath?: string | undefined;
382
376
  certPass?: string | undefined;
383
377
  } | {
384
378
  path: string;
385
379
  password?: string | undefined;
386
- })[] | undefined;
387
- coinbase?: import("@aztec/foundation/schemas").EthAddress | undefined;
380
+ } | {
381
+ mnemonic: string;
382
+ addressIndex: number;
383
+ accountIndex: number;
384
+ addressCount: number;
385
+ accountCount: number;
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?: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
393
+ fundingAccount?: import("@aztec/foundation/eth-address").EthAddress | {
394
+ address: import("@aztec/foundation/eth-address").EthAddress;
394
395
  remoteSignerUrl: string;
395
- address: import("@aztec/foundation/schemas").EthAddress;
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
- } | (string | {
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
- publisher?: string | {
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
- } | (string | {
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
  } | {
@@ -491,49 +491,49 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
491
491
  password?: string | undefined;
492
492
  } | undefined;
493
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>;
494
+ slasher: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
495
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
496
496
  remoteSignerUrl: z.ZodString;
497
497
  certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
498
498
  certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
499
- }, "strip", z.ZodTypeAny, {
499
+ }, "strict", z.ZodTypeAny, {
500
+ address: import("@aztec/foundation/eth-address").EthAddress;
500
501
  remoteSignerUrl: string;
501
- address: import("@aztec/foundation/schemas").EthAddress;
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<{
510
510
  path: z.ZodString;
511
511
  password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
512
- }, "strip", z.ZodTypeAny, {
512
+ }, "strict", z.ZodTypeAny, {
513
513
  path: string;
514
514
  password?: string | undefined;
515
515
  }, {
516
516
  path: string;
517
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>;
518
+ }>]>, z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
519
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
520
520
  remoteSignerUrl: z.ZodString;
521
521
  certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
522
522
  certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
523
- }, "strip", z.ZodTypeAny, {
523
+ }, "strict", z.ZodTypeAny, {
524
+ address: import("@aztec/foundation/eth-address").EthAddress;
524
525
  remoteSignerUrl: string;
525
- address: import("@aztec/foundation/schemas").EthAddress;
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<{
534
534
  path: z.ZodString;
535
535
  password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
536
- }, "strip", z.ZodTypeAny, {
536
+ }, "strict", z.ZodTypeAny, {
537
537
  path: string;
538
538
  password?: string | undefined;
539
539
  }, {
@@ -545,7 +545,7 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
545
545
  accountIndex: z.ZodDefault<z.ZodNumber>;
546
546
  addressCount: z.ZodDefault<z.ZodNumber>;
547
547
  accountCount: z.ZodDefault<z.ZodNumber>;
548
- }, "strip", z.ZodTypeAny, {
548
+ }, "strict", z.ZodTypeAny, {
549
549
  mnemonic: string;
550
550
  addressIndex: number;
551
551
  accountIndex: number;
@@ -562,7 +562,7 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
562
562
  remoteSignerUrl: z.ZodString;
563
563
  certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
564
564
  certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
565
- }, "strip", z.ZodTypeAny, {
565
+ }, "strict", z.ZodTypeAny, {
566
566
  remoteSignerUrl: string;
567
567
  certPath?: string | undefined;
568
568
  certPass?: string | undefined;
@@ -571,75 +571,75 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
571
571
  certPath?: string | undefined;
572
572
  certPass?: string | undefined;
573
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>;
574
+ prover: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
575
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
576
576
  remoteSignerUrl: z.ZodString;
577
577
  certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
578
578
  certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
579
- }, "strip", z.ZodTypeAny, {
579
+ }, "strict", z.ZodTypeAny, {
580
+ address: import("@aztec/foundation/eth-address").EthAddress;
580
581
  remoteSignerUrl: string;
581
- address: import("@aztec/foundation/schemas").EthAddress;
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<{
590
590
  path: z.ZodString;
591
591
  password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
592
- }, "strip", z.ZodTypeAny, {
592
+ }, "strict", z.ZodTypeAny, {
593
593
  path: string;
594
594
  password?: string | undefined;
595
595
  }, {
596
596
  path: string;
597
597
  password?: string | undefined;
598
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>;
599
+ id: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
600
+ publisher: z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
601
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
602
602
  remoteSignerUrl: z.ZodString;
603
603
  certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
604
604
  certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
605
- }, "strip", z.ZodTypeAny, {
605
+ }, "strict", z.ZodTypeAny, {
606
+ address: import("@aztec/foundation/eth-address").EthAddress;
606
607
  remoteSignerUrl: string;
607
- address: import("@aztec/foundation/schemas").EthAddress;
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<{
616
616
  path: z.ZodString;
617
617
  password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
618
- }, "strip", z.ZodTypeAny, {
618
+ }, "strict", z.ZodTypeAny, {
619
619
  path: string;
620
620
  password?: string | undefined;
621
621
  }, {
622
622
  path: string;
623
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>;
624
+ }>]>, z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
625
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
626
626
  remoteSignerUrl: z.ZodString;
627
627
  certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
628
628
  certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
629
- }, "strip", z.ZodTypeAny, {
629
+ }, "strict", z.ZodTypeAny, {
630
+ address: import("@aztec/foundation/eth-address").EthAddress;
630
631
  remoteSignerUrl: string;
631
- address: import("@aztec/foundation/schemas").EthAddress;
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<{
640
640
  path: z.ZodString;
641
641
  password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
642
- }, "strip", z.ZodTypeAny, {
642
+ }, "strict", z.ZodTypeAny, {
643
643
  path: string;
644
644
  password?: string | undefined;
645
645
  }, {
@@ -651,7 +651,7 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
651
651
  accountIndex: z.ZodDefault<z.ZodNumber>;
652
652
  addressCount: z.ZodDefault<z.ZodNumber>;
653
653
  accountCount: z.ZodDefault<z.ZodNumber>;
654
- }, "strip", z.ZodTypeAny, {
654
+ }, "strict", z.ZodTypeAny, {
655
655
  mnemonic: string;
656
656
  addressIndex: number;
657
657
  accountIndex: number;
@@ -664,11 +664,19 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
664
664
  addressCount?: number | undefined;
665
665
  accountCount?: number | undefined;
666
666
  }>]>;
667
- }, "strip", z.ZodTypeAny, {
668
- id: import("@aztec/foundation/schemas").EthAddress;
669
- publisher: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
667
+ }, "strict", z.ZodTypeAny, {
668
+ id: import("@aztec/foundation/eth-address").EthAddress;
669
+ publisher: (import("@aztec/foundation/eth-address").EthAddress | {
670
+ address: import("@aztec/foundation/eth-address").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/eth-address").EthAddress | {
678
+ address: import("@aztec/foundation/eth-address").EthAddress;
670
679
  remoteSignerUrl: string;
671
- address: import("@aztec/foundation/schemas").EthAddress;
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
- } | (EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
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,152 +713,138 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
705
713
  accountIndex?: number | undefined;
706
714
  addressCount?: number | undefined;
707
715
  accountCount?: number | undefined;
708
- } | (string | {
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
- 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>;
718
+ fundingAccount: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
719
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
720
720
  remoteSignerUrl: z.ZodString;
721
721
  certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
722
722
  certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
723
- }, "strip", z.ZodTypeAny, {
723
+ }, "strict", z.ZodTypeAny, {
724
+ address: import("@aztec/foundation/eth-address").EthAddress;
724
725
  remoteSignerUrl: string;
725
- address: import("@aztec/foundation/schemas").EthAddress;
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<{
734
734
  path: z.ZodString;
735
735
  password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
736
- }, "strip", z.ZodTypeAny, {
736
+ }, "strict", z.ZodTypeAny, {
737
737
  path: string;
738
738
  password?: string | undefined;
739
739
  }, {
740
740
  path: string;
741
741
  password?: string | undefined;
742
742
  }>]>>;
743
- }, "strip", z.ZodTypeAny, {
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: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
746
+ attester: (import("@aztec/foundation/eth-address").EthAddress | {
747
+ address: import("@aztec/foundation/eth-address").EthAddress;
761
748
  remoteSignerUrl: string;
762
- address: import("@aztec/foundation/schemas").EthAddress;
763
749
  certPath?: string | undefined;
764
750
  certPass?: string | undefined;
765
751
  } | {
766
752
  path: string;
767
753
  password?: string | undefined;
768
754
  } | {
769
- mnemonic: string;
770
- addressIndex: number;
771
- accountIndex: number;
772
- addressCount: number;
773
- accountCount: number;
774
- } | {
775
- eth: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
755
+ eth: import("@aztec/foundation/eth-address").EthAddress | {
756
+ address: import("@aztec/foundation/eth-address").EthAddress;
776
757
  remoteSignerUrl: string;
777
- address: import("@aztec/foundation/schemas").EthAddress;
778
758
  certPath?: string | undefined;
779
759
  certPass?: string | undefined;
780
760
  } | {
781
761
  path: string;
782
762
  password?: string | undefined;
783
- };
784
- bls?: BLSPrivateKey | {
763
+ } | EthPrivateKey;
764
+ bls?: {
785
765
  path: string;
786
766
  password?: string | undefined;
787
- } | undefined;
788
- } | (EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
767
+ } | BLSPrivateKey | undefined;
768
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
769
+ address: import("@aztec/foundation/eth-address").EthAddress;
789
770
  remoteSignerUrl: string;
790
- address: import("@aztec/foundation/schemas").EthAddress;
791
771
  certPath?: string | undefined;
792
772
  certPass?: string | undefined;
793
773
  } | {
794
774
  path: string;
795
775
  password?: string | undefined;
796
776
  } | {
797
- eth: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
777
+ mnemonic: string;
778
+ addressIndex: number;
779
+ accountIndex: number;
780
+ addressCount: number;
781
+ accountCount: number;
782
+ } | {
783
+ eth: import("@aztec/foundation/eth-address").EthAddress | {
784
+ address: import("@aztec/foundation/eth-address").EthAddress;
798
785
  remoteSignerUrl: string;
799
- address: import("@aztec/foundation/schemas").EthAddress;
800
786
  certPath?: string | undefined;
801
787
  certPass?: string | undefined;
802
788
  } | {
803
789
  path: string;
804
790
  password?: string | undefined;
805
- };
806
- bls?: BLSPrivateKey | {
791
+ } | EthPrivateKey;
792
+ bls?: {
807
793
  path: string;
808
794
  password?: string | undefined;
809
- } | undefined;
810
- })[];
811
- feeRecipient: AztecAddress;
812
- publisher?: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
795
+ } | BLSPrivateKey | undefined;
796
+ } | EthPrivateKey;
797
+ coinbase?: import("@aztec/foundation/eth-address").EthAddress | undefined;
798
+ publisher?: (import("@aztec/foundation/eth-address").EthAddress | {
799
+ address: import("@aztec/foundation/eth-address").EthAddress;
813
800
  remoteSignerUrl: string;
814
- address: import("@aztec/foundation/schemas").EthAddress;
815
801
  certPath?: string | undefined;
816
802
  certPass?: string | undefined;
817
803
  } | {
818
804
  path: string;
819
805
  password?: string | undefined;
820
- } | {
821
- mnemonic: string;
822
- addressIndex: number;
823
- accountIndex: number;
824
- addressCount: number;
825
- accountCount: number;
826
- } | (EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
806
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
807
+ address: import("@aztec/foundation/eth-address").EthAddress;
827
808
  remoteSignerUrl: string;
828
- address: import("@aztec/foundation/schemas").EthAddress;
829
809
  certPath?: string | undefined;
830
810
  certPass?: string | undefined;
831
811
  } | {
832
812
  path: string;
833
813
  password?: string | undefined;
834
- })[] | undefined;
835
- coinbase?: import("@aztec/foundation/schemas").EthAddress | undefined;
814
+ } | {
815
+ mnemonic: string;
816
+ addressIndex: number;
817
+ accountIndex: number;
818
+ addressCount: number;
819
+ accountCount: number;
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?: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
827
+ fundingAccount?: import("@aztec/foundation/eth-address").EthAddress | {
828
+ address: import("@aztec/foundation/eth-address").EthAddress;
842
829
  remoteSignerUrl: string;
843
- address: import("@aztec/foundation/schemas").EthAddress;
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?: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
837
+ slasher?: (import("@aztec/foundation/eth-address").EthAddress | {
838
+ address: import("@aztec/foundation/eth-address").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/eth-address").EthAddress | {
846
+ address: import("@aztec/foundation/eth-address").EthAddress;
852
847
  remoteSignerUrl: string;
853
- address: import("@aztec/foundation/schemas").EthAddress;
854
848
  certPath?: string | undefined;
855
849
  certPass?: string | undefined;
856
850
  } | {
@@ -862,84 +856,70 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
862
856
  accountIndex: number;
863
857
  addressCount: number;
864
858
  accountCount: number;
865
- } | (EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
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
- path: string;
872
- password?: string | undefined;
873
- })[] | undefined;
874
- prover?: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
864
+ } | undefined;
865
+ prover?: import("@aztec/foundation/eth-address").EthAddress | {
866
+ address: import("@aztec/foundation/eth-address").EthAddress;
875
867
  remoteSignerUrl: string;
876
- address: import("@aztec/foundation/schemas").EthAddress;
877
868
  certPath?: string | undefined;
878
869
  certPass?: string | undefined;
879
870
  } | {
880
871
  path: string;
881
872
  password?: string | undefined;
882
873
  } | {
883
- id: import("@aztec/foundation/schemas").EthAddress;
884
- publisher: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
874
+ id: import("@aztec/foundation/eth-address").EthAddress;
875
+ publisher: (import("@aztec/foundation/eth-address").EthAddress | {
876
+ address: import("@aztec/foundation/eth-address").EthAddress;
885
877
  remoteSignerUrl: string;
886
- address: import("@aztec/foundation/schemas").EthAddress;
887
878
  certPath?: string | undefined;
888
879
  certPass?: string | undefined;
889
880
  } | {
890
881
  path: string;
891
882
  password?: string | undefined;
892
- } | {
893
- mnemonic: string;
894
- addressIndex: number;
895
- accountIndex: number;
896
- addressCount: number;
897
- accountCount: number;
898
- } | (EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
883
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
884
+ address: import("@aztec/foundation/eth-address").EthAddress;
899
885
  remoteSignerUrl: string;
900
- address: import("@aztec/foundation/schemas").EthAddress;
901
886
  certPath?: string | undefined;
902
887
  certPass?: string | undefined;
903
888
  } | {
904
889
  path: string;
905
890
  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 | {
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/eth-address").EthAddress | {
900
+ address: import("@aztec/foundation/eth-address").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
- } | (string | {
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
- publisher?: string | {
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
- } | (string | {
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,1886 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
1027
1021
  accountIndex?: number | undefined;
1028
1022
  addressCount?: number | undefined;
1029
1023
  accountCount?: number | undefined;
1030
- } | (string | {
1024
+ } | undefined;
1025
+ remoteSigner?: string | {
1031
1026
  remoteSignerUrl: string;
1027
+ certPath?: string | undefined;
1028
+ certPass?: string | undefined;
1029
+ } | undefined;
1030
+ prover?: string | {
1032
1031
  address: string;
1032
+ remoteSignerUrl: string;
1033
1033
  certPath?: string | undefined;
1034
1034
  certPass?: string | undefined;
1035
1035
  } | {
1036
1036
  path: string;
1037
1037
  password?: string | undefined;
1038
- })[] | 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/eth-address").EthAddress | {
1077
+ address: import("@aztec/foundation/eth-address").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/eth-address").EthAddress | {
1086
+ address: import("@aztec/foundation/eth-address").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/eth-address").EthAddress | {
1099
+ address: import("@aztec/foundation/eth-address").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/eth-address").EthAddress | {
1114
+ address: import("@aztec/foundation/eth-address").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/eth-address").EthAddress | undefined;
1128
+ publisher?: (import("@aztec/foundation/eth-address").EthAddress | {
1129
+ address: import("@aztec/foundation/eth-address").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/eth-address").EthAddress | {
1137
+ address: import("@aztec/foundation/eth-address").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/eth-address").EthAddress | {
1158
+ address: import("@aztec/foundation/eth-address").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/eth-address").EthAddress | {
1168
+ address: import("@aztec/foundation/eth-address").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/eth-address").EthAddress | {
1176
+ address: import("@aztec/foundation/eth-address").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/eth-address").EthAddress | {
1196
+ address: import("@aztec/foundation/eth-address").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/eth-address").EthAddress;
1205
+ publisher: (import("@aztec/foundation/eth-address").EthAddress | {
1206
+ address: import("@aztec/foundation/eth-address").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/eth-address").EthAddress | {
1214
+ address: import("@aztec/foundation/eth-address").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/eth-address").EthAddress | {
1230
+ address: import("@aztec/foundation/eth-address").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
+ }>, z.ZodEffects<z.ZodEffects<z.ZodObject<{
1404
+ schemaVersion: z.ZodLiteral<2>;
1405
+ validators: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodArray<z.ZodObject<{
1406
+ attester: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
1407
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
1408
+ remoteSignerUrl: z.ZodString;
1409
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1410
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1411
+ }, "strict", z.ZodTypeAny, {
1412
+ address: import("@aztec/foundation/eth-address").EthAddress;
1413
+ remoteSignerUrl: string;
1414
+ certPath?: string | undefined;
1415
+ certPass?: string | undefined;
1416
+ }, {
1417
+ address: string;
1418
+ remoteSignerUrl: string;
1419
+ certPath?: string | undefined;
1420
+ certPass?: string | undefined;
1421
+ }>]>, z.ZodObject<{
1422
+ path: z.ZodString;
1423
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1424
+ }, "strict", z.ZodTypeAny, {
1425
+ path: string;
1426
+ password?: string | undefined;
1427
+ }, {
1428
+ path: string;
1429
+ password?: string | undefined;
1430
+ }>]>, z.ZodObject<{
1431
+ eth: z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
1432
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
1433
+ remoteSignerUrl: z.ZodString;
1434
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1435
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1436
+ }, "strict", z.ZodTypeAny, {
1437
+ address: import("@aztec/foundation/eth-address").EthAddress;
1438
+ remoteSignerUrl: string;
1439
+ certPath?: string | undefined;
1440
+ certPass?: string | undefined;
1441
+ }, {
1442
+ address: string;
1443
+ remoteSignerUrl: string;
1444
+ certPath?: string | undefined;
1445
+ certPass?: string | undefined;
1446
+ }>]>, z.ZodObject<{
1447
+ path: z.ZodString;
1448
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1449
+ }, "strict", z.ZodTypeAny, {
1450
+ path: string;
1451
+ password?: string | undefined;
1452
+ }, {
1453
+ path: string;
1454
+ password?: string | undefined;
1455
+ }>]>;
1456
+ bls: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, BLSPrivateKey, string>, z.ZodObject<{
1457
+ path: z.ZodString;
1458
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1459
+ }, "strict", z.ZodTypeAny, {
1460
+ path: string;
1461
+ password?: string | undefined;
1462
+ }, {
1463
+ path: string;
1464
+ password?: string | undefined;
1465
+ }>]>>;
1466
+ }, "strict", z.ZodTypeAny, {
1467
+ eth: import("@aztec/foundation/eth-address").EthAddress | {
1468
+ address: import("@aztec/foundation/eth-address").EthAddress;
1469
+ remoteSignerUrl: string;
1470
+ certPath?: string | undefined;
1471
+ certPass?: string | undefined;
1472
+ } | {
1473
+ path: string;
1474
+ password?: string | undefined;
1475
+ } | EthPrivateKey;
1476
+ bls?: {
1477
+ path: string;
1478
+ password?: string | undefined;
1479
+ } | BLSPrivateKey | undefined;
1480
+ }, {
1481
+ eth: string | {
1482
+ address: string;
1483
+ remoteSignerUrl: string;
1484
+ certPath?: string | undefined;
1485
+ certPass?: string | undefined;
1486
+ } | {
1487
+ path: string;
1488
+ password?: string | undefined;
1489
+ };
1490
+ bls?: string | {
1491
+ path: string;
1492
+ password?: string | undefined;
1493
+ } | undefined;
1494
+ }>]>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
1495
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
1496
+ remoteSignerUrl: z.ZodString;
1497
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1498
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1499
+ }, "strict", z.ZodTypeAny, {
1500
+ address: import("@aztec/foundation/eth-address").EthAddress;
1501
+ remoteSignerUrl: string;
1502
+ certPath?: string | undefined;
1503
+ certPass?: string | undefined;
1504
+ }, {
1505
+ address: string;
1506
+ remoteSignerUrl: string;
1507
+ certPath?: string | undefined;
1508
+ certPass?: string | undefined;
1509
+ }>]>, z.ZodObject<{
1510
+ path: z.ZodString;
1511
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1512
+ }, "strict", z.ZodTypeAny, {
1513
+ path: string;
1514
+ password?: string | undefined;
1515
+ }, {
1516
+ path: string;
1517
+ password?: string | undefined;
1518
+ }>]>, z.ZodObject<{
1519
+ eth: z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
1520
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
1521
+ remoteSignerUrl: z.ZodString;
1522
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1523
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1524
+ }, "strict", z.ZodTypeAny, {
1525
+ address: import("@aztec/foundation/eth-address").EthAddress;
1526
+ remoteSignerUrl: string;
1527
+ certPath?: string | undefined;
1528
+ certPass?: string | undefined;
1529
+ }, {
1530
+ address: string;
1531
+ remoteSignerUrl: string;
1532
+ certPath?: string | undefined;
1533
+ certPass?: string | undefined;
1534
+ }>]>, z.ZodObject<{
1535
+ path: z.ZodString;
1536
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1537
+ }, "strict", z.ZodTypeAny, {
1538
+ path: string;
1539
+ password?: string | undefined;
1540
+ }, {
1541
+ path: string;
1542
+ password?: string | undefined;
1543
+ }>]>;
1544
+ bls: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, BLSPrivateKey, string>, z.ZodObject<{
1545
+ path: z.ZodString;
1546
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1547
+ }, "strict", z.ZodTypeAny, {
1548
+ path: string;
1549
+ password?: string | undefined;
1550
+ }, {
1551
+ path: string;
1552
+ password?: string | undefined;
1553
+ }>]>>;
1554
+ }, "strict", z.ZodTypeAny, {
1555
+ eth: import("@aztec/foundation/eth-address").EthAddress | {
1556
+ address: import("@aztec/foundation/eth-address").EthAddress;
1557
+ remoteSignerUrl: string;
1558
+ certPath?: string | undefined;
1559
+ certPass?: string | undefined;
1560
+ } | {
1561
+ path: string;
1562
+ password?: string | undefined;
1563
+ } | EthPrivateKey;
1564
+ bls?: {
1565
+ path: string;
1566
+ password?: string | undefined;
1567
+ } | BLSPrivateKey | undefined;
1568
+ }, {
1569
+ eth: string | {
1570
+ address: string;
1571
+ remoteSignerUrl: string;
1572
+ certPath?: string | undefined;
1573
+ certPass?: string | undefined;
1574
+ } | {
1575
+ path: string;
1576
+ password?: string | undefined;
1577
+ };
1578
+ bls?: string | {
1579
+ path: string;
1580
+ password?: string | undefined;
1581
+ } | undefined;
1582
+ }>]>, "many">, z.ZodObject<{
1583
+ mnemonic: z.ZodString;
1584
+ addressIndex: z.ZodDefault<z.ZodNumber>;
1585
+ accountIndex: z.ZodDefault<z.ZodNumber>;
1586
+ addressCount: z.ZodDefault<z.ZodNumber>;
1587
+ accountCount: z.ZodDefault<z.ZodNumber>;
1588
+ }, "strict", z.ZodTypeAny, {
1589
+ mnemonic: string;
1590
+ addressIndex: number;
1591
+ accountIndex: number;
1592
+ addressCount: number;
1593
+ accountCount: number;
1594
+ }, {
1595
+ mnemonic: string;
1596
+ addressIndex?: number | undefined;
1597
+ accountIndex?: number | undefined;
1598
+ addressCount?: number | undefined;
1599
+ accountCount?: number | undefined;
1600
+ }>]>;
1601
+ coinbase: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>>;
1602
+ publisher: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
1603
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
1604
+ remoteSignerUrl: z.ZodString;
1605
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1606
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1607
+ }, "strict", z.ZodTypeAny, {
1608
+ address: import("@aztec/foundation/eth-address").EthAddress;
1609
+ remoteSignerUrl: string;
1610
+ certPath?: string | undefined;
1611
+ certPass?: string | undefined;
1612
+ }, {
1613
+ address: string;
1614
+ remoteSignerUrl: string;
1615
+ certPath?: string | undefined;
1616
+ certPass?: string | undefined;
1617
+ }>]>, z.ZodObject<{
1618
+ path: z.ZodString;
1619
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1620
+ }, "strict", z.ZodTypeAny, {
1621
+ path: string;
1622
+ password?: string | undefined;
1623
+ }, {
1624
+ path: string;
1625
+ password?: string | undefined;
1626
+ }>]>, z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
1627
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
1628
+ remoteSignerUrl: z.ZodString;
1629
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1630
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1631
+ }, "strict", z.ZodTypeAny, {
1632
+ address: import("@aztec/foundation/eth-address").EthAddress;
1633
+ remoteSignerUrl: string;
1634
+ certPath?: string | undefined;
1635
+ certPass?: string | undefined;
1636
+ }, {
1637
+ address: string;
1638
+ remoteSignerUrl: string;
1639
+ certPath?: string | undefined;
1640
+ certPass?: string | undefined;
1641
+ }>]>, z.ZodObject<{
1642
+ path: z.ZodString;
1643
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1644
+ }, "strict", z.ZodTypeAny, {
1645
+ path: string;
1646
+ password?: string | undefined;
1647
+ }, {
1648
+ path: string;
1649
+ password?: string | undefined;
1650
+ }>]>, "many">, z.ZodObject<{
1651
+ mnemonic: z.ZodString;
1652
+ addressIndex: z.ZodDefault<z.ZodNumber>;
1653
+ accountIndex: z.ZodDefault<z.ZodNumber>;
1654
+ addressCount: z.ZodDefault<z.ZodNumber>;
1655
+ accountCount: z.ZodDefault<z.ZodNumber>;
1656
+ }, "strict", z.ZodTypeAny, {
1657
+ mnemonic: string;
1658
+ addressIndex: number;
1659
+ accountIndex: number;
1660
+ addressCount: number;
1661
+ accountCount: number;
1662
+ }, {
1663
+ mnemonic: string;
1664
+ addressIndex?: number | undefined;
1665
+ accountIndex?: number | undefined;
1666
+ addressCount?: number | undefined;
1667
+ accountCount?: number | undefined;
1668
+ }>]>>;
1669
+ feeRecipient: import("@aztec/foundation/schemas").ZodNullableOptional<import("@aztec/foundation/schemas").ZodFor<AztecAddress>>;
1670
+ remoteSigner: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
1671
+ remoteSignerUrl: z.ZodString;
1672
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1673
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1674
+ }, "strict", z.ZodTypeAny, {
1675
+ remoteSignerUrl: string;
1676
+ certPath?: string | undefined;
1677
+ certPass?: string | undefined;
1678
+ }, {
1679
+ remoteSignerUrl: string;
1680
+ certPath?: string | undefined;
1681
+ certPass?: string | undefined;
1682
+ }>]>>;
1683
+ fundingAccount: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
1684
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
1685
+ remoteSignerUrl: z.ZodString;
1686
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1687
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1688
+ }, "strict", z.ZodTypeAny, {
1689
+ address: import("@aztec/foundation/eth-address").EthAddress;
1690
+ remoteSignerUrl: string;
1691
+ certPath?: string | undefined;
1692
+ certPass?: string | undefined;
1693
+ }, {
1694
+ address: string;
1695
+ remoteSignerUrl: string;
1696
+ certPath?: string | undefined;
1697
+ certPass?: string | undefined;
1698
+ }>]>, z.ZodObject<{
1699
+ path: z.ZodString;
1700
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1701
+ }, "strict", z.ZodTypeAny, {
1702
+ path: string;
1703
+ password?: string | undefined;
1704
+ }, {
1705
+ path: string;
1706
+ password?: string | undefined;
1707
+ }>]>>;
1708
+ }, "strict", z.ZodTypeAny, {
1709
+ attester: (import("@aztec/foundation/eth-address").EthAddress | {
1710
+ address: import("@aztec/foundation/eth-address").EthAddress;
1711
+ remoteSignerUrl: string;
1712
+ certPath?: string | undefined;
1713
+ certPass?: string | undefined;
1714
+ } | {
1715
+ path: string;
1716
+ password?: string | undefined;
1717
+ } | {
1718
+ eth: import("@aztec/foundation/eth-address").EthAddress | {
1719
+ address: import("@aztec/foundation/eth-address").EthAddress;
1720
+ remoteSignerUrl: string;
1721
+ certPath?: string | undefined;
1722
+ certPass?: string | undefined;
1723
+ } | {
1724
+ path: string;
1725
+ password?: string | undefined;
1726
+ } | EthPrivateKey;
1727
+ bls?: {
1728
+ path: string;
1729
+ password?: string | undefined;
1730
+ } | BLSPrivateKey | undefined;
1731
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
1732
+ address: import("@aztec/foundation/eth-address").EthAddress;
1733
+ remoteSignerUrl: string;
1734
+ certPath?: string | undefined;
1735
+ certPass?: string | undefined;
1736
+ } | {
1737
+ path: string;
1738
+ password?: string | undefined;
1739
+ } | {
1740
+ mnemonic: string;
1741
+ addressIndex: number;
1742
+ accountIndex: number;
1743
+ addressCount: number;
1744
+ accountCount: number;
1745
+ } | {
1746
+ eth: import("@aztec/foundation/eth-address").EthAddress | {
1747
+ address: import("@aztec/foundation/eth-address").EthAddress;
1748
+ remoteSignerUrl: string;
1749
+ certPath?: string | undefined;
1750
+ certPass?: string | undefined;
1751
+ } | {
1752
+ path: string;
1753
+ password?: string | undefined;
1754
+ } | EthPrivateKey;
1755
+ bls?: {
1756
+ path: string;
1757
+ password?: string | undefined;
1758
+ } | BLSPrivateKey | undefined;
1759
+ } | EthPrivateKey;
1760
+ coinbase?: import("@aztec/foundation/eth-address").EthAddress | undefined;
1761
+ publisher?: (import("@aztec/foundation/eth-address").EthAddress | {
1762
+ address: import("@aztec/foundation/eth-address").EthAddress;
1763
+ remoteSignerUrl: string;
1764
+ certPath?: string | undefined;
1765
+ certPass?: string | undefined;
1766
+ } | {
1767
+ path: string;
1768
+ password?: string | undefined;
1769
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
1770
+ address: import("@aztec/foundation/eth-address").EthAddress;
1771
+ remoteSignerUrl: string;
1772
+ certPath?: string | undefined;
1773
+ certPass?: string | undefined;
1774
+ } | {
1775
+ path: string;
1776
+ password?: string | undefined;
1777
+ } | {
1778
+ mnemonic: string;
1779
+ addressIndex: number;
1780
+ accountIndex: number;
1781
+ addressCount: number;
1782
+ accountCount: number;
1783
+ } | EthPrivateKey | undefined;
1784
+ feeRecipient?: AztecAddress | undefined;
1785
+ remoteSigner?: string | {
1786
+ remoteSignerUrl: string;
1787
+ certPath?: string | undefined;
1788
+ certPass?: string | undefined;
1789
+ } | undefined;
1790
+ fundingAccount?: import("@aztec/foundation/eth-address").EthAddress | {
1791
+ address: import("@aztec/foundation/eth-address").EthAddress;
1792
+ remoteSignerUrl: string;
1793
+ certPath?: string | undefined;
1794
+ certPass?: string | undefined;
1795
+ } | {
1796
+ path: string;
1797
+ password?: string | undefined;
1798
+ } | EthPrivateKey | undefined;
1799
+ }, {
1800
+ attester: string | (string | {
1801
+ address: string;
1802
+ remoteSignerUrl: string;
1803
+ certPath?: string | undefined;
1804
+ certPass?: string | undefined;
1805
+ } | {
1806
+ path: string;
1807
+ password?: string | undefined;
1808
+ } | {
1809
+ eth: string | {
1810
+ address: string;
1811
+ remoteSignerUrl: string;
1812
+ certPath?: string | undefined;
1813
+ certPass?: string | undefined;
1814
+ } | {
1815
+ path: string;
1816
+ password?: string | undefined;
1817
+ };
1818
+ bls?: string | {
1819
+ path: string;
1820
+ password?: string | undefined;
1821
+ } | undefined;
1822
+ })[] | {
1823
+ address: string;
1824
+ remoteSignerUrl: string;
1825
+ certPath?: string | undefined;
1826
+ certPass?: string | undefined;
1827
+ } | {
1828
+ path: string;
1829
+ password?: string | undefined;
1830
+ } | {
1831
+ mnemonic: string;
1832
+ addressIndex?: number | undefined;
1833
+ accountIndex?: number | undefined;
1834
+ addressCount?: number | undefined;
1835
+ accountCount?: number | undefined;
1836
+ } | {
1837
+ eth: string | {
1838
+ address: string;
1839
+ remoteSignerUrl: string;
1840
+ certPath?: string | undefined;
1841
+ certPass?: string | undefined;
1842
+ } | {
1843
+ path: string;
1844
+ password?: string | undefined;
1845
+ };
1846
+ bls?: string | {
1847
+ path: string;
1848
+ password?: string | undefined;
1849
+ } | undefined;
1850
+ };
1851
+ coinbase?: string | undefined;
1852
+ publisher?: string | (string | {
1853
+ address: string;
1854
+ remoteSignerUrl: string;
1855
+ certPath?: string | undefined;
1856
+ certPass?: string | undefined;
1857
+ } | {
1858
+ path: string;
1859
+ password?: string | undefined;
1860
+ })[] | {
1861
+ address: string;
1862
+ remoteSignerUrl: string;
1863
+ certPath?: string | undefined;
1864
+ certPass?: string | undefined;
1865
+ } | {
1866
+ path: string;
1867
+ password?: string | undefined;
1868
+ } | {
1869
+ mnemonic: string;
1870
+ addressIndex?: number | undefined;
1871
+ accountIndex?: number | undefined;
1872
+ addressCount?: number | undefined;
1873
+ accountCount?: number | undefined;
1874
+ } | undefined;
1875
+ feeRecipient?: any;
1876
+ remoteSigner?: string | {
1877
+ remoteSignerUrl: string;
1878
+ certPath?: string | undefined;
1879
+ certPass?: string | undefined;
1880
+ } | undefined;
1881
+ fundingAccount?: string | {
1882
+ address: string;
1883
+ remoteSignerUrl: string;
1884
+ certPath?: string | undefined;
1885
+ certPass?: string | undefined;
1886
+ } | {
1887
+ path: string;
1888
+ password?: string | undefined;
1889
+ } | undefined;
1890
+ }>, "many">>;
1891
+ slasher: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
1892
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
1893
+ remoteSignerUrl: z.ZodString;
1894
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1895
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1896
+ }, "strict", z.ZodTypeAny, {
1897
+ address: import("@aztec/foundation/eth-address").EthAddress;
1898
+ remoteSignerUrl: string;
1899
+ certPath?: string | undefined;
1900
+ certPass?: string | undefined;
1901
+ }, {
1902
+ address: string;
1903
+ remoteSignerUrl: string;
1904
+ certPath?: string | undefined;
1905
+ certPass?: string | undefined;
1906
+ }>]>, z.ZodObject<{
1907
+ path: z.ZodString;
1908
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1909
+ }, "strict", z.ZodTypeAny, {
1910
+ path: string;
1911
+ password?: string | undefined;
1912
+ }, {
1913
+ path: string;
1914
+ password?: string | undefined;
1915
+ }>]>, z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
1916
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
1917
+ remoteSignerUrl: z.ZodString;
1918
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1919
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1920
+ }, "strict", z.ZodTypeAny, {
1921
+ address: import("@aztec/foundation/eth-address").EthAddress;
1922
+ remoteSignerUrl: string;
1923
+ certPath?: string | undefined;
1924
+ certPass?: string | undefined;
1925
+ }, {
1926
+ address: string;
1927
+ remoteSignerUrl: string;
1928
+ certPath?: string | undefined;
1929
+ certPass?: string | undefined;
1930
+ }>]>, z.ZodObject<{
1931
+ path: z.ZodString;
1932
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1933
+ }, "strict", z.ZodTypeAny, {
1934
+ path: string;
1935
+ password?: string | undefined;
1936
+ }, {
1937
+ path: string;
1938
+ password?: string | undefined;
1939
+ }>]>, "many">, z.ZodObject<{
1940
+ mnemonic: z.ZodString;
1941
+ addressIndex: z.ZodDefault<z.ZodNumber>;
1942
+ accountIndex: z.ZodDefault<z.ZodNumber>;
1943
+ addressCount: z.ZodDefault<z.ZodNumber>;
1944
+ accountCount: z.ZodDefault<z.ZodNumber>;
1945
+ }, "strict", z.ZodTypeAny, {
1946
+ mnemonic: string;
1947
+ addressIndex: number;
1948
+ accountIndex: number;
1949
+ addressCount: number;
1950
+ accountCount: number;
1951
+ }, {
1952
+ mnemonic: string;
1953
+ addressIndex?: number | undefined;
1954
+ accountIndex?: number | undefined;
1955
+ addressCount?: number | undefined;
1956
+ accountCount?: number | undefined;
1957
+ }>]>>;
1958
+ remoteSigner: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
1959
+ remoteSignerUrl: z.ZodString;
1960
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1961
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1962
+ }, "strict", z.ZodTypeAny, {
1963
+ remoteSignerUrl: string;
1964
+ certPath?: string | undefined;
1965
+ certPass?: string | undefined;
1966
+ }, {
1967
+ remoteSignerUrl: string;
1968
+ certPath?: string | undefined;
1969
+ certPass?: string | undefined;
1970
+ }>]>>;
1971
+ prover: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
1972
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
1973
+ remoteSignerUrl: z.ZodString;
1974
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1975
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1976
+ }, "strict", z.ZodTypeAny, {
1977
+ address: import("@aztec/foundation/eth-address").EthAddress;
1978
+ remoteSignerUrl: string;
1979
+ certPath?: string | undefined;
1980
+ certPass?: string | undefined;
1981
+ }, {
1982
+ address: string;
1983
+ remoteSignerUrl: string;
1984
+ certPath?: string | undefined;
1985
+ certPass?: string | undefined;
1986
+ }>]>, z.ZodObject<{
1987
+ path: z.ZodString;
1988
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1989
+ }, "strict", z.ZodTypeAny, {
1990
+ path: string;
1991
+ password?: string | undefined;
1992
+ }, {
1993
+ path: string;
1994
+ password?: string | undefined;
1995
+ }>]>, z.ZodObject<{
1996
+ id: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
1997
+ publisher: z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
1998
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
1999
+ remoteSignerUrl: z.ZodString;
2000
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2001
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2002
+ }, "strict", z.ZodTypeAny, {
2003
+ address: import("@aztec/foundation/eth-address").EthAddress;
2004
+ remoteSignerUrl: string;
2005
+ certPath?: string | undefined;
2006
+ certPass?: string | undefined;
2007
+ }, {
2008
+ address: string;
2009
+ remoteSignerUrl: string;
2010
+ certPath?: string | undefined;
2011
+ certPass?: string | undefined;
2012
+ }>]>, z.ZodObject<{
2013
+ path: z.ZodString;
2014
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2015
+ }, "strict", z.ZodTypeAny, {
2016
+ path: string;
2017
+ password?: string | undefined;
2018
+ }, {
2019
+ path: string;
2020
+ password?: string | undefined;
2021
+ }>]>, z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
2022
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
2023
+ remoteSignerUrl: z.ZodString;
2024
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2025
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2026
+ }, "strict", z.ZodTypeAny, {
2027
+ address: import("@aztec/foundation/eth-address").EthAddress;
2028
+ remoteSignerUrl: string;
2029
+ certPath?: string | undefined;
2030
+ certPass?: string | undefined;
2031
+ }, {
2032
+ address: string;
2033
+ remoteSignerUrl: string;
2034
+ certPath?: string | undefined;
2035
+ certPass?: string | undefined;
2036
+ }>]>, z.ZodObject<{
2037
+ path: z.ZodString;
2038
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2039
+ }, "strict", z.ZodTypeAny, {
2040
+ path: string;
2041
+ password?: string | undefined;
2042
+ }, {
2043
+ path: string;
2044
+ password?: string | undefined;
2045
+ }>]>, "many">, z.ZodObject<{
2046
+ mnemonic: z.ZodString;
2047
+ addressIndex: z.ZodDefault<z.ZodNumber>;
2048
+ accountIndex: z.ZodDefault<z.ZodNumber>;
2049
+ addressCount: z.ZodDefault<z.ZodNumber>;
2050
+ accountCount: z.ZodDefault<z.ZodNumber>;
2051
+ }, "strict", z.ZodTypeAny, {
2052
+ mnemonic: string;
2053
+ addressIndex: number;
2054
+ accountIndex: number;
2055
+ addressCount: number;
2056
+ accountCount: number;
2057
+ }, {
2058
+ mnemonic: string;
2059
+ addressIndex?: number | undefined;
2060
+ accountIndex?: number | undefined;
2061
+ addressCount?: number | undefined;
2062
+ accountCount?: number | undefined;
2063
+ }>]>;
2064
+ }, "strict", z.ZodTypeAny, {
2065
+ id: import("@aztec/foundation/eth-address").EthAddress;
2066
+ publisher: (import("@aztec/foundation/eth-address").EthAddress | {
2067
+ address: import("@aztec/foundation/eth-address").EthAddress;
2068
+ remoteSignerUrl: string;
2069
+ certPath?: string | undefined;
2070
+ certPass?: string | undefined;
2071
+ } | {
2072
+ path: string;
2073
+ password?: string | undefined;
2074
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
2075
+ address: import("@aztec/foundation/eth-address").EthAddress;
2076
+ remoteSignerUrl: string;
2077
+ certPath?: string | undefined;
2078
+ certPass?: string | undefined;
2079
+ } | {
2080
+ path: string;
2081
+ password?: string | undefined;
2082
+ } | {
2083
+ mnemonic: string;
2084
+ addressIndex: number;
2085
+ accountIndex: number;
2086
+ addressCount: number;
2087
+ accountCount: number;
2088
+ } | EthPrivateKey;
2089
+ }, {
2090
+ id: string;
2091
+ publisher: string | (string | {
2092
+ address: string;
2093
+ remoteSignerUrl: string;
2094
+ certPath?: string | undefined;
2095
+ certPass?: string | undefined;
2096
+ } | {
2097
+ path: string;
2098
+ password?: string | undefined;
2099
+ })[] | {
2100
+ address: string;
2101
+ remoteSignerUrl: string;
2102
+ certPath?: string | undefined;
2103
+ certPass?: string | undefined;
2104
+ } | {
2105
+ path: string;
2106
+ password?: string | undefined;
2107
+ } | {
2108
+ mnemonic: string;
2109
+ addressIndex?: number | undefined;
2110
+ accountIndex?: number | undefined;
2111
+ addressCount?: number | undefined;
2112
+ accountCount?: number | undefined;
2113
+ };
2114
+ }>]>>;
2115
+ fundingAccount: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
2116
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
2117
+ remoteSignerUrl: z.ZodString;
2118
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2119
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2120
+ }, "strict", z.ZodTypeAny, {
2121
+ address: import("@aztec/foundation/eth-address").EthAddress;
2122
+ remoteSignerUrl: string;
2123
+ certPath?: string | undefined;
2124
+ certPass?: string | undefined;
2125
+ }, {
2126
+ address: string;
2127
+ remoteSignerUrl: string;
2128
+ certPath?: string | undefined;
2129
+ certPass?: string | undefined;
2130
+ }>]>, z.ZodObject<{
2131
+ path: z.ZodString;
2132
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2133
+ }, "strict", z.ZodTypeAny, {
2134
+ path: string;
2135
+ password?: string | undefined;
2136
+ }, {
2137
+ path: string;
2138
+ password?: string | undefined;
2139
+ }>]>>;
2140
+ publisher: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
2141
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
2142
+ remoteSignerUrl: z.ZodString;
2143
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2144
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2145
+ }, "strict", z.ZodTypeAny, {
2146
+ address: import("@aztec/foundation/eth-address").EthAddress;
2147
+ remoteSignerUrl: string;
2148
+ certPath?: string | undefined;
2149
+ certPass?: string | undefined;
2150
+ }, {
2151
+ address: string;
2152
+ remoteSignerUrl: string;
2153
+ certPath?: string | undefined;
2154
+ certPass?: string | undefined;
2155
+ }>]>, z.ZodObject<{
2156
+ path: z.ZodString;
2157
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2158
+ }, "strict", z.ZodTypeAny, {
2159
+ path: string;
2160
+ password?: string | undefined;
2161
+ }, {
2162
+ path: string;
2163
+ password?: string | undefined;
2164
+ }>]>, z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
2165
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
2166
+ remoteSignerUrl: z.ZodString;
2167
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2168
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2169
+ }, "strict", z.ZodTypeAny, {
2170
+ address: import("@aztec/foundation/eth-address").EthAddress;
2171
+ remoteSignerUrl: string;
2172
+ certPath?: string | undefined;
2173
+ certPass?: string | undefined;
2174
+ }, {
2175
+ address: string;
2176
+ remoteSignerUrl: string;
2177
+ certPath?: string | undefined;
2178
+ certPass?: string | undefined;
2179
+ }>]>, z.ZodObject<{
2180
+ path: z.ZodString;
2181
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2182
+ }, "strict", z.ZodTypeAny, {
2183
+ path: string;
2184
+ password?: string | undefined;
2185
+ }, {
2186
+ path: string;
2187
+ password?: string | undefined;
2188
+ }>]>, "many">, z.ZodObject<{
2189
+ mnemonic: z.ZodString;
2190
+ addressIndex: z.ZodDefault<z.ZodNumber>;
2191
+ accountIndex: z.ZodDefault<z.ZodNumber>;
2192
+ addressCount: z.ZodDefault<z.ZodNumber>;
2193
+ accountCount: z.ZodDefault<z.ZodNumber>;
2194
+ }, "strict", z.ZodTypeAny, {
2195
+ mnemonic: string;
2196
+ addressIndex: number;
2197
+ accountIndex: number;
2198
+ addressCount: number;
2199
+ accountCount: number;
2200
+ }, {
2201
+ mnemonic: string;
2202
+ addressIndex?: number | undefined;
2203
+ accountIndex?: number | undefined;
2204
+ addressCount?: number | undefined;
2205
+ accountCount?: number | undefined;
2206
+ }>]>>;
2207
+ coinbase: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>>;
2208
+ feeRecipient: import("@aztec/foundation/schemas").ZodNullableOptional<import("@aztec/foundation/schemas").ZodFor<AztecAddress>>;
2209
+ }, "strict", z.ZodTypeAny, {
2210
+ schemaVersion: 2;
2211
+ validators?: {
2212
+ attester: (import("@aztec/foundation/eth-address").EthAddress | {
2213
+ address: import("@aztec/foundation/eth-address").EthAddress;
2214
+ remoteSignerUrl: string;
2215
+ certPath?: string | undefined;
2216
+ certPass?: string | undefined;
2217
+ } | {
2218
+ path: string;
2219
+ password?: string | undefined;
2220
+ } | {
2221
+ eth: import("@aztec/foundation/eth-address").EthAddress | {
2222
+ address: import("@aztec/foundation/eth-address").EthAddress;
2223
+ remoteSignerUrl: string;
2224
+ certPath?: string | undefined;
2225
+ certPass?: string | undefined;
2226
+ } | {
2227
+ path: string;
2228
+ password?: string | undefined;
2229
+ } | EthPrivateKey;
2230
+ bls?: {
2231
+ path: string;
2232
+ password?: string | undefined;
2233
+ } | BLSPrivateKey | undefined;
2234
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
2235
+ address: import("@aztec/foundation/eth-address").EthAddress;
2236
+ remoteSignerUrl: string;
2237
+ certPath?: string | undefined;
2238
+ certPass?: string | undefined;
2239
+ } | {
2240
+ path: string;
2241
+ password?: string | undefined;
2242
+ } | {
2243
+ mnemonic: string;
2244
+ addressIndex: number;
2245
+ accountIndex: number;
2246
+ addressCount: number;
2247
+ accountCount: number;
2248
+ } | {
2249
+ eth: import("@aztec/foundation/eth-address").EthAddress | {
2250
+ address: import("@aztec/foundation/eth-address").EthAddress;
2251
+ remoteSignerUrl: string;
2252
+ certPath?: string | undefined;
2253
+ certPass?: string | undefined;
2254
+ } | {
2255
+ path: string;
2256
+ password?: string | undefined;
2257
+ } | EthPrivateKey;
2258
+ bls?: {
2259
+ path: string;
2260
+ password?: string | undefined;
2261
+ } | BLSPrivateKey | undefined;
2262
+ } | EthPrivateKey;
2263
+ coinbase?: import("@aztec/foundation/eth-address").EthAddress | undefined;
2264
+ publisher?: (import("@aztec/foundation/eth-address").EthAddress | {
2265
+ address: import("@aztec/foundation/eth-address").EthAddress;
2266
+ remoteSignerUrl: string;
2267
+ certPath?: string | undefined;
2268
+ certPass?: string | undefined;
2269
+ } | {
2270
+ path: string;
2271
+ password?: string | undefined;
2272
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
2273
+ address: import("@aztec/foundation/eth-address").EthAddress;
2274
+ remoteSignerUrl: string;
2275
+ certPath?: string | undefined;
2276
+ certPass?: string | undefined;
2277
+ } | {
2278
+ path: string;
2279
+ password?: string | undefined;
2280
+ } | {
2281
+ mnemonic: string;
2282
+ addressIndex: number;
2283
+ accountIndex: number;
2284
+ addressCount: number;
2285
+ accountCount: number;
2286
+ } | EthPrivateKey | undefined;
2287
+ feeRecipient?: AztecAddress | undefined;
2288
+ remoteSigner?: string | {
2289
+ remoteSignerUrl: string;
2290
+ certPath?: string | undefined;
2291
+ certPass?: string | undefined;
2292
+ } | undefined;
2293
+ fundingAccount?: import("@aztec/foundation/eth-address").EthAddress | {
2294
+ address: import("@aztec/foundation/eth-address").EthAddress;
2295
+ remoteSignerUrl: string;
2296
+ certPath?: string | undefined;
2297
+ certPass?: string | undefined;
2298
+ } | {
2299
+ path: string;
2300
+ password?: string | undefined;
2301
+ } | EthPrivateKey | undefined;
2302
+ }[] | undefined;
2303
+ slasher?: (import("@aztec/foundation/eth-address").EthAddress | {
2304
+ address: import("@aztec/foundation/eth-address").EthAddress;
2305
+ remoteSignerUrl: string;
2306
+ certPath?: string | undefined;
2307
+ certPass?: string | undefined;
2308
+ } | {
2309
+ path: string;
2310
+ password?: string | undefined;
2311
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
2312
+ address: import("@aztec/foundation/eth-address").EthAddress;
2313
+ remoteSignerUrl: string;
2314
+ certPath?: string | undefined;
2315
+ certPass?: string | undefined;
2316
+ } | {
2317
+ path: string;
2318
+ password?: string | undefined;
2319
+ } | {
2320
+ mnemonic: string;
2321
+ addressIndex: number;
2322
+ accountIndex: number;
2323
+ addressCount: number;
2324
+ accountCount: number;
2325
+ } | EthPrivateKey | undefined;
2326
+ remoteSigner?: string | {
2327
+ remoteSignerUrl: string;
2328
+ certPath?: string | undefined;
2329
+ certPass?: string | undefined;
2330
+ } | undefined;
2331
+ prover?: import("@aztec/foundation/eth-address").EthAddress | {
2332
+ address: import("@aztec/foundation/eth-address").EthAddress;
2333
+ remoteSignerUrl: string;
2334
+ certPath?: string | undefined;
2335
+ certPass?: string | undefined;
2336
+ } | {
2337
+ path: string;
2338
+ password?: string | undefined;
2339
+ } | {
2340
+ id: import("@aztec/foundation/eth-address").EthAddress;
2341
+ publisher: (import("@aztec/foundation/eth-address").EthAddress | {
2342
+ address: import("@aztec/foundation/eth-address").EthAddress;
2343
+ remoteSignerUrl: string;
2344
+ certPath?: string | undefined;
2345
+ certPass?: string | undefined;
2346
+ } | {
2347
+ path: string;
2348
+ password?: string | undefined;
2349
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
2350
+ address: import("@aztec/foundation/eth-address").EthAddress;
2351
+ remoteSignerUrl: string;
2352
+ certPath?: string | undefined;
2353
+ certPass?: string | undefined;
2354
+ } | {
2355
+ path: string;
2356
+ password?: string | undefined;
2357
+ } | {
2358
+ mnemonic: string;
2359
+ addressIndex: number;
2360
+ accountIndex: number;
2361
+ addressCount: number;
2362
+ accountCount: number;
2363
+ } | EthPrivateKey;
2364
+ } | EthPrivateKey | undefined;
2365
+ fundingAccount?: import("@aztec/foundation/eth-address").EthAddress | {
2366
+ address: import("@aztec/foundation/eth-address").EthAddress;
2367
+ remoteSignerUrl: string;
2368
+ certPath?: string | undefined;
2369
+ certPass?: string | undefined;
2370
+ } | {
2371
+ path: string;
2372
+ password?: string | undefined;
2373
+ } | EthPrivateKey | undefined;
2374
+ publisher?: (import("@aztec/foundation/eth-address").EthAddress | {
2375
+ address: import("@aztec/foundation/eth-address").EthAddress;
2376
+ remoteSignerUrl: string;
2377
+ certPath?: string | undefined;
2378
+ certPass?: string | undefined;
2379
+ } | {
2380
+ path: string;
2381
+ password?: string | undefined;
2382
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
2383
+ address: import("@aztec/foundation/eth-address").EthAddress;
2384
+ remoteSignerUrl: string;
2385
+ certPath?: string | undefined;
2386
+ certPass?: string | undefined;
2387
+ } | {
2388
+ path: string;
2389
+ password?: string | undefined;
2390
+ } | {
2391
+ mnemonic: string;
2392
+ addressIndex: number;
2393
+ accountIndex: number;
2394
+ addressCount: number;
2395
+ accountCount: number;
2396
+ } | EthPrivateKey | undefined;
2397
+ coinbase?: import("@aztec/foundation/eth-address").EthAddress | undefined;
2398
+ feeRecipient?: AztecAddress | undefined;
2399
+ }, {
2400
+ schemaVersion: 2;
2401
+ validators?: {
2402
+ attester: string | (string | {
2403
+ address: string;
2404
+ remoteSignerUrl: string;
2405
+ certPath?: string | undefined;
2406
+ certPass?: string | undefined;
2407
+ } | {
2408
+ path: string;
2409
+ password?: string | undefined;
2410
+ } | {
2411
+ eth: string | {
2412
+ address: string;
2413
+ remoteSignerUrl: string;
2414
+ certPath?: string | undefined;
2415
+ certPass?: string | undefined;
2416
+ } | {
2417
+ path: string;
2418
+ password?: string | undefined;
2419
+ };
2420
+ bls?: string | {
2421
+ path: string;
2422
+ password?: string | undefined;
2423
+ } | undefined;
2424
+ })[] | {
2425
+ address: string;
2426
+ remoteSignerUrl: string;
2427
+ certPath?: string | undefined;
2428
+ certPass?: string | undefined;
2429
+ } | {
2430
+ path: string;
2431
+ password?: string | undefined;
2432
+ } | {
2433
+ mnemonic: string;
2434
+ addressIndex?: number | undefined;
2435
+ accountIndex?: number | undefined;
2436
+ addressCount?: number | undefined;
2437
+ accountCount?: number | undefined;
2438
+ } | {
2439
+ eth: string | {
2440
+ address: string;
2441
+ remoteSignerUrl: string;
2442
+ certPath?: string | undefined;
2443
+ certPass?: string | undefined;
2444
+ } | {
2445
+ path: string;
2446
+ password?: string | undefined;
2447
+ };
2448
+ bls?: string | {
2449
+ path: string;
2450
+ password?: string | undefined;
2451
+ } | undefined;
2452
+ };
2453
+ coinbase?: string | undefined;
2454
+ publisher?: string | (string | {
2455
+ address: string;
2456
+ remoteSignerUrl: string;
2457
+ certPath?: string | undefined;
2458
+ certPass?: string | undefined;
2459
+ } | {
2460
+ path: string;
2461
+ password?: string | undefined;
2462
+ })[] | {
2463
+ address: string;
2464
+ remoteSignerUrl: string;
2465
+ certPath?: string | undefined;
2466
+ certPass?: string | undefined;
2467
+ } | {
2468
+ path: string;
2469
+ password?: string | undefined;
2470
+ } | {
2471
+ mnemonic: string;
2472
+ addressIndex?: number | undefined;
2473
+ accountIndex?: number | undefined;
2474
+ addressCount?: number | undefined;
2475
+ accountCount?: number | undefined;
2476
+ } | undefined;
2477
+ feeRecipient?: any;
2478
+ remoteSigner?: string | {
2479
+ remoteSignerUrl: string;
2480
+ certPath?: string | undefined;
2481
+ certPass?: string | undefined;
2482
+ } | undefined;
2483
+ fundingAccount?: string | {
2484
+ address: string;
2485
+ remoteSignerUrl: string;
2486
+ certPath?: string | undefined;
2487
+ certPass?: string | undefined;
2488
+ } | {
2489
+ path: string;
2490
+ password?: string | undefined;
2491
+ } | undefined;
2492
+ }[] | undefined;
2493
+ slasher?: string | (string | {
2494
+ address: string;
2495
+ remoteSignerUrl: string;
2496
+ certPath?: string | undefined;
2497
+ certPass?: string | undefined;
2498
+ } | {
2499
+ path: string;
2500
+ password?: string | undefined;
2501
+ })[] | {
2502
+ address: string;
2503
+ remoteSignerUrl: string;
2504
+ certPath?: string | undefined;
2505
+ certPass?: string | undefined;
2506
+ } | {
2507
+ path: string;
2508
+ password?: string | undefined;
2509
+ } | {
2510
+ mnemonic: string;
2511
+ addressIndex?: number | undefined;
2512
+ accountIndex?: number | undefined;
2513
+ addressCount?: number | undefined;
2514
+ accountCount?: number | undefined;
2515
+ } | undefined;
2516
+ remoteSigner?: string | {
2517
+ remoteSignerUrl: string;
2518
+ certPath?: string | undefined;
2519
+ certPass?: string | undefined;
2520
+ } | undefined;
1039
2521
  prover?: string | {
2522
+ address: string;
2523
+ remoteSignerUrl: string;
2524
+ certPath?: string | undefined;
2525
+ certPass?: string | undefined;
2526
+ } | {
2527
+ path: string;
2528
+ password?: string | undefined;
2529
+ } | {
2530
+ id: string;
2531
+ publisher: string | (string | {
2532
+ address: string;
2533
+ remoteSignerUrl: string;
2534
+ certPath?: string | undefined;
2535
+ certPass?: string | undefined;
2536
+ } | {
2537
+ path: string;
2538
+ password?: string | undefined;
2539
+ })[] | {
2540
+ address: string;
2541
+ remoteSignerUrl: string;
2542
+ certPath?: string | undefined;
2543
+ certPass?: string | undefined;
2544
+ } | {
2545
+ path: string;
2546
+ password?: string | undefined;
2547
+ } | {
2548
+ mnemonic: string;
2549
+ addressIndex?: number | undefined;
2550
+ accountIndex?: number | undefined;
2551
+ addressCount?: number | undefined;
2552
+ accountCount?: number | undefined;
2553
+ };
2554
+ } | undefined;
2555
+ fundingAccount?: string | {
2556
+ address: string;
2557
+ remoteSignerUrl: string;
2558
+ certPath?: string | undefined;
2559
+ certPass?: string | undefined;
2560
+ } | {
2561
+ path: string;
2562
+ password?: string | undefined;
2563
+ } | undefined;
2564
+ publisher?: string | (string | {
2565
+ address: string;
2566
+ remoteSignerUrl: string;
2567
+ certPath?: string | undefined;
2568
+ certPass?: string | undefined;
2569
+ } | {
2570
+ path: string;
2571
+ password?: string | undefined;
2572
+ })[] | {
2573
+ address: string;
2574
+ remoteSignerUrl: string;
2575
+ certPath?: string | undefined;
2576
+ certPass?: string | undefined;
2577
+ } | {
2578
+ path: string;
2579
+ password?: string | undefined;
2580
+ } | {
2581
+ mnemonic: string;
2582
+ addressIndex?: number | undefined;
2583
+ accountIndex?: number | undefined;
2584
+ addressCount?: number | undefined;
2585
+ accountCount?: number | undefined;
2586
+ } | undefined;
2587
+ coinbase?: string | undefined;
2588
+ feeRecipient?: any;
2589
+ }>, {
2590
+ schemaVersion: 2;
2591
+ validators?: {
2592
+ attester: (import("@aztec/foundation/eth-address").EthAddress | {
2593
+ address: import("@aztec/foundation/eth-address").EthAddress;
2594
+ remoteSignerUrl: string;
2595
+ certPath?: string | undefined;
2596
+ certPass?: string | undefined;
2597
+ } | {
2598
+ path: string;
2599
+ password?: string | undefined;
2600
+ } | {
2601
+ eth: import("@aztec/foundation/eth-address").EthAddress | {
2602
+ address: import("@aztec/foundation/eth-address").EthAddress;
2603
+ remoteSignerUrl: string;
2604
+ certPath?: string | undefined;
2605
+ certPass?: string | undefined;
2606
+ } | {
2607
+ path: string;
2608
+ password?: string | undefined;
2609
+ } | EthPrivateKey;
2610
+ bls?: {
2611
+ path: string;
2612
+ password?: string | undefined;
2613
+ } | BLSPrivateKey | undefined;
2614
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
2615
+ address: import("@aztec/foundation/eth-address").EthAddress;
2616
+ remoteSignerUrl: string;
2617
+ certPath?: string | undefined;
2618
+ certPass?: string | undefined;
2619
+ } | {
2620
+ path: string;
2621
+ password?: string | undefined;
2622
+ } | {
2623
+ mnemonic: string;
2624
+ addressIndex: number;
2625
+ accountIndex: number;
2626
+ addressCount: number;
2627
+ accountCount: number;
2628
+ } | {
2629
+ eth: import("@aztec/foundation/eth-address").EthAddress | {
2630
+ address: import("@aztec/foundation/eth-address").EthAddress;
2631
+ remoteSignerUrl: string;
2632
+ certPath?: string | undefined;
2633
+ certPass?: string | undefined;
2634
+ } | {
2635
+ path: string;
2636
+ password?: string | undefined;
2637
+ } | EthPrivateKey;
2638
+ bls?: {
2639
+ path: string;
2640
+ password?: string | undefined;
2641
+ } | BLSPrivateKey | undefined;
2642
+ } | EthPrivateKey;
2643
+ coinbase?: import("@aztec/foundation/eth-address").EthAddress | undefined;
2644
+ publisher?: (import("@aztec/foundation/eth-address").EthAddress | {
2645
+ address: import("@aztec/foundation/eth-address").EthAddress;
2646
+ remoteSignerUrl: string;
2647
+ certPath?: string | undefined;
2648
+ certPass?: string | undefined;
2649
+ } | {
2650
+ path: string;
2651
+ password?: string | undefined;
2652
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
2653
+ address: import("@aztec/foundation/eth-address").EthAddress;
2654
+ remoteSignerUrl: string;
2655
+ certPath?: string | undefined;
2656
+ certPass?: string | undefined;
2657
+ } | {
2658
+ path: string;
2659
+ password?: string | undefined;
2660
+ } | {
2661
+ mnemonic: string;
2662
+ addressIndex: number;
2663
+ accountIndex: number;
2664
+ addressCount: number;
2665
+ accountCount: number;
2666
+ } | EthPrivateKey | undefined;
2667
+ feeRecipient?: AztecAddress | undefined;
2668
+ remoteSigner?: string | {
2669
+ remoteSignerUrl: string;
2670
+ certPath?: string | undefined;
2671
+ certPass?: string | undefined;
2672
+ } | undefined;
2673
+ fundingAccount?: import("@aztec/foundation/eth-address").EthAddress | {
2674
+ address: import("@aztec/foundation/eth-address").EthAddress;
2675
+ remoteSignerUrl: string;
2676
+ certPath?: string | undefined;
2677
+ certPass?: string | undefined;
2678
+ } | {
2679
+ path: string;
2680
+ password?: string | undefined;
2681
+ } | EthPrivateKey | undefined;
2682
+ }[] | undefined;
2683
+ slasher?: (import("@aztec/foundation/eth-address").EthAddress | {
2684
+ address: import("@aztec/foundation/eth-address").EthAddress;
2685
+ remoteSignerUrl: string;
2686
+ certPath?: string | undefined;
2687
+ certPass?: string | undefined;
2688
+ } | {
2689
+ path: string;
2690
+ password?: string | undefined;
2691
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
2692
+ address: import("@aztec/foundation/eth-address").EthAddress;
2693
+ remoteSignerUrl: string;
2694
+ certPath?: string | undefined;
2695
+ certPass?: string | undefined;
2696
+ } | {
2697
+ path: string;
2698
+ password?: string | undefined;
2699
+ } | {
2700
+ mnemonic: string;
2701
+ addressIndex: number;
2702
+ accountIndex: number;
2703
+ addressCount: number;
2704
+ accountCount: number;
2705
+ } | EthPrivateKey | undefined;
2706
+ remoteSigner?: string | {
2707
+ remoteSignerUrl: string;
2708
+ certPath?: string | undefined;
2709
+ certPass?: string | undefined;
2710
+ } | undefined;
2711
+ prover?: import("@aztec/foundation/eth-address").EthAddress | {
2712
+ address: import("@aztec/foundation/eth-address").EthAddress;
2713
+ remoteSignerUrl: string;
2714
+ certPath?: string | undefined;
2715
+ certPass?: string | undefined;
2716
+ } | {
2717
+ path: string;
2718
+ password?: string | undefined;
2719
+ } | {
2720
+ id: import("@aztec/foundation/eth-address").EthAddress;
2721
+ publisher: (import("@aztec/foundation/eth-address").EthAddress | {
2722
+ address: import("@aztec/foundation/eth-address").EthAddress;
2723
+ remoteSignerUrl: string;
2724
+ certPath?: string | undefined;
2725
+ certPass?: string | undefined;
2726
+ } | {
2727
+ path: string;
2728
+ password?: string | undefined;
2729
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
2730
+ address: import("@aztec/foundation/eth-address").EthAddress;
2731
+ remoteSignerUrl: string;
2732
+ certPath?: string | undefined;
2733
+ certPass?: string | undefined;
2734
+ } | {
2735
+ path: string;
2736
+ password?: string | undefined;
2737
+ } | {
2738
+ mnemonic: string;
2739
+ addressIndex: number;
2740
+ accountIndex: number;
2741
+ addressCount: number;
2742
+ accountCount: number;
2743
+ } | EthPrivateKey;
2744
+ } | EthPrivateKey | undefined;
2745
+ fundingAccount?: import("@aztec/foundation/eth-address").EthAddress | {
2746
+ address: import("@aztec/foundation/eth-address").EthAddress;
2747
+ remoteSignerUrl: string;
2748
+ certPath?: string | undefined;
2749
+ certPass?: string | undefined;
2750
+ } | {
2751
+ path: string;
2752
+ password?: string | undefined;
2753
+ } | EthPrivateKey | undefined;
2754
+ publisher?: (import("@aztec/foundation/eth-address").EthAddress | {
2755
+ address: import("@aztec/foundation/eth-address").EthAddress;
2756
+ remoteSignerUrl: string;
2757
+ certPath?: string | undefined;
2758
+ certPass?: string | undefined;
2759
+ } | {
2760
+ path: string;
2761
+ password?: string | undefined;
2762
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
2763
+ address: import("@aztec/foundation/eth-address").EthAddress;
2764
+ remoteSignerUrl: string;
2765
+ certPath?: string | undefined;
2766
+ certPass?: string | undefined;
2767
+ } | {
2768
+ path: string;
2769
+ password?: string | undefined;
2770
+ } | {
2771
+ mnemonic: string;
2772
+ addressIndex: number;
2773
+ accountIndex: number;
2774
+ addressCount: number;
2775
+ accountCount: number;
2776
+ } | EthPrivateKey | undefined;
2777
+ coinbase?: import("@aztec/foundation/eth-address").EthAddress | undefined;
2778
+ feeRecipient?: AztecAddress | undefined;
2779
+ }, {
2780
+ schemaVersion: 2;
2781
+ validators?: {
2782
+ attester: string | (string | {
2783
+ address: string;
2784
+ remoteSignerUrl: string;
2785
+ certPath?: string | undefined;
2786
+ certPass?: string | undefined;
2787
+ } | {
2788
+ path: string;
2789
+ password?: string | undefined;
2790
+ } | {
2791
+ eth: string | {
2792
+ address: string;
2793
+ remoteSignerUrl: string;
2794
+ certPath?: string | undefined;
2795
+ certPass?: string | undefined;
2796
+ } | {
2797
+ path: string;
2798
+ password?: string | undefined;
2799
+ };
2800
+ bls?: string | {
2801
+ path: string;
2802
+ password?: string | undefined;
2803
+ } | undefined;
2804
+ })[] | {
2805
+ address: string;
2806
+ remoteSignerUrl: string;
2807
+ certPath?: string | undefined;
2808
+ certPass?: string | undefined;
2809
+ } | {
2810
+ path: string;
2811
+ password?: string | undefined;
2812
+ } | {
2813
+ mnemonic: string;
2814
+ addressIndex?: number | undefined;
2815
+ accountIndex?: number | undefined;
2816
+ addressCount?: number | undefined;
2817
+ accountCount?: number | undefined;
2818
+ } | {
2819
+ eth: string | {
2820
+ address: string;
2821
+ remoteSignerUrl: string;
2822
+ certPath?: string | undefined;
2823
+ certPass?: string | undefined;
2824
+ } | {
2825
+ path: string;
2826
+ password?: string | undefined;
2827
+ };
2828
+ bls?: string | {
2829
+ path: string;
2830
+ password?: string | undefined;
2831
+ } | undefined;
2832
+ };
2833
+ coinbase?: string | undefined;
2834
+ publisher?: string | (string | {
2835
+ address: string;
2836
+ remoteSignerUrl: string;
2837
+ certPath?: string | undefined;
2838
+ certPass?: string | undefined;
2839
+ } | {
2840
+ path: string;
2841
+ password?: string | undefined;
2842
+ })[] | {
2843
+ address: string;
2844
+ remoteSignerUrl: string;
2845
+ certPath?: string | undefined;
2846
+ certPass?: string | undefined;
2847
+ } | {
2848
+ path: string;
2849
+ password?: string | undefined;
2850
+ } | {
2851
+ mnemonic: string;
2852
+ addressIndex?: number | undefined;
2853
+ accountIndex?: number | undefined;
2854
+ addressCount?: number | undefined;
2855
+ accountCount?: number | undefined;
2856
+ } | undefined;
2857
+ feeRecipient?: any;
2858
+ remoteSigner?: string | {
2859
+ remoteSignerUrl: string;
2860
+ certPath?: string | undefined;
2861
+ certPass?: string | undefined;
2862
+ } | undefined;
2863
+ fundingAccount?: string | {
2864
+ address: string;
2865
+ remoteSignerUrl: string;
2866
+ certPath?: string | undefined;
2867
+ certPass?: string | undefined;
2868
+ } | {
2869
+ path: string;
2870
+ password?: string | undefined;
2871
+ } | undefined;
2872
+ }[] | undefined;
2873
+ slasher?: string | (string | {
2874
+ address: string;
2875
+ remoteSignerUrl: string;
2876
+ certPath?: string | undefined;
2877
+ certPass?: string | undefined;
2878
+ } | {
2879
+ path: string;
2880
+ password?: string | undefined;
2881
+ })[] | {
2882
+ address: string;
2883
+ remoteSignerUrl: string;
2884
+ certPath?: string | undefined;
2885
+ certPass?: string | undefined;
2886
+ } | {
2887
+ path: string;
2888
+ password?: string | undefined;
2889
+ } | {
2890
+ mnemonic: string;
2891
+ addressIndex?: number | undefined;
2892
+ accountIndex?: number | undefined;
2893
+ addressCount?: number | undefined;
2894
+ accountCount?: number | undefined;
2895
+ } | undefined;
2896
+ remoteSigner?: string | {
1040
2897
  remoteSignerUrl: string;
2898
+ certPath?: string | undefined;
2899
+ certPass?: string | undefined;
2900
+ } | undefined;
2901
+ prover?: string | {
1041
2902
  address: string;
2903
+ remoteSignerUrl: string;
1042
2904
  certPath?: string | undefined;
1043
2905
  certPass?: string | undefined;
1044
2906
  } | {
@@ -1046,9 +2908,17 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
1046
2908
  password?: string | undefined;
1047
2909
  } | {
1048
2910
  id: string;
1049
- publisher: string | {
2911
+ publisher: string | (string | {
2912
+ address: string;
1050
2913
  remoteSignerUrl: string;
2914
+ certPath?: string | undefined;
2915
+ certPass?: string | undefined;
2916
+ } | {
2917
+ path: string;
2918
+ password?: string | undefined;
2919
+ })[] | {
1051
2920
  address: string;
2921
+ remoteSignerUrl: string;
1052
2922
  certPath?: string | undefined;
1053
2923
  certPass?: string | undefined;
1054
2924
  } | {
@@ -1060,127 +2930,147 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
1060
2930
  accountIndex?: number | undefined;
1061
2931
  addressCount?: number | undefined;
1062
2932
  accountCount?: number | undefined;
1063
- } | (string | {
1064
- remoteSignerUrl: string;
1065
- address: string;
1066
- certPath?: string | undefined;
1067
- certPass?: string | undefined;
1068
- } | {
1069
- path: string;
1070
- password?: string | undefined;
1071
- })[];
2933
+ };
1072
2934
  } | undefined;
1073
- }>, {
1074
- schemaVersion: 1;
1075
- remoteSigner?: string | {
2935
+ fundingAccount?: string | {
2936
+ address: string;
1076
2937
  remoteSignerUrl: string;
1077
2938
  certPath?: string | undefined;
1078
2939
  certPass?: string | undefined;
2940
+ } | {
2941
+ path: string;
2942
+ password?: string | undefined;
1079
2943
  } | undefined;
1080
- fundingAccount?: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2944
+ publisher?: string | (string | {
2945
+ address: string;
2946
+ remoteSignerUrl: string;
2947
+ certPath?: string | undefined;
2948
+ certPass?: string | undefined;
2949
+ } | {
2950
+ path: string;
2951
+ password?: string | undefined;
2952
+ })[] | {
2953
+ address: string;
1081
2954
  remoteSignerUrl: string;
1082
- address: import("@aztec/foundation/schemas").EthAddress;
1083
2955
  certPath?: string | undefined;
1084
2956
  certPass?: string | undefined;
1085
2957
  } | {
1086
2958
  path: string;
1087
2959
  password?: string | undefined;
2960
+ } | {
2961
+ mnemonic: string;
2962
+ addressIndex?: number | undefined;
2963
+ accountIndex?: number | undefined;
2964
+ addressCount?: number | undefined;
2965
+ accountCount?: number | undefined;
1088
2966
  } | undefined;
2967
+ coinbase?: string | undefined;
2968
+ feeRecipient?: any;
2969
+ }>, {
2970
+ schemaVersion: 2;
1089
2971
  validators?: {
1090
- attester: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2972
+ attester: (import("@aztec/foundation/eth-address").EthAddress | {
2973
+ address: import("@aztec/foundation/eth-address").EthAddress;
1091
2974
  remoteSignerUrl: string;
1092
- address: import("@aztec/foundation/schemas").EthAddress;
1093
2975
  certPath?: string | undefined;
1094
2976
  certPass?: string | undefined;
1095
2977
  } | {
1096
2978
  path: string;
1097
2979
  password?: string | undefined;
1098
2980
  } | {
1099
- mnemonic: string;
1100
- addressIndex: number;
1101
- accountIndex: number;
1102
- addressCount: number;
1103
- accountCount: number;
1104
- } | {
1105
- eth: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2981
+ eth: import("@aztec/foundation/eth-address").EthAddress | {
2982
+ address: import("@aztec/foundation/eth-address").EthAddress;
1106
2983
  remoteSignerUrl: string;
1107
- address: import("@aztec/foundation/schemas").EthAddress;
1108
2984
  certPath?: string | undefined;
1109
2985
  certPass?: string | undefined;
1110
2986
  } | {
1111
2987
  path: string;
1112
2988
  password?: string | undefined;
1113
- };
1114
- bls?: BLSPrivateKey | {
2989
+ } | EthPrivateKey;
2990
+ bls?: {
1115
2991
  path: string;
1116
2992
  password?: string | undefined;
1117
- } | undefined;
1118
- } | (EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
2993
+ } | BLSPrivateKey | undefined;
2994
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
2995
+ address: import("@aztec/foundation/eth-address").EthAddress;
1119
2996
  remoteSignerUrl: string;
1120
- address: import("@aztec/foundation/schemas").EthAddress;
1121
2997
  certPath?: string | undefined;
1122
2998
  certPass?: string | undefined;
1123
2999
  } | {
1124
3000
  path: string;
1125
3001
  password?: string | undefined;
1126
3002
  } | {
1127
- eth: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
3003
+ mnemonic: string;
3004
+ addressIndex: number;
3005
+ accountIndex: number;
3006
+ addressCount: number;
3007
+ accountCount: number;
3008
+ } | {
3009
+ eth: import("@aztec/foundation/eth-address").EthAddress | {
3010
+ address: import("@aztec/foundation/eth-address").EthAddress;
1128
3011
  remoteSignerUrl: string;
1129
- address: import("@aztec/foundation/schemas").EthAddress;
1130
3012
  certPath?: string | undefined;
1131
3013
  certPass?: string | undefined;
1132
3014
  } | {
1133
3015
  path: string;
1134
3016
  password?: string | undefined;
1135
- };
1136
- bls?: BLSPrivateKey | {
3017
+ } | EthPrivateKey;
3018
+ bls?: {
1137
3019
  path: string;
1138
3020
  password?: string | undefined;
1139
- } | undefined;
1140
- })[];
1141
- feeRecipient: AztecAddress;
1142
- publisher?: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
3021
+ } | BLSPrivateKey | undefined;
3022
+ } | EthPrivateKey;
3023
+ coinbase?: import("@aztec/foundation/eth-address").EthAddress | undefined;
3024
+ publisher?: (import("@aztec/foundation/eth-address").EthAddress | {
3025
+ address: import("@aztec/foundation/eth-address").EthAddress;
1143
3026
  remoteSignerUrl: string;
1144
- address: import("@aztec/foundation/schemas").EthAddress;
1145
3027
  certPath?: string | undefined;
1146
3028
  certPass?: string | undefined;
1147
3029
  } | {
1148
3030
  path: string;
1149
3031
  password?: string | undefined;
1150
- } | {
1151
- mnemonic: string;
1152
- addressIndex: number;
1153
- accountIndex: number;
1154
- addressCount: number;
1155
- accountCount: number;
1156
- } | (EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
3032
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
3033
+ address: import("@aztec/foundation/eth-address").EthAddress;
1157
3034
  remoteSignerUrl: string;
1158
- address: import("@aztec/foundation/schemas").EthAddress;
1159
3035
  certPath?: string | undefined;
1160
3036
  certPass?: string | undefined;
1161
3037
  } | {
1162
3038
  path: string;
1163
3039
  password?: string | undefined;
1164
- })[] | undefined;
1165
- coinbase?: import("@aztec/foundation/schemas").EthAddress | undefined;
3040
+ } | {
3041
+ mnemonic: string;
3042
+ addressIndex: number;
3043
+ accountIndex: number;
3044
+ addressCount: number;
3045
+ accountCount: number;
3046
+ } | EthPrivateKey | undefined;
3047
+ feeRecipient?: AztecAddress | undefined;
1166
3048
  remoteSigner?: string | {
1167
3049
  remoteSignerUrl: string;
1168
3050
  certPath?: string | undefined;
1169
3051
  certPass?: string | undefined;
1170
3052
  } | undefined;
1171
- fundingAccount?: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
3053
+ fundingAccount?: import("@aztec/foundation/eth-address").EthAddress | {
3054
+ address: import("@aztec/foundation/eth-address").EthAddress;
1172
3055
  remoteSignerUrl: string;
1173
- address: import("@aztec/foundation/schemas").EthAddress;
1174
3056
  certPath?: string | undefined;
1175
3057
  certPass?: string | undefined;
1176
3058
  } | {
1177
3059
  path: string;
1178
3060
  password?: string | undefined;
1179
- } | undefined;
3061
+ } | EthPrivateKey | undefined;
1180
3062
  }[] | undefined;
1181
- slasher?: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
3063
+ slasher?: (import("@aztec/foundation/eth-address").EthAddress | {
3064
+ address: import("@aztec/foundation/eth-address").EthAddress;
3065
+ remoteSignerUrl: string;
3066
+ certPath?: string | undefined;
3067
+ certPass?: string | undefined;
3068
+ } | {
3069
+ path: string;
3070
+ password?: string | undefined;
3071
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
3072
+ address: import("@aztec/foundation/eth-address").EthAddress;
1182
3073
  remoteSignerUrl: string;
1183
- address: import("@aztec/foundation/schemas").EthAddress;
1184
3074
  certPath?: string | undefined;
1185
3075
  certPass?: string | undefined;
1186
3076
  } | {
@@ -1192,84 +3082,95 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
1192
3082
  accountIndex: number;
1193
3083
  addressCount: number;
1194
3084
  accountCount: number;
1195
- } | (EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
3085
+ } | EthPrivateKey | undefined;
3086
+ remoteSigner?: string | {
1196
3087
  remoteSignerUrl: string;
1197
- address: import("@aztec/foundation/schemas").EthAddress;
1198
3088
  certPath?: string | undefined;
1199
3089
  certPass?: string | undefined;
1200
- } | {
1201
- path: string;
1202
- password?: string | undefined;
1203
- })[] | undefined;
1204
- prover?: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
3090
+ } | undefined;
3091
+ prover?: import("@aztec/foundation/eth-address").EthAddress | {
3092
+ address: import("@aztec/foundation/eth-address").EthAddress;
1205
3093
  remoteSignerUrl: string;
1206
- address: import("@aztec/foundation/schemas").EthAddress;
1207
3094
  certPath?: string | undefined;
1208
3095
  certPass?: string | undefined;
1209
3096
  } | {
1210
3097
  path: string;
1211
3098
  password?: string | undefined;
1212
3099
  } | {
1213
- id: import("@aztec/foundation/schemas").EthAddress;
1214
- publisher: EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
3100
+ id: import("@aztec/foundation/eth-address").EthAddress;
3101
+ publisher: (import("@aztec/foundation/eth-address").EthAddress | {
3102
+ address: import("@aztec/foundation/eth-address").EthAddress;
1215
3103
  remoteSignerUrl: string;
1216
- address: import("@aztec/foundation/schemas").EthAddress;
1217
3104
  certPath?: string | undefined;
1218
3105
  certPass?: string | undefined;
1219
3106
  } | {
1220
3107
  path: string;
1221
3108
  password?: string | undefined;
1222
- } | {
1223
- mnemonic: string;
1224
- addressIndex: number;
1225
- accountIndex: number;
1226
- addressCount: number;
1227
- accountCount: number;
1228
- } | (EthPrivateKey | import("@aztec/foundation/schemas").EthAddress | {
3109
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
3110
+ address: import("@aztec/foundation/eth-address").EthAddress;
1229
3111
  remoteSignerUrl: string;
1230
- address: import("@aztec/foundation/schemas").EthAddress;
1231
3112
  certPath?: string | undefined;
1232
3113
  certPass?: string | undefined;
1233
3114
  } | {
1234
3115
  path: string;
1235
3116
  password?: string | undefined;
1236
- })[];
1237
- } | undefined;
1238
- }, {
1239
- schemaVersion: 1;
1240
- remoteSigner?: string | {
3117
+ } | {
3118
+ mnemonic: string;
3119
+ addressIndex: number;
3120
+ accountIndex: number;
3121
+ addressCount: number;
3122
+ accountCount: number;
3123
+ } | EthPrivateKey;
3124
+ } | EthPrivateKey | undefined;
3125
+ fundingAccount?: import("@aztec/foundation/eth-address").EthAddress | {
3126
+ address: import("@aztec/foundation/eth-address").EthAddress;
1241
3127
  remoteSignerUrl: string;
1242
3128
  certPath?: string | undefined;
1243
3129
  certPass?: string | undefined;
1244
- } | undefined;
1245
- fundingAccount?: string | {
3130
+ } | {
3131
+ path: string;
3132
+ password?: string | undefined;
3133
+ } | EthPrivateKey | undefined;
3134
+ publisher?: (import("@aztec/foundation/eth-address").EthAddress | {
3135
+ address: import("@aztec/foundation/eth-address").EthAddress;
1246
3136
  remoteSignerUrl: string;
1247
- address: string;
1248
3137
  certPath?: string | undefined;
1249
3138
  certPass?: string | undefined;
1250
3139
  } | {
1251
3140
  path: string;
1252
3141
  password?: string | undefined;
1253
- } | undefined;
3142
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
3143
+ address: import("@aztec/foundation/eth-address").EthAddress;
3144
+ remoteSignerUrl: string;
3145
+ certPath?: string | undefined;
3146
+ certPass?: string | undefined;
3147
+ } | {
3148
+ path: string;
3149
+ password?: string | undefined;
3150
+ } | {
3151
+ mnemonic: string;
3152
+ addressIndex: number;
3153
+ accountIndex: number;
3154
+ addressCount: number;
3155
+ accountCount: number;
3156
+ } | EthPrivateKey | undefined;
3157
+ coinbase?: import("@aztec/foundation/eth-address").EthAddress | undefined;
3158
+ feeRecipient?: AztecAddress | undefined;
3159
+ }, {
3160
+ schemaVersion: 2;
1254
3161
  validators?: {
1255
- attester: string | {
1256
- remoteSignerUrl: string;
3162
+ attester: string | (string | {
1257
3163
  address: string;
3164
+ remoteSignerUrl: string;
1258
3165
  certPath?: string | undefined;
1259
3166
  certPass?: string | undefined;
1260
3167
  } | {
1261
3168
  path: string;
1262
3169
  password?: string | undefined;
1263
- } | {
1264
- mnemonic: string;
1265
- addressIndex?: number | undefined;
1266
- accountIndex?: number | undefined;
1267
- addressCount?: number | undefined;
1268
- accountCount?: number | undefined;
1269
3170
  } | {
1270
3171
  eth: string | {
1271
- remoteSignerUrl: string;
1272
3172
  address: string;
3173
+ remoteSignerUrl: string;
1273
3174
  certPath?: string | undefined;
1274
3175
  certPass?: string | undefined;
1275
3176
  } | {
@@ -1280,18 +3181,24 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
1280
3181
  path: string;
1281
3182
  password?: string | undefined;
1282
3183
  } | undefined;
1283
- } | (string | {
1284
- remoteSignerUrl: string;
3184
+ })[] | {
1285
3185
  address: string;
3186
+ remoteSignerUrl: string;
1286
3187
  certPath?: string | undefined;
1287
3188
  certPass?: string | undefined;
1288
3189
  } | {
1289
3190
  path: string;
1290
3191
  password?: string | undefined;
3192
+ } | {
3193
+ mnemonic: string;
3194
+ addressIndex?: number | undefined;
3195
+ accountIndex?: number | undefined;
3196
+ addressCount?: number | undefined;
3197
+ accountCount?: number | undefined;
1291
3198
  } | {
1292
3199
  eth: string | {
1293
- remoteSignerUrl: string;
1294
3200
  address: string;
3201
+ remoteSignerUrl: string;
1295
3202
  certPath?: string | undefined;
1296
3203
  certPass?: string | undefined;
1297
3204
  } | {
@@ -1302,10 +3209,19 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
1302
3209
  path: string;
1303
3210
  password?: string | undefined;
1304
3211
  } | undefined;
1305
- })[];
1306
- publisher?: string | {
3212
+ };
3213
+ coinbase?: string | undefined;
3214
+ publisher?: string | (string | {
3215
+ address: string;
1307
3216
  remoteSignerUrl: string;
3217
+ certPath?: string | undefined;
3218
+ certPass?: string | undefined;
3219
+ } | {
3220
+ path: string;
3221
+ password?: string | undefined;
3222
+ })[] | {
1308
3223
  address: string;
3224
+ remoteSignerUrl: string;
1309
3225
  certPath?: string | undefined;
1310
3226
  certPass?: string | undefined;
1311
3227
  } | {
@@ -1317,16 +3233,7 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
1317
3233
  accountIndex?: number | undefined;
1318
3234
  addressCount?: number | undefined;
1319
3235
  accountCount?: number | undefined;
1320
- } | (string | {
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;
3236
+ } | undefined;
1330
3237
  feeRecipient?: any;
1331
3238
  remoteSigner?: string | {
1332
3239
  remoteSignerUrl: string;
@@ -1334,8 +3241,8 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
1334
3241
  certPass?: string | undefined;
1335
3242
  } | undefined;
1336
3243
  fundingAccount?: string | {
1337
- remoteSignerUrl: string;
1338
3244
  address: string;
3245
+ remoteSignerUrl: string;
1339
3246
  certPath?: string | undefined;
1340
3247
  certPass?: string | undefined;
1341
3248
  } | {
@@ -1343,9 +3250,17 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
1343
3250
  password?: string | undefined;
1344
3251
  } | undefined;
1345
3252
  }[] | undefined;
1346
- slasher?: string | {
3253
+ slasher?: string | (string | {
3254
+ address: string;
1347
3255
  remoteSignerUrl: string;
3256
+ certPath?: string | undefined;
3257
+ certPass?: string | undefined;
3258
+ } | {
3259
+ path: string;
3260
+ password?: string | undefined;
3261
+ })[] | {
1348
3262
  address: string;
3263
+ remoteSignerUrl: string;
1349
3264
  certPath?: string | undefined;
1350
3265
  certPass?: string | undefined;
1351
3266
  } | {
@@ -1357,18 +3272,15 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
1357
3272
  accountIndex?: number | undefined;
1358
3273
  addressCount?: number | undefined;
1359
3274
  accountCount?: number | undefined;
1360
- } | (string | {
3275
+ } | undefined;
3276
+ remoteSigner?: string | {
1361
3277
  remoteSignerUrl: string;
1362
- address: string;
1363
3278
  certPath?: string | undefined;
1364
3279
  certPass?: string | undefined;
1365
- } | {
1366
- path: string;
1367
- password?: string | undefined;
1368
- })[] | undefined;
3280
+ } | undefined;
1369
3281
  prover?: string | {
1370
- remoteSignerUrl: string;
1371
3282
  address: string;
3283
+ remoteSignerUrl: string;
1372
3284
  certPath?: string | undefined;
1373
3285
  certPass?: string | undefined;
1374
3286
  } | {
@@ -1376,9 +3288,17 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
1376
3288
  password?: string | undefined;
1377
3289
  } | {
1378
3290
  id: string;
1379
- publisher: string | {
3291
+ publisher: string | (string | {
3292
+ address: string;
1380
3293
  remoteSignerUrl: string;
3294
+ certPath?: string | undefined;
3295
+ certPass?: string | undefined;
3296
+ } | {
3297
+ path: string;
3298
+ password?: string | undefined;
3299
+ })[] | {
1381
3300
  address: string;
3301
+ remoteSignerUrl: string;
1382
3302
  certPath?: string | undefined;
1383
3303
  certPass?: string | undefined;
1384
3304
  } | {
@@ -1390,15 +3310,41 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
1390
3310
  accountIndex?: number | undefined;
1391
3311
  addressCount?: number | undefined;
1392
3312
  accountCount?: number | undefined;
1393
- } | (string | {
1394
- remoteSignerUrl: string;
1395
- address: string;
1396
- certPath?: string | undefined;
1397
- certPass?: string | undefined;
1398
- } | {
1399
- path: string;
1400
- password?: string | undefined;
1401
- })[];
3313
+ };
3314
+ } | undefined;
3315
+ fundingAccount?: string | {
3316
+ address: string;
3317
+ remoteSignerUrl: string;
3318
+ certPath?: string | undefined;
3319
+ certPass?: string | undefined;
3320
+ } | {
3321
+ path: string;
3322
+ password?: string | undefined;
3323
+ } | undefined;
3324
+ publisher?: string | (string | {
3325
+ address: string;
3326
+ remoteSignerUrl: string;
3327
+ certPath?: string | undefined;
3328
+ certPass?: string | undefined;
3329
+ } | {
3330
+ path: string;
3331
+ password?: string | undefined;
3332
+ })[] | {
3333
+ address: string;
3334
+ remoteSignerUrl: string;
3335
+ certPath?: string | undefined;
3336
+ certPass?: string | undefined;
3337
+ } | {
3338
+ path: string;
3339
+ password?: string | undefined;
3340
+ } | {
3341
+ mnemonic: string;
3342
+ addressIndex?: number | undefined;
3343
+ accountIndex?: number | undefined;
3344
+ addressCount?: number | undefined;
3345
+ accountCount?: number | undefined;
1402
3346
  } | undefined;
1403
- }>;
1404
- //# sourceMappingURL=schemas.d.ts.map
3347
+ coinbase?: string | undefined;
3348
+ feeRecipient?: any;
3349
+ }>]>;
3350
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2NoZW1hcy5kLnRzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vc3JjL3NjaGVtYXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBSUEsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLDZCQUE2QixDQUFDO0FBRTNELE9BQU8sRUFBRSxDQUFDLEVBQUUsTUFBTSxLQUFLLENBQUM7QUFFeEIsT0FBTyxLQUFLLEVBQUUsYUFBYSxFQUFFLGFBQWEsRUFBRSxNQUFNLFlBQVksQ0FBQztBQUcvRCxlQUFPLE1BQU0sbUJBQW1CLGtEQUdLLENBQUM7QUFDdEMsZUFBTyxNQUFNLG1CQUFtQixrREFHSyxDQUFDO0FBNEp0QyxlQUFPLE1BQU0sY0FBYzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztJQUFnRCxDQUFDIn0=