@pimlico/alto 0.0.0-main.20250227T131500 → 0.0.0-main.20250227T132020
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/utils.js +1 -1
- package/esm/rpc/estimation/gasEstimationsV06.js +8 -6
- package/esm/rpc/estimation/gasEstimationsV06.js.map +1 -1
- package/esm/rpc/estimation/gasEstimationsV07.d.ts +3 -1
- package/esm/rpc/estimation/gasEstimationsV07.js +40 -27
- package/esm/rpc/estimation/gasEstimationsV07.js.map +1 -1
- package/esm/rpc/methods/debug_bundler_dumpMempool.d.ts +18 -18
- package/esm/rpc/methods/eth_estimateUserOperationGas.d.ts +32 -32
- package/esm/rpc/methods/eth_estimateUserOperationGas.js +1 -6
- package/esm/rpc/methods/eth_estimateUserOperationGas.js.map +1 -1
- package/esm/rpc/methods/eth_getUserOperationByHash.d.ts +34 -34
- package/esm/rpc/methods/eth_sendUserOperation.d.ts +16 -16
- package/esm/rpc/methods/eth_sendUserOperation.js +0 -6
- package/esm/rpc/methods/eth_sendUserOperation.js.map +1 -1
- package/esm/rpc/methods/pimlico_experimental_estimateUserOperationGas7702.d.ts +32 -32
- package/esm/rpc/methods/pimlico_experimental_estimateUserOperationGas7702.js +1 -3
- package/esm/rpc/methods/pimlico_experimental_estimateUserOperationGas7702.js.map +1 -1
- package/esm/rpc/methods/pimlico_experimental_sendUserOperation7702.d.ts +16 -16
- package/esm/rpc/methods/pimlico_experimental_sendUserOperation7702.js +1 -4
- package/esm/rpc/methods/pimlico_experimental_sendUserOperation7702.js.map +1 -1
- package/esm/rpc/methods/pimlico_sendUserOperationNow.d.ts +16 -16
- package/esm/rpc/rpcHandler.d.ts +1 -4
- package/esm/rpc/rpcHandler.js +5 -5
- package/esm/rpc/rpcHandler.js.map +1 -1
- package/esm/rpc/validation/SafeValidator.js +3 -13
- package/esm/rpc/validation/SafeValidator.js.map +1 -1
- package/esm/rpc/validation/tracer.d.ts +1 -4
- package/esm/rpc/validation/tracer.js +1 -0
- package/esm/rpc/validation/tracer.js.map +1 -1
- package/esm/types/schemas.d.ts +422 -422
- package/esm/types/schemas.js +4 -4
- package/esm/utils/helpers.d.ts +4 -3
- package/esm/utils/helpers.js +15 -24
- package/esm/utils/helpers.js.map +1 -1
- package/esm/utils/validation.js +1 -1
- package/lib/executor/utils.js +1 -1
- package/lib/rpc/estimation/gasEstimationsV06.js +7 -5
- package/lib/rpc/estimation/gasEstimationsV06.js.map +1 -1
- package/lib/rpc/estimation/gasEstimationsV07.d.ts +3 -1
- package/lib/rpc/estimation/gasEstimationsV07.js +39 -26
- package/lib/rpc/estimation/gasEstimationsV07.js.map +1 -1
- package/lib/rpc/methods/debug_bundler_dumpMempool.d.ts +18 -18
- package/lib/rpc/methods/eth_estimateUserOperationGas.d.ts +32 -32
- package/lib/rpc/methods/eth_estimateUserOperationGas.js +1 -6
- package/lib/rpc/methods/eth_estimateUserOperationGas.js.map +1 -1
- package/lib/rpc/methods/eth_getUserOperationByHash.d.ts +34 -34
- package/lib/rpc/methods/eth_sendUserOperation.d.ts +16 -16
- package/lib/rpc/methods/eth_sendUserOperation.js +0 -6
- package/lib/rpc/methods/eth_sendUserOperation.js.map +1 -1
- package/lib/rpc/methods/pimlico_experimental_estimateUserOperationGas7702.d.ts +32 -32
- package/lib/rpc/methods/pimlico_experimental_estimateUserOperationGas7702.js +1 -3
- package/lib/rpc/methods/pimlico_experimental_estimateUserOperationGas7702.js.map +1 -1
- package/lib/rpc/methods/pimlico_experimental_sendUserOperation7702.d.ts +16 -16
- package/lib/rpc/methods/pimlico_experimental_sendUserOperation7702.js +1 -4
- package/lib/rpc/methods/pimlico_experimental_sendUserOperation7702.js.map +1 -1
- package/lib/rpc/methods/pimlico_sendUserOperationNow.d.ts +16 -16
- package/lib/rpc/rpcHandler.d.ts +1 -4
- package/lib/rpc/rpcHandler.js +5 -5
- package/lib/rpc/rpcHandler.js.map +1 -1
- package/lib/rpc/validation/SafeValidator.js +2 -12
- package/lib/rpc/validation/SafeValidator.js.map +1 -1
- package/lib/rpc/validation/tracer.d.ts +1 -4
- package/lib/rpc/validation/tracer.js +1 -0
- package/lib/rpc/validation/tracer.js.map +1 -1
- package/lib/types/schemas.d.ts +422 -422
- package/lib/types/schemas.js +4 -4
- package/lib/utils/helpers.d.ts +4 -3
- package/lib/utils/helpers.js +17 -26
- package/lib/utils/helpers.js.map +1 -1
- package/lib/utils/validation.js +1 -1
- package/package.json +1 -1
package/esm/types/schemas.d.ts
CHANGED
|
@@ -41,7 +41,7 @@ declare const userOperationV06Schema: z.ZodEffects<z.ZodObject<{
|
|
|
41
41
|
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
42
42
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
43
43
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
44
|
-
|
|
44
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
45
45
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
46
46
|
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>;
|
|
47
47
|
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>;
|
|
@@ -78,7 +78,7 @@ declare const userOperationV06Schema: z.ZodEffects<z.ZodObject<{
|
|
|
78
78
|
maxFeePerGas: bigint;
|
|
79
79
|
maxPriorityFeePerGas: bigint;
|
|
80
80
|
signature: `0x${string}`;
|
|
81
|
-
|
|
81
|
+
eip7702auth?: {
|
|
82
82
|
nonce: number;
|
|
83
83
|
contractAddress: `0x${string}`;
|
|
84
84
|
chainId: number;
|
|
@@ -99,7 +99,7 @@ declare const userOperationV06Schema: z.ZodEffects<z.ZodObject<{
|
|
|
99
99
|
maxFeePerGas: string | number | bigint;
|
|
100
100
|
maxPriorityFeePerGas: string | number | bigint;
|
|
101
101
|
signature: string;
|
|
102
|
-
|
|
102
|
+
eip7702auth?: {
|
|
103
103
|
nonce: string | number | bigint;
|
|
104
104
|
contractAddress: string;
|
|
105
105
|
chainId: string | number | bigint;
|
|
@@ -120,7 +120,7 @@ declare const userOperationV06Schema: z.ZodEffects<z.ZodObject<{
|
|
|
120
120
|
maxFeePerGas: bigint;
|
|
121
121
|
maxPriorityFeePerGas: bigint;
|
|
122
122
|
signature: `0x${string}`;
|
|
123
|
-
|
|
123
|
+
eip7702auth?: {
|
|
124
124
|
nonce: number;
|
|
125
125
|
contractAddress: `0x${string}`;
|
|
126
126
|
chainId: number;
|
|
@@ -141,7 +141,7 @@ declare const userOperationV06Schema: z.ZodEffects<z.ZodObject<{
|
|
|
141
141
|
maxFeePerGas: string | number | bigint;
|
|
142
142
|
maxPriorityFeePerGas: string | number | bigint;
|
|
143
143
|
signature: string;
|
|
144
|
-
|
|
144
|
+
eip7702auth?: {
|
|
145
145
|
nonce: string | number | bigint;
|
|
146
146
|
contractAddress: string;
|
|
147
147
|
chainId: string | number | bigint;
|
|
@@ -167,7 +167,7 @@ declare const userOperationV07Schema: z.ZodEffects<z.ZodObject<{
|
|
|
167
167
|
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>;
|
|
168
168
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
169
169
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
170
|
-
|
|
170
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
171
171
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
172
172
|
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>;
|
|
173
173
|
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>;
|
|
@@ -208,7 +208,7 @@ declare const userOperationV07Schema: z.ZodEffects<z.ZodObject<{
|
|
|
208
208
|
paymasterPostOpGasLimit: bigint | null;
|
|
209
209
|
factoryData: `0x${string}` | null;
|
|
210
210
|
paymasterData: `0x${string}` | null;
|
|
211
|
-
|
|
211
|
+
eip7702auth?: {
|
|
212
212
|
nonce: number;
|
|
213
213
|
contractAddress: `0x${string}`;
|
|
214
214
|
chainId: number;
|
|
@@ -233,7 +233,7 @@ declare const userOperationV07Schema: z.ZodEffects<z.ZodObject<{
|
|
|
233
233
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
234
234
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
235
235
|
paymasterData?: string | null | undefined;
|
|
236
|
-
|
|
236
|
+
eip7702auth?: {
|
|
237
237
|
nonce: string | number | bigint;
|
|
238
238
|
contractAddress: string;
|
|
239
239
|
chainId: string | number | bigint;
|
|
@@ -258,7 +258,7 @@ declare const userOperationV07Schema: z.ZodEffects<z.ZodObject<{
|
|
|
258
258
|
paymasterPostOpGasLimit: bigint | null;
|
|
259
259
|
factoryData: `0x${string}` | null;
|
|
260
260
|
paymasterData: `0x${string}` | null;
|
|
261
|
-
|
|
261
|
+
eip7702auth?: {
|
|
262
262
|
nonce: number;
|
|
263
263
|
contractAddress: `0x${string}`;
|
|
264
264
|
chainId: number;
|
|
@@ -283,7 +283,7 @@ declare const userOperationV07Schema: z.ZodEffects<z.ZodObject<{
|
|
|
283
283
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
284
284
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
285
285
|
paymasterData?: string | null | undefined;
|
|
286
|
-
|
|
286
|
+
eip7702auth?: {
|
|
287
287
|
nonce: string | number | bigint;
|
|
288
288
|
contractAddress: string;
|
|
289
289
|
chainId: string | number | bigint;
|
|
@@ -356,7 +356,7 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
356
356
|
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
357
357
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
358
358
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
359
|
-
|
|
359
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
360
360
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
361
361
|
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>;
|
|
362
362
|
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>;
|
|
@@ -393,7 +393,7 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
393
393
|
maxFeePerGas: bigint;
|
|
394
394
|
maxPriorityFeePerGas: bigint;
|
|
395
395
|
signature: `0x${string}`;
|
|
396
|
-
|
|
396
|
+
eip7702auth?: {
|
|
397
397
|
nonce: number;
|
|
398
398
|
contractAddress: `0x${string}`;
|
|
399
399
|
chainId: number;
|
|
@@ -414,7 +414,7 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
414
414
|
maxFeePerGas: string | number | bigint;
|
|
415
415
|
maxPriorityFeePerGas: string | number | bigint;
|
|
416
416
|
signature: string;
|
|
417
|
-
|
|
417
|
+
eip7702auth?: {
|
|
418
418
|
nonce: string | number | bigint;
|
|
419
419
|
contractAddress: string;
|
|
420
420
|
chainId: string | number | bigint;
|
|
@@ -435,7 +435,7 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
435
435
|
maxFeePerGas: bigint;
|
|
436
436
|
maxPriorityFeePerGas: bigint;
|
|
437
437
|
signature: `0x${string}`;
|
|
438
|
-
|
|
438
|
+
eip7702auth?: {
|
|
439
439
|
nonce: number;
|
|
440
440
|
contractAddress: `0x${string}`;
|
|
441
441
|
chainId: number;
|
|
@@ -456,7 +456,7 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
456
456
|
maxFeePerGas: string | number | bigint;
|
|
457
457
|
maxPriorityFeePerGas: string | number | bigint;
|
|
458
458
|
signature: string;
|
|
459
|
-
|
|
459
|
+
eip7702auth?: {
|
|
460
460
|
nonce: string | number | bigint;
|
|
461
461
|
contractAddress: string;
|
|
462
462
|
chainId: string | number | bigint;
|
|
@@ -481,7 +481,7 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
481
481
|
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>;
|
|
482
482
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
483
483
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
484
|
-
|
|
484
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
485
485
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
486
486
|
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>;
|
|
487
487
|
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>;
|
|
@@ -522,7 +522,7 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
522
522
|
paymasterPostOpGasLimit: bigint | null;
|
|
523
523
|
factoryData: `0x${string}` | null;
|
|
524
524
|
paymasterData: `0x${string}` | null;
|
|
525
|
-
|
|
525
|
+
eip7702auth?: {
|
|
526
526
|
nonce: number;
|
|
527
527
|
contractAddress: `0x${string}`;
|
|
528
528
|
chainId: number;
|
|
@@ -547,7 +547,7 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
547
547
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
548
548
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
549
549
|
paymasterData?: string | null | undefined;
|
|
550
|
-
|
|
550
|
+
eip7702auth?: {
|
|
551
551
|
nonce: string | number | bigint;
|
|
552
552
|
contractAddress: string;
|
|
553
553
|
chainId: string | number | bigint;
|
|
@@ -572,7 +572,7 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
572
572
|
paymasterPostOpGasLimit: bigint | null;
|
|
573
573
|
factoryData: `0x${string}` | null;
|
|
574
574
|
paymasterData: `0x${string}` | null;
|
|
575
|
-
|
|
575
|
+
eip7702auth?: {
|
|
576
576
|
nonce: number;
|
|
577
577
|
contractAddress: `0x${string}`;
|
|
578
578
|
chainId: number;
|
|
@@ -597,7 +597,7 @@ declare const userOperationSchema: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
597
597
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
598
598
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
599
599
|
paymasterData?: string | null | undefined;
|
|
600
|
-
|
|
600
|
+
eip7702auth?: {
|
|
601
601
|
nonce: string | number | bigint;
|
|
602
602
|
contractAddress: string;
|
|
603
603
|
chainId: string | number | bigint;
|
|
@@ -1023,7 +1023,7 @@ export declare const estimateUserOperationGasSchema: z.ZodObject<{
|
|
|
1023
1023
|
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>>;
|
|
1024
1024
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1025
1025
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1026
|
-
|
|
1026
|
+
eip7702auth: z.ZodOptional<z.ZodObject<{
|
|
1027
1027
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1028
1028
|
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>;
|
|
1029
1029
|
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>;
|
|
@@ -1060,7 +1060,7 @@ export declare const estimateUserOperationGasSchema: z.ZodObject<{
|
|
|
1060
1060
|
maxFeePerGas: bigint;
|
|
1061
1061
|
maxPriorityFeePerGas: bigint;
|
|
1062
1062
|
signature: `0x${string}`;
|
|
1063
|
-
|
|
1063
|
+
eip7702auth?: {
|
|
1064
1064
|
nonce: number;
|
|
1065
1065
|
contractAddress: `0x${string}`;
|
|
1066
1066
|
chainId: number;
|
|
@@ -1081,7 +1081,7 @@ export declare const estimateUserOperationGasSchema: z.ZodObject<{
|
|
|
1081
1081
|
preVerificationGas?: string | number | bigint | undefined;
|
|
1082
1082
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
1083
1083
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
1084
|
-
|
|
1084
|
+
eip7702auth?: {
|
|
1085
1085
|
nonce: string | number | bigint;
|
|
1086
1086
|
contractAddress: string;
|
|
1087
1087
|
chainId: string | number | bigint;
|
|
@@ -1102,7 +1102,7 @@ export declare const estimateUserOperationGasSchema: z.ZodObject<{
|
|
|
1102
1102
|
maxFeePerGas: bigint;
|
|
1103
1103
|
maxPriorityFeePerGas: bigint;
|
|
1104
1104
|
signature: `0x${string}`;
|
|
1105
|
-
|
|
1105
|
+
eip7702auth?: {
|
|
1106
1106
|
nonce: number;
|
|
1107
1107
|
contractAddress: `0x${string}`;
|
|
1108
1108
|
chainId: number;
|
|
@@ -1123,7 +1123,7 @@ export declare const estimateUserOperationGasSchema: z.ZodObject<{
|
|
|
1123
1123
|
preVerificationGas?: string | number | bigint | undefined;
|
|
1124
1124
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
1125
1125
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
1126
|
-
|
|
1126
|
+
eip7702auth?: {
|
|
1127
1127
|
nonce: string | number | bigint;
|
|
1128
1128
|
contractAddress: string;
|
|
1129
1129
|
chainId: string | number | bigint;
|
|
@@ -1148,7 +1148,7 @@ export declare const estimateUserOperationGasSchema: z.ZodObject<{
|
|
|
1148
1148
|
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>;
|
|
1149
1149
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
1150
1150
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1151
|
-
|
|
1151
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1152
1152
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1153
1153
|
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>;
|
|
1154
1154
|
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>;
|
|
@@ -1189,7 +1189,7 @@ export declare const estimateUserOperationGasSchema: z.ZodObject<{
|
|
|
1189
1189
|
paymasterPostOpGasLimit: bigint | null;
|
|
1190
1190
|
factoryData: `0x${string}` | null;
|
|
1191
1191
|
paymasterData: `0x${string}` | null;
|
|
1192
|
-
|
|
1192
|
+
eip7702auth?: {
|
|
1193
1193
|
nonce: number;
|
|
1194
1194
|
contractAddress: `0x${string}`;
|
|
1195
1195
|
chainId: number;
|
|
@@ -1214,7 +1214,7 @@ export declare const estimateUserOperationGasSchema: z.ZodObject<{
|
|
|
1214
1214
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
1215
1215
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
1216
1216
|
paymasterData?: string | null | undefined;
|
|
1217
|
-
|
|
1217
|
+
eip7702auth?: {
|
|
1218
1218
|
nonce: string | number | bigint;
|
|
1219
1219
|
contractAddress: string;
|
|
1220
1220
|
chainId: string | number | bigint;
|
|
@@ -1239,7 +1239,7 @@ export declare const estimateUserOperationGasSchema: z.ZodObject<{
|
|
|
1239
1239
|
paymasterPostOpGasLimit: bigint | null;
|
|
1240
1240
|
factoryData: `0x${string}` | null;
|
|
1241
1241
|
paymasterData: `0x${string}` | null;
|
|
1242
|
-
|
|
1242
|
+
eip7702auth?: {
|
|
1243
1243
|
nonce: number;
|
|
1244
1244
|
contractAddress: `0x${string}`;
|
|
1245
1245
|
chainId: number;
|
|
@@ -1264,7 +1264,7 @@ export declare const estimateUserOperationGasSchema: z.ZodObject<{
|
|
|
1264
1264
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
1265
1265
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
1266
1266
|
paymasterData?: string | null | undefined;
|
|
1267
|
-
|
|
1267
|
+
eip7702auth?: {
|
|
1268
1268
|
nonce: string | number | bigint;
|
|
1269
1269
|
contractAddress: string;
|
|
1270
1270
|
chainId: string | number | bigint;
|
|
@@ -1285,7 +1285,7 @@ export declare const estimateUserOperationGasSchema: z.ZodObject<{
|
|
|
1285
1285
|
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>>;
|
|
1286
1286
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1287
1287
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1288
|
-
|
|
1288
|
+
eip7702auth: z.ZodOptional<z.ZodObject<{
|
|
1289
1289
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1290
1290
|
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>;
|
|
1291
1291
|
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>;
|
|
@@ -1322,7 +1322,7 @@ export declare const estimateUserOperationGasSchema: z.ZodObject<{
|
|
|
1322
1322
|
maxFeePerGas: bigint;
|
|
1323
1323
|
maxPriorityFeePerGas: bigint;
|
|
1324
1324
|
signature: `0x${string}`;
|
|
1325
|
-
|
|
1325
|
+
eip7702auth?: {
|
|
1326
1326
|
nonce: number;
|
|
1327
1327
|
contractAddress: `0x${string}`;
|
|
1328
1328
|
chainId: number;
|
|
@@ -1343,7 +1343,7 @@ export declare const estimateUserOperationGasSchema: z.ZodObject<{
|
|
|
1343
1343
|
preVerificationGas?: string | number | bigint | undefined;
|
|
1344
1344
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
1345
1345
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
1346
|
-
|
|
1346
|
+
eip7702auth?: {
|
|
1347
1347
|
nonce: string | number | bigint;
|
|
1348
1348
|
contractAddress: string;
|
|
1349
1349
|
chainId: string | number | bigint;
|
|
@@ -1364,7 +1364,7 @@ export declare const estimateUserOperationGasSchema: z.ZodObject<{
|
|
|
1364
1364
|
maxFeePerGas: bigint;
|
|
1365
1365
|
maxPriorityFeePerGas: bigint;
|
|
1366
1366
|
signature: `0x${string}`;
|
|
1367
|
-
|
|
1367
|
+
eip7702auth?: {
|
|
1368
1368
|
nonce: number;
|
|
1369
1369
|
contractAddress: `0x${string}`;
|
|
1370
1370
|
chainId: number;
|
|
@@ -1385,7 +1385,7 @@ export declare const estimateUserOperationGasSchema: z.ZodObject<{
|
|
|
1385
1385
|
preVerificationGas?: string | number | bigint | undefined;
|
|
1386
1386
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
1387
1387
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
1388
|
-
|
|
1388
|
+
eip7702auth?: {
|
|
1389
1389
|
nonce: string | number | bigint;
|
|
1390
1390
|
contractAddress: string;
|
|
1391
1391
|
chainId: string | number | bigint;
|
|
@@ -1410,7 +1410,7 @@ export declare const estimateUserOperationGasSchema: z.ZodObject<{
|
|
|
1410
1410
|
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>;
|
|
1411
1411
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
1412
1412
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1413
|
-
|
|
1413
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1414
1414
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1415
1415
|
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>;
|
|
1416
1416
|
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>;
|
|
@@ -1451,7 +1451,7 @@ export declare const estimateUserOperationGasSchema: z.ZodObject<{
|
|
|
1451
1451
|
paymasterPostOpGasLimit: bigint | null;
|
|
1452
1452
|
factoryData: `0x${string}` | null;
|
|
1453
1453
|
paymasterData: `0x${string}` | null;
|
|
1454
|
-
|
|
1454
|
+
eip7702auth?: {
|
|
1455
1455
|
nonce: number;
|
|
1456
1456
|
contractAddress: `0x${string}`;
|
|
1457
1457
|
chainId: number;
|
|
@@ -1476,7 +1476,7 @@ export declare const estimateUserOperationGasSchema: z.ZodObject<{
|
|
|
1476
1476
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
1477
1477
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
1478
1478
|
paymasterData?: string | null | undefined;
|
|
1479
|
-
|
|
1479
|
+
eip7702auth?: {
|
|
1480
1480
|
nonce: string | number | bigint;
|
|
1481
1481
|
contractAddress: string;
|
|
1482
1482
|
chainId: string | number | bigint;
|
|
@@ -1501,7 +1501,7 @@ export declare const estimateUserOperationGasSchema: z.ZodObject<{
|
|
|
1501
1501
|
paymasterPostOpGasLimit: bigint | null;
|
|
1502
1502
|
factoryData: `0x${string}` | null;
|
|
1503
1503
|
paymasterData: `0x${string}` | null;
|
|
1504
|
-
|
|
1504
|
+
eip7702auth?: {
|
|
1505
1505
|
nonce: number;
|
|
1506
1506
|
contractAddress: `0x${string}`;
|
|
1507
1507
|
chainId: number;
|
|
@@ -1526,7 +1526,7 @@ export declare const estimateUserOperationGasSchema: z.ZodObject<{
|
|
|
1526
1526
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
1527
1527
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
1528
1528
|
paymasterData?: string | null | undefined;
|
|
1529
|
-
|
|
1529
|
+
eip7702auth?: {
|
|
1530
1530
|
nonce: string | number | bigint;
|
|
1531
1531
|
contractAddress: string;
|
|
1532
1532
|
chainId: string | number | bigint;
|
|
@@ -1624,7 +1624,7 @@ export declare const estimateUserOperationGasSchema: z.ZodObject<{
|
|
|
1624
1624
|
maxFeePerGas: bigint;
|
|
1625
1625
|
maxPriorityFeePerGas: bigint;
|
|
1626
1626
|
signature: `0x${string}`;
|
|
1627
|
-
|
|
1627
|
+
eip7702auth?: {
|
|
1628
1628
|
nonce: number;
|
|
1629
1629
|
contractAddress: `0x${string}`;
|
|
1630
1630
|
chainId: number;
|
|
@@ -1649,7 +1649,7 @@ export declare const estimateUserOperationGasSchema: z.ZodObject<{
|
|
|
1649
1649
|
paymasterPostOpGasLimit: bigint | null;
|
|
1650
1650
|
factoryData: `0x${string}` | null;
|
|
1651
1651
|
paymasterData: `0x${string}` | null;
|
|
1652
|
-
|
|
1652
|
+
eip7702auth?: {
|
|
1653
1653
|
nonce: number;
|
|
1654
1654
|
contractAddress: `0x${string}`;
|
|
1655
1655
|
chainId: number;
|
|
@@ -1670,7 +1670,7 @@ export declare const estimateUserOperationGasSchema: z.ZodObject<{
|
|
|
1670
1670
|
maxFeePerGas: bigint;
|
|
1671
1671
|
maxPriorityFeePerGas: bigint;
|
|
1672
1672
|
signature: `0x${string}`;
|
|
1673
|
-
|
|
1673
|
+
eip7702auth?: {
|
|
1674
1674
|
nonce: number;
|
|
1675
1675
|
contractAddress: `0x${string}`;
|
|
1676
1676
|
chainId: number;
|
|
@@ -1695,7 +1695,7 @@ export declare const estimateUserOperationGasSchema: z.ZodObject<{
|
|
|
1695
1695
|
paymasterPostOpGasLimit: bigint | null;
|
|
1696
1696
|
factoryData: `0x${string}` | null;
|
|
1697
1697
|
paymasterData: `0x${string}` | null;
|
|
1698
|
-
|
|
1698
|
+
eip7702auth?: {
|
|
1699
1699
|
nonce: number;
|
|
1700
1700
|
contractAddress: `0x${string}`;
|
|
1701
1701
|
chainId: number;
|
|
@@ -1748,7 +1748,7 @@ export declare const estimateUserOperationGasSchema: z.ZodObject<{
|
|
|
1748
1748
|
preVerificationGas?: string | number | bigint | undefined;
|
|
1749
1749
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
1750
1750
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
1751
|
-
|
|
1751
|
+
eip7702auth?: {
|
|
1752
1752
|
nonce: string | number | bigint;
|
|
1753
1753
|
contractAddress: string;
|
|
1754
1754
|
chainId: string | number | bigint;
|
|
@@ -1773,7 +1773,7 @@ export declare const estimateUserOperationGasSchema: z.ZodObject<{
|
|
|
1773
1773
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
1774
1774
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
1775
1775
|
paymasterData?: string | null | undefined;
|
|
1776
|
-
|
|
1776
|
+
eip7702auth?: {
|
|
1777
1777
|
nonce: string | number | bigint;
|
|
1778
1778
|
contractAddress: string;
|
|
1779
1779
|
chainId: string | number | bigint;
|
|
@@ -1794,7 +1794,7 @@ export declare const estimateUserOperationGasSchema: z.ZodObject<{
|
|
|
1794
1794
|
preVerificationGas?: string | number | bigint | undefined;
|
|
1795
1795
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
1796
1796
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
1797
|
-
|
|
1797
|
+
eip7702auth?: {
|
|
1798
1798
|
nonce: string | number | bigint;
|
|
1799
1799
|
contractAddress: string;
|
|
1800
1800
|
chainId: string | number | bigint;
|
|
@@ -1819,7 +1819,7 @@ export declare const estimateUserOperationGasSchema: z.ZodObject<{
|
|
|
1819
1819
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
1820
1820
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
1821
1821
|
paymasterData?: string | null | undefined;
|
|
1822
|
-
|
|
1822
|
+
eip7702auth?: {
|
|
1823
1823
|
nonce: string | number | bigint;
|
|
1824
1824
|
contractAddress: string;
|
|
1825
1825
|
chainId: string | number | bigint;
|
|
@@ -1851,7 +1851,7 @@ export declare const sendUserOperationSchema: z.ZodObject<{
|
|
|
1851
1851
|
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
1852
1852
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1853
1853
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1854
|
-
|
|
1854
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1855
1855
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1856
1856
|
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>;
|
|
1857
1857
|
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>;
|
|
@@ -1888,7 +1888,7 @@ export declare const sendUserOperationSchema: z.ZodObject<{
|
|
|
1888
1888
|
maxFeePerGas: bigint;
|
|
1889
1889
|
maxPriorityFeePerGas: bigint;
|
|
1890
1890
|
signature: `0x${string}`;
|
|
1891
|
-
|
|
1891
|
+
eip7702auth?: {
|
|
1892
1892
|
nonce: number;
|
|
1893
1893
|
contractAddress: `0x${string}`;
|
|
1894
1894
|
chainId: number;
|
|
@@ -1909,7 +1909,7 @@ export declare const sendUserOperationSchema: z.ZodObject<{
|
|
|
1909
1909
|
maxFeePerGas: string | number | bigint;
|
|
1910
1910
|
maxPriorityFeePerGas: string | number | bigint;
|
|
1911
1911
|
signature: string;
|
|
1912
|
-
|
|
1912
|
+
eip7702auth?: {
|
|
1913
1913
|
nonce: string | number | bigint;
|
|
1914
1914
|
contractAddress: string;
|
|
1915
1915
|
chainId: string | number | bigint;
|
|
@@ -1930,7 +1930,7 @@ export declare const sendUserOperationSchema: z.ZodObject<{
|
|
|
1930
1930
|
maxFeePerGas: bigint;
|
|
1931
1931
|
maxPriorityFeePerGas: bigint;
|
|
1932
1932
|
signature: `0x${string}`;
|
|
1933
|
-
|
|
1933
|
+
eip7702auth?: {
|
|
1934
1934
|
nonce: number;
|
|
1935
1935
|
contractAddress: `0x${string}`;
|
|
1936
1936
|
chainId: number;
|
|
@@ -1951,7 +1951,7 @@ export declare const sendUserOperationSchema: z.ZodObject<{
|
|
|
1951
1951
|
maxFeePerGas: string | number | bigint;
|
|
1952
1952
|
maxPriorityFeePerGas: string | number | bigint;
|
|
1953
1953
|
signature: string;
|
|
1954
|
-
|
|
1954
|
+
eip7702auth?: {
|
|
1955
1955
|
nonce: string | number | bigint;
|
|
1956
1956
|
contractAddress: string;
|
|
1957
1957
|
chainId: string | number | bigint;
|
|
@@ -1976,7 +1976,7 @@ export declare const sendUserOperationSchema: z.ZodObject<{
|
|
|
1976
1976
|
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>;
|
|
1977
1977
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
1978
1978
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1979
|
-
|
|
1979
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1980
1980
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1981
1981
|
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>;
|
|
1982
1982
|
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>;
|
|
@@ -2017,7 +2017,7 @@ export declare const sendUserOperationSchema: z.ZodObject<{
|
|
|
2017
2017
|
paymasterPostOpGasLimit: bigint | null;
|
|
2018
2018
|
factoryData: `0x${string}` | null;
|
|
2019
2019
|
paymasterData: `0x${string}` | null;
|
|
2020
|
-
|
|
2020
|
+
eip7702auth?: {
|
|
2021
2021
|
nonce: number;
|
|
2022
2022
|
contractAddress: `0x${string}`;
|
|
2023
2023
|
chainId: number;
|
|
@@ -2042,7 +2042,7 @@ export declare const sendUserOperationSchema: z.ZodObject<{
|
|
|
2042
2042
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
2043
2043
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
2044
2044
|
paymasterData?: string | null | undefined;
|
|
2045
|
-
|
|
2045
|
+
eip7702auth?: {
|
|
2046
2046
|
nonce: string | number | bigint;
|
|
2047
2047
|
contractAddress: string;
|
|
2048
2048
|
chainId: string | number | bigint;
|
|
@@ -2067,7 +2067,7 @@ export declare const sendUserOperationSchema: z.ZodObject<{
|
|
|
2067
2067
|
paymasterPostOpGasLimit: bigint | null;
|
|
2068
2068
|
factoryData: `0x${string}` | null;
|
|
2069
2069
|
paymasterData: `0x${string}` | null;
|
|
2070
|
-
|
|
2070
|
+
eip7702auth?: {
|
|
2071
2071
|
nonce: number;
|
|
2072
2072
|
contractAddress: `0x${string}`;
|
|
2073
2073
|
chainId: number;
|
|
@@ -2092,7 +2092,7 @@ export declare const sendUserOperationSchema: z.ZodObject<{
|
|
|
2092
2092
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
2093
2093
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
2094
2094
|
paymasterData?: string | null | undefined;
|
|
2095
|
-
|
|
2095
|
+
eip7702auth?: {
|
|
2096
2096
|
nonce: string | number | bigint;
|
|
2097
2097
|
contractAddress: string;
|
|
2098
2098
|
chainId: string | number | bigint;
|
|
@@ -2117,7 +2117,7 @@ export declare const sendUserOperationSchema: z.ZodObject<{
|
|
|
2117
2117
|
maxFeePerGas: bigint;
|
|
2118
2118
|
maxPriorityFeePerGas: bigint;
|
|
2119
2119
|
signature: `0x${string}`;
|
|
2120
|
-
|
|
2120
|
+
eip7702auth?: {
|
|
2121
2121
|
nonce: number;
|
|
2122
2122
|
contractAddress: `0x${string}`;
|
|
2123
2123
|
chainId: number;
|
|
@@ -2142,7 +2142,7 @@ export declare const sendUserOperationSchema: z.ZodObject<{
|
|
|
2142
2142
|
paymasterPostOpGasLimit: bigint | null;
|
|
2143
2143
|
factoryData: `0x${string}` | null;
|
|
2144
2144
|
paymasterData: `0x${string}` | null;
|
|
2145
|
-
|
|
2145
|
+
eip7702auth?: {
|
|
2146
2146
|
nonce: number;
|
|
2147
2147
|
contractAddress: `0x${string}`;
|
|
2148
2148
|
chainId: number;
|
|
@@ -2167,7 +2167,7 @@ export declare const sendUserOperationSchema: z.ZodObject<{
|
|
|
2167
2167
|
maxFeePerGas: string | number | bigint;
|
|
2168
2168
|
maxPriorityFeePerGas: string | number | bigint;
|
|
2169
2169
|
signature: string;
|
|
2170
|
-
|
|
2170
|
+
eip7702auth?: {
|
|
2171
2171
|
nonce: string | number | bigint;
|
|
2172
2172
|
contractAddress: string;
|
|
2173
2173
|
chainId: string | number | bigint;
|
|
@@ -2192,7 +2192,7 @@ export declare const sendUserOperationSchema: z.ZodObject<{
|
|
|
2192
2192
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
2193
2193
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
2194
2194
|
paymasterData?: string | null | undefined;
|
|
2195
|
-
|
|
2195
|
+
eip7702auth?: {
|
|
2196
2196
|
nonce: string | number | bigint;
|
|
2197
2197
|
contractAddress: string;
|
|
2198
2198
|
chainId: string | number | bigint;
|
|
@@ -2220,7 +2220,7 @@ export declare const getUserOperationByHashSchema: z.ZodObject<{
|
|
|
2220
2220
|
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
2221
2221
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2222
2222
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2223
|
-
|
|
2223
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
2224
2224
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2225
2225
|
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>;
|
|
2226
2226
|
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>;
|
|
@@ -2257,7 +2257,7 @@ export declare const getUserOperationByHashSchema: z.ZodObject<{
|
|
|
2257
2257
|
maxFeePerGas: bigint;
|
|
2258
2258
|
maxPriorityFeePerGas: bigint;
|
|
2259
2259
|
signature: `0x${string}`;
|
|
2260
|
-
|
|
2260
|
+
eip7702auth?: {
|
|
2261
2261
|
nonce: number;
|
|
2262
2262
|
contractAddress: `0x${string}`;
|
|
2263
2263
|
chainId: number;
|
|
@@ -2278,7 +2278,7 @@ export declare const getUserOperationByHashSchema: z.ZodObject<{
|
|
|
2278
2278
|
maxFeePerGas: string | number | bigint;
|
|
2279
2279
|
maxPriorityFeePerGas: string | number | bigint;
|
|
2280
2280
|
signature: string;
|
|
2281
|
-
|
|
2281
|
+
eip7702auth?: {
|
|
2282
2282
|
nonce: string | number | bigint;
|
|
2283
2283
|
contractAddress: string;
|
|
2284
2284
|
chainId: string | number | bigint;
|
|
@@ -2299,7 +2299,7 @@ export declare const getUserOperationByHashSchema: z.ZodObject<{
|
|
|
2299
2299
|
maxFeePerGas: bigint;
|
|
2300
2300
|
maxPriorityFeePerGas: bigint;
|
|
2301
2301
|
signature: `0x${string}`;
|
|
2302
|
-
|
|
2302
|
+
eip7702auth?: {
|
|
2303
2303
|
nonce: number;
|
|
2304
2304
|
contractAddress: `0x${string}`;
|
|
2305
2305
|
chainId: number;
|
|
@@ -2320,7 +2320,7 @@ export declare const getUserOperationByHashSchema: z.ZodObject<{
|
|
|
2320
2320
|
maxFeePerGas: string | number | bigint;
|
|
2321
2321
|
maxPriorityFeePerGas: string | number | bigint;
|
|
2322
2322
|
signature: string;
|
|
2323
|
-
|
|
2323
|
+
eip7702auth?: {
|
|
2324
2324
|
nonce: string | number | bigint;
|
|
2325
2325
|
contractAddress: string;
|
|
2326
2326
|
chainId: string | number | bigint;
|
|
@@ -2345,7 +2345,7 @@ export declare const getUserOperationByHashSchema: z.ZodObject<{
|
|
|
2345
2345
|
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>;
|
|
2346
2346
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
2347
2347
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2348
|
-
|
|
2348
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
2349
2349
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2350
2350
|
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>;
|
|
2351
2351
|
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>;
|
|
@@ -2386,7 +2386,7 @@ export declare const getUserOperationByHashSchema: z.ZodObject<{
|
|
|
2386
2386
|
paymasterPostOpGasLimit: bigint | null;
|
|
2387
2387
|
factoryData: `0x${string}` | null;
|
|
2388
2388
|
paymasterData: `0x${string}` | null;
|
|
2389
|
-
|
|
2389
|
+
eip7702auth?: {
|
|
2390
2390
|
nonce: number;
|
|
2391
2391
|
contractAddress: `0x${string}`;
|
|
2392
2392
|
chainId: number;
|
|
@@ -2411,7 +2411,7 @@ export declare const getUserOperationByHashSchema: z.ZodObject<{
|
|
|
2411
2411
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
2412
2412
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
2413
2413
|
paymasterData?: string | null | undefined;
|
|
2414
|
-
|
|
2414
|
+
eip7702auth?: {
|
|
2415
2415
|
nonce: string | number | bigint;
|
|
2416
2416
|
contractAddress: string;
|
|
2417
2417
|
chainId: string | number | bigint;
|
|
@@ -2436,7 +2436,7 @@ export declare const getUserOperationByHashSchema: z.ZodObject<{
|
|
|
2436
2436
|
paymasterPostOpGasLimit: bigint | null;
|
|
2437
2437
|
factoryData: `0x${string}` | null;
|
|
2438
2438
|
paymasterData: `0x${string}` | null;
|
|
2439
|
-
|
|
2439
|
+
eip7702auth?: {
|
|
2440
2440
|
nonce: number;
|
|
2441
2441
|
contractAddress: `0x${string}`;
|
|
2442
2442
|
chainId: number;
|
|
@@ -2461,7 +2461,7 @@ export declare const getUserOperationByHashSchema: z.ZodObject<{
|
|
|
2461
2461
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
2462
2462
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
2463
2463
|
paymasterData?: string | null | undefined;
|
|
2464
|
-
|
|
2464
|
+
eip7702auth?: {
|
|
2465
2465
|
nonce: string | number | bigint;
|
|
2466
2466
|
contractAddress: string;
|
|
2467
2467
|
chainId: string | number | bigint;
|
|
@@ -2489,7 +2489,7 @@ export declare const getUserOperationByHashSchema: z.ZodObject<{
|
|
|
2489
2489
|
maxFeePerGas: bigint;
|
|
2490
2490
|
maxPriorityFeePerGas: bigint;
|
|
2491
2491
|
signature: `0x${string}`;
|
|
2492
|
-
|
|
2492
|
+
eip7702auth?: {
|
|
2493
2493
|
nonce: number;
|
|
2494
2494
|
contractAddress: `0x${string}`;
|
|
2495
2495
|
chainId: number;
|
|
@@ -2514,7 +2514,7 @@ export declare const getUserOperationByHashSchema: z.ZodObject<{
|
|
|
2514
2514
|
paymasterPostOpGasLimit: bigint | null;
|
|
2515
2515
|
factoryData: `0x${string}` | null;
|
|
2516
2516
|
paymasterData: `0x${string}` | null;
|
|
2517
|
-
|
|
2517
|
+
eip7702auth?: {
|
|
2518
2518
|
nonce: number;
|
|
2519
2519
|
contractAddress: `0x${string}`;
|
|
2520
2520
|
chainId: number;
|
|
@@ -2535,7 +2535,7 @@ export declare const getUserOperationByHashSchema: z.ZodObject<{
|
|
|
2535
2535
|
maxFeePerGas: bigint;
|
|
2536
2536
|
maxPriorityFeePerGas: bigint;
|
|
2537
2537
|
signature: `0x${string}`;
|
|
2538
|
-
|
|
2538
|
+
eip7702auth?: {
|
|
2539
2539
|
nonce: number;
|
|
2540
2540
|
contractAddress: `0x${string}`;
|
|
2541
2541
|
chainId: number;
|
|
@@ -2560,7 +2560,7 @@ export declare const getUserOperationByHashSchema: z.ZodObject<{
|
|
|
2560
2560
|
paymasterPostOpGasLimit: bigint | null;
|
|
2561
2561
|
factoryData: `0x${string}` | null;
|
|
2562
2562
|
paymasterData: `0x${string}` | null;
|
|
2563
|
-
|
|
2563
|
+
eip7702auth?: {
|
|
2564
2564
|
nonce: number;
|
|
2565
2565
|
contractAddress: `0x${string}`;
|
|
2566
2566
|
chainId: number;
|
|
@@ -2587,7 +2587,7 @@ export declare const getUserOperationByHashSchema: z.ZodObject<{
|
|
|
2587
2587
|
maxFeePerGas: string | number | bigint;
|
|
2588
2588
|
maxPriorityFeePerGas: string | number | bigint;
|
|
2589
2589
|
signature: string;
|
|
2590
|
-
|
|
2590
|
+
eip7702auth?: {
|
|
2591
2591
|
nonce: string | number | bigint;
|
|
2592
2592
|
contractAddress: string;
|
|
2593
2593
|
chainId: string | number | bigint;
|
|
@@ -2612,7 +2612,7 @@ export declare const getUserOperationByHashSchema: z.ZodObject<{
|
|
|
2612
2612
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
2613
2613
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
2614
2614
|
paymasterData?: string | null | undefined;
|
|
2615
|
-
|
|
2615
|
+
eip7702auth?: {
|
|
2616
2616
|
nonce: string | number | bigint;
|
|
2617
2617
|
contractAddress: string;
|
|
2618
2618
|
chainId: string | number | bigint;
|
|
@@ -2633,7 +2633,7 @@ export declare const getUserOperationByHashSchema: z.ZodObject<{
|
|
|
2633
2633
|
maxFeePerGas: string | number | bigint;
|
|
2634
2634
|
maxPriorityFeePerGas: string | number | bigint;
|
|
2635
2635
|
signature: string;
|
|
2636
|
-
|
|
2636
|
+
eip7702auth?: {
|
|
2637
2637
|
nonce: string | number | bigint;
|
|
2638
2638
|
contractAddress: string;
|
|
2639
2639
|
chainId: string | number | bigint;
|
|
@@ -2658,7 +2658,7 @@ export declare const getUserOperationByHashSchema: z.ZodObject<{
|
|
|
2658
2658
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
2659
2659
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
2660
2660
|
paymasterData?: string | null | undefined;
|
|
2661
|
-
|
|
2661
|
+
eip7702auth?: {
|
|
2662
2662
|
nonce: string | number | bigint;
|
|
2663
2663
|
contractAddress: string;
|
|
2664
2664
|
chainId: string | number | bigint;
|
|
@@ -2687,7 +2687,7 @@ export declare const getUserOperationByHashSchema: z.ZodObject<{
|
|
|
2687
2687
|
maxFeePerGas: bigint;
|
|
2688
2688
|
maxPriorityFeePerGas: bigint;
|
|
2689
2689
|
signature: `0x${string}`;
|
|
2690
|
-
|
|
2690
|
+
eip7702auth?: {
|
|
2691
2691
|
nonce: number;
|
|
2692
2692
|
contractAddress: `0x${string}`;
|
|
2693
2693
|
chainId: number;
|
|
@@ -2712,7 +2712,7 @@ export declare const getUserOperationByHashSchema: z.ZodObject<{
|
|
|
2712
2712
|
paymasterPostOpGasLimit: bigint | null;
|
|
2713
2713
|
factoryData: `0x${string}` | null;
|
|
2714
2714
|
paymasterData: `0x${string}` | null;
|
|
2715
|
-
|
|
2715
|
+
eip7702auth?: {
|
|
2716
2716
|
nonce: number;
|
|
2717
2717
|
contractAddress: `0x${string}`;
|
|
2718
2718
|
chainId: number;
|
|
@@ -2733,7 +2733,7 @@ export declare const getUserOperationByHashSchema: z.ZodObject<{
|
|
|
2733
2733
|
maxFeePerGas: bigint;
|
|
2734
2734
|
maxPriorityFeePerGas: bigint;
|
|
2735
2735
|
signature: `0x${string}`;
|
|
2736
|
-
|
|
2736
|
+
eip7702auth?: {
|
|
2737
2737
|
nonce: number;
|
|
2738
2738
|
contractAddress: `0x${string}`;
|
|
2739
2739
|
chainId: number;
|
|
@@ -2758,7 +2758,7 @@ export declare const getUserOperationByHashSchema: z.ZodObject<{
|
|
|
2758
2758
|
paymasterPostOpGasLimit: bigint | null;
|
|
2759
2759
|
factoryData: `0x${string}` | null;
|
|
2760
2760
|
paymasterData: `0x${string}` | null;
|
|
2761
|
-
|
|
2761
|
+
eip7702auth?: {
|
|
2762
2762
|
nonce: number;
|
|
2763
2763
|
contractAddress: `0x${string}`;
|
|
2764
2764
|
chainId: number;
|
|
@@ -2789,7 +2789,7 @@ export declare const getUserOperationByHashSchema: z.ZodObject<{
|
|
|
2789
2789
|
maxFeePerGas: string | number | bigint;
|
|
2790
2790
|
maxPriorityFeePerGas: string | number | bigint;
|
|
2791
2791
|
signature: string;
|
|
2792
|
-
|
|
2792
|
+
eip7702auth?: {
|
|
2793
2793
|
nonce: string | number | bigint;
|
|
2794
2794
|
contractAddress: string;
|
|
2795
2795
|
chainId: string | number | bigint;
|
|
@@ -2814,7 +2814,7 @@ export declare const getUserOperationByHashSchema: z.ZodObject<{
|
|
|
2814
2814
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
2815
2815
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
2816
2816
|
paymasterData?: string | null | undefined;
|
|
2817
|
-
|
|
2817
|
+
eip7702auth?: {
|
|
2818
2818
|
nonce: string | number | bigint;
|
|
2819
2819
|
contractAddress: string;
|
|
2820
2820
|
chainId: string | number | bigint;
|
|
@@ -2835,7 +2835,7 @@ export declare const getUserOperationByHashSchema: z.ZodObject<{
|
|
|
2835
2835
|
maxFeePerGas: string | number | bigint;
|
|
2836
2836
|
maxPriorityFeePerGas: string | number | bigint;
|
|
2837
2837
|
signature: string;
|
|
2838
|
-
|
|
2838
|
+
eip7702auth?: {
|
|
2839
2839
|
nonce: string | number | bigint;
|
|
2840
2840
|
contractAddress: string;
|
|
2841
2841
|
chainId: string | number | bigint;
|
|
@@ -2860,7 +2860,7 @@ export declare const getUserOperationByHashSchema: z.ZodObject<{
|
|
|
2860
2860
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
2861
2861
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
2862
2862
|
paymasterData?: string | null | undefined;
|
|
2863
|
-
|
|
2863
|
+
eip7702auth?: {
|
|
2864
2864
|
nonce: string | number | bigint;
|
|
2865
2865
|
contractAddress: string;
|
|
2866
2866
|
chainId: string | number | bigint;
|
|
@@ -3233,7 +3233,7 @@ export declare const debugDumpMempoolSchema: z.ZodObject<{
|
|
|
3233
3233
|
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3234
3234
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3235
3235
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3236
|
-
|
|
3236
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
3237
3237
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3238
3238
|
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>;
|
|
3239
3239
|
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>;
|
|
@@ -3270,7 +3270,7 @@ export declare const debugDumpMempoolSchema: z.ZodObject<{
|
|
|
3270
3270
|
maxFeePerGas: bigint;
|
|
3271
3271
|
maxPriorityFeePerGas: bigint;
|
|
3272
3272
|
signature: `0x${string}`;
|
|
3273
|
-
|
|
3273
|
+
eip7702auth?: {
|
|
3274
3274
|
nonce: number;
|
|
3275
3275
|
contractAddress: `0x${string}`;
|
|
3276
3276
|
chainId: number;
|
|
@@ -3291,7 +3291,7 @@ export declare const debugDumpMempoolSchema: z.ZodObject<{
|
|
|
3291
3291
|
maxFeePerGas: string | number | bigint;
|
|
3292
3292
|
maxPriorityFeePerGas: string | number | bigint;
|
|
3293
3293
|
signature: string;
|
|
3294
|
-
|
|
3294
|
+
eip7702auth?: {
|
|
3295
3295
|
nonce: string | number | bigint;
|
|
3296
3296
|
contractAddress: string;
|
|
3297
3297
|
chainId: string | number | bigint;
|
|
@@ -3312,7 +3312,7 @@ export declare const debugDumpMempoolSchema: z.ZodObject<{
|
|
|
3312
3312
|
maxFeePerGas: bigint;
|
|
3313
3313
|
maxPriorityFeePerGas: bigint;
|
|
3314
3314
|
signature: `0x${string}`;
|
|
3315
|
-
|
|
3315
|
+
eip7702auth?: {
|
|
3316
3316
|
nonce: number;
|
|
3317
3317
|
contractAddress: `0x${string}`;
|
|
3318
3318
|
chainId: number;
|
|
@@ -3333,7 +3333,7 @@ export declare const debugDumpMempoolSchema: z.ZodObject<{
|
|
|
3333
3333
|
maxFeePerGas: string | number | bigint;
|
|
3334
3334
|
maxPriorityFeePerGas: string | number | bigint;
|
|
3335
3335
|
signature: string;
|
|
3336
|
-
|
|
3336
|
+
eip7702auth?: {
|
|
3337
3337
|
nonce: string | number | bigint;
|
|
3338
3338
|
contractAddress: string;
|
|
3339
3339
|
chainId: string | number | bigint;
|
|
@@ -3358,7 +3358,7 @@ export declare const debugDumpMempoolSchema: z.ZodObject<{
|
|
|
3358
3358
|
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>;
|
|
3359
3359
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
3360
3360
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3361
|
-
|
|
3361
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
3362
3362
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3363
3363
|
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>;
|
|
3364
3364
|
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>;
|
|
@@ -3399,7 +3399,7 @@ export declare const debugDumpMempoolSchema: z.ZodObject<{
|
|
|
3399
3399
|
paymasterPostOpGasLimit: bigint | null;
|
|
3400
3400
|
factoryData: `0x${string}` | null;
|
|
3401
3401
|
paymasterData: `0x${string}` | null;
|
|
3402
|
-
|
|
3402
|
+
eip7702auth?: {
|
|
3403
3403
|
nonce: number;
|
|
3404
3404
|
contractAddress: `0x${string}`;
|
|
3405
3405
|
chainId: number;
|
|
@@ -3424,7 +3424,7 @@ export declare const debugDumpMempoolSchema: z.ZodObject<{
|
|
|
3424
3424
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
3425
3425
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
3426
3426
|
paymasterData?: string | null | undefined;
|
|
3427
|
-
|
|
3427
|
+
eip7702auth?: {
|
|
3428
3428
|
nonce: string | number | bigint;
|
|
3429
3429
|
contractAddress: string;
|
|
3430
3430
|
chainId: string | number | bigint;
|
|
@@ -3449,7 +3449,7 @@ export declare const debugDumpMempoolSchema: z.ZodObject<{
|
|
|
3449
3449
|
paymasterPostOpGasLimit: bigint | null;
|
|
3450
3450
|
factoryData: `0x${string}` | null;
|
|
3451
3451
|
paymasterData: `0x${string}` | null;
|
|
3452
|
-
|
|
3452
|
+
eip7702auth?: {
|
|
3453
3453
|
nonce: number;
|
|
3454
3454
|
contractAddress: `0x${string}`;
|
|
3455
3455
|
chainId: number;
|
|
@@ -3474,7 +3474,7 @@ export declare const debugDumpMempoolSchema: z.ZodObject<{
|
|
|
3474
3474
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
3475
3475
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
3476
3476
|
paymasterData?: string | null | undefined;
|
|
3477
|
-
|
|
3477
|
+
eip7702auth?: {
|
|
3478
3478
|
nonce: string | number | bigint;
|
|
3479
3479
|
contractAddress: string;
|
|
3480
3480
|
chainId: string | number | bigint;
|
|
@@ -3497,7 +3497,7 @@ export declare const debugDumpMempoolSchema: z.ZodObject<{
|
|
|
3497
3497
|
maxFeePerGas: bigint;
|
|
3498
3498
|
maxPriorityFeePerGas: bigint;
|
|
3499
3499
|
signature: `0x${string}`;
|
|
3500
|
-
|
|
3500
|
+
eip7702auth?: {
|
|
3501
3501
|
nonce: number;
|
|
3502
3502
|
contractAddress: `0x${string}`;
|
|
3503
3503
|
chainId: number;
|
|
@@ -3522,7 +3522,7 @@ export declare const debugDumpMempoolSchema: z.ZodObject<{
|
|
|
3522
3522
|
paymasterPostOpGasLimit: bigint | null;
|
|
3523
3523
|
factoryData: `0x${string}` | null;
|
|
3524
3524
|
paymasterData: `0x${string}` | null;
|
|
3525
|
-
|
|
3525
|
+
eip7702auth?: {
|
|
3526
3526
|
nonce: number;
|
|
3527
3527
|
contractAddress: `0x${string}`;
|
|
3528
3528
|
chainId: number;
|
|
@@ -3547,7 +3547,7 @@ export declare const debugDumpMempoolSchema: z.ZodObject<{
|
|
|
3547
3547
|
maxFeePerGas: string | number | bigint;
|
|
3548
3548
|
maxPriorityFeePerGas: string | number | bigint;
|
|
3549
3549
|
signature: string;
|
|
3550
|
-
|
|
3550
|
+
eip7702auth?: {
|
|
3551
3551
|
nonce: string | number | bigint;
|
|
3552
3552
|
contractAddress: string;
|
|
3553
3553
|
chainId: string | number | bigint;
|
|
@@ -3572,7 +3572,7 @@ export declare const debugDumpMempoolSchema: z.ZodObject<{
|
|
|
3572
3572
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
3573
3573
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
3574
3574
|
paymasterData?: string | null | undefined;
|
|
3575
|
-
|
|
3575
|
+
eip7702auth?: {
|
|
3576
3576
|
nonce: string | number | bigint;
|
|
3577
3577
|
contractAddress: string;
|
|
3578
3578
|
chainId: string | number | bigint;
|
|
@@ -3889,7 +3889,7 @@ export declare const pimlicoSendUserOperationNowSchema: z.ZodObject<{
|
|
|
3889
3889
|
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
3890
3890
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3891
3891
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3892
|
-
|
|
3892
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
3893
3893
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3894
3894
|
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>;
|
|
3895
3895
|
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>;
|
|
@@ -3926,7 +3926,7 @@ export declare const pimlicoSendUserOperationNowSchema: z.ZodObject<{
|
|
|
3926
3926
|
maxFeePerGas: bigint;
|
|
3927
3927
|
maxPriorityFeePerGas: bigint;
|
|
3928
3928
|
signature: `0x${string}`;
|
|
3929
|
-
|
|
3929
|
+
eip7702auth?: {
|
|
3930
3930
|
nonce: number;
|
|
3931
3931
|
contractAddress: `0x${string}`;
|
|
3932
3932
|
chainId: number;
|
|
@@ -3947,7 +3947,7 @@ export declare const pimlicoSendUserOperationNowSchema: z.ZodObject<{
|
|
|
3947
3947
|
maxFeePerGas: string | number | bigint;
|
|
3948
3948
|
maxPriorityFeePerGas: string | number | bigint;
|
|
3949
3949
|
signature: string;
|
|
3950
|
-
|
|
3950
|
+
eip7702auth?: {
|
|
3951
3951
|
nonce: string | number | bigint;
|
|
3952
3952
|
contractAddress: string;
|
|
3953
3953
|
chainId: string | number | bigint;
|
|
@@ -3968,7 +3968,7 @@ export declare const pimlicoSendUserOperationNowSchema: z.ZodObject<{
|
|
|
3968
3968
|
maxFeePerGas: bigint;
|
|
3969
3969
|
maxPriorityFeePerGas: bigint;
|
|
3970
3970
|
signature: `0x${string}`;
|
|
3971
|
-
|
|
3971
|
+
eip7702auth?: {
|
|
3972
3972
|
nonce: number;
|
|
3973
3973
|
contractAddress: `0x${string}`;
|
|
3974
3974
|
chainId: number;
|
|
@@ -3989,7 +3989,7 @@ export declare const pimlicoSendUserOperationNowSchema: z.ZodObject<{
|
|
|
3989
3989
|
maxFeePerGas: string | number | bigint;
|
|
3990
3990
|
maxPriorityFeePerGas: string | number | bigint;
|
|
3991
3991
|
signature: string;
|
|
3992
|
-
|
|
3992
|
+
eip7702auth?: {
|
|
3993
3993
|
nonce: string | number | bigint;
|
|
3994
3994
|
contractAddress: string;
|
|
3995
3995
|
chainId: string | number | bigint;
|
|
@@ -4014,7 +4014,7 @@ export declare const pimlicoSendUserOperationNowSchema: z.ZodObject<{
|
|
|
4014
4014
|
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>;
|
|
4015
4015
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
4016
4016
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4017
|
-
|
|
4017
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
4018
4018
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4019
4019
|
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>;
|
|
4020
4020
|
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>;
|
|
@@ -4055,7 +4055,7 @@ export declare const pimlicoSendUserOperationNowSchema: z.ZodObject<{
|
|
|
4055
4055
|
paymasterPostOpGasLimit: bigint | null;
|
|
4056
4056
|
factoryData: `0x${string}` | null;
|
|
4057
4057
|
paymasterData: `0x${string}` | null;
|
|
4058
|
-
|
|
4058
|
+
eip7702auth?: {
|
|
4059
4059
|
nonce: number;
|
|
4060
4060
|
contractAddress: `0x${string}`;
|
|
4061
4061
|
chainId: number;
|
|
@@ -4080,7 +4080,7 @@ export declare const pimlicoSendUserOperationNowSchema: z.ZodObject<{
|
|
|
4080
4080
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
4081
4081
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
4082
4082
|
paymasterData?: string | null | undefined;
|
|
4083
|
-
|
|
4083
|
+
eip7702auth?: {
|
|
4084
4084
|
nonce: string | number | bigint;
|
|
4085
4085
|
contractAddress: string;
|
|
4086
4086
|
chainId: string | number | bigint;
|
|
@@ -4105,7 +4105,7 @@ export declare const pimlicoSendUserOperationNowSchema: z.ZodObject<{
|
|
|
4105
4105
|
paymasterPostOpGasLimit: bigint | null;
|
|
4106
4106
|
factoryData: `0x${string}` | null;
|
|
4107
4107
|
paymasterData: `0x${string}` | null;
|
|
4108
|
-
|
|
4108
|
+
eip7702auth?: {
|
|
4109
4109
|
nonce: number;
|
|
4110
4110
|
contractAddress: `0x${string}`;
|
|
4111
4111
|
chainId: number;
|
|
@@ -4130,7 +4130,7 @@ export declare const pimlicoSendUserOperationNowSchema: z.ZodObject<{
|
|
|
4130
4130
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
4131
4131
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
4132
4132
|
paymasterData?: string | null | undefined;
|
|
4133
|
-
|
|
4133
|
+
eip7702auth?: {
|
|
4134
4134
|
nonce: string | number | bigint;
|
|
4135
4135
|
contractAddress: string;
|
|
4136
4136
|
chainId: string | number | bigint;
|
|
@@ -4413,7 +4413,7 @@ export declare const pimlicoSendUserOperationNowSchema: z.ZodObject<{
|
|
|
4413
4413
|
maxFeePerGas: bigint;
|
|
4414
4414
|
maxPriorityFeePerGas: bigint;
|
|
4415
4415
|
signature: `0x${string}`;
|
|
4416
|
-
|
|
4416
|
+
eip7702auth?: {
|
|
4417
4417
|
nonce: number;
|
|
4418
4418
|
contractAddress: `0x${string}`;
|
|
4419
4419
|
chainId: number;
|
|
@@ -4438,7 +4438,7 @@ export declare const pimlicoSendUserOperationNowSchema: z.ZodObject<{
|
|
|
4438
4438
|
paymasterPostOpGasLimit: bigint | null;
|
|
4439
4439
|
factoryData: `0x${string}` | null;
|
|
4440
4440
|
paymasterData: `0x${string}` | null;
|
|
4441
|
-
|
|
4441
|
+
eip7702auth?: {
|
|
4442
4442
|
nonce: number;
|
|
4443
4443
|
contractAddress: `0x${string}`;
|
|
4444
4444
|
chainId: number;
|
|
@@ -4507,7 +4507,7 @@ export declare const pimlicoSendUserOperationNowSchema: z.ZodObject<{
|
|
|
4507
4507
|
maxFeePerGas: string | number | bigint;
|
|
4508
4508
|
maxPriorityFeePerGas: string | number | bigint;
|
|
4509
4509
|
signature: string;
|
|
4510
|
-
|
|
4510
|
+
eip7702auth?: {
|
|
4511
4511
|
nonce: string | number | bigint;
|
|
4512
4512
|
contractAddress: string;
|
|
4513
4513
|
chainId: string | number | bigint;
|
|
@@ -4532,7 +4532,7 @@ export declare const pimlicoSendUserOperationNowSchema: z.ZodObject<{
|
|
|
4532
4532
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
4533
4533
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
4534
4534
|
paymasterData?: string | null | undefined;
|
|
4535
|
-
|
|
4535
|
+
eip7702auth?: {
|
|
4536
4536
|
nonce: string | number | bigint;
|
|
4537
4537
|
contractAddress: string;
|
|
4538
4538
|
chainId: string | number | bigint;
|
|
@@ -4558,7 +4558,7 @@ export declare const pimlicoExperimentalEstimateUserOperationGas7702Schema: z.Zo
|
|
|
4558
4558
|
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>>;
|
|
4559
4559
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4560
4560
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4561
|
-
|
|
4561
|
+
eip7702auth: z.ZodOptional<z.ZodObject<{
|
|
4562
4562
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4563
4563
|
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>;
|
|
4564
4564
|
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>;
|
|
@@ -4595,7 +4595,7 @@ export declare const pimlicoExperimentalEstimateUserOperationGas7702Schema: z.Zo
|
|
|
4595
4595
|
maxFeePerGas: bigint;
|
|
4596
4596
|
maxPriorityFeePerGas: bigint;
|
|
4597
4597
|
signature: `0x${string}`;
|
|
4598
|
-
|
|
4598
|
+
eip7702auth?: {
|
|
4599
4599
|
nonce: number;
|
|
4600
4600
|
contractAddress: `0x${string}`;
|
|
4601
4601
|
chainId: number;
|
|
@@ -4616,7 +4616,7 @@ export declare const pimlicoExperimentalEstimateUserOperationGas7702Schema: z.Zo
|
|
|
4616
4616
|
preVerificationGas?: string | number | bigint | undefined;
|
|
4617
4617
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
4618
4618
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
4619
|
-
|
|
4619
|
+
eip7702auth?: {
|
|
4620
4620
|
nonce: string | number | bigint;
|
|
4621
4621
|
contractAddress: string;
|
|
4622
4622
|
chainId: string | number | bigint;
|
|
@@ -4637,7 +4637,7 @@ export declare const pimlicoExperimentalEstimateUserOperationGas7702Schema: z.Zo
|
|
|
4637
4637
|
maxFeePerGas: bigint;
|
|
4638
4638
|
maxPriorityFeePerGas: bigint;
|
|
4639
4639
|
signature: `0x${string}`;
|
|
4640
|
-
|
|
4640
|
+
eip7702auth?: {
|
|
4641
4641
|
nonce: number;
|
|
4642
4642
|
contractAddress: `0x${string}`;
|
|
4643
4643
|
chainId: number;
|
|
@@ -4658,7 +4658,7 @@ export declare const pimlicoExperimentalEstimateUserOperationGas7702Schema: z.Zo
|
|
|
4658
4658
|
preVerificationGas?: string | number | bigint | undefined;
|
|
4659
4659
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
4660
4660
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
4661
|
-
|
|
4661
|
+
eip7702auth?: {
|
|
4662
4662
|
nonce: string | number | bigint;
|
|
4663
4663
|
contractAddress: string;
|
|
4664
4664
|
chainId: string | number | bigint;
|
|
@@ -4683,7 +4683,7 @@ export declare const pimlicoExperimentalEstimateUserOperationGas7702Schema: z.Zo
|
|
|
4683
4683
|
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>;
|
|
4684
4684
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
4685
4685
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4686
|
-
|
|
4686
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
4687
4687
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4688
4688
|
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>;
|
|
4689
4689
|
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>;
|
|
@@ -4724,7 +4724,7 @@ export declare const pimlicoExperimentalEstimateUserOperationGas7702Schema: z.Zo
|
|
|
4724
4724
|
paymasterPostOpGasLimit: bigint | null;
|
|
4725
4725
|
factoryData: `0x${string}` | null;
|
|
4726
4726
|
paymasterData: `0x${string}` | null;
|
|
4727
|
-
|
|
4727
|
+
eip7702auth?: {
|
|
4728
4728
|
nonce: number;
|
|
4729
4729
|
contractAddress: `0x${string}`;
|
|
4730
4730
|
chainId: number;
|
|
@@ -4749,7 +4749,7 @@ export declare const pimlicoExperimentalEstimateUserOperationGas7702Schema: z.Zo
|
|
|
4749
4749
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
4750
4750
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
4751
4751
|
paymasterData?: string | null | undefined;
|
|
4752
|
-
|
|
4752
|
+
eip7702auth?: {
|
|
4753
4753
|
nonce: string | number | bigint;
|
|
4754
4754
|
contractAddress: string;
|
|
4755
4755
|
chainId: string | number | bigint;
|
|
@@ -4774,7 +4774,7 @@ export declare const pimlicoExperimentalEstimateUserOperationGas7702Schema: z.Zo
|
|
|
4774
4774
|
paymasterPostOpGasLimit: bigint | null;
|
|
4775
4775
|
factoryData: `0x${string}` | null;
|
|
4776
4776
|
paymasterData: `0x${string}` | null;
|
|
4777
|
-
|
|
4777
|
+
eip7702auth?: {
|
|
4778
4778
|
nonce: number;
|
|
4779
4779
|
contractAddress: `0x${string}`;
|
|
4780
4780
|
chainId: number;
|
|
@@ -4799,7 +4799,7 @@ export declare const pimlicoExperimentalEstimateUserOperationGas7702Schema: z.Zo
|
|
|
4799
4799
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
4800
4800
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
4801
4801
|
paymasterData?: string | null | undefined;
|
|
4802
|
-
|
|
4802
|
+
eip7702auth?: {
|
|
4803
4803
|
nonce: string | number | bigint;
|
|
4804
4804
|
contractAddress: string;
|
|
4805
4805
|
chainId: string | number | bigint;
|
|
@@ -4820,7 +4820,7 @@ export declare const pimlicoExperimentalEstimateUserOperationGas7702Schema: z.Zo
|
|
|
4820
4820
|
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>>;
|
|
4821
4821
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4822
4822
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4823
|
-
|
|
4823
|
+
eip7702auth: z.ZodOptional<z.ZodObject<{
|
|
4824
4824
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4825
4825
|
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>;
|
|
4826
4826
|
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>;
|
|
@@ -4857,7 +4857,7 @@ export declare const pimlicoExperimentalEstimateUserOperationGas7702Schema: z.Zo
|
|
|
4857
4857
|
maxFeePerGas: bigint;
|
|
4858
4858
|
maxPriorityFeePerGas: bigint;
|
|
4859
4859
|
signature: `0x${string}`;
|
|
4860
|
-
|
|
4860
|
+
eip7702auth?: {
|
|
4861
4861
|
nonce: number;
|
|
4862
4862
|
contractAddress: `0x${string}`;
|
|
4863
4863
|
chainId: number;
|
|
@@ -4878,7 +4878,7 @@ export declare const pimlicoExperimentalEstimateUserOperationGas7702Schema: z.Zo
|
|
|
4878
4878
|
preVerificationGas?: string | number | bigint | undefined;
|
|
4879
4879
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
4880
4880
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
4881
|
-
|
|
4881
|
+
eip7702auth?: {
|
|
4882
4882
|
nonce: string | number | bigint;
|
|
4883
4883
|
contractAddress: string;
|
|
4884
4884
|
chainId: string | number | bigint;
|
|
@@ -4899,7 +4899,7 @@ export declare const pimlicoExperimentalEstimateUserOperationGas7702Schema: z.Zo
|
|
|
4899
4899
|
maxFeePerGas: bigint;
|
|
4900
4900
|
maxPriorityFeePerGas: bigint;
|
|
4901
4901
|
signature: `0x${string}`;
|
|
4902
|
-
|
|
4902
|
+
eip7702auth?: {
|
|
4903
4903
|
nonce: number;
|
|
4904
4904
|
contractAddress: `0x${string}`;
|
|
4905
4905
|
chainId: number;
|
|
@@ -4920,7 +4920,7 @@ export declare const pimlicoExperimentalEstimateUserOperationGas7702Schema: z.Zo
|
|
|
4920
4920
|
preVerificationGas?: string | number | bigint | undefined;
|
|
4921
4921
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
4922
4922
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
4923
|
-
|
|
4923
|
+
eip7702auth?: {
|
|
4924
4924
|
nonce: string | number | bigint;
|
|
4925
4925
|
contractAddress: string;
|
|
4926
4926
|
chainId: string | number | bigint;
|
|
@@ -4945,7 +4945,7 @@ export declare const pimlicoExperimentalEstimateUserOperationGas7702Schema: z.Zo
|
|
|
4945
4945
|
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>;
|
|
4946
4946
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
4947
4947
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4948
|
-
|
|
4948
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
4949
4949
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4950
4950
|
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>;
|
|
4951
4951
|
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>;
|
|
@@ -4986,7 +4986,7 @@ export declare const pimlicoExperimentalEstimateUserOperationGas7702Schema: z.Zo
|
|
|
4986
4986
|
paymasterPostOpGasLimit: bigint | null;
|
|
4987
4987
|
factoryData: `0x${string}` | null;
|
|
4988
4988
|
paymasterData: `0x${string}` | null;
|
|
4989
|
-
|
|
4989
|
+
eip7702auth?: {
|
|
4990
4990
|
nonce: number;
|
|
4991
4991
|
contractAddress: `0x${string}`;
|
|
4992
4992
|
chainId: number;
|
|
@@ -5011,7 +5011,7 @@ export declare const pimlicoExperimentalEstimateUserOperationGas7702Schema: z.Zo
|
|
|
5011
5011
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
5012
5012
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
5013
5013
|
paymasterData?: string | null | undefined;
|
|
5014
|
-
|
|
5014
|
+
eip7702auth?: {
|
|
5015
5015
|
nonce: string | number | bigint;
|
|
5016
5016
|
contractAddress: string;
|
|
5017
5017
|
chainId: string | number | bigint;
|
|
@@ -5036,7 +5036,7 @@ export declare const pimlicoExperimentalEstimateUserOperationGas7702Schema: z.Zo
|
|
|
5036
5036
|
paymasterPostOpGasLimit: bigint | null;
|
|
5037
5037
|
factoryData: `0x${string}` | null;
|
|
5038
5038
|
paymasterData: `0x${string}` | null;
|
|
5039
|
-
|
|
5039
|
+
eip7702auth?: {
|
|
5040
5040
|
nonce: number;
|
|
5041
5041
|
contractAddress: `0x${string}`;
|
|
5042
5042
|
chainId: number;
|
|
@@ -5061,7 +5061,7 @@ export declare const pimlicoExperimentalEstimateUserOperationGas7702Schema: z.Zo
|
|
|
5061
5061
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
5062
5062
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
5063
5063
|
paymasterData?: string | null | undefined;
|
|
5064
|
-
|
|
5064
|
+
eip7702auth?: {
|
|
5065
5065
|
nonce: string | number | bigint;
|
|
5066
5066
|
contractAddress: string;
|
|
5067
5067
|
chainId: string | number | bigint;
|
|
@@ -5159,7 +5159,7 @@ export declare const pimlicoExperimentalEstimateUserOperationGas7702Schema: z.Zo
|
|
|
5159
5159
|
maxFeePerGas: bigint;
|
|
5160
5160
|
maxPriorityFeePerGas: bigint;
|
|
5161
5161
|
signature: `0x${string}`;
|
|
5162
|
-
|
|
5162
|
+
eip7702auth?: {
|
|
5163
5163
|
nonce: number;
|
|
5164
5164
|
contractAddress: `0x${string}`;
|
|
5165
5165
|
chainId: number;
|
|
@@ -5184,7 +5184,7 @@ export declare const pimlicoExperimentalEstimateUserOperationGas7702Schema: z.Zo
|
|
|
5184
5184
|
paymasterPostOpGasLimit: bigint | null;
|
|
5185
5185
|
factoryData: `0x${string}` | null;
|
|
5186
5186
|
paymasterData: `0x${string}` | null;
|
|
5187
|
-
|
|
5187
|
+
eip7702auth?: {
|
|
5188
5188
|
nonce: number;
|
|
5189
5189
|
contractAddress: `0x${string}`;
|
|
5190
5190
|
chainId: number;
|
|
@@ -5205,7 +5205,7 @@ export declare const pimlicoExperimentalEstimateUserOperationGas7702Schema: z.Zo
|
|
|
5205
5205
|
maxFeePerGas: bigint;
|
|
5206
5206
|
maxPriorityFeePerGas: bigint;
|
|
5207
5207
|
signature: `0x${string}`;
|
|
5208
|
-
|
|
5208
|
+
eip7702auth?: {
|
|
5209
5209
|
nonce: number;
|
|
5210
5210
|
contractAddress: `0x${string}`;
|
|
5211
5211
|
chainId: number;
|
|
@@ -5230,7 +5230,7 @@ export declare const pimlicoExperimentalEstimateUserOperationGas7702Schema: z.Zo
|
|
|
5230
5230
|
paymasterPostOpGasLimit: bigint | null;
|
|
5231
5231
|
factoryData: `0x${string}` | null;
|
|
5232
5232
|
paymasterData: `0x${string}` | null;
|
|
5233
|
-
|
|
5233
|
+
eip7702auth?: {
|
|
5234
5234
|
nonce: number;
|
|
5235
5235
|
contractAddress: `0x${string}`;
|
|
5236
5236
|
chainId: number;
|
|
@@ -5283,7 +5283,7 @@ export declare const pimlicoExperimentalEstimateUserOperationGas7702Schema: z.Zo
|
|
|
5283
5283
|
preVerificationGas?: string | number | bigint | undefined;
|
|
5284
5284
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
5285
5285
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
5286
|
-
|
|
5286
|
+
eip7702auth?: {
|
|
5287
5287
|
nonce: string | number | bigint;
|
|
5288
5288
|
contractAddress: string;
|
|
5289
5289
|
chainId: string | number | bigint;
|
|
@@ -5308,7 +5308,7 @@ export declare const pimlicoExperimentalEstimateUserOperationGas7702Schema: z.Zo
|
|
|
5308
5308
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
5309
5309
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
5310
5310
|
paymasterData?: string | null | undefined;
|
|
5311
|
-
|
|
5311
|
+
eip7702auth?: {
|
|
5312
5312
|
nonce: string | number | bigint;
|
|
5313
5313
|
contractAddress: string;
|
|
5314
5314
|
chainId: string | number | bigint;
|
|
@@ -5329,7 +5329,7 @@ export declare const pimlicoExperimentalEstimateUserOperationGas7702Schema: z.Zo
|
|
|
5329
5329
|
preVerificationGas?: string | number | bigint | undefined;
|
|
5330
5330
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
5331
5331
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
5332
|
-
|
|
5332
|
+
eip7702auth?: {
|
|
5333
5333
|
nonce: string | number | bigint;
|
|
5334
5334
|
contractAddress: string;
|
|
5335
5335
|
chainId: string | number | bigint;
|
|
@@ -5354,7 +5354,7 @@ export declare const pimlicoExperimentalEstimateUserOperationGas7702Schema: z.Zo
|
|
|
5354
5354
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
5355
5355
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
5356
5356
|
paymasterData?: string | null | undefined;
|
|
5357
|
-
|
|
5357
|
+
eip7702auth?: {
|
|
5358
5358
|
nonce: string | number | bigint;
|
|
5359
5359
|
contractAddress: string;
|
|
5360
5360
|
chainId: string | number | bigint;
|
|
@@ -5386,7 +5386,7 @@ export declare const pimlicoExperimentalSendUserOperation7702Schema: z.ZodObject
|
|
|
5386
5386
|
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
5387
5387
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
5388
5388
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
5389
|
-
|
|
5389
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
5390
5390
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
5391
5391
|
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>;
|
|
5392
5392
|
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>;
|
|
@@ -5423,7 +5423,7 @@ export declare const pimlicoExperimentalSendUserOperation7702Schema: z.ZodObject
|
|
|
5423
5423
|
maxFeePerGas: bigint;
|
|
5424
5424
|
maxPriorityFeePerGas: bigint;
|
|
5425
5425
|
signature: `0x${string}`;
|
|
5426
|
-
|
|
5426
|
+
eip7702auth?: {
|
|
5427
5427
|
nonce: number;
|
|
5428
5428
|
contractAddress: `0x${string}`;
|
|
5429
5429
|
chainId: number;
|
|
@@ -5444,7 +5444,7 @@ export declare const pimlicoExperimentalSendUserOperation7702Schema: z.ZodObject
|
|
|
5444
5444
|
maxFeePerGas: string | number | bigint;
|
|
5445
5445
|
maxPriorityFeePerGas: string | number | bigint;
|
|
5446
5446
|
signature: string;
|
|
5447
|
-
|
|
5447
|
+
eip7702auth?: {
|
|
5448
5448
|
nonce: string | number | bigint;
|
|
5449
5449
|
contractAddress: string;
|
|
5450
5450
|
chainId: string | number | bigint;
|
|
@@ -5465,7 +5465,7 @@ export declare const pimlicoExperimentalSendUserOperation7702Schema: z.ZodObject
|
|
|
5465
5465
|
maxFeePerGas: bigint;
|
|
5466
5466
|
maxPriorityFeePerGas: bigint;
|
|
5467
5467
|
signature: `0x${string}`;
|
|
5468
|
-
|
|
5468
|
+
eip7702auth?: {
|
|
5469
5469
|
nonce: number;
|
|
5470
5470
|
contractAddress: `0x${string}`;
|
|
5471
5471
|
chainId: number;
|
|
@@ -5486,7 +5486,7 @@ export declare const pimlicoExperimentalSendUserOperation7702Schema: z.ZodObject
|
|
|
5486
5486
|
maxFeePerGas: string | number | bigint;
|
|
5487
5487
|
maxPriorityFeePerGas: string | number | bigint;
|
|
5488
5488
|
signature: string;
|
|
5489
|
-
|
|
5489
|
+
eip7702auth?: {
|
|
5490
5490
|
nonce: string | number | bigint;
|
|
5491
5491
|
contractAddress: string;
|
|
5492
5492
|
chainId: string | number | bigint;
|
|
@@ -5511,7 +5511,7 @@ export declare const pimlicoExperimentalSendUserOperation7702Schema: z.ZodObject
|
|
|
5511
5511
|
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>;
|
|
5512
5512
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
5513
5513
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
5514
|
-
|
|
5514
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
5515
5515
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
5516
5516
|
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>;
|
|
5517
5517
|
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>;
|
|
@@ -5552,7 +5552,7 @@ export declare const pimlicoExperimentalSendUserOperation7702Schema: z.ZodObject
|
|
|
5552
5552
|
paymasterPostOpGasLimit: bigint | null;
|
|
5553
5553
|
factoryData: `0x${string}` | null;
|
|
5554
5554
|
paymasterData: `0x${string}` | null;
|
|
5555
|
-
|
|
5555
|
+
eip7702auth?: {
|
|
5556
5556
|
nonce: number;
|
|
5557
5557
|
contractAddress: `0x${string}`;
|
|
5558
5558
|
chainId: number;
|
|
@@ -5577,7 +5577,7 @@ export declare const pimlicoExperimentalSendUserOperation7702Schema: z.ZodObject
|
|
|
5577
5577
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
5578
5578
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
5579
5579
|
paymasterData?: string | null | undefined;
|
|
5580
|
-
|
|
5580
|
+
eip7702auth?: {
|
|
5581
5581
|
nonce: string | number | bigint;
|
|
5582
5582
|
contractAddress: string;
|
|
5583
5583
|
chainId: string | number | bigint;
|
|
@@ -5602,7 +5602,7 @@ export declare const pimlicoExperimentalSendUserOperation7702Schema: z.ZodObject
|
|
|
5602
5602
|
paymasterPostOpGasLimit: bigint | null;
|
|
5603
5603
|
factoryData: `0x${string}` | null;
|
|
5604
5604
|
paymasterData: `0x${string}` | null;
|
|
5605
|
-
|
|
5605
|
+
eip7702auth?: {
|
|
5606
5606
|
nonce: number;
|
|
5607
5607
|
contractAddress: `0x${string}`;
|
|
5608
5608
|
chainId: number;
|
|
@@ -5627,7 +5627,7 @@ export declare const pimlicoExperimentalSendUserOperation7702Schema: z.ZodObject
|
|
|
5627
5627
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
5628
5628
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
5629
5629
|
paymasterData?: string | null | undefined;
|
|
5630
|
-
|
|
5630
|
+
eip7702auth?: {
|
|
5631
5631
|
nonce: string | number | bigint;
|
|
5632
5632
|
contractAddress: string;
|
|
5633
5633
|
chainId: string | number | bigint;
|
|
@@ -5652,7 +5652,7 @@ export declare const pimlicoExperimentalSendUserOperation7702Schema: z.ZodObject
|
|
|
5652
5652
|
maxFeePerGas: bigint;
|
|
5653
5653
|
maxPriorityFeePerGas: bigint;
|
|
5654
5654
|
signature: `0x${string}`;
|
|
5655
|
-
|
|
5655
|
+
eip7702auth?: {
|
|
5656
5656
|
nonce: number;
|
|
5657
5657
|
contractAddress: `0x${string}`;
|
|
5658
5658
|
chainId: number;
|
|
@@ -5677,7 +5677,7 @@ export declare const pimlicoExperimentalSendUserOperation7702Schema: z.ZodObject
|
|
|
5677
5677
|
paymasterPostOpGasLimit: bigint | null;
|
|
5678
5678
|
factoryData: `0x${string}` | null;
|
|
5679
5679
|
paymasterData: `0x${string}` | null;
|
|
5680
|
-
|
|
5680
|
+
eip7702auth?: {
|
|
5681
5681
|
nonce: number;
|
|
5682
5682
|
contractAddress: `0x${string}`;
|
|
5683
5683
|
chainId: number;
|
|
@@ -5702,7 +5702,7 @@ export declare const pimlicoExperimentalSendUserOperation7702Schema: z.ZodObject
|
|
|
5702
5702
|
maxFeePerGas: string | number | bigint;
|
|
5703
5703
|
maxPriorityFeePerGas: string | number | bigint;
|
|
5704
5704
|
signature: string;
|
|
5705
|
-
|
|
5705
|
+
eip7702auth?: {
|
|
5706
5706
|
nonce: string | number | bigint;
|
|
5707
5707
|
contractAddress: string;
|
|
5708
5708
|
chainId: string | number | bigint;
|
|
@@ -5727,7 +5727,7 @@ export declare const pimlicoExperimentalSendUserOperation7702Schema: z.ZodObject
|
|
|
5727
5727
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
5728
5728
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
5729
5729
|
paymasterData?: string | null | undefined;
|
|
5730
|
-
|
|
5730
|
+
eip7702auth?: {
|
|
5731
5731
|
nonce: string | number | bigint;
|
|
5732
5732
|
contractAddress: string;
|
|
5733
5733
|
chainId: string | number | bigint;
|
|
@@ -5775,7 +5775,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
5775
5775
|
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>>;
|
|
5776
5776
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
5777
5777
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
5778
|
-
|
|
5778
|
+
eip7702auth: z.ZodOptional<z.ZodObject<{
|
|
5779
5779
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
5780
5780
|
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>;
|
|
5781
5781
|
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>;
|
|
@@ -5812,7 +5812,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
5812
5812
|
maxFeePerGas: bigint;
|
|
5813
5813
|
maxPriorityFeePerGas: bigint;
|
|
5814
5814
|
signature: `0x${string}`;
|
|
5815
|
-
|
|
5815
|
+
eip7702auth?: {
|
|
5816
5816
|
nonce: number;
|
|
5817
5817
|
contractAddress: `0x${string}`;
|
|
5818
5818
|
chainId: number;
|
|
@@ -5833,7 +5833,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
5833
5833
|
preVerificationGas?: string | number | bigint | undefined;
|
|
5834
5834
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
5835
5835
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
5836
|
-
|
|
5836
|
+
eip7702auth?: {
|
|
5837
5837
|
nonce: string | number | bigint;
|
|
5838
5838
|
contractAddress: string;
|
|
5839
5839
|
chainId: string | number | bigint;
|
|
@@ -5854,7 +5854,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
5854
5854
|
maxFeePerGas: bigint;
|
|
5855
5855
|
maxPriorityFeePerGas: bigint;
|
|
5856
5856
|
signature: `0x${string}`;
|
|
5857
|
-
|
|
5857
|
+
eip7702auth?: {
|
|
5858
5858
|
nonce: number;
|
|
5859
5859
|
contractAddress: `0x${string}`;
|
|
5860
5860
|
chainId: number;
|
|
@@ -5875,7 +5875,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
5875
5875
|
preVerificationGas?: string | number | bigint | undefined;
|
|
5876
5876
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
5877
5877
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
5878
|
-
|
|
5878
|
+
eip7702auth?: {
|
|
5879
5879
|
nonce: string | number | bigint;
|
|
5880
5880
|
contractAddress: string;
|
|
5881
5881
|
chainId: string | number | bigint;
|
|
@@ -5900,7 +5900,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
5900
5900
|
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>;
|
|
5901
5901
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
5902
5902
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
5903
|
-
|
|
5903
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
5904
5904
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
5905
5905
|
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>;
|
|
5906
5906
|
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>;
|
|
@@ -5941,7 +5941,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
5941
5941
|
paymasterPostOpGasLimit: bigint | null;
|
|
5942
5942
|
factoryData: `0x${string}` | null;
|
|
5943
5943
|
paymasterData: `0x${string}` | null;
|
|
5944
|
-
|
|
5944
|
+
eip7702auth?: {
|
|
5945
5945
|
nonce: number;
|
|
5946
5946
|
contractAddress: `0x${string}`;
|
|
5947
5947
|
chainId: number;
|
|
@@ -5966,7 +5966,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
5966
5966
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
5967
5967
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
5968
5968
|
paymasterData?: string | null | undefined;
|
|
5969
|
-
|
|
5969
|
+
eip7702auth?: {
|
|
5970
5970
|
nonce: string | number | bigint;
|
|
5971
5971
|
contractAddress: string;
|
|
5972
5972
|
chainId: string | number | bigint;
|
|
@@ -5991,7 +5991,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
5991
5991
|
paymasterPostOpGasLimit: bigint | null;
|
|
5992
5992
|
factoryData: `0x${string}` | null;
|
|
5993
5993
|
paymasterData: `0x${string}` | null;
|
|
5994
|
-
|
|
5994
|
+
eip7702auth?: {
|
|
5995
5995
|
nonce: number;
|
|
5996
5996
|
contractAddress: `0x${string}`;
|
|
5997
5997
|
chainId: number;
|
|
@@ -6016,7 +6016,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6016
6016
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
6017
6017
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
6018
6018
|
paymasterData?: string | null | undefined;
|
|
6019
|
-
|
|
6019
|
+
eip7702auth?: {
|
|
6020
6020
|
nonce: string | number | bigint;
|
|
6021
6021
|
contractAddress: string;
|
|
6022
6022
|
chainId: string | number | bigint;
|
|
@@ -6037,7 +6037,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6037
6037
|
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>>;
|
|
6038
6038
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
6039
6039
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
6040
|
-
|
|
6040
|
+
eip7702auth: z.ZodOptional<z.ZodObject<{
|
|
6041
6041
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
6042
6042
|
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>;
|
|
6043
6043
|
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>;
|
|
@@ -6074,7 +6074,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6074
6074
|
maxFeePerGas: bigint;
|
|
6075
6075
|
maxPriorityFeePerGas: bigint;
|
|
6076
6076
|
signature: `0x${string}`;
|
|
6077
|
-
|
|
6077
|
+
eip7702auth?: {
|
|
6078
6078
|
nonce: number;
|
|
6079
6079
|
contractAddress: `0x${string}`;
|
|
6080
6080
|
chainId: number;
|
|
@@ -6095,7 +6095,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6095
6095
|
preVerificationGas?: string | number | bigint | undefined;
|
|
6096
6096
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
6097
6097
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
6098
|
-
|
|
6098
|
+
eip7702auth?: {
|
|
6099
6099
|
nonce: string | number | bigint;
|
|
6100
6100
|
contractAddress: string;
|
|
6101
6101
|
chainId: string | number | bigint;
|
|
@@ -6116,7 +6116,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6116
6116
|
maxFeePerGas: bigint;
|
|
6117
6117
|
maxPriorityFeePerGas: bigint;
|
|
6118
6118
|
signature: `0x${string}`;
|
|
6119
|
-
|
|
6119
|
+
eip7702auth?: {
|
|
6120
6120
|
nonce: number;
|
|
6121
6121
|
contractAddress: `0x${string}`;
|
|
6122
6122
|
chainId: number;
|
|
@@ -6137,7 +6137,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6137
6137
|
preVerificationGas?: string | number | bigint | undefined;
|
|
6138
6138
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
6139
6139
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
6140
|
-
|
|
6140
|
+
eip7702auth?: {
|
|
6141
6141
|
nonce: string | number | bigint;
|
|
6142
6142
|
contractAddress: string;
|
|
6143
6143
|
chainId: string | number | bigint;
|
|
@@ -6162,7 +6162,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6162
6162
|
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>;
|
|
6163
6163
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
6164
6164
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
6165
|
-
|
|
6165
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
6166
6166
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
6167
6167
|
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>;
|
|
6168
6168
|
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>;
|
|
@@ -6203,7 +6203,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6203
6203
|
paymasterPostOpGasLimit: bigint | null;
|
|
6204
6204
|
factoryData: `0x${string}` | null;
|
|
6205
6205
|
paymasterData: `0x${string}` | null;
|
|
6206
|
-
|
|
6206
|
+
eip7702auth?: {
|
|
6207
6207
|
nonce: number;
|
|
6208
6208
|
contractAddress: `0x${string}`;
|
|
6209
6209
|
chainId: number;
|
|
@@ -6228,7 +6228,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6228
6228
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
6229
6229
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
6230
6230
|
paymasterData?: string | null | undefined;
|
|
6231
|
-
|
|
6231
|
+
eip7702auth?: {
|
|
6232
6232
|
nonce: string | number | bigint;
|
|
6233
6233
|
contractAddress: string;
|
|
6234
6234
|
chainId: string | number | bigint;
|
|
@@ -6253,7 +6253,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6253
6253
|
paymasterPostOpGasLimit: bigint | null;
|
|
6254
6254
|
factoryData: `0x${string}` | null;
|
|
6255
6255
|
paymasterData: `0x${string}` | null;
|
|
6256
|
-
|
|
6256
|
+
eip7702auth?: {
|
|
6257
6257
|
nonce: number;
|
|
6258
6258
|
contractAddress: `0x${string}`;
|
|
6259
6259
|
chainId: number;
|
|
@@ -6278,7 +6278,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6278
6278
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
6279
6279
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
6280
6280
|
paymasterData?: string | null | undefined;
|
|
6281
|
-
|
|
6281
|
+
eip7702auth?: {
|
|
6282
6282
|
nonce: string | number | bigint;
|
|
6283
6283
|
contractAddress: string;
|
|
6284
6284
|
chainId: string | number | bigint;
|
|
@@ -6353,7 +6353,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6353
6353
|
maxFeePerGas: bigint;
|
|
6354
6354
|
maxPriorityFeePerGas: bigint;
|
|
6355
6355
|
signature: `0x${string}`;
|
|
6356
|
-
|
|
6356
|
+
eip7702auth?: {
|
|
6357
6357
|
nonce: number;
|
|
6358
6358
|
contractAddress: `0x${string}`;
|
|
6359
6359
|
chainId: number;
|
|
@@ -6378,7 +6378,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6378
6378
|
paymasterPostOpGasLimit: bigint | null;
|
|
6379
6379
|
factoryData: `0x${string}` | null;
|
|
6380
6380
|
paymasterData: `0x${string}` | null;
|
|
6381
|
-
|
|
6381
|
+
eip7702auth?: {
|
|
6382
6382
|
nonce: number;
|
|
6383
6383
|
contractAddress: `0x${string}`;
|
|
6384
6384
|
chainId: number;
|
|
@@ -6399,7 +6399,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6399
6399
|
maxFeePerGas: bigint;
|
|
6400
6400
|
maxPriorityFeePerGas: bigint;
|
|
6401
6401
|
signature: `0x${string}`;
|
|
6402
|
-
|
|
6402
|
+
eip7702auth?: {
|
|
6403
6403
|
nonce: number;
|
|
6404
6404
|
contractAddress: `0x${string}`;
|
|
6405
6405
|
chainId: number;
|
|
@@ -6424,7 +6424,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6424
6424
|
paymasterPostOpGasLimit: bigint | null;
|
|
6425
6425
|
factoryData: `0x${string}` | null;
|
|
6426
6426
|
paymasterData: `0x${string}` | null;
|
|
6427
|
-
|
|
6427
|
+
eip7702auth?: {
|
|
6428
6428
|
nonce: number;
|
|
6429
6429
|
contractAddress: `0x${string}`;
|
|
6430
6430
|
chainId: number;
|
|
@@ -6454,7 +6454,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6454
6454
|
preVerificationGas?: string | number | bigint | undefined;
|
|
6455
6455
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
6456
6456
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
6457
|
-
|
|
6457
|
+
eip7702auth?: {
|
|
6458
6458
|
nonce: string | number | bigint;
|
|
6459
6459
|
contractAddress: string;
|
|
6460
6460
|
chainId: string | number | bigint;
|
|
@@ -6479,7 +6479,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6479
6479
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
6480
6480
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
6481
6481
|
paymasterData?: string | null | undefined;
|
|
6482
|
-
|
|
6482
|
+
eip7702auth?: {
|
|
6483
6483
|
nonce: string | number | bigint;
|
|
6484
6484
|
contractAddress: string;
|
|
6485
6485
|
chainId: string | number | bigint;
|
|
@@ -6500,7 +6500,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6500
6500
|
preVerificationGas?: string | number | bigint | undefined;
|
|
6501
6501
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
6502
6502
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
6503
|
-
|
|
6503
|
+
eip7702auth?: {
|
|
6504
6504
|
nonce: string | number | bigint;
|
|
6505
6505
|
contractAddress: string;
|
|
6506
6506
|
chainId: string | number | bigint;
|
|
@@ -6525,7 +6525,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6525
6525
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
6526
6526
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
6527
6527
|
paymasterData?: string | null | undefined;
|
|
6528
|
-
|
|
6528
|
+
eip7702auth?: {
|
|
6529
6529
|
nonce: string | number | bigint;
|
|
6530
6530
|
contractAddress: string;
|
|
6531
6531
|
chainId: string | number | bigint;
|
|
@@ -6556,7 +6556,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6556
6556
|
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
6557
6557
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
6558
6558
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
6559
|
-
|
|
6559
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
6560
6560
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
6561
6561
|
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>;
|
|
6562
6562
|
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>;
|
|
@@ -6593,7 +6593,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6593
6593
|
maxFeePerGas: bigint;
|
|
6594
6594
|
maxPriorityFeePerGas: bigint;
|
|
6595
6595
|
signature: `0x${string}`;
|
|
6596
|
-
|
|
6596
|
+
eip7702auth?: {
|
|
6597
6597
|
nonce: number;
|
|
6598
6598
|
contractAddress: `0x${string}`;
|
|
6599
6599
|
chainId: number;
|
|
@@ -6614,7 +6614,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6614
6614
|
maxFeePerGas: string | number | bigint;
|
|
6615
6615
|
maxPriorityFeePerGas: string | number | bigint;
|
|
6616
6616
|
signature: string;
|
|
6617
|
-
|
|
6617
|
+
eip7702auth?: {
|
|
6618
6618
|
nonce: string | number | bigint;
|
|
6619
6619
|
contractAddress: string;
|
|
6620
6620
|
chainId: string | number | bigint;
|
|
@@ -6635,7 +6635,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6635
6635
|
maxFeePerGas: bigint;
|
|
6636
6636
|
maxPriorityFeePerGas: bigint;
|
|
6637
6637
|
signature: `0x${string}`;
|
|
6638
|
-
|
|
6638
|
+
eip7702auth?: {
|
|
6639
6639
|
nonce: number;
|
|
6640
6640
|
contractAddress: `0x${string}`;
|
|
6641
6641
|
chainId: number;
|
|
@@ -6656,7 +6656,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6656
6656
|
maxFeePerGas: string | number | bigint;
|
|
6657
6657
|
maxPriorityFeePerGas: string | number | bigint;
|
|
6658
6658
|
signature: string;
|
|
6659
|
-
|
|
6659
|
+
eip7702auth?: {
|
|
6660
6660
|
nonce: string | number | bigint;
|
|
6661
6661
|
contractAddress: string;
|
|
6662
6662
|
chainId: string | number | bigint;
|
|
@@ -6681,7 +6681,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6681
6681
|
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>;
|
|
6682
6682
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
6683
6683
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
6684
|
-
|
|
6684
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
6685
6685
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
6686
6686
|
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>;
|
|
6687
6687
|
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>;
|
|
@@ -6722,7 +6722,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6722
6722
|
paymasterPostOpGasLimit: bigint | null;
|
|
6723
6723
|
factoryData: `0x${string}` | null;
|
|
6724
6724
|
paymasterData: `0x${string}` | null;
|
|
6725
|
-
|
|
6725
|
+
eip7702auth?: {
|
|
6726
6726
|
nonce: number;
|
|
6727
6727
|
contractAddress: `0x${string}`;
|
|
6728
6728
|
chainId: number;
|
|
@@ -6747,7 +6747,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6747
6747
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
6748
6748
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
6749
6749
|
paymasterData?: string | null | undefined;
|
|
6750
|
-
|
|
6750
|
+
eip7702auth?: {
|
|
6751
6751
|
nonce: string | number | bigint;
|
|
6752
6752
|
contractAddress: string;
|
|
6753
6753
|
chainId: string | number | bigint;
|
|
@@ -6772,7 +6772,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6772
6772
|
paymasterPostOpGasLimit: bigint | null;
|
|
6773
6773
|
factoryData: `0x${string}` | null;
|
|
6774
6774
|
paymasterData: `0x${string}` | null;
|
|
6775
|
-
|
|
6775
|
+
eip7702auth?: {
|
|
6776
6776
|
nonce: number;
|
|
6777
6777
|
contractAddress: `0x${string}`;
|
|
6778
6778
|
chainId: number;
|
|
@@ -6797,7 +6797,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6797
6797
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
6798
6798
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
6799
6799
|
paymasterData?: string | null | undefined;
|
|
6800
|
-
|
|
6800
|
+
eip7702auth?: {
|
|
6801
6801
|
nonce: string | number | bigint;
|
|
6802
6802
|
contractAddress: string;
|
|
6803
6803
|
chainId: string | number | bigint;
|
|
@@ -6821,7 +6821,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6821
6821
|
maxFeePerGas: bigint;
|
|
6822
6822
|
maxPriorityFeePerGas: bigint;
|
|
6823
6823
|
signature: `0x${string}`;
|
|
6824
|
-
|
|
6824
|
+
eip7702auth?: {
|
|
6825
6825
|
nonce: number;
|
|
6826
6826
|
contractAddress: `0x${string}`;
|
|
6827
6827
|
chainId: number;
|
|
@@ -6846,7 +6846,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6846
6846
|
paymasterPostOpGasLimit: bigint | null;
|
|
6847
6847
|
factoryData: `0x${string}` | null;
|
|
6848
6848
|
paymasterData: `0x${string}` | null;
|
|
6849
|
-
|
|
6849
|
+
eip7702auth?: {
|
|
6850
6850
|
nonce: number;
|
|
6851
6851
|
contractAddress: `0x${string}`;
|
|
6852
6852
|
chainId: number;
|
|
@@ -6870,7 +6870,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6870
6870
|
maxFeePerGas: string | number | bigint;
|
|
6871
6871
|
maxPriorityFeePerGas: string | number | bigint;
|
|
6872
6872
|
signature: string;
|
|
6873
|
-
|
|
6873
|
+
eip7702auth?: {
|
|
6874
6874
|
nonce: string | number | bigint;
|
|
6875
6875
|
contractAddress: string;
|
|
6876
6876
|
chainId: string | number | bigint;
|
|
@@ -6895,7 +6895,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6895
6895
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
6896
6896
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
6897
6897
|
paymasterData?: string | null | undefined;
|
|
6898
|
-
|
|
6898
|
+
eip7702auth?: {
|
|
6899
6899
|
nonce: string | number | bigint;
|
|
6900
6900
|
contractAddress: string;
|
|
6901
6901
|
chainId: string | number | bigint;
|
|
@@ -6922,7 +6922,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6922
6922
|
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
6923
6923
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
6924
6924
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
6925
|
-
|
|
6925
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
6926
6926
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
6927
6927
|
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>;
|
|
6928
6928
|
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>;
|
|
@@ -6959,7 +6959,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6959
6959
|
maxFeePerGas: bigint;
|
|
6960
6960
|
maxPriorityFeePerGas: bigint;
|
|
6961
6961
|
signature: `0x${string}`;
|
|
6962
|
-
|
|
6962
|
+
eip7702auth?: {
|
|
6963
6963
|
nonce: number;
|
|
6964
6964
|
contractAddress: `0x${string}`;
|
|
6965
6965
|
chainId: number;
|
|
@@ -6980,7 +6980,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
6980
6980
|
maxFeePerGas: string | number | bigint;
|
|
6981
6981
|
maxPriorityFeePerGas: string | number | bigint;
|
|
6982
6982
|
signature: string;
|
|
6983
|
-
|
|
6983
|
+
eip7702auth?: {
|
|
6984
6984
|
nonce: string | number | bigint;
|
|
6985
6985
|
contractAddress: string;
|
|
6986
6986
|
chainId: string | number | bigint;
|
|
@@ -7001,7 +7001,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
7001
7001
|
maxFeePerGas: bigint;
|
|
7002
7002
|
maxPriorityFeePerGas: bigint;
|
|
7003
7003
|
signature: `0x${string}`;
|
|
7004
|
-
|
|
7004
|
+
eip7702auth?: {
|
|
7005
7005
|
nonce: number;
|
|
7006
7006
|
contractAddress: `0x${string}`;
|
|
7007
7007
|
chainId: number;
|
|
@@ -7022,7 +7022,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
7022
7022
|
maxFeePerGas: string | number | bigint;
|
|
7023
7023
|
maxPriorityFeePerGas: string | number | bigint;
|
|
7024
7024
|
signature: string;
|
|
7025
|
-
|
|
7025
|
+
eip7702auth?: {
|
|
7026
7026
|
nonce: string | number | bigint;
|
|
7027
7027
|
contractAddress: string;
|
|
7028
7028
|
chainId: string | number | bigint;
|
|
@@ -7047,7 +7047,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
7047
7047
|
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>;
|
|
7048
7048
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
7049
7049
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
7050
|
-
|
|
7050
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
7051
7051
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
7052
7052
|
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>;
|
|
7053
7053
|
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>;
|
|
@@ -7088,7 +7088,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
7088
7088
|
paymasterPostOpGasLimit: bigint | null;
|
|
7089
7089
|
factoryData: `0x${string}` | null;
|
|
7090
7090
|
paymasterData: `0x${string}` | null;
|
|
7091
|
-
|
|
7091
|
+
eip7702auth?: {
|
|
7092
7092
|
nonce: number;
|
|
7093
7093
|
contractAddress: `0x${string}`;
|
|
7094
7094
|
chainId: number;
|
|
@@ -7113,7 +7113,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
7113
7113
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
7114
7114
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
7115
7115
|
paymasterData?: string | null | undefined;
|
|
7116
|
-
|
|
7116
|
+
eip7702auth?: {
|
|
7117
7117
|
nonce: string | number | bigint;
|
|
7118
7118
|
contractAddress: string;
|
|
7119
7119
|
chainId: string | number | bigint;
|
|
@@ -7138,7 +7138,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
7138
7138
|
paymasterPostOpGasLimit: bigint | null;
|
|
7139
7139
|
factoryData: `0x${string}` | null;
|
|
7140
7140
|
paymasterData: `0x${string}` | null;
|
|
7141
|
-
|
|
7141
|
+
eip7702auth?: {
|
|
7142
7142
|
nonce: number;
|
|
7143
7143
|
contractAddress: `0x${string}`;
|
|
7144
7144
|
chainId: number;
|
|
@@ -7163,7 +7163,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
7163
7163
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
7164
7164
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
7165
7165
|
paymasterData?: string | null | undefined;
|
|
7166
|
-
|
|
7166
|
+
eip7702auth?: {
|
|
7167
7167
|
nonce: string | number | bigint;
|
|
7168
7168
|
contractAddress: string;
|
|
7169
7169
|
chainId: string | number | bigint;
|
|
@@ -7191,7 +7191,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
7191
7191
|
maxFeePerGas: bigint;
|
|
7192
7192
|
maxPriorityFeePerGas: bigint;
|
|
7193
7193
|
signature: `0x${string}`;
|
|
7194
|
-
|
|
7194
|
+
eip7702auth?: {
|
|
7195
7195
|
nonce: number;
|
|
7196
7196
|
contractAddress: `0x${string}`;
|
|
7197
7197
|
chainId: number;
|
|
@@ -7216,7 +7216,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
7216
7216
|
paymasterPostOpGasLimit: bigint | null;
|
|
7217
7217
|
factoryData: `0x${string}` | null;
|
|
7218
7218
|
paymasterData: `0x${string}` | null;
|
|
7219
|
-
|
|
7219
|
+
eip7702auth?: {
|
|
7220
7220
|
nonce: number;
|
|
7221
7221
|
contractAddress: `0x${string}`;
|
|
7222
7222
|
chainId: number;
|
|
@@ -7237,7 +7237,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
7237
7237
|
maxFeePerGas: bigint;
|
|
7238
7238
|
maxPriorityFeePerGas: bigint;
|
|
7239
7239
|
signature: `0x${string}`;
|
|
7240
|
-
|
|
7240
|
+
eip7702auth?: {
|
|
7241
7241
|
nonce: number;
|
|
7242
7242
|
contractAddress: `0x${string}`;
|
|
7243
7243
|
chainId: number;
|
|
@@ -7262,7 +7262,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
7262
7262
|
paymasterPostOpGasLimit: bigint | null;
|
|
7263
7263
|
factoryData: `0x${string}` | null;
|
|
7264
7264
|
paymasterData: `0x${string}` | null;
|
|
7265
|
-
|
|
7265
|
+
eip7702auth?: {
|
|
7266
7266
|
nonce: number;
|
|
7267
7267
|
contractAddress: `0x${string}`;
|
|
7268
7268
|
chainId: number;
|
|
@@ -7289,7 +7289,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
7289
7289
|
maxFeePerGas: string | number | bigint;
|
|
7290
7290
|
maxPriorityFeePerGas: string | number | bigint;
|
|
7291
7291
|
signature: string;
|
|
7292
|
-
|
|
7292
|
+
eip7702auth?: {
|
|
7293
7293
|
nonce: string | number | bigint;
|
|
7294
7294
|
contractAddress: string;
|
|
7295
7295
|
chainId: string | number | bigint;
|
|
@@ -7314,7 +7314,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
7314
7314
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
7315
7315
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
7316
7316
|
paymasterData?: string | null | undefined;
|
|
7317
|
-
|
|
7317
|
+
eip7702auth?: {
|
|
7318
7318
|
nonce: string | number | bigint;
|
|
7319
7319
|
contractAddress: string;
|
|
7320
7320
|
chainId: string | number | bigint;
|
|
@@ -7335,7 +7335,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
7335
7335
|
maxFeePerGas: string | number | bigint;
|
|
7336
7336
|
maxPriorityFeePerGas: string | number | bigint;
|
|
7337
7337
|
signature: string;
|
|
7338
|
-
|
|
7338
|
+
eip7702auth?: {
|
|
7339
7339
|
nonce: string | number | bigint;
|
|
7340
7340
|
contractAddress: string;
|
|
7341
7341
|
chainId: string | number | bigint;
|
|
@@ -7360,7 +7360,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
7360
7360
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
7361
7361
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
7362
7362
|
paymasterData?: string | null | undefined;
|
|
7363
|
-
|
|
7363
|
+
eip7702auth?: {
|
|
7364
7364
|
nonce: string | number | bigint;
|
|
7365
7365
|
contractAddress: string;
|
|
7366
7366
|
chainId: string | number | bigint;
|
|
@@ -7639,7 +7639,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
7639
7639
|
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
7640
7640
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
7641
7641
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
7642
|
-
|
|
7642
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
7643
7643
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
7644
7644
|
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>;
|
|
7645
7645
|
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>;
|
|
@@ -7676,7 +7676,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
7676
7676
|
maxFeePerGas: bigint;
|
|
7677
7677
|
maxPriorityFeePerGas: bigint;
|
|
7678
7678
|
signature: `0x${string}`;
|
|
7679
|
-
|
|
7679
|
+
eip7702auth?: {
|
|
7680
7680
|
nonce: number;
|
|
7681
7681
|
contractAddress: `0x${string}`;
|
|
7682
7682
|
chainId: number;
|
|
@@ -7697,7 +7697,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
7697
7697
|
maxFeePerGas: string | number | bigint;
|
|
7698
7698
|
maxPriorityFeePerGas: string | number | bigint;
|
|
7699
7699
|
signature: string;
|
|
7700
|
-
|
|
7700
|
+
eip7702auth?: {
|
|
7701
7701
|
nonce: string | number | bigint;
|
|
7702
7702
|
contractAddress: string;
|
|
7703
7703
|
chainId: string | number | bigint;
|
|
@@ -7718,7 +7718,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
7718
7718
|
maxFeePerGas: bigint;
|
|
7719
7719
|
maxPriorityFeePerGas: bigint;
|
|
7720
7720
|
signature: `0x${string}`;
|
|
7721
|
-
|
|
7721
|
+
eip7702auth?: {
|
|
7722
7722
|
nonce: number;
|
|
7723
7723
|
contractAddress: `0x${string}`;
|
|
7724
7724
|
chainId: number;
|
|
@@ -7739,7 +7739,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
7739
7739
|
maxFeePerGas: string | number | bigint;
|
|
7740
7740
|
maxPriorityFeePerGas: string | number | bigint;
|
|
7741
7741
|
signature: string;
|
|
7742
|
-
|
|
7742
|
+
eip7702auth?: {
|
|
7743
7743
|
nonce: string | number | bigint;
|
|
7744
7744
|
contractAddress: string;
|
|
7745
7745
|
chainId: string | number | bigint;
|
|
@@ -7764,7 +7764,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
7764
7764
|
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>;
|
|
7765
7765
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
7766
7766
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
7767
|
-
|
|
7767
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
7768
7768
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
7769
7769
|
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>;
|
|
7770
7770
|
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>;
|
|
@@ -7805,7 +7805,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
7805
7805
|
paymasterPostOpGasLimit: bigint | null;
|
|
7806
7806
|
factoryData: `0x${string}` | null;
|
|
7807
7807
|
paymasterData: `0x${string}` | null;
|
|
7808
|
-
|
|
7808
|
+
eip7702auth?: {
|
|
7809
7809
|
nonce: number;
|
|
7810
7810
|
contractAddress: `0x${string}`;
|
|
7811
7811
|
chainId: number;
|
|
@@ -7830,7 +7830,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
7830
7830
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
7831
7831
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
7832
7832
|
paymasterData?: string | null | undefined;
|
|
7833
|
-
|
|
7833
|
+
eip7702auth?: {
|
|
7834
7834
|
nonce: string | number | bigint;
|
|
7835
7835
|
contractAddress: string;
|
|
7836
7836
|
chainId: string | number | bigint;
|
|
@@ -7855,7 +7855,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
7855
7855
|
paymasterPostOpGasLimit: bigint | null;
|
|
7856
7856
|
factoryData: `0x${string}` | null;
|
|
7857
7857
|
paymasterData: `0x${string}` | null;
|
|
7858
|
-
|
|
7858
|
+
eip7702auth?: {
|
|
7859
7859
|
nonce: number;
|
|
7860
7860
|
contractAddress: `0x${string}`;
|
|
7861
7861
|
chainId: number;
|
|
@@ -7880,7 +7880,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
7880
7880
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
7881
7881
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
7882
7882
|
paymasterData?: string | null | undefined;
|
|
7883
|
-
|
|
7883
|
+
eip7702auth?: {
|
|
7884
7884
|
nonce: string | number | bigint;
|
|
7885
7885
|
contractAddress: string;
|
|
7886
7886
|
chainId: string | number | bigint;
|
|
@@ -8120,7 +8120,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
8120
8120
|
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
8121
8121
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
8122
8122
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
8123
|
-
|
|
8123
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
8124
8124
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
8125
8125
|
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>;
|
|
8126
8126
|
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>;
|
|
@@ -8157,7 +8157,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
8157
8157
|
maxFeePerGas: bigint;
|
|
8158
8158
|
maxPriorityFeePerGas: bigint;
|
|
8159
8159
|
signature: `0x${string}`;
|
|
8160
|
-
|
|
8160
|
+
eip7702auth?: {
|
|
8161
8161
|
nonce: number;
|
|
8162
8162
|
contractAddress: `0x${string}`;
|
|
8163
8163
|
chainId: number;
|
|
@@ -8178,7 +8178,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
8178
8178
|
maxFeePerGas: string | number | bigint;
|
|
8179
8179
|
maxPriorityFeePerGas: string | number | bigint;
|
|
8180
8180
|
signature: string;
|
|
8181
|
-
|
|
8181
|
+
eip7702auth?: {
|
|
8182
8182
|
nonce: string | number | bigint;
|
|
8183
8183
|
contractAddress: string;
|
|
8184
8184
|
chainId: string | number | bigint;
|
|
@@ -8199,7 +8199,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
8199
8199
|
maxFeePerGas: bigint;
|
|
8200
8200
|
maxPriorityFeePerGas: bigint;
|
|
8201
8201
|
signature: `0x${string}`;
|
|
8202
|
-
|
|
8202
|
+
eip7702auth?: {
|
|
8203
8203
|
nonce: number;
|
|
8204
8204
|
contractAddress: `0x${string}`;
|
|
8205
8205
|
chainId: number;
|
|
@@ -8220,7 +8220,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
8220
8220
|
maxFeePerGas: string | number | bigint;
|
|
8221
8221
|
maxPriorityFeePerGas: string | number | bigint;
|
|
8222
8222
|
signature: string;
|
|
8223
|
-
|
|
8223
|
+
eip7702auth?: {
|
|
8224
8224
|
nonce: string | number | bigint;
|
|
8225
8225
|
contractAddress: string;
|
|
8226
8226
|
chainId: string | number | bigint;
|
|
@@ -8245,7 +8245,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
8245
8245
|
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>;
|
|
8246
8246
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
8247
8247
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
8248
|
-
|
|
8248
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
8249
8249
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
8250
8250
|
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>;
|
|
8251
8251
|
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>;
|
|
@@ -8286,7 +8286,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
8286
8286
|
paymasterPostOpGasLimit: bigint | null;
|
|
8287
8287
|
factoryData: `0x${string}` | null;
|
|
8288
8288
|
paymasterData: `0x${string}` | null;
|
|
8289
|
-
|
|
8289
|
+
eip7702auth?: {
|
|
8290
8290
|
nonce: number;
|
|
8291
8291
|
contractAddress: `0x${string}`;
|
|
8292
8292
|
chainId: number;
|
|
@@ -8311,7 +8311,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
8311
8311
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
8312
8312
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
8313
8313
|
paymasterData?: string | null | undefined;
|
|
8314
|
-
|
|
8314
|
+
eip7702auth?: {
|
|
8315
8315
|
nonce: string | number | bigint;
|
|
8316
8316
|
contractAddress: string;
|
|
8317
8317
|
chainId: string | number | bigint;
|
|
@@ -8336,7 +8336,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
8336
8336
|
paymasterPostOpGasLimit: bigint | null;
|
|
8337
8337
|
factoryData: `0x${string}` | null;
|
|
8338
8338
|
paymasterData: `0x${string}` | null;
|
|
8339
|
-
|
|
8339
|
+
eip7702auth?: {
|
|
8340
8340
|
nonce: number;
|
|
8341
8341
|
contractAddress: `0x${string}`;
|
|
8342
8342
|
chainId: number;
|
|
@@ -8361,7 +8361,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
8361
8361
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
8362
8362
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
8363
8363
|
paymasterData?: string | null | undefined;
|
|
8364
|
-
|
|
8364
|
+
eip7702auth?: {
|
|
8365
8365
|
nonce: string | number | bigint;
|
|
8366
8366
|
contractAddress: string;
|
|
8367
8367
|
chainId: string | number | bigint;
|
|
@@ -8599,7 +8599,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
8599
8599
|
maxFeePerGas: bigint;
|
|
8600
8600
|
maxPriorityFeePerGas: bigint;
|
|
8601
8601
|
signature: `0x${string}`;
|
|
8602
|
-
|
|
8602
|
+
eip7702auth?: {
|
|
8603
8603
|
nonce: number;
|
|
8604
8604
|
contractAddress: `0x${string}`;
|
|
8605
8605
|
chainId: number;
|
|
@@ -8624,7 +8624,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
8624
8624
|
paymasterPostOpGasLimit: bigint | null;
|
|
8625
8625
|
factoryData: `0x${string}` | null;
|
|
8626
8626
|
paymasterData: `0x${string}` | null;
|
|
8627
|
-
|
|
8627
|
+
eip7702auth?: {
|
|
8628
8628
|
nonce: number;
|
|
8629
8629
|
contractAddress: `0x${string}`;
|
|
8630
8630
|
chainId: number;
|
|
@@ -8648,7 +8648,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
8648
8648
|
maxFeePerGas: string | number | bigint;
|
|
8649
8649
|
maxPriorityFeePerGas: string | number | bigint;
|
|
8650
8650
|
signature: string;
|
|
8651
|
-
|
|
8651
|
+
eip7702auth?: {
|
|
8652
8652
|
nonce: string | number | bigint;
|
|
8653
8653
|
contractAddress: string;
|
|
8654
8654
|
chainId: string | number | bigint;
|
|
@@ -8673,7 +8673,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
8673
8673
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
8674
8674
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
8675
8675
|
paymasterData?: string | null | undefined;
|
|
8676
|
-
|
|
8676
|
+
eip7702auth?: {
|
|
8677
8677
|
nonce: string | number | bigint;
|
|
8678
8678
|
contractAddress: string;
|
|
8679
8679
|
chainId: string | number | bigint;
|
|
@@ -8698,7 +8698,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
8698
8698
|
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
8699
8699
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
8700
8700
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
8701
|
-
|
|
8701
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
8702
8702
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
8703
8703
|
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>;
|
|
8704
8704
|
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>;
|
|
@@ -8735,7 +8735,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
8735
8735
|
maxFeePerGas: bigint;
|
|
8736
8736
|
maxPriorityFeePerGas: bigint;
|
|
8737
8737
|
signature: `0x${string}`;
|
|
8738
|
-
|
|
8738
|
+
eip7702auth?: {
|
|
8739
8739
|
nonce: number;
|
|
8740
8740
|
contractAddress: `0x${string}`;
|
|
8741
8741
|
chainId: number;
|
|
@@ -8756,7 +8756,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
8756
8756
|
maxFeePerGas: string | number | bigint;
|
|
8757
8757
|
maxPriorityFeePerGas: string | number | bigint;
|
|
8758
8758
|
signature: string;
|
|
8759
|
-
|
|
8759
|
+
eip7702auth?: {
|
|
8760
8760
|
nonce: string | number | bigint;
|
|
8761
8761
|
contractAddress: string;
|
|
8762
8762
|
chainId: string | number | bigint;
|
|
@@ -8777,7 +8777,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
8777
8777
|
maxFeePerGas: bigint;
|
|
8778
8778
|
maxPriorityFeePerGas: bigint;
|
|
8779
8779
|
signature: `0x${string}`;
|
|
8780
|
-
|
|
8780
|
+
eip7702auth?: {
|
|
8781
8781
|
nonce: number;
|
|
8782
8782
|
contractAddress: `0x${string}`;
|
|
8783
8783
|
chainId: number;
|
|
@@ -8798,7 +8798,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
8798
8798
|
maxFeePerGas: string | number | bigint;
|
|
8799
8799
|
maxPriorityFeePerGas: string | number | bigint;
|
|
8800
8800
|
signature: string;
|
|
8801
|
-
|
|
8801
|
+
eip7702auth?: {
|
|
8802
8802
|
nonce: string | number | bigint;
|
|
8803
8803
|
contractAddress: string;
|
|
8804
8804
|
chainId: string | number | bigint;
|
|
@@ -8823,7 +8823,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
8823
8823
|
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>;
|
|
8824
8824
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
8825
8825
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
8826
|
-
|
|
8826
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
8827
8827
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
8828
8828
|
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>;
|
|
8829
8829
|
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>;
|
|
@@ -8864,7 +8864,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
8864
8864
|
paymasterPostOpGasLimit: bigint | null;
|
|
8865
8865
|
factoryData: `0x${string}` | null;
|
|
8866
8866
|
paymasterData: `0x${string}` | null;
|
|
8867
|
-
|
|
8867
|
+
eip7702auth?: {
|
|
8868
8868
|
nonce: number;
|
|
8869
8869
|
contractAddress: `0x${string}`;
|
|
8870
8870
|
chainId: number;
|
|
@@ -8889,7 +8889,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
8889
8889
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
8890
8890
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
8891
8891
|
paymasterData?: string | null | undefined;
|
|
8892
|
-
|
|
8892
|
+
eip7702auth?: {
|
|
8893
8893
|
nonce: string | number | bigint;
|
|
8894
8894
|
contractAddress: string;
|
|
8895
8895
|
chainId: string | number | bigint;
|
|
@@ -8914,7 +8914,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
8914
8914
|
paymasterPostOpGasLimit: bigint | null;
|
|
8915
8915
|
factoryData: `0x${string}` | null;
|
|
8916
8916
|
paymasterData: `0x${string}` | null;
|
|
8917
|
-
|
|
8917
|
+
eip7702auth?: {
|
|
8918
8918
|
nonce: number;
|
|
8919
8919
|
contractAddress: `0x${string}`;
|
|
8920
8920
|
chainId: number;
|
|
@@ -8939,7 +8939,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
8939
8939
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
8940
8940
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
8941
8941
|
paymasterData?: string | null | undefined;
|
|
8942
|
-
|
|
8942
|
+
eip7702auth?: {
|
|
8943
8943
|
nonce: string | number | bigint;
|
|
8944
8944
|
contractAddress: string;
|
|
8945
8945
|
chainId: string | number | bigint;
|
|
@@ -8963,7 +8963,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
8963
8963
|
maxFeePerGas: bigint;
|
|
8964
8964
|
maxPriorityFeePerGas: bigint;
|
|
8965
8965
|
signature: `0x${string}`;
|
|
8966
|
-
|
|
8966
|
+
eip7702auth?: {
|
|
8967
8967
|
nonce: number;
|
|
8968
8968
|
contractAddress: `0x${string}`;
|
|
8969
8969
|
chainId: number;
|
|
@@ -8988,7 +8988,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
8988
8988
|
paymasterPostOpGasLimit: bigint | null;
|
|
8989
8989
|
factoryData: `0x${string}` | null;
|
|
8990
8990
|
paymasterData: `0x${string}` | null;
|
|
8991
|
-
|
|
8991
|
+
eip7702auth?: {
|
|
8992
8992
|
nonce: number;
|
|
8993
8993
|
contractAddress: `0x${string}`;
|
|
8994
8994
|
chainId: number;
|
|
@@ -9012,7 +9012,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
9012
9012
|
maxFeePerGas: string | number | bigint;
|
|
9013
9013
|
maxPriorityFeePerGas: string | number | bigint;
|
|
9014
9014
|
signature: string;
|
|
9015
|
-
|
|
9015
|
+
eip7702auth?: {
|
|
9016
9016
|
nonce: string | number | bigint;
|
|
9017
9017
|
contractAddress: string;
|
|
9018
9018
|
chainId: string | number | bigint;
|
|
@@ -9037,7 +9037,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
9037
9037
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
9038
9038
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
9039
9039
|
paymasterData?: string | null | undefined;
|
|
9040
|
-
|
|
9040
|
+
eip7702auth?: {
|
|
9041
9041
|
nonce: string | number | bigint;
|
|
9042
9042
|
contractAddress: string;
|
|
9043
9043
|
chainId: string | number | bigint;
|
|
@@ -9062,7 +9062,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
9062
9062
|
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>>;
|
|
9063
9063
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
9064
9064
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
9065
|
-
|
|
9065
|
+
eip7702auth: z.ZodOptional<z.ZodObject<{
|
|
9066
9066
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
9067
9067
|
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>;
|
|
9068
9068
|
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>;
|
|
@@ -9099,7 +9099,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
9099
9099
|
maxFeePerGas: bigint;
|
|
9100
9100
|
maxPriorityFeePerGas: bigint;
|
|
9101
9101
|
signature: `0x${string}`;
|
|
9102
|
-
|
|
9102
|
+
eip7702auth?: {
|
|
9103
9103
|
nonce: number;
|
|
9104
9104
|
contractAddress: `0x${string}`;
|
|
9105
9105
|
chainId: number;
|
|
@@ -9120,7 +9120,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
9120
9120
|
preVerificationGas?: string | number | bigint | undefined;
|
|
9121
9121
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
9122
9122
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
9123
|
-
|
|
9123
|
+
eip7702auth?: {
|
|
9124
9124
|
nonce: string | number | bigint;
|
|
9125
9125
|
contractAddress: string;
|
|
9126
9126
|
chainId: string | number | bigint;
|
|
@@ -9141,7 +9141,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
9141
9141
|
maxFeePerGas: bigint;
|
|
9142
9142
|
maxPriorityFeePerGas: bigint;
|
|
9143
9143
|
signature: `0x${string}`;
|
|
9144
|
-
|
|
9144
|
+
eip7702auth?: {
|
|
9145
9145
|
nonce: number;
|
|
9146
9146
|
contractAddress: `0x${string}`;
|
|
9147
9147
|
chainId: number;
|
|
@@ -9162,7 +9162,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
9162
9162
|
preVerificationGas?: string | number | bigint | undefined;
|
|
9163
9163
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
9164
9164
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
9165
|
-
|
|
9165
|
+
eip7702auth?: {
|
|
9166
9166
|
nonce: string | number | bigint;
|
|
9167
9167
|
contractAddress: string;
|
|
9168
9168
|
chainId: string | number | bigint;
|
|
@@ -9187,7 +9187,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
9187
9187
|
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>;
|
|
9188
9188
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
9189
9189
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
9190
|
-
|
|
9190
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
9191
9191
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
9192
9192
|
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>;
|
|
9193
9193
|
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>;
|
|
@@ -9228,7 +9228,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
9228
9228
|
paymasterPostOpGasLimit: bigint | null;
|
|
9229
9229
|
factoryData: `0x${string}` | null;
|
|
9230
9230
|
paymasterData: `0x${string}` | null;
|
|
9231
|
-
|
|
9231
|
+
eip7702auth?: {
|
|
9232
9232
|
nonce: number;
|
|
9233
9233
|
contractAddress: `0x${string}`;
|
|
9234
9234
|
chainId: number;
|
|
@@ -9253,7 +9253,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
9253
9253
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
9254
9254
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
9255
9255
|
paymasterData?: string | null | undefined;
|
|
9256
|
-
|
|
9256
|
+
eip7702auth?: {
|
|
9257
9257
|
nonce: string | number | bigint;
|
|
9258
9258
|
contractAddress: string;
|
|
9259
9259
|
chainId: string | number | bigint;
|
|
@@ -9278,7 +9278,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
9278
9278
|
paymasterPostOpGasLimit: bigint | null;
|
|
9279
9279
|
factoryData: `0x${string}` | null;
|
|
9280
9280
|
paymasterData: `0x${string}` | null;
|
|
9281
|
-
|
|
9281
|
+
eip7702auth?: {
|
|
9282
9282
|
nonce: number;
|
|
9283
9283
|
contractAddress: `0x${string}`;
|
|
9284
9284
|
chainId: number;
|
|
@@ -9303,7 +9303,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
9303
9303
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
9304
9304
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
9305
9305
|
paymasterData?: string | null | undefined;
|
|
9306
|
-
|
|
9306
|
+
eip7702auth?: {
|
|
9307
9307
|
nonce: string | number | bigint;
|
|
9308
9308
|
contractAddress: string;
|
|
9309
9309
|
chainId: string | number | bigint;
|
|
@@ -9324,7 +9324,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
9324
9324
|
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>>;
|
|
9325
9325
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
9326
9326
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
9327
|
-
|
|
9327
|
+
eip7702auth: z.ZodOptional<z.ZodObject<{
|
|
9328
9328
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
9329
9329
|
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>;
|
|
9330
9330
|
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>;
|
|
@@ -9361,7 +9361,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
9361
9361
|
maxFeePerGas: bigint;
|
|
9362
9362
|
maxPriorityFeePerGas: bigint;
|
|
9363
9363
|
signature: `0x${string}`;
|
|
9364
|
-
|
|
9364
|
+
eip7702auth?: {
|
|
9365
9365
|
nonce: number;
|
|
9366
9366
|
contractAddress: `0x${string}`;
|
|
9367
9367
|
chainId: number;
|
|
@@ -9382,7 +9382,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
9382
9382
|
preVerificationGas?: string | number | bigint | undefined;
|
|
9383
9383
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
9384
9384
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
9385
|
-
|
|
9385
|
+
eip7702auth?: {
|
|
9386
9386
|
nonce: string | number | bigint;
|
|
9387
9387
|
contractAddress: string;
|
|
9388
9388
|
chainId: string | number | bigint;
|
|
@@ -9403,7 +9403,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
9403
9403
|
maxFeePerGas: bigint;
|
|
9404
9404
|
maxPriorityFeePerGas: bigint;
|
|
9405
9405
|
signature: `0x${string}`;
|
|
9406
|
-
|
|
9406
|
+
eip7702auth?: {
|
|
9407
9407
|
nonce: number;
|
|
9408
9408
|
contractAddress: `0x${string}`;
|
|
9409
9409
|
chainId: number;
|
|
@@ -9424,7 +9424,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
9424
9424
|
preVerificationGas?: string | number | bigint | undefined;
|
|
9425
9425
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
9426
9426
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
9427
|
-
|
|
9427
|
+
eip7702auth?: {
|
|
9428
9428
|
nonce: string | number | bigint;
|
|
9429
9429
|
contractAddress: string;
|
|
9430
9430
|
chainId: string | number | bigint;
|
|
@@ -9449,7 +9449,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
9449
9449
|
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>;
|
|
9450
9450
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
9451
9451
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
9452
|
-
|
|
9452
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
9453
9453
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
9454
9454
|
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>;
|
|
9455
9455
|
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>;
|
|
@@ -9490,7 +9490,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
9490
9490
|
paymasterPostOpGasLimit: bigint | null;
|
|
9491
9491
|
factoryData: `0x${string}` | null;
|
|
9492
9492
|
paymasterData: `0x${string}` | null;
|
|
9493
|
-
|
|
9493
|
+
eip7702auth?: {
|
|
9494
9494
|
nonce: number;
|
|
9495
9495
|
contractAddress: `0x${string}`;
|
|
9496
9496
|
chainId: number;
|
|
@@ -9515,7 +9515,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
9515
9515
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
9516
9516
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
9517
9517
|
paymasterData?: string | null | undefined;
|
|
9518
|
-
|
|
9518
|
+
eip7702auth?: {
|
|
9519
9519
|
nonce: string | number | bigint;
|
|
9520
9520
|
contractAddress: string;
|
|
9521
9521
|
chainId: string | number | bigint;
|
|
@@ -9540,7 +9540,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
9540
9540
|
paymasterPostOpGasLimit: bigint | null;
|
|
9541
9541
|
factoryData: `0x${string}` | null;
|
|
9542
9542
|
paymasterData: `0x${string}` | null;
|
|
9543
|
-
|
|
9543
|
+
eip7702auth?: {
|
|
9544
9544
|
nonce: number;
|
|
9545
9545
|
contractAddress: `0x${string}`;
|
|
9546
9546
|
chainId: number;
|
|
@@ -9565,7 +9565,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
9565
9565
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
9566
9566
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
9567
9567
|
paymasterData?: string | null | undefined;
|
|
9568
|
-
|
|
9568
|
+
eip7702auth?: {
|
|
9569
9569
|
nonce: string | number | bigint;
|
|
9570
9570
|
contractAddress: string;
|
|
9571
9571
|
chainId: string | number | bigint;
|
|
@@ -9640,7 +9640,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
9640
9640
|
maxFeePerGas: bigint;
|
|
9641
9641
|
maxPriorityFeePerGas: bigint;
|
|
9642
9642
|
signature: `0x${string}`;
|
|
9643
|
-
|
|
9643
|
+
eip7702auth?: {
|
|
9644
9644
|
nonce: number;
|
|
9645
9645
|
contractAddress: `0x${string}`;
|
|
9646
9646
|
chainId: number;
|
|
@@ -9665,7 +9665,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
9665
9665
|
paymasterPostOpGasLimit: bigint | null;
|
|
9666
9666
|
factoryData: `0x${string}` | null;
|
|
9667
9667
|
paymasterData: `0x${string}` | null;
|
|
9668
|
-
|
|
9668
|
+
eip7702auth?: {
|
|
9669
9669
|
nonce: number;
|
|
9670
9670
|
contractAddress: `0x${string}`;
|
|
9671
9671
|
chainId: number;
|
|
@@ -9686,7 +9686,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
9686
9686
|
maxFeePerGas: bigint;
|
|
9687
9687
|
maxPriorityFeePerGas: bigint;
|
|
9688
9688
|
signature: `0x${string}`;
|
|
9689
|
-
|
|
9689
|
+
eip7702auth?: {
|
|
9690
9690
|
nonce: number;
|
|
9691
9691
|
contractAddress: `0x${string}`;
|
|
9692
9692
|
chainId: number;
|
|
@@ -9711,7 +9711,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
9711
9711
|
paymasterPostOpGasLimit: bigint | null;
|
|
9712
9712
|
factoryData: `0x${string}` | null;
|
|
9713
9713
|
paymasterData: `0x${string}` | null;
|
|
9714
|
-
|
|
9714
|
+
eip7702auth?: {
|
|
9715
9715
|
nonce: number;
|
|
9716
9716
|
contractAddress: `0x${string}`;
|
|
9717
9717
|
chainId: number;
|
|
@@ -9741,7 +9741,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
9741
9741
|
preVerificationGas?: string | number | bigint | undefined;
|
|
9742
9742
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
9743
9743
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
9744
|
-
|
|
9744
|
+
eip7702auth?: {
|
|
9745
9745
|
nonce: string | number | bigint;
|
|
9746
9746
|
contractAddress: string;
|
|
9747
9747
|
chainId: string | number | bigint;
|
|
@@ -9766,7 +9766,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
9766
9766
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
9767
9767
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
9768
9768
|
paymasterData?: string | null | undefined;
|
|
9769
|
-
|
|
9769
|
+
eip7702auth?: {
|
|
9770
9770
|
nonce: string | number | bigint;
|
|
9771
9771
|
contractAddress: string;
|
|
9772
9772
|
chainId: string | number | bigint;
|
|
@@ -9787,7 +9787,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
9787
9787
|
preVerificationGas?: string | number | bigint | undefined;
|
|
9788
9788
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
9789
9789
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
9790
|
-
|
|
9790
|
+
eip7702auth?: {
|
|
9791
9791
|
nonce: string | number | bigint;
|
|
9792
9792
|
contractAddress: string;
|
|
9793
9793
|
chainId: string | number | bigint;
|
|
@@ -9812,7 +9812,7 @@ export declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.
|
|
|
9812
9812
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
9813
9813
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
9814
9814
|
paymasterData?: string | null | undefined;
|
|
9815
|
-
|
|
9815
|
+
eip7702auth?: {
|
|
9816
9816
|
nonce: string | number | bigint;
|
|
9817
9817
|
contractAddress: string;
|
|
9818
9818
|
chainId: string | number | bigint;
|
|
@@ -9869,7 +9869,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
9869
9869
|
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>>;
|
|
9870
9870
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
9871
9871
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
9872
|
-
|
|
9872
|
+
eip7702auth: z.ZodOptional<z.ZodObject<{
|
|
9873
9873
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
9874
9874
|
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>;
|
|
9875
9875
|
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>;
|
|
@@ -9906,7 +9906,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
9906
9906
|
maxFeePerGas: bigint;
|
|
9907
9907
|
maxPriorityFeePerGas: bigint;
|
|
9908
9908
|
signature: `0x${string}`;
|
|
9909
|
-
|
|
9909
|
+
eip7702auth?: {
|
|
9910
9910
|
nonce: number;
|
|
9911
9911
|
contractAddress: `0x${string}`;
|
|
9912
9912
|
chainId: number;
|
|
@@ -9927,7 +9927,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
9927
9927
|
preVerificationGas?: string | number | bigint | undefined;
|
|
9928
9928
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
9929
9929
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
9930
|
-
|
|
9930
|
+
eip7702auth?: {
|
|
9931
9931
|
nonce: string | number | bigint;
|
|
9932
9932
|
contractAddress: string;
|
|
9933
9933
|
chainId: string | number | bigint;
|
|
@@ -9948,7 +9948,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
9948
9948
|
maxFeePerGas: bigint;
|
|
9949
9949
|
maxPriorityFeePerGas: bigint;
|
|
9950
9950
|
signature: `0x${string}`;
|
|
9951
|
-
|
|
9951
|
+
eip7702auth?: {
|
|
9952
9952
|
nonce: number;
|
|
9953
9953
|
contractAddress: `0x${string}`;
|
|
9954
9954
|
chainId: number;
|
|
@@ -9969,7 +9969,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
9969
9969
|
preVerificationGas?: string | number | bigint | undefined;
|
|
9970
9970
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
9971
9971
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
9972
|
-
|
|
9972
|
+
eip7702auth?: {
|
|
9973
9973
|
nonce: string | number | bigint;
|
|
9974
9974
|
contractAddress: string;
|
|
9975
9975
|
chainId: string | number | bigint;
|
|
@@ -9994,7 +9994,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
9994
9994
|
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>;
|
|
9995
9995
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
9996
9996
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
9997
|
-
|
|
9997
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
9998
9998
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
9999
9999
|
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>;
|
|
10000
10000
|
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>;
|
|
@@ -10035,7 +10035,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10035
10035
|
paymasterPostOpGasLimit: bigint | null;
|
|
10036
10036
|
factoryData: `0x${string}` | null;
|
|
10037
10037
|
paymasterData: `0x${string}` | null;
|
|
10038
|
-
|
|
10038
|
+
eip7702auth?: {
|
|
10039
10039
|
nonce: number;
|
|
10040
10040
|
contractAddress: `0x${string}`;
|
|
10041
10041
|
chainId: number;
|
|
@@ -10060,7 +10060,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10060
10060
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
10061
10061
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
10062
10062
|
paymasterData?: string | null | undefined;
|
|
10063
|
-
|
|
10063
|
+
eip7702auth?: {
|
|
10064
10064
|
nonce: string | number | bigint;
|
|
10065
10065
|
contractAddress: string;
|
|
10066
10066
|
chainId: string | number | bigint;
|
|
@@ -10085,7 +10085,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10085
10085
|
paymasterPostOpGasLimit: bigint | null;
|
|
10086
10086
|
factoryData: `0x${string}` | null;
|
|
10087
10087
|
paymasterData: `0x${string}` | null;
|
|
10088
|
-
|
|
10088
|
+
eip7702auth?: {
|
|
10089
10089
|
nonce: number;
|
|
10090
10090
|
contractAddress: `0x${string}`;
|
|
10091
10091
|
chainId: number;
|
|
@@ -10110,7 +10110,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10110
10110
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
10111
10111
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
10112
10112
|
paymasterData?: string | null | undefined;
|
|
10113
|
-
|
|
10113
|
+
eip7702auth?: {
|
|
10114
10114
|
nonce: string | number | bigint;
|
|
10115
10115
|
contractAddress: string;
|
|
10116
10116
|
chainId: string | number | bigint;
|
|
@@ -10131,7 +10131,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10131
10131
|
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>>;
|
|
10132
10132
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
10133
10133
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
10134
|
-
|
|
10134
|
+
eip7702auth: z.ZodOptional<z.ZodObject<{
|
|
10135
10135
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
10136
10136
|
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>;
|
|
10137
10137
|
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>;
|
|
@@ -10168,7 +10168,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10168
10168
|
maxFeePerGas: bigint;
|
|
10169
10169
|
maxPriorityFeePerGas: bigint;
|
|
10170
10170
|
signature: `0x${string}`;
|
|
10171
|
-
|
|
10171
|
+
eip7702auth?: {
|
|
10172
10172
|
nonce: number;
|
|
10173
10173
|
contractAddress: `0x${string}`;
|
|
10174
10174
|
chainId: number;
|
|
@@ -10189,7 +10189,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10189
10189
|
preVerificationGas?: string | number | bigint | undefined;
|
|
10190
10190
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
10191
10191
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
10192
|
-
|
|
10192
|
+
eip7702auth?: {
|
|
10193
10193
|
nonce: string | number | bigint;
|
|
10194
10194
|
contractAddress: string;
|
|
10195
10195
|
chainId: string | number | bigint;
|
|
@@ -10210,7 +10210,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10210
10210
|
maxFeePerGas: bigint;
|
|
10211
10211
|
maxPriorityFeePerGas: bigint;
|
|
10212
10212
|
signature: `0x${string}`;
|
|
10213
|
-
|
|
10213
|
+
eip7702auth?: {
|
|
10214
10214
|
nonce: number;
|
|
10215
10215
|
contractAddress: `0x${string}`;
|
|
10216
10216
|
chainId: number;
|
|
@@ -10231,7 +10231,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10231
10231
|
preVerificationGas?: string | number | bigint | undefined;
|
|
10232
10232
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
10233
10233
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
10234
|
-
|
|
10234
|
+
eip7702auth?: {
|
|
10235
10235
|
nonce: string | number | bigint;
|
|
10236
10236
|
contractAddress: string;
|
|
10237
10237
|
chainId: string | number | bigint;
|
|
@@ -10256,7 +10256,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10256
10256
|
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>;
|
|
10257
10257
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
10258
10258
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
10259
|
-
|
|
10259
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
10260
10260
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
10261
10261
|
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>;
|
|
10262
10262
|
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>;
|
|
@@ -10297,7 +10297,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10297
10297
|
paymasterPostOpGasLimit: bigint | null;
|
|
10298
10298
|
factoryData: `0x${string}` | null;
|
|
10299
10299
|
paymasterData: `0x${string}` | null;
|
|
10300
|
-
|
|
10300
|
+
eip7702auth?: {
|
|
10301
10301
|
nonce: number;
|
|
10302
10302
|
contractAddress: `0x${string}`;
|
|
10303
10303
|
chainId: number;
|
|
@@ -10322,7 +10322,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10322
10322
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
10323
10323
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
10324
10324
|
paymasterData?: string | null | undefined;
|
|
10325
|
-
|
|
10325
|
+
eip7702auth?: {
|
|
10326
10326
|
nonce: string | number | bigint;
|
|
10327
10327
|
contractAddress: string;
|
|
10328
10328
|
chainId: string | number | bigint;
|
|
@@ -10347,7 +10347,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10347
10347
|
paymasterPostOpGasLimit: bigint | null;
|
|
10348
10348
|
factoryData: `0x${string}` | null;
|
|
10349
10349
|
paymasterData: `0x${string}` | null;
|
|
10350
|
-
|
|
10350
|
+
eip7702auth?: {
|
|
10351
10351
|
nonce: number;
|
|
10352
10352
|
contractAddress: `0x${string}`;
|
|
10353
10353
|
chainId: number;
|
|
@@ -10372,7 +10372,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10372
10372
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
10373
10373
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
10374
10374
|
paymasterData?: string | null | undefined;
|
|
10375
|
-
|
|
10375
|
+
eip7702auth?: {
|
|
10376
10376
|
nonce: string | number | bigint;
|
|
10377
10377
|
contractAddress: string;
|
|
10378
10378
|
chainId: string | number | bigint;
|
|
@@ -10470,7 +10470,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10470
10470
|
maxFeePerGas: bigint;
|
|
10471
10471
|
maxPriorityFeePerGas: bigint;
|
|
10472
10472
|
signature: `0x${string}`;
|
|
10473
|
-
|
|
10473
|
+
eip7702auth?: {
|
|
10474
10474
|
nonce: number;
|
|
10475
10475
|
contractAddress: `0x${string}`;
|
|
10476
10476
|
chainId: number;
|
|
@@ -10495,7 +10495,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10495
10495
|
paymasterPostOpGasLimit: bigint | null;
|
|
10496
10496
|
factoryData: `0x${string}` | null;
|
|
10497
10497
|
paymasterData: `0x${string}` | null;
|
|
10498
|
-
|
|
10498
|
+
eip7702auth?: {
|
|
10499
10499
|
nonce: number;
|
|
10500
10500
|
contractAddress: `0x${string}`;
|
|
10501
10501
|
chainId: number;
|
|
@@ -10516,7 +10516,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10516
10516
|
maxFeePerGas: bigint;
|
|
10517
10517
|
maxPriorityFeePerGas: bigint;
|
|
10518
10518
|
signature: `0x${string}`;
|
|
10519
|
-
|
|
10519
|
+
eip7702auth?: {
|
|
10520
10520
|
nonce: number;
|
|
10521
10521
|
contractAddress: `0x${string}`;
|
|
10522
10522
|
chainId: number;
|
|
@@ -10541,7 +10541,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10541
10541
|
paymasterPostOpGasLimit: bigint | null;
|
|
10542
10542
|
factoryData: `0x${string}` | null;
|
|
10543
10543
|
paymasterData: `0x${string}` | null;
|
|
10544
|
-
|
|
10544
|
+
eip7702auth?: {
|
|
10545
10545
|
nonce: number;
|
|
10546
10546
|
contractAddress: `0x${string}`;
|
|
10547
10547
|
chainId: number;
|
|
@@ -10594,7 +10594,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10594
10594
|
preVerificationGas?: string | number | bigint | undefined;
|
|
10595
10595
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
10596
10596
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
10597
|
-
|
|
10597
|
+
eip7702auth?: {
|
|
10598
10598
|
nonce: string | number | bigint;
|
|
10599
10599
|
contractAddress: string;
|
|
10600
10600
|
chainId: string | number | bigint;
|
|
@@ -10619,7 +10619,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10619
10619
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
10620
10620
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
10621
10621
|
paymasterData?: string | null | undefined;
|
|
10622
|
-
|
|
10622
|
+
eip7702auth?: {
|
|
10623
10623
|
nonce: string | number | bigint;
|
|
10624
10624
|
contractAddress: string;
|
|
10625
10625
|
chainId: string | number | bigint;
|
|
@@ -10640,7 +10640,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10640
10640
|
preVerificationGas?: string | number | bigint | undefined;
|
|
10641
10641
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
10642
10642
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
10643
|
-
|
|
10643
|
+
eip7702auth?: {
|
|
10644
10644
|
nonce: string | number | bigint;
|
|
10645
10645
|
contractAddress: string;
|
|
10646
10646
|
chainId: string | number | bigint;
|
|
@@ -10665,7 +10665,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10665
10665
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
10666
10666
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
10667
10667
|
paymasterData?: string | null | undefined;
|
|
10668
|
-
|
|
10668
|
+
eip7702auth?: {
|
|
10669
10669
|
nonce: string | number | bigint;
|
|
10670
10670
|
contractAddress: string;
|
|
10671
10671
|
chainId: string | number | bigint;
|
|
@@ -10696,7 +10696,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10696
10696
|
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
10697
10697
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
10698
10698
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
10699
|
-
|
|
10699
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
10700
10700
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
10701
10701
|
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>;
|
|
10702
10702
|
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>;
|
|
@@ -10733,7 +10733,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10733
10733
|
maxFeePerGas: bigint;
|
|
10734
10734
|
maxPriorityFeePerGas: bigint;
|
|
10735
10735
|
signature: `0x${string}`;
|
|
10736
|
-
|
|
10736
|
+
eip7702auth?: {
|
|
10737
10737
|
nonce: number;
|
|
10738
10738
|
contractAddress: `0x${string}`;
|
|
10739
10739
|
chainId: number;
|
|
@@ -10754,7 +10754,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10754
10754
|
maxFeePerGas: string | number | bigint;
|
|
10755
10755
|
maxPriorityFeePerGas: string | number | bigint;
|
|
10756
10756
|
signature: string;
|
|
10757
|
-
|
|
10757
|
+
eip7702auth?: {
|
|
10758
10758
|
nonce: string | number | bigint;
|
|
10759
10759
|
contractAddress: string;
|
|
10760
10760
|
chainId: string | number | bigint;
|
|
@@ -10775,7 +10775,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10775
10775
|
maxFeePerGas: bigint;
|
|
10776
10776
|
maxPriorityFeePerGas: bigint;
|
|
10777
10777
|
signature: `0x${string}`;
|
|
10778
|
-
|
|
10778
|
+
eip7702auth?: {
|
|
10779
10779
|
nonce: number;
|
|
10780
10780
|
contractAddress: `0x${string}`;
|
|
10781
10781
|
chainId: number;
|
|
@@ -10796,7 +10796,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10796
10796
|
maxFeePerGas: string | number | bigint;
|
|
10797
10797
|
maxPriorityFeePerGas: string | number | bigint;
|
|
10798
10798
|
signature: string;
|
|
10799
|
-
|
|
10799
|
+
eip7702auth?: {
|
|
10800
10800
|
nonce: string | number | bigint;
|
|
10801
10801
|
contractAddress: string;
|
|
10802
10802
|
chainId: string | number | bigint;
|
|
@@ -10821,7 +10821,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10821
10821
|
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>;
|
|
10822
10822
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
10823
10823
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
10824
|
-
|
|
10824
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
10825
10825
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
10826
10826
|
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>;
|
|
10827
10827
|
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>;
|
|
@@ -10862,7 +10862,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10862
10862
|
paymasterPostOpGasLimit: bigint | null;
|
|
10863
10863
|
factoryData: `0x${string}` | null;
|
|
10864
10864
|
paymasterData: `0x${string}` | null;
|
|
10865
|
-
|
|
10865
|
+
eip7702auth?: {
|
|
10866
10866
|
nonce: number;
|
|
10867
10867
|
contractAddress: `0x${string}`;
|
|
10868
10868
|
chainId: number;
|
|
@@ -10887,7 +10887,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10887
10887
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
10888
10888
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
10889
10889
|
paymasterData?: string | null | undefined;
|
|
10890
|
-
|
|
10890
|
+
eip7702auth?: {
|
|
10891
10891
|
nonce: string | number | bigint;
|
|
10892
10892
|
contractAddress: string;
|
|
10893
10893
|
chainId: string | number | bigint;
|
|
@@ -10912,7 +10912,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10912
10912
|
paymasterPostOpGasLimit: bigint | null;
|
|
10913
10913
|
factoryData: `0x${string}` | null;
|
|
10914
10914
|
paymasterData: `0x${string}` | null;
|
|
10915
|
-
|
|
10915
|
+
eip7702auth?: {
|
|
10916
10916
|
nonce: number;
|
|
10917
10917
|
contractAddress: `0x${string}`;
|
|
10918
10918
|
chainId: number;
|
|
@@ -10937,7 +10937,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10937
10937
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
10938
10938
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
10939
10939
|
paymasterData?: string | null | undefined;
|
|
10940
|
-
|
|
10940
|
+
eip7702auth?: {
|
|
10941
10941
|
nonce: string | number | bigint;
|
|
10942
10942
|
contractAddress: string;
|
|
10943
10943
|
chainId: string | number | bigint;
|
|
@@ -10962,7 +10962,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10962
10962
|
maxFeePerGas: bigint;
|
|
10963
10963
|
maxPriorityFeePerGas: bigint;
|
|
10964
10964
|
signature: `0x${string}`;
|
|
10965
|
-
|
|
10965
|
+
eip7702auth?: {
|
|
10966
10966
|
nonce: number;
|
|
10967
10967
|
contractAddress: `0x${string}`;
|
|
10968
10968
|
chainId: number;
|
|
@@ -10987,7 +10987,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
10987
10987
|
paymasterPostOpGasLimit: bigint | null;
|
|
10988
10988
|
factoryData: `0x${string}` | null;
|
|
10989
10989
|
paymasterData: `0x${string}` | null;
|
|
10990
|
-
|
|
10990
|
+
eip7702auth?: {
|
|
10991
10991
|
nonce: number;
|
|
10992
10992
|
contractAddress: `0x${string}`;
|
|
10993
10993
|
chainId: number;
|
|
@@ -11012,7 +11012,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11012
11012
|
maxFeePerGas: string | number | bigint;
|
|
11013
11013
|
maxPriorityFeePerGas: string | number | bigint;
|
|
11014
11014
|
signature: string;
|
|
11015
|
-
|
|
11015
|
+
eip7702auth?: {
|
|
11016
11016
|
nonce: string | number | bigint;
|
|
11017
11017
|
contractAddress: string;
|
|
11018
11018
|
chainId: string | number | bigint;
|
|
@@ -11037,7 +11037,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11037
11037
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
11038
11038
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
11039
11039
|
paymasterData?: string | null | undefined;
|
|
11040
|
-
|
|
11040
|
+
eip7702auth?: {
|
|
11041
11041
|
nonce: string | number | bigint;
|
|
11042
11042
|
contractAddress: string;
|
|
11043
11043
|
chainId: string | number | bigint;
|
|
@@ -11064,7 +11064,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11064
11064
|
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
11065
11065
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
11066
11066
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
11067
|
-
|
|
11067
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
11068
11068
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
11069
11069
|
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>;
|
|
11070
11070
|
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>;
|
|
@@ -11101,7 +11101,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11101
11101
|
maxFeePerGas: bigint;
|
|
11102
11102
|
maxPriorityFeePerGas: bigint;
|
|
11103
11103
|
signature: `0x${string}`;
|
|
11104
|
-
|
|
11104
|
+
eip7702auth?: {
|
|
11105
11105
|
nonce: number;
|
|
11106
11106
|
contractAddress: `0x${string}`;
|
|
11107
11107
|
chainId: number;
|
|
@@ -11122,7 +11122,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11122
11122
|
maxFeePerGas: string | number | bigint;
|
|
11123
11123
|
maxPriorityFeePerGas: string | number | bigint;
|
|
11124
11124
|
signature: string;
|
|
11125
|
-
|
|
11125
|
+
eip7702auth?: {
|
|
11126
11126
|
nonce: string | number | bigint;
|
|
11127
11127
|
contractAddress: string;
|
|
11128
11128
|
chainId: string | number | bigint;
|
|
@@ -11143,7 +11143,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11143
11143
|
maxFeePerGas: bigint;
|
|
11144
11144
|
maxPriorityFeePerGas: bigint;
|
|
11145
11145
|
signature: `0x${string}`;
|
|
11146
|
-
|
|
11146
|
+
eip7702auth?: {
|
|
11147
11147
|
nonce: number;
|
|
11148
11148
|
contractAddress: `0x${string}`;
|
|
11149
11149
|
chainId: number;
|
|
@@ -11164,7 +11164,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11164
11164
|
maxFeePerGas: string | number | bigint;
|
|
11165
11165
|
maxPriorityFeePerGas: string | number | bigint;
|
|
11166
11166
|
signature: string;
|
|
11167
|
-
|
|
11167
|
+
eip7702auth?: {
|
|
11168
11168
|
nonce: string | number | bigint;
|
|
11169
11169
|
contractAddress: string;
|
|
11170
11170
|
chainId: string | number | bigint;
|
|
@@ -11189,7 +11189,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11189
11189
|
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>;
|
|
11190
11190
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
11191
11191
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
11192
|
-
|
|
11192
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
11193
11193
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
11194
11194
|
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>;
|
|
11195
11195
|
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>;
|
|
@@ -11230,7 +11230,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11230
11230
|
paymasterPostOpGasLimit: bigint | null;
|
|
11231
11231
|
factoryData: `0x${string}` | null;
|
|
11232
11232
|
paymasterData: `0x${string}` | null;
|
|
11233
|
-
|
|
11233
|
+
eip7702auth?: {
|
|
11234
11234
|
nonce: number;
|
|
11235
11235
|
contractAddress: `0x${string}`;
|
|
11236
11236
|
chainId: number;
|
|
@@ -11255,7 +11255,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11255
11255
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
11256
11256
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
11257
11257
|
paymasterData?: string | null | undefined;
|
|
11258
|
-
|
|
11258
|
+
eip7702auth?: {
|
|
11259
11259
|
nonce: string | number | bigint;
|
|
11260
11260
|
contractAddress: string;
|
|
11261
11261
|
chainId: string | number | bigint;
|
|
@@ -11280,7 +11280,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11280
11280
|
paymasterPostOpGasLimit: bigint | null;
|
|
11281
11281
|
factoryData: `0x${string}` | null;
|
|
11282
11282
|
paymasterData: `0x${string}` | null;
|
|
11283
|
-
|
|
11283
|
+
eip7702auth?: {
|
|
11284
11284
|
nonce: number;
|
|
11285
11285
|
contractAddress: `0x${string}`;
|
|
11286
11286
|
chainId: number;
|
|
@@ -11305,7 +11305,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11305
11305
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
11306
11306
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
11307
11307
|
paymasterData?: string | null | undefined;
|
|
11308
|
-
|
|
11308
|
+
eip7702auth?: {
|
|
11309
11309
|
nonce: string | number | bigint;
|
|
11310
11310
|
contractAddress: string;
|
|
11311
11311
|
chainId: string | number | bigint;
|
|
@@ -11333,7 +11333,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11333
11333
|
maxFeePerGas: bigint;
|
|
11334
11334
|
maxPriorityFeePerGas: bigint;
|
|
11335
11335
|
signature: `0x${string}`;
|
|
11336
|
-
|
|
11336
|
+
eip7702auth?: {
|
|
11337
11337
|
nonce: number;
|
|
11338
11338
|
contractAddress: `0x${string}`;
|
|
11339
11339
|
chainId: number;
|
|
@@ -11358,7 +11358,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11358
11358
|
paymasterPostOpGasLimit: bigint | null;
|
|
11359
11359
|
factoryData: `0x${string}` | null;
|
|
11360
11360
|
paymasterData: `0x${string}` | null;
|
|
11361
|
-
|
|
11361
|
+
eip7702auth?: {
|
|
11362
11362
|
nonce: number;
|
|
11363
11363
|
contractAddress: `0x${string}`;
|
|
11364
11364
|
chainId: number;
|
|
@@ -11379,7 +11379,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11379
11379
|
maxFeePerGas: bigint;
|
|
11380
11380
|
maxPriorityFeePerGas: bigint;
|
|
11381
11381
|
signature: `0x${string}`;
|
|
11382
|
-
|
|
11382
|
+
eip7702auth?: {
|
|
11383
11383
|
nonce: number;
|
|
11384
11384
|
contractAddress: `0x${string}`;
|
|
11385
11385
|
chainId: number;
|
|
@@ -11404,7 +11404,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11404
11404
|
paymasterPostOpGasLimit: bigint | null;
|
|
11405
11405
|
factoryData: `0x${string}` | null;
|
|
11406
11406
|
paymasterData: `0x${string}` | null;
|
|
11407
|
-
|
|
11407
|
+
eip7702auth?: {
|
|
11408
11408
|
nonce: number;
|
|
11409
11409
|
contractAddress: `0x${string}`;
|
|
11410
11410
|
chainId: number;
|
|
@@ -11431,7 +11431,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11431
11431
|
maxFeePerGas: string | number | bigint;
|
|
11432
11432
|
maxPriorityFeePerGas: string | number | bigint;
|
|
11433
11433
|
signature: string;
|
|
11434
|
-
|
|
11434
|
+
eip7702auth?: {
|
|
11435
11435
|
nonce: string | number | bigint;
|
|
11436
11436
|
contractAddress: string;
|
|
11437
11437
|
chainId: string | number | bigint;
|
|
@@ -11456,7 +11456,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11456
11456
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
11457
11457
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
11458
11458
|
paymasterData?: string | null | undefined;
|
|
11459
|
-
|
|
11459
|
+
eip7702auth?: {
|
|
11460
11460
|
nonce: string | number | bigint;
|
|
11461
11461
|
contractAddress: string;
|
|
11462
11462
|
chainId: string | number | bigint;
|
|
@@ -11477,7 +11477,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11477
11477
|
maxFeePerGas: string | number | bigint;
|
|
11478
11478
|
maxPriorityFeePerGas: string | number | bigint;
|
|
11479
11479
|
signature: string;
|
|
11480
|
-
|
|
11480
|
+
eip7702auth?: {
|
|
11481
11481
|
nonce: string | number | bigint;
|
|
11482
11482
|
contractAddress: string;
|
|
11483
11483
|
chainId: string | number | bigint;
|
|
@@ -11502,7 +11502,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11502
11502
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
11503
11503
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
11504
11504
|
paymasterData?: string | null | undefined;
|
|
11505
|
-
|
|
11505
|
+
eip7702auth?: {
|
|
11506
11506
|
nonce: string | number | bigint;
|
|
11507
11507
|
contractAddress: string;
|
|
11508
11508
|
chainId: string | number | bigint;
|
|
@@ -11531,7 +11531,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11531
11531
|
maxFeePerGas: bigint;
|
|
11532
11532
|
maxPriorityFeePerGas: bigint;
|
|
11533
11533
|
signature: `0x${string}`;
|
|
11534
|
-
|
|
11534
|
+
eip7702auth?: {
|
|
11535
11535
|
nonce: number;
|
|
11536
11536
|
contractAddress: `0x${string}`;
|
|
11537
11537
|
chainId: number;
|
|
@@ -11556,7 +11556,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11556
11556
|
paymasterPostOpGasLimit: bigint | null;
|
|
11557
11557
|
factoryData: `0x${string}` | null;
|
|
11558
11558
|
paymasterData: `0x${string}` | null;
|
|
11559
|
-
|
|
11559
|
+
eip7702auth?: {
|
|
11560
11560
|
nonce: number;
|
|
11561
11561
|
contractAddress: `0x${string}`;
|
|
11562
11562
|
chainId: number;
|
|
@@ -11577,7 +11577,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11577
11577
|
maxFeePerGas: bigint;
|
|
11578
11578
|
maxPriorityFeePerGas: bigint;
|
|
11579
11579
|
signature: `0x${string}`;
|
|
11580
|
-
|
|
11580
|
+
eip7702auth?: {
|
|
11581
11581
|
nonce: number;
|
|
11582
11582
|
contractAddress: `0x${string}`;
|
|
11583
11583
|
chainId: number;
|
|
@@ -11602,7 +11602,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11602
11602
|
paymasterPostOpGasLimit: bigint | null;
|
|
11603
11603
|
factoryData: `0x${string}` | null;
|
|
11604
11604
|
paymasterData: `0x${string}` | null;
|
|
11605
|
-
|
|
11605
|
+
eip7702auth?: {
|
|
11606
11606
|
nonce: number;
|
|
11607
11607
|
contractAddress: `0x${string}`;
|
|
11608
11608
|
chainId: number;
|
|
@@ -11633,7 +11633,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11633
11633
|
maxFeePerGas: string | number | bigint;
|
|
11634
11634
|
maxPriorityFeePerGas: string | number | bigint;
|
|
11635
11635
|
signature: string;
|
|
11636
|
-
|
|
11636
|
+
eip7702auth?: {
|
|
11637
11637
|
nonce: string | number | bigint;
|
|
11638
11638
|
contractAddress: string;
|
|
11639
11639
|
chainId: string | number | bigint;
|
|
@@ -11658,7 +11658,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11658
11658
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
11659
11659
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
11660
11660
|
paymasterData?: string | null | undefined;
|
|
11661
|
-
|
|
11661
|
+
eip7702auth?: {
|
|
11662
11662
|
nonce: string | number | bigint;
|
|
11663
11663
|
contractAddress: string;
|
|
11664
11664
|
chainId: string | number | bigint;
|
|
@@ -11679,7 +11679,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11679
11679
|
maxFeePerGas: string | number | bigint;
|
|
11680
11680
|
maxPriorityFeePerGas: string | number | bigint;
|
|
11681
11681
|
signature: string;
|
|
11682
|
-
|
|
11682
|
+
eip7702auth?: {
|
|
11683
11683
|
nonce: string | number | bigint;
|
|
11684
11684
|
contractAddress: string;
|
|
11685
11685
|
chainId: string | number | bigint;
|
|
@@ -11704,7 +11704,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
11704
11704
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
11705
11705
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
11706
11706
|
paymasterData?: string | null | undefined;
|
|
11707
|
-
|
|
11707
|
+
eip7702auth?: {
|
|
11708
11708
|
nonce: string | number | bigint;
|
|
11709
11709
|
contractAddress: string;
|
|
11710
11710
|
chainId: string | number | bigint;
|
|
@@ -12073,7 +12073,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12073
12073
|
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
12074
12074
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
12075
12075
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
12076
|
-
|
|
12076
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
12077
12077
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
12078
12078
|
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>;
|
|
12079
12079
|
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>;
|
|
@@ -12110,7 +12110,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12110
12110
|
maxFeePerGas: bigint;
|
|
12111
12111
|
maxPriorityFeePerGas: bigint;
|
|
12112
12112
|
signature: `0x${string}`;
|
|
12113
|
-
|
|
12113
|
+
eip7702auth?: {
|
|
12114
12114
|
nonce: number;
|
|
12115
12115
|
contractAddress: `0x${string}`;
|
|
12116
12116
|
chainId: number;
|
|
@@ -12131,7 +12131,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12131
12131
|
maxFeePerGas: string | number | bigint;
|
|
12132
12132
|
maxPriorityFeePerGas: string | number | bigint;
|
|
12133
12133
|
signature: string;
|
|
12134
|
-
|
|
12134
|
+
eip7702auth?: {
|
|
12135
12135
|
nonce: string | number | bigint;
|
|
12136
12136
|
contractAddress: string;
|
|
12137
12137
|
chainId: string | number | bigint;
|
|
@@ -12152,7 +12152,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12152
12152
|
maxFeePerGas: bigint;
|
|
12153
12153
|
maxPriorityFeePerGas: bigint;
|
|
12154
12154
|
signature: `0x${string}`;
|
|
12155
|
-
|
|
12155
|
+
eip7702auth?: {
|
|
12156
12156
|
nonce: number;
|
|
12157
12157
|
contractAddress: `0x${string}`;
|
|
12158
12158
|
chainId: number;
|
|
@@ -12173,7 +12173,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12173
12173
|
maxFeePerGas: string | number | bigint;
|
|
12174
12174
|
maxPriorityFeePerGas: string | number | bigint;
|
|
12175
12175
|
signature: string;
|
|
12176
|
-
|
|
12176
|
+
eip7702auth?: {
|
|
12177
12177
|
nonce: string | number | bigint;
|
|
12178
12178
|
contractAddress: string;
|
|
12179
12179
|
chainId: string | number | bigint;
|
|
@@ -12198,7 +12198,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12198
12198
|
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>;
|
|
12199
12199
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
12200
12200
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
12201
|
-
|
|
12201
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
12202
12202
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
12203
12203
|
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>;
|
|
12204
12204
|
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>;
|
|
@@ -12239,7 +12239,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12239
12239
|
paymasterPostOpGasLimit: bigint | null;
|
|
12240
12240
|
factoryData: `0x${string}` | null;
|
|
12241
12241
|
paymasterData: `0x${string}` | null;
|
|
12242
|
-
|
|
12242
|
+
eip7702auth?: {
|
|
12243
12243
|
nonce: number;
|
|
12244
12244
|
contractAddress: `0x${string}`;
|
|
12245
12245
|
chainId: number;
|
|
@@ -12264,7 +12264,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12264
12264
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
12265
12265
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
12266
12266
|
paymasterData?: string | null | undefined;
|
|
12267
|
-
|
|
12267
|
+
eip7702auth?: {
|
|
12268
12268
|
nonce: string | number | bigint;
|
|
12269
12269
|
contractAddress: string;
|
|
12270
12270
|
chainId: string | number | bigint;
|
|
@@ -12289,7 +12289,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12289
12289
|
paymasterPostOpGasLimit: bigint | null;
|
|
12290
12290
|
factoryData: `0x${string}` | null;
|
|
12291
12291
|
paymasterData: `0x${string}` | null;
|
|
12292
|
-
|
|
12292
|
+
eip7702auth?: {
|
|
12293
12293
|
nonce: number;
|
|
12294
12294
|
contractAddress: `0x${string}`;
|
|
12295
12295
|
chainId: number;
|
|
@@ -12314,7 +12314,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12314
12314
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
12315
12315
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
12316
12316
|
paymasterData?: string | null | undefined;
|
|
12317
|
-
|
|
12317
|
+
eip7702auth?: {
|
|
12318
12318
|
nonce: string | number | bigint;
|
|
12319
12319
|
contractAddress: string;
|
|
12320
12320
|
chainId: string | number | bigint;
|
|
@@ -12337,7 +12337,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12337
12337
|
maxFeePerGas: bigint;
|
|
12338
12338
|
maxPriorityFeePerGas: bigint;
|
|
12339
12339
|
signature: `0x${string}`;
|
|
12340
|
-
|
|
12340
|
+
eip7702auth?: {
|
|
12341
12341
|
nonce: number;
|
|
12342
12342
|
contractAddress: `0x${string}`;
|
|
12343
12343
|
chainId: number;
|
|
@@ -12362,7 +12362,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12362
12362
|
paymasterPostOpGasLimit: bigint | null;
|
|
12363
12363
|
factoryData: `0x${string}` | null;
|
|
12364
12364
|
paymasterData: `0x${string}` | null;
|
|
12365
|
-
|
|
12365
|
+
eip7702auth?: {
|
|
12366
12366
|
nonce: number;
|
|
12367
12367
|
contractAddress: `0x${string}`;
|
|
12368
12368
|
chainId: number;
|
|
@@ -12387,7 +12387,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12387
12387
|
maxFeePerGas: string | number | bigint;
|
|
12388
12388
|
maxPriorityFeePerGas: string | number | bigint;
|
|
12389
12389
|
signature: string;
|
|
12390
|
-
|
|
12390
|
+
eip7702auth?: {
|
|
12391
12391
|
nonce: string | number | bigint;
|
|
12392
12392
|
contractAddress: string;
|
|
12393
12393
|
chainId: string | number | bigint;
|
|
@@ -12412,7 +12412,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12412
12412
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
12413
12413
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
12414
12414
|
paymasterData?: string | null | undefined;
|
|
12415
|
-
|
|
12415
|
+
eip7702auth?: {
|
|
12416
12416
|
nonce: string | number | bigint;
|
|
12417
12417
|
contractAddress: string;
|
|
12418
12418
|
chainId: string | number | bigint;
|
|
@@ -12720,7 +12720,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12720
12720
|
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
12721
12721
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
12722
12722
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
12723
|
-
|
|
12723
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
12724
12724
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
12725
12725
|
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>;
|
|
12726
12726
|
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>;
|
|
@@ -12757,7 +12757,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12757
12757
|
maxFeePerGas: bigint;
|
|
12758
12758
|
maxPriorityFeePerGas: bigint;
|
|
12759
12759
|
signature: `0x${string}`;
|
|
12760
|
-
|
|
12760
|
+
eip7702auth?: {
|
|
12761
12761
|
nonce: number;
|
|
12762
12762
|
contractAddress: `0x${string}`;
|
|
12763
12763
|
chainId: number;
|
|
@@ -12778,7 +12778,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12778
12778
|
maxFeePerGas: string | number | bigint;
|
|
12779
12779
|
maxPriorityFeePerGas: string | number | bigint;
|
|
12780
12780
|
signature: string;
|
|
12781
|
-
|
|
12781
|
+
eip7702auth?: {
|
|
12782
12782
|
nonce: string | number | bigint;
|
|
12783
12783
|
contractAddress: string;
|
|
12784
12784
|
chainId: string | number | bigint;
|
|
@@ -12799,7 +12799,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12799
12799
|
maxFeePerGas: bigint;
|
|
12800
12800
|
maxPriorityFeePerGas: bigint;
|
|
12801
12801
|
signature: `0x${string}`;
|
|
12802
|
-
|
|
12802
|
+
eip7702auth?: {
|
|
12803
12803
|
nonce: number;
|
|
12804
12804
|
contractAddress: `0x${string}`;
|
|
12805
12805
|
chainId: number;
|
|
@@ -12820,7 +12820,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12820
12820
|
maxFeePerGas: string | number | bigint;
|
|
12821
12821
|
maxPriorityFeePerGas: string | number | bigint;
|
|
12822
12822
|
signature: string;
|
|
12823
|
-
|
|
12823
|
+
eip7702auth?: {
|
|
12824
12824
|
nonce: string | number | bigint;
|
|
12825
12825
|
contractAddress: string;
|
|
12826
12826
|
chainId: string | number | bigint;
|
|
@@ -12845,7 +12845,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12845
12845
|
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>;
|
|
12846
12846
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
12847
12847
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
12848
|
-
|
|
12848
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
12849
12849
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
12850
12850
|
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>;
|
|
12851
12851
|
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>;
|
|
@@ -12886,7 +12886,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12886
12886
|
paymasterPostOpGasLimit: bigint | null;
|
|
12887
12887
|
factoryData: `0x${string}` | null;
|
|
12888
12888
|
paymasterData: `0x${string}` | null;
|
|
12889
|
-
|
|
12889
|
+
eip7702auth?: {
|
|
12890
12890
|
nonce: number;
|
|
12891
12891
|
contractAddress: `0x${string}`;
|
|
12892
12892
|
chainId: number;
|
|
@@ -12911,7 +12911,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12911
12911
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
12912
12912
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
12913
12913
|
paymasterData?: string | null | undefined;
|
|
12914
|
-
|
|
12914
|
+
eip7702auth?: {
|
|
12915
12915
|
nonce: string | number | bigint;
|
|
12916
12916
|
contractAddress: string;
|
|
12917
12917
|
chainId: string | number | bigint;
|
|
@@ -12936,7 +12936,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12936
12936
|
paymasterPostOpGasLimit: bigint | null;
|
|
12937
12937
|
factoryData: `0x${string}` | null;
|
|
12938
12938
|
paymasterData: `0x${string}` | null;
|
|
12939
|
-
|
|
12939
|
+
eip7702auth?: {
|
|
12940
12940
|
nonce: number;
|
|
12941
12941
|
contractAddress: `0x${string}`;
|
|
12942
12942
|
chainId: number;
|
|
@@ -12961,7 +12961,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12961
12961
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
12962
12962
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
12963
12963
|
paymasterData?: string | null | undefined;
|
|
12964
|
-
|
|
12964
|
+
eip7702auth?: {
|
|
12965
12965
|
nonce: string | number | bigint;
|
|
12966
12966
|
contractAddress: string;
|
|
12967
12967
|
chainId: string | number | bigint;
|
|
@@ -13244,7 +13244,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13244
13244
|
maxFeePerGas: bigint;
|
|
13245
13245
|
maxPriorityFeePerGas: bigint;
|
|
13246
13246
|
signature: `0x${string}`;
|
|
13247
|
-
|
|
13247
|
+
eip7702auth?: {
|
|
13248
13248
|
nonce: number;
|
|
13249
13249
|
contractAddress: `0x${string}`;
|
|
13250
13250
|
chainId: number;
|
|
@@ -13269,7 +13269,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13269
13269
|
paymasterPostOpGasLimit: bigint | null;
|
|
13270
13270
|
factoryData: `0x${string}` | null;
|
|
13271
13271
|
paymasterData: `0x${string}` | null;
|
|
13272
|
-
|
|
13272
|
+
eip7702auth?: {
|
|
13273
13273
|
nonce: number;
|
|
13274
13274
|
contractAddress: `0x${string}`;
|
|
13275
13275
|
chainId: number;
|
|
@@ -13338,7 +13338,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13338
13338
|
maxFeePerGas: string | number | bigint;
|
|
13339
13339
|
maxPriorityFeePerGas: string | number | bigint;
|
|
13340
13340
|
signature: string;
|
|
13341
|
-
|
|
13341
|
+
eip7702auth?: {
|
|
13342
13342
|
nonce: string | number | bigint;
|
|
13343
13343
|
contractAddress: string;
|
|
13344
13344
|
chainId: string | number | bigint;
|
|
@@ -13363,7 +13363,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13363
13363
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
13364
13364
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
13365
13365
|
paymasterData?: string | null | undefined;
|
|
13366
|
-
|
|
13366
|
+
eip7702auth?: {
|
|
13367
13367
|
nonce: string | number | bigint;
|
|
13368
13368
|
contractAddress: string;
|
|
13369
13369
|
chainId: string | number | bigint;
|
|
@@ -13388,7 +13388,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13388
13388
|
maxFeePerGas: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
|
|
13389
13389
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
13390
13390
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
13391
|
-
|
|
13391
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
13392
13392
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
13393
13393
|
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>;
|
|
13394
13394
|
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>;
|
|
@@ -13425,7 +13425,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13425
13425
|
maxFeePerGas: bigint;
|
|
13426
13426
|
maxPriorityFeePerGas: bigint;
|
|
13427
13427
|
signature: `0x${string}`;
|
|
13428
|
-
|
|
13428
|
+
eip7702auth?: {
|
|
13429
13429
|
nonce: number;
|
|
13430
13430
|
contractAddress: `0x${string}`;
|
|
13431
13431
|
chainId: number;
|
|
@@ -13446,7 +13446,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13446
13446
|
maxFeePerGas: string | number | bigint;
|
|
13447
13447
|
maxPriorityFeePerGas: string | number | bigint;
|
|
13448
13448
|
signature: string;
|
|
13449
|
-
|
|
13449
|
+
eip7702auth?: {
|
|
13450
13450
|
nonce: string | number | bigint;
|
|
13451
13451
|
contractAddress: string;
|
|
13452
13452
|
chainId: string | number | bigint;
|
|
@@ -13467,7 +13467,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13467
13467
|
maxFeePerGas: bigint;
|
|
13468
13468
|
maxPriorityFeePerGas: bigint;
|
|
13469
13469
|
signature: `0x${string}`;
|
|
13470
|
-
|
|
13470
|
+
eip7702auth?: {
|
|
13471
13471
|
nonce: number;
|
|
13472
13472
|
contractAddress: `0x${string}`;
|
|
13473
13473
|
chainId: number;
|
|
@@ -13488,7 +13488,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13488
13488
|
maxFeePerGas: string | number | bigint;
|
|
13489
13489
|
maxPriorityFeePerGas: string | number | bigint;
|
|
13490
13490
|
signature: string;
|
|
13491
|
-
|
|
13491
|
+
eip7702auth?: {
|
|
13492
13492
|
nonce: string | number | bigint;
|
|
13493
13493
|
contractAddress: string;
|
|
13494
13494
|
chainId: string | number | bigint;
|
|
@@ -13513,7 +13513,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13513
13513
|
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>;
|
|
13514
13514
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
13515
13515
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
13516
|
-
|
|
13516
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
13517
13517
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
13518
13518
|
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>;
|
|
13519
13519
|
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>;
|
|
@@ -13554,7 +13554,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13554
13554
|
paymasterPostOpGasLimit: bigint | null;
|
|
13555
13555
|
factoryData: `0x${string}` | null;
|
|
13556
13556
|
paymasterData: `0x${string}` | null;
|
|
13557
|
-
|
|
13557
|
+
eip7702auth?: {
|
|
13558
13558
|
nonce: number;
|
|
13559
13559
|
contractAddress: `0x${string}`;
|
|
13560
13560
|
chainId: number;
|
|
@@ -13579,7 +13579,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13579
13579
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
13580
13580
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
13581
13581
|
paymasterData?: string | null | undefined;
|
|
13582
|
-
|
|
13582
|
+
eip7702auth?: {
|
|
13583
13583
|
nonce: string | number | bigint;
|
|
13584
13584
|
contractAddress: string;
|
|
13585
13585
|
chainId: string | number | bigint;
|
|
@@ -13604,7 +13604,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13604
13604
|
paymasterPostOpGasLimit: bigint | null;
|
|
13605
13605
|
factoryData: `0x${string}` | null;
|
|
13606
13606
|
paymasterData: `0x${string}` | null;
|
|
13607
|
-
|
|
13607
|
+
eip7702auth?: {
|
|
13608
13608
|
nonce: number;
|
|
13609
13609
|
contractAddress: `0x${string}`;
|
|
13610
13610
|
chainId: number;
|
|
@@ -13629,7 +13629,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13629
13629
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
13630
13630
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
13631
13631
|
paymasterData?: string | null | undefined;
|
|
13632
|
-
|
|
13632
|
+
eip7702auth?: {
|
|
13633
13633
|
nonce: string | number | bigint;
|
|
13634
13634
|
contractAddress: string;
|
|
13635
13635
|
chainId: string | number | bigint;
|
|
@@ -13654,7 +13654,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13654
13654
|
maxFeePerGas: bigint;
|
|
13655
13655
|
maxPriorityFeePerGas: bigint;
|
|
13656
13656
|
signature: `0x${string}`;
|
|
13657
|
-
|
|
13657
|
+
eip7702auth?: {
|
|
13658
13658
|
nonce: number;
|
|
13659
13659
|
contractAddress: `0x${string}`;
|
|
13660
13660
|
chainId: number;
|
|
@@ -13679,7 +13679,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13679
13679
|
paymasterPostOpGasLimit: bigint | null;
|
|
13680
13680
|
factoryData: `0x${string}` | null;
|
|
13681
13681
|
paymasterData: `0x${string}` | null;
|
|
13682
|
-
|
|
13682
|
+
eip7702auth?: {
|
|
13683
13683
|
nonce: number;
|
|
13684
13684
|
contractAddress: `0x${string}`;
|
|
13685
13685
|
chainId: number;
|
|
@@ -13704,7 +13704,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13704
13704
|
maxFeePerGas: string | number | bigint;
|
|
13705
13705
|
maxPriorityFeePerGas: string | number | bigint;
|
|
13706
13706
|
signature: string;
|
|
13707
|
-
|
|
13707
|
+
eip7702auth?: {
|
|
13708
13708
|
nonce: string | number | bigint;
|
|
13709
13709
|
contractAddress: string;
|
|
13710
13710
|
chainId: string | number | bigint;
|
|
@@ -13729,7 +13729,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13729
13729
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
13730
13730
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
13731
13731
|
paymasterData?: string | null | undefined;
|
|
13732
|
-
|
|
13732
|
+
eip7702auth?: {
|
|
13733
13733
|
nonce: string | number | bigint;
|
|
13734
13734
|
contractAddress: string;
|
|
13735
13735
|
chainId: string | number | bigint;
|
|
@@ -13754,7 +13754,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13754
13754
|
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>>;
|
|
13755
13755
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
13756
13756
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
13757
|
-
|
|
13757
|
+
eip7702auth: z.ZodOptional<z.ZodObject<{
|
|
13758
13758
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
13759
13759
|
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>;
|
|
13760
13760
|
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>;
|
|
@@ -13791,7 +13791,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13791
13791
|
maxFeePerGas: bigint;
|
|
13792
13792
|
maxPriorityFeePerGas: bigint;
|
|
13793
13793
|
signature: `0x${string}`;
|
|
13794
|
-
|
|
13794
|
+
eip7702auth?: {
|
|
13795
13795
|
nonce: number;
|
|
13796
13796
|
contractAddress: `0x${string}`;
|
|
13797
13797
|
chainId: number;
|
|
@@ -13812,7 +13812,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13812
13812
|
preVerificationGas?: string | number | bigint | undefined;
|
|
13813
13813
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
13814
13814
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
13815
|
-
|
|
13815
|
+
eip7702auth?: {
|
|
13816
13816
|
nonce: string | number | bigint;
|
|
13817
13817
|
contractAddress: string;
|
|
13818
13818
|
chainId: string | number | bigint;
|
|
@@ -13833,7 +13833,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13833
13833
|
maxFeePerGas: bigint;
|
|
13834
13834
|
maxPriorityFeePerGas: bigint;
|
|
13835
13835
|
signature: `0x${string}`;
|
|
13836
|
-
|
|
13836
|
+
eip7702auth?: {
|
|
13837
13837
|
nonce: number;
|
|
13838
13838
|
contractAddress: `0x${string}`;
|
|
13839
13839
|
chainId: number;
|
|
@@ -13854,7 +13854,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13854
13854
|
preVerificationGas?: string | number | bigint | undefined;
|
|
13855
13855
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
13856
13856
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
13857
|
-
|
|
13857
|
+
eip7702auth?: {
|
|
13858
13858
|
nonce: string | number | bigint;
|
|
13859
13859
|
contractAddress: string;
|
|
13860
13860
|
chainId: string | number | bigint;
|
|
@@ -13879,7 +13879,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13879
13879
|
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>;
|
|
13880
13880
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
13881
13881
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
13882
|
-
|
|
13882
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
13883
13883
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
13884
13884
|
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>;
|
|
13885
13885
|
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>;
|
|
@@ -13920,7 +13920,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13920
13920
|
paymasterPostOpGasLimit: bigint | null;
|
|
13921
13921
|
factoryData: `0x${string}` | null;
|
|
13922
13922
|
paymasterData: `0x${string}` | null;
|
|
13923
|
-
|
|
13923
|
+
eip7702auth?: {
|
|
13924
13924
|
nonce: number;
|
|
13925
13925
|
contractAddress: `0x${string}`;
|
|
13926
13926
|
chainId: number;
|
|
@@ -13945,7 +13945,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13945
13945
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
13946
13946
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
13947
13947
|
paymasterData?: string | null | undefined;
|
|
13948
|
-
|
|
13948
|
+
eip7702auth?: {
|
|
13949
13949
|
nonce: string | number | bigint;
|
|
13950
13950
|
contractAddress: string;
|
|
13951
13951
|
chainId: string | number | bigint;
|
|
@@ -13970,7 +13970,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13970
13970
|
paymasterPostOpGasLimit: bigint | null;
|
|
13971
13971
|
factoryData: `0x${string}` | null;
|
|
13972
13972
|
paymasterData: `0x${string}` | null;
|
|
13973
|
-
|
|
13973
|
+
eip7702auth?: {
|
|
13974
13974
|
nonce: number;
|
|
13975
13975
|
contractAddress: `0x${string}`;
|
|
13976
13976
|
chainId: number;
|
|
@@ -13995,7 +13995,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13995
13995
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
13996
13996
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
13997
13997
|
paymasterData?: string | null | undefined;
|
|
13998
|
-
|
|
13998
|
+
eip7702auth?: {
|
|
13999
13999
|
nonce: string | number | bigint;
|
|
14000
14000
|
contractAddress: string;
|
|
14001
14001
|
chainId: string | number | bigint;
|
|
@@ -14016,7 +14016,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
14016
14016
|
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>>;
|
|
14017
14017
|
paymasterAndData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
14018
14018
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
14019
|
-
|
|
14019
|
+
eip7702auth: z.ZodOptional<z.ZodObject<{
|
|
14020
14020
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
14021
14021
|
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>;
|
|
14022
14022
|
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>;
|
|
@@ -14053,7 +14053,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
14053
14053
|
maxFeePerGas: bigint;
|
|
14054
14054
|
maxPriorityFeePerGas: bigint;
|
|
14055
14055
|
signature: `0x${string}`;
|
|
14056
|
-
|
|
14056
|
+
eip7702auth?: {
|
|
14057
14057
|
nonce: number;
|
|
14058
14058
|
contractAddress: `0x${string}`;
|
|
14059
14059
|
chainId: number;
|
|
@@ -14074,7 +14074,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
14074
14074
|
preVerificationGas?: string | number | bigint | undefined;
|
|
14075
14075
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
14076
14076
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
14077
|
-
|
|
14077
|
+
eip7702auth?: {
|
|
14078
14078
|
nonce: string | number | bigint;
|
|
14079
14079
|
contractAddress: string;
|
|
14080
14080
|
chainId: string | number | bigint;
|
|
@@ -14095,7 +14095,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
14095
14095
|
maxFeePerGas: bigint;
|
|
14096
14096
|
maxPriorityFeePerGas: bigint;
|
|
14097
14097
|
signature: `0x${string}`;
|
|
14098
|
-
|
|
14098
|
+
eip7702auth?: {
|
|
14099
14099
|
nonce: number;
|
|
14100
14100
|
contractAddress: `0x${string}`;
|
|
14101
14101
|
chainId: number;
|
|
@@ -14116,7 +14116,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
14116
14116
|
preVerificationGas?: string | number | bigint | undefined;
|
|
14117
14117
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
14118
14118
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
14119
|
-
|
|
14119
|
+
eip7702auth?: {
|
|
14120
14120
|
nonce: string | number | bigint;
|
|
14121
14121
|
contractAddress: string;
|
|
14122
14122
|
chainId: string | number | bigint;
|
|
@@ -14141,7 +14141,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
14141
14141
|
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>;
|
|
14142
14142
|
paymasterData: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
|
|
14143
14143
|
signature: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
14144
|
-
|
|
14144
|
+
eip7702auth: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
14145
14145
|
contractAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
14146
14146
|
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>;
|
|
14147
14147
|
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>;
|
|
@@ -14182,7 +14182,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
14182
14182
|
paymasterPostOpGasLimit: bigint | null;
|
|
14183
14183
|
factoryData: `0x${string}` | null;
|
|
14184
14184
|
paymasterData: `0x${string}` | null;
|
|
14185
|
-
|
|
14185
|
+
eip7702auth?: {
|
|
14186
14186
|
nonce: number;
|
|
14187
14187
|
contractAddress: `0x${string}`;
|
|
14188
14188
|
chainId: number;
|
|
@@ -14207,7 +14207,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
14207
14207
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
14208
14208
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
14209
14209
|
paymasterData?: string | null | undefined;
|
|
14210
|
-
|
|
14210
|
+
eip7702auth?: {
|
|
14211
14211
|
nonce: string | number | bigint;
|
|
14212
14212
|
contractAddress: string;
|
|
14213
14213
|
chainId: string | number | bigint;
|
|
@@ -14232,7 +14232,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
14232
14232
|
paymasterPostOpGasLimit: bigint | null;
|
|
14233
14233
|
factoryData: `0x${string}` | null;
|
|
14234
14234
|
paymasterData: `0x${string}` | null;
|
|
14235
|
-
|
|
14235
|
+
eip7702auth?: {
|
|
14236
14236
|
nonce: number;
|
|
14237
14237
|
contractAddress: `0x${string}`;
|
|
14238
14238
|
chainId: number;
|
|
@@ -14257,7 +14257,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
14257
14257
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
14258
14258
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
14259
14259
|
paymasterData?: string | null | undefined;
|
|
14260
|
-
|
|
14260
|
+
eip7702auth?: {
|
|
14261
14261
|
nonce: string | number | bigint;
|
|
14262
14262
|
contractAddress: string;
|
|
14263
14263
|
chainId: string | number | bigint;
|
|
@@ -14355,7 +14355,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
14355
14355
|
maxFeePerGas: bigint;
|
|
14356
14356
|
maxPriorityFeePerGas: bigint;
|
|
14357
14357
|
signature: `0x${string}`;
|
|
14358
|
-
|
|
14358
|
+
eip7702auth?: {
|
|
14359
14359
|
nonce: number;
|
|
14360
14360
|
contractAddress: `0x${string}`;
|
|
14361
14361
|
chainId: number;
|
|
@@ -14380,7 +14380,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
14380
14380
|
paymasterPostOpGasLimit: bigint | null;
|
|
14381
14381
|
factoryData: `0x${string}` | null;
|
|
14382
14382
|
paymasterData: `0x${string}` | null;
|
|
14383
|
-
|
|
14383
|
+
eip7702auth?: {
|
|
14384
14384
|
nonce: number;
|
|
14385
14385
|
contractAddress: `0x${string}`;
|
|
14386
14386
|
chainId: number;
|
|
@@ -14401,7 +14401,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
14401
14401
|
maxFeePerGas: bigint;
|
|
14402
14402
|
maxPriorityFeePerGas: bigint;
|
|
14403
14403
|
signature: `0x${string}`;
|
|
14404
|
-
|
|
14404
|
+
eip7702auth?: {
|
|
14405
14405
|
nonce: number;
|
|
14406
14406
|
contractAddress: `0x${string}`;
|
|
14407
14407
|
chainId: number;
|
|
@@ -14426,7 +14426,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
14426
14426
|
paymasterPostOpGasLimit: bigint | null;
|
|
14427
14427
|
factoryData: `0x${string}` | null;
|
|
14428
14428
|
paymasterData: `0x${string}` | null;
|
|
14429
|
-
|
|
14429
|
+
eip7702auth?: {
|
|
14430
14430
|
nonce: number;
|
|
14431
14431
|
contractAddress: `0x${string}`;
|
|
14432
14432
|
chainId: number;
|
|
@@ -14479,7 +14479,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
14479
14479
|
preVerificationGas?: string | number | bigint | undefined;
|
|
14480
14480
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
14481
14481
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
14482
|
-
|
|
14482
|
+
eip7702auth?: {
|
|
14483
14483
|
nonce: string | number | bigint;
|
|
14484
14484
|
contractAddress: string;
|
|
14485
14485
|
chainId: string | number | bigint;
|
|
@@ -14504,7 +14504,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
14504
14504
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
14505
14505
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
14506
14506
|
paymasterData?: string | null | undefined;
|
|
14507
|
-
|
|
14507
|
+
eip7702auth?: {
|
|
14508
14508
|
nonce: string | number | bigint;
|
|
14509
14509
|
contractAddress: string;
|
|
14510
14510
|
chainId: string | number | bigint;
|
|
@@ -14525,7 +14525,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
14525
14525
|
preVerificationGas?: string | number | bigint | undefined;
|
|
14526
14526
|
maxPriorityFeePerGas?: string | number | bigint | undefined;
|
|
14527
14527
|
maxFeePerGas?: string | number | bigint | undefined;
|
|
14528
|
-
|
|
14528
|
+
eip7702auth?: {
|
|
14529
14529
|
nonce: string | number | bigint;
|
|
14530
14530
|
contractAddress: string;
|
|
14531
14531
|
chainId: string | number | bigint;
|
|
@@ -14550,7 +14550,7 @@ export declare const bundlerRpcSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
14550
14550
|
paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
|
|
14551
14551
|
paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
|
|
14552
14552
|
paymasterData?: string | null | undefined;
|
|
14553
|
-
|
|
14553
|
+
eip7702auth?: {
|
|
14554
14554
|
nonce: string | number | bigint;
|
|
14555
14555
|
contractAddress: string;
|
|
14556
14556
|
chainId: string | number | bigint;
|