@aztec/node-keystore 4.0.0-nightly.20250907 → 4.0.0-nightly.20260107

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
@@ -1,80 +1,194 @@
1
+ import { AztecAddress } from '@aztec/stdlib/aztec-address';
1
2
  import { z } from 'zod';
2
- export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
3
+ import type { BLSPrivateKey, EthPrivateKey } from './types.js';
4
+ export declare const ethPrivateKeySchema: z.ZodEffects<z.ZodString, EthPrivateKey, string>;
5
+ export declare const blsPrivateKeySchema: z.ZodEffects<z.ZodString, BLSPrivateKey, string>;
6
+ export declare const keystoreSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
3
7
  schemaVersion: z.ZodLiteral<1>;
4
- validators: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
5
- attester: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
6
- address: z.ZodEffects<z.ZodString, string, string>;
7
- remoteSignerUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8
- certPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9
- certPass: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10
- }, "strip", z.ZodTypeAny, {
11
- address: string;
12
- remoteSignerUrl?: string | null | undefined;
13
- certPath?: string | null | undefined;
14
- certPass?: string | null | undefined;
8
+ validators: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodArray<z.ZodObject<{
9
+ attester: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
10
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
11
+ remoteSignerUrl: z.ZodString;
12
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
13
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
14
+ }, "strict", z.ZodTypeAny, {
15
+ address: import("@aztec/foundation/schemas").EthAddress;
16
+ remoteSignerUrl: string;
17
+ certPath?: string | undefined;
18
+ certPass?: string | undefined;
15
19
  }, {
16
20
  address: string;
17
- remoteSignerUrl?: string | null | undefined;
18
- certPath?: string | null | undefined;
19
- certPass?: string | null | undefined;
21
+ remoteSignerUrl: string;
22
+ certPath?: string | undefined;
23
+ certPass?: string | undefined;
20
24
  }>]>, z.ZodObject<{
21
25
  path: z.ZodString;
22
- password: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23
- }, "strip", z.ZodTypeAny, {
26
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
27
+ }, "strict", z.ZodTypeAny, {
24
28
  path: string;
25
- password?: string | null | undefined;
29
+ password?: string | undefined;
26
30
  }, {
27
31
  path: string;
28
- password?: string | null | undefined;
29
- }>, z.ZodObject<{
30
- mnemonic: z.ZodString;
31
- addressIndex: z.ZodDefault<z.ZodNumber>;
32
- accountIndex: z.ZodDefault<z.ZodNumber>;
33
- addressCount: z.ZodDefault<z.ZodNumber>;
34
- accountCount: z.ZodDefault<z.ZodNumber>;
35
- }, "strip", z.ZodTypeAny, {
36
- mnemonic: string;
37
- addressIndex: number;
38
- accountIndex: number;
39
- addressCount: number;
40
- accountCount: number;
32
+ password?: string | undefined;
33
+ }>]>, z.ZodObject<{
34
+ eth: z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
35
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
36
+ remoteSignerUrl: z.ZodString;
37
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
38
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
39
+ }, "strict", z.ZodTypeAny, {
40
+ address: import("@aztec/foundation/schemas").EthAddress;
41
+ remoteSignerUrl: string;
42
+ certPath?: string | undefined;
43
+ certPass?: string | undefined;
44
+ }, {
45
+ address: string;
46
+ remoteSignerUrl: string;
47
+ certPath?: string | undefined;
48
+ certPass?: string | undefined;
49
+ }>]>, z.ZodObject<{
50
+ path: z.ZodString;
51
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
52
+ }, "strict", z.ZodTypeAny, {
53
+ path: string;
54
+ password?: string | undefined;
55
+ }, {
56
+ path: string;
57
+ password?: string | undefined;
58
+ }>]>;
59
+ bls: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, BLSPrivateKey, string>, z.ZodObject<{
60
+ path: z.ZodString;
61
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
62
+ }, "strict", z.ZodTypeAny, {
63
+ path: string;
64
+ password?: string | undefined;
65
+ }, {
66
+ path: string;
67
+ password?: string | undefined;
68
+ }>]>>;
69
+ }, "strict", z.ZodTypeAny, {
70
+ eth: import("@aztec/foundation/schemas").EthAddress | {
71
+ address: import("@aztec/foundation/schemas").EthAddress;
72
+ remoteSignerUrl: string;
73
+ certPath?: string | undefined;
74
+ certPass?: string | undefined;
75
+ } | {
76
+ path: string;
77
+ password?: string | undefined;
78
+ } | EthPrivateKey;
79
+ bls?: {
80
+ path: string;
81
+ password?: string | undefined;
82
+ } | BLSPrivateKey | undefined;
41
83
  }, {
42
- mnemonic: string;
43
- addressIndex?: number | undefined;
44
- accountIndex?: number | undefined;
45
- addressCount?: number | undefined;
46
- accountCount?: number | undefined;
47
- }>]>, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
48
- address: z.ZodEffects<z.ZodString, string, string>;
49
- remoteSignerUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
50
- certPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
51
- certPass: z.ZodOptional<z.ZodNullable<z.ZodString>>;
52
- }, "strip", z.ZodTypeAny, {
53
- address: string;
54
- remoteSignerUrl?: string | null | undefined;
55
- certPath?: string | null | undefined;
56
- certPass?: string | null | undefined;
84
+ eth: string | {
85
+ address: string;
86
+ remoteSignerUrl: string;
87
+ certPath?: string | undefined;
88
+ certPass?: string | undefined;
89
+ } | {
90
+ path: string;
91
+ password?: string | undefined;
92
+ };
93
+ bls?: string | {
94
+ path: string;
95
+ password?: string | undefined;
96
+ } | undefined;
97
+ }>]>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
98
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
99
+ remoteSignerUrl: z.ZodString;
100
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
101
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
102
+ }, "strict", z.ZodTypeAny, {
103
+ address: import("@aztec/foundation/schemas").EthAddress;
104
+ remoteSignerUrl: string;
105
+ certPath?: string | undefined;
106
+ certPass?: string | undefined;
57
107
  }, {
58
108
  address: string;
59
- remoteSignerUrl?: string | null | undefined;
60
- certPath?: string | null | undefined;
61
- certPass?: string | null | undefined;
109
+ remoteSignerUrl: string;
110
+ certPath?: string | undefined;
111
+ certPass?: string | undefined;
62
112
  }>]>, z.ZodObject<{
63
113
  path: z.ZodString;
64
- password: z.ZodOptional<z.ZodNullable<z.ZodString>>;
65
- }, "strip", z.ZodTypeAny, {
114
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
115
+ }, "strict", z.ZodTypeAny, {
66
116
  path: string;
67
- password?: string | null | undefined;
117
+ password?: string | undefined;
68
118
  }, {
69
119
  path: string;
70
- password?: string | null | undefined;
71
- }>, z.ZodObject<{
120
+ password?: string | undefined;
121
+ }>]>, z.ZodObject<{
122
+ eth: z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
123
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
124
+ remoteSignerUrl: z.ZodString;
125
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
126
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
127
+ }, "strict", z.ZodTypeAny, {
128
+ address: import("@aztec/foundation/schemas").EthAddress;
129
+ remoteSignerUrl: string;
130
+ certPath?: string | undefined;
131
+ certPass?: string | undefined;
132
+ }, {
133
+ address: string;
134
+ remoteSignerUrl: string;
135
+ certPath?: string | undefined;
136
+ certPass?: string | undefined;
137
+ }>]>, z.ZodObject<{
138
+ path: z.ZodString;
139
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
140
+ }, "strict", z.ZodTypeAny, {
141
+ path: string;
142
+ password?: string | undefined;
143
+ }, {
144
+ path: string;
145
+ password?: string | undefined;
146
+ }>]>;
147
+ bls: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, BLSPrivateKey, string>, z.ZodObject<{
148
+ path: z.ZodString;
149
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
150
+ }, "strict", z.ZodTypeAny, {
151
+ path: string;
152
+ password?: string | undefined;
153
+ }, {
154
+ path: string;
155
+ password?: string | undefined;
156
+ }>]>>;
157
+ }, "strict", z.ZodTypeAny, {
158
+ eth: import("@aztec/foundation/schemas").EthAddress | {
159
+ address: import("@aztec/foundation/schemas").EthAddress;
160
+ remoteSignerUrl: string;
161
+ certPath?: string | undefined;
162
+ certPass?: string | undefined;
163
+ } | {
164
+ path: string;
165
+ password?: string | undefined;
166
+ } | EthPrivateKey;
167
+ bls?: {
168
+ path: string;
169
+ password?: string | undefined;
170
+ } | BLSPrivateKey | undefined;
171
+ }, {
172
+ eth: string | {
173
+ address: string;
174
+ remoteSignerUrl: string;
175
+ certPath?: string | undefined;
176
+ certPass?: string | undefined;
177
+ } | {
178
+ path: string;
179
+ password?: string | undefined;
180
+ };
181
+ bls?: string | {
182
+ path: string;
183
+ password?: string | undefined;
184
+ } | undefined;
185
+ }>]>, "many">, z.ZodObject<{
72
186
  mnemonic: z.ZodString;
73
187
  addressIndex: z.ZodDefault<z.ZodNumber>;
74
188
  accountIndex: z.ZodDefault<z.ZodNumber>;
75
189
  addressCount: z.ZodDefault<z.ZodNumber>;
76
190
  accountCount: z.ZodDefault<z.ZodNumber>;
77
- }, "strip", z.ZodTypeAny, {
191
+ }, "strict", z.ZodTypeAny, {
78
192
  mnemonic: string;
79
193
  addressIndex: number;
80
194
  accountIndex: number;
@@ -86,81 +200,63 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
86
200
  accountIndex?: number | undefined;
87
201
  addressCount?: number | undefined;
88
202
  accountCount?: number | undefined;
89
- }>]>, "many">]>;
90
- coinbase: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>>;
91
- publisher: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
92
- address: z.ZodEffects<z.ZodString, string, string>;
93
- remoteSignerUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
94
- certPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
95
- certPass: z.ZodOptional<z.ZodNullable<z.ZodString>>;
96
- }, "strip", z.ZodTypeAny, {
97
- address: string;
98
- remoteSignerUrl?: string | null | undefined;
99
- certPath?: string | null | undefined;
100
- certPass?: string | null | undefined;
203
+ }>]>;
204
+ coinbase: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>>;
205
+ publisher: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
206
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
207
+ remoteSignerUrl: z.ZodString;
208
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
209
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
210
+ }, "strict", z.ZodTypeAny, {
211
+ address: import("@aztec/foundation/schemas").EthAddress;
212
+ remoteSignerUrl: string;
213
+ certPath?: string | undefined;
214
+ certPass?: string | undefined;
101
215
  }, {
102
216
  address: string;
103
- remoteSignerUrl?: string | null | undefined;
104
- certPath?: string | null | undefined;
105
- certPass?: string | null | undefined;
217
+ remoteSignerUrl: string;
218
+ certPath?: string | undefined;
219
+ certPass?: string | undefined;
106
220
  }>]>, z.ZodObject<{
107
221
  path: z.ZodString;
108
- password: z.ZodOptional<z.ZodNullable<z.ZodString>>;
109
- }, "strip", z.ZodTypeAny, {
222
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
223
+ }, "strict", z.ZodTypeAny, {
110
224
  path: string;
111
- password?: string | null | undefined;
225
+ password?: string | undefined;
112
226
  }, {
113
227
  path: string;
114
- password?: string | null | undefined;
115
- }>, z.ZodObject<{
116
- mnemonic: z.ZodString;
117
- addressIndex: z.ZodDefault<z.ZodNumber>;
118
- accountIndex: z.ZodDefault<z.ZodNumber>;
119
- addressCount: z.ZodDefault<z.ZodNumber>;
120
- accountCount: z.ZodDefault<z.ZodNumber>;
121
- }, "strip", z.ZodTypeAny, {
122
- mnemonic: string;
123
- addressIndex: number;
124
- accountIndex: number;
125
- addressCount: number;
126
- accountCount: number;
127
- }, {
128
- mnemonic: string;
129
- addressIndex?: number | undefined;
130
- accountIndex?: number | undefined;
131
- addressCount?: number | undefined;
132
- accountCount?: number | undefined;
133
- }>]>, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
134
- address: z.ZodEffects<z.ZodString, string, string>;
135
- remoteSignerUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
136
- certPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
137
- certPass: z.ZodOptional<z.ZodNullable<z.ZodString>>;
138
- }, "strip", z.ZodTypeAny, {
139
- address: string;
140
- remoteSignerUrl?: string | null | undefined;
141
- certPath?: string | null | undefined;
142
- certPass?: string | null | undefined;
228
+ password?: string | undefined;
229
+ }>]>, z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
230
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
231
+ remoteSignerUrl: z.ZodString;
232
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
233
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
234
+ }, "strict", z.ZodTypeAny, {
235
+ address: import("@aztec/foundation/schemas").EthAddress;
236
+ remoteSignerUrl: string;
237
+ certPath?: string | undefined;
238
+ certPass?: string | undefined;
143
239
  }, {
144
240
  address: string;
145
- remoteSignerUrl?: string | null | undefined;
146
- certPath?: string | null | undefined;
147
- certPass?: string | null | undefined;
241
+ remoteSignerUrl: string;
242
+ certPath?: string | undefined;
243
+ certPass?: string | undefined;
148
244
  }>]>, z.ZodObject<{
149
245
  path: z.ZodString;
150
- password: z.ZodOptional<z.ZodNullable<z.ZodString>>;
151
- }, "strip", z.ZodTypeAny, {
246
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
247
+ }, "strict", z.ZodTypeAny, {
152
248
  path: string;
153
- password?: string | null | undefined;
249
+ password?: string | undefined;
154
250
  }, {
155
251
  path: string;
156
- password?: string | null | undefined;
157
- }>, z.ZodObject<{
252
+ password?: string | undefined;
253
+ }>]>, "many">, z.ZodObject<{
158
254
  mnemonic: z.ZodString;
159
255
  addressIndex: z.ZodDefault<z.ZodNumber>;
160
256
  accountIndex: z.ZodDefault<z.ZodNumber>;
161
257
  addressCount: z.ZodDefault<z.ZodNumber>;
162
258
  accountCount: z.ZodDefault<z.ZodNumber>;
163
- }, "strip", z.ZodTypeAny, {
259
+ }, "strict", z.ZodTypeAny, {
164
260
  mnemonic: string;
165
261
  addressIndex: number;
166
262
  accountIndex: number;
@@ -172,300 +268,284 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
172
268
  accountIndex?: number | undefined;
173
269
  addressCount?: number | undefined;
174
270
  accountCount?: number | undefined;
175
- }>]>, "many">]>>>;
176
- feeRecipient: z.ZodEffects<z.ZodString, string, string>;
177
- remoteSigner: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodObject<{
271
+ }>]>>;
272
+ feeRecipient: import("@aztec/foundation/schemas").ZodFor<AztecAddress>;
273
+ remoteSigner: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
178
274
  remoteSignerUrl: z.ZodString;
