@pimlico/alto 0.0.0-main.20250123T120827 → 0.0.0-main.20250123T175913
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/executor/executor.js +34 -38
- package/esm/executor/executor.js.map +1 -1
- package/esm/executor/executorManager.d.ts +2 -2
- package/esm/executor/executorManager.js +12 -14
- package/esm/executor/executorManager.js.map +1 -1
- package/esm/executor/utils.d.ts +2 -2
- package/esm/executor/utils.js +10 -10
- package/esm/executor/utils.js.map +1 -1
- package/esm/mempool/mempool.d.ts +2 -2
- package/esm/mempool/mempool.js +49 -48
- package/esm/mempool/mempool.js.map +1 -1
- package/esm/rpc/estimation/gasEstimationHandler.d.ts +1 -3
- package/esm/rpc/estimation/gasEstimationHandler.js +1 -3
- package/esm/rpc/estimation/gasEstimationHandler.js.map +1 -1
- package/esm/rpc/estimation/gasEstimationsV06.d.ts +1 -3
- package/esm/rpc/estimation/gasEstimationsV06.js +8 -9
- package/esm/rpc/estimation/gasEstimationsV06.js.map +1 -1
- package/esm/rpc/estimation/gasEstimationsV07.d.ts +3 -6
- package/esm/rpc/estimation/gasEstimationsV07.js +15 -3
- package/esm/rpc/estimation/gasEstimationsV07.js.map +1 -1
- package/esm/rpc/nonceQueuer.d.ts +4 -4
- package/esm/rpc/nonceQueuer.js +9 -11
- package/esm/rpc/nonceQueuer.js.map +1 -1
- package/esm/rpc/rpcHandler.d.ts +5 -7
- package/esm/rpc/rpcHandler.js +14 -26
- package/esm/rpc/rpcHandler.js.map +1 -1
- package/esm/rpc/validation/UnsafeValidator.d.ts +5 -11
- package/esm/rpc/validation/UnsafeValidator.js +8 -13
- package/esm/rpc/validation/UnsafeValidator.js.map +1 -1
- package/esm/types/interfaces.d.ts +0 -6
- package/esm/types/mempool.d.ts +4 -7
- package/esm/types/mempool.js +0 -9
- package/esm/types/mempool.js.map +1 -1
- package/esm/types/schemas.d.ts +2682 -136
- package/esm/types/schemas.js +19 -24
- package/esm/types/schemas.js.map +1 -1
- package/esm/utils/metrics.d.ts +2 -2
- package/lib/executor/executor.js +33 -37
- package/lib/executor/executor.js.map +1 -1
- package/lib/executor/executorManager.d.ts +2 -2
- package/lib/executor/executorManager.js +11 -13
- package/lib/executor/executorManager.js.map +1 -1
- package/lib/executor/utils.d.ts +2 -2
- package/lib/executor/utils.js +9 -9
- package/lib/executor/utils.js.map +1 -1
- package/lib/mempool/mempool.d.ts +2 -2
- package/lib/mempool/mempool.js +48 -47
- package/lib/mempool/mempool.js.map +1 -1
- package/lib/rpc/estimation/gasEstimationHandler.d.ts +1 -3
- package/lib/rpc/estimation/gasEstimationHandler.js +1 -3
- package/lib/rpc/estimation/gasEstimationHandler.js.map +1 -1
- package/lib/rpc/estimation/gasEstimationsV06.d.ts +1 -3
- package/lib/rpc/estimation/gasEstimationsV06.js +8 -9
- package/lib/rpc/estimation/gasEstimationsV06.js.map +1 -1
- package/lib/rpc/estimation/gasEstimationsV07.d.ts +3 -6
- package/lib/rpc/estimation/gasEstimationsV07.js +15 -3
- package/lib/rpc/estimation/gasEstimationsV07.js.map +1 -1
- package/lib/rpc/nonceQueuer.d.ts +4 -4
- package/lib/rpc/nonceQueuer.js +8 -10
- package/lib/rpc/nonceQueuer.js.map +1 -1
- package/lib/rpc/rpcHandler.d.ts +5 -7
- package/lib/rpc/rpcHandler.js +13 -25
- package/lib/rpc/rpcHandler.js.map +1 -1
- package/lib/rpc/validation/UnsafeValidator.d.ts +5 -11
- package/lib/rpc/validation/UnsafeValidator.js +8 -13
- package/lib/rpc/validation/UnsafeValidator.js.map +1 -1
- package/lib/types/interfaces.d.ts +0 -6
- package/lib/types/mempool.d.ts +4 -7
- package/lib/types/mempool.js +1 -12
- package/lib/types/mempool.js.map +1 -1
- package/lib/types/schemas.d.ts +2682 -136
- package/lib/types/schemas.js +19 -24
- package/lib/types/schemas.js.map +1 -1
- package/lib/utils/metrics.d.ts +2 -2
- package/package.json +1 -1
package/esm/types/schemas.d.ts
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
-
import type { MempoolUserOperation } from "./mempool.js";
|
|
3
|
-
import { SignedAuthorization } from "viem/experimental";
|
|
4
2
|
export declare const hexData32Pattern: RegExp;
|
|
5
3
|
export declare const commaSeperatedAddressPattern: RegExp;
|
|
6
4
|
declare const addressSchema: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
@@ -23,6 +21,31 @@ declare const userOperationV06Schema: z.ZodEffects<z.ZodObject<{
|
|
|
23
21
|
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
24
22
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
25
23
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
24
|
+
eip7702Auth: z.ZodOptional<z.ZodObject<{
|
|
25
|
+
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
26
|
+
chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
27
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
28
|
+
r: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
29
|
+
s: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
30
|
+
v: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
31
|
+
yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
32
|
+
}, "strip", z.ZodTypeAny, {
|
|
33
|
+
nonce: number;
|
|
34
|
+
contractAddress: `0x${string}`;
|
|
35
|
+
chainId: number;
|
|
36
|
+
r: `0x${string}`;
|
|
37
|
+
s: `0x${string}`;
|
|
38
|
+
v: bigint;
|
|
39
|
+
yParity: number;
|
|
40
|
+
}, {
|
|
41
|
+
nonce: string | number | bigint;
|
|
42
|
+
contractAddress: string;
|
|
43
|
+
chainId: string | number | bigint;
|
|
44
|
+
r: string;
|
|
45
|
+
s: string;
|
|
46
|
+
v: string | number | bigint;
|
|
47
|
+
yParity: string | number | bigint;
|
|
48
|
+
}>>;
|
|
26
49
|
}, "strict", z.ZodTypeAny, {
|
|
27
50
|
sender: `0x${string}`;
|
|
28
51
|
nonce: bigint;
|
|
@@ -35,6 +58,15 @@ declare const userOperationV06Schema: z.ZodEffects<z.ZodObject<{
|
|
|
35
58
|
maxFeePerGas: bigint;
|
|
36
59
|
maxPriorityFeePerGas: bigint;
|
|
37
60
|
signature: `0x${string}`;
|
|
61
|
+
eip7702Auth?: {
|
|
62
|
+
nonce: number;
|
|
63
|
+
contractAddress: `0x${string}`;
|
|
64
|
+
chainId: number;
|
|
65
|
+
r: `0x${string}`;
|
|
66
|
+
s: `0x${string}`;
|
|
67
|
+
v: bigint;
|
|
68
|
+
yParity: number;
|
|
69
|
+
} | undefined;
|
|
38
70
|
}, {
|
|
39
71
|
sender: string;
|
|
40
72
|
nonce: string | number | bigint;
|
|
@@ -47,6 +79,15 @@ declare const userOperationV06Schema: z.ZodEffects<z.ZodObject<{
|
|
|
47
79
|
maxFeePerGas: string | number | bigint;
|
|
48
80
|
maxPriorityFeePerGas: string | number | bigint;
|
|
49
81
|
signature: string;
|
|
82
|
+
eip7702Auth?: {
|
|
83
|
+
nonce: string | number | bigint;
|
|
84
|
+
contractAddress: string;
|
|
85
|
+
chainId: string | number | bigint;
|
|
86
|
+
r: string;
|
|
87
|
+
s: string;
|
|
88
|
+
v: string | number | bigint;
|
|
89
|
+
yParity: string | number | bigint;
|
|
90
|
+
} | undefined;
|
|
50
91
|
}>, {
|
|
51
92
|
sender: `0x${string}`;
|
|
52
93
|
nonce: bigint;
|
|
@@ -59,6 +100,15 @@ declare const userOperationV06Schema: z.ZodEffects<z.ZodObject<{
|
|
|
59
100
|
maxFeePerGas: bigint;
|
|
60
101
|
maxPriorityFeePerGas: bigint;
|
|
61
102
|
signature: `0x${string}`;
|
|
103
|
+
eip7702Auth?: {
|
|
104
|
+
nonce: number;
|
|
105
|
+
contractAddress: `0x${string}`;
|
|
106
|
+
chainId: number;
|
|
107
|
+
r: `0x${string}`;
|
|
108
|
+
s: `0x${string}`;
|
|
109
|
+
v: bigint;
|
|
110
|
+
yParity: number;
|
|
111
|
+
} | undefined;
|
|
62
112
|
}, {
|
|
63
113
|
sender: string;
|
|
64
114
|
nonce: string | number | bigint;
|
|
@@ -71,6 +121,15 @@ declare const userOperationV06Schema: z.ZodEffects<z.ZodObject<{
|
|
|
71
121
|
maxFeePerGas: string | number | bigint;
|
|
72
122
|
maxPriorityFeePerGas: string | number | bigint;
|
|
73
123
|
signature: string;
|
|
124
|
+
eip7702Auth?: {
|
|
125
|
+
nonce: string | number | bigint;
|
|
126
|
+
contractAddress: string;
|
|
127
|
+
chainId: string | number | bigint;
|
|
128
|
+
r: string;
|
|
129
|
+
s: string;
|
|
130
|
+
v: string | number | bigint;
|
|
131
|
+
yParity: string | number | bigint;
|
|
132
|
+
} | undefined;
|
|
74
133
|
}>;
|
|
75
134
|
declare const userOperationV07Schema: z.ZodEffects<z.ZodObject<{
|
|
76
135
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
@@ -88,6 +147,31 @@ declare const userOperationV07Schema: z.ZodEffects<z.ZodObject<{
|
|
|
88
147
|
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
89
148
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
90
149
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
150
|
+
eip7702Auth: z.ZodOptional<z.ZodObject<{
|
|
151
|
+
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
152
|
+
chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
153
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
154
|
+
r: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
155
|
+
s: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
156
|
+
v: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
157
|
+
yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
158
|
+
}, "strip", z.ZodTypeAny, {
|
|
159
|
+
nonce: number;
|
|
160
|
+
contractAddress: `0x${string}`;
|
|
161
|
+
chainId: number;
|
|
162
|
+
r: `0x${string}`;
|
|
163
|
+
s: `0x${string}`;
|
|
164
|
+
v: bigint;
|
|
165
|
+
yParity: number;
|
|
166
|
+
}, {
|
|
167
|
+
nonce: string | number | bigint;
|
|
168
|
+
contractAddress: string;
|
|
169
|
+
chainId: string | number | bigint;
|
|
170
|
+
r: string;
|
|
171
|
+
s: string;
|
|
172
|
+
v: string | number | bigint;
|
|
173
|
+
yParity: string | number | bigint;
|
|
174
|
+
}>>;
|
|
91
175
|
}, "strict", z.ZodTypeAny, {
|
|
92
176
|
sender: `0x${string}`;
|
|
93
177
|
factory: `0x${string}` | null;
|
|
@@ -104,6 +188,15 @@ declare const userOperationV07Schema: z.ZodEffects<z.ZodObject<{
|
|
|
104
188
|
paymasterPostOpGasLimit: bigint | null;
|
|
105
189
|
factoryData: `0x${string}` | null;
|
|
106
190
|
paymasterData: `0x${string}` | null;
|
|
191
|
+
eip7702Auth?: {
|
|
192
|
+
nonce: number;
|
|
193
|
+
contractAddress: `0x${string}`;
|
|
194
|
+
chainId: number;
|
|
195
|
+
r: `0x${string}`;
|
|
196
|
+
s: `0x${string}`;
|
|
197
|
+
v: bigint;
|
|
198
|
+
yParity: number;
|
|
199
|
+
} | undefined;
|
|
107
200
|
}, {
|
|
108
201
|
sender: string;
|
|
109
202
|
nonce: string | number | bigint;
|
|
@@ -120,6 +213,15 @@ declare const userOperationV07Schema: z.ZodEffects<z.ZodObject<{
|
|
|
120
213
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
121
214
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
122
215
|
paymasterData?: string | null | undefined;
|
|
216
|
+
eip7702Auth?: {
|
|
217
|
+
nonce: string | number | bigint;
|
|
218
|
+
contractAddress: string;
|
|
219
|
+
chainId: string | number | bigint;
|
|
220
|
+
r: string;
|
|
221
|
+
s: string;
|
|
222
|
+
v: string | number | bigint;
|
|
223
|
+
yParity: string | number | bigint;
|
|
224
|
+
} | undefined;
|
|
123
225
|
}>, {
|
|
124
226
|
sender: `0x${string}`;
|
|
125
227
|
factory: `0x${string}` | null;
|
|
@@ -136,6 +238,15 @@ declare const userOperationV07Schema: z.ZodEffects<z.ZodObject<{
|
|
|
136
238
|
paymasterPostOpGasLimit: bigint | null;
|
|
137
239
|
factoryData: `0x${string}` | null;
|
|
138
240
|
paymasterData: `0x${string}` | null;
|
|
241
|
+
eip7702Auth?: {
|
|
242
|
+
nonce: number;
|
|
243
|
+
contractAddress: `0x${string}`;
|
|
244
|
+
chainId: number;
|
|
245
|
+
r: `0x${string}`;
|
|
246
|
+
s: `0x${string}`;
|
|
247
|
+
v: bigint;
|
|
248
|
+
yParity: number;
|
|
249
|
+
} | undefined;
|
|
139
250
|
}, {
|
|
140
251
|
sender: string;
|
|
141
252
|
nonce: string | number | bigint;
|
|
@@ -152,6 +263,15 @@ declare const userOperationV07Schema: z.ZodEffects<z.ZodObject<{
|
|
|
152
263
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
153
264
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
154
265
|
paymasterData?: string | null | undefined;
|
|
266
|
+
eip7702Auth?: {
|
|
267
|
+
nonce: string | number | bigint;
|
|
268
|
+
contractAddress: string;
|
|
269
|
+
chainId: string | number | bigint;
|
|
270
|
+
r: string;
|
|
271
|
+
s: string;
|
|
272
|
+
v: string | number | bigint;
|
|
273
|
+
yParity: string | number | bigint;
|
|
274
|
+
} | undefined;
|
|
155
275
|
}>;
|
|
156
276
|
declare const packerUserOperationSchema: z.ZodEffects<z.ZodObject<{
|
|
157
277
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
@@ -216,6 +336,31 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
216
336
|
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
217
337
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
218
338
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
339
|
+
eip7702Auth: z.ZodOptional<z.ZodObject<{
|
|
340
|
+
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
341
|
+
chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
342
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
343
|
+
r: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
344
|
+
s: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
345
|
+
v: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
346
|
+
yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
347
|
+
}, "strip", z.ZodTypeAny, {
|
|
348
|
+
nonce: number;
|
|
349
|
+
contractAddress: `0x${string}`;
|
|
350
|
+
chainId: number;
|
|
351
|
+
r: `0x${string}`;
|
|
352
|
+
s: `0x${string}`;
|
|
353
|
+
v: bigint;
|
|
354
|
+
yParity: number;
|
|
355
|
+
}, {
|
|
356
|
+
nonce: string | number | bigint;
|
|
357
|
+
contractAddress: string;
|
|
358
|
+
chainId: string | number | bigint;
|
|
359
|
+
r: string;
|
|
360
|
+
s: string;
|
|
361
|
+
v: string | number | bigint;
|
|
362
|
+
yParity: string | number | bigint;
|
|
363
|
+
}>>;
|
|
219
364
|
}, "strict", z.ZodTypeAny, {
|
|
220
365
|
sender: `0x${string}`;
|
|
221
366
|
nonce: bigint;
|
|
@@ -228,6 +373,15 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
228
373
|
maxFeePerGas: bigint;
|
|
229
374
|
maxPriorityFeePerGas: bigint;
|
|
230
375
|
signature: `0x${string}`;
|
|
376
|
+
eip7702Auth?: {
|
|
377
|
+
nonce: number;
|
|
378
|
+
contractAddress: `0x${string}`;
|
|
379
|
+
chainId: number;
|
|
380
|
+
r: `0x${string}`;
|
|
381
|
+
s: `0x${string}`;
|
|
382
|
+
v: bigint;
|
|
383
|
+
yParity: number;
|
|
384
|
+
} | undefined;
|
|
231
385
|
}, {
|
|
232
386
|
sender: string;
|
|
233
387
|
nonce: string | number | bigint;
|
|
@@ -240,6 +394,15 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
240
394
|
maxFeePerGas: string | number | bigint;
|
|
241
395
|
maxPriorityFeePerGas: string | number | bigint;
|
|
242
396
|
signature: string;
|
|
397
|
+
eip7702Auth?: {
|
|
398
|
+
nonce: string | number | bigint;
|
|
399
|
+
contractAddress: string;
|
|
400
|
+
chainId: string | number | bigint;
|
|
401
|
+
r: string;
|
|
402
|
+
s: string;
|
|
403
|
+
v: string | number | bigint;
|
|
404
|
+
yParity: string | number | bigint;
|
|
405
|
+
} | undefined;
|
|
243
406
|
}>, {
|
|
244
407
|
sender: `0x${string}`;
|
|
245
408
|
nonce: bigint;
|
|
@@ -252,6 +415,15 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
252
415
|
maxFeePerGas: bigint;
|
|
253
416
|
maxPriorityFeePerGas: bigint;
|
|
254
417
|
signature: `0x${string}`;
|
|
418
|
+
eip7702Auth?: {
|
|
419
|
+
nonce: number;
|
|
420
|
+
contractAddress: `0x${string}`;
|
|
421
|
+
chainId: number;
|
|
422
|
+
r: `0x${string}`;
|
|
423
|
+
s: `0x${string}`;
|
|
424
|
+
v: bigint;
|
|
425
|
+
yParity: number;
|
|
426
|
+
} | undefined;
|
|
255
427
|
}, {
|
|
256
428
|
sender: string;
|
|
257
429
|
nonce: string | number | bigint;
|
|
@@ -264,6 +436,15 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
264
436
|
maxFeePerGas: string | number | bigint;
|
|
265
437
|
maxPriorityFeePerGas: string | number | bigint;
|
|
266
438
|
signature: string;
|
|
439
|
+
eip7702Auth?: {
|
|
440
|
+
nonce: string | number | bigint;
|
|
441
|
+
contractAddress: string;
|
|
442
|
+
chainId: string | number | bigint;
|
|
443
|
+
r: string;
|
|
444
|
+
s: string;
|
|
445
|
+
v: string | number | bigint;
|
|
446
|
+
yParity: string | number | bigint;
|
|
447
|
+
} | undefined;
|
|
267
448
|
}>, z.ZodEffects<z.ZodObject<{
|
|
268
449
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
269
450
|
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
@@ -280,6 +461,31 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
280
461
|
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
281
462
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
282
463
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
464
|
+
eip7702Auth: z.ZodOptional<z.ZodObject<{
|
|
465
|
+
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
466
|
+
chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
467
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
468
|
+
r: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
469
|
+
s: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
470
|
+
v: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
471
|
+
yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
472
|
+
}, "strip", z.ZodTypeAny, {
|
|
473
|
+
nonce: number;
|
|
474
|
+
contractAddress: `0x${string}`;
|
|
475
|
+
chainId: number;
|
|
476
|
+
r: `0x${string}`;
|
|
477
|
+
s: `0x${string}`;
|
|
478
|
+
v: bigint;
|
|
479
|
+
yParity: number;
|
|
480
|
+
}, {
|
|
481
|
+
nonce: string | number | bigint;
|
|
482
|
+
contractAddress: string;
|
|
483
|
+
chainId: string | number | bigint;
|
|
484
|
+
r: string;
|
|
485
|
+
s: string;
|
|
486
|
+
v: string | number | bigint;
|
|
487
|
+
yParity: string | number | bigint;
|
|
488
|
+
}>>;
|
|
283
489
|
}, "strict", z.ZodTypeAny, {
|
|
284
490
|
sender: `0x${string}`;
|
|
285
491
|
factory: `0x${string}` | null;
|
|
@@ -296,6 +502,15 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
296
502
|
paymasterPostOpGasLimit: bigint | null;
|
|
297
503
|
factoryData: `0x${string}` | null;
|
|
298
504
|
paymasterData: `0x${string}` | null;
|
|
505
|
+
eip7702Auth?: {
|
|
506
|
+
nonce: number;
|
|
507
|
+
contractAddress: `0x${string}`;
|
|
508
|
+
chainId: number;
|
|
509
|
+
r: `0x${string}`;
|
|
510
|
+
s: `0x${string}`;
|
|
511
|
+
v: bigint;
|
|
512
|
+
yParity: number;
|
|
513
|
+
} | undefined;
|
|
299
514
|
}, {
|
|
300
515
|
sender: string;
|
|
301
516
|
nonce: string | number | bigint;
|
|
@@ -312,6 +527,15 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
312
527
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
313
528
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
314
529
|
paymasterData?: string | null | undefined;
|
|
530
|
+
eip7702Auth?: {
|
|
531
|
+
nonce: string | number | bigint;
|
|
532
|
+
contractAddress: string;
|
|
533
|
+
chainId: string | number | bigint;
|
|
534
|
+
r: string;
|
|
535
|
+
s: string;
|
|
536
|
+
v: string | number | bigint;
|
|
537
|
+
yParity: string | number | bigint;
|
|
538
|
+
} | undefined;
|
|
315
539
|
}>, {
|
|
316
540
|
sender: `0x${string}`;
|
|
317
541
|
factory: `0x${string}` | null;
|
|
@@ -328,6 +552,15 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
328
552
|
paymasterPostOpGasLimit: bigint | null;
|
|
329
553
|
factoryData: `0x${string}` | null;
|
|
330
554
|
paymasterData: `0x${string}` | null;
|
|
555
|
+
eip7702Auth?: {
|
|
556
|
+
nonce: number;
|
|
557
|
+
contractAddress: `0x${string}`;
|
|
558
|
+
chainId: number;
|
|
559
|
+
r: `0x${string}`;
|
|
560
|
+
s: `0x${string}`;
|
|
561
|
+
v: bigint;
|
|
562
|
+
yParity: number;
|
|
563
|
+
} | undefined;
|
|
331
564
|
}, {
|
|
332
565
|
sender: string;
|
|
333
566
|
nonce: string | number | bigint;
|
|
@@ -344,21 +577,26 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
344
577
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
345
578
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
346
579
|
paymasterData?: string | null | undefined;
|
|
580
|
+
eip7702Auth?: {
|
|
581
|
+
nonce: string | number | bigint;
|
|
582
|
+
contractAddress: string;
|
|
583
|
+
chainId: string | number | bigint;
|
|
584
|
+
r: string;
|
|
585
|
+
s: string;
|
|
586
|
+
v: string | number | bigint;
|
|
587
|
+
yParity: string | number | bigint;
|
|
588
|
+
} | undefined;
|
|
347
589
|
}>]>;
|
|
348
590
|
export type UserOperationV06 = z.infer<typeof userOperationV06Schema>;
|
|
349
591
|
export type UserOperationV07 = z.infer<typeof userOperationV07Schema>;
|
|
350
592
|
export type PackedUserOperation = z.infer<typeof packerUserOperationSchema>;
|
|
351
593
|
export type UserOperation = z.infer<typeof userOperationSchema>;
|
|
352
|
-
export type UserOperation7702 = {
|
|
353
|
-
userOperation: UserOperation;
|
|
354
|
-
authorization: SignedAuthorization;
|
|
355
|
-
};
|
|
356
594
|
export type UserOperationRequest = {
|
|
357
595
|
userOperation: UserOperation;
|
|
358
596
|
entryPoint: Address;
|
|
359
597
|
};
|
|
360
598
|
export type UserOperationWithHash = {
|
|
361
|
-
|
|
599
|
+
userOperation: UserOperation;
|
|
362
600
|
userOperationHash: HexData32;
|
|
363
601
|
};
|
|
364
602
|
declare const jsonRpcSchema: z.ZodObject<{
|
|
@@ -444,6 +682,31 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
|
|
|
444
682
|
maxFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
445
683
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
446
684
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
685
|
+
eip7702Auth: z.ZodOptional<z.ZodObject<{
|
|
686
|
+
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
687
|
+
chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
688
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
689
|
+
r: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
690
|
+
s: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
691
|
+
v: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
692
|
+
yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
693
|
+
}, "strip", z.ZodTypeAny, {
|
|
694
|
+
nonce: number;
|
|
695
|
+
contractAddress: `0x${string}`;
|
|
696
|
+
chainId: number;
|
|
697
|
+
r: `0x${string}`;
|
|
698
|
+
s: `0x${string}`;
|
|
699
|
+
v: bigint;
|
|
700
|
+
yParity: number;
|
|
701
|
+
}, {
|
|
702
|
+
nonce: string | number | bigint;
|
|
703
|
+
contractAddress: string;
|
|
704
|
+
chainId: string | number | bigint;
|
|
705
|
+
r: string;
|
|
706
|
+
s: string;
|
|
707
|
+
v: string | number | bigint;
|
|
708
|
+
yParity: string | number | bigint;
|
|
709
|
+
}>>;
|
|
447
710
|
}, "strict", z.ZodTypeAny, {
|
|
448
711
|
sender: `0x${string}`;
|
|
449
712
|
nonce: bigint;
|
|
@@ -456,6 +719,15 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
|
|
|
456
719
|
maxFeePerGas: bigint;
|
|
457
720
|
maxPriorityFeePerGas: bigint;
|
|
458
721
|
signature: `0x${string}`;
|
|
722
|
+
eip7702Auth?: {
|
|
723
|
+
nonce: number;
|
|
724
|
+
contractAddress: `0x${string}`;
|
|
725
|
+
chainId: number;
|
|
726
|
+
r: `0x${string}`;
|
|
727
|
+
s: `0x${string}`;
|
|
728
|
+
v: bigint;
|
|
729
|
+
yParity: number;
|
|
730
|
+
} | undefined;
|
|
459
731
|
}, {
|
|
460
732
|
sender: string;
|
|
461
733
|
nonce: string | number | bigint;
|
|
@@ -468,6 +740,15 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
|
|
|
468
740
|
preVerificationGas?: string | number | bigint | undefined;
|
|
469
741
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
470
742
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
743
|
+
eip7702Auth?: {
|
|
744
|
+
nonce: string | number | bigint;
|
|
745
|
+
contractAddress: string;
|
|
746
|
+
chainId: string | number | bigint;
|
|
747
|
+
r: string;
|
|
748
|
+
s: string;
|
|
749
|
+
v: string | number | bigint;
|
|
750
|
+
yParity: string | number | bigint;
|
|
751
|
+
} | undefined;
|
|
471
752
|
}>, {
|
|
472
753
|
sender: `0x${string}`;
|
|
473
754
|
nonce: bigint;
|
|
@@ -480,6 +761,15 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
|
|
|
480
761
|
maxFeePerGas: bigint;
|
|
481
762
|
maxPriorityFeePerGas: bigint;
|
|
482
763
|
signature: `0x${string}`;
|
|
764
|
+
eip7702Auth?: {
|
|
765
|
+
nonce: number;
|
|
766
|
+
contractAddress: `0x${string}`;
|
|
767
|
+
chainId: number;
|
|
768
|
+
r: `0x${string}`;
|
|
769
|
+
s: `0x${string}`;
|
|
770
|
+
v: bigint;
|
|
771
|
+
yParity: number;
|
|
772
|
+
} | undefined;
|
|
483
773
|
}, {
|
|
484
774
|
sender: string;
|
|
485
775
|
nonce: string | number | bigint;
|
|
@@ -492,6 +782,15 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
|
|
|
492
782
|
preVerificationGas?: string | number | bigint | undefined;
|
|
493
783
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
494
784
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
785
|
+
eip7702Auth?: {
|
|
786
|
+
nonce: string | number | bigint;
|
|
787
|
+
contractAddress: string;
|
|
788
|
+
chainId: string | number | bigint;
|
|
789
|
+
r: string;
|
|
790
|
+
s: string;
|
|
791
|
+
v: string | number | bigint;
|
|
792
|
+
yParity: string | number | bigint;
|
|
793
|
+
} | undefined;
|
|
495
794
|
}>, z.ZodEffects<z.ZodObject<{
|
|
496
795
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
497
796
|
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
@@ -508,6 +807,31 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
|
|
|
508
807
|
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
509
808
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
510
809
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
810
|
+
eip7702Auth: z.ZodOptional<z.ZodObject<{
|
|
811
|
+
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
812
|
+
chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
813
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
814
|
+
r: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
815
|
+
s: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
816
|
+
v: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
817
|
+
yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
818
|
+
}, "strip", z.ZodTypeAny, {
|
|
819
|
+
nonce: number;
|
|
820
|
+
contractAddress: `0x${string}`;
|
|
821
|
+
chainId: number;
|
|
822
|
+
r: `0x${string}`;
|
|
823
|
+
s: `0x${string}`;
|
|
824
|
+
v: bigint;
|
|
825
|
+
yParity: number;
|
|
826
|
+
}, {
|
|
827
|
+
nonce: string | number | bigint;
|
|
828
|
+
contractAddress: string;
|
|
829
|
+
chainId: string | number | bigint;
|
|
830
|
+
r: string;
|
|
831
|
+
s: string;
|
|
832
|
+
v: string | number | bigint;
|
|
833
|
+
yParity: string | number | bigint;
|
|
834
|
+
}>>;
|
|
511
835
|
}, "strict", z.ZodTypeAny, {
|
|
512
836
|
sender: `0x${string}`;
|
|
513
837
|
factory: `0x${string}` | null;
|
|
@@ -524,6 +848,15 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
|
|
|
524
848
|
paymasterPostOpGasLimit: bigint | null;
|
|
525
849
|
factoryData: `0x${string}` | null;
|
|
526
850
|
paymasterData: `0x${string}` | null;
|
|
851
|
+
eip7702Auth?: {
|
|
852
|
+
nonce: number;
|
|
853
|
+
contractAddress: `0x${string}`;
|
|
854
|
+
chainId: number;
|
|
855
|
+
r: `0x${string}`;
|
|
856
|
+
s: `0x${string}`;
|
|
857
|
+
v: bigint;
|
|
858
|
+
yParity: number;
|
|
859
|
+
} | undefined;
|
|
527
860
|
}, {
|
|
528
861
|
sender: string;
|
|
529
862
|
nonce: string | number | bigint;
|
|
@@ -540,6 +873,15 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
|
|
|
540
873
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
541
874
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
542
875
|
paymasterData?: string | null | undefined;
|
|
876
|
+
eip7702Auth?: {
|
|
877
|
+
nonce: string | number | bigint;
|
|
878
|
+
contractAddress: string;
|
|
879
|
+
chainId: string | number | bigint;
|
|
880
|
+
r: string;
|
|
881
|
+
s: string;
|
|
882
|
+
v: string | number | bigint;
|
|
883
|
+
yParity: string | number | bigint;
|
|
884
|
+
} | undefined;
|
|
543
885
|
}>, {
|
|
544
886
|
sender: `0x${string}`;
|
|
545
887
|
factory: `0x${string}` | null;
|
|
@@ -556,6 +898,15 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
|
|
|
556
898
|
paymasterPostOpGasLimit: bigint | null;
|
|
557
899
|
factoryData: `0x${string}` | null;
|
|
558
900
|
paymasterData: `0x${string}` | null;
|
|
901
|
+
eip7702Auth?: {
|
|
902
|
+
nonce: number;
|
|
903
|
+
contractAddress: `0x${string}`;
|
|
904
|
+
chainId: number;
|
|
905
|
+
r: `0x${string}`;
|
|
906
|
+
s: `0x${string}`;
|
|
907
|
+
v: bigint;
|
|
908
|
+
yParity: number;
|
|
909
|
+
} | undefined;
|
|
559
910
|
}, {
|
|
560
911
|
sender: string;
|
|
561
912
|
nonce: string | number | bigint;
|
|
@@ -572,6 +923,15 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
|
|
|
572
923
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
573
924
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
574
925
|
paymasterData?: string | null | undefined;
|
|
926
|
+
eip7702Auth?: {
|
|
927
|
+
nonce: string | number | bigint;
|
|
928
|
+
contractAddress: string;
|
|
929
|
+
chainId: string | number | bigint;
|
|
930
|
+
r: string;
|
|
931
|
+
s: string;
|
|
932
|
+
v: string | number | bigint;
|
|
933
|
+
yParity: string | number | bigint;
|
|
934
|
+
} | undefined;
|
|
575
935
|
}>]>, z.ZodEffects<z.ZodString, `0x${string}`, string>], null>, z.ZodTuple<[z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
576
936
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
577
937
|
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
@@ -584,6 +944,31 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
|
|
|
584
944
|
maxFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
585
945
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
586
946
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
947
|
+
eip7702Auth: z.ZodOptional<z.ZodObject<{
|
|
948
|
+
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
949
|
+
chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
950
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
951
|
+
r: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
952
|
+
s: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
953
|
+
v: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
954
|
+
yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
955
|
+
}, "strip", z.ZodTypeAny, {
|
|
956
|
+
nonce: number;
|
|
957
|
+
contractAddress: `0x${string}`;
|
|
958
|
+
chainId: number;
|
|
959
|
+
r: `0x${string}`;
|
|
960
|
+
s: `0x${string}`;
|
|
961
|
+
v: bigint;
|
|
962
|
+
yParity: number;
|
|
963
|
+
}, {
|
|
964
|
+
nonce: string | number | bigint;
|
|
965
|
+
contractAddress: string;
|
|
966
|
+
chainId: string | number | bigint;
|
|
967
|
+
r: string;
|
|
968
|
+
s: string;
|
|
969
|
+
v: string | number | bigint;
|
|
970
|
+
yParity: string | number | bigint;
|
|
971
|
+
}>>;
|
|
587
972
|
}, "strict", z.ZodTypeAny, {
|
|
588
973
|
sender: `0x${string}`;
|
|
589
974
|
nonce: bigint;
|
|
@@ -596,6 +981,15 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
|
|
|
596
981
|
maxFeePerGas: bigint;
|
|
597
982
|
maxPriorityFeePerGas: bigint;
|
|
598
983
|
signature: `0x${string}`;
|
|
984
|
+
eip7702Auth?: {
|
|
985
|
+
nonce: number;
|
|
986
|
+
contractAddress: `0x${string}`;
|
|
987
|
+
chainId: number;
|
|
988
|
+
r: `0x${string}`;
|
|
989
|
+
s: `0x${string}`;
|
|
990
|
+
v: bigint;
|
|
991
|
+
yParity: number;
|
|
992
|
+
} | undefined;
|
|
599
993
|
}, {
|
|
600
994
|
sender: string;
|
|
601
995
|
nonce: string | number | bigint;
|
|
@@ -608,6 +1002,15 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
|
|
|
608
1002
|
preVerificationGas?: string | number | bigint | undefined;
|
|
609
1003
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
610
1004
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
1005
|
+
eip7702Auth?: {
|
|
1006
|
+
nonce: string | number | bigint;
|
|
1007
|
+
contractAddress: string;
|
|
1008
|
+
chainId: string | number | bigint;
|
|
1009
|
+
r: string;
|
|
1010
|
+
s: string;
|
|
1011
|
+
v: string | number | bigint;
|
|
1012
|
+
yParity: string | number | bigint;
|
|
1013
|
+
} | undefined;
|
|
611
1014
|
}>, {
|
|
612
1015
|
sender: `0x${string}`;
|
|
613
1016
|
nonce: bigint;
|
|
@@ -620,6 +1023,15 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
|
|
|
620
1023
|
maxFeePerGas: bigint;
|
|
621
1024
|
maxPriorityFeePerGas: bigint;
|
|
622
1025
|
signature: `0x${string}`;
|
|
1026
|
+
eip7702Auth?: {
|
|
1027
|
+
nonce: number;
|
|
1028
|
+
contractAddress: `0x${string}`;
|
|
1029
|
+
chainId: number;
|
|
1030
|
+
r: `0x${string}`;
|
|
1031
|
+
s: `0x${string}`;
|
|
1032
|
+
v: bigint;
|
|
1033
|
+
yParity: number;
|
|
1034
|
+
} | undefined;
|
|
623
1035
|
}, {
|
|
624
1036
|
sender: string;
|
|
625
1037
|
nonce: string | number | bigint;
|
|
@@ -632,6 +1044,15 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
|
|
|
632
1044
|
preVerificationGas?: string | number | bigint | undefined;
|
|
633
1045
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
634
1046
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
1047
|
+
eip7702Auth?: {
|
|
1048
|
+
nonce: string | number | bigint;
|
|
1049
|
+
contractAddress: string;
|
|
1050
|
+
chainId: string | number | bigint;
|
|
1051
|
+
r: string;
|
|
1052
|
+
s: string;
|
|
1053
|
+
v: string | number | bigint;
|
|
1054
|
+
yParity: string | number | bigint;
|
|
1055
|
+
} | undefined;
|
|
635
1056
|
}>, z.ZodEffects<z.ZodObject<{
|
|
636
1057
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
637
1058
|
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
@@ -648,6 +1069,31 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
|
|
|
648
1069
|
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
649
1070
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
650
1071
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1072
|
+
eip7702Auth: z.ZodOptional<z.ZodObject<{
|
|
1073
|
+
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1074
|
+
chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
1075
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
1076
|
+
r: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
1077
|
+
s: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
1078
|
+
v: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
1079
|
+
yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
1080
|
+
}, "strip", z.ZodTypeAny, {
|
|
1081
|
+
nonce: number;
|
|
1082
|
+
contractAddress: `0x${string}`;
|
|
1083
|
+
chainId: number;
|
|
1084
|
+
r: `0x${string}`;
|
|
1085
|
+
s: `0x${string}`;
|
|
1086
|
+
v: bigint;
|
|
1087
|
+
yParity: number;
|
|
1088
|
+
}, {
|
|
1089
|
+
nonce: string | number | bigint;
|
|
1090
|
+
contractAddress: string;
|
|
1091
|
+
chainId: string | number | bigint;
|
|
1092
|
+
r: string;
|
|
1093
|
+
s: string;
|
|
1094
|
+
v: string | number | bigint;
|
|
1095
|
+
yParity: string | number | bigint;
|
|
1096
|
+
}>>;
|
|
651
1097
|
}, "strict", z.ZodTypeAny, {
|
|
652
1098
|
sender: `0x${string}`;
|
|
653
1099
|
factory: `0x${string}` | null;
|
|
@@ -664,6 +1110,15 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
|
|
|
664
1110
|
paymasterPostOpGasLimit: bigint | null;
|
|
665
1111
|
factoryData: `0x${string}` | null;
|
|
666
1112
|
paymasterData: `0x${string}` | null;
|
|
1113
|
+
eip7702Auth?: {
|
|
1114
|
+
nonce: number;
|
|
1115
|
+
contractAddress: `0x${string}`;
|
|
1116
|
+
chainId: number;
|
|
1117
|
+
r: `0x${string}`;
|
|
1118
|
+
s: `0x${string}`;
|
|
1119
|
+
v: bigint;
|
|
1120
|
+
yParity: number;
|
|
1121
|
+
} | undefined;
|
|
667
1122
|
}, {
|
|
668
1123
|
sender: string;
|
|
669
1124
|
nonce: string | number | bigint;
|
|
@@ -680,6 +1135,15 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
|
|
|
680
1135
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
681
1136
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
682
1137
|
paymasterData?: string | null | undefined;
|
|
1138
|
+
eip7702Auth?: {
|
|
1139
|
+
nonce: string | number | bigint;
|
|
1140
|
+
contractAddress: string;
|
|
1141
|
+
chainId: string | number | bigint;
|
|
1142
|
+
r: string;
|
|
1143
|
+
s: string;
|
|
1144
|
+
v: string | number | bigint;
|
|
1145
|
+
yParity: string | number | bigint;
|
|
1146
|
+
} | undefined;
|
|
683
1147
|
}>, {
|
|
684
1148
|
sender: `0x${string}`;
|
|
685
1149
|
factory: `0x${string}` | null;
|
|
@@ -696,6 +1160,15 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
|
|
|
696
1160
|
paymasterPostOpGasLimit: bigint | null;
|
|
697
1161
|
factoryData: `0x${string}` | null;
|
|
698
1162
|
paymasterData: `0x${string}` | null;
|
|
1163
|
+
eip7702Auth?: {
|
|
1164
|
+
nonce: number;
|
|
1165
|
+
contractAddress: `0x${string}`;
|
|
1166
|
+
chainId: number;
|
|
1167
|
+
r: `0x${string}`;
|
|
1168
|
+
s: `0x${string}`;
|
|
1169
|
+
v: bigint;
|
|
1170
|
+
yParity: number;
|
|
1171
|
+
} | undefined;
|
|
699
1172
|
}, {
|
|
700
1173
|
sender: string;
|
|
701
1174
|
nonce: string | number | bigint;
|
|
@@ -712,6 +1185,15 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
|
|
|
712
1185
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
713
1186
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
714
1187
|
paymasterData?: string | null | undefined;
|
|
1188
|
+
eip7702Auth?: {
|
|
1189
|
+
nonce: string | number | bigint;
|
|
1190
|
+
contractAddress: string;
|
|
1191
|
+
chainId: string | number | bigint;
|
|
1192
|
+
r: string;
|
|
1193
|
+
s: string;
|
|
1194
|
+
v: string | number | bigint;
|
|
1195
|
+
yParity: string | number | bigint;
|
|
1196
|
+
} | undefined;
|
|
715
1197
|
}>]>, z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodRecord<z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodObject<{
|
|
716
1198
|
balance: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
717
1199
|
nonce: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
@@ -744,6 +1226,15 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
|
|
|
744
1226
|
maxFeePerGas: bigint;
|
|
745
1227
|
maxPriorityFeePerGas: bigint;
|
|
746
1228
|
signature: `0x${string}`;
|
|
1229
|
+
eip7702Auth?: {
|
|
1230
|
+
nonce: number;
|
|
1231
|
+
contractAddress: `0x${string}`;
|
|
1232
|
+
chainId: number;
|
|
1233
|
+
r: `0x${string}`;
|
|
1234
|
+
s: `0x${string}`;
|
|
1235
|
+
v: bigint;
|
|
1236
|
+
yParity: number;
|
|
1237
|
+
} | undefined;
|
|
747
1238
|
} | {
|
|
748
1239
|
sender: `0x${string}`;
|
|
749
1240
|
factory: `0x${string}` | null;
|
|
@@ -760,6 +1251,15 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
|
|
|
760
1251
|
paymasterPostOpGasLimit: bigint | null;
|
|
761
1252
|
factoryData: `0x${string}` | null;
|
|
762
1253
|
paymasterData: `0x${string}` | null;
|
|
1254
|
+
eip7702Auth?: {
|
|
1255
|
+
nonce: number;
|
|
1256
|
+
contractAddress: `0x${string}`;
|
|
1257
|
+
chainId: number;
|
|
1258
|
+
r: `0x${string}`;
|
|
1259
|
+
s: `0x${string}`;
|
|
1260
|
+
v: bigint;
|
|
1261
|
+
yParity: number;
|
|
1262
|
+
} | undefined;
|
|
763
1263
|
}, `0x${string}`] | [{
|
|
764
1264
|
sender: `0x${string}`;
|
|
765
1265
|
nonce: bigint;
|
|
@@ -772,6 +1272,15 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
|
|
|
772
1272
|
maxFeePerGas: bigint;
|
|
773
1273
|
maxPriorityFeePerGas: bigint;
|
|
774
1274
|
signature: `0x${string}`;
|
|
1275
|
+
eip7702Auth?: {
|
|
1276
|
+
nonce: number;
|
|
1277
|
+
contractAddress: `0x${string}`;
|
|
1278
|
+
chainId: number;
|
|
1279
|
+
r: `0x${string}`;
|
|
1280
|
+
s: `0x${string}`;
|
|
1281
|
+
v: bigint;
|
|
1282
|
+
yParity: number;
|
|
1283
|
+
} | undefined;
|
|
775
1284
|
} | {
|
|
776
1285
|
sender: `0x${string}`;
|
|
777
1286
|
factory: `0x${string}` | null;
|
|
@@ -788,6 +1297,15 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
|
|
|
788
1297
|
paymasterPostOpGasLimit: bigint | null;
|
|
789
1298
|
factoryData: `0x${string}` | null;
|
|
790
1299
|
paymasterData: `0x${string}` | null;
|
|
1300
|
+
eip7702Auth?: {
|
|
1301
|
+
nonce: number;
|
|
1302
|
+
contractAddress: `0x${string}`;
|
|
1303
|
+
chainId: number;
|
|
1304
|
+
r: `0x${string}`;
|
|
1305
|
+
s: `0x${string}`;
|
|
1306
|
+
v: bigint;
|
|
1307
|
+
yParity: number;
|
|
1308
|
+
} | undefined;
|
|
791
1309
|
}, `0x${string}`, Partial<Record<`0x${string}`, {
|
|
792
1310
|
balance?: bigint | undefined;
|
|
793
1311
|
nonce?: bigint | undefined;
|
|
@@ -809,6 +1327,15 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
|
|
|
809
1327
|
preVerificationGas?: string | number | bigint | undefined;
|
|
810
1328
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
811
1329
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
1330
|
+
eip7702Auth?: {
|
|
1331
|
+
nonce: string | number | bigint;
|
|
1332
|
+
contractAddress: string;
|
|
1333
|
+
chainId: string | number | bigint;
|
|
1334
|
+
r: string;
|
|
1335
|
+
s: string;
|
|
1336
|
+
v: string | number | bigint;
|
|
1337
|
+
yParity: string | number | bigint;
|
|
1338
|
+
} | undefined;
|
|
812
1339
|
} | {
|
|
813
1340
|
sender: string;
|
|
814
1341
|
nonce: string | number | bigint;
|
|
@@ -825,6 +1352,15 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
|
|
|
825
1352
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
826
1353
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
827
1354
|
paymasterData?: string | null | undefined;
|
|
1355
|
+
eip7702Auth?: {
|
|
1356
|
+
nonce: string | number | bigint;
|
|
1357
|
+
contractAddress: string;
|
|
1358
|
+
chainId: string | number | bigint;
|
|
1359
|
+
r: string;
|
|
1360
|
+
s: string;
|
|
1361
|
+
v: string | number | bigint;
|
|
1362
|
+
yParity: string | number | bigint;
|
|
1363
|
+
} | undefined;
|
|
828
1364
|
}, string] | [{
|
|
829
1365
|
sender: string;
|
|
830
1366
|
nonce: string | number | bigint;
|
|
@@ -837,6 +1373,15 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
|
|
|
837
1373
|
preVerificationGas?: string | number | bigint | undefined;
|
|
838
1374
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
839
1375
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
1376
|
+
eip7702Auth?: {
|
|
1377
|
+
nonce: string | number | bigint;
|
|
1378
|
+
contractAddress: string;
|
|
1379
|
+
chainId: string | number | bigint;
|
|
1380
|
+
r: string;
|
|
1381
|
+
s: string;
|
|
1382
|
+
v: string | number | bigint;
|
|
1383
|
+
yParity: string | number | bigint;
|
|
1384
|
+
} | undefined;
|
|
840
1385
|
} | {
|
|
841
1386
|
sender: string;
|
|
842
1387
|
nonce: string | number | bigint;
|
|
@@ -853,6 +1398,15 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
|
|
|
853
1398
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
854
1399
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
855
1400
|
paymasterData?: string | null | undefined;
|
|
1401
|
+
eip7702Auth?: {
|
|
1402
|
+
nonce: string | number | bigint;
|
|
1403
|
+
contractAddress: string;
|
|
1404
|
+
chainId: string | number | bigint;
|
|
1405
|
+
r: string;
|
|
1406
|
+
s: string;
|
|
1407
|
+
v: string | number | bigint;
|
|
1408
|
+
yParity: string | number | bigint;
|
|
1409
|
+
} | undefined;
|
|
856
1410
|
}, string, Record<string, {
|
|
857
1411
|
balance?: string | number | bigint | undefined;
|
|
858
1412
|
nonce?: string | number | bigint | undefined;
|
|
@@ -876,6 +1430,31 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
|
|
|
876
1430
|
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
877
1431
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
878
1432
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1433
|
+
eip7702Auth: z.ZodOptional<z.ZodObject<{
|
|
1434
|
+
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1435
|
+
chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
1436
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
1437
|
+
r: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
1438
|
+
s: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
1439
|
+
v: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
1440
|
+
yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
1441
|
+
}, "strip", z.ZodTypeAny, {
|
|
1442
|
+
nonce: number;
|
|
1443
|
+
contractAddress: `0x${string}`;
|
|
1444
|
+
chainId: number;
|
|
1445
|
+
r: `0x${string}`;
|
|
1446
|
+
s: `0x${string}`;
|
|
1447
|
+
v: bigint;
|
|
1448
|
+
yParity: number;
|
|
1449
|
+
}, {
|
|
1450
|
+
nonce: string | number | bigint;
|
|
1451
|
+
contractAddress: string;
|
|
1452
|
+
chainId: string | number | bigint;
|
|
1453
|
+
r: string;
|
|
1454
|
+
s: string;
|
|
1455
|
+
v: string | number | bigint;
|
|
1456
|
+
yParity: string | number | bigint;
|
|
1457
|
+
}>>;
|
|
879
1458
|
}, "strict", z.ZodTypeAny, {
|
|
880
1459
|
sender: `0x${string}`;
|
|
881
1460
|
nonce: bigint;
|
|
@@ -888,6 +1467,15 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
|
|
|
888
1467
|
maxFeePerGas: bigint;
|
|
889
1468
|
maxPriorityFeePerGas: bigint;
|
|
890
1469
|
signature: `0x${string}`;
|
|
1470
|
+
eip7702Auth?: {
|
|
1471
|
+
nonce: number;
|
|
1472
|
+
contractAddress: `0x${string}`;
|
|
1473
|
+
chainId: number;
|
|
1474
|
+
r: `0x${string}`;
|
|
1475
|
+
s: `0x${string}`;
|
|
1476
|
+
v: bigint;
|
|
1477
|
+
yParity: number;
|
|
1478
|
+
} | undefined;
|
|
891
1479
|
}, {
|
|
892
1480
|
sender: string;
|
|
893
1481
|
nonce: string | number | bigint;
|
|
@@ -900,6 +1488,15 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
|
|
|
900
1488
|
maxFeePerGas: string | number | bigint;
|
|
901
1489
|
maxPriorityFeePerGas: string | number | bigint;
|
|
902
1490
|
signature: string;
|
|
1491
|
+
eip7702Auth?: {
|
|
1492
|
+
nonce: string | number | bigint;
|
|
1493
|
+
contractAddress: string;
|
|
1494
|
+
chainId: string | number | bigint;
|
|
1495
|
+
r: string;
|
|
1496
|
+
s: string;
|
|
1497
|
+
v: string | number | bigint;
|
|
1498
|
+
yParity: string | number | bigint;
|
|
1499
|
+
} | undefined;
|
|
903
1500
|
}>, {
|
|
904
1501
|
sender: `0x${string}`;
|
|
905
1502
|
nonce: bigint;
|
|
@@ -912,6 +1509,15 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
|
|
|
912
1509
|
maxFeePerGas: bigint;
|
|
913
1510
|
maxPriorityFeePerGas: bigint;
|
|
914
1511
|
signature: `0x${string}`;
|
|
1512
|
+
eip7702Auth?: {
|
|
1513
|
+
nonce: number;
|
|
1514
|
+
contractAddress: `0x${string}`;
|
|
1515
|
+
chainId: number;
|
|
1516
|
+
r: `0x${string}`;
|
|
1517
|
+
s: `0x${string}`;
|
|
1518
|
+
v: bigint;
|
|
1519
|
+
yParity: number;
|
|
1520
|
+
} | undefined;
|
|
915
1521
|
}, {
|
|
916
1522
|
sender: string;
|
|
917
1523
|
nonce: string | number | bigint;
|
|
@@ -924,6 +1530,15 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
|
|
|
924
1530
|
maxFeePerGas: string | number | bigint;
|
|
925
1531
|
maxPriorityFeePerGas: string | number | bigint;
|
|
926
1532
|
signature: string;
|
|
1533
|
+
eip7702Auth?: {
|
|
1534
|
+
nonce: string | number | bigint;
|
|
1535
|
+
contractAddress: string;
|
|
1536
|
+
chainId: string | number | bigint;
|
|
1537
|
+
r: string;
|
|
1538
|
+
s: string;
|
|
1539
|
+
v: string | number | bigint;
|
|
1540
|
+
yParity: string | number | bigint;
|
|
1541
|
+
} | undefined;
|
|
927
1542
|
}>, z.ZodEffects<z.ZodObject<{
|
|
928
1543
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
929
1544
|
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
@@ -940,6 +1555,31 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
|
|
|
940
1555
|
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
941
1556
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
942
1557
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1558
|
+
eip7702Auth: z.ZodOptional<z.ZodObject<{
|
|
1559
|
+
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1560
|
+
chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
1561
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
1562
|
+
r: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
1563
|
+
s: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
1564
|
+
v: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
1565
|
+
yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
1566
|
+
}, "strip", z.ZodTypeAny, {
|
|
1567
|
+
nonce: number;
|
|
1568
|
+
contractAddress: `0x${string}`;
|
|
1569
|
+
chainId: number;
|
|
1570
|
+
r: `0x${string}`;
|
|
1571
|
+
s: `0x${string}`;
|
|
1572
|
+
v: bigint;
|
|
1573
|
+
yParity: number;
|
|
1574
|
+
}, {
|
|
1575
|
+
nonce: string | number | bigint;
|
|
1576
|
+
contractAddress: string;
|
|
1577
|
+
chainId: string | number | bigint;
|
|
1578
|
+
r: string;
|
|
1579
|
+
s: string;
|
|
1580
|
+
v: string | number | bigint;
|
|
1581
|
+
yParity: string | number | bigint;
|
|
1582
|
+
}>>;
|
|
943
1583
|
}, "strict", z.ZodTypeAny, {
|
|
944
1584
|
sender: `0x${string}`;
|
|
945
1585
|
factory: `0x${string}` | null;
|
|
@@ -956,6 +1596,15 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
|
|
|
956
1596
|
paymasterPostOpGasLimit: bigint | null;
|
|
957
1597
|
factoryData: `0x${string}` | null;
|
|
958
1598
|
paymasterData: `0x${string}` | null;
|
|
1599
|
+
eip7702Auth?: {
|
|
1600
|
+
nonce: number;
|
|
1601
|
+
contractAddress: `0x${string}`;
|
|
1602
|
+
chainId: number;
|
|
1603
|
+
r: `0x${string}`;
|
|
1604
|
+
s: `0x${string}`;
|
|
1605
|
+
v: bigint;
|
|
1606
|
+
yParity: number;
|
|
1607
|
+
} | undefined;
|
|
959
1608
|
}, {
|
|
960
1609
|
sender: string;
|
|
961
1610
|
nonce: string | number | bigint;
|
|
@@ -972,6 +1621,15 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
|
|
|
972
1621
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
973
1622
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
974
1623
|
paymasterData?: string | null | undefined;
|
|
1624
|
+
eip7702Auth?: {
|
|
1625
|
+
nonce: string | number | bigint;
|
|
1626
|
+
contractAddress: string;
|
|
1627
|
+
chainId: string | number | bigint;
|
|
1628
|
+
r: string;
|
|
1629
|
+
s: string;
|
|
1630
|
+
v: string | number | bigint;
|
|
1631
|
+
yParity: string | number | bigint;
|
|
1632
|
+
} | undefined;
|
|
975
1633
|
}>, {
|
|
976
1634
|
sender: `0x${string}`;
|
|
977
1635
|
factory: `0x${string}` | null;
|
|
@@ -988,6 +1646,15 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
|
|
|
988
1646
|
paymasterPostOpGasLimit: bigint | null;
|
|
989
1647
|
factoryData: `0x${string}` | null;
|
|
990
1648
|
paymasterData: `0x${string}` | null;
|
|
1649
|
+
eip7702Auth?: {
|
|
1650
|
+
nonce: number;
|
|
1651
|
+
contractAddress: `0x${string}`;
|
|
1652
|
+
chainId: number;
|
|
1653
|
+
r: `0x${string}`;
|
|
1654
|
+
s: `0x${string}`;
|
|
1655
|
+
v: bigint;
|
|
1656
|
+
yParity: number;
|
|
1657
|
+
} | undefined;
|
|
991
1658
|
}, {
|
|
992
1659
|
sender: string;
|
|
993
1660
|
nonce: string | number | bigint;
|
|
@@ -1004,6 +1671,15 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
|
|
|
1004
1671
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
1005
1672
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
1006
1673
|
paymasterData?: string | null | undefined;
|
|
1674
|
+
eip7702Auth?: {
|
|
1675
|
+
nonce: string | number | bigint;
|
|
1676
|
+
contractAddress: string;
|
|
1677
|
+
chainId: string | number | bigint;
|
|
1678
|
+
r: string;
|
|
1679
|
+
s: string;
|
|
1680
|
+
v: string | number | bigint;
|
|
1681
|
+
yParity: string | number | bigint;
|
|
1682
|
+
} | undefined;
|
|
1007
1683
|
}>]>, z.ZodEffects<z.ZodString, `0x${string}`, string>], null>;
|
|
1008
1684
|
}, "strip", z.ZodTypeAny, {
|
|
1009
1685
|
params: [{
|
|
@@ -1018,6 +1694,15 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
|
|
|
1018
1694
|
maxFeePerGas: bigint;
|
|
1019
1695
|
maxPriorityFeePerGas: bigint;
|
|
1020
1696
|
signature: `0x${string}`;
|
|
1697
|
+
eip7702Auth?: {
|
|
1698
|
+
nonce: number;
|
|
1699
|
+
contractAddress: `0x${string}`;
|
|
1700
|
+
chainId: number;
|
|
1701
|
+
r: `0x${string}`;
|
|
1702
|
+
s: `0x${string}`;
|
|
1703
|
+
v: bigint;
|
|
1704
|
+
yParity: number;
|
|
1705
|
+
} | undefined;
|
|
1021
1706
|
} | {
|
|
1022
1707
|
sender: `0x${string}`;
|
|
1023
1708
|
factory: `0x${string}` | null;
|
|
@@ -1034,6 +1719,15 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
|
|
|
1034
1719
|
paymasterPostOpGasLimit: bigint | null;
|
|
1035
1720
|
factoryData: `0x${string}` | null;
|
|
1036
1721
|
paymasterData: `0x${string}` | null;
|
|
1722
|
+
eip7702Auth?: {
|
|
1723
|
+
nonce: number;
|
|
1724
|
+
contractAddress: `0x${string}`;
|
|
1725
|
+
chainId: number;
|
|
1726
|
+
r: `0x${string}`;
|
|
1727
|
+
s: `0x${string}`;
|
|
1728
|
+
v: bigint;
|
|
1729
|
+
yParity: number;
|
|
1730
|
+
} | undefined;
|
|
1037
1731
|
}, `0x${string}`];
|
|
1038
1732
|
method: "eth_sendUserOperation";
|
|
1039
1733
|
}, {
|
|
@@ -1049,6 +1743,15 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
|
|
|
1049
1743
|
maxFeePerGas: string | number | bigint;
|
|
1050
1744
|
maxPriorityFeePerGas: string | number | bigint;
|
|
1051
1745
|
signature: string;
|
|
1746
|
+
eip7702Auth?: {
|
|
1747
|
+
nonce: string | number | bigint;
|
|
1748
|
+
contractAddress: string;
|
|
1749
|
+
chainId: string | number | bigint;
|
|
1750
|
+
r: string;
|
|
1751
|
+
s: string;
|
|
1752
|
+
v: string | number | bigint;
|
|
1753
|
+
yParity: string | number | bigint;
|
|
1754
|
+
} | undefined;
|
|
1052
1755
|
} | {
|
|
1053
1756
|
sender: string;
|
|
1054
1757
|
nonce: string | number | bigint;
|
|
@@ -1065,6 +1768,15 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
|
|
|
1065
1768
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
1066
1769
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
1067
1770
|
paymasterData?: string | null | undefined;
|
|
1771
|
+
eip7702Auth?: {
|
|
1772
|
+
nonce: string | number | bigint;
|
|
1773
|
+
contractAddress: string;
|
|
1774
|
+
chainId: string | number | bigint;
|
|
1775
|
+
r: string;
|
|
1776
|
+
s: string;
|
|
1777
|
+
v: string | number | bigint;
|
|
1778
|
+
yParity: string | number | bigint;
|
|
1779
|
+
} | undefined;
|
|
1068
1780
|
}, string];
|
|
1069
1781
|
method: "eth_sendUserOperation";
|
|
1070
1782
|
}>;
|
|
@@ -1242,6 +1954,31 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1242
1954
|
maxFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
1243
1955
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1244
1956
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1957
|
+
eip7702Auth: z.ZodOptional<z.ZodObject<{
|
|
1958
|
+
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1959
|
+
chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
1960
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
1961
|
+
r: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
1962
|
+
s: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
1963
|
+
v: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
1964
|
+
yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
1965
|
+
}, "strip", z.ZodTypeAny, {
|
|
1966
|
+
nonce: number;
|
|
1967
|
+
contractAddress: `0x${string}`;
|
|
1968
|
+
chainId: number;
|
|
1969
|
+
r: `0x${string}`;
|
|
1970
|
+
s: `0x${string}`;
|
|
1971
|
+
v: bigint;
|
|
1972
|
+
yParity: number;
|
|
1973
|
+
}, {
|
|
1974
|
+
nonce: string | number | bigint;
|
|
1975
|
+
contractAddress: string;
|
|
1976
|
+
chainId: string | number | bigint;
|
|
1977
|
+
r: string;
|
|
1978
|
+
s: string;
|
|
1979
|
+
v: string | number | bigint;
|
|
1980
|
+
yParity: string | number | bigint;
|
|
1981
|
+
}>>;
|
|
1245
1982
|
}, "strict", z.ZodTypeAny, {
|
|
1246
1983
|
sender: `0x${string}`;
|
|
1247
1984
|
nonce: bigint;
|
|
@@ -1254,6 +1991,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1254
1991
|
maxFeePerGas: bigint;
|
|
1255
1992
|
maxPriorityFeePerGas: bigint;
|
|
1256
1993
|
signature: `0x${string}`;
|
|
1994
|
+
eip7702Auth?: {
|
|
1995
|
+
nonce: number;
|
|
1996
|
+
contractAddress: `0x${string}`;
|
|
1997
|
+
chainId: number;
|
|
1998
|
+
r: `0x${string}`;
|
|
1999
|
+
s: `0x${string}`;
|
|
2000
|
+
v: bigint;
|
|
2001
|
+
yParity: number;
|
|
2002
|
+
} | undefined;
|
|
1257
2003
|
}, {
|
|
1258
2004
|
sender: string;
|
|
1259
2005
|
nonce: string | number | bigint;
|
|
@@ -1266,6 +2012,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1266
2012
|
preVerificationGas?: string | number | bigint | undefined;
|
|
1267
2013
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
1268
2014
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
2015
|
+
eip7702Auth?: {
|
|
2016
|
+
nonce: string | number | bigint;
|
|
2017
|
+
contractAddress: string;
|
|
2018
|
+
chainId: string | number | bigint;
|
|
2019
|
+
r: string;
|
|
2020
|
+
s: string;
|
|
2021
|
+
v: string | number | bigint;
|
|
2022
|
+
yParity: string | number | bigint;
|
|
2023
|
+
} | undefined;
|
|
1269
2024
|
}>, {
|
|
1270
2025
|
sender: `0x${string}`;
|
|
1271
2026
|
nonce: bigint;
|
|
@@ -1278,6 +2033,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1278
2033
|
maxFeePerGas: bigint;
|
|
1279
2034
|
maxPriorityFeePerGas: bigint;
|
|
1280
2035
|
signature: `0x${string}`;
|
|
2036
|
+
eip7702Auth?: {
|
|
2037
|
+
nonce: number;
|
|
2038
|
+
contractAddress: `0x${string}`;
|
|
2039
|
+
chainId: number;
|
|
2040
|
+
r: `0x${string}`;
|
|
2041
|
+
s: `0x${string}`;
|
|
2042
|
+
v: bigint;
|
|
2043
|
+
yParity: number;
|
|
2044
|
+
} | undefined;
|
|
1281
2045
|
}, {
|
|
1282
2046
|
sender: string;
|
|
1283
2047
|
nonce: string | number | bigint;
|
|
@@ -1290,6 +2054,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1290
2054
|
preVerificationGas?: string | number | bigint | undefined;
|
|
1291
2055
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
1292
2056
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
2057
|
+
eip7702Auth?: {
|
|
2058
|
+
nonce: string | number | bigint;
|
|
2059
|
+
contractAddress: string;
|
|
2060
|
+
chainId: string | number | bigint;
|
|
2061
|
+
r: string;
|
|
2062
|
+
s: string;
|
|
2063
|
+
v: string | number | bigint;
|
|
2064
|
+
yParity: string | number | bigint;
|
|
2065
|
+
} | undefined;
|
|
1293
2066
|
}>, z.ZodEffects<z.ZodObject<{
|
|
1294
2067
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1295
2068
|
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
@@ -1306,6 +2079,31 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1306
2079
|
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
1307
2080
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
1308
2081
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2082
|
+
eip7702Auth: z.ZodOptional<z.ZodObject<{
|
|
2083
|
+
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2084
|
+
chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
2085
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
2086
|
+
r: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
2087
|
+
s: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
2088
|
+
v: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2089
|
+
yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
2090
|
+
}, "strip", z.ZodTypeAny, {
|
|
2091
|
+
nonce: number;
|
|
2092
|
+
contractAddress: `0x${string}`;
|
|
2093
|
+
chainId: number;
|
|
2094
|
+
r: `0x${string}`;
|
|
2095
|
+
s: `0x${string}`;
|
|
2096
|
+
v: bigint;
|
|
2097
|
+
yParity: number;
|
|
2098
|
+
}, {
|
|
2099
|
+
nonce: string | number | bigint;
|
|
2100
|
+
contractAddress: string;
|
|
2101
|
+
chainId: string | number | bigint;
|
|
2102
|
+
r: string;
|
|
2103
|
+
s: string;
|
|
2104
|
+
v: string | number | bigint;
|
|
2105
|
+
yParity: string | number | bigint;
|
|
2106
|
+
}>>;
|
|
1309
2107
|
}, "strict", z.ZodTypeAny, {
|
|
1310
2108
|
sender: `0x${string}`;
|
|
1311
2109
|
factory: `0x${string}` | null;
|
|
@@ -1322,6 +2120,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1322
2120
|
paymasterPostOpGasLimit: bigint | null;
|
|
1323
2121
|
factoryData: `0x${string}` | null;
|
|
1324
2122
|
paymasterData: `0x${string}` | null;
|
|
2123
|
+
eip7702Auth?: {
|
|
2124
|
+
nonce: number;
|
|
2125
|
+
contractAddress: `0x${string}`;
|
|
2126
|
+
chainId: number;
|
|
2127
|
+
r: `0x${string}`;
|
|
2128
|
+
s: `0x${string}`;
|
|
2129
|
+
v: bigint;
|
|
2130
|
+
yParity: number;
|
|
2131
|
+
} | undefined;
|
|
1325
2132
|
}, {
|
|
1326
2133
|
sender: string;
|
|
1327
2134
|
nonce: string | number | bigint;
|
|
@@ -1338,6 +2145,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1338
2145
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
1339
2146
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
1340
2147
|
paymasterData?: string | null | undefined;
|
|
2148
|
+
eip7702Auth?: {
|
|
2149
|
+
nonce: string | number | bigint;
|
|
2150
|
+
contractAddress: string;
|
|
2151
|
+
chainId: string | number | bigint;
|
|
2152
|
+
r: string;
|
|
2153
|
+
s: string;
|
|
2154
|
+
v: string | number | bigint;
|
|
2155
|
+
yParity: string | number | bigint;
|
|
2156
|
+
} | undefined;
|
|
1341
2157
|
}>, {
|
|
1342
2158
|
sender: `0x${string}`;
|
|
1343
2159
|
factory: `0x${string}` | null;
|
|
@@ -1354,6 +2170,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1354
2170
|
paymasterPostOpGasLimit: bigint | null;
|
|
1355
2171
|
factoryData: `0x${string}` | null;
|
|
1356
2172
|
paymasterData: `0x${string}` | null;
|
|
2173
|
+
eip7702Auth?: {
|
|
2174
|
+
nonce: number;
|
|
2175
|
+
contractAddress: `0x${string}`;
|
|
2176
|
+
chainId: number;
|
|
2177
|
+
r: `0x${string}`;
|
|
2178
|
+
s: `0x${string}`;
|
|
2179
|
+
v: bigint;
|
|
2180
|
+
yParity: number;
|
|
2181
|
+
} | undefined;
|
|
1357
2182
|
}, {
|
|
1358
2183
|
sender: string;
|
|
1359
2184
|
nonce: string | number | bigint;
|
|
@@ -1370,6 +2195,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1370
2195
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
1371
2196
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
1372
2197
|
paymasterData?: string | null | undefined;
|
|
2198
|
+
eip7702Auth?: {
|
|
2199
|
+
nonce: string | number | bigint;
|
|
2200
|
+
contractAddress: string;
|
|
2201
|
+
chainId: string | number | bigint;
|
|
2202
|
+
r: string;
|
|
2203
|
+
s: string;
|
|
2204
|
+
v: string | number | bigint;
|
|
2205
|
+
yParity: string | number | bigint;
|
|
2206
|
+
} | undefined;
|
|
1373
2207
|
}>]>, z.ZodEffects<z.ZodString, `0x${string}`, string>], null>, z.ZodTuple<[z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
1374
2208
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1375
2209
|
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
@@ -1382,6 +2216,31 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1382
2216
|
maxFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
1383
2217
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1384
2218
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2219
|
+
eip7702Auth: z.ZodOptional<z.ZodObject<{
|
|
2220
|
+
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2221
|
+
chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
2222
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
2223
|
+
r: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
2224
|
+
s: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
2225
|
+
v: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2226
|
+
yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
2227
|
+
}, "strip", z.ZodTypeAny, {
|
|
2228
|
+
nonce: number;
|
|
2229
|
+
contractAddress: `0x${string}`;
|
|
2230
|
+
chainId: number;
|
|
2231
|
+
r: `0x${string}`;
|
|
2232
|
+
s: `0x${string}`;
|
|
2233
|
+
v: bigint;
|
|
2234
|
+
yParity: number;
|
|
2235
|
+
}, {
|
|
2236
|
+
nonce: string | number | bigint;
|
|
2237
|
+
contractAddress: string;
|
|
2238
|
+
chainId: string | number | bigint;
|
|
2239
|
+
r: string;
|
|
2240
|
+
s: string;
|
|
2241
|
+
v: string | number | bigint;
|
|
2242
|
+
yParity: string | number | bigint;
|
|
2243
|
+
}>>;
|
|
1385
2244
|
}, "strict", z.ZodTypeAny, {
|
|
1386
2245
|
sender: `0x${string}`;
|
|
1387
2246
|
nonce: bigint;
|
|
@@ -1394,6 +2253,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1394
2253
|
maxFeePerGas: bigint;
|
|
1395
2254
|
maxPriorityFeePerGas: bigint;
|
|
1396
2255
|
signature: `0x${string}`;
|
|
2256
|
+
eip7702Auth?: {
|
|
2257
|
+
nonce: number;
|
|
2258
|
+
contractAddress: `0x${string}`;
|
|
2259
|
+
chainId: number;
|
|
2260
|
+
r: `0x${string}`;
|
|
2261
|
+
s: `0x${string}`;
|
|
2262
|
+
v: bigint;
|
|
2263
|
+
yParity: number;
|
|
2264
|
+
} | undefined;
|
|
1397
2265
|
}, {
|
|
1398
2266
|
sender: string;
|
|
1399
2267
|
nonce: string | number | bigint;
|
|
@@ -1406,6 +2274,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1406
2274
|
preVerificationGas?: string | number | bigint | undefined;
|
|
1407
2275
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
1408
2276
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
2277
|
+
eip7702Auth?: {
|
|
2278
|
+
nonce: string | number | bigint;
|
|
2279
|
+
contractAddress: string;
|
|
2280
|
+
chainId: string | number | bigint;
|
|
2281
|
+
r: string;
|
|
2282
|
+
s: string;
|
|
2283
|
+
v: string | number | bigint;
|
|
2284
|
+
yParity: string | number | bigint;
|
|
2285
|
+
} | undefined;
|
|
1409
2286
|
}>, {
|
|
1410
2287
|
sender: `0x${string}`;
|
|
1411
2288
|
nonce: bigint;
|
|
@@ -1418,6 +2295,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1418
2295
|
maxFeePerGas: bigint;
|
|
1419
2296
|
maxPriorityFeePerGas: bigint;
|
|
1420
2297
|
signature: `0x${string}`;
|
|
2298
|
+
eip7702Auth?: {
|
|
2299
|
+
nonce: number;
|
|
2300
|
+
contractAddress: `0x${string}`;
|
|
2301
|
+
chainId: number;
|
|
2302
|
+
r: `0x${string}`;
|
|
2303
|
+
s: `0x${string}`;
|
|
2304
|
+
v: bigint;
|
|
2305
|
+
yParity: number;
|
|
2306
|
+
} | undefined;
|
|
1421
2307
|
}, {
|
|
1422
2308
|
sender: string;
|
|
1423
2309
|
nonce: string | number | bigint;
|
|
@@ -1430,6 +2316,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1430
2316
|
preVerificationGas?: string | number | bigint | undefined;
|
|
1431
2317
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
1432
2318
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
2319
|
+
eip7702Auth?: {
|
|
2320
|
+
nonce: string | number | bigint;
|
|
2321
|
+
contractAddress: string;
|
|
2322
|
+
chainId: string | number | bigint;
|
|
2323
|
+
r: string;
|
|
2324
|
+
s: string;
|
|
2325
|
+
v: string | number | bigint;
|
|
2326
|
+
yParity: string | number | bigint;
|
|
2327
|
+
} | undefined;
|
|
1433
2328
|
}>, z.ZodEffects<z.ZodObject<{
|
|
1434
2329
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1435
2330
|
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
@@ -1446,6 +2341,31 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1446
2341
|
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
1447
2342
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
1448
2343
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2344
|
+
eip7702Auth: z.ZodOptional<z.ZodObject<{
|
|
2345
|
+
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2346
|
+
chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
2347
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
2348
|
+
r: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
2349
|
+
s: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
2350
|
+
v: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2351
|
+
yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
2352
|
+
}, "strip", z.ZodTypeAny, {
|
|
2353
|
+
nonce: number;
|
|
2354
|
+
contractAddress: `0x${string}`;
|
|
2355
|
+
chainId: number;
|
|
2356
|
+
r: `0x${string}`;
|
|
2357
|
+
s: `0x${string}`;
|
|
2358
|
+
v: bigint;
|
|
2359
|
+
yParity: number;
|
|
2360
|
+
}, {
|
|
2361
|
+
nonce: string | number | bigint;
|
|
2362
|
+
contractAddress: string;
|
|
2363
|
+
chainId: string | number | bigint;
|
|
2364
|
+
r: string;
|
|
2365
|
+
s: string;
|
|
2366
|
+
v: string | number | bigint;
|
|
2367
|
+
yParity: string | number | bigint;
|
|
2368
|
+
}>>;
|
|
1449
2369
|
}, "strict", z.ZodTypeAny, {
|
|
1450
2370
|
sender: `0x${string}`;
|
|
1451
2371
|
factory: `0x${string}` | null;
|
|
@@ -1462,6 +2382,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1462
2382
|
paymasterPostOpGasLimit: bigint | null;
|
|
1463
2383
|
factoryData: `0x${string}` | null;
|
|
1464
2384
|
paymasterData: `0x${string}` | null;
|
|
2385
|
+
eip7702Auth?: {
|
|
2386
|
+
nonce: number;
|
|
2387
|
+
contractAddress: `0x${string}`;
|
|
2388
|
+
chainId: number;
|
|
2389
|
+
r: `0x${string}`;
|
|
2390
|
+
s: `0x${string}`;
|
|
2391
|
+
v: bigint;
|
|
2392
|
+
yParity: number;
|
|
2393
|
+
} | undefined;
|
|
1465
2394
|
}, {
|
|
1466
2395
|
sender: string;
|
|
1467
2396
|
nonce: string | number | bigint;
|
|
@@ -1478,6 +2407,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1478
2407
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
1479
2408
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
1480
2409
|
paymasterData?: string | null | undefined;
|
|
2410
|
+
eip7702Auth?: {
|
|
2411
|
+
nonce: string | number | bigint;
|
|
2412
|
+
contractAddress: string;
|
|
2413
|
+
chainId: string | number | bigint;
|
|
2414
|
+
r: string;
|
|
2415
|
+
s: string;
|
|
2416
|
+
v: string | number | bigint;
|
|
2417
|
+
yParity: string | number | bigint;
|
|
2418
|
+
} | undefined;
|
|
1481
2419
|
}>, {
|
|
1482
2420
|
sender: `0x${string}`;
|
|
1483
2421
|
factory: `0x${string}` | null;
|
|
@@ -1494,6 +2432,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1494
2432
|
paymasterPostOpGasLimit: bigint | null;
|
|
1495
2433
|
factoryData: `0x${string}` | null;
|
|
1496
2434
|
paymasterData: `0x${string}` | null;
|
|
2435
|
+
eip7702Auth?: {
|
|
2436
|
+
nonce: number;
|
|
2437
|
+
contractAddress: `0x${string}`;
|
|
2438
|
+
chainId: number;
|
|
2439
|
+
r: `0x${string}`;
|
|
2440
|
+
s: `0x${string}`;
|
|
2441
|
+
v: bigint;
|
|
2442
|
+
yParity: number;
|
|
2443
|
+
} | undefined;
|
|
1497
2444
|
}, {
|
|
1498
2445
|
sender: string;
|
|
1499
2446
|
nonce: string | number | bigint;
|
|
@@ -1510,6 +2457,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1510
2457
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
1511
2458
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
1512
2459
|
paymasterData?: string | null | undefined;
|
|
2460
|
+
eip7702Auth?: {
|
|
2461
|
+
nonce: string | number | bigint;
|
|
2462
|
+
contractAddress: string;
|
|
2463
|
+
chainId: string | number | bigint;
|
|
2464
|
+
r: string;
|
|
2465
|
+
s: string;
|
|
2466
|
+
v: string | number | bigint;
|
|
2467
|
+
yParity: string | number | bigint;
|
|
2468
|
+
} | undefined;
|
|
1513
2469
|
}>]>, z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodRecord<z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodObject<{
|
|
1514
2470
|
balance: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
1515
2471
|
nonce: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
@@ -1542,6 +2498,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1542
2498
|
maxFeePerGas: bigint;
|
|
1543
2499
|
maxPriorityFeePerGas: bigint;
|
|
1544
2500
|
signature: `0x${string}`;
|
|
2501
|
+
eip7702Auth?: {
|
|
2502
|
+
nonce: number;
|
|
2503
|
+
contractAddress: `0x${string}`;
|
|
2504
|
+
chainId: number;
|
|
2505
|
+
r: `0x${string}`;
|
|
2506
|
+
s: `0x${string}`;
|
|
2507
|
+
v: bigint;
|
|
2508
|
+
yParity: number;
|
|
2509
|
+
} | undefined;
|
|
1545
2510
|
} | {
|
|
1546
2511
|
sender: `0x${string}`;
|
|
1547
2512
|
factory: `0x${string}` | null;
|
|
@@ -1558,6 +2523,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1558
2523
|
paymasterPostOpGasLimit: bigint | null;
|
|
1559
2524
|
factoryData: `0x${string}` | null;
|
|
1560
2525
|
paymasterData: `0x${string}` | null;
|
|
2526
|
+
eip7702Auth?: {
|
|
2527
|
+
nonce: number;
|
|
2528
|
+
contractAddress: `0x${string}`;
|
|
2529
|
+
chainId: number;
|
|
2530
|
+
r: `0x${string}`;
|
|
2531
|
+
s: `0x${string}`;
|
|
2532
|
+
v: bigint;
|
|
2533
|
+
yParity: number;
|
|
2534
|
+
} | undefined;
|
|
1561
2535
|
}, `0x${string}`] | [{
|
|
1562
2536
|
sender: `0x${string}`;
|
|
1563
2537
|
nonce: bigint;
|
|
@@ -1570,6 +2544,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1570
2544
|
maxFeePerGas: bigint;
|
|
1571
2545
|
maxPriorityFeePerGas: bigint;
|
|
1572
2546
|
signature: `0x${string}`;
|
|
2547
|
+
eip7702Auth?: {
|
|
2548
|
+
nonce: number;
|
|
2549
|
+
contractAddress: `0x${string}`;
|
|
2550
|
+
chainId: number;
|
|
2551
|
+
r: `0x${string}`;
|
|
2552
|
+
s: `0x${string}`;
|
|
2553
|
+
v: bigint;
|
|
2554
|
+
yParity: number;
|
|
2555
|
+
} | undefined;
|
|
1573
2556
|
} | {
|
|
1574
2557
|
sender: `0x${string}`;
|
|
1575
2558
|
factory: `0x${string}` | null;
|
|
@@ -1586,6 +2569,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1586
2569
|
paymasterPostOpGasLimit: bigint | null;
|
|
1587
2570
|
factoryData: `0x${string}` | null;
|
|
1588
2571
|
paymasterData: `0x${string}` | null;
|
|
2572
|
+
eip7702Auth?: {
|
|
2573
|
+
nonce: number;
|
|
2574
|
+
contractAddress: `0x${string}`;
|
|
2575
|
+
chainId: number;
|
|
2576
|
+
r: `0x${string}`;
|
|
2577
|
+
s: `0x${string}`;
|
|
2578
|
+
v: bigint;
|
|
2579
|
+
yParity: number;
|
|
2580
|
+
} | undefined;
|
|
1589
2581
|
}, `0x${string}`, Partial<Record<`0x${string}`, {
|
|
1590
2582
|
balance?: bigint | undefined;
|
|
1591
2583
|
nonce?: bigint | undefined;
|
|
@@ -1607,6 +2599,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1607
2599
|
preVerificationGas?: string | number | bigint | undefined;
|
|
1608
2600
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
1609
2601
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
2602
|
+
eip7702Auth?: {
|
|
2603
|
+
nonce: string | number | bigint;
|
|
2604
|
+
contractAddress: string;
|
|
2605
|
+
chainId: string | number | bigint;
|
|
2606
|
+
r: string;
|
|
2607
|
+
s: string;
|
|
2608
|
+
v: string | number | bigint;
|
|
2609
|
+
yParity: string | number | bigint;
|
|
2610
|
+
} | undefined;
|
|
1610
2611
|
} | {
|
|
1611
2612
|
sender: string;
|
|
1612
2613
|
nonce: string | number | bigint;
|
|
@@ -1623,6 +2624,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1623
2624
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
1624
2625
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
1625
2626
|
paymasterData?: string | null | undefined;
|
|
2627
|
+
eip7702Auth?: {
|
|
2628
|
+
nonce: string | number | bigint;
|
|
2629
|
+
contractAddress: string;
|
|
2630
|
+
chainId: string | number | bigint;
|
|
2631
|
+
r: string;
|
|
2632
|
+
s: string;
|
|
2633
|
+
v: string | number | bigint;
|
|
2634
|
+
yParity: string | number | bigint;
|
|
2635
|
+
} | undefined;
|
|
1626
2636
|
}, string] | [{
|
|
1627
2637
|
sender: string;
|
|
1628
2638
|
nonce: string | number | bigint;
|
|
@@ -1635,6 +2645,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1635
2645
|
preVerificationGas?: string | number | bigint | undefined;
|
|
1636
2646
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
1637
2647
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
2648
|
+
eip7702Auth?: {
|
|
2649
|
+
nonce: string | number | bigint;
|
|
2650
|
+
contractAddress: string;
|
|
2651
|
+
chainId: string | number | bigint;
|
|
2652
|
+
r: string;
|
|
2653
|
+
s: string;
|
|
2654
|
+
v: string | number | bigint;
|
|
2655
|
+
yParity: string | number | bigint;
|
|
2656
|
+
} | undefined;
|
|
1638
2657
|
} | {
|
|
1639
2658
|
sender: string;
|
|
1640
2659
|
nonce: string | number | bigint;
|
|
@@ -1651,6 +2670,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1651
2670
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
1652
2671
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
1653
2672
|
paymasterData?: string | null | undefined;
|
|
2673
|
+
eip7702Auth?: {
|
|
2674
|
+
nonce: string | number | bigint;
|
|
2675
|
+
contractAddress: string;
|
|
2676
|
+
chainId: string | number | bigint;
|
|
2677
|
+
r: string;
|
|
2678
|
+
s: string;
|
|
2679
|
+
v: string | number | bigint;
|
|
2680
|
+
yParity: string | number | bigint;
|
|
2681
|
+
} | undefined;
|
|
1654
2682
|
}, string, Record<string, {
|
|
1655
2683
|
balance?: string | number | bigint | undefined;
|
|
1656
2684
|
nonce?: string | number | bigint | undefined;
|
|
@@ -1673,6 +2701,31 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1673
2701
|
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
1674
2702
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1675
2703
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2704
|
+
eip7702Auth: z.ZodOptional<z.ZodObject<{
|
|
2705
|
+
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2706
|
+
chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
2707
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
2708
|
+
r: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
2709
|
+
s: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
2710
|
+
v: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2711
|
+
yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
2712
|
+
}, "strip", z.ZodTypeAny, {
|
|
2713
|
+
nonce: number;
|
|
2714
|
+
contractAddress: `0x${string}`;
|
|
2715
|
+
chainId: number;
|
|
2716
|
+
r: `0x${string}`;
|
|
2717
|
+
s: `0x${string}`;
|
|
2718
|
+
v: bigint;
|
|
2719
|
+
yParity: number;
|
|
2720
|
+
}, {
|
|
2721
|
+
nonce: string | number | bigint;
|
|
2722
|
+
contractAddress: string;
|
|
2723
|
+
chainId: string | number | bigint;
|
|
2724
|
+
r: string;
|
|
2725
|
+
s: string;
|
|
2726
|
+
v: string | number | bigint;
|
|
2727
|
+
yParity: string | number | bigint;
|
|
2728
|
+
}>>;
|
|
1676
2729
|
}, "strict", z.ZodTypeAny, {
|
|
1677
2730
|
sender: `0x${string}`;
|
|
1678
2731
|
nonce: bigint;
|
|
@@ -1685,6 +2738,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1685
2738
|
maxFeePerGas: bigint;
|
|
1686
2739
|
maxPriorityFeePerGas: bigint;
|
|
1687
2740
|
signature: `0x${string}`;
|
|
2741
|
+
eip7702Auth?: {
|
|
2742
|
+
nonce: number;
|
|
2743
|
+
contractAddress: `0x${string}`;
|
|
2744
|
+
chainId: number;
|
|
2745
|
+
r: `0x${string}`;
|
|
2746
|
+
s: `0x${string}`;
|
|
2747
|
+
v: bigint;
|
|
2748
|
+
yParity: number;
|
|
2749
|
+
} | undefined;
|
|
1688
2750
|
}, {
|
|
1689
2751
|
sender: string;
|
|
1690
2752
|
nonce: string | number | bigint;
|
|
@@ -1697,6 +2759,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1697
2759
|
maxFeePerGas: string | number | bigint;
|
|
1698
2760
|
maxPriorityFeePerGas: string | number | bigint;
|
|
1699
2761
|
signature: string;
|
|
2762
|
+
eip7702Auth?: {
|
|
2763
|
+
nonce: string | number | bigint;
|
|
2764
|
+
contractAddress: string;
|
|
2765
|
+
chainId: string | number | bigint;
|
|
2766
|
+
r: string;
|
|
2767
|
+
s: string;
|
|
2768
|
+
v: string | number | bigint;
|
|
2769
|
+
yParity: string | number | bigint;
|
|
2770
|
+
} | undefined;
|
|
1700
2771
|
}>, {
|
|
1701
2772
|
sender: `0x${string}`;
|
|
1702
2773
|
nonce: bigint;
|
|
@@ -1709,6 +2780,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1709
2780
|
maxFeePerGas: bigint;
|
|
1710
2781
|
maxPriorityFeePerGas: bigint;
|
|
1711
2782
|
signature: `0x${string}`;
|
|
2783
|
+
eip7702Auth?: {
|
|
2784
|
+
nonce: number;
|
|
2785
|
+
contractAddress: `0x${string}`;
|
|
2786
|
+
chainId: number;
|
|
2787
|
+
r: `0x${string}`;
|
|
2788
|
+
s: `0x${string}`;
|
|
2789
|
+
v: bigint;
|
|
2790
|
+
yParity: number;
|
|
2791
|
+
} | undefined;
|
|
1712
2792
|
}, {
|
|
1713
2793
|
sender: string;
|
|
1714
2794
|
nonce: string | number | bigint;
|
|
@@ -1721,6 +2801,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1721
2801
|
maxFeePerGas: string | number | bigint;
|
|
1722
2802
|
maxPriorityFeePerGas: string | number | bigint;
|
|
1723
2803
|
signature: string;
|
|
2804
|
+
eip7702Auth?: {
|
|
2805
|
+
nonce: string | number | bigint;
|
|
2806
|
+
contractAddress: string;
|
|
2807
|
+
chainId: string | number | bigint;
|
|
2808
|
+
r: string;
|
|
2809
|
+
s: string;
|
|
2810
|
+
v: string | number | bigint;
|
|
2811
|
+
yParity: string | number | bigint;
|
|
2812
|
+
} | undefined;
|
|
1724
2813
|
}>, z.ZodEffects<z.ZodObject<{
|
|
1725
2814
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1726
2815
|
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
@@ -1737,6 +2826,31 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1737
2826
|
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
1738
2827
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
1739
2828
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2829
|
+
eip7702Auth: z.ZodOptional<z.ZodObject<{
|
|
2830
|
+
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2831
|
+
chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
2832
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
2833
|
+
r: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
2834
|
+
s: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
2835
|
+
v: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2836
|
+
yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
2837
|
+
}, "strip", z.ZodTypeAny, {
|
|
2838
|
+
nonce: number;
|
|
2839
|
+
contractAddress: `0x${string}`;
|
|
2840
|
+
chainId: number;
|
|
2841
|
+
r: `0x${string}`;
|
|
2842
|
+
s: `0x${string}`;
|
|
2843
|
+
v: bigint;
|
|
2844
|
+
yParity: number;
|
|
2845
|
+
}, {
|
|
2846
|
+
nonce: string | number | bigint;
|
|
2847
|
+
contractAddress: string;
|
|
2848
|
+
chainId: string | number | bigint;
|
|
2849
|
+
r: string;
|
|
2850
|
+
s: string;
|
|
2851
|
+
v: string | number | bigint;
|
|
2852
|
+
yParity: string | number | bigint;
|
|
2853
|
+
}>>;
|
|
1740
2854
|
}, "strict", z.ZodTypeAny, {
|
|
1741
2855
|
sender: `0x${string}`;
|
|
1742
2856
|
factory: `0x${string}` | null;
|
|
@@ -1753,6 +2867,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1753
2867
|
paymasterPostOpGasLimit: bigint | null;
|
|
1754
2868
|
factoryData: `0x${string}` | null;
|
|
1755
2869
|
paymasterData: `0x${string}` | null;
|
|
2870
|
+
eip7702Auth?: {
|
|
2871
|
+
nonce: number;
|
|
2872
|
+
contractAddress: `0x${string}`;
|
|
2873
|
+
chainId: number;
|
|
2874
|
+
r: `0x${string}`;
|
|
2875
|
+
s: `0x${string}`;
|
|
2876
|
+
v: bigint;
|
|
2877
|
+
yParity: number;
|
|
2878
|
+
} | undefined;
|
|
1756
2879
|
}, {
|
|
1757
2880
|
sender: string;
|
|
1758
2881
|
nonce: string | number | bigint;
|
|
@@ -1769,6 +2892,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1769
2892
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
1770
2893
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
1771
2894
|
paymasterData?: string | null | undefined;
|
|
2895
|
+
eip7702Auth?: {
|
|
2896
|
+
nonce: string | number | bigint;
|
|
2897
|
+
contractAddress: string;
|
|
2898
|
+
chainId: string | number | bigint;
|
|
2899
|
+
r: string;
|
|
2900
|
+
s: string;
|
|
2901
|
+
v: string | number | bigint;
|
|
2902
|
+
yParity: string | number | bigint;
|
|
2903
|
+
} | undefined;
|
|
1772
2904
|
}>, {
|
|
1773
2905
|
sender: `0x${string}`;
|
|
1774
2906
|
factory: `0x${string}` | null;
|
|
@@ -1785,6 +2917,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1785
2917
|
paymasterPostOpGasLimit: bigint | null;
|
|
1786
2918
|
factoryData: `0x${string}` | null;
|
|
1787
2919
|
paymasterData: `0x${string}` | null;
|
|
2920
|
+
eip7702Auth?: {
|
|
2921
|
+
nonce: number;
|
|
2922
|
+
contractAddress: `0x${string}`;
|
|
2923
|
+
chainId: number;
|
|
2924
|
+
r: `0x${string}`;
|
|
2925
|
+
s: `0x${string}`;
|
|
2926
|
+
v: bigint;
|
|
2927
|
+
yParity: number;
|
|
2928
|
+
} | undefined;
|
|
1788
2929
|
}, {
|
|
1789
2930
|
sender: string;
|
|
1790
2931
|
nonce: string | number | bigint;
|
|
@@ -1801,6 +2942,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1801
2942
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
1802
2943
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
1803
2944
|
paymasterData?: string | null | undefined;
|
|
2945
|
+
eip7702Auth?: {
|
|
2946
|
+
nonce: string | number | bigint;
|
|
2947
|
+
contractAddress: string;
|
|
2948
|
+
chainId: string | number | bigint;
|
|
2949
|
+
r: string;
|
|
2950
|
+
s: string;
|
|
2951
|
+
v: string | number | bigint;
|
|
2952
|
+
yParity: string | number | bigint;
|
|
2953
|
+
} | undefined;
|
|
1804
2954
|
}>]>, z.ZodEffects<z.ZodString, `0x${string}`, string>], null>;
|
|
1805
2955
|
}, "strip", z.ZodTypeAny, {
|
|
1806
2956
|
params: [{
|
|
@@ -1815,6 +2965,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1815
2965
|
maxFeePerGas: bigint;
|
|
1816
2966
|
maxPriorityFeePerGas: bigint;
|
|
1817
2967
|
signature: `0x${string}`;
|
|
2968
|
+
eip7702Auth?: {
|
|
2969
|
+
nonce: number;
|
|
2970
|
+
contractAddress: `0x${string}`;
|
|
2971
|
+
chainId: number;
|
|
2972
|
+
r: `0x${string}`;
|
|
2973
|
+
s: `0x${string}`;
|
|
2974
|
+
v: bigint;
|
|
2975
|
+
yParity: number;
|
|
2976
|
+
} | undefined;
|
|
1818
2977
|
} | {
|
|
1819
2978
|
sender: `0x${string}`;
|
|
1820
2979
|
factory: `0x${string}` | null;
|
|
@@ -1831,6 +2990,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1831
2990
|
paymasterPostOpGasLimit: bigint | null;
|
|
1832
2991
|
factoryData: `0x${string}` | null;
|
|
1833
2992
|
paymasterData: `0x${string}` | null;
|
|
2993
|
+
eip7702Auth?: {
|
|
2994
|
+
nonce: number;
|
|
2995
|
+
contractAddress: `0x${string}`;
|
|
2996
|
+
chainId: number;
|
|
2997
|
+
r: `0x${string}`;
|
|
2998
|
+
s: `0x${string}`;
|
|
2999
|
+
v: bigint;
|
|
3000
|
+
yParity: number;
|
|
3001
|
+
} | undefined;
|
|
1834
3002
|
}, `0x${string}`];
|
|
1835
3003
|
method: "eth_sendUserOperation";
|
|
1836
3004
|
}, {
|
|
@@ -1846,6 +3014,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1846
3014
|
maxFeePerGas: string | number | bigint;
|
|
1847
3015
|
maxPriorityFeePerGas: string | number | bigint;
|
|
1848
3016
|
signature: string;
|
|
3017
|
+
eip7702Auth?: {
|
|
3018
|
+
nonce: string | number | bigint;
|
|
3019
|
+
contractAddress: string;
|
|
3020
|
+
chainId: string | number | bigint;
|
|
3021
|
+
r: string;
|
|
3022
|
+
s: string;
|
|
3023
|
+
v: string | number | bigint;
|
|
3024
|
+
yParity: string | number | bigint;
|
|
3025
|
+
} | undefined;
|
|
1849
3026
|
} | {
|
|
1850
3027
|
sender: string;
|
|
1851
3028
|
nonce: string | number | bigint;
|
|
@@ -1862,6 +3039,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
1862
3039
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
1863
3040
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
1864
3041
|
paymasterData?: string | null | undefined;
|
|
3042
|
+
eip7702Auth?: {
|
|
3043
|
+
nonce: string | number | bigint;
|
|
3044
|
+
contractAddress: string;
|
|
3045
|
+
chainId: string | number | bigint;
|
|
3046
|
+
r: string;
|
|
3047
|
+
s: string;
|
|
3048
|
+
v: string | number | bigint;
|
|
3049
|
+
yParity: string | number | bigint;
|
|
3050
|
+
} | undefined;
|
|
1865
3051
|
}, string];
|
|
1866
3052
|
method: "eth_sendUserOperation";
|
|
1867
3053
|
}>, z.ZodObject<{
|
|
@@ -2006,6 +3192,31 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2006
3192
|
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2007
3193
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2008
3194
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3195
|
+
eip7702Auth: z.ZodOptional<z.ZodObject<{
|
|
3196
|
+
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3197
|
+
chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
3198
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
3199
|
+
r: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
3200
|
+
s: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
3201
|
+
v: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3202
|
+
yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
3203
|
+
}, "strip", z.ZodTypeAny, {
|
|
3204
|
+
nonce: number;
|
|
3205
|
+
contractAddress: `0x${string}`;
|
|
3206
|
+
chainId: number;
|
|
3207
|
+
r: `0x${string}`;
|
|
3208
|
+
s: `0x${string}`;
|
|
3209
|
+
v: bigint;
|
|
3210
|
+
yParity: number;
|
|
3211
|
+
}, {
|
|
3212
|
+
nonce: string | number | bigint;
|
|
3213
|
+
contractAddress: string;
|
|
3214
|
+
chainId: string | number | bigint;
|
|
3215
|
+
r: string;
|
|
3216
|
+
s: string;
|
|
3217
|
+
v: string | number | bigint;
|
|
3218
|
+
yParity: string | number | bigint;
|
|
3219
|
+
}>>;
|
|
2009
3220
|
}, "strict", z.ZodTypeAny, {
|
|
2010
3221
|
sender: `0x${string}`;
|
|
2011
3222
|
nonce: bigint;
|
|
@@ -2018,6 +3229,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2018
3229
|
maxFeePerGas: bigint;
|
|
2019
3230
|
maxPriorityFeePerGas: bigint;
|
|
2020
3231
|
signature: `0x${string}`;
|
|
3232
|
+
eip7702Auth?: {
|
|
3233
|
+
nonce: number;
|
|
3234
|
+
contractAddress: `0x${string}`;
|
|
3235
|
+
chainId: number;
|
|
3236
|
+
r: `0x${string}`;
|
|
3237
|
+
s: `0x${string}`;
|
|
3238
|
+
v: bigint;
|
|
3239
|
+
yParity: number;
|
|
3240
|
+
} | undefined;
|
|
2021
3241
|
}, {
|
|
2022
3242
|
sender: string;
|
|
2023
3243
|
nonce: string | number | bigint;
|
|
@@ -2030,6 +3250,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2030
3250
|
maxFeePerGas: string | number | bigint;
|
|
2031
3251
|
maxPriorityFeePerGas: string | number | bigint;
|
|
2032
3252
|
signature: string;
|
|
3253
|
+
eip7702Auth?: {
|
|
3254
|
+
nonce: string | number | bigint;
|
|
3255
|
+
contractAddress: string;
|
|
3256
|
+
chainId: string | number | bigint;
|
|
3257
|
+
r: string;
|
|
3258
|
+
s: string;
|
|
3259
|
+
v: string | number | bigint;
|
|
3260
|
+
yParity: string | number | bigint;
|
|
3261
|
+
} | undefined;
|
|
2033
3262
|
}>, {
|
|
2034
3263
|
sender: `0x${string}`;
|
|
2035
3264
|
nonce: bigint;
|
|
@@ -2042,6 +3271,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2042
3271
|
maxFeePerGas: bigint;
|
|
2043
3272
|
maxPriorityFeePerGas: bigint;
|
|
2044
3273
|
signature: `0x${string}`;
|
|
3274
|
+
eip7702Auth?: {
|
|
3275
|
+
nonce: number;
|
|
3276
|
+
contractAddress: `0x${string}`;
|
|
3277
|
+
chainId: number;
|
|
3278
|
+
r: `0x${string}`;
|
|
3279
|
+
s: `0x${string}`;
|
|
3280
|
+
v: bigint;
|
|
3281
|
+
yParity: number;
|
|
3282
|
+
} | undefined;
|
|
2045
3283
|
}, {
|
|
2046
3284
|
sender: string;
|
|
2047
3285
|
nonce: string | number | bigint;
|
|
@@ -2054,6 +3292,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2054
3292
|
maxFeePerGas: string | number | bigint;
|
|
2055
3293
|
maxPriorityFeePerGas: string | number | bigint;
|
|
2056
3294
|
signature: string;
|
|
3295
|
+
eip7702Auth?: {
|
|
3296
|
+
nonce: string | number | bigint;
|
|
3297
|
+
contractAddress: string;
|
|
3298
|
+
chainId: string | number | bigint;
|
|
3299
|
+
r: string;
|
|
3300
|
+
s: string;
|
|
3301
|
+
v: string | number | bigint;
|
|
3302
|
+
yParity: string | number | bigint;
|
|
3303
|
+
} | undefined;
|
|
2057
3304
|
}>, z.ZodEffects<z.ZodObject<{
|
|
2058
3305
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2059
3306
|
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
@@ -2070,6 +3317,31 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2070
3317
|
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
2071
3318
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
2072
3319
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3320
|
+
eip7702Auth: z.ZodOptional<z.ZodObject<{
|
|
3321
|
+
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3322
|
+
chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
3323
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
3324
|
+
r: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
3325
|
+
s: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
3326
|
+
v: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3327
|
+
yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
3328
|
+
}, "strip", z.ZodTypeAny, {
|
|
3329
|
+
nonce: number;
|
|
3330
|
+
contractAddress: `0x${string}`;
|
|
3331
|
+
chainId: number;
|
|
3332
|
+
r: `0x${string}`;
|
|
3333
|
+
s: `0x${string}`;
|
|
3334
|
+
v: bigint;
|
|
3335
|
+
yParity: number;
|
|
3336
|
+
}, {
|
|
3337
|
+
nonce: string | number | bigint;
|
|
3338
|
+
contractAddress: string;
|
|
3339
|
+
chainId: string | number | bigint;
|
|
3340
|
+
r: string;
|
|
3341
|
+
s: string;
|
|
3342
|
+
v: string | number | bigint;
|
|
3343
|
+
yParity: string | number | bigint;
|
|
3344
|
+
}>>;
|
|
2073
3345
|
}, "strict", z.ZodTypeAny, {
|
|
2074
3346
|
sender: `0x${string}`;
|
|
2075
3347
|
factory: `0x${string}` | null;
|
|
@@ -2086,6 +3358,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2086
3358
|
paymasterPostOpGasLimit: bigint | null;
|
|
2087
3359
|
factoryData: `0x${string}` | null;
|
|
2088
3360
|
paymasterData: `0x${string}` | null;
|
|
3361
|
+
eip7702Auth?: {
|
|
3362
|
+
nonce: number;
|
|
3363
|
+
contractAddress: `0x${string}`;
|
|
3364
|
+
chainId: number;
|
|
3365
|
+
r: `0x${string}`;
|
|
3366
|
+
s: `0x${string}`;
|
|
3367
|
+
v: bigint;
|
|
3368
|
+
yParity: number;
|
|
3369
|
+
} | undefined;
|
|
2089
3370
|
}, {
|
|
2090
3371
|
sender: string;
|
|
2091
3372
|
nonce: string | number | bigint;
|
|
@@ -2102,6 +3383,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2102
3383
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
2103
3384
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
2104
3385
|
paymasterData?: string | null | undefined;
|
|
3386
|
+
eip7702Auth?: {
|
|
3387
|
+
nonce: string | number | bigint;
|
|
3388
|
+
contractAddress: string;
|
|
3389
|
+
chainId: string | number | bigint;
|
|
3390
|
+
r: string;
|
|
3391
|
+
s: string;
|
|
3392
|
+
v: string | number | bigint;
|
|
3393
|
+
yParity: string | number | bigint;
|
|
3394
|
+
} | undefined;
|
|
2105
3395
|
}>, {
|
|
2106
3396
|
sender: `0x${string}`;
|
|
2107
3397
|
factory: `0x${string}` | null;
|
|
@@ -2118,6 +3408,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2118
3408
|
paymasterPostOpGasLimit: bigint | null;
|
|
2119
3409
|
factoryData: `0x${string}` | null;
|
|
2120
3410
|
paymasterData: `0x${string}` | null;
|
|
3411
|
+
eip7702Auth?: {
|
|
3412
|
+
nonce: number;
|
|
3413
|
+
contractAddress: `0x${string}`;
|
|
3414
|
+
chainId: number;
|
|
3415
|
+
r: `0x${string}`;
|
|
3416
|
+
s: `0x${string}`;
|
|
3417
|
+
v: bigint;
|
|
3418
|
+
yParity: number;
|
|
3419
|
+
} | undefined;
|
|
2121
3420
|
}, {
|
|
2122
3421
|
sender: string;
|
|
2123
3422
|
nonce: string | number | bigint;
|
|
@@ -2134,6 +3433,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2134
3433
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
2135
3434
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
2136
3435
|
paymasterData?: string | null | undefined;
|
|
3436
|
+
eip7702Auth?: {
|
|
3437
|
+
nonce: string | number | bigint;
|
|
3438
|
+
contractAddress: string;
|
|
3439
|
+
chainId: string | number | bigint;
|
|
3440
|
+
r: string;
|
|
3441
|
+
s: string;
|
|
3442
|
+
v: string | number | bigint;
|
|
3443
|
+
yParity: string | number | bigint;
|
|
3444
|
+
} | undefined;
|
|
2137
3445
|
}>]>, z.ZodEffects<z.ZodString, `0x${string}`, string>], null>;
|
|
2138
3446
|
}, "strip", z.ZodTypeAny, {
|
|
2139
3447
|
params: [{
|
|
@@ -2148,6 +3456,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2148
3456
|
maxFeePerGas: bigint;
|
|
2149
3457
|
maxPriorityFeePerGas: bigint;
|
|
2150
3458
|
signature: `0x${string}`;
|
|
3459
|
+
eip7702Auth?: {
|
|
3460
|
+
nonce: number;
|
|
3461
|
+
contractAddress: `0x${string}`;
|
|
3462
|
+
chainId: number;
|
|
3463
|
+
r: `0x${string}`;
|
|
3464
|
+
s: `0x${string}`;
|
|
3465
|
+
v: bigint;
|
|
3466
|
+
yParity: number;
|
|
3467
|
+
} | undefined;
|
|
2151
3468
|
} | {
|
|
2152
3469
|
sender: `0x${string}`;
|
|
2153
3470
|
factory: `0x${string}` | null;
|
|
@@ -2164,6 +3481,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2164
3481
|
paymasterPostOpGasLimit: bigint | null;
|
|
2165
3482
|
factoryData: `0x${string}` | null;
|
|
2166
3483
|
paymasterData: `0x${string}` | null;
|
|
3484
|
+
eip7702Auth?: {
|
|
3485
|
+
nonce: number;
|
|
3486
|
+
contractAddress: `0x${string}`;
|
|
3487
|
+
chainId: number;
|
|
3488
|
+
r: `0x${string}`;
|
|
3489
|
+
s: `0x${string}`;
|
|
3490
|
+
v: bigint;
|
|
3491
|
+
yParity: number;
|
|
3492
|
+
} | undefined;
|
|
2167
3493
|
}, `0x${string}`];
|
|
2168
3494
|
method: "pimlico_sendUserOperationNow";
|
|
2169
3495
|
}, {
|
|
@@ -2179,6 +3505,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2179
3505
|
maxFeePerGas: string | number | bigint;
|
|
2180
3506
|
maxPriorityFeePerGas: string | number | bigint;
|
|
2181
3507
|
signature: string;
|
|
3508
|
+
eip7702Auth?: {
|
|
3509
|
+
nonce: string | number | bigint;
|
|
3510
|
+
contractAddress: string;
|
|
3511
|
+
chainId: string | number | bigint;
|
|
3512
|
+
r: string;
|
|
3513
|
+
s: string;
|
|
3514
|
+
v: string | number | bigint;
|
|
3515
|
+
yParity: string | number | bigint;
|
|
3516
|
+
} | undefined;
|
|
2182
3517
|
} | {
|
|
2183
3518
|
sender: string;
|
|
2184
3519
|
nonce: string | number | bigint;
|
|
@@ -2195,6 +3530,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2195
3530
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
2196
3531
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
2197
3532
|
paymasterData?: string | null | undefined;
|
|
3533
|
+
eip7702Auth?: {
|
|
3534
|
+
nonce: string | number | bigint;
|
|
3535
|
+
contractAddress: string;
|
|
3536
|
+
chainId: string | number | bigint;
|
|
3537
|
+
r: string;
|
|
3538
|
+
s: string;
|
|
3539
|
+
v: string | number | bigint;
|
|
3540
|
+
yParity: string | number | bigint;
|
|
3541
|
+
} | undefined;
|
|
2198
3542
|
}, string];
|
|
2199
3543
|
method: "pimlico_sendUserOperationNow";
|
|
2200
3544
|
}>, z.ZodObject<{
|
|
@@ -2211,6 +3555,31 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2211
3555
|
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2212
3556
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2213
3557
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3558
|
+
eip7702Auth: z.ZodOptional<z.ZodObject<{
|
|
3559
|
+
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3560
|
+
chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
3561
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
3562
|
+
r: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
3563
|
+
s: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
3564
|
+
v: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3565
|
+
yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
3566
|
+
}, "strip", z.ZodTypeAny, {
|
|
3567
|
+
nonce: number;
|
|
3568
|
+
contractAddress: `0x${string}`;
|
|
3569
|
+
chainId: number;
|
|
3570
|
+
r: `0x${string}`;
|
|
3571
|
+
s: `0x${string}`;
|
|
3572
|
+
v: bigint;
|
|
3573
|
+
yParity: number;
|
|
3574
|
+
}, {
|
|
3575
|
+
nonce: string | number | bigint;
|
|
3576
|
+
contractAddress: string;
|
|
3577
|
+
chainId: string | number | bigint;
|
|
3578
|
+
r: string;
|
|
3579
|
+
s: string;
|
|
3580
|
+
v: string | number | bigint;
|
|
3581
|
+
yParity: string | number | bigint;
|
|
3582
|
+
}>>;
|
|
2214
3583
|
}, "strict", z.ZodTypeAny, {
|
|
2215
3584
|
sender: `0x${string}`;
|
|
2216
3585
|
nonce: bigint;
|
|
@@ -2223,6 +3592,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2223
3592
|
maxFeePerGas: bigint;
|
|
2224
3593
|
maxPriorityFeePerGas: bigint;
|
|
2225
3594
|
signature: `0x${string}`;
|
|
3595
|
+
eip7702Auth?: {
|
|
3596
|
+
nonce: number;
|
|
3597
|
+
contractAddress: `0x${string}`;
|
|
3598
|
+
chainId: number;
|
|
3599
|
+
r: `0x${string}`;
|
|
3600
|
+
s: `0x${string}`;
|
|
3601
|
+
v: bigint;
|
|
3602
|
+
yParity: number;
|
|
3603
|
+
} | undefined;
|
|
2226
3604
|
}, {
|
|
2227
3605
|
sender: string;
|
|
2228
3606
|
nonce: string | number | bigint;
|
|
@@ -2235,6 +3613,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2235
3613
|
maxFeePerGas: string | number | bigint;
|
|
2236
3614
|
maxPriorityFeePerGas: string | number | bigint;
|
|
2237
3615
|
signature: string;
|
|
3616
|
+
eip7702Auth?: {
|
|
3617
|
+
nonce: string | number | bigint;
|
|
3618
|
+
contractAddress: string;
|
|
3619
|
+
chainId: string | number | bigint;
|
|
3620
|
+
r: string;
|
|
3621
|
+
s: string;
|
|
3622
|
+
v: string | number | bigint;
|
|
3623
|
+
yParity: string | number | bigint;
|
|
3624
|
+
} | undefined;
|
|
2238
3625
|
}>, {
|
|
2239
3626
|
sender: `0x${string}`;
|
|
2240
3627
|
nonce: bigint;
|
|
@@ -2247,6 +3634,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2247
3634
|
maxFeePerGas: bigint;
|
|
2248
3635
|
maxPriorityFeePerGas: bigint;
|
|
2249
3636
|
signature: `0x${string}`;
|
|
3637
|
+
eip7702Auth?: {
|
|
3638
|
+
nonce: number;
|
|
3639
|
+
contractAddress: `0x${string}`;
|
|
3640
|
+
chainId: number;
|
|
3641
|
+
r: `0x${string}`;
|
|
3642
|
+
s: `0x${string}`;
|
|
3643
|
+
v: bigint;
|
|
3644
|
+
yParity: number;
|
|
3645
|
+
} | undefined;
|
|
2250
3646
|
}, {
|
|
2251
3647
|
sender: string;
|
|
2252
3648
|
nonce: string | number | bigint;
|
|
@@ -2259,6 +3655,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2259
3655
|
maxFeePerGas: string | number | bigint;
|
|
2260
3656
|
maxPriorityFeePerGas: string | number | bigint;
|
|
2261
3657
|
signature: string;
|
|
3658
|
+
eip7702Auth?: {
|
|
3659
|
+
nonce: string | number | bigint;
|
|
3660
|
+
contractAddress: string;
|
|
3661
|
+
chainId: string | number | bigint;
|
|
3662
|
+
r: string;
|
|
3663
|
+
s: string;
|
|
3664
|
+
v: string | number | bigint;
|
|
3665
|
+
yParity: string | number | bigint;
|
|
3666
|
+
} | undefined;
|
|
2262
3667
|
}>, z.ZodEffects<z.ZodObject<{
|
|
2263
3668
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2264
3669
|
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
@@ -2275,6 +3680,31 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2275
3680
|
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
2276
3681
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
2277
3682
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3683
|
+
eip7702Auth: z.ZodOptional<z.ZodObject<{
|
|
3684
|
+
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3685
|
+
chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
3686
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
3687
|
+
r: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
3688
|
+
s: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
3689
|
+
v: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3690
|
+
yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
3691
|
+
}, "strip", z.ZodTypeAny, {
|
|
3692
|
+
nonce: number;
|
|
3693
|
+
contractAddress: `0x${string}`;
|
|
3694
|
+
chainId: number;
|
|
3695
|
+
r: `0x${string}`;
|
|
3696
|
+
s: `0x${string}`;
|
|
3697
|
+
v: bigint;
|
|
3698
|
+
yParity: number;
|
|
3699
|
+
}, {
|
|
3700
|
+
nonce: string | number | bigint;
|
|
3701
|
+
contractAddress: string;
|
|
3702
|
+
chainId: string | number | bigint;
|
|
3703
|
+
r: string;
|
|
3704
|
+
s: string;
|
|
3705
|
+
v: string | number | bigint;
|
|
3706
|
+
yParity: string | number | bigint;
|
|
3707
|
+
}>>;
|
|
2278
3708
|
}, "strict", z.ZodTypeAny, {
|
|
2279
3709
|
sender: `0x${string}`;
|
|
2280
3710
|
factory: `0x${string}` | null;
|
|
@@ -2291,6 +3721,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2291
3721
|
paymasterPostOpGasLimit: bigint | null;
|
|
2292
3722
|
factoryData: `0x${string}` | null;
|
|
2293
3723
|
paymasterData: `0x${string}` | null;
|
|
3724
|
+
eip7702Auth?: {
|
|
3725
|
+
nonce: number;
|
|
3726
|
+
contractAddress: `0x${string}`;
|
|
3727
|
+
chainId: number;
|
|
3728
|
+
r: `0x${string}`;
|
|
3729
|
+
s: `0x${string}`;
|
|
3730
|
+
v: bigint;
|
|
3731
|
+
yParity: number;
|
|
3732
|
+
} | undefined;
|
|
2294
3733
|
}, {
|
|
2295
3734
|
sender: string;
|
|
2296
3735
|
nonce: string | number | bigint;
|
|
@@ -2307,6 +3746,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2307
3746
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
2308
3747
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
2309
3748
|
paymasterData?: string | null | undefined;
|
|
3749
|
+
eip7702Auth?: {
|
|
3750
|
+
nonce: string | number | bigint;
|
|
3751
|
+
contractAddress: string;
|
|
3752
|
+
chainId: string | number | bigint;
|
|
3753
|
+
r: string;
|
|
3754
|
+
s: string;
|
|
3755
|
+
v: string | number | bigint;
|
|
3756
|
+
yParity: string | number | bigint;
|
|
3757
|
+
} | undefined;
|
|
2310
3758
|
}>, {
|
|
2311
3759
|
sender: `0x${string}`;
|
|
2312
3760
|
factory: `0x${string}` | null;
|
|
@@ -2323,6 +3771,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2323
3771
|
paymasterPostOpGasLimit: bigint | null;
|
|
2324
3772
|
factoryData: `0x${string}` | null;
|
|
2325
3773
|
paymasterData: `0x${string}` | null;
|
|
3774
|
+
eip7702Auth?: {
|
|
3775
|
+
nonce: number;
|
|
3776
|
+
contractAddress: `0x${string}`;
|
|
3777
|
+
chainId: number;
|
|
3778
|
+
r: `0x${string}`;
|
|
3779
|
+
s: `0x${string}`;
|
|
3780
|
+
v: bigint;
|
|
3781
|
+
yParity: number;
|
|
3782
|
+
} | undefined;
|
|
2326
3783
|
}, {
|
|
2327
3784
|
sender: string;
|
|
2328
3785
|
nonce: string | number | bigint;
|
|
@@ -2339,31 +3796,16 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2339
3796
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
2340
3797
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
2341
3798
|
paymasterData?: string | null | undefined;
|
|
2342
|
-
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
|
-
|
|
2346
|
-
|
|
2347
|
-
|
|
2348
|
-
|
|
2349
|
-
|
|
2350
|
-
|
|
2351
|
-
|
|
2352
|
-
r: `0x${string}`;
|
|
2353
|
-
s: `0x${string}`;
|
|
2354
|
-
v: bigint;
|
|
2355
|
-
yParity: number;
|
|
2356
|
-
contractAddress: `0x${string}`;
|
|
2357
|
-
chainId: number;
|
|
2358
|
-
}, {
|
|
2359
|
-
nonce: string | number | bigint;
|
|
2360
|
-
r: string;
|
|
2361
|
-
s: string;
|
|
2362
|
-
v: string | number | bigint;
|
|
2363
|
-
yParity: string | number | bigint;
|
|
2364
|
-
contractAddress: string;
|
|
2365
|
-
chainId: string | number | bigint;
|
|
2366
|
-
}>], null>;
|
|
3799
|
+
eip7702Auth?: {
|
|
3800
|
+
nonce: string | number | bigint;
|
|
3801
|
+
contractAddress: string;
|
|
3802
|
+
chainId: string | number | bigint;
|
|
3803
|
+
r: string;
|
|
3804
|
+
s: string;
|
|
3805
|
+
v: string | number | bigint;
|
|
3806
|
+
yParity: string | number | bigint;
|
|
3807
|
+
} | undefined;
|
|
3808
|
+
}>]>, z.ZodEffects<z.ZodString, `0x${string}`, string>], null>;
|
|
2367
3809
|
}, "strip", z.ZodTypeAny, {
|
|
2368
3810
|
params: [{
|
|
2369
3811
|
sender: `0x${string}`;
|
|
@@ -2377,6 +3819,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2377
3819
|
maxFeePerGas: bigint;
|
|
2378
3820
|
maxPriorityFeePerGas: bigint;
|
|
2379
3821
|
signature: `0x${string}`;
|
|
3822
|
+
eip7702Auth?: {
|
|
3823
|
+
nonce: number;
|
|
3824
|
+
contractAddress: `0x${string}`;
|
|
3825
|
+
chainId: number;
|
|
3826
|
+
r: `0x${string}`;
|
|
3827
|
+
s: `0x${string}`;
|
|
3828
|
+
v: bigint;
|
|
3829
|
+
yParity: number;
|
|
3830
|
+
} | undefined;
|
|
2380
3831
|
} | {
|
|
2381
3832
|
sender: `0x${string}`;
|
|
2382
3833
|
factory: `0x${string}` | null;
|
|
@@ -2393,15 +3844,16 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2393
3844
|
paymasterPostOpGasLimit: bigint | null;
|
|
2394
3845
|
factoryData: `0x${string}` | null;
|
|
2395
3846
|
paymasterData: `0x${string}` | null;
|
|
2396
|
-
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
3847
|
+
eip7702Auth?: {
|
|
3848
|
+
nonce: number;
|
|
3849
|
+
contractAddress: `0x${string}`;
|
|
3850
|
+
chainId: number;
|
|
3851
|
+
r: `0x${string}`;
|
|
3852
|
+
s: `0x${string}`;
|
|
3853
|
+
v: bigint;
|
|
3854
|
+
yParity: number;
|
|
3855
|
+
} | undefined;
|
|
3856
|
+
}, `0x${string}`];
|
|
2405
3857
|
method: "pimlico_experimental_sendUserOperation7702";
|
|
2406
3858
|
}, {
|
|
2407
3859
|
params: [{
|
|
@@ -2416,6 +3868,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2416
3868
|
maxFeePerGas: string | number | bigint;
|
|
2417
3869
|
maxPriorityFeePerGas: string | number | bigint;
|
|
2418
3870
|
signature: string;
|
|
3871
|
+
eip7702Auth?: {
|
|
3872
|
+
nonce: string | number | bigint;
|
|
3873
|
+
contractAddress: string;
|
|
3874
|
+
chainId: string | number | bigint;
|
|
3875
|
+
r: string;
|
|
3876
|
+
s: string;
|
|
3877
|
+
v: string | number | bigint;
|
|
3878
|
+
yParity: string | number | bigint;
|
|
3879
|
+
} | undefined;
|
|
2419
3880
|
} | {
|
|
2420
3881
|
sender: string;
|
|
2421
3882
|
nonce: string | number | bigint;
|
|
@@ -2432,15 +3893,16 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2432
3893
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
2433
3894
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
2434
3895
|
paymasterData?: string | null | undefined;
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
|
|
3896
|
+
eip7702Auth?: {
|
|
3897
|
+
nonce: string | number | bigint;
|
|
3898
|
+
contractAddress: string;
|
|
3899
|
+
chainId: string | number | bigint;
|
|
3900
|
+
r: string;
|
|
3901
|
+
s: string;
|
|
3902
|
+
v: string | number | bigint;
|
|
3903
|
+
yParity: string | number | bigint;
|
|
3904
|
+
} | undefined;
|
|
3905
|
+
}, string];
|
|
2444
3906
|
method: "pimlico_experimental_sendUserOperation7702";
|
|
2445
3907
|
}>, z.ZodObject<{
|
|
2446
3908
|
method: z.ZodLiteral<"pimlico_experimental_estimateUserOperationGas7702">;
|
|
@@ -2456,6 +3918,31 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2456
3918
|
maxFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
2457
3919
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2458
3920
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3921
|
+
eip7702Auth: z.ZodOptional<z.ZodObject<{
|
|
3922
|
+
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3923
|
+
chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
3924
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
3925
|
+
r: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
3926
|
+
s: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
3927
|
+
v: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3928
|
+
yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
3929
|
+
}, "strip", z.ZodTypeAny, {
|
|
3930
|
+
nonce: number;
|
|
3931
|
+
contractAddress: `0x${string}`;
|
|
3932
|
+
chainId: number;
|
|
3933
|
+
r: `0x${string}`;
|
|
3934
|
+
s: `0x${string}`;
|
|
3935
|
+
v: bigint;
|
|
3936
|
+
yParity: number;
|
|
3937
|
+
}, {
|
|
3938
|
+
nonce: string | number | bigint;
|
|
3939
|
+
contractAddress: string;
|
|
3940
|
+
chainId: string | number | bigint;
|
|
3941
|
+
r: string;
|
|
3942
|
+
s: string;
|
|
3943
|
+
v: string | number | bigint;
|
|
3944
|
+
yParity: string | number | bigint;
|
|
3945
|
+
}>>;
|
|
2459
3946
|
}, "strict", z.ZodTypeAny, {
|
|
2460
3947
|
sender: `0x${string}`;
|
|
2461
3948
|
nonce: bigint;
|
|
@@ -2468,6 +3955,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2468
3955
|
maxFeePerGas: bigint;
|
|
2469
3956
|
maxPriorityFeePerGas: bigint;
|
|
2470
3957
|
signature: `0x${string}`;
|
|
3958
|
+
eip7702Auth?: {
|
|
3959
|
+
nonce: number;
|
|
3960
|
+
contractAddress: `0x${string}`;
|
|
3961
|
+
chainId: number;
|
|
3962
|
+
r: `0x${string}`;
|
|
3963
|
+
s: `0x${string}`;
|
|
3964
|
+
v: bigint;
|
|
3965
|
+
yParity: number;
|
|
3966
|
+
} | undefined;
|
|
2471
3967
|
}, {
|
|
2472
3968
|
sender: string;
|
|
2473
3969
|
nonce: string | number | bigint;
|
|
@@ -2480,6 +3976,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2480
3976
|
preVerificationGas?: string | number | bigint | undefined;
|
|
2481
3977
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
2482
3978
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
3979
|
+
eip7702Auth?: {
|
|
3980
|
+
nonce: string | number | bigint;
|
|
3981
|
+
contractAddress: string;
|
|
3982
|
+
chainId: string | number | bigint;
|
|
3983
|
+
r: string;
|
|
3984
|
+
s: string;
|
|
3985
|
+
v: string | number | bigint;
|
|
3986
|
+
yParity: string | number | bigint;
|
|
3987
|
+
} | undefined;
|
|
2483
3988
|
}>, {
|
|
2484
3989
|
sender: `0x${string}`;
|
|
2485
3990
|
nonce: bigint;
|
|
@@ -2492,6 +3997,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2492
3997
|
maxFeePerGas: bigint;
|
|
2493
3998
|
maxPriorityFeePerGas: bigint;
|
|
2494
3999
|
signature: `0x${string}`;
|
|
4000
|
+
eip7702Auth?: {
|
|
4001
|
+
nonce: number;
|
|
4002
|
+
contractAddress: `0x${string}`;
|
|
4003
|
+
chainId: number;
|
|
4004
|
+
r: `0x${string}`;
|
|
4005
|
+
s: `0x${string}`;
|
|
4006
|
+
v: bigint;
|
|
4007
|
+
yParity: number;
|
|
4008
|
+
} | undefined;
|
|
2495
4009
|
}, {
|
|
2496
4010
|
sender: string;
|
|
2497
4011
|
nonce: string | number | bigint;
|
|
@@ -2504,6 +4018,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2504
4018
|
preVerificationGas?: string | number | bigint | undefined;
|
|
2505
4019
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
2506
4020
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
4021
|
+
eip7702Auth?: {
|
|
4022
|
+
nonce: string | number | bigint;
|
|
4023
|
+
contractAddress: string;
|
|
4024
|
+
chainId: string | number | bigint;
|
|
4025
|
+
r: string;
|
|
4026
|
+
s: string;
|
|
4027
|
+
v: string | number | bigint;
|
|
4028
|
+
yParity: string | number | bigint;
|
|
4029
|
+
} | undefined;
|
|
2507
4030
|
}>, z.ZodEffects<z.ZodObject<{
|
|
2508
4031
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2509
4032
|
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
@@ -2520,6 +4043,31 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2520
4043
|
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
2521
4044
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
2522
4045
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4046
|
+
eip7702Auth: z.ZodOptional<z.ZodObject<{
|
|
4047
|
+
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4048
|
+
chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
4049
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
4050
|
+
r: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
4051
|
+
s: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
4052
|
+
v: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4053
|
+
yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
4054
|
+
}, "strip", z.ZodTypeAny, {
|
|
4055
|
+
nonce: number;
|
|
4056
|
+
contractAddress: `0x${string}`;
|
|
4057
|
+
chainId: number;
|
|
4058
|
+
r: `0x${string}`;
|
|
4059
|
+
s: `0x${string}`;
|
|
4060
|
+
v: bigint;
|
|
4061
|
+
yParity: number;
|
|
4062
|
+
}, {
|
|
4063
|
+
nonce: string | number | bigint;
|
|
4064
|
+
contractAddress: string;
|
|
4065
|
+
chainId: string | number | bigint;
|
|
4066
|
+
r: string;
|
|
4067
|
+
s: string;
|
|
4068
|
+
v: string | number | bigint;
|
|
4069
|
+
yParity: string | number | bigint;
|
|
4070
|
+
}>>;
|
|
2523
4071
|
}, "strict", z.ZodTypeAny, {
|
|
2524
4072
|
sender: `0x${string}`;
|
|
2525
4073
|
factory: `0x${string}` | null;
|
|
@@ -2536,6 +4084,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2536
4084
|
paymasterPostOpGasLimit: bigint | null;
|
|
2537
4085
|
factoryData: `0x${string}` | null;
|
|
2538
4086
|
paymasterData: `0x${string}` | null;
|
|
4087
|
+
eip7702Auth?: {
|
|
4088
|
+
nonce: number;
|
|
4089
|
+
contractAddress: `0x${string}`;
|
|
4090
|
+
chainId: number;
|
|
4091
|
+
r: `0x${string}`;
|
|
4092
|
+
s: `0x${string}`;
|
|
4093
|
+
v: bigint;
|
|
4094
|
+
yParity: number;
|
|
4095
|
+
} | undefined;
|
|
2539
4096
|
}, {
|
|
2540
4097
|
sender: string;
|
|
2541
4098
|
nonce: string | number | bigint;
|
|
@@ -2552,6 +4109,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2552
4109
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
2553
4110
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
2554
4111
|
paymasterData?: string | null | undefined;
|
|
4112
|
+
eip7702Auth?: {
|
|
4113
|
+
nonce: string | number | bigint;
|
|
4114
|
+
contractAddress: string;
|
|
4115
|
+
chainId: string | number | bigint;
|
|
4116
|
+
r: string;
|
|
4117
|
+
s: string;
|
|
4118
|
+
v: string | number | bigint;
|
|
4119
|
+
yParity: string | number | bigint;
|
|
4120
|
+
} | undefined;
|
|
2555
4121
|
}>, {
|
|
2556
4122
|
sender: `0x${string}`;
|
|
2557
4123
|
factory: `0x${string}` | null;
|
|
@@ -2568,6 +4134,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2568
4134
|
paymasterPostOpGasLimit: bigint | null;
|
|
2569
4135
|
factoryData: `0x${string}` | null;
|
|
2570
4136
|
paymasterData: `0x${string}` | null;
|
|
4137
|
+
eip7702Auth?: {
|
|
4138
|
+
nonce: number;
|
|
4139
|
+
contractAddress: `0x${string}`;
|
|
4140
|
+
chainId: number;
|
|
4141
|
+
r: `0x${string}`;
|
|
4142
|
+
s: `0x${string}`;
|
|
4143
|
+
v: bigint;
|
|
4144
|
+
yParity: number;
|
|
4145
|
+
} | undefined;
|
|
2571
4146
|
}, {
|
|
2572
4147
|
sender: string;
|
|
2573
4148
|
nonce: string | number | bigint;
|
|
@@ -2584,31 +4159,16 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2584
4159
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
2585
4160
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
2586
4161
|
paymasterData?: string | null | undefined;
|
|
2587
|
-
|
|
2588
|
-
|
|
2589
|
-
|
|
2590
|
-
|
|
2591
|
-
|
|
2592
|
-
|
|
2593
|
-
|
|
2594
|
-
|
|
2595
|
-
|
|
2596
|
-
|
|
2597
|
-
r: `0x${string}`;
|
|
2598
|
-
s: `0x${string}`;
|
|
2599
|
-
v: bigint;
|
|
2600
|
-
yParity: number;
|
|
2601
|
-
contractAddress: `0x${string}`;
|
|
2602
|
-
chainId: number;
|
|
2603
|
-
}, {
|
|
2604
|
-
nonce: string | number | bigint;
|
|
2605
|
-
r: string;
|
|
2606
|
-
s: string;
|
|
2607
|
-
v: string | number | bigint;
|
|
2608
|
-
yParity: string | number | bigint;
|
|
2609
|
-
contractAddress: string;
|
|
2610
|
-
chainId: string | number | bigint;
|
|
2611
|
-
}>], null>, z.ZodTuple<[z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
4162
|
+
eip7702Auth?: {
|
|
4163
|
+
nonce: string | number | bigint;
|
|
4164
|
+
contractAddress: string;
|
|
4165
|
+
chainId: string | number | bigint;
|
|
4166
|
+
r: string;
|
|
4167
|
+
s: string;
|
|
4168
|
+
v: string | number | bigint;
|
|
4169
|
+
yParity: string | number | bigint;
|
|
4170
|
+
} | undefined;
|
|
4171
|
+
}>]>, z.ZodEffects<z.ZodString, `0x${string}`, string>], null>, z.ZodTuple<[z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
2612
4172
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2613
4173
|
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2614
4174
|
initCode: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
@@ -2620,6 +4180,31 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2620
4180
|
maxFeePerGas: z.ZodDefault<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
2621
4181
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2622
4182
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4183
|
+
eip7702Auth: z.ZodOptional<z.ZodObject<{
|
|
4184
|
+
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4185
|
+
chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
4186
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
4187
|
+
r: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
4188
|
+
s: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
4189
|
+
v: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4190
|
+
yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
4191
|
+
}, "strip", z.ZodTypeAny, {
|
|
4192
|
+
nonce: number;
|
|
4193
|
+
contractAddress: `0x${string}`;
|
|
4194
|
+
chainId: number;
|
|
4195
|
+
r: `0x${string}`;
|
|
4196
|
+
s: `0x${string}`;
|
|
4197
|
+
v: bigint;
|
|
4198
|
+
yParity: number;
|
|
4199
|
+
}, {
|
|
4200
|
+
nonce: string | number | bigint;
|
|
4201
|
+
contractAddress: string;
|
|
4202
|
+
chainId: string | number | bigint;
|
|
4203
|
+
r: string;
|
|
4204
|
+
s: string;
|
|
4205
|
+
v: string | number | bigint;
|
|
4206
|
+
yParity: string | number | bigint;
|
|
4207
|
+
}>>;
|
|
2623
4208
|
}, "strict", z.ZodTypeAny, {
|
|
2624
4209
|
sender: `0x${string}`;
|
|
2625
4210
|
nonce: bigint;
|
|
@@ -2632,6 +4217,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2632
4217
|
maxFeePerGas: bigint;
|
|
2633
4218
|
maxPriorityFeePerGas: bigint;
|
|
2634
4219
|
signature: `0x${string}`;
|
|
4220
|
+
eip7702Auth?: {
|
|
4221
|
+
nonce: number;
|
|
4222
|
+
contractAddress: `0x${string}`;
|
|
4223
|
+
chainId: number;
|
|
4224
|
+
r: `0x${string}`;
|
|
4225
|
+
s: `0x${string}`;
|
|
4226
|
+
v: bigint;
|
|
4227
|
+
yParity: number;
|
|
4228
|
+
} | undefined;
|
|
2635
4229
|
}, {
|
|
2636
4230
|
sender: string;
|
|
2637
4231
|
nonce: string | number | bigint;
|
|
@@ -2644,6 +4238,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2644
4238
|
preVerificationGas?: string | number | bigint | undefined;
|
|
2645
4239
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
2646
4240
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
4241
|
+
eip7702Auth?: {
|
|
4242
|
+
nonce: string | number | bigint;
|
|
4243
|
+
contractAddress: string;
|
|
4244
|
+
chainId: string | number | bigint;
|
|
4245
|
+
r: string;
|
|
4246
|
+
s: string;
|
|
4247
|
+
v: string | number | bigint;
|
|
4248
|
+
yParity: string | number | bigint;
|
|
4249
|
+
} | undefined;
|
|
2647
4250
|
}>, {
|
|
2648
4251
|
sender: `0x${string}`;
|
|
2649
4252
|
nonce: bigint;
|
|
@@ -2656,6 +4259,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2656
4259
|
maxFeePerGas: bigint;
|
|
2657
4260
|
maxPriorityFeePerGas: bigint;
|
|
2658
4261
|
signature: `0x${string}`;
|
|
4262
|
+
eip7702Auth?: {
|
|
4263
|
+
nonce: number;
|
|
4264
|
+
contractAddress: `0x${string}`;
|
|
4265
|
+
chainId: number;
|
|
4266
|
+
r: `0x${string}`;
|
|
4267
|
+
s: `0x${string}`;
|
|
4268
|
+
v: bigint;
|
|
4269
|
+
yParity: number;
|
|
4270
|
+
} | undefined;
|
|
2659
4271
|
}, {
|
|
2660
4272
|
sender: string;
|
|
2661
4273
|
nonce: string | number | bigint;
|
|
@@ -2668,6 +4280,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2668
4280
|
preVerificationGas?: string | number | bigint | undefined;
|
|
2669
4281
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
2670
4282
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
4283
|
+
eip7702Auth?: {
|
|
4284
|
+
nonce: string | number | bigint;
|
|
4285
|
+
contractAddress: string;
|
|
4286
|
+
chainId: string | number | bigint;
|
|
4287
|
+
r: string;
|
|
4288
|
+
s: string;
|
|
4289
|
+
v: string | number | bigint;
|
|
4290
|
+
yParity: string | number | bigint;
|
|
4291
|
+
} | undefined;
|
|
2671
4292
|
}>, z.ZodEffects<z.ZodObject<{
|
|
2672
4293
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2673
4294
|
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
@@ -2684,6 +4305,31 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2684
4305
|
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
2685
4306
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
2686
4307
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4308
|
+
eip7702Auth: z.ZodOptional<z.ZodObject<{
|
|
4309
|
+
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4310
|
+
chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
4311
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
4312
|
+
r: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
4313
|
+
s: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
4314
|
+
v: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4315
|
+
yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
4316
|
+
}, "strip", z.ZodTypeAny, {
|
|
4317
|
+
nonce: number;
|
|
4318
|
+
contractAddress: `0x${string}`;
|
|
4319
|
+
chainId: number;
|
|
4320
|
+
r: `0x${string}`;
|
|
4321
|
+
s: `0x${string}`;
|
|
4322
|
+
v: bigint;
|
|
4323
|
+
yParity: number;
|
|
4324
|
+
}, {
|
|
4325
|
+
nonce: string | number | bigint;
|
|
4326
|
+
contractAddress: string;
|
|
4327
|
+
chainId: string | number | bigint;
|
|
4328
|
+
r: string;
|
|
4329
|
+
s: string;
|
|
4330
|
+
v: string | number | bigint;
|
|
4331
|
+
yParity: string | number | bigint;
|
|
4332
|
+
}>>;
|
|
2687
4333
|
}, "strict", z.ZodTypeAny, {
|
|
2688
4334
|
sender: `0x${string}`;
|
|
2689
4335
|
factory: `0x${string}` | null;
|
|
@@ -2700,6 +4346,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2700
4346
|
paymasterPostOpGasLimit: bigint | null;
|
|
2701
4347
|
factoryData: `0x${string}` | null;
|
|
2702
4348
|
paymasterData: `0x${string}` | null;
|
|
4349
|
+
eip7702Auth?: {
|
|
4350
|
+
nonce: number;
|
|
4351
|
+
contractAddress: `0x${string}`;
|
|
4352
|
+
chainId: number;
|
|
4353
|
+
r: `0x${string}`;
|
|
4354
|
+
s: `0x${string}`;
|
|
4355
|
+
v: bigint;
|
|
4356
|
+
yParity: number;
|
|
4357
|
+
} | undefined;
|
|
2703
4358
|
}, {
|
|
2704
4359
|
sender: string;
|
|
2705
4360
|
nonce: string | number | bigint;
|
|
@@ -2716,6 +4371,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2716
4371
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
2717
4372
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
2718
4373
|
paymasterData?: string | null | undefined;
|
|
4374
|
+
eip7702Auth?: {
|
|
4375
|
+
nonce: string | number | bigint;
|
|
4376
|
+
contractAddress: string;
|
|
4377
|
+
chainId: string | number | bigint;
|
|
4378
|
+
r: string;
|
|
4379
|
+
s: string;
|
|
4380
|
+
v: string | number | bigint;
|
|
4381
|
+
yParity: string | number | bigint;
|
|
4382
|
+
} | undefined;
|
|
2719
4383
|
}>, {
|
|
2720
4384
|
sender: `0x${string}`;
|
|
2721
4385
|
factory: `0x${string}` | null;
|
|
@@ -2732,6 +4396,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2732
4396
|
paymasterPostOpGasLimit: bigint | null;
|
|
2733
4397
|
factoryData: `0x${string}` | null;
|
|
2734
4398
|
paymasterData: `0x${string}` | null;
|
|
4399
|
+
eip7702Auth?: {
|
|
4400
|
+
nonce: number;
|
|
4401
|
+
contractAddress: `0x${string}`;
|
|
4402
|
+
chainId: number;
|
|
4403
|
+
r: `0x${string}`;
|
|
4404
|
+
s: `0x${string}`;
|
|
4405
|
+
v: bigint;
|
|
4406
|
+
yParity: number;
|
|
4407
|
+
} | undefined;
|
|
2735
4408
|
}, {
|
|
2736
4409
|
sender: string;
|
|
2737
4410
|
nonce: string | number | bigint;
|
|
@@ -2748,31 +4421,16 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2748
4421
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
2749
4422
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
2750
4423
|
paymasterData?: string | null | undefined;
|
|
2751
|
-
|
|
2752
|
-
|
|
2753
|
-
|
|
2754
|
-
|
|
2755
|
-
|
|
2756
|
-
|
|
2757
|
-
|
|
2758
|
-
|
|
2759
|
-
|
|
2760
|
-
|
|
2761
|
-
r: `0x${string}`;
|
|
2762
|
-
s: `0x${string}`;
|
|
2763
|
-
v: bigint;
|
|
2764
|
-
yParity: number;
|
|
2765
|
-
contractAddress: `0x${string}`;
|
|
2766
|
-
chainId: number;
|
|
2767
|
-
}, {
|
|
2768
|
-
nonce: string | number | bigint;
|
|
2769
|
-
r: string;
|
|
2770
|
-
s: string;
|
|
2771
|
-
v: string | number | bigint;
|
|
2772
|
-
yParity: string | number | bigint;
|
|
2773
|
-
contractAddress: string;
|
|
2774
|
-
chainId: string | number | bigint;
|
|
2775
|
-
}>, z.ZodRecord<z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodObject<{
|
|
4424
|
+
eip7702Auth?: {
|
|
4425
|
+
nonce: string | number | bigint;
|
|
4426
|
+
contractAddress: string;
|
|
4427
|
+
chainId: string | number | bigint;
|
|
4428
|
+
r: string;
|
|
4429
|
+
s: string;
|
|
4430
|
+
v: string | number | bigint;
|
|
4431
|
+
yParity: string | number | bigint;
|
|
4432
|
+
} | undefined;
|
|
4433
|
+
}>]>, z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodRecord<z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodObject<{
|
|
2776
4434
|
balance: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
2777
4435
|
nonce: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
|
|
2778
4436
|
code: z.ZodOptional<z.ZodEffects<z.ZodString, `0x${string}`, string>>;
|
|
@@ -2804,6 +4462,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2804
4462
|
maxFeePerGas: bigint;
|
|
2805
4463
|
maxPriorityFeePerGas: bigint;
|
|
2806
4464
|
signature: `0x${string}`;
|
|
4465
|
+
eip7702Auth?: {
|
|
4466
|
+
nonce: number;
|
|
4467
|
+
contractAddress: `0x${string}`;
|
|
4468
|
+
chainId: number;
|
|
4469
|
+
r: `0x${string}`;
|
|
4470
|
+
s: `0x${string}`;
|
|
4471
|
+
v: bigint;
|
|
4472
|
+
yParity: number;
|
|
4473
|
+
} | undefined;
|
|
2807
4474
|
} | {
|
|
2808
4475
|
sender: `0x${string}`;
|
|
2809
4476
|
factory: `0x${string}` | null;
|
|
@@ -2820,15 +4487,16 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2820
4487
|
paymasterPostOpGasLimit: bigint | null;
|
|
2821
4488
|
factoryData: `0x${string}` | null;
|
|
2822
4489
|
paymasterData: `0x${string}` | null;
|
|
2823
|
-
|
|
2824
|
-
|
|
2825
|
-
|
|
2826
|
-
|
|
2827
|
-
|
|
2828
|
-
|
|
2829
|
-
|
|
2830
|
-
|
|
2831
|
-
|
|
4490
|
+
eip7702Auth?: {
|
|
4491
|
+
nonce: number;
|
|
4492
|
+
contractAddress: `0x${string}`;
|
|
4493
|
+
chainId: number;
|
|
4494
|
+
r: `0x${string}`;
|
|
4495
|
+
s: `0x${string}`;
|
|
4496
|
+
v: bigint;
|
|
4497
|
+
yParity: number;
|
|
4498
|
+
} | undefined;
|
|
4499
|
+
}, `0x${string}`] | [{
|
|
2832
4500
|
sender: `0x${string}`;
|
|
2833
4501
|
nonce: bigint;
|
|
2834
4502
|
initCode: `0x${string}`;
|
|
@@ -2840,6 +4508,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2840
4508
|
maxFeePerGas: bigint;
|
|
2841
4509
|
maxPriorityFeePerGas: bigint;
|
|
2842
4510
|
signature: `0x${string}`;
|
|
4511
|
+
eip7702Auth?: {
|
|
4512
|
+
nonce: number;
|
|
4513
|
+
contractAddress: `0x${string}`;
|
|
4514
|
+
chainId: number;
|
|
4515
|
+
r: `0x${string}`;
|
|
4516
|
+
s: `0x${string}`;
|
|
4517
|
+
v: bigint;
|
|
4518
|
+
yParity: number;
|
|
4519
|
+
} | undefined;
|
|
2843
4520
|
} | {
|
|
2844
4521
|
sender: `0x${string}`;
|
|
2845
4522
|
factory: `0x${string}` | null;
|
|
@@ -2856,15 +4533,16 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2856
4533
|
paymasterPostOpGasLimit: bigint | null;
|
|
2857
4534
|
factoryData: `0x${string}` | null;
|
|
2858
4535
|
paymasterData: `0x${string}` | null;
|
|
2859
|
-
|
|
2860
|
-
|
|
2861
|
-
|
|
2862
|
-
|
|
2863
|
-
|
|
2864
|
-
|
|
2865
|
-
|
|
2866
|
-
|
|
2867
|
-
|
|
4536
|
+
eip7702Auth?: {
|
|
4537
|
+
nonce: number;
|
|
4538
|
+
contractAddress: `0x${string}`;
|
|
4539
|
+
chainId: number;
|
|
4540
|
+
r: `0x${string}`;
|
|
4541
|
+
s: `0x${string}`;
|
|
4542
|
+
v: bigint;
|
|
4543
|
+
yParity: number;
|
|
4544
|
+
} | undefined;
|
|
4545
|
+
}, `0x${string}`, Partial<Record<`0x${string}`, {
|
|
2868
4546
|
balance?: bigint | undefined;
|
|
2869
4547
|
nonce?: bigint | undefined;
|
|
2870
4548
|
code?: `0x${string}` | undefined;
|
|
@@ -2885,6 +4563,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2885
4563
|
preVerificationGas?: string | number | bigint | undefined;
|
|
2886
4564
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
2887
4565
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
4566
|
+
eip7702Auth?: {
|
|
4567
|
+
nonce: string | number | bigint;
|
|
4568
|
+
contractAddress: string;
|
|
4569
|
+
chainId: string | number | bigint;
|
|
4570
|
+
r: string;
|
|
4571
|
+
s: string;
|
|
4572
|
+
v: string | number | bigint;
|
|
4573
|
+
yParity: string | number | bigint;
|
|
4574
|
+
} | undefined;
|
|
2888
4575
|
} | {
|
|
2889
4576
|
sender: string;
|
|
2890
4577
|
nonce: string | number | bigint;
|
|
@@ -2901,15 +4588,16 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2901
4588
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
2902
4589
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
2903
4590
|
paymasterData?: string | null | undefined;
|
|
2904
|
-
|
|
2905
|
-
|
|
2906
|
-
|
|
2907
|
-
|
|
2908
|
-
|
|
2909
|
-
|
|
2910
|
-
|
|
2911
|
-
|
|
2912
|
-
|
|
4591
|
+
eip7702Auth?: {
|
|
4592
|
+
nonce: string | number | bigint;
|
|
4593
|
+
contractAddress: string;
|
|
4594
|
+
chainId: string | number | bigint;
|
|
4595
|
+
r: string;
|
|
4596
|
+
s: string;
|
|
4597
|
+
v: string | number | bigint;
|
|
4598
|
+
yParity: string | number | bigint;
|
|
4599
|
+
} | undefined;
|
|
4600
|
+
}, string] | [{
|
|
2913
4601
|
sender: string;
|
|
2914
4602
|
nonce: string | number | bigint;
|
|
2915
4603
|
initCode: string;
|
|
@@ -2921,6 +4609,15 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2921
4609
|
preVerificationGas?: string | number | bigint | undefined;
|
|
2922
4610
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
2923
4611
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
4612
|
+
eip7702Auth?: {
|
|
4613
|
+
nonce: string | number | bigint;
|
|
4614
|
+
contractAddress: string;
|
|
4615
|
+
chainId: string | number | bigint;
|
|
4616
|
+
r: string;
|
|
4617
|
+
s: string;
|
|
4618
|
+
v: string | number | bigint;
|
|
4619
|
+
yParity: string | number | bigint;
|
|
4620
|
+
} | undefined;
|
|
2924
4621
|
} | {
|
|
2925
4622
|
sender: string;
|
|
2926
4623
|
nonce: string | number | bigint;
|
|
@@ -2937,15 +4634,16 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
|
|
|
2937
4634
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
2938
4635
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
2939
4636
|
paymasterData?: string | null | undefined;
|
|
2940
|
-
|
|
2941
|
-
|
|
2942
|
-
|
|
2943
|
-
|
|
2944
|
-
|
|
2945
|
-
|
|
2946
|
-
|
|
2947
|
-
|
|
2948
|
-
|
|
4637
|
+
eip7702Auth?: {
|
|
4638
|
+
nonce: string | number | bigint;
|
|
4639
|
+
contractAddress: string;
|
|
4640
|
+
chainId: string | number | bigint;
|
|
4641
|
+
r: string;
|
|
4642
|
+
s: string;
|
|
4643
|
+
v: string | number | bigint;
|
|
4644
|
+
yParity: string | number | bigint;
|
|
4645
|
+
} | undefined;
|
|
4646
|
+
}, string, Record<string, {
|
|
2949
4647
|
balance?: string | number | bigint | undefined;
|
|
2950
4648
|
nonce?: string | number | bigint | undefined;
|
|
2951
4649
|
code?: string | undefined;
|
|
@@ -3086,6 +4784,31 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
|
|
|
3086
4784
|
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3087
4785
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3088
4786
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4787
|
+
eip7702Auth: z.ZodOptional<z.ZodObject<{
|
|
4788
|
+
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4789
|
+
chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
4790
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
4791
|
+
r: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
4792
|
+
s: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
4793
|
+
v: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4794
|
+
yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
4795
|
+
}, "strip", z.ZodTypeAny, {
|
|
4796
|
+
nonce: number;
|
|
4797
|
+
contractAddress: `0x${string}`;
|
|
4798
|
+
chainId: number;
|
|
4799
|
+
r: `0x${string}`;
|
|
4800
|
+
s: `0x${string}`;
|
|
4801
|
+
v: bigint;
|
|
4802
|
+
yParity: number;
|
|
4803
|
+
}, {
|
|
4804
|
+
nonce: string | number | bigint;
|
|
4805
|
+
contractAddress: string;
|
|
4806
|
+
chainId: string | number | bigint;
|
|
4807
|
+
r: string;
|
|
4808
|
+
s: string;
|
|
4809
|
+
v: string | number | bigint;
|
|
4810
|
+
yParity: string | number | bigint;
|
|
4811
|
+
}>>;
|
|
3089
4812
|
}, "strict", z.ZodTypeAny, {
|
|
3090
4813
|
sender: `0x${string}`;
|
|
3091
4814
|
nonce: bigint;
|
|
@@ -3098,6 +4821,15 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
|
|
|
3098
4821
|
maxFeePerGas: bigint;
|
|
3099
4822
|
maxPriorityFeePerGas: bigint;
|
|
3100
4823
|
signature: `0x${string}`;
|
|
4824
|
+
eip7702Auth?: {
|
|
4825
|
+
nonce: number;
|
|
4826
|
+
contractAddress: `0x${string}`;
|
|
4827
|
+
chainId: number;
|
|
4828
|
+
r: `0x${string}`;
|
|
4829
|
+
s: `0x${string}`;
|
|
4830
|
+
v: bigint;
|
|
4831
|
+
yParity: number;
|
|
4832
|
+
} | undefined;
|
|
3101
4833
|
}, {
|
|
3102
4834
|
sender: string;
|
|
3103
4835
|
nonce: string | number | bigint;
|
|
@@ -3110,6 +4842,15 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
|
|
|
3110
4842
|
maxFeePerGas: string | number | bigint;
|
|
3111
4843
|
maxPriorityFeePerGas: string | number | bigint;
|
|
3112
4844
|
signature: string;
|
|
4845
|
+
eip7702Auth?: {
|
|
4846
|
+
nonce: string | number | bigint;
|
|
4847
|
+
contractAddress: string;
|
|
4848
|
+
chainId: string | number | bigint;
|
|
4849
|
+
r: string;
|
|
4850
|
+
s: string;
|
|
4851
|
+
v: string | number | bigint;
|
|
4852
|
+
yParity: string | number | bigint;
|
|
4853
|
+
} | undefined;
|
|
3113
4854
|
}>, {
|
|
3114
4855
|
sender: `0x${string}`;
|
|
3115
4856
|
nonce: bigint;
|
|
@@ -3122,6 +4863,15 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
|
|
|
3122
4863
|
maxFeePerGas: bigint;
|
|
3123
4864
|
maxPriorityFeePerGas: bigint;
|
|
3124
4865
|
signature: `0x${string}`;
|
|
4866
|
+
eip7702Auth?: {
|
|
4867
|
+
nonce: number;
|
|
4868
|
+
contractAddress: `0x${string}`;
|
|
4869
|
+
chainId: number;
|
|
4870
|
+
r: `0x${string}`;
|
|
4871
|
+
s: `0x${string}`;
|
|
4872
|
+
v: bigint;
|
|
4873
|
+
yParity: number;
|
|
4874
|
+
} | undefined;
|
|
3125
4875
|
}, {
|
|
3126
4876
|
sender: string;
|
|
3127
4877
|
nonce: string | number | bigint;
|
|
@@ -3134,6 +4884,15 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
|
|
|
3134
4884
|
maxFeePerGas: string | number | bigint;
|
|
3135
4885
|
maxPriorityFeePerGas: string | number | bigint;
|
|
3136
4886
|
signature: string;
|
|
4887
|
+
eip7702Auth?: {
|
|
4888
|
+
nonce: string | number | bigint;
|
|
4889
|
+
contractAddress: string;
|
|
4890
|
+
chainId: string | number | bigint;
|
|
4891
|
+
r: string;
|
|
4892
|
+
s: string;
|
|
4893
|
+
v: string | number | bigint;
|
|
4894
|
+
yParity: string | number | bigint;
|
|
4895
|
+
} | undefined;
|
|
3137
4896
|
}>, z.ZodEffects<z.ZodObject<{
|
|
3138
4897
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3139
4898
|
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
@@ -3150,6 +4909,31 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
|
|
|
3150
4909
|
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
3151
4910
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
3152
4911
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4912
|
+
eip7702Auth: z.ZodOptional<z.ZodObject<{
|
|
4913
|
+
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4914
|
+
chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
4915
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
4916
|
+
r: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
4917
|
+
s: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
4918
|
+
v: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4919
|
+
yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
4920
|
+
}, "strip", z.ZodTypeAny, {
|
|
4921
|
+
nonce: number;
|
|
4922
|
+
contractAddress: `0x${string}`;
|
|
4923
|
+
chainId: number;
|
|
4924
|
+
r: `0x${string}`;
|
|
4925
|
+
s: `0x${string}`;
|
|
4926
|
+
v: bigint;
|
|
4927
|
+
yParity: number;
|
|
4928
|
+
}, {
|
|
4929
|
+
nonce: string | number | bigint;
|
|
4930
|
+
contractAddress: string;
|
|
4931
|
+
chainId: string | number | bigint;
|
|
4932
|
+
r: string;
|
|
4933
|
+
s: string;
|
|
4934
|
+
v: string | number | bigint;
|
|
4935
|
+
yParity: string | number | bigint;
|
|
4936
|
+
}>>;
|
|
3153
4937
|
}, "strict", z.ZodTypeAny, {
|
|
3154
4938
|
sender: `0x${string}`;
|
|
3155
4939
|
factory: `0x${string}` | null;
|
|
@@ -3166,6 +4950,15 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
|
|
|
3166
4950
|
paymasterPostOpGasLimit: bigint | null;
|
|
3167
4951
|
factoryData: `0x${string}` | null;
|
|
3168
4952
|
paymasterData: `0x${string}` | null;
|
|
4953
|
+
eip7702Auth?: {
|
|
4954
|
+
nonce: number;
|
|
4955
|
+
contractAddress: `0x${string}`;
|
|
4956
|
+
chainId: number;
|
|
4957
|
+
r: `0x${string}`;
|
|
4958
|
+
s: `0x${string}`;
|
|
4959
|
+
v: bigint;
|
|
4960
|
+
yParity: number;
|
|
4961
|
+
} | undefined;
|
|
3169
4962
|
}, {
|
|
3170
4963
|
sender: string;
|
|
3171
4964
|
nonce: string | number | bigint;
|
|
@@ -3182,6 +4975,15 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
|
|
|
3182
4975
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
3183
4976
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
3184
4977
|
paymasterData?: string | null | undefined;
|
|
4978
|
+
eip7702Auth?: {
|
|
4979
|
+
nonce: string | number | bigint;
|
|
4980
|
+
contractAddress: string;
|
|
4981
|
+
chainId: string | number | bigint;
|
|
4982
|
+
r: string;
|
|
4983
|
+
s: string;
|
|
4984
|
+
v: string | number | bigint;
|
|
4985
|
+
yParity: string | number | bigint;
|
|
4986
|
+
} | undefined;
|
|
3185
4987
|
}>, {
|
|
3186
4988
|
sender: `0x${string}`;
|
|
3187
4989
|
factory: `0x${string}` | null;
|
|
@@ -3198,6 +5000,15 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
|
|
|
3198
5000
|
paymasterPostOpGasLimit: bigint | null;
|
|
3199
5001
|
factoryData: `0x${string}` | null;
|
|
3200
5002
|
paymasterData: `0x${string}` | null;
|
|
5003
|
+
eip7702Auth?: {
|
|
5004
|
+
nonce: number;
|
|
5005
|
+
contractAddress: `0x${string}`;
|
|
5006
|
+
chainId: number;
|
|
5007
|
+
r: `0x${string}`;
|
|
5008
|
+
s: `0x${string}`;
|
|
5009
|
+
v: bigint;
|
|
5010
|
+
yParity: number;
|
|
5011
|
+
} | undefined;
|
|
3201
5012
|
}, {
|
|
3202
5013
|
sender: string;
|
|
3203
5014
|
nonce: string | number | bigint;
|
|
@@ -3214,6 +5025,15 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
|
|
|
3214
5025
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
3215
5026
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
3216
5027
|
paymasterData?: string | null | undefined;
|
|
5028
|
+
eip7702Auth?: {
|
|
5029
|
+
nonce: string | number | bigint;
|
|
5030
|
+
contractAddress: string;
|
|
5031
|
+
chainId: string | number | bigint;
|
|
5032
|
+
r: string;
|
|
5033
|
+
s: string;
|
|
5034
|
+
v: string | number | bigint;
|
|
5035
|
+
yParity: string | number | bigint;
|
|
5036
|
+
} | undefined;
|
|
3217
5037
|
}>]>;
|
|
3218
5038
|
entryPoint: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3219
5039
|
blockNumber: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
@@ -3233,6 +5053,15 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
|
|
|
3233
5053
|
maxFeePerGas: bigint;
|
|
3234
5054
|
maxPriorityFeePerGas: bigint;
|
|
3235
5055
|
signature: `0x${string}`;
|
|
5056
|
+
eip7702Auth?: {
|
|
5057
|
+
nonce: number;
|
|
5058
|
+
contractAddress: `0x${string}`;
|
|
5059
|
+
chainId: number;
|
|
5060
|
+
r: `0x${string}`;
|
|
5061
|
+
s: `0x${string}`;
|
|
5062
|
+
v: bigint;
|
|
5063
|
+
yParity: number;
|
|
5064
|
+
} | undefined;
|
|
3236
5065
|
} | {
|
|
3237
5066
|
sender: `0x${string}`;
|
|
3238
5067
|
factory: `0x${string}` | null;
|
|
@@ -3249,6 +5078,15 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
|
|
|
3249
5078
|
paymasterPostOpGasLimit: bigint | null;
|
|
3250
5079
|
factoryData: `0x${string}` | null;
|
|
3251
5080
|
paymasterData: `0x${string}` | null;
|
|
5081
|
+
eip7702Auth?: {
|
|
5082
|
+
nonce: number;
|
|
5083
|
+
contractAddress: `0x${string}`;
|
|
5084
|
+
chainId: number;
|
|
5085
|
+
r: `0x${string}`;
|
|
5086
|
+
s: `0x${string}`;
|
|
5087
|
+
v: bigint;
|
|
5088
|
+
yParity: number;
|
|
5089
|
+
} | undefined;
|
|
3252
5090
|
}) & ({
|
|
3253
5091
|
sender: `0x${string}`;
|
|
3254
5092
|
nonce: bigint;
|
|
@@ -3261,6 +5099,15 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
|
|
|
3261
5099
|
maxFeePerGas: bigint;
|
|
3262
5100
|
maxPriorityFeePerGas: bigint;
|
|
3263
5101
|
signature: `0x${string}`;
|
|
5102
|
+
eip7702Auth?: {
|
|
5103
|
+
nonce: number;
|
|
5104
|
+
contractAddress: `0x${string}`;
|
|
5105
|
+
chainId: number;
|
|
5106
|
+
r: `0x${string}`;
|
|
5107
|
+
s: `0x${string}`;
|
|
5108
|
+
v: bigint;
|
|
5109
|
+
yParity: number;
|
|
5110
|
+
} | undefined;
|
|
3264
5111
|
} | {
|
|
3265
5112
|
sender: `0x${string}`;
|
|
3266
5113
|
factory: `0x${string}` | null;
|
|
@@ -3277,6 +5124,15 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
|
|
|
3277
5124
|
paymasterPostOpGasLimit: bigint | null;
|
|
3278
5125
|
factoryData: `0x${string}` | null;
|
|
3279
5126
|
paymasterData: `0x${string}` | null;
|
|
5127
|
+
eip7702Auth?: {
|
|
5128
|
+
nonce: number;
|
|
5129
|
+
contractAddress: `0x${string}`;
|
|
5130
|
+
chainId: number;
|
|
5131
|
+
r: `0x${string}`;
|
|
5132
|
+
s: `0x${string}`;
|
|
5133
|
+
v: bigint;
|
|
5134
|
+
yParity: number;
|
|
5135
|
+
} | undefined;
|
|
3280
5136
|
} | undefined);
|
|
3281
5137
|
blockNumber: bigint;
|
|
3282
5138
|
blockHash: `0x${string}`;
|
|
@@ -3295,6 +5151,15 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
|
|
|
3295
5151
|
maxFeePerGas: string | number | bigint;
|
|
3296
5152
|
maxPriorityFeePerGas: string | number | bigint;
|
|
3297
5153
|
signature: string;
|
|
5154
|
+
eip7702Auth?: {
|
|
5155
|
+
nonce: string | number | bigint;
|
|
5156
|
+
contractAddress: string;
|
|
5157
|
+
chainId: string | number | bigint;
|
|
5158
|
+
r: string;
|
|
5159
|
+
s: string;
|
|
5160
|
+
v: string | number | bigint;
|
|
5161
|
+
yParity: string | number | bigint;
|
|
5162
|
+
} | undefined;
|
|
3298
5163
|
} | {
|
|
3299
5164
|
sender: string;
|
|
3300
5165
|
nonce: string | number | bigint;
|
|
@@ -3311,6 +5176,15 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
|
|
|
3311
5176
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
3312
5177
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
3313
5178
|
paymasterData?: string | null | undefined;
|
|
5179
|
+
eip7702Auth?: {
|
|
5180
|
+
nonce: string | number | bigint;
|
|
5181
|
+
contractAddress: string;
|
|
5182
|
+
chainId: string | number | bigint;
|
|
5183
|
+
r: string;
|
|
5184
|
+
s: string;
|
|
5185
|
+
v: string | number | bigint;
|
|
5186
|
+
yParity: string | number | bigint;
|
|
5187
|
+
} | undefined;
|
|
3314
5188
|
}) & ({
|
|
3315
5189
|
sender: string;
|
|
3316
5190
|
nonce: string | number | bigint;
|
|
@@ -3323,6 +5197,15 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
|
|
|
3323
5197
|
maxFeePerGas: string | number | bigint;
|
|
3324
5198
|
maxPriorityFeePerGas: string | number | bigint;
|
|
3325
5199
|
signature: string;
|
|
5200
|
+
eip7702Auth?: {
|
|
5201
|
+
nonce: string | number | bigint;
|
|
5202
|
+
contractAddress: string;
|
|
5203
|
+
chainId: string | number | bigint;
|
|
5204
|
+
r: string;
|
|
5205
|
+
s: string;
|
|
5206
|
+
v: string | number | bigint;
|
|
5207
|
+
yParity: string | number | bigint;
|
|
5208
|
+
} | undefined;
|
|
3326
5209
|
} | {
|
|
3327
5210
|
sender: string;
|
|
3328
5211
|
nonce: string | number | bigint;
|
|
@@ -3339,6 +5222,15 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
|
|
|
3339
5222
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
3340
5223
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
3341
5224
|
paymasterData?: string | null | undefined;
|
|
5225
|
+
eip7702Auth?: {
|
|
5226
|
+
nonce: string | number | bigint;
|
|
5227
|
+
contractAddress: string;
|
|
5228
|
+
chainId: string | number | bigint;
|
|
5229
|
+
r: string;
|
|
5230
|
+
s: string;
|
|
5231
|
+
v: string | number | bigint;
|
|
5232
|
+
yParity: string | number | bigint;
|
|
5233
|
+
} | undefined;
|
|
3342
5234
|
} | undefined);
|
|
3343
5235
|
blockNumber: string | number | bigint;
|
|
3344
5236
|
blockHash: string;
|
|
@@ -3359,6 +5251,15 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
|
|
|
3359
5251
|
maxFeePerGas: bigint;
|
|
3360
5252
|
maxPriorityFeePerGas: bigint;
|
|
3361
5253
|
signature: `0x${string}`;
|
|
5254
|
+
eip7702Auth?: {
|
|
5255
|
+
nonce: number;
|
|
5256
|
+
contractAddress: `0x${string}`;
|
|
5257
|
+
chainId: number;
|
|
5258
|
+
r: `0x${string}`;
|
|
5259
|
+
s: `0x${string}`;
|
|
5260
|
+
v: bigint;
|
|
5261
|
+
yParity: number;
|
|
5262
|
+
} | undefined;
|
|
3362
5263
|
} | {
|
|
3363
5264
|
sender: `0x${string}`;
|
|
3364
5265
|
factory: `0x${string}` | null;
|
|
@@ -3375,6 +5276,15 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
|
|
|
3375
5276
|
paymasterPostOpGasLimit: bigint | null;
|
|
3376
5277
|
factoryData: `0x${string}` | null;
|
|
3377
5278
|
paymasterData: `0x${string}` | null;
|
|
5279
|
+
eip7702Auth?: {
|
|
5280
|
+
nonce: number;
|
|
5281
|
+
contractAddress: `0x${string}`;
|
|
5282
|
+
chainId: number;
|
|
5283
|
+
r: `0x${string}`;
|
|
5284
|
+
s: `0x${string}`;
|
|
5285
|
+
v: bigint;
|
|
5286
|
+
yParity: number;
|
|
5287
|
+
} | undefined;
|
|
3378
5288
|
}) & ({
|
|
3379
5289
|
sender: `0x${string}`;
|
|
3380
5290
|
nonce: bigint;
|
|
@@ -3387,6 +5297,15 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
|
|
|
3387
5297
|
maxFeePerGas: bigint;
|
|
3388
5298
|
maxPriorityFeePerGas: bigint;
|
|
3389
5299
|
signature: `0x${string}`;
|
|
5300
|
+
eip7702Auth?: {
|
|
5301
|
+
nonce: number;
|
|
5302
|
+
contractAddress: `0x${string}`;
|
|
5303
|
+
chainId: number;
|
|
5304
|
+
r: `0x${string}`;
|
|
5305
|
+
s: `0x${string}`;
|
|
5306
|
+
v: bigint;
|
|
5307
|
+
yParity: number;
|
|
5308
|
+
} | undefined;
|
|
3390
5309
|
} | {
|
|
3391
5310
|
sender: `0x${string}`;
|
|
3392
5311
|
factory: `0x${string}` | null;
|
|
@@ -3403,6 +5322,15 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
|
|
|
3403
5322
|
paymasterPostOpGasLimit: bigint | null;
|
|
3404
5323
|
factoryData: `0x${string}` | null;
|
|
3405
5324
|
paymasterData: `0x${string}` | null;
|
|
5325
|
+
eip7702Auth?: {
|
|
5326
|
+
nonce: number;
|
|
5327
|
+
contractAddress: `0x${string}`;
|
|
5328
|
+
chainId: number;
|
|
5329
|
+
r: `0x${string}`;
|
|
5330
|
+
s: `0x${string}`;
|
|
5331
|
+
v: bigint;
|
|
5332
|
+
yParity: number;
|
|
5333
|
+
} | undefined;
|
|
3406
5334
|
} | undefined);
|
|
3407
5335
|
blockNumber: bigint;
|
|
3408
5336
|
blockHash: `0x${string}`;
|
|
@@ -3424,6 +5352,15 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
|
|
|
3424
5352
|
maxFeePerGas: string | number | bigint;
|
|
3425
5353
|
maxPriorityFeePerGas: string | number | bigint;
|
|
3426
5354
|
signature: string;
|
|
5355
|
+
eip7702Auth?: {
|
|
5356
|
+
nonce: string | number | bigint;
|
|
5357
|
+
contractAddress: string;
|
|
5358
|
+
chainId: string | number | bigint;
|
|
5359
|
+
r: string;
|
|
5360
|
+
s: string;
|
|
5361
|
+
v: string | number | bigint;
|
|
5362
|
+
yParity: string | number | bigint;
|
|
5363
|
+
} | undefined;
|
|
3427
5364
|
} | {
|
|
3428
5365
|
sender: string;
|
|
3429
5366
|
nonce: string | number | bigint;
|
|
@@ -3440,6 +5377,15 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
|
|
|
3440
5377
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
3441
5378
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
3442
5379
|
paymasterData?: string | null | undefined;
|
|
5380
|
+
eip7702Auth?: {
|
|
5381
|
+
nonce: string | number | bigint;
|
|
5382
|
+
contractAddress: string;
|
|
5383
|
+
chainId: string | number | bigint;
|
|
5384
|
+
r: string;
|
|
5385
|
+
s: string;
|
|
5386
|
+
v: string | number | bigint;
|
|
5387
|
+
yParity: string | number | bigint;
|
|
5388
|
+
} | undefined;
|
|
3443
5389
|
}) & ({
|
|
3444
5390
|
sender: string;
|
|
3445
5391
|
nonce: string | number | bigint;
|
|
@@ -3452,6 +5398,15 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
|
|
|
3452
5398
|
maxFeePerGas: string | number | bigint;
|
|
3453
5399
|
maxPriorityFeePerGas: string | number | bigint;
|
|
3454
5400
|
signature: string;
|
|
5401
|
+
eip7702Auth?: {
|
|
5402
|
+
nonce: string | number | bigint;
|
|
5403
|
+
contractAddress: string;
|
|
5404
|
+
chainId: string | number | bigint;
|
|
5405
|
+
r: string;
|
|
5406
|
+
s: string;
|
|
5407
|
+
v: string | number | bigint;
|
|
5408
|
+
yParity: string | number | bigint;
|
|
5409
|
+
} | undefined;
|
|
3455
5410
|
} | {
|
|
3456
5411
|
sender: string;
|
|
3457
5412
|
nonce: string | number | bigint;
|
|
@@ -3468,6 +5423,15 @@ declare const getUserOperationByHashResponseSchema: z.ZodObject<{
|
|
|
3468
5423
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
3469
5424
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
3470
5425
|
paymasterData?: string | null | undefined;
|
|
5426
|
+
eip7702Auth?: {
|
|
5427
|
+
nonce: string | number | bigint;
|
|
5428
|
+
contractAddress: string;
|
|
5429
|
+
chainId: string | number | bigint;
|
|
5430
|
+
r: string;
|
|
5431
|
+
s: string;
|
|
5432
|
+
v: string | number | bigint;
|
|
5433
|
+
yParity: string | number | bigint;
|
|
5434
|
+
} | undefined;
|
|
3471
5435
|
} | undefined);
|
|
3472
5436
|
blockNumber: string | number | bigint;
|
|
3473
5437
|
blockHash: string;
|
|
@@ -3937,6 +5901,31 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
|
|
|
3937
5901
|
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3938
5902
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3939
5903
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
5904
|
+
eip7702Auth: z.ZodOptional<z.ZodObject<{
|
|
5905
|
+
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
5906
|
+
chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
5907
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
5908
|
+
r: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
5909
|
+
s: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
5910
|
+
v: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
5911
|
+
yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
5912
|
+
}, "strip", z.ZodTypeAny, {
|
|
5913
|
+
nonce: number;
|
|
5914
|
+
contractAddress: `0x${string}`;
|
|
5915
|
+
chainId: number;
|
|
5916
|
+
r: `0x${string}`;
|
|
5917
|
+
s: `0x${string}`;
|
|
5918
|
+
v: bigint;
|
|
5919
|
+
yParity: number;
|
|
5920
|
+
}, {
|
|
5921
|
+
nonce: string | number | bigint;
|
|
5922
|
+
contractAddress: string;
|
|
5923
|
+
chainId: string | number | bigint;
|
|
5924
|
+
r: string;
|
|
5925
|
+
s: string;
|
|
5926
|
+
v: string | number | bigint;
|
|
5927
|
+
yParity: string | number | bigint;
|
|
5928
|
+
}>>;
|
|
3940
5929
|
}, "strict", z.ZodTypeAny, {
|
|
3941
5930
|
sender: `0x${string}`;
|
|
3942
5931
|
nonce: bigint;
|
|
@@ -3949,6 +5938,15 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
|
|
|
3949
5938
|
maxFeePerGas: bigint;
|
|
3950
5939
|
maxPriorityFeePerGas: bigint;
|
|
3951
5940
|
signature: `0x${string}`;
|
|
5941
|
+
eip7702Auth?: {
|
|
5942
|
+
nonce: number;
|
|
5943
|
+
contractAddress: `0x${string}`;
|
|
5944
|
+
chainId: number;
|
|
5945
|
+
r: `0x${string}`;
|
|
5946
|
+
s: `0x${string}`;
|
|
5947
|
+
v: bigint;
|
|
5948
|
+
yParity: number;
|
|
5949
|
+
} | undefined;
|
|
3952
5950
|
}, {
|
|
3953
5951
|
sender: string;
|
|
3954
5952
|
nonce: string | number | bigint;
|
|
@@ -3961,6 +5959,15 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
|
|
|
3961
5959
|
maxFeePerGas: string | number | bigint;
|
|
3962
5960
|
maxPriorityFeePerGas: string | number | bigint;
|
|
3963
5961
|
signature: string;
|
|
5962
|
+
eip7702Auth?: {
|
|
5963
|
+
nonce: string | number | bigint;
|
|
5964
|
+
contractAddress: string;
|
|
5965
|
+
chainId: string | number | bigint;
|
|
5966
|
+
r: string;
|
|
5967
|
+
s: string;
|
|
5968
|
+
v: string | number | bigint;
|
|
5969
|
+
yParity: string | number | bigint;
|
|
5970
|
+
} | undefined;
|
|
3964
5971
|
}>, {
|
|
3965
5972
|
sender: `0x${string}`;
|
|
3966
5973
|
nonce: bigint;
|
|
@@ -3973,6 +5980,15 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
|
|
|
3973
5980
|
maxFeePerGas: bigint;
|
|
3974
5981
|
maxPriorityFeePerGas: bigint;
|
|
3975
5982
|
signature: `0x${string}`;
|
|
5983
|
+
eip7702Auth?: {
|
|
5984
|
+
nonce: number;
|
|
5985
|
+
contractAddress: `0x${string}`;
|
|
5986
|
+
chainId: number;
|
|
5987
|
+
r: `0x${string}`;
|
|
5988
|
+
s: `0x${string}`;
|
|
5989
|
+
v: bigint;
|
|
5990
|
+
yParity: number;
|
|
5991
|
+
} | undefined;
|
|
3976
5992
|
}, {
|
|
3977
5993
|
sender: string;
|
|
3978
5994
|
nonce: string | number | bigint;
|
|
@@ -3985,6 +6001,15 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
|
|
|
3985
6001
|
maxFeePerGas: string | number | bigint;
|
|
3986
6002
|
maxPriorityFeePerGas: string | number | bigint;
|
|
3987
6003
|
signature: string;
|
|
6004
|
+
eip7702Auth?: {
|
|
6005
|
+
nonce: string | number | bigint;
|
|
6006
|
+
contractAddress: string;
|
|
6007
|
+
chainId: string | number | bigint;
|
|
6008
|
+
r: string;
|
|
6009
|
+
s: string;
|
|
6010
|
+
v: string | number | bigint;
|
|
6011
|
+
yParity: string | number | bigint;
|
|
6012
|
+
} | undefined;
|
|
3988
6013
|
}>, z.ZodEffects<z.ZodObject<{
|
|
3989
6014
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3990
6015
|
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
@@ -4001,6 +6026,31 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
|
|
|
4001
6026
|
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
4002
6027
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
4003
6028
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
6029
|
+
eip7702Auth: z.ZodOptional<z.ZodObject<{
|
|
6030
|
+
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
6031
|
+
chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
6032
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
6033
|
+
r: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
6034
|
+
s: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
6035
|
+
v: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
6036
|
+
yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
6037
|
+
}, "strip", z.ZodTypeAny, {
|
|
6038
|
+
nonce: number;
|
|
6039
|
+
contractAddress: `0x${string}`;
|
|
6040
|
+
chainId: number;
|
|
6041
|
+
r: `0x${string}`;
|
|
6042
|
+
s: `0x${string}`;
|
|
6043
|
+
v: bigint;
|
|
6044
|
+
yParity: number;
|
|
6045
|
+
}, {
|
|
6046
|
+
nonce: string | number | bigint;
|
|
6047
|
+
contractAddress: string;
|
|
6048
|
+
chainId: string | number | bigint;
|
|
6049
|
+
r: string;
|
|
6050
|
+
s: string;
|
|
6051
|
+
v: string | number | bigint;
|
|
6052
|
+
yParity: string | number | bigint;
|
|
6053
|
+
}>>;
|
|
4004
6054
|
}, "strict", z.ZodTypeAny, {
|
|
4005
6055
|
sender: `0x${string}`;
|
|
4006
6056
|
factory: `0x${string}` | null;
|
|
@@ -4017,6 +6067,15 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
|
|
|
4017
6067
|
paymasterPostOpGasLimit: bigint | null;
|
|
4018
6068
|
factoryData: `0x${string}` | null;
|
|
4019
6069
|
paymasterData: `0x${string}` | null;
|
|
6070
|
+
eip7702Auth?: {
|
|
6071
|
+
nonce: number;
|
|
6072
|
+
contractAddress: `0x${string}`;
|
|
6073
|
+
chainId: number;
|
|
6074
|
+
r: `0x${string}`;
|
|
6075
|
+
s: `0x${string}`;
|
|
6076
|
+
v: bigint;
|
|
6077
|
+
yParity: number;
|
|
6078
|
+
} | undefined;
|
|
4020
6079
|
}, {
|
|
4021
6080
|
sender: string;
|
|
4022
6081
|
nonce: string | number | bigint;
|
|
@@ -4033,6 +6092,15 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
|
|
|
4033
6092
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
4034
6093
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
4035
6094
|
paymasterData?: string | null | undefined;
|
|
6095
|
+
eip7702Auth?: {
|
|
6096
|
+
nonce: string | number | bigint;
|
|
6097
|
+
contractAddress: string;
|
|
6098
|
+
chainId: string | number | bigint;
|
|
6099
|
+
r: string;
|
|
6100
|
+
s: string;
|
|
6101
|
+
v: string | number | bigint;
|
|
6102
|
+
yParity: string | number | bigint;
|
|
6103
|
+
} | undefined;
|
|
4036
6104
|
}>, {
|
|
4037
6105
|
sender: `0x${string}`;
|
|
4038
6106
|
factory: `0x${string}` | null;
|
|
@@ -4049,6 +6117,15 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
|
|
|
4049
6117
|
paymasterPostOpGasLimit: bigint | null;
|
|
4050
6118
|
factoryData: `0x${string}` | null;
|
|
4051
6119
|
paymasterData: `0x${string}` | null;
|
|
6120
|
+
eip7702Auth?: {
|
|
6121
|
+
nonce: number;
|
|
6122
|
+
contractAddress: `0x${string}`;
|
|
6123
|
+
chainId: number;
|
|
6124
|
+
r: `0x${string}`;
|
|
6125
|
+
s: `0x${string}`;
|
|
6126
|
+
v: bigint;
|
|
6127
|
+
yParity: number;
|
|
6128
|
+
} | undefined;
|
|
4052
6129
|
}, {
|
|
4053
6130
|
sender: string;
|
|
4054
6131
|
nonce: string | number | bigint;
|
|
@@ -4065,6 +6142,15 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
|
|
|
4065
6142
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
4066
6143
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
4067
6144
|
paymasterData?: string | null | undefined;
|
|
6145
|
+
eip7702Auth?: {
|
|
6146
|
+
nonce: string | number | bigint;
|
|
6147
|
+
contractAddress: string;
|
|
6148
|
+
chainId: string | number | bigint;
|
|
6149
|
+
r: string;
|
|
6150
|
+
s: string;
|
|
6151
|
+
v: string | number | bigint;
|
|
6152
|
+
yParity: string | number | bigint;
|
|
6153
|
+
} | undefined;
|
|
4068
6154
|
}>]>, "many">;
|
|
4069
6155
|
}, "strip", z.ZodTypeAny, {
|
|
4070
6156
|
result: ({
|
|
@@ -4079,6 +6165,15 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
|
|
|
4079
6165
|
maxFeePerGas: bigint;
|
|
4080
6166
|
maxPriorityFeePerGas: bigint;
|
|
4081
6167
|
signature: `0x${string}`;
|
|
6168
|
+
eip7702Auth?: {
|
|
6169
|
+
nonce: number;
|
|
6170
|
+
contractAddress: `0x${string}`;
|
|
6171
|
+
chainId: number;
|
|
6172
|
+
r: `0x${string}`;
|
|
6173
|
+
s: `0x${string}`;
|
|
6174
|
+
v: bigint;
|
|
6175
|
+
yParity: number;
|
|
6176
|
+
} | undefined;
|
|
4082
6177
|
} | {
|
|
4083
6178
|
sender: `0x${string}`;
|
|
4084
6179
|
factory: `0x${string}` | null;
|
|
@@ -4095,6 +6190,15 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
|
|
|
4095
6190
|
paymasterPostOpGasLimit: bigint | null;
|
|
4096
6191
|
factoryData: `0x${string}` | null;
|
|
4097
6192
|
paymasterData: `0x${string}` | null;
|
|
6193
|
+
eip7702Auth?: {
|
|
6194
|
+
nonce: number;
|
|
6195
|
+
contractAddress: `0x${string}`;
|
|
6196
|
+
chainId: number;
|
|
6197
|
+
r: `0x${string}`;
|
|
6198
|
+
s: `0x${string}`;
|
|
6199
|
+
v: bigint;
|
|
6200
|
+
yParity: number;
|
|
6201
|
+
} | undefined;
|
|
4098
6202
|
})[];
|
|
4099
6203
|
method: "debug_bundler_dumpMempool";
|
|
4100
6204
|
}, {
|
|
@@ -4110,6 +6214,15 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
|
|
|
4110
6214
|
maxFeePerGas: string | number | bigint;
|
|
4111
6215
|
maxPriorityFeePerGas: string | number | bigint;
|
|
4112
6216
|
signature: string;
|
|
6217
|
+
eip7702Auth?: {
|
|
6218
|
+
nonce: string | number | bigint;
|
|
6219
|
+
contractAddress: string;
|
|
6220
|
+
chainId: string | number | bigint;
|
|
6221
|
+
r: string;
|
|
6222
|
+
s: string;
|
|
6223
|
+
v: string | number | bigint;
|
|
6224
|
+
yParity: string | number | bigint;
|
|
6225
|
+
} | undefined;
|
|
4113
6226
|
} | {
|
|
4114
6227
|
sender: string;
|
|
4115
6228
|
nonce: string | number | bigint;
|
|
@@ -4126,6 +6239,15 @@ declare const bundlerDumpMempoolResponseSchema: z.ZodObject<{
|
|
|
4126
6239
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
4127
6240
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
4128
6241
|
paymasterData?: string | null | undefined;
|
|
6242
|
+
eip7702Auth?: {
|
|
6243
|
+
nonce: string | number | bigint;
|
|
6244
|
+
contractAddress: string;
|
|
6245
|
+
chainId: string | number | bigint;
|
|
6246
|
+
r: string;
|
|
6247
|
+
s: string;
|
|
6248
|
+
v: string | number | bigint;
|
|
6249
|
+
yParity: string | number | bigint;
|
|
6250
|
+
} | undefined;
|
|
4129
6251
|
})[];
|
|
4130
6252
|
method: "debug_bundler_dumpMempool";
|
|
4131
6253
|
}>;
|
|
@@ -4504,6 +6626,31 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4504
6626
|
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
4505
6627
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4506
6628
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
6629
|
+
eip7702Auth: z.ZodOptional<z.ZodObject<{
|
|
6630
|
+
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
6631
|
+
chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
6632
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
6633
|
+
r: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
6634
|
+
s: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
6635
|
+
v: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
6636
|
+
yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
6637
|
+
}, "strip", z.ZodTypeAny, {
|
|
6638
|
+
nonce: number;
|
|
6639
|
+
contractAddress: `0x${string}`;
|
|
6640
|
+
chainId: number;
|
|
6641
|
+
r: `0x${string}`;
|
|
6642
|
+
s: `0x${string}`;
|
|
6643
|
+
v: bigint;
|
|
6644
|
+
yParity: number;
|
|
6645
|
+
}, {
|
|
6646
|
+
nonce: string | number | bigint;
|
|
6647
|
+
contractAddress: string;
|
|
6648
|
+
chainId: string | number | bigint;
|
|
6649
|
+
r: string;
|
|
6650
|
+
s: string;
|
|
6651
|
+
v: string | number | bigint;
|
|
6652
|
+
yParity: string | number | bigint;
|
|
6653
|
+
}>>;
|
|
4507
6654
|
}, "strict", z.ZodTypeAny, {
|
|
4508
6655
|
sender: `0x${string}`;
|
|
4509
6656
|
nonce: bigint;
|
|
@@ -4516,6 +6663,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4516
6663
|
maxFeePerGas: bigint;
|
|
4517
6664
|
maxPriorityFeePerGas: bigint;
|
|
4518
6665
|
signature: `0x${string}`;
|
|
6666
|
+
eip7702Auth?: {
|
|
6667
|
+
nonce: number;
|
|
6668
|
+
contractAddress: `0x${string}`;
|
|
6669
|
+
chainId: number;
|
|
6670
|
+
r: `0x${string}`;
|
|
6671
|
+
s: `0x${string}`;
|
|
6672
|
+
v: bigint;
|
|
6673
|
+
yParity: number;
|
|
6674
|
+
} | undefined;
|
|
4519
6675
|
}, {
|
|
4520
6676
|
sender: string;
|
|
4521
6677
|
nonce: string | number | bigint;
|
|
@@ -4528,6 +6684,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4528
6684
|
maxFeePerGas: string | number | bigint;
|
|
4529
6685
|
maxPriorityFeePerGas: string | number | bigint;
|
|
4530
6686
|
signature: string;
|
|
6687
|
+
eip7702Auth?: {
|
|
6688
|
+
nonce: string | number | bigint;
|
|
6689
|
+
contractAddress: string;
|
|
6690
|
+
chainId: string | number | bigint;
|
|
6691
|
+
r: string;
|
|
6692
|
+
s: string;
|
|
6693
|
+
v: string | number | bigint;
|
|
6694
|
+
yParity: string | number | bigint;
|
|
6695
|
+
} | undefined;
|
|
4531
6696
|
}>, {
|
|
4532
6697
|
sender: `0x${string}`;
|
|
4533
6698
|
nonce: bigint;
|
|
@@ -4540,6 +6705,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4540
6705
|
maxFeePerGas: bigint;
|
|
4541
6706
|
maxPriorityFeePerGas: bigint;
|
|
4542
6707
|
signature: `0x${string}`;
|
|
6708
|
+
eip7702Auth?: {
|
|
6709
|
+
nonce: number;
|
|
6710
|
+
contractAddress: `0x${string}`;
|
|
6711
|
+
chainId: number;
|
|
6712
|
+
r: `0x${string}`;
|
|
6713
|
+
s: `0x${string}`;
|
|
6714
|
+
v: bigint;
|
|
6715
|
+
yParity: number;
|
|
6716
|
+
} | undefined;
|
|
4543
6717
|
}, {
|
|
4544
6718
|
sender: string;
|
|
4545
6719
|
nonce: string | number | bigint;
|
|
@@ -4552,6 +6726,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4552
6726
|
maxFeePerGas: string | number | bigint;
|
|
4553
6727
|
maxPriorityFeePerGas: string | number | bigint;
|
|
4554
6728
|
signature: string;
|
|
6729
|
+
eip7702Auth?: {
|
|
6730
|
+
nonce: string | number | bigint;
|
|
6731
|
+
contractAddress: string;
|
|
6732
|
+
chainId: string | number | bigint;
|
|
6733
|
+
r: string;
|
|
6734
|
+
s: string;
|
|
6735
|
+
v: string | number | bigint;
|
|
6736
|
+
yParity: string | number | bigint;
|
|
6737
|
+
} | undefined;
|
|
4555
6738
|
}>, z.ZodEffects<z.ZodObject<{
|
|
4556
6739
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4557
6740
|
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
@@ -4568,6 +6751,31 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4568
6751
|
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
4569
6752
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
4570
6753
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
6754
|
+
eip7702Auth: z.ZodOptional<z.ZodObject<{
|
|
6755
|
+
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
6756
|
+
chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
6757
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
6758
|
+
r: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
6759
|
+
s: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
6760
|
+
v: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
6761
|
+
yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
6762
|
+
}, "strip", z.ZodTypeAny, {
|
|
6763
|
+
nonce: number;
|
|
6764
|
+
contractAddress: `0x${string}`;
|
|
6765
|
+
chainId: number;
|
|
6766
|
+
r: `0x${string}`;
|
|
6767
|
+
s: `0x${string}`;
|
|
6768
|
+
v: bigint;
|
|
6769
|
+
yParity: number;
|
|
6770
|
+
}, {
|
|
6771
|
+
nonce: string | number | bigint;
|
|
6772
|
+
contractAddress: string;
|
|
6773
|
+
chainId: string | number | bigint;
|
|
6774
|
+
r: string;
|
|
6775
|
+
s: string;
|
|
6776
|
+
v: string | number | bigint;
|
|
6777
|
+
yParity: string | number | bigint;
|
|
6778
|
+
}>>;
|
|
4571
6779
|
}, "strict", z.ZodTypeAny, {
|
|
4572
6780
|
sender: `0x${string}`;
|
|
4573
6781
|
factory: `0x${string}` | null;
|
|
@@ -4584,6 +6792,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4584
6792
|
paymasterPostOpGasLimit: bigint | null;
|
|
4585
6793
|
factoryData: `0x${string}` | null;
|
|
4586
6794
|
paymasterData: `0x${string}` | null;
|
|
6795
|
+
eip7702Auth?: {
|
|
6796
|
+
nonce: number;
|
|
6797
|
+
contractAddress: `0x${string}`;
|
|
6798
|
+
chainId: number;
|
|
6799
|
+
r: `0x${string}`;
|
|
6800
|
+
s: `0x${string}`;
|
|
6801
|
+
v: bigint;
|
|
6802
|
+
yParity: number;
|
|
6803
|
+
} | undefined;
|
|
4587
6804
|
}, {
|
|
4588
6805
|
sender: string;
|
|
4589
6806
|
nonce: string | number | bigint;
|
|
@@ -4600,6 +6817,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4600
6817
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
4601
6818
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
4602
6819
|
paymasterData?: string | null | undefined;
|
|
6820
|
+
eip7702Auth?: {
|
|
6821
|
+
nonce: string | number | bigint;
|
|
6822
|
+
contractAddress: string;
|
|
6823
|
+
chainId: string | number | bigint;
|
|
6824
|
+
r: string;
|
|
6825
|
+
s: string;
|
|
6826
|
+
v: string | number | bigint;
|
|
6827
|
+
yParity: string | number | bigint;
|
|
6828
|
+
} | undefined;
|
|
4603
6829
|
}>, {
|
|
4604
6830
|
sender: `0x${string}`;
|
|
4605
6831
|
factory: `0x${string}` | null;
|
|
@@ -4616,6 +6842,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4616
6842
|
paymasterPostOpGasLimit: bigint | null;
|
|
4617
6843
|
factoryData: `0x${string}` | null;
|
|
4618
6844
|
paymasterData: `0x${string}` | null;
|
|
6845
|
+
eip7702Auth?: {
|
|
6846
|
+
nonce: number;
|
|
6847
|
+
contractAddress: `0x${string}`;
|
|
6848
|
+
chainId: number;
|
|
6849
|
+
r: `0x${string}`;
|
|
6850
|
+
s: `0x${string}`;
|
|
6851
|
+
v: bigint;
|
|
6852
|
+
yParity: number;
|
|
6853
|
+
} | undefined;
|
|
4619
6854
|
}, {
|
|
4620
6855
|
sender: string;
|
|
4621
6856
|
nonce: string | number | bigint;
|
|
@@ -4632,6 +6867,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4632
6867
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
4633
6868
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
4634
6869
|
paymasterData?: string | null | undefined;
|
|
6870
|
+
eip7702Auth?: {
|
|
6871
|
+
nonce: string | number | bigint;
|
|
6872
|
+
contractAddress: string;
|
|
6873
|
+
chainId: string | number | bigint;
|
|
6874
|
+
r: string;
|
|
6875
|
+
s: string;
|
|
6876
|
+
v: string | number | bigint;
|
|
6877
|
+
yParity: string | number | bigint;
|
|
6878
|
+
} | undefined;
|
|
4635
6879
|
}>]>;
|
|
4636
6880
|
entryPoint: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4637
6881
|
blockNumber: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
@@ -4651,6 +6895,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4651
6895
|
maxFeePerGas: bigint;
|
|
4652
6896
|
maxPriorityFeePerGas: bigint;
|
|
4653
6897
|
signature: `0x${string}`;
|
|
6898
|
+
eip7702Auth?: {
|
|
6899
|
+
nonce: number;
|
|
6900
|
+
contractAddress: `0x${string}`;
|
|
6901
|
+
chainId: number;
|
|
6902
|
+
r: `0x${string}`;
|
|
6903
|
+
s: `0x${string}`;
|
|
6904
|
+
v: bigint;
|
|
6905
|
+
yParity: number;
|
|
6906
|
+
} | undefined;
|
|
4654
6907
|
} | {
|
|
4655
6908
|
sender: `0x${string}`;
|
|
4656
6909
|
factory: `0x${string}` | null;
|
|
@@ -4667,6 +6920,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4667
6920
|
paymasterPostOpGasLimit: bigint | null;
|
|
4668
6921
|
factoryData: `0x${string}` | null;
|
|
4669
6922
|
paymasterData: `0x${string}` | null;
|
|
6923
|
+
eip7702Auth?: {
|
|
6924
|
+
nonce: number;
|
|
6925
|
+
contractAddress: `0x${string}`;
|
|
6926
|
+
chainId: number;
|
|
6927
|
+
r: `0x${string}`;
|
|
6928
|
+
s: `0x${string}`;
|
|
6929
|
+
v: bigint;
|
|
6930
|
+
yParity: number;
|
|
6931
|
+
} | undefined;
|
|
4670
6932
|
}) & ({
|
|
4671
6933
|
sender: `0x${string}`;
|
|
4672
6934
|
nonce: bigint;
|
|
@@ -4679,6 +6941,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4679
6941
|
maxFeePerGas: bigint;
|
|
4680
6942
|
maxPriorityFeePerGas: bigint;
|
|
4681
6943
|
signature: `0x${string}`;
|
|
6944
|
+
eip7702Auth?: {
|
|
6945
|
+
nonce: number;
|
|
6946
|
+
contractAddress: `0x${string}`;
|
|
6947
|
+
chainId: number;
|
|
6948
|
+
r: `0x${string}`;
|
|
6949
|
+
s: `0x${string}`;
|
|
6950
|
+
v: bigint;
|
|
6951
|
+
yParity: number;
|
|
6952
|
+
} | undefined;
|
|
4682
6953
|
} | {
|
|
4683
6954
|
sender: `0x${string}`;
|
|
4684
6955
|
factory: `0x${string}` | null;
|
|
@@ -4695,6 +6966,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4695
6966
|
paymasterPostOpGasLimit: bigint | null;
|
|
4696
6967
|
factoryData: `0x${string}` | null;
|
|
4697
6968
|
paymasterData: `0x${string}` | null;
|
|
6969
|
+
eip7702Auth?: {
|
|
6970
|
+
nonce: number;
|
|
6971
|
+
contractAddress: `0x${string}`;
|
|
6972
|
+
chainId: number;
|
|
6973
|
+
r: `0x${string}`;
|
|
6974
|
+
s: `0x${string}`;
|
|
6975
|
+
v: bigint;
|
|
6976
|
+
yParity: number;
|
|
6977
|
+
} | undefined;
|
|
4698
6978
|
} | undefined);
|
|
4699
6979
|
blockNumber: bigint;
|
|
4700
6980
|
blockHash: `0x${string}`;
|
|
@@ -4713,6 +6993,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4713
6993
|
maxFeePerGas: string | number | bigint;
|
|
4714
6994
|
maxPriorityFeePerGas: string | number | bigint;
|
|
4715
6995
|
signature: string;
|
|
6996
|
+
eip7702Auth?: {
|
|
6997
|
+
nonce: string | number | bigint;
|
|
6998
|
+
contractAddress: string;
|
|
6999
|
+
chainId: string | number | bigint;
|
|
7000
|
+
r: string;
|
|
7001
|
+
s: string;
|
|
7002
|
+
v: string | number | bigint;
|
|
7003
|
+
yParity: string | number | bigint;
|
|
7004
|
+
} | undefined;
|
|
4716
7005
|
} | {
|
|
4717
7006
|
sender: string;
|
|
4718
7007
|
nonce: string | number | bigint;
|
|
@@ -4729,6 +7018,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4729
7018
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
4730
7019
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
4731
7020
|
paymasterData?: string | null | undefined;
|
|
7021
|
+
eip7702Auth?: {
|
|
7022
|
+
nonce: string | number | bigint;
|
|
7023
|
+
contractAddress: string;
|
|
7024
|
+
chainId: string | number | bigint;
|
|
7025
|
+
r: string;
|
|
7026
|
+
s: string;
|
|
7027
|
+
v: string | number | bigint;
|
|
7028
|
+
yParity: string | number | bigint;
|
|
7029
|
+
} | undefined;
|
|
4732
7030
|
}) & ({
|
|
4733
7031
|
sender: string;
|
|
4734
7032
|
nonce: string | number | bigint;
|
|
@@ -4741,6 +7039,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4741
7039
|
maxFeePerGas: string | number | bigint;
|
|
4742
7040
|
maxPriorityFeePerGas: string | number | bigint;
|
|
4743
7041
|
signature: string;
|
|
7042
|
+
eip7702Auth?: {
|
|
7043
|
+
nonce: string | number | bigint;
|
|
7044
|
+
contractAddress: string;
|
|
7045
|
+
chainId: string | number | bigint;
|
|
7046
|
+
r: string;
|
|
7047
|
+
s: string;
|
|
7048
|
+
v: string | number | bigint;
|
|
7049
|
+
yParity: string | number | bigint;
|
|
7050
|
+
} | undefined;
|
|
4744
7051
|
} | {
|
|
4745
7052
|
sender: string;
|
|
4746
7053
|
nonce: string | number | bigint;
|
|
@@ -4757,6 +7064,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4757
7064
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
4758
7065
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
4759
7066
|
paymasterData?: string | null | undefined;
|
|
7067
|
+
eip7702Auth?: {
|
|
7068
|
+
nonce: string | number | bigint;
|
|
7069
|
+
contractAddress: string;
|
|
7070
|
+
chainId: string | number | bigint;
|
|
7071
|
+
r: string;
|
|
7072
|
+
s: string;
|
|
7073
|
+
v: string | number | bigint;
|
|
7074
|
+
yParity: string | number | bigint;
|
|
7075
|
+
} | undefined;
|
|
4760
7076
|
} | undefined);
|
|
4761
7077
|
blockNumber: string | number | bigint;
|
|
4762
7078
|
blockHash: string;
|
|
@@ -4777,6 +7093,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4777
7093
|
maxFeePerGas: bigint;
|
|
4778
7094
|
maxPriorityFeePerGas: bigint;
|
|
4779
7095
|
signature: `0x${string}`;
|
|
7096
|
+
eip7702Auth?: {
|
|
7097
|
+
nonce: number;
|
|
7098
|
+
contractAddress: `0x${string}`;
|
|
7099
|
+
chainId: number;
|
|
7100
|
+
r: `0x${string}`;
|
|
7101
|
+
s: `0x${string}`;
|
|
7102
|
+
v: bigint;
|
|
7103
|
+
yParity: number;
|
|
7104
|
+
} | undefined;
|
|
4780
7105
|
} | {
|
|
4781
7106
|
sender: `0x${string}`;
|
|
4782
7107
|
factory: `0x${string}` | null;
|
|
@@ -4793,6 +7118,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4793
7118
|
paymasterPostOpGasLimit: bigint | null;
|
|
4794
7119
|
factoryData: `0x${string}` | null;
|
|
4795
7120
|
paymasterData: `0x${string}` | null;
|
|
7121
|
+
eip7702Auth?: {
|
|
7122
|
+
nonce: number;
|
|
7123
|
+
contractAddress: `0x${string}`;
|
|
7124
|
+
chainId: number;
|
|
7125
|
+
r: `0x${string}`;
|
|
7126
|
+
s: `0x${string}`;
|
|
7127
|
+
v: bigint;
|
|
7128
|
+
yParity: number;
|
|
7129
|
+
} | undefined;
|
|
4796
7130
|
}) & ({
|
|
4797
7131
|
sender: `0x${string}`;
|
|
4798
7132
|
nonce: bigint;
|
|
@@ -4805,6 +7139,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4805
7139
|
maxFeePerGas: bigint;
|
|
4806
7140
|
maxPriorityFeePerGas: bigint;
|
|
4807
7141
|
signature: `0x${string}`;
|
|
7142
|
+
eip7702Auth?: {
|
|
7143
|
+
nonce: number;
|
|
7144
|
+
contractAddress: `0x${string}`;
|
|
7145
|
+
chainId: number;
|
|
7146
|
+
r: `0x${string}`;
|
|
7147
|
+
s: `0x${string}`;
|
|
7148
|
+
v: bigint;
|
|
7149
|
+
yParity: number;
|
|
7150
|
+
} | undefined;
|
|
4808
7151
|
} | {
|
|
4809
7152
|
sender: `0x${string}`;
|
|
4810
7153
|
factory: `0x${string}` | null;
|
|
@@ -4821,6 +7164,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4821
7164
|
paymasterPostOpGasLimit: bigint | null;
|
|
4822
7165
|
factoryData: `0x${string}` | null;
|
|
4823
7166
|
paymasterData: `0x${string}` | null;
|
|
7167
|
+
eip7702Auth?: {
|
|
7168
|
+
nonce: number;
|
|
7169
|
+
contractAddress: `0x${string}`;
|
|
7170
|
+
chainId: number;
|
|
7171
|
+
r: `0x${string}`;
|
|
7172
|
+
s: `0x${string}`;
|
|
7173
|
+
v: bigint;
|
|
7174
|
+
yParity: number;
|
|
7175
|
+
} | undefined;
|
|
4824
7176
|
} | undefined);
|
|
4825
7177
|
blockNumber: bigint;
|
|
4826
7178
|
blockHash: `0x${string}`;
|
|
@@ -4842,6 +7194,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4842
7194
|
maxFeePerGas: string | number | bigint;
|
|
4843
7195
|
maxPriorityFeePerGas: string | number | bigint;
|
|
4844
7196
|
signature: string;
|
|
7197
|
+
eip7702Auth?: {
|
|
7198
|
+
nonce: string | number | bigint;
|
|
7199
|
+
contractAddress: string;
|
|
7200
|
+
chainId: string | number | bigint;
|
|
7201
|
+
r: string;
|
|
7202
|
+
s: string;
|
|
7203
|
+
v: string | number | bigint;
|
|
7204
|
+
yParity: string | number | bigint;
|
|
7205
|
+
} | undefined;
|
|
4845
7206
|
} | {
|
|
4846
7207
|
sender: string;
|
|
4847
7208
|
nonce: string | number | bigint;
|
|
@@ -4858,6 +7219,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4858
7219
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
4859
7220
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
4860
7221
|
paymasterData?: string | null | undefined;
|
|
7222
|
+
eip7702Auth?: {
|
|
7223
|
+
nonce: string | number | bigint;
|
|
7224
|
+
contractAddress: string;
|
|
7225
|
+
chainId: string | number | bigint;
|
|
7226
|
+
r: string;
|
|
7227
|
+
s: string;
|
|
7228
|
+
v: string | number | bigint;
|
|
7229
|
+
yParity: string | number | bigint;
|
|
7230
|
+
} | undefined;
|
|
4861
7231
|
}) & ({
|
|
4862
7232
|
sender: string;
|
|
4863
7233
|
nonce: string | number | bigint;
|
|
@@ -4870,6 +7240,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4870
7240
|
maxFeePerGas: string | number | bigint;
|
|
4871
7241
|
maxPriorityFeePerGas: string | number | bigint;
|
|
4872
7242
|
signature: string;
|
|
7243
|
+
eip7702Auth?: {
|
|
7244
|
+
nonce: string | number | bigint;
|
|
7245
|
+
contractAddress: string;
|
|
7246
|
+
chainId: string | number | bigint;
|
|
7247
|
+
r: string;
|
|
7248
|
+
s: string;
|
|
7249
|
+
v: string | number | bigint;
|
|
7250
|
+
yParity: string | number | bigint;
|
|
7251
|
+
} | undefined;
|
|
4873
7252
|
} | {
|
|
4874
7253
|
sender: string;
|
|
4875
7254
|
nonce: string | number | bigint;
|
|
@@ -4886,6 +7265,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
4886
7265
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
4887
7266
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
4888
7267
|
paymasterData?: string | null | undefined;
|
|
7268
|
+
eip7702Auth?: {
|
|
7269
|
+
nonce: string | number | bigint;
|
|
7270
|
+
contractAddress: string;
|
|
7271
|
+
chainId: string | number | bigint;
|
|
7272
|
+
r: string;
|
|
7273
|
+
s: string;
|
|
7274
|
+
v: string | number | bigint;
|
|
7275
|
+
yParity: string | number | bigint;
|
|
7276
|
+
} | undefined;
|
|
4889
7277
|
} | undefined);
|
|
4890
7278
|
blockNumber: string | number | bigint;
|
|
4891
7279
|
blockHash: string;
|
|
@@ -5235,6 +7623,31 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
5235
7623
|
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
5236
7624
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
5237
7625
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
7626
|
+
eip7702Auth: z.ZodOptional<z.ZodObject<{
|
|
7627
|
+
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
7628
|
+
chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
7629
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
7630
|
+
r: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
7631
|
+
s: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
7632
|
+
v: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
7633
|
+
yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
7634
|
+
}, "strip", z.ZodTypeAny, {
|
|
7635
|
+
nonce: number;
|
|
7636
|
+
contractAddress: `0x${string}`;
|
|
7637
|
+
chainId: number;
|
|
7638
|
+
r: `0x${string}`;
|
|
7639
|
+
s: `0x${string}`;
|
|
7640
|
+
v: bigint;
|
|
7641
|
+
yParity: number;
|
|
7642
|
+
}, {
|
|
7643
|
+
nonce: string | number | bigint;
|
|
7644
|
+
contractAddress: string;
|
|
7645
|
+
chainId: string | number | bigint;
|
|
7646
|
+
r: string;
|
|
7647
|
+
s: string;
|
|
7648
|
+
v: string | number | bigint;
|
|
7649
|
+
yParity: string | number | bigint;
|
|
7650
|
+
}>>;
|
|
5238
7651
|
}, "strict", z.ZodTypeAny, {
|
|
5239
7652
|
sender: `0x${string}`;
|
|
5240
7653
|
nonce: bigint;
|
|
@@ -5247,6 +7660,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
5247
7660
|
maxFeePerGas: bigint;
|
|
5248
7661
|
maxPriorityFeePerGas: bigint;
|
|
5249
7662
|
signature: `0x${string}`;
|
|
7663
|
+
eip7702Auth?: {
|
|
7664
|
+
nonce: number;
|
|
7665
|
+
contractAddress: `0x${string}`;
|
|
7666
|
+
chainId: number;
|
|
7667
|
+
r: `0x${string}`;
|
|
7668
|
+
s: `0x${string}`;
|
|
7669
|
+
v: bigint;
|
|
7670
|
+
yParity: number;
|
|
7671
|
+
} | undefined;
|
|
5250
7672
|
}, {
|
|
5251
7673
|
sender: string;
|
|
5252
7674
|
nonce: string | number | bigint;
|
|
@@ -5259,6 +7681,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
5259
7681
|
maxFeePerGas: string | number | bigint;
|
|
5260
7682
|
maxPriorityFeePerGas: string | number | bigint;
|
|
5261
7683
|
signature: string;
|
|
7684
|
+
eip7702Auth?: {
|
|
7685
|
+
nonce: string | number | bigint;
|
|
7686
|
+
contractAddress: string;
|
|
7687
|
+
chainId: string | number | bigint;
|
|
7688
|
+
r: string;
|
|
7689
|
+
s: string;
|
|
7690
|
+
v: string | number | bigint;
|
|
7691
|
+
yParity: string | number | bigint;
|
|
7692
|
+
} | undefined;
|
|
5262
7693
|
}>, {
|
|
5263
7694
|
sender: `0x${string}`;
|
|
5264
7695
|
nonce: bigint;
|
|
@@ -5271,6 +7702,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
5271
7702
|
maxFeePerGas: bigint;
|
|
5272
7703
|
maxPriorityFeePerGas: bigint;
|
|
5273
7704
|
signature: `0x${string}`;
|
|
7705
|
+
eip7702Auth?: {
|
|
7706
|
+
nonce: number;
|
|
7707
|
+
contractAddress: `0x${string}`;
|
|
7708
|
+
chainId: number;
|
|
7709
|
+
r: `0x${string}`;
|
|
7710
|
+
s: `0x${string}`;
|
|
7711
|
+
v: bigint;
|
|
7712
|
+
yParity: number;
|
|
7713
|
+
} | undefined;
|
|
5274
7714
|
}, {
|
|
5275
7715
|
sender: string;
|
|
5276
7716
|
nonce: string | number | bigint;
|
|
@@ -5283,6 +7723,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
5283
7723
|
maxFeePerGas: string | number | bigint;
|
|
5284
7724
|
maxPriorityFeePerGas: string | number | bigint;
|
|
5285
7725
|
signature: string;
|
|
7726
|
+
eip7702Auth?: {
|
|
7727
|
+
nonce: string | number | bigint;
|
|
7728
|
+
contractAddress: string;
|
|
7729
|
+
chainId: string | number | bigint;
|
|
7730
|
+
r: string;
|
|
7731
|
+
s: string;
|
|
7732
|
+
v: string | number | bigint;
|
|
7733
|
+
yParity: string | number | bigint;
|
|
7734
|
+
} | undefined;
|
|
5286
7735
|
}>, z.ZodEffects<z.ZodObject<{
|
|
5287
7736
|
sender: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
5288
7737
|
nonce: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
@@ -5299,6 +7748,31 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
5299
7748
|
paymasterPostOpGasLimit: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
|
|
5300
7749
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
5301
7750
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
7751
|
+
eip7702Auth: z.ZodOptional<z.ZodObject<{
|
|
7752
|
+
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
7753
|
+
chainId: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
7754
|
+
nonce: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
7755
|
+
r: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
7756
|
+
s: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, `0x${string}`, string>;
|
|
7757
|
+
v: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
7758
|
+
yParity: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
|
|
7759
|
+
}, "strip", z.ZodTypeAny, {
|
|
7760
|
+
nonce: number;
|
|
7761
|
+
contractAddress: `0x${string}`;
|
|
7762
|
+
chainId: number;
|
|
7763
|
+
r: `0x${string}`;
|
|
7764
|
+
s: `0x${string}`;
|
|
7765
|
+
v: bigint;
|
|
7766
|
+
yParity: number;
|
|
7767
|
+
}, {
|
|
7768
|
+
nonce: string | number | bigint;
|
|
7769
|
+
contractAddress: string;
|
|
7770
|
+
chainId: string | number | bigint;
|
|
7771
|
+
r: string;
|
|
7772
|
+
s: string;
|
|
7773
|
+
v: string | number | bigint;
|
|
7774
|
+
yParity: string | number | bigint;
|
|
7775
|
+
}>>;
|
|
5302
7776
|
}, "strict", z.ZodTypeAny, {
|
|
5303
7777
|
sender: `0x${string}`;
|
|
5304
7778
|
factory: `0x${string}` | null;
|
|
@@ -5315,6 +7789,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
5315
7789
|
paymasterPostOpGasLimit: bigint | null;
|
|
5316
7790
|
factoryData: `0x${string}` | null;
|
|
5317
7791
|
paymasterData: `0x${string}` | null;
|
|
7792
|
+
eip7702Auth?: {
|
|
7793
|
+
nonce: number;
|
|
7794
|
+
contractAddress: `0x${string}`;
|
|
7795
|
+
chainId: number;
|
|
7796
|
+
r: `0x${string}`;
|
|
7797
|
+
s: `0x${string}`;
|
|
7798
|
+
v: bigint;
|
|
7799
|
+
yParity: number;
|
|
7800
|
+
} | undefined;
|
|
5318
7801
|
}, {
|
|
5319
7802
|
sender: string;
|
|
5320
7803
|
nonce: string | number | bigint;
|
|
@@ -5331,6 +7814,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
5331
7814
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
5332
7815
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
5333
7816
|
paymasterData?: string | null | undefined;
|
|
7817
|
+
eip7702Auth?: {
|
|
7818
|
+
nonce: string | number | bigint;
|
|
7819
|
+
contractAddress: string;
|
|
7820
|
+
chainId: string | number | bigint;
|
|
7821
|
+
r: string;
|
|
7822
|
+
s: string;
|
|
7823
|
+
v: string | number | bigint;
|
|
7824
|
+
yParity: string | number | bigint;
|
|
7825
|
+
} | undefined;
|
|
5334
7826
|
}>, {
|
|
5335
7827
|
sender: `0x${string}`;
|
|
5336
7828
|
factory: `0x${string}` | null;
|
|
@@ -5347,6 +7839,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
5347
7839
|
paymasterPostOpGasLimit: bigint | null;
|
|
5348
7840
|
factoryData: `0x${string}` | null;
|
|
5349
7841
|
paymasterData: `0x${string}` | null;
|
|
7842
|
+
eip7702Auth?: {
|
|
7843
|
+
nonce: number;
|
|
7844
|
+
contractAddress: `0x${string}`;
|
|
7845
|
+
chainId: number;
|
|
7846
|
+
r: `0x${string}`;
|
|
7847
|
+
s: `0x${string}`;
|
|
7848
|
+
v: bigint;
|
|
7849
|
+
yParity: number;
|
|
7850
|
+
} | undefined;
|
|
5350
7851
|
}, {
|
|
5351
7852
|
sender: string;
|
|
5352
7853
|
nonce: string | number | bigint;
|
|
@@ -5363,6 +7864,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
5363
7864
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
5364
7865
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
5365
7866
|
paymasterData?: string | null | undefined;
|
|
7867
|
+
eip7702Auth?: {
|
|
7868
|
+
nonce: string | number | bigint;
|
|
7869
|
+
contractAddress: string;
|
|
7870
|
+
chainId: string | number | bigint;
|
|
7871
|
+
r: string;
|
|
7872
|
+
s: string;
|
|
7873
|
+
v: string | number | bigint;
|
|
7874
|
+
yParity: string | number | bigint;
|
|
7875
|
+
} | undefined;
|
|
5366
7876
|
}>]>, "many">;
|
|
5367
7877
|
}, "strip", z.ZodTypeAny, {
|
|
5368
7878
|
result: ({
|
|
@@ -5377,6 +7887,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
5377
7887
|
maxFeePerGas: bigint;
|
|
5378
7888
|
maxPriorityFeePerGas: bigint;
|
|
5379
7889
|
signature: `0x${string}`;
|
|
7890
|
+
eip7702Auth?: {
|
|
7891
|
+
nonce: number;
|
|
7892
|
+
contractAddress: `0x${string}`;
|
|
7893
|
+
chainId: number;
|
|
7894
|
+
r: `0x${string}`;
|
|
7895
|
+
s: `0x${string}`;
|
|
7896
|
+
v: bigint;
|
|
7897
|
+
yParity: number;
|
|
7898
|
+
} | undefined;
|
|
5380
7899
|
} | {
|
|
5381
7900
|
sender: `0x${string}`;
|
|
5382
7901
|
factory: `0x${string}` | null;
|
|
@@ -5393,6 +7912,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
5393
7912
|
paymasterPostOpGasLimit: bigint | null;
|
|
5394
7913
|
factoryData: `0x${string}` | null;
|
|
5395
7914
|
paymasterData: `0x${string}` | null;
|
|
7915
|
+
eip7702Auth?: {
|
|
7916
|
+
nonce: number;
|
|
7917
|
+
contractAddress: `0x${string}`;
|
|
7918
|
+
chainId: number;
|
|
7919
|
+
r: `0x${string}`;
|
|
7920
|
+
s: `0x${string}`;
|
|
7921
|
+
v: bigint;
|
|
7922
|
+
yParity: number;
|
|
7923
|
+
} | undefined;
|
|
5396
7924
|
})[];
|
|
5397
7925
|
method: "debug_bundler_dumpMempool";
|
|
5398
7926
|
}, {
|
|
@@ -5408,6 +7936,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
5408
7936
|
maxFeePerGas: string | number | bigint;
|
|
5409
7937
|
maxPriorityFeePerGas: string | number | bigint;
|
|
5410
7938
|
signature: string;
|
|
7939
|
+
eip7702Auth?: {
|
|
7940
|
+
nonce: string | number | bigint;
|
|
7941
|
+
contractAddress: string;
|
|
7942
|
+
chainId: string | number | bigint;
|
|
7943
|
+
r: string;
|
|
7944
|
+
s: string;
|
|
7945
|
+
v: string | number | bigint;
|
|
7946
|
+
yParity: string | number | bigint;
|
|
7947
|
+
} | undefined;
|
|
5411
7948
|
} | {
|
|
5412
7949
|
sender: string;
|
|
5413
7950
|
nonce: string | number | bigint;
|
|
@@ -5424,6 +7961,15 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
|
|
|
5424
7961
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
5425
7962
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
5426
7963
|
paymasterData?: string | null | undefined;
|
|
7964
|
+
eip7702Auth?: {
|
|
7965
|
+
nonce: string | number | bigint;
|
|
7966
|
+
contractAddress: string;
|
|
7967
|
+
chainId: string | number | bigint;
|
|
7968
|
+
r: string;
|
|
7969
|
+
s: string;
|
|
7970
|
+
v: string | number | bigint;
|
|
7971
|
+
yParity: string | number | bigint;
|
|
7972
|
+
} | undefined;
|
|
5427
7973
|
})[];
|
|
5428
7974
|
method: "debug_bundler_dumpMempool";
|
|
5429
7975
|
}>, z.ZodObject<{
|