@pimlico/mock-paymaster 0.0.4 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/_cjs/helpers/erc20-utils.js +26 -15
  3. package/_cjs/helpers/erc20-utils.js.map +1 -1
  4. package/_cjs/helpers/schema.js +7 -7
  5. package/_cjs/helpers/schema.js.map +1 -1
  6. package/_cjs/helpers/utils.js +1 -13
  7. package/_cjs/helpers/utils.js.map +1 -1
  8. package/_cjs/index.js +16 -20
  9. package/_cjs/index.js.map +1 -1
  10. package/_cjs/relay.js +24 -11
  11. package/_cjs/relay.js.map +1 -1
  12. package/_cjs/setup.js +118 -0
  13. package/_cjs/setup.js.map +1 -0
  14. package/_cjs/singletonPaymasters.js +1 -61
  15. package/_cjs/singletonPaymasters.js.map +1 -1
  16. package/_esm/helpers/erc20-utils.js +28 -13
  17. package/_esm/helpers/erc20-utils.js.map +1 -1
  18. package/_esm/helpers/schema.js +7 -7
  19. package/_esm/helpers/schema.js.map +1 -1
  20. package/_esm/helpers/utils.js +1 -12
  21. package/_esm/helpers/utils.js.map +1 -1
  22. package/_esm/index.js +15 -21
  23. package/_esm/index.js.map +1 -1
  24. package/_esm/relay.js +33 -16
  25. package/_esm/relay.js.map +1 -1
  26. package/_esm/setup.js +120 -0
  27. package/_esm/setup.js.map +1 -0
  28. package/_esm/singletonPaymasters.js +3 -67
  29. package/_esm/singletonPaymasters.js.map +1 -1
  30. package/_types/helpers/erc20-utils.d.ts +4 -2
  31. package/_types/helpers/erc20-utils.d.ts.map +1 -1
  32. package/_types/helpers/schema.d.ts +569 -569
  33. package/_types/helpers/schema.d.ts.map +1 -1
  34. package/_types/helpers/utils.d.ts +1 -5
  35. package/_types/helpers/utils.d.ts.map +1 -1
  36. package/_types/index.d.ts +1 -0
  37. package/_types/index.d.ts.map +1 -1
  38. package/_types/relay.d.ts +4 -5
  39. package/_types/relay.d.ts.map +1 -1
  40. package/_types/setup.d.ts +11 -0
  41. package/_types/setup.d.ts.map +1 -0
  42. package/_types/singletonPaymasters.d.ts +0 -4
  43. package/_types/singletonPaymasters.d.ts.map +1 -1
  44. package/helpers/erc20-utils.ts +40 -16
  45. package/helpers/schema.ts +7 -7
  46. package/helpers/utils.ts +0 -24
  47. package/index.ts +19 -22
  48. package/package.json +2 -2
  49. package/relay.ts +44 -22
  50. package/setup.ts +163 -0
  51. package/singletonPaymasters.ts +2 -91
@@ -36,20 +36,20 @@ declare const userOperationSchemaPaymasterV6: z.ZodEffects<z.ZodObject<{
36
36
  v: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>>;
37
37
  yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
38
38
  }, "strip", z.ZodTypeAny, {
39
- contractAddress: `0x${string}`;
40
39
  chainId: number;
41
- nonce: number;
42
40
  r: `0x${string}`;
43
41
  s: `0x${string}`;
44
42
  yParity: number;
43
+ nonce: number;
44
+ contractAddress: `0x${string}`;
45
45
  v?: bigint | undefined;
46
46
  }, {
47
- contractAddress: string;
48
47
  chainId: string | number | bigint;
49
- nonce: string | number | bigint;
50
48
  r: string;
51
49
  s: string;
52
50
  yParity: string | number | bigint;
51
+ nonce: string | number | bigint;
52
+ contractAddress: string;
53
53
  v?: string | number | bigint | undefined;
54
54
  }>, z.ZodObject<{
55
55
  address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
@@ -60,136 +60,136 @@ declare const userOperationSchemaPaymasterV6: z.ZodEffects<z.ZodObject<{
60
60
  v: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>>;
61
61
  yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
62
62
  }, "strip", z.ZodTypeAny, {
63
+ address: `0x${string}`;
63
64
  chainId: number;
64
- nonce: number;
65
65
  r: `0x${string}`;
66
66
  s: `0x${string}`;
67
67
  yParity: number;
68
- address: `0x${string}`;
68
+ nonce: number;
69
69
  v?: bigint | undefined;
70
70
  }, {
71
+ address: string;
71
72
  chainId: string | number | bigint;
72
- nonce: string | number | bigint;
73
73
  r: string;
74
74
  s: string;
75
75
  yParity: string | number | bigint;
76
- address: string;
76
+ nonce: string | number | bigint;
77
77
  v?: string | number | bigint | undefined;
78
78
  }>]>>>;
79
79
  }, "strict", z.ZodTypeAny, {
80
80
  nonce: bigint;
81
+ maxFeePerGas: bigint;
82
+ maxPriorityFeePerGas: bigint;
83
+ signature: `0x${string}`;
81
84
  sender: `0x${string}`;
82
85
  initCode: `0x${string}`;
83
86
  callData: `0x${string}`;
84
87
  callGasLimit: bigint;
85
88
  verificationGasLimit: bigint;
86
89
  preVerificationGas: bigint;
87
- maxPriorityFeePerGas: bigint;
88
- maxFeePerGas: bigint;
89
- signature: `0x${string}`;
90
90
  paymasterAndData?: `0x${string}` | undefined;
91
91
  eip7702Auth?: {
92
- contractAddress: `0x${string}`;
93
92
  chainId: number;
94
- nonce: number;
95
93
  r: `0x${string}`;
96
94
  s: `0x${string}`;
97
95
  yParity: number;
96
+ nonce: number;
97
+ contractAddress: `0x${string}`;
98
98
  v?: bigint | undefined;
99
99
  } | {
100
+ address: `0x${string}`;
100
101
  chainId: number;
101
- nonce: number;
102
102
  r: `0x${string}`;
103
103
  s: `0x${string}`;
104
104
  yParity: number;
105
- address: `0x${string}`;
105
+ nonce: number;
106
106
  v?: bigint | undefined;
107
107
  } | null | undefined;
108
108
  }, {
109
109
  nonce: string | number | bigint;
110
+ maxFeePerGas: string | number | bigint;
111
+ maxPriorityFeePerGas: string | number | bigint;
110
112
  sender: string;
111
113
  initCode: string;
112
114
  callData: string;
113
- maxPriorityFeePerGas: string | number | bigint;
114
- maxFeePerGas: string | number | bigint;
115
+ signature?: string | undefined;
115
116
  callGasLimit?: string | number | bigint | undefined;
116
117
  verificationGasLimit?: string | number | bigint | undefined;
117
118
  preVerificationGas?: string | number | bigint | undefined;
118
119
  paymasterAndData?: string | null | undefined;
119
- signature?: string | undefined;
120
120
  eip7702Auth?: {
121
- contractAddress: string;
122
121
  chainId: string | number | bigint;
123
- nonce: string | number | bigint;
124
122
  r: string;
125
123
  s: string;
126
124
  yParity: string | number | bigint;
125
+ nonce: string | number | bigint;
126
+ contractAddress: string;
127
127
  v?: string | number | bigint | undefined;
128
128
  } | {
129
+ address: string;
129
130
  chainId: string | number | bigint;
130
- nonce: string | number | bigint;
131
131
  r: string;
132
132
  s: string;
133
133
  yParity: string | number | bigint;
134
- address: string;
134
+ nonce: string | number | bigint;
135
135
  v?: string | number | bigint | undefined;
136
136
  } | null | undefined;
137
137
  }>, {
138
138
  nonce: bigint;
139
+ maxFeePerGas: bigint;
140
+ maxPriorityFeePerGas: bigint;
141
+ signature: `0x${string}`;
139
142
  sender: `0x${string}`;
140
143
  initCode: `0x${string}`;
141
144
  callData: `0x${string}`;
142
145
  callGasLimit: bigint;
143
146
  verificationGasLimit: bigint;
144
147
  preVerificationGas: bigint;
145
- maxPriorityFeePerGas: bigint;
146
- maxFeePerGas: bigint;
147
- signature: `0x${string}`;
148
148
  paymasterAndData?: `0x${string}` | undefined;
149
149
  eip7702Auth?: {
150
- contractAddress: `0x${string}`;
151
150
  chainId: number;
152
- nonce: number;
153
151
  r: `0x${string}`;
154
152
  s: `0x${string}`;
155
153
  yParity: number;
154
+ nonce: number;
155
+ contractAddress: `0x${string}`;
156
156
  v?: bigint | undefined;
157
157
  } | {
158
+ address: `0x${string}`;
158
159
  chainId: number;
159
- nonce: number;
160
160
  r: `0x${string}`;
161
161
  s: `0x${string}`;
162
162
  yParity: number;
163
- address: `0x${string}`;
163
+ nonce: number;
164
164
  v?: bigint | undefined;
165
165
  } | null | undefined;
166
166
  }, {
167
167
  nonce: string | number | bigint;
168
+ maxFeePerGas: string | number | bigint;
169
+ maxPriorityFeePerGas: string | number | bigint;
168
170
  sender: string;
169
171
  initCode: string;
170
172
  callData: string;
171
- maxPriorityFeePerGas: string | number | bigint;
172
- maxFeePerGas: string | number | bigint;
173
+ signature?: string | undefined;
173
174
  callGasLimit?: string | number | bigint | undefined;
174
175
  verificationGasLimit?: string | number | bigint | undefined;
175
176
  preVerificationGas?: string | number | bigint | undefined;
176
177
  paymasterAndData?: string | null | undefined;
177
- signature?: string | undefined;
178
178
  eip7702Auth?: {
179
- contractAddress: string;
180
179
  chainId: string | number | bigint;
181
- nonce: string | number | bigint;
182
180
  r: string;
183
181
  s: string;
184
182
  yParity: string | number | bigint;
183
+ nonce: string | number | bigint;
184
+ contractAddress: string;
185
185
  v?: string | number | bigint | undefined;
186
186
  } | {
187
+ address: string;
187
188
  chainId: string | number | bigint;
188
- nonce: string | number | bigint;
189
189
  r: string;
190
190
  s: string;
191
191
  yParity: string | number | bigint;
192
- address: string;
192
+ nonce: string | number | bigint;
193
193
  v?: string | number | bigint | undefined;
194
194
  } | null | undefined;
195
195
  }>;
@@ -218,20 +218,20 @@ declare const userOperationSchemaPaymasterV7: z.ZodEffects<z.ZodObject<{
218
218
  v: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>>;
219
219
  yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
220
220
  }, "strip", z.ZodTypeAny, {
221
- contractAddress: `0x${string}`;
222
221
  chainId: number;
223
- nonce: number;
224
222
  r: `0x${string}`;
225
223
  s: `0x${string}`;
226
224
  yParity: number;
225
+ nonce: number;
226
+ contractAddress: `0x${string}`;
227
227
  v?: bigint | undefined;
228
228
  }, {
229
- contractAddress: string;
230
229
  chainId: string | number | bigint;
231
- nonce: string | number | bigint;
232
230
  r: string;
233
231
  s: string;
234
232
  yParity: string | number | bigint;
233
+ nonce: string | number | bigint;
234
+ contractAddress: string;
235
235
  v?: string | number | bigint | undefined;
236
236
  }>, z.ZodObject<{
237
237
  address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
@@ -242,150 +242,150 @@ declare const userOperationSchemaPaymasterV7: z.ZodEffects<z.ZodObject<{
242
242
  v: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>>;
243
243
  yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
244
244
  }, "strip", z.ZodTypeAny, {
245
+ address: `0x${string}`;
245
246
  chainId: number;
246
- nonce: number;
247
247
  r: `0x${string}`;
248
248
  s: `0x${string}`;
249
249
  yParity: number;
250
- address: `0x${string}`;
250
+ nonce: number;
251
251
  v?: bigint | undefined;
252
252
  }, {
253
+ address: string;
253
254
  chainId: string | number | bigint;
254
- nonce: string | number | bigint;
255
255
  r: string;
256
256
  s: string;
257
257
  yParity: string | number | bigint;
258
- address: string;
258
+ nonce: string | number | bigint;
259
259
  v?: string | number | bigint | undefined;
260
260
  }>]>>>;