179
- certPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
180
- certPass: z.ZodOptional<z.ZodNullable<z.ZodString>>;
181
- }, "strip", z.ZodTypeAny, {
275
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
276
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
277
+ }, "strict", z.ZodTypeAny, {
182
278
  remoteSignerUrl: string;
183
- certPath?: string | null | undefined;
184
- certPass?: string | null | undefined;
279
+ certPath?: string | undefined;
280
+ certPass?: string | undefined;
185
281
  }, {
186
282
  remoteSignerUrl: string;
187
- certPath?: string | null | undefined;
188
- certPass?: string | null | undefined;
189
- }>]>>>;
190
- fundingAccount: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
191
- address: z.ZodEffects<z.ZodString, string, string>;
192
- remoteSignerUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
193
- certPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
194
- certPass: z.ZodOptional<z.ZodNullable<z.ZodString>>;
195
- }, "strip", z.ZodTypeAny, {
196
- address: string;
197
- remoteSignerUrl?: string | null | undefined;
198
- certPath?: string | null | undefined;
199
- certPass?: string | null | undefined;
283
+ certPath?: string | undefined;
284
+ certPass?: string | undefined;
285
+ }>]>>;
286
+ fundingAccount: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
287
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
288
+ remoteSignerUrl: z.ZodString;
289
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
290
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
291
+ }, "strict", z.ZodTypeAny, {
292
+ address: import("@aztec/foundation/schemas").EthAddress;
293
+ remoteSignerUrl: string;
294
+ certPath?: string | undefined;
295
+ certPass?: string | undefined;
200
296
  }, {
201
297
  address: string;
202
- remoteSignerUrl?: string | null | undefined;
203
- certPath?: string | null | undefined;
204
- certPass?: string | null | undefined;
298
+ remoteSignerUrl: string;
299
+ certPath?: string | undefined;
300
+ certPass?: string | undefined;
205
301
  }>]>, z.ZodObject<{
206
302
  path: z.ZodString;
207
- password: z.ZodOptional<z.ZodNullable<z.ZodString>>;
208
- }, "strip", z.ZodTypeAny, {
303
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
304
+ }, "strict", z.ZodTypeAny, {
209
305
  path: string;
210
- password?: string | null | undefined;
306
+ password?: string | undefined;
211
307
  }, {
212
308
  path: string;
213
- password?: string | null | undefined;
214
- }>, z.ZodObject<{
215
- mnemonic: z.ZodString;
216
- addressIndex: z.ZodDefault<z.ZodNumber>;
217
- accountIndex: z.ZodDefault<z.ZodNumber>;
218
- addressCount: z.ZodDefault<z.ZodNumber>;
219
- accountCount: z.ZodDefault<z.ZodNumber>;
220
- }, "strip", z.ZodTypeAny, {
221
- mnemonic: string;
222
- addressIndex: number;
223
- accountIndex: number;
224
- addressCount: number;
225
- accountCount: number;
226
- }, {
227
- mnemonic: string;
228
- addressIndex?: number | undefined;
229
- accountIndex?: number | undefined;
230
- addressCount?: number | undefined;
231
- accountCount?: number | undefined;
232
- }>]>>>;
233
- }, "strip", z.ZodTypeAny, {
234
- attester: string | {
235
- address: string;
236
- remoteSignerUrl?: string | null | undefined;
237
- certPath?: string | null | undefined;
238
- certPass?: string | null | undefined;
309
+ password?: string | undefined;
310
+ }>]>>;
311
+ }, "strict", z.ZodTypeAny, {
312
+ attester: (import("@aztec/foundation/schemas").EthAddress | {
313
+ address: import("@aztec/foundation/schemas").EthAddress;
314
+ remoteSignerUrl: string;
315
+ certPath?: string | undefined;
316
+ certPass?: string | undefined;
239
317
  } | {
240
318
  path: string;
241
- password?: string | null | undefined;
242
- } | {
243
- mnemonic: string;
244
- addressIndex: number;
245
- accountIndex: number;
246
- addressCount: number;
247
- accountCount: number;
248
- } | (string | {
249
- address: string;
250
- remoteSignerUrl?: string | null | undefined;
251
- certPath?: string | null | undefined;
252
- certPass?: string | null | undefined;
319
+ password?: string | undefined;
320
+ } | {
321
+ eth: import("@aztec/foundation/schemas").EthAddress | {
322
+ address: import("@aztec/foundation/schemas").EthAddress;
323
+ remoteSignerUrl: string;
324
+ certPath?: string | undefined;
325
+ certPass?: string | undefined;
326
+ } | {
327
+ path: string;
328
+ password?: string | undefined;
329
+ } | EthPrivateKey;
330
+ bls?: {
331
+ path: string;
332
+ password?: string | undefined;
333
+ } | BLSPrivateKey | undefined;
334
+ } | EthPrivateKey)[] | import("@aztec/foundation/schemas").EthAddress | {
335
+ address: import("@aztec/foundation/schemas").EthAddress;
336
+ remoteSignerUrl: string;
337
+ certPath?: string | undefined;
338
+ certPass?: string | undefined;
253
339
  } | {
254
340
  path: string;
255
- password?: string | null | undefined;
341
+ password?: string | undefined;
256
342
  } | {
257
343
  mnemonic: string;
258
344
  addressIndex: number;
259
345
  accountIndex: number;
260
346
  addressCount: number;
261
347
  accountCount: number;
262
- })[];
263
- feeRecipient: string;
264
- publisher?: string | {
265
- address: string;
266
- remoteSignerUrl?: string | null | undefined;
267
- certPath?: string | null | undefined;
268
- certPass?: string | null | undefined;
269
348
  } | {
270
- path: string;
271
- password?: string | null | undefined;
349
+ eth: import("@aztec/foundation/schemas").EthAddress | {
350
+ address: import("@aztec/foundation/schemas").EthAddress;
351
+ remoteSignerUrl: string;
352
+ certPath?: string | undefined;
353
+ certPass?: string | undefined;
354
+ } | {
355
+ path: string;
356
+ password?: string | undefined;
357
+ } | EthPrivateKey;
358
+ bls?: {
359
+ path: string;
360
+ password?: string | undefined;
361
+ } | BLSPrivateKey | undefined;
362
+ } | EthPrivateKey;
363
+ coinbase?: import("@aztec/foundation/schemas").EthAddress | undefined;
364
+ publisher?: (import("@aztec/foundation/schemas").EthAddress | {
365
+ address: import("@aztec/foundation/schemas").EthAddress;
366
+ remoteSignerUrl: string;
367
+ certPath?: string | undefined;
368
+ certPass?: string | undefined;
272
369
  } | {
273
- mnemonic: string;
274
- addressIndex: number;
275
- accountIndex: number;
276
- addressCount: number;
277
- accountCount: number;
278
- } | (string | {
279
- address: string;
280
- remoteSignerUrl?: string | null | undefined;
281
- certPath?: string | null | undefined;
282
- certPass?: string | null | undefined;
370
+ path: string;
371
+ password?: string | undefined;
372
+ } | EthPrivateKey)[] | import("@aztec/foundation/schemas").EthAddress | {
373
+ address: import("@aztec/foundation/schemas").EthAddress;
374
+ remoteSignerUrl: string;
375
+ certPath?: string | undefined;
376
+ certPass?: string | undefined;
283
377
  } | {
284
378
  path: string;
285
- password?: string | null | undefined;
379
+ password?: string | undefined;
286
380
  } | {
287
381
  mnemonic: string;
288
382
  addressIndex: number;
289
383
  accountIndex: number;
290
384
  addressCount: number;
291
385
  accountCount: number;
292
- })[] | null | undefined;
293
- coinbase?: string | null | undefined;
386
+ } | EthPrivateKey | undefined;
387
+ feeRecipient: AztecAddress;
294
388
  remoteSigner?: string | {
295
389
  remoteSignerUrl: string;
296
- certPath?: string | null | undefined;
297
- certPass?: string | null | undefined;
298
- } | null | undefined;
299
- fundingAccount?: string | {
300
- address: string;
301
- remoteSignerUrl?: string | null | undefined;
302
- certPath?: string | null | undefined;
303
- certPass?: string | null | undefined;
390
+ certPath?: string | undefined;
391
+ certPass?: string | undefined;
392
+ } | undefined;
393
+ fundingAccount?: import("@aztec/foundation/schemas").EthAddress | {
394
+ address: import("@aztec/foundation/schemas").EthAddress;
395
+ remoteSignerUrl: string;
396
+ certPath?: string | undefined;
397
+ certPass?: string | undefined;
304
398
  } | {
305
399
  path: string;
306
- password?: string | null | undefined;
307
- } | {
308
- mnemonic: string;
309
- addressIndex: number;
310
- accountIndex: number;
311
- addressCount: number;
312
- accountCount: number;
313
- } | null | undefined;
400
+ password?: string | undefined;
401
+ } | EthPrivateKey | undefined;
314
402
  }, {
315
- attester: string | {
403
+ attester: string | (string | {
316
404
  address: string;
317
- remoteSignerUrl?: string | null | undefined;
318
- certPath?: string | null | undefined;
319
- certPass?: string | null | undefined;
405
+ remoteSignerUrl: string;
406
+ certPath?: string | undefined;
407
+ certPass?: string | undefined;
320
408
  } | {
321
409
  path: string;
322
- password?: string | null | undefined;
323
- } | {
324
- mnemonic: string;
325
- addressIndex?: number | undefined;
326
- accountIndex?: number | undefined;
327
- addressCount?: number | undefined;
328
- accountCount?: number | undefined;
329
- } | (string | {
410
+ password?: string | undefined;
411
+ } | {
412
+ eth: string | {
413
+ address: string;
414
+ remoteSignerUrl: string;
415
+ certPath?: string | undefined;
416
+ certPass?: string | undefined;
417
+ } | {
418
+ path: string;
419
+ password?: string | undefined;
420
+ };
421
+ bls?: string | {
422
+ path: string;
423
+ password?: string | undefined;
424
+ } | undefined;
425
+ })[] | {
330
426
  address: string;
331
- remoteSignerUrl?: string | null | undefined;
332
- certPath?: string | null | undefined;
333
- certPass?: string | null | undefined;
427
+ remoteSignerUrl: string;
428
+ certPath?: string | undefined;
429
+ certPass?: string | undefined;
334
430
  } | {
335
431
  path: string;
336
- password?: string | null | undefined;
432
+ password?: string | undefined;
337
433
  } | {
338
434
  mnemonic: string;
339
435
  addressIndex?: number | undefined;
340
436
  accountIndex?: number | undefined;
341
437
  addressCount?: number | undefined;
342
438
  accountCount?: number | undefined;
343
- })[];
344
- feeRecipient: string;
345
- publisher?: string | {
439
+ } | {
440
+ eth: string | {
441
+ address: string;
442
+ remoteSignerUrl: string;
443
+ certPath?: string | undefined;
444
+ certPass?: string | undefined;
445
+ } | {
446
+ path: string;
447
+ password?: string | undefined;
448
+ };
449
+ bls?: string | {
450
+ path: string;
451
+ password?: string | undefined;
452
+ } | undefined;
453
+ };
454
+ coinbase?: string | undefined;
455
+ publisher?: string | (string | {
346
456
  address: string;
347
- remoteSignerUrl?: string | null | undefined;
348
- certPath?: string | null | undefined;
349
- certPass?: string | null | undefined;
457
+ remoteSignerUrl: string;
458
+ certPath?: string | undefined;
459
+ certPass?: string | undefined;
350
460
  } | {
351
461
  path: string;
352
- password?: string | null | undefined;
353
- } | {
354
- mnemonic: string;
355
- addressIndex?: number | undefined;
356
- accountIndex?: number | undefined;
357
- addressCount?: number | undefined;
358
- accountCount?: number | undefined;
359
- } | (string | {
462
+ password?: string | undefined;
463
+ })[] | {
360
464
  address: string;
361
- remoteSignerUrl?: string | null | undefined;
362
- certPath?: string | null | undefined;
363
- certPass?: string | null | undefined;
465
+ remoteSignerUrl: string;
466
+ certPath?: string | undefined;
467
+ certPass?: string | undefined;
364
468
  } | {
365
469
  path: string;
366
- password?: string | null | undefined;
470
+ password?: string | undefined;
367
471
  } | {
368
472
  mnemonic: string;
369
473
  addressIndex?: number | undefined;
370
474
  accountIndex?: number | undefined;
371
475
  addressCount?: number | undefined;
372
476
  accountCount?: number | undefined;
373
- })[] | null | undefined;
374
- coinbase?: string | null | undefined;
477
+ } | undefined;
478
+ feeRecipient?: any;
375
479
  remoteSigner?: string | {
376
480
  remoteSignerUrl: string;
377
- certPath?: string | null | undefined;
378
- certPass?: string | null | undefined;
379
- } | null | undefined;
481
+ certPath?: string | undefined;
482
+ certPass?: string | undefined;
483
+ } | undefined;
380
484
  fundingAccount?: string | {
381
485
  address: string;
382
- remoteSignerUrl?: string | null | undefined;
383
- certPath?: string | null | undefined;
384
- certPass?: string | null | undefined;
486
+ remoteSignerUrl: string;
487
+ certPath?: string | undefined;
488
+ certPass?: string | undefined;
385
489
  } | {
386
490
  path: string;
387
- password?: string | null | undefined;
388
- } | {
389
- mnemonic: string;
390
- addressIndex?: number | undefined;
391
- accountIndex?: number | undefined;
392
- addressCount?: number | undefined;
393
- accountCount?: number | undefined;
394
- } | null | undefined;
395
- }>, "many">>>;
396
- slasher: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
397
- address: z.ZodEffects<z.ZodString, string, string>;
398
- remoteSignerUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
399
- certPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
400
- certPass: z.ZodOptional<z.ZodNullable<z.ZodString>>;
401
- }, "strip", z.ZodTypeAny, {
402
- address: string;
403
- remoteSignerUrl?: string | null | undefined;
404
- certPath?: string | null | undefined;
405
- certPass?: string | null | undefined;
491
+ password?: string | undefined;
492
+ } | undefined;
493
+ }>, "many">>;
494
+ slasher: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
495
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
496
+ remoteSignerUrl: z.ZodString;
497
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
498
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
499
+ }, "strict", z.ZodTypeAny, {
500
+ address: import("@aztec/foundation/schemas").EthAddress;
501
+ remoteSignerUrl: string;
502
+ certPath?: string | undefined;
503
+ certPass?: string | undefined;
406
504
  }, {
407
505
  address: string;
408
- remoteSignerUrl?: string | null | undefined;
409
- certPath?: string | null | undefined;
410
- certPass?: string | null | undefined;
506
+ remoteSignerUrl: string;
507
+ certPath?: string | undefined;
508
+ certPass?: string | undefined;
411
509
  }>]>, z.ZodObject<{
412
510
  path: z.ZodString;
413
- password: z.ZodOptional<z.ZodNullable<z.ZodString>>;
414
- }, "strip", z.ZodTypeAny, {
511
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
512
+ }, "strict", z.ZodTypeAny, {
415
513
  path: string;
416
- password?: string | null | undefined;
514
+ password?: string | undefined;
417
515
  }, {
418
516
  path: string;
419
- password?: string | null | undefined;
420
- }>, z.ZodObject<{
421
- mnemonic: z.ZodString;
422
- addressIndex: z.ZodDefault<z.ZodNumber>;
423
- accountIndex: z.ZodDefault<z.ZodNumber>;
424
- addressCount: z.ZodDefault<z.ZodNumber>;
425
- accountCount: z.ZodDefault<z.ZodNumber>;
426
- }, "strip", z.ZodTypeAny, {
427
- mnemonic: string;
428
- addressIndex: number;
429
- accountIndex: number;
430
- addressCount: number;
431
- accountCount: number;
432
- }, {
433
- mnemonic: string;
434
- addressIndex?: number | undefined;
435
- accountIndex?: number | undefined;
436
- addressCount?: number | undefined;
437
- accountCount?: number | undefined;
438
- }>]>, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
439
- address: z.ZodEffects<z.ZodString, string, string>;
440
- remoteSignerUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
441
- certPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
442
- certPass: z.ZodOptional<z.ZodNullable<z.ZodString>>;
443
- }, "strip", z.ZodTypeAny, {
444
- address: string;
445
- remoteSignerUrl?: string | null | undefined;
446
- certPath?: string | null | undefined;
447
- certPass?: string | null | undefined;
517
+ password?: string | undefined;
518
+ }>]>, z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
519
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
520
+ remoteSignerUrl: z.ZodString;
521
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
522
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
523
+ }, "strict", z.ZodTypeAny, {
524
+ address: import("@aztec/foundation/schemas").EthAddress;
525
+ remoteSignerUrl: string;
526
+ certPath?: string | undefined;
527
+ certPass?: string | undefined;
448
528
  }, {
449
529
  address: string;
450
- remoteSignerUrl?: string | null | undefined;
451
- certPath?: string | null | undefined;
452
- certPass?: string | null | undefined;
530
+ remoteSignerUrl: string;
531
+ certPath?: string | undefined;
532
+ certPass?: string | undefined;
453
533
  }>]>, z.ZodObject<{
454
534
  path: z.ZodString;
455
- password: z.ZodOptional<z.ZodNullable<z.ZodString>>;
456
- }, "strip", z.ZodTypeAny, {
535
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
536
+ }, "strict", z.ZodTypeAny, {
457
537
  path: string;
458
- password?: string | null | undefined;
538
+ password?: string | undefined;
459
539
  }, {
460
540
  path: string;
461
- password?: string | null | undefined;
462
- }>, z.ZodObject<{
541
+ password?: string | undefined;
542
+ }>]>, "many">, z.ZodObject<{
463
543
  mnemonic: z.ZodString;
464
544
  addressIndex: z.ZodDefault<z.ZodNumber>;
465
545
  accountIndex: z.ZodDefault<z.ZodNumber>;
466
546
  addressCount: z.ZodDefault<z.ZodNumber>;
467
547
  accountCount: z.ZodDefault<z.ZodNumber>;
468
- }, "strip", z.ZodTypeAny, {
548
+ }, "strict", z.ZodTypeAny, {
469
549
  mnemonic: string;
470
550
  addressIndex: number;
471
551
  accountIndex: number;
@@ -477,137 +557,101 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
477
557
  accountIndex?: number | undefined;
478
558
  addressCount?: number | undefined;
479
559
  accountCount?: number | undefined;
480
- }>]>, "many">]>>>;
481
- remoteSigner: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodObject<{
560
+ }>]>>;
561
+ remoteSigner: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
482
562
  remoteSignerUrl: z.ZodString;
