@pimlico/alto 0.0.0-main.20250212T163154 → 0.0.0-main.20250214T163421

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.
Files changed (89) hide show
  1. package/esm/cli/config/bundler.d.ts +26 -20
  2. package/esm/cli/config/bundler.js +1 -0
  3. package/esm/cli/config/bundler.js.map +1 -1
  4. package/esm/cli/config/options.js +5 -0
  5. package/esm/cli/config/options.js.map +1 -1
  6. package/esm/cli/handler.js +1 -1
  7. package/esm/executor/executorManager.d.ts +1 -1
  8. package/esm/executor/executorManager.js +2 -2
  9. package/esm/executor/executorManager.js.map +1 -1
  10. package/esm/executor/utils.js +1 -1
  11. package/esm/handlers/gasPriceManager.js +6 -0
  12. package/esm/handlers/gasPriceManager.js.map +1 -1
  13. package/esm/mempool/mempool.d.ts +1 -1
  14. package/esm/mempool/mempool.js +24 -11
  15. package/esm/mempool/mempool.js.map +1 -1
  16. package/esm/mempool/reputationManager.d.ts +10 -3
  17. package/esm/mempool/reputationManager.js +80 -10
  18. package/esm/mempool/reputationManager.js.map +1 -1
  19. package/esm/rpc/estimation/gasEstimationsV06.js +2 -2
  20. package/esm/rpc/estimation/gasEstimationsV07.js +6 -6
  21. package/esm/rpc/rpcHandler.d.ts +2 -1
  22. package/esm/rpc/rpcHandler.js +22 -16
  23. package/esm/rpc/rpcHandler.js.map +1 -1
  24. package/esm/rpc/validation/BundlerCollectorTracerV06.js +5 -2
  25. package/esm/rpc/validation/BundlerCollectorTracerV06.js.map +1 -1
  26. package/esm/rpc/validation/BundlerCollectorTracerV07.js +5 -2
  27. package/esm/rpc/validation/BundlerCollectorTracerV07.js.map +1 -1
  28. package/esm/rpc/validation/SafeValidator.d.ts +2 -2
  29. package/esm/rpc/validation/SafeValidator.js +8 -4
  30. package/esm/rpc/validation/SafeValidator.js.map +1 -1
  31. package/esm/rpc/validation/TracerResultParserV07.js +23 -14
  32. package/esm/rpc/validation/TracerResultParserV07.js.map +1 -1
  33. package/esm/rpc/validation/UnsafeValidator.js +5 -1
  34. package/esm/rpc/validation/UnsafeValidator.js.map +1 -1
  35. package/esm/types/schemas.d.ts +473 -444
  36. package/esm/types/schemas.js +15 -5
  37. package/esm/types/schemas.js.map +1 -1
  38. package/esm/types/utils.d.ts +2 -1
  39. package/esm/types/utils.js +1 -0
  40. package/esm/types/utils.js.map +1 -1
  41. package/esm/utils/helpers.d.ts +4 -4
  42. package/esm/utils/helpers.js +6 -1
  43. package/esm/utils/helpers.js.map +1 -1
  44. package/esm/utils/validation.js +1 -1
  45. package/lib/cli/config/bundler.d.ts +26 -20
  46. package/lib/cli/config/bundler.js +1 -0
  47. package/lib/cli/config/bundler.js.map +1 -1
  48. package/lib/cli/config/options.js +5 -0
  49. package/lib/cli/config/options.js.map +1 -1
  50. package/lib/cli/handler.js +1 -1
  51. package/lib/executor/executorManager.d.ts +1 -1
  52. package/lib/executor/executorManager.js +2 -2
  53. package/lib/executor/executorManager.js.map +1 -1
  54. package/lib/executor/utils.js +1 -1
  55. package/lib/handlers/gasPriceManager.js +6 -0
  56. package/lib/handlers/gasPriceManager.js.map +1 -1
  57. package/lib/mempool/mempool.d.ts +1 -1
  58. package/lib/mempool/mempool.js +24 -11
  59. package/lib/mempool/mempool.js.map +1 -1
  60. package/lib/mempool/reputationManager.d.ts +10 -3
  61. package/lib/mempool/reputationManager.js +80 -10
  62. package/lib/mempool/reputationManager.js.map +1 -1
  63. package/lib/rpc/estimation/gasEstimationsV06.js +2 -2
  64. package/lib/rpc/estimation/gasEstimationsV07.js +6 -6
  65. package/lib/rpc/rpcHandler.d.ts +2 -1
  66. package/lib/rpc/rpcHandler.js +22 -16
  67. package/lib/rpc/rpcHandler.js.map +1 -1
  68. package/lib/rpc/validation/BundlerCollectorTracerV06.js +5 -2
  69. package/lib/rpc/validation/BundlerCollectorTracerV06.js.map +1 -1
  70. package/lib/rpc/validation/BundlerCollectorTracerV07.js +5 -2
  71. package/lib/rpc/validation/BundlerCollectorTracerV07.js.map +1 -1
  72. package/lib/rpc/validation/SafeValidator.d.ts +2 -2
  73. package/lib/rpc/validation/SafeValidator.js +8 -4
  74. package/lib/rpc/validation/SafeValidator.js.map +1 -1
  75. package/lib/rpc/validation/TracerResultParserV07.js +23 -14
  76. package/lib/rpc/validation/TracerResultParserV07.js.map +1 -1
  77. package/lib/rpc/validation/UnsafeValidator.js +5 -1
  78. package/lib/rpc/validation/UnsafeValidator.js.map +1 -1
  79. package/lib/types/schemas.d.ts +473 -444
  80. package/lib/types/schemas.js +15 -5
  81. package/lib/types/schemas.js.map +1 -1
  82. package/lib/types/utils.d.ts +2 -1
  83. package/lib/types/utils.js +1 -0
  84. package/lib/types/utils.js.map +1 -1
  85. package/lib/utils/helpers.d.ts +4 -4
  86. package/lib/utils/helpers.js +6 -1
  87. package/lib/utils/helpers.js.map +1 -1
  88. package/lib/utils/validation.js +1 -1
  89. package/package.json +1 -1
@@ -21,7 +21,7 @@ declare const userOperationV06Schema: z.ZodEffects<z.ZodObject<{
21
21
  maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
22
22
  paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
23
23
  signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
24
- eip7702Auth: z.ZodOptional<z.ZodObject<{
24
+ eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
25
25
  contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
26
26
  chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
27
27
  nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
@@ -45,7 +45,7 @@ declare const userOperationV06Schema: z.ZodEffects<z.ZodObject<{
45
45
  s: string;
46
46
  v: string | number | bigint;
47
47
  yParity: string | number | bigint;
48
- }>>;
48
+ }>>>;
49
49
  }, "strict", z.ZodTypeAny, {
50
50
  sender: `0x${string}`;
51
51
  nonce: bigint;
@@ -58,7 +58,7 @@ declare const userOperationV06Schema: z.ZodEffects<z.ZodObject<{
58
58
  maxFeePerGas: bigint;
59
59
  maxPriorityFeePerGas: bigint;
60
60
  signature: `0x${string}`;
61
- eip7702Auth?: {
61
+ eip7702auth?: {
62
62
  nonce: number;
63
63
  contractAddress: `0x${string}`;
64
64
  chainId: number;
@@ -66,7 +66,7 @@ declare const userOperationV06Schema: z.ZodEffects<z.ZodObject<{
66
66
  s: `0x${string}`;
67
67
  v: bigint;
68
68
  yParity: number;
69
- } | undefined;
69
+ } | null | undefined;
70
70
  }, {
71
71
  sender: string;
72
72
  nonce: string | number | bigint;
@@ -79,7 +79,7 @@ declare const userOperationV06Schema: z.ZodEffects<z.ZodObject<{
79
79
  maxFeePerGas: string | number | bigint;
80
80
  maxPriorityFeePerGas: string | number | bigint;
81
81
  signature: string;
82
- eip7702Auth?: {
82
+ eip7702auth?: {
83
83
  nonce: string | number | bigint;
84
84
  contractAddress: string;
85
85
  chainId: string | number | bigint;
@@ -87,7 +87,7 @@ declare const userOperationV06Schema: z.ZodEffects<z.ZodObject<{
87
87
  s: string;
88
88
  v: string | number | bigint;
89
89
  yParity: string | number | bigint;
90
- } | undefined;
90
+ } | null | undefined;
91
91
  }>, {
92
92
  sender: `0x${string}`;
93
93
  nonce: bigint;
@@ -100,7 +100,7 @@ declare const userOperationV06Schema: z.ZodEffects<z.ZodObject<{
100
100
  maxFeePerGas: bigint;
101
101
  maxPriorityFeePerGas: bigint;
102
102
  signature: `0x${string}`;
103
- eip7702Auth?: {
103
+ eip7702auth?: {
104
104
  nonce: number;
105
105
  contractAddress: `0x${string}`;
106
106
  chainId: number;
@@ -108,7 +108,7 @@ declare const userOperationV06Schema: z.ZodEffects<z.ZodObject<{
108
108
  s: `0x${string}`;
109
109
  v: bigint;
110
110
  yParity: number;
111
- } | undefined;
111
+ } | null | undefined;
112
112
  }, {
113
113
  sender: string;
114
114
  nonce: string | number | bigint;
@@ -121,7 +121,7 @@ declare const userOperationV06Schema: z.ZodEffects<z.ZodObject<{
121
121
  maxFeePerGas: string | number | bigint;
122
122
  maxPriorityFeePerGas: string | number | bigint;
123
123
  signature: string;
124
- eip7702Auth?: {
124
+ eip7702auth?: {
125
125
  nonce: string | number | bigint;
126
126
  contractAddress: string;
127
127
  chainId: string | number | bigint;
@@ -129,7 +129,7 @@ declare const userOperationV06Schema: z.ZodEffects<z.ZodObject<{
129
129
  s: string;
130
130
  v: string | number | bigint;
131
131
  yParity: string | number | bigint;
132
- } | undefined;
132
+ } | null | undefined;
133
133
  }>;
134
134
  declare const userOperationV07Schema: z.ZodEffects<z.ZodObject<{
135
135
  sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
@@ -147,7 +147,7 @@ declare const userOperationV07Schema: z.ZodEffects<z.ZodObject<{
147
147
  paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
148
148
  paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
149
149
  signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
150
- eip7702Auth: z.ZodOptional<z.ZodObject<{
150
+ eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
151
151
  contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
152
152
  chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
153
153
  nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
@@ -171,7 +171,7 @@ declare const userOperationV07Schema: z.ZodEffects<z.ZodObject<{
171
171
  s: string;
172
172
  v: string | number | bigint;
173
173
  yParity: string | number | bigint;
174
- }>>;
174
+ }>>>;
175
175
  }, "strict", z.ZodTypeAny, {
176
176
  sender: `0x${string}`;
177
177
  factory: `0x${string}` | null;
@@ -188,7 +188,7 @@ declare const userOperationV07Schema: z.ZodEffects<z.ZodObject<{
188
188
  paymasterPostOpGasLimit: bigint | null;
189
189
  factoryData: `0x${string}` | null;
190
190
  paymasterData: `0x${string}` | null;
191
- eip7702Auth?: {
191
+ eip7702auth?: {
192
192
  nonce: number;
193
193
  contractAddress: `0x${string}`;
194
194
  chainId: number;
@@ -196,7 +196,7 @@ declare const userOperationV07Schema: z.ZodEffects<z.ZodObject<{
196
196
  s: `0x${string}`;
197
197
  v: bigint;
198
198
  yParity: number;
199
- } | undefined;
199
+ } | null | undefined;
200
200
  }, {
201
201
  sender: string;
202
202
  nonce: string | number | bigint;
@@ -213,7 +213,7 @@ declare const userOperationV07Schema: z.ZodEffects<z.ZodObject<{
213
213
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
214
214
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
215
215
  paymasterData?: string | null | undefined;
216
- eip7702Auth?: {
216
+ eip7702auth?: {
217
217
  nonce: string | number | bigint;
218
218
  contractAddress: string;
219
219
  chainId: string | number | bigint;
@@ -221,7 +221,7 @@ declare const userOperationV07Schema: z.ZodEffects<z.ZodObject<{
221
221
  s: string;
222
222
  v: string | number | bigint;
223
223
  yParity: string | number | bigint;
224
- } | undefined;
224
+ } | null | undefined;
225
225
  }>, {
226
226
  sender: `0x${string}`;
227
227
  factory: `0x${string}` | null;
@@ -238,7 +238,7 @@ declare const userOperationV07Schema: z.ZodEffects<z.ZodObject<{
238
238
  paymasterPostOpGasLimit: bigint | null;
239
239
  factoryData: `0x${string}` | null;
240
240
  paymasterData: `0x${string}` | null;
241
- eip7702Auth?: {
241
+ eip7702auth?: {
242
242
  nonce: number;
243
243
  contractAddress: `0x${string}`;
244
244
  chainId: number;
@@ -246,7 +246,7 @@ declare const userOperationV07Schema: z.ZodEffects<z.ZodObject<{
246
246
  s: `0x${string}`;
247
247
  v: bigint;
248
248
  yParity: number;
249
- } | undefined;
249
+ } | null | undefined;
250
250
  }, {
251
251
  sender: string;
252
252
  nonce: string | number | bigint;
@@ -263,7 +263,7 @@ declare const userOperationV07Schema: z.ZodEffects<z.ZodObject<{
263
263
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
264
264
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
265
265
  paymasterData?: string | null | undefined;
266
- eip7702Auth?: {
266
+ eip7702auth?: {
267
267
  nonce: string | number | bigint;
268
268
  contractAddress: string;
269
269
  chainId: string | number | bigint;
@@ -271,7 +271,7 @@ declare const userOperationV07Schema: z.ZodEffects<z.ZodObject<{
271
271
  s: string;
272
272
  v: string | number | bigint;
273
273
  yParity: string | number | bigint;
274
- } | undefined;
274
+ } | null | undefined;
275
275
  }>;
276
276
  declare const packerUserOperationSchema: z.ZodEffects<z.ZodObject<{
277
277
  sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
@@ -336,7 +336,7 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
336
336
  maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
337
337
  paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
338
338
  signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
339
- eip7702Auth: z.ZodOptional<z.ZodObject<{
339
+ eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
340
340
  contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
341
341
  chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
342
342
  nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
@@ -360,7 +360,7 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
360
360
  s: string;
361
361
  v: string | number | bigint;
362
362
  yParity: string | number | bigint;
363
- }>>;
363
+ }>>>;
364
364
  }, "strict", z.ZodTypeAny, {
365
365
  sender: `0x${string}`;
366
366
  nonce: bigint;
@@ -373,7 +373,7 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
373
373
  maxFeePerGas: bigint;
374
374
  maxPriorityFeePerGas: bigint;
375
375
  signature: `0x${string}`;
376
- eip7702Auth?: {
376
+ eip7702auth?: {
377
377
  nonce: number;
378
378
  contractAddress: `0x${string}`;
379
379
  chainId: number;
@@ -381,7 +381,7 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
381
381
  s: `0x${string}`;
382
382
  v: bigint;
383
383
  yParity: number;
384
- } | undefined;
384
+ } | null | undefined;
385
385
  }, {
386
386
  sender: string;
387
387
  nonce: string | number | bigint;
@@ -394,7 +394,7 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
394
394
  maxFeePerGas: string | number | bigint;
395
395
  maxPriorityFeePerGas: string | number | bigint;
396
396
  signature: string;
397
- eip7702Auth?: {
397
+ eip7702auth?: {
398
398
  nonce: string | number | bigint;
399
399
  contractAddress: string;
400
400
  chainId: string | number | bigint;
@@ -402,7 +402,7 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
402
402
  s: string;
403
403
  v: string | number | bigint;
404
404
  yParity: string | number | bigint;
405
- } | undefined;
405
+ } | null | undefined;
406
406
  }>, {
407
407
  sender: `0x${string}`;
408
408
  nonce: bigint;
@@ -415,7 +415,7 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
415
415
  maxFeePerGas: bigint;
416
416
  maxPriorityFeePerGas: bigint;
417
417
  signature: `0x${string}`;
418
- eip7702Auth?: {
418
+ eip7702auth?: {
419
419
  nonce: number;
420
420
  contractAddress: `0x${string}`;
421
421
  chainId: number;
@@ -423,7 +423,7 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
423
423
  s: `0x${string}`;
424
424
  v: bigint;
425
425
  yParity: number;
426
- } | undefined;
426
+ } | null | undefined;
427
427
  }, {
428
428
  sender: string;
429
429
  nonce: string | number | bigint;
@@ -436,7 +436,7 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
436
436
  maxFeePerGas: string | number | bigint;
437
437
  maxPriorityFeePerGas: string | number | bigint;
438
438
  signature: string;
439
- eip7702Auth?: {
439
+ eip7702auth?: {
440
440
  nonce: string | number | bigint;
441
441
  contractAddress: string;
442
442
  chainId: string | number | bigint;
@@ -444,7 +444,7 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
444
444
  s: string;
445
445
  v: string | number | bigint;
446
446
  yParity: string | number | bigint;
447
- } | undefined;
447
+ } | null | undefined;
448
448
  }>, z.ZodEffects<z.ZodObject<{
449
449
  sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
450
450
  nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
@@ -461,7 +461,7 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
461
461
  paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
462
462
  paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
463
463
  signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
464
- eip7702Auth: z.ZodOptional<z.ZodObject<{
464
+ eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
465
465
  contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
466
466
  chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
467
467
  nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
@@ -485,7 +485,7 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
485
485
  s: string;
486
486
  v: string | number | bigint;
487
487
  yParity: string | number | bigint;
488
- }>>;
488
+ }>>>;
489
489
  }, "strict", z.ZodTypeAny, {
490
490
  sender: `0x${string}`;
491
491
  factory: `0x${string}` | null;
@@ -502,7 +502,7 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
502
502
  paymasterPostOpGasLimit: bigint | null;
503
503
  factoryData: `0x${string}` | null;
504
504
  paymasterData: `0x${string}` | null;
505
- eip7702Auth?: {
505
+ eip7702auth?: {
506
506
  nonce: number;
507
507
  contractAddress: `0x${string}`;
508
508
  chainId: number;
@@ -510,7 +510,7 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
510
510
  s: `0x${string}`;
511
511
  v: bigint;
512
512
  yParity: number;
513
- } | undefined;
513
+ } | null | undefined;
514
514
  }, {
515
515
  sender: string;
516
516
  nonce: string | number | bigint;
@@ -527,7 +527,7 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
527
527
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
528
528
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
529
529
  paymasterData?: string | null | undefined;
530
- eip7702Auth?: {
530
+ eip7702auth?: {
531
531
  nonce: string | number | bigint;
532
532
  contractAddress: string;
533
533
  chainId: string | number | bigint;
@@ -535,7 +535,7 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
535
535
  s: string;
536
536
  v: string | number | bigint;
537
537
  yParity: string | number | bigint;
538
- } | undefined;
538
+ } | null | undefined;
539
539
  }>, {
540
540
  sender: `0x${string}`;
541
541
  factory: `0x${string}` | null;
@@ -552,7 +552,7 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
552
552
  paymasterPostOpGasLimit: bigint | null;
553
553
  factoryData: `0x${string}` | null;
554
554
  paymasterData: `0x${string}` | null;
555
- eip7702Auth?: {
555
+ eip7702auth?: {
556
556
  nonce: number;
557
557
  contractAddress: `0x${string}`;
558
558
  chainId: number;
@@ -560,7 +560,7 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
560
560
  s: `0x${string}`;
561
561
  v: bigint;
562
562
  yParity: number;
563
- } | undefined;
563
+ } | null | undefined;
564
564
  }, {
565
565
  sender: string;
566
566
  nonce: string | number | bigint;
@@ -577,7 +577,7 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
577
577
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
578
578
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
579
579
  paymasterData?: string | null | undefined;
580
- eip7702Auth?: {
580
+ eip7702auth?: {
581
581
  nonce: string | number | bigint;
582
582
  contractAddress: string;
583
583
  chainId: string | number | bigint;
@@ -585,7 +585,7 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
585
585
  s: string;
586
586
  v: string | number | bigint;
587
587
  yParity: string | number | bigint;
588
- } | undefined;
588
+ } | null | undefined;
589
589
  }>]>;
590
590
  export type UserOperationV06 = z.infer<typeof userOperationV06Schema>;
591
591
  export type UserOperationV07 = z.infer<typeof userOperationV07Schema>;
@@ -678,7 +678,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
678
678
  maxFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
679
679
  paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
680
680
  signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
681
- eip7702Auth: z.ZodOptional<z.ZodObject<{
681
+ eip7702auth: z.ZodOptional<z.ZodObject<{
682
682
  contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
683
683
  chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
684
684
  nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
@@ -715,7 +715,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
715
715
  maxFeePerGas: bigint;
716
716
  maxPriorityFeePerGas: bigint;
717
717
  signature: `0x${string}`;
718
- eip7702Auth?: {
718
+ eip7702auth?: {
719
719
  nonce: number;
720
720
  contractAddress: `0x${string}`;
721
721
  chainId: number;
@@ -736,7 +736,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
736
736
  preVerificationGas?: string | number | bigint | undefined;
737
737
  maxPriorityFeePerGas?: string | number | bigint | undefined;
738
738
  maxFeePerGas?: string | number | bigint | undefined;
739
- eip7702Auth?: {
739
+ eip7702auth?: {
740
740
  nonce: string | number | bigint;
741
741
  contractAddress: string;
742
742
  chainId: string | number | bigint;
@@ -757,7 +757,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
757
757
  maxFeePerGas: bigint;
758
758
  maxPriorityFeePerGas: bigint;
759
759
  signature: `0x${string}`;
760
- eip7702Auth?: {
760
+ eip7702auth?: {
761
761
  nonce: number;
762
762
  contractAddress: `0x${string}`;
763
763
  chainId: number;
@@ -778,7 +778,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
778
778
  preVerificationGas?: string | number | bigint | undefined;
779
779
  maxPriorityFeePerGas?: string | number | bigint | undefined;
780
780
  maxFeePerGas?: string | number | bigint | undefined;
781
- eip7702Auth?: {
781
+ eip7702auth?: {
782
782
  nonce: string | number | bigint;
783
783
  contractAddress: string;
784
784
  chainId: string | number | bigint;
@@ -803,7 +803,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
803
803
  paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
804
804
  paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
805
805
  signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
806
- eip7702Auth: z.ZodOptional<z.ZodObject<{
806
+ eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
807
807
  contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
808
808
  chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
809
809
  nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
@@ -827,7 +827,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
827
827
  s: string;
828
828
  v: string | number | bigint;
829
829
  yParity: string | number | bigint;
830
- }>>;
830
+ }>>>;
831
831
  }, "strict", z.ZodTypeAny, {
832
832
  sender: `0x${string}`;
833
833
  factory: `0x${string}` | null;
@@ -844,7 +844,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
844
844
  paymasterPostOpGasLimit: bigint | null;
845
845
  factoryData: `0x${string}` | null;
846
846
  paymasterData: `0x${string}` | null;
847
- eip7702Auth?: {
847
+ eip7702auth?: {
848
848
  nonce: number;
849
849
  contractAddress: `0x${string}`;
850
850
  chainId: number;
@@ -852,7 +852,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
852
852
  s: `0x${string}`;
853
853
  v: bigint;
854
854
  yParity: number;
855
- } | undefined;
855
+ } | null | undefined;
856
856
  }, {
857
857
  sender: string;
858
858
  nonce: string | number | bigint;
@@ -869,7 +869,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
869
869
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
870
870
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
871
871
  paymasterData?: string | null | undefined;
872
- eip7702Auth?: {
872
+ eip7702auth?: {
873
873
  nonce: string | number | bigint;
874
874
  contractAddress: string;
875
875
  chainId: string | number | bigint;
@@ -877,7 +877,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
877
877
  s: string;
878
878
  v: string | number | bigint;
879
879
  yParity: string | number | bigint;
880
- } | undefined;
880
+ } | null | undefined;
881
881
  }>, {
882
882
  sender: `0x${string}`;
883
883
  factory: `0x${string}` | null;
@@ -894,7 +894,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
894
894
  paymasterPostOpGasLimit: bigint | null;
895
895
  factoryData: `0x${string}` | null;
896
896
  paymasterData: `0x${string}` | null;
897
- eip7702Auth?: {
897
+ eip7702auth?: {
898
898
  nonce: number;
899
899
  contractAddress: `0x${string}`;
900
900
  chainId: number;
@@ -902,7 +902,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
902
902
  s: `0x${string}`;
903
903
  v: bigint;
904
904
  yParity: number;
905
- } | undefined;
905
+ } | null | undefined;
906
906
  }, {
907
907
  sender: string;
908
908
  nonce: string | number | bigint;
@@ -919,7 +919,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
919
919
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
920
920
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
921
921
  paymasterData?: string | null | undefined;
922
- eip7702Auth?: {
922
+ eip7702auth?: {
923
923
  nonce: string | number | bigint;
924
924
  contractAddress: string;
925
925
  chainId: string | number | bigint;
@@ -927,7 +927,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
927
927
  s: string;
928
928
  v: string | number | bigint;
929
929
  yParity: string | number | bigint;
930
- } | undefined;
930
+ } | null | undefined;
931
931
  }>]>, z.ZodEffects<z.ZodString, `0x${string}`, string>], null>, z.ZodTuple<[z.ZodUnion<[z.ZodEffects<z.ZodObject<{
932
932
  sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
933
933
  nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
@@ -940,7 +940,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
940
940
  maxFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
941
941
  paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
942
942
  signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
943
- eip7702Auth: z.ZodOptional<z.ZodObject<{
943
+ eip7702auth: z.ZodOptional<z.ZodObject<{
944
944
  contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
945
945
  chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
946
946
  nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
@@ -977,7 +977,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
977
977
  maxFeePerGas: bigint;
978
978
  maxPriorityFeePerGas: bigint;
979
979
  signature: `0x${string}`;
980
- eip7702Auth?: {
980
+ eip7702auth?: {
981
981
  nonce: number;
982
982
  contractAddress: `0x${string}`;
983
983
  chainId: number;
@@ -998,7 +998,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
998
998
  preVerificationGas?: string | number | bigint | undefined;
999
999
  maxPriorityFeePerGas?: string | number | bigint | undefined;
1000
1000
  maxFeePerGas?: string | number | bigint | undefined;
1001
- eip7702Auth?: {
1001
+ eip7702auth?: {
1002
1002
  nonce: string | number | bigint;
1003
1003
  contractAddress: string;
1004
1004
  chainId: string | number | bigint;
@@ -1019,7 +1019,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
1019
1019
  maxFeePerGas: bigint;
1020
1020
  maxPriorityFeePerGas: bigint;
1021
1021
  signature: `0x${string}`;
1022
- eip7702Auth?: {
1022
+ eip7702auth?: {
1023
1023
  nonce: number;
1024
1024
  contractAddress: `0x${string}`;
1025
1025
  chainId: number;
@@ -1040,7 +1040,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
1040
1040
  preVerificationGas?: string | number | bigint | undefined;
1041
1041
  maxPriorityFeePerGas?: string | number | bigint | undefined;
1042
1042
  maxFeePerGas?: string | number | bigint | undefined;
1043
- eip7702Auth?: {
1043
+ eip7702auth?: {
1044
1044
  nonce: string | number | bigint;
1045
1045
  contractAddress: string;
1046
1046
  chainId: string | number | bigint;
@@ -1065,7 +1065,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
1065
1065
  paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
1066
1066
  paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
1067
1067
  signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
1068
- eip7702Auth: z.ZodOptional<z.ZodObject<{
1068
+ eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1069
1069
  contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
1070
1070
  chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
1071
1071
  nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
@@ -1089,7 +1089,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
1089
1089
  s: string;
1090
1090
  v: string | number | bigint;
1091
1091
  yParity: string | number | bigint;
1092
- }>>;
1092
+ }>>>;
1093
1093
  }, "strict", z.ZodTypeAny, {
1094
1094
  sender: `0x${string}`;
1095
1095
  factory: `0x${string}` | null;
@@ -1106,7 +1106,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
1106
1106
  paymasterPostOpGasLimit: bigint | null;
1107
1107
  factoryData: `0x${string}` | null;
1108
1108
  paymasterData: `0x${string}` | null;
1109
- eip7702Auth?: {
1109
+ eip7702auth?: {
1110
1110
  nonce: number;
1111
1111
  contractAddress: `0x${string}`;
1112
1112
  chainId: number;
@@ -1114,7 +1114,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
1114
1114
  s: `0x${string}`;
1115
1115
  v: bigint;
1116
1116
  yParity: number;
1117
- } | undefined;
1117
+ } | null | undefined;
1118
1118
  }, {
1119
1119
  sender: string;
1120
1120
  nonce: string | number | bigint;
@@ -1131,7 +1131,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
1131
1131
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
1132
1132
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
1133
1133
  paymasterData?: string | null | undefined;
1134
- eip7702Auth?: {
1134
+ eip7702auth?: {
1135
1135
  nonce: string | number | bigint;
1136
1136
  contractAddress: string;
1137
1137
  chainId: string | number | bigint;
@@ -1139,7 +1139,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
1139
1139
  s: string;
1140
1140
  v: string | number | bigint;
1141
1141
  yParity: string | number | bigint;
1142
- } | undefined;
1142
+ } | null | undefined;
1143
1143
  }>, {
1144
1144
  sender: `0x${string}`;
1145
1145
  factory: `0x${string}` | null;
@@ -1156,7 +1156,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
1156
1156
  paymasterPostOpGasLimit: bigint | null;
1157
1157
  factoryData: `0x${string}` | null;
1158
1158
  paymasterData: `0x${string}` | null;
1159
- eip7702Auth?: {
1159
+ eip7702auth?: {
1160
1160
  nonce: number;
1161
1161
  contractAddress: `0x${string}`;
1162
1162
  chainId: number;
@@ -1164,7 +1164,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
1164
1164
  s: `0x${string}`;
1165
1165
  v: bigint;
1166
1166
  yParity: number;
1167
- } | undefined;
1167
+ } | null | undefined;
1168
1168
  }, {
1169
1169
  sender: string;
1170
1170
  nonce: string | number | bigint;
@@ -1181,7 +1181,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
1181
1181
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
1182
1182
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
1183
1183
  paymasterData?: string | null | undefined;
1184
- eip7702Auth?: {
1184
+ eip7702auth?: {
1185
1185
  nonce: string | number | bigint;
1186
1186
  contractAddress: string;
1187
1187
  chainId: string | number | bigint;
@@ -1189,7 +1189,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
1189
1189
  s: string;
1190
1190
  v: string | number | bigint;
1191
1191
  yParity: string | number | bigint;
1192
- } | undefined;
1192
+ } | null | undefined;
1193
1193
  }>]>, z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodRecord<z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodObject<{
1194
1194
  balance: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
1195
1195
  nonce: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
@@ -1222,7 +1222,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
1222
1222
  maxFeePerGas: bigint;
1223
1223
  maxPriorityFeePerGas: bigint;
1224
1224
  signature: `0x${string}`;
1225
- eip7702Auth?: {
1225
+ eip7702auth?: {
1226
1226
  nonce: number;
1227
1227
  contractAddress: `0x${string}`;
1228
1228
  chainId: number;
@@ -1247,7 +1247,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
1247
1247
  paymasterPostOpGasLimit: bigint | null;
1248
1248
  factoryData: `0x${string}` | null;
1249
1249
  paymasterData: `0x${string}` | null;
1250
- eip7702Auth?: {
1250
+ eip7702auth?: {
1251
1251
  nonce: number;
1252
1252
  contractAddress: `0x${string}`;
1253
1253
  chainId: number;
@@ -1255,7 +1255,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
1255
1255
  s: `0x${string}`;
1256
1256
  v: bigint;
1257
1257
  yParity: number;
1258
- } | undefined;
1258
+ } | null | undefined;
1259
1259
  }, `0x${string}`] | [{
1260
1260
  sender: `0x${string}`;
1261
1261
  nonce: bigint;
@@ -1268,7 +1268,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
1268
1268
  maxFeePerGas: bigint;
1269
1269
  maxPriorityFeePerGas: bigint;
1270
1270
  signature: `0x${string}`;
1271
- eip7702Auth?: {
1271
+ eip7702auth?: {
1272
1272
  nonce: number;
1273
1273
  contractAddress: `0x${string}`;
1274
1274
  chainId: number;
@@ -1293,7 +1293,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
1293
1293
  paymasterPostOpGasLimit: bigint | null;
1294
1294
  factoryData: `0x${string}` | null;
1295
1295
  paymasterData: `0x${string}` | null;
1296
- eip7702Auth?: {
1296
+ eip7702auth?: {
1297
1297
  nonce: number;
1298
1298
  contractAddress: `0x${string}`;
1299
1299
  chainId: number;
@@ -1301,7 +1301,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
1301
1301
  s: `0x${string}`;
1302
1302
  v: bigint;
1303
1303
  yParity: number;
1304
- } | undefined;
1304
+ } | null | undefined;
1305
1305
  }, `0x${string}`, Partial<Record<`0x${string}`, {
1306
1306
  balance?: bigint | undefined;
1307
1307
  nonce?: bigint | undefined;
@@ -1323,7 +1323,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
1323
1323
  preVerificationGas?: string | number | bigint | undefined;
1324
1324
  maxPriorityFeePerGas?: string | number | bigint | undefined;
1325
1325
  maxFeePerGas?: string | number | bigint | undefined;
1326
- eip7702Auth?: {
1326
+ eip7702auth?: {
1327
1327
  nonce: string | number | bigint;
1328
1328
  contractAddress: string;
1329
1329
  chainId: string | number | bigint;
@@ -1348,7 +1348,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
1348
1348
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
1349
1349
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
1350
1350
  paymasterData?: string | null | undefined;
1351
- eip7702Auth?: {
1351
+ eip7702auth?: {
1352
1352
  nonce: string | number | bigint;
1353
1353
  contractAddress: string;
1354
1354
  chainId: string | number | bigint;
@@ -1356,7 +1356,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
1356
1356
  s: string;
1357
1357
  v: string | number | bigint;
1358
1358
  yParity: string | number | bigint;
1359
- } | undefined;
1359
+ } | null | undefined;
1360
1360
  }, string] | [{
1361
1361
  sender: string;
1362
1362
  nonce: string | number | bigint;
@@ -1369,7 +1369,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
1369
1369
  preVerificationGas?: string | number | bigint | undefined;
1370
1370
  maxPriorityFeePerGas?: string | number | bigint | undefined;
1371
1371
  maxFeePerGas?: string | number | bigint | undefined;
1372
- eip7702Auth?: {
1372
+ eip7702auth?: {
1373
1373
  nonce: string | number | bigint;
1374
1374
  contractAddress: string;
1375
1375
  chainId: string | number | bigint;
@@ -1394,7 +1394,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
1394
1394
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
1395
1395
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
1396
1396
  paymasterData?: string | null | undefined;
1397
- eip7702Auth?: {
1397
+ eip7702auth?: {
1398
1398
  nonce: string | number | bigint;
1399
1399
  contractAddress: string;
1400
1400
  chainId: string | number | bigint;
@@ -1402,7 +1402,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
1402
1402
  s: string;
1403
1403
  v: string | number | bigint;
1404
1404
  yParity: string | number | bigint;
1405
- } | undefined;
1405
+ } | null | undefined;
1406
1406
  }, string, Record<string, {
1407
1407
  balance?: string | number | bigint | undefined;
1408
1408
  nonce?: string | number | bigint | undefined;
@@ -1426,7 +1426,7 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
1426
1426
  maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
1427
1427
  paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
1428
1428
  signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
1429
- eip7702Auth: z.ZodOptional<z.ZodObject<{
1429
+ eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1430
1430
  contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
1431
1431
  chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
1432
1432
  nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
@@ -1450,7 +1450,7 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
1450
1450
  s: string;
1451
1451
  v: string | number | bigint;
1452
1452
  yParity: string | number | bigint;
1453
- }>>;
1453
+ }>>>;
1454
1454
  }, "strict", z.ZodTypeAny, {
1455
1455
  sender: `0x${string}`;
1456
1456
  nonce: bigint;
@@ -1463,7 +1463,7 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
1463
1463
  maxFeePerGas: bigint;
1464
1464
  maxPriorityFeePerGas: bigint;
1465
1465
  signature: `0x${string}`;
1466
- eip7702Auth?: {
1466
+ eip7702auth?: {
1467
1467
  nonce: number;
1468
1468
  contractAddress: `0x${string}`;
1469
1469
  chainId: number;
@@ -1471,7 +1471,7 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
1471
1471
  s: `0x${string}`;
1472
1472
  v: bigint;
1473
1473
  yParity: number;
1474
- } | undefined;
1474
+ } | null | undefined;
1475
1475
  }, {
1476
1476
  sender: string;
1477
1477
  nonce: string | number | bigint;
@@ -1484,7 +1484,7 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
1484
1484
  maxFeePerGas: string | number | bigint;
1485
1485
  maxPriorityFeePerGas: string | number | bigint;
1486
1486
  signature: string;
1487
- eip7702Auth?: {
1487
+ eip7702auth?: {
1488
1488
  nonce: string | number | bigint;
1489
1489
  contractAddress: string;
1490
1490
  chainId: string | number | bigint;
@@ -1492,7 +1492,7 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
1492
1492
  s: string;
1493
1493
  v: string | number | bigint;
1494
1494
  yParity: string | number | bigint;
1495
- } | undefined;
1495
+ } | null | undefined;
1496
1496
  }>, {
1497
1497
  sender: `0x${string}`;
1498
1498
  nonce: bigint;
@@ -1505,7 +1505,7 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
1505
1505
  maxFeePerGas: bigint;
1506
1506
  maxPriorityFeePerGas: bigint;
1507
1507
  signature: `0x${string}`;
1508
- eip7702Auth?: {
1508
+ eip7702auth?: {
1509
1509
  nonce: number;
1510
1510
  contractAddress: `0x${string}`;
1511
1511
  chainId: number;
@@ -1513,7 +1513,7 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
1513
1513
  s: `0x${string}`;
1514
1514
  v: bigint;
1515
1515
  yParity: number;
1516
- } | undefined;
1516
+ } | null | undefined;
1517
1517
  }, {
1518
1518
  sender: string;
1519
1519
  nonce: string | number | bigint;
@@ -1526,7 +1526,7 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
1526
1526
  maxFeePerGas: string | number | bigint;
1527
1527
  maxPriorityFeePerGas: string | number | bigint;
1528
1528
  signature: string;
1529
- eip7702Auth?: {
1529
+ eip7702auth?: {
1530
1530
  nonce: string | number | bigint;
1531
1531
  contractAddress: string;
1532
1532
  chainId: string | number | bigint;
@@ -1534,7 +1534,7 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
1534
1534
  s: string;
1535
1535
  v: string | number | bigint;
1536
1536
  yParity: string | number | bigint;
1537
- } | undefined;
1537
+ } | null | undefined;
1538
1538
  }>, z.ZodEffects<z.ZodObject<{
1539
1539
  sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
1540
1540
  nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
@@ -1551,7 +1551,7 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
1551
1551
  paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
1552
1552
  paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
1553
1553
  signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
1554
- eip7702Auth: z.ZodOptional<z.ZodObject<{
1554
+ eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1555
1555
  contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
1556
1556
  chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
1557
1557
  nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
@@ -1575,7 +1575,7 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
1575
1575
  s: string;
1576
1576
  v: string | number | bigint;
1577
1577
  yParity: string | number | bigint;
1578
- }>>;
1578
+ }>>>;
1579
1579
  }, "strict", z.ZodTypeAny, {
1580
1580
  sender: `0x${string}`;
1581
1581
  factory: `0x${string}` | null;
@@ -1592,7 +1592,7 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
1592
1592
  paymasterPostOpGasLimit: bigint | null;
1593
1593
  factoryData: `0x${string}` | null;
1594
1594
  paymasterData: `0x${string}` | null;
1595
- eip7702Auth?: {
1595
+ eip7702auth?: {
1596
1596
  nonce: number;
1597
1597
  contractAddress: `0x${string}`;
1598
1598
  chainId: number;
@@ -1600,7 +1600,7 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
1600
1600
  s: `0x${string}`;
1601
1601
  v: bigint;
1602
1602
  yParity: number;
1603
- } | undefined;
1603
+ } | null | undefined;
1604
1604
  }, {
1605
1605
  sender: string;
1606
1606
  nonce: string | number | bigint;
@@ -1617,7 +1617,7 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
1617
1617
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
1618
1618
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
1619
1619
  paymasterData?: string | null | undefined;
1620
- eip7702Auth?: {
1620
+ eip7702auth?: {
1621
1621
  nonce: string | number | bigint;
1622
1622
  contractAddress: string;
1623
1623
  chainId: string | number | bigint;
@@ -1625,7 +1625,7 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
1625
1625
  s: string;
1626
1626
  v: string | number | bigint;
1627
1627
  yParity: string | number | bigint;
1628
- } | undefined;
1628
+ } | null | undefined;
1629
1629
  }>, {
1630
1630
  sender: `0x${string}`;
1631
1631
  factory: `0x${string}` | null;
@@ -1642,7 +1642,7 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
1642
1642
  paymasterPostOpGasLimit: bigint | null;
1643
1643
  factoryData: `0x${string}` | null;
1644
1644
  paymasterData: `0x${string}` | null;
1645
- eip7702Auth?: {
1645
+ eip7702auth?: {
1646
1646
  nonce: number;
1647
1647
  contractAddress: `0x${string}`;
1648
1648
  chainId: number;
@@ -1650,7 +1650,7 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
1650
1650
  s: `0x${string}`;
1651
1651
  v: bigint;
1652
1652
  yParity: number;
1653
- } | undefined;
1653
+ } | null | undefined;
1654
1654
  }, {
1655
1655
  sender: string;
1656
1656
  nonce: string | number | bigint;
@@ -1667,7 +1667,7 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
1667
1667
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
1668
1668
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
1669
1669
  paymasterData?: string | null | undefined;
1670
- eip7702Auth?: {
1670
+ eip7702auth?: {
1671
1671
  nonce: string | number | bigint;
1672
1672
  contractAddress: string;
1673
1673
  chainId: string | number | bigint;
@@ -1675,7 +1675,7 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
1675
1675
  s: string;
1676
1676
  v: string | number | bigint;
1677
1677
  yParity: string | number | bigint;
1678
- } | undefined;
1678
+ } | null | undefined;
1679
1679
  }>]>, z.ZodEffects<z.ZodString, `0x${string}`, string>], null>;
1680
1680
  }, "strip", z.ZodTypeAny, {
1681
1681
  params: [{
@@ -1690,7 +1690,7 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
1690
1690
  maxFeePerGas: bigint;
1691
1691
  maxPriorityFeePerGas: bigint;
1692
1692
  signature: `0x${string}`;
1693
- eip7702Auth?: {
1693
+ eip7702auth?: {
1694
1694
  nonce: number;
1695
1695
  contractAddress: `0x${string}`;
1696
1696
  chainId: number;
@@ -1698,7 +1698,7 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
1698
1698
  s: `0x${string}`;
1699
1699
  v: bigint;
1700
1700
  yParity: number;
1701
- } | undefined;
1701
+ } | null | undefined;
1702
1702
  } | {
1703
1703
  sender: `0x${string}`;
1704
1704
  factory: `0x${string}` | null;
@@ -1715,7 +1715,7 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
1715
1715
  paymasterPostOpGasLimit: bigint | null;
1716
1716
  factoryData: `0x${string}` | null;
1717
1717
  paymasterData: `0x${string}` | null;
1718
- eip7702Auth?: {
1718
+ eip7702auth?: {
1719
1719
  nonce: number;
1720
1720
  contractAddress: `0x${string}`;
1721
1721
  chainId: number;
@@ -1723,7 +1723,7 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
1723
1723
  s: `0x${string}`;
1724
1724
  v: bigint;
1725
1725
  yParity: number;
1726
- } | undefined;
1726
+ } | null | undefined;
1727
1727
  }, `0x${string}`];
1728
1728
  method: "eth_sendUserOperation";
1729
1729
  }, {
@@ -1739,7 +1739,7 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
1739
1739
  maxFeePerGas: string | number | bigint;
1740
1740
  maxPriorityFeePerGas: string | number | bigint;
1741
1741
  signature: string;
1742
- eip7702Auth?: {
1742
+ eip7702auth?: {
1743
1743
  nonce: string | number | bigint;
1744
1744
  contractAddress: string;
1745
1745
  chainId: string | number | bigint;
@@ -1747,7 +1747,7 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
1747
1747
  s: string;
1748
1748
  v: string | number | bigint;
1749
1749
  yParity: string | number | bigint;
1750
- } | undefined;
1750
+ } | null | undefined;
1751
1751
  } | {
1752
1752
  sender: string;
1753
1753
  nonce: string | number | bigint;
@@ -1764,7 +1764,7 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
1764
1764
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
1765
1765
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
1766
1766
  paymasterData?: string | null | undefined;
1767
- eip7702Auth?: {
1767
+ eip7702auth?: {
1768
1768
  nonce: string | number | bigint;
1769
1769
  contractAddress: string;
1770
1770
  chainId: string | number | bigint;
@@ -1772,7 +1772,7 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
1772
1772
  s: string;
1773
1773
  v: string | number | bigint;
1774
1774
  yParity: string | number | bigint;
1775
- } | undefined;
1775
+ } | null | undefined;
1776
1776
  }, string];
1777
1777
  method: "eth_sendUserOperation";
1778
1778
  }>;
@@ -1950,7 +1950,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
1950
1950
  maxFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
1951
1951
  paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
1952
1952
  signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
1953
- eip7702Auth: z.ZodOptional<z.ZodObject<{
1953
+ eip7702auth: z.ZodOptional<z.ZodObject<{
1954
1954
  contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
1955
1955
  chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
1956
1956
  nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
@@ -1987,7 +1987,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
1987
1987
  maxFeePerGas: bigint;
1988
1988
  maxPriorityFeePerGas: bigint;
1989
1989
  signature: `0x${string}`;
1990
- eip7702Auth?: {
1990
+ eip7702auth?: {
1991
1991
  nonce: number;
1992
1992
  contractAddress: `0x${string}`;
1993
1993
  chainId: number;
@@ -2008,7 +2008,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2008
2008
  preVerificationGas?: string | number | bigint | undefined;
2009
2009
  maxPriorityFeePerGas?: string | number | bigint | undefined;
2010
2010
  maxFeePerGas?: string | number | bigint | undefined;
2011
- eip7702Auth?: {
2011
+ eip7702auth?: {
2012
2012
  nonce: string | number | bigint;
2013
2013
  contractAddress: string;
2014
2014
  chainId: string | number | bigint;
@@ -2029,7 +2029,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2029
2029
  maxFeePerGas: bigint;
2030
2030
  maxPriorityFeePerGas: bigint;
2031
2031
  signature: `0x${string}`;
2032
- eip7702Auth?: {
2032
+ eip7702auth?: {
2033
2033
  nonce: number;
2034
2034
  contractAddress: `0x${string}`;
2035
2035
  chainId: number;
@@ -2050,7 +2050,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2050
2050
  preVerificationGas?: string | number | bigint | undefined;
2051
2051
  maxPriorityFeePerGas?: string | number | bigint | undefined;
2052
2052
  maxFeePerGas?: string | number | bigint | undefined;
2053
- eip7702Auth?: {
2053
+ eip7702auth?: {
2054
2054
  nonce: string | number | bigint;
2055
2055
  contractAddress: string;
2056
2056
  chainId: string | number | bigint;
@@ -2075,7 +2075,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2075
2075
  paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
2076
2076
  paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
2077
2077
  signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
2078
- eip7702Auth: z.ZodOptional<z.ZodObject<{
2078
+ eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
2079
2079
  contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
2080
2080
  chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
2081
2081
  nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
@@ -2099,7 +2099,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2099
2099
  s: string;
2100
2100
  v: string | number | bigint;
2101
2101
  yParity: string | number | bigint;
2102
- }>>;
2102
+ }>>>;
2103
2103
  }, "strict", z.ZodTypeAny, {
2104
2104
  sender: `0x${string}`;
2105
2105
  factory: `0x${string}` | null;
@@ -2116,7 +2116,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2116
2116
  paymasterPostOpGasLimit: bigint | null;
2117
2117
  factoryData: `0x${string}` | null;
2118
2118
  paymasterData: `0x${string}` | null;
2119
- eip7702Auth?: {
2119
+ eip7702auth?: {
2120
2120
  nonce: number;
2121
2121
  contractAddress: `0x${string}`;
2122
2122
  chainId: number;
@@ -2124,7 +2124,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2124
2124
  s: `0x${string}`;
2125
2125
  v: bigint;
2126
2126
  yParity: number;
2127
- } | undefined;
2127
+ } | null | undefined;
2128
2128
  }, {
2129
2129
  sender: string;
2130
2130
  nonce: string | number | bigint;
@@ -2141,7 +2141,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2141
2141
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
2142
2142
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
2143
2143
  paymasterData?: string | null | undefined;
2144
- eip7702Auth?: {
2144
+ eip7702auth?: {
2145
2145
  nonce: string | number | bigint;
2146
2146
  contractAddress: string;
2147
2147
  chainId: string | number | bigint;
@@ -2149,7 +2149,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2149
2149
  s: string;
2150
2150
  v: string | number | bigint;
2151
2151
  yParity: string | number | bigint;
2152
- } | undefined;
2152
+ } | null | undefined;
2153
2153
  }>, {
2154
2154
  sender: `0x${string}`;
2155
2155
  factory: `0x${string}` | null;
@@ -2166,7 +2166,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2166
2166
  paymasterPostOpGasLimit: bigint | null;
2167
2167
  factoryData: `0x${string}` | null;
2168
2168
  paymasterData: `0x${string}` | null;
2169
- eip7702Auth?: {
2169
+ eip7702auth?: {
2170
2170
  nonce: number;
2171
2171
  contractAddress: `0x${string}`;
2172
2172
  chainId: number;
@@ -2174,7 +2174,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2174
2174
  s: `0x${string}`;
2175
2175
  v: bigint;
2176
2176
  yParity: number;
2177
- } | undefined;
2177
+ } | null | undefined;
2178
2178
  }, {
2179
2179
  sender: string;
2180
2180
  nonce: string | number | bigint;
@@ -2191,7 +2191,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2191
2191
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
2192
2192
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
2193
2193
  paymasterData?: string | null | undefined;
2194
- eip7702Auth?: {
2194
+ eip7702auth?: {
2195
2195
  nonce: string | number | bigint;
2196
2196
  contractAddress: string;
2197
2197
  chainId: string | number | bigint;
@@ -2199,7 +2199,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2199
2199
  s: string;
2200
2200
  v: string | number | bigint;
2201
2201
  yParity: string | number | bigint;
2202
- } | undefined;
2202
+ } | null | undefined;
2203
2203
  }>]>, z.ZodEffects<z.ZodString, `0x${string}`, string>], null>, z.ZodTuple<[z.ZodUnion<[z.ZodEffects<z.ZodObject<{
2204
2204
  sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
2205
2205
  nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
@@ -2212,7 +2212,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2212
2212
  maxFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
2213
2213
  paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
2214
2214
  signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
2215
- eip7702Auth: z.ZodOptional<z.ZodObject<{
2215
+ eip7702auth: z.ZodOptional<z.ZodObject<{
2216
2216
  contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
2217
2217
  chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
2218
2218
  nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
@@ -2249,7 +2249,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2249
2249
  maxFeePerGas: bigint;
2250
2250
  maxPriorityFeePerGas: bigint;
2251
2251
  signature: `0x${string}`;
2252
- eip7702Auth?: {
2252
+ eip7702auth?: {
2253
2253
  nonce: number;
2254
2254
  contractAddress: `0x${string}`;
2255
2255
  chainId: number;
@@ -2270,7 +2270,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2270
2270
  preVerificationGas?: string | number | bigint | undefined;
2271
2271
  maxPriorityFeePerGas?: string | number | bigint | undefined;
2272
2272
  maxFeePerGas?: string | number | bigint | undefined;
2273
- eip7702Auth?: {
2273
+ eip7702auth?: {
2274
2274
  nonce: string | number | bigint;
2275
2275
  contractAddress: string;
2276
2276
  chainId: string | number | bigint;
@@ -2291,7 +2291,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2291
2291
  maxFeePerGas: bigint;
2292
2292
  maxPriorityFeePerGas: bigint;
2293
2293
  signature: `0x${string}`;
2294
- eip7702Auth?: {
2294
+ eip7702auth?: {
2295
2295
  nonce: number;
2296
2296
  contractAddress: `0x${string}`;
2297
2297
  chainId: number;
@@ -2312,7 +2312,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2312
2312
  preVerificationGas?: string | number | bigint | undefined;
2313
2313
  maxPriorityFeePerGas?: string | number | bigint | undefined;
2314
2314
  maxFeePerGas?: string | number | bigint | undefined;
2315
- eip7702Auth?: {
2315
+ eip7702auth?: {
2316
2316
  nonce: string | number | bigint;
2317
2317
  contractAddress: string;
2318
2318
  chainId: string | number | bigint;
@@ -2337,7 +2337,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2337
2337
  paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
2338
2338
  paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
2339
2339
  signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
2340
- eip7702Auth: z.ZodOptional<z.ZodObject<{
2340
+ eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
2341
2341
  contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
2342
2342
  chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
2343
2343
  nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
@@ -2361,7 +2361,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2361
2361
  s: string;
2362
2362
  v: string | number | bigint;
2363
2363
  yParity: string | number | bigint;
2364
- }>>;
2364
+ }>>>;
2365
2365
  }, "strict", z.ZodTypeAny, {
2366
2366
  sender: `0x${string}`;
2367
2367
  factory: `0x${string}` | null;
@@ -2378,7 +2378,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2378
2378
  paymasterPostOpGasLimit: bigint | null;
2379
2379
  factoryData: `0x${string}` | null;
2380
2380
  paymasterData: `0x${string}` | null;
2381
- eip7702Auth?: {
2381
+ eip7702auth?: {
2382
2382
  nonce: number;
2383
2383
  contractAddress: `0x${string}`;
2384
2384
  chainId: number;
@@ -2386,7 +2386,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2386
2386
  s: `0x${string}`;
2387
2387
  v: bigint;
2388
2388
  yParity: number;
2389
- } | undefined;
2389
+ } | null | undefined;
2390
2390
  }, {
2391
2391
  sender: string;
2392
2392
  nonce: string | number | bigint;
@@ -2403,7 +2403,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2403
2403
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
2404
2404
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
2405
2405
  paymasterData?: string | null | undefined;
2406
- eip7702Auth?: {
2406
+ eip7702auth?: {
2407
2407
  nonce: string | number | bigint;
2408
2408
  contractAddress: string;
2409
2409
  chainId: string | number | bigint;
@@ -2411,7 +2411,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2411
2411
  s: string;
2412
2412
  v: string | number | bigint;
2413
2413
  yParity: string | number | bigint;
2414
- } | undefined;
2414
+ } | null | undefined;
2415
2415
  }>, {
2416
2416
  sender: `0x${string}`;
2417
2417
  factory: `0x${string}` | null;
@@ -2428,7 +2428,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2428
2428
  paymasterPostOpGasLimit: bigint | null;
2429
2429
  factoryData: `0x${string}` | null;
2430
2430
  paymasterData: `0x${string}` | null;
2431
- eip7702Auth?: {
2431
+ eip7702auth?: {
2432
2432
  nonce: number;
2433
2433
  contractAddress: `0x${string}`;
2434
2434
  chainId: number;
@@ -2436,7 +2436,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2436
2436
  s: `0x${string}`;
2437
2437
  v: bigint;
2438
2438
  yParity: number;
2439
- } | undefined;
2439
+ } | null | undefined;
2440
2440
  }, {
2441
2441
  sender: string;
2442
2442
  nonce: string | number | bigint;
@@ -2453,7 +2453,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2453
2453
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
2454
2454
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
2455
2455
  paymasterData?: string | null | undefined;
2456
- eip7702Auth?: {
2456
+ eip7702auth?: {
2457
2457
  nonce: string | number | bigint;
2458
2458
  contractAddress: string;
2459
2459
  chainId: string | number | bigint;
@@ -2461,7 +2461,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2461
2461
  s: string;
2462
2462
  v: string | number | bigint;
2463
2463
  yParity: string | number | bigint;
2464
- } | undefined;
2464
+ } | null | undefined;
2465
2465
  }>]>, z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodRecord<z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodObject<{
2466
2466
  balance: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
2467
2467
  nonce: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
@@ -2494,7 +2494,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2494
2494
  maxFeePerGas: bigint;
2495
2495
  maxPriorityFeePerGas: bigint;
2496
2496
  signature: `0x${string}`;
2497
- eip7702Auth?: {
2497
+ eip7702auth?: {
2498
2498
  nonce: number;
2499
2499
  contractAddress: `0x${string}`;
2500
2500
  chainId: number;
@@ -2519,7 +2519,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2519
2519
  paymasterPostOpGasLimit: bigint | null;
2520
2520
  factoryData: `0x${string}` | null;
2521
2521
  paymasterData: `0x${string}` | null;
2522
- eip7702Auth?: {
2522
+ eip7702auth?: {
2523
2523
  nonce: number;
2524
2524
  contractAddress: `0x${string}`;
2525
2525
  chainId: number;
@@ -2527,7 +2527,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2527
2527
  s: `0x${string}`;
2528
2528
  v: bigint;
2529
2529
  yParity: number;
2530
- } | undefined;
2530
+ } | null | undefined;
2531
2531
  }, `0x${string}`] | [{
2532
2532
  sender: `0x${string}`;
2533
2533
  nonce: bigint;
@@ -2540,7 +2540,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2540
2540
  maxFeePerGas: bigint;
2541
2541
  maxPriorityFeePerGas: bigint;
2542
2542
  signature: `0x${string}`;
2543
- eip7702Auth?: {
2543
+ eip7702auth?: {
2544
2544
  nonce: number;
2545
2545
  contractAddress: `0x${string}`;
2546
2546
  chainId: number;
@@ -2565,7 +2565,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2565
2565
  paymasterPostOpGasLimit: bigint | null;
2566
2566
  factoryData: `0x${string}` | null;
2567
2567
  paymasterData: `0x${string}` | null;
2568
- eip7702Auth?: {
2568
+ eip7702auth?: {
2569
2569
  nonce: number;
2570
2570
  contractAddress: `0x${string}`;
2571
2571
  chainId: number;
@@ -2573,7 +2573,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2573
2573
  s: `0x${string}`;
2574
2574
  v: bigint;
2575
2575
  yParity: number;
2576
- } | undefined;
2576
+ } | null | undefined;
2577
2577
  }, `0x${string}`, Partial<Record<`0x${string}`, {
2578
2578
  balance?: bigint | undefined;
2579
2579
  nonce?: bigint | undefined;
@@ -2595,7 +2595,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2595
2595
  preVerificationGas?: string | number | bigint | undefined;
2596
2596
  maxPriorityFeePerGas?: string | number | bigint | undefined;
2597
2597
  maxFeePerGas?: string | number | bigint | undefined;
2598
- eip7702Auth?: {
2598
+ eip7702auth?: {
2599
2599
  nonce: string | number | bigint;
2600
2600
  contractAddress: string;
2601
2601
  chainId: string | number | bigint;
@@ -2620,7 +2620,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2620
2620
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
2621
2621
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
2622
2622
  paymasterData?: string | null | undefined;
2623
- eip7702Auth?: {
2623
+ eip7702auth?: {
2624
2624
  nonce: string | number | bigint;
2625
2625
  contractAddress: string;
2626
2626
  chainId: string | number | bigint;
@@ -2628,7 +2628,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2628
2628
  s: string;
2629
2629
  v: string | number | bigint;
2630
2630
  yParity: string | number | bigint;
2631
- } | undefined;
2631
+ } | null | undefined;
2632
2632
  }, string] | [{
2633
2633
  sender: string;
2634
2634
  nonce: string | number | bigint;
@@ -2641,7 +2641,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2641
2641
  preVerificationGas?: string | number | bigint | undefined;
2642
2642
  maxPriorityFeePerGas?: string | number | bigint | undefined;
2643
2643
  maxFeePerGas?: string | number | bigint | undefined;
2644
- eip7702Auth?: {
2644
+ eip7702auth?: {
2645
2645
  nonce: string | number | bigint;
2646
2646
  contractAddress: string;
2647
2647
  chainId: string | number | bigint;
@@ -2666,7 +2666,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2666
2666
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
2667
2667
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
2668
2668
  paymasterData?: string | null | undefined;
2669
- eip7702Auth?: {
2669
+ eip7702auth?: {
2670
2670
  nonce: string | number | bigint;
2671
2671
  contractAddress: string;
2672
2672
  chainId: string | number | bigint;
@@ -2674,7 +2674,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2674
2674
  s: string;
2675
2675
  v: string | number | bigint;
2676
2676
  yParity: string | number | bigint;
2677
- } | undefined;
2677
+ } | null | undefined;
2678
2678
  }, string, Record<string, {
2679
2679
  balance?: string | number | bigint | undefined;
2680
2680
  nonce?: string | number | bigint | undefined;
@@ -2697,7 +2697,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2697
2697
  maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
2698
2698
  paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
2699
2699
  signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
2700
- eip7702Auth: z.ZodOptional<z.ZodObject<{
2700
+ eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
2701
2701
  contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
2702
2702
  chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
2703
2703
  nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
@@ -2721,7 +2721,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2721
2721
  s: string;
2722
2722
  v: string | number | bigint;
2723
2723
  yParity: string | number | bigint;
2724
- }>>;
2724
+ }>>>;
2725
2725
  }, "strict", z.ZodTypeAny, {
2726
2726
  sender: `0x${string}`;
2727
2727
  nonce: bigint;
@@ -2734,7 +2734,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2734
2734
  maxFeePerGas: bigint;
2735
2735
  maxPriorityFeePerGas: bigint;
2736
2736
  signature: `0x${string}`;
2737
- eip7702Auth?: {
2737
+ eip7702auth?: {
2738
2738
  nonce: number;
2739
2739
  contractAddress: `0x${string}`;
2740
2740
  chainId: number;
@@ -2742,7 +2742,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2742
2742
  s: `0x${string}`;
2743
2743
  v: bigint;
2744
2744
  yParity: number;
2745
- } | undefined;
2745
+ } | null | undefined;
2746
2746
  }, {
2747
2747
  sender: string;
2748
2748
  nonce: string | number | bigint;
@@ -2755,7 +2755,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2755
2755
  maxFeePerGas: string | number | bigint;
2756
2756
  maxPriorityFeePerGas: string | number | bigint;
2757
2757
  signature: string;
2758
- eip7702Auth?: {
2758
+ eip7702auth?: {
2759
2759
  nonce: string | number | bigint;
2760
2760
  contractAddress: string;
2761
2761
  chainId: string | number | bigint;
@@ -2763,7 +2763,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2763
2763
  s: string;
2764
2764
  v: string | number | bigint;
2765
2765
  yParity: string | number | bigint;
2766
- } | undefined;
2766
+ } | null | undefined;
2767
2767
  }>, {
2768
2768
  sender: `0x${string}`;
2769
2769
  nonce: bigint;
@@ -2776,7 +2776,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2776
2776
  maxFeePerGas: bigint;
2777
2777
  maxPriorityFeePerGas: bigint;
2778
2778
  signature: `0x${string}`;
2779
- eip7702Auth?: {
2779
+ eip7702auth?: {
2780
2780
  nonce: number;
2781
2781
  contractAddress: `0x${string}`;
2782
2782
  chainId: number;
@@ -2784,7 +2784,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2784
2784
  s: `0x${string}`;
2785
2785
  v: bigint;
2786
2786
  yParity: number;
2787
- } | undefined;
2787
+ } | null | undefined;
2788
2788
  }, {
2789
2789
  sender: string;
2790
2790
  nonce: string | number | bigint;
@@ -2797,7 +2797,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2797
2797
  maxFeePerGas: string | number | bigint;
2798
2798
  maxPriorityFeePerGas: string | number | bigint;
2799
2799
  signature: string;
2800
- eip7702Auth?: {
2800
+ eip7702auth?: {
2801
2801
  nonce: string | number | bigint;
2802
2802
  contractAddress: string;
2803
2803
  chainId: string | number | bigint;
@@ -2805,7 +2805,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2805
2805
  s: string;
2806
2806
  v: string | number | bigint;
2807
2807
  yParity: string | number | bigint;
2808
- } | undefined;
2808
+ } | null | undefined;
2809
2809
  }>, z.ZodEffects<z.ZodObject<{
2810
2810
  sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
2811
2811
  nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
@@ -2822,7 +2822,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2822
2822
  paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
2823
2823
  paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
2824
2824
  signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
2825
- eip7702Auth: z.ZodOptional<z.ZodObject<{
2825
+ eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
2826
2826
  contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
2827
2827
  chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
2828
2828
  nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
@@ -2846,7 +2846,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2846
2846
  s: string;
2847
2847
  v: string | number | bigint;
2848
2848
  yParity: string | number | bigint;
2849
- }>>;
2849
+ }>>>;
2850
2850
  }, "strict", z.ZodTypeAny, {
2851
2851
  sender: `0x${string}`;
2852
2852
  factory: `0x${string}` | null;
@@ -2863,7 +2863,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2863
2863
  paymasterPostOpGasLimit: bigint | null;
2864
2864
  factoryData: `0x${string}` | null;
2865
2865
  paymasterData: `0x${string}` | null;
2866
- eip7702Auth?: {
2866
+ eip7702auth?: {
2867
2867
  nonce: number;
2868
2868
  contractAddress: `0x${string}`;
2869
2869
  chainId: number;
@@ -2871,7 +2871,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2871
2871
  s: `0x${string}`;
2872
2872
  v: bigint;
2873
2873
  yParity: number;
2874
- } | undefined;
2874
+ } | null | undefined;
2875
2875
  }, {
2876
2876
  sender: string;
2877
2877
  nonce: string | number | bigint;
@@ -2888,7 +2888,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2888
2888
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
2889
2889
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
2890
2890
  paymasterData?: string | null | undefined;
2891
- eip7702Auth?: {
2891
+ eip7702auth?: {
2892
2892
  nonce: string | number | bigint;
2893
2893
  contractAddress: string;
2894
2894
  chainId: string | number | bigint;
@@ -2896,7 +2896,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2896
2896
  s: string;
2897
2897
  v: string | number | bigint;
2898
2898
  yParity: string | number | bigint;
2899
- } | undefined;
2899
+ } | null | undefined;
2900
2900
  }>, {
2901
2901
  sender: `0x${string}`;
2902
2902
  factory: `0x${string}` | null;
@@ -2913,7 +2913,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2913
2913
  paymasterPostOpGasLimit: bigint | null;
2914
2914
  factoryData: `0x${string}` | null;
2915
2915
  paymasterData: `0x${string}` | null;
2916
- eip7702Auth?: {
2916
+ eip7702auth?: {
2917
2917
  nonce: number;
2918
2918
  contractAddress: `0x${string}`;
2919
2919
  chainId: number;
@@ -2921,7 +2921,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2921
2921
  s: `0x${string}`;
2922
2922
  v: bigint;
2923
2923
  yParity: number;
2924
- } | undefined;
2924
+ } | null | undefined;
2925
2925
  }, {
2926
2926
  sender: string;
2927
2927
  nonce: string | number | bigint;
@@ -2938,7 +2938,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2938
2938
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
2939
2939
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
2940
2940
  paymasterData?: string | null | undefined;
2941
- eip7702Auth?: {
2941
+ eip7702auth?: {
2942
2942
  nonce: string | number | bigint;
2943
2943
  contractAddress: string;
2944
2944
  chainId: string | number | bigint;
@@ -2946,7 +2946,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2946
2946
  s: string;
2947
2947
  v: string | number | bigint;
2948
2948
  yParity: string | number | bigint;
2949
- } | undefined;
2949
+ } | null | undefined;
2950
2950
  }>]>, z.ZodEffects<z.ZodString, `0x${string}`, string>], null>;
2951
2951
  }, "strip", z.ZodTypeAny, {
2952
2952
  params: [{
@@ -2961,7 +2961,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2961
2961
  maxFeePerGas: bigint;
2962
2962
  maxPriorityFeePerGas: bigint;
2963
2963
  signature: `0x${string}`;
2964
- eip7702Auth?: {
2964
+ eip7702auth?: {
2965
2965
  nonce: number;
2966
2966
  contractAddress: `0x${string}`;
2967
2967
  chainId: number;
@@ -2969,7 +2969,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2969
2969
  s: `0x${string}`;
2970
2970
  v: bigint;
2971
2971
  yParity: number;
2972
- } | undefined;
2972
+ } | null | undefined;
2973
2973
  } | {
2974
2974
  sender: `0x${string}`;
2975
2975
  factory: `0x${string}` | null;
@@ -2986,7 +2986,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2986
2986
  paymasterPostOpGasLimit: bigint | null;
2987
2987
  factoryData: `0x${string}` | null;
2988
2988
  paymasterData: `0x${string}` | null;
2989
- eip7702Auth?: {
2989
+ eip7702auth?: {
2990
2990
  nonce: number;
2991
2991
  contractAddress: `0x${string}`;
2992
2992
  chainId: number;
@@ -2994,7 +2994,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
2994
2994
  s: `0x${string}`;
2995
2995
  v: bigint;
2996
2996
  yParity: number;
2997
- } | undefined;
2997
+ } | null | undefined;
2998
2998
  }, `0x${string}`];
2999
2999
  method: "eth_sendUserOperation";
3000
3000
  }, {
@@ -3010,7 +3010,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3010
3010
  maxFeePerGas: string | number | bigint;
3011
3011
  maxPriorityFeePerGas: string | number | bigint;
3012
3012
  signature: string;
3013
- eip7702Auth?: {
3013
+ eip7702auth?: {
3014
3014
  nonce: string | number | bigint;
3015
3015
  contractAddress: string;
3016
3016
  chainId: string | number | bigint;
@@ -3018,7 +3018,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3018
3018
  s: string;
3019
3019
  v: string | number | bigint;
3020
3020
  yParity: string | number | bigint;
3021
- } | undefined;
3021
+ } | null | undefined;
3022
3022
  } | {
3023
3023
  sender: string;
3024
3024
  nonce: string | number | bigint;
@@ -3035,7 +3035,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3035
3035
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
3036
3036
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
3037
3037
  paymasterData?: string | null | undefined;
3038
- eip7702Auth?: {
3038
+ eip7702auth?: {
3039
3039
  nonce: string | number | bigint;
3040
3040
  contractAddress: string;
3041
3041
  chainId: string | number | bigint;
@@ -3043,7 +3043,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3043
3043
  s: string;
3044
3044
  v: string | number | bigint;
3045
3045
  yParity: string | number | bigint;
3046
- } | undefined;
3046
+ } | null | undefined;
3047
3047
  }, string];
3048
3048
  method: "eth_sendUserOperation";
3049
3049
  }>, z.ZodObject<{
@@ -3147,6 +3147,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3147
3147
  }, {
3148
3148
  params: [string];
3149
3149
  method: "debug_bundler_dumpReputation";
3150
+ }>, z.ZodObject<{
3151
+ method: z.ZodLiteral<"debug_bundler_clearReputation">;
3152
+ params: z.ZodTuple<[], null>;
3153
+ }, "strip", z.ZodTypeAny, {
3154
+ params: [];
3155
+ method: "debug_bundler_clearReputation";
3156
+ }, {
3157
+ params: [];
3158
+ method: "debug_bundler_clearReputation";
3150
3159
  }>, z.ZodObject<{
3151
3160
  method: z.ZodLiteral<"debug_bundler_getStakeStatus">;
3152
3161
  params: z.ZodTuple<[z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodEffects<z.ZodString, `0x${string}`, string>], null>;
@@ -3188,7 +3197,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3188
3197
  maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
3189
3198
  paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
3190
3199
  signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
3191
- eip7702Auth: z.ZodOptional<z.ZodObject<{
3200
+ eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
3192
3201
  contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
3193
3202
  chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
3194
3203
  nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
@@ -3212,7 +3221,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3212
3221
  s: string;
3213
3222
  v: string | number | bigint;
3214
3223
  yParity: string | number | bigint;
3215
- }>>;
3224
+ }>>>;
3216
3225
  }, "strict", z.ZodTypeAny, {
3217
3226
  sender: `0x${string}`;
3218
3227
  nonce: bigint;
@@ -3225,7 +3234,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3225
3234
  maxFeePerGas: bigint;
3226
3235
  maxPriorityFeePerGas: bigint;
3227
3236
  signature: `0x${string}`;
3228
- eip7702Auth?: {
3237
+ eip7702auth?: {
3229
3238
  nonce: number;
3230
3239
  contractAddress: `0x${string}`;
3231
3240
  chainId: number;
@@ -3233,7 +3242,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3233
3242
  s: `0x${string}`;
3234
3243
  v: bigint;
3235
3244
  yParity: number;
3236
- } | undefined;
3245
+ } | null | undefined;
3237
3246
  }, {
3238
3247
  sender: string;
3239
3248
  nonce: string | number | bigint;
@@ -3246,7 +3255,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3246
3255
  maxFeePerGas: string | number | bigint;
3247
3256
  maxPriorityFeePerGas: string | number | bigint;
3248
3257
  signature: string;
3249
- eip7702Auth?: {
3258
+ eip7702auth?: {
3250
3259
  nonce: string | number | bigint;
3251
3260
  contractAddress: string;
3252
3261
  chainId: string | number | bigint;
@@ -3254,7 +3263,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3254
3263
  s: string;
3255
3264
  v: string | number | bigint;
3256
3265
  yParity: string | number | bigint;
3257
- } | undefined;
3266
+ } | null | undefined;
3258
3267
  }>, {
3259
3268
  sender: `0x${string}`;
3260
3269
  nonce: bigint;
@@ -3267,7 +3276,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3267
3276
  maxFeePerGas: bigint;
3268
3277
  maxPriorityFeePerGas: bigint;
3269
3278
  signature: `0x${string}`;
3270
- eip7702Auth?: {
3279
+ eip7702auth?: {
3271
3280
  nonce: number;
3272
3281
  contractAddress: `0x${string}`;
3273
3282
  chainId: number;
@@ -3275,7 +3284,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3275
3284
  s: `0x${string}`;
3276
3285
  v: bigint;
3277
3286
  yParity: number;
3278
- } | undefined;
3287
+ } | null | undefined;
3279
3288
  }, {
3280
3289
  sender: string;
3281
3290
  nonce: string | number | bigint;
@@ -3288,7 +3297,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3288
3297
  maxFeePerGas: string | number | bigint;
3289
3298
  maxPriorityFeePerGas: string | number | bigint;
3290
3299
  signature: string;
3291
- eip7702Auth?: {
3300
+ eip7702auth?: {
3292
3301
  nonce: string | number | bigint;
3293
3302
  contractAddress: string;
3294
3303
  chainId: string | number | bigint;
@@ -3296,7 +3305,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3296
3305
  s: string;
3297
3306
  v: string | number | bigint;
3298
3307
  yParity: string | number | bigint;
3299
- } | undefined;
3308
+ } | null | undefined;
3300
3309
  }>, z.ZodEffects<z.ZodObject<{
3301
3310
  sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
3302
3311
  nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
@@ -3313,7 +3322,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3313
3322
  paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
3314
3323
  paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
3315
3324
  signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
3316
- eip7702Auth: z.ZodOptional<z.ZodObject<{
3325
+ eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
3317
3326
  contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
3318
3327
  chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
3319
3328
  nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
@@ -3337,7 +3346,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3337
3346
  s: string;
3338
3347
  v: string | number | bigint;
3339
3348
  yParity: string | number | bigint;
3340
- }>>;
3349
+ }>>>;
3341
3350
  }, "strict", z.ZodTypeAny, {
3342
3351
  sender: `0x${string}`;
3343
3352
  factory: `0x${string}` | null;
@@ -3354,7 +3363,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3354
3363
  paymasterPostOpGasLimit: bigint | null;
3355
3364
  factoryData: `0x${string}` | null;
3356
3365
  paymasterData: `0x${string}` | null;
3357
- eip7702Auth?: {
3366
+ eip7702auth?: {
3358
3367
  nonce: number;
3359
3368
  contractAddress: `0x${string}`;
3360
3369
  chainId: number;
@@ -3362,7 +3371,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3362
3371
  s: `0x${string}`;
3363
3372
  v: bigint;
3364
3373
  yParity: number;
3365
- } | undefined;
3374
+ } | null | undefined;
3366
3375
  }, {
3367
3376
  sender: string;
3368
3377
  nonce: string | number | bigint;
@@ -3379,7 +3388,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3379
3388
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
3380
3389
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
3381
3390
  paymasterData?: string | null | undefined;
3382
- eip7702Auth?: {
3391
+ eip7702auth?: {
3383
3392
  nonce: string | number | bigint;
3384
3393
  contractAddress: string;
3385
3394
  chainId: string | number | bigint;
@@ -3387,7 +3396,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3387
3396
  s: string;
3388
3397
  v: string | number | bigint;
3389
3398
  yParity: string | number | bigint;
3390
- } | undefined;
3399
+ } | null | undefined;
3391
3400
  }>, {
3392
3401
  sender: `0x${string}`;
3393
3402
  factory: `0x${string}` | null;
@@ -3404,7 +3413,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3404
3413
  paymasterPostOpGasLimit: bigint | null;
3405
3414
  factoryData: `0x${string}` | null;
3406
3415
  paymasterData: `0x${string}` | null;
3407
- eip7702Auth?: {
3416
+ eip7702auth?: {
3408
3417
  nonce: number;
3409
3418
  contractAddress: `0x${string}`;
3410
3419
  chainId: number;
@@ -3412,7 +3421,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3412
3421
  s: `0x${string}`;
3413
3422
  v: bigint;
3414
3423
  yParity: number;
3415
- } | undefined;
3424
+ } | null | undefined;
3416
3425
  }, {
3417
3426
  sender: string;
3418
3427
  nonce: string | number | bigint;
@@ -3429,7 +3438,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3429
3438
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
3430
3439
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
3431
3440
  paymasterData?: string | null | undefined;
3432
- eip7702Auth?: {
3441
+ eip7702auth?: {
3433
3442
  nonce: string | number | bigint;
3434
3443
  contractAddress: string;
3435
3444
  chainId: string | number | bigint;
@@ -3437,7 +3446,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3437
3446
  s: string;
3438
3447
  v: string | number | bigint;
3439
3448
  yParity: string | number | bigint;
3440
- } | undefined;
3449
+ } | null | undefined;
3441
3450
  }>]>, z.ZodEffects<z.ZodString, `0x${string}`, string>], null>;
3442
3451
  }, "strip", z.ZodTypeAny, {
3443
3452
  params: [{
@@ -3452,7 +3461,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3452
3461
  maxFeePerGas: bigint;
3453
3462
  maxPriorityFeePerGas: bigint;
3454
3463
  signature: `0x${string}`;
3455
- eip7702Auth?: {
3464
+ eip7702auth?: {
3456
3465
  nonce: number;
3457
3466
  contractAddress: `0x${string}`;
3458
3467
  chainId: number;
@@ -3460,7 +3469,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3460
3469
  s: `0x${string}`;
3461
3470
  v: bigint;
3462
3471
  yParity: number;
3463
- } | undefined;
3472
+ } | null | undefined;
3464
3473
  } | {
3465
3474
  sender: `0x${string}`;
3466
3475
  factory: `0x${string}` | null;
@@ -3477,7 +3486,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3477
3486
  paymasterPostOpGasLimit: bigint | null;
3478
3487
  factoryData: `0x${string}` | null;
3479
3488
  paymasterData: `0x${string}` | null;
3480
- eip7702Auth?: {
3489
+ eip7702auth?: {
3481
3490
  nonce: number;
3482
3491
  contractAddress: `0x${string}`;
3483
3492
  chainId: number;
@@ -3485,7 +3494,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3485
3494
  s: `0x${string}`;
3486
3495
  v: bigint;
3487
3496
  yParity: number;
3488
- } | undefined;
3497
+ } | null | undefined;
3489
3498
  }, `0x${string}`];
3490
3499
  method: "pimlico_sendUserOperationNow";
3491
3500
  }, {
@@ -3501,7 +3510,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3501
3510
  maxFeePerGas: string | number | bigint;
3502
3511
  maxPriorityFeePerGas: string | number | bigint;
3503
3512
  signature: string;
3504
- eip7702Auth?: {
3513
+ eip7702auth?: {
3505
3514
  nonce: string | number | bigint;
3506
3515
  contractAddress: string;
3507
3516
  chainId: string | number | bigint;
@@ -3509,7 +3518,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3509
3518
  s: string;
3510
3519
  v: string | number | bigint;
3511
3520
  yParity: string | number | bigint;
3512
- } | undefined;
3521
+ } | null | undefined;
3513
3522
  } | {
3514
3523
  sender: string;
3515
3524
  nonce: string | number | bigint;
@@ -3526,7 +3535,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3526
3535
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
3527
3536
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
3528
3537
  paymasterData?: string | null | undefined;
3529
- eip7702Auth?: {
3538
+ eip7702auth?: {
3530
3539
  nonce: string | number | bigint;
3531
3540
  contractAddress: string;
3532
3541
  chainId: string | number | bigint;
@@ -3534,7 +3543,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3534
3543
  s: string;
3535
3544
  v: string | number | bigint;
3536
3545
  yParity: string | number | bigint;
3537
- } | undefined;
3546
+ } | null | undefined;
3538
3547
  }, string];
3539
3548
  method: "pimlico_sendUserOperationNow";
3540
3549
  }>, z.ZodObject<{
@@ -3551,7 +3560,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3551
3560
  maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
3552
3561
  paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
3553
3562
  signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
3554
- eip7702Auth: z.ZodOptional<z.ZodObject<{
3563
+ eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
3555
3564
  contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
3556
3565
  chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
3557
3566
  nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
@@ -3575,7 +3584,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3575
3584
  s: string;
3576
3585
  v: string | number | bigint;
3577
3586
  yParity: string | number | bigint;
3578
- }>>;
3587
+ }>>>;
3579
3588
  }, "strict", z.ZodTypeAny, {
3580
3589
  sender: `0x${string}`;
3581
3590
  nonce: bigint;
@@ -3588,7 +3597,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3588
3597
  maxFeePerGas: bigint;
3589
3598
  maxPriorityFeePerGas: bigint;
3590
3599
  signature: `0x${string}`;
3591
- eip7702Auth?: {
3600
+ eip7702auth?: {
3592
3601
  nonce: number;
3593
3602
  contractAddress: `0x${string}`;
3594
3603
  chainId: number;
@@ -3596,7 +3605,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3596
3605
  s: `0x${string}`;
3597
3606
  v: bigint;
3598
3607
  yParity: number;
3599
- } | undefined;
3608
+ } | null | undefined;
3600
3609
  }, {
3601
3610
  sender: string;
3602
3611
  nonce: string | number | bigint;
@@ -3609,7 +3618,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3609
3618
  maxFeePerGas: string | number | bigint;
3610
3619
  maxPriorityFeePerGas: string | number | bigint;
3611
3620
  signature: string;
3612
- eip7702Auth?: {
3621
+ eip7702auth?: {
3613
3622
  nonce: string | number | bigint;
3614
3623
  contractAddress: string;
3615
3624
  chainId: string | number | bigint;
@@ -3617,7 +3626,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3617
3626
  s: string;
3618
3627
  v: string | number | bigint;
3619
3628
  yParity: string | number | bigint;
3620
- } | undefined;
3629
+ } | null | undefined;
3621
3630
  }>, {
3622
3631
  sender: `0x${string}`;
3623
3632
  nonce: bigint;
@@ -3630,7 +3639,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3630
3639
  maxFeePerGas: bigint;
3631
3640
  maxPriorityFeePerGas: bigint;
3632
3641
  signature: `0x${string}`;
3633
- eip7702Auth?: {
3642
+ eip7702auth?: {
3634
3643
  nonce: number;
3635
3644
  contractAddress: `0x${string}`;
3636
3645
  chainId: number;
@@ -3638,7 +3647,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3638
3647
  s: `0x${string}`;
3639
3648
  v: bigint;
3640
3649
  yParity: number;
3641
- } | undefined;
3650
+ } | null | undefined;
3642
3651
  }, {
3643
3652
  sender: string;
3644
3653
  nonce: string | number | bigint;
@@ -3651,7 +3660,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3651
3660
  maxFeePerGas: string | number | bigint;
3652
3661
  maxPriorityFeePerGas: string | number | bigint;
3653
3662
  signature: string;
3654
- eip7702Auth?: {
3663
+ eip7702auth?: {
3655
3664
  nonce: string | number | bigint;
3656
3665
  contractAddress: string;
3657
3666
  chainId: string | number | bigint;
@@ -3659,7 +3668,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3659
3668
  s: string;
3660
3669
  v: string | number | bigint;
3661
3670
  yParity: string | number | bigint;
3662
- } | undefined;
3671
+ } | null | undefined;
3663
3672
  }>, z.ZodEffects<z.ZodObject<{
3664
3673
  sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
3665
3674
  nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
@@ -3676,7 +3685,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3676
3685
  paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
3677
3686
  paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
3678
3687
  signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
3679
- eip7702Auth: z.ZodOptional<z.ZodObject<{
3688
+ eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
3680
3689
  contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
3681
3690
  chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
3682
3691
  nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
@@ -3700,7 +3709,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3700
3709
  s: string;
3701
3710
  v: string | number | bigint;
3702
3711
  yParity: string | number | bigint;
3703
- }>>;
3712
+ }>>>;
3704
3713
  }, "strict", z.ZodTypeAny, {
3705
3714
  sender: `0x${string}`;
3706
3715
  factory: `0x${string}` | null;
@@ -3717,7 +3726,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3717
3726
  paymasterPostOpGasLimit: bigint | null;
3718
3727
  factoryData: `0x${string}` | null;
3719
3728
  paymasterData: `0x${string}` | null;
3720
- eip7702Auth?: {
3729
+ eip7702auth?: {
3721
3730
  nonce: number;
3722
3731
  contractAddress: `0x${string}`;
3723
3732
  chainId: number;
@@ -3725,7 +3734,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3725
3734
  s: `0x${string}`;
3726
3735
  v: bigint;
3727
3736
  yParity: number;
3728
- } | undefined;
3737
+ } | null | undefined;
3729
3738
  }, {
3730
3739
  sender: string;
3731
3740
  nonce: string | number | bigint;
@@ -3742,7 +3751,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3742
3751
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
3743
3752
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
3744
3753
  paymasterData?: string | null | undefined;
3745
- eip7702Auth?: {
3754
+ eip7702auth?: {
3746
3755
  nonce: string | number | bigint;
3747
3756
  contractAddress: string;
3748
3757
  chainId: string | number | bigint;
@@ -3750,7 +3759,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3750
3759
  s: string;
3751
3760
  v: string | number | bigint;
3752
3761
  yParity: string | number | bigint;
3753
- } | undefined;
3762
+ } | null | undefined;
3754
3763
  }>, {
3755
3764
  sender: `0x${string}`;
3756
3765
  factory: `0x${string}` | null;
@@ -3767,7 +3776,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3767
3776
  paymasterPostOpGasLimit: bigint | null;
3768
3777
  factoryData: `0x${string}` | null;
3769
3778
  paymasterData: `0x${string}` | null;
3770
- eip7702Auth?: {
3779
+ eip7702auth?: {
3771
3780
  nonce: number;
3772
3781
  contractAddress: `0x${string}`;
3773
3782
  chainId: number;
@@ -3775,7 +3784,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3775
3784
  s: `0x${string}`;
3776
3785
  v: bigint;
3777
3786
  yParity: number;
3778
- } | undefined;
3787
+ } | null | undefined;
3779
3788
  }, {
3780
3789
  sender: string;
3781
3790
  nonce: string | number | bigint;
@@ -3792,7 +3801,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3792
3801
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
3793
3802
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
3794
3803
  paymasterData?: string | null | undefined;
3795
- eip7702Auth?: {
3804
+ eip7702auth?: {
3796
3805
  nonce: string | number | bigint;
3797
3806
  contractAddress: string;
3798
3807
  chainId: string | number | bigint;
@@ -3800,7 +3809,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3800
3809
  s: string;
3801
3810
  v: string | number | bigint;
3802
3811
  yParity: string | number | bigint;
3803
- } | undefined;
3812
+ } | null | undefined;
3804
3813
  }>]>, z.ZodEffects<z.ZodString, `0x${string}`, string>], null>;
3805
3814
  }, "strip", z.ZodTypeAny, {
3806
3815
  params: [{
@@ -3815,7 +3824,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3815
3824
  maxFeePerGas: bigint;
3816
3825
  maxPriorityFeePerGas: bigint;
3817
3826
  signature: `0x${string}`;
3818
- eip7702Auth?: {
3827
+ eip7702auth?: {
3819
3828
  nonce: number;
3820
3829
  contractAddress: `0x${string}`;
3821
3830
  chainId: number;
@@ -3823,7 +3832,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3823
3832
  s: `0x${string}`;
3824
3833
  v: bigint;
3825
3834
  yParity: number;
3826
- } | undefined;
3835
+ } | null | undefined;
3827
3836
  } | {
3828
3837
  sender: `0x${string}`;
3829
3838
  factory: `0x${string}` | null;
@@ -3840,7 +3849,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3840
3849
  paymasterPostOpGasLimit: bigint | null;
3841
3850
  factoryData: `0x${string}` | null;
3842
3851
  paymasterData: `0x${string}` | null;
3843
- eip7702Auth?: {
3852
+ eip7702auth?: {
3844
3853
  nonce: number;
3845
3854
  contractAddress: `0x${string}`;
3846
3855
  chainId: number;
@@ -3848,7 +3857,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3848
3857
  s: `0x${string}`;
3849
3858
  v: bigint;
3850
3859
  yParity: number;
3851
- } | undefined;
3860
+ } | null | undefined;
3852
3861
  }, `0x${string}`];
3853
3862
  method: "pimlico_experimental_sendUserOperation7702";
3854
3863
  }, {
@@ -3864,7 +3873,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3864
3873
  maxFeePerGas: string | number | bigint;
3865
3874
  maxPriorityFeePerGas: string | number | bigint;
3866
3875
  signature: string;
3867
- eip7702Auth?: {
3876
+ eip7702auth?: {
3868
3877
  nonce: string | number | bigint;
3869
3878
  contractAddress: string;
3870
3879
  chainId: string | number | bigint;
@@ -3872,7 +3881,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3872
3881
  s: string;
3873
3882
  v: string | number | bigint;
3874
3883
  yParity: string | number | bigint;
3875
- } | undefined;
3884
+ } | null | undefined;
3876
3885
  } | {
3877
3886
  sender: string;
3878
3887
  nonce: string | number | bigint;
@@ -3889,7 +3898,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3889
3898
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
3890
3899
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
3891
3900
  paymasterData?: string | null | undefined;
3892
- eip7702Auth?: {
3901
+ eip7702auth?: {
3893
3902
  nonce: string | number | bigint;
3894
3903
  contractAddress: string;
3895
3904
  chainId: string | number | bigint;
@@ -3897,7 +3906,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3897
3906
  s: string;
3898
3907
  v: string | number | bigint;
3899
3908
  yParity: string | number | bigint;
3900
- } | undefined;
3909
+ } | null | undefined;
3901
3910
  }, string];
3902
3911
  method: "pimlico_experimental_sendUserOperation7702";
3903
3912
  }>, z.ZodObject<{
@@ -3914,7 +3923,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3914
3923
  maxFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
3915
3924
  paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
3916
3925
  signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
3917
- eip7702Auth: z.ZodOptional<z.ZodObject<{
3926
+ eip7702auth: z.ZodOptional<z.ZodObject<{
3918
3927
  contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
3919
3928
  chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
3920
3929
  nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
@@ -3951,7 +3960,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3951
3960
  maxFeePerGas: bigint;
3952
3961
  maxPriorityFeePerGas: bigint;
3953
3962
  signature: `0x${string}`;
3954
- eip7702Auth?: {
3963
+ eip7702auth?: {
3955
3964
  nonce: number;
3956
3965
  contractAddress: `0x${string}`;
3957
3966
  chainId: number;
@@ -3972,7 +3981,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3972
3981
  preVerificationGas?: string | number | bigint | undefined;
3973
3982
  maxPriorityFeePerGas?: string | number | bigint | undefined;
3974
3983
  maxFeePerGas?: string | number | bigint | undefined;
3975
- eip7702Auth?: {
3984
+ eip7702auth?: {
3976
3985
  nonce: string | number | bigint;
3977
3986
  contractAddress: string;
3978
3987
  chainId: string | number | bigint;
@@ -3993,7 +4002,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
3993
4002
  maxFeePerGas: bigint;
3994
4003
  maxPriorityFeePerGas: bigint;
3995
4004
  signature: `0x${string}`;
3996
- eip7702Auth?: {
4005
+ eip7702auth?: {
3997
4006
  nonce: number;
3998
4007
  contractAddress: `0x${string}`;
3999
4008
  chainId: number;
@@ -4014,7 +4023,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4014
4023
  preVerificationGas?: string | number | bigint | undefined;
4015
4024
  maxPriorityFeePerGas?: string | number | bigint | undefined;
4016
4025
  maxFeePerGas?: string | number | bigint | undefined;
4017
- eip7702Auth?: {
4026
+ eip7702auth?: {
4018
4027
  nonce: string | number | bigint;
4019
4028
  contractAddress: string;
4020
4029
  chainId: string | number | bigint;
@@ -4039,7 +4048,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4039
4048
  paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
4040
4049
  paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
4041
4050
  signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
4042
- eip7702Auth: z.ZodOptional<z.ZodObject<{
4051
+ eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
4043
4052
  contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
4044
4053
  chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
4045
4054
  nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
@@ -4063,7 +4072,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4063
4072
  s: string;
4064
4073
  v: string | number | bigint;
4065
4074
  yParity: string | number | bigint;
4066
- }>>;
4075
+ }>>>;
4067
4076
  }, "strict", z.ZodTypeAny, {
4068
4077
  sender: `0x${string}`;
4069
4078
  factory: `0x${string}` | null;
@@ -4080,7 +4089,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4080
4089
  paymasterPostOpGasLimit: bigint | null;
4081
4090
  factoryData: `0x${string}` | null;
4082
4091
  paymasterData: `0x${string}` | null;
4083
- eip7702Auth?: {
4092
+ eip7702auth?: {
4084
4093
  nonce: number;
4085
4094
  contractAddress: `0x${string}`;
4086
4095
  chainId: number;
@@ -4088,7 +4097,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4088
4097
  s: `0x${string}`;
4089
4098
  v: bigint;
4090
4099
  yParity: number;
4091
- } | undefined;
4100
+ } | null | undefined;
4092
4101
  }, {
4093
4102
  sender: string;
4094
4103
  nonce: string | number | bigint;
@@ -4105,7 +4114,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4105
4114
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
4106
4115
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
4107
4116
  paymasterData?: string | null | undefined;
4108
- eip7702Auth?: {
4117
+ eip7702auth?: {
4109
4118
  nonce: string | number | bigint;
4110
4119
  contractAddress: string;
4111
4120
  chainId: string | number | bigint;
@@ -4113,7 +4122,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4113
4122
  s: string;
4114
4123
  v: string | number | bigint;
4115
4124
  yParity: string | number | bigint;
4116
- } | undefined;
4125
+ } | null | undefined;
4117
4126
  }>, {
4118
4127
  sender: `0x${string}`;
4119
4128
  factory: `0x${string}` | null;
@@ -4130,7 +4139,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4130
4139
  paymasterPostOpGasLimit: bigint | null;
4131
4140
  factoryData: `0x${string}` | null;
4132
4141
  paymasterData: `0x${string}` | null;
4133
- eip7702Auth?: {
4142
+ eip7702auth?: {
4134
4143
  nonce: number;
4135
4144
  contractAddress: `0x${string}`;
4136
4145
  chainId: number;
@@ -4138,7 +4147,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4138
4147
  s: `0x${string}`;
4139
4148
  v: bigint;
4140
4149
  yParity: number;
4141
- } | undefined;
4150
+ } | null | undefined;
4142
4151
  }, {
4143
4152
  sender: string;
4144
4153
  nonce: string | number | bigint;
@@ -4155,7 +4164,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4155
4164
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
4156
4165
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
4157
4166
  paymasterData?: string | null | undefined;
4158
- eip7702Auth?: {
4167
+ eip7702auth?: {
4159
4168
  nonce: string | number | bigint;
4160
4169
  contractAddress: string;
4161
4170
  chainId: string | number | bigint;
@@ -4163,7 +4172,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4163
4172
  s: string;
4164
4173
  v: string | number | bigint;
4165
4174
  yParity: string | number | bigint;
4166
- } | undefined;
4175
+ } | null | undefined;
4167
4176
  }>]>, z.ZodEffects<z.ZodString, `0x${string}`, string>], null>, z.ZodTuple<[z.ZodUnion<[z.ZodEffects<z.ZodObject<{
4168
4177
  sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
4169
4178
  nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
@@ -4176,7 +4185,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4176
4185
  maxFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
4177
4186
  paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
4178
4187
  signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
4179
- eip7702Auth: z.ZodOptional<z.ZodObject<{
4188
+ eip7702auth: z.ZodOptional<z.ZodObject<{
4180
4189
  contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
4181
4190
  chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
4182
4191
  nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
@@ -4213,7 +4222,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4213
4222
  maxFeePerGas: bigint;
4214
4223
  maxPriorityFeePerGas: bigint;
4215
4224
  signature: `0x${string}`;
4216
- eip7702Auth?: {
4225
+ eip7702auth?: {
4217
4226
  nonce: number;
4218
4227
  contractAddress: `0x${string}`;
4219
4228
  chainId: number;
@@ -4234,7 +4243,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4234
4243
  preVerificationGas?: string | number | bigint | undefined;
4235
4244
  maxPriorityFeePerGas?: string | number | bigint | undefined;
4236
4245
  maxFeePerGas?: string | number | bigint | undefined;
4237
- eip7702Auth?: {
4246
+ eip7702auth?: {
4238
4247
  nonce: string | number | bigint;
4239
4248
  contractAddress: string;
4240
4249
  chainId: string | number | bigint;
@@ -4255,7 +4264,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4255
4264
  maxFeePerGas: bigint;
4256
4265
  maxPriorityFeePerGas: bigint;
4257
4266
  signature: `0x${string}`;
4258
- eip7702Auth?: {
4267
+ eip7702auth?: {
4259
4268
  nonce: number;
4260
4269
  contractAddress: `0x${string}`;
4261
4270
  chainId: number;
@@ -4276,7 +4285,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4276
4285
  preVerificationGas?: string | number | bigint | undefined;
4277
4286
  maxPriorityFeePerGas?: string | number | bigint | undefined;
4278
4287
  maxFeePerGas?: string | number | bigint | undefined;
4279
- eip7702Auth?: {
4288
+ eip7702auth?: {
4280
4289
  nonce: string | number | bigint;
4281
4290
  contractAddress: string;
4282
4291
  chainId: string | number | bigint;
@@ -4301,7 +4310,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4301
4310
  paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
4302
4311
  paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
4303
4312
  signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
4304
- eip7702Auth: z.ZodOptional<z.ZodObject<{
4313
+ eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
4305
4314
  contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
4306
4315
  chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
4307
4316
  nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
@@ -4325,7 +4334,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4325
4334
  s: string;
4326
4335
  v: string | number | bigint;
4327
4336
  yParity: string | number | bigint;
4328
- }>>;
4337
+ }>>>;
4329
4338
  }, "strict", z.ZodTypeAny, {
4330
4339
  sender: `0x${string}`;
4331
4340
  factory: `0x${string}` | null;
@@ -4342,7 +4351,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4342
4351
  paymasterPostOpGasLimit: bigint | null;
4343
4352
  factoryData: `0x${string}` | null;
4344
4353
  paymasterData: `0x${string}` | null;
4345
- eip7702Auth?: {
4354
+ eip7702auth?: {
4346
4355
  nonce: number;
4347
4356
  contractAddress: `0x${string}`;
4348
4357
  chainId: number;
@@ -4350,7 +4359,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4350
4359
  s: `0x${string}`;
4351
4360
  v: bigint;
4352
4361
  yParity: number;
4353
- } | undefined;
4362
+ } | null | undefined;
4354
4363
  }, {
4355
4364
  sender: string;
4356
4365
  nonce: string | number | bigint;
@@ -4367,7 +4376,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4367
4376
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
4368
4377
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
4369
4378
  paymasterData?: string | null | undefined;
4370
- eip7702Auth?: {
4379
+ eip7702auth?: {
4371
4380
  nonce: string | number | bigint;
4372
4381
  contractAddress: string;
4373
4382
  chainId: string | number | bigint;
@@ -4375,7 +4384,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4375
4384
  s: string;
4376
4385
  v: string | number | bigint;
4377
4386
  yParity: string | number | bigint;
4378
- } | undefined;
4387
+ } | null | undefined;
4379
4388
  }>, {
4380
4389
  sender: `0x${string}`;
4381
4390
  factory: `0x${string}` | null;
@@ -4392,7 +4401,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4392
4401
  paymasterPostOpGasLimit: bigint | null;
4393
4402
  factoryData: `0x${string}` | null;
4394
4403
  paymasterData: `0x${string}` | null;
4395
- eip7702Auth?: {
4404
+ eip7702auth?: {
4396
4405
  nonce: number;
4397
4406
  contractAddress: `0x${string}`;
4398
4407
  chainId: number;
@@ -4400,7 +4409,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4400
4409
  s: `0x${string}`;
4401
4410
  v: bigint;
4402
4411
  yParity: number;
4403
- } | undefined;
4412
+ } | null | undefined;
4404
4413
  }, {
4405
4414
  sender: string;
4406
4415
  nonce: string | number | bigint;
@@ -4417,7 +4426,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4417
4426
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
4418
4427
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
4419
4428
  paymasterData?: string | null | undefined;
4420
- eip7702Auth?: {
4429
+ eip7702auth?: {
4421
4430
  nonce: string | number | bigint;
4422
4431
  contractAddress: string;
4423
4432
  chainId: string | number | bigint;
@@ -4425,7 +4434,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4425
4434
  s: string;
4426
4435
  v: string | number | bigint;
4427
4436
  yParity: string | number | bigint;
4428
- } | undefined;
4437
+ } | null | undefined;
4429
4438
  }>]>, z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodRecord<z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodObject<{
4430
4439
  balance: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
4431
4440
  nonce: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
@@ -4458,7 +4467,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4458
4467
  maxFeePerGas: bigint;
4459
4468
  maxPriorityFeePerGas: bigint;
4460
4469
  signature: `0x${string}`;
4461
- eip7702Auth?: {
4470
+ eip7702auth?: {
4462
4471
  nonce: number;
4463
4472
  contractAddress: `0x${string}`;
4464
4473
  chainId: number;
@@ -4483,7 +4492,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4483
4492
  paymasterPostOpGasLimit: bigint | null;
4484
4493
  factoryData: `0x${string}` | null;
4485
4494
  paymasterData: `0x${string}` | null;
4486
- eip7702Auth?: {
4495
+ eip7702auth?: {
4487
4496
  nonce: number;
4488
4497
  contractAddress: `0x${string}`;
4489
4498
  chainId: number;
@@ -4491,7 +4500,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4491
4500
  s: `0x${string}`;
4492
4501
  v: bigint;
4493
4502
  yParity: number;
4494
- } | undefined;
4503
+ } | null | undefined;
4495
4504
  }, `0x${string}`] | [{
4496
4505
  sender: `0x${string}`;
4497
4506
  nonce: bigint;
@@ -4504,7 +4513,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4504
4513
  maxFeePerGas: bigint;
4505
4514
  maxPriorityFeePerGas: bigint;
4506
4515
  signature: `0x${string}`;
4507
- eip7702Auth?: {
4516
+ eip7702auth?: {
4508
4517
  nonce: number;
4509
4518
  contractAddress: `0x${string}`;
4510
4519
  chainId: number;
@@ -4529,7 +4538,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4529
4538
  paymasterPostOpGasLimit: bigint | null;
4530
4539
  factoryData: `0x${string}` | null;
4531
4540
  paymasterData: `0x${string}` | null;
4532
- eip7702Auth?: {
4541
+ eip7702auth?: {
4533
4542
  nonce: number;
4534
4543
  contractAddress: `0x${string}`;
4535
4544
  chainId: number;
@@ -4537,7 +4546,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4537
4546
  s: `0x${string}`;
4538
4547
  v: bigint;
4539
4548
  yParity: number;
4540
- } | undefined;
4549
+ } | null | undefined;
4541
4550
  }, `0x${string}`, Partial<Record<`0x${string}`, {
4542
4551
  balance?: bigint | undefined;
4543
4552
  nonce?: bigint | undefined;
@@ -4559,7 +4568,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4559
4568
  preVerificationGas?: string | number | bigint | undefined;
4560
4569
  maxPriorityFeePerGas?: string | number | bigint | undefined;
4561
4570
  maxFeePerGas?: string | number | bigint | undefined;
4562
- eip7702Auth?: {
4571
+ eip7702auth?: {
4563
4572
  nonce: string | number | bigint;
4564
4573
  contractAddress: string;
4565
4574
  chainId: string | number | bigint;
@@ -4584,7 +4593,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4584
4593
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
4585
4594
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
4586
4595
  paymasterData?: string | null | undefined;
4587
- eip7702Auth?: {
4596
+ eip7702auth?: {
4588
4597
  nonce: string | number | bigint;
4589
4598
  contractAddress: string;
4590
4599
  chainId: string | number | bigint;
@@ -4592,7 +4601,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4592
4601
  s: string;
4593
4602
  v: string | number | bigint;
4594
4603
  yParity: string | number | bigint;
4595
- } | undefined;
4604
+ } | null | undefined;
4596
4605
  }, string] | [{
4597
4606
  sender: string;
4598
4607
  nonce: string | number | bigint;
@@ -4605,7 +4614,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4605
4614
  preVerificationGas?: string | number | bigint | undefined;
4606
4615
  maxPriorityFeePerGas?: string | number | bigint | undefined;
4607
4616
  maxFeePerGas?: string | number | bigint | undefined;
4608
- eip7702Auth?: {
4617
+ eip7702auth?: {
4609
4618
  nonce: string | number | bigint;
4610
4619
  contractAddress: string;
4611
4620
  chainId: string | number | bigint;
@@ -4630,7 +4639,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4630
4639
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
4631
4640
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
4632
4641
  paymasterData?: string | null | undefined;
4633
- eip7702Auth?: {
4642
+ eip7702auth?: {
4634
4643
  nonce: string | number | bigint;
4635
4644
  contractAddress: string;
4636
4645
  chainId: string | number | bigint;
@@ -4638,7 +4647,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
4638
4647
  s: string;
4639
4648
  v: string | number | bigint;
4640
4649
  yParity: string | number | bigint;
4641
- } | undefined;
4650
+ } | null | undefined;
4642
4651
  }, string, Record<string, {
4643
4652
  balance?: string | number | bigint | undefined;
4644
4653
  nonce?: string | number | bigint | undefined;
@@ -4780,7 +4789,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
4780
4789
  maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
4781
4790
  paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
4782
4791
  signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
4783
- eip7702Auth: z.ZodOptional<z.ZodObject<{
4792
+ eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
4784
4793
  contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
4785
4794
  chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
4786
4795
  nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
@@ -4804,7 +4813,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
4804
4813
  s: string;
4805
4814
  v: string | number | bigint;
4806
4815
  yParity: string | number | bigint;
4807
- }>>;
4816
+ }>>>;
4808
4817
  }, "strict", z.ZodTypeAny, {
4809
4818
  sender: `0x${string}`;
4810
4819
  nonce: bigint;
@@ -4817,7 +4826,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
4817
4826
  maxFeePerGas: bigint;
4818
4827
  maxPriorityFeePerGas: bigint;
4819
4828
  signature: `0x${string}`;
4820
- eip7702Auth?: {
4829
+ eip7702auth?: {
4821
4830
  nonce: number;
4822
4831
  contractAddress: `0x${string}`;
4823
4832
  chainId: number;
@@ -4825,7 +4834,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
4825
4834
  s: `0x${string}`;
4826
4835
  v: bigint;
4827
4836
  yParity: number;
4828
- } | undefined;
4837
+ } | null | undefined;
4829
4838
  }, {
4830
4839
  sender: string;
4831
4840
  nonce: string | number | bigint;
@@ -4838,7 +4847,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
4838
4847
  maxFeePerGas: string | number | bigint;
4839
4848
  maxPriorityFeePerGas: string | number | bigint;
4840
4849
  signature: string;
4841
- eip7702Auth?: {
4850
+ eip7702auth?: {
4842
4851
  nonce: string | number | bigint;
4843
4852
  contractAddress: string;
4844
4853
  chainId: string | number | bigint;
@@ -4846,7 +4855,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
4846
4855
  s: string;
4847
4856
  v: string | number | bigint;
4848
4857
  yParity: string | number | bigint;
4849
- } | undefined;
4858
+ } | null | undefined;
4850
4859
  }>, {
4851
4860
  sender: `0x${string}`;
4852
4861
  nonce: bigint;
@@ -4859,7 +4868,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
4859
4868
  maxFeePerGas: bigint;
4860
4869
  maxPriorityFeePerGas: bigint;
4861
4870
  signature: `0x${string}`;
4862
- eip7702Auth?: {
4871
+ eip7702auth?: {
4863
4872
  nonce: number;
4864
4873
  contractAddress: `0x${string}`;
4865
4874
  chainId: number;
@@ -4867,7 +4876,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
4867
4876
  s: `0x${string}`;
4868
4877
  v: bigint;
4869
4878
  yParity: number;
4870
- } | undefined;
4879
+ } | null | undefined;
4871
4880
  }, {
4872
4881
  sender: string;
4873
4882
  nonce: string | number | bigint;
@@ -4880,7 +4889,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
4880
4889
  maxFeePerGas: string | number | bigint;
4881
4890
  maxPriorityFeePerGas: string | number | bigint;
4882
4891
  signature: string;
4883
- eip7702Auth?: {
4892
+ eip7702auth?: {
4884
4893
  nonce: string | number | bigint;
4885
4894
  contractAddress: string;
4886
4895
  chainId: string | number | bigint;
@@ -4888,7 +4897,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
4888
4897
  s: string;
4889
4898
  v: string | number | bigint;
4890
4899
  yParity: string | number | bigint;
4891
- } | undefined;
4900
+ } | null | undefined;
4892
4901
  }>, z.ZodEffects<z.ZodObject<{
4893
4902
  sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
4894
4903
  nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
@@ -4905,7 +4914,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
4905
4914
  paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
4906
4915
  paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
4907
4916
  signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
4908
- eip7702Auth: z.ZodOptional<z.ZodObject<{
4917
+ eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
4909
4918
  contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
4910
4919
  chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
4911
4920
  nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
@@ -4929,7 +4938,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
4929
4938
  s: string;
4930
4939
  v: string | number | bigint;
4931
4940
  yParity: string | number | bigint;
4932
- }>>;
4941
+ }>>>;
4933
4942
  }, "strict", z.ZodTypeAny, {
4934
4943
  sender: `0x${string}`;
4935
4944
  factory: `0x${string}` | null;
@@ -4946,7 +4955,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
4946
4955
  paymasterPostOpGasLimit: bigint | null;
4947
4956
  factoryData: `0x${string}` | null;
4948
4957
  paymasterData: `0x${string}` | null;
4949
- eip7702Auth?: {
4958
+ eip7702auth?: {
4950
4959
  nonce: number;
4951
4960
  contractAddress: `0x${string}`;
4952
4961
  chainId: number;
@@ -4954,7 +4963,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
4954
4963
  s: `0x${string}`;
4955
4964
  v: bigint;
4956
4965
  yParity: number;
4957
- } | undefined;
4966
+ } | null | undefined;
4958
4967
  }, {
4959
4968
  sender: string;
4960
4969
  nonce: string | number | bigint;
@@ -4971,7 +4980,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
4971
4980
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
4972
4981
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
4973
4982
  paymasterData?: string | null | undefined;
4974
- eip7702Auth?: {
4983
+ eip7702auth?: {
4975
4984
  nonce: string | number | bigint;
4976
4985
  contractAddress: string;
4977
4986
  chainId: string | number | bigint;
@@ -4979,7 +4988,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
4979
4988
  s: string;
4980
4989
  v: string | number | bigint;
4981
4990
  yParity: string | number | bigint;
4982
- } | undefined;
4991
+ } | null | undefined;
4983
4992
  }>, {
4984
4993
  sender: `0x${string}`;
4985
4994
  factory: `0x${string}` | null;
@@ -4996,7 +5005,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
4996
5005
  paymasterPostOpGasLimit: bigint | null;
4997
5006
  factoryData: `0x${string}` | null;
4998
5007
  paymasterData: `0x${string}` | null;
4999
- eip7702Auth?: {
5008
+ eip7702auth?: {
5000
5009
  nonce: number;
5001
5010
  contractAddress: `0x${string}`;
5002
5011
  chainId: number;
@@ -5004,7 +5013,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
5004
5013
  s: `0x${string}`;
5005
5014
  v: bigint;
5006
5015
  yParity: number;
5007
- } | undefined;
5016
+ } | null | undefined;
5008
5017
  }, {
5009
5018
  sender: string;
5010
5019
  nonce: string | number | bigint;
@@ -5021,7 +5030,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
5021
5030
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
5022
5031
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
5023
5032
  paymasterData?: string | null | undefined;
5024
- eip7702Auth?: {
5033
+ eip7702auth?: {
5025
5034
  nonce: string | number | bigint;
5026
5035
  contractAddress: string;
5027
5036
  chainId: string | number | bigint;
@@ -5029,7 +5038,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
5029
5038
  s: string;
5030
5039
  v: string | number | bigint;
5031
5040
  yParity: string | number | bigint;
5032
- } | undefined;
5041
+ } | null | undefined;
5033
5042
  }>]>;
5034
5043
  entryPoint: z.ZodEffects<z.ZodString, `0x${string}`, string>;
5035
5044
  blockNumber: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
@@ -5049,7 +5058,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
5049
5058
  maxFeePerGas: bigint;
5050
5059
  maxPriorityFeePerGas: bigint;
5051
5060
  signature: `0x${string}`;
5052
- eip7702Auth?: {
5061
+ eip7702auth?: {
5053
5062
  nonce: number;
5054
5063
  contractAddress: `0x${string}`;
5055
5064
  chainId: number;
@@ -5057,7 +5066,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
5057
5066
  s: `0x${string}`;
5058
5067
  v: bigint;
5059
5068
  yParity: number;
5060
- } | undefined;
5069
+ } | null | undefined;
5061
5070
  } | {
5062
5071
  sender: `0x${string}`;
5063
5072
  factory: `0x${string}` | null;
@@ -5074,7 +5083,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
5074
5083
  paymasterPostOpGasLimit: bigint | null;
5075
5084
  factoryData: `0x${string}` | null;
5076
5085
  paymasterData: `0x${string}` | null;
5077
- eip7702Auth?: {
5086
+ eip7702auth?: {
5078
5087
  nonce: number;
5079
5088
  contractAddress: `0x${string}`;
5080
5089
  chainId: number;
@@ -5082,7 +5091,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
5082
5091
  s: `0x${string}`;
5083
5092
  v: bigint;
5084
5093
  yParity: number;
5085
- } | undefined;
5094
+ } | null | undefined;
5086
5095
  }) & ({
5087
5096
  sender: `0x${string}`;
5088
5097
  nonce: bigint;
@@ -5095,7 +5104,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
5095
5104
  maxFeePerGas: bigint;
5096
5105
  maxPriorityFeePerGas: bigint;
5097
5106
  signature: `0x${string}`;
5098
- eip7702Auth?: {
5107
+ eip7702auth?: {
5099
5108
  nonce: number;
5100
5109
  contractAddress: `0x${string}`;
5101
5110
  chainId: number;
@@ -5103,7 +5112,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
5103
5112
  s: `0x${string}`;
5104
5113
  v: bigint;
5105
5114
  yParity: number;
5106
- } | undefined;
5115
+ } | null | undefined;
5107
5116
  } | {
5108
5117
  sender: `0x${string}`;
5109
5118
  factory: `0x${string}` | null;
@@ -5120,7 +5129,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
5120
5129
  paymasterPostOpGasLimit: bigint | null;
5121
5130
  factoryData: `0x${string}` | null;
5122
5131
  paymasterData: `0x${string}` | null;
5123
- eip7702Auth?: {
5132
+ eip7702auth?: {
5124
5133
  nonce: number;
5125
5134
  contractAddress: `0x${string}`;
5126
5135
  chainId: number;
@@ -5128,7 +5137,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
5128
5137
  s: `0x${string}`;
5129
5138
  v: bigint;
5130
5139
  yParity: number;
5131
- } | undefined;
5140
+ } | null | undefined;
5132
5141
  } | undefined);
5133
5142
  blockNumber: bigint;
5134
5143
  blockHash: `0x${string}`;
@@ -5147,7 +5156,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
5147
5156
  maxFeePerGas: string | number | bigint;
5148
5157
  maxPriorityFeePerGas: string | number | bigint;
5149
5158
  signature: string;
5150
- eip7702Auth?: {
5159
+ eip7702auth?: {
5151
5160
  nonce: string | number | bigint;
5152
5161
  contractAddress: string;
5153
5162
  chainId: string | number | bigint;
@@ -5155,7 +5164,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
5155
5164
  s: string;
5156
5165
  v: string | number | bigint;
5157
5166
  yParity: string | number | bigint;
5158
- } | undefined;
5167
+ } | null | undefined;
5159
5168
  } | {
5160
5169
  sender: string;
5161
5170
  nonce: string | number | bigint;
@@ -5172,7 +5181,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
5172
5181
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
5173
5182
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
5174
5183
  paymasterData?: string | null | undefined;
5175
- eip7702Auth?: {
5184
+ eip7702auth?: {
5176
5185
  nonce: string | number | bigint;
5177
5186
  contractAddress: string;
5178
5187
  chainId: string | number | bigint;
@@ -5180,7 +5189,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
5180
5189
  s: string;
5181
5190
  v: string | number | bigint;
5182
5191
  yParity: string | number | bigint;
5183
- } | undefined;
5192
+ } | null | undefined;
5184
5193
  }) & ({
5185
5194
  sender: string;
5186
5195
  nonce: string | number | bigint;
@@ -5193,7 +5202,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
5193
5202
  maxFeePerGas: string | number | bigint;
5194
5203
  maxPriorityFeePerGas: string | number | bigint;
5195
5204
  signature: string;
5196
- eip7702Auth?: {
5205
+ eip7702auth?: {
5197
5206
  nonce: string | number | bigint;
5198
5207
  contractAddress: string;
5199
5208
  chainId: string | number | bigint;
@@ -5201,7 +5210,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
5201
5210
  s: string;
5202
5211
  v: string | number | bigint;
5203
5212
  yParity: string | number | bigint;
5204
- } | undefined;
5213
+ } | null | undefined;
5205
5214
  } | {
5206
5215
  sender: string;
5207
5216
  nonce: string | number | bigint;
@@ -5218,7 +5227,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
5218
5227
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
5219
5228
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
5220
5229
  paymasterData?: string | null | undefined;
5221
- eip7702Auth?: {
5230
+ eip7702auth?: {
5222
5231
  nonce: string | number | bigint;
5223
5232
  contractAddress: string;
5224
5233
  chainId: string | number | bigint;
@@ -5226,7 +5235,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
5226
5235
  s: string;
5227
5236
  v: string | number | bigint;
5228
5237
  yParity: string | number | bigint;
5229
- } | undefined;
5238
+ } | null | undefined;
5230
5239
  } | undefined);
5231
5240
  blockNumber: string | number | bigint;
5232
5241
  blockHash: string;
@@ -5247,7 +5256,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
5247
5256
  maxFeePerGas: bigint;
5248
5257
  maxPriorityFeePerGas: bigint;
5249
5258
  signature: `0x${string}`;
5250
- eip7702Auth?: {
5259
+ eip7702auth?: {
5251
5260
  nonce: number;
5252
5261
  contractAddress: `0x${string}`;
5253
5262
  chainId: number;
@@ -5255,7 +5264,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
5255
5264
  s: `0x${string}`;
5256
5265
  v: bigint;
5257
5266
  yParity: number;
5258
- } | undefined;
5267
+ } | null | undefined;
5259
5268
  } | {
5260
5269
  sender: `0x${string}`;
5261
5270
  factory: `0x${string}` | null;
@@ -5272,7 +5281,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
5272
5281
  paymasterPostOpGasLimit: bigint | null;
5273
5282
  factoryData: `0x${string}` | null;
5274
5283
  paymasterData: `0x${string}` | null;
5275
- eip7702Auth?: {
5284
+ eip7702auth?: {
5276
5285
  nonce: number;
5277
5286
  contractAddress: `0x${string}`;
5278
5287
  chainId: number;
@@ -5280,7 +5289,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
5280
5289
  s: `0x${string}`;
5281
5290
  v: bigint;
5282
5291
  yParity: number;
5283
- } | undefined;
5292
+ } | null | undefined;
5284
5293
  }) & ({
5285
5294
  sender: `0x${string}`;
5286
5295
  nonce: bigint;
@@ -5293,7 +5302,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
5293
5302
  maxFeePerGas: bigint;
5294
5303
  maxPriorityFeePerGas: bigint;
5295
5304
  signature: `0x${string}`;
5296
- eip7702Auth?: {
5305
+ eip7702auth?: {
5297
5306
  nonce: number;
5298
5307
  contractAddress: `0x${string}`;
5299
5308
  chainId: number;
@@ -5301,7 +5310,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
5301
5310
  s: `0x${string}`;
5302
5311
  v: bigint;
5303
5312
  yParity: number;
5304
- } | undefined;
5313
+ } | null | undefined;
5305
5314
  } | {
5306
5315
  sender: `0x${string}`;
5307
5316
  factory: `0x${string}` | null;
@@ -5318,7 +5327,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
5318
5327
  paymasterPostOpGasLimit: bigint | null;
5319
5328
  factoryData: `0x${string}` | null;
5320
5329
  paymasterData: `0x${string}` | null;
5321
- eip7702Auth?: {
5330
+ eip7702auth?: {
5322
5331
  nonce: number;
5323
5332
  contractAddress: `0x${string}`;
5324
5333
  chainId: number;
@@ -5326,7 +5335,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
5326
5335
  s: `0x${string}`;
5327
5336
  v: bigint;
5328
5337
  yParity: number;
5329
- } | undefined;
5338
+ } | null | undefined;
5330
5339
  } | undefined);
5331
5340
  blockNumber: bigint;
5332
5341
  blockHash: `0x${string}`;
@@ -5348,7 +5357,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
5348
5357
  maxFeePerGas: string | number | bigint;
5349
5358
  maxPriorityFeePerGas: string | number | bigint;
5350
5359
  signature: string;
5351
- eip7702Auth?: {
5360
+ eip7702auth?: {
5352
5361
  nonce: string | number | bigint;
5353
5362
  contractAddress: string;
5354
5363
  chainId: string | number | bigint;
@@ -5356,7 +5365,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
5356
5365
  s: string;
5357
5366
  v: string | number | bigint;
5358
5367
  yParity: string | number | bigint;
5359
- } | undefined;
5368
+ } | null | undefined;
5360
5369
  } | {
5361
5370
  sender: string;
5362
5371
  nonce: string | number | bigint;
@@ -5373,7 +5382,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
5373
5382
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
5374
5383
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
5375
5384
  paymasterData?: string | null | undefined;
5376
- eip7702Auth?: {
5385
+ eip7702auth?: {
5377
5386
  nonce: string | number | bigint;
5378
5387
  contractAddress: string;
5379
5388
  chainId: string | number | bigint;
@@ -5381,7 +5390,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
5381
5390
  s: string;
5382
5391
  v: string | number | bigint;
5383
5392
  yParity: string | number | bigint;
5384
- } | undefined;
5393
+ } | null | undefined;
5385
5394
  }) & ({
5386
5395
  sender: string;
5387
5396
  nonce: string | number | bigint;
@@ -5394,7 +5403,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
5394
5403
  maxFeePerGas: string | number | bigint;
5395
5404
  maxPriorityFeePerGas: string | number | bigint;
5396
5405
  signature: string;
5397
- eip7702Auth?: {
5406
+ eip7702auth?: {
5398
5407
  nonce: string | number | bigint;
5399
5408
  contractAddress: string;
5400
5409
  chainId: string | number | bigint;
@@ -5402,7 +5411,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
5402
5411
  s: string;
5403
5412
  v: string | number | bigint;
5404
5413
  yParity: string | number | bigint;
5405
- } | undefined;
5414
+ } | null | undefined;
5406
5415
  } | {
5407
5416
  sender: string;
5408
5417
  nonce: string | number | bigint;
@@ -5419,7 +5428,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
5419
5428
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
5420
5429
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
5421
5430
  paymasterData?: string | null | undefined;
5422
- eip7702Auth?: {
5431
+ eip7702auth?: {
5423
5432
  nonce: string | number | bigint;
5424
5433
  contractAddress: string;
5425
5434
  chainId: string | number | bigint;
@@ -5427,7 +5436,7 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
5427
5436
  s: string;
5428
5437
  v: string | number | bigint;
5429
5438
  yParity: string | number | bigint;
5430
- } | undefined;
5439
+ } | null | undefined;
5431
5440
  } | undefined);
5432
5441
  blockNumber: string | number | bigint;
5433
5442
  blockHash: string;
@@ -5897,7 +5906,7 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
5897
5906
  maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
5898
5907
  paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
5899
5908
  signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
5900
- eip7702Auth: z.ZodOptional<z.ZodObject<{
5909
+ eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
5901
5910
  contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
5902
5911
  chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
5903
5912
  nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
@@ -5921,7 +5930,7 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
5921
5930
  s: string;
5922
5931
  v: string | number | bigint;
5923
5932
  yParity: string | number | bigint;
5924
- }>>;
5933
+ }>>>;
5925
5934
  }, "strict", z.ZodTypeAny, {
5926
5935
  sender: `0x${string}`;
5927
5936
  nonce: bigint;
@@ -5934,7 +5943,7 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
5934
5943
  maxFeePerGas: bigint;
5935
5944
  maxPriorityFeePerGas: bigint;
5936
5945
  signature: `0x${string}`;
5937
- eip7702Auth?: {
5946
+ eip7702auth?: {
5938
5947
  nonce: number;
5939
5948
  contractAddress: `0x${string}`;
5940
5949
  chainId: number;
@@ -5942,7 +5951,7 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
5942
5951
  s: `0x${string}`;
5943
5952
  v: bigint;
5944
5953
  yParity: number;
5945
- } | undefined;
5954
+ } | null | undefined;
5946
5955
  }, {
5947
5956
  sender: string;
5948
5957
  nonce: string | number | bigint;
@@ -5955,7 +5964,7 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
5955
5964
  maxFeePerGas: string | number | bigint;
5956
5965
  maxPriorityFeePerGas: string | number | bigint;
5957
5966
  signature: string;
5958
- eip7702Auth?: {
5967
+ eip7702auth?: {
5959
5968
  nonce: string | number | bigint;
5960
5969
  contractAddress: string;
5961
5970
  chainId: string | number | bigint;
@@ -5963,7 +5972,7 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
5963
5972
  s: string;
5964
5973
  v: string | number | bigint;
5965
5974
  yParity: string | number | bigint;
5966
- } | undefined;
5975
+ } | null | undefined;
5967
5976
  }>, {
5968
5977
  sender: `0x${string}`;
5969
5978
  nonce: bigint;
@@ -5976,7 +5985,7 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
5976
5985
  maxFeePerGas: bigint;
5977
5986
  maxPriorityFeePerGas: bigint;
5978
5987
  signature: `0x${string}`;
5979
- eip7702Auth?: {
5988
+ eip7702auth?: {
5980
5989
  nonce: number;
5981
5990
  contractAddress: `0x${string}`;
5982
5991
  chainId: number;
@@ -5984,7 +5993,7 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
5984
5993
  s: `0x${string}`;
5985
5994
  v: bigint;
5986
5995
  yParity: number;
5987
- } | undefined;
5996
+ } | null | undefined;
5988
5997
  }, {
5989
5998
  sender: string;
5990
5999
  nonce: string | number | bigint;
@@ -5997,7 +6006,7 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
5997
6006
  maxFeePerGas: string | number | bigint;
5998
6007
  maxPriorityFeePerGas: string | number | bigint;
5999
6008
  signature: string;
6000
- eip7702Auth?: {
6009
+ eip7702auth?: {
6001
6010
  nonce: string | number | bigint;
6002
6011
  contractAddress: string;
6003
6012
  chainId: string | number | bigint;
@@ -6005,7 +6014,7 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
6005
6014
  s: string;
6006
6015
  v: string | number | bigint;
6007
6016
  yParity: string | number | bigint;
6008
- } | undefined;
6017
+ } | null | undefined;
6009
6018
  }>, z.ZodEffects<z.ZodObject<{
6010
6019
  sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
6011
6020
  nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
@@ -6022,7 +6031,7 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
6022
6031
  paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
6023
6032
  paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
6024
6033
  signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
6025
- eip7702Auth: z.ZodOptional<z.ZodObject<{
6034
+ eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
6026
6035
  contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
6027
6036
  chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
6028
6037
  nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
@@ -6046,7 +6055,7 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
6046
6055
  s: string;
6047
6056
  v: string | number | bigint;
6048
6057
  yParity: string | number | bigint;
6049
- }>>;
6058
+ }>>>;
6050
6059
  }, "strict", z.ZodTypeAny, {
6051
6060
  sender: `0x${string}`;
6052
6061
  factory: `0x${string}` | null;
@@ -6063,7 +6072,7 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
6063
6072
  paymasterPostOpGasLimit: bigint | null;
6064
6073
  factoryData: `0x${string}` | null;
6065
6074
  paymasterData: `0x${string}` | null;
6066
- eip7702Auth?: {
6075
+ eip7702auth?: {
6067
6076
  nonce: number;
6068
6077
  contractAddress: `0x${string}`;
6069
6078
  chainId: number;
@@ -6071,7 +6080,7 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
6071
6080
  s: `0x${string}`;
6072
6081
  v: bigint;
6073
6082
  yParity: number;
6074
- } | undefined;
6083
+ } | null | undefined;
6075
6084
  }, {
6076
6085
  sender: string;
6077
6086
  nonce: string | number | bigint;
@@ -6088,7 +6097,7 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
6088
6097
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
6089
6098
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
6090
6099
  paymasterData?: string | null | undefined;
6091
- eip7702Auth?: {
6100
+ eip7702auth?: {
6092
6101
  nonce: string | number | bigint;
6093
6102
  contractAddress: string;
6094
6103
  chainId: string | number | bigint;
@@ -6096,7 +6105,7 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
6096
6105
  s: string;
6097
6106
  v: string | number | bigint;
6098
6107
  yParity: string | number | bigint;
6099
- } | undefined;
6108
+ } | null | undefined;
6100
6109
  }>, {
6101
6110
  sender: `0x${string}`;
6102
6111
  factory: `0x${string}` | null;
@@ -6113,7 +6122,7 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
6113
6122
  paymasterPostOpGasLimit: bigint | null;
6114
6123
  factoryData: `0x${string}` | null;
6115
6124
  paymasterData: `0x${string}` | null;
6116
- eip7702Auth?: {
6125
+ eip7702auth?: {
6117
6126
  nonce: number;
6118
6127
  contractAddress: `0x${string}`;
6119
6128
  chainId: number;
@@ -6121,7 +6130,7 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
6121
6130
  s: `0x${string}`;
6122
6131
  v: bigint;
6123
6132
  yParity: number;
6124
- } | undefined;
6133
+ } | null | undefined;
6125
6134
  }, {
6126
6135
  sender: string;
6127
6136
  nonce: string | number | bigint;
@@ -6138,7 +6147,7 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
6138
6147
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
6139
6148
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
6140
6149
  paymasterData?: string | null | undefined;
6141
- eip7702Auth?: {
6150
+ eip7702auth?: {
6142
6151
  nonce: string | number | bigint;
6143
6152
  contractAddress: string;
6144
6153
  chainId: string | number | bigint;
@@ -6146,7 +6155,7 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
6146
6155
  s: string;
6147
6156
  v: string | number | bigint;
6148
6157
  yParity: string | number | bigint;
6149
- } | undefined;
6158
+ } | null | undefined;
6150
6159
  }>]>, "many">;
6151
6160
  }, "strip", z.ZodTypeAny, {
6152
6161
  result: ({
@@ -6161,7 +6170,7 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
6161
6170
  maxFeePerGas: bigint;
6162
6171
  maxPriorityFeePerGas: bigint;
6163
6172
  signature: `0x${string}`;
6164
- eip7702Auth?: {
6173
+ eip7702auth?: {
6165
6174
  nonce: number;
6166
6175
  contractAddress: `0x${string}`;
6167
6176
  chainId: number;
@@ -6169,7 +6178,7 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
6169
6178
  s: `0x${string}`;
6170
6179
  v: bigint;
6171
6180
  yParity: number;
6172
- } | undefined;
6181
+ } | null | undefined;
6173
6182
  } | {
6174
6183
  sender: `0x${string}`;
6175
6184
  factory: `0x${string}` | null;
@@ -6186,7 +6195,7 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
6186
6195
  paymasterPostOpGasLimit: bigint | null;
6187
6196
  factoryData: `0x${string}` | null;
6188
6197
  paymasterData: `0x${string}` | null;
6189
- eip7702Auth?: {
6198
+ eip7702auth?: {
6190
6199
  nonce: number;
6191
6200
  contractAddress: `0x${string}`;
6192
6201
  chainId: number;
@@ -6194,7 +6203,7 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
6194
6203
  s: `0x${string}`;
6195
6204
  v: bigint;
6196
6205
  yParity: number;
6197
- } | undefined;
6206
+ } | null | undefined;
6198
6207
  })[];
6199
6208
  method: "debug_bundler_dumpMempool";
6200
6209
  }, {
@@ -6210,7 +6219,7 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
6210
6219
  maxFeePerGas: string | number | bigint;
6211
6220
  maxPriorityFeePerGas: string | number | bigint;
6212
6221
  signature: string;
6213
- eip7702Auth?: {
6222
+ eip7702auth?: {
6214
6223
  nonce: string | number | bigint;
6215
6224
  contractAddress: string;
6216
6225
  chainId: string | number | bigint;
@@ -6218,7 +6227,7 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
6218
6227
  s: string;
6219
6228
  v: string | number | bigint;
6220
6229
  yParity: string | number | bigint;
6221
- } | undefined;
6230
+ } | null | undefined;
6222
6231
  } | {
6223
6232
  sender: string;
6224
6233
  nonce: string | number | bigint;
@@ -6235,7 +6244,7 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
6235
6244
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
6236
6245
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
6237
6246
  paymasterData?: string | null | undefined;
6238
- eip7702Auth?: {
6247
+ eip7702auth?: {
6239
6248
  nonce: string | number | bigint;
6240
6249
  contractAddress: string;
6241
6250
  chainId: string | number | bigint;
@@ -6243,7 +6252,7 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
6243
6252
  s: string;
6244
6253
  v: string | number | bigint;
6245
6254
  yParity: string | number | bigint;
6246
- } | undefined;
6255
+ } | null | undefined;
6247
6256
  })[];
6248
6257
  method: "debug_bundler_dumpMempool";
6249
6258
  }>;
@@ -6302,12 +6311,12 @@ declare const bundlerGetStakeStatusResponseSchema: z.ZodObject<{
6302
6311
  }>;
6303
6312
  declare const bundlerSendBundleNowResponseSchema: z.ZodObject<{
6304
6313
  method: z.ZodLiteral<"debug_bundler_sendBundleNow">;
6305
- result: z.ZodEffects<z.ZodString, `0x${string}`, string>;
6314
+ result: z.ZodLiteral<"ok">;
6306
6315
  }, "strip", z.ZodTypeAny, {
6307
- result: `0x${string}`;
6316
+ result: "ok";
6308
6317
  method: "debug_bundler_sendBundleNow";
6309
6318
  }, {
6310
- result: string;
6319
+ result: "ok";
6311
6320
  method: "debug_bundler_sendBundleNow";
6312
6321
  }>;
6313
6322
  declare const bundlerSetBundlingModeResponseSchema: z.ZodObject<{
@@ -6365,6 +6374,16 @@ declare const bundlerDumpReputationsResponseSchema: z.ZodObject<{
6365
6374
  }[];
6366
6375
  method: "debug_bundler_dumpReputation";
6367
6376
  }>;
6377
+ declare const bundlerClearReputationResponseSchema: z.ZodObject<{
6378
+ method: z.ZodLiteral<"debug_bundler_clearReputation">;
6379
+ result: z.ZodLiteral<"ok">;
6380
+ }, "strip", z.ZodTypeAny, {
6381
+ result: "ok";
6382
+ method: "debug_bundler_clearReputation";
6383
+ }, {
6384
+ result: "ok";
6385
+ method: "debug_bundler_clearReputation";
6386
+ }>;
6368
6387
  declare const userOperationStatus: z.ZodObject<{
6369
6388
  status: z.ZodEnum<["not_found", "not_submitted", "submitted", "rejected", "reverted", "included", "failed"]>;
6370
6389
  transactionHash: z.ZodUnion<[z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodNull]>;
@@ -6622,7 +6641,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
6622
6641
  maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
6623
6642
  paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
6624
6643
  signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
6625
- eip7702Auth: z.ZodOptional<z.ZodObject<{
6644
+ eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
6626
6645
  contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
6627
6646
  chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
6628
6647
  nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
@@ -6646,7 +6665,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
6646
6665
  s: string;
6647
6666
  v: string | number | bigint;
6648
6667
  yParity: string | number | bigint;
6649
- }>>;
6668
+ }>>>;
6650
6669
  }, "strict", z.ZodTypeAny, {
6651
6670
  sender: `0x${string}`;
6652
6671
  nonce: bigint;
@@ -6659,7 +6678,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
6659
6678
  maxFeePerGas: bigint;
6660
6679
  maxPriorityFeePerGas: bigint;
6661
6680
  signature: `0x${string}`;
6662
- eip7702Auth?: {
6681
+ eip7702auth?: {
6663
6682
  nonce: number;
6664
6683
  contractAddress: `0x${string}`;
6665
6684
  chainId: number;
@@ -6667,7 +6686,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
6667
6686
  s: `0x${string}`;
6668
6687
  v: bigint;
6669
6688
  yParity: number;
6670
- } | undefined;
6689
+ } | null | undefined;
6671
6690
  }, {
6672
6691
  sender: string;
6673
6692
  nonce: string | number | bigint;
@@ -6680,7 +6699,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
6680
6699
  maxFeePerGas: string | number | bigint;
6681
6700
  maxPriorityFeePerGas: string | number | bigint;
6682
6701
  signature: string;
6683
- eip7702Auth?: {
6702
+ eip7702auth?: {
6684
6703
  nonce: string | number | bigint;
6685
6704
  contractAddress: string;
6686
6705
  chainId: string | number | bigint;
@@ -6688,7 +6707,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
6688
6707
  s: string;
6689
6708
  v: string | number | bigint;
6690
6709
  yParity: string | number | bigint;
6691
- } | undefined;
6710
+ } | null | undefined;
6692
6711
  }>, {
6693
6712
  sender: `0x${string}`;
6694
6713
  nonce: bigint;
@@ -6701,7 +6720,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
6701
6720
  maxFeePerGas: bigint;
6702
6721
  maxPriorityFeePerGas: bigint;
6703
6722
  signature: `0x${string}`;
6704
- eip7702Auth?: {
6723
+ eip7702auth?: {
6705
6724
  nonce: number;
6706
6725
  contractAddress: `0x${string}`;
6707
6726
  chainId: number;
@@ -6709,7 +6728,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
6709
6728
  s: `0x${string}`;
6710
6729
  v: bigint;
6711
6730
  yParity: number;
6712
- } | undefined;
6731
+ } | null | undefined;
6713
6732
  }, {
6714
6733
  sender: string;
6715
6734
  nonce: string | number | bigint;
@@ -6722,7 +6741,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
6722
6741
  maxFeePerGas: string | number | bigint;
6723
6742
  maxPriorityFeePerGas: string | number | bigint;
6724
6743
  signature: string;
6725
- eip7702Auth?: {
6744
+ eip7702auth?: {
6726
6745
  nonce: string | number | bigint;
6727
6746
  contractAddress: string;
6728
6747
  chainId: string | number | bigint;
@@ -6730,7 +6749,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
6730
6749
  s: string;
6731
6750
  v: string | number | bigint;
6732
6751
  yParity: string | number | bigint;
6733
- } | undefined;
6752
+ } | null | undefined;
6734
6753
  }>, z.ZodEffects<z.ZodObject<{
6735
6754
  sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
6736
6755
  nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
@@ -6747,7 +6766,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
6747
6766
  paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
6748
6767
  paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
6749
6768
  signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
6750
- eip7702Auth: z.ZodOptional<z.ZodObject<{
6769
+ eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
6751
6770
  contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
6752
6771
  chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
6753
6772
  nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
@@ -6771,7 +6790,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
6771
6790
  s: string;
6772
6791
  v: string | number | bigint;
6773
6792
  yParity: string | number | bigint;
6774
- }>>;
6793
+ }>>>;
6775
6794
  }, "strict", z.ZodTypeAny, {
6776
6795
  sender: `0x${string}`;
6777
6796
  factory: `0x${string}` | null;
@@ -6788,7 +6807,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
6788
6807
  paymasterPostOpGasLimit: bigint | null;
6789
6808
  factoryData: `0x${string}` | null;
6790
6809
  paymasterData: `0x${string}` | null;
6791
- eip7702Auth?: {
6810
+ eip7702auth?: {
6792
6811
  nonce: number;
6793
6812
  contractAddress: `0x${string}`;
6794
6813
  chainId: number;
@@ -6796,7 +6815,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
6796
6815
  s: `0x${string}`;
6797
6816
  v: bigint;
6798
6817
  yParity: number;
6799
- } | undefined;
6818
+ } | null | undefined;
6800
6819
  }, {
6801
6820
  sender: string;
6802
6821
  nonce: string | number | bigint;
@@ -6813,7 +6832,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
6813
6832
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
6814
6833
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
6815
6834
  paymasterData?: string | null | undefined;
6816
- eip7702Auth?: {
6835
+ eip7702auth?: {
6817
6836
  nonce: string | number | bigint;
6818
6837
  contractAddress: string;
6819
6838
  chainId: string | number | bigint;
@@ -6821,7 +6840,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
6821
6840
  s: string;
6822
6841
  v: string | number | bigint;
6823
6842
  yParity: string | number | bigint;
6824
- } | undefined;
6843
+ } | null | undefined;
6825
6844
  }>, {
6826
6845
  sender: `0x${string}`;
6827
6846
  factory: `0x${string}` | null;
@@ -6838,7 +6857,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
6838
6857
  paymasterPostOpGasLimit: bigint | null;
6839
6858
  factoryData: `0x${string}` | null;
6840
6859
  paymasterData: `0x${string}` | null;
6841
- eip7702Auth?: {
6860
+ eip7702auth?: {
6842
6861
  nonce: number;
6843
6862
  contractAddress: `0x${string}`;
6844
6863
  chainId: number;
@@ -6846,7 +6865,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
6846
6865
  s: `0x${string}`;
6847
6866
  v: bigint;
6848
6867
  yParity: number;
6849
- } | undefined;
6868
+ } | null | undefined;
6850
6869
  }, {
6851
6870
  sender: string;
6852
6871
  nonce: string | number | bigint;
@@ -6863,7 +6882,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
6863
6882
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
6864
6883
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
6865
6884
  paymasterData?: string | null | undefined;
6866
- eip7702Auth?: {
6885
+ eip7702auth?: {
6867
6886
  nonce: string | number | bigint;
6868
6887
  contractAddress: string;
6869
6888
  chainId: string | number | bigint;
@@ -6871,7 +6890,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
6871
6890
  s: string;
6872
6891
  v: string | number | bigint;
6873
6892
  yParity: string | number | bigint;
6874
- } | undefined;
6893
+ } | null | undefined;
6875
6894
  }>]>;
6876
6895
  entryPoint: z.ZodEffects<z.ZodString, `0x${string}`, string>;
6877
6896
  blockNumber: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
@@ -6891,7 +6910,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
6891
6910
  maxFeePerGas: bigint;
6892
6911
  maxPriorityFeePerGas: bigint;
6893
6912
  signature: `0x${string}`;
6894
- eip7702Auth?: {
6913
+ eip7702auth?: {
6895
6914
  nonce: number;
6896
6915
  contractAddress: `0x${string}`;
6897
6916
  chainId: number;
@@ -6899,7 +6918,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
6899
6918
  s: `0x${string}`;
6900
6919
  v: bigint;
6901
6920
  yParity: number;
6902
- } | undefined;
6921
+ } | null | undefined;
6903
6922
  } | {
6904
6923
  sender: `0x${string}`;
6905
6924
  factory: `0x${string}` | null;
@@ -6916,7 +6935,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
6916
6935
  paymasterPostOpGasLimit: bigint | null;
6917
6936
  factoryData: `0x${string}` | null;
6918
6937
  paymasterData: `0x${string}` | null;
6919
- eip7702Auth?: {
6938
+ eip7702auth?: {
6920
6939
  nonce: number;
6921
6940
  contractAddress: `0x${string}`;
6922
6941
  chainId: number;
@@ -6924,7 +6943,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
6924
6943
  s: `0x${string}`;
6925
6944
  v: bigint;
6926
6945
  yParity: number;
6927
- } | undefined;
6946
+ } | null | undefined;
6928
6947
  }) & ({
6929
6948
  sender: `0x${string}`;
6930
6949
  nonce: bigint;
@@ -6937,7 +6956,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
6937
6956
  maxFeePerGas: bigint;
6938
6957
  maxPriorityFeePerGas: bigint;
6939
6958
  signature: `0x${string}`;
6940
- eip7702Auth?: {
6959
+ eip7702auth?: {
6941
6960
  nonce: number;
6942
6961
  contractAddress: `0x${string}`;
6943
6962
  chainId: number;
@@ -6945,7 +6964,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
6945
6964
  s: `0x${string}`;
6946
6965
  v: bigint;
6947
6966
  yParity: number;
6948
- } | undefined;
6967
+ } | null | undefined;
6949
6968
  } | {
6950
6969
  sender: `0x${string}`;
6951
6970
  factory: `0x${string}` | null;
@@ -6962,7 +6981,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
6962
6981
  paymasterPostOpGasLimit: bigint | null;
6963
6982
  factoryData: `0x${string}` | null;
6964
6983
  paymasterData: `0x${string}` | null;
6965
- eip7702Auth?: {
6984
+ eip7702auth?: {
6966
6985
  nonce: number;
6967
6986
  contractAddress: `0x${string}`;
6968
6987
  chainId: number;
@@ -6970,7 +6989,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
6970
6989
  s: `0x${string}`;
6971
6990
  v: bigint;
6972
6991
  yParity: number;
6973
- } | undefined;
6992
+ } | null | undefined;
6974
6993
  } | undefined);
6975
6994
  blockNumber: bigint;
6976
6995
  blockHash: `0x${string}`;
@@ -6989,7 +7008,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
6989
7008
  maxFeePerGas: string | number | bigint;
6990
7009
  maxPriorityFeePerGas: string | number | bigint;
6991
7010
  signature: string;
6992
- eip7702Auth?: {
7011
+ eip7702auth?: {
6993
7012
  nonce: string | number | bigint;
6994
7013
  contractAddress: string;
6995
7014
  chainId: string | number | bigint;
@@ -6997,7 +7016,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
6997
7016
  s: string;
6998
7017
  v: string | number | bigint;
6999
7018
  yParity: string | number | bigint;
7000
- } | undefined;
7019
+ } | null | undefined;
7001
7020
  } | {
7002
7021
  sender: string;
7003
7022
  nonce: string | number | bigint;
@@ -7014,7 +7033,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7014
7033
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
7015
7034
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
7016
7035
  paymasterData?: string | null | undefined;
7017
- eip7702Auth?: {
7036
+ eip7702auth?: {
7018
7037
  nonce: string | number | bigint;
7019
7038
  contractAddress: string;
7020
7039
  chainId: string | number | bigint;
@@ -7022,7 +7041,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7022
7041
  s: string;
7023
7042
  v: string | number | bigint;
7024
7043
  yParity: string | number | bigint;
7025
- } | undefined;
7044
+ } | null | undefined;
7026
7045
  }) & ({
7027
7046
  sender: string;
7028
7047
  nonce: string | number | bigint;
@@ -7035,7 +7054,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7035
7054
  maxFeePerGas: string | number | bigint;
7036
7055
  maxPriorityFeePerGas: string | number | bigint;
7037
7056
  signature: string;
7038
- eip7702Auth?: {
7057
+ eip7702auth?: {
7039
7058
  nonce: string | number | bigint;
7040
7059
  contractAddress: string;
7041
7060
  chainId: string | number | bigint;
@@ -7043,7 +7062,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7043
7062
  s: string;
7044
7063
  v: string | number | bigint;
7045
7064
  yParity: string | number | bigint;
7046
- } | undefined;
7065
+ } | null | undefined;
7047
7066
  } | {
7048
7067
  sender: string;
7049
7068
  nonce: string | number | bigint;
@@ -7060,7 +7079,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7060
7079
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
7061
7080
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
7062
7081
  paymasterData?: string | null | undefined;
7063
- eip7702Auth?: {
7082
+ eip7702auth?: {
7064
7083
  nonce: string | number | bigint;
7065
7084
  contractAddress: string;
7066
7085
  chainId: string | number | bigint;
@@ -7068,7 +7087,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7068
7087
  s: string;
7069
7088
  v: string | number | bigint;
7070
7089
  yParity: string | number | bigint;
7071
- } | undefined;
7090
+ } | null | undefined;
7072
7091
  } | undefined);
7073
7092
  blockNumber: string | number | bigint;
7074
7093
  blockHash: string;
@@ -7089,7 +7108,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7089
7108
  maxFeePerGas: bigint;
7090
7109
  maxPriorityFeePerGas: bigint;
7091
7110
  signature: `0x${string}`;
7092
- eip7702Auth?: {
7111
+ eip7702auth?: {
7093
7112
  nonce: number;
7094
7113
  contractAddress: `0x${string}`;
7095
7114
  chainId: number;
@@ -7097,7 +7116,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7097
7116
  s: `0x${string}`;
7098
7117
  v: bigint;
7099
7118
  yParity: number;
7100
- } | undefined;
7119
+ } | null | undefined;
7101
7120
  } | {
7102
7121
  sender: `0x${string}`;
7103
7122
  factory: `0x${string}` | null;
@@ -7114,7 +7133,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7114
7133
  paymasterPostOpGasLimit: bigint | null;
7115
7134
  factoryData: `0x${string}` | null;
7116
7135
  paymasterData: `0x${string}` | null;
7117
- eip7702Auth?: {
7136
+ eip7702auth?: {
7118
7137
  nonce: number;
7119
7138
  contractAddress: `0x${string}`;
7120
7139
  chainId: number;
@@ -7122,7 +7141,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7122
7141
  s: `0x${string}`;
7123
7142
  v: bigint;
7124
7143
  yParity: number;
7125
- } | undefined;
7144
+ } | null | undefined;
7126
7145
  }) & ({
7127
7146
  sender: `0x${string}`;
7128
7147
  nonce: bigint;
@@ -7135,7 +7154,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7135
7154
  maxFeePerGas: bigint;
7136
7155
  maxPriorityFeePerGas: bigint;
7137
7156
  signature: `0x${string}`;
7138
- eip7702Auth?: {
7157
+ eip7702auth?: {
7139
7158
  nonce: number;
7140
7159
  contractAddress: `0x${string}`;
7141
7160
  chainId: number;
@@ -7143,7 +7162,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7143
7162
  s: `0x${string}`;
7144
7163
  v: bigint;
7145
7164
  yParity: number;
7146
- } | undefined;
7165
+ } | null | undefined;
7147
7166
  } | {
7148
7167
  sender: `0x${string}`;
7149
7168
  factory: `0x${string}` | null;
@@ -7160,7 +7179,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7160
7179
  paymasterPostOpGasLimit: bigint | null;
7161
7180
  factoryData: `0x${string}` | null;
7162
7181
  paymasterData: `0x${string}` | null;
7163
- eip7702Auth?: {
7182
+ eip7702auth?: {
7164
7183
  nonce: number;
7165
7184
  contractAddress: `0x${string}`;
7166
7185
  chainId: number;
@@ -7168,7 +7187,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7168
7187
  s: `0x${string}`;
7169
7188
  v: bigint;
7170
7189
  yParity: number;
7171
- } | undefined;
7190
+ } | null | undefined;
7172
7191
  } | undefined);
7173
7192
  blockNumber: bigint;
7174
7193
  blockHash: `0x${string}`;
@@ -7190,7 +7209,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7190
7209
  maxFeePerGas: string | number | bigint;
7191
7210
  maxPriorityFeePerGas: string | number | bigint;
7192
7211
  signature: string;
7193
- eip7702Auth?: {
7212
+ eip7702auth?: {
7194
7213
  nonce: string | number | bigint;
7195
7214
  contractAddress: string;
7196
7215
  chainId: string | number | bigint;
@@ -7198,7 +7217,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7198
7217
  s: string;
7199
7218
  v: string | number | bigint;
7200
7219
  yParity: string | number | bigint;
7201
- } | undefined;
7220
+ } | null | undefined;
7202
7221
  } | {
7203
7222
  sender: string;
7204
7223
  nonce: string | number | bigint;
@@ -7215,7 +7234,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7215
7234
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
7216
7235
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
7217
7236
  paymasterData?: string | null | undefined;
7218
- eip7702Auth?: {
7237
+ eip7702auth?: {
7219
7238
  nonce: string | number | bigint;
7220
7239
  contractAddress: string;
7221
7240
  chainId: string | number | bigint;
@@ -7223,7 +7242,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7223
7242
  s: string;
7224
7243
  v: string | number | bigint;
7225
7244
  yParity: string | number | bigint;
7226
- } | undefined;
7245
+ } | null | undefined;
7227
7246
  }) & ({
7228
7247
  sender: string;
7229
7248
  nonce: string | number | bigint;
@@ -7236,7 +7255,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7236
7255
  maxFeePerGas: string | number | bigint;
7237
7256
  maxPriorityFeePerGas: string | number | bigint;
7238
7257
  signature: string;
7239
- eip7702Auth?: {
7258
+ eip7702auth?: {
7240
7259
  nonce: string | number | bigint;
7241
7260
  contractAddress: string;
7242
7261
  chainId: string | number | bigint;
@@ -7244,7 +7263,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7244
7263
  s: string;
7245
7264
  v: string | number | bigint;
7246
7265
  yParity: string | number | bigint;
7247
- } | undefined;
7266
+ } | null | undefined;
7248
7267
  } | {
7249
7268
  sender: string;
7250
7269
  nonce: string | number | bigint;
@@ -7261,7 +7280,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7261
7280
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
7262
7281
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
7263
7282
  paymasterData?: string | null | undefined;
7264
- eip7702Auth?: {
7283
+ eip7702auth?: {
7265
7284
  nonce: string | number | bigint;
7266
7285
  contractAddress: string;
7267
7286
  chainId: string | number | bigint;
@@ -7269,7 +7288,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7269
7288
  s: string;
7270
7289
  v: string | number | bigint;
7271
7290
  yParity: string | number | bigint;
7272
- } | undefined;
7291
+ } | null | undefined;
7273
7292
  } | undefined);
7274
7293
  blockNumber: string | number | bigint;
7275
7294
  blockHash: string;
@@ -7619,7 +7638,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7619
7638
  maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
7620
7639
  paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
7621
7640
  signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
7622
- eip7702Auth: z.ZodOptional<z.ZodObject<{
7641
+ eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
7623
7642
  contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
7624
7643
  chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
7625
7644
  nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
@@ -7643,7 +7662,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7643
7662
  s: string;
7644
7663
  v: string | number | bigint;
7645
7664
  yParity: string | number | bigint;
7646
- }>>;
7665
+ }>>>;
7647
7666
  }, "strict", z.ZodTypeAny, {
7648
7667
  sender: `0x${string}`;
7649
7668
  nonce: bigint;
@@ -7656,7 +7675,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7656
7675
  maxFeePerGas: bigint;
7657
7676
  maxPriorityFeePerGas: bigint;
7658
7677
  signature: `0x${string}`;
7659
- eip7702Auth?: {
7678
+ eip7702auth?: {
7660
7679
  nonce: number;
7661
7680
  contractAddress: `0x${string}`;
7662
7681
  chainId: number;
@@ -7664,7 +7683,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7664
7683
  s: `0x${string}`;
7665
7684
  v: bigint;
7666
7685
  yParity: number;
7667
- } | undefined;
7686
+ } | null | undefined;
7668
7687
  }, {
7669
7688
  sender: string;
7670
7689
  nonce: string | number | bigint;
@@ -7677,7 +7696,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7677
7696
  maxFeePerGas: string | number | bigint;
7678
7697
  maxPriorityFeePerGas: string | number | bigint;
7679
7698
  signature: string;
7680
- eip7702Auth?: {
7699
+ eip7702auth?: {
7681
7700
  nonce: string | number | bigint;
7682
7701
  contractAddress: string;
7683
7702
  chainId: string | number | bigint;
@@ -7685,7 +7704,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7685
7704
  s: string;
7686
7705
  v: string | number | bigint;
7687
7706
  yParity: string | number | bigint;
7688
- } | undefined;
7707
+ } | null | undefined;
7689
7708
  }>, {
7690
7709
  sender: `0x${string}`;
7691
7710
  nonce: bigint;
@@ -7698,7 +7717,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7698
7717
  maxFeePerGas: bigint;
7699
7718
  maxPriorityFeePerGas: bigint;
7700
7719
  signature: `0x${string}`;
7701
- eip7702Auth?: {
7720
+ eip7702auth?: {
7702
7721
  nonce: number;
7703
7722
  contractAddress: `0x${string}`;
7704
7723
  chainId: number;
@@ -7706,7 +7725,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7706
7725
  s: `0x${string}`;
7707
7726
  v: bigint;
7708
7727
  yParity: number;
7709
- } | undefined;
7728
+ } | null | undefined;
7710
7729
  }, {
7711
7730
  sender: string;
7712
7731
  nonce: string | number | bigint;
@@ -7719,7 +7738,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7719
7738
  maxFeePerGas: string | number | bigint;
7720
7739
  maxPriorityFeePerGas: string | number | bigint;
7721
7740
  signature: string;
7722
- eip7702Auth?: {
7741
+ eip7702auth?: {
7723
7742
  nonce: string | number | bigint;
7724
7743
  contractAddress: string;
7725
7744
  chainId: string | number | bigint;
@@ -7727,7 +7746,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7727
7746
  s: string;
7728
7747
  v: string | number | bigint;
7729
7748
  yParity: string | number | bigint;
7730
- } | undefined;
7749
+ } | null | undefined;
7731
7750
  }>, z.ZodEffects<z.ZodObject<{
7732
7751
  sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
7733
7752
  nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
@@ -7744,7 +7763,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7744
7763
  paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
7745
7764
  paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
7746
7765
  signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
7747
- eip7702Auth: z.ZodOptional<z.ZodObject<{
7766
+ eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
7748
7767
  contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
7749
7768
  chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
7750
7769
  nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
@@ -7768,7 +7787,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7768
7787
  s: string;
7769
7788
  v: string | number | bigint;
7770
7789
  yParity: string | number | bigint;
7771
- }>>;
7790
+ }>>>;
7772
7791
  }, "strict", z.ZodTypeAny, {
7773
7792
  sender: `0x${string}`;
7774
7793
  factory: `0x${string}` | null;
@@ -7785,7 +7804,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7785
7804
  paymasterPostOpGasLimit: bigint | null;
7786
7805
  factoryData: `0x${string}` | null;
7787
7806
  paymasterData: `0x${string}` | null;
7788
- eip7702Auth?: {
7807
+ eip7702auth?: {
7789
7808
  nonce: number;
7790
7809
  contractAddress: `0x${string}`;
7791
7810
  chainId: number;
@@ -7793,7 +7812,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7793
7812
  s: `0x${string}`;
7794
7813
  v: bigint;
7795
7814
  yParity: number;
7796
- } | undefined;
7815
+ } | null | undefined;
7797
7816
  }, {
7798
7817
  sender: string;
7799
7818
  nonce: string | number | bigint;
@@ -7810,7 +7829,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7810
7829
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
7811
7830
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
7812
7831
  paymasterData?: string | null | undefined;
7813
- eip7702Auth?: {
7832
+ eip7702auth?: {
7814
7833
  nonce: string | number | bigint;
7815
7834
  contractAddress: string;
7816
7835
  chainId: string | number | bigint;
@@ -7818,7 +7837,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7818
7837
  s: string;
7819
7838
  v: string | number | bigint;
7820
7839
  yParity: string | number | bigint;
7821
- } | undefined;
7840
+ } | null | undefined;
7822
7841
  }>, {
7823
7842
  sender: `0x${string}`;
7824
7843
  factory: `0x${string}` | null;
@@ -7835,7 +7854,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7835
7854
  paymasterPostOpGasLimit: bigint | null;
7836
7855
  factoryData: `0x${string}` | null;
7837
7856
  paymasterData: `0x${string}` | null;
7838
- eip7702Auth?: {
7857
+ eip7702auth?: {
7839
7858
  nonce: number;
7840
7859
  contractAddress: `0x${string}`;
7841
7860
  chainId: number;
@@ -7843,7 +7862,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7843
7862
  s: `0x${string}`;
7844
7863
  v: bigint;
7845
7864
  yParity: number;
7846
- } | undefined;
7865
+ } | null | undefined;
7847
7866
  }, {
7848
7867
  sender: string;
7849
7868
  nonce: string | number | bigint;
@@ -7860,7 +7879,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7860
7879
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
7861
7880
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
7862
7881
  paymasterData?: string | null | undefined;
7863
- eip7702Auth?: {
7882
+ eip7702auth?: {
7864
7883
  nonce: string | number | bigint;
7865
7884
  contractAddress: string;
7866
7885
  chainId: string | number | bigint;
@@ -7868,7 +7887,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7868
7887
  s: string;
7869
7888
  v: string | number | bigint;
7870
7889
  yParity: string | number | bigint;
7871
- } | undefined;
7890
+ } | null | undefined;
7872
7891
  }>]>, "many">;
7873
7892
  }, "strip", z.ZodTypeAny, {
7874
7893
  result: ({
@@ -7883,7 +7902,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7883
7902
  maxFeePerGas: bigint;
7884
7903
  maxPriorityFeePerGas: bigint;
7885
7904
  signature: `0x${string}`;
7886
- eip7702Auth?: {
7905
+ eip7702auth?: {
7887
7906
  nonce: number;
7888
7907
  contractAddress: `0x${string}`;
7889
7908
  chainId: number;
@@ -7891,7 +7910,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7891
7910
  s: `0x${string}`;
7892
7911
  v: bigint;
7893
7912
  yParity: number;
7894
- } | undefined;
7913
+ } | null | undefined;
7895
7914
  } | {
7896
7915
  sender: `0x${string}`;
7897
7916
  factory: `0x${string}` | null;
@@ -7908,7 +7927,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7908
7927
  paymasterPostOpGasLimit: bigint | null;
7909
7928
  factoryData: `0x${string}` | null;
7910
7929
  paymasterData: `0x${string}` | null;
7911
- eip7702Auth?: {
7930
+ eip7702auth?: {
7912
7931
  nonce: number;
7913
7932
  contractAddress: `0x${string}`;
7914
7933
  chainId: number;
@@ -7916,7 +7935,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7916
7935
  s: `0x${string}`;
7917
7936
  v: bigint;
7918
7937
  yParity: number;
7919
- } | undefined;
7938
+ } | null | undefined;
7920
7939
  })[];
7921
7940
  method: "debug_bundler_dumpMempool";
7922
7941
  }, {
@@ -7932,7 +7951,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7932
7951
  maxFeePerGas: string | number | bigint;
7933
7952
  maxPriorityFeePerGas: string | number | bigint;
7934
7953
  signature: string;
7935
- eip7702Auth?: {
7954
+ eip7702auth?: {
7936
7955
  nonce: string | number | bigint;
7937
7956
  contractAddress: string;
7938
7957
  chainId: string | number | bigint;
@@ -7940,7 +7959,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7940
7959
  s: string;
7941
7960
  v: string | number | bigint;
7942
7961
  yParity: string | number | bigint;
7943
- } | undefined;
7962
+ } | null | undefined;
7944
7963
  } | {
7945
7964
  sender: string;
7946
7965
  nonce: string | number | bigint;
@@ -7957,7 +7976,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7957
7976
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
7958
7977
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
7959
7978
  paymasterData?: string | null | undefined;
7960
- eip7702Auth?: {
7979
+ eip7702auth?: {
7961
7980
  nonce: string | number | bigint;
7962
7981
  contractAddress: string;
7963
7982
  chainId: string | number | bigint;
@@ -7965,7 +7984,7 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
7965
7984
  s: string;
7966
7985
  v: string | number | bigint;
7967
7986
  yParity: string | number | bigint;
7968
- } | undefined;
7987
+ } | null | undefined;
7969
7988
  })[];
7970
7989
  method: "debug_bundler_dumpMempool";
7971
7990
  }>, z.ZodObject<{
@@ -8022,12 +8041,12 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
8022
8041
  method: "debug_bundler_getStakeStatus";
8023
8042
  }>, z.ZodObject<{
8024
8043
  method: z.ZodLiteral<"debug_bundler_sendBundleNow">;
8025
- result: z.ZodEffects<z.ZodString, `0x${string}`, string>;
8044
+ result: z.ZodLiteral<"ok">;
8026
8045
  }, "strip", z.ZodTypeAny, {
8027
- result: `0x${string}`;
8046
+ result: "ok";
8028
8047
  method: "debug_bundler_sendBundleNow";
8029
8048
  }, {
8030
- result: string;
8049
+ result: "ok";
8031
8050
  method: "debug_bundler_sendBundleNow";
8032
8051
  }>, z.ZodObject<{
8033
8052
  method: z.ZodLiteral<"debug_bundler_setBundlingMode">;
@@ -8081,6 +8100,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
8081
8100
  status?: string | number | bigint | undefined;
8082
8101
  }[];
8083
8102
  method: "debug_bundler_dumpReputation";
8103
+ }>, z.ZodObject<{
8104
+ method: z.ZodLiteral<"debug_bundler_clearReputation">;
8105
+ result: z.ZodLiteral<"ok">;
8106
+ }, "strip", z.ZodTypeAny, {
8107
+ result: "ok";
8108
+ method: "debug_bundler_clearReputation";
8109
+ }, {
8110
+ result: "ok";
8111
+ method: "debug_bundler_clearReputation";
8084
8112
  }>, z.ZodObject<{
8085
8113
  method: z.ZodLiteral<"pimlico_getUserOperationStatus">;
8086
8114
  result: z.ZodObject<{
@@ -8634,6 +8662,7 @@ export type BundlerDumpMempoolResponseResult = z.infer<typeof bundlerDumpMempool
8634
8662
  export type BundlerGetStakeStatusResponseResult = z.infer<typeof bundlerGetStakeStatusResponseSchema>["result"];
8635
8663
  export type BundlerSendBundleNowResponseResult = z.infer<typeof bundlerSendBundleNowResponseSchema>["result"];
8636
8664
  export type BundlerSetBundlingModeResponseResult = z.infer<typeof bundlerSetBundlingModeResponseSchema>["result"];
8665
+ export type BundlerClearReputationResponseResult = z.infer<typeof bundlerClearReputationResponseSchema>["result"];
8637
8666
  export type BundlerSetReputationsResponseResult = z.infer<typeof bundlerSetReputationsResponseSchema>["result"];
8638
8667
  export type BundlerDumpReputationsResponseResult = z.infer<typeof bundlerDumpReputationsResponseSchema>["result"];
8639
8668
  export type PimlicoGetUserOperationStatusResponseResult = z.infer<typeof pimlicoGetUserOperationStatusResponseSchema>["result"];