261
261
  }, "strict", z.ZodTypeAny, {
262
262
  nonce: bigint;
263
+ maxFeePerGas: bigint;
264
+ maxPriorityFeePerGas: bigint;
265
+ signature: `0x${string}`;
263
266
  sender: `0x${string}`;
264
267
  callData: `0x${string}`;
265
268
  callGasLimit: bigint;
266
269
  verificationGasLimit: bigint;
267
270
  preVerificationGas: bigint;
268
- maxPriorityFeePerGas: bigint;
269
- maxFeePerGas: bigint;
270
- signature: `0x${string}`;
271
+ factory?: `0x${string}` | undefined;
272
+ factoryData?: `0x${string}` | undefined;
271
273
  eip7702Auth?: {
272
- contractAddress: `0x${string}`;
273
274
  chainId: number;
274
- nonce: number;
275
275
  r: `0x${string}`;
276
276
  s: `0x${string}`;
277
277
  yParity: number;
278
+ nonce: number;
279
+ contractAddress: `0x${string}`;
278
280
  v?: bigint | undefined;
279
281
  } | {
282
+ address: `0x${string}`;
280
283
  chainId: number;
281
- nonce: number;
282
284
  r: `0x${string}`;
283
285
  s: `0x${string}`;
284
286
  yParity: number;
285
- address: `0x${string}`;
287
+ nonce: number;
286
288
  v?: bigint | undefined;
287
289
  } | null | undefined;
288
- factory?: `0x${string}` | undefined;
289
- factoryData?: `0x${string}` | undefined;
290
290
  paymaster?: `0x${string}` | undefined;
291
291
  paymasterVerificationGasLimit?: bigint | undefined;
292
292
  paymasterPostOpGasLimit?: bigint | undefined;
293
293
  paymasterData?: `0x${string}` | undefined;
294
294
  }, {
295
295
  nonce: string | number | bigint;
296
+ maxFeePerGas: string | number | bigint;
297
+ maxPriorityFeePerGas: string | number | bigint;
296
298
  sender: string;
297
299
  callData: string;
298
- maxPriorityFeePerGas: string | number | bigint;
299
- maxFeePerGas: string | number | bigint;
300
+ factory?: string | undefined;
301
+ factoryData?: string | undefined;
302
+ signature?: string | undefined;
300
303
  callGasLimit?: string | number | bigint | undefined;
301
304
  verificationGasLimit?: string | number | bigint | undefined;
302
305
  preVerificationGas?: string | number | bigint | undefined;
303
- signature?: string | undefined;
304
306
  eip7702Auth?: {
305
- contractAddress: string;
306
307
  chainId: string | number | bigint;
307
- nonce: string | number | bigint;
308
308
  r: string;
309
309
  s: string;
310
310
  yParity: string | number | bigint;
311
+ nonce: string | number | bigint;
312
+ contractAddress: string;
311
313
  v?: string | number | bigint | undefined;
312
314
  } | {
315
+ address: string;
313
316
  chainId: string | number | bigint;
314
- nonce: string | number | bigint;
315
317
  r: string;
316
318
  s: string;
317
319
  yParity: string | number | bigint;
318
- address: string;
320
+ nonce: string | number | bigint;
319
321
  v?: string | number | bigint | undefined;
320
322
  } | null | undefined;
321
- factory?: string | undefined;
322
- factoryData?: string | undefined;
323
323
  paymaster?: string | null | undefined;
324
324
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
325
325
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
326
326
  paymasterData?: string | null | undefined;
327
327
  }>, {
328
328
  nonce: bigint;
329
+ maxFeePerGas: bigint;
330
+ maxPriorityFeePerGas: bigint;
331
+ signature: `0x${string}`;
329
332
  sender: `0x${string}`;
330
333
  callData: `0x${string}`;
331
334
  callGasLimit: bigint;
332
335
  verificationGasLimit: bigint;
333
336
  preVerificationGas: bigint;
334
- maxPriorityFeePerGas: bigint;
335
- maxFeePerGas: bigint;
336
- signature: `0x${string}`;
337
+ factory?: `0x${string}` | undefined;
338
+ factoryData?: `0x${string}` | undefined;
337
339
  eip7702Auth?: {
338
- contractAddress: `0x${string}`;
339
340
  chainId: number;
340
- nonce: number;
341
341
  r: `0x${string}`;
342
342
  s: `0x${string}`;
343
343
  yParity: number;
344
+ nonce: number;
345
+ contractAddress: `0x${string}`;
344
346
  v?: bigint | undefined;
345
347
  } | {
348
+ address: `0x${string}`;
346
349
  chainId: number;
347
- nonce: number;
348
350
  r: `0x${string}`;
349
351
  s: `0x${string}`;
350
352
  yParity: number;
351
- address: `0x${string}`;
353
+ nonce: number;
352
354
  v?: bigint | undefined;
353
355
  } | null | undefined;
354
- factory?: `0x${string}` | undefined;
355
- factoryData?: `0x${string}` | undefined;
356
356
  paymaster?: `0x${string}` | undefined;
357
357
  paymasterVerificationGasLimit?: bigint | undefined;
358
358
  paymasterPostOpGasLimit?: bigint | undefined;
359
359
  paymasterData?: `0x${string}` | undefined;
360
360
  }, {
361
361
  nonce: string | number | bigint;
362
+ maxFeePerGas: string | number | bigint;
363
+ maxPriorityFeePerGas: string | number | bigint;
362
364
  sender: string;
363
365
  callData: string;
364
- maxPriorityFeePerGas: string | number | bigint;
365
- maxFeePerGas: string | number | bigint;
366
+ factory?: string | undefined;
367
+ factoryData?: string | undefined;
368
+ signature?: string | undefined;
366
369
  callGasLimit?: string | number | bigint | undefined;
367
370
  verificationGasLimit?: string | number | bigint | undefined;
368
371
  preVerificationGas?: string | number | bigint | undefined;
369
- signature?: string | undefined;
370
372
  eip7702Auth?: {
371
- contractAddress: string;
372
373
  chainId: string | number | bigint;
373
- nonce: string | number | bigint;
374
374
  r: string;
375
375
  s: string;
376
376
  yParity: string | number | bigint;
377
+ nonce: string | number | bigint;
378
+ contractAddress: string;
377
379
  v?: string | number | bigint | undefined;
378
380
  } | {
381
+ address: string;
379
382
  chainId: string | number | bigint;
380
- nonce: string | number | bigint;
381
383
  r: string;
382
384
  s: string;
383
385
  yParity: string | number | bigint;
384
- address: string;
386
+ nonce: string | number | bigint;
385
387
  v?: string | number | bigint | undefined;
386
388
  } | null | undefined;
387
- factory?: string | undefined;
388
- factoryData?: string | undefined;
389
389
  paymaster?: string | null | undefined;
390
390
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
391
391
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
@@ -396,12 +396,12 @@ export declare const jsonRpcResultSchema: z.ZodObject<{
396
396
  id: z.ZodNumber;
397
397
  result: z.ZodUnknown;
398
398
  }, "strict", z.ZodTypeAny, {
399
- jsonrpc: "2.0";
400
399
  id: number;
400
+ jsonrpc: "2.0";
401
401
  result?: unknown;
402
402
  }, {
403
- jsonrpc: "2.0";
404
403
  id: number;
404
+ jsonrpc: "2.0";
405
405
  result?: unknown;
406
406
  }>;
407
407
  export declare const jsonRpcSchema: z.ZodObject<{
@@ -410,14 +410,14 @@ export declare const jsonRpcSchema: z.ZodObject<{
410
410
  method: z.ZodString;
411
411
  params: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>>;
412
412
  }, "strict", z.ZodTypeAny, {
413
- params: unknown[];
414
- jsonrpc: "2.0";
415
413
  id: number;
416
414
  method: string;
417
- }, {
415
+ params: unknown[];
418
416
  jsonrpc: "2.0";
417
+ }, {
419
418
  id: number;
420
419
  method: string;
420
+ jsonrpc: "2.0";
421
421
  params?: unknown[] | undefined;
422
422
  }>;
423
423
  export declare const pmSponsorUserOperationParamsSchema: z.ZodTuple<[z.ZodUnion<[z.ZodEffects<z.ZodObject<{
@@ -441,20 +441,20 @@ export declare const pmSponsorUserOperationParamsSchema: z.ZodTuple<[z.ZodUnion<
441
441
  v: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>>;
442
442
  yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
443
443
  }, "strip", z.ZodTypeAny, {
444
- contractAddress: `0x${string}`;
445
444
  chainId: number;
446
- nonce: number;
447
445
  r: `0x${string}`;
448
446
  s: `0x${string}`;
449
447
  yParity: number;
448
+ nonce: number;
449
+ contractAddress: `0x${string}`;
450
450
  v?: bigint | undefined;
451
451
  }, {
452
- contractAddress: string;
453
452
  chainId: string | number | bigint;
454
- nonce: string | number | bigint;
455
453
  r: string;
456
454
  s: string;
457
455
  yParity: string | number | bigint;
456
+ nonce: string | number | bigint;
457
+ contractAddress: string;
458
458
  v?: string | number | bigint | undefined;
459
459
  }>, z.ZodObject<{
460
460
  address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
@@ -465,136 +465,136 @@ export declare const pmSponsorUserOperationParamsSchema: z.ZodTuple<[z.ZodUnion<
465
465
  v: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>>;
466
466
  yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
467
467
  }, "strip", z.ZodTypeAny, {
468
+ address: `0x${string}`;
468
469
  chainId: number;
469
- nonce: number;
470
470
  r: `0x${string}`;
471
471
  s: `0x${string}`;
472
472
  yParity: number;
473
- address: `0x${string}`;
473
+ nonce: number;
474
474
  v?: bigint | undefined;
475
475
  }, {
476
+ address: string;
476
477
  chainId: string | number | bigint;
477
- nonce: string | number | bigint;
478
478
  r: string;
479
479
  s: string;
480
480
  yParity: string | number | bigint;
481
- address: string;
481
+ nonce: string | number | bigint;
482
482
  v?: string | number | bigint | undefined;
483
483
  }>]>>>;
484
484
  }, "strict", z.ZodTypeAny, {
485
485
  nonce: bigint;
486
+ maxFeePerGas: bigint;
487
+ maxPriorityFeePerGas: bigint;
488
+ signature: `0x${string}`;
486
489
  sender: `0x${string}`;
487
490
  initCode: `0x${string}`;
488
491
  callData: `0x${string}`;
489
492
  callGasLimit: bigint;
490
493
  verificationGasLimit: bigint;
491
494
  preVerificationGas: bigint;
492
- maxPriorityFeePerGas: bigint;
493
- maxFeePerGas: bigint;
494
- signature: `0x${string}`;
495
495
  paymasterAndData?: `0x${string}` | undefined;
496
496
  eip7702Auth?: {
497
- contractAddress: `0x${string}`;
498
497
  chainId: number;
499
- nonce: number;
500
498
  r: `0x${string}`;
501
499
  s: `0x${string}`;
502
500
  yParity: number;
501
+ nonce: number;
502
+ contractAddress: `0x${string}`;
503
503
  v?: bigint | undefined;
504
504
  } | {
505
+ address: `0x${string}`;
505
506
  chainId: number;
506
- nonce: number;
507
507
  r: `0x${string}`;
508
508
  s: `0x${string}`;
509
509
  yParity: number;
510
- address: `0x${string}`;
510
+ nonce: number;
511
511
  v?: bigint | undefined;
512
512
  } | null | undefined;
513
513
  }, {
514
514
  nonce: string | number | bigint;
515
+ maxFeePerGas: string | number | bigint;
516
+ maxPriorityFeePerGas: string | number | bigint;
515
517
  sender: string;
516
518
  initCode: string;
517
519
  callData: string;
518
- maxPriorityFeePerGas: string | number | bigint;
519
- maxFeePerGas: string | number | bigint;
520
+ signature?: string | undefined;
520
521
  callGasLimit?: string | number | bigint | undefined;
521
522
  verificationGasLimit?: string | number | bigint | undefined;
522
523
  preVerificationGas?: string | number | bigint | undefined;
523
524
  paymasterAndData?: string | null | undefined;
524
- signature?: string | undefined;
525
525
  eip7702Auth?: {
526
- contractAddress: string;
527
526
  chainId: string | number | bigint;
528
- nonce: string | number | bigint;
529
527
  r: string;
530
528
  s: string;
531
529
  yParity: string | number | bigint;
530
+ nonce: string | number | bigint;
531
+ contractAddress: string;
532
532
  v?: string | number | bigint | undefined;
533
533
  } | {
534
+ address: string;
534
535
  chainId: string | number | bigint;
535
- nonce: string | number | bigint;
536
536
  r: string;
537
537
  s: string;
538
538
  yParity: string | number | bigint;
539
- address: string;
539
+ nonce: string | number | bigint;
540
540
  v?: string | number | bigint | undefined;
541
541
  } | null | undefined;
542
542
  }>, {
543
543
  nonce: bigint;
544
+ maxFeePerGas: bigint;
545
+ maxPriorityFeePerGas: bigint;
546
+ signature: `0x${string}`;
544
547
  sender: `0x${string}`;
545
548
  initCode: `0x${string}`;
546
549
  callData: `0x${string}`;
547
550
  callGasLimit: bigint;
548
551
  verificationGasLimit: bigint;
549
552
  preVerificationGas: bigint;
550
- maxPriorityFeePerGas: bigint;
551
- maxFeePerGas: bigint;
552
- signature: `0x${string}`;
553
553
  paymasterAndData?: `0x${string}` | undefined;
554
554
  eip7702Auth?: {
555
- contractAddress: `0x${string}`;
556
555
  chainId: number;
557
- nonce: number;
558
556
  r: `0x${string}`;
559
557
  s: `0x${string}`;
560
558
  yParity: number;
559
+ nonce: number;
560
+ contractAddress: `0x${string}`;
561
561
  v?: bigint | undefined;
562
562
  } | {
563
+ address: `0x${string}`;
563
564
  chainId: number;
564
- nonce: number;
565
565
  r: `0x${string}`;
566
566
  s: `0x${string}`;
567
567
  yParity: number;
568
- address: `0x${string}`;
568
+ nonce: number;
569
569
  v?: bigint | undefined;
570
570
  } | null | undefined;
571
571
  }, {
572
572
  nonce: string | number | bigint;
573
+ maxFeePerGas: string | number | bigint;
574
+ maxPriorityFeePerGas: string | number | bigint;
573
575
  sender: string;
574
576
  initCode: string;
575
577
  callData: string;
576
- maxPriorityFeePerGas: string | number | bigint;
577
- maxFeePerGas: string | number | bigint;
578
+ signature?: string | undefined;
578
579
  callGasLimit?: string | number | bigint | undefined;
579
580
  verificationGasLimit?: string | number | bigint | undefined;
580
581
  preVerificationGas?: string | number | bigint | undefined;
581
582
  paymasterAndData?: string | null | undefined;
582
- signature?: string | undefined;
583
583
  eip7702Auth?: {
584
- contractAddress: string;
585
584
  chainId: string | number | bigint;
586
- nonce: string | number | bigint;
587
585
  r: string;
588
586
  s: string;
589
587
  yParity: string | number | bigint;
588
+ nonce: string | number | bigint;
589
+ contractAddress: string;
590
590
  v?: string | number | bigint | undefined;
591
591
  } | {
592
+ address: string;
592
593
  chainId: string | number | bigint;
593
- nonce: string | number | bigint;
594
594
  r: string;
595
595
  s: string;
596
596
  yParity: string | number | bigint;
597
- address: string;
597
+ nonce: string | number | bigint;
598
598
  v?: string | number | bigint | undefined;
599
599
  } | null | undefined;
600
600
  }>, z.ZodEffects<z.ZodObject<{
@@ -622,20 +622,20 @@ export declare const pmSponsorUserOperationParamsSchema: z.ZodTuple<[z.ZodUnion<
622
622
  v: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>>;
623
623
  yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
624
624
  }, "strip", z.ZodTypeAny, {
625
- contractAddress: `0x${string}`;
626
625
  chainId: number;
627
- nonce: number;
628
626
  r: `0x${string}`;
629
627
  s: `0x${string}`;
630
628
  yParity: number;
629
+ nonce: number;
630
+ contractAddress: `0x${string}`;
631
631
  v?: bigint | undefined;
632
632
  }, {
633
- contractAddress: string;
634
633
  chainId: string | number | bigint;
635
- nonce: string | number | bigint;
636
634
  r: string;
637
635
  s: string;
638
636
  yParity: string | number | bigint;
637
+ nonce: string | number | bigint;
638
+ contractAddress: string;
639
639
  v?: string | number | bigint | undefined;
640
640
  }>, z.ZodObject<{
641
641
  address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
@@ -646,150 +646,150 @@ export declare const pmSponsorUserOperationParamsSchema: z.ZodTuple<[z.ZodUnion<
646
646
  v: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>>;
647
647
  yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
648
648
  }, "strip", z.ZodTypeAny, {
649
+ address: `0x${string}`;
649
650
  chainId: number;
650
- nonce: number;
651
651
  r: `0x${string}`;
652
652
  s: `0x${string}`;
653
653
  yParity: number;
654
- address: `0x${string}`;
654
+ nonce: number;
655
655
  v?: bigint | undefined;
656
656
  }, {
657
+ address: string;
657
658
  chainId: string | number | bigint;
658
- nonce: string | number | bigint;
659
659
  r: string;
660
660
  s: string;
661
661
  yParity: string | number | bigint;
662
- address: string;
662
+ nonce: string | number | bigint;
663
663
  v?: string | number | bigint | undefined;
664
664
  }>]>>>;
665
665
  }, "strict", z.ZodTypeAny, {
666
666
  nonce: bigint;
667
+ maxFeePerGas: bigint;
668
+ maxPriorityFeePerGas: bigint;
669
+ signature: `0x${string}`;
667
670
  sender: `0x${string}`;
668
671
  callData: `0x${string}`;
669
672
  callGasLimit: bigint;
670
673
  verificationGasLimit: bigint;
671
674
  preVerificationGas: bigint;
672
- maxPriorityFeePerGas: bigint;
673
- maxFeePerGas: bigint;
674
- signature: `0x${string}`;
675
+ factory?: `0x${string}` | undefined;
676
+ factoryData?: `0x${string}` | undefined;
675
677
  eip7702Auth?: {
676
- contractAddress: `0x${string}`;
677
678
  chainId: number;
678
- nonce: number;
679
679
  r: `0x${string}`;
680
680
  s: `0x${string}`;
681
681
  yParity: number;
682
+ nonce: number;
683
+ contractAddress: `0x${string}`;
682
684
  v?: bigint | undefined;
683
685
  } | {
686
+ address: `0x${string}`;
684
687
  chainId: number;
685
- nonce: number;
686
688
  r: `0x${string}`;
687
689
  s: `0x${string}`;
688
690
  yParity: number;
689
- address: `0x${string}`;
691
+ nonce: number;
690
692
  v?: bigint | undefined;
691
693
  } | null | undefined;
692
- factory?: `0x${string}` | undefined;
693
- factoryData?: `0x${string}` | undefined;
694
694
  paymaster?: `0x${string}` | undefined;
695
695
  paymasterVerificationGasLimit?: bigint | undefined;
696
696
  paymasterPostOpGasLimit?: bigint | undefined;
697
697
  paymasterData?: `0x${string}` | undefined;
698
698
  }, {
699
699
  nonce: string | number | bigint;
700
+ maxFeePerGas: string | number | bigint;
701
+ maxPriorityFeePerGas: string | number | bigint;
700
702
  sender: string;
701
703
  callData: string;
702
- maxPriorityFeePerGas: string | number | bigint;
703
- maxFeePerGas: string | number | bigint;
704
+ factory?: string | undefined;
705
+ factoryData?: string | undefined;
706
+ signature?: string | undefined;
704
707
  callGasLimit?: string | number | bigint | undefined;
705
708
  verificationGasLimit?: string | number | bigint | undefined;
706
709
  preVerificationGas?: string | number | bigint | undefined;
707
- signature?: string | undefined;
708
710
  eip7702Auth?: {
709
- contractAddress: string;
710
711
  chainId: string | number | bigint;
711
- nonce: string | number | bigint;
712
712
  r: string;
713
713
  s: string;
714
714
  yParity: string | number | bigint;
715
+ nonce: string | number | bigint;
716
+ contractAddress: string;
715
717
  v?: string | number | bigint | undefined;
716
718
  } | {
719
+ address: string;
717
720
  chainId: string | number | bigint;
718
- nonce: string | number | bigint;
719
721
  r: string;
720
722
  s: string;
721
723
  yParity: string | number | bigint;
722
- address: string;
724
+ nonce: string | number | bigint;
723
725
  v?: string | number | bigint | undefined;
724
726
  } | null | undefined;
725
- factory?: string | undefined;
726
- factoryData?: string | undefined;
727
727
  paymaster?: string | null | undefined;
728
728
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
729
729
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
730
730
  paymasterData?: string | null | undefined;
731
731
  }>, {
732
732
  nonce: bigint;
733
+ maxFeePerGas: bigint;
734
+ maxPriorityFeePerGas: bigint;
735
+ signature: `0x${string}`;
733
736
  sender: `0x${string}`;
734
737
  callData: `0x${string}`;
735
738
  callGasLimit: bigint;
736
739
  verificationGasLimit: bigint;
737
740
  preVerificationGas: bigint;
738
- maxPriorityFeePerGas: bigint;
739
- maxFeePerGas: bigint;
740
- signature: `0x${string}`;
741
+ factory?: `0x${string}` | undefined;
742
+ factoryData?: `0x${string}` | undefined;
741
743
  eip7702Auth?: {
742
- contractAddress: `0x${string}`;
743
744
  chainId: number;
744
- nonce: number;
745
745
  r: `0x${string}`;
746
746
  s: `0x${string}`;
747
747
  yParity: number;
748
+ nonce: number;
749
+ contractAddress: `0x${string}`;
748
750
  v?: bigint | undefined;
749
751
  } | {
752
+ address: `0x${string}`;
750
753
  chainId: number;
751
- nonce: number;
752
754
  r: `0x${string}`;
753
755
  s: `0x${string}`;
754
756
  yParity: number;
755
- address: `0x${string}`;
757
+ nonce: number;
756
758
  v?: bigint | undefined;
757
759
  } | null | undefined;
758
- factory?: `0x${string}` | undefined;
759
- factoryData?: `0x${string}` | undefined;
760
760
  paymaster?: `0x${string}` | undefined;
761
761
  paymasterVerificationGasLimit?: bigint | undefined;
762
762
  paymasterPostOpGasLimit?: bigint | undefined;
763
763
  paymasterData?: `0x${string}` | undefined;
764
764
  }, {
765
765
  nonce: string | number | bigint;
766
+ maxFeePerGas: string | number | bigint;
767
+ maxPriorityFeePerGas: string | number | bigint;
766
768
  sender: string;
767
769
  callData: string;
768
- maxPriorityFeePerGas: string | number | bigint;
769
- maxFeePerGas: string | number | bigint;
770
+ factory?: string | undefined;
771
+ factoryData?: string | undefined;
772
+ signature?: string | undefined;
770
773
  callGasLimit?: string | number | bigint | undefined;
771
774
  verificationGasLimit?: string | number | bigint | undefined;
772
775
  preVerificationGas?: string | number | bigint | undefined;
773
- signature?: string | undefined;
774
776
  eip7702Auth?: {
775
- contractAddress: string;
776
777
  chainId: string | number | bigint;
777
- nonce: string | number | bigint;
778
778
  r: string;
779
779
  s: string;
780
780
  yParity: string | number | bigint;
781
+ nonce: string | number | bigint;
782
+ contractAddress: string;
781
783
  v?: string | number | bigint | undefined;
782
784
  } | {
785
+ address: string;
783
786
  chainId: string | number | bigint;
784
- nonce: string | number | bigint;
785
787
  r: string;
786
788
  s: string;
787
789
  yParity: string | number | bigint;
788
- address: string;
790
+ nonce: string | number | bigint;
789
791
  v?: string | number | bigint | undefined;
790
792
  } | null | undefined;
791
- factory?: string | undefined;
792
- factoryData?: string | undefined;
793
793
  paymaster?: string | null | undefined;
794
794
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
795
795
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
@@ -816,20 +816,20 @@ export declare const pmGetPaymasterData: z.ZodEffects<z.ZodUnion<[z.ZodTuple<[z.
816
816
  v: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>>;
817
817
  yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
818
818
  }, "strip", z.ZodTypeAny, {
819
- contractAddress: `0x${string}`;
820
819
  chainId: number;
821
- nonce: number;
822
820
  r: `0x${string}`;
823
821
  s: `0x${string}`;
824
822
  yParity: number;
823
+ nonce: number;
824
+ contractAddress: `0x${string}`;
825
825
  v?: bigint | undefined;
826
826
  }, {
827
- contractAddress: string;
828
827
  chainId: string | number | bigint;
829
- nonce: string | number | bigint;
830
828
  r: string;
831
829
  s: string;
832
830
  yParity: string | number | bigint;
831
+ nonce: string | number | bigint;
832
+ contractAddress: string;
833
833
  v?: string | number | bigint | undefined;
834
834
  }>, z.ZodObject<{
835
835
  address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
@@ -840,136 +840,136 @@ export declare const pmGetPaymasterData: z.ZodEffects<z.ZodUnion<[z.ZodTuple<[z.
840
840
  v: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>>;
841
841
  yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
842
842
  }, "strip", z.ZodTypeAny, {
843
+ address: `0x${string}`;
843
844
  chainId: number;
844
- nonce: number;
845
845
  r: `0x${string}`;
846
846
  s: `0x${string}`;
847
847
  yParity: number;
848
- address: `0x${string}`;
848
+ nonce: number;
849
849
  v?: bigint | undefined;
850
850
  }, {
851
+ address: string;
851
852
  chainId: string | number | bigint;
852
- nonce: string | number | bigint;
853
853
  r: string;
854
854
  s: string;
855
855
  yParity: string | number | bigint;
856
- address: string;
856
+ nonce: string | number | bigint;
857
857
  v?: string | number | bigint | undefined;
858
858
  }>]>>>;
859
859
  }, "strict", z.ZodTypeAny, {
860
860
  nonce: bigint;
861
+ maxFeePerGas: bigint;
862
+ maxPriorityFeePerGas: bigint;
863
+ signature: `0x${string}`;
861
864
  sender: `0x${string}`;
862
865
  initCode: `0x${string}`;
863
866
  callData: `0x${string}`;
864
867
  callGasLimit: bigint;
865
868
  verificationGasLimit: bigint;
866
869
  preVerificationGas: bigint;
867
- maxPriorityFeePerGas: bigint;
868
- maxFeePerGas: bigint;
869
870
  paymasterAndData: `0x${string}`;
870
- signature: `0x${string}`;
871
871
  eip7702Auth?: {
872
- contractAddress: `0x${string}`;
873
872
  chainId: number;
874
- nonce: number;
875
873
  r: `0x${string}`;
876
874
  s: `0x${string}`;
877
875
  yParity: number;
876
+ nonce: number;
877
+ contractAddress: `0x${string}`;
878
878
  v?: bigint | undefined;
879
879
  } | {
880
+ address: `0x${string}`;
880
881
  chainId: number;
881
- nonce: number;
882
882
  r: `0x${string}`;
883
883
  s: `0x${string}`;
884
884
  yParity: number;
885
- address: `0x${string}`;
885
+ nonce: number;
886
886
  v?: bigint | undefined;
887
887
  } | null | undefined;
888
888
  }, {
889
889
  nonce: string | number | bigint;
890
+ maxFeePerGas: string | number | bigint;
891
+ maxPriorityFeePerGas: string | number | bigint;
890
892
  sender: string;
891
893
  initCode: string;
892
894
  callData: string;
893
895
  callGasLimit: string | number | bigint;
894
896
  verificationGasLimit: string | number | bigint;
895
897
  preVerificationGas: string | number | bigint;
896
- maxPriorityFeePerGas: string | number | bigint;
897
- maxFeePerGas: string | number | bigint;
898
- paymasterAndData?: string | null | undefined;
899
898
  signature?: string | null | undefined;
899
+ paymasterAndData?: string | null | undefined;
900
900
  eip7702Auth?: {
901
- contractAddress: string;
902
901
  chainId: string | number | bigint;
903
- nonce: string | number | bigint;
904
902
  r: string;
905
903
  s: string;
906
904
  yParity: string | number | bigint;
905
+ nonce: string | number | bigint;
906
+ contractAddress: string;
907
907
  v?: string | number | bigint | undefined;
908
908
  } | {
909
+ address: string;
909
910
  chainId: string | number | bigint;
910
- nonce: string | number | bigint;
911
911
  r: string;
912
912
  s: string;
913
913
  yParity: string | number | bigint;
914
- address: string;
914
+ nonce: string | number | bigint;
915
915
  v?: string | number | bigint | undefined;
916
916
  } | null | undefined;
917
917
  }>, {
918
918
  nonce: bigint;
919
+ maxFeePerGas: bigint;
920
+ maxPriorityFeePerGas: bigint;
921
+ signature: `0x${string}`;
919
922
  sender: `0x${string}`;
920
923
  initCode: `0x${string}`;
921
924
  callData: `0x${string}`;
922
925
  callGasLimit: bigint;
923
926
  verificationGasLimit: bigint;
924
927
  preVerificationGas: bigint;
925
- maxPriorityFeePerGas: bigint;
926
- maxFeePerGas: bigint;
927
928
  paymasterAndData: `0x${string}`;
928
- signature: `0x${string}`;
929
929
  eip7702Auth?: {
930
- contractAddress: `0x${string}`;
931
930
  chainId: number;
932
- nonce: number;
933
931
  r: `0x${string}`;
934
932
  s: `0x${string}`;
935
933
  yParity: number;
934
+ nonce: number;
935
+ contractAddress: `0x${string}`;
936
936
  v?: bigint | undefined;
937
937
  } | {
938
+ address: `0x${string}`;
938
939
  chainId: number;
939
- nonce: number;
940
940
  r: `0x${string}`;
941
941
  s: `0x${string}`;
942
942
  yParity: number;
943
- address: `0x${string}`;
943
+ nonce: number;
944
944
  v?: bigint | undefined;
945
945
  } | null | undefined;
946
946
  }, {
947
947
  nonce: string | number | bigint;
948
+ maxFeePerGas: string | number | bigint;
949
+ maxPriorityFeePerGas: string | number | bigint;
948
950
  sender: string;
949
951
  initCode: string;
950
952
  callData: string;
951
953
  callGasLimit: string | number | bigint;
952
954
  verificationGasLimit: string | number | bigint;
953
955
  preVerificationGas: string | number | bigint;
954
- maxPriorityFeePerGas: string | number | bigint;
955
- maxFeePerGas: string | number | bigint;
956
- paymasterAndData?: string | null | undefined;
957
956
  signature?: string | null | undefined;
957
+ paymasterAndData?: string | null | undefined;
958
958
  eip7702Auth?: {
959
- contractAddress: string;
960
959
  chainId: string | number | bigint;
961
- nonce: string | number | bigint;
962
960
  r: string;
963
961
  s: string;
964
962
  yParity: string | number | bigint;
963
+ nonce: string | number | bigint;
964
+ contractAddress: string;
965
965
  v?: string | number | bigint | undefined;
966
966
  } | {
967
+ address: string;
967
968
  chainId: string | number | bigint;
968
- nonce: string | number | bigint;
969
969
  r: string;
970
970
  s: string;
971
971
  yParity: string | number | bigint;
972
- address: string;
972
+ nonce: string | number | bigint;
973
973
  v?: string | number | bigint | undefined;
974
974
  } | null | undefined;
975
975
  }>, z.ZodEffects<z.ZodObject<{
@@ -997,20 +997,20 @@ export declare const pmGetPaymasterData: z.ZodEffects<z.ZodUnion<[z.ZodTuple<[z.
997
997
  v: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>>;
998
998
  yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
999
999
  }, "strip", z.ZodTypeAny, {
1000
- contractAddress: `0x${string}`;
1001
1000
  chainId: number;
1002
- nonce: number;
1003
1001
  r: `0x${string}`;
1004
1002
  s: `0x${string}`;
1005
1003
  yParity: number;
1004
+ nonce: number;
1005
+ contractAddress: `0x${string}`;
1006
1006
  v?: bigint | undefined;
1007
1007
  }, {
1008
- contractAddress: string;
1009
1008
  chainId: string | number | bigint;
1010
- nonce: string | number | bigint;
1011
1009
  r: string;
1012
1010
  s: string;
1013
1011
  yParity: string | number | bigint;
1012
+ nonce: string | number | bigint;
1013
+ contractAddress: string;
1014
1014
  v?: string | number | bigint | undefined;
1015
1015
  }>, z.ZodObject<{
1016
1016
  address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
@@ -1021,150 +1021,150 @@ export declare const pmGetPaymasterData: z.ZodEffects<z.ZodUnion<[z.ZodTuple<[z.
1021
1021
  v: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>>;
1022
1022
  yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
1023
1023
  }, "strip", z.ZodTypeAny, {
1024
+ address: `0x${string}`;
1024
1025
  chainId: number;
1025
- nonce: number;
1026
1026
  r: `0x${string}`;
1027
1027
  s: `0x${string}`;
1028
1028
  yParity: number;
1029
- address: `0x${string}`;
1029
+ nonce: number;
1030
1030
  v?: bigint | undefined;
1031
1031
  }, {
1032
+ address: string;
1032
1033
  chainId: string | number | bigint;
1033
- nonce: string | number | bigint;
1034
1034
  r: string;
1035
1035
  s: string;
1036
1036
  yParity: string | number | bigint;
1037
- address: string;
1037
+ nonce: string | number | bigint;
1038
1038
  v?: string | number | bigint | undefined;
1039
1039
  }>]>>>;
1040
1040
  }, "strict", z.ZodTypeAny, {
1041
1041
  nonce: bigint;
1042
+ maxFeePerGas: bigint;
1043
+ maxPriorityFeePerGas: bigint;
1044
+ factory: `0x${string}` | null;
1045
+ factoryData: `0x${string}` | null;
1046
+ signature: `0x${string}`;
1042
1047
  sender: `0x${string}`;
1043
1048
  callData: `0x${string}`;
1044
1049
  callGasLimit: bigint;
1045
1050
  verificationGasLimit: bigint;
1046
1051
  preVerificationGas: bigint;
1047
- maxPriorityFeePerGas: bigint;
1048
- maxFeePerGas: bigint;
1049
- signature: `0x${string}`;
1050
- factory: `0x${string}` | null;
1051
- factoryData: `0x${string}` | null;
1052
1052
  paymaster: `0x${string}` | null;
1053
1053
  paymasterVerificationGasLimit: bigint | null;
1054
1054
  paymasterPostOpGasLimit: bigint | null;
1055
1055
  paymasterData: `0x${string}` | null;
1056
1056
  eip7702Auth?: {
1057
- contractAddress: `0x${string}`;
1058
1057
  chainId: number;
1059
- nonce: number;
1060
1058
  r: `0x${string}`;
1061
1059
  s: `0x${string}`;
1062
1060
  yParity: number;
1061
+ nonce: number;
1062
+ contractAddress: `0x${string}`;
1063
1063
  v?: bigint | undefined;
1064
1064
  } | {
1065
+ address: `0x${string}`;
1065
1066
  chainId: number;
1066
- nonce: number;
1067
1067
  r: `0x${string}`;
1068
1068
  s: `0x${string}`;
1069
1069
  yParity: number;
1070
- address: `0x${string}`;
1070
+ nonce: number;
1071
1071
  v?: bigint | undefined;
1072
1072
  } | null | undefined;
1073
1073
  }, {
1074
1074
  nonce: string | number | bigint;
1075
+ maxFeePerGas: string | number | bigint;
1076
+ maxPriorityFeePerGas: string | number | bigint;
1075
1077
  sender: string;
1076
1078
  callData: string;
1077
1079
  callGasLimit: string | number | bigint;
1078
1080
  verificationGasLimit: string | number | bigint;
1079
1081
  preVerificationGas: string | number | bigint;
1080
- maxPriorityFeePerGas: string | number | bigint;
1081
- maxFeePerGas: string | number | bigint;
1082
+ factory?: string | null | undefined;
1083
+ factoryData?: string | null | undefined;
1082
1084
  signature?: string | undefined;
1083
1085
  eip7702Auth?: {
1084
- contractAddress: string;
1085
1086
  chainId: string | number | bigint;
1086
- nonce: string | number | bigint;
1087
1087
  r: string;
1088
1088
  s: string;
1089
1089
  yParity: string | number | bigint;
1090
+ nonce: string | number | bigint;
1091
+ contractAddress: string;
1090
1092
  v?: string | number | bigint | undefined;
1091
1093
  } | {
1094
+ address: string;
1092
1095
  chainId: string | number | bigint;
1093
- nonce: string | number | bigint;
1094
1096
  r: string;
1095
1097
  s: string;
1096
1098
  yParity: string | number | bigint;
1097
- address: string;
1099
+ nonce: string | number | bigint;
1098
1100
  v?: string | number | bigint | undefined;
1099
1101
  } | null | undefined;
1100
- factory?: string | null | undefined;
1101
- factoryData?: string | null | undefined;
1102
1102
  paymaster?: string | null | undefined;
1103
1103
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
1104
1104
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
1105
1105
  paymasterData?: string | null | undefined;
1106
1106
  }>, {
1107
1107
  nonce: bigint;
1108
+ maxFeePerGas: bigint;
1109
+ maxPriorityFeePerGas: bigint;
1110
+ factory: `0x${string}` | null;
1111
+ factoryData: `0x${string}` | null;
1112
+ signature: `0x${string}`;
1108
1113
  sender: `0x${string}`;
1109
1114
  callData: `0x${string}`;
1110
1115
  callGasLimit: bigint;
1111
1116
  verificationGasLimit: bigint;
1112
1117
  preVerificationGas: bigint;
1113
- maxPriorityFeePerGas: bigint;
1114
- maxFeePerGas: bigint;
1115
- signature: `0x${string}`;
1116
- factory: `0x${string}` | null;
1117
- factoryData: `0x${string}` | null;
1118
1118
  paymaster: `0x${string}` | null;
1119
1119
  paymasterVerificationGasLimit: bigint | null;
1120
1120
  paymasterPostOpGasLimit: bigint | null;
1121
1121
  paymasterData: `0x${string}` | null;
1122
1122
  eip7702Auth?: {
1123
- contractAddress: `0x${string}`;
1124
1123
  chainId: number;
1125
- nonce: number;
1126
1124
  r: `0x${string}`;
1127
1125
  s: `0x${string}`;
1128
1126
  yParity: number;
1127
+ nonce: number;
1128
+ contractAddress: `0x${string}`;
1129
1129
  v?: bigint | undefined;
1130
1130
  } | {
1131
+ address: `0x${string}`;
1131
1132
  chainId: number;
1132
- nonce: number;
1133
1133
  r: `0x${string}`;
1134
1134
  s: `0x${string}`;
1135
1135
  yParity: number;
1136
- address: `0x${string}`;
1136
+ nonce: number;
1137
1137
  v?: bigint | undefined;
1138
1138
  } | null | undefined;
1139
1139
  }, {
1140
1140
  nonce: string | number | bigint;
1141
+ maxFeePerGas: string | number | bigint;
1142
+ maxPriorityFeePerGas: string | number | bigint;
1141
1143
  sender: string;
1142
1144
  callData: string;
1143
1145
  callGasLimit: string | number | bigint;
1144
1146
  verificationGasLimit: string | number | bigint;
1145
1147
  preVerificationGas: string | number | bigint;
1146
- maxPriorityFeePerGas: string | number | bigint;
1147
- maxFeePerGas: string | number | bigint;
1148
+ factory?: string | null | undefined;
1149
+ factoryData?: string | null | undefined;
1148
1150
  signature?: string | undefined;
1149
1151
  eip7702Auth?: {
1150
- contractAddress: string;
1151
1152
  chainId: string | number | bigint;
1152
- nonce: string | number | bigint;
1153
1153
  r: string;
1154
1154
  s: string;
1155
1155
  yParity: string | number | bigint;
1156
+ nonce: string | number | bigint;
1157
+ contractAddress: string;
1156
1158
  v?: string | number | bigint | undefined;
1157
1159
  } | {
1160
+ address: string;
1158
1161
  chainId: string | number | bigint;
1159
- nonce: string | number | bigint;
1160
1162
  r: string;
1161
1163
  s: string;
1162
1164
  yParity: string | number | bigint;
1163
- address: string;
1165
+ nonce: string | number | bigint;
1164
1166
  v?: string | number | bigint | undefined;
1165
1167
  } | null | undefined;
1166
- factory?: string | null | undefined;
1167
- factoryData?: string | null | undefined;
1168
1168
  paymaster?: string | null | undefined;
1169
1169
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
1170
1170
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
@@ -1208,20 +1208,20 @@ export declare const pmGetPaymasterData: z.ZodEffects<z.ZodUnion<[z.ZodTuple<[z.
1208
1208
  v: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>>;
1209
1209
  yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
1210
1210
  }, "strip", z.ZodTypeAny, {
1211
- contractAddress: `0x${string}`;
1212
1211
  chainId: number;
1213
- nonce: number;
1214
1212
  r: `0x${string}`;
1215
1213
  s: `0x${string}`;
1216
1214
  yParity: number;
1215
+ nonce: number;
1216
+ contractAddress: `0x${string}`;
1217
1217
  v?: bigint | undefined;
1218
1218
  }, {
1219
- contractAddress: string;
1220
1219
  chainId: string | number | bigint;
1221
- nonce: string | number | bigint;
1222
1220
  r: string;
1223
1221
  s: string;
1224
1222
  yParity: string | number | bigint;
1223
+ nonce: string | number | bigint;
1224
+ contractAddress: string;
1225
1225
  v?: string | number | bigint | undefined;
1226
1226
  }>, z.ZodObject<{
1227
1227
  address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
@@ -1232,136 +1232,136 @@ export declare const pmGetPaymasterData: z.ZodEffects<z.ZodUnion<[z.ZodTuple<[z.
1232
1232
  v: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>>;
1233
1233
  yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
1234
1234
  }, "strip", z.ZodTypeAny, {
1235
+ address: `0x${string}`;
1235
1236
  chainId: number;
1236
- nonce: number;
1237
1237
  r: `0x${string}`;
1238
1238
  s: `0x${string}`;
1239
1239
  yParity: number;
1240
- address: `0x${string}`;
1240
+ nonce: number;
1241
1241
  v?: bigint | undefined;
1242
1242
  }, {
1243
+ address: string;
1243
1244
  chainId: string | number | bigint;
1244
- nonce: string | number | bigint;
1245
1245
  r: string;
1246
1246
  s: string;
1247
1247
  yParity: string | number | bigint;
1248
- address: string;
1248
+ nonce: string | number | bigint;
1249
1249
  v?: string | number | bigint | undefined;
1250
1250
  }>]>>>;
1251
1251
  }, "strict", z.ZodTypeAny, {
1252
1252
  nonce: bigint;
1253
+ maxFeePerGas: bigint;
1254
+ maxPriorityFeePerGas: bigint;
1255
+ signature: `0x${string}`;
1253
1256
  sender: `0x${string}`;
1254
1257
  initCode: `0x${string}`;
1255
1258
  callData: `0x${string}`;
1256
1259
  callGasLimit: bigint;
1257
1260
  verificationGasLimit: bigint;
1258
1261
  preVerificationGas: bigint;
1259
- maxPriorityFeePerGas: bigint;
1260
- maxFeePerGas: bigint;
1261
1262
  paymasterAndData: `0x${string}`;
1262
- signature: `0x${string}`;
1263
1263
  eip7702Auth?: {
1264
- contractAddress: `0x${string}`;
1265
1264
  chainId: number;
1266
- nonce: number;
1267
1265
  r: `0x${string}`;
1268
1266
  s: `0x${string}`;
1269
1267
  yParity: number;
1268
+ nonce: number;
1269
+ contractAddress: `0x${string}`;
1270
1270
  v?: bigint | undefined;
1271
1271
  } | {
1272
+ address: `0x${string}`;
1272
1273
  chainId: number;
1273
- nonce: number;
1274
1274
  r: `0x${string}`;
1275
1275
  s: `0x${string}`;
1276
1276
  yParity: number;
1277
- address: `0x${string}`;
1277
+ nonce: number;
1278
1278
  v?: bigint | undefined;
1279
1279
  } | null | undefined;
1280
1280
  }, {
1281
1281
  nonce: string | number | bigint;
1282
+ maxFeePerGas: string | number | bigint;
1283
+ maxPriorityFeePerGas: string | number | bigint;
1282
1284
  sender: string;
1283
1285
  initCode: string;
1284
1286
  callData: string;
1285
1287
  callGasLimit: string | number | bigint;
1286
1288
  verificationGasLimit: string | number | bigint;
1287
1289
  preVerificationGas: string | number | bigint;
1288
- maxPriorityFeePerGas: string | number | bigint;
1289
- maxFeePerGas: string | number | bigint;
1290
- paymasterAndData?: string | null | undefined;
1291
1290
  signature?: string | null | undefined;
1291
+ paymasterAndData?: string | null | undefined;
1292
1292
  eip7702Auth?: {
1293
- contractAddress: string;
1294
1293
  chainId: string | number | bigint;
1295
- nonce: string | number | bigint;
1296
1294
  r: string;
1297
1295
  s: string;
1298
1296
  yParity: string | number | bigint;
1297
+ nonce: string | number | bigint;
1298
+ contractAddress: string;
1299
1299
  v?: string | number | bigint | undefined;
1300
1300
  } | {
1301
+ address: string;
1301
1302
  chainId: string | number | bigint;
1302
- nonce: string | number | bigint;
1303
1303
  r: string;
1304
1304
  s: string;
1305
1305
  yParity: string | number | bigint;
1306
- address: string;
1306
+ nonce: string | number | bigint;
1307
1307
  v?: string | number | bigint | undefined;
1308
1308
  } | null | undefined;
1309
1309
  }>, {
1310
1310
  nonce: bigint;
1311
+ maxFeePerGas: bigint;
1312
+ maxPriorityFeePerGas: bigint;
1313
+ signature: `0x${string}`;
1311
1314
  sender: `0x${string}`;
1312
1315
  initCode: `0x${string}`;
1313
1316
  callData: `0x${string}`;
1314
1317
  callGasLimit: bigint;
1315
1318
  verificationGasLimit: bigint;
1316
1319
  preVerificationGas: bigint;
1317
- maxPriorityFeePerGas: bigint;
1318
- maxFeePerGas: bigint;
1319
1320
  paymasterAndData: `0x${string}`;
1320
- signature: `0x${string}`;
1321
1321
  eip7702Auth?: {
1322
- contractAddress: `0x${string}`;
1323
1322
  chainId: number;
1324
- nonce: number;
1325
1323
  r: `0x${string}`;
1326
1324
  s: `0x${string}`;
1327
1325
  yParity: number;
1326
+ nonce: number;
1327
+ contractAddress: `0x${string}`;
1328
1328
  v?: bigint | undefined;
1329
1329
  } | {
1330
+ address: `0x${string}`;
1330
1331
  chainId: number;
1331
- nonce: number;
1332
1332
  r: `0x${string}`;
1333
1333
  s: `0x${string}`;
1334
1334
  yParity: number;
1335
- address: `0x${string}`;
1335
+ nonce: number;
1336
1336
  v?: bigint | undefined;
1337
1337
  } | null | undefined;
1338
1338
  }, {
1339
1339
  nonce: string | number | bigint;
1340
+ maxFeePerGas: string | number | bigint;
1341
+ maxPriorityFeePerGas: string | number | bigint;
1340
1342
  sender: string;
1341
1343
  initCode: string;
1342
1344
  callData: string;
1343
1345
  callGasLimit: string | number | bigint;
1344
1346
  verificationGasLimit: string | number | bigint;
1345
1347
  preVerificationGas: string | number | bigint;
1346
- maxPriorityFeePerGas: string | number | bigint;
1347
- maxFeePerGas: string | number | bigint;
1348
- paymasterAndData?: string | null | undefined;
1349
1348
  signature?: string | null | undefined;
1349
+ paymasterAndData?: string | null | undefined;
1350
1350
  eip7702Auth?: {
1351
- contractAddress: string;
1352
1351
  chainId: string | number | bigint;
1353
- nonce: string | number | bigint;
1354
1352
  r: string;
1355
1353
  s: string;
1356
1354
  yParity: string | number | bigint;
1355
+ nonce: string | number | bigint;
1356
+ contractAddress: string;
1357
1357
  v?: string | number | bigint | undefined;
1358
1358
  } | {
1359
+ address: string;
1359
1360
  chainId: string | number | bigint;
1360
- nonce: string | number | bigint;
1361
1361
  r: string;
1362
1362
  s: string;
1363
1363
  yParity: string | number | bigint;
1364
- address: string;
1364
+ nonce: string | number | bigint;
1365
1365
  v?: string | number | bigint | undefined;
1366
1366
  } | null | undefined;
1367
1367
  }>, z.ZodEffects<z.ZodObject<{
@@ -1389,20 +1389,20 @@ export declare const pmGetPaymasterData: z.ZodEffects<z.ZodUnion<[z.ZodTuple<[z.
1389
1389
  v: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>>;
1390
1390
  yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
1391
1391
  }, "strip", z.ZodTypeAny, {
1392
- contractAddress: `0x${string}`;
1393
1392
  chainId: number;
1394
- nonce: number;
1395
1393
  r: `0x${string}`;
1396
1394
  s: `0x${string}`;
1397
1395
  yParity: number;
1396
+ nonce: number;
1397
+ contractAddress: `0x${string}`;
1398
1398
  v?: bigint | undefined;
1399
1399
  }, {
1400
- contractAddress: string;
1401
1400
  chainId: string | number | bigint;
1402
- nonce: string | number | bigint;
1403
1401
  r: string;
1404
1402
  s: string;
1405
1403
  yParity: string | number | bigint;
1404
+ nonce: string | number | bigint;
1405
+ contractAddress: string;
1406
1406
  v?: string | number | bigint | undefined;
1407
1407
  }>, z.ZodObject<{
1408
1408
  address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
@@ -1413,214 +1413,214 @@ export declare const pmGetPaymasterData: z.ZodEffects<z.ZodUnion<[z.ZodTuple<[z.
1413
1413
  v: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>>;
1414
1414
  yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
1415
1415
  }, "strip", z.ZodTypeAny, {
1416
+ address: `0x${string}`;
1416
1417
  chainId: number;
1417
- nonce: number;
1418
1418
  r: `0x${string}`;
1419
1419
  s: `0x${string}`;
1420
1420
  yParity: number;
1421
- address: `0x${string}`;
1421
+ nonce: number;
1422
1422
  v?: bigint | undefined;
1423
1423
  }, {
1424
+ address: string;
1424
1425
  chainId: string | number | bigint;
1425
- nonce: string | number | bigint;
1426
1426
  r: string;
1427
1427
  s: string;
1428
1428
  yParity: string | number | bigint;
1429
- address: string;
1429
+ nonce: string | number | bigint;
1430
1430
  v?: string | number | bigint | undefined;
1431
1431
  }>]>>>;
1432
1432
  }, "strict", z.ZodTypeAny, {
1433
1433
  nonce: bigint;
1434
+ maxFeePerGas: bigint;
1435
+ maxPriorityFeePerGas: bigint;
1436
+ factory: `0x${string}` | null;
1437
+ factoryData: `0x${string}` | null;
1438
+ signature: `0x${string}`;
1434
1439
  sender: `0x${string}`;
1435
1440
  callData: `0x${string}`;
1436
1441
  callGasLimit: bigint;
1437
1442
  verificationGasLimit: bigint;
1438
1443
  preVerificationGas: bigint;
1439
- maxPriorityFeePerGas: bigint;
1440
- maxFeePerGas: bigint;
1441
- signature: `0x${string}`;
1442
- factory: `0x${string}` | null;
1443
- factoryData: `0x${string}` | null;
1444
1444
  paymaster: `0x${string}` | null;
1445
1445
  paymasterVerificationGasLimit: bigint | null;
1446
1446
  paymasterPostOpGasLimit: bigint | null;
1447
1447
  paymasterData: `0x${string}` | null;
1448
1448
  eip7702Auth?: {
1449
- contractAddress: `0x${string}`;
1450
1449
  chainId: number;
1451
- nonce: number;
1452
1450
  r: `0x${string}`;
1453
1451
  s: `0x${string}`;
1454
1452
  yParity: number;
1453
+ nonce: number;
1454
+ contractAddress: `0x${string}`;
1455
1455
  v?: bigint | undefined;
1456
1456
  } | {
1457
+ address: `0x${string}`;
1457
1458
  chainId: number;
1458
- nonce: number;
1459
1459
  r: `0x${string}`;
1460
1460
  s: `0x${string}`;
1461
1461
  yParity: number;
1462
- address: `0x${string}`;
1462
+ nonce: number;
1463
1463
  v?: bigint | undefined;
1464
1464
  } | null | undefined;
1465
1465
  }, {
1466
1466
  nonce: string | number | bigint;
1467
+ maxFeePerGas: string | number | bigint;
1468
+ maxPriorityFeePerGas: string | number | bigint;
1467
1469
  sender: string;
1468
1470
  callData: string;
1469
1471
  callGasLimit: string | number | bigint;
1470
1472
  verificationGasLimit: string | number | bigint;
1471
1473
  preVerificationGas: string | number | bigint;
1472
- maxPriorityFeePerGas: string | number | bigint;
1473
- maxFeePerGas: string | number | bigint;
1474
+ factory?: string | null | undefined;
1475
+ factoryData?: string | null | undefined;
1474
1476
  signature?: string | undefined;
1475
1477
  eip7702Auth?: {
1476
- contractAddress: string;
1477
1478
  chainId: string | number | bigint;
1478
- nonce: string | number | bigint;
1479
1479
  r: string;
1480
1480
  s: string;
1481
1481
  yParity: string | number | bigint;
1482
+ nonce: string | number | bigint;
1483
+ contractAddress: string;
1482
1484
  v?: string | number | bigint | undefined;
1483
1485
  } | {
1486
+ address: string;
1484
1487
  chainId: string | number | bigint;
1485
- nonce: string | number | bigint;
1486
1488
  r: string;
1487
1489
  s: string;
1488
1490
  yParity: string | number | bigint;
1489
- address: string;
1491
+ nonce: string | number | bigint;
1490
1492
  v?: string | number | bigint | undefined;
1491
1493
  } | null | undefined;
1492
- factory?: string | null | undefined;
1493
- factoryData?: string | null | undefined;
1494
1494
  paymaster?: string | null | undefined;
1495
1495
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
1496
1496
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
1497
1497
  paymasterData?: string | null | undefined;
1498
1498
  }>, {
1499
1499
  nonce: bigint;
1500
+ maxFeePerGas: bigint;
1501
+ maxPriorityFeePerGas: bigint;
1502
+ factory: `0x${string}` | null;
1503
+ factoryData: `0x${string}` | null;
1504
+ signature: `0x${string}`;
1500
1505
  sender: `0x${string}`;
1501
1506
  callData: `0x${string}`;
1502
1507
  callGasLimit: bigint;
1503
1508
  verificationGasLimit: bigint;
1504
1509
  preVerificationGas: bigint;
1505
- maxPriorityFeePerGas: bigint;
1506
- maxFeePerGas: bigint;
1507
- signature: `0x${string}`;
1508
- factory: `0x${string}` | null;
1509
- factoryData: `0x${string}` | null;
1510
1510
  paymaster: `0x${string}` | null;
1511
1511
  paymasterVerificationGasLimit: bigint | null;
1512
1512
  paymasterPostOpGasLimit: bigint | null;
1513
1513
  paymasterData: `0x${string}` | null;
1514
1514
  eip7702Auth?: {
1515
- contractAddress: `0x${string}`;
1516
1515
  chainId: number;
1517
- nonce: number;
1518
1516
  r: `0x${string}`;
1519
1517
  s: `0x${string}`;
1520
1518
  yParity: number;
1519
+ nonce: number;
1520
+ contractAddress: `0x${string}`;
1521
1521
  v?: bigint | undefined;
1522
1522
  } | {
1523
+ address: `0x${string}`;
1523
1524
  chainId: number;
1524
- nonce: number;
1525
1525
  r: `0x${string}`;
1526
1526
  s: `0x${string}`;
1527
1527
  yParity: number;
1528
- address: `0x${string}`;
1528
+ nonce: number;
1529
1529
  v?: bigint | undefined;
1530
1530
  } | null | undefined;
1531
1531
  }, {
1532
1532
  nonce: string | number | bigint;
1533
+ maxFeePerGas: string | number | bigint;
1534
+ maxPriorityFeePerGas: string | number | bigint;
1533
1535
  sender: string;
1534
1536
  callData: string;
1535
1537
  callGasLimit: string | number | bigint;
1536
1538
  verificationGasLimit: string | number | bigint;
1537
1539
  preVerificationGas: string | number | bigint;
1538
- maxPriorityFeePerGas: string | number | bigint;
1539
- maxFeePerGas: string | number | bigint;
1540
+ factory?: string | null | undefined;
1541
+ factoryData?: string | null | undefined;
1540
1542
  signature?: string | undefined;
1541
1543
  eip7702Auth?: {
1542
- contractAddress: string;
1543
1544
  chainId: string | number | bigint;
1544
- nonce: string | number | bigint;
1545
1545
  r: string;
1546
1546
  s: string;
1547
1547
  yParity: string | number | bigint;
1548
+ nonce: string | number | bigint;
1549
+ contractAddress: string;
1548
1550
  v?: string | number | bigint | undefined;
1549
1551
  } | {
1552
+ address: string;
1550
1553
  chainId: string | number | bigint;
1551
- nonce: string | number | bigint;
1552
1554
  r: string;
1553
1555
  s: string;
1554
1556
  yParity: string | number | bigint;
1555
- address: string;
1557
+ nonce: string | number | bigint;
1556
1558
  v?: string | number | bigint | undefined;
1557
1559
  } | null | undefined;
1558
- factory?: string | null | undefined;
1559
- factoryData?: string | null | undefined;
1560
1560
  paymaster?: string | null | undefined;
1561
1561
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
1562
1562
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
1563
1563
  paymasterData?: string | null | undefined;
1564
1564
  }>]>, z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>], null>]>, readonly [{
1565
1565
  nonce: bigint;
1566
+ maxFeePerGas: bigint;
1567
+ maxPriorityFeePerGas: bigint;
1568
+ signature: `0x${string}`;
1566
1569
  sender: `0x${string}`;
1567
1570
  initCode: `0x${string}`;
1568
1571
  callData: `0x${string}`;
1569
1572
  callGasLimit: bigint;
1570
1573
  verificationGasLimit: bigint;
1571
1574
  preVerificationGas: bigint;
1572
- maxPriorityFeePerGas: bigint;
1573
- maxFeePerGas: bigint;
1574
1575
  paymasterAndData: `0x${string}`;
1575
- signature: `0x${string}`;
1576
1576
  eip7702Auth?: {
1577
- contractAddress: `0x${string}`;
1578
1577
  chainId: number;
1579
- nonce: number;
1580
1578
  r: `0x${string}`;
1581
1579
  s: `0x${string}`;
1582
1580
  yParity: number;
1581
+ nonce: number;
1582
+ contractAddress: `0x${string}`;
1583
1583
  v?: bigint | undefined;
1584
1584
  } | {
1585
+ address: `0x${string}`;
1585
1586
  chainId: number;
1586
- nonce: number;
1587
1587
  r: `0x${string}`;
1588
1588
  s: `0x${string}`;
1589
1589
  yParity: number;
1590
- address: `0x${string}`;
1590
+ nonce: number;
1591
1591
  v?: bigint | undefined;
1592
1592
  } | null | undefined;
1593
1593
  } | {
1594
1594
  nonce: bigint;
1595
+ maxFeePerGas: bigint;
1596
+ maxPriorityFeePerGas: bigint;
1597
+ factory: `0x${string}` | null;
1598
+ factoryData: `0x${string}` | null;
1599
+ signature: `0x${string}`;
1595
1600
  sender: `0x${string}`;
1596
1601
  callData: `0x${string}`;
1597
1602
  callGasLimit: bigint;
1598
1603
  verificationGasLimit: bigint;
1599
1604
  preVerificationGas: bigint;
1600
- maxPriorityFeePerGas: bigint;
1601
- maxFeePerGas: bigint;
1602
- signature: `0x${string}`;
1603
- factory: `0x${string}` | null;
1604
- factoryData: `0x${string}` | null;
1605
1605
  paymaster: `0x${string}` | null;
1606
1606
  paymasterVerificationGasLimit: bigint | null;
1607
1607
  paymasterPostOpGasLimit: bigint | null;
1608
1608
  paymasterData: `0x${string}` | null;
1609
1609
  eip7702Auth?: {
1610
- contractAddress: `0x${string}`;
1611
1610
  chainId: number;
1612
- nonce: number;
1613
1611
  r: `0x${string}`;
1614
1612
  s: `0x${string}`;
1615
1613
  yParity: number;
1614
+ nonce: number;
1615
+ contractAddress: `0x${string}`;
1616
1616
  v?: bigint | undefined;
1617
1617
  } | {
1618
+ address: `0x${string}`;
1618
1619
  chainId: number;
1619
- nonce: number;
1620
1620
  r: `0x${string}`;
1621
1621
  s: `0x${string}`;
1622
1622
  yParity: number;
1623
- address: `0x${string}`;
1623
+ nonce: number;
1624
1624
  v?: bigint | undefined;
1625
1625
  } | null | undefined;
1626
1626
  }, `0x${string}`, bigint, {
@@ -1631,62 +1631,62 @@ export declare const pmGetPaymasterData: z.ZodEffects<z.ZodUnion<[z.ZodTuple<[z.
1631
1631
  meta?: Record<string, string> | undefined;
1632
1632
  } | null], [{
1633
1633
  nonce: string | number | bigint;
1634
+ maxFeePerGas: string | number | bigint;
1635
+ maxPriorityFeePerGas: string | number | bigint;
1634
1636
  sender: string;
1635
1637
  initCode: string;
1636
1638
  callData: string;
1637
1639
  callGasLimit: string | number | bigint;
1638
1640
  verificationGasLimit: string | number | bigint;
1639
1641
  preVerificationGas: string | number | bigint;
1640
- maxPriorityFeePerGas: string | number | bigint;
1641
- maxFeePerGas: string | number | bigint;
1642
- paymasterAndData?: string | null | undefined;
1643
1642
  signature?: string | null | undefined;
1643
+ paymasterAndData?: string | null | undefined;
1644
1644
  eip7702Auth?: {
1645
- contractAddress: string;
1646
1645
  chainId: string | number | bigint;
1647
- nonce: string | number | bigint;
1648
1646
  r: string;
1649
1647
  s: string;
1650
1648
  yParity: string | number | bigint;
1649
+ nonce: string | number | bigint;
1650
+ contractAddress: string;
1651
1651
  v?: string | number | bigint | undefined;
1652
1652
  } | {
1653
+ address: string;
1653
1654
  chainId: string | number | bigint;
1654
- nonce: string | number | bigint;
1655
1655
  r: string;
1656
1656
  s: string;
1657
1657
  yParity: string | number | bigint;
1658
- address: string;
1658
+ nonce: string | number | bigint;
1659
1659
  v?: string | number | bigint | undefined;
1660
1660
  } | null | undefined;
1661
1661
  } | {
1662
1662
  nonce: string | number | bigint;
1663
+ maxFeePerGas: string | number | bigint;
1664
+ maxPriorityFeePerGas: string | number | bigint;
1663
1665
  sender: string;
1664
1666
  callData: string;
1665
1667
  callGasLimit: string | number | bigint;
1666
1668
  verificationGasLimit: string | number | bigint;
1667
1669
  preVerificationGas: string | number | bigint;
1668
- maxPriorityFeePerGas: string | number | bigint;
1669
- maxFeePerGas: string | number | bigint;
1670
+ factory?: string | null | undefined;
1671
+ factoryData?: string | null | undefined;
1670
1672
  signature?: string | undefined;
1671
1673
  eip7702Auth?: {
1672
- contractAddress: string;
1673
1674
  chainId: string | number | bigint;
1674
- nonce: string | number | bigint;
1675
1675
  r: string;
1676
1676
  s: string;
1677
1677
  yParity: string | number | bigint;
1678
+ nonce: string | number | bigint;
1679
+ contractAddress: string;
1678
1680
  v?: string | number | bigint | undefined;
1679
1681
  } | {
1682
+ address: string;
1680
1683
  chainId: string | number | bigint;
1681
- nonce: string | number | bigint;
1682
1684
  r: string;
1683
1685
  s: string;
1684
1686
  yParity: string | number | bigint;
1685
- address: string;
1687
+ nonce: string | number | bigint;
1686
1688
  v?: string | number | bigint | undefined;
1687
1689
  } | null | undefined;
1688
- factory?: string | null | undefined;
1689
- factoryData?: string | null | undefined;
1690
1690
  paymaster?: string | null | undefined;
1691
1691
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
1692
1692
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
@@ -1699,62 +1699,62 @@ export declare const pmGetPaymasterData: z.ZodEffects<z.ZodUnion<[z.ZodTuple<[z.
1699
1699
  meta?: Record<string, string> | undefined;
1700
1700
  } | null] | [{
1701
1701
  nonce: string | number | bigint;
1702
+ maxFeePerGas: string | number | bigint;
1703
+ maxPriorityFeePerGas: string | number | bigint;
1702
1704
  sender: string;
1703
1705
  initCode: string;
1704
1706
  callData: string;
1705
1707
  callGasLimit: string | number | bigint;
1706
1708
  verificationGasLimit: string | number | bigint;
1707
1709
  preVerificationGas: string | number | bigint;
1708
- maxPriorityFeePerGas: string | number | bigint;
1709
- maxFeePerGas: string | number | bigint;
1710
- paymasterAndData?: string | null | undefined;
1711
1710
  signature?: string | null | undefined;
1711
+ paymasterAndData?: string | null | undefined;
1712
1712
  eip7702Auth?: {
1713
- contractAddress: string;
1714
1713
  chainId: string | number | bigint;
1715
- nonce: string | number | bigint;
1716
1714
  r: string;
1717
1715
  s: string;
1718
1716
  yParity: string | number | bigint;
1717
+ nonce: string | number | bigint;
1718
+ contractAddress: string;
1719
1719
  v?: string | number | bigint | undefined;
1720
1720
  } | {
1721
+ address: string;
1721
1722
  chainId: string | number | bigint;
1722
- nonce: string | number | bigint;
1723
1723
  r: string;
1724
1724
  s: string;
1725
1725
  yParity: string | number | bigint;
1726
- address: string;
1726
+ nonce: string | number | bigint;
1727
1727
  v?: string | number | bigint | undefined;
1728
1728
  } | null | undefined;
1729
1729
  } | {
1730
1730
  nonce: string | number | bigint;
1731
+ maxFeePerGas: string | number | bigint;
1732
+ maxPriorityFeePerGas: string | number | bigint;
1731
1733
  sender: string;
1732
1734
  callData: string;
1733
1735
  callGasLimit: string | number | bigint;
1734
1736
  verificationGasLimit: string | number | bigint;
1735
1737
  preVerificationGas: string | number | bigint;
1736
- maxPriorityFeePerGas: string | number | bigint;
1737
- maxFeePerGas: string | number | bigint;
1738
+ factory?: string | null | undefined;
1739
+ factoryData?: string | null | undefined;
1738
1740
  signature?: string | undefined;
1739
1741
  eip7702Auth?: {
1740
- contractAddress: string;
1741
1742
  chainId: string | number | bigint;
1742
- nonce: string | number | bigint;
1743
1743
  r: string;
1744
1744
  s: string;
1745
1745
  yParity: string | number | bigint;
1746
+ nonce: string | number | bigint;
1747
+ contractAddress: string;
1746
1748
  v?: string | number | bigint | undefined;
1747
1749
  } | {
1750
+ address: string;
1748
1751
  chainId: string | number | bigint;
1749
- nonce: string | number | bigint;
1750
1752
  r: string;
1751
1753
  s: string;
1752
1754
  yParity: string | number | bigint;
1753
- address: string;
1755
+ nonce: string | number | bigint;
1754
1756
  v?: string | number | bigint | undefined;
1755
1757
  } | null | undefined;
1756
- factory?: string | null | undefined;
1757
- factoryData?: string | null | undefined;
1758
1758
  paymaster?: string | null | undefined;
1759
1759
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
1760
1760
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
@@ -1781,20 +1781,20 @@ export declare const pmGetPaymasterStubDataParamsSchema: z.ZodEffects<z.ZodUnion
1781
1781
  v: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>>;
1782
1782
  yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
1783
1783
  }, "strip", z.ZodTypeAny, {
1784
- contractAddress: `0x${string}`;
1785
1784
  chainId: number;
1786
- nonce: number;
1787
1785
  r: `0x${string}`;
1788
1786
  s: `0x${string}`;
1789
1787
  yParity: number;
1788
+ nonce: number;
1789
+ contractAddress: `0x${string}`;
1790
1790
  v?: bigint | undefined;
1791
1791
  }, {
1792
- contractAddress: string;
1793
1792
  chainId: string | number | bigint;
1794
- nonce: string | number | bigint;
1795
1793
  r: string;
1796
1794
  s: string;
1797
1795
  yParity: string | number | bigint;
1796
+ nonce: string | number | bigint;
1797
+ contractAddress: string;
1798
1798
  v?: string | number | bigint | undefined;
1799
1799
  }>, z.ZodObject<{
1800
1800
  address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
@@ -1805,136 +1805,136 @@ export declare const pmGetPaymasterStubDataParamsSchema: z.ZodEffects<z.ZodUnion
1805
1805
  v: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>>;
1806
1806
  yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
1807
1807
  }, "strip", z.ZodTypeAny, {
1808
+ address: `0x${string}`;
1808
1809
  chainId: number;
1809
- nonce: number;
1810
1810
  r: `0x${string}`;
1811
1811
  s: `0x${string}`;
1812
1812
  yParity: number;
1813
- address: `0x${string}`;
1813
+ nonce: number;
1814
1814
  v?: bigint | undefined;
1815
1815
  }, {
1816
+ address: string;
1816
1817
  chainId: string | number | bigint;
1817
- nonce: string | number | bigint;
1818
1818
  r: string;
1819
1819
  s: string;
1820
1820
  yParity: string | number | bigint;
1821
- address: string;
1821
+ nonce: string | number | bigint;
1822
1822
  v?: string | number | bigint | undefined;
1823
1823
  }>]>>>;
1824
1824
  }, "strict", z.ZodTypeAny, {
1825
1825
  nonce: bigint;
1826
+ maxFeePerGas: bigint;
1827
+ maxPriorityFeePerGas: bigint;
1828
+ signature: `0x${string}`;
1826
1829
  sender: `0x${string}`;
1827
1830
  initCode: `0x${string}`;
1828
1831
  callData: `0x${string}`;
1829
1832
  callGasLimit: bigint;
1830
1833
  verificationGasLimit: bigint;
1831
1834
  preVerificationGas: bigint;
1832
- maxPriorityFeePerGas: bigint;
1833
- maxFeePerGas: bigint;
1834
1835
  paymasterAndData: `0x${string}`;
1835
- signature: `0x${string}`;
1836
1836
  eip7702Auth?: {
1837
- contractAddress: `0x${string}`;
1838
1837
  chainId: number;
1839
- nonce: number;
1840
1838
  r: `0x${string}`;
1841
1839
  s: `0x${string}`;
1842
1840
  yParity: number;
1841
+ nonce: number;
1842
+ contractAddress: `0x${string}`;
1843
1843
  v?: bigint | undefined;
1844
1844
  } | {
1845
+ address: `0x${string}`;
1845
1846
  chainId: number;
1846
- nonce: number;
1847
1847
  r: `0x${string}`;
1848
1848
  s: `0x${string}`;
1849
1849
  yParity: number;
1850
- address: `0x${string}`;
1850
+ nonce: number;
1851
1851
  v?: bigint | undefined;
1852
1852
  } | null | undefined;
1853
1853
  }, {
1854
1854
  nonce: string | number | bigint;
1855
+ maxFeePerGas: string | number | bigint;
1856
+ maxPriorityFeePerGas: string | number | bigint;
1855
1857
  sender: string;
1856
1858
  initCode: string;
1857
1859
  callData: string;
1858
1860
  callGasLimit: string | number | bigint;
1859
1861
  verificationGasLimit: string | number | bigint;
1860
1862
  preVerificationGas: string | number | bigint;
1861
- maxPriorityFeePerGas: string | number | bigint;
1862
- maxFeePerGas: string | number | bigint;
1863
- paymasterAndData?: string | null | undefined;
1864
1863
  signature?: string | null | undefined;
1864
+ paymasterAndData?: string | null | undefined;
1865
1865
  eip7702Auth?: {
1866
- contractAddress: string;
1867
1866
  chainId: string | number | bigint;
1868
- nonce: string | number | bigint;
1869
1867
  r: string;
1870
1868
  s: string;
1871
1869
  yParity: string | number | bigint;
1870
+ nonce: string | number | bigint;
1871
+ contractAddress: string;
1872
1872
  v?: string | number | bigint | undefined;
1873
1873
  } | {
1874
+ address: string;
1874
1875
  chainId: string | number | bigint;
1875
- nonce: string | number | bigint;
1876
1876
  r: string;
1877
1877
  s: string;
1878
1878
  yParity: string | number | bigint;
1879
- address: string;
1879
+ nonce: string | number | bigint;
1880
1880
  v?: string | number | bigint | undefined;
1881
1881
  } | null | undefined;
1882
1882
  }>, {
1883
1883
  nonce: bigint;
1884
+ maxFeePerGas: bigint;
1885
+ maxPriorityFeePerGas: bigint;
1886
+ signature: `0x${string}`;
1884
1887
  sender: `0x${string}`;
1885
1888
  initCode: `0x${string}`;
1886
1889
  callData: `0x${string}`;
1887
1890
  callGasLimit: bigint;
1888
1891
  verificationGasLimit: bigint;
1889
1892
  preVerificationGas: bigint;
1890
- maxPriorityFeePerGas: bigint;
1891
- maxFeePerGas: bigint;
1892
1893
  paymasterAndData: `0x${string}`;
1893
- signature: `0x${string}`;
1894
1894
  eip7702Auth?: {
1895
- contractAddress: `0x${string}`;
1896
1895
  chainId: number;
1897
- nonce: number;
1898
1896
  r: `0x${string}`;
1899
1897
  s: `0x${string}`;
1900
1898
  yParity: number;
1899
+ nonce: number;
1900
+ contractAddress: `0x${string}`;
1901
1901
  v?: bigint | undefined;
1902
1902
  } | {
1903
+ address: `0x${string}`;
1903
1904
  chainId: number;
1904
- nonce: number;
1905
1905
  r: `0x${string}`;
1906
1906
  s: `0x${string}`;
1907
1907
  yParity: number;
1908
- address: `0x${string}`;
1908
+ nonce: number;
1909
1909
  v?: bigint | undefined;
1910
1910
  } | null | undefined;
1911
1911
  }, {
1912
1912
  nonce: string | number | bigint;
1913
+ maxFeePerGas: string | number | bigint;
1914
+ maxPriorityFeePerGas: string | number | bigint;
1913
1915
  sender: string;
1914
1916
  initCode: string;
1915
1917
  callData: string;
1916
1918
  callGasLimit: string | number | bigint;
1917
1919
  verificationGasLimit: string | number | bigint;
1918
1920
  preVerificationGas: string | number | bigint;
1919
- maxPriorityFeePerGas: string | number | bigint;
1920
- maxFeePerGas: string | number | bigint;
1921
- paymasterAndData?: string | null | undefined;
1922
1921
  signature?: string | null | undefined;
1922
+ paymasterAndData?: string | null | undefined;
1923
1923
  eip7702Auth?: {
1924
- contractAddress: string;
1925
1924
  chainId: string | number | bigint;
1926
- nonce: string | number | bigint;
1927
1925
  r: string;
1928
1926
  s: string;
1929
1927
  yParity: string | number | bigint;
1928
+ nonce: string | number | bigint;
1929
+ contractAddress: string;
1930
1930
  v?: string | number | bigint | undefined;
1931
1931
  } | {
1932
+ address: string;
1932
1933
  chainId: string | number | bigint;
1933
- nonce: string | number | bigint;
1934
1934
  r: string;
1935
1935
  s: string;
1936
1936
  yParity: string | number | bigint;
1937
- address: string;
1937
+ nonce: string | number | bigint;
1938
1938
  v?: string | number | bigint | undefined;
1939
1939
  } | null | undefined;
1940
1940
  }>, z.ZodEffects<z.ZodObject<{
@@ -1962,20 +1962,20 @@ export declare const pmGetPaymasterStubDataParamsSchema: z.ZodEffects<z.ZodUnion
1962
1962
  v: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>>;
1963
1963
  yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
1964
1964
  }, "strip", z.ZodTypeAny, {
1965
- contractAddress: `0x${string}`;
1966
1965
  chainId: number;
1967
- nonce: number;
1968
1966
  r: `0x${string}`;
1969
1967
  s: `0x${string}`;
1970
1968
  yParity: number;
1969
+ nonce: number;
1970
+ contractAddress: `0x${string}`;
1971
1971
  v?: bigint | undefined;
1972
1972
  }, {
1973
- contractAddress: string;
1974
1973
  chainId: string | number | bigint;
1975
- nonce: string | number | bigint;
1976
1974
  r: string;
1977
1975
  s: string;
1978
1976
  yParity: string | number | bigint;
1977
+ nonce: string | number | bigint;
1978
+ contractAddress: string;
1979
1979
  v?: string | number | bigint | undefined;
1980
1980
  }>, z.ZodObject<{
1981
1981
  address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
@@ -1986,150 +1986,150 @@ export declare const pmGetPaymasterStubDataParamsSchema: z.ZodEffects<z.ZodUnion
1986
1986
  v: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>>;
1987
1987
  yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
1988
1988
  }, "strip", z.ZodTypeAny, {
1989
+ address: `0x${string}`;
1989
1990
  chainId: number;
1990
- nonce: number;
1991
1991
  r: `0x${string}`;
1992
1992
  s: `0x${string}`;
1993
1993
  yParity: number;
1994
- address: `0x${string}`;
1994
+ nonce: number;
1995
1995
  v?: bigint | undefined;
1996
1996
  }, {
1997
+ address: string;
1997
1998
  chainId: string | number | bigint;
1998
- nonce: string | number | bigint;
1999
1999
  r: string;
2000
2000
  s: string;
2001
2001
  yParity: string | number | bigint;
2002
- address: string;
2002
+ nonce: string | number | bigint;
2003
2003
  v?: string | number | bigint | undefined;
2004
2004
  }>]>>>;
2005
2005
  }, "strict", z.ZodTypeAny, {
2006
2006
  nonce: bigint;
2007
+ maxFeePerGas: bigint;
2008
+ maxPriorityFeePerGas: bigint;
2009
+ factory: `0x${string}` | null;
2010
+ factoryData: `0x${string}` | null;
2011
+ signature: `0x${string}`;
2007
2012
  sender: `0x${string}`;
2008
2013
  callData: `0x${string}`;
2009
2014
  callGasLimit: bigint;
2010
2015
  verificationGasLimit: bigint;
2011
2016
  preVerificationGas: bigint;
2012
- maxPriorityFeePerGas: bigint;
2013
- maxFeePerGas: bigint;
2014
- signature: `0x${string}`;
2015
- factory: `0x${string}` | null;
2016
- factoryData: `0x${string}` | null;
2017
2017
  paymaster: `0x${string}` | null;
2018
2018
  paymasterVerificationGasLimit: bigint | null;
2019
2019
  paymasterPostOpGasLimit: bigint | null;
2020
2020
  paymasterData: `0x${string}` | null;
2021
2021
  eip7702Auth?: {
2022
- contractAddress: `0x${string}`;
2023
2022
  chainId: number;
2024
- nonce: number;
2025
2023
  r: `0x${string}`;
2026
2024
  s: `0x${string}`;
2027
2025
  yParity: number;
2026
+ nonce: number;
2027
+ contractAddress: `0x${string}`;
2028
2028
  v?: bigint | undefined;
2029
2029
  } | {
2030
+ address: `0x${string}`;
2030
2031
  chainId: number;
2031
- nonce: number;
2032
2032
  r: `0x${string}`;
2033
2033
  s: `0x${string}`;
2034
2034
  yParity: number;
2035
- address: `0x${string}`;
2035
+ nonce: number;
2036
2036
  v?: bigint | undefined;
2037
2037
  } | null | undefined;
2038
2038
  }, {
2039
2039
  nonce: string | number | bigint;
2040
+ maxFeePerGas: string | number | bigint;
2041
+ maxPriorityFeePerGas: string | number | bigint;
2040
2042
  sender: string;
2041
2043
  callData: string;
2042
2044
  callGasLimit: string | number | bigint;
2043
2045
  verificationGasLimit: string | number | bigint;
2044
2046
  preVerificationGas: string | number | bigint;
2045
- maxPriorityFeePerGas: string | number | bigint;
2046
- maxFeePerGas: string | number | bigint;
2047
+ factory?: string | null | undefined;
2048
+ factoryData?: string | null | undefined;
2047
2049
  signature?: string | undefined;
2048
2050
  eip7702Auth?: {
2049
- contractAddress: string;
2050
2051
  chainId: string | number | bigint;
2051
- nonce: string | number | bigint;
2052
2052
  r: string;
2053
2053
  s: string;
2054
2054
  yParity: string | number | bigint;
2055
+ nonce: string | number | bigint;
2056
+ contractAddress: string;
2055
2057
  v?: string | number | bigint | undefined;
2056
2058
  } | {
2059
+ address: string;
2057
2060
  chainId: string | number | bigint;
2058
- nonce: string | number | bigint;
2059
2061
  r: string;
2060
2062
  s: string;
2061
2063
  yParity: string | number | bigint;
2062
- address: string;
2064
+ nonce: string | number | bigint;
2063
2065
  v?: string | number | bigint | undefined;
2064
2066
  } | null | undefined;
2065
- factory?: string | null | undefined;
2066
- factoryData?: string | null | undefined;
2067
2067
  paymaster?: string | null | undefined;
2068
2068
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
2069
2069
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
2070
2070
  paymasterData?: string | null | undefined;
2071
2071
  }>, {
2072
2072
  nonce: bigint;
2073
+ maxFeePerGas: bigint;
2074
+ maxPriorityFeePerGas: bigint;
2075
+ factory: `0x${string}` | null;
2076
+ factoryData: `0x${string}` | null;
2077
+ signature: `0x${string}`;
2073
2078
  sender: `0x${string}`;
2074
2079
  callData: `0x${string}`;
2075
2080
  callGasLimit: bigint;
2076
2081
  verificationGasLimit: bigint;
2077
2082
  preVerificationGas: bigint;
2078
- maxPriorityFeePerGas: bigint;
2079
- maxFeePerGas: bigint;
2080
- signature: `0x${string}`;
2081
- factory: `0x${string}` | null;
2082
- factoryData: `0x${string}` | null;
2083
2083
  paymaster: `0x${string}` | null;
2084
2084
  paymasterVerificationGasLimit: bigint | null;
2085
2085
  paymasterPostOpGasLimit: bigint | null;
2086
2086
  paymasterData: `0x${string}` | null;
2087
2087
  eip7702Auth?: {
2088
- contractAddress: `0x${string}`;
2089
2088
  chainId: number;
2090
- nonce: number;
2091
2089
  r: `0x${string}`;
2092
2090
  s: `0x${string}`;
2093
2091
  yParity: number;
2092
+ nonce: number;
2093
+ contractAddress: `0x${string}`;
2094
2094
  v?: bigint | undefined;
2095
2095
  } | {
2096
+ address: `0x${string}`;
2096
2097
  chainId: number;
2097
- nonce: number;
2098
2098
  r: `0x${string}`;
2099
2099
  s: `0x${string}`;
2100
2100
  yParity: number;
2101
- address: `0x${string}`;
2101
+ nonce: number;
2102
2102
  v?: bigint | undefined;
2103
2103
  } | null | undefined;
2104
2104
  }, {
2105
2105
  nonce: string | number | bigint;
2106
+ maxFeePerGas: string | number | bigint;
2107
+ maxPriorityFeePerGas: string | number | bigint;
2106
2108
  sender: string;
2107
2109
  callData: string;
2108
2110
  callGasLimit: string | number | bigint;
2109
2111
  verificationGasLimit: string | number | bigint;
2110
2112
  preVerificationGas: string | number | bigint;
2111
- maxPriorityFeePerGas: string | number | bigint;
2112
- maxFeePerGas: string | number | bigint;
2113
+ factory?: string | null | undefined;
2114
+ factoryData?: string | null | undefined;
2113
2115
  signature?: string | undefined;
2114
2116
  eip7702Auth?: {
2115
- contractAddress: string;
2116
2117
  chainId: string | number | bigint;
2117
- nonce: string | number | bigint;
2118
2118
  r: string;
2119
2119
  s: string;
2120
2120
  yParity: string | number | bigint;
2121
+ nonce: string | number | bigint;
2122
+ contractAddress: string;
2121
2123
  v?: string | number | bigint | undefined;
2122
2124
  } | {
2125
+ address: string;
2123
2126
  chainId: string | number | bigint;
2124
- nonce: string | number | bigint;
2125
2127
  r: string;
2126
2128
  s: string;
2127
2129
  yParity: string | number | bigint;
2128
- address: string;
2130
+ nonce: string | number | bigint;
2129
2131
  v?: string | number | bigint | undefined;
2130
2132
  } | null | undefined;
2131
- factory?: string | null | undefined;
2132
- factoryData?: string | null | undefined;
2133
2133
  paymaster?: string | null | undefined;
2134
2134
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
2135
2135
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
@@ -2173,20 +2173,20 @@ export declare const pmGetPaymasterStubDataParamsSchema: z.ZodEffects<z.ZodUnion
2173
2173
  v: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>>;
2174
2174
  yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
2175
2175
  }, "strip", z.ZodTypeAny, {
2176
- contractAddress: `0x${string}`;
2177
2176
  chainId: number;
2178
- nonce: number;
2179
2177
  r: `0x${string}`;
2180
2178
  s: `0x${string}`;
2181
2179
  yParity: number;
2180
+ nonce: number;
2181
+ contractAddress: `0x${string}`;
2182
2182
  v?: bigint | undefined;
2183
2183
  }, {
2184
- contractAddress: string;
2185
2184
  chainId: string | number | bigint;
2186
- nonce: string | number | bigint;
2187
2185
  r: string;
2188
2186
  s: string;
2189
2187
  yParity: string | number | bigint;
2188
+ nonce: string | number | bigint;
2189
+ contractAddress: string;
2190
2190
  v?: string | number | bigint | undefined;
2191
2191
  }>, z.ZodObject<{
2192
2192
  address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
@@ -2197,136 +2197,136 @@ export declare const pmGetPaymasterStubDataParamsSchema: z.ZodEffects<z.ZodUnion
2197
2197
  v: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>>;
2198
2198
  yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
2199
2199
  }, "strip", z.ZodTypeAny, {
2200
+ address: `0x${string}`;
2200
2201
  chainId: number;
2201
- nonce: number;
2202
2202
  r: `0x${string}`;
2203
2203
  s: `0x${string}`;
2204
2204
  yParity: number;
2205
- address: `0x${string}`;
2205
+ nonce: number;
2206
2206
  v?: bigint | undefined;
2207
2207
  }, {
2208
+ address: string;
2208
2209
  chainId: string | number | bigint;
2209
- nonce: string | number | bigint;
2210
2210
  r: string;
2211
2211
  s: string;
2212
2212
  yParity: string | number | bigint;
2213
- address: string;
2213
+ nonce: string | number | bigint;
2214
2214
  v?: string | number | bigint | undefined;
2215
2215
  }>]>>>;
2216
2216
  }, "strict", z.ZodTypeAny, {
2217
2217
  nonce: bigint;
2218
+ maxFeePerGas: bigint;
2219
+ maxPriorityFeePerGas: bigint;
2220
+ signature: `0x${string}`;
2218
2221
  sender: `0x${string}`;
2219
2222
  initCode: `0x${string}`;
2220
2223
  callData: `0x${string}`;
2221
2224
  callGasLimit: bigint;
2222
2225
  verificationGasLimit: bigint;
2223
2226
  preVerificationGas: bigint;
2224
- maxPriorityFeePerGas: bigint;
2225
- maxFeePerGas: bigint;
2226
2227
  paymasterAndData: `0x${string}`;
2227
- signature: `0x${string}`;
2228
2228
  eip7702Auth?: {
2229
- contractAddress: `0x${string}`;
2230
2229
  chainId: number;
2231
- nonce: number;
2232
2230
  r: `0x${string}`;
2233
2231
  s: `0x${string}`;
2234
2232
  yParity: number;
2233
+ nonce: number;
2234
+ contractAddress: `0x${string}`;
2235
2235
  v?: bigint | undefined;
2236
2236
  } | {
2237
+ address: `0x${string}`;
2237
2238
  chainId: number;
2238
- nonce: number;
2239
2239
  r: `0x${string}`;
2240
2240
  s: `0x${string}`;
2241
2241
  yParity: number;
2242
- address: `0x${string}`;
2242
+ nonce: number;
2243
2243
  v?: bigint | undefined;
2244
2244
  } | null | undefined;
2245
2245
  }, {
2246
2246
  nonce: string | number | bigint;
2247
+ maxFeePerGas: string | number | bigint;
2248
+ maxPriorityFeePerGas: string | number | bigint;
2247
2249
  sender: string;
2248
2250
  initCode: string;
2249
2251
  callData: string;
2250
2252
  callGasLimit: string | number | bigint;
2251
2253
  verificationGasLimit: string | number | bigint;
2252
2254
  preVerificationGas: string | number | bigint;
2253
- maxPriorityFeePerGas: string | number | bigint;
2254
- maxFeePerGas: string | number | bigint;
2255
- paymasterAndData?: string | null | undefined;
2256
2255
  signature?: string | null | undefined;
2256
+ paymasterAndData?: string | null | undefined;
2257
2257
  eip7702Auth?: {
2258
- contractAddress: string;
2259
2258
  chainId: string | number | bigint;
2260
- nonce: string | number | bigint;
2261
2259
  r: string;
2262
2260
  s: string;
2263
2261
  yParity: string | number | bigint;
2262
+ nonce: string | number | bigint;
2263
+ contractAddress: string;
2264
2264
  v?: string | number | bigint | undefined;
2265
2265
  } | {
2266
+ address: string;
2266
2267
  chainId: string | number | bigint;
2267
- nonce: string | number | bigint;
2268
2268
  r: string;
2269
2269
  s: string;
2270
2270
  yParity: string | number | bigint;
2271
- address: string;
2271
+ nonce: string | number | bigint;
2272
2272
  v?: string | number | bigint | undefined;
2273
2273
  } | null | undefined;
2274
2274
  }>, {
2275
2275
  nonce: bigint;
2276
+ maxFeePerGas: bigint;
2277
+ maxPriorityFeePerGas: bigint;
2278
+ signature: `0x${string}`;
2276
2279
  sender: `0x${string}`;
2277
2280
  initCode: `0x${string}`;
2278
2281
  callData: `0x${string}`;
2279
2282
  callGasLimit: bigint;
2280
2283
  verificationGasLimit: bigint;
2281
2284
  preVerificationGas: bigint;
2282
- maxPriorityFeePerGas: bigint;
2283
- maxFeePerGas: bigint;
2284
2285
  paymasterAndData: `0x${string}`;
2285
- signature: `0x${string}`;
2286
2286
  eip7702Auth?: {
2287
- contractAddress: `0x${string}`;
2288
2287
  chainId: number;
2289
- nonce: number;
2290
2288
  r: `0x${string}`;
2291
2289
  s: `0x${string}`;
2292
2290
  yParity: number;
2291
+ nonce: number;
2292
+ contractAddress: `0x${string}`;
2293
2293
  v?: bigint | undefined;
2294
2294
  } | {
2295
+ address: `0x${string}`;
2295
2296
  chainId: number;
2296
- nonce: number;
2297
2297
  r: `0x${string}`;
2298
2298
  s: `0x${string}`;
2299
2299
  yParity: number;
2300
- address: `0x${string}`;
2300
+ nonce: number;
2301
2301
  v?: bigint | undefined;
2302
2302
  } | null | undefined;
2303
2303
  }, {
2304
2304
  nonce: string | number | bigint;
2305
+ maxFeePerGas: string | number | bigint;
2306
+ maxPriorityFeePerGas: string | number | bigint;
2305
2307
  sender: string;
2306
2308
  initCode: string;
2307
2309
  callData: string;
2308
2310
  callGasLimit: string | number | bigint;
2309
2311
  verificationGasLimit: string | number | bigint;
2310
2312
  preVerificationGas: string | number | bigint;
2311
- maxPriorityFeePerGas: string | number | bigint;
2312
- maxFeePerGas: string | number | bigint;
2313
- paymasterAndData?: string | null | undefined;
2314
2313
  signature?: string | null | undefined;
2314
+ paymasterAndData?: string | null | undefined;
2315
2315
  eip7702Auth?: {
2316
- contractAddress: string;
2317
2316
  chainId: string | number | bigint;
2318
- nonce: string | number | bigint;
2319
2317
  r: string;
2320
2318
  s: string;
2321
2319
  yParity: string | number | bigint;
2320
+ nonce: string | number | bigint;
2321
+ contractAddress: string;
2322
2322
  v?: string | number | bigint | undefined;
2323
2323
  } | {
2324
+ address: string;
2324
2325
  chainId: string | number | bigint;
2325
- nonce: string | number | bigint;
2326
2326
  r: string;
2327
2327
  s: string;
2328
2328
  yParity: string | number | bigint;
2329
- address: string;
2329
+ nonce: string | number | bigint;
2330
2330
  v?: string | number | bigint | undefined;
2331
2331
  } | null | undefined;
2332
2332
  }>, z.ZodEffects<z.ZodObject<{
@@ -2354,20 +2354,20 @@ export declare const pmGetPaymasterStubDataParamsSchema: z.ZodEffects<z.ZodUnion
2354
2354
  v: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>>;
2355
2355
  yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
2356
2356
  }, "strip", z.ZodTypeAny, {
2357
- contractAddress: `0x${string}`;
2358
2357
  chainId: number;
2359
- nonce: number;
2360
2358
  r: `0x${string}`;
2361
2359
  s: `0x${string}`;
2362
2360
  yParity: number;
2361
+ nonce: number;
2362
+ contractAddress: `0x${string}`;
2363
2363
  v?: bigint | undefined;
2364
2364
  }, {
2365
- contractAddress: string;
2366
2365
  chainId: string | number | bigint;
2367
- nonce: string | number | bigint;
2368
2366
  r: string;
2369
2367
  s: string;
2370
2368
  yParity: string | number | bigint;
2369
+ nonce: string | number | bigint;
2370
+ contractAddress: string;
2371
2371
  v?: string | number | bigint | undefined;
2372
2372
  }>, z.ZodObject<{
2373
2373
  address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
@@ -2378,214 +2378,214 @@ export declare const pmGetPaymasterStubDataParamsSchema: z.ZodEffects<z.ZodUnion
2378
2378
  v: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>>;
2379
2379
  yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
2380
2380
  }, "strip", z.ZodTypeAny, {
2381
+ address: `0x${string}`;
2381
2382
  chainId: number;
2382
- nonce: number;
2383
2383
  r: `0x${string}`;
2384
2384
  s: `0x${string}`;
2385
2385
  yParity: number;
2386
- address: `0x${string}`;
2386
+ nonce: number;
2387
2387
  v?: bigint | undefined;
2388
2388
  }, {
2389
+ address: string;
2389
2390
  chainId: string | number | bigint;
2390
- nonce: string | number | bigint;
2391
2391
  r: string;
2392
2392
  s: string;
2393
2393
  yParity: string | number | bigint;
2394
- address: string;
2394
+ nonce: string | number | bigint;
2395
2395
  v?: string | number | bigint | undefined;
2396
2396
  }>]>>>;
2397
2397
  }, "strict", z.ZodTypeAny, {
2398
2398
  nonce: bigint;
2399
+ maxFeePerGas: bigint;
2400
+ maxPriorityFeePerGas: bigint;
2401
+ factory: `0x${string}` | null;
2402
+ factoryData: `0x${string}` | null;
2403
+ signature: `0x${string}`;
2399
2404
  sender: `0x${string}`;
2400
2405
  callData: `0x${string}`;
2401
2406
  callGasLimit: bigint;
2402
2407
  verificationGasLimit: bigint;
2403
2408
  preVerificationGas: bigint;
2404
- maxPriorityFeePerGas: bigint;
2405
- maxFeePerGas: bigint;
2406
- signature: `0x${string}`;
2407
- factory: `0x${string}` | null;
2408
- factoryData: `0x${string}` | null;
2409
2409
  paymaster: `0x${string}` | null;
2410
2410
  paymasterVerificationGasLimit: bigint | null;
2411
2411
  paymasterPostOpGasLimit: bigint | null;
2412
2412
  paymasterData: `0x${string}` | null;
2413
2413
  eip7702Auth?: {
2414
- contractAddress: `0x${string}`;
2415
2414
  chainId: number;
2416
- nonce: number;
2417
2415
  r: `0x${string}`;
2418
2416
  s: `0x${string}`;
2419
2417
  yParity: number;
2418
+ nonce: number;
2419
+ contractAddress: `0x${string}`;
2420
2420
  v?: bigint | undefined;
2421
2421
  } | {
2422
+ address: `0x${string}`;
2422
2423
  chainId: number;
2423
- nonce: number;
2424
2424
  r: `0x${string}`;
2425
2425
  s: `0x${string}`;
2426
2426
  yParity: number;
2427
- address: `0x${string}`;
2427
+ nonce: number;
2428
2428
  v?: bigint | undefined;
2429
2429
  } | null | undefined;
2430
2430
  }, {
2431
2431
  nonce: string | number | bigint;
2432
+ maxFeePerGas: string | number | bigint;
2433
+ maxPriorityFeePerGas: string | number | bigint;
2432
2434
  sender: string;
2433
2435
  callData: string;
2434
2436
  callGasLimit: string | number | bigint;
2435
2437
  verificationGasLimit: string | number | bigint;
2436
2438
  preVerificationGas: string | number | bigint;
2437
- maxPriorityFeePerGas: string | number | bigint;
2438
- maxFeePerGas: string | number | bigint;
2439
+ factory?: string | null | undefined;
2440
+ factoryData?: string | null | undefined;
2439
2441
  signature?: string | undefined;
2440
2442
  eip7702Auth?: {
2441
- contractAddress: string;
2442
2443
  chainId: string | number | bigint;
2443
- nonce: string | number | bigint;
2444
2444
  r: string;
2445
2445
  s: string;
2446
2446
  yParity: string | number | bigint;
2447
+ nonce: string | number | bigint;
2448
+ contractAddress: string;
2447
2449
  v?: string | number | bigint | undefined;
2448
2450
  } | {
2451
+ address: string;
2449
2452
  chainId: string | number | bigint;
2450
- nonce: string | number | bigint;
2451
2453
  r: string;
2452
2454
  s: string;
2453
2455
  yParity: string | number | bigint;
2454
- address: string;
2456
+ nonce: string | number | bigint;
2455
2457
  v?: string | number | bigint | undefined;
2456
2458
  } | null | undefined;
2457
- factory?: string | null | undefined;
2458
- factoryData?: string | null | undefined;
2459
2459
  paymaster?: string | null | undefined;
2460
2460
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
2461
2461
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
2462
2462
  paymasterData?: string | null | undefined;
2463
2463
  }>, {
2464
2464
  nonce: bigint;
2465
+ maxFeePerGas: bigint;
2466
+ maxPriorityFeePerGas: bigint;
2467
+ factory: `0x${string}` | null;
2468
+ factoryData: `0x${string}` | null;
2469
+ signature: `0x${string}`;
2465
2470
  sender: `0x${string}`;
2466
2471
  callData: `0x${string}`;
2467
2472
  callGasLimit: bigint;
2468
2473
  verificationGasLimit: bigint;
2469
2474
  preVerificationGas: bigint;
2470
- maxPriorityFeePerGas: bigint;
2471
- maxFeePerGas: bigint;
2472
- signature: `0x${string}`;
2473
- factory: `0x${string}` | null;
2474
- factoryData: `0x${string}` | null;
2475
2475
  paymaster: `0x${string}` | null;
2476
2476
  paymasterVerificationGasLimit: bigint | null;
2477
2477
  paymasterPostOpGasLimit: bigint | null;
2478
2478
  paymasterData: `0x${string}` | null;
2479
2479
  eip7702Auth?: {
2480
- contractAddress: `0x${string}`;
2481
2480
  chainId: number;
2482
- nonce: number;
2483
2481
  r: `0x${string}`;
2484
2482
  s: `0x${string}`;
2485
2483
  yParity: number;
2484
+ nonce: number;
2485
+ contractAddress: `0x${string}`;
2486
2486
  v?: bigint | undefined;
2487
2487
  } | {
2488
+ address: `0x${string}`;
2488
2489
  chainId: number;
2489
- nonce: number;
2490
2490
  r: `0x${string}`;
2491
2491
  s: `0x${string}`;
2492
2492
  yParity: number;
2493
- address: `0x${string}`;
2493
+ nonce: number;
2494
2494
  v?: bigint | undefined;
2495
2495
  } | null | undefined;
2496
2496
  }, {
2497
2497
  nonce: string | number | bigint;
2498
+ maxFeePerGas: string | number | bigint;
2499
+ maxPriorityFeePerGas: string | number | bigint;
2498
2500
  sender: string;
2499
2501
  callData: string;
2500
2502
  callGasLimit: string | number | bigint;
2501
2503
  verificationGasLimit: string | number | bigint;
2502
2504
  preVerificationGas: string | number | bigint;
2503
- maxPriorityFeePerGas: string | number | bigint;
2504
- maxFeePerGas: string | number | bigint;
2505
+ factory?: string | null | undefined;
2506
+ factoryData?: string | null | undefined;
2505
2507
  signature?: string | undefined;
2506
2508
  eip7702Auth?: {
2507
- contractAddress: string;
2508
2509
  chainId: string | number | bigint;
2509
- nonce: string | number | bigint;
2510
2510
  r: string;
2511
2511
  s: string;
2512
2512
  yParity: string | number | bigint;
2513
+ nonce: string | number | bigint;
2514
+ contractAddress: string;
2513
2515
  v?: string | number | bigint | undefined;
2514
2516
  } | {
2517
+ address: string;
2515
2518
  chainId: string | number | bigint;
2516
- nonce: string | number | bigint;
2517
2519
  r: string;
2518
2520
  s: string;
2519
2521
  yParity: string | number | bigint;
2520
- address: string;
2522
+ nonce: string | number | bigint;
2521
2523
  v?: string | number | bigint | undefined;
2522
2524
  } | null | undefined;
2523
- factory?: string | null | undefined;
2524
- factoryData?: string | null | undefined;
2525
2525
  paymaster?: string | null | undefined;
2526
2526
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
2527
2527
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
2528
2528
  paymasterData?: string | null | undefined;
2529
2529
  }>]>, z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, string | number | bigint, string | number | bigint>, bigint, string | number | bigint>], null>]>, readonly [{
2530
2530
  nonce: bigint;
2531
+ maxFeePerGas: bigint;
2532
+ maxPriorityFeePerGas: bigint;
2533
+ signature: `0x${string}`;
2531
2534
  sender: `0x${string}`;
2532
2535
  initCode: `0x${string}`;
2533
2536
  callData: `0x${string}`;
2534
2537
  callGasLimit: bigint;
2535
2538
  verificationGasLimit: bigint;
2536
2539
  preVerificationGas: bigint;
2537
- maxPriorityFeePerGas: bigint;
2538
- maxFeePerGas: bigint;
2539
2540
  paymasterAndData: `0x${string}`;
2540
- signature: `0x${string}`;
2541
2541
  eip7702Auth?: {
2542
- contractAddress: `0x${string}`;
2543
2542
  chainId: number;
2544
- nonce: number;
2545
2543
  r: `0x${string}`;
2546
2544
  s: `0x${string}`;
2547
2545
  yParity: number;
2546
+ nonce: number;
2547
+ contractAddress: `0x${string}`;
2548
2548
  v?: bigint | undefined;
2549
2549
  } | {
2550
+ address: `0x${string}`;
2550
2551
  chainId: number;
2551
- nonce: number;
2552
2552
  r: `0x${string}`;
2553
2553
  s: `0x${string}`;
2554
2554
  yParity: number;
2555
- address: `0x${string}`;
2555
+ nonce: number;
2556
2556
  v?: bigint | undefined;
2557
2557
  } | null | undefined;
2558
2558
  } | {
2559
2559
  nonce: bigint;
2560
+ maxFeePerGas: bigint;
2561
+ maxPriorityFeePerGas: bigint;
2562
+ factory: `0x${string}` | null;
2563
+ factoryData: `0x${string}` | null;
2564
+ signature: `0x${string}`;
2560
2565
  sender: `0x${string}`;
2561
2566
  callData: `0x${string}`;
2562
2567
  callGasLimit: bigint;
2563
2568
  verificationGasLimit: bigint;
2564
2569
  preVerificationGas: bigint;
2565
- maxPriorityFeePerGas: bigint;
2566
- maxFeePerGas: bigint;
2567
- signature: `0x${string}`;
2568
- factory: `0x${string}` | null;
2569
- factoryData: `0x${string}` | null;
2570
2570
  paymaster: `0x${string}` | null;
2571
2571
  paymasterVerificationGasLimit: bigint | null;
2572
2572
  paymasterPostOpGasLimit: bigint | null;
2573
2573
  paymasterData: `0x${string}` | null;
2574
2574
  eip7702Auth?: {
2575
- contractAddress: `0x${string}`;
2576
2575
  chainId: number;
2577
- nonce: number;
2578
2576
  r: `0x${string}`;
2579
2577
  s: `0x${string}`;
2580
2578
  yParity: number;
2579
+ nonce: number;
2580
+ contractAddress: `0x${string}`;
2581
2581
  v?: bigint | undefined;
2582
2582
  } | {
2583
+ address: `0x${string}`;
2583
2584
  chainId: number;
2584
- nonce: number;
2585
2585
  r: `0x${string}`;
2586
2586
  s: `0x${string}`;
2587
2587
  yParity: number;
2588
- address: `0x${string}`;
2588
+ nonce: number;
2589
2589
  v?: bigint | undefined;
2590
2590
  } | null | undefined;
2591
2591
  }, `0x${string}`, bigint, {
@@ -2596,62 +2596,62 @@ export declare const pmGetPaymasterStubDataParamsSchema: z.ZodEffects<z.ZodUnion
2596
2596
  meta?: Record<string, string> | undefined;
2597
2597
  } | null], [{
2598
2598
  nonce: string | number | bigint;
2599
+ maxFeePerGas: string | number | bigint;
2600
+ maxPriorityFeePerGas: string | number | bigint;
2599
2601
  sender: string;
2600
2602
  initCode: string;
2601
2603
  callData: string;
2602
2604
  callGasLimit: string | number | bigint;
2603
2605
  verificationGasLimit: string | number | bigint;
2604
2606
  preVerificationGas: string | number | bigint;
2605
- maxPriorityFeePerGas: string | number | bigint;
2606
- maxFeePerGas: string | number | bigint;
2607
- paymasterAndData?: string | null | undefined;
2608
2607
  signature?: string | null | undefined;
2608
+ paymasterAndData?: string | null | undefined;
2609
2609
  eip7702Auth?: {
2610
- contractAddress: string;
2611
2610
  chainId: string | number | bigint;
2612
- nonce: string | number | bigint;
2613
2611
  r: string;
2614
2612
  s: string;
2615
2613
  yParity: string | number | bigint;
2614
+ nonce: string | number | bigint;
2615
+ contractAddress: string;
2616
2616
  v?: string | number | bigint | undefined;
2617
2617
  } | {
2618
+ address: string;
2618
2619
  chainId: string | number | bigint;
2619
- nonce: string | number | bigint;
2620
2620
  r: string;
2621
2621
  s: string;
2622
2622
  yParity: string | number | bigint;
2623
- address: string;
2623
+ nonce: string | number | bigint;
2624
2624
  v?: string | number | bigint | undefined;
2625
2625
  } | null | undefined;
2626
2626
  } | {
2627
2627
  nonce: string | number | bigint;
2628
+ maxFeePerGas: string | number | bigint;
2629
+ maxPriorityFeePerGas: string | number | bigint;
2628
2630
  sender: string;
2629
2631
  callData: string;
2630
2632
  callGasLimit: string | number | bigint;
2631
2633
  verificationGasLimit: string | number | bigint;
2632
2634
  preVerificationGas: string | number | bigint;
2633
- maxPriorityFeePerGas: string | number | bigint;
2634
- maxFeePerGas: string | number | bigint;
2635
+ factory?: string | null | undefined;
2636
+ factoryData?: string | null | undefined;
2635
2637
  signature?: string | undefined;
2636
2638
  eip7702Auth?: {
2637
- contractAddress: string;
2638
2639
  chainId: string | number | bigint;
2639
- nonce: string | number | bigint;
2640
2640
  r: string;
2641
2641
  s: string;
2642
2642
  yParity: string | number | bigint;
2643
+ nonce: string | number | bigint;
2644
+ contractAddress: string;
2643
2645
  v?: string | number | bigint | undefined;
2644
2646
  } | {
2647
+ address: string;
2645
2648
  chainId: string | number | bigint;
2646
- nonce: string | number | bigint;
2647
2649
  r: string;
2648
2650
  s: string;
2649
2651
  yParity: string | number | bigint;
2650
- address: string;
2652
+ nonce: string | number | bigint;
2651
2653
  v?: string | number | bigint | undefined;
2652
2654
  } | null | undefined;
2653
- factory?: string | null | undefined;
2654
- factoryData?: string | null | undefined;
2655
2655
  paymaster?: string | null | undefined;
2656
2656
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
2657
2657
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
@@ -2664,62 +2664,62 @@ export declare const pmGetPaymasterStubDataParamsSchema: z.ZodEffects<z.ZodUnion
2664
2664
  meta?: Record<string, string> | undefined;
2665
2665
  } | null] | [{
2666
2666
  nonce: string | number | bigint;
2667
+ maxFeePerGas: string | number | bigint;
2668
+ maxPriorityFeePerGas: string | number | bigint;
2667
2669
  sender: string;
2668
2670
  initCode: string;
2669
2671
  callData: string;
2670
2672
  callGasLimit: string | number | bigint;
2671
2673
  verificationGasLimit: string | number | bigint;
2672
2674
  preVerificationGas: string | number | bigint;
2673
- maxPriorityFeePerGas: string | number | bigint;
2674
- maxFeePerGas: string | number | bigint;
2675
- paymasterAndData?: string | null | undefined;
2676
2675
  signature?: string | null | undefined;
2676
+ paymasterAndData?: string | null | undefined;
2677
2677
  eip7702Auth?: {
2678
- contractAddress: string;
2679
2678
  chainId: string | number | bigint;
2680
- nonce: string | number | bigint;
2681
2679
  r: string;
2682
2680
  s: string;
2683
2681
  yParity: string | number | bigint;
2682
+ nonce: string | number | bigint;
2683
+ contractAddress: string;
2684
2684
  v?: string | number | bigint | undefined;
2685
2685
  } | {
2686
+ address: string;
2686
2687
  chainId: string | number | bigint;
2687
- nonce: string | number | bigint;
2688
2688
  r: string;
2689
2689
  s: string;
2690
2690
  yParity: string | number | bigint;
2691
- address: string;
2691
+ nonce: string | number | bigint;
2692
2692
  v?: string | number | bigint | undefined;
2693
2693
  } | null | undefined;
2694
2694
  } | {
2695
2695
  nonce: string | number | bigint;
2696
+ maxFeePerGas: string | number | bigint;
2697
+ maxPriorityFeePerGas: string | number | bigint;
2696
2698
  sender: string;
2697
2699
  callData: string;
2698
2700
  callGasLimit: string | number | bigint;
2699
2701
  verificationGasLimit: string | number | bigint;
2700
2702
  preVerificationGas: string | number | bigint;
2701
- maxPriorityFeePerGas: string | number | bigint;
2702
- maxFeePerGas: string | number | bigint;
2703
+ factory?: string | null | undefined;
2704
+ factoryData?: string | null | undefined;
2703
2705
  signature?: string | undefined;
2704
2706
  eip7702Auth?: {
2705
- contractAddress: string;
2706
2707
  chainId: string | number | bigint;
2707
- nonce: string | number | bigint;
2708
2708
  r: string;
2709
2709
  s: string;
2710
2710
  yParity: string | number | bigint;
2711
+ nonce: string | number | bigint;
2712
+ contractAddress: string;
2711
2713
  v?: string | number | bigint | undefined;
2712
2714
  } | {
2715
+ address: string;
2713
2716
  chainId: string | number | bigint;
2714
- nonce: string | number | bigint;
2715
2717
  r: string;
2716
2718
  s: string;
2717
2719
  yParity: string | number | bigint;
2718
- address: string;
2720
+ nonce: string | number | bigint;
2719
2721
  v?: string | number | bigint | undefined;
2720
2722
  } | null | undefined;
2721
- factory?: string | null | undefined;
2722
- factoryData?: string | null | undefined;
2723
2723
  paymaster?: string | null | undefined;
2724
2724
  paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
2725
2725
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;