483
- certPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
484
- certPass: z.ZodOptional<z.ZodNullable<z.ZodString>>;
485
- }, "strip", z.ZodTypeAny, {
563
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
564
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
565
+ }, "strict", z.ZodTypeAny, {
486
566
  remoteSignerUrl: string;
487
- certPath?: string | null | undefined;
488
- certPass?: string | null | undefined;
567
+ certPath?: string | undefined;
568
+ certPass?: string | undefined;
489
569
  }, {
490
570
  remoteSignerUrl: string;
491
- certPath?: string | null | undefined;
492
- certPass?: string | null | undefined;
493
- }>]>>>;
494
- prover: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
495
- address: z.ZodEffects<z.ZodString, string, string>;
496
- remoteSignerUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
497
- certPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
498
- certPass: z.ZodOptional<z.ZodNullable<z.ZodString>>;
499
- }, "strip", z.ZodTypeAny, {
500
- address: string;
501
- remoteSignerUrl?: string | null | undefined;
502
- certPath?: string | null | undefined;
503
- certPass?: string | null | undefined;
571
+ certPath?: string | undefined;
572
+ certPass?: string | undefined;
573
+ }>]>>;
574
+ prover: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
575
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
576
+ remoteSignerUrl: z.ZodString;
577
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
578
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
579
+ }, "strict", z.ZodTypeAny, {
580
+ address: import("@aztec/foundation/schemas").EthAddress;
581
+ remoteSignerUrl: string;
582
+ certPath?: string | undefined;
583
+ certPass?: string | undefined;
504
584
  }, {
505
585
  address: string;
506
- remoteSignerUrl?: string | null | undefined;
507
- certPath?: string | null | undefined;
508
- certPass?: string | null | undefined;
586
+ remoteSignerUrl: string;
587
+ certPath?: string | undefined;
588
+ certPass?: string | undefined;
509
589
  }>]>, z.ZodObject<{
510
590
  path: z.ZodString;
511
- password: z.ZodOptional<z.ZodNullable<z.ZodString>>;
512
- }, "strip", z.ZodTypeAny, {
591
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
592
+ }, "strict", z.ZodTypeAny, {
513
593
  path: string;
514
- password?: string | null | undefined;
594
+ password?: string | undefined;
515
595
  }, {
516
596
  path: string;
517
- password?: string | null | undefined;
518
- }>, z.ZodObject<{
519
- mnemonic: z.ZodString;
520
- addressIndex: z.ZodDefault<z.ZodNumber>;
521
- accountIndex: z.ZodDefault<z.ZodNumber>;
522
- addressCount: z.ZodDefault<z.ZodNumber>;
523
- accountCount: z.ZodDefault<z.ZodNumber>;
524
- }, "strip", z.ZodTypeAny, {
525
- mnemonic: string;
526
- addressIndex: number;
527
- accountIndex: number;
528
- addressCount: number;
529
- accountCount: number;
530
- }, {
531
- mnemonic: string;
532
- addressIndex?: number | undefined;
533
- accountIndex?: number | undefined;
534
- addressCount?: number | undefined;
535
- accountCount?: number | undefined;
597
+ password?: string | undefined;
536
598
  }>]>, z.ZodObject<{
537
- id: z.ZodEffects<z.ZodString, string, string>;
538
- publisher: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
539
- address: z.ZodEffects<z.ZodString, string, string>;
540
- remoteSignerUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
541
- certPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
542
- certPass: z.ZodOptional<z.ZodNullable<z.ZodString>>;
543
- }, "strip", z.ZodTypeAny, {
544
- address: string;
545
- remoteSignerUrl?: string | null | undefined;
546
- certPath?: string | null | undefined;
547
- certPass?: string | null | undefined;
599
+ id: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
600
+ publisher: z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
601
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
602
+ remoteSignerUrl: z.ZodString;
603
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
604
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
605
+ }, "strict", z.ZodTypeAny, {
606
+ address: import("@aztec/foundation/schemas").EthAddress;
607
+ remoteSignerUrl: string;
608
+ certPath?: string | undefined;
609
+ certPass?: string | undefined;
548
610
  }, {
549
611
  address: string;
550
- remoteSignerUrl?: string | null | undefined;
551
- certPath?: string | null | undefined;
552
- certPass?: string | null | undefined;
612
+ remoteSignerUrl: string;
613
+ certPath?: string | undefined;
614
+ certPass?: string | undefined;
553
615
  }>]>, z.ZodObject<{
554
616
  path: z.ZodString;
555
- password: z.ZodOptional<z.ZodNullable<z.ZodString>>;
556
- }, "strip", z.ZodTypeAny, {
617
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
618
+ }, "strict", z.ZodTypeAny, {
557
619
  path: string;
558
- password?: string | null | undefined;
620
+ password?: string | undefined;
559
621
  }, {
560
622
  path: string;
561
- password?: string | null | undefined;
562
- }>, z.ZodObject<{
563
- mnemonic: z.ZodString;
564
- addressIndex: z.ZodDefault<z.ZodNumber>;
565
- accountIndex: z.ZodDefault<z.ZodNumber>;
566
- addressCount: z.ZodDefault<z.ZodNumber>;
567
- accountCount: z.ZodDefault<z.ZodNumber>;
568
- }, "strip", z.ZodTypeAny, {
569
- mnemonic: string;
570
- addressIndex: number;
571
- accountIndex: number;
572
- addressCount: number;
573
- accountCount: number;
574
- }, {
575
- mnemonic: string;
576
- addressIndex?: number | undefined;
577
- accountIndex?: number | undefined;
578
- addressCount?: number | undefined;
579
- accountCount?: number | undefined;
580
- }>]>, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
581
- address: z.ZodEffects<z.ZodString, string, string>;
582
- remoteSignerUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
583
- certPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
584
- certPass: z.ZodOptional<z.ZodNullable<z.ZodString>>;
585
- }, "strip", z.ZodTypeAny, {
586
- address: string;
587
- remoteSignerUrl?: string | null | undefined;
588
- certPath?: string | null | undefined;
589
- certPass?: string | null | undefined;
623
+ password?: string | undefined;
624
+ }>]>, z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
625
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
626
+ remoteSignerUrl: z.ZodString;
627
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
628
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
629
+ }, "strict", z.ZodTypeAny, {
630
+ address: import("@aztec/foundation/schemas").EthAddress;
631
+ remoteSignerUrl: string;
632
+ certPath?: string | undefined;
633
+ certPass?: string | undefined;
590
634
  }, {
591
635
  address: string;
592
- remoteSignerUrl?: string | null | undefined;
593
- certPath?: string | null | undefined;
594
- certPass?: string | null | undefined;
636
+ remoteSignerUrl: string;
637
+ certPath?: string | undefined;
638
+ certPass?: string | undefined;
595
639
  }>]>, z.ZodObject<{
596
640
  path: z.ZodString;
597
- password: z.ZodOptional<z.ZodNullable<z.ZodString>>;
598
- }, "strip", z.ZodTypeAny, {
641
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
642
+ }, "strict", z.ZodTypeAny, {
599
643
  path: string;
600
- password?: string | null | undefined;
644
+ password?: string | undefined;
601
645
  }, {
602
646
  path: string;
603
- password?: string | null | undefined;
604
- }>, z.ZodObject<{
647
+ password?: string | undefined;
648
+ }>]>, "many">, z.ZodObject<{
605
649
  mnemonic: z.ZodString;
606
650
  addressIndex: z.ZodDefault<z.ZodNumber>;
607
651
  accountIndex: z.ZodDefault<z.ZodNumber>;
608
652
  addressCount: z.ZodDefault<z.ZodNumber>;
609
653
  accountCount: z.ZodDefault<z.ZodNumber>;
610
- }, "strip", z.ZodTypeAny, {
654
+ }, "strict", z.ZodTypeAny, {
611
655
  mnemonic: string;
612
656
  addressIndex: number;
613
657
  accountIndex: number;
@@ -619,829 +663,2688 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
619
663
  accountIndex?: number | undefined;
620
664
  addressCount?: number | undefined;
621
665
  accountCount?: number | undefined;
622
- }>]>, "many">]>;
623
- }, "strip", z.ZodTypeAny, {
624
- id: string;
625
- publisher: string | {
626
- address: string;
627
- remoteSignerUrl?: string | null | undefined;
628
- certPath?: string | null | undefined;
629
- certPass?: string | null | undefined;
666
+ }>]>;
667
+ }, "strict", z.ZodTypeAny, {
668
+ id: import("@aztec/foundation/schemas").EthAddress;
669
+ publisher: (import("@aztec/foundation/schemas").EthAddress | {
670
+ address: import("@aztec/foundation/schemas").EthAddress;
671
+ remoteSignerUrl: string;
672
+ certPath?: string | undefined;
673
+ certPass?: string | undefined;
630
674
  } | {
631
675
  path: string;
632
- password?: string | null | undefined;
633
- } | {
634
- mnemonic: string;
635
- addressIndex: number;
636
- accountIndex: number;
637
- addressCount: number;
638
- accountCount: number;
639
- } | (string | {
640
- address: string;
641
- remoteSignerUrl?: string | null | undefined;
642
- certPath?: string | null | undefined;
643
- certPass?: string | null | undefined;
676
+ password?: string | undefined;
677
+ } | EthPrivateKey)[] | import("@aztec/foundation/schemas").EthAddress | {
678
+ address: import("@aztec/foundation/schemas").EthAddress;
679
+ remoteSignerUrl: string;
680
+ certPath?: string | undefined;
681
+ certPass?: string | undefined;
644
682
  } | {
645
683
  path: string;
646
- password?: string | null | undefined;
684
+ password?: string | undefined;
647
685
  } | {
648
686
  mnemonic: string;
649
687
  addressIndex: number;
650
688
  accountIndex: number;
651
689
  addressCount: number;
652
690
  accountCount: number;
653
- })[];
691
+ } | EthPrivateKey;
654
692
  }, {
655
693
  id: string;
656
- publisher: string | {
694
+ publisher: string | (string | {
657
695
  address: string;
658
- remoteSignerUrl?: string | null | undefined;
659
- certPath?: string | null | undefined;
660
- certPass?: string | null | undefined;
696
+ remoteSignerUrl: string;
697
+ certPath?: string | undefined;
698
+ certPass?: string | undefined;
661
699
  } | {
662
700
  path: string;
663
- password?: string | null | undefined;
664
- } | {
665
- mnemonic: string;
666
- addressIndex?: number | undefined;
667
- accountIndex?: number | undefined;
668
- addressCount?: number | undefined;
669
- accountCount?: number | undefined;
670
- } | (string | {
701
+ password?: string | undefined;
702
+ })[] | {
671
703
  address: string;
672
- remoteSignerUrl?: string | null | undefined;
673
- certPath?: string | null | undefined;
674
- certPass?: string | null | undefined;
704
+ remoteSignerUrl: string;
705
+ certPath?: string | undefined;
706
+ certPass?: string | undefined;
675
707
  } | {
676
708
  path: string;
677
- password?: string | null | undefined;
709
+ password?: string | undefined;
678
710
  } | {
679
711
  mnemonic: string;
680
712
  addressIndex?: number | undefined;
681
713
  accountIndex?: number | undefined;
682
714
  addressCount?: number | undefined;
683
715
  accountCount?: number | undefined;
684
- })[];
685
- }>]>>>;
686
- fundingAccount: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
687
- address: z.ZodEffects<z.ZodString, string, string>;
688
- remoteSignerUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
689
- certPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
690
- certPass: z.ZodOptional<z.ZodNullable<z.ZodString>>;
691
- }, "strip", z.ZodTypeAny, {
692
- address: string;
693
- remoteSignerUrl?: string | null | undefined;
694
- certPath?: string | null | undefined;
695
- certPass?: string | null | undefined;
716
+ };
717
+ }>]>>;
718
+ fundingAccount: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
719
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
720
+ remoteSignerUrl: z.ZodString;
721
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
722
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
723
+ }, "strict", z.ZodTypeAny, {
724
+ address: import("@aztec/foundation/schemas").EthAddress;
725
+ remoteSignerUrl: string;
726
+ certPath?: string | undefined;
727
+ certPass?: string | undefined;
696
728
  }, {
697
729
  address: string;
698
- remoteSignerUrl?: string | null | undefined;
699
- certPath?: string | null | undefined;
700
- certPass?: string | null | undefined;
730
+ remoteSignerUrl: string;
731
+ certPath?: string | undefined;
732
+ certPass?: string | undefined;
701
733
  }>]>, z.ZodObject<{
702
734
  path: z.ZodString;
703
- password: z.ZodOptional<z.ZodNullable<z.ZodString>>;
704
- }, "strip", z.ZodTypeAny, {
735
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
736
+ }, "strict", z.ZodTypeAny, {
705
737
  path: string;
706
- password?: string | null | undefined;
738
+ password?: string | undefined;
707
739
  }, {
708
740
  path: string;
709
- password?: string | null | undefined;
710
- }>, z.ZodObject<{
711
- mnemonic: z.ZodString;
712
- addressIndex: z.ZodDefault<z.ZodNumber>;
713
- accountIndex: z.ZodDefault<z.ZodNumber>;
714
- addressCount: z.ZodDefault<z.ZodNumber>;
715
- accountCount: z.ZodDefault<z.ZodNumber>;
716
- }, "strip", z.ZodTypeAny, {
717
- mnemonic: string;
718
- addressIndex: number;
719
- accountIndex: number;
720
- addressCount: number;
721
- accountCount: number;
722
- }, {
723
- mnemonic: string;
724
- addressIndex?: number | undefined;
725
- accountIndex?: number | undefined;
726
- addressCount?: number | undefined;
727
- accountCount?: number | undefined;
728
- }>]>>>;
729
- }, "strip", z.ZodTypeAny, {
741
+ password?: string | undefined;
742
+ }>]>>;
743
+ }, "strict", z.ZodTypeAny, {
730
744
  schemaVersion: 1;
731
- remoteSigner?: string | {
732
- remoteSignerUrl: string;
733
- certPath?: string | null | undefined;
734
- certPass?: string | null | undefined;
735
- } | null | undefined;
736
- fundingAccount?: string | {
737
- address: string;
738
- remoteSignerUrl?: string | null | undefined;
739
- certPath?: string | null | undefined;
740
- certPass?: string | null | undefined;
741
- } | {
742
- path: string;
743
- password?: string | null | undefined;
744
- } | {
745
- mnemonic: string;
746
- addressIndex: number;
747
- accountIndex: number;
748
- addressCount: number;
749
- accountCount: number;
750
- } | null | undefined;
751
745
  validators?: {
752
- attester: string | {
753
- address: string;
754
- remoteSignerUrl?: string | null | undefined;
755
- certPath?: string | null | undefined;
756
- certPass?: string | null | undefined;
746
+ attester: (import("@aztec/foundation/schemas").EthAddress | {
747
+ address: import("@aztec/foundation/schemas").EthAddress;
748
+ remoteSignerUrl: string;
749
+ certPath?: string | undefined;
750
+ certPass?: string | undefined;
751
+ } | {
752
+ path: string;
753
+ password?: string | undefined;
754
+ } | {
755
+ eth: import("@aztec/foundation/schemas").EthAddress | {
756
+ address: import("@aztec/foundation/schemas").EthAddress;
757
+ remoteSignerUrl: string;
758
+ certPath?: string | undefined;
759
+ certPass?: string | undefined;
760
+ } | {
761
+ path: string;
762
+ password?: string | undefined;
763
+ } | EthPrivateKey;
764
+ bls?: {
765
+ path: string;
766
+ password?: string | undefined;
767
+ } | BLSPrivateKey | undefined;
768
+ } | EthPrivateKey)[] | import("@aztec/foundation/schemas").EthAddress | {
769
+ address: import("@aztec/foundation/schemas").EthAddress;
770
+ remoteSignerUrl: string;
771
+ certPath?: string | undefined;
772
+ certPass?: string | undefined;
757
773
  } | {
758
774
  path: string;
759
- password?: string | null | undefined;
775
+ password?: string | undefined;
760
776
  } | {
761
777
  mnemonic: string;
762
778
  addressIndex: number;
763
779
  accountIndex: number;
764
780
  addressCount: number;
765
781
  accountCount: number;
766
- } | (string | {
767
- address: string;
768
- remoteSignerUrl?: string | null | undefined;
769
- certPath?: string | null | undefined;
770
- certPass?: string | null | undefined;
782
+ } | {
783
+ eth: import("@aztec/foundation/schemas").EthAddress | {
784
+ address: import("@aztec/foundation/schemas").EthAddress;
785
+ remoteSignerUrl: string;
786
+ certPath?: string | undefined;
787
+ certPass?: string | undefined;
788
+ } | {
789
+ path: string;
790
+ password?: string | undefined;
791
+ } | EthPrivateKey;
792
+ bls?: {
793
+ path: string;
794
+ password?: string | undefined;
795
+ } | BLSPrivateKey | undefined;
796
+ } | EthPrivateKey;
797
+ coinbase?: import("@aztec/foundation/schemas").EthAddress | undefined;
798
+ publisher?: (import("@aztec/foundation/schemas").EthAddress | {
799
+ address: import("@aztec/foundation/schemas").EthAddress;
800
+ remoteSignerUrl: string;
801
+ certPath?: string | undefined;
802
+ certPass?: string | undefined;
803
+ } | {
804
+ path: string;
805
+ password?: string | undefined;
806
+ } | EthPrivateKey)[] | import("@aztec/foundation/schemas").EthAddress | {
807
+ address: import("@aztec/foundation/schemas").EthAddress;
808
+ remoteSignerUrl: string;
809
+ certPath?: string | undefined;
810
+ certPass?: string | undefined;
771
811
  } | {
772
812
  path: string;
773
- password?: string | null | undefined;
813
+ password?: string | undefined;
774
814
  } | {
775
815
  mnemonic: string;
776
816
  addressIndex: number;
777
817
  accountIndex: number;
778
818
  addressCount: number;
779
819
  accountCount: number;
780
- })[];
781
- feeRecipient: string;
782
- publisher?: string | {
783
- address: string;
784
- remoteSignerUrl?: string | null | undefined;
785
- certPath?: string | null | undefined;
786
- certPass?: string | null | undefined;
787
- } | {
788
- path: string;
789
- password?: string | null | undefined;
790
- } | {
791
- mnemonic: string;
792
- addressIndex: number;
793
- accountIndex: number;
794
- addressCount: number;
795
- accountCount: number;
796
- } | (string | {
797
- address: string;
798
- remoteSignerUrl?: string | null | undefined;
799
- certPath?: string | null | undefined;
800
- certPass?: string | null | undefined;
801
- } | {
802
- path: string;
803
- password?: string | null | undefined;
804
- } | {
805
- mnemonic: string;
806
- addressIndex: number;
807
- accountIndex: number;
808
- addressCount: number;
809
- accountCount: number;
810
- })[] | null | undefined;
811
- coinbase?: string | null | undefined;
820
+ } | EthPrivateKey | undefined;
821
+ feeRecipient: AztecAddress;
812
822
  remoteSigner?: string | {
813
823
  remoteSignerUrl: string;
814
- certPath?: string | null | undefined;
815
- certPass?: string | null | undefined;
816
- } | null | undefined;
817
- fundingAccount?: string | {
818
- address: string;
819
- remoteSignerUrl?: string | null | undefined;
820
- certPath?: string | null | undefined;
821
- certPass?: string | null | undefined;
824
+ certPath?: string | undefined;
825
+ certPass?: string | undefined;
826
+ } | undefined;
827
+ fundingAccount?: import("@aztec/foundation/schemas").EthAddress | {
828
+ address: import("@aztec/foundation/schemas").EthAddress;
829
+ remoteSignerUrl: string;
830
+ certPath?: string | undefined;
831
+ certPass?: string | undefined;
822
832
  } | {
823
833
  path: string;
824
- password?: string | null | undefined;
825
- } | {
826
- mnemonic: string;
827
- addressIndex: number;
828
- accountIndex: number;
829
- addressCount: number;
830
- accountCount: number;
831
- } | null | undefined;
832
- }[] | null | undefined;
833
- slasher?: string | {
834
- address: string;
835
- remoteSignerUrl?: string | null | undefined;
836
- certPath?: string | null | undefined;
837
- certPass?: string | null | undefined;
834
+ password?: string | undefined;
835
+ } | EthPrivateKey | undefined;
836
+ }[] | undefined;
837
+ slasher?: (import("@aztec/foundation/schemas").EthAddress | {
838
+ address: import("@aztec/foundation/schemas").EthAddress;
839
+ remoteSignerUrl: string;
840
+ certPath?: string | undefined;
841
+ certPass?: string | undefined;
838
842
  } | {
839
843
  path: string;
840
- password?: string | null | undefined;
841
- } | {
842
- mnemonic: string;
843
- addressIndex: number;
844
- accountIndex: number;
845
- addressCount: number;
846
- accountCount: number;
847
- } | (string | {
848
- address: string;
849
- remoteSignerUrl?: string | null | undefined;
850
- certPath?: string | null | undefined;
851
- certPass?: string | null | undefined;
844
+ password?: string | undefined;
845
+ } | EthPrivateKey)[] | import("@aztec/foundation/schemas").EthAddress | {
846
+ address: import("@aztec/foundation/schemas").EthAddress;
847
+ remoteSignerUrl: string;
848
+ certPath?: string | undefined;
849
+ certPass?: string | undefined;
852
850
  } | {
853
851
  path: string;
854
- password?: string | null | undefined;
852
+ password?: string | undefined;
855
853
  } | {
856
854
  mnemonic: string;
857
855
  addressIndex: number;
858
856
  accountIndex: number;
859
857
  addressCount: number;
860
858
  accountCount: number;
861
- })[] | null | undefined;
862
- prover?: string | {
863
- address: string;
864
- remoteSignerUrl?: string | null | undefined;
865
- certPath?: string | null | undefined;
866
- certPass?: string | null | undefined;
859
+ } | EthPrivateKey | undefined;
860
+ remoteSigner?: string | {
861
+ remoteSignerUrl: string;
862
+ certPath?: string | undefined;
863
+ certPass?: string | undefined;
864
+ } | undefined;
865
+ prover?: import("@aztec/foundation/schemas").EthAddress | {
866
+ address: import("@aztec/foundation/schemas").EthAddress;
867
+ remoteSignerUrl: string;
868
+ certPath?: string | undefined;
869
+ certPass?: string | undefined;
867
870
  } | {
868
871
  path: string;
869
- password?: string | null | undefined;
872
+ password?: string | undefined;
870
873
  } | {
871
- mnemonic: string;
872
- addressIndex: number;
873
- accountIndex: number;
874
- addressCount: number;
875
- accountCount: number;
876
- } | {
877
- id: string;
878
- publisher: string | {
879
- address: string;
880
- remoteSignerUrl?: string | null | undefined;
881
- certPath?: string | null | undefined;
882
- certPass?: string | null | undefined;
874
+ id: import("@aztec/foundation/schemas").EthAddress;
875
+ publisher: (import("@aztec/foundation/schemas").EthAddress | {
876
+ address: import("@aztec/foundation/schemas").EthAddress;
877
+ remoteSignerUrl: string;
878
+ certPath?: string | undefined;
879
+ certPass?: string | undefined;
883
880
  } | {
884
881
  path: string;
885
- password?: string | null | undefined;
886
- } | {
887
- mnemonic: string;
888
- addressIndex: number;
889
- accountIndex: number;
890
- addressCount: number;
891
- accountCount: number;
892
- } | (string | {
893
- address: string;
894
- remoteSignerUrl?: string | null | undefined;
895
- certPath?: string | null | undefined;
896
- certPass?: string | null | undefined;
882
+ password?: string | undefined;
883
+ } | EthPrivateKey)[] | import("@aztec/foundation/schemas").EthAddress | {
884
+ address: import("@aztec/foundation/schemas").EthAddress;
885
+ remoteSignerUrl: string;
886
+ certPath?: string | undefined;
887
+ certPass?: string | undefined;
897
888
  } | {
898
889
  path: string;
899
- password?: string | null | undefined;
890
+ password?: string | undefined;
900
891
  } | {
901
892
  mnemonic: string;
902
893
  addressIndex: number;
903
894
  accountIndex: number;
904
895
  addressCount: number;
905
896
  accountCount: number;
906
- })[];
907
- } | null | undefined;
908
- }, {
909
- schemaVersion: 1;
910
- remoteSigner?: string | {
897
+ } | EthPrivateKey;
898
+ } | EthPrivateKey | undefined;
899
+ fundingAccount?: import("@aztec/foundation/schemas").EthAddress | {
900
+ address: import("@aztec/foundation/schemas").EthAddress;
911
901
  remoteSignerUrl: string;
912
- certPath?: string | null | undefined;
913
- certPass?: string | null | undefined;
914
- } | null | undefined;
915
- fundingAccount?: string | {
916
- address: string;
917
- remoteSignerUrl?: string | null | undefined;
918
- certPath?: string | null | undefined;
919
- certPass?: string | null | undefined;
902
+ certPath?: string | undefined;
903
+ certPass?: string | undefined;
920
904
  } | {
921
905
  path: string;
922
- password?: string | null | undefined;
923
- } | {
924
- mnemonic: string;
925
- addressIndex?: number | undefined;
926
- accountIndex?: number | undefined;
927
- addressCount?: number | undefined;
928
- accountCount?: number | undefined;
929
- } | null | undefined;
906
+ password?: string | undefined;
907
+ } | EthPrivateKey | undefined;
908
+ }, {
909
+ schemaVersion: 1;
930
910
  validators?: {
931
- attester: string | {
911
+ attester: string | (string | {
932
912
  address: string;
933
- remoteSignerUrl?: string | null | undefined;
934
- certPath?: string | null | undefined;
935
- certPass?: string | null | undefined;
913
+ remoteSignerUrl: string;
914
+ certPath?: string | undefined;
915
+ certPass?: string | undefined;
936
916
  } | {
937
917
  path: string;
938
- password?: string | null | undefined;
939
- } | {
940
- mnemonic: string;
941
- addressIndex?: number | undefined;
942
- accountIndex?: number | undefined;
943
- addressCount?: number | undefined;
944
- accountCount?: number | undefined;
945
- } | (string | {
918
+ password?: string | undefined;
919
+ } | {
920
+ eth: string | {
921
+ address: string;
922
+ remoteSignerUrl: string;
923
+ certPath?: string | undefined;
924
+ certPass?: string | undefined;
925
+ } | {
926
+ path: string;
927
+ password?: string | undefined;
928
+ };
929
+ bls?: string | {
930
+ path: string;
931
+ password?: string | undefined;
932
+ } | undefined;
933
+ })[] | {
946
934
  address: string;
947
- remoteSignerUrl?: string | null | undefined;
948
- certPath?: string | null | undefined;
949
- certPass?: string | null | undefined;
935
+ remoteSignerUrl: string;
936
+ certPath?: string | undefined;
937
+ certPass?: string | undefined;
950
938
  } | {
951
939
  path: string;
952
- password?: string | null | undefined;
940
+ password?: string | undefined;
953
941
  } | {
954
942
  mnemonic: string;
955
943
  addressIndex?: number | undefined;
956
944
  accountIndex?: number | undefined;
957
945
  addressCount?: number | undefined;
958
946
  accountCount?: number | undefined;
959
- })[];
960
- feeRecipient: string;
961
- publisher?: string | {
947
+ } | {
948
+ eth: string | {
949
+ address: string;
950
+ remoteSignerUrl: string;
951
+ certPath?: string | undefined;
952
+ certPass?: string | undefined;
953
+ } | {
954
+ path: string;
955
+ password?: string | undefined;
956
+ };
957
+ bls?: string | {
958
+ path: string;
959
+ password?: string | undefined;
960
+ } | undefined;
961
+ };
962
+ coinbase?: string | undefined;
963
+ publisher?: string | (string | {
962
964
  address: string;
963
- remoteSignerUrl?: string | null | undefined;
964
- certPath?: string | null | undefined;
965
- certPass?: string | null | undefined;
965
+ remoteSignerUrl: string;
966
+ certPath?: string | undefined;
967
+ certPass?: string | undefined;
966
968
  } | {
967
969
  path: string;
968
- password?: string | null | undefined;
969
- } | {
970
- mnemonic: string;
971
- addressIndex?: number | undefined;
972
- accountIndex?: number | undefined;
973
- addressCount?: number | undefined;
974
- accountCount?: number | undefined;
975
- } | (string | {
970
+ password?: string | undefined;
971
+ })[] | {
976
972
  address: string;
977
- remoteSignerUrl?: string | null | undefined;
978
- certPath?: string | null | undefined;
979
- certPass?: string | null | undefined;
973
+ remoteSignerUrl: string;
974
+ certPath?: string | undefined;
975
+ certPass?: string | undefined;
980
976
  } | {
981
977
  path: string;
982
- password?: string | null | undefined;
978
+ password?: string | undefined;
983
979
  } | {
984
980
  mnemonic: string;
985
981
  addressIndex?: number | undefined;
986
982
  accountIndex?: number | undefined;
987
983
  addressCount?: number | undefined;
988
984
  accountCount?: number | undefined;
989
- })[] | null | undefined;
990
- coinbase?: string | null | undefined;
985
+ } | undefined;
986
+ feeRecipient?: any;
991
987
  remoteSigner?: string | {
992
988
  remoteSignerUrl: string;
993
- certPath?: string | null | undefined;
994
- certPass?: string | null | undefined;
995
- } | null | undefined;
989
+ certPath?: string | undefined;
990
+ certPass?: string | undefined;
991
+ } | undefined;
996
992
  fundingAccount?: string | {
997
993
  address: string;
998
- remoteSignerUrl?: string | null | undefined;
999
- certPath?: string | null | undefined;
1000
- certPass?: string | null | undefined;
994
+ remoteSignerUrl: string;
995
+ certPath?: string | undefined;
996
+ certPass?: string | undefined;
1001
997
  } | {
1002
998
  path: string;
1003
- password?: string | null | undefined;
1004
- } | {
1005
- mnemonic: string;
1006
- addressIndex?: number | undefined;
1007
- accountIndex?: number | undefined;
1008
- addressCount?: number | undefined;
1009
- accountCount?: number | undefined;
1010
- } | null | undefined;
1011
- }[] | null | undefined;
1012
- slasher?: string | {
999
+ password?: string | undefined;
1000
+ } | undefined;
1001
+ }[] | undefined;
1002
+ slasher?: string | (string | {
1013
1003
  address: string;
1014
- remoteSignerUrl?: string | null | undefined;
1015
- certPath?: string | null | undefined;
1016
- certPass?: string | null | undefined;
1004
+ remoteSignerUrl: string;
1005
+ certPath?: string | undefined;
1006
+ certPass?: string | undefined;
1017
1007
  } | {
1018
1008
  path: string;
1019
- password?: string | null | undefined;
1020
- } | {
1021
- mnemonic: string;
1022
- addressIndex?: number | undefined;
1023
- accountIndex?: number | undefined;
1024
- addressCount?: number | undefined;
1025
- accountCount?: number | undefined;
1026
- } | (string | {
1009
+ password?: string | undefined;
1010
+ })[] | {
1027
1011
  address: string;
1028
- remoteSignerUrl?: string | null | undefined;
1029
- certPath?: string | null | undefined;
1030
- certPass?: string | null | undefined;
1012
+ remoteSignerUrl: string;
1013
+ certPath?: string | undefined;
1014
+ certPass?: string | undefined;
1031
1015
  } | {
1032
1016
  path: string;
1033
- password?: string | null | undefined;
1017
+ password?: string | undefined;
1034
1018
  } | {
1035
1019
  mnemonic: string;
1036
1020
  addressIndex?: number | undefined;
1037
1021
  accountIndex?: number | undefined;
1038
1022
  addressCount?: number | undefined;
1039
1023
  accountCount?: number | undefined;
1040
- })[] | null | undefined;
1024
+ } | undefined;
1025
+ remoteSigner?: string | {
1026
+ remoteSignerUrl: string;
1027
+ certPath?: string | undefined;
1028
+ certPass?: string | undefined;
1029
+ } | undefined;
1041
1030
  prover?: string | {
1042
1031
  address: string;
1043
- remoteSignerUrl?: string | null | undefined;
1044
- certPath?: string | null | undefined;
1045
- certPass?: string | null | undefined;
1032
+ remoteSignerUrl: string;
1033
+ certPath?: string | undefined;
1034
+ certPass?: string | undefined;
1046
1035
  } | {
1047
1036
  path: string;
1048
- password?: string | null | undefined;
1049
- } | {
1050
- mnemonic: string;
1051
- addressIndex?: number | undefined;
1052
- accountIndex?: number | undefined;
1053
- addressCount?: number | undefined;
1054
- accountCount?: number | undefined;
1037
+ password?: string | undefined;
1055
1038
  } | {
1056
1039
  id: string;
1057
- publisher: string | {
1040
+ publisher: string | (string | {
1058
1041
  address: string;
1059
- remoteSignerUrl?: string | null | undefined;
1060
- certPath?: string | null | undefined;
1061
- certPass?: string | null | undefined;
1042
+ remoteSignerUrl: string;
1043
+ certPath?: string | undefined;
1044
+ certPass?: string | undefined;
1062
1045
  } | {
1063
1046
  path: string;
1064
- password?: string | null | undefined;
1065
- } | {
1066
- mnemonic: string;
1067
- addressIndex?: number | undefined;
1068
- accountIndex?: number | undefined;
1069
- addressCount?: number | undefined;
1070
- accountCount?: number | undefined;
1071
- } | (string | {
1047
+ password?: string | undefined;
1048
+ })[] | {
1072
1049
  address: string;
1073
- remoteSignerUrl?: string | null | undefined;
1074
- certPath?: string | null | undefined;
1075
- certPass?: string | null | undefined;
1050
+ remoteSignerUrl: string;
1051
+ certPath?: string | undefined;
1052
+ certPass?: string | undefined;
1076
1053
  } | {
1077
1054
  path: string;
1078
- password?: string | null | undefined;
1055
+ password?: string | undefined;
1079
1056
  } | {
1080
1057
  mnemonic: string;
1081
1058
  addressIndex?: number | undefined;
1082
1059
  accountIndex?: number | undefined;
1083
1060
  addressCount?: number | undefined;
1084
1061
  accountCount?: number | undefined;
1085
- })[];
1086
- } | null | undefined;
1087
- }>, {
1088
- schemaVersion: 1;
1089
- remoteSigner?: string | {
1090
- remoteSignerUrl: string;
1091
- certPath?: string | null | undefined;
1092
- certPass?: string | null | undefined;
1093
- } | null | undefined;
1062
+ };
1063
+ } | undefined;
1094
1064
  fundingAccount?: string | {
1095
1065
  address: string;
1096
- remoteSignerUrl?: string | null | undefined;
1097
- certPath?: string | null | undefined;
1098
- certPass?: string | null | undefined;
1066
+ remoteSignerUrl: string;
1067
+ certPath?: string | undefined;
1068
+ certPass?: string | undefined;
1099
1069
  } | {
1100
1070
  path: string;
1101
- password?: string | null | undefined;
1102
- } | {
1103
- mnemonic: string;
1104
- addressIndex: number;
1105
- accountIndex: number;
1106
- addressCount: number;
1107
- accountCount: number;
1108
- } | null | undefined;
1071
+ password?: string | undefined;
1072
+ } | undefined;
1073
+ }>, {
1074
+ schemaVersion: 1;
1109
1075
  validators?: {
1110
- attester: string | {
1111
- address: string;
1112
- remoteSignerUrl?: string | null | undefined;
1113
- certPath?: string | null | undefined;
1114
- certPass?: string | null | undefined;
1076
+ attester: (import("@aztec/foundation/schemas").EthAddress | {
1077
+ address: import("@aztec/foundation/schemas").EthAddress;
1078
+ remoteSignerUrl: string;
1079
+ certPath?: string | undefined;
1080
+ certPass?: string | undefined;
1115
1081
  } | {
1116
1082
  path: string;
1117
- password?: string | null | undefined;
1118
- } | {
1119
- mnemonic: string;
1120
- addressIndex: number;
1121
- accountIndex: number;
1122
- addressCount: number;
1123
- accountCount: number;
1124
- } | (string | {
1125
- address: string;
1126
- remoteSignerUrl?: string | null | undefined;
1127
- certPath?: string | null | undefined;
1128
- certPass?: string | null | undefined;
1083
+ password?: string | undefined;
1084
+ } | {
1085
+ eth: import("@aztec/foundation/schemas").EthAddress | {
1086
+ address: import("@aztec/foundation/schemas").EthAddress;
1087
+ remoteSignerUrl: string;
1088
+ certPath?: string | undefined;
1089
+ certPass?: string | undefined;
1090
+ } | {
1091
+ path: string;
1092
+ password?: string | undefined;
1093
+ } | EthPrivateKey;
1094
+ bls?: {
1095
+ path: string;
1096
+ password?: string | undefined;
1097
+ } | BLSPrivateKey | undefined;
1098
+ } | EthPrivateKey)[] | import("@aztec/foundation/schemas").EthAddress | {
1099
+ address: import("@aztec/foundation/schemas").EthAddress;
1100
+ remoteSignerUrl: string;
1101
+ certPath?: string | undefined;
1102
+ certPass?: string | undefined;
1129
1103
  } | {
1130
1104
  path: string;
1131
- password?: string | null | undefined;
1105
+ password?: string | undefined;
1132
1106
  } | {
1133
1107
  mnemonic: string;
1134
1108
  addressIndex: number;
1135
1109
  accountIndex: number;
1136
1110
  addressCount: number;
1137
1111
  accountCount: number;
1138
- })[];
1139
- feeRecipient: string;
1140
- publisher?: string | {
1141
- address: string;
1142
- remoteSignerUrl?: string | null | undefined;
1143
- certPath?: string | null | undefined;
1144
- certPass?: string | null | undefined;
1145
1112
  } | {
1146
- path: string;
1147
- password?: string | null | undefined;
1113
+ eth: import("@aztec/foundation/schemas").EthAddress | {
1114
+ address: import("@aztec/foundation/schemas").EthAddress;
1115
+ remoteSignerUrl: string;
1116
+ certPath?: string | undefined;
1117
+ certPass?: string | undefined;
1118
+ } | {
1119
+ path: string;
1120
+ password?: string | undefined;
1121
+ } | EthPrivateKey;
1122
+ bls?: {
1123
+ path: string;
1124
+ password?: string | undefined;
1125
+ } | BLSPrivateKey | undefined;
1126
+ } | EthPrivateKey;
1127
+ coinbase?: import("@aztec/foundation/schemas").EthAddress | undefined;
1128
+ publisher?: (import("@aztec/foundation/schemas").EthAddress | {
1129
+ address: import("@aztec/foundation/schemas").EthAddress;
1130
+ remoteSignerUrl: string;
1131
+ certPath?: string | undefined;
1132
+ certPass?: string | undefined;
1148
1133
  } | {
1149
- mnemonic: string;
1150
- addressIndex: number;
1151
- accountIndex: number;
1152
- addressCount: number;
1153
- accountCount: number;
1154
- } | (string | {
1155
- address: string;
1156
- remoteSignerUrl?: string | null | undefined;
1157
- certPath?: string | null | undefined;
1158
- certPass?: string | null | undefined;
1134
+ path: string;
1135
+ password?: string | undefined;
1136
+ } | EthPrivateKey)[] | import("@aztec/foundation/schemas").EthAddress | {
1137
+ address: import("@aztec/foundation/schemas").EthAddress;
1138
+ remoteSignerUrl: string;
1139
+ certPath?: string | undefined;
1140
+ certPass?: string | undefined;
1159
1141
  } | {
1160
1142
  path: string;
1161
- password?: string | null | undefined;
1143
+ password?: string | undefined;
1162
1144
  } | {
1163
1145
  mnemonic: string;
1164
1146
  addressIndex: number;
1165
1147
  accountIndex: number;
1166
1148
  addressCount: number;
1167
1149
  accountCount: number;
1168
- })[] | null | undefined;
1169
- coinbase?: string | null | undefined;
1150
+ } | EthPrivateKey | undefined;
1151
+ feeRecipient: AztecAddress;
1170
1152
  remoteSigner?: string | {
1171
1153
  remoteSignerUrl: string;
1172
- certPath?: string | null | undefined;
1173
- certPass?: string | null | undefined;
1174
- } | null | undefined;
1175
- fundingAccount?: string | {
1176
- address: string;
1177
- remoteSignerUrl?: string | null | undefined;
1178
- certPath?: string | null | undefined;
1179
- certPass?: string | null | undefined;
1154
+ certPath?: string | undefined;
1155
+ certPass?: string | undefined;
1156
+ } | undefined;
1157
+ fundingAccount?: import("@aztec/foundation/schemas").EthAddress | {
1158
+ address: import("@aztec/foundation/schemas").EthAddress;
1159
+ remoteSignerUrl: string;
1160
+ certPath?: string | undefined;
1161
+ certPass?: string | undefined;
1180
1162
  } | {
1181
1163
  path: string;
1182
- password?: string | null | undefined;
1183
- } | {
1184
- mnemonic: string;
1185
- addressIndex: number;
1186
- accountIndex: number;
1187
- addressCount: number;
1188
- accountCount: number;
1189
- } | null | undefined;
1190
- }[] | null | undefined;
1191
- slasher?: string | {
1192
- address: string;
1193
- remoteSignerUrl?: string | null | undefined;
1194
- certPath?: string | null | undefined;
1195
- certPass?: string | null | undefined;
1164
+ password?: string | undefined;
1165
+ } | EthPrivateKey | undefined;
1166
+ }[] | undefined;
1167
+ slasher?: (import("@aztec/foundation/schemas").EthAddress | {
1168
+ address: import("@aztec/foundation/schemas").EthAddress;
1169
+ remoteSignerUrl: string;
1170
+ certPath?: string | undefined;
1171
+ certPass?: string | undefined;
1196
1172
  } | {
1197
1173
  path: string;
1198
- password?: string | null | undefined;
1199
- } | {
1200
- mnemonic: string;
1201
- addressIndex: number;
1202
- accountIndex: number;
1203
- addressCount: number;
1204
- accountCount: number;
1205
- } | (string | {
1206
- address: string;
1207
- remoteSignerUrl?: string | null | undefined;
1208
- certPath?: string | null | undefined;
1209
- certPass?: string | null | undefined;
1174
+ password?: string | undefined;
1175
+ } | EthPrivateKey)[] | import("@aztec/foundation/schemas").EthAddress | {
1176
+ address: import("@aztec/foundation/schemas").EthAddress;
1177
+ remoteSignerUrl: string;
1178
+ certPath?: string | undefined;
1179
+ certPass?: string | undefined;
1210
1180
  } | {
1211
1181
  path: string;
1212
- password?: string | null | undefined;
1182
+ password?: string | undefined;
1213
1183
  } | {
1214
1184
  mnemonic: string;
1215
1185
  addressIndex: number;
1216
1186
  accountIndex: number;
1217
1187
  addressCount: number;
1218
1188
  accountCount: number;
1219
- })[] | null | undefined;
1220
- prover?: string | {
1221
- address: string;
1222
- remoteSignerUrl?: string | null | undefined;
1223
- certPath?: string | null | undefined;
1224
- certPass?: string | null | undefined;
1189
+ } | EthPrivateKey | undefined;
1190
+ remoteSigner?: string | {
1191
+ remoteSignerUrl: string;
1192
+ certPath?: string | undefined;
1193
+ certPass?: string | undefined;
1194
+ } | undefined;
1195
+ prover?: import("@aztec/foundation/schemas").EthAddress | {
1196
+ address: import("@aztec/foundation/schemas").EthAddress;
1197
+ remoteSignerUrl: string;
1198
+ certPath?: string | undefined;
1199
+ certPass?: string | undefined;
1225
1200
  } | {
1226
1201
  path: string;
1227
- password?: string | null | undefined;
1228
- } | {
1229
- mnemonic: string;
1230
- addressIndex: number;
1231
- accountIndex: number;
1232
- addressCount: number;
1233
- accountCount: number;
1202
+ password?: string | undefined;
1234
1203
  } | {
1235
- id: string;
1236
- publisher: string | {
1237
- address: string;
1238
- remoteSignerUrl?: string | null | undefined;
1239
- certPath?: string | null | undefined;
1240
- certPass?: string | null | undefined;
1204
+ id: import("@aztec/foundation/schemas").EthAddress;
1205
+ publisher: (import("@aztec/foundation/schemas").EthAddress | {
1206
+ address: import("@aztec/foundation/schemas").EthAddress;
1207
+ remoteSignerUrl: string;
1208
+ certPath?: string | undefined;
1209
+ certPass?: string | undefined;
1241
1210
  } | {
1242
1211
  path: string;
1243
- password?: string | null | undefined;
1244
- } | {
1245
- mnemonic: string;
1246
- addressIndex: number;
1247
- accountIndex: number;
1248
- addressCount: number;
1249
- accountCount: number;
1250
- } | (string | {
1251
- address: string;
1252
- remoteSignerUrl?: string | null | undefined;
1253
- certPath?: string | null | undefined;
1254
- certPass?: string | null | undefined;
1212
+ password?: string | undefined;
1213
+ } | EthPrivateKey)[] | import("@aztec/foundation/schemas").EthAddress | {
1214
+ address: import("@aztec/foundation/schemas").EthAddress;
1215
+ remoteSignerUrl: string;
1216
+ certPath?: string | undefined;
1217
+ certPass?: string | undefined;
1255
1218
  } | {
1256
1219
  path: string;
1257
- password?: string | null | undefined;
1220
+ password?: string | undefined;
1258
1221
  } | {
1259
1222
  mnemonic: string;
1260
1223
  addressIndex: number;
1261
1224
  accountIndex: number;
1262
1225
  addressCount: number;
1263
1226
  accountCount: number;
1264
- })[];
1265
- } | null | undefined;
1266
- }, {
1267
- schemaVersion: 1;
1268
- remoteSigner?: string | {
1227
+ } | EthPrivateKey;
1228
+ } | EthPrivateKey | undefined;
1229
+ fundingAccount?: import("@aztec/foundation/schemas").EthAddress | {
1230
+ address: import("@aztec/foundation/schemas").EthAddress;
1269
1231
  remoteSignerUrl: string;
1270
- certPath?: string | null | undefined;
1271
- certPass?: string | null | undefined;
1272
- } | null | undefined;
1273
- fundingAccount?: string | {
1274
- address: string;
1275
- remoteSignerUrl?: string | null | undefined;
1276
- certPath?: string | null | undefined;
1277
- certPass?: string | null | undefined;
1232
+ certPath?: string | undefined;
1233
+ certPass?: string | undefined;
1278
1234
  } | {
1279
1235
  path: string;
1280
- password?: string | null | undefined;
1281
- } | {
1282
- mnemonic: string;
1283
- addressIndex?: number | undefined;
1284
- accountIndex?: number | undefined;
1285
- addressCount?: number | undefined;
1286
- accountCount?: number | undefined;
1287
- } | null | undefined;
1236
+ password?: string | undefined;
1237
+ } | EthPrivateKey | undefined;
1238
+ }, {
1239
+ schemaVersion: 1;
1288
1240
  validators?: {
1289
- attester: string | {
1241
+ attester: string | (string | {
1290
1242
  address: string;
1291
- remoteSignerUrl?: string | null | undefined;
1292
- certPath?: string | null | undefined;
1293
- certPass?: string | null | undefined;
1243
+ remoteSignerUrl: string;
1244
+ certPath?: string | undefined;
1245
+ certPass?: string | undefined;
1294
1246
  } | {
1295
1247
  path: string;
1296
- password?: string | null | undefined;
1297
- } | {
1298
- mnemonic: string;
1299
- addressIndex?: number | undefined;
1300
- accountIndex?: number | undefined;
1301
- addressCount?: number | undefined;
1302
- accountCount?: number | undefined;
1303
- } | (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
+ })[] | {
1304
1264
  address: string;
1305
- remoteSignerUrl?: string | null | undefined;
1306
- certPath?: string | null | undefined;
1307
- certPass?: string | null | undefined;
1265
+ remoteSignerUrl: string;
1266
+ certPath?: string | undefined;
1267
+ certPass?: string | undefined;
1308
1268
  } | {
1309
1269
  path: string;
1310
- password?: string | null | undefined;
1270
+ password?: string | undefined;
1311
1271
  } | {
1312
1272
  mnemonic: string;
1313
1273
  addressIndex?: number | undefined;
1314
1274
  accountIndex?: number | undefined;
1315
1275
  addressCount?: number | undefined;
1316
1276
  accountCount?: number | undefined;
1317
- })[];
1318
- feeRecipient: string;
1319
- publisher?: string | {
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 | {
1320
1294
  address: string;
1321
- remoteSignerUrl?: string | null | undefined;
1322
- certPath?: string | null | undefined;
1323
- certPass?: string | null | undefined;
1295
+ remoteSignerUrl: string;
1296
+ certPath?: string | undefined;
1297
+ certPass?: string | undefined;
1324
1298
  } | {
1325
1299
  path: string;
1326
- password?: string | null | undefined;
1327
- } | {
1328
- mnemonic: string;
1329
- addressIndex?: number | undefined;
1330
- accountIndex?: number | undefined;
1331
- addressCount?: number | undefined;
1332
- accountCount?: number | undefined;
1333
- } | (string | {
1300
+ password?: string | undefined;
1301
+ })[] | {
1334
1302
  address: string;
1335
- remoteSignerUrl?: string | null | undefined;
1336
- certPath?: string | null | undefined;
1337
- certPass?: string | null | undefined;
1303
+ remoteSignerUrl: string;
1304
+ certPath?: string | undefined;
1305
+ certPass?: string | undefined;
1338
1306
  } | {
1339
1307
  path: string;
1340
- password?: string | null | undefined;
1308
+ password?: string | undefined;
1341
1309
  } | {
1342
1310
  mnemonic: string;
1343
1311
  addressIndex?: number | undefined;
1344
1312
  accountIndex?: number | undefined;
1345
1313
  addressCount?: number | undefined;
1346
1314
  accountCount?: number | undefined;
1347
- })[] | null | undefined;
1348
- coinbase?: string | null | undefined;
1315
+ } | undefined;
1316
+ feeRecipient?: any;
1349
1317
  remoteSigner?: string | {
1350
1318
  remoteSignerUrl: string;
1351
- certPath?: string | null | undefined;
1352
- certPass?: string | null | undefined;
1353
- } | null | undefined;
1319
+ certPath?: string | undefined;
1320
+ certPass?: string | undefined;
1321
+ } | undefined;
1354
1322
  fundingAccount?: string | {
1355
1323
  address: string;
1356
- remoteSignerUrl?: string | null | undefined;
1357
- certPath?: string | null | undefined;
1358
- certPass?: string | null | undefined;
1324
+ remoteSignerUrl: string;
1325
+ certPath?: string | undefined;
1326
+ certPass?: string | undefined;
1359
1327
  } | {
1360
1328
  path: string;
1361
- password?: string | null | undefined;
1362
- } | {
1363
- mnemonic: string;
1364
- addressIndex?: number | undefined;
1365
- accountIndex?: number | undefined;
1366
- addressCount?: number | undefined;
1367
- accountCount?: number | undefined;
1368
- } | null | undefined;
1369
- }[] | null | undefined;
1370
- slasher?: string | {
1329
+ password?: string | undefined;
1330
+ } | undefined;
1331
+ }[] | undefined;
1332
+ slasher?: string | (string | {
1371
1333
  address: string;
1372
- remoteSignerUrl?: string | null | undefined;
1373
- certPath?: string | null | undefined;
1374
- certPass?: string | null | undefined;
1334
+ remoteSignerUrl: string;
1335
+ certPath?: string | undefined;
1336
+ certPass?: string | undefined;
1375
1337
  } | {
1376
1338
  path: string;
1377
- password?: string | null | undefined;
1378
- } | {
1379
- mnemonic: string;
1380
- addressIndex?: number | undefined;
1381
- accountIndex?: number | undefined;
1382
- addressCount?: number | undefined;
1383
- accountCount?: number | undefined;
1384
- } | (string | {
1339
+ password?: string | undefined;
1340
+ })[] | {
1385
1341
  address: string;
1386
- remoteSignerUrl?: string | null | undefined;
1387
- certPath?: string | null | undefined;
1388
- certPass?: string | null | undefined;
1342
+ remoteSignerUrl: string;
1343
+ certPath?: string | undefined;
1344
+ certPass?: string | undefined;
1389
1345
  } | {
1390
1346
  path: string;
1391
- password?: string | null | undefined;
1347
+ password?: string | undefined;
1392
1348
  } | {
1393
1349
  mnemonic: string;
1394
1350
  addressIndex?: number | undefined;
1395
1351
  accountIndex?: number | undefined;
1396
1352
  addressCount?: number | undefined;
1397
1353
  accountCount?: number | undefined;
1398
- })[] | null | undefined;
1354
+ } | undefined;
1355
+ remoteSigner?: string | {
1356
+ remoteSignerUrl: string;
1357
+ certPath?: string | undefined;
1358
+ certPass?: string | undefined;
1359
+ } | undefined;
1399
1360
  prover?: string | {
1400
1361
  address: string;
1401
- remoteSignerUrl?: string | null | undefined;
1402
- certPath?: string | null | undefined;
1403
- certPass?: string | null | undefined;
1362
+ remoteSignerUrl: string;
1363
+ certPath?: string | undefined;
1364
+ certPass?: string | undefined;
1404
1365
  } | {
1405
1366
  path: string;
1406
- password?: string | null | undefined;
1407
- } | {
1408
- mnemonic: string;
1409
- addressIndex?: number | undefined;
1410
- accountIndex?: number | undefined;
1411
- addressCount?: number | undefined;
1412
- accountCount?: number | undefined;
1367
+ password?: string | undefined;
1413
1368
  } | {
1414
1369
  id: string;
1415
- publisher: string | {
1370
+ publisher: string | (string | {
1416
1371
  address: string;
1417
- remoteSignerUrl?: string | null | undefined;
1418
- certPath?: string | null | undefined;
1419
- certPass?: string | null | undefined;
1372
+ remoteSignerUrl: string;
1373
+ certPath?: string | undefined;
1374
+ certPass?: string | undefined;
1420
1375
  } | {
1421
1376
  path: string;
1422
- password?: string | null | undefined;
1423
- } | {
1424
- mnemonic: string;
1425
- addressIndex?: number | undefined;
1426
- accountIndex?: number | undefined;
1427
- addressCount?: number | undefined;
1428
- accountCount?: number | undefined;
1429
- } | (string | {
1377
+ password?: string | undefined;
1378
+ })[] | {
1430
1379
  address: string;
1431
- remoteSignerUrl?: string | null | undefined;
1432
- certPath?: string | null | undefined;
1433
- certPass?: string | null | undefined;
1380
+ remoteSignerUrl: string;
1381
+ certPath?: string | undefined;
1382
+ certPass?: string | undefined;
1434
1383
  } | {
1435
1384
  path: string;
1436
- password?: string | null | undefined;
1385
+ password?: string | undefined;
1437
1386
  } | {
1438
1387
  mnemonic: string;
1439
1388
  addressIndex?: number | undefined;
1440
1389
  accountIndex?: number | undefined;
1441
1390
  addressCount?: number | undefined;
1442
1391
  accountCount?: number | undefined;
1443
- })[];
1444
- } | null | undefined;
1445
- }>;
1446
- export type KeyStoreSchema = z.infer<typeof keystoreSchema>;
1447
- //# sourceMappingURL=schemas.d.ts.map
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/schemas").EthAddress, any, string>, z.ZodObject<{
1407
+ address: z.ZodType<import("@aztec/foundation/schemas").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/schemas").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/schemas").EthAddress, any, string>, z.ZodObject<{
1432
+ address: z.ZodType<import("@aztec/foundation/schemas").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/schemas").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/schemas").EthAddress | {
1468
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress, any, string>, z.ZodObject<{
1495
+ address: z.ZodType<import("@aztec/foundation/schemas").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/schemas").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/schemas").EthAddress, any, string>, z.ZodObject<{
1520
+ address: z.ZodType<import("@aztec/foundation/schemas").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/schemas").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/schemas").EthAddress | {
1556
+ address: import("@aztec/foundation/schemas").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/schemas").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/schemas").EthAddress, any, string>, z.ZodObject<{
1603
+ address: z.ZodType<import("@aztec/foundation/schemas").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/schemas").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/schemas").EthAddress, any, string>, z.ZodObject<{
1627
+ address: z.ZodType<import("@aztec/foundation/schemas").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/schemas").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/schemas").EthAddress, any, string>, z.ZodObject<{
1684
+ address: z.ZodType<import("@aztec/foundation/schemas").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/schemas").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/schemas").EthAddress | {
1710
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress | {
1719
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress | {
1732
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress | {
1747
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress | undefined;
1761
+ publisher?: (import("@aztec/foundation/schemas").EthAddress | {
1762
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress | {
1770
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress | {
1791
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress, any, string>, z.ZodObject<{
1892
+ address: z.ZodType<import("@aztec/foundation/schemas").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/schemas").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/schemas").EthAddress, any, string>, z.ZodObject<{
1916
+ address: z.ZodType<import("@aztec/foundation/schemas").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/schemas").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/schemas").EthAddress, any, string>, z.ZodObject<{
1972
+ address: z.ZodType<import("@aztec/foundation/schemas").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/schemas").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/schemas").EthAddress, any, string>;
1997
+ publisher: z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
1998
+ address: z.ZodType<import("@aztec/foundation/schemas").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/schemas").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/schemas").EthAddress, any, string>, z.ZodObject<{
2022
+ address: z.ZodType<import("@aztec/foundation/schemas").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/schemas").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/schemas").EthAddress;
2066
+ publisher: (import("@aztec/foundation/schemas").EthAddress | {
2067
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress | {
2075
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress, any, string>, z.ZodObject<{
2116
+ address: z.ZodType<import("@aztec/foundation/schemas").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/schemas").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/schemas").EthAddress, any, string>, z.ZodObject<{
2141
+ address: z.ZodType<import("@aztec/foundation/schemas").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/schemas").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/schemas").EthAddress, any, string>, z.ZodObject<{
2165
+ address: z.ZodType<import("@aztec/foundation/schemas").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/schemas").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/schemas").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/schemas").EthAddress | {
2213
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress | {
2222
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress | {
2235
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress | {
2250
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress | undefined;
2264
+ publisher?: (import("@aztec/foundation/schemas").EthAddress | {
2265
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress | {
2273
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress | {
2294
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress | {
2304
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress | {
2312
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress | {
2332
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress;
2341
+ publisher: (import("@aztec/foundation/schemas").EthAddress | {
2342
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress | {
2350
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress | {
2366
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress | {
2375
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress | {
2383
+ address: import("@aztec/foundation/schemas").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/schemas").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;
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/schemas").EthAddress | {
2593
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress | {
2602
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress | {
2615
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress | {
2630
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress | undefined;
2644
+ publisher?: (import("@aztec/foundation/schemas").EthAddress | {
2645
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress | {
2653
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress | {
2674
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress | {
2684
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress | {
2692
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress | {
2712
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress;
2721
+ publisher: (import("@aztec/foundation/schemas").EthAddress | {
2722
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress | {
2730
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress | {
2746
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress | {
2755
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress | {
2763
+ address: import("@aztec/foundation/schemas").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/schemas").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 | {
2897
+ remoteSignerUrl: string;
2898
+ certPath?: string | undefined;
2899
+ certPass?: string | undefined;
2900
+ } | undefined;
2901
+ prover?: string | {
2902
+ address: string;
2903
+ remoteSignerUrl: string;
2904
+ certPath?: string | undefined;
2905
+ certPass?: string | undefined;
2906
+ } | {
2907
+ path: string;
2908
+ password?: string | undefined;
2909
+ } | {
2910
+ id: string;
2911
+ publisher: string | (string | {
2912
+ address: string;
2913
+ remoteSignerUrl: string;
2914
+ certPath?: string | undefined;
2915
+ certPass?: string | undefined;
2916
+ } | {
2917
+ path: string;
2918
+ password?: string | undefined;
2919
+ })[] | {
2920
+ address: string;
2921
+ remoteSignerUrl: string;
2922
+ certPath?: string | undefined;
2923
+ certPass?: string | undefined;
2924
+ } | {
2925
+ path: string;
2926
+ password?: string | undefined;
2927
+ } | {
2928
+ mnemonic: string;
2929
+ addressIndex?: number | undefined;
2930
+ accountIndex?: number | undefined;
2931
+ addressCount?: number | undefined;
2932
+ accountCount?: number | undefined;
2933
+ };
2934
+ } | undefined;
2935
+ fundingAccount?: string | {
2936
+ address: string;
2937
+ remoteSignerUrl: string;
2938
+ certPath?: string | undefined;
2939
+ certPass?: string | undefined;
2940
+ } | {
2941
+ path: string;
2942
+ password?: string | undefined;
2943
+ } | undefined;
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;
2954
+ remoteSignerUrl: string;
2955
+ certPath?: string | undefined;
2956
+ certPass?: string | undefined;
2957
+ } | {
2958
+ path: string;
2959
+ password?: string | undefined;
2960
+ } | {
2961
+ mnemonic: string;
2962
+ addressIndex?: number | undefined;
2963
+ accountIndex?: number | undefined;
2964
+ addressCount?: number | undefined;
2965
+ accountCount?: number | undefined;
2966
+ } | undefined;
2967
+ coinbase?: string | undefined;
2968
+ feeRecipient?: any;
2969
+ }>, {
2970
+ schemaVersion: 2;
2971
+ validators?: {
2972
+ attester: (import("@aztec/foundation/schemas").EthAddress | {
2973
+ address: import("@aztec/foundation/schemas").EthAddress;
2974
+ remoteSignerUrl: string;
2975
+ certPath?: string | undefined;
2976
+ certPass?: string | undefined;
2977
+ } | {
2978
+ path: string;
2979
+ password?: string | undefined;
2980
+ } | {
2981
+ eth: import("@aztec/foundation/schemas").EthAddress | {
2982
+ address: import("@aztec/foundation/schemas").EthAddress;
2983
+ remoteSignerUrl: string;
2984
+ certPath?: string | undefined;
2985
+ certPass?: string | undefined;
2986
+ } | {
2987
+ path: string;
2988
+ password?: string | undefined;
2989
+ } | EthPrivateKey;
2990
+ bls?: {
2991
+ path: string;
2992
+ password?: string | undefined;
2993
+ } | BLSPrivateKey | undefined;
2994
+ } | EthPrivateKey)[] | import("@aztec/foundation/schemas").EthAddress | {
2995
+ address: import("@aztec/foundation/schemas").EthAddress;
2996
+ remoteSignerUrl: string;
2997
+ certPath?: string | undefined;
2998
+ certPass?: string | undefined;
2999
+ } | {
3000
+ path: string;
3001
+ password?: string | undefined;
3002
+ } | {
3003
+ mnemonic: string;
3004
+ addressIndex: number;
3005
+ accountIndex: number;
3006
+ addressCount: number;
3007
+ accountCount: number;
3008
+ } | {
3009
+ eth: import("@aztec/foundation/schemas").EthAddress | {
3010
+ address: import("@aztec/foundation/schemas").EthAddress;
3011
+ remoteSignerUrl: string;
3012
+ certPath?: string | undefined;
3013
+ certPass?: string | undefined;
3014
+ } | {
3015
+ path: string;
3016
+ password?: string | undefined;
3017
+ } | EthPrivateKey;
3018
+ bls?: {
3019
+ path: string;
3020
+ password?: string | undefined;
3021
+ } | BLSPrivateKey | undefined;
3022
+ } | EthPrivateKey;
3023
+ coinbase?: import("@aztec/foundation/schemas").EthAddress | undefined;
3024
+ publisher?: (import("@aztec/foundation/schemas").EthAddress | {
3025
+ address: import("@aztec/foundation/schemas").EthAddress;
3026
+ remoteSignerUrl: string;
3027
+ certPath?: string | undefined;
3028
+ certPass?: string | undefined;
3029
+ } | {
3030
+ path: string;
3031
+ password?: string | undefined;
3032
+ } | EthPrivateKey)[] | import("@aztec/foundation/schemas").EthAddress | {
3033
+ address: import("@aztec/foundation/schemas").EthAddress;
3034
+ remoteSignerUrl: string;
3035
+ certPath?: string | undefined;
3036
+ certPass?: string | undefined;
3037
+ } | {
3038
+ path: string;
3039
+ password?: string | undefined;
3040
+ } | {
3041
+ mnemonic: string;
3042
+ addressIndex: number;
3043
+ accountIndex: number;
3044
+ addressCount: number;
3045
+ accountCount: number;
3046
+ } | EthPrivateKey | undefined;
3047
+ feeRecipient?: AztecAddress | undefined;
3048
+ remoteSigner?: string | {
3049
+ remoteSignerUrl: string;
3050
+ certPath?: string | undefined;
3051
+ certPass?: string | undefined;
3052
+ } | undefined;
3053
+ fundingAccount?: import("@aztec/foundation/schemas").EthAddress | {
3054
+ address: import("@aztec/foundation/schemas").EthAddress;
3055
+ remoteSignerUrl: string;
3056
+ certPath?: string | undefined;
3057
+ certPass?: string | undefined;
3058
+ } | {
3059
+ path: string;
3060
+ password?: string | undefined;
3061
+ } | EthPrivateKey | undefined;
3062
+ }[] | undefined;
3063
+ slasher?: (import("@aztec/foundation/schemas").EthAddress | {
3064
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress | {
3072
+ address: import("@aztec/foundation/schemas").EthAddress;
3073
+ remoteSignerUrl: string;
3074
+ certPath?: string | undefined;
3075
+ certPass?: string | undefined;
3076
+ } | {
3077
+ path: string;
3078
+ password?: string | undefined;
3079
+ } | {
3080
+ mnemonic: string;
3081
+ addressIndex: number;
3082
+ accountIndex: number;
3083
+ addressCount: number;
3084
+ accountCount: number;
3085
+ } | EthPrivateKey | undefined;
3086
+ remoteSigner?: string | {
3087
+ remoteSignerUrl: string;
3088
+ certPath?: string | undefined;
3089
+ certPass?: string | undefined;
3090
+ } | undefined;
3091
+ prover?: import("@aztec/foundation/schemas").EthAddress | {
3092
+ address: import("@aztec/foundation/schemas").EthAddress;
3093
+ remoteSignerUrl: string;
3094
+ certPath?: string | undefined;
3095
+ certPass?: string | undefined;
3096
+ } | {
3097
+ path: string;
3098
+ password?: string | undefined;
3099
+ } | {
3100
+ id: import("@aztec/foundation/schemas").EthAddress;
3101
+ publisher: (import("@aztec/foundation/schemas").EthAddress | {
3102
+ address: import("@aztec/foundation/schemas").EthAddress;
3103
+ remoteSignerUrl: string;
3104
+ certPath?: string | undefined;
3105
+ certPass?: string | undefined;
3106
+ } | {
3107
+ path: string;
3108
+ password?: string | undefined;
3109
+ } | EthPrivateKey)[] | import("@aztec/foundation/schemas").EthAddress | {
3110
+ address: import("@aztec/foundation/schemas").EthAddress;
3111
+ remoteSignerUrl: string;
3112
+ certPath?: string | undefined;
3113
+ certPass?: string | undefined;
3114
+ } | {
3115
+ path: string;
3116
+ password?: string | undefined;
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/schemas").EthAddress | {
3126
+ address: import("@aztec/foundation/schemas").EthAddress;
3127
+ remoteSignerUrl: string;
3128
+ certPath?: string | undefined;
3129
+ certPass?: string | undefined;
3130
+ } | {
3131
+ path: string;
3132
+ password?: string | undefined;
3133
+ } | EthPrivateKey | undefined;
3134
+ publisher?: (import("@aztec/foundation/schemas").EthAddress | {
3135
+ address: import("@aztec/foundation/schemas").EthAddress;
3136
+ remoteSignerUrl: string;
3137
+ certPath?: string | undefined;
3138
+ certPass?: string | undefined;
3139
+ } | {
3140
+ path: string;
3141
+ password?: string | undefined;
3142
+ } | EthPrivateKey)[] | import("@aztec/foundation/schemas").EthAddress | {
3143
+ address: import("@aztec/foundation/schemas").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/schemas").EthAddress | undefined;
3158
+ feeRecipient?: AztecAddress | undefined;
3159
+ }, {
3160
+ schemaVersion: 2;
3161
+ validators?: {
3162
+ attester: string | (string | {
3163
+ address: string;
3164
+ remoteSignerUrl: string;
3165
+ certPath?: string | undefined;
3166
+ certPass?: string | undefined;
3167
+ } | {
3168
+ path: string;
3169
+ password?: string | undefined;
3170
+ } | {
3171
+ eth: string | {
3172
+ address: string;
3173
+ remoteSignerUrl: string;
3174
+ certPath?: string | undefined;
3175
+ certPass?: string | undefined;
3176
+ } | {
3177
+ path: string;
3178
+ password?: string | undefined;
3179
+ };
3180
+ bls?: string | {
3181
+ path: string;
3182
+ password?: string | undefined;
3183
+ } | undefined;
3184
+ })[] | {
3185
+ address: string;
3186
+ remoteSignerUrl: string;
3187
+ certPath?: string | undefined;
3188
+ certPass?: string | undefined;
3189
+ } | {
3190
+ path: string;
3191
+ password?: string | undefined;
3192
+ } | {
3193
+ mnemonic: string;
3194
+ addressIndex?: number | undefined;
3195
+ accountIndex?: number | undefined;
3196
+ addressCount?: number | undefined;
3197
+ accountCount?: number | undefined;
3198
+ } | {
3199
+ eth: string | {
3200
+ address: string;
3201
+ remoteSignerUrl: string;
3202
+ certPath?: string | undefined;
3203
+ certPass?: string | undefined;
3204
+ } | {
3205
+ path: string;
3206
+ password?: string | undefined;
3207
+ };
3208
+ bls?: string | {
3209
+ path: string;
3210
+ password?: string | undefined;
3211
+ } | undefined;
3212
+ };
3213
+ coinbase?: string | undefined;
3214
+ publisher?: string | (string | {
3215
+ address: string;
3216
+ remoteSignerUrl: string;
3217
+ certPath?: string | undefined;
3218
+ certPass?: string | undefined;
3219
+ } | {
3220
+ path: string;
3221
+ password?: string | undefined;
3222
+ })[] | {
3223
+ address: string;
3224
+ remoteSignerUrl: string;
3225
+ certPath?: string | undefined;
3226
+ certPass?: string | undefined;
3227
+ } | {
3228
+ path: string;
3229
+ password?: string | undefined;
3230
+ } | {
3231
+ mnemonic: string;
3232
+ addressIndex?: number | undefined;
3233
+ accountIndex?: number | undefined;
3234
+ addressCount?: number | undefined;
3235
+ accountCount?: number | undefined;
3236
+ } | undefined;
3237
+ feeRecipient?: any;
3238
+ remoteSigner?: string | {
3239
+ remoteSignerUrl: string;
3240
+ certPath?: string | undefined;
3241
+ certPass?: string | undefined;
3242
+ } | undefined;
3243
+ fundingAccount?: string | {
3244
+ address: string;
3245
+ remoteSignerUrl: string;
3246
+ certPath?: string | undefined;
3247
+ certPass?: string | undefined;
3248
+ } | {
3249
+ path: string;
3250
+ password?: string | undefined;
3251
+ } | undefined;
3252
+ }[] | undefined;
3253
+ slasher?: string | (string | {
3254
+ address: string;
3255
+ remoteSignerUrl: string;
3256
+ certPath?: string | undefined;
3257
+ certPass?: string | undefined;
3258
+ } | {
3259
+ path: string;
3260
+ password?: string | undefined;
3261
+ })[] | {
3262
+ address: string;
3263
+ remoteSignerUrl: string;
3264
+ certPath?: string | undefined;
3265
+ certPass?: string | undefined;
3266
+ } | {
3267
+ path: string;
3268
+ password?: string | undefined;
3269
+ } | {
3270
+ mnemonic: string;
3271
+ addressIndex?: number | undefined;
3272
+ accountIndex?: number | undefined;
3273
+ addressCount?: number | undefined;
3274
+ accountCount?: number | undefined;
3275
+ } | undefined;
3276
+ remoteSigner?: string | {
3277
+ remoteSignerUrl: string;
3278
+ certPath?: string | undefined;
3279
+ certPass?: string | undefined;
3280
+ } | undefined;
3281
+ prover?: string | {
3282
+ address: string;
3283
+ remoteSignerUrl: string;
3284
+ certPath?: string | undefined;
3285
+ certPass?: string | undefined;
3286
+ } | {
3287
+ path: string;
3288
+ password?: string | undefined;
3289
+ } | {
3290
+ id: string;
3291
+ publisher: string | (string | {
3292
+ address: string;
3293
+ remoteSignerUrl: string;
3294
+ certPath?: string | undefined;
3295
+ certPass?: string | undefined;
3296
+ } | {
3297
+ path: string;
3298
+ password?: string | undefined;
3299
+ })[] | {
3300
+ address: string;
3301
+ remoteSignerUrl: string;
3302
+ certPath?: string | undefined;
3303
+ certPass?: string | undefined;
3304
+ } | {
3305
+ path: string;
3306
+ password?: string | undefined;
3307
+ } | {
3308
+ mnemonic: string;
3309
+ addressIndex?: number | undefined;
3310
+ accountIndex?: number | undefined;
3311
+ addressCount?: number | undefined;
3312
+ accountCount?: number | undefined;
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;
3346
+ } | undefined;
3347
+ coinbase?: string | undefined;
3348
+ feeRecipient?: any;
3349
+ }>]>;
3350
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2NoZW1hcy5kLnRzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vc3JjL3NjaGVtYXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBSUEsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLDZCQUE2QixDQUFDO0FBRTNELE9BQU8sRUFBRSxDQUFDLEVBQUUsTUFBTSxLQUFLLENBQUM7QUFFeEIsT0FBTyxLQUFLLEVBQUUsYUFBYSxFQUFFLGFBQWEsRUFBRSxNQUFNLFlBQVksQ0FBQztBQUcvRCxlQUFPLE1BQU0sbUJBQW1CLGtEQUdLLENBQUM7QUFDdEMsZUFBTyxNQUFNLG1CQUFtQixrREFHSyxDQUFDO0FBNEp0QyxlQUFPLE1BQU0sY0FBYzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztJQUFnRCxDQUFDIn0=