@aztec/node-keystore 3.0.0-canary.a9708bd → 3.0.0-devnet.2-patch.1

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';
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>;
2
6
  export declare const keystoreSchema: 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,227 +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
- }, "strip", z.ZodTypeAny, {
191
- attester: string | {
283
+ certPath?: string | undefined;
284
+ certPass?: string | undefined;
285
+ }>]>>;
286
+ fundingAccount: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
287
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
288
+ remoteSignerUrl: z.ZodString;
289
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
290
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
291
+ }, "strict", z.ZodTypeAny, {
292
+ address: import("@aztec/foundation/schemas").EthAddress;
293
+ remoteSignerUrl: string;
294
+ certPath?: string | undefined;
295
+ certPass?: string | undefined;
296
+ }, {
192
297
  address: string;
193
- remoteSignerUrl?: string | null | undefined;
194
- certPath?: string | null | undefined;
195
- certPass?: string | null | undefined;
196
- } | {
298
+ remoteSignerUrl: string;
299
+ certPath?: string | undefined;
300
+ certPass?: string | undefined;
301
+ }>]>, z.ZodObject<{
302
+ path: z.ZodString;
303
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
304
+ }, "strict", z.ZodTypeAny, {
197
305
  path: string;
198
- password?: string | null | undefined;
306
+ password?: string | undefined;
307
+ }, {
308
+ path: string;
309
+ password?: string | undefined;
310
+ }>]>>;
311
+ }, "strict", z.ZodTypeAny, {
312
+ attester: (import("@aztec/foundation/schemas").EthAddress | {
313
+ address: import("@aztec/foundation/schemas").EthAddress;
314
+ remoteSignerUrl: string;
315
+ certPath?: string | undefined;
316
+ certPass?: string | undefined;
199
317
  } | {
200
- mnemonic: string;
201
- addressIndex: number;
202
- accountIndex: number;
203
- addressCount: number;
204
- accountCount: number;
205
- } | (string | {
206
- address: string;
207
- remoteSignerUrl?: string | null | undefined;
208
- certPath?: string | null | undefined;
209
- certPass?: string | null | undefined;
318
+ path: string;
319
+ password?: string | undefined;
320
+ } | {
321
+ eth: import("@aztec/foundation/schemas").EthAddress | {
322
+ address: import("@aztec/foundation/schemas").EthAddress;
323
+ remoteSignerUrl: string;
324
+ certPath?: string | undefined;
325
+ certPass?: string | undefined;
326
+ } | {
327
+ path: string;
328
+ password?: string | undefined;
329
+ } | EthPrivateKey;
330
+ bls?: {
331
+ path: string;
332
+ password?: string | undefined;
333
+ } | BLSPrivateKey | undefined;
334
+ } | EthPrivateKey)[] | import("@aztec/foundation/schemas").EthAddress | {
335
+ address: import("@aztec/foundation/schemas").EthAddress;
336
+ remoteSignerUrl: string;
337
+ certPath?: string | undefined;
338
+ certPass?: string | undefined;
210
339
  } | {
211
340
  path: string;
212
- password?: string | null | undefined;
341
+ password?: string | undefined;
213
342
  } | {
214
343
  mnemonic: string;
215
344
  addressIndex: number;
216
345
  accountIndex: number;
217
346
  addressCount: number;
218
347
  accountCount: number;
219
- })[];
220
- feeRecipient: string;
221
- publisher?: string | {
222
- address: string;
223
- remoteSignerUrl?: string | null | undefined;
224
- certPath?: string | null | undefined;
225
- certPass?: string | null | undefined;
226
348
  } | {
227
- path: string;
228
- 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;
229
369
  } | {
230
- mnemonic: string;
231
- addressIndex: number;
232
- accountIndex: number;
233
- addressCount: number;
234
- accountCount: number;
235
- } | (string | {
236
- address: string;
237
- remoteSignerUrl?: string | null | undefined;
238
- certPath?: string | null | undefined;
239
- 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;
240
377
  } | {
241
378
  path: string;
242
- password?: string | null | undefined;
379
+ password?: string | undefined;
243
380
  } | {
244
381
  mnemonic: string;
245
382
  addressIndex: number;
246
383
  accountIndex: number;
247
384
  addressCount: number;
248
385
  accountCount: number;
249
- })[] | null | undefined;
250
- coinbase?: string | null | undefined;
386
+ } | EthPrivateKey | undefined;
387
+ feeRecipient: AztecAddress;
251
388
  remoteSigner?: string | {
252
389
  remoteSignerUrl: string;
253
- certPath?: string | null | undefined;
254
- certPass?: string | null | undefined;
255
- } | 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;
398
+ } | {
399
+ path: string;
400
+ password?: string | undefined;
401
+ } | EthPrivateKey | undefined;
256
402
  }, {
257
- attester: string | {
403
+ attester: string | (string | {
258
404
  address: string;
259
- remoteSignerUrl?: string | null | undefined;
260
- certPath?: string | null | undefined;
261
- certPass?: string | null | undefined;
405
+ remoteSignerUrl: string;
406
+ certPath?: string | undefined;
407
+ certPass?: string | undefined;
262
408
  } | {
263
409
  path: string;
264
- password?: string | null | undefined;
265
- } | {
266
- mnemonic: string;
267
- addressIndex?: number | undefined;
268
- accountIndex?: number | undefined;
269
- addressCount?: number | undefined;
270
- accountCount?: number | undefined;
271
- } | (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
+ })[] | {
272
426
  address: string;
273
- remoteSignerUrl?: string | null | undefined;
274
- certPath?: string | null | undefined;
275
- certPass?: string | null | undefined;
427
+ remoteSignerUrl: string;
428
+ certPath?: string | undefined;
429
+ certPass?: string | undefined;
276
430
  } | {
277
431
  path: string;
278
- password?: string | null | undefined;
432
+ password?: string | undefined;
279
433
  } | {
280
434
  mnemonic: string;
281
435
  addressIndex?: number | undefined;
282
436
  accountIndex?: number | undefined;
283
437
  addressCount?: number | undefined;
284
438
  accountCount?: number | undefined;
285
- })[];
286
- feeRecipient: string;
287
- 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 | {
288
456
  address: string;
289
- remoteSignerUrl?: string | null | undefined;
290
- certPath?: string | null | undefined;
291
- certPass?: string | null | undefined;
457
+ remoteSignerUrl: string;
458
+ certPath?: string | undefined;
459
+ certPass?: string | undefined;
292
460
  } | {
293
461
  path: string;
294
- password?: string | null | undefined;
295
- } | {
296
- mnemonic: string;
297
- addressIndex?: number | undefined;
298
- accountIndex?: number | undefined;
299
- addressCount?: number | undefined;
300
- accountCount?: number | undefined;
301
- } | (string | {
462
+ password?: string | undefined;
463
+ })[] | {
302
464
  address: string;
303
- remoteSignerUrl?: string | null | undefined;
304
- certPath?: string | null | undefined;
305
- certPass?: string | null | undefined;
465
+ remoteSignerUrl: string;
466
+ certPath?: string | undefined;
467
+ certPass?: string | undefined;
306
468
  } | {
307
469
  path: string;
308
- password?: string | null | undefined;
470
+ password?: string | undefined;
309
471
  } | {
310
472
  mnemonic: string;
311
473
  addressIndex?: number | undefined;
312
474
  accountIndex?: number | undefined;
313
475
  addressCount?: number | undefined;
314
476
  accountCount?: number | undefined;
315
- })[] | null | undefined;
316
- coinbase?: string | null | undefined;
477
+ } | undefined;
478
+ feeRecipient?: any;
317
479
  remoteSigner?: string | {
318
480
  remoteSignerUrl: string;
319
- certPath?: string | null | undefined;
320
- certPass?: string | null | undefined;
321
- } | null | undefined;
322
- }>, "many">>>;
323
- slasher: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
324
- address: z.ZodEffects<z.ZodString, string, string>;
325
- remoteSignerUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
326
- certPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
327
- certPass: z.ZodOptional<z.ZodNullable<z.ZodString>>;
328
- }, "strip", z.ZodTypeAny, {
329
- address: string;
330
- remoteSignerUrl?: string | null | undefined;
331
- certPath?: string | null | undefined;
332
- certPass?: string | null | undefined;
481
+ certPath?: string | undefined;
482
+ certPass?: string | undefined;
483
+ } | undefined;
484
+ fundingAccount?: string | {
485
+ address: string;
486
+ remoteSignerUrl: string;
487
+ certPath?: string | undefined;
488
+ certPass?: string | undefined;
489
+ } | {
490
+ path: string;
491
+ password?: string | undefined;
492
+ } | undefined;
493
+ }>, "many">>;
494
+ slasher: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>, z.ZodObject<{
495
+ address: z.ZodType<import("@aztec/foundation/schemas").EthAddress, any, string>;
496
+ remoteSignerUrl: z.ZodString;
497
+ certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
498
+ certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
499
+ }, "strict", z.ZodTypeAny, {
500
+ address: import("@aztec/foundation/schemas").EthAddress;
501
+ remoteSignerUrl: string;
502
+ certPath?: string | undefined;
503
+ certPass?: string | undefined;
333
504
  }, {
334
505
  address: string;
335
- remoteSignerUrl?: string | null | undefined;
336
- certPath?: string | null | undefined;
337
- certPass?: string | null | undefined;
506
+ remoteSignerUrl: string;
507
+ certPath?: string | undefined;
508
+ certPass?: string | undefined;
338
509
  }>]>, z.ZodObject<{
339
510
  path: z.ZodString;
340
- password: z.ZodOptional<z.ZodNullable<z.ZodString>>;
341
- }, "strip", z.ZodTypeAny, {
511
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
512
+ }, "strict", z.ZodTypeAny, {
342
513
  path: string;
343
- password?: string | null | undefined;
514
+ password?: string | undefined;
344
515
  }, {
345
516
  path: string;
346
- password?: string | null | undefined;
347
- }>, z.ZodObject<{
348
- mnemonic: z.ZodString;
349
- addressIndex: z.ZodDefault<z.ZodNumber>;
350
- accountIndex: z.ZodDefault<z.ZodNumber>;
351
- addressCount: z.ZodDefault<z.ZodNumber>;
352
- accountCount: z.ZodDefault<z.ZodNumber>;
353
- }, "strip", z.ZodTypeAny, {
354
- mnemonic: string;
355
- addressIndex: number;
356
- accountIndex: number;
357
- addressCount: number;
358
- accountCount: number;
359
- }, {
360
- mnemonic: string;
361
- addressIndex?: number | undefined;
362
- accountIndex?: number | undefined;
363
- addressCount?: number | undefined;
364
- accountCount?: number | undefined;
365
- }>]>, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
366
- address: z.ZodEffects<z.ZodString, string, string>;
367
- remoteSignerUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
368
- certPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
369
- certPass: z.ZodOptional<z.ZodNullable<z.ZodString>>;
370
- }, "strip", z.ZodTypeAny, {
371
- address: string;
372
- remoteSignerUrl?: string | null | undefined;
373
- certPath?: string | null | undefined;
374
- 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;
375
528
  }, {
376
529
  address: string;
377
- remoteSignerUrl?: string | null | undefined;
378
- certPath?: string | null | undefined;
379
- certPass?: string | null | undefined;
530
+ remoteSignerUrl: string;
531
+ certPath?: string | undefined;
532
+ certPass?: string | undefined;
380
533
  }>]>, z.ZodObject<{
381
534
  path: z.ZodString;
382
- password: z.ZodOptional<z.ZodNullable<z.ZodString>>;
383
- }, "strip", z.ZodTypeAny, {
535
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
536
+ }, "strict", z.ZodTypeAny, {
384
537
  path: string;
385
- password?: string | null | undefined;
538
+ password?: string | undefined;
386
539
  }, {
387
540
  path: string;
388
- password?: string | null | undefined;
389
- }>, z.ZodObject<{
541
+ password?: string | undefined;
542
+ }>]>, "many">, z.ZodObject<{
390
543
  mnemonic: z.ZodString;
391
544
  addressIndex: z.ZodDefault<z.ZodNumber>;
392
545
  accountIndex: z.ZodDefault<z.ZodNumber>;
393
546
  addressCount: z.ZodDefault<z.ZodNumber>;
394
547
  accountCount: z.ZodDefault<z.ZodNumber>;
395
- }, "strip", z.ZodTypeAny, {
548
+ }, "strict", z.ZodTypeAny, {
396
549
  mnemonic: string;
397
550
  addressIndex: number;
398
551
  accountIndex: number;
@@ -404,137 +557,101 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
404
557
  accountIndex?: number | undefined;
405
558
  addressCount?: number | undefined;
406
559
  accountCount?: number | undefined;
407
- }>]>, "many">]>>>;
408
- 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<{
409
562
  remoteSignerUrl: z.ZodString;
410
- certPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
411
- certPass: z.ZodOptional<z.ZodNullable<z.ZodString>>;
412
- }, "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, {
413
566
  remoteSignerUrl: string;
414
- certPath?: string | null | undefined;
415
- certPass?: string | null | undefined;
567
+ certPath?: string | undefined;
568
+ certPass?: string | undefined;
416
569
  }, {
417
570
  remoteSignerUrl: string;
418
- certPath?: string | null | undefined;
419
- certPass?: string | null | undefined;
420
- }>]>>>;
421
- prover: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
422
- address: z.ZodEffects<z.ZodString, string, string>;
423
- remoteSignerUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
424
- certPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
425
- certPass: z.ZodOptional<z.ZodNullable<z.ZodString>>;
426
- }, "strip", z.ZodTypeAny, {
427
- address: string;
428
- remoteSignerUrl?: string | null | undefined;
429
- certPath?: string | null | undefined;
430
- 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;
431
584
  }, {
432
585
  address: string;
433
- remoteSignerUrl?: string | null | undefined;
434
- certPath?: string | null | undefined;
435
- certPass?: string | null | undefined;
586
+ remoteSignerUrl: string;
587
+ certPath?: string | undefined;
588
+ certPass?: string | undefined;
436
589
  }>]>, z.ZodObject<{
437
590
  path: z.ZodString;
438
- password: z.ZodOptional<z.ZodNullable<z.ZodString>>;
439
- }, "strip", z.ZodTypeAny, {
591
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
592
+ }, "strict", z.ZodTypeAny, {
440
593
  path: string;
441
- password?: string | null | undefined;
594
+ password?: string | undefined;
442
595
  }, {
443
596
  path: string;
444
- password?: string | null | undefined;
445
- }>, z.ZodObject<{
446
- mnemonic: z.ZodString;
447
- addressIndex: z.ZodDefault<z.ZodNumber>;
448
- accountIndex: z.ZodDefault<z.ZodNumber>;
449
- addressCount: z.ZodDefault<z.ZodNumber>;
450
- accountCount: z.ZodDefault<z.ZodNumber>;
451
- }, "strip", z.ZodTypeAny, {
452
- mnemonic: string;
453
- addressIndex: number;
454
- accountIndex: number;
455
- addressCount: number;
456
- accountCount: number;
457
- }, {
458
- mnemonic: string;
459
- addressIndex?: number | undefined;
460
- accountIndex?: number | undefined;
461
- addressCount?: number | undefined;
462
- accountCount?: number | undefined;
597
+ password?: string | undefined;
463
598
  }>]>, z.ZodObject<{
464
- id: z.ZodEffects<z.ZodString, string, string>;
465
- publisher: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
466
- address: z.ZodEffects<z.ZodString, string, string>;
467
- remoteSignerUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
468
- certPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
469
- certPass: z.ZodOptional<z.ZodNullable<z.ZodString>>;
470
- }, "strip", z.ZodTypeAny, {
471
- address: string;
472
- remoteSignerUrl?: string | null | undefined;
473
- certPath?: string | null | undefined;
474
- 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;
475
610
  }, {
476
611
  address: string;
477
- remoteSignerUrl?: string | null | undefined;
478
- certPath?: string | null | undefined;
479
- certPass?: string | null | undefined;
612
+ remoteSignerUrl: string;
613
+ certPath?: string | undefined;
614
+ certPass?: string | undefined;
480
615
  }>]>, z.ZodObject<{
481
616
  path: z.ZodString;
482
- password: z.ZodOptional<z.ZodNullable<z.ZodString>>;
483
- }, "strip", z.ZodTypeAny, {
617
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
618
+ }, "strict", z.ZodTypeAny, {
484
619
  path: string;
485
- password?: string | null | undefined;
620
+ password?: string | undefined;
486
621
  }, {
487
622
  path: string;
488
- password?: string | null | undefined;
489
- }>, z.ZodObject<{
490
- mnemonic: z.ZodString;
491
- addressIndex: z.ZodDefault<z.ZodNumber>;
492
- accountIndex: z.ZodDefault<z.ZodNumber>;
493
- addressCount: z.ZodDefault<z.ZodNumber>;
494
- accountCount: z.ZodDefault<z.ZodNumber>;
495
- }, "strip", z.ZodTypeAny, {
496
- mnemonic: string;
497
- addressIndex: number;
498
- accountIndex: number;
499
- addressCount: number;
500
- accountCount: number;
501
- }, {
502
- mnemonic: string;
503
- addressIndex?: number | undefined;
504
- accountIndex?: number | undefined;
505
- addressCount?: number | undefined;
506
- accountCount?: number | undefined;
507
- }>]>, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
508
- address: z.ZodEffects<z.ZodString, string, string>;
509
- remoteSignerUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
510
- certPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
511
- certPass: z.ZodOptional<z.ZodNullable<z.ZodString>>;
512
- }, "strip", z.ZodTypeAny, {
513
- address: string;
514
- remoteSignerUrl?: string | null | undefined;
515
- certPath?: string | null | undefined;
516
- 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;
517
634
  }, {
518
635
  address: string;
519
- remoteSignerUrl?: string | null | undefined;
520
- certPath?: string | null | undefined;
521
- certPass?: string | null | undefined;
636
+ remoteSignerUrl: string;
637
+ certPath?: string | undefined;
638
+ certPass?: string | undefined;
522
639
  }>]>, z.ZodObject<{
523
640
  path: z.ZodString;
524
- password: z.ZodOptional<z.ZodNullable<z.ZodString>>;
525
- }, "strip", z.ZodTypeAny, {
641
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
642
+ }, "strict", z.ZodTypeAny, {
526
643
  path: string;
527
- password?: string | null | undefined;
644
+ password?: string | undefined;
528
645
  }, {
529
646
  path: string;
530
- password?: string | null | undefined;
531
- }>, z.ZodObject<{
647
+ password?: string | undefined;
648
+ }>]>, "many">, z.ZodObject<{
532
649
  mnemonic: z.ZodString;
533
650
  addressIndex: z.ZodDefault<z.ZodNumber>;
534
651
  accountIndex: z.ZodDefault<z.ZodNumber>;
535
652
  addressCount: z.ZodDefault<z.ZodNumber>;
536
653
  accountCount: z.ZodDefault<z.ZodNumber>;
537
- }, "strip", z.ZodTypeAny, {
654
+ }, "strict", z.ZodTypeAny, {
538
655
  mnemonic: string;
539
656
  addressIndex: number;
540
657
  accountIndex: number;
@@ -546,666 +663,742 @@ export declare const keystoreSchema: z.ZodEffects<z.ZodObject<{
546
663
  accountIndex?: number | undefined;
547
664
  addressCount?: number | undefined;
548
665
  accountCount?: number | undefined;
549
- }>]>, "many">]>;
550
- }, "strip", z.ZodTypeAny, {
551
- id: string;
552
- publisher: string | {
553
- address: string;
554
- remoteSignerUrl?: string | null | undefined;
555
- certPath?: string | null | undefined;
556
- 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;
557
674
  } | {
558
675
  path: string;
559
- password?: string | null | undefined;
560
- } | {
561
- mnemonic: string;
562
- addressIndex: number;
563
- accountIndex: number;
564
- addressCount: number;
565
- accountCount: number;
566
- } | (string | {
567
- address: string;
568
- remoteSignerUrl?: string | null | undefined;
569
- certPath?: string | null | undefined;
570
- 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;
571
682
  } | {
572
683
  path: string;
573
- password?: string | null | undefined;
684
+ password?: string | undefined;
574
685
  } | {
575
686
  mnemonic: string;
576
687
  addressIndex: number;
577
688
  accountIndex: number;
578
689
  addressCount: number;
579
690
  accountCount: number;
580
- })[];
691
+ } | EthPrivateKey;
581
692
  }, {
582
693
  id: string;
583
- publisher: string | {
694
+ publisher: string | (string | {
584
695
  address: string;
585
- remoteSignerUrl?: string | null | undefined;
586
- certPath?: string | null | undefined;
587
- certPass?: string | null | undefined;
696
+ remoteSignerUrl: string;
697
+ certPath?: string | undefined;
698
+ certPass?: string | undefined;
588
699
  } | {
589
700
  path: string;
590
- password?: string | null | undefined;
591
- } | {
592
- mnemonic: string;
593
- addressIndex?: number | undefined;
594
- accountIndex?: number | undefined;
595
- addressCount?: number | undefined;
596
- accountCount?: number | undefined;
597
- } | (string | {
701
+ password?: string | undefined;
702
+ })[] | {
598
703
  address: string;
599
- remoteSignerUrl?: string | null | undefined;
600
- certPath?: string | null | undefined;
601
- certPass?: string | null | undefined;
704
+ remoteSignerUrl: string;
705
+ certPath?: string | undefined;
706
+ certPass?: string | undefined;
602
707
  } | {
603
708
  path: string;
604
- password?: string | null | undefined;
709
+ password?: string | undefined;
605
710
  } | {
606
711
  mnemonic: string;
607
712
  addressIndex?: number | undefined;
608
713
  accountIndex?: number | undefined;
609
714
  addressCount?: number | undefined;
610
715
  accountCount?: number | undefined;
611
- })[];
612
- }>]>>>;
613
- }, "strip", z.ZodTypeAny, {
614
- schemaVersion: 1;
615
- remoteSigner?: string | {
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;
616
725
  remoteSignerUrl: string;
617
- certPath?: string | null | undefined;
618
- certPass?: string | null | undefined;
619
- } | null | undefined;
726
+ certPath?: string | undefined;
727
+ certPass?: string | undefined;
728
+ }, {
729
+ address: string;
730
+ remoteSignerUrl: string;
731
+ certPath?: string | undefined;
732
+ certPass?: string | undefined;
733
+ }>]>, z.ZodObject<{
734
+ path: z.ZodString;
735
+ password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
736
+ }, "strict", z.ZodTypeAny, {
737
+ path: string;
738
+ password?: string | undefined;
739
+ }, {
740
+ path: string;
741
+ password?: string | undefined;
742
+ }>]>>;
743
+ }, "strict", z.ZodTypeAny, {
744
+ schemaVersion: 1;
620
745
  validators?: {
621
- attester: string | {
622
- address: string;
623
- remoteSignerUrl?: string | null | undefined;
624
- certPath?: string | null | undefined;
625
- 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;
626
751
  } | {
627
752
  path: string;
628
- password?: string | null | undefined;
629
- } | {
630
- mnemonic: string;
631
- addressIndex: number;
632
- accountIndex: number;
633
- addressCount: number;
634
- accountCount: number;
635
- } | (string | {
636
- address: string;
637
- remoteSignerUrl?: string | null | undefined;
638
- certPath?: string | null | undefined;
639
- certPass?: string | null | undefined;
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;
640
773
  } | {
641
774
  path: string;
642
- password?: string | null | undefined;
775
+ password?: string | undefined;
643
776
  } | {
644
777
  mnemonic: string;
645
778
  addressIndex: number;
646
779
  accountIndex: number;
647
780
  addressCount: number;
648
781
  accountCount: number;
649
- })[];
650
- feeRecipient: string;
651
- publisher?: string | {
652
- address: string;
653
- remoteSignerUrl?: string | null | undefined;
654
- certPath?: string | null | undefined;
655
- certPass?: string | null | undefined;
656
782
  } | {
657
- path: string;
658
- password?: string | null | undefined;
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;
659
803
  } | {
660
- mnemonic: string;
661
- addressIndex: number;
662
- accountIndex: number;
663
- addressCount: number;
664
- accountCount: number;
665
- } | (string | {
666
- address: string;
667
- remoteSignerUrl?: string | null | undefined;
668
- certPath?: string | null | undefined;
669
- certPass?: string | null | undefined;
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;
670
811
  } | {
671
812
  path: string;
672
- password?: string | null | undefined;
813
+ password?: string | undefined;
673
814
  } | {
674
815
  mnemonic: string;
675
816
  addressIndex: number;
676
817
  accountIndex: number;
677
818
  addressCount: number;
678
819
  accountCount: number;
679
- })[] | null | undefined;
680
- coinbase?: string | null | undefined;
820
+ } | EthPrivateKey | undefined;
821
+ feeRecipient: AztecAddress;
681
822
  remoteSigner?: string | {
682
823
  remoteSignerUrl: string;
683
- certPath?: string | null | undefined;
684
- certPass?: string | null | undefined;
685
- } | null | undefined;
686
- }[] | null | undefined;
687
- slasher?: string | {
688
- address: string;
689
- remoteSignerUrl?: string | null | undefined;
690
- certPath?: string | null | undefined;
691
- 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;
832
+ } | {
833
+ path: string;
834
+ password?: string | undefined;
835
+ } | EthPrivateKey | undefined;
836
+ }[] | undefined;
837
+ slasher?: (import("@aztec/foundation/schemas").EthAddress | {
838
+ address: import("@aztec/foundation/schemas").EthAddress;
839
+ remoteSignerUrl: string;
840
+ certPath?: string | undefined;
841
+ certPass?: string | undefined;
692
842
  } | {
693
843
  path: string;
694
- password?: string | null | undefined;
695
- } | {
696
- mnemonic: string;
697
- addressIndex: number;
698
- accountIndex: number;
699
- addressCount: number;
700
- accountCount: number;
701
- } | (string | {
702
- address: string;
703
- remoteSignerUrl?: string | null | undefined;
704
- certPath?: string | null | undefined;
705
- 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;
706
850
  } | {
707
851
  path: string;
708
- password?: string | null | undefined;
852
+ password?: string | undefined;
709
853
  } | {
710
854
  mnemonic: string;
711
855
  addressIndex: number;
712
856
  accountIndex: number;
713
857
  addressCount: number;
714
858
  accountCount: number;
715
- })[] | null | undefined;
716
- prover?: string | {
717
- address: string;
718
- remoteSignerUrl?: string | null | undefined;
719
- certPath?: string | null | undefined;
720
- 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;
721
870
  } | {
722
871
  path: string;
723
- password?: string | null | undefined;
724
- } | {
725
- mnemonic: string;
726
- addressIndex: number;
727
- accountIndex: number;
728
- addressCount: number;
729
- accountCount: number;
872
+ password?: string | undefined;
730
873
  } | {
731
- id: string;
732
- publisher: string | {
733
- address: string;
734
- remoteSignerUrl?: string | null | undefined;
735
- certPath?: string | null | undefined;
736
- 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;
737
880
  } | {
738
881
  path: string;
739
- password?: string | null | undefined;
740
- } | {
741
- mnemonic: string;
742
- addressIndex: number;
743
- accountIndex: number;
744
- addressCount: number;
745
- accountCount: number;
746
- } | (string | {
747
- address: string;
748
- remoteSignerUrl?: string | null | undefined;
749
- certPath?: string | null | undefined;
750
- 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;
751
888
  } | {
752
889
  path: string;
753
- password?: string | null | undefined;
890
+ password?: string | undefined;
754
891
  } | {
755
892
  mnemonic: string;
756
893
  addressIndex: number;
757
894
  accountIndex: number;
758
895
  addressCount: number;
759
896
  accountCount: number;
760
- })[];
761
- } | null | undefined;
897
+ } | EthPrivateKey;
898
+ } | EthPrivateKey | undefined;
899
+ fundingAccount?: import("@aztec/foundation/schemas").EthAddress | {
900
+ address: import("@aztec/foundation/schemas").EthAddress;
901
+ remoteSignerUrl: string;
902
+ certPath?: string | undefined;
903
+ certPass?: string | undefined;
904
+ } | {
905
+ path: string;
906
+ password?: string | undefined;
907
+ } | EthPrivateKey | undefined;
762
908
  }, {
763
909
  schemaVersion: 1;
764
- remoteSigner?: string | {
765
- remoteSignerUrl: string;
766
- certPath?: string | null | undefined;
767
- certPass?: string | null | undefined;
768
- } | null | undefined;
769
910
  validators?: {
770
- attester: string | {
911
+ attester: string | (string | {
771
912
  address: string;
772
- remoteSignerUrl?: string | null | undefined;
773
- certPath?: string | null | undefined;
774
- certPass?: string | null | undefined;
913
+ remoteSignerUrl: string;
914
+ certPath?: string | undefined;
915
+ certPass?: string | undefined;
775
916
  } | {
776
917
  path: string;
777
- password?: string | null | undefined;
778
- } | {
779
- mnemonic: string;
780
- addressIndex?: number | undefined;
781
- accountIndex?: number | undefined;
782
- addressCount?: number | undefined;
783
- accountCount?: number | undefined;
784
- } | (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
+ })[] | {
785
934
  address: string;
786
- remoteSignerUrl?: string | null | undefined;
787
- certPath?: string | null | undefined;
788
- certPass?: string | null | undefined;
935
+ remoteSignerUrl: string;
936
+ certPath?: string | undefined;
937
+ certPass?: string | undefined;
789
938
  } | {
790
939
  path: string;
791
- password?: string | null | undefined;
940
+ password?: string | undefined;
792
941
  } | {
793
942
  mnemonic: string;
794
943
  addressIndex?: number | undefined;
795
944
  accountIndex?: number | undefined;
796
945
  addressCount?: number | undefined;
797
946
  accountCount?: number | undefined;
798
- })[];
799
- feeRecipient: string;
800
- 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 | {
801
964
  address: string;
802
- remoteSignerUrl?: string | null | undefined;
803
- certPath?: string | null | undefined;
804
- certPass?: string | null | undefined;
965
+ remoteSignerUrl: string;
966
+ certPath?: string | undefined;
967
+ certPass?: string | undefined;
805
968
  } | {
806
969
  path: string;
807
- password?: string | null | undefined;
808
- } | {
809
- mnemonic: string;
810
- addressIndex?: number | undefined;
811
- accountIndex?: number | undefined;
812
- addressCount?: number | undefined;
813
- accountCount?: number | undefined;
814
- } | (string | {
970
+ password?: string | undefined;
971
+ })[] | {
815
972
  address: string;
816
- remoteSignerUrl?: string | null | undefined;
817
- certPath?: string | null | undefined;
818
- certPass?: string | null | undefined;
973
+ remoteSignerUrl: string;
974
+ certPath?: string | undefined;
975
+ certPass?: string | undefined;
819
976
  } | {
820
977
  path: string;
821
- password?: string | null | undefined;
978
+ password?: string | undefined;
822
979
  } | {
823
980
  mnemonic: string;
824
981
  addressIndex?: number | undefined;
825
982
  accountIndex?: number | undefined;
826
983
  addressCount?: number | undefined;
827
984
  accountCount?: number | undefined;
828
- })[] | null | undefined;
829
- coinbase?: string | null | undefined;
985
+ } | undefined;
986
+ feeRecipient?: any;
830
987
  remoteSigner?: string | {
831
988
  remoteSignerUrl: string;
832
- certPath?: string | null | undefined;
833
- certPass?: string | null | undefined;
834
- } | null | undefined;
835
- }[] | null | undefined;
836
- slasher?: string | {
989
+ certPath?: string | undefined;
990
+ certPass?: string | undefined;
991
+ } | undefined;
992
+ fundingAccount?: string | {
993
+ address: string;
994
+ remoteSignerUrl: string;
995
+ certPath?: string | undefined;
996
+ certPass?: string | undefined;
997
+ } | {
998
+ path: string;
999
+ password?: string | undefined;
1000
+ } | undefined;
1001
+ }[] | undefined;
1002
+ slasher?: string | (string | {
837
1003
  address: string;
838
- remoteSignerUrl?: string | null | undefined;
839
- certPath?: string | null | undefined;
840
- certPass?: string | null | undefined;
1004
+ remoteSignerUrl: string;
1005
+ certPath?: string | undefined;
1006
+ certPass?: string | undefined;
841
1007
  } | {
842
1008
  path: string;
843
- password?: string | null | undefined;
844
- } | {
845
- mnemonic: string;
846
- addressIndex?: number | undefined;
847
- accountIndex?: number | undefined;
848
- addressCount?: number | undefined;
849
- accountCount?: number | undefined;
850
- } | (string | {
1009
+ password?: string | undefined;
1010
+ })[] | {
851
1011
  address: string;
852
- remoteSignerUrl?: string | null | undefined;
853
- certPath?: string | null | undefined;
854
- certPass?: string | null | undefined;
1012
+ remoteSignerUrl: string;
1013
+ certPath?: string | undefined;
1014
+ certPass?: string | undefined;
855
1015
  } | {
856
1016
  path: string;
857
- password?: string | null | undefined;
1017
+ password?: string | undefined;
858
1018
  } | {
859
1019
  mnemonic: string;
860
1020
  addressIndex?: number | undefined;
861
1021
  accountIndex?: number | undefined;
862
1022
  addressCount?: number | undefined;
863
1023
  accountCount?: number | undefined;
864
- })[] | null | undefined;
1024
+ } | undefined;
1025
+ remoteSigner?: string | {
1026
+ remoteSignerUrl: string;
1027
+ certPath?: string | undefined;
1028
+ certPass?: string | undefined;
1029
+ } | undefined;
865
1030
  prover?: string | {
866
1031
  address: string;
867
- remoteSignerUrl?: string | null | undefined;
868
- certPath?: string | null | undefined;
869
- certPass?: string | null | undefined;
1032
+ remoteSignerUrl: string;
1033
+ certPath?: string | undefined;
1034
+ certPass?: string | undefined;
870
1035
  } | {
871
1036
  path: string;
872
- password?: string | null | undefined;
873
- } | {
874
- mnemonic: string;
875
- addressIndex?: number | undefined;
876
- accountIndex?: number | undefined;
877
- addressCount?: number | undefined;
878
- accountCount?: number | undefined;
1037
+ password?: string | undefined;
879
1038
  } | {
880
1039
  id: string;
881
- publisher: string | {
1040
+ publisher: string | (string | {
882
1041
  address: string;
883
- remoteSignerUrl?: string | null | undefined;
884
- certPath?: string | null | undefined;
885
- certPass?: string | null | undefined;
1042
+ remoteSignerUrl: string;
1043
+ certPath?: string | undefined;
1044
+ certPass?: string | undefined;
886
1045
  } | {
887
1046
  path: string;
888
- password?: string | null | undefined;
889
- } | {
890
- mnemonic: string;
891
- addressIndex?: number | undefined;
892
- accountIndex?: number | undefined;
893
- addressCount?: number | undefined;
894
- accountCount?: number | undefined;
895
- } | (string | {
1047
+ password?: string | undefined;
1048
+ })[] | {
896
1049
  address: string;
897
- remoteSignerUrl?: string | null | undefined;
898
- certPath?: string | null | undefined;
899
- certPass?: string | null | undefined;
1050
+ remoteSignerUrl: string;
1051
+ certPath?: string | undefined;
1052
+ certPass?: string | undefined;
900
1053
  } | {
901
1054
  path: string;
902
- password?: string | null | undefined;
1055
+ password?: string | undefined;
903
1056
  } | {
904
1057
  mnemonic: string;
905
1058
  addressIndex?: number | undefined;
906
1059
  accountIndex?: number | undefined;
907
1060
  addressCount?: number | undefined;
908
1061
  accountCount?: number | undefined;
909
- })[];
910
- } | null | undefined;
1062
+ };
1063
+ } | undefined;
1064
+ fundingAccount?: string | {
1065
+ address: string;
1066
+ remoteSignerUrl: string;
1067
+ certPath?: string | undefined;
1068
+ certPass?: string | undefined;
1069
+ } | {
1070
+ path: string;
1071
+ password?: string | undefined;
1072
+ } | undefined;
911
1073
  }>, {
912
1074
  schemaVersion: 1;
913
- remoteSigner?: string | {
914
- remoteSignerUrl: string;
915
- certPath?: string | null | undefined;
916
- certPass?: string | null | undefined;
917
- } | null | undefined;
918
1075
  validators?: {
919
- attester: string | {
920
- address: string;
921
- remoteSignerUrl?: string | null | undefined;
922
- certPath?: string | null | undefined;
923
- 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;
924
1081
  } | {
925
1082
  path: string;
926
- password?: string | null | undefined;
927
- } | {
928
- mnemonic: string;
929
- addressIndex: number;
930
- accountIndex: number;
931
- addressCount: number;
932
- accountCount: number;
933
- } | (string | {
934
- address: string;
935
- remoteSignerUrl?: string | null | undefined;
936
- certPath?: string | null | undefined;
937
- 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;
938
1103
  } | {
939
1104
  path: string;
940
- password?: string | null | undefined;
1105
+ password?: string | undefined;
941
1106
  } | {
942
1107
  mnemonic: string;
943
1108
  addressIndex: number;
944
1109
  accountIndex: number;
945
1110
  addressCount: number;
946
1111
  accountCount: number;
947
- })[];
948
- feeRecipient: string;
949
- publisher?: string | {
950
- address: string;
951
- remoteSignerUrl?: string | null | undefined;
952
- certPath?: string | null | undefined;
953
- certPass?: string | null | undefined;
954
1112
  } | {
955
- path: string;
956
- 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;
957
1133
  } | {
958
- mnemonic: string;
959
- addressIndex: number;
960
- accountIndex: number;
961
- addressCount: number;
962
- accountCount: number;
963
- } | (string | {
964
- address: string;
965
- remoteSignerUrl?: string | null | undefined;
966
- certPath?: string | null | undefined;
967
- 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;
968
1141
  } | {
969
1142
  path: string;
970
- password?: string | null | undefined;
1143
+ password?: string | undefined;
971
1144
  } | {
972
1145
  mnemonic: string;
973
1146
  addressIndex: number;
974
1147
  accountIndex: number;
975
1148
  addressCount: number;
976
1149
  accountCount: number;
977
- })[] | null | undefined;
978
- coinbase?: string | null | undefined;
1150
+ } | EthPrivateKey | undefined;
1151
+ feeRecipient: AztecAddress;
979
1152
  remoteSigner?: string | {
980
1153
  remoteSignerUrl: string;
981
- certPath?: string | null | undefined;
982
- certPass?: string | null | undefined;
983
- } | null | undefined;
984
- }[] | null | undefined;
985
- slasher?: string | {
986
- address: string;
987
- remoteSignerUrl?: string | null | undefined;
988
- certPath?: string | null | undefined;
989
- 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;
1162
+ } | {
1163
+ path: string;
1164
+ password?: string | undefined;
1165
+ } | EthPrivateKey | undefined;
1166
+ }[] | undefined;
1167
+ slasher?: (import("@aztec/foundation/schemas").EthAddress | {
1168
+ address: import("@aztec/foundation/schemas").EthAddress;
1169
+ remoteSignerUrl: string;
1170
+ certPath?: string | undefined;
1171
+ certPass?: string | undefined;
990
1172
  } | {
991
1173
  path: string;
992
- password?: string | null | undefined;
993
- } | {
994
- mnemonic: string;
995
- addressIndex: number;
996
- accountIndex: number;
997
- addressCount: number;
998
- accountCount: number;
999
- } | (string | {
1000
- address: string;
1001
- remoteSignerUrl?: string | null | undefined;
1002
- certPath?: string | null | undefined;
1003
- 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;
1004
1180
  } | {
1005
1181
  path: string;
1006
- password?: string | null | undefined;
1182
+ password?: string | undefined;
1007
1183
  } | {
1008
1184
  mnemonic: string;
1009
1185
  addressIndex: number;
1010
1186
  accountIndex: number;
1011
1187
  addressCount: number;
1012
1188
  accountCount: number;
1013
- })[] | null | undefined;
1014
- prover?: string | {
1015
- address: string;
1016
- remoteSignerUrl?: string | null | undefined;
1017
- certPath?: string | null | undefined;
1018
- 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;
1019
1200
  } | {
1020
1201
  path: string;
1021
- password?: string | null | undefined;
1022
- } | {
1023
- mnemonic: string;
1024
- addressIndex: number;
1025
- accountIndex: number;
1026
- addressCount: number;
1027
- accountCount: number;
1202
+ password?: string | undefined;
1028
1203
  } | {
1029
- id: string;
1030
- publisher: string | {
1031
- address: string;
1032
- remoteSignerUrl?: string | null | undefined;
1033
- certPath?: string | null | undefined;
1034
- 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;
1035
1210
  } | {
1036
1211
  path: string;
1037
- password?: string | null | undefined;
1038
- } | {
1039
- mnemonic: string;
1040
- addressIndex: number;
1041
- accountIndex: number;
1042
- addressCount: number;
1043
- accountCount: number;
1044
- } | (string | {
1045
- address: string;
1046
- remoteSignerUrl?: string | null | undefined;
1047
- certPath?: string | null | undefined;
1048
- 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;
1049
1218
  } | {
1050
1219
  path: string;
1051
- password?: string | null | undefined;
1220
+ password?: string | undefined;
1052
1221
  } | {
1053
1222
  mnemonic: string;
1054
1223
  addressIndex: number;
1055
1224
  accountIndex: number;
1056
1225
  addressCount: number;
1057
1226
  accountCount: number;
1058
- })[];
1059
- } | null | undefined;
1227
+ } | EthPrivateKey;
1228
+ } | EthPrivateKey | undefined;
1229
+ fundingAccount?: import("@aztec/foundation/schemas").EthAddress | {
1230
+ address: import("@aztec/foundation/schemas").EthAddress;
1231
+ remoteSignerUrl: string;
1232
+ certPath?: string | undefined;
1233
+ certPass?: string | undefined;
1234
+ } | {
1235
+ path: string;
1236
+ password?: string | undefined;
1237
+ } | EthPrivateKey | undefined;
1060
1238
  }, {
1061
1239
  schemaVersion: 1;
1062
- remoteSigner?: string | {
1063
- remoteSignerUrl: string;
1064
- certPath?: string | null | undefined;
1065
- certPass?: string | null | undefined;
1066
- } | null | undefined;
1067
1240
  validators?: {
1068
- attester: string | {
1241
+ attester: string | (string | {
1069
1242
  address: string;
1070
- remoteSignerUrl?: string | null | undefined;
1071
- certPath?: string | null | undefined;
1072
- certPass?: string | null | undefined;
1243
+ remoteSignerUrl: string;
1244
+ certPath?: string | undefined;
1245
+ certPass?: string | undefined;
1073
1246
  } | {
1074
1247
  path: string;
1075
- password?: string | null | undefined;
1076
- } | {
1077
- mnemonic: string;
1078
- addressIndex?: number | undefined;
1079
- accountIndex?: number | undefined;
1080
- addressCount?: number | undefined;
1081
- accountCount?: number | undefined;
1082
- } | (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
+ })[] | {
1083
1264
  address: string;
1084
- remoteSignerUrl?: string | null | undefined;
1085
- certPath?: string | null | undefined;
1086
- certPass?: string | null | undefined;
1265
+ remoteSignerUrl: string;
1266
+ certPath?: string | undefined;
1267
+ certPass?: string | undefined;
1087
1268
  } | {
1088
1269
  path: string;
1089
- password?: string | null | undefined;
1270
+ password?: string | undefined;
1090
1271
  } | {
1091
1272
  mnemonic: string;
1092
1273
  addressIndex?: number | undefined;
1093
1274
  accountIndex?: number | undefined;
1094
1275
  addressCount?: number | undefined;
1095
1276
  accountCount?: number | undefined;
1096
- })[];
1097
- feeRecipient: string;
1098
- 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 | {
1099
1294
  address: string;
1100
- remoteSignerUrl?: string | null | undefined;
1101
- certPath?: string | null | undefined;
1102
- certPass?: string | null | undefined;
1295
+ remoteSignerUrl: string;
1296
+ certPath?: string | undefined;
1297
+ certPass?: string | undefined;
1103
1298
  } | {
1104
1299
  path: string;
1105
- password?: string | null | undefined;
1106
- } | {
1107
- mnemonic: string;
1108
- addressIndex?: number | undefined;
1109
- accountIndex?: number | undefined;
1110
- addressCount?: number | undefined;
1111
- accountCount?: number | undefined;
1112
- } | (string | {
1300
+ password?: string | undefined;
1301
+ })[] | {
1113
1302
  address: string;
1114
- remoteSignerUrl?: string | null | undefined;
1115
- certPath?: string | null | undefined;
1116
- certPass?: string | null | undefined;
1303
+ remoteSignerUrl: string;
1304
+ certPath?: string | undefined;
1305
+ certPass?: string | undefined;
1117
1306
  } | {
1118
1307
  path: string;
1119
- password?: string | null | undefined;
1308
+ password?: string | undefined;
1120
1309
  } | {
1121
1310
  mnemonic: string;
1122
1311
  addressIndex?: number | undefined;
1123
1312
  accountIndex?: number | undefined;
1124
1313
  addressCount?: number | undefined;
1125
1314
  accountCount?: number | undefined;
1126
- })[] | null | undefined;
1127
- coinbase?: string | null | undefined;
1315
+ } | undefined;
1316
+ feeRecipient?: any;
1128
1317
  remoteSigner?: string | {
1129
1318
  remoteSignerUrl: string;
1130
- certPath?: string | null | undefined;
1131
- certPass?: string | null | undefined;
1132
- } | null | undefined;
1133
- }[] | null | undefined;
1134
- slasher?: string | {
1319
+ certPath?: string | undefined;
1320
+ certPass?: string | undefined;
1321
+ } | undefined;
1322
+ fundingAccount?: string | {
1323
+ address: string;
1324
+ remoteSignerUrl: string;
1325
+ certPath?: string | undefined;
1326
+ certPass?: string | undefined;
1327
+ } | {
1328
+ path: string;
1329
+ password?: string | undefined;
1330
+ } | undefined;
1331
+ }[] | undefined;
1332
+ slasher?: string | (string | {
1135
1333
  address: string;
1136
- remoteSignerUrl?: string | null | undefined;
1137
- certPath?: string | null | undefined;
1138
- certPass?: string | null | undefined;
1334
+ remoteSignerUrl: string;
1335
+ certPath?: string | undefined;
1336
+ certPass?: string | undefined;
1139
1337
  } | {
1140
1338
  path: string;
1141
- password?: string | null | undefined;
1142
- } | {
1143
- mnemonic: string;
1144
- addressIndex?: number | undefined;
1145
- accountIndex?: number | undefined;
1146
- addressCount?: number | undefined;
1147
- accountCount?: number | undefined;
1148
- } | (string | {
1339
+ password?: string | undefined;
1340
+ })[] | {
1149
1341
  address: string;
1150
- remoteSignerUrl?: string | null | undefined;
1151
- certPath?: string | null | undefined;
1152
- certPass?: string | null | undefined;
1342
+ remoteSignerUrl: string;
1343
+ certPath?: string | undefined;
1344
+ certPass?: string | undefined;
1153
1345
  } | {
1154
1346
  path: string;
1155
- password?: string | null | undefined;
1347
+ password?: string | undefined;
1156
1348
  } | {
1157
1349
  mnemonic: string;
1158
1350
  addressIndex?: number | undefined;
1159
1351
  accountIndex?: number | undefined;
1160
1352
  addressCount?: number | undefined;
1161
1353
  accountCount?: number | undefined;
1162
- })[] | null | undefined;
1354
+ } | undefined;
1355
+ remoteSigner?: string | {
1356
+ remoteSignerUrl: string;
1357
+ certPath?: string | undefined;
1358
+ certPass?: string | undefined;
1359
+ } | undefined;
1163
1360
  prover?: string | {
1164
1361
  address: string;
1165
- remoteSignerUrl?: string | null | undefined;
1166
- certPath?: string | null | undefined;
1167
- certPass?: string | null | undefined;
1362
+ remoteSignerUrl: string;
1363
+ certPath?: string | undefined;
1364
+ certPass?: string | undefined;
1168
1365
  } | {
1169
1366
  path: string;
1170
- password?: string | null | undefined;
1171
- } | {
1172
- mnemonic: string;
1173
- addressIndex?: number | undefined;
1174
- accountIndex?: number | undefined;
1175
- addressCount?: number | undefined;
1176
- accountCount?: number | undefined;
1367
+ password?: string | undefined;
1177
1368
  } | {
1178
1369
  id: string;
1179
- publisher: string | {
1370
+ publisher: string | (string | {
1180
1371
  address: string;
1181
- remoteSignerUrl?: string | null | undefined;
1182
- certPath?: string | null | undefined;
1183
- certPass?: string | null | undefined;
1372
+ remoteSignerUrl: string;
1373
+ certPath?: string | undefined;
1374
+ certPass?: string | undefined;
1184
1375
  } | {
1185
1376
  path: string;
1186
- password?: string | null | undefined;
1187
- } | {
1188
- mnemonic: string;
1189
- addressIndex?: number | undefined;
1190
- accountIndex?: number | undefined;
1191
- addressCount?: number | undefined;
1192
- accountCount?: number | undefined;
1193
- } | (string | {
1377
+ password?: string | undefined;
1378
+ })[] | {
1194
1379
  address: string;
1195
- remoteSignerUrl?: string | null | undefined;
1196
- certPath?: string | null | undefined;
1197
- certPass?: string | null | undefined;
1380
+ remoteSignerUrl: string;
1381
+ certPath?: string | undefined;
1382
+ certPass?: string | undefined;
1198
1383
  } | {
1199
1384
  path: string;
1200
- password?: string | null | undefined;
1385
+ password?: string | undefined;
1201
1386
  } | {
1202
1387
  mnemonic: string;
1203
1388
  addressIndex?: number | undefined;
1204
1389
  accountIndex?: number | undefined;
1205
1390
  addressCount?: number | undefined;
1206
1391
  accountCount?: number | undefined;
1207
- })[];
1208
- } | null | undefined;
1392
+ };
1393
+ } | undefined;
1394
+ fundingAccount?: string | {
1395
+ address: string;
1396
+ remoteSignerUrl: string;
1397
+ certPath?: string | undefined;
1398
+ certPass?: string | undefined;
1399
+ } | {
1400
+ path: string;
1401
+ password?: string | undefined;
1402
+ } | undefined;
1209
1403
  }>;
1210
- export type KeyStoreSchema = z.infer<typeof keystoreSchema>;
1211
- //# sourceMappingURL=schemas.d.ts.map
1404
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2NoZW1hcy5kLnRzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vc3JjL3NjaGVtYXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBSUEsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLDZCQUE2QixDQUFDO0FBRTNELE9BQU8sRUFBRSxDQUFDLEVBQUUsTUFBTSxLQUFLLENBQUM7QUFFeEIsT0FBTyxLQUFLLEVBQUUsYUFBYSxFQUFFLGFBQWEsRUFBRSxNQUFNLFlBQVksQ0FBQztBQUcvRCxlQUFPLE1BQU0sbUJBQW1CLGtEQUdLLENBQUM7QUFDdEMsZUFBTyxNQUFNLG1CQUFtQixrREFHSyxDQUFDO0FBOEZ0QyxlQUFPLE1BQU0sY0FBYzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7RUFhdkIsQ0FBQyJ9