@aztec/node-keystore 5.0.0-nightly.20260518 → 5.0.0-nightly.20260522

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,344 +1,212 @@
1
1
  import { AztecAddress } from '@aztec/stdlib/aztec-address';
2
2
  import { z } from 'zod';
3
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<{
4
+ export declare const ethPrivateKeySchema: z.ZodPipe<z.ZodString, z.ZodTransform<EthPrivateKey, string>>;
5
+ export declare const blsPrivateKeySchema: z.ZodPipe<z.ZodString, z.ZodTransform<BLSPrivateKey, string>>;
6
+ export declare const keystoreSchema: z.ZodUnion<readonly [z.ZodObject<{
7
7
  schemaVersion: z.ZodLiteral<1>;
8
- validators: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodArray<z.ZodObject<{
9
- attester: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
10
- address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
8
+ validators: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
9
+ attester: z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<EthPrivateKey, string>>, z.ZodUnion<readonly [z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>, z.ZodObject<{
10
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>;
11
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/eth-address").EthAddress;
16
- remoteSignerUrl: string;
17
- certPath?: string | undefined;
18
- certPass?: string | undefined;
19
- }, {
20
- address: string;
21
- remoteSignerUrl: string;
22
- certPath?: string | undefined;
23
- certPass?: string | undefined;
24
- }>]>, z.ZodObject<{
12
+ certPath: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
13
+ certPass: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
14
+ }, z.core.$strict>]>, z.ZodObject<{
25
15
  path: z.ZodString;
26
- password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
27
- }, "strict", z.ZodTypeAny, {
28
- path: string;
29
- password?: string | undefined;
30
- }, {
31
- path: string;
32
- password?: string | undefined;
33
- }>]>, z.ZodObject<{
34
- eth: z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
35
- address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
16
+ password: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
17
+ }, z.core.$strict>]>, z.ZodObject<{
18
+ eth: z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<EthPrivateKey, string>>, z.ZodUnion<readonly [z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>, z.ZodObject<{
19
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>;
36
20
  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/eth-address").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<{
21
+ certPath: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
22
+ certPass: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
23
+ }, z.core.$strict>]>, z.ZodObject<{
50
24
  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<{
25
+ password: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
26
+ }, z.core.$strict>]>;
27
+ bls: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<BLSPrivateKey, string>>, z.ZodObject<{
60
28
  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/eth-address").EthAddress | {
71
- address: import("@aztec/foundation/eth-address").EthAddress;
72
- remoteSignerUrl: string;
73
- certPath?: string | undefined;
74
- certPass?: string | undefined;
75
- } | {
29
+ password: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
30
+ }, z.core.$strict>]>>>, z.ZodTransform<NonNullable<{
76
31
  path: string;
77
- password?: string | undefined;
78
- } | EthPrivateKey;
79
- bls?: {
80
- path: string;
81
- password?: string | undefined;
82
- } | BLSPrivateKey | undefined;
83
- }, {
84
- eth: string | {
85
- address: string;
86
- remoteSignerUrl: string;
87
- certPath?: string | undefined;
88
- certPass?: string | undefined;
89
- } | {
32
+ password: string | undefined;
33
+ } | BLSPrivateKey> | undefined, {
90
34
  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/eth-address").EthAddress, any, string>, z.ZodObject<{
98
- address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
35
+ password: string | undefined;
36
+ } | BLSPrivateKey | null | undefined>>;
37
+ }, z.core.$strict>]>, z.ZodArray<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<EthPrivateKey, string>>, z.ZodUnion<readonly [z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>, z.ZodObject<{
38
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>;
99
39
  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/eth-address").EthAddress;
104
- remoteSignerUrl: string;
105
- certPath?: string | undefined;
106
- certPass?: string | undefined;
107
- }, {
108
- address: string;
109
- remoteSignerUrl: string;
110
- certPath?: string | undefined;
111
- certPass?: string | undefined;
112
- }>]>, z.ZodObject<{
40
+ certPath: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
41
+ certPass: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
42
+ }, z.core.$strict>]>, z.ZodObject<{
113
43
  path: z.ZodString;
114
- password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
115
- }, "strict", z.ZodTypeAny, {
116
- path: string;
117
- password?: string | undefined;
118
- }, {
119
- path: string;
120
- password?: string | undefined;
121
- }>]>, z.ZodObject<{
122
- eth: z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
123
- address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
44
+ password: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
45
+ }, z.core.$strict>]>, z.ZodObject<{
46
+ eth: z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<EthPrivateKey, string>>, z.ZodUnion<readonly [z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>, z.ZodObject<{
47
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>;
124
48
  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/eth-address").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<{
49
+ certPath: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
50
+ certPass: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
51
+ }, z.core.$strict>]>, z.ZodObject<{
138
52
  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<{
53
+ password: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
54
+ }, z.core.$strict>]>;
55
+ bls: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<BLSPrivateKey, string>>, z.ZodObject<{
148
56
  path: z.ZodString;
149
- password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
150
- }, "strict", z.ZodTypeAny, {
151
- path: string;
152
- password?: string | undefined;
153
- }, {
57
+ password: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
58
+ }, z.core.$strict>]>>>, z.ZodTransform<NonNullable<{
154
59
  path: string;
155
- password?: string | undefined;
156
- }>]>>;
157
- }, "strict", z.ZodTypeAny, {
158
- eth: import("@aztec/foundation/eth-address").EthAddress | {
159
- address: import("@aztec/foundation/eth-address").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 | {
60
+ password: string | undefined;
61
+ } | BLSPrivateKey> | undefined, {
182
62
  path: string;
183
- password?: string | undefined;
184
- } | undefined;
185
- }>]>, "many">, z.ZodObject<{
63
+ password: string | undefined;
64
+ } | BLSPrivateKey | null | undefined>>;
65
+ }, z.core.$strict>]>>, z.ZodObject<{
186
66
  mnemonic: z.ZodString;
187
67
  addressIndex: z.ZodDefault<z.ZodNumber>;
188
68
  accountIndex: z.ZodDefault<z.ZodNumber>;
189
69
  addressCount: z.ZodDefault<z.ZodNumber>;
190
70
  accountCount: z.ZodDefault<z.ZodNumber>;
191
- }, "strict", z.ZodTypeAny, {
192
- mnemonic: string;
193
- addressIndex: number;
194
- accountIndex: number;
195
- addressCount: number;
196
- accountCount: number;
197
- }, {
198
- mnemonic: string;
199
- addressIndex?: number | undefined;
200
- accountIndex?: number | undefined;
201
- addressCount?: number | undefined;
202
- accountCount?: number | undefined;
203
- }>]>;
204
- coinbase: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>>;
205
- publisher: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
206
- address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
71
+ }, z.core.$strict>]>;
72
+ coinbase: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>>>, z.ZodTransform<import("@aztec/foundation/eth-address").EthAddress | undefined, import("@aztec/foundation/eth-address").EthAddress | null | undefined>>;
73
+ publisher: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<EthPrivateKey, string>>, z.ZodUnion<readonly [z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>, z.ZodObject<{
74
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>;
207
75
  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/eth-address").EthAddress;
212
- remoteSignerUrl: string;
213
- certPath?: string | undefined;
214
- certPass?: string | undefined;
215
- }, {
216
- address: string;
217
- remoteSignerUrl: string;
218
- certPath?: string | undefined;
219
- certPass?: string | undefined;
220
- }>]>, z.ZodObject<{
76
+ certPath: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
77
+ certPass: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
78
+ }, z.core.$strict>]>, z.ZodObject<{
221
79
  path: z.ZodString;
222
- password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
223
- }, "strict", z.ZodTypeAny, {
224
- path: string;
225
- password?: string | undefined;
226
- }, {
227
- path: string;
228
- password?: string | undefined;
229
- }>]>, z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
230
- address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
80
+ password: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
81
+ }, z.core.$strict>]>, z.ZodArray<z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<EthPrivateKey, string>>, z.ZodUnion<readonly [z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>, z.ZodObject<{
82
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>;
231
83
  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/eth-address").EthAddress;
236
- remoteSignerUrl: string;
237
- certPath?: string | undefined;
238
- certPass?: string | undefined;
239
- }, {
240
- address: string;
241
- remoteSignerUrl: string;
242
- certPath?: string | undefined;
243
- certPass?: string | undefined;
244
- }>]>, z.ZodObject<{
84
+ certPath: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
85
+ certPass: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
86
+ }, z.core.$strict>]>, z.ZodObject<{
245
87
  path: z.ZodString;
246
- password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
247
- }, "strict", z.ZodTypeAny, {
248
- path: string;
249
- password?: string | undefined;
250
- }, {
251
- path: string;
252
- password?: string | undefined;
253
- }>]>, "many">, z.ZodObject<{
88
+ password: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
89
+ }, z.core.$strict>]>>, z.ZodObject<{
254
90
  mnemonic: z.ZodString;
255
91
  addressIndex: z.ZodDefault<z.ZodNumber>;
256
92
  accountIndex: z.ZodDefault<z.ZodNumber>;
257
93
  addressCount: z.ZodDefault<z.ZodNumber>;
258
94
  accountCount: z.ZodDefault<z.ZodNumber>;
259
- }, "strict", z.ZodTypeAny, {
95
+ }, z.core.$strict>]>>>, z.ZodTransform<NonNullable<(import("@aztec/foundation/eth-address").EthAddress | {
96
+ path: string;
97
+ password: string | undefined;
98
+ } | {
99
+ address: import("@aztec/foundation/eth-address").EthAddress;
100
+ remoteSignerUrl: string;
101
+ certPath: string | undefined;
102
+ certPass: string | undefined;
103
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
104
+ path: string;
105
+ password: string | undefined;
106
+ } | {
107
+ address: import("@aztec/foundation/eth-address").EthAddress;
108
+ remoteSignerUrl: string;
109
+ certPath: string | undefined;
110
+ certPass: string | undefined;
111
+ } | {
260
112
  mnemonic: string;
261
113
  addressIndex: number;
262
114
  accountIndex: number;
263
115
  addressCount: number;
264
116
  accountCount: number;
265
- }, {
117
+ } | EthPrivateKey> | undefined, (import("@aztec/foundation/eth-address").EthAddress | {
118
+ path: string;
119
+ password: string | undefined;
120
+ } | {
121
+ address: import("@aztec/foundation/eth-address").EthAddress;
122
+ remoteSignerUrl: string;
123
+ certPath: string | undefined;
124
+ certPass: string | undefined;
125
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
126
+ path: string;
127
+ password: string | undefined;
128
+ } | {
129
+ address: import("@aztec/foundation/eth-address").EthAddress;
130
+ remoteSignerUrl: string;
131
+ certPath: string | undefined;
132
+ certPass: string | undefined;
133
+ } | {
266
134
  mnemonic: string;
267
- addressIndex?: number | undefined;
268
- accountIndex?: number | undefined;
269
- addressCount?: number | undefined;
270
- accountCount?: number | undefined;
271
- }>]>>;
135
+ addressIndex: number;
136
+ accountIndex: number;
137
+ addressCount: number;
138
+ accountCount: number;
139
+ } | EthPrivateKey | null | undefined>>;
272
140
  feeRecipient: import("@aztec/foundation/schemas").ZodFor<AztecAddress>;
273
- remoteSigner: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
141
+ remoteSigner: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
274
142
  remoteSignerUrl: z.ZodString;
275
- certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
276
- certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
277
- }, "strict", z.ZodTypeAny, {
278
- remoteSignerUrl: string;
279
- certPath?: string | undefined;
280
- certPass?: string | undefined;
281
- }, {
282
- remoteSignerUrl: string;
283
- certPath?: string | undefined;
284
- certPass?: string | undefined;
285
- }>]>>;
286
- fundingAccount: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
287
- address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
143
+ certPath: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
144
+ certPass: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
145
+ }, z.core.$strict>]>>>, z.ZodTransform<NonNullable<string | {
146
+ remoteSignerUrl: string;
147
+ certPath: string | undefined;
148
+ certPass: string | undefined;
149
+ }> | undefined, string | {
150
+ remoteSignerUrl: string;
151
+ certPath: string | undefined;
152
+ certPass: string | undefined;
153
+ } | null | undefined>>;
154
+ fundingAccount: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<EthPrivateKey, string>>, z.ZodUnion<readonly [z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>, z.ZodObject<{
155
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>;
288
156
  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/eth-address").EthAddress;
293
- remoteSignerUrl: string;
294
- certPath?: string | undefined;
295
- certPass?: string | undefined;
296
- }, {
297
- address: string;
298
- remoteSignerUrl: string;
299
- certPath?: string | undefined;
300
- certPass?: string | undefined;
301
- }>]>, z.ZodObject<{
157
+ certPath: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
158
+ certPass: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
159
+ }, z.core.$strict>]>, z.ZodObject<{
302
160
  path: z.ZodString;
303
- password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
304
- }, "strict", z.ZodTypeAny, {
305
- path: string;
306
- password?: string | undefined;
307
- }, {
161
+ password: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
162
+ }, z.core.$strict>]>>>, z.ZodTransform<NonNullable<import("@aztec/foundation/eth-address").EthAddress | {
308
163
  path: string;
309
- password?: string | undefined;
310
- }>]>>;
311
- }, "strict", z.ZodTypeAny, {
312
- attester: (import("@aztec/foundation/eth-address").EthAddress | {
164
+ password: string | undefined;
165
+ } | {
313
166
  address: import("@aztec/foundation/eth-address").EthAddress;
314
167
  remoteSignerUrl: string;
315
- certPath?: string | undefined;
316
- certPass?: string | undefined;
168
+ certPath: string | undefined;
169
+ certPass: string | undefined;
170
+ } | EthPrivateKey> | undefined, import("@aztec/foundation/eth-address").EthAddress | {
171
+ path: string;
172
+ password: string | undefined;
317
173
  } | {
174
+ address: import("@aztec/foundation/eth-address").EthAddress;
175
+ remoteSignerUrl: string;
176
+ certPath: string | undefined;
177
+ certPass: string | undefined;
178
+ } | EthPrivateKey | null | undefined>>;
179
+ }, z.core.$strict>>>>, z.ZodTransform<{
180
+ attester: (import("@aztec/foundation/eth-address").EthAddress | {
318
181
  path: string;
319
- password?: string | undefined;
182
+ password: string | undefined;
183
+ } | {
184
+ address: import("@aztec/foundation/eth-address").EthAddress;
185
+ remoteSignerUrl: string;
186
+ certPath: string | undefined;
187
+ certPass: string | undefined;
320
188
  } | {
321
189
  eth: import("@aztec/foundation/eth-address").EthAddress | {
190
+ path: string;
191
+ password: string | undefined;
192
+ } | {
322
193
  address: import("@aztec/foundation/eth-address").EthAddress;
323
194
  remoteSignerUrl: string;
324
- certPath?: string | undefined;
325
- certPass?: string | undefined;
326
- } | {
327
- path: string;
328
- password?: string | undefined;
195
+ certPath: string | undefined;
196
+ certPass: string | undefined;
329
197
  } | EthPrivateKey;
330
- bls?: {
198
+ bls: NonNullable<{
331
199
  path: string;
332
- password?: string | undefined;
333
- } | BLSPrivateKey | undefined;
200
+ password: string | undefined;
201
+ } | BLSPrivateKey> | undefined;
334
202
  } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
203
+ path: string;
204
+ password: string | undefined;
205
+ } | {
335
206
  address: import("@aztec/foundation/eth-address").EthAddress;
336
207
  remoteSignerUrl: string;
337
- certPath?: string | undefined;
338
- certPass?: string | undefined;
339
- } | {
340
- path: string;
341
- password?: string | undefined;
208
+ certPath: string | undefined;
209
+ certPass: string | undefined;
342
210
  } | {
343
211
  mnemonic: string;
344
212
  addressIndex: number;
@@ -347,341 +215,289 @@ export declare const keystoreSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
347
215
  accountCount: number;
348
216
  } | {
349
217
  eth: import("@aztec/foundation/eth-address").EthAddress | {
218
+ path: string;
219
+ password: string | undefined;
220
+ } | {
350
221
  address: import("@aztec/foundation/eth-address").EthAddress;
351
222
  remoteSignerUrl: string;
352
- certPath?: string | undefined;
353
- certPass?: string | undefined;
354
- } | {
355
- path: string;
356
- password?: string | undefined;
223
+ certPath: string | undefined;
224
+ certPass: string | undefined;
357
225
  } | EthPrivateKey;
358
- bls?: {
226
+ bls: NonNullable<{
359
227
  path: string;
360
- password?: string | undefined;
361
- } | BLSPrivateKey | undefined;
228
+ password: string | undefined;
229
+ } | BLSPrivateKey> | undefined;
362
230
  } | EthPrivateKey;
363
- coinbase?: import("@aztec/foundation/eth-address").EthAddress | undefined;
364
- publisher?: (import("@aztec/foundation/eth-address").EthAddress | {
231
+ coinbase: import("@aztec/foundation/eth-address").EthAddress | undefined;
232
+ publisher: NonNullable<(import("@aztec/foundation/eth-address").EthAddress | {
233
+ path: string;
234
+ password: string | undefined;
235
+ } | {
365
236
  address: import("@aztec/foundation/eth-address").EthAddress;
366
237
  remoteSignerUrl: string;
367
- certPath?: string | undefined;
368
- certPass?: string | undefined;
369
- } | {
370
- path: string;
371
- password?: string | undefined;
238
+ certPath: string | undefined;
239
+ certPass: string | undefined;
372
240
  } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
241
+ path: string;
242
+ password: string | undefined;
243
+ } | {
373
244
  address: import("@aztec/foundation/eth-address").EthAddress;
374
245
  remoteSignerUrl: string;
375
- certPath?: string | undefined;
376
- certPass?: string | undefined;
377
- } | {
378
- path: string;
379
- password?: string | undefined;
246
+ certPath: string | undefined;
247
+ certPass: string | undefined;
380
248
  } | {
381
249
  mnemonic: string;
382
250
  addressIndex: number;
383
251
  accountIndex: number;
384
252
  addressCount: number;
385
253
  accountCount: number;
386
- } | EthPrivateKey | undefined;
254
+ } | EthPrivateKey> | undefined;
387
255
  feeRecipient: AztecAddress;
388
- remoteSigner?: string | {
256
+ remoteSigner: NonNullable<string | {
389
257
  remoteSignerUrl: string;
390
- certPath?: string | undefined;
391
- certPass?: string | undefined;
392
- } | undefined;
393
- fundingAccount?: import("@aztec/foundation/eth-address").EthAddress | {
258
+ certPath: string | undefined;
259
+ certPass: string | undefined;
260
+ }> | undefined;
261
+ fundingAccount: NonNullable<import("@aztec/foundation/eth-address").EthAddress | {
262
+ path: string;
263
+ password: string | undefined;
264
+ } | {
394
265
  address: import("@aztec/foundation/eth-address").EthAddress;
395
266
  remoteSignerUrl: string;
396
- certPath?: string | undefined;
397
- certPass?: string | undefined;
398
- } | {
267
+ certPath: string | undefined;
268
+ certPass: string | undefined;
269
+ } | EthPrivateKey> | undefined;
270
+ }[] | undefined, {
271
+ attester: (import("@aztec/foundation/eth-address").EthAddress | {
399
272
  path: string;
400
- password?: string | undefined;
401
- } | EthPrivateKey | undefined;
402
- }, {
403
- attester: string | (string | {
404
- address: string;
405
- remoteSignerUrl: string;
406
- certPath?: string | undefined;
407
- certPass?: string | undefined;
273
+ password: string | undefined;
408
274
  } | {
409
- path: string;
410
- password?: string | undefined;
275
+ address: import("@aztec/foundation/eth-address").EthAddress;
276
+ remoteSignerUrl: string;
277
+ certPath: string | undefined;
278
+ certPass: string | undefined;
411
279
  } | {
412
- eth: string | {
413
- address: string;
414
- remoteSignerUrl: string;
415
- certPath?: string | undefined;
416
- certPass?: string | undefined;
417
- } | {
280
+ eth: import("@aztec/foundation/eth-address").EthAddress | {
418
281
  path: string;
419
- password?: string | undefined;
420
- };
421
- bls?: string | {
282
+ password: string | undefined;
283
+ } | {
284
+ address: import("@aztec/foundation/eth-address").EthAddress;
285
+ remoteSignerUrl: string;
286
+ certPath: string | undefined;
287
+ certPass: string | undefined;
288
+ } | EthPrivateKey;
289
+ bls: NonNullable<{
422
290
  path: string;
423
- password?: string | undefined;
424
- } | undefined;
425
- })[] | {
426
- address: string;
427
- remoteSignerUrl: string;
428
- certPath?: string | undefined;
429
- certPass?: string | undefined;
430
- } | {
291
+ password: string | undefined;
292
+ } | BLSPrivateKey> | undefined;
293
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
431
294
  path: string;
432
- password?: string | undefined;
295
+ password: string | undefined;
296
+ } | {
297
+ address: import("@aztec/foundation/eth-address").EthAddress;
298
+ remoteSignerUrl: string;
299
+ certPath: string | undefined;
300
+ certPass: string | undefined;
433
301
  } | {
434
302
  mnemonic: string;
435
- addressIndex?: number | undefined;
436
- accountIndex?: number | undefined;
437
- addressCount?: number | undefined;
438
- accountCount?: number | undefined;
303
+ addressIndex: number;
304
+ accountIndex: number;
305
+ addressCount: number;
306
+ accountCount: number;
439
307
  } | {
440
- eth: string | {
441
- address: string;
442
- remoteSignerUrl: string;
443
- certPath?: string | undefined;
444
- certPass?: string | undefined;
445
- } | {
308
+ eth: import("@aztec/foundation/eth-address").EthAddress | {
446
309
  path: string;
447
- password?: string | undefined;
448
- };
449
- bls?: string | {
310
+ password: string | undefined;
311
+ } | {
312
+ address: import("@aztec/foundation/eth-address").EthAddress;
313
+ remoteSignerUrl: string;
314
+ certPath: string | undefined;
315
+ certPass: string | undefined;
316
+ } | EthPrivateKey;
317
+ bls: NonNullable<{
450
318
  path: string;
451
- password?: string | undefined;
452
- } | undefined;
453
- };
454
- coinbase?: string | undefined;
455
- publisher?: string | (string | {
456
- address: string;
457
- remoteSignerUrl: string;
458
- certPath?: string | undefined;
459
- certPass?: string | undefined;
460
- } | {
319
+ password: string | undefined;
320
+ } | BLSPrivateKey> | undefined;
321
+ } | EthPrivateKey;
322
+ coinbase: import("@aztec/foundation/eth-address").EthAddress | undefined;
323
+ publisher: NonNullable<(import("@aztec/foundation/eth-address").EthAddress | {
461
324
  path: string;
462
- password?: string | undefined;
463
- })[] | {
464
- address: string;
465
- remoteSignerUrl: string;
466
- certPath?: string | undefined;
467
- certPass?: string | undefined;
325
+ password: string | undefined;
468
326
  } | {
327
+ address: import("@aztec/foundation/eth-address").EthAddress;
328
+ remoteSignerUrl: string;
329
+ certPath: string | undefined;
330
+ certPass: string | undefined;
331
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
469
332
  path: string;
470
- password?: string | undefined;
333
+ password: string | undefined;
471
334
  } | {
472
- mnemonic: string;
473
- addressIndex?: number | undefined;
474
- accountIndex?: number | undefined;
475
- addressCount?: number | undefined;
476
- accountCount?: number | undefined;
477
- } | undefined;
478
- feeRecipient?: any;
479
- remoteSigner?: string | {
480
- remoteSignerUrl: string;
481
- certPath?: string | undefined;
482
- certPass?: string | undefined;
483
- } | undefined;
484
- fundingAccount?: string | {
485
- address: string;
335
+ address: import("@aztec/foundation/eth-address").EthAddress;
486
336
  remoteSignerUrl: string;
487
- certPath?: string | undefined;
488
- certPass?: string | undefined;
337
+ certPath: string | undefined;
338
+ certPass: string | undefined;
489
339
  } | {
340
+ mnemonic: string;
341
+ addressIndex: number;
342
+ accountIndex: number;
343
+ addressCount: number;
344
+ accountCount: number;
345
+ } | EthPrivateKey> | undefined;
346
+ feeRecipient: AztecAddress;
347
+ remoteSigner: NonNullable<string | {
348
+ remoteSignerUrl: string;
349
+ certPath: string | undefined;
350
+ certPass: string | undefined;
351
+ }> | undefined;
352
+ fundingAccount: NonNullable<import("@aztec/foundation/eth-address").EthAddress | {
490
353
  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/eth-address").EthAddress, any, string>, z.ZodObject<{
495
- address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
354
+ password: string | undefined;
355
+ } | {
356
+ address: import("@aztec/foundation/eth-address").EthAddress;
357
+ remoteSignerUrl: string;
358
+ certPath: string | undefined;
359
+ certPass: string | undefined;
360
+ } | EthPrivateKey> | undefined;
361
+ }[] | null | undefined>>;
362
+ slasher: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<EthPrivateKey, string>>, z.ZodUnion<readonly [z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>, z.ZodObject<{
363
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>;
496
364
  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/eth-address").EthAddress;
501
- remoteSignerUrl: string;
502
- certPath?: string | undefined;
503
- certPass?: string | undefined;
504
- }, {
505
- address: string;
506
- remoteSignerUrl: string;
507
- certPath?: string | undefined;
508
- certPass?: string | undefined;
509
- }>]>, z.ZodObject<{
365
+ certPath: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
366
+ certPass: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
367
+ }, z.core.$strict>]>, z.ZodObject<{
510
368
  path: z.ZodString;
511
- password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
512
- }, "strict", z.ZodTypeAny, {
513
- path: string;
514
- password?: string | undefined;
515
- }, {
516
- path: string;
517
- password?: string | undefined;
518
- }>]>, z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
519
- address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
369
+ password: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
370
+ }, z.core.$strict>]>, z.ZodArray<z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<EthPrivateKey, string>>, z.ZodUnion<readonly [z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>, z.ZodObject<{
371
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>;
520
372
  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/eth-address").EthAddress;
525
- remoteSignerUrl: string;
526
- certPath?: string | undefined;
527
- certPass?: string | undefined;
528
- }, {
529
- address: string;
530
- remoteSignerUrl: string;
531
- certPath?: string | undefined;
532
- certPass?: string | undefined;
533
- }>]>, z.ZodObject<{
373
+ certPath: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
374
+ certPass: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
375
+ }, z.core.$strict>]>, z.ZodObject<{
534
376
  path: z.ZodString;
535
- password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
536
- }, "strict", z.ZodTypeAny, {
537
- path: string;
538
- password?: string | undefined;
539
- }, {
540
- path: string;
541
- password?: string | undefined;
542
- }>]>, "many">, z.ZodObject<{
377
+ password: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
378
+ }, z.core.$strict>]>>, z.ZodObject<{
543
379
  mnemonic: z.ZodString;
544
380
  addressIndex: z.ZodDefault<z.ZodNumber>;
545
381
  accountIndex: z.ZodDefault<z.ZodNumber>;
546
382
  addressCount: z.ZodDefault<z.ZodNumber>;
547
383
  accountCount: z.ZodDefault<z.ZodNumber>;
548
- }, "strict", z.ZodTypeAny, {
384
+ }, z.core.$strict>]>>>, z.ZodTransform<NonNullable<(import("@aztec/foundation/eth-address").EthAddress | {
385
+ path: string;
386
+ password: string | undefined;
387
+ } | {
388
+ address: import("@aztec/foundation/eth-address").EthAddress;
389
+ remoteSignerUrl: string;
390
+ certPath: string | undefined;
391
+ certPass: string | undefined;
392
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
393
+ path: string;
394
+ password: string | undefined;
395
+ } | {
396
+ address: import("@aztec/foundation/eth-address").EthAddress;
397
+ remoteSignerUrl: string;
398
+ certPath: string | undefined;
399
+ certPass: string | undefined;
400
+ } | {
549
401
  mnemonic: string;
550
402
  addressIndex: number;
551
403
  accountIndex: number;
552
404
  addressCount: number;
553
405
  accountCount: number;
554
- }, {
555
- mnemonic: string;
556
- addressIndex?: number | undefined;
557
- accountIndex?: number | undefined;
558
- addressCount?: number | undefined;
559
- accountCount?: number | undefined;
560
- }>]>>;
561
- remoteSigner: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
562
- remoteSignerUrl: z.ZodString;
563
- certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
564
- certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
565
- }, "strict", z.ZodTypeAny, {
566
- remoteSignerUrl: string;
567
- certPath?: string | undefined;
568
- certPass?: string | undefined;
569
- }, {
570
- remoteSignerUrl: string;
571
- certPath?: string | undefined;
572
- certPass?: string | undefined;
573
- }>]>>;
574
- prover: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
575
- address: z.ZodType<import("@aztec/foundation/eth-address").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, {
406
+ } | EthPrivateKey> | undefined, (import("@aztec/foundation/eth-address").EthAddress | {
407
+ path: string;
408
+ password: string | undefined;
409
+ } | {
580
410
  address: import("@aztec/foundation/eth-address").EthAddress;
581
411
  remoteSignerUrl: string;
582
- certPath?: string | undefined;
583
- certPass?: string | undefined;
584
- }, {
585
- address: string;
412
+ certPath: string | undefined;
413
+ certPass: string | undefined;
414
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
415
+ path: string;
416
+ password: string | undefined;
417
+ } | {
418
+ address: import("@aztec/foundation/eth-address").EthAddress;
586
419
  remoteSignerUrl: string;
587
- certPath?: string | undefined;
588
- certPass?: string | undefined;
589
- }>]>, z.ZodObject<{
420
+ certPath: string | undefined;
421
+ certPass: string | undefined;
422
+ } | {
423
+ mnemonic: string;
424
+ addressIndex: number;
425
+ accountIndex: number;
426
+ addressCount: number;
427
+ accountCount: number;
428
+ } | EthPrivateKey | null | undefined>>;
429
+ remoteSigner: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
430
+ remoteSignerUrl: z.ZodString;
431
+ certPath: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
432
+ certPass: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
433
+ }, z.core.$strict>]>>>, z.ZodTransform<NonNullable<string | {
434
+ remoteSignerUrl: string;
435
+ certPath: string | undefined;
436
+ certPass: string | undefined;
437
+ }> | undefined, string | {
438
+ remoteSignerUrl: string;
439
+ certPath: string | undefined;
440
+ certPass: string | undefined;
441
+ } | null | undefined>>;
442
+ prover: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<EthPrivateKey, string>>, z.ZodUnion<readonly [z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>, z.ZodObject<{
443
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>;
444
+ remoteSignerUrl: z.ZodString;
445
+ certPath: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
446
+ certPass: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
447
+ }, z.core.$strict>]>, z.ZodObject<{
590
448
  path: z.ZodString;
591
- password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
592
- }, "strict", z.ZodTypeAny, {
593
- path: string;
594
- password?: string | undefined;
595
- }, {
596
- path: string;
597
- password?: string | undefined;
598
- }>]>, z.ZodObject<{
599
- id: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
600
- publisher: z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
601
- address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
449
+ password: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
450
+ }, z.core.$strict>]>, z.ZodObject<{
451
+ id: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>;
452
+ publisher: z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<EthPrivateKey, string>>, z.ZodUnion<readonly [z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>, z.ZodObject<{
453
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>;
602
454
  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/eth-address").EthAddress;
607
- remoteSignerUrl: string;
608
- certPath?: string | undefined;
609
- certPass?: string | undefined;
610
- }, {
611
- address: string;
612
- remoteSignerUrl: string;
613
- certPath?: string | undefined;
614
- certPass?: string | undefined;
615
- }>]>, z.ZodObject<{
455
+ certPath: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
456
+ certPass: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
457
+ }, z.core.$strict>]>, z.ZodObject<{
616
458
  path: z.ZodString;
617
- password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
618
- }, "strict", z.ZodTypeAny, {
619
- path: string;
620
- password?: string | undefined;
621
- }, {
622
- path: string;
623
- password?: string | undefined;
624
- }>]>, z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
625
- address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
459
+ password: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
460
+ }, z.core.$strict>]>, z.ZodArray<z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<EthPrivateKey, string>>, z.ZodUnion<readonly [z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>, z.ZodObject<{
461
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>;
626
462
  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/eth-address").EthAddress;
631
- remoteSignerUrl: string;
632
- certPath?: string | undefined;
633
- certPass?: string | undefined;
634
- }, {
635
- address: string;
636
- remoteSignerUrl: string;
637
- certPath?: string | undefined;
638
- certPass?: string | undefined;
639
- }>]>, z.ZodObject<{
463
+ certPath: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
464
+ certPass: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
465
+ }, z.core.$strict>]>, z.ZodObject<{
640
466
  path: z.ZodString;
641
- password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
642
- }, "strict", z.ZodTypeAny, {
643
- path: string;
644
- password?: string | undefined;
645
- }, {
646
- path: string;
647
- password?: string | undefined;
648
- }>]>, "many">, z.ZodObject<{
467
+ password: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
468
+ }, z.core.$strict>]>>, z.ZodObject<{
649
469
  mnemonic: z.ZodString;
650
470
  addressIndex: z.ZodDefault<z.ZodNumber>;
651
471
  accountIndex: z.ZodDefault<z.ZodNumber>;
652
472
  addressCount: z.ZodDefault<z.ZodNumber>;
653
473
  accountCount: z.ZodDefault<z.ZodNumber>;
654
- }, "strict", z.ZodTypeAny, {
655
- mnemonic: string;
656
- addressIndex: number;
657
- accountIndex: number;
658
- addressCount: number;
659
- accountCount: number;
660
- }, {
661
- mnemonic: string;
662
- addressIndex?: number | undefined;
663
- accountIndex?: number | undefined;
664
- addressCount?: number | undefined;
665
- accountCount?: number | undefined;
666
- }>]>;
667
- }, "strict", z.ZodTypeAny, {
474
+ }, z.core.$strict>]>;
475
+ }, z.core.$strict>]>>>, z.ZodTransform<NonNullable<import("@aztec/foundation/eth-address").EthAddress | {
476
+ path: string;
477
+ password: string | undefined;
478
+ } | {
479
+ address: import("@aztec/foundation/eth-address").EthAddress;
480
+ remoteSignerUrl: string;
481
+ certPath: string | undefined;
482
+ certPass: string | undefined;
483
+ } | {
668
484
  id: import("@aztec/foundation/eth-address").EthAddress;
669
485
  publisher: (import("@aztec/foundation/eth-address").EthAddress | {
486
+ path: string;
487
+ password: string | undefined;
488
+ } | {
670
489
  address: import("@aztec/foundation/eth-address").EthAddress;
671
490
  remoteSignerUrl: string;
672
- certPath?: string | undefined;
673
- certPass?: string | undefined;
674
- } | {
675
- path: string;
676
- password?: string | undefined;
491
+ certPath: string | undefined;
492
+ certPass: string | undefined;
677
493
  } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
494
+ path: string;
495
+ password: string | undefined;
496
+ } | {
678
497
  address: import("@aztec/foundation/eth-address").EthAddress;
679
498
  remoteSignerUrl: string;
680
- certPath?: string | undefined;
681
- certPass?: string | undefined;
682
- } | {
683
- path: string;
684
- password?: string | undefined;
499
+ certPath: string | undefined;
500
+ certPass: string | undefined;
685
501
  } | {
686
502
  mnemonic: string;
687
503
  addressIndex: number;
@@ -689,2316 +505,360 @@ export declare const keystoreSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
689
505
  addressCount: number;
690
506
  accountCount: number;
691
507
  } | EthPrivateKey;
692
- }, {
693
- id: string;
694
- publisher: string | (string | {
695
- address: string;
696
- remoteSignerUrl: string;
697
- certPath?: string | undefined;
698
- certPass?: string | undefined;
699
- } | {
508
+ } | EthPrivateKey> | undefined, import("@aztec/foundation/eth-address").EthAddress | {
509
+ path: string;
510
+ password: string | undefined;
511
+ } | {
512
+ address: import("@aztec/foundation/eth-address").EthAddress;
513
+ remoteSignerUrl: string;
514
+ certPath: string | undefined;
515
+ certPass: string | undefined;
516
+ } | {
517
+ id: import("@aztec/foundation/eth-address").EthAddress;
518
+ publisher: (import("@aztec/foundation/eth-address").EthAddress | {
700
519
  path: string;
701
- password?: string | undefined;
702
- })[] | {
703
- address: string;
704
- remoteSignerUrl: string;
705
- certPath?: string | undefined;
706
- certPass?: string | undefined;
520
+ password: string | undefined;
707
521
  } | {
522
+ address: import("@aztec/foundation/eth-address").EthAddress;
523
+ remoteSignerUrl: string;
524
+ certPath: string | undefined;
525
+ certPass: string | undefined;
526
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
708
527
  path: string;
709
- password?: string | undefined;
710
- } | {
711
- mnemonic: string;
712
- addressIndex?: number | undefined;
713
- accountIndex?: number | undefined;
714
- addressCount?: number | undefined;
715
- accountCount?: number | undefined;
716
- };
717
- }>]>>;
718
- fundingAccount: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
719
- address: z.ZodType<import("@aztec/foundation/eth-address").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/eth-address").EthAddress;
725
- remoteSignerUrl: string;
726
- certPath?: string | undefined;
727
- certPass?: string | undefined;
728
- }, {
729
- address: string;
730
- remoteSignerUrl: string;
731
- certPath?: string | undefined;
732
- certPass?: string | undefined;
733
- }>]>, z.ZodObject<{
734
- path: z.ZodString;
735
- password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
736
- }, "strict", z.ZodTypeAny, {
737
- path: string;
738
- password?: string | undefined;
739
- }, {
740
- path: string;
741
- password?: string | undefined;
742
- }>]>>;
743
- }, "strict", z.ZodTypeAny, {
744
- schemaVersion: 1;
745
- validators?: {
746
- attester: (import("@aztec/foundation/eth-address").EthAddress | {
747
- address: import("@aztec/foundation/eth-address").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/eth-address").EthAddress | {
756
- address: import("@aztec/foundation/eth-address").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/eth-address").EthAddress | {
769
- address: import("@aztec/foundation/eth-address").EthAddress;
770
- remoteSignerUrl: string;
771
- certPath?: string | undefined;
772
- certPass?: string | undefined;
773
- } | {
774
- path: string;
775
- password?: string | undefined;
776
- } | {
777
- mnemonic: string;
778
- addressIndex: number;
779
- accountIndex: number;
780
- addressCount: number;
781
- accountCount: number;
782
- } | {
783
- eth: import("@aztec/foundation/eth-address").EthAddress | {
784
- address: import("@aztec/foundation/eth-address").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/eth-address").EthAddress | undefined;
798
- publisher?: (import("@aztec/foundation/eth-address").EthAddress | {
799
- address: import("@aztec/foundation/eth-address").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/eth-address").EthAddress | {
807
- address: import("@aztec/foundation/eth-address").EthAddress;
808
- remoteSignerUrl: string;
809
- certPath?: string | undefined;
810
- certPass?: string | undefined;
811
- } | {
812
- path: string;
813
- password?: string | undefined;
814
- } | {
815
- mnemonic: string;
816
- addressIndex: number;
817
- accountIndex: number;
818
- addressCount: number;
819
- accountCount: number;
820
- } | EthPrivateKey | undefined;
821
- feeRecipient: AztecAddress;
822
- remoteSigner?: string | {
823
- remoteSignerUrl: string;
824
- certPath?: string | undefined;
825
- certPass?: string | undefined;
826
- } | undefined;
827
- fundingAccount?: import("@aztec/foundation/eth-address").EthAddress | {
828
- address: import("@aztec/foundation/eth-address").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/eth-address").EthAddress | {
838
- address: import("@aztec/foundation/eth-address").EthAddress;
839
- remoteSignerUrl: string;
840
- certPath?: string | undefined;
841
- certPass?: string | undefined;
842
- } | {
843
- path: string;
844
- password?: string | undefined;
845
- } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
846
- address: import("@aztec/foundation/eth-address").EthAddress;
847
- remoteSignerUrl: string;
848
- certPath?: string | undefined;
849
- certPass?: string | undefined;
850
- } | {
851
- path: string;
852
- password?: string | undefined;
853
- } | {
854
- mnemonic: string;
855
- addressIndex: number;
856
- accountIndex: number;
857
- addressCount: number;
858
- accountCount: number;
859
- } | EthPrivateKey | undefined;
860
- remoteSigner?: string | {
861
- remoteSignerUrl: string;
862
- certPath?: string | undefined;
863
- certPass?: string | undefined;
864
- } | undefined;
865
- prover?: import("@aztec/foundation/eth-address").EthAddress | {
866
- address: import("@aztec/foundation/eth-address").EthAddress;
867
- remoteSignerUrl: string;
868
- certPath?: string | undefined;
869
- certPass?: string | undefined;
870
- } | {
871
- path: string;
872
- password?: string | undefined;
873
- } | {
874
- id: import("@aztec/foundation/eth-address").EthAddress;
875
- publisher: (import("@aztec/foundation/eth-address").EthAddress | {
876
- address: import("@aztec/foundation/eth-address").EthAddress;
877
- remoteSignerUrl: string;
878
- certPath?: string | undefined;
879
- certPass?: string | undefined;
880
- } | {
881
- path: string;
882
- password?: string | undefined;
883
- } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
884
- address: import("@aztec/foundation/eth-address").EthAddress;
885
- remoteSignerUrl: string;
886
- certPath?: string | undefined;
887
- certPass?: string | undefined;
888
- } | {
889
- path: string;
890
- password?: string | undefined;
891
- } | {
892
- mnemonic: string;
893
- addressIndex: number;
894
- accountIndex: number;
895
- addressCount: number;
896
- accountCount: number;
897
- } | EthPrivateKey;
898
- } | EthPrivateKey | undefined;
899
- fundingAccount?: import("@aztec/foundation/eth-address").EthAddress | {
900
- address: import("@aztec/foundation/eth-address").EthAddress;
901
- remoteSignerUrl: string;
902
- certPath?: string | undefined;
903
- certPass?: string | undefined;
904
- } | {
905
- path: string;
906
- password?: string | undefined;
907
- } | EthPrivateKey | undefined;
908
- }, {
909
- schemaVersion: 1;
910
- validators?: {
911
- attester: string | (string | {
912
- address: string;
913
- remoteSignerUrl: string;
914
- certPath?: string | undefined;
915
- certPass?: string | undefined;
916
- } | {
917
- path: string;
918
- password?: string | undefined;
919
- } | {
920
- eth: string | {
921
- address: string;
922
- remoteSignerUrl: string;
923
- certPath?: string | undefined;
924
- certPass?: string | undefined;
925
- } | {
926
- path: string;
927
- password?: string | undefined;
928
- };
929
- bls?: string | {
930
- path: string;
931
- password?: string | undefined;
932
- } | undefined;
933
- })[] | {
934
- address: string;
935
- remoteSignerUrl: string;
936
- certPath?: string | undefined;
937
- certPass?: string | undefined;
938
- } | {
939
- path: string;
940
- password?: string | undefined;
941
- } | {
942
- mnemonic: string;
943
- addressIndex?: number | undefined;
944
- accountIndex?: number | undefined;
945
- addressCount?: number | undefined;
946
- accountCount?: number | undefined;
947
- } | {
948
- eth: string | {
949
- address: string;
950
- remoteSignerUrl: string;
951
- certPath?: string | undefined;
952
- certPass?: string | undefined;
953
- } | {
954
- path: string;
955
- password?: string | undefined;
956
- };
957
- bls?: string | {
958
- path: string;
959
- password?: string | undefined;
960
- } | undefined;
961
- };
962
- coinbase?: string | undefined;
963
- publisher?: string | (string | {
964
- address: string;
965
- remoteSignerUrl: string;
966
- certPath?: string | undefined;
967
- certPass?: string | undefined;
968
- } | {
969
- path: string;
970
- password?: string | undefined;
971
- })[] | {
972
- address: string;
973
- remoteSignerUrl: string;
974
- certPath?: string | undefined;
975
- certPass?: string | undefined;
976
- } | {
977
- path: string;
978
- password?: string | undefined;
979
- } | {
980
- mnemonic: string;
981
- addressIndex?: number | undefined;
982
- accountIndex?: number | undefined;
983
- addressCount?: number | undefined;
984
- accountCount?: number | undefined;
985
- } | undefined;
986
- feeRecipient?: any;
987
- remoteSigner?: string | {
988
- remoteSignerUrl: string;
989
- certPath?: string | undefined;
990
- certPass?: string | undefined;
991
- } | undefined;
992
- fundingAccount?: string | {
993
- address: string;
994
- remoteSignerUrl: string;
995
- certPath?: string | undefined;
996
- certPass?: string | undefined;
997
- } | {
998
- path: string;
999
- password?: string | undefined;
1000
- } | undefined;
1001
- }[] | undefined;
1002
- slasher?: string | (string | {
1003
- address: string;
1004
- remoteSignerUrl: string;
1005
- certPath?: string | undefined;
1006
- certPass?: string | undefined;
1007
- } | {
1008
- path: string;
1009
- password?: string | undefined;
1010
- })[] | {
1011
- address: string;
1012
- remoteSignerUrl: string;
1013
- certPath?: string | undefined;
1014
- certPass?: string | undefined;
1015
- } | {
1016
- path: string;
1017
- password?: string | undefined;
1018
- } | {
1019
- mnemonic: string;
1020
- addressIndex?: number | undefined;
1021
- accountIndex?: number | undefined;
1022
- addressCount?: number | undefined;
1023
- accountCount?: number | undefined;
1024
- } | undefined;
1025
- remoteSigner?: string | {
1026
- remoteSignerUrl: string;
1027
- certPath?: string | undefined;
1028
- certPass?: string | undefined;
1029
- } | undefined;
1030
- prover?: string | {
1031
- address: string;
1032
- remoteSignerUrl: string;
1033
- certPath?: string | undefined;
1034
- certPass?: string | undefined;
1035
- } | {
1036
- path: string;
1037
- password?: string | undefined;
1038
- } | {
1039
- id: string;
1040
- publisher: string | (string | {
1041
- address: string;
1042
- remoteSignerUrl: string;
1043
- certPath?: string | undefined;
1044
- certPass?: string | undefined;
1045
- } | {
1046
- path: string;
1047
- password?: string | undefined;
1048
- })[] | {
1049
- address: string;
1050
- remoteSignerUrl: string;
1051
- certPath?: string | undefined;
1052
- certPass?: string | undefined;
1053
- } | {
1054
- path: string;
1055
- password?: string | undefined;
1056
- } | {
1057
- mnemonic: string;
1058
- addressIndex?: number | undefined;
1059
- accountIndex?: number | undefined;
1060
- addressCount?: number | undefined;
1061
- accountCount?: number | undefined;
1062
- };
1063
- } | undefined;
1064
- fundingAccount?: string | {
1065
- address: string;
1066
- remoteSignerUrl: string;
1067
- certPath?: string | undefined;
1068
- certPass?: string | undefined;
1069
- } | {
1070
- path: string;
1071
- password?: string | undefined;
1072
- } | undefined;
1073
- }>, {
1074
- schemaVersion: 1;
1075
- validators?: {
1076
- attester: (import("@aztec/foundation/eth-address").EthAddress | {
1077
- address: import("@aztec/foundation/eth-address").EthAddress;
1078
- remoteSignerUrl: string;
1079
- certPath?: string | undefined;
1080
- certPass?: string | undefined;
1081
- } | {
1082
- path: string;
1083
- password?: string | undefined;
1084
- } | {
1085
- eth: import("@aztec/foundation/eth-address").EthAddress | {
1086
- address: import("@aztec/foundation/eth-address").EthAddress;
1087
- remoteSignerUrl: string;
1088
- certPath?: string | undefined;
1089
- certPass?: string | undefined;
1090
- } | {
1091
- path: string;
1092
- password?: string | undefined;
1093
- } | EthPrivateKey;
1094
- bls?: {
1095
- path: string;
1096
- password?: string | undefined;
1097
- } | BLSPrivateKey | undefined;
1098
- } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
1099
- address: import("@aztec/foundation/eth-address").EthAddress;
1100
- remoteSignerUrl: string;
1101
- certPath?: string | undefined;
1102
- certPass?: string | undefined;
1103
- } | {
1104
- path: string;
1105
- password?: string | undefined;
1106
- } | {
1107
- mnemonic: string;
1108
- addressIndex: number;
1109
- accountIndex: number;
1110
- addressCount: number;
1111
- accountCount: number;
1112
- } | {
1113
- eth: import("@aztec/foundation/eth-address").EthAddress | {
1114
- address: import("@aztec/foundation/eth-address").EthAddress;
1115
- remoteSignerUrl: string;
1116
- certPath?: string | undefined;
1117
- certPass?: string | undefined;
1118
- } | {
1119
- path: string;
1120
- password?: string | undefined;
1121
- } | EthPrivateKey;
1122
- bls?: {
1123
- path: string;
1124
- password?: string | undefined;
1125
- } | BLSPrivateKey | undefined;
1126
- } | EthPrivateKey;
1127
- coinbase?: import("@aztec/foundation/eth-address").EthAddress | undefined;
1128
- publisher?: (import("@aztec/foundation/eth-address").EthAddress | {
1129
- address: import("@aztec/foundation/eth-address").EthAddress;
1130
- remoteSignerUrl: string;
1131
- certPath?: string | undefined;
1132
- certPass?: string | undefined;
1133
- } | {
1134
- path: string;
1135
- password?: string | undefined;
1136
- } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
1137
- address: import("@aztec/foundation/eth-address").EthAddress;
1138
- remoteSignerUrl: string;
1139
- certPath?: string | undefined;
1140
- certPass?: string | undefined;
1141
- } | {
1142
- path: string;
1143
- password?: string | undefined;
1144
- } | {
1145
- mnemonic: string;
1146
- addressIndex: number;
1147
- accountIndex: number;
1148
- addressCount: number;
1149
- accountCount: number;
1150
- } | EthPrivateKey | undefined;
1151
- feeRecipient: AztecAddress;
1152
- remoteSigner?: string | {
1153
- remoteSignerUrl: string;
1154
- certPath?: string | undefined;
1155
- certPass?: string | undefined;
1156
- } | undefined;
1157
- fundingAccount?: import("@aztec/foundation/eth-address").EthAddress | {
1158
- address: import("@aztec/foundation/eth-address").EthAddress;
1159
- remoteSignerUrl: string;
1160
- certPath?: string | undefined;
1161
- certPass?: string | undefined;
1162
- } | {
1163
- path: string;
1164
- password?: string | undefined;
1165
- } | EthPrivateKey | undefined;
1166
- }[] | undefined;
1167
- slasher?: (import("@aztec/foundation/eth-address").EthAddress | {
1168
- address: import("@aztec/foundation/eth-address").EthAddress;
1169
- remoteSignerUrl: string;
1170
- certPath?: string | undefined;
1171
- certPass?: string | undefined;
1172
- } | {
1173
- path: string;
1174
- password?: string | undefined;
1175
- } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
1176
- address: import("@aztec/foundation/eth-address").EthAddress;
1177
- remoteSignerUrl: string;
1178
- certPath?: string | undefined;
1179
- certPass?: string | undefined;
1180
- } | {
1181
- path: string;
1182
- password?: string | undefined;
1183
- } | {
1184
- mnemonic: string;
1185
- addressIndex: number;
1186
- accountIndex: number;
1187
- addressCount: number;
1188
- accountCount: number;
1189
- } | EthPrivateKey | undefined;
1190
- remoteSigner?: string | {
1191
- remoteSignerUrl: string;
1192
- certPath?: string | undefined;
1193
- certPass?: string | undefined;
1194
- } | undefined;
1195
- prover?: import("@aztec/foundation/eth-address").EthAddress | {
1196
- address: import("@aztec/foundation/eth-address").EthAddress;
1197
- remoteSignerUrl: string;
1198
- certPath?: string | undefined;
1199
- certPass?: string | undefined;
1200
- } | {
1201
- path: string;
1202
- password?: string | undefined;
1203
- } | {
1204
- id: import("@aztec/foundation/eth-address").EthAddress;
1205
- publisher: (import("@aztec/foundation/eth-address").EthAddress | {
1206
- address: import("@aztec/foundation/eth-address").EthAddress;
1207
- remoteSignerUrl: string;
1208
- certPath?: string | undefined;
1209
- certPass?: string | undefined;
1210
- } | {
1211
- path: string;
1212
- password?: string | undefined;
1213
- } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
1214
- address: import("@aztec/foundation/eth-address").EthAddress;
1215
- remoteSignerUrl: string;
1216
- certPath?: string | undefined;
1217
- certPass?: string | undefined;
1218
- } | {
1219
- path: string;
1220
- password?: string | undefined;
1221
- } | {
1222
- mnemonic: string;
1223
- addressIndex: number;
1224
- accountIndex: number;
1225
- addressCount: number;
1226
- accountCount: number;
1227
- } | EthPrivateKey;
1228
- } | EthPrivateKey | undefined;
1229
- fundingAccount?: import("@aztec/foundation/eth-address").EthAddress | {
1230
- address: import("@aztec/foundation/eth-address").EthAddress;
1231
- remoteSignerUrl: string;
1232
- certPath?: string | undefined;
1233
- certPass?: string | undefined;
1234
- } | {
1235
- path: string;
1236
- password?: string | undefined;
1237
- } | EthPrivateKey | undefined;
1238
- }, {
1239
- schemaVersion: 1;
1240
- validators?: {
1241
- attester: string | (string | {
1242
- address: string;
1243
- remoteSignerUrl: string;
1244
- certPath?: string | undefined;
1245
- certPass?: string | undefined;
1246
- } | {
1247
- path: string;
1248
- password?: string | undefined;
1249
- } | {
1250
- eth: string | {
1251
- address: string;
1252
- remoteSignerUrl: string;
1253
- certPath?: string | undefined;
1254
- certPass?: string | undefined;
1255
- } | {
1256
- path: string;
1257
- password?: string | undefined;
1258
- };
1259
- bls?: string | {
1260
- path: string;
1261
- password?: string | undefined;
1262
- } | undefined;
1263
- })[] | {
1264
- address: string;
1265
- remoteSignerUrl: string;
1266
- certPath?: string | undefined;
1267
- certPass?: string | undefined;
1268
- } | {
1269
- path: string;
1270
- password?: string | undefined;
1271
- } | {
1272
- mnemonic: string;
1273
- addressIndex?: number | undefined;
1274
- accountIndex?: number | undefined;
1275
- addressCount?: number | undefined;
1276
- accountCount?: number | undefined;
1277
- } | {
1278
- eth: string | {
1279
- address: string;
1280
- remoteSignerUrl: string;
1281
- certPath?: string | undefined;
1282
- certPass?: string | undefined;
1283
- } | {
1284
- path: string;
1285
- password?: string | undefined;
1286
- };
1287
- bls?: string | {
1288
- path: string;
1289
- password?: string | undefined;
1290
- } | undefined;
1291
- };
1292
- coinbase?: string | undefined;
1293
- publisher?: string | (string | {
1294
- address: string;
1295
- remoteSignerUrl: string;
1296
- certPath?: string | undefined;
1297
- certPass?: string | undefined;
1298
- } | {
1299
- path: string;
1300
- password?: string | undefined;
1301
- })[] | {
1302
- address: string;
1303
- remoteSignerUrl: string;
1304
- certPath?: string | undefined;
1305
- certPass?: string | undefined;
1306
- } | {
1307
- path: string;
1308
- password?: string | undefined;
1309
- } | {
1310
- mnemonic: string;
1311
- addressIndex?: number | undefined;
1312
- accountIndex?: number | undefined;
1313
- addressCount?: number | undefined;
1314
- accountCount?: number | undefined;
1315
- } | undefined;
1316
- feeRecipient?: any;
1317
- remoteSigner?: string | {
1318
- remoteSignerUrl: string;
1319
- certPath?: string | undefined;
1320
- certPass?: string | undefined;
1321
- } | undefined;
1322
- fundingAccount?: string | {
1323
- address: string;
1324
- remoteSignerUrl: string;
1325
- certPath?: string | undefined;
1326
- certPass?: string | undefined;
1327
- } | {
1328
- path: string;
1329
- password?: string | undefined;
1330
- } | undefined;
1331
- }[] | undefined;
1332
- slasher?: string | (string | {
1333
- address: string;
1334
- remoteSignerUrl: string;
1335
- certPath?: string | undefined;
1336
- certPass?: string | undefined;
1337
- } | {
1338
- path: string;
1339
- password?: string | undefined;
1340
- })[] | {
1341
- address: string;
1342
- remoteSignerUrl: string;
1343
- certPath?: string | undefined;
1344
- certPass?: string | undefined;
1345
- } | {
1346
- path: string;
1347
- password?: string | undefined;
1348
- } | {
1349
- mnemonic: string;
1350
- addressIndex?: number | undefined;
1351
- accountIndex?: number | undefined;
1352
- addressCount?: number | undefined;
1353
- accountCount?: number | undefined;
1354
- } | undefined;
1355
- remoteSigner?: string | {
1356
- remoteSignerUrl: string;
1357
- certPath?: string | undefined;
1358
- certPass?: string | undefined;
1359
- } | undefined;
1360
- prover?: string | {
1361
- address: string;
1362
- remoteSignerUrl: string;
1363
- certPath?: string | undefined;
1364
- certPass?: string | undefined;
1365
- } | {
1366
- path: string;
1367
- password?: string | undefined;
1368
- } | {
1369
- id: string;
1370
- publisher: string | (string | {
1371
- address: string;
1372
- remoteSignerUrl: string;
1373
- certPath?: string | undefined;
1374
- certPass?: string | undefined;
1375
- } | {
1376
- path: string;
1377
- password?: string | undefined;
1378
- })[] | {
1379
- address: string;
1380
- remoteSignerUrl: string;
1381
- certPath?: string | undefined;
1382
- certPass?: string | undefined;
1383
- } | {
1384
- path: string;
1385
- password?: string | undefined;
1386
- } | {
1387
- mnemonic: string;
1388
- addressIndex?: number | undefined;
1389
- accountIndex?: number | undefined;
1390
- addressCount?: number | undefined;
1391
- accountCount?: number | undefined;
1392
- };
1393
- } | undefined;
1394
- fundingAccount?: string | {
1395
- address: string;
1396
- remoteSignerUrl: string;
1397
- certPath?: string | undefined;
1398
- certPass?: string | undefined;
1399
- } | {
1400
- path: string;
1401
- password?: string | undefined;
1402
- } | undefined;
1403
- }>, z.ZodEffects<z.ZodEffects<z.ZodObject<{
1404
- schemaVersion: z.ZodLiteral<2>;
1405
- validators: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodArray<z.ZodObject<{
1406
- attester: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
1407
- address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
1408
- remoteSignerUrl: z.ZodString;
1409
- certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1410
- certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1411
- }, "strict", z.ZodTypeAny, {
1412
- address: import("@aztec/foundation/eth-address").EthAddress;
1413
- remoteSignerUrl: string;
1414
- certPath?: string | undefined;
1415
- certPass?: string | undefined;
1416
- }, {
1417
- address: string;
1418
- remoteSignerUrl: string;
1419
- certPath?: string | undefined;
1420
- certPass?: string | undefined;
1421
- }>]>, z.ZodObject<{
1422
- path: z.ZodString;
1423
- password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1424
- }, "strict", z.ZodTypeAny, {
1425
- path: string;
1426
- password?: string | undefined;
1427
- }, {
1428
- path: string;
1429
- password?: string | undefined;
1430
- }>]>, z.ZodObject<{
1431
- eth: z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
1432
- address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
1433
- remoteSignerUrl: z.ZodString;
1434
- certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1435
- certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1436
- }, "strict", z.ZodTypeAny, {
1437
- address: import("@aztec/foundation/eth-address").EthAddress;
1438
- remoteSignerUrl: string;
1439
- certPath?: string | undefined;
1440
- certPass?: string | undefined;
1441
- }, {
1442
- address: string;
1443
- remoteSignerUrl: string;
1444
- certPath?: string | undefined;
1445
- certPass?: string | undefined;
1446
- }>]>, z.ZodObject<{
1447
- path: z.ZodString;
1448
- password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1449
- }, "strict", z.ZodTypeAny, {
1450
- path: string;
1451
- password?: string | undefined;
1452
- }, {
1453
- path: string;
1454
- password?: string | undefined;
1455
- }>]>;
1456
- bls: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, BLSPrivateKey, string>, z.ZodObject<{
1457
- path: z.ZodString;
1458
- password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1459
- }, "strict", z.ZodTypeAny, {
1460
- path: string;
1461
- password?: string | undefined;
1462
- }, {
1463
- path: string;
1464
- password?: string | undefined;
1465
- }>]>>;
1466
- }, "strict", z.ZodTypeAny, {
1467
- eth: import("@aztec/foundation/eth-address").EthAddress | {
1468
- address: import("@aztec/foundation/eth-address").EthAddress;
1469
- remoteSignerUrl: string;
1470
- certPath?: string | undefined;
1471
- certPass?: string | undefined;
1472
- } | {
1473
- path: string;
1474
- password?: string | undefined;
1475
- } | EthPrivateKey;
1476
- bls?: {
1477
- path: string;
1478
- password?: string | undefined;
1479
- } | BLSPrivateKey | undefined;
1480
- }, {
1481
- eth: string | {
1482
- address: string;
1483
- remoteSignerUrl: string;
1484
- certPath?: string | undefined;
1485
- certPass?: string | undefined;
1486
- } | {
1487
- path: string;
1488
- password?: string | undefined;
1489
- };
1490
- bls?: string | {
1491
- path: string;
1492
- password?: string | undefined;
1493
- } | undefined;
1494
- }>]>, z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
1495
- address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
1496
- remoteSignerUrl: z.ZodString;
1497
- certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1498
- certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1499
- }, "strict", z.ZodTypeAny, {
1500
- address: import("@aztec/foundation/eth-address").EthAddress;
1501
- remoteSignerUrl: string;
1502
- certPath?: string | undefined;
1503
- certPass?: string | undefined;
1504
- }, {
1505
- address: string;
1506
- remoteSignerUrl: string;
1507
- certPath?: string | undefined;
1508
- certPass?: string | undefined;
1509
- }>]>, z.ZodObject<{
1510
- path: z.ZodString;
1511
- password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1512
- }, "strict", z.ZodTypeAny, {
1513
- path: string;
1514
- password?: string | undefined;
1515
- }, {
1516
- path: string;
1517
- password?: string | undefined;
1518
- }>]>, z.ZodObject<{
1519
- eth: z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
1520
- address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
1521
- remoteSignerUrl: z.ZodString;
1522
- certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1523
- certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1524
- }, "strict", z.ZodTypeAny, {
1525
- address: import("@aztec/foundation/eth-address").EthAddress;
1526
- remoteSignerUrl: string;
1527
- certPath?: string | undefined;
1528
- certPass?: string | undefined;
1529
- }, {
1530
- address: string;
1531
- remoteSignerUrl: string;
1532
- certPath?: string | undefined;
1533
- certPass?: string | undefined;
1534
- }>]>, z.ZodObject<{
1535
- path: z.ZodString;
1536
- password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1537
- }, "strict", z.ZodTypeAny, {
1538
- path: string;
1539
- password?: string | undefined;
1540
- }, {
1541
- path: string;
1542
- password?: string | undefined;
1543
- }>]>;
1544
- bls: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, BLSPrivateKey, string>, z.ZodObject<{
1545
- path: z.ZodString;
1546
- password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1547
- }, "strict", z.ZodTypeAny, {
1548
- path: string;
1549
- password?: string | undefined;
1550
- }, {
1551
- path: string;
1552
- password?: string | undefined;
1553
- }>]>>;
1554
- }, "strict", z.ZodTypeAny, {
1555
- eth: import("@aztec/foundation/eth-address").EthAddress | {
1556
- address: import("@aztec/foundation/eth-address").EthAddress;
1557
- remoteSignerUrl: string;
1558
- certPath?: string | undefined;
1559
- certPass?: string | undefined;
1560
- } | {
1561
- path: string;
1562
- password?: string | undefined;
1563
- } | EthPrivateKey;
1564
- bls?: {
1565
- path: string;
1566
- password?: string | undefined;
1567
- } | BLSPrivateKey | undefined;
1568
- }, {
1569
- eth: string | {
1570
- address: string;
1571
- remoteSignerUrl: string;
1572
- certPath?: string | undefined;
1573
- certPass?: string | undefined;
1574
- } | {
1575
- path: string;
1576
- password?: string | undefined;
1577
- };
1578
- bls?: string | {
1579
- path: string;
1580
- password?: string | undefined;
1581
- } | undefined;
1582
- }>]>, "many">, z.ZodObject<{
1583
- mnemonic: z.ZodString;
1584
- addressIndex: z.ZodDefault<z.ZodNumber>;
1585
- accountIndex: z.ZodDefault<z.ZodNumber>;
1586
- addressCount: z.ZodDefault<z.ZodNumber>;
1587
- accountCount: z.ZodDefault<z.ZodNumber>;
1588
- }, "strict", z.ZodTypeAny, {
1589
- mnemonic: string;
1590
- addressIndex: number;
1591
- accountIndex: number;
1592
- addressCount: number;
1593
- accountCount: number;
1594
- }, {
1595
- mnemonic: string;
1596
- addressIndex?: number | undefined;
1597
- accountIndex?: number | undefined;
1598
- addressCount?: number | undefined;
1599
- accountCount?: number | undefined;
1600
- }>]>;
1601
- coinbase: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>>;
1602
- publisher: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
1603
- address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
1604
- remoteSignerUrl: z.ZodString;
1605
- certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1606
- certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1607
- }, "strict", z.ZodTypeAny, {
1608
- address: import("@aztec/foundation/eth-address").EthAddress;
1609
- remoteSignerUrl: string;
1610
- certPath?: string | undefined;
1611
- certPass?: string | undefined;
1612
- }, {
1613
- address: string;
1614
- remoteSignerUrl: string;
1615
- certPath?: string | undefined;
1616
- certPass?: string | undefined;
1617
- }>]>, z.ZodObject<{
1618
- path: z.ZodString;
1619
- password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1620
- }, "strict", z.ZodTypeAny, {
1621
- path: string;
1622
- password?: string | undefined;
1623
- }, {
1624
- path: string;
1625
- password?: string | undefined;
1626
- }>]>, z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
1627
- address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
1628
- remoteSignerUrl: z.ZodString;
1629
- certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1630
- certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1631
- }, "strict", z.ZodTypeAny, {
1632
- address: import("@aztec/foundation/eth-address").EthAddress;
1633
- remoteSignerUrl: string;
1634
- certPath?: string | undefined;
1635
- certPass?: string | undefined;
1636
- }, {
1637
- address: string;
1638
- remoteSignerUrl: string;
1639
- certPath?: string | undefined;
1640
- certPass?: string | undefined;
1641
- }>]>, z.ZodObject<{
1642
- path: z.ZodString;
1643
- password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1644
- }, "strict", z.ZodTypeAny, {
1645
- path: string;
1646
- password?: string | undefined;
1647
- }, {
1648
- path: string;
1649
- password?: string | undefined;
1650
- }>]>, "many">, z.ZodObject<{
1651
- mnemonic: z.ZodString;
1652
- addressIndex: z.ZodDefault<z.ZodNumber>;
1653
- accountIndex: z.ZodDefault<z.ZodNumber>;
1654
- addressCount: z.ZodDefault<z.ZodNumber>;
1655
- accountCount: z.ZodDefault<z.ZodNumber>;
1656
- }, "strict", z.ZodTypeAny, {
1657
- mnemonic: string;
1658
- addressIndex: number;
1659
- accountIndex: number;
1660
- addressCount: number;
1661
- accountCount: number;
1662
- }, {
1663
- mnemonic: string;
1664
- addressIndex?: number | undefined;
1665
- accountIndex?: number | undefined;
1666
- addressCount?: number | undefined;
1667
- accountCount?: number | undefined;
1668
- }>]>>;
1669
- feeRecipient: import("@aztec/foundation/schemas").ZodNullableOptional<import("@aztec/foundation/schemas").ZodFor<AztecAddress>>;
1670
- remoteSigner: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
1671
- remoteSignerUrl: z.ZodString;
1672
- certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1673
- certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1674
- }, "strict", z.ZodTypeAny, {
1675
- remoteSignerUrl: string;
1676
- certPath?: string | undefined;
1677
- certPass?: string | undefined;
1678
- }, {
1679
- remoteSignerUrl: string;
1680
- certPath?: string | undefined;
1681
- certPass?: string | undefined;
1682
- }>]>>;
1683
- fundingAccount: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
1684
- address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
1685
- remoteSignerUrl: z.ZodString;
1686
- certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1687
- certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1688
- }, "strict", z.ZodTypeAny, {
1689
- address: import("@aztec/foundation/eth-address").EthAddress;
1690
- remoteSignerUrl: string;
1691
- certPath?: string | undefined;
1692
- certPass?: string | undefined;
1693
- }, {
1694
- address: string;
1695
- remoteSignerUrl: string;
1696
- certPath?: string | undefined;
1697
- certPass?: string | undefined;
1698
- }>]>, z.ZodObject<{
1699
- path: z.ZodString;
1700
- password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1701
- }, "strict", z.ZodTypeAny, {
1702
- path: string;
1703
- password?: string | undefined;
1704
- }, {
1705
- path: string;
1706
- password?: string | undefined;
1707
- }>]>>;
1708
- }, "strict", z.ZodTypeAny, {
1709
- attester: (import("@aztec/foundation/eth-address").EthAddress | {
1710
- address: import("@aztec/foundation/eth-address").EthAddress;
1711
- remoteSignerUrl: string;
1712
- certPath?: string | undefined;
1713
- certPass?: string | undefined;
1714
- } | {
1715
- path: string;
1716
- password?: string | undefined;
1717
- } | {
1718
- eth: import("@aztec/foundation/eth-address").EthAddress | {
1719
- address: import("@aztec/foundation/eth-address").EthAddress;
1720
- remoteSignerUrl: string;
1721
- certPath?: string | undefined;
1722
- certPass?: string | undefined;
1723
- } | {
1724
- path: string;
1725
- password?: string | undefined;
1726
- } | EthPrivateKey;
1727
- bls?: {
1728
- path: string;
1729
- password?: string | undefined;
1730
- } | BLSPrivateKey | undefined;
1731
- } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
1732
- address: import("@aztec/foundation/eth-address").EthAddress;
1733
- remoteSignerUrl: string;
1734
- certPath?: string | undefined;
1735
- certPass?: string | undefined;
1736
- } | {
1737
- path: string;
1738
- password?: string | undefined;
1739
- } | {
1740
- mnemonic: string;
1741
- addressIndex: number;
1742
- accountIndex: number;
1743
- addressCount: number;
1744
- accountCount: number;
1745
- } | {
1746
- eth: import("@aztec/foundation/eth-address").EthAddress | {
1747
- address: import("@aztec/foundation/eth-address").EthAddress;
1748
- remoteSignerUrl: string;
1749
- certPath?: string | undefined;
1750
- certPass?: string | undefined;
1751
- } | {
1752
- path: string;
1753
- password?: string | undefined;
1754
- } | EthPrivateKey;
1755
- bls?: {
1756
- path: string;
1757
- password?: string | undefined;
1758
- } | BLSPrivateKey | undefined;
1759
- } | EthPrivateKey;
1760
- coinbase?: import("@aztec/foundation/eth-address").EthAddress | undefined;
1761
- publisher?: (import("@aztec/foundation/eth-address").EthAddress | {
1762
- address: import("@aztec/foundation/eth-address").EthAddress;
1763
- remoteSignerUrl: string;
1764
- certPath?: string | undefined;
1765
- certPass?: string | undefined;
1766
- } | {
1767
- path: string;
1768
- password?: string | undefined;
1769
- } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
1770
- address: import("@aztec/foundation/eth-address").EthAddress;
1771
- remoteSignerUrl: string;
1772
- certPath?: string | undefined;
1773
- certPass?: string | undefined;
1774
- } | {
1775
- path: string;
1776
- password?: string | undefined;
1777
- } | {
1778
- mnemonic: string;
1779
- addressIndex: number;
1780
- accountIndex: number;
1781
- addressCount: number;
1782
- accountCount: number;
1783
- } | EthPrivateKey | undefined;
1784
- feeRecipient?: AztecAddress | undefined;
1785
- remoteSigner?: string | {
1786
- remoteSignerUrl: string;
1787
- certPath?: string | undefined;
1788
- certPass?: string | undefined;
1789
- } | undefined;
1790
- fundingAccount?: import("@aztec/foundation/eth-address").EthAddress | {
1791
- address: import("@aztec/foundation/eth-address").EthAddress;
1792
- remoteSignerUrl: string;
1793
- certPath?: string | undefined;
1794
- certPass?: string | undefined;
1795
- } | {
1796
- path: string;
1797
- password?: string | undefined;
1798
- } | EthPrivateKey | undefined;
1799
- }, {
1800
- attester: string | (string | {
1801
- address: string;
1802
- remoteSignerUrl: string;
1803
- certPath?: string | undefined;
1804
- certPass?: string | undefined;
1805
- } | {
1806
- path: string;
1807
- password?: string | undefined;
1808
- } | {
1809
- eth: string | {
1810
- address: string;
1811
- remoteSignerUrl: string;
1812
- certPath?: string | undefined;
1813
- certPass?: string | undefined;
1814
- } | {
1815
- path: string;
1816
- password?: string | undefined;
1817
- };
1818
- bls?: string | {
1819
- path: string;
1820
- password?: string | undefined;
1821
- } | undefined;
1822
- })[] | {
1823
- address: string;
1824
- remoteSignerUrl: string;
1825
- certPath?: string | undefined;
1826
- certPass?: string | undefined;
1827
- } | {
1828
- path: string;
1829
- password?: string | undefined;
1830
- } | {
1831
- mnemonic: string;
1832
- addressIndex?: number | undefined;
1833
- accountIndex?: number | undefined;
1834
- addressCount?: number | undefined;
1835
- accountCount?: number | undefined;
1836
- } | {
1837
- eth: string | {
1838
- address: string;
1839
- remoteSignerUrl: string;
1840
- certPath?: string | undefined;
1841
- certPass?: string | undefined;
1842
- } | {
1843
- path: string;
1844
- password?: string | undefined;
1845
- };
1846
- bls?: string | {
1847
- path: string;
1848
- password?: string | undefined;
1849
- } | undefined;
1850
- };
1851
- coinbase?: string | undefined;
1852
- publisher?: string | (string | {
1853
- address: string;
1854
- remoteSignerUrl: string;
1855
- certPath?: string | undefined;
1856
- certPass?: string | undefined;
1857
- } | {
1858
- path: string;
1859
- password?: string | undefined;
1860
- })[] | {
1861
- address: string;
1862
- remoteSignerUrl: string;
1863
- certPath?: string | undefined;
1864
- certPass?: string | undefined;
1865
- } | {
1866
- path: string;
1867
- password?: string | undefined;
1868
- } | {
1869
- mnemonic: string;
1870
- addressIndex?: number | undefined;
1871
- accountIndex?: number | undefined;
1872
- addressCount?: number | undefined;
1873
- accountCount?: number | undefined;
1874
- } | undefined;
1875
- feeRecipient?: any;
1876
- remoteSigner?: string | {
1877
- remoteSignerUrl: string;
1878
- certPath?: string | undefined;
1879
- certPass?: string | undefined;
1880
- } | undefined;
1881
- fundingAccount?: string | {
1882
- address: string;
1883
- remoteSignerUrl: string;
1884
- certPath?: string | undefined;
1885
- certPass?: string | undefined;
1886
- } | {
1887
- path: string;
1888
- password?: string | undefined;
1889
- } | undefined;
1890
- }>, "many">>;
1891
- slasher: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
1892
- address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
1893
- remoteSignerUrl: z.ZodString;
1894
- certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1895
- certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1896
- }, "strict", z.ZodTypeAny, {
1897
- address: import("@aztec/foundation/eth-address").EthAddress;
1898
- remoteSignerUrl: string;
1899
- certPath?: string | undefined;
1900
- certPass?: string | undefined;
1901
- }, {
1902
- address: string;
1903
- remoteSignerUrl: string;
1904
- certPath?: string | undefined;
1905
- certPass?: string | undefined;
1906
- }>]>, z.ZodObject<{
1907
- path: z.ZodString;
1908
- password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1909
- }, "strict", z.ZodTypeAny, {
1910
- path: string;
1911
- password?: string | undefined;
1912
- }, {
1913
- path: string;
1914
- password?: string | undefined;
1915
- }>]>, z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
1916
- address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
1917
- remoteSignerUrl: z.ZodString;
1918
- certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1919
- certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1920
- }, "strict", z.ZodTypeAny, {
1921
- address: import("@aztec/foundation/eth-address").EthAddress;
1922
- remoteSignerUrl: string;
1923
- certPath?: string | undefined;
1924
- certPass?: string | undefined;
1925
- }, {
1926
- address: string;
1927
- remoteSignerUrl: string;
1928
- certPath?: string | undefined;
1929
- certPass?: string | undefined;
1930
- }>]>, z.ZodObject<{
1931
- path: z.ZodString;
1932
- password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1933
- }, "strict", z.ZodTypeAny, {
1934
- path: string;
1935
- password?: string | undefined;
1936
- }, {
1937
- path: string;
1938
- password?: string | undefined;
1939
- }>]>, "many">, z.ZodObject<{
1940
- mnemonic: z.ZodString;
1941
- addressIndex: z.ZodDefault<z.ZodNumber>;
1942
- accountIndex: z.ZodDefault<z.ZodNumber>;
1943
- addressCount: z.ZodDefault<z.ZodNumber>;
1944
- accountCount: z.ZodDefault<z.ZodNumber>;
1945
- }, "strict", z.ZodTypeAny, {
1946
- mnemonic: string;
1947
- addressIndex: number;
1948
- accountIndex: number;
1949
- addressCount: number;
1950
- accountCount: number;
1951
- }, {
1952
- mnemonic: string;
1953
- addressIndex?: number | undefined;
1954
- accountIndex?: number | undefined;
1955
- addressCount?: number | undefined;
1956
- accountCount?: number | undefined;
1957
- }>]>>;
1958
- remoteSigner: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
1959
- remoteSignerUrl: z.ZodString;
1960
- certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1961
- certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1962
- }, "strict", z.ZodTypeAny, {
1963
- remoteSignerUrl: string;
1964
- certPath?: string | undefined;
1965
- certPass?: string | undefined;
1966
- }, {
1967
- remoteSignerUrl: string;
1968
- certPath?: string | undefined;
1969
- certPass?: string | undefined;
1970
- }>]>>;
1971
- prover: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
1972
- address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
1973
- remoteSignerUrl: z.ZodString;
1974
- certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1975
- certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1976
- }, "strict", z.ZodTypeAny, {
1977
- address: import("@aztec/foundation/eth-address").EthAddress;
1978
- remoteSignerUrl: string;
1979
- certPath?: string | undefined;
1980
- certPass?: string | undefined;
1981
- }, {
1982
- address: string;
1983
- remoteSignerUrl: string;
1984
- certPath?: string | undefined;
1985
- certPass?: string | undefined;
1986
- }>]>, z.ZodObject<{
1987
- path: z.ZodString;
1988
- password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
1989
- }, "strict", z.ZodTypeAny, {
1990
- path: string;
1991
- password?: string | undefined;
1992
- }, {
1993
- path: string;
1994
- password?: string | undefined;
1995
- }>]>, z.ZodObject<{
1996
- id: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
1997
- publisher: z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
1998
- address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
1999
- remoteSignerUrl: z.ZodString;
2000
- certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2001
- certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2002
- }, "strict", z.ZodTypeAny, {
2003
- address: import("@aztec/foundation/eth-address").EthAddress;
2004
- remoteSignerUrl: string;
2005
- certPath?: string | undefined;
2006
- certPass?: string | undefined;
2007
- }, {
2008
- address: string;
2009
- remoteSignerUrl: string;
2010
- certPath?: string | undefined;
2011
- certPass?: string | undefined;
2012
- }>]>, z.ZodObject<{
2013
- path: z.ZodString;
2014
- password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2015
- }, "strict", z.ZodTypeAny, {
2016
- path: string;
2017
- password?: string | undefined;
2018
- }, {
2019
- path: string;
2020
- password?: string | undefined;
2021
- }>]>, z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
2022
- address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
2023
- remoteSignerUrl: z.ZodString;
2024
- certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2025
- certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2026
- }, "strict", z.ZodTypeAny, {
2027
- address: import("@aztec/foundation/eth-address").EthAddress;
2028
- remoteSignerUrl: string;
2029
- certPath?: string | undefined;
2030
- certPass?: string | undefined;
2031
- }, {
2032
- address: string;
2033
- remoteSignerUrl: string;
2034
- certPath?: string | undefined;
2035
- certPass?: string | undefined;
2036
- }>]>, z.ZodObject<{
2037
- path: z.ZodString;
2038
- password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2039
- }, "strict", z.ZodTypeAny, {
2040
- path: string;
2041
- password?: string | undefined;
2042
- }, {
2043
- path: string;
2044
- password?: string | undefined;
2045
- }>]>, "many">, z.ZodObject<{
2046
- mnemonic: z.ZodString;
2047
- addressIndex: z.ZodDefault<z.ZodNumber>;
2048
- accountIndex: z.ZodDefault<z.ZodNumber>;
2049
- addressCount: z.ZodDefault<z.ZodNumber>;
2050
- accountCount: z.ZodDefault<z.ZodNumber>;
2051
- }, "strict", z.ZodTypeAny, {
2052
- mnemonic: string;
2053
- addressIndex: number;
2054
- accountIndex: number;
2055
- addressCount: number;
2056
- accountCount: number;
2057
- }, {
2058
- mnemonic: string;
2059
- addressIndex?: number | undefined;
2060
- accountIndex?: number | undefined;
2061
- addressCount?: number | undefined;
2062
- accountCount?: number | undefined;
2063
- }>]>;
2064
- }, "strict", z.ZodTypeAny, {
2065
- id: import("@aztec/foundation/eth-address").EthAddress;
2066
- publisher: (import("@aztec/foundation/eth-address").EthAddress | {
2067
- address: import("@aztec/foundation/eth-address").EthAddress;
2068
- remoteSignerUrl: string;
2069
- certPath?: string | undefined;
2070
- certPass?: string | undefined;
2071
- } | {
2072
- path: string;
2073
- password?: string | undefined;
2074
- } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
2075
- address: import("@aztec/foundation/eth-address").EthAddress;
2076
- remoteSignerUrl: string;
2077
- certPath?: string | undefined;
2078
- certPass?: string | undefined;
2079
- } | {
2080
- path: string;
2081
- password?: string | undefined;
2082
- } | {
2083
- mnemonic: string;
2084
- addressIndex: number;
2085
- accountIndex: number;
2086
- addressCount: number;
2087
- accountCount: number;
2088
- } | EthPrivateKey;
2089
- }, {
2090
- id: string;
2091
- publisher: string | (string | {
2092
- address: string;
2093
- remoteSignerUrl: string;
2094
- certPath?: string | undefined;
2095
- certPass?: string | undefined;
2096
- } | {
2097
- path: string;
2098
- password?: string | undefined;
2099
- })[] | {
2100
- address: string;
2101
- remoteSignerUrl: string;
2102
- certPath?: string | undefined;
2103
- certPass?: string | undefined;
2104
- } | {
2105
- path: string;
2106
- password?: string | undefined;
2107
- } | {
2108
- mnemonic: string;
2109
- addressIndex?: number | undefined;
2110
- accountIndex?: number | undefined;
2111
- addressCount?: number | undefined;
2112
- accountCount?: number | undefined;
2113
- };
2114
- }>]>>;
2115
- fundingAccount: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
2116
- address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
2117
- remoteSignerUrl: z.ZodString;
2118
- certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2119
- certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2120
- }, "strict", z.ZodTypeAny, {
2121
- address: import("@aztec/foundation/eth-address").EthAddress;
2122
- remoteSignerUrl: string;
2123
- certPath?: string | undefined;
2124
- certPass?: string | undefined;
2125
- }, {
2126
- address: string;
2127
- remoteSignerUrl: string;
2128
- certPath?: string | undefined;
2129
- certPass?: string | undefined;
2130
- }>]>, z.ZodObject<{
2131
- path: z.ZodString;
2132
- password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2133
- }, "strict", z.ZodTypeAny, {
2134
- path: string;
2135
- password?: string | undefined;
2136
- }, {
2137
- path: string;
2138
- password?: string | undefined;
2139
- }>]>>;
2140
- publisher: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
2141
- address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
2142
- remoteSignerUrl: z.ZodString;
2143
- certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2144
- certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2145
- }, "strict", z.ZodTypeAny, {
2146
- address: import("@aztec/foundation/eth-address").EthAddress;
2147
- remoteSignerUrl: string;
2148
- certPath?: string | undefined;
2149
- certPass?: string | undefined;
2150
- }, {
2151
- address: string;
2152
- remoteSignerUrl: string;
2153
- certPath?: string | undefined;
2154
- certPass?: string | undefined;
2155
- }>]>, z.ZodObject<{
2156
- path: z.ZodString;
2157
- password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2158
- }, "strict", z.ZodTypeAny, {
2159
- path: string;
2160
- password?: string | undefined;
2161
- }, {
2162
- path: string;
2163
- password?: string | undefined;
2164
- }>]>, z.ZodArray<z.ZodUnion<[z.ZodEffects<z.ZodString, EthPrivateKey, string>, z.ZodUnion<[z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>, z.ZodObject<{
2165
- address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>;
2166
- remoteSignerUrl: z.ZodString;
2167
- certPath: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2168
- certPass: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2169
- }, "strict", z.ZodTypeAny, {
2170
- address: import("@aztec/foundation/eth-address").EthAddress;
2171
- remoteSignerUrl: string;
2172
- certPath?: string | undefined;
2173
- certPass?: string | undefined;
2174
- }, {
2175
- address: string;
2176
- remoteSignerUrl: string;
2177
- certPath?: string | undefined;
2178
- certPass?: string | undefined;
2179
- }>]>, z.ZodObject<{
2180
- path: z.ZodString;
2181
- password: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodString>;
2182
- }, "strict", z.ZodTypeAny, {
2183
- path: string;
2184
- password?: string | undefined;
2185
- }, {
2186
- path: string;
2187
- password?: string | undefined;
2188
- }>]>, "many">, z.ZodObject<{
2189
- mnemonic: z.ZodString;
2190
- addressIndex: z.ZodDefault<z.ZodNumber>;
2191
- accountIndex: z.ZodDefault<z.ZodNumber>;
2192
- addressCount: z.ZodDefault<z.ZodNumber>;
2193
- accountCount: z.ZodDefault<z.ZodNumber>;
2194
- }, "strict", z.ZodTypeAny, {
2195
- mnemonic: string;
2196
- addressIndex: number;
2197
- accountIndex: number;
2198
- addressCount: number;
2199
- accountCount: number;
2200
- }, {
2201
- mnemonic: string;
2202
- addressIndex?: number | undefined;
2203
- accountIndex?: number | undefined;
2204
- addressCount?: number | undefined;
2205
- accountCount?: number | undefined;
2206
- }>]>>;
2207
- coinbase: import("@aztec/foundation/schemas").ZodNullableOptional<z.ZodType<import("@aztec/foundation/eth-address").EthAddress, any, string>>;
2208
- feeRecipient: import("@aztec/foundation/schemas").ZodNullableOptional<import("@aztec/foundation/schemas").ZodFor<AztecAddress>>;
2209
- }, "strict", z.ZodTypeAny, {
2210
- schemaVersion: 2;
2211
- validators?: {
2212
- attester: (import("@aztec/foundation/eth-address").EthAddress | {
2213
- address: import("@aztec/foundation/eth-address").EthAddress;
2214
- remoteSignerUrl: string;
2215
- certPath?: string | undefined;
2216
- certPass?: string | undefined;
2217
- } | {
2218
- path: string;
2219
- password?: string | undefined;
2220
- } | {
2221
- eth: import("@aztec/foundation/eth-address").EthAddress | {
2222
- address: import("@aztec/foundation/eth-address").EthAddress;
2223
- remoteSignerUrl: string;
2224
- certPath?: string | undefined;
2225
- certPass?: string | undefined;
2226
- } | {
2227
- path: string;
2228
- password?: string | undefined;
2229
- } | EthPrivateKey;
2230
- bls?: {
2231
- path: string;
2232
- password?: string | undefined;
2233
- } | BLSPrivateKey | undefined;
2234
- } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
2235
- address: import("@aztec/foundation/eth-address").EthAddress;
2236
- remoteSignerUrl: string;
2237
- certPath?: string | undefined;
2238
- certPass?: string | undefined;
2239
- } | {
2240
- path: string;
2241
- password?: string | undefined;
528
+ password: string | undefined;
529
+ } | {
530
+ address: import("@aztec/foundation/eth-address").EthAddress;
531
+ remoteSignerUrl: string;
532
+ certPath: string | undefined;
533
+ certPass: string | undefined;
2242
534
  } | {
2243
535
  mnemonic: string;
2244
536
  addressIndex: number;
2245
537
  accountIndex: number;
2246
538
  addressCount: number;
2247
539
  accountCount: number;
2248
- } | {
2249
- eth: import("@aztec/foundation/eth-address").EthAddress | {
2250
- address: import("@aztec/foundation/eth-address").EthAddress;
2251
- remoteSignerUrl: string;
2252
- certPath?: string | undefined;
2253
- certPass?: string | undefined;
2254
- } | {
2255
- path: string;
2256
- password?: string | undefined;
2257
- } | EthPrivateKey;
2258
- bls?: {
2259
- path: string;
2260
- password?: string | undefined;
2261
- } | BLSPrivateKey | undefined;
2262
540
  } | EthPrivateKey;
2263
- coinbase?: import("@aztec/foundation/eth-address").EthAddress | undefined;
2264
- publisher?: (import("@aztec/foundation/eth-address").EthAddress | {
2265
- address: import("@aztec/foundation/eth-address").EthAddress;
2266
- remoteSignerUrl: string;
2267
- certPath?: string | undefined;
2268
- certPass?: string | undefined;
2269
- } | {
2270
- path: string;
2271
- password?: string | undefined;
2272
- } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
2273
- address: import("@aztec/foundation/eth-address").EthAddress;
2274
- remoteSignerUrl: string;
2275
- certPath?: string | undefined;
2276
- certPass?: string | undefined;
2277
- } | {
2278
- path: string;
2279
- password?: string | undefined;
2280
- } | {
2281
- mnemonic: string;
2282
- addressIndex: number;
2283
- accountIndex: number;
2284
- addressCount: number;
2285
- accountCount: number;
2286
- } | EthPrivateKey | undefined;
2287
- feeRecipient?: AztecAddress | undefined;
2288
- remoteSigner?: string | {
2289
- remoteSignerUrl: string;
2290
- certPath?: string | undefined;
2291
- certPass?: string | undefined;
2292
- } | undefined;
2293
- fundingAccount?: import("@aztec/foundation/eth-address").EthAddress | {
2294
- address: import("@aztec/foundation/eth-address").EthAddress;
2295
- remoteSignerUrl: string;
2296
- certPath?: string | undefined;
2297
- certPass?: string | undefined;
2298
- } | {
2299
- path: string;
2300
- password?: string | undefined;
2301
- } | EthPrivateKey | undefined;
2302
- }[] | undefined;
2303
- slasher?: (import("@aztec/foundation/eth-address").EthAddress | {
2304
- address: import("@aztec/foundation/eth-address").EthAddress;
2305
- remoteSignerUrl: string;
2306
- certPath?: string | undefined;
2307
- certPass?: string | undefined;
2308
- } | {
2309
- path: string;
2310
- password?: string | undefined;
2311
- } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
2312
- address: import("@aztec/foundation/eth-address").EthAddress;
2313
- remoteSignerUrl: string;
2314
- certPath?: string | undefined;
2315
- certPass?: string | undefined;
2316
- } | {
2317
- path: string;
2318
- password?: string | undefined;
2319
- } | {
2320
- mnemonic: string;
2321
- addressIndex: number;
2322
- accountIndex: number;
2323
- addressCount: number;
2324
- accountCount: number;
2325
- } | EthPrivateKey | undefined;
2326
- remoteSigner?: string | {
2327
- remoteSignerUrl: string;
2328
- certPath?: string | undefined;
2329
- certPass?: string | undefined;
2330
- } | undefined;
2331
- prover?: import("@aztec/foundation/eth-address").EthAddress | {
2332
- address: import("@aztec/foundation/eth-address").EthAddress;
2333
- remoteSignerUrl: string;
2334
- certPath?: string | undefined;
2335
- certPass?: string | undefined;
2336
- } | {
541
+ } | EthPrivateKey | null | undefined>>;
542
+ fundingAccount: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<EthPrivateKey, string>>, z.ZodUnion<readonly [z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>, z.ZodObject<{
543
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>;
544
+ remoteSignerUrl: z.ZodString;
545
+ certPath: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
546
+ certPass: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
547
+ }, z.core.$strict>]>, z.ZodObject<{
548
+ path: z.ZodString;
549
+ password: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
550
+ }, z.core.$strict>]>>>, z.ZodTransform<NonNullable<import("@aztec/foundation/eth-address").EthAddress | {
2337
551
  path: string;
2338
- password?: string | undefined;
552
+ password: string | undefined;
2339
553
  } | {
2340
- id: import("@aztec/foundation/eth-address").EthAddress;
2341
- publisher: (import("@aztec/foundation/eth-address").EthAddress | {
2342
- address: import("@aztec/foundation/eth-address").EthAddress;
2343
- remoteSignerUrl: string;
2344
- certPath?: string | undefined;
2345
- certPass?: string | undefined;
2346
- } | {
2347
- path: string;
2348
- password?: string | undefined;
2349
- } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
2350
- address: import("@aztec/foundation/eth-address").EthAddress;
2351
- remoteSignerUrl: string;
2352
- certPath?: string | undefined;
2353
- certPass?: string | undefined;
2354
- } | {
2355
- path: string;
2356
- password?: string | undefined;
2357
- } | {
2358
- mnemonic: string;
2359
- addressIndex: number;
2360
- accountIndex: number;
2361
- addressCount: number;
2362
- accountCount: number;
2363
- } | EthPrivateKey;
2364
- } | EthPrivateKey | undefined;
2365
- fundingAccount?: import("@aztec/foundation/eth-address").EthAddress | {
2366
554
  address: import("@aztec/foundation/eth-address").EthAddress;
2367
555
  remoteSignerUrl: string;
2368
- certPath?: string | undefined;
2369
- certPass?: string | undefined;
2370
- } | {
556
+ certPath: string | undefined;
557
+ certPass: string | undefined;
558
+ } | EthPrivateKey> | undefined, import("@aztec/foundation/eth-address").EthAddress | {
2371
559
  path: string;
2372
- password?: string | undefined;
2373
- } | EthPrivateKey | undefined;
2374
- publisher?: (import("@aztec/foundation/eth-address").EthAddress | {
2375
- address: import("@aztec/foundation/eth-address").EthAddress;
2376
- remoteSignerUrl: string;
2377
- certPath?: string | undefined;
2378
- certPass?: string | undefined;
560
+ password: string | undefined;
2379
561
  } | {
2380
- path: string;
2381
- password?: string | undefined;
2382
- } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
2383
562
  address: import("@aztec/foundation/eth-address").EthAddress;
2384
563
  remoteSignerUrl: string;
2385
- certPath?: string | undefined;
2386
- certPass?: string | undefined;
2387
- } | {
2388
- path: string;
2389
- password?: string | undefined;
2390
- } | {
2391
- mnemonic: string;
2392
- addressIndex: number;
2393
- accountIndex: number;
2394
- addressCount: number;
2395
- accountCount: number;
2396
- } | EthPrivateKey | undefined;
2397
- coinbase?: import("@aztec/foundation/eth-address").EthAddress | undefined;
2398
- feeRecipient?: AztecAddress | undefined;
2399
- }, {
2400
- schemaVersion: 2;
2401
- validators?: {
2402
- attester: string | (string | {
2403
- address: string;
2404
- remoteSignerUrl: string;
2405
- certPath?: string | undefined;
2406
- certPass?: string | undefined;
2407
- } | {
2408
- path: string;
2409
- password?: string | undefined;
2410
- } | {
2411
- eth: string | {
2412
- address: string;
2413
- remoteSignerUrl: string;
2414
- certPath?: string | undefined;
2415
- certPass?: string | undefined;
2416
- } | {
564
+ certPath: string | undefined;
565
+ certPass: string | undefined;
566
+ } | EthPrivateKey | null | undefined>>;
567
+ }, z.core.$strict>, z.ZodObject<{
568
+ schemaVersion: z.ZodLiteral<2>;
569
+ validators: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
570
+ attester: z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<EthPrivateKey, string>>, z.ZodUnion<readonly [z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>, z.ZodObject<{
571
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>;
572
+ remoteSignerUrl: z.ZodString;
573
+ certPath: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
574
+ certPass: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
575
+ }, z.core.$strict>]>, z.ZodObject<{
576
+ path: z.ZodString;
577
+ password: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
578
+ }, z.core.$strict>]>, z.ZodObject<{
579
+ eth: z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<EthPrivateKey, string>>, z.ZodUnion<readonly [z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>, z.ZodObject<{
580
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>;
581
+ remoteSignerUrl: z.ZodString;
582
+ certPath: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
583
+ certPass: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
584
+ }, z.core.$strict>]>, z.ZodObject<{
585
+ path: z.ZodString;
586
+ password: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
587
+ }, z.core.$strict>]>;
588
+ bls: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<BLSPrivateKey, string>>, z.ZodObject<{
589
+ path: z.ZodString;
590
+ password: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
591
+ }, z.core.$strict>]>>>, z.ZodTransform<NonNullable<{
2417
592
  path: string;
2418
- password?: string | undefined;
2419
- };
2420
- bls?: string | {
593
+ password: string | undefined;
594
+ } | BLSPrivateKey> | undefined, {
2421
595
  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
- } | {
596
+ password: string | undefined;
597
+ } | BLSPrivateKey | null | undefined>>;
598
+ }, z.core.$strict>]>, z.ZodArray<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<EthPrivateKey, string>>, z.ZodUnion<readonly [z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>, z.ZodObject<{
599
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>;
600
+ remoteSignerUrl: z.ZodString;
601
+ certPath: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
602
+ certPass: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
603
+ }, z.core.$strict>]>, z.ZodObject<{
604
+ path: z.ZodString;
605
+ password: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
606
+ }, z.core.$strict>]>, z.ZodObject<{
607
+ eth: z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<EthPrivateKey, string>>, z.ZodUnion<readonly [z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>, z.ZodObject<{
608
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>;
609
+ remoteSignerUrl: z.ZodString;
610
+ certPath: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
611
+ certPass: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
612
+ }, z.core.$strict>]>, z.ZodObject<{
613
+ path: z.ZodString;
614
+ password: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
615
+ }, z.core.$strict>]>;
616
+ bls: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<BLSPrivateKey, string>>, z.ZodObject<{
617
+ path: z.ZodString;
618
+ password: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
619
+ }, z.core.$strict>]>>>, z.ZodTransform<NonNullable<{
2445
620
  path: string;
2446
- password?: string | undefined;
2447
- };
2448
- bls?: string | {
621
+ password: string | undefined;
622
+ } | BLSPrivateKey> | undefined, {
2449
623
  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
- } | {
624
+ password: string | undefined;
625
+ } | BLSPrivateKey | null | undefined>>;
626
+ }, z.core.$strict>]>>, z.ZodObject<{
627
+ mnemonic: z.ZodString;
628
+ addressIndex: z.ZodDefault<z.ZodNumber>;
629
+ accountIndex: z.ZodDefault<z.ZodNumber>;
630
+ addressCount: z.ZodDefault<z.ZodNumber>;
631
+ accountCount: z.ZodDefault<z.ZodNumber>;
632
+ }, z.core.$strict>]>;
633
+ coinbase: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>>>, z.ZodTransform<import("@aztec/foundation/eth-address").EthAddress | undefined, import("@aztec/foundation/eth-address").EthAddress | null | undefined>>;
634
+ publisher: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<EthPrivateKey, string>>, z.ZodUnion<readonly [z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>, z.ZodObject<{
635
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>;
636
+ remoteSignerUrl: z.ZodString;
637
+ certPath: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
638
+ certPass: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
639
+ }, z.core.$strict>]>, z.ZodObject<{
640
+ path: z.ZodString;
641
+ password: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
642
+ }, z.core.$strict>]>, z.ZodArray<z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<EthPrivateKey, string>>, z.ZodUnion<readonly [z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>, z.ZodObject<{
643
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>;
644
+ remoteSignerUrl: z.ZodString;
645
+ certPath: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
646
+ certPass: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
647
+ }, z.core.$strict>]>, z.ZodObject<{
648
+ path: z.ZodString;
649
+ password: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
650
+ }, z.core.$strict>]>>, z.ZodObject<{
651
+ mnemonic: z.ZodString;
652
+ addressIndex: z.ZodDefault<z.ZodNumber>;
653
+ accountIndex: z.ZodDefault<z.ZodNumber>;
654
+ addressCount: z.ZodDefault<z.ZodNumber>;
655
+ accountCount: z.ZodDefault<z.ZodNumber>;
656
+ }, z.core.$strict>]>>>, z.ZodTransform<NonNullable<(import("@aztec/foundation/eth-address").EthAddress | {
2545
657
  path: string;
2546
- password?: string | undefined;
658
+ password: string | undefined;
2547
659
  } | {
2548
- mnemonic: string;
2549
- addressIndex?: number | undefined;
2550
- accountIndex?: number | undefined;
2551
- addressCount?: number | undefined;
2552
- accountCount?: number | undefined;
2553
- };
2554
- } | undefined;
2555
- fundingAccount?: string | {
2556
- address: string;
2557
- remoteSignerUrl: string;
2558
- certPath?: string | undefined;
2559
- certPass?: string | undefined;
2560
- } | {
2561
- path: string;
2562
- password?: string | undefined;
2563
- } | undefined;
2564
- publisher?: string | (string | {
2565
- address: string;
2566
- remoteSignerUrl: string;
2567
- certPath?: string | undefined;
2568
- certPass?: string | undefined;
2569
- } | {
2570
- path: string;
2571
- password?: string | undefined;
2572
- })[] | {
2573
- address: string;
2574
- remoteSignerUrl: string;
2575
- certPath?: string | undefined;
2576
- certPass?: string | undefined;
2577
- } | {
2578
- path: string;
2579
- password?: string | undefined;
2580
- } | {
2581
- mnemonic: string;
2582
- addressIndex?: number | undefined;
2583
- accountIndex?: number | undefined;
2584
- addressCount?: number | undefined;
2585
- accountCount?: number | undefined;
2586
- } | undefined;
2587
- coinbase?: string | undefined;
2588
- feeRecipient?: any;
2589
- }>, {
2590
- schemaVersion: 2;
2591
- validators?: {
2592
- attester: (import("@aztec/foundation/eth-address").EthAddress | {
2593
660
  address: import("@aztec/foundation/eth-address").EthAddress;
2594
661
  remoteSignerUrl: string;
2595
- certPath?: string | undefined;
2596
- certPass?: string | undefined;
2597
- } | {
662
+ certPath: string | undefined;
663
+ certPass: string | undefined;
664
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
2598
665
  path: string;
2599
- password?: string | undefined;
666
+ password: string | undefined;
2600
667
  } | {
2601
- eth: import("@aztec/foundation/eth-address").EthAddress | {
2602
- address: import("@aztec/foundation/eth-address").EthAddress;
2603
- remoteSignerUrl: string;
2604
- certPath?: string | undefined;
2605
- certPass?: string | undefined;
2606
- } | {
2607
- path: string;
2608
- password?: string | undefined;
2609
- } | EthPrivateKey;
2610
- bls?: {
2611
- path: string;
2612
- password?: string | undefined;
2613
- } | BLSPrivateKey | undefined;
2614
- } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
2615
668
  address: import("@aztec/foundation/eth-address").EthAddress;
2616
669
  remoteSignerUrl: string;
2617
- certPath?: string | undefined;
2618
- certPass?: string | undefined;
2619
- } | {
2620
- path: string;
2621
- password?: string | undefined;
670
+ certPath: string | undefined;
671
+ certPass: string | undefined;
2622
672
  } | {
2623
673
  mnemonic: string;
2624
674
  addressIndex: number;
2625
675
  accountIndex: number;
2626
676
  addressCount: number;
2627
677
  accountCount: number;
2628
- } | {
2629
- eth: import("@aztec/foundation/eth-address").EthAddress | {
2630
- address: import("@aztec/foundation/eth-address").EthAddress;
2631
- remoteSignerUrl: string;
2632
- certPath?: string | undefined;
2633
- certPass?: string | undefined;
2634
- } | {
2635
- path: string;
2636
- password?: string | undefined;
2637
- } | EthPrivateKey;
2638
- bls?: {
2639
- path: string;
2640
- password?: string | undefined;
2641
- } | BLSPrivateKey | undefined;
2642
- } | EthPrivateKey;
2643
- coinbase?: import("@aztec/foundation/eth-address").EthAddress | undefined;
2644
- publisher?: (import("@aztec/foundation/eth-address").EthAddress | {
2645
- address: import("@aztec/foundation/eth-address").EthAddress;
2646
- remoteSignerUrl: string;
2647
- certPath?: string | undefined;
2648
- certPass?: string | undefined;
2649
- } | {
2650
- path: string;
2651
- password?: string | undefined;
2652
- } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
2653
- address: import("@aztec/foundation/eth-address").EthAddress;
2654
- remoteSignerUrl: string;
2655
- certPath?: string | undefined;
2656
- certPass?: string | undefined;
2657
- } | {
678
+ } | EthPrivateKey> | undefined, (import("@aztec/foundation/eth-address").EthAddress | {
2658
679
  path: string;
2659
- password?: string | undefined;
680
+ password: string | undefined;
2660
681
  } | {
2661
- mnemonic: string;
2662
- addressIndex: number;
2663
- accountIndex: number;
2664
- addressCount: number;
2665
- accountCount: number;
2666
- } | EthPrivateKey | undefined;
2667
- feeRecipient?: AztecAddress | undefined;
2668
- remoteSigner?: string | {
2669
- remoteSignerUrl: string;
2670
- certPath?: string | undefined;
2671
- certPass?: string | undefined;
2672
- } | undefined;
2673
- fundingAccount?: import("@aztec/foundation/eth-address").EthAddress | {
2674
682
  address: import("@aztec/foundation/eth-address").EthAddress;
2675
683
  remoteSignerUrl: string;
2676
- certPath?: string | undefined;
2677
- certPass?: string | undefined;
2678
- } | {
684
+ certPath: string | undefined;
685
+ certPass: string | undefined;
686
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
2679
687
  path: string;
2680
- password?: string | undefined;
2681
- } | EthPrivateKey | undefined;
2682
- }[] | undefined;
2683
- slasher?: (import("@aztec/foundation/eth-address").EthAddress | {
2684
- address: import("@aztec/foundation/eth-address").EthAddress;
2685
- remoteSignerUrl: string;
2686
- certPath?: string | undefined;
2687
- certPass?: string | undefined;
2688
- } | {
2689
- path: string;
2690
- password?: string | undefined;
2691
- } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
2692
- address: import("@aztec/foundation/eth-address").EthAddress;
2693
- remoteSignerUrl: string;
2694
- certPath?: string | undefined;
2695
- certPass?: string | undefined;
2696
- } | {
2697
- path: string;
2698
- password?: string | undefined;
2699
- } | {
2700
- mnemonic: string;
2701
- addressIndex: number;
2702
- accountIndex: number;
2703
- addressCount: number;
2704
- accountCount: number;
2705
- } | EthPrivateKey | undefined;
2706
- remoteSigner?: string | {
2707
- remoteSignerUrl: string;
2708
- certPath?: string | undefined;
2709
- certPass?: string | undefined;
2710
- } | undefined;
2711
- prover?: import("@aztec/foundation/eth-address").EthAddress | {
2712
- address: import("@aztec/foundation/eth-address").EthAddress;
2713
- remoteSignerUrl: string;
2714
- certPath?: string | undefined;
2715
- certPass?: string | undefined;
2716
- } | {
2717
- path: string;
2718
- password?: string | undefined;
2719
- } | {
2720
- id: import("@aztec/foundation/eth-address").EthAddress;
2721
- publisher: (import("@aztec/foundation/eth-address").EthAddress | {
2722
- address: import("@aztec/foundation/eth-address").EthAddress;
2723
- remoteSignerUrl: string;
2724
- certPath?: string | undefined;
2725
- certPass?: string | undefined;
688
+ password: string | undefined;
2726
689
  } | {
2727
- path: string;
2728
- password?: string | undefined;
2729
- } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
2730
690
  address: import("@aztec/foundation/eth-address").EthAddress;
2731
691
  remoteSignerUrl: string;
2732
- certPath?: string | undefined;
2733
- certPass?: string | undefined;
2734
- } | {
2735
- path: string;
2736
- password?: string | undefined;
692
+ certPath: string | undefined;
693
+ certPass: string | undefined;
2737
694
  } | {
2738
695
  mnemonic: string;
2739
696
  addressIndex: number;
2740
697
  accountIndex: number;
2741
698
  addressCount: number;
2742
699
  accountCount: number;
2743
- } | EthPrivateKey;
2744
- } | EthPrivateKey | undefined;
2745
- fundingAccount?: import("@aztec/foundation/eth-address").EthAddress | {
2746
- address: import("@aztec/foundation/eth-address").EthAddress;
2747
- remoteSignerUrl: string;
2748
- certPath?: string | undefined;
2749
- certPass?: string | undefined;
2750
- } | {
2751
- path: string;
2752
- password?: string | undefined;
2753
- } | EthPrivateKey | undefined;
2754
- publisher?: (import("@aztec/foundation/eth-address").EthAddress | {
2755
- address: import("@aztec/foundation/eth-address").EthAddress;
2756
- remoteSignerUrl: string;
2757
- certPath?: string | undefined;
2758
- certPass?: string | undefined;
2759
- } | {
2760
- path: string;
2761
- password?: string | undefined;
2762
- } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
2763
- address: import("@aztec/foundation/eth-address").EthAddress;
2764
- remoteSignerUrl: string;
2765
- certPath?: string | undefined;
2766
- certPass?: string | undefined;
2767
- } | {
2768
- path: string;
2769
- password?: string | undefined;
2770
- } | {
2771
- mnemonic: string;
2772
- addressIndex: number;
2773
- accountIndex: number;
2774
- addressCount: number;
2775
- accountCount: number;
2776
- } | EthPrivateKey | undefined;
2777
- coinbase?: import("@aztec/foundation/eth-address").EthAddress | undefined;
2778
- feeRecipient?: AztecAddress | undefined;
2779
- }, {
2780
- schemaVersion: 2;
2781
- validators?: {
2782
- attester: string | (string | {
2783
- address: string;
700
+ } | EthPrivateKey | null | undefined>>;
701
+ feeRecipient: z.ZodPipe<z.ZodOptional<z.ZodNullable<import("@aztec/foundation/schemas").ZodFor<AztecAddress>>>, z.ZodTransform<AztecAddress | undefined, AztecAddress | null | undefined>>;
702
+ remoteSigner: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
703
+ remoteSignerUrl: z.ZodString;
704
+ certPath: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
705
+ certPass: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
706
+ }, z.core.$strict>]>>>, z.ZodTransform<NonNullable<string | {
707
+ remoteSignerUrl: string;
708
+ certPath: string | undefined;
709
+ certPass: string | undefined;
710
+ }> | undefined, string | {
711
+ remoteSignerUrl: string;
712
+ certPath: string | undefined;
713
+ certPass: string | undefined;
714
+ } | null | undefined>>;
715
+ fundingAccount: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<EthPrivateKey, string>>, z.ZodUnion<readonly [z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>, z.ZodObject<{
716
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>;
717
+ remoteSignerUrl: z.ZodString;
718
+ certPath: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
719
+ certPass: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
720
+ }, z.core.$strict>]>, z.ZodObject<{
721
+ path: z.ZodString;
722
+ password: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
723
+ }, z.core.$strict>]>>>, z.ZodTransform<NonNullable<import("@aztec/foundation/eth-address").EthAddress | {
724
+ path: string;
725
+ password: string | undefined;
726
+ } | {
727
+ address: import("@aztec/foundation/eth-address").EthAddress;
2784
728
  remoteSignerUrl: string;
2785
- certPath?: string | undefined;
2786
- certPass?: string | undefined;
729
+ certPath: string | undefined;
730
+ certPass: string | undefined;
731
+ } | EthPrivateKey> | undefined, import("@aztec/foundation/eth-address").EthAddress | {
732
+ path: string;
733
+ password: string | undefined;
2787
734
  } | {
735
+ address: import("@aztec/foundation/eth-address").EthAddress;
736
+ remoteSignerUrl: string;
737
+ certPath: string | undefined;
738
+ certPass: string | undefined;
739
+ } | EthPrivateKey | null | undefined>>;
740
+ }, z.core.$strict>>>>, z.ZodTransform<{
741
+ attester: (import("@aztec/foundation/eth-address").EthAddress | {
2788
742
  path: string;
2789
- password?: string | undefined;
743
+ password: string | undefined;
2790
744
  } | {
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;
745
+ address: import("@aztec/foundation/eth-address").EthAddress;
2806
746
  remoteSignerUrl: string;
2807
- certPath?: string | undefined;
2808
- certPass?: string | undefined;
747
+ certPath: string | undefined;
748
+ certPass: string | undefined;
2809
749
  } | {
750
+ eth: import("@aztec/foundation/eth-address").EthAddress | {
751
+ path: string;
752
+ password: string | undefined;
753
+ } | {
754
+ address: import("@aztec/foundation/eth-address").EthAddress;
755
+ remoteSignerUrl: string;
756
+ certPath: string | undefined;
757
+ certPass: string | undefined;
758
+ } | EthPrivateKey;
759
+ bls: NonNullable<{
760
+ path: string;
761
+ password: string | undefined;
762
+ } | BLSPrivateKey> | undefined;
763
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
2810
764
  path: string;
2811
- password?: string | undefined;
765
+ password: string | undefined;
766
+ } | {
767
+ address: import("@aztec/foundation/eth-address").EthAddress;
768
+ remoteSignerUrl: string;
769
+ certPath: string | undefined;
770
+ certPass: string | undefined;
2812
771
  } | {
2813
772
  mnemonic: string;
2814
- addressIndex?: number | undefined;
2815
- accountIndex?: number | undefined;
2816
- addressCount?: number | undefined;
2817
- accountCount?: number | undefined;
773
+ addressIndex: number;
774
+ accountIndex: number;
775
+ addressCount: number;
776
+ accountCount: number;
2818
777
  } | {
2819
- eth: string | {
2820
- address: string;
2821
- remoteSignerUrl: string;
2822
- certPath?: string | undefined;
2823
- certPass?: string | undefined;
2824
- } | {
778
+ eth: import("@aztec/foundation/eth-address").EthAddress | {
2825
779
  path: string;
2826
- password?: string | undefined;
2827
- };
2828
- bls?: string | {
780
+ password: string | undefined;
781
+ } | {
782
+ address: import("@aztec/foundation/eth-address").EthAddress;
783
+ remoteSignerUrl: string;
784
+ certPath: string | undefined;
785
+ certPass: string | undefined;
786
+ } | EthPrivateKey;
787
+ bls: NonNullable<{
2829
788
  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
- } | {
789
+ password: string | undefined;
790
+ } | BLSPrivateKey> | undefined;
791
+ } | EthPrivateKey;
792
+ coinbase: import("@aztec/foundation/eth-address").EthAddress | undefined;
793
+ publisher: NonNullable<(import("@aztec/foundation/eth-address").EthAddress | {
2840
794
  path: string;
2841
- password?: string | undefined;
2842
- })[] | {
2843
- address: string;
2844
- remoteSignerUrl: string;
2845
- certPath?: string | undefined;
2846
- certPass?: string | undefined;
795
+ password: string | undefined;
2847
796
  } | {
797
+ address: import("@aztec/foundation/eth-address").EthAddress;
798
+ remoteSignerUrl: string;
799
+ certPath: string | undefined;
800
+ certPass: string | undefined;
801
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
2848
802
  path: string;
2849
- password?: string | undefined;
803
+ password: string | undefined;
2850
804
  } | {
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;
805
+ address: import("@aztec/foundation/eth-address").EthAddress;
2865
806
  remoteSignerUrl: string;
2866
- certPath?: string | undefined;
2867
- certPass?: string | undefined;
807
+ certPath: string | undefined;
808
+ certPass: string | undefined;
2868
809
  } | {
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;
810
+ mnemonic: string;
811
+ addressIndex: number;
812
+ accountIndex: number;
813
+ addressCount: number;
814
+ accountCount: number;
815
+ } | EthPrivateKey> | undefined;
816
+ feeRecipient: AztecAddress | undefined;
817
+ remoteSigner: NonNullable<string | {
2913
818
  remoteSignerUrl: string;
2914
- certPath?: string | undefined;
2915
- certPass?: string | undefined;
2916
- } | {
819
+ certPath: string | undefined;
820
+ certPass: string | undefined;
821
+ }> | undefined;
822
+ fundingAccount: NonNullable<import("@aztec/foundation/eth-address").EthAddress | {
2917
823
  path: string;
2918
- password?: string | undefined;
2919
- })[] | {
2920
- address: string;
2921
- remoteSignerUrl: string;
2922
- certPath?: string | undefined;
2923
- certPass?: string | undefined;
824
+ password: string | undefined;
2924
825
  } | {
826
+ address: import("@aztec/foundation/eth-address").EthAddress;
827
+ remoteSignerUrl: string;
828
+ certPath: string | undefined;
829
+ certPass: string | undefined;
830
+ } | EthPrivateKey> | undefined;
831
+ }[] | undefined, {
832
+ attester: (import("@aztec/foundation/eth-address").EthAddress | {
2925
833
  path: string;
2926
- password?: string | undefined;
834
+ password: string | undefined;
2927
835
  } | {
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/eth-address").EthAddress | {
2973
836
  address: import("@aztec/foundation/eth-address").EthAddress;
2974
837
  remoteSignerUrl: string;
2975
- certPath?: string | undefined;
2976
- certPass?: string | undefined;
2977
- } | {
2978
- path: string;
2979
- password?: string | undefined;
838
+ certPath: string | undefined;
839
+ certPass: string | undefined;
2980
840
  } | {
2981
841
  eth: import("@aztec/foundation/eth-address").EthAddress | {
842
+ path: string;
843
+ password: string | undefined;
844
+ } | {
2982
845
  address: import("@aztec/foundation/eth-address").EthAddress;
2983
846
  remoteSignerUrl: string;
2984
- certPath?: string | undefined;
2985
- certPass?: string | undefined;
2986
- } | {
2987
- path: string;
2988
- password?: string | undefined;
847
+ certPath: string | undefined;
848
+ certPass: string | undefined;
2989
849
  } | EthPrivateKey;
2990
- bls?: {
850
+ bls: NonNullable<{
2991
851
  path: string;
2992
- password?: string | undefined;
2993
- } | BLSPrivateKey | undefined;
852
+ password: string | undefined;
853
+ } | BLSPrivateKey> | undefined;
2994
854
  } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
855
+ path: string;
856
+ password: string | undefined;
857
+ } | {
2995
858
  address: import("@aztec/foundation/eth-address").EthAddress;
2996
859
  remoteSignerUrl: string;
2997
- certPath?: string | undefined;
2998
- certPass?: string | undefined;
2999
- } | {
3000
- path: string;
3001
- password?: string | undefined;
860
+ certPath: string | undefined;
861
+ certPass: string | undefined;
3002
862
  } | {
3003
863
  mnemonic: string;
3004
864
  addressIndex: number;
@@ -3007,113 +867,198 @@ export declare const keystoreSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
3007
867
  accountCount: number;
3008
868
  } | {
3009
869
  eth: import("@aztec/foundation/eth-address").EthAddress | {
870
+ path: string;
871
+ password: string | undefined;
872
+ } | {
3010
873
  address: import("@aztec/foundation/eth-address").EthAddress;
3011
874
  remoteSignerUrl: string;
3012
- certPath?: string | undefined;
3013
- certPass?: string | undefined;
3014
- } | {
3015
- path: string;
3016
- password?: string | undefined;
875
+ certPath: string | undefined;
876
+ certPass: string | undefined;
3017
877
  } | EthPrivateKey;
3018
- bls?: {
878
+ bls: NonNullable<{
3019
879
  path: string;
3020
- password?: string | undefined;
3021
- } | BLSPrivateKey | undefined;
880
+ password: string | undefined;
881
+ } | BLSPrivateKey> | undefined;
3022
882
  } | EthPrivateKey;
3023
- coinbase?: import("@aztec/foundation/eth-address").EthAddress | undefined;
3024
- publisher?: (import("@aztec/foundation/eth-address").EthAddress | {
883
+ coinbase: import("@aztec/foundation/eth-address").EthAddress | undefined;
884
+ publisher: NonNullable<(import("@aztec/foundation/eth-address").EthAddress | {
885
+ path: string;
886
+ password: string | undefined;
887
+ } | {
3025
888
  address: import("@aztec/foundation/eth-address").EthAddress;
3026
889
  remoteSignerUrl: string;
3027
- certPath?: string | undefined;
3028
- certPass?: string | undefined;
3029
- } | {
3030
- path: string;
3031
- password?: string | undefined;
890
+ certPath: string | undefined;
891
+ certPass: string | undefined;
3032
892
  } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
893
+ path: string;
894
+ password: string | undefined;
895
+ } | {
3033
896
  address: import("@aztec/foundation/eth-address").EthAddress;
3034
897
  remoteSignerUrl: string;
3035
- certPath?: string | undefined;
3036
- certPass?: string | undefined;
3037
- } | {
3038
- path: string;
3039
- password?: string | undefined;
898
+ certPath: string | undefined;
899
+ certPass: string | undefined;
3040
900
  } | {
3041
901
  mnemonic: string;
3042
902
  addressIndex: number;
3043
903
  accountIndex: number;
3044
904
  addressCount: number;
3045
905
  accountCount: number;
3046
- } | EthPrivateKey | undefined;
3047
- feeRecipient?: AztecAddress | undefined;
3048
- remoteSigner?: string | {
906
+ } | EthPrivateKey> | undefined;
907
+ feeRecipient: AztecAddress | undefined;
908
+ remoteSigner: NonNullable<string | {
3049
909
  remoteSignerUrl: string;
3050
- certPath?: string | undefined;
3051
- certPass?: string | undefined;
3052
- } | undefined;
3053
- fundingAccount?: import("@aztec/foundation/eth-address").EthAddress | {
910
+ certPath: string | undefined;
911
+ certPass: string | undefined;
912
+ }> | undefined;
913
+ fundingAccount: NonNullable<import("@aztec/foundation/eth-address").EthAddress | {
914
+ path: string;
915
+ password: string | undefined;
916
+ } | {
3054
917
  address: import("@aztec/foundation/eth-address").EthAddress;
3055
918
  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/eth-address").EthAddress | {
919
+ certPath: string | undefined;
920
+ certPass: string | undefined;
921
+ } | EthPrivateKey> | undefined;
922
+ }[] | null | undefined>>;
923
+ slasher: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<EthPrivateKey, string>>, z.ZodUnion<readonly [z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>, z.ZodObject<{
924
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>;
925
+ remoteSignerUrl: z.ZodString;
926
+ certPath: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
927
+ certPass: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
928
+ }, z.core.$strict>]>, z.ZodObject<{
929
+ path: z.ZodString;
930
+ password: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
931
+ }, z.core.$strict>]>, z.ZodArray<z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<EthPrivateKey, string>>, z.ZodUnion<readonly [z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>, z.ZodObject<{
932
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>;
933
+ remoteSignerUrl: z.ZodString;
934
+ certPath: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
935
+ certPass: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
936
+ }, z.core.$strict>]>, z.ZodObject<{
937
+ path: z.ZodString;
938
+ password: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
939
+ }, z.core.$strict>]>>, z.ZodObject<{
940
+ mnemonic: z.ZodString;
941
+ addressIndex: z.ZodDefault<z.ZodNumber>;
942
+ accountIndex: z.ZodDefault<z.ZodNumber>;
943
+ addressCount: z.ZodDefault<z.ZodNumber>;
944
+ accountCount: z.ZodDefault<z.ZodNumber>;
945
+ }, z.core.$strict>]>>>, z.ZodTransform<NonNullable<(import("@aztec/foundation/eth-address").EthAddress | {
946
+ path: string;
947
+ password: string | undefined;
948
+ } | {
3064
949
  address: import("@aztec/foundation/eth-address").EthAddress;
3065
950
  remoteSignerUrl: string;
3066
- certPath?: string | undefined;
3067
- certPass?: string | undefined;
3068
- } | {
3069
- path: string;
3070
- password?: string | undefined;
951
+ certPath: string | undefined;
952
+ certPass: string | undefined;
3071
953
  } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
954
+ path: string;
955
+ password: string | undefined;
956
+ } | {
3072
957
  address: import("@aztec/foundation/eth-address").EthAddress;
3073
958
  remoteSignerUrl: string;
3074
- certPath?: string | undefined;
3075
- certPass?: string | undefined;
3076
- } | {
3077
- path: string;
3078
- password?: string | undefined;
959
+ certPath: string | undefined;
960
+ certPass: string | undefined;
3079
961
  } | {
3080
962
  mnemonic: string;
3081
963
  addressIndex: number;
3082
964
  accountIndex: number;
3083
965
  addressCount: number;
3084
966
  accountCount: number;
3085
- } | EthPrivateKey | undefined;
3086
- remoteSigner?: string | {
967
+ } | EthPrivateKey> | undefined, (import("@aztec/foundation/eth-address").EthAddress | {
968
+ path: string;
969
+ password: string | undefined;
970
+ } | {
971
+ address: import("@aztec/foundation/eth-address").EthAddress;
3087
972
  remoteSignerUrl: string;
3088
- certPath?: string | undefined;
3089
- certPass?: string | undefined;
3090
- } | undefined;
3091
- prover?: import("@aztec/foundation/eth-address").EthAddress | {
973
+ certPath: string | undefined;
974
+ certPass: string | undefined;
975
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
976
+ path: string;
977
+ password: string | undefined;
978
+ } | {
3092
979
  address: import("@aztec/foundation/eth-address").EthAddress;
3093
980
  remoteSignerUrl: string;
3094
- certPath?: string | undefined;
3095
- certPass?: string | undefined;
981
+ certPath: string | undefined;
982
+ certPass: string | undefined;
3096
983
  } | {
984
+ mnemonic: string;
985
+ addressIndex: number;
986
+ accountIndex: number;
987
+ addressCount: number;
988
+ accountCount: number;
989
+ } | EthPrivateKey | null | undefined>>;
990
+ remoteSigner: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
991
+ remoteSignerUrl: z.ZodString;
992
+ certPath: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
993
+ certPass: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
994
+ }, z.core.$strict>]>>>, z.ZodTransform<NonNullable<string | {
995
+ remoteSignerUrl: string;
996
+ certPath: string | undefined;
997
+ certPass: string | undefined;
998
+ }> | undefined, string | {
999
+ remoteSignerUrl: string;
1000
+ certPath: string | undefined;
1001
+ certPass: string | undefined;
1002
+ } | null | undefined>>;
1003
+ prover: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<EthPrivateKey, string>>, z.ZodUnion<readonly [z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>, z.ZodObject<{
1004
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>;
1005
+ remoteSignerUrl: z.ZodString;
1006
+ certPath: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
1007
+ certPass: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
1008
+ }, z.core.$strict>]>, z.ZodObject<{
1009
+ path: z.ZodString;
1010
+ password: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
1011
+ }, z.core.$strict>]>, z.ZodObject<{
1012
+ id: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>;
1013
+ publisher: z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<EthPrivateKey, string>>, z.ZodUnion<readonly [z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>, z.ZodObject<{
1014
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>;
1015
+ remoteSignerUrl: z.ZodString;
1016
+ certPath: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
1017
+ certPass: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
1018
+ }, z.core.$strict>]>, z.ZodObject<{
1019
+ path: z.ZodString;
1020
+ password: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
1021
+ }, z.core.$strict>]>, z.ZodArray<z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<EthPrivateKey, string>>, z.ZodUnion<readonly [z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>, z.ZodObject<{
1022
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>;
1023
+ remoteSignerUrl: z.ZodString;
1024
+ certPath: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
1025
+ certPass: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
1026
+ }, z.core.$strict>]>, z.ZodObject<{
1027
+ path: z.ZodString;
1028
+ password: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
1029
+ }, z.core.$strict>]>>, z.ZodObject<{
1030
+ mnemonic: z.ZodString;
1031
+ addressIndex: z.ZodDefault<z.ZodNumber>;
1032
+ accountIndex: z.ZodDefault<z.ZodNumber>;
1033
+ addressCount: z.ZodDefault<z.ZodNumber>;
1034
+ accountCount: z.ZodDefault<z.ZodNumber>;
1035
+ }, z.core.$strict>]>;
1036
+ }, z.core.$strict>]>>>, z.ZodTransform<NonNullable<import("@aztec/foundation/eth-address").EthAddress | {
3097
1037
  path: string;
3098
- password?: string | undefined;
1038
+ password: string | undefined;
1039
+ } | {
1040
+ address: import("@aztec/foundation/eth-address").EthAddress;
1041
+ remoteSignerUrl: string;
1042
+ certPath: string | undefined;
1043
+ certPass: string | undefined;
3099
1044
  } | {
3100
1045
  id: import("@aztec/foundation/eth-address").EthAddress;
3101
1046
  publisher: (import("@aztec/foundation/eth-address").EthAddress | {
1047
+ path: string;
1048
+ password: string | undefined;
1049
+ } | {
3102
1050
  address: import("@aztec/foundation/eth-address").EthAddress;
3103
1051
  remoteSignerUrl: string;
3104
- certPath?: string | undefined;
3105
- certPass?: string | undefined;
3106
- } | {
3107
- path: string;
3108
- password?: string | undefined;
1052
+ certPath: string | undefined;
1053
+ certPass: string | undefined;
3109
1054
  } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
1055
+ path: string;
1056
+ password: string | undefined;
1057
+ } | {
3110
1058
  address: import("@aztec/foundation/eth-address").EthAddress;
3111
1059
  remoteSignerUrl: string;
3112
- certPath?: string | undefined;
3113
- certPass?: string | undefined;
3114
- } | {
3115
- path: string;
3116
- password?: string | undefined;
1060
+ certPath: string | undefined;
1061
+ certPass: string | undefined;
3117
1062
  } | {
3118
1063
  mnemonic: string;
3119
1064
  addressIndex: number;
@@ -3121,230 +1066,133 @@ export declare const keystoreSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
3121
1066
  addressCount: number;
3122
1067
  accountCount: number;
3123
1068
  } | EthPrivateKey;
3124
- } | EthPrivateKey | undefined;
3125
- fundingAccount?: import("@aztec/foundation/eth-address").EthAddress | {
3126
- address: import("@aztec/foundation/eth-address").EthAddress;
3127
- remoteSignerUrl: string;
3128
- certPath?: string | undefined;
3129
- certPass?: string | undefined;
3130
- } | {
1069
+ } | EthPrivateKey> | undefined, import("@aztec/foundation/eth-address").EthAddress | {
3131
1070
  path: string;
3132
- password?: string | undefined;
3133
- } | EthPrivateKey | undefined;
3134
- publisher?: (import("@aztec/foundation/eth-address").EthAddress | {
3135
- address: import("@aztec/foundation/eth-address").EthAddress;
3136
- remoteSignerUrl: string;
3137
- certPath?: string | undefined;
3138
- certPass?: string | undefined;
1071
+ password: string | undefined;
3139
1072
  } | {
3140
- path: string;
3141
- password?: string | undefined;
3142
- } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
3143
1073
  address: import("@aztec/foundation/eth-address").EthAddress;
3144
1074
  remoteSignerUrl: string;
3145
- certPath?: string | undefined;
3146
- certPass?: string | undefined;
1075
+ certPath: string | undefined;
1076
+ certPass: string | undefined;
3147
1077
  } | {
3148
- path: string;
3149
- password?: string | undefined;
3150
- } | {
3151
- mnemonic: string;
3152
- addressIndex: number;
3153
- accountIndex: number;
3154
- addressCount: number;
3155
- accountCount: number;
3156
- } | EthPrivateKey | undefined;
3157
- coinbase?: import("@aztec/foundation/eth-address").EthAddress | undefined;
3158
- feeRecipient?: AztecAddress | undefined;
3159
- }, {
3160
- schemaVersion: 2;
3161
- validators?: {
3162
- attester: string | (string | {
3163
- address: string;
3164
- remoteSignerUrl: string;
3165
- certPath?: string | undefined;
3166
- certPass?: string | undefined;
3167
- } | {
1078
+ id: import("@aztec/foundation/eth-address").EthAddress;
1079
+ publisher: (import("@aztec/foundation/eth-address").EthAddress | {
3168
1080
  path: string;
3169
- password?: string | undefined;
1081
+ password: string | undefined;
3170
1082
  } | {
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;
1083
+ address: import("@aztec/foundation/eth-address").EthAddress;
3186
1084
  remoteSignerUrl: string;
3187
- certPath?: string | undefined;
3188
- certPass?: string | undefined;
3189
- } | {
1085
+ certPath: string | undefined;
1086
+ certPass: string | undefined;
1087
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
3190
1088
  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;
1089
+ password: string | undefined;
3219
1090
  } | {
3220
- path: string;
3221
- password?: string | undefined;
3222
- })[] | {
3223
- address: string;
1091
+ address: import("@aztec/foundation/eth-address").EthAddress;
3224
1092
  remoteSignerUrl: string;
3225
- certPath?: string | undefined;
3226
- certPass?: string | undefined;
3227
- } | {
3228
- path: string;
3229
- password?: string | undefined;
1093
+ certPath: string | undefined;
1094
+ certPass: string | undefined;
3230
1095
  } | {
3231
1096
  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
- } | {
1097
+ addressIndex: number;
1098
+ accountIndex: number;
1099
+ addressCount: number;
1100
+ accountCount: number;
1101
+ } | EthPrivateKey;
1102
+ } | EthPrivateKey | null | undefined>>;
1103
+ fundingAccount: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<EthPrivateKey, string>>, z.ZodUnion<readonly [z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>, z.ZodObject<{
1104
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>;
1105
+ remoteSignerUrl: z.ZodString;
1106
+ certPath: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
1107
+ certPass: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
1108
+ }, z.core.$strict>]>, z.ZodObject<{
1109
+ path: z.ZodString;
1110
+ password: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
1111
+ }, z.core.$strict>]>>>, z.ZodTransform<NonNullable<import("@aztec/foundation/eth-address").EthAddress | {
3259
1112
  path: string;
3260
- password?: string | undefined;
3261
- })[] | {
3262
- address: string;
3263
- remoteSignerUrl: string;
3264
- certPath?: string | undefined;
3265
- certPass?: string | undefined;
1113
+ password: string | undefined;
3266
1114
  } | {
1115
+ address: import("@aztec/foundation/eth-address").EthAddress;
1116
+ remoteSignerUrl: string;
1117
+ certPath: string | undefined;
1118
+ certPass: string | undefined;
1119
+ } | EthPrivateKey> | undefined, import("@aztec/foundation/eth-address").EthAddress | {
3267
1120
  path: string;
3268
- password?: string | undefined;
1121
+ password: string | undefined;
3269
1122
  } | {
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;
1123
+ address: import("@aztec/foundation/eth-address").EthAddress;
3283
1124
  remoteSignerUrl: string;
3284
- certPath?: string | undefined;
3285
- certPass?: string | undefined;
3286
- } | {
1125
+ certPath: string | undefined;
1126
+ certPass: string | undefined;
1127
+ } | EthPrivateKey | null | undefined>>;
1128
+ publisher: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<EthPrivateKey, string>>, z.ZodUnion<readonly [z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>, z.ZodObject<{
1129
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>;
1130
+ remoteSignerUrl: z.ZodString;
1131
+ certPath: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
1132
+ certPass: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
1133
+ }, z.core.$strict>]>, z.ZodObject<{
1134
+ path: z.ZodString;
1135
+ password: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
1136
+ }, z.core.$strict>]>, z.ZodArray<z.ZodUnion<readonly [z.ZodPipe<z.ZodString, z.ZodTransform<EthPrivateKey, string>>, z.ZodUnion<readonly [z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>, z.ZodObject<{
1137
+ address: z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>;
1138
+ remoteSignerUrl: z.ZodString;
1139
+ certPath: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
1140
+ certPass: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
1141
+ }, z.core.$strict>]>, z.ZodObject<{
1142
+ path: z.ZodString;
1143
+ password: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | undefined, string | null | undefined>>;
1144
+ }, z.core.$strict>]>>, z.ZodObject<{
1145
+ mnemonic: z.ZodString;
1146
+ addressIndex: z.ZodDefault<z.ZodNumber>;
1147
+ accountIndex: z.ZodDefault<z.ZodNumber>;
1148
+ addressCount: z.ZodDefault<z.ZodNumber>;
1149
+ accountCount: z.ZodDefault<z.ZodNumber>;
1150
+ }, z.core.$strict>]>>>, z.ZodTransform<NonNullable<(import("@aztec/foundation/eth-address").EthAddress | {
3287
1151
  path: string;
3288
- password?: string | undefined;
1152
+ password: string | undefined;
3289
1153
  } | {
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;
1154
+ address: import("@aztec/foundation/eth-address").EthAddress;
3317
1155
  remoteSignerUrl: string;
3318
- certPath?: string | undefined;
3319
- certPass?: string | undefined;
3320
- } | {
1156
+ certPath: string | undefined;
1157
+ certPass: string | undefined;
1158
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
3321
1159
  path: string;
3322
- password?: string | undefined;
3323
- } | undefined;
3324
- publisher?: string | (string | {
3325
- address: string;
1160
+ password: string | undefined;
1161
+ } | {
1162
+ address: import("@aztec/foundation/eth-address").EthAddress;
3326
1163
  remoteSignerUrl: string;
3327
- certPath?: string | undefined;
3328
- certPass?: string | undefined;
1164
+ certPath: string | undefined;
1165
+ certPass: string | undefined;
3329
1166
  } | {
1167
+ mnemonic: string;
1168
+ addressIndex: number;
1169
+ accountIndex: number;
1170
+ addressCount: number;
1171
+ accountCount: number;
1172
+ } | EthPrivateKey> | undefined, (import("@aztec/foundation/eth-address").EthAddress | {
3330
1173
  path: string;
3331
- password?: string | undefined;
3332
- })[] | {
3333
- address: string;
3334
- remoteSignerUrl: string;
3335
- certPath?: string | undefined;
3336
- certPass?: string | undefined;
1174
+ password: string | undefined;
3337
1175
  } | {
1176
+ address: import("@aztec/foundation/eth-address").EthAddress;
1177
+ remoteSignerUrl: string;
1178
+ certPath: string | undefined;
1179
+ certPass: string | undefined;
1180
+ } | EthPrivateKey)[] | import("@aztec/foundation/eth-address").EthAddress | {
3338
1181
  path: string;
3339
- password?: string | undefined;
1182
+ password: string | undefined;
1183
+ } | {
1184
+ address: import("@aztec/foundation/eth-address").EthAddress;
1185
+ remoteSignerUrl: string;
1186
+ certPath: string | undefined;
1187
+ certPass: string | undefined;
3340
1188
  } | {
3341
1189
  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=
1190
+ addressIndex: number;
1191
+ accountIndex: number;
1192
+ addressCount: number;
1193
+ accountCount: number;
1194
+ } | EthPrivateKey | null | undefined>>;
1195
+ coinbase: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodType<import("@aztec/foundation/eth-address").EthAddress, string, z.core.$ZodTypeInternals<import("@aztec/foundation/eth-address").EthAddress, string>>>>, z.ZodTransform<import("@aztec/foundation/eth-address").EthAddress | undefined, import("@aztec/foundation/eth-address").EthAddress | null | undefined>>;
1196
+ feeRecipient: z.ZodPipe<z.ZodOptional<z.ZodNullable<import("@aztec/foundation/schemas").ZodFor<AztecAddress>>>, z.ZodTransform<AztecAddress | undefined, AztecAddress | null | undefined>>;
1197
+ }, z.core.$strict>]>;
1198
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2NoZW1hcy5kLnRzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vc3JjL3NjaGVtYXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBSUEsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLDZCQUE2QixDQUFDO0FBRTNELE9BQU8sRUFBRSxDQUFDLEVBQUUsTUFBTSxLQUFLLENBQUM7QUFFeEIsT0FBTyxLQUFLLEVBQUUsYUFBYSxFQUFFLGFBQWEsRUFBRSxNQUFNLFlBQVksQ0FBQztBQUcvRCxlQUFPLE1BQU0sbUJBQW1CLCtEQUdLLENBQUM7QUFDdEMsZUFBTyxNQUFNLG1CQUFtQiwrREFHSyxDQUFDO0FBNEp0QyxlQUFPLE1BQU0sY0FBYzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O29CQUFnRCxDQUFDIn0=