@dynamic-labs/wallet-book 4.25.5 → 4.25.6

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.
@@ -1,29 +1,21 @@
1
- import { z } from 'zod';
2
- export declare const walletRecordsSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodEffects<z.ZodObject<{
3
- brand: z.ZodOptional<z.ZodObject<{
4
- alt: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>;
5
- primaryColor: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>;
6
- spriteId: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>;
7
- }, "strip", z.ZodTypeAny, {
8
- alt?: string | undefined;
9
- primaryColor?: string | undefined;
10
- spriteId?: string | undefined;
11
- }, {
12
- alt?: unknown;
13
- primaryColor?: unknown;
14
- spriteId?: unknown;
15
- }>>;
16
- chainGroup: z.ZodOptional<z.ZodString>;
17
- chains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
18
- desktop: z.ZodEffects<z.ZodOptional<z.ZodObject<{
19
- chromeId: z.ZodEffects<z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>, string | undefined, unknown>;
20
- edgeId: z.ZodEffects<z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>, string | undefined, unknown>;
21
- firefoxId: z.ZodEffects<z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>, string | undefined, unknown>;
22
- native: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>;
23
- operaId: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>;
24
- safariId: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>;
25
- universal: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>;
26
- }, "strip", z.ZodTypeAny, {
1
+ import * as z from 'zod/mini';
2
+ export declare const walletRecordsSchema: z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniPipe<z.ZodMiniPipe<z.ZodMiniTransform<unknown, unknown>, z.ZodMiniObject<{
3
+ brand: z.ZodMiniOptional<z.ZodMiniObject<{
4
+ alt: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
5
+ primaryColor: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
6
+ spriteId: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
7
+ }, z.core.$strip>>;
8
+ chainGroup: z.ZodMiniOptional<z.ZodMiniString<string>>;
9
+ chains: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
10
+ desktop: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniObject<{
11
+ chromeId: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>, z.ZodMiniTransform<string | undefined, string | undefined>>>;
12
+ edgeId: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>, z.ZodMiniTransform<string | undefined, string | undefined>>>;
13
+ firefoxId: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>, z.ZodMiniTransform<string | undefined, string | undefined>>>;
14
+ native: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
15
+ operaId: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
16
+ safariId: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
17
+ universal: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
18
+ }, z.core.$strip>, z.ZodMiniTransform<{
27
19
  chromeId?: string | undefined;
28
20
  edgeId?: string | undefined;
29
21
  firefoxId?: string | undefined;
@@ -31,15 +23,7 @@ export declare const walletRecordsSchema: z.ZodRecord<z.ZodString, z.ZodEffects<
31
23
  operaId?: string | undefined;
32
24
  safariId?: string | undefined;
33
25
  universal?: string | undefined;
34
- }, {
35
- chromeId?: unknown;
36
- edgeId?: unknown;
37
- firefoxId?: unknown;
38
- native?: unknown;
39
- operaId?: unknown;
40
- safariId?: unknown;
41
- universal?: unknown;
42
- }>>, {
26
+ } | undefined, {
43
27
  chromeId?: string | undefined;
44
28
  edgeId?: string | undefined;
45
29
  firefoxId?: string | undefined;
@@ -47,107 +31,41 @@ export declare const walletRecordsSchema: z.ZodRecord<z.ZodString, z.ZodEffects<
47
31
  operaId?: string | undefined;
48
32
  safariId?: string | undefined;
49
33
  universal?: string | undefined;
50
- } | undefined, {
51
- chromeId?: unknown;
52
- edgeId?: unknown;
53
- firefoxId?: unknown;
54
- native?: unknown;
55
- operaId?: unknown;
56
- safariId?: unknown;
57
- universal?: unknown;
58
- } | undefined>;
59
- eip6963Config: z.ZodOptional<z.ZodObject<{
60
- rdns: z.ZodString;
61
- }, "strip", z.ZodTypeAny, {
62
- rdns: string;
63
- }, {
64
- rdns: string;
65
- }>>;
66
- filterFromWalletConnect: z.ZodOptional<z.ZodBoolean>;
67
- group: z.ZodOptional<z.ZodString>;
68
- hardwareWallets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
69
- injectedConfig: z.ZodOptional<z.ZodArray<z.ZodObject<{
70
- chain: z.ZodString;
71
- extensionLocators: z.ZodArray<z.ZodObject<{
72
- flag: z.ZodString;
73
- value: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
74
- }, "strip", z.ZodTypeAny, {
75
- value: boolean;
76
- flag: string;
77
- }, {
78
- flag: string;
79
- value?: boolean | undefined;
80
- }>, "many">;
81
- providerInterface: z.ZodOptional<z.ZodString>;
82
- walletStandard: z.ZodOptional<z.ZodObject<{
83
- features: z.ZodArray<z.ZodString, "many">;
84
- name: z.ZodString;
85
- providerId: z.ZodOptional<z.ZodString>;
86
- }, "strip", z.ZodTypeAny, {
87
- features: string[];
88
- name: string;
89
- providerId?: string | undefined;
90
- }, {
91
- features: string[];
92
- name: string;
93
- providerId?: string | undefined;
94
- }>>;
95
- walletStandardLocators: z.ZodOptional<z.ZodArray<z.ZodObject<{
96
- locator: z.ZodString;
97
- name: z.ZodString;
98
- }, "strip", z.ZodTypeAny, {
99
- name: string;
100
- locator: string;
101
- }, {
102
- name: string;
103
- locator: string;
104
- }>, "many">>;
105
- windowLocations: z.ZodEffects<z.ZodOptional<z.ZodArray<z.ZodString, "many">>, string[] | undefined, string[] | undefined>;
106
- }, "strip", z.ZodTypeAny, {
107
- chain: string;
108
- extensionLocators: {
109
- value: boolean;
110
- flag: string;
111
- }[];
112
- providerInterface?: string | undefined;
113
- walletStandard?: {
114
- features: string[];
115
- name: string;
116
- providerId?: string | undefined;
117
- } | undefined;
118
- walletStandardLocators?: {
119
- name: string;
120
- locator: string;
121
- }[] | undefined;
122
- windowLocations?: string[] | undefined;
123
- }, {
124
- chain: string;
125
- extensionLocators: {
126
- flag: string;
127
- value?: boolean | undefined;
128
- }[];
129
- providerInterface?: string | undefined;
130
- walletStandard?: {
131
- features: string[];
132
- name: string;
133
- providerId?: string | undefined;
134
- } | undefined;
135
- walletStandardLocators?: {
136
- name: string;
137
- locator: string;
138
- }[] | undefined;
139
- windowLocations?: string[] | undefined;
140
- }>, "many">>;
141
- mobile: z.ZodEffects<z.ZodOptional<z.ZodObject<{
142
- android: z.ZodOptional<z.ZodNullable<z.ZodString>>;
143
- androidId: z.ZodEffects<z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>, string | undefined, unknown>;
144
- inAppBrowser: z.ZodOptional<z.ZodNullable<z.ZodString>>;
145
- inAppBrowserV2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
146
- ios: z.ZodOptional<z.ZodNullable<z.ZodString>>;
147
- iosId: z.ZodEffects<z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>, string | undefined, unknown>;
148
- native: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>;
149
- universal: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>;
150
- }, "strip", z.ZodTypeAny, {
34
+ }>>>;
35
+ eip6963Config: z.ZodMiniOptional<z.ZodMiniObject<{
36
+ rdns: z.ZodMiniString<string>;
37
+ }, z.core.$strip>>;
38
+ filterFromWalletConnect: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
39
+ group: z.ZodMiniOptional<z.ZodMiniString<string>>;
40
+ hardwareWallets: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
41
+ injectedConfig: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniObject<{
42
+ chain: z.ZodMiniString<string>;
43
+ extensionLocators: z.ZodMiniArray<z.ZodMiniObject<{
44
+ flag: z.ZodMiniString<string>;
45
+ value: z.ZodMiniDefault<z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>>;
46
+ }, z.core.$strip>>;
47
+ providerInterface: z.ZodMiniOptional<z.ZodMiniString<string>>;
48
+ walletStandard: z.ZodMiniOptional<z.ZodMiniObject<{
49
+ features: z.ZodMiniArray<z.ZodMiniString<string>>;
50
+ name: z.ZodMiniString<string>;
51
+ providerId: z.ZodMiniOptional<z.ZodMiniString<string>>;
52
+ }, z.core.$strip>>;
53
+ walletStandardLocators: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniObject<{
54
+ locator: z.ZodMiniString<string>;
55
+ name: z.ZodMiniString<string>;
56
+ }, z.core.$strip>>>;
57
+ windowLocations: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
58
+ }, z.core.$strip>>>;
59
+ mobile: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniOptional<z.ZodMiniObject<{
60
+ android: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
61
+ androidId: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>, z.ZodMiniTransform<string | undefined, string | undefined>>>;
62
+ inAppBrowser: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
63
+ inAppBrowserV2: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
64
+ ios: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
65
+ iosId: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>, z.ZodMiniTransform<string | undefined, string | undefined>>>;
66
+ native: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
67
+ universal: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
68
+ }, z.core.$strip>>, z.ZodMiniTransform<{
151
69
  android?: string | null | undefined;
152
70
  androidId?: string | undefined;
153
71
  inAppBrowser?: string | null | undefined;
@@ -156,16 +74,7 @@ export declare const walletRecordsSchema: z.ZodRecord<z.ZodString, z.ZodEffects<
156
74
  iosId?: string | undefined;
157
75
  native?: string | undefined;
158
76
  universal?: string | undefined;
159
- }, {
160
- android?: string | null | undefined;
161
- androidId?: unknown;
162
- inAppBrowser?: string | null | undefined;
163
- inAppBrowserV2?: string | null | undefined;
164
- ios?: string | null | undefined;
165
- iosId?: unknown;
166
- native?: unknown;
167
- universal?: unknown;
168
- }>>, {
77
+ } | undefined, {
169
78
  android?: string | null | undefined;
170
79
  androidId?: string | undefined;
171
80
  inAppBrowser?: string | null | undefined;
@@ -174,74 +83,34 @@ export declare const walletRecordsSchema: z.ZodRecord<z.ZodString, z.ZodEffects<
174
83
  iosId?: string | undefined;
175
84
  native?: string | undefined;
176
85
  universal?: string | undefined;
177
- } | undefined, {
178
- android?: string | null | undefined;
179
- androidId?: unknown;
180
- inAppBrowser?: string | null | undefined;
181
- inAppBrowserV2?: string | null | undefined;
182
- ios?: string | null | undefined;
183
- iosId?: unknown;
184
- native?: unknown;
185
- universal?: unknown;
186
- } | undefined>;
187
- mobileExperience: z.ZodOptional<z.ZodEnum<["in-app-browser", "redirect"]>>;
188
- name: z.ZodString;
189
- shortName: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>;
190
- showOnlyIfInstalled: z.ZodOptional<z.ZodBoolean>;
191
- switchNetworkOnlyFromWallet: z.ZodOptional<z.ZodBoolean>;
192
- walletConnect: z.ZodEffects<z.ZodOptional<z.ZodObject<{
193
- sdks: z.ZodEffects<z.ZodOptional<z.ZodArray<z.ZodString, "many">>, string[] | undefined, unknown>;
194
- }, "strip", z.ZodTypeAny, {
195
- sdks?: string[] | undefined;
196
- }, {
197
- sdks?: unknown;
198
- }>>, {
86
+ } | undefined>>>;
87
+ mobileExperience: z.ZodMiniOptional<z.ZodMiniEnum<{
88
+ "in-app-browser": "in-app-browser";
89
+ redirect: "redirect";
90
+ }>>;
91
+ name: z.ZodMiniString<string>;
92
+ shortName: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
93
+ showOnlyIfInstalled: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
94
+ switchNetworkOnlyFromWallet: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
95
+ walletConnect: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniOptional<z.ZodMiniObject<{
96
+ sdks: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<any[] | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>>>;
97
+ }, z.core.$strip>>, z.ZodMiniTransform<{
199
98
  sdks?: string[] | undefined;
200
99
  } | undefined, {
201
- sdks?: unknown;
202
- } | undefined>;
203
- walletGroup: z.ZodOptional<z.ZodString>;
204
- walletLimitations: z.ZodOptional<z.ZodObject<{
205
- browserExtension: z.ZodOptional<z.ZodObject<{
206
- unsupportedEvents: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
207
- unsupportedMethods: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
208
- }, "strip", z.ZodTypeAny, {
209
- unsupportedEvents?: string[] | undefined;
210
- unsupportedMethods?: string[] | undefined;
211
- }, {
212
- unsupportedEvents?: string[] | undefined;
213
- unsupportedMethods?: string[] | undefined;
214
- }>>;
215
- mobile: z.ZodOptional<z.ZodObject<{
216
- unsupportedEvents: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
217
- unsupportedMethods: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
218
- }, "strip", z.ZodTypeAny, {
219
- unsupportedEvents?: string[] | undefined;
220
- unsupportedMethods?: string[] | undefined;
221
- }, {
222
- unsupportedEvents?: string[] | undefined;
223
- unsupportedMethods?: string[] | undefined;
224
- }>>;
225
- }, "strip", z.ZodTypeAny, {
226
- browserExtension?: {
227
- unsupportedEvents?: string[] | undefined;
228
- unsupportedMethods?: string[] | undefined;
229
- } | undefined;
230
- mobile?: {
231
- unsupportedEvents?: string[] | undefined;
232
- unsupportedMethods?: string[] | undefined;
233
- } | undefined;
234
- }, {
235
- browserExtension?: {
236
- unsupportedEvents?: string[] | undefined;
237
- unsupportedMethods?: string[] | undefined;
238
- } | undefined;
239
- mobile?: {
240
- unsupportedEvents?: string[] | undefined;
241
- unsupportedMethods?: string[] | undefined;
242
- } | undefined;
243
- }>>;
244
- }, "strip", z.ZodTypeAny, {
100
+ sdks?: string[] | undefined;
101
+ } | undefined>>>;
102
+ walletGroup: z.ZodMiniOptional<z.ZodMiniString<string>>;
103
+ walletLimitations: z.ZodMiniOptional<z.ZodMiniObject<{
104
+ browserExtension: z.ZodMiniOptional<z.ZodMiniObject<{
105
+ unsupportedEvents: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
106
+ unsupportedMethods: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
107
+ }, z.core.$strip>>;
108
+ mobile: z.ZodMiniOptional<z.ZodMiniObject<{
109
+ unsupportedEvents: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
110
+ unsupportedMethods: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
111
+ }, z.core.$strip>>;
112
+ }, z.core.$strip>>;
113
+ }, z.core.$strip>>, z.ZodMiniTransform<{
245
114
  name: string;
246
115
  brand?: {
247
116
  alt?: string | undefined;
@@ -268,8 +137,8 @@ export declare const walletRecordsSchema: z.ZodRecord<z.ZodString, z.ZodEffects<
268
137
  injectedConfig?: {
269
138
  chain: string;
270
139
  extensionLocators: {
271
- value: boolean;
272
140
  flag: string;
141
+ value: boolean;
273
142
  }[];
274
143
  providerInterface?: string | undefined;
275
144
  walletStandard?: {
@@ -278,8 +147,8 @@ export declare const walletRecordsSchema: z.ZodRecord<z.ZodString, z.ZodEffects<
278
147
  providerId?: string | undefined;
279
148
  } | undefined;
280
149
  walletStandardLocators?: {
281
- name: string;
282
150
  locator: string;
151
+ name: string;
283
152
  }[] | undefined;
284
153
  windowLocations?: string[] | undefined;
285
154
  }[] | undefined;
@@ -312,76 +181,6 @@ export declare const walletRecordsSchema: z.ZodRecord<z.ZodString, z.ZodEffects<
312
181
  } | undefined;
313
182
  } | undefined;
314
183
  }, {
315
- name: string;
316
- brand?: {
317
- alt?: unknown;
318
- primaryColor?: unknown;
319
- spriteId?: unknown;
320
- } | undefined;
321
- chainGroup?: string | undefined;
322
- chains?: string[] | undefined;
323
- desktop?: {
324
- chromeId?: unknown;
325
- edgeId?: unknown;
326
- firefoxId?: unknown;
327
- native?: unknown;
328
- operaId?: unknown;
329
- safariId?: unknown;
330
- universal?: unknown;
331
- } | undefined;
332
- eip6963Config?: {
333
- rdns: string;
334
- } | undefined;
335
- filterFromWalletConnect?: boolean | undefined;
336
- group?: string | undefined;
337
- hardwareWallets?: string[] | undefined;
338
- injectedConfig?: {
339
- chain: string;
340
- extensionLocators: {
341
- flag: string;
342
- value?: boolean | undefined;
343
- }[];
344
- providerInterface?: string | undefined;
345
- walletStandard?: {
346
- features: string[];
347
- name: string;
348
- providerId?: string | undefined;
349
- } | undefined;
350
- walletStandardLocators?: {
351
- name: string;
352
- locator: string;
353
- }[] | undefined;
354
- windowLocations?: string[] | undefined;
355
- }[] | undefined;
356
- mobile?: {
357
- android?: string | null | undefined;
358
- androidId?: unknown;
359
- inAppBrowser?: string | null | undefined;
360
- inAppBrowserV2?: string | null | undefined;
361
- ios?: string | null | undefined;
362
- iosId?: unknown;
363
- native?: unknown;
364
- universal?: unknown;
365
- } | undefined;
366
- mobileExperience?: "in-app-browser" | "redirect" | undefined;
367
- shortName?: unknown;
368
- showOnlyIfInstalled?: boolean | undefined;
369
- switchNetworkOnlyFromWallet?: boolean | undefined;
370
- walletConnect?: {
371
- sdks?: unknown;
372
- } | undefined;
373
- walletGroup?: string | undefined;
374
- walletLimitations?: {
375
- browserExtension?: {
376
- unsupportedEvents?: string[] | undefined;
377
- unsupportedMethods?: string[] | undefined;
378
- } | undefined;
379
- mobile?: {
380
- unsupportedEvents?: string[] | undefined;
381
- unsupportedMethods?: string[] | undefined;
382
- } | undefined;
383
- } | undefined;
384
- }>, {
385
184
  name: string;
386
185
  brand?: {
387
186
  alt?: string | undefined;
@@ -408,78 +207,8 @@ export declare const walletRecordsSchema: z.ZodRecord<z.ZodString, z.ZodEffects<
408
207
  injectedConfig?: {
409
208
  chain: string;
410
209
  extensionLocators: {
411
- value: boolean;
412
210
  flag: string;
413
- }[];
414
- providerInterface?: string | undefined;
415
- walletStandard?: {
416
- features: string[];
417
- name: string;
418
- providerId?: string | undefined;
419
- } | undefined;
420
- walletStandardLocators?: {
421
- name: string;
422
- locator: string;
423
- }[] | undefined;
424
- windowLocations?: string[] | undefined;
425
- }[] | undefined;
426
- mobile?: {
427
- android?: string | null | undefined;
428
- androidId?: string | undefined;
429
- inAppBrowser?: string | null | undefined;
430
- inAppBrowserV2?: string | null | undefined;
431
- ios?: string | null | undefined;
432
- iosId?: string | undefined;
433
- native?: string | undefined;
434
- universal?: string | undefined;
435
- } | undefined;
436
- mobileExperience?: "in-app-browser" | "redirect" | undefined;
437
- shortName?: string | undefined;
438
- showOnlyIfInstalled?: boolean | undefined;
439
- switchNetworkOnlyFromWallet?: boolean | undefined;
440
- walletConnect?: {
441
- sdks?: string[] | undefined;
442
- } | undefined;
443
- walletGroup?: string | undefined;
444
- walletLimitations?: {
445
- browserExtension?: {
446
- unsupportedEvents?: string[] | undefined;
447
- unsupportedMethods?: string[] | undefined;
448
- } | undefined;
449
- mobile?: {
450
- unsupportedEvents?: string[] | undefined;
451
- unsupportedMethods?: string[] | undefined;
452
- } | undefined;
453
- } | undefined;
454
- }, unknown>, {
455
- name: string;
456
- brand?: {
457
- alt?: string | undefined;
458
- primaryColor?: string | undefined;
459
- spriteId?: string | undefined;
460
- } | undefined;
461
- chainGroup?: string | undefined;
462
- chains?: string[] | undefined;
463
- desktop?: {
464
- chromeId?: string | undefined;
465
- edgeId?: string | undefined;
466
- firefoxId?: string | undefined;
467
- native?: string | undefined;
468
- operaId?: string | undefined;
469
- safariId?: string | undefined;
470
- universal?: string | undefined;
471
- } | undefined;
472
- eip6963Config?: {
473
- rdns: string;
474
- } | undefined;
475
- filterFromWalletConnect?: boolean | undefined;
476
- group?: string | undefined;
477
- hardwareWallets?: string[] | undefined;
478
- injectedConfig?: {
479
- chain: string;
480
- extensionLocators: {
481
211
  value: boolean;
482
- flag: string;
483
212
  }[];
484
213
  providerInterface?: string | undefined;
485
214
  walletStandard?: {
@@ -488,8 +217,8 @@ export declare const walletRecordsSchema: z.ZodRecord<z.ZodString, z.ZodEffects<
488
217
  providerId?: string | undefined;
489
218
  } | undefined;
490
219
  walletStandardLocators?: {
491
- name: string;
492
220
  locator: string;
221
+ name: string;
493
222
  }[] | undefined;
494
223
  windowLocations?: string[] | undefined;
495
224
  }[] | undefined;
@@ -521,112 +250,42 @@ export declare const walletRecordsSchema: z.ZodRecord<z.ZodString, z.ZodEffects<
521
250
  unsupportedMethods?: string[] | undefined;
522
251
  } | undefined;
523
252
  } | undefined;
524
- }, unknown>>;
525
- export declare const walletBookSchema: z.ZodEffects<z.ZodObject<{
526
- groups: z.ZodRecord<z.ZodString, z.ZodObject<{
527
- brand: z.ZodOptional<z.ZodObject<{
528
- alt: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>;
529
- primaryColor: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>;
530
- spriteId: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>;
531
- }, "strip", z.ZodTypeAny, {
532
- alt?: string | undefined;
533
- primaryColor?: string | undefined;
534
- spriteId?: string | undefined;
535
- }, {
536
- alt?: unknown;
537
- primaryColor?: unknown;
538
- spriteId?: unknown;
539
- }>>;
540
- key: z.ZodString;
541
- name: z.ZodString;
542
- walletOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
543
- brand: z.ZodOptional<z.ZodObject<{
544
- alt: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>;
545
- primaryColor: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>;
546
- spriteId: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>;
547
- }, "strip", z.ZodTypeAny, {
548
- alt?: string | undefined;
549
- primaryColor?: string | undefined;
550
- spriteId?: string | undefined;
551
- }, {
552
- alt?: unknown;
553
- primaryColor?: unknown;
554
- spriteId?: unknown;
555
- }>>;
556
- name: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>;
557
- }, "strip", z.ZodTypeAny, {
558
- brand?: {
559
- alt?: string | undefined;
560
- primaryColor?: string | undefined;
561
- spriteId?: string | undefined;
562
- } | undefined;
563
- name?: string | undefined;
564
- }, {
565
- brand?: {
566
- alt?: unknown;
567
- primaryColor?: unknown;
568
- spriteId?: unknown;
569
- } | undefined;
570
- name?: unknown;
571
- }>>>;
572
- }, "strip", z.ZodTypeAny, {
573
- name: string;
574
- key: string;
575
- brand?: {
576
- alt?: string | undefined;
577
- primaryColor?: string | undefined;
578
- spriteId?: string | undefined;
579
- } | undefined;
580
- walletOverrides?: Record<string, {
581
- brand?: {
582
- alt?: string | undefined;
583
- primaryColor?: string | undefined;
584
- spriteId?: string | undefined;
585
- } | undefined;
586
- name?: string | undefined;
587
- }> | undefined;
588
- }, {
589
- name: string;
590
- key: string;
591
- brand?: {
592
- alt?: unknown;
593
- primaryColor?: unknown;
594
- spriteId?: unknown;
595
- } | undefined;
596
- walletOverrides?: Record<string, {
597
- brand?: {
598
- alt?: unknown;
599
- primaryColor?: unknown;
600
- spriteId?: unknown;
601
- } | undefined;
602
- name?: unknown;
603
- }> | undefined;
604
- }>>;
605
- wallets: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodEffects<z.ZodObject<{
606
- brand: z.ZodOptional<z.ZodObject<{
607
- alt: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>;
608
- primaryColor: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>;
609
- spriteId: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>;
610
- }, "strip", z.ZodTypeAny, {
611
- alt?: string | undefined;
612
- primaryColor?: string | undefined;
613
- spriteId?: string | undefined;
614
- }, {
615
- alt?: unknown;
616
- primaryColor?: unknown;
617
- spriteId?: unknown;
618
- }>>;
619
- chainGroup: z.ZodOptional<z.ZodString>;
620
- chains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
621
- desktop: z.ZodEffects<z.ZodOptional<z.ZodObject<{
622
- chromeId: z.ZodEffects<z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>, string | undefined, unknown>;
623
- edgeId: z.ZodEffects<z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>, string | undefined, unknown>;
624
- firefoxId: z.ZodEffects<z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>, string | undefined, unknown>;
625
- native: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>;
626
- operaId: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>;
627
- safariId: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>;
628
- universal: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>;
629
- }, "strip", z.ZodTypeAny, {
253
+ }>>>;
254
+ export declare const walletBookSchema: z.ZodMiniPipe<z.ZodMiniTransform<unknown, unknown>, z.ZodMiniObject<{
255
+ groups: z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniObject<{
256
+ brand: z.ZodMiniOptional<z.ZodMiniObject<{
257
+ alt: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
258
+ primaryColor: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
259
+ spriteId: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
260
+ }, z.core.$strip>>;
261
+ key: z.ZodMiniString<string>;
262
+ name: z.ZodMiniString<string>;
263
+ walletOverrides: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniObject<{
264
+ brand: z.ZodMiniOptional<z.ZodMiniObject<{
265
+ alt: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
266
+ primaryColor: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
267
+ spriteId: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
268
+ }, z.core.$strip>>;
269
+ name: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
270
+ }, z.core.$strip>>>;
271
+ }, z.core.$strip>>;
272
+ wallets: z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniPipe<z.ZodMiniPipe<z.ZodMiniTransform<unknown, unknown>, z.ZodMiniObject<{
273
+ brand: z.ZodMiniOptional<z.ZodMiniObject<{
274
+ alt: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
275
+ primaryColor: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
276
+ spriteId: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
277
+ }, z.core.$strip>>;
278
+ chainGroup: z.ZodMiniOptional<z.ZodMiniString<string>>;
279
+ chains: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
280
+ desktop: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniObject<{
281
+ chromeId: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>, z.ZodMiniTransform<string | undefined, string | undefined>>>;
282
+ edgeId: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>, z.ZodMiniTransform<string | undefined, string | undefined>>>;
283
+ firefoxId: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>, z.ZodMiniTransform<string | undefined, string | undefined>>>;
284
+ native: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
285
+ operaId: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
286
+ safariId: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
287
+ universal: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
288
+ }, z.core.$strip>, z.ZodMiniTransform<{
630
289
  chromeId?: string | undefined;
631
290
  edgeId?: string | undefined;
632
291
  firefoxId?: string | undefined;
@@ -634,15 +293,7 @@ export declare const walletBookSchema: z.ZodEffects<z.ZodObject<{
634
293
  operaId?: string | undefined;
635
294
  safariId?: string | undefined;
636
295
  universal?: string | undefined;
637
- }, {
638
- chromeId?: unknown;
639
- edgeId?: unknown;
640
- firefoxId?: unknown;
641
- native?: unknown;
642
- operaId?: unknown;
643
- safariId?: unknown;
644
- universal?: unknown;
645
- }>>, {
296
+ } | undefined, {
646
297
  chromeId?: string | undefined;
647
298
  edgeId?: string | undefined;
648
299
  firefoxId?: string | undefined;
@@ -650,107 +301,41 @@ export declare const walletBookSchema: z.ZodEffects<z.ZodObject<{
650
301
  operaId?: string | undefined;
651
302
  safariId?: string | undefined;
652
303
  universal?: string | undefined;
653
- } | undefined, {
654
- chromeId?: unknown;
655
- edgeId?: unknown;
656
- firefoxId?: unknown;
657
- native?: unknown;
658
- operaId?: unknown;
659
- safariId?: unknown;
660
- universal?: unknown;
661
- } | undefined>;
662
- eip6963Config: z.ZodOptional<z.ZodObject<{
663
- rdns: z.ZodString;
664
- }, "strip", z.ZodTypeAny, {
665
- rdns: string;
666
- }, {
667
- rdns: string;
668
- }>>;
669
- filterFromWalletConnect: z.ZodOptional<z.ZodBoolean>;
670
- group: z.ZodOptional<z.ZodString>;
671
- hardwareWallets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
672
- injectedConfig: z.ZodOptional<z.ZodArray<z.ZodObject<{
673
- chain: z.ZodString;
674
- extensionLocators: z.ZodArray<z.ZodObject<{
675
- flag: z.ZodString;
676
- value: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
677
- }, "strip", z.ZodTypeAny, {
678
- value: boolean;
679
- flag: string;
680
- }, {
681
- flag: string;
682
- value?: boolean | undefined;
683
- }>, "many">;
684
- providerInterface: z.ZodOptional<z.ZodString>;
685
- walletStandard: z.ZodOptional<z.ZodObject<{
686
- features: z.ZodArray<z.ZodString, "many">;
687
- name: z.ZodString;
688
- providerId: z.ZodOptional<z.ZodString>;
689
- }, "strip", z.ZodTypeAny, {
690
- features: string[];
691
- name: string;
692
- providerId?: string | undefined;
693
- }, {
694
- features: string[];
695
- name: string;
696
- providerId?: string | undefined;
697
- }>>;
698
- walletStandardLocators: z.ZodOptional<z.ZodArray<z.ZodObject<{
699
- locator: z.ZodString;
700
- name: z.ZodString;
701
- }, "strip", z.ZodTypeAny, {
702
- name: string;
703
- locator: string;
704
- }, {
705
- name: string;
706
- locator: string;
707
- }>, "many">>;
708
- windowLocations: z.ZodEffects<z.ZodOptional<z.ZodArray<z.ZodString, "many">>, string[] | undefined, string[] | undefined>;
709
- }, "strip", z.ZodTypeAny, {
710
- chain: string;
711
- extensionLocators: {
712
- value: boolean;
713
- flag: string;
714
- }[];
715
- providerInterface?: string | undefined;
716
- walletStandard?: {
717
- features: string[];
718
- name: string;
719
- providerId?: string | undefined;
720
- } | undefined;
721
- walletStandardLocators?: {
722
- name: string;
723
- locator: string;
724
- }[] | undefined;
725
- windowLocations?: string[] | undefined;
726
- }, {
727
- chain: string;
728
- extensionLocators: {
729
- flag: string;
730
- value?: boolean | undefined;
731
- }[];
732
- providerInterface?: string | undefined;
733
- walletStandard?: {
734
- features: string[];
735
- name: string;
736
- providerId?: string | undefined;
737
- } | undefined;
738
- walletStandardLocators?: {
739
- name: string;
740
- locator: string;
741
- }[] | undefined;
742
- windowLocations?: string[] | undefined;
743
- }>, "many">>;
744
- mobile: z.ZodEffects<z.ZodOptional<z.ZodObject<{
745
- android: z.ZodOptional<z.ZodNullable<z.ZodString>>;
746
- androidId: z.ZodEffects<z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>, string | undefined, unknown>;
747
- inAppBrowser: z.ZodOptional<z.ZodNullable<z.ZodString>>;
748
- inAppBrowserV2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
749
- ios: z.ZodOptional<z.ZodNullable<z.ZodString>>;
750
- iosId: z.ZodEffects<z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>, string | undefined, unknown>;
751
- native: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>;
752
- universal: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>;
753
- }, "strip", z.ZodTypeAny, {
304
+ }>>>;
305
+ eip6963Config: z.ZodMiniOptional<z.ZodMiniObject<{
306
+ rdns: z.ZodMiniString<string>;
307
+ }, z.core.$strip>>;
308
+ filterFromWalletConnect: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
309
+ group: z.ZodMiniOptional<z.ZodMiniString<string>>;
310
+ hardwareWallets: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
311
+ injectedConfig: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniObject<{
312
+ chain: z.ZodMiniString<string>;
313
+ extensionLocators: z.ZodMiniArray<z.ZodMiniObject<{
314
+ flag: z.ZodMiniString<string>;
315
+ value: z.ZodMiniDefault<z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>>;
316
+ }, z.core.$strip>>;
317
+ providerInterface: z.ZodMiniOptional<z.ZodMiniString<string>>;
318
+ walletStandard: z.ZodMiniOptional<z.ZodMiniObject<{
319
+ features: z.ZodMiniArray<z.ZodMiniString<string>>;
320
+ name: z.ZodMiniString<string>;
321
+ providerId: z.ZodMiniOptional<z.ZodMiniString<string>>;
322
+ }, z.core.$strip>>;
323
+ walletStandardLocators: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniObject<{
324
+ locator: z.ZodMiniString<string>;
325
+ name: z.ZodMiniString<string>;
326
+ }, z.core.$strip>>>;
327
+ windowLocations: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
328
+ }, z.core.$strip>>>;
329
+ mobile: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniOptional<z.ZodMiniObject<{
330
+ android: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
331
+ androidId: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>, z.ZodMiniTransform<string | undefined, string | undefined>>>;
332
+ inAppBrowser: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
333
+ inAppBrowserV2: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
334
+ ios: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniString<string>>>;
335
+ iosId: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>, z.ZodMiniTransform<string | undefined, string | undefined>>>;
336
+ native: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
337
+ universal: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
338
+ }, z.core.$strip>>, z.ZodMiniTransform<{
754
339
  android?: string | null | undefined;
755
340
  androidId?: string | undefined;
756
341
  inAppBrowser?: string | null | undefined;
@@ -759,16 +344,7 @@ export declare const walletBookSchema: z.ZodEffects<z.ZodObject<{
759
344
  iosId?: string | undefined;
760
345
  native?: string | undefined;
761
346
  universal?: string | undefined;
762
- }, {
763
- android?: string | null | undefined;
764
- androidId?: unknown;
765
- inAppBrowser?: string | null | undefined;
766
- inAppBrowserV2?: string | null | undefined;
767
- ios?: string | null | undefined;
768
- iosId?: unknown;
769
- native?: unknown;
770
- universal?: unknown;
771
- }>>, {
347
+ } | undefined, {
772
348
  android?: string | null | undefined;
773
349
  androidId?: string | undefined;
774
350
  inAppBrowser?: string | null | undefined;
@@ -777,214 +353,34 @@ export declare const walletBookSchema: z.ZodEffects<z.ZodObject<{
777
353
  iosId?: string | undefined;
778
354
  native?: string | undefined;
779
355
  universal?: string | undefined;
780
- } | undefined, {
781
- android?: string | null | undefined;
782
- androidId?: unknown;
783
- inAppBrowser?: string | null | undefined;
784
- inAppBrowserV2?: string | null | undefined;
785
- ios?: string | null | undefined;
786
- iosId?: unknown;
787
- native?: unknown;
788
- universal?: unknown;
789
- } | undefined>;
790
- mobileExperience: z.ZodOptional<z.ZodEnum<["in-app-browser", "redirect"]>>;
791
- name: z.ZodString;
792
- shortName: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>;
793
- showOnlyIfInstalled: z.ZodOptional<z.ZodBoolean>;
794
- switchNetworkOnlyFromWallet: z.ZodOptional<z.ZodBoolean>;
795
- walletConnect: z.ZodEffects<z.ZodOptional<z.ZodObject<{
796
- sdks: z.ZodEffects<z.ZodOptional<z.ZodArray<z.ZodString, "many">>, string[] | undefined, unknown>;
797
- }, "strip", z.ZodTypeAny, {
798
- sdks?: string[] | undefined;
799
- }, {
800
- sdks?: unknown;
801
- }>>, {
356
+ } | undefined>>>;
357
+ mobileExperience: z.ZodMiniOptional<z.ZodMiniEnum<{
358
+ "in-app-browser": "in-app-browser";
359
+ redirect: "redirect";
360
+ }>>;
361
+ name: z.ZodMiniString<string>;
362
+ shortName: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
363
+ showOnlyIfInstalled: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
364
+ switchNetworkOnlyFromWallet: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
365
+ walletConnect: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniOptional<z.ZodMiniObject<{
366
+ sdks: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<any[] | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>>>;
367
+ }, z.core.$strip>>, z.ZodMiniTransform<{
802
368
  sdks?: string[] | undefined;
803
369
  } | undefined, {
804
- sdks?: unknown;
805
- } | undefined>;
806
- walletGroup: z.ZodOptional<z.ZodString>;
807
- walletLimitations: z.ZodOptional<z.ZodObject<{
808
- browserExtension: z.ZodOptional<z.ZodObject<{
809
- unsupportedEvents: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
810
- unsupportedMethods: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
811
- }, "strip", z.ZodTypeAny, {
812
- unsupportedEvents?: string[] | undefined;
813
- unsupportedMethods?: string[] | undefined;
814
- }, {
815
- unsupportedEvents?: string[] | undefined;
816
- unsupportedMethods?: string[] | undefined;
817
- }>>;
818
- mobile: z.ZodOptional<z.ZodObject<{
819
- unsupportedEvents: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
820
- unsupportedMethods: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
821
- }, "strip", z.ZodTypeAny, {
822
- unsupportedEvents?: string[] | undefined;
823
- unsupportedMethods?: string[] | undefined;
824
- }, {
825
- unsupportedEvents?: string[] | undefined;
826
- unsupportedMethods?: string[] | undefined;
827
- }>>;
828
- }, "strip", z.ZodTypeAny, {
829
- browserExtension?: {
830
- unsupportedEvents?: string[] | undefined;
831
- unsupportedMethods?: string[] | undefined;
832
- } | undefined;
833
- mobile?: {
834
- unsupportedEvents?: string[] | undefined;
835
- unsupportedMethods?: string[] | undefined;
836
- } | undefined;
837
- }, {
838
- browserExtension?: {
839
- unsupportedEvents?: string[] | undefined;
840
- unsupportedMethods?: string[] | undefined;
841
- } | undefined;
842
- mobile?: {
843
- unsupportedEvents?: string[] | undefined;
844
- unsupportedMethods?: string[] | undefined;
845
- } | undefined;
846
- }>>;
847
- }, "strip", z.ZodTypeAny, {
848
- name: string;
849
- brand?: {
850
- alt?: string | undefined;
851
- primaryColor?: string | undefined;
852
- spriteId?: string | undefined;
853
- } | undefined;
854
- chainGroup?: string | undefined;
855
- chains?: string[] | undefined;
856
- desktop?: {
857
- chromeId?: string | undefined;
858
- edgeId?: string | undefined;
859
- firefoxId?: string | undefined;
860
- native?: string | undefined;
861
- operaId?: string | undefined;
862
- safariId?: string | undefined;
863
- universal?: string | undefined;
864
- } | undefined;
865
- eip6963Config?: {
866
- rdns: string;
867
- } | undefined;
868
- filterFromWalletConnect?: boolean | undefined;
869
- group?: string | undefined;
870
- hardwareWallets?: string[] | undefined;
871
- injectedConfig?: {
872
- chain: string;
873
- extensionLocators: {
874
- value: boolean;
875
- flag: string;
876
- }[];
877
- providerInterface?: string | undefined;
878
- walletStandard?: {
879
- features: string[];
880
- name: string;
881
- providerId?: string | undefined;
882
- } | undefined;
883
- walletStandardLocators?: {
884
- name: string;
885
- locator: string;
886
- }[] | undefined;
887
- windowLocations?: string[] | undefined;
888
- }[] | undefined;
889
- mobile?: {
890
- android?: string | null | undefined;
891
- androidId?: string | undefined;
892
- inAppBrowser?: string | null | undefined;
893
- inAppBrowserV2?: string | null | undefined;
894
- ios?: string | null | undefined;
895
- iosId?: string | undefined;
896
- native?: string | undefined;
897
- universal?: string | undefined;
898
- } | undefined;
899
- mobileExperience?: "in-app-browser" | "redirect" | undefined;
900
- shortName?: string | undefined;
901
- showOnlyIfInstalled?: boolean | undefined;
902
- switchNetworkOnlyFromWallet?: boolean | undefined;
903
- walletConnect?: {
904
370
  sdks?: string[] | undefined;
905
- } | undefined;
906
- walletGroup?: string | undefined;
907
- walletLimitations?: {
908
- browserExtension?: {
909
- unsupportedEvents?: string[] | undefined;
910
- unsupportedMethods?: string[] | undefined;
911
- } | undefined;
912
- mobile?: {
913
- unsupportedEvents?: string[] | undefined;
914
- unsupportedMethods?: string[] | undefined;
915
- } | undefined;
916
- } | undefined;
917
- }, {
918
- name: string;
919
- brand?: {
920
- alt?: unknown;
921
- primaryColor?: unknown;
922
- spriteId?: unknown;
923
- } | undefined;
924
- chainGroup?: string | undefined;
925
- chains?: string[] | undefined;
926
- desktop?: {
927
- chromeId?: unknown;
928
- edgeId?: unknown;
929
- firefoxId?: unknown;
930
- native?: unknown;
931
- operaId?: unknown;
932
- safariId?: unknown;
933
- universal?: unknown;
934
- } | undefined;
935
- eip6963Config?: {
936
- rdns: string;
937
- } | undefined;
938
- filterFromWalletConnect?: boolean | undefined;
939
- group?: string | undefined;
940
- hardwareWallets?: string[] | undefined;
941
- injectedConfig?: {
942
- chain: string;
943
- extensionLocators: {
944
- flag: string;
945
- value?: boolean | undefined;
946
- }[];
947
- providerInterface?: string | undefined;
948
- walletStandard?: {
949
- features: string[];
950
- name: string;
951
- providerId?: string | undefined;
952
- } | undefined;
953
- walletStandardLocators?: {
954
- name: string;
955
- locator: string;
956
- }[] | undefined;
957
- windowLocations?: string[] | undefined;
958
- }[] | undefined;
959
- mobile?: {
960
- android?: string | null | undefined;
961
- androidId?: unknown;
962
- inAppBrowser?: string | null | undefined;
963
- inAppBrowserV2?: string | null | undefined;
964
- ios?: string | null | undefined;
965
- iosId?: unknown;
966
- native?: unknown;
967
- universal?: unknown;
968
- } | undefined;
969
- mobileExperience?: "in-app-browser" | "redirect" | undefined;
970
- shortName?: unknown;
971
- showOnlyIfInstalled?: boolean | undefined;
972
- switchNetworkOnlyFromWallet?: boolean | undefined;
973
- walletConnect?: {
974
- sdks?: unknown;
975
- } | undefined;
976
- walletGroup?: string | undefined;
977
- walletLimitations?: {
978
- browserExtension?: {
979
- unsupportedEvents?: string[] | undefined;
980
- unsupportedMethods?: string[] | undefined;
981
- } | undefined;
982
- mobile?: {
983
- unsupportedEvents?: string[] | undefined;
984
- unsupportedMethods?: string[] | undefined;
985
- } | undefined;
986
- } | undefined;
987
- }>, {
371
+ } | undefined>>>;
372
+ walletGroup: z.ZodMiniOptional<z.ZodMiniString<string>>;
373
+ walletLimitations: z.ZodMiniOptional<z.ZodMiniObject<{
374
+ browserExtension: z.ZodMiniOptional<z.ZodMiniObject<{
375
+ unsupportedEvents: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
376
+ unsupportedMethods: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
377
+ }, z.core.$strip>>;
378
+ mobile: z.ZodMiniOptional<z.ZodMiniObject<{
379
+ unsupportedEvents: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
380
+ unsupportedMethods: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
381
+ }, z.core.$strip>>;
382
+ }, z.core.$strip>>;
383
+ }, z.core.$strip>>, z.ZodMiniTransform<{
988
384
  name: string;
989
385
  brand?: {
990
386
  alt?: string | undefined;
@@ -1011,78 +407,8 @@ export declare const walletBookSchema: z.ZodEffects<z.ZodObject<{
1011
407
  injectedConfig?: {
1012
408
  chain: string;
1013
409
  extensionLocators: {
1014
- value: boolean;
1015
410
  flag: string;
1016
- }[];
1017
- providerInterface?: string | undefined;
1018
- walletStandard?: {
1019
- features: string[];
1020
- name: string;
1021
- providerId?: string | undefined;
1022
- } | undefined;
1023
- walletStandardLocators?: {
1024
- name: string;
1025
- locator: string;
1026
- }[] | undefined;
1027
- windowLocations?: string[] | undefined;
1028
- }[] | undefined;
1029
- mobile?: {
1030
- android?: string | null | undefined;
1031
- androidId?: string | undefined;
1032
- inAppBrowser?: string | null | undefined;
1033
- inAppBrowserV2?: string | null | undefined;
1034
- ios?: string | null | undefined;
1035
- iosId?: string | undefined;
1036
- native?: string | undefined;
1037
- universal?: string | undefined;
1038
- } | undefined;
1039
- mobileExperience?: "in-app-browser" | "redirect" | undefined;
1040
- shortName?: string | undefined;
1041
- showOnlyIfInstalled?: boolean | undefined;
1042
- switchNetworkOnlyFromWallet?: boolean | undefined;
1043
- walletConnect?: {
1044
- sdks?: string[] | undefined;
1045
- } | undefined;
1046
- walletGroup?: string | undefined;
1047
- walletLimitations?: {
1048
- browserExtension?: {
1049
- unsupportedEvents?: string[] | undefined;
1050
- unsupportedMethods?: string[] | undefined;
1051
- } | undefined;
1052
- mobile?: {
1053
- unsupportedEvents?: string[] | undefined;
1054
- unsupportedMethods?: string[] | undefined;
1055
- } | undefined;
1056
- } | undefined;
1057
- }, unknown>, {
1058
- name: string;
1059
- brand?: {
1060
- alt?: string | undefined;
1061
- primaryColor?: string | undefined;
1062
- spriteId?: string | undefined;
1063
- } | undefined;
1064
- chainGroup?: string | undefined;
1065
- chains?: string[] | undefined;
1066
- desktop?: {
1067
- chromeId?: string | undefined;
1068
- edgeId?: string | undefined;
1069
- firefoxId?: string | undefined;
1070
- native?: string | undefined;
1071
- operaId?: string | undefined;
1072
- safariId?: string | undefined;
1073
- universal?: string | undefined;
1074
- } | undefined;
1075
- eip6963Config?: {
1076
- rdns: string;
1077
- } | undefined;
1078
- filterFromWalletConnect?: boolean | undefined;
1079
- group?: string | undefined;
1080
- hardwareWallets?: string[] | undefined;
1081
- injectedConfig?: {
1082
- chain: string;
1083
- extensionLocators: {
1084
411
  value: boolean;
1085
- flag: string;
1086
412
  }[];
1087
413
  providerInterface?: string | undefined;
1088
414
  walletStandard?: {
@@ -1091,97 +417,8 @@ export declare const walletBookSchema: z.ZodEffects<z.ZodObject<{
1091
417
  providerId?: string | undefined;
1092
418
  } | undefined;
1093
419
  walletStandardLocators?: {
1094
- name: string;
1095
420
  locator: string;
1096
- }[] | undefined;
1097
- windowLocations?: string[] | undefined;
1098
- }[] | undefined;
1099
- mobile?: {
1100
- android?: string | null | undefined;
1101
- androidId?: string | undefined;
1102
- inAppBrowser?: string | null | undefined;
1103
- inAppBrowserV2?: string | null | undefined;
1104
- ios?: string | null | undefined;
1105
- iosId?: string | undefined;
1106
- native?: string | undefined;
1107
- universal?: string | undefined;
1108
- } | undefined;
1109
- mobileExperience?: "in-app-browser" | "redirect" | undefined;
1110
- shortName?: string | undefined;
1111
- showOnlyIfInstalled?: boolean | undefined;
1112
- switchNetworkOnlyFromWallet?: boolean | undefined;
1113
- walletConnect?: {
1114
- sdks?: string[] | undefined;
1115
- } | undefined;
1116
- walletGroup?: string | undefined;
1117
- walletLimitations?: {
1118
- browserExtension?: {
1119
- unsupportedEvents?: string[] | undefined;
1120
- unsupportedMethods?: string[] | undefined;
1121
- } | undefined;
1122
- mobile?: {
1123
- unsupportedEvents?: string[] | undefined;
1124
- unsupportedMethods?: string[] | undefined;
1125
- } | undefined;
1126
- } | undefined;
1127
- }, unknown>>;
1128
- }, "strip", z.ZodTypeAny, {
1129
- groups: Record<string, {
1130
- name: string;
1131
- key: string;
1132
- brand?: {
1133
- alt?: string | undefined;
1134
- primaryColor?: string | undefined;
1135
- spriteId?: string | undefined;
1136
- } | undefined;
1137
- walletOverrides?: Record<string, {
1138
- brand?: {
1139
- alt?: string | undefined;
1140
- primaryColor?: string | undefined;
1141
- spriteId?: string | undefined;
1142
- } | undefined;
1143
- name?: string | undefined;
1144
- }> | undefined;
1145
- }>;
1146
- wallets: Record<string, {
1147
- name: string;
1148
- brand?: {
1149
- alt?: string | undefined;
1150
- primaryColor?: string | undefined;
1151
- spriteId?: string | undefined;
1152
- } | undefined;
1153
- chainGroup?: string | undefined;
1154
- chains?: string[] | undefined;
1155
- desktop?: {
1156
- chromeId?: string | undefined;
1157
- edgeId?: string | undefined;
1158
- firefoxId?: string | undefined;
1159
- native?: string | undefined;
1160
- operaId?: string | undefined;
1161
- safariId?: string | undefined;
1162
- universal?: string | undefined;
1163
- } | undefined;
1164
- eip6963Config?: {
1165
- rdns: string;
1166
- } | undefined;
1167
- filterFromWalletConnect?: boolean | undefined;
1168
- group?: string | undefined;
1169
- hardwareWallets?: string[] | undefined;
1170
- injectedConfig?: {
1171
- chain: string;
1172
- extensionLocators: {
1173
- value: boolean;
1174
- flag: string;
1175
- }[];
1176
- providerInterface?: string | undefined;
1177
- walletStandard?: {
1178
- features: string[];
1179
- name: string;
1180
- providerId?: string | undefined;
1181
- } | undefined;
1182
- walletStandardLocators?: {
1183
421
  name: string;
1184
- locator: string;
1185
422
  }[] | undefined;
1186
423
  windowLocations?: string[] | undefined;
1187
424
  }[] | undefined;
@@ -1213,45 +450,7 @@ export declare const walletBookSchema: z.ZodEffects<z.ZodObject<{
1213
450
  unsupportedMethods?: string[] | undefined;
1214
451
  } | undefined;
1215
452
  } | undefined;
1216
- }>;
1217
- }, {
1218
- groups: Record<string, {
1219
- name: string;
1220
- key: string;
1221
- brand?: {
1222
- alt?: unknown;
1223
- primaryColor?: unknown;
1224
- spriteId?: unknown;
1225
- } | undefined;
1226
- walletOverrides?: Record<string, {
1227
- brand?: {
1228
- alt?: unknown;
1229
- primaryColor?: unknown;
1230
- spriteId?: unknown;
1231
- } | undefined;
1232
- name?: unknown;
1233
- }> | undefined;
1234
- }>;
1235
- wallets: Record<string, unknown>;
1236
- }>, {
1237
- groups: Record<string, {
1238
- name: string;
1239
- key: string;
1240
- brand?: {
1241
- alt?: string | undefined;
1242
- primaryColor?: string | undefined;
1243
- spriteId?: string | undefined;
1244
- } | undefined;
1245
- walletOverrides?: Record<string, {
1246
- brand?: {
1247
- alt?: string | undefined;
1248
- primaryColor?: string | undefined;
1249
- spriteId?: string | undefined;
1250
- } | undefined;
1251
- name?: string | undefined;
1252
- }> | undefined;
1253
- }>;
1254
- wallets: Record<string, {
453
+ }, {
1255
454
  name: string;
1256
455
  brand?: {
1257
456
  alt?: string | undefined;
@@ -1278,8 +477,8 @@ export declare const walletBookSchema: z.ZodEffects<z.ZodObject<{
1278
477
  injectedConfig?: {
1279
478
  chain: string;
1280
479
  extensionLocators: {
1281
- value: boolean;
1282
480
  flag: string;
481
+ value: boolean;
1283
482
  }[];
1284
483
  providerInterface?: string | undefined;
1285
484
  walletStandard?: {
@@ -1288,8 +487,8 @@ export declare const walletBookSchema: z.ZodEffects<z.ZodObject<{
1288
487
  providerId?: string | undefined;
1289
488
  } | undefined;
1290
489
  walletStandardLocators?: {
1291
- name: string;
1292
490
  locator: string;
491
+ name: string;
1293
492
  }[] | undefined;
1294
493
  windowLocations?: string[] | undefined;
1295
494
  }[] | undefined;
@@ -1321,89 +520,27 @@ export declare const walletBookSchema: z.ZodEffects<z.ZodObject<{
1321
520
  unsupportedMethods?: string[] | undefined;
1322
521
  } | undefined;
1323
522
  } | undefined;
1324
- }>;
1325
- }, unknown>;
523
+ }>>>;
524
+ }, z.core.$strip>>;
1326
525
  export type WalletBookSchema = z.infer<typeof walletBookSchema>;
1327
526
  export type WalletRecordsSchema = z.infer<typeof walletBookSchema>['wallets'];
1328
- declare const WalletGroupRecordSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
1329
- brand: z.ZodOptional<z.ZodObject<{
1330
- alt: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>;
1331
- primaryColor: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>;
1332
- spriteId: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>;
1333
- }, "strip", z.ZodTypeAny, {
1334
- alt?: string | undefined;
1335
- primaryColor?: string | undefined;
1336
- spriteId?: string | undefined;
1337
- }, {
1338
- alt?: unknown;
1339
- primaryColor?: unknown;
1340
- spriteId?: unknown;
1341
- }>>;
1342
- key: z.ZodString;
1343
- name: z.ZodString;
1344
- walletOverrides: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
1345
- brand: z.ZodOptional<z.ZodObject<{
1346
- alt: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>;
1347
- primaryColor: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>;
1348
- spriteId: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>;
1349
- }, "strip", z.ZodTypeAny, {
1350
- alt?: string | undefined;
1351
- primaryColor?: string | undefined;
1352
- spriteId?: string | undefined;
1353
- }, {
1354
- alt?: unknown;
1355
- primaryColor?: unknown;
1356
- spriteId?: unknown;
1357
- }>>;
1358
- name: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, unknown>;
1359
- }, "strip", z.ZodTypeAny, {
1360
- brand?: {
1361
- alt?: string | undefined;
1362
- primaryColor?: string | undefined;
1363
- spriteId?: string | undefined;
1364
- } | undefined;
1365
- name?: string | undefined;
1366
- }, {
1367
- brand?: {
1368
- alt?: unknown;
1369
- primaryColor?: unknown;
1370
- spriteId?: unknown;
1371
- } | undefined;
1372
- name?: unknown;
1373
- }>>>;
1374
- }, "strip", z.ZodTypeAny, {
1375
- name: string;
1376
- key: string;
1377
- brand?: {
1378
- alt?: string | undefined;
1379
- primaryColor?: string | undefined;
1380
- spriteId?: string | undefined;
1381
- } | undefined;
1382
- walletOverrides?: Record<string, {
1383
- brand?: {
1384
- alt?: string | undefined;
1385
- primaryColor?: string | undefined;
1386
- spriteId?: string | undefined;
1387
- } | undefined;
1388
- name?: string | undefined;
1389
- }> | undefined;
1390
- }, {
1391
- name: string;
1392
- key: string;
1393
- brand?: {
1394
- alt?: unknown;
1395
- primaryColor?: unknown;
1396
- spriteId?: unknown;
1397
- } | undefined;
1398
- walletOverrides?: Record<string, {
1399
- brand?: {
1400
- alt?: unknown;
1401
- primaryColor?: unknown;
1402
- spriteId?: unknown;
1403
- } | undefined;
1404
- name?: unknown;
1405
- }> | undefined;
1406
- }>>;
527
+ declare const WalletGroupRecordSchema: z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniObject<{
528
+ brand: z.ZodMiniOptional<z.ZodMiniObject<{
529
+ alt: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
530
+ primaryColor: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
531
+ spriteId: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
532
+ }, z.core.$strip>>;
533
+ key: z.ZodMiniString<string>;
534
+ name: z.ZodMiniString<string>;
535
+ walletOverrides: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniObject<{
536
+ brand: z.ZodMiniOptional<z.ZodMiniObject<{
537
+ alt: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
538
+ primaryColor: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
539
+ spriteId: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
540
+ }, z.core.$strip>>;
541
+ name: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTransform<{} | undefined, unknown>, z.ZodMiniOptional<z.ZodMiniString<string>>>>;
542
+ }, z.core.$strip>>>;
543
+ }, z.core.$strip>>;
1407
544
  export type WalletGroupRecordSchema = z.infer<typeof WalletGroupRecordSchema>;
1408
545
  export type WalletBookGroupSchema = z.infer<typeof walletBookSchema>['groups'];
1409
546
  export {};