@pimlico/alto 0.0.0-main.20241219T215029 → 0.0.0-main.20241220T183546
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/cli/config/bundler.d.ts +6 -0
- package/esm/cli/config/bundler.js +1 -0
- package/esm/cli/config/bundler.js.map +1 -1
- package/esm/cli/config/options.js +8 -2
- package/esm/cli/config/options.js.map +1 -1
- package/esm/cli/deploySimulationsContract.js +45 -19
- package/esm/cli/deploySimulationsContract.js.map +1 -1
- package/esm/rpc/estimation/gasEstimationsV07.d.ts +14 -9
- package/esm/rpc/estimation/gasEstimationsV07.js +197 -41
- package/esm/rpc/estimation/gasEstimationsV07.js.map +1 -1
- package/esm/rpc/estimation/types.d.ts +9 -2
- package/esm/rpc/estimation/types.js.map +1 -1
- package/esm/rpc/rpcHandler.js +10 -7
- package/esm/rpc/rpcHandler.js.map +1 -1
- package/esm/types/contracts/EntryPointSimulationsV7.d.ts +983 -15
- package/esm/types/contracts/EntryPointSimulationsV7.js +1178 -425
- package/esm/types/contracts/EntryPointSimulationsV7.js.map +1 -1
- package/esm/types/contracts/PimlicoEntryPointSimulations.d.ts +2 -1
- package/esm/types/contracts/PimlicoEntryPointSimulations.js +2 -1
- package/esm/types/contracts/PimlicoEntryPointSimulations.js.map +1 -1
- package/esm/types/validation.d.ts +210 -210
- package/esm/types/validation.js +1 -1
- package/esm/types/validation.js.map +1 -1
- package/esm/utils/validation.d.ts +5 -2
- package/esm/utils/validation.js +9 -4
- package/esm/utils/validation.js.map +1 -1
- package/lib/cli/config/bundler.d.ts +6 -0
- package/lib/cli/config/bundler.js +1 -0
- package/lib/cli/config/bundler.js.map +1 -1
- package/lib/cli/config/options.js +8 -2
- package/lib/cli/config/options.js.map +1 -1
- package/lib/cli/deploySimulationsContract.js +43 -17
- package/lib/cli/deploySimulationsContract.js.map +1 -1
- package/lib/rpc/estimation/gasEstimationsV07.d.ts +14 -9
- package/lib/rpc/estimation/gasEstimationsV07.js +195 -39
- package/lib/rpc/estimation/gasEstimationsV07.js.map +1 -1
- package/lib/rpc/estimation/types.d.ts +9 -2
- package/lib/rpc/estimation/types.js.map +1 -1
- package/lib/rpc/rpcHandler.js +10 -7
- package/lib/rpc/rpcHandler.js.map +1 -1
- package/lib/types/contracts/EntryPointSimulationsV7.d.ts +983 -15
- package/lib/types/contracts/EntryPointSimulationsV7.js +1179 -426
- package/lib/types/contracts/EntryPointSimulationsV7.js.map +1 -1
- package/lib/types/contracts/PimlicoEntryPointSimulations.d.ts +2 -1
- package/lib/types/contracts/PimlicoEntryPointSimulations.js +3 -2
- package/lib/types/contracts/PimlicoEntryPointSimulations.js.map +1 -1
- package/lib/types/validation.d.ts +210 -210
- package/lib/types/validation.js +2 -2
- package/lib/types/validation.js.map +1 -1
- package/lib/utils/validation.d.ts +5 -2
- package/lib/utils/validation.js +9 -4
- package/lib/utils/validation.js.map +1 -1
- package/package.json +1 -1
|
@@ -127,7 +127,7 @@ export declare const executionResultSchema: z.ZodUnion<[z.ZodEffects<z.ZodTuple<
|
|
|
127
127
|
targetResult: `0x${string}`;
|
|
128
128
|
}, [bigint, bigint, bigint, bigint, bigint, bigint, boolean, string]>]>;
|
|
129
129
|
export type ExecutionResult = z.infer<typeof executionResultSchema>;
|
|
130
|
-
export declare const
|
|
130
|
+
export declare const binarySearchCallResultSchema: z.ZodObject<{
|
|
131
131
|
gasUsed: z.ZodBigInt;
|
|
132
132
|
success: z.ZodBoolean;
|
|
133
133
|
returnData: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
@@ -140,7 +140,7 @@ export declare const targetCallResultSchema: z.ZodObject<{
|
|
|
140
140
|
returnData: string;
|
|
141
141
|
gasUsed: bigint;
|
|
142
142
|
}>;
|
|
143
|
-
export type
|
|
143
|
+
export type BinarySearchCallResult = z.infer<typeof binarySearchCallResultSchema>;
|
|
144
144
|
export declare const executionResultErrorSchema: z.ZodObject<{
|
|
145
145
|
args: z.ZodUnion<[z.ZodEffects<z.ZodTuple<[z.ZodBigInt, z.ZodBigInt, z.ZodNumber, z.ZodNumber, z.ZodBoolean, z.ZodString], null>, {
|
|
146
146
|
preOpGas: bigint;
|
|
@@ -314,8 +314,8 @@ export declare const validationResultSchemaV07: z.ZodEffects<z.ZodTuple<[z.ZodOb
|
|
|
314
314
|
preOpGas: bigint;
|
|
315
315
|
prefund: bigint;
|
|
316
316
|
paymasterContext: `0x${string}`;
|
|
317
|
-
accountValidationData: bigint;
|
|
318
317
|
paymasterValidationData: bigint;
|
|
318
|
+
accountValidationData: bigint;
|
|
319
319
|
accountSigFailed?: boolean | undefined;
|
|
320
320
|
paymasterSigFailed?: boolean | undefined;
|
|
321
321
|
validAfter?: number | undefined;
|
|
@@ -324,8 +324,8 @@ export declare const validationResultSchemaV07: z.ZodEffects<z.ZodTuple<[z.ZodOb
|
|
|
324
324
|
preOpGas: bigint;
|
|
325
325
|
prefund: bigint;
|
|
326
326
|
paymasterContext: string;
|
|
327
|
-
accountValidationData: bigint;
|
|
328
327
|
paymasterValidationData: bigint;
|
|
328
|
+
accountValidationData: bigint;
|
|
329
329
|
accountSigFailed?: boolean | undefined;
|
|
330
330
|
paymasterSigFailed?: boolean | undefined;
|
|
331
331
|
validAfter?: number | undefined;
|
|
@@ -371,8 +371,8 @@ export declare const validationResultSchemaV07: z.ZodEffects<z.ZodTuple<[z.ZodOb
|
|
|
371
371
|
preOpGas: bigint;
|
|
372
372
|
prefund: bigint;
|
|
373
373
|
paymasterContext: `0x${string}`;
|
|
374
|
-
accountValidationData: bigint;
|
|
375
374
|
paymasterValidationData: bigint;
|
|
375
|
+
accountValidationData: bigint;
|
|
376
376
|
accountSigFailed?: boolean | undefined;
|
|
377
377
|
paymasterSigFailed?: boolean | undefined;
|
|
378
378
|
validAfter?: number | undefined;
|
|
@@ -397,8 +397,8 @@ export declare const validationResultSchemaV07: z.ZodEffects<z.ZodTuple<[z.ZodOb
|
|
|
397
397
|
preOpGas: bigint;
|
|
398
398
|
prefund: bigint;
|
|
399
399
|
paymasterContext: string;
|
|
400
|
-
accountValidationData: bigint;
|
|
401
400
|
paymasterValidationData: bigint;
|
|
401
|
+
accountValidationData: bigint;
|
|
402
402
|
accountSigFailed?: boolean | undefined;
|
|
403
403
|
paymasterSigFailed?: boolean | undefined;
|
|
404
404
|
validAfter?: number | undefined;
|
|
@@ -530,8 +530,8 @@ export declare const validationResultSchema: z.ZodUnion<[z.ZodEffects<z.ZodTuple
|
|
|
530
530
|
preOpGas: bigint;
|
|
531
531
|
prefund: bigint;
|
|
532
532
|
paymasterContext: `0x${string}`;
|
|
533
|
-
accountValidationData: bigint;
|
|
534
533
|
paymasterValidationData: bigint;
|
|
534
|
+
accountValidationData: bigint;
|
|
535
535
|
accountSigFailed?: boolean | undefined;
|
|
536
536
|
paymasterSigFailed?: boolean | undefined;
|
|
537
537
|
validAfter?: number | undefined;
|
|
@@ -540,8 +540,8 @@ export declare const validationResultSchema: z.ZodUnion<[z.ZodEffects<z.ZodTuple
|
|
|
540
540
|
preOpGas: bigint;
|
|
541
541
|
prefund: bigint;
|
|
542
542
|
paymasterContext: string;
|
|
543
|
-
accountValidationData: bigint;
|
|
544
543
|
paymasterValidationData: bigint;
|
|
544
|
+
accountValidationData: bigint;
|
|
545
545
|
accountSigFailed?: boolean | undefined;
|
|
546
546
|
paymasterSigFailed?: boolean | undefined;
|
|
547
547
|
validAfter?: number | undefined;
|
|
@@ -587,8 +587,8 @@ export declare const validationResultSchema: z.ZodUnion<[z.ZodEffects<z.ZodTuple
|
|
|
587
587
|
preOpGas: bigint;
|
|
588
588
|
prefund: bigint;
|
|
589
589
|
paymasterContext: `0x${string}`;
|
|
590
|
-
accountValidationData: bigint;
|
|
591
590
|
paymasterValidationData: bigint;
|
|
591
|
+
accountValidationData: bigint;
|
|
592
592
|
accountSigFailed?: boolean | undefined;
|
|
593
593
|
paymasterSigFailed?: boolean | undefined;
|
|
594
594
|
validAfter?: number | undefined;
|
|
@@ -613,8 +613,8 @@ export declare const validationResultSchema: z.ZodUnion<[z.ZodEffects<z.ZodTuple
|
|
|
613
613
|
preOpGas: bigint;
|
|
614
614
|
prefund: bigint;
|
|
615
615
|
paymasterContext: string;
|
|
616
|
-
accountValidationData: bigint;
|
|
617
616
|
paymasterValidationData: bigint;
|
|
617
|
+
accountValidationData: bigint;
|
|
618
618
|
accountSigFailed?: boolean | undefined;
|
|
619
619
|
paymasterSigFailed?: boolean | undefined;
|
|
620
620
|
validAfter?: number | undefined;
|
|
@@ -750,8 +750,8 @@ export declare const validationResultErrorSchema: z.ZodObject<{
|
|
|
750
750
|
preOpGas: bigint;
|
|
751
751
|
prefund: bigint;
|
|
752
752
|
paymasterContext: `0x${string}`;
|
|
753
|
-
accountValidationData: bigint;
|
|
754
753
|
paymasterValidationData: bigint;
|
|
754
|
+
accountValidationData: bigint;
|
|
755
755
|
accountSigFailed?: boolean | undefined;
|
|
756
756
|
paymasterSigFailed?: boolean | undefined;
|
|
757
757
|
validAfter?: number | undefined;
|
|
@@ -760,8 +760,8 @@ export declare const validationResultErrorSchema: z.ZodObject<{
|
|
|
760
760
|
preOpGas: bigint;
|
|
761
761
|
prefund: bigint;
|
|
762
762
|
paymasterContext: string;
|
|
763
|
-
accountValidationData: bigint;
|
|
764
763
|
paymasterValidationData: bigint;
|
|
764
|
+
accountValidationData: bigint;
|
|
765
765
|
accountSigFailed?: boolean | undefined;
|
|
766
766
|
paymasterSigFailed?: boolean | undefined;
|
|
767
767
|
validAfter?: number | undefined;
|
|
@@ -807,8 +807,8 @@ export declare const validationResultErrorSchema: z.ZodObject<{
|
|
|
807
807
|
preOpGas: bigint;
|
|
808
808
|
prefund: bigint;
|
|
809
809
|
paymasterContext: `0x${string}`;
|
|
810
|
-
accountValidationData: bigint;
|
|
811
810
|
paymasterValidationData: bigint;
|
|
811
|
+
accountValidationData: bigint;
|
|
812
812
|
accountSigFailed?: boolean | undefined;
|
|
813
813
|
paymasterSigFailed?: boolean | undefined;
|
|
814
814
|
validAfter?: number | undefined;
|
|
@@ -833,8 +833,8 @@ export declare const validationResultErrorSchema: z.ZodObject<{
|
|
|
833
833
|
preOpGas: bigint;
|
|
834
834
|
prefund: bigint;
|
|
835
835
|
paymasterContext: string;
|
|
836
|
-
accountValidationData: bigint;
|
|
837
836
|
paymasterValidationData: bigint;
|
|
837
|
+
accountValidationData: bigint;
|
|
838
838
|
accountSigFailed?: boolean | undefined;
|
|
839
839
|
paymasterSigFailed?: boolean | undefined;
|
|
840
840
|
validAfter?: number | undefined;
|
|
@@ -883,8 +883,8 @@ export declare const validationResultErrorSchema: z.ZodObject<{
|
|
|
883
883
|
preOpGas: bigint;
|
|
884
884
|
prefund: bigint;
|
|
885
885
|
paymasterContext: `0x${string}`;
|
|
886
|
-
accountValidationData: bigint;
|
|
887
886
|
paymasterValidationData: bigint;
|
|
887
|
+
accountValidationData: bigint;
|
|
888
888
|
accountSigFailed?: boolean | undefined;
|
|
889
889
|
paymasterSigFailed?: boolean | undefined;
|
|
890
890
|
validAfter?: number | undefined;
|
|
@@ -934,8 +934,8 @@ export declare const validationResultErrorSchema: z.ZodObject<{
|
|
|
934
934
|
preOpGas: bigint;
|
|
935
935
|
prefund: bigint;
|
|
936
936
|
paymasterContext: `0x${string}`;
|
|
937
|
-
accountValidationData: bigint;
|
|
938
937
|
paymasterValidationData: bigint;
|
|
938
|
+
accountValidationData: bigint;
|
|
939
939
|
accountSigFailed?: boolean | undefined;
|
|
940
940
|
paymasterSigFailed?: boolean | undefined;
|
|
941
941
|
validAfter?: number | undefined;
|
|
@@ -982,8 +982,8 @@ export declare const validationResultErrorSchema: z.ZodObject<{
|
|
|
982
982
|
preOpGas: bigint;
|
|
983
983
|
prefund: bigint;
|
|
984
984
|
paymasterContext: string;
|
|
985
|
-
accountValidationData: bigint;
|
|
986
985
|
paymasterValidationData: bigint;
|
|
986
|
+
accountValidationData: bigint;
|
|
987
987
|
accountSigFailed?: boolean | undefined;
|
|
988
988
|
paymasterSigFailed?: boolean | undefined;
|
|
989
989
|
validAfter?: number | undefined;
|
|
@@ -1023,8 +1023,8 @@ export declare const validationResultErrorSchema: z.ZodObject<{
|
|
|
1023
1023
|
preOpGas: bigint;
|
|
1024
1024
|
prefund: bigint;
|
|
1025
1025
|
paymasterContext: string;
|
|
1026
|
-
accountValidationData: bigint;
|
|
1027
1026
|
paymasterValidationData: bigint;
|
|
1027
|
+
accountValidationData: bigint;
|
|
1028
1028
|
accountSigFailed?: boolean | undefined;
|
|
1029
1029
|
paymasterSigFailed?: boolean | undefined;
|
|
1030
1030
|
validAfter?: number | undefined;
|
|
@@ -1204,8 +1204,8 @@ export declare const validationResultWithAggregationSchemaV07: z.ZodEffects<z.Zo
|
|
|
1204
1204
|
preOpGas: bigint;
|
|
1205
1205
|
prefund: bigint;
|
|
1206
1206
|
paymasterContext: `0x${string}`;
|
|
1207
|
-
accountValidationData: bigint;
|
|
1208
1207
|
paymasterValidationData: bigint;
|
|
1208
|
+
accountValidationData: bigint;
|
|
1209
1209
|
accountSigFailed?: boolean | undefined;
|
|
1210
1210
|
paymasterSigFailed?: boolean | undefined;
|
|
1211
1211
|
validAfter?: number | undefined;
|
|
@@ -1214,8 +1214,8 @@ export declare const validationResultWithAggregationSchemaV07: z.ZodEffects<z.Zo
|
|
|
1214
1214
|
preOpGas: bigint;
|
|
1215
1215
|
prefund: bigint;
|
|
1216
1216
|
paymasterContext: string;
|
|
1217
|
-
accountValidationData: bigint;
|
|
1218
1217
|
paymasterValidationData: bigint;
|
|
1218
|
+
accountValidationData: bigint;
|
|
1219
1219
|
accountSigFailed?: boolean | undefined;
|
|
1220
1220
|
paymasterSigFailed?: boolean | undefined;
|
|
1221
1221
|
validAfter?: number | undefined;
|
|
@@ -1290,8 +1290,8 @@ export declare const validationResultWithAggregationSchemaV07: z.ZodEffects<z.Zo
|
|
|
1290
1290
|
preOpGas: bigint;
|
|
1291
1291
|
prefund: bigint;
|
|
1292
1292
|
paymasterContext: `0x${string}`;
|
|
1293
|
-
accountValidationData: bigint;
|
|
1294
1293
|
paymasterValidationData: bigint;
|
|
1294
|
+
accountValidationData: bigint;
|
|
1295
1295
|
accountSigFailed?: boolean | undefined;
|
|
1296
1296
|
paymasterSigFailed?: boolean | undefined;
|
|
1297
1297
|
validAfter?: number | undefined;
|
|
@@ -1324,8 +1324,8 @@ export declare const validationResultWithAggregationSchemaV07: z.ZodEffects<z.Zo
|
|
|
1324
1324
|
preOpGas: bigint;
|
|
1325
1325
|
prefund: bigint;
|
|
1326
1326
|
paymasterContext: string;
|
|
1327
|
-
accountValidationData: bigint;
|
|
1328
1327
|
paymasterValidationData: bigint;
|
|
1328
|
+
accountValidationData: bigint;
|
|
1329
1329
|
accountSigFailed?: boolean | undefined;
|
|
1330
1330
|
paymasterSigFailed?: boolean | undefined;
|
|
1331
1331
|
validAfter?: number | undefined;
|
|
@@ -1508,8 +1508,8 @@ export declare const validationResultWithAggregationSchema: z.ZodUnion<[z.ZodEff
|
|
|
1508
1508
|
preOpGas: bigint;
|
|
1509
1509
|
prefund: bigint;
|
|
1510
1510
|
paymasterContext: `0x${string}`;
|
|
1511
|
-
accountValidationData: bigint;
|
|
1512
1511
|
paymasterValidationData: bigint;
|
|
1512
|
+
accountValidationData: bigint;
|
|
1513
1513
|
accountSigFailed?: boolean | undefined;
|
|
1514
1514
|
paymasterSigFailed?: boolean | undefined;
|
|
1515
1515
|
validAfter?: number | undefined;
|
|
@@ -1518,8 +1518,8 @@ export declare const validationResultWithAggregationSchema: z.ZodUnion<[z.ZodEff
|
|
|
1518
1518
|
preOpGas: bigint;
|
|
1519
1519
|
prefund: bigint;
|
|
1520
1520
|
paymasterContext: string;
|
|
1521
|
-
accountValidationData: bigint;
|
|
1522
1521
|
paymasterValidationData: bigint;
|
|
1522
|
+
accountValidationData: bigint;
|
|
1523
1523
|
accountSigFailed?: boolean | undefined;
|
|
1524
1524
|
paymasterSigFailed?: boolean | undefined;
|
|
1525
1525
|
validAfter?: number | undefined;
|
|
@@ -1594,8 +1594,8 @@ export declare const validationResultWithAggregationSchema: z.ZodUnion<[z.ZodEff
|
|
|
1594
1594
|
preOpGas: bigint;
|
|
1595
1595
|
prefund: bigint;
|
|
1596
1596
|
paymasterContext: `0x${string}`;
|
|
1597
|
-
accountValidationData: bigint;
|
|
1598
1597
|
paymasterValidationData: bigint;
|
|
1598
|
+
accountValidationData: bigint;
|
|
1599
1599
|
accountSigFailed?: boolean | undefined;
|
|
1600
1600
|
paymasterSigFailed?: boolean | undefined;
|
|
1601
1601
|
validAfter?: number | undefined;
|
|
@@ -1628,8 +1628,8 @@ export declare const validationResultWithAggregationSchema: z.ZodUnion<[z.ZodEff
|
|
|
1628
1628
|
preOpGas: bigint;
|
|
1629
1629
|
prefund: bigint;
|
|
1630
1630
|
paymasterContext: string;
|
|
1631
|
-
accountValidationData: bigint;
|
|
1632
1631
|
paymasterValidationData: bigint;
|
|
1632
|
+
accountValidationData: bigint;
|
|
1633
1633
|
accountSigFailed?: boolean | undefined;
|
|
1634
1634
|
paymasterSigFailed?: boolean | undefined;
|
|
1635
1635
|
validAfter?: number | undefined;
|
|
@@ -1816,8 +1816,8 @@ export declare const validationResultWithAggregationErrorSchema: z.ZodObject<{
|
|
|
1816
1816
|
preOpGas: bigint;
|
|
1817
1817
|
prefund: bigint;
|
|
1818
1818
|
paymasterContext: `0x${string}`;
|
|
1819
|
-
accountValidationData: bigint;
|
|
1820
1819
|
paymasterValidationData: bigint;
|
|
1820
|
+
accountValidationData: bigint;
|
|
1821
1821
|
accountSigFailed?: boolean | undefined;
|
|
1822
1822
|
paymasterSigFailed?: boolean | undefined;
|
|
1823
1823
|
validAfter?: number | undefined;
|
|
@@ -1826,8 +1826,8 @@ export declare const validationResultWithAggregationErrorSchema: z.ZodObject<{
|
|
|
1826
1826
|
preOpGas: bigint;
|
|
1827
1827
|
prefund: bigint;
|
|
1828
1828
|
paymasterContext: string;
|
|
1829
|
-
accountValidationData: bigint;
|
|
1830
1829
|
paymasterValidationData: bigint;
|
|
1830
|
+
accountValidationData: bigint;
|
|
1831
1831
|
accountSigFailed?: boolean | undefined;
|
|
1832
1832
|
paymasterSigFailed?: boolean | undefined;
|
|
1833
1833
|
validAfter?: number | undefined;
|
|
@@ -1902,8 +1902,8 @@ export declare const validationResultWithAggregationErrorSchema: z.ZodObject<{
|
|
|
1902
1902
|
preOpGas: bigint;
|
|
1903
1903
|
prefund: bigint;
|
|
1904
1904
|
paymasterContext: `0x${string}`;
|
|
1905
|
-
accountValidationData: bigint;
|
|
1906
1905
|
paymasterValidationData: bigint;
|
|
1906
|
+
accountValidationData: bigint;
|
|
1907
1907
|
accountSigFailed?: boolean | undefined;
|
|
1908
1908
|
paymasterSigFailed?: boolean | undefined;
|
|
1909
1909
|
validAfter?: number | undefined;
|
|
@@ -1936,8 +1936,8 @@ export declare const validationResultWithAggregationErrorSchema: z.ZodObject<{
|
|
|
1936
1936
|
preOpGas: bigint;
|
|
1937
1937
|
prefund: bigint;
|
|
1938
1938
|
paymasterContext: string;
|
|
1939
|
-
accountValidationData: bigint;
|
|
1940
1939
|
paymasterValidationData: bigint;
|
|
1940
|
+
accountValidationData: bigint;
|
|
1941
1941
|
accountSigFailed?: boolean | undefined;
|
|
1942
1942
|
paymasterSigFailed?: boolean | undefined;
|
|
1943
1943
|
validAfter?: number | undefined;
|
|
@@ -2001,8 +2001,8 @@ export declare const validationResultWithAggregationErrorSchema: z.ZodObject<{
|
|
|
2001
2001
|
preOpGas: bigint;
|
|
2002
2002
|
prefund: bigint;
|
|
2003
2003
|
paymasterContext: `0x${string}`;
|
|
2004
|
-
accountValidationData: bigint;
|
|
2005
2004
|
paymasterValidationData: bigint;
|
|
2005
|
+
accountValidationData: bigint;
|
|
2006
2006
|
accountSigFailed?: boolean | undefined;
|
|
2007
2007
|
paymasterSigFailed?: boolean | undefined;
|
|
2008
2008
|
validAfter?: number | undefined;
|
|
@@ -2068,8 +2068,8 @@ export declare const validationResultWithAggregationErrorSchema: z.ZodObject<{
|
|
|
2068
2068
|
preOpGas: bigint;
|
|
2069
2069
|
prefund: bigint;
|
|
2070
2070
|
paymasterContext: `0x${string}`;
|
|
2071
|
-
accountValidationData: bigint;
|
|
2072
2071
|
paymasterValidationData: bigint;
|
|
2072
|
+
accountValidationData: bigint;
|
|
2073
2073
|
accountSigFailed?: boolean | undefined;
|
|
2074
2074
|
paymasterSigFailed?: boolean | undefined;
|
|
2075
2075
|
validAfter?: number | undefined;
|
|
@@ -2131,8 +2131,8 @@ export declare const validationResultWithAggregationErrorSchema: z.ZodObject<{
|
|
|
2131
2131
|
preOpGas: bigint;
|
|
2132
2132
|
prefund: bigint;
|
|
2133
2133
|
paymasterContext: string;
|
|
2134
|
-
accountValidationData: bigint;
|
|
2135
2134
|
paymasterValidationData: bigint;
|
|
2135
|
+
accountValidationData: bigint;
|
|
2136
2136
|
accountSigFailed?: boolean | undefined;
|
|
2137
2137
|
paymasterSigFailed?: boolean | undefined;
|
|
2138
2138
|
validAfter?: number | undefined;
|
|
@@ -2186,8 +2186,8 @@ export declare const validationResultWithAggregationErrorSchema: z.ZodObject<{
|
|
|
2186
2186
|
preOpGas: bigint;
|
|
2187
2187
|
prefund: bigint;
|
|
2188
2188
|
paymasterContext: string;
|
|
2189
|
-
accountValidationData: bigint;
|
|
2190
2189
|
paymasterValidationData: bigint;
|
|
2190
|
+
accountValidationData: bigint;
|
|
2191
2191
|
accountSigFailed?: boolean | undefined;
|
|
2192
2192
|
paymasterSigFailed?: boolean | undefined;
|
|
2193
2193
|
validAfter?: number | undefined;
|
|
@@ -2329,8 +2329,8 @@ export declare const entryPointErrorsSchema: z.ZodDiscriminatedUnion<"errorName"
|
|
|
2329
2329
|
preOpGas: bigint;
|
|
2330
2330
|
prefund: bigint;
|
|
2331
2331
|
paymasterContext: `0x${string}`;
|
|
2332
|
-
accountValidationData: bigint;
|
|
2333
2332
|
paymasterValidationData: bigint;
|
|
2333
|
+
accountValidationData: bigint;
|
|
2334
2334
|
accountSigFailed?: boolean | undefined;
|
|
2335
2335
|
paymasterSigFailed?: boolean | undefined;
|
|
2336
2336
|
validAfter?: number | undefined;
|
|
@@ -2339,8 +2339,8 @@ export declare const entryPointErrorsSchema: z.ZodDiscriminatedUnion<"errorName"
|
|
|
2339
2339
|
preOpGas: bigint;
|
|
2340
2340
|
prefund: bigint;
|
|
2341
2341
|
paymasterContext: string;
|
|
2342
|
-
accountValidationData: bigint;
|
|
2343
2342
|
paymasterValidationData: bigint;
|
|
2343
|
+
accountValidationData: bigint;
|
|
2344
2344
|
accountSigFailed?: boolean | undefined;
|
|
2345
2345
|
paymasterSigFailed?: boolean | undefined;
|
|
2346
2346
|
validAfter?: number | undefined;
|
|
@@ -2386,8 +2386,8 @@ export declare const entryPointErrorsSchema: z.ZodDiscriminatedUnion<"errorName"
|
|
|
2386
2386
|
preOpGas: bigint;
|
|
2387
2387
|
prefund: bigint;
|
|
2388
2388
|
paymasterContext: `0x${string}`;
|
|
2389
|
-
accountValidationData: bigint;
|
|
2390
2389
|
paymasterValidationData: bigint;
|
|
2390
|
+
accountValidationData: bigint;
|
|
2391
2391
|
accountSigFailed?: boolean | undefined;
|
|
2392
2392
|
paymasterSigFailed?: boolean | undefined;
|
|
2393
2393
|
validAfter?: number | undefined;
|
|
@@ -2412,8 +2412,8 @@ export declare const entryPointErrorsSchema: z.ZodDiscriminatedUnion<"errorName"
|
|
|
2412
2412
|
preOpGas: bigint;
|
|
2413
2413
|
prefund: bigint;
|
|
2414
2414
|
paymasterContext: string;
|
|
2415
|
-
accountValidationData: bigint;
|
|
2416
2415
|
paymasterValidationData: bigint;
|
|
2416
|
+
accountValidationData: bigint;
|
|
2417
2417
|
accountSigFailed?: boolean | undefined;
|
|
2418
2418
|
paymasterSigFailed?: boolean | undefined;
|
|
2419
2419
|
validAfter?: number | undefined;
|
|
@@ -2462,8 +2462,8 @@ export declare const entryPointErrorsSchema: z.ZodDiscriminatedUnion<"errorName"
|
|
|
2462
2462
|
preOpGas: bigint;
|
|
2463
2463
|
prefund: bigint;
|
|
2464
2464
|
paymasterContext: `0x${string}`;
|
|
2465
|
-
accountValidationData: bigint;
|
|
2466
2465
|
paymasterValidationData: bigint;
|
|
2466
|
+
accountValidationData: bigint;
|
|
2467
2467
|
accountSigFailed?: boolean | undefined;
|
|
2468
2468
|
paymasterSigFailed?: boolean | undefined;
|
|
2469
2469
|
validAfter?: number | undefined;
|
|
@@ -2513,8 +2513,8 @@ export declare const entryPointErrorsSchema: z.ZodDiscriminatedUnion<"errorName"
|
|
|
2513
2513
|
preOpGas: bigint;
|
|
2514
2514
|
prefund: bigint;
|
|
2515
2515
|
paymasterContext: `0x${string}`;
|
|
2516
|
-
accountValidationData: bigint;
|
|
2517
2516
|
paymasterValidationData: bigint;
|
|
2517
|
+
accountValidationData: bigint;
|
|
2518
2518
|
accountSigFailed?: boolean | undefined;
|
|
2519
2519
|
paymasterSigFailed?: boolean | undefined;
|
|
2520
2520
|
validAfter?: number | undefined;
|
|
@@ -2561,8 +2561,8 @@ export declare const entryPointErrorsSchema: z.ZodDiscriminatedUnion<"errorName"
|
|
|
2561
2561
|
preOpGas: bigint;
|
|
2562
2562
|
prefund: bigint;
|
|
2563
2563
|
paymasterContext: string;
|
|
2564
|
-
accountValidationData: bigint;
|
|
2565
2564
|
paymasterValidationData: bigint;
|
|
2565
|
+
accountValidationData: bigint;
|
|
2566
2566
|
accountSigFailed?: boolean | undefined;
|
|
2567
2567
|
paymasterSigFailed?: boolean | undefined;
|
|
2568
2568
|
validAfter?: number | undefined;
|
|
@@ -2602,8 +2602,8 @@ export declare const entryPointErrorsSchema: z.ZodDiscriminatedUnion<"errorName"
|
|
|
2602
2602
|
preOpGas: bigint;
|
|
2603
2603
|
prefund: bigint;
|
|
2604
2604
|
paymasterContext: string;
|
|
2605
|
-
accountValidationData: bigint;
|
|
2606
2605
|
paymasterValidationData: bigint;
|
|
2606
|
+
accountValidationData: bigint;
|
|
2607
2607
|
accountSigFailed?: boolean | undefined;
|
|
2608
2608
|
paymasterSigFailed?: boolean | undefined;
|
|
2609
2609
|
validAfter?: number | undefined;
|
|
@@ -2879,8 +2879,8 @@ export declare const entryPointErrorsSchema: z.ZodDiscriminatedUnion<"errorName"
|
|
|
2879
2879
|
preOpGas: bigint;
|
|
2880
2880
|
prefund: bigint;
|
|
2881
2881
|
paymasterContext: `0x${string}`;
|
|
2882
|
-
accountValidationData: bigint;
|
|
2883
2882
|
paymasterValidationData: bigint;
|
|
2883
|
+
accountValidationData: bigint;
|
|
2884
2884
|
accountSigFailed?: boolean | undefined;
|
|
2885
2885
|
paymasterSigFailed?: boolean | undefined;
|
|
2886
2886
|
validAfter?: number | undefined;
|
|
@@ -2889,8 +2889,8 @@ export declare const entryPointErrorsSchema: z.ZodDiscriminatedUnion<"errorName"
|
|
|
2889
2889
|
preOpGas: bigint;
|
|
2890
2890
|
prefund: bigint;
|
|
2891
2891
|
paymasterContext: string;
|
|
2892
|
-
accountValidationData: bigint;
|
|
2893
2892
|
paymasterValidationData: bigint;
|
|
2893
|
+
accountValidationData: bigint;
|
|
2894
2894
|
accountSigFailed?: boolean | undefined;
|
|
2895
2895
|
paymasterSigFailed?: boolean | undefined;
|
|
2896
2896
|
validAfter?: number | undefined;
|
|
@@ -2965,8 +2965,8 @@ export declare const entryPointErrorsSchema: z.ZodDiscriminatedUnion<"errorName"
|
|
|
2965
2965
|
preOpGas: bigint;
|
|
2966
2966
|
prefund: bigint;
|
|
2967
2967
|
paymasterContext: `0x${string}`;
|
|
2968
|
-
accountValidationData: bigint;
|
|
2969
2968
|
paymasterValidationData: bigint;
|
|
2969
|
+
accountValidationData: bigint;
|
|
2970
2970
|
accountSigFailed?: boolean | undefined;
|
|
2971
2971
|
paymasterSigFailed?: boolean | undefined;
|
|
2972
2972
|
validAfter?: number | undefined;
|
|
@@ -2999,8 +2999,8 @@ export declare const entryPointErrorsSchema: z.ZodDiscriminatedUnion<"errorName"
|
|
|
2999
2999
|
preOpGas: bigint;
|
|
3000
3000
|
prefund: bigint;
|
|
3001
3001
|
paymasterContext: string;
|
|
3002
|
-
accountValidationData: bigint;
|
|
3003
3002
|
paymasterValidationData: bigint;
|
|
3003
|
+
accountValidationData: bigint;
|
|
3004
3004
|
accountSigFailed?: boolean | undefined;
|
|
3005
3005
|
paymasterSigFailed?: boolean | undefined;
|
|
3006
3006
|
validAfter?: number | undefined;
|
|
@@ -3064,8 +3064,8 @@ export declare const entryPointErrorsSchema: z.ZodDiscriminatedUnion<"errorName"
|
|
|
3064
3064
|
preOpGas: bigint;
|
|
3065
3065
|
prefund: bigint;
|
|
3066
3066
|
paymasterContext: `0x${string}`;
|
|
3067
|
-
accountValidationData: bigint;
|
|
3068
3067
|
paymasterValidationData: bigint;
|
|
3068
|
+
accountValidationData: bigint;
|
|
3069
3069
|
accountSigFailed?: boolean | undefined;
|
|
3070
3070
|
paymasterSigFailed?: boolean | undefined;
|
|
3071
3071
|
validAfter?: number | undefined;
|
|
@@ -3131,8 +3131,8 @@ export declare const entryPointErrorsSchema: z.ZodDiscriminatedUnion<"errorName"
|
|
|
3131
3131
|
preOpGas: bigint;
|
|
3132
3132
|
prefund: bigint;
|
|
3133
3133
|
paymasterContext: `0x${string}`;
|
|
3134
|
-
accountValidationData: bigint;
|
|
3135
3134
|
paymasterValidationData: bigint;
|
|
3135
|
+
accountValidationData: bigint;
|
|
3136
3136
|
accountSigFailed?: boolean | undefined;
|
|
3137
3137
|
paymasterSigFailed?: boolean | undefined;
|
|
3138
3138
|
validAfter?: number | undefined;
|
|
@@ -3194,8 +3194,8 @@ export declare const entryPointErrorsSchema: z.ZodDiscriminatedUnion<"errorName"
|
|
|
3194
3194
|
preOpGas: bigint;
|
|
3195
3195
|
prefund: bigint;
|
|
3196
3196
|
paymasterContext: string;
|
|
3197
|
-
accountValidationData: bigint;
|
|
3198
3197
|
paymasterValidationData: bigint;
|
|
3198
|
+
accountValidationData: bigint;
|
|
3199
3199
|
accountSigFailed?: boolean | undefined;
|
|
3200
3200
|
paymasterSigFailed?: boolean | undefined;
|
|
3201
3201
|
validAfter?: number | undefined;
|
|
@@ -3249,8 +3249,8 @@ export declare const entryPointErrorsSchema: z.ZodDiscriminatedUnion<"errorName"
|
|
|
3249
3249
|
preOpGas: bigint;
|
|
3250
3250
|
prefund: bigint;
|
|
3251
3251
|
paymasterContext: string;
|
|
3252
|
-
accountValidationData: bigint;
|
|
3253
3252
|
paymasterValidationData: bigint;
|
|
3253
|
+
accountValidationData: bigint;
|
|
3254
3254
|
accountSigFailed?: boolean | undefined;
|
|
3255
3255
|
paymasterSigFailed?: boolean | undefined;
|
|
3256
3256
|
validAfter?: number | undefined;
|
|
@@ -3394,8 +3394,8 @@ export declare const errorCauseSchema: z.ZodObject<{
|
|
|
3394
3394
|
preOpGas: bigint;
|
|
3395
3395
|
prefund: bigint;
|
|
3396
3396
|
paymasterContext: `0x${string}`;
|
|
3397
|
-
accountValidationData: bigint;
|
|
3398
3397
|
paymasterValidationData: bigint;
|
|
3398
|
+
accountValidationData: bigint;
|
|
3399
3399
|
accountSigFailed?: boolean | undefined;
|
|
3400
3400
|
paymasterSigFailed?: boolean | undefined;
|
|
3401
3401
|
validAfter?: number | undefined;
|
|
@@ -3404,8 +3404,8 @@ export declare const errorCauseSchema: z.ZodObject<{
|
|
|
3404
3404
|
preOpGas: bigint;
|
|
3405
3405
|
prefund: bigint;
|
|
3406
3406
|
paymasterContext: string;
|
|
3407
|
-
accountValidationData: bigint;
|
|
3408
3407
|
paymasterValidationData: bigint;
|
|
3408
|
+
accountValidationData: bigint;
|
|
3409
3409
|
accountSigFailed?: boolean | undefined;
|
|
3410
3410
|
paymasterSigFailed?: boolean | undefined;
|
|
3411
3411
|
validAfter?: number | undefined;
|
|
@@ -3451,8 +3451,8 @@ export declare const errorCauseSchema: z.ZodObject<{
|
|
|
3451
3451
|
preOpGas: bigint;
|
|
3452
3452
|
prefund: bigint;
|
|
3453
3453
|
paymasterContext: `0x${string}`;
|
|
3454
|
-
accountValidationData: bigint;
|
|
3455
3454
|
paymasterValidationData: bigint;
|
|
3455
|
+
accountValidationData: bigint;
|
|
3456
3456
|
accountSigFailed?: boolean | undefined;
|
|
3457
3457
|
paymasterSigFailed?: boolean | undefined;
|
|
3458
3458
|
validAfter?: number | undefined;
|
|
@@ -3477,8 +3477,8 @@ export declare const errorCauseSchema: z.ZodObject<{
|
|
|
3477
3477
|
preOpGas: bigint;
|
|
3478
3478
|
prefund: bigint;
|
|
3479
3479
|
paymasterContext: string;
|
|
3480
|
-
accountValidationData: bigint;
|
|
3481
3480
|
paymasterValidationData: bigint;
|
|
3481
|
+
accountValidationData: bigint;
|
|
3482
3482
|
accountSigFailed?: boolean | undefined;
|
|
3483
3483
|
paymasterSigFailed?: boolean | undefined;
|
|
3484
3484
|
validAfter?: number | undefined;
|
|
@@ -3527,8 +3527,8 @@ export declare const errorCauseSchema: z.ZodObject<{
|
|
|
3527
3527
|
preOpGas: bigint;
|
|
3528
3528
|
prefund: bigint;
|
|
3529
3529
|
paymasterContext: `0x${string}`;
|
|
3530
|
-
accountValidationData: bigint;
|
|
3531
3530
|
paymasterValidationData: bigint;
|
|
3531
|
+
accountValidationData: bigint;
|
|
3532
3532
|
accountSigFailed?: boolean | undefined;
|
|
3533
3533
|
paymasterSigFailed?: boolean | undefined;
|
|
3534
3534
|
validAfter?: number | undefined;
|
|
@@ -3578,8 +3578,8 @@ export declare const errorCauseSchema: z.ZodObject<{
|
|
|
3578
3578
|
preOpGas: bigint;
|
|
3579
3579
|
prefund: bigint;
|
|
3580
3580
|
paymasterContext: `0x${string}`;
|
|
3581
|
-
accountValidationData: bigint;
|
|
3582
3581
|
paymasterValidationData: bigint;
|
|
3582
|
+
accountValidationData: bigint;
|
|
3583
3583
|
accountSigFailed?: boolean | undefined;
|
|
3584
3584
|
paymasterSigFailed?: boolean | undefined;
|
|
3585
3585
|
validAfter?: number | undefined;
|
|
@@ -3626,8 +3626,8 @@ export declare const errorCauseSchema: z.ZodObject<{
|
|
|
3626
3626
|
preOpGas: bigint;
|
|
3627
3627
|
prefund: bigint;
|
|
3628
3628
|
paymasterContext: string;
|
|
3629
|
-
accountValidationData: bigint;
|
|
3630
3629
|
paymasterValidationData: bigint;
|
|
3630
|
+
accountValidationData: bigint;
|
|
3631
3631
|
accountSigFailed?: boolean | undefined;
|
|
3632
3632
|
paymasterSigFailed?: boolean | undefined;
|
|
3633
3633
|
validAfter?: number | undefined;
|
|
@@ -3667,8 +3667,8 @@ export declare const errorCauseSchema: z.ZodObject<{
|
|
|
3667
3667
|
preOpGas: bigint;
|
|
3668
3668
|
prefund: bigint;
|
|
3669
3669
|
paymasterContext: string;
|
|
3670
|
-
accountValidationData: bigint;
|
|
3671
3670
|
paymasterValidationData: bigint;
|
|
3671
|
+
accountValidationData: bigint;
|
|
3672
3672
|
accountSigFailed?: boolean | undefined;
|
|
3673
3673
|
paymasterSigFailed?: boolean | undefined;
|
|
3674
3674
|
validAfter?: number | undefined;
|
|
@@ -3944,8 +3944,8 @@ export declare const errorCauseSchema: z.ZodObject<{
|
|
|
3944
3944
|
preOpGas: bigint;
|
|
3945
3945
|
prefund: bigint;
|
|
3946
3946
|
paymasterContext: `0x${string}`;
|
|
3947
|
-
accountValidationData: bigint;
|
|
3948
3947
|
paymasterValidationData: bigint;
|
|
3948
|
+
accountValidationData: bigint;
|
|
3949
3949
|
accountSigFailed?: boolean | undefined;
|
|
3950
3950
|
paymasterSigFailed?: boolean | undefined;
|
|
3951
3951
|
validAfter?: number | undefined;
|
|
@@ -3954,8 +3954,8 @@ export declare const errorCauseSchema: z.ZodObject<{
|
|
|
3954
3954
|
preOpGas: bigint;
|
|
3955
3955
|
prefund: bigint;
|
|
3956
3956
|
paymasterContext: string;
|
|
3957
|
-
accountValidationData: bigint;
|
|
3958
3957
|
paymasterValidationData: bigint;
|
|
3958
|
+
accountValidationData: bigint;
|
|
3959
3959
|
accountSigFailed?: boolean | undefined;
|
|
3960
3960
|
paymasterSigFailed?: boolean | undefined;
|
|
3961
3961
|
validAfter?: number | undefined;
|
|
@@ -4030,8 +4030,8 @@ export declare const errorCauseSchema: z.ZodObject<{
|
|
|
4030
4030
|
preOpGas: bigint;
|
|
4031
4031
|
prefund: bigint;
|
|
4032
4032
|
paymasterContext: `0x${string}`;
|
|
4033
|
-
accountValidationData: bigint;
|
|
4034
4033
|
paymasterValidationData: bigint;
|
|
4034
|
+
accountValidationData: bigint;
|
|
4035
4035
|
accountSigFailed?: boolean | undefined;
|
|
4036
4036
|
paymasterSigFailed?: boolean | undefined;
|
|
4037
4037
|
validAfter?: number | undefined;
|
|
@@ -4064,8 +4064,8 @@ export declare const errorCauseSchema: z.ZodObject<{
|
|
|
4064
4064
|
preOpGas: bigint;
|
|
4065
4065
|
prefund: bigint;
|
|
4066
4066
|
paymasterContext: string;
|
|
4067
|
-
accountValidationData: bigint;
|
|
4068
4067
|
paymasterValidationData: bigint;
|
|
4068
|
+
accountValidationData: bigint;
|
|
4069
4069
|
accountSigFailed?: boolean | undefined;
|
|
4070
4070
|
paymasterSigFailed?: boolean | undefined;
|
|
4071
4071
|
validAfter?: number | undefined;
|
|
@@ -4129,8 +4129,8 @@ export declare const errorCauseSchema: z.ZodObject<{
|
|
|
4129
4129
|
preOpGas: bigint;
|
|
4130
4130
|
prefund: bigint;
|
|
4131
4131
|
paymasterContext: `0x${string}`;
|
|
4132
|
-
accountValidationData: bigint;
|
|
4133
4132
|
paymasterValidationData: bigint;
|
|
4133
|
+
accountValidationData: bigint;
|
|
4134
4134
|
accountSigFailed?: boolean | undefined;
|
|
4135
4135
|
paymasterSigFailed?: boolean | undefined;
|
|
4136
4136
|
validAfter?: number | undefined;
|
|
@@ -4196,8 +4196,8 @@ export declare const errorCauseSchema: z.ZodObject<{
|
|
|
4196
4196
|
preOpGas: bigint;
|
|
4197
4197
|
prefund: bigint;
|
|
4198
4198
|
paymasterContext: `0x${string}`;
|
|
4199
|
-
accountValidationData: bigint;
|
|
4200
4199
|
paymasterValidationData: bigint;
|
|
4200
|
+
accountValidationData: bigint;
|
|
4201
4201
|
accountSigFailed?: boolean | undefined;
|
|
4202
4202
|
paymasterSigFailed?: boolean | undefined;
|
|
4203
4203
|
validAfter?: number | undefined;
|
|
@@ -4259,8 +4259,8 @@ export declare const errorCauseSchema: z.ZodObject<{
|
|
|
4259
4259
|
preOpGas: bigint;
|
|
4260
4260
|
prefund: bigint;
|
|
4261
4261
|
paymasterContext: string;
|
|
4262
|
-
accountValidationData: bigint;
|
|
4263
4262
|
paymasterValidationData: bigint;
|
|
4263
|
+
accountValidationData: bigint;
|
|
4264
4264
|
accountSigFailed?: boolean | undefined;
|
|
4265
4265
|
paymasterSigFailed?: boolean | undefined;
|
|
4266
4266
|
validAfter?: number | undefined;
|
|
@@ -4314,8 +4314,8 @@ export declare const errorCauseSchema: z.ZodObject<{
|
|
|
4314
4314
|
preOpGas: bigint;
|
|
4315
4315
|
prefund: bigint;
|
|
4316
4316
|
paymasterContext: string;
|
|
4317
|
-
accountValidationData: bigint;
|
|
4318
4317
|
paymasterValidationData: bigint;
|
|
4318
|
+
accountValidationData: bigint;
|
|
4319
4319
|
accountSigFailed?: boolean | undefined;
|
|
4320
4320
|
paymasterSigFailed?: boolean | undefined;
|
|
4321
4321
|
validAfter?: number | undefined;
|
|
@@ -4424,8 +4424,8 @@ export declare const errorCauseSchema: z.ZodObject<{
|
|
|
4424
4424
|
preOpGas: bigint;
|
|
4425
4425
|
prefund: bigint;
|
|
4426
4426
|
paymasterContext: `0x${string}`;
|
|
4427
|
-
accountValidationData: bigint;
|
|
4428
4427
|
paymasterValidationData: bigint;
|
|
4428
|
+
accountValidationData: bigint;
|
|
4429
4429
|
accountSigFailed?: boolean | undefined;
|
|
4430
4430
|
paymasterSigFailed?: boolean | undefined;
|
|
4431
4431
|
validAfter?: number | undefined;
|
|
@@ -4475,8 +4475,8 @@ export declare const errorCauseSchema: z.ZodObject<{
|
|
|
4475
4475
|
preOpGas: bigint;
|
|
4476
4476
|
prefund: bigint;
|
|
4477
4477
|
paymasterContext: `0x${string}`;
|
|
4478
|
-
accountValidationData: bigint;
|
|
4479
4478
|
paymasterValidationData: bigint;
|
|
4479
|
+
accountValidationData: bigint;
|
|
4480
4480
|
accountSigFailed?: boolean | undefined;
|
|
4481
4481
|
paymasterSigFailed?: boolean | undefined;
|
|
4482
4482
|
validAfter?: number | undefined;
|
|
@@ -4537,8 +4537,8 @@ export declare const errorCauseSchema: z.ZodObject<{
|
|
|
4537
4537
|
preOpGas: bigint;
|
|
4538
4538
|
prefund: bigint;
|
|
4539
4539
|
paymasterContext: `0x${string}`;
|
|
4540
|
-
accountValidationData: bigint;
|
|
4541
4540
|
paymasterValidationData: bigint;
|
|
4541
|
+
accountValidationData: bigint;
|
|
4542
4542
|
accountSigFailed?: boolean | undefined;
|
|
4543
4543
|
paymasterSigFailed?: boolean | undefined;
|
|
4544
4544
|
validAfter?: number | undefined;
|
|
@@ -4604,8 +4604,8 @@ export declare const errorCauseSchema: z.ZodObject<{
|
|
|
4604
4604
|
preOpGas: bigint;
|
|
4605
4605
|
prefund: bigint;
|
|
4606
4606
|
paymasterContext: `0x${string}`;
|
|
4607
|
-
accountValidationData: bigint;
|
|
4608
4607
|
paymasterValidationData: bigint;
|
|
4608
|
+
accountValidationData: bigint;
|
|
4609
4609
|
accountSigFailed?: boolean | undefined;
|
|
4610
4610
|
paymasterSigFailed?: boolean | undefined;
|
|
4611
4611
|
validAfter?: number | undefined;
|
|
@@ -4675,8 +4675,8 @@ export declare const errorCauseSchema: z.ZodObject<{
|
|
|
4675
4675
|
preOpGas: bigint;
|
|
4676
4676
|
prefund: bigint;
|
|
4677
4677
|
paymasterContext: string;
|
|
4678
|
-
accountValidationData: bigint;
|
|
4679
4678
|
paymasterValidationData: bigint;
|
|
4679
|
+
accountValidationData: bigint;
|
|
4680
4680
|
accountSigFailed?: boolean | undefined;
|
|
4681
4681
|
paymasterSigFailed?: boolean | undefined;
|
|
4682
4682
|
validAfter?: number | undefined;
|
|
@@ -4716,8 +4716,8 @@ export declare const errorCauseSchema: z.ZodObject<{
|
|
|
4716
4716
|
preOpGas: bigint;
|
|
4717
4717
|
prefund: bigint;
|
|
4718
4718
|
paymasterContext: string;
|
|
4719
|
-
accountValidationData: bigint;
|
|
4720
4719
|
paymasterValidationData: bigint;
|
|
4720
|
+
accountValidationData: bigint;
|
|
4721
4721
|
accountSigFailed?: boolean | undefined;
|
|
4722
4722
|
paymasterSigFailed?: boolean | undefined;
|
|
4723
4723
|
validAfter?: number | undefined;
|
|
@@ -4767,8 +4767,8 @@ export declare const errorCauseSchema: z.ZodObject<{
|
|
|
4767
4767
|
preOpGas: bigint;
|
|
4768
4768
|
prefund: bigint;
|
|
4769
4769
|
paymasterContext: string;
|
|
4770
|
-
accountValidationData: bigint;
|
|
4771
4770
|
paymasterValidationData: bigint;
|
|
4771
|
+
accountValidationData: bigint;
|
|
4772
4772
|
accountSigFailed?: boolean | undefined;
|
|
4773
4773
|
paymasterSigFailed?: boolean | undefined;
|
|
4774
4774
|
validAfter?: number | undefined;
|
|
@@ -4822,8 +4822,8 @@ export declare const errorCauseSchema: z.ZodObject<{
|
|
|
4822
4822
|
preOpGas: bigint;
|
|
4823
4823
|
prefund: bigint;
|
|
4824
4824
|
paymasterContext: string;
|
|
4825
|
-
accountValidationData: bigint;
|
|
4826
4825
|
paymasterValidationData: bigint;
|
|
4826
|
+
accountValidationData: bigint;
|
|
4827
4827
|
accountSigFailed?: boolean | undefined;
|
|
4828
4828
|
paymasterSigFailed?: boolean | undefined;
|
|
4829
4829
|
validAfter?: number | undefined;
|
|
@@ -4939,8 +4939,8 @@ export declare const vmExecutionError: z.ZodObject<{
|
|
|
4939
4939
|
preOpGas: bigint;
|
|
4940
4940
|
prefund: bigint;
|
|
4941
4941
|
paymasterContext: `0x${string}`;
|
|
4942
|
-
accountValidationData: bigint;
|
|
4943
4942
|
paymasterValidationData: bigint;
|
|
4943
|
+
accountValidationData: bigint;
|
|
4944
4944
|
accountSigFailed?: boolean | undefined;
|
|
4945
4945
|
paymasterSigFailed?: boolean | undefined;
|
|
4946
4946
|
validAfter?: number | undefined;
|
|
@@ -4990,8 +4990,8 @@ export declare const vmExecutionError: z.ZodObject<{
|
|
|
4990
4990
|
preOpGas: bigint;
|
|
4991
4991
|
prefund: bigint;
|
|
4992
4992
|
paymasterContext: `0x${string}`;
|
|
4993
|
-
accountValidationData: bigint;
|
|
4994
4993
|
paymasterValidationData: bigint;
|
|
4994
|
+
accountValidationData: bigint;
|
|
4995
4995
|
accountSigFailed?: boolean | undefined;
|
|
4996
4996
|
paymasterSigFailed?: boolean | undefined;
|
|
4997
4997
|
validAfter?: number | undefined;
|
|
@@ -5052,8 +5052,8 @@ export declare const vmExecutionError: z.ZodObject<{
|
|
|
5052
5052
|
preOpGas: bigint;
|
|
5053
5053
|
prefund: bigint;
|
|
5054
5054
|
paymasterContext: `0x${string}`;
|
|
5055
|
-
accountValidationData: bigint;
|
|
5056
5055
|
paymasterValidationData: bigint;
|
|
5056
|
+
accountValidationData: bigint;
|
|
5057
5057
|
accountSigFailed?: boolean | undefined;
|
|
5058
5058
|
paymasterSigFailed?: boolean | undefined;
|
|
5059
5059
|
validAfter?: number | undefined;
|
|
@@ -5119,8 +5119,8 @@ export declare const vmExecutionError: z.ZodObject<{
|
|
|
5119
5119
|
preOpGas: bigint;
|
|
5120
5120
|
prefund: bigint;
|
|
5121
5121
|
paymasterContext: `0x${string}`;
|
|
5122
|
-
accountValidationData: bigint;
|
|
5123
5122
|
paymasterValidationData: bigint;
|
|
5123
|
+
accountValidationData: bigint;
|
|
5124
5124
|
accountSigFailed?: boolean | undefined;
|
|
5125
5125
|
paymasterSigFailed?: boolean | undefined;
|
|
5126
5126
|
validAfter?: number | undefined;
|
|
@@ -5234,8 +5234,8 @@ export declare const vmExecutionError: z.ZodObject<{
|
|
|
5234
5234
|
preOpGas: bigint;
|
|
5235
5235
|
prefund: bigint;
|
|
5236
5236
|
paymasterContext: `0x${string}`;
|
|
5237
|
-
accountValidationData: bigint;
|
|
5238
5237
|
paymasterValidationData: bigint;
|
|
5238
|
+
accountValidationData: bigint;
|
|
5239
5239
|
accountSigFailed?: boolean | undefined;
|
|
5240
5240
|
paymasterSigFailed?: boolean | undefined;
|
|
5241
5241
|
validAfter?: number | undefined;
|
|
@@ -5285,8 +5285,8 @@ export declare const vmExecutionError: z.ZodObject<{
|
|
|
5285
5285
|
preOpGas: bigint;
|
|
5286
5286
|
prefund: bigint;
|
|
5287
5287
|
paymasterContext: `0x${string}`;
|
|
5288
|
-
accountValidationData: bigint;
|
|
5289
5288
|
paymasterValidationData: bigint;
|
|
5289
|
+
accountValidationData: bigint;
|
|
5290
5290
|
accountSigFailed?: boolean | undefined;
|
|
5291
5291
|
paymasterSigFailed?: boolean | undefined;
|
|
5292
5292
|
validAfter?: number | undefined;
|
|
@@ -5347,8 +5347,8 @@ export declare const vmExecutionError: z.ZodObject<{
|
|
|
5347
5347
|
preOpGas: bigint;
|
|
5348
5348
|
prefund: bigint;
|
|
5349
5349
|
paymasterContext: `0x${string}`;
|
|
5350
|
-
accountValidationData: bigint;
|
|
5351
5350
|
paymasterValidationData: bigint;
|
|
5351
|
+
accountValidationData: bigint;
|
|
5352
5352
|
accountSigFailed?: boolean | undefined;
|
|
5353
5353
|
paymasterSigFailed?: boolean | undefined;
|
|
5354
5354
|
validAfter?: number | undefined;
|
|
@@ -5414,8 +5414,8 @@ export declare const vmExecutionError: z.ZodObject<{
|
|
|
5414
5414
|
preOpGas: bigint;
|
|
5415
5415
|
prefund: bigint;
|
|
5416
5416
|
paymasterContext: `0x${string}`;
|
|
5417
|
-
accountValidationData: bigint;
|
|
5418
5417
|
paymasterValidationData: bigint;
|
|
5418
|
+
accountValidationData: bigint;
|
|
5419
5419
|
accountSigFailed?: boolean | undefined;
|
|
5420
5420
|
paymasterSigFailed?: boolean | undefined;
|
|
5421
5421
|
validAfter?: number | undefined;
|
|
@@ -5534,8 +5534,8 @@ export declare const vmExecutionError: z.ZodObject<{
|
|
|
5534
5534
|
preOpGas: bigint;
|
|
5535
5535
|
prefund: bigint;
|
|
5536
5536
|
paymasterContext: `0x${string}`;
|
|
5537
|
-
accountValidationData: bigint;
|
|
5538
5537
|
paymasterValidationData: bigint;
|
|
5538
|
+
accountValidationData: bigint;
|
|
5539
5539
|
accountSigFailed?: boolean | undefined;
|
|
5540
5540
|
paymasterSigFailed?: boolean | undefined;
|
|
5541
5541
|
validAfter?: number | undefined;
|
|
@@ -5585,8 +5585,8 @@ export declare const vmExecutionError: z.ZodObject<{
|
|
|
5585
5585
|
preOpGas: bigint;
|
|
5586
5586
|
prefund: bigint;
|
|
5587
5587
|
paymasterContext: `0x${string}`;
|
|
5588
|
-
accountValidationData: bigint;
|
|
5589
5588
|
paymasterValidationData: bigint;
|
|
5589
|
+
accountValidationData: bigint;
|
|
5590
5590
|
accountSigFailed?: boolean | undefined;
|
|
5591
5591
|
paymasterSigFailed?: boolean | undefined;
|
|
5592
5592
|
validAfter?: number | undefined;
|
|
@@ -5647,8 +5647,8 @@ export declare const vmExecutionError: z.ZodObject<{
|
|
|
5647
5647
|
preOpGas: bigint;
|
|
5648
5648
|
prefund: bigint;
|
|
5649
5649
|
paymasterContext: `0x${string}`;
|
|
5650
|
-
accountValidationData: bigint;
|
|
5651
5650
|
paymasterValidationData: bigint;
|
|
5651
|
+
accountValidationData: bigint;
|
|
5652
5652
|
accountSigFailed?: boolean | undefined;
|
|
5653
5653
|
paymasterSigFailed?: boolean | undefined;
|
|
5654
5654
|
validAfter?: number | undefined;
|
|
@@ -5714,8 +5714,8 @@ export declare const vmExecutionError: z.ZodObject<{
|
|
|
5714
5714
|
preOpGas: bigint;
|
|
5715
5715
|
prefund: bigint;
|
|
5716
5716
|
paymasterContext: `0x${string}`;
|
|
5717
|
-
accountValidationData: bigint;
|
|
5718
5717
|
paymasterValidationData: bigint;
|
|
5718
|
+
accountValidationData: bigint;
|
|
5719
5719
|
accountSigFailed?: boolean | undefined;
|
|
5720
5720
|
paymasterSigFailed?: boolean | undefined;
|
|
5721
5721
|
validAfter?: number | undefined;
|
|
@@ -5840,8 +5840,8 @@ export declare const vmExecutionError: z.ZodObject<{
|
|
|
5840
5840
|
preOpGas: bigint;
|
|
5841
5841
|
prefund: bigint;
|
|
5842
5842
|
paymasterContext: `0x${string}`;
|
|
5843
|
-
accountValidationData: bigint;
|
|
5844
5843
|
paymasterValidationData: bigint;
|
|
5844
|
+
accountValidationData: bigint;
|
|
5845
5845
|
accountSigFailed?: boolean | undefined;
|
|
5846
5846
|
paymasterSigFailed?: boolean | undefined;
|
|
5847
5847
|
validAfter?: number | undefined;
|
|
@@ -5891,8 +5891,8 @@ export declare const vmExecutionError: z.ZodObject<{
|
|
|
5891
5891
|
preOpGas: bigint;
|
|
5892
5892
|
prefund: bigint;
|
|
5893
5893
|
paymasterContext: `0x${string}`;
|
|
5894
|
-
accountValidationData: bigint;
|
|
5895
5894
|
paymasterValidationData: bigint;
|
|
5895
|
+
accountValidationData: bigint;
|
|
5896
5896
|
accountSigFailed?: boolean | undefined;
|
|
5897
5897
|
paymasterSigFailed?: boolean | undefined;
|
|
5898
5898
|
validAfter?: number | undefined;
|
|
@@ -5953,8 +5953,8 @@ export declare const vmExecutionError: z.ZodObject<{
|
|
|
5953
5953
|
preOpGas: bigint;
|
|
5954
5954
|
prefund: bigint;
|
|
5955
5955
|
paymasterContext: `0x${string}`;
|
|
5956
|
-
accountValidationData: bigint;
|
|
5957
5956
|
paymasterValidationData: bigint;
|
|
5957
|
+
accountValidationData: bigint;
|
|
5958
5958
|
accountSigFailed?: boolean | undefined;
|
|
5959
5959
|
paymasterSigFailed?: boolean | undefined;
|
|
5960
5960
|
validAfter?: number | undefined;
|
|
@@ -6020,8 +6020,8 @@ export declare const vmExecutionError: z.ZodObject<{
|
|
|
6020
6020
|
preOpGas: bigint;
|
|
6021
6021
|
prefund: bigint;
|
|
6022
6022
|
paymasterContext: `0x${string}`;
|
|
6023
|
-
accountValidationData: bigint;
|
|
6024
6023
|
paymasterValidationData: bigint;
|
|
6024
|
+
accountValidationData: bigint;
|
|
6025
6025
|
accountSigFailed?: boolean | undefined;
|
|
6026
6026
|
paymasterSigFailed?: boolean | undefined;
|
|
6027
6027
|
validAfter?: number | undefined;
|
|
@@ -6183,8 +6183,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
6183
6183
|
preOpGas: bigint;
|
|
6184
6184
|
prefund: bigint;
|
|
6185
6185
|
paymasterContext: `0x${string}`;
|
|
6186
|
-
accountValidationData: bigint;
|
|
6187
6186
|
paymasterValidationData: bigint;
|
|
6187
|
+
accountValidationData: bigint;
|
|
6188
6188
|
accountSigFailed?: boolean | undefined;
|
|
6189
6189
|
paymasterSigFailed?: boolean | undefined;
|
|
6190
6190
|
validAfter?: number | undefined;
|
|
@@ -6193,8 +6193,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
6193
6193
|
preOpGas: bigint;
|
|
6194
6194
|
prefund: bigint;
|
|
6195
6195
|
paymasterContext: string;
|
|
6196
|
-
accountValidationData: bigint;
|
|
6197
6196
|
paymasterValidationData: bigint;
|
|
6197
|
+
accountValidationData: bigint;
|
|
6198
6198
|
accountSigFailed?: boolean | undefined;
|
|
6199
6199
|
paymasterSigFailed?: boolean | undefined;
|
|
6200
6200
|
validAfter?: number | undefined;
|
|
@@ -6240,8 +6240,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
6240
6240
|
preOpGas: bigint;
|
|
6241
6241
|
prefund: bigint;
|
|
6242
6242
|
paymasterContext: `0x${string}`;
|
|
6243
|
-
accountValidationData: bigint;
|
|
6244
6243
|
paymasterValidationData: bigint;
|
|
6244
|
+
accountValidationData: bigint;
|
|
6245
6245
|
accountSigFailed?: boolean | undefined;
|
|
6246
6246
|
paymasterSigFailed?: boolean | undefined;
|
|
6247
6247
|
validAfter?: number | undefined;
|
|
@@ -6266,8 +6266,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
6266
6266
|
preOpGas: bigint;
|
|
6267
6267
|
prefund: bigint;
|
|
6268
6268
|
paymasterContext: string;
|
|
6269
|
-
accountValidationData: bigint;
|
|
6270
6269
|
paymasterValidationData: bigint;
|
|
6270
|
+
accountValidationData: bigint;
|
|
6271
6271
|
accountSigFailed?: boolean | undefined;
|
|
6272
6272
|
paymasterSigFailed?: boolean | undefined;
|
|
6273
6273
|
validAfter?: number | undefined;
|
|
@@ -6316,8 +6316,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
6316
6316
|
preOpGas: bigint;
|
|
6317
6317
|
prefund: bigint;
|
|
6318
6318
|
paymasterContext: `0x${string}`;
|
|
6319
|
-
accountValidationData: bigint;
|
|
6320
6319
|
paymasterValidationData: bigint;
|
|
6320
|
+
accountValidationData: bigint;
|
|
6321
6321
|
accountSigFailed?: boolean | undefined;
|
|
6322
6322
|
paymasterSigFailed?: boolean | undefined;
|
|
6323
6323
|
validAfter?: number | undefined;
|
|
@@ -6367,8 +6367,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
6367
6367
|
preOpGas: bigint;
|
|
6368
6368
|
prefund: bigint;
|
|
6369
6369
|
paymasterContext: `0x${string}`;
|
|
6370
|
-
accountValidationData: bigint;
|
|
6371
6370
|
paymasterValidationData: bigint;
|
|
6371
|
+
accountValidationData: bigint;
|
|
6372
6372
|
accountSigFailed?: boolean | undefined;
|
|
6373
6373
|
paymasterSigFailed?: boolean | undefined;
|
|
6374
6374
|
validAfter?: number | undefined;
|
|
@@ -6415,8 +6415,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
6415
6415
|
preOpGas: bigint;
|
|
6416
6416
|
prefund: bigint;
|
|
6417
6417
|
paymasterContext: string;
|
|
6418
|
-
accountValidationData: bigint;
|
|
6419
6418
|
paymasterValidationData: bigint;
|
|
6419
|
+
accountValidationData: bigint;
|
|
6420
6420
|
accountSigFailed?: boolean | undefined;
|
|
6421
6421
|
paymasterSigFailed?: boolean | undefined;
|
|
6422
6422
|
validAfter?: number | undefined;
|
|
@@ -6456,8 +6456,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
6456
6456
|
preOpGas: bigint;
|
|
6457
6457
|
prefund: bigint;
|
|
6458
6458
|
paymasterContext: string;
|
|
6459
|
-
accountValidationData: bigint;
|
|
6460
6459
|
paymasterValidationData: bigint;
|
|
6460
|
+
accountValidationData: bigint;
|
|
6461
6461
|
accountSigFailed?: boolean | undefined;
|
|
6462
6462
|
paymasterSigFailed?: boolean | undefined;
|
|
6463
6463
|
validAfter?: number | undefined;
|
|
@@ -6733,8 +6733,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
6733
6733
|
preOpGas: bigint;
|
|
6734
6734
|
prefund: bigint;
|
|
6735
6735
|
paymasterContext: `0x${string}`;
|
|
6736
|
-
accountValidationData: bigint;
|
|
6737
6736
|
paymasterValidationData: bigint;
|
|
6737
|
+
accountValidationData: bigint;
|
|
6738
6738
|
accountSigFailed?: boolean | undefined;
|
|
6739
6739
|
paymasterSigFailed?: boolean | undefined;
|
|
6740
6740
|
validAfter?: number | undefined;
|
|
@@ -6743,8 +6743,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
6743
6743
|
preOpGas: bigint;
|
|
6744
6744
|
prefund: bigint;
|
|
6745
6745
|
paymasterContext: string;
|
|
6746
|
-
accountValidationData: bigint;
|
|
6747
6746
|
paymasterValidationData: bigint;
|
|
6747
|
+
accountValidationData: bigint;
|
|
6748
6748
|
accountSigFailed?: boolean | undefined;
|
|
6749
6749
|
paymasterSigFailed?: boolean | undefined;
|
|
6750
6750
|
validAfter?: number | undefined;
|
|
@@ -6819,8 +6819,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
6819
6819
|
preOpGas: bigint;
|
|
6820
6820
|
prefund: bigint;
|
|
6821
6821
|
paymasterContext: `0x${string}`;
|
|
6822
|
-
accountValidationData: bigint;
|
|
6823
6822
|
paymasterValidationData: bigint;
|
|
6823
|
+
accountValidationData: bigint;
|
|
6824
6824
|
accountSigFailed?: boolean | undefined;
|
|
6825
6825
|
paymasterSigFailed?: boolean | undefined;
|
|
6826
6826
|
validAfter?: number | undefined;
|
|
@@ -6853,8 +6853,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
6853
6853
|
preOpGas: bigint;
|
|
6854
6854
|
prefund: bigint;
|
|
6855
6855
|
paymasterContext: string;
|
|
6856
|
-
accountValidationData: bigint;
|
|
6857
6856
|
paymasterValidationData: bigint;
|
|
6857
|
+
accountValidationData: bigint;
|
|
6858
6858
|
accountSigFailed?: boolean | undefined;
|
|
6859
6859
|
paymasterSigFailed?: boolean | undefined;
|
|
6860
6860
|
validAfter?: number | undefined;
|
|
@@ -6918,8 +6918,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
6918
6918
|
preOpGas: bigint;
|
|
6919
6919
|
prefund: bigint;
|
|
6920
6920
|
paymasterContext: `0x${string}`;
|
|
6921
|
-
accountValidationData: bigint;
|
|
6922
6921
|
paymasterValidationData: bigint;
|
|
6922
|
+
accountValidationData: bigint;
|
|
6923
6923
|
accountSigFailed?: boolean | undefined;
|
|
6924
6924
|
paymasterSigFailed?: boolean | undefined;
|
|
6925
6925
|
validAfter?: number | undefined;
|
|
@@ -6985,8 +6985,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
6985
6985
|
preOpGas: bigint;
|
|
6986
6986
|
prefund: bigint;
|
|
6987
6987
|
paymasterContext: `0x${string}`;
|
|
6988
|
-
accountValidationData: bigint;
|
|
6989
6988
|
paymasterValidationData: bigint;
|
|
6989
|
+
accountValidationData: bigint;
|
|
6990
6990
|
accountSigFailed?: boolean | undefined;
|
|
6991
6991
|
paymasterSigFailed?: boolean | undefined;
|
|
6992
6992
|
validAfter?: number | undefined;
|
|
@@ -7048,8 +7048,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
7048
7048
|
preOpGas: bigint;
|
|
7049
7049
|
prefund: bigint;
|
|
7050
7050
|
paymasterContext: string;
|
|
7051
|
-
accountValidationData: bigint;
|
|
7052
7051
|
paymasterValidationData: bigint;
|
|
7052
|
+
accountValidationData: bigint;
|
|
7053
7053
|
accountSigFailed?: boolean | undefined;
|
|
7054
7054
|
paymasterSigFailed?: boolean | undefined;
|
|
7055
7055
|
validAfter?: number | undefined;
|
|
@@ -7103,8 +7103,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
7103
7103
|
preOpGas: bigint;
|
|
7104
7104
|
prefund: bigint;
|
|
7105
7105
|
paymasterContext: string;
|
|
7106
|
-
accountValidationData: bigint;
|
|
7107
7106
|
paymasterValidationData: bigint;
|
|
7107
|
+
accountValidationData: bigint;
|
|
7108
7108
|
accountSigFailed?: boolean | undefined;
|
|
7109
7109
|
paymasterSigFailed?: boolean | undefined;
|
|
7110
7110
|
validAfter?: number | undefined;
|
|
@@ -7213,8 +7213,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
7213
7213
|
preOpGas: bigint;
|
|
7214
7214
|
prefund: bigint;
|
|
7215
7215
|
paymasterContext: `0x${string}`;
|
|
7216
|
-
accountValidationData: bigint;
|
|
7217
7216
|
paymasterValidationData: bigint;
|
|
7217
|
+
accountValidationData: bigint;
|
|
7218
7218
|
accountSigFailed?: boolean | undefined;
|
|
7219
7219
|
paymasterSigFailed?: boolean | undefined;
|
|
7220
7220
|
validAfter?: number | undefined;
|
|
@@ -7264,8 +7264,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
7264
7264
|
preOpGas: bigint;
|
|
7265
7265
|
prefund: bigint;
|
|
7266
7266
|
paymasterContext: `0x${string}`;
|
|
7267
|
-
accountValidationData: bigint;
|
|
7268
7267
|
paymasterValidationData: bigint;
|
|
7268
|
+
accountValidationData: bigint;
|
|
7269
7269
|
accountSigFailed?: boolean | undefined;
|
|
7270
7270
|
paymasterSigFailed?: boolean | undefined;
|
|
7271
7271
|
validAfter?: number | undefined;
|
|
@@ -7326,8 +7326,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
7326
7326
|
preOpGas: bigint;
|
|
7327
7327
|
prefund: bigint;
|
|
7328
7328
|
paymasterContext: `0x${string}`;
|
|
7329
|
-
accountValidationData: bigint;
|
|
7330
7329
|
paymasterValidationData: bigint;
|
|
7330
|
+
accountValidationData: bigint;
|
|
7331
7331
|
accountSigFailed?: boolean | undefined;
|
|
7332
7332
|
paymasterSigFailed?: boolean | undefined;
|
|
7333
7333
|
validAfter?: number | undefined;
|
|
@@ -7393,8 +7393,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
7393
7393
|
preOpGas: bigint;
|
|
7394
7394
|
prefund: bigint;
|
|
7395
7395
|
paymasterContext: `0x${string}`;
|
|
7396
|
-
accountValidationData: bigint;
|
|
7397
7396
|
paymasterValidationData: bigint;
|
|
7397
|
+
accountValidationData: bigint;
|
|
7398
7398
|
accountSigFailed?: boolean | undefined;
|
|
7399
7399
|
paymasterSigFailed?: boolean | undefined;
|
|
7400
7400
|
validAfter?: number | undefined;
|
|
@@ -7464,8 +7464,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
7464
7464
|
preOpGas: bigint;
|
|
7465
7465
|
prefund: bigint;
|
|
7466
7466
|
paymasterContext: string;
|
|
7467
|
-
accountValidationData: bigint;
|
|
7468
7467
|
paymasterValidationData: bigint;
|
|
7468
|
+
accountValidationData: bigint;
|
|
7469
7469
|
accountSigFailed?: boolean | undefined;
|
|
7470
7470
|
paymasterSigFailed?: boolean | undefined;
|
|
7471
7471
|
validAfter?: number | undefined;
|
|
@@ -7505,8 +7505,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
7505
7505
|
preOpGas: bigint;
|
|
7506
7506
|
prefund: bigint;
|
|
7507
7507
|
paymasterContext: string;
|
|
7508
|
-
accountValidationData: bigint;
|
|
7509
7508
|
paymasterValidationData: bigint;
|
|
7509
|
+
accountValidationData: bigint;
|
|
7510
7510
|
accountSigFailed?: boolean | undefined;
|
|
7511
7511
|
paymasterSigFailed?: boolean | undefined;
|
|
7512
7512
|
validAfter?: number | undefined;
|
|
@@ -7556,8 +7556,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
7556
7556
|
preOpGas: bigint;
|
|
7557
7557
|
prefund: bigint;
|
|
7558
7558
|
paymasterContext: string;
|
|
7559
|
-
accountValidationData: bigint;
|
|
7560
7559
|
paymasterValidationData: bigint;
|
|
7560
|
+
accountValidationData: bigint;
|
|
7561
7561
|
accountSigFailed?: boolean | undefined;
|
|
7562
7562
|
paymasterSigFailed?: boolean | undefined;
|
|
7563
7563
|
validAfter?: number | undefined;
|
|
@@ -7611,8 +7611,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
7611
7611
|
preOpGas: bigint;
|
|
7612
7612
|
prefund: bigint;
|
|
7613
7613
|
paymasterContext: string;
|
|
7614
|
-
accountValidationData: bigint;
|
|
7615
7614
|
paymasterValidationData: bigint;
|
|
7615
|
+
accountValidationData: bigint;
|
|
7616
7616
|
accountSigFailed?: boolean | undefined;
|
|
7617
7617
|
paymasterSigFailed?: boolean | undefined;
|
|
7618
7618
|
validAfter?: number | undefined;
|
|
@@ -7726,8 +7726,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
7726
7726
|
preOpGas: bigint;
|
|
7727
7727
|
prefund: bigint;
|
|
7728
7728
|
paymasterContext: `0x${string}`;
|
|
7729
|
-
accountValidationData: bigint;
|
|
7730
7729
|
paymasterValidationData: bigint;
|
|
7730
|
+
accountValidationData: bigint;
|
|
7731
7731
|
accountSigFailed?: boolean | undefined;
|
|
7732
7732
|
paymasterSigFailed?: boolean | undefined;
|
|
7733
7733
|
validAfter?: number | undefined;
|
|
@@ -7777,8 +7777,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
7777
7777
|
preOpGas: bigint;
|
|
7778
7778
|
prefund: bigint;
|
|
7779
7779
|
paymasterContext: `0x${string}`;
|
|
7780
|
-
accountValidationData: bigint;
|
|
7781
7780
|
paymasterValidationData: bigint;
|
|
7781
|
+
accountValidationData: bigint;
|
|
7782
7782
|
accountSigFailed?: boolean | undefined;
|
|
7783
7783
|
paymasterSigFailed?: boolean | undefined;
|
|
7784
7784
|
validAfter?: number | undefined;
|
|
@@ -7839,8 +7839,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
7839
7839
|
preOpGas: bigint;
|
|
7840
7840
|
prefund: bigint;
|
|
7841
7841
|
paymasterContext: `0x${string}`;
|
|
7842
|
-
accountValidationData: bigint;
|
|
7843
7842
|
paymasterValidationData: bigint;
|
|
7843
|
+
accountValidationData: bigint;
|
|
7844
7844
|
accountSigFailed?: boolean | undefined;
|
|
7845
7845
|
paymasterSigFailed?: boolean | undefined;
|
|
7846
7846
|
validAfter?: number | undefined;
|
|
@@ -7906,8 +7906,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
7906
7906
|
preOpGas: bigint;
|
|
7907
7907
|
prefund: bigint;
|
|
7908
7908
|
paymasterContext: `0x${string}`;
|
|
7909
|
-
accountValidationData: bigint;
|
|
7910
7909
|
paymasterValidationData: bigint;
|
|
7910
|
+
accountValidationData: bigint;
|
|
7911
7911
|
accountSigFailed?: boolean | undefined;
|
|
7912
7912
|
paymasterSigFailed?: boolean | undefined;
|
|
7913
7913
|
validAfter?: number | undefined;
|
|
@@ -8021,8 +8021,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
8021
8021
|
preOpGas: bigint;
|
|
8022
8022
|
prefund: bigint;
|
|
8023
8023
|
paymasterContext: `0x${string}`;
|
|
8024
|
-
accountValidationData: bigint;
|
|
8025
8024
|
paymasterValidationData: bigint;
|
|
8025
|
+
accountValidationData: bigint;
|
|
8026
8026
|
accountSigFailed?: boolean | undefined;
|
|
8027
8027
|
paymasterSigFailed?: boolean | undefined;
|
|
8028
8028
|
validAfter?: number | undefined;
|
|
@@ -8072,8 +8072,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
8072
8072
|
preOpGas: bigint;
|
|
8073
8073
|
prefund: bigint;
|
|
8074
8074
|
paymasterContext: `0x${string}`;
|
|
8075
|
-
accountValidationData: bigint;
|
|
8076
8075
|
paymasterValidationData: bigint;
|
|
8076
|
+
accountValidationData: bigint;
|
|
8077
8077
|
accountSigFailed?: boolean | undefined;
|
|
8078
8078
|
paymasterSigFailed?: boolean | undefined;
|
|
8079
8079
|
validAfter?: number | undefined;
|
|
@@ -8134,8 +8134,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
8134
8134
|
preOpGas: bigint;
|
|
8135
8135
|
prefund: bigint;
|
|
8136
8136
|
paymasterContext: `0x${string}`;
|
|
8137
|
-
accountValidationData: bigint;
|
|
8138
8137
|
paymasterValidationData: bigint;
|
|
8138
|
+
accountValidationData: bigint;
|
|
8139
8139
|
accountSigFailed?: boolean | undefined;
|
|
8140
8140
|
paymasterSigFailed?: boolean | undefined;
|
|
8141
8141
|
validAfter?: number | undefined;
|
|
@@ -8201,8 +8201,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
8201
8201
|
preOpGas: bigint;
|
|
8202
8202
|
prefund: bigint;
|
|
8203
8203
|
paymasterContext: `0x${string}`;
|
|
8204
|
-
accountValidationData: bigint;
|
|
8205
8204
|
paymasterValidationData: bigint;
|
|
8205
|
+
accountValidationData: bigint;
|
|
8206
8206
|
accountSigFailed?: boolean | undefined;
|
|
8207
8207
|
paymasterSigFailed?: boolean | undefined;
|
|
8208
8208
|
validAfter?: number | undefined;
|
|
@@ -8321,8 +8321,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
8321
8321
|
preOpGas: bigint;
|
|
8322
8322
|
prefund: bigint;
|
|
8323
8323
|
paymasterContext: `0x${string}`;
|
|
8324
|
-
accountValidationData: bigint;
|
|
8325
8324
|
paymasterValidationData: bigint;
|
|
8325
|
+
accountValidationData: bigint;
|
|
8326
8326
|
accountSigFailed?: boolean | undefined;
|
|
8327
8327
|
paymasterSigFailed?: boolean | undefined;
|
|
8328
8328
|
validAfter?: number | undefined;
|
|
@@ -8372,8 +8372,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
8372
8372
|
preOpGas: bigint;
|
|
8373
8373
|
prefund: bigint;
|
|
8374
8374
|
paymasterContext: `0x${string}`;
|
|
8375
|
-
accountValidationData: bigint;
|
|
8376
8375
|
paymasterValidationData: bigint;
|
|
8376
|
+
accountValidationData: bigint;
|
|
8377
8377
|
accountSigFailed?: boolean | undefined;
|
|
8378
8378
|
paymasterSigFailed?: boolean | undefined;
|
|
8379
8379
|
validAfter?: number | undefined;
|
|
@@ -8434,8 +8434,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
8434
8434
|
preOpGas: bigint;
|
|
8435
8435
|
prefund: bigint;
|
|
8436
8436
|
paymasterContext: `0x${string}`;
|
|
8437
|
-
accountValidationData: bigint;
|
|
8438
8437
|
paymasterValidationData: bigint;
|
|
8438
|
+
accountValidationData: bigint;
|
|
8439
8439
|
accountSigFailed?: boolean | undefined;
|
|
8440
8440
|
paymasterSigFailed?: boolean | undefined;
|
|
8441
8441
|
validAfter?: number | undefined;
|
|
@@ -8501,8 +8501,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
8501
8501
|
preOpGas: bigint;
|
|
8502
8502
|
prefund: bigint;
|
|
8503
8503
|
paymasterContext: `0x${string}`;
|
|
8504
|
-
accountValidationData: bigint;
|
|
8505
8504
|
paymasterValidationData: bigint;
|
|
8505
|
+
accountValidationData: bigint;
|
|
8506
8506
|
accountSigFailed?: boolean | undefined;
|
|
8507
8507
|
paymasterSigFailed?: boolean | undefined;
|
|
8508
8508
|
validAfter?: number | undefined;
|
|
@@ -8627,8 +8627,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
8627
8627
|
preOpGas: bigint;
|
|
8628
8628
|
prefund: bigint;
|
|
8629
8629
|
paymasterContext: `0x${string}`;
|
|
8630
|
-
accountValidationData: bigint;
|
|
8631
8630
|
paymasterValidationData: bigint;
|
|
8631
|
+
accountValidationData: bigint;
|
|
8632
8632
|
accountSigFailed?: boolean | undefined;
|
|
8633
8633
|
paymasterSigFailed?: boolean | undefined;
|
|
8634
8634
|
validAfter?: number | undefined;
|
|
@@ -8678,8 +8678,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
8678
8678
|
preOpGas: bigint;
|
|
8679
8679
|
prefund: bigint;
|
|
8680
8680
|
paymasterContext: `0x${string}`;
|
|
8681
|
-
accountValidationData: bigint;
|
|
8682
8681
|
paymasterValidationData: bigint;
|
|
8682
|
+
accountValidationData: bigint;
|
|
8683
8683
|
accountSigFailed?: boolean | undefined;
|
|
8684
8684
|
paymasterSigFailed?: boolean | undefined;
|
|
8685
8685
|
validAfter?: number | undefined;
|
|
@@ -8740,8 +8740,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
8740
8740
|
preOpGas: bigint;
|
|
8741
8741
|
prefund: bigint;
|
|
8742
8742
|
paymasterContext: `0x${string}`;
|
|
8743
|
-
accountValidationData: bigint;
|
|
8744
8743
|
paymasterValidationData: bigint;
|
|
8744
|
+
accountValidationData: bigint;
|
|
8745
8745
|
accountSigFailed?: boolean | undefined;
|
|
8746
8746
|
paymasterSigFailed?: boolean | undefined;
|
|
8747
8747
|
validAfter?: number | undefined;
|
|
@@ -8807,8 +8807,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
8807
8807
|
preOpGas: bigint;
|
|
8808
8808
|
prefund: bigint;
|
|
8809
8809
|
paymasterContext: `0x${string}`;
|
|
8810
|
-
accountValidationData: bigint;
|
|
8811
8810
|
paymasterValidationData: bigint;
|
|
8811
|
+
accountValidationData: bigint;
|
|
8812
8812
|
accountSigFailed?: boolean | undefined;
|
|
8813
8813
|
paymasterSigFailed?: boolean | undefined;
|
|
8814
8814
|
validAfter?: number | undefined;
|
|
@@ -8935,8 +8935,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
8935
8935
|
preOpGas: bigint;
|
|
8936
8936
|
prefund: bigint;
|
|
8937
8937
|
paymasterContext: `0x${string}`;
|
|
8938
|
-
accountValidationData: bigint;
|
|
8939
8938
|
paymasterValidationData: bigint;
|
|
8939
|
+
accountValidationData: bigint;
|
|
8940
8940
|
accountSigFailed?: boolean | undefined;
|
|
8941
8941
|
paymasterSigFailed?: boolean | undefined;
|
|
8942
8942
|
validAfter?: number | undefined;
|
|
@@ -8986,8 +8986,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
8986
8986
|
preOpGas: bigint;
|
|
8987
8987
|
prefund: bigint;
|
|
8988
8988
|
paymasterContext: `0x${string}`;
|
|
8989
|
-
accountValidationData: bigint;
|
|
8990
8989
|
paymasterValidationData: bigint;
|
|
8990
|
+
accountValidationData: bigint;
|
|
8991
8991
|
accountSigFailed?: boolean | undefined;
|
|
8992
8992
|
paymasterSigFailed?: boolean | undefined;
|
|
8993
8993
|
validAfter?: number | undefined;
|
|
@@ -9048,8 +9048,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
9048
9048
|
preOpGas: bigint;
|
|
9049
9049
|
prefund: bigint;
|
|
9050
9050
|
paymasterContext: `0x${string}`;
|
|
9051
|
-
accountValidationData: bigint;
|
|
9052
9051
|
paymasterValidationData: bigint;
|
|
9052
|
+
accountValidationData: bigint;
|
|
9053
9053
|
accountSigFailed?: boolean | undefined;
|
|
9054
9054
|
paymasterSigFailed?: boolean | undefined;
|
|
9055
9055
|
validAfter?: number | undefined;
|
|
@@ -9115,8 +9115,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
9115
9115
|
preOpGas: bigint;
|
|
9116
9116
|
prefund: bigint;
|
|
9117
9117
|
paymasterContext: `0x${string}`;
|
|
9118
|
-
accountValidationData: bigint;
|
|
9119
9118
|
paymasterValidationData: bigint;
|
|
9119
|
+
accountValidationData: bigint;
|
|
9120
9120
|
accountSigFailed?: boolean | undefined;
|
|
9121
9121
|
paymasterSigFailed?: boolean | undefined;
|
|
9122
9122
|
validAfter?: number | undefined;
|
|
@@ -9235,8 +9235,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
9235
9235
|
preOpGas: bigint;
|
|
9236
9236
|
prefund: bigint;
|
|
9237
9237
|
paymasterContext: `0x${string}`;
|
|
9238
|
-
accountValidationData: bigint;
|
|
9239
9238
|
paymasterValidationData: bigint;
|
|
9239
|
+
accountValidationData: bigint;
|
|
9240
9240
|
accountSigFailed?: boolean | undefined;
|
|
9241
9241
|
paymasterSigFailed?: boolean | undefined;
|
|
9242
9242
|
validAfter?: number | undefined;
|
|
@@ -9286,8 +9286,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
9286
9286
|
preOpGas: bigint;
|
|
9287
9287
|
prefund: bigint;
|
|
9288
9288
|
paymasterContext: `0x${string}`;
|
|
9289
|
-
accountValidationData: bigint;
|
|
9290
9289
|
paymasterValidationData: bigint;
|
|
9290
|
+
accountValidationData: bigint;
|
|
9291
9291
|
accountSigFailed?: boolean | undefined;
|
|
9292
9292
|
paymasterSigFailed?: boolean | undefined;
|
|
9293
9293
|
validAfter?: number | undefined;
|
|
@@ -9348,8 +9348,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
9348
9348
|
preOpGas: bigint;
|
|
9349
9349
|
prefund: bigint;
|
|
9350
9350
|
paymasterContext: `0x${string}`;
|
|
9351
|
-
accountValidationData: bigint;
|
|
9352
9351
|
paymasterValidationData: bigint;
|
|
9352
|
+
accountValidationData: bigint;
|
|
9353
9353
|
accountSigFailed?: boolean | undefined;
|
|
9354
9354
|
paymasterSigFailed?: boolean | undefined;
|
|
9355
9355
|
validAfter?: number | undefined;
|
|
@@ -9415,8 +9415,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
9415
9415
|
preOpGas: bigint;
|
|
9416
9416
|
prefund: bigint;
|
|
9417
9417
|
paymasterContext: `0x${string}`;
|
|
9418
|
-
accountValidationData: bigint;
|
|
9419
9418
|
paymasterValidationData: bigint;
|
|
9419
|
+
accountValidationData: bigint;
|
|
9420
9420
|
accountSigFailed?: boolean | undefined;
|
|
9421
9421
|
paymasterSigFailed?: boolean | undefined;
|
|
9422
9422
|
validAfter?: number | undefined;
|
|
@@ -9490,8 +9490,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
9490
9490
|
preOpGas: bigint;
|
|
9491
9491
|
prefund: bigint;
|
|
9492
9492
|
paymasterContext: string;
|
|
9493
|
-
accountValidationData: bigint;
|
|
9494
9493
|
paymasterValidationData: bigint;
|
|
9494
|
+
accountValidationData: bigint;
|
|
9495
9495
|
accountSigFailed?: boolean | undefined;
|
|
9496
9496
|
paymasterSigFailed?: boolean | undefined;
|
|
9497
9497
|
validAfter?: number | undefined;
|
|
@@ -9531,8 +9531,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
9531
9531
|
preOpGas: bigint;
|
|
9532
9532
|
prefund: bigint;
|
|
9533
9533
|
paymasterContext: string;
|
|
9534
|
-
accountValidationData: bigint;
|
|
9535
9534
|
paymasterValidationData: bigint;
|
|
9535
|
+
accountValidationData: bigint;
|
|
9536
9536
|
accountSigFailed?: boolean | undefined;
|
|
9537
9537
|
paymasterSigFailed?: boolean | undefined;
|
|
9538
9538
|
validAfter?: number | undefined;
|
|
@@ -9582,8 +9582,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
9582
9582
|
preOpGas: bigint;
|
|
9583
9583
|
prefund: bigint;
|
|
9584
9584
|
paymasterContext: string;
|
|
9585
|
-
accountValidationData: bigint;
|
|
9586
9585
|
paymasterValidationData: bigint;
|
|
9586
|
+
accountValidationData: bigint;
|
|
9587
9587
|
accountSigFailed?: boolean | undefined;
|
|
9588
9588
|
paymasterSigFailed?: boolean | undefined;
|
|
9589
9589
|
validAfter?: number | undefined;
|
|
@@ -9637,8 +9637,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
9637
9637
|
preOpGas: bigint;
|
|
9638
9638
|
prefund: bigint;
|
|
9639
9639
|
paymasterContext: string;
|
|
9640
|
-
accountValidationData: bigint;
|
|
9641
9640
|
paymasterValidationData: bigint;
|
|
9641
|
+
accountValidationData: bigint;
|
|
9642
9642
|
accountSigFailed?: boolean | undefined;
|
|
9643
9643
|
paymasterSigFailed?: boolean | undefined;
|
|
9644
9644
|
validAfter?: number | undefined;
|
|
@@ -9756,8 +9756,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
9756
9756
|
preOpGas: bigint;
|
|
9757
9757
|
prefund: bigint;
|
|
9758
9758
|
paymasterContext: `0x${string}`;
|
|
9759
|
-
accountValidationData: bigint;
|
|
9760
9759
|
paymasterValidationData: bigint;
|
|
9760
|
+
accountValidationData: bigint;
|
|
9761
9761
|
accountSigFailed?: boolean | undefined;
|
|
9762
9762
|
paymasterSigFailed?: boolean | undefined;
|
|
9763
9763
|
validAfter?: number | undefined;
|
|
@@ -9807,8 +9807,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
9807
9807
|
preOpGas: bigint;
|
|
9808
9808
|
prefund: bigint;
|
|
9809
9809
|
paymasterContext: `0x${string}`;
|
|
9810
|
-
accountValidationData: bigint;
|
|
9811
9810
|
paymasterValidationData: bigint;
|
|
9811
|
+
accountValidationData: bigint;
|
|
9812
9812
|
accountSigFailed?: boolean | undefined;
|
|
9813
9813
|
paymasterSigFailed?: boolean | undefined;
|
|
9814
9814
|
validAfter?: number | undefined;
|
|
@@ -9869,8 +9869,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
9869
9869
|
preOpGas: bigint;
|
|
9870
9870
|
prefund: bigint;
|
|
9871
9871
|
paymasterContext: `0x${string}`;
|
|
9872
|
-
accountValidationData: bigint;
|
|
9873
9872
|
paymasterValidationData: bigint;
|
|
9873
|
+
accountValidationData: bigint;
|
|
9874
9874
|
accountSigFailed?: boolean | undefined;
|
|
9875
9875
|
paymasterSigFailed?: boolean | undefined;
|
|
9876
9876
|
validAfter?: number | undefined;
|
|
@@ -9936,8 +9936,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
9936
9936
|
preOpGas: bigint;
|
|
9937
9937
|
prefund: bigint;
|
|
9938
9938
|
paymasterContext: `0x${string}`;
|
|
9939
|
-
accountValidationData: bigint;
|
|
9940
9939
|
paymasterValidationData: bigint;
|
|
9940
|
+
accountValidationData: bigint;
|
|
9941
9941
|
accountSigFailed?: boolean | undefined;
|
|
9942
9942
|
paymasterSigFailed?: boolean | undefined;
|
|
9943
9943
|
validAfter?: number | undefined;
|
|
@@ -10007,8 +10007,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
10007
10007
|
preOpGas: bigint;
|
|
10008
10008
|
prefund: bigint;
|
|
10009
10009
|
paymasterContext: string;
|
|
10010
|
-
accountValidationData: bigint;
|
|
10011
10010
|
paymasterValidationData: bigint;
|
|
10011
|
+
accountValidationData: bigint;
|
|
10012
10012
|
accountSigFailed?: boolean | undefined;
|
|
10013
10013
|
paymasterSigFailed?: boolean | undefined;
|
|
10014
10014
|
validAfter?: number | undefined;
|
|
@@ -10048,8 +10048,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
10048
10048
|
preOpGas: bigint;
|
|
10049
10049
|
prefund: bigint;
|
|
10050
10050
|
paymasterContext: string;
|
|
10051
|
-
accountValidationData: bigint;
|
|
10052
10051
|
paymasterValidationData: bigint;
|
|
10052
|
+
accountValidationData: bigint;
|
|
10053
10053
|
accountSigFailed?: boolean | undefined;
|
|
10054
10054
|
paymasterSigFailed?: boolean | undefined;
|
|
10055
10055
|
validAfter?: number | undefined;
|
|
@@ -10099,8 +10099,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
10099
10099
|
preOpGas: bigint;
|
|
10100
10100
|
prefund: bigint;
|
|
10101
10101
|
paymasterContext: string;
|
|
10102
|
-
accountValidationData: bigint;
|
|
10103
10102
|
paymasterValidationData: bigint;
|
|
10103
|
+
accountValidationData: bigint;
|
|
10104
10104
|
accountSigFailed?: boolean | undefined;
|
|
10105
10105
|
paymasterSigFailed?: boolean | undefined;
|
|
10106
10106
|
validAfter?: number | undefined;
|
|
@@ -10154,8 +10154,8 @@ export declare const entryPointExecutionErrorSchemaV06: z.ZodEffects<z.ZodObject
|
|
|
10154
10154
|
preOpGas: bigint;
|
|
10155
10155
|
prefund: bigint;
|
|
10156
10156
|
paymasterContext: string;
|
|
10157
|
-
accountValidationData: bigint;
|
|
10158
10157
|
paymasterValidationData: bigint;
|
|
10158
|
+
accountValidationData: bigint;
|
|
10159
10159
|
accountSigFailed?: boolean | undefined;
|
|
10160
10160
|
paymasterSigFailed?: boolean | undefined;
|
|
10161
10161
|
validAfter?: number | undefined;
|
|
@@ -10313,8 +10313,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
10313
10313
|
preOpGas: bigint;
|
|
10314
10314
|
prefund: bigint;
|
|
10315
10315
|
paymasterContext: `0x${string}`;
|
|
10316
|
-
accountValidationData: bigint;
|
|
10317
10316
|
paymasterValidationData: bigint;
|
|
10317
|
+
accountValidationData: bigint;
|
|
10318
10318
|
accountSigFailed?: boolean | undefined;
|
|
10319
10319
|
paymasterSigFailed?: boolean | undefined;
|
|
10320
10320
|
validAfter?: number | undefined;
|
|
@@ -10323,8 +10323,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
10323
10323
|
preOpGas: bigint;
|
|
10324
10324
|
prefund: bigint;
|
|
10325
10325
|
paymasterContext: string;
|
|
10326
|
-
accountValidationData: bigint;
|
|
10327
10326
|
paymasterValidationData: bigint;
|
|
10327
|
+
accountValidationData: bigint;
|
|
10328
10328
|
accountSigFailed?: boolean | undefined;
|
|
10329
10329
|
paymasterSigFailed?: boolean | undefined;
|
|
10330
10330
|
validAfter?: number | undefined;
|
|
@@ -10370,8 +10370,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
10370
10370
|
preOpGas: bigint;
|
|
10371
10371
|
prefund: bigint;
|
|
10372
10372
|
paymasterContext: `0x${string}`;
|
|
10373
|
-
accountValidationData: bigint;
|
|
10374
10373
|
paymasterValidationData: bigint;
|
|
10374
|
+
accountValidationData: bigint;
|
|
10375
10375
|
accountSigFailed?: boolean | undefined;
|
|
10376
10376
|
paymasterSigFailed?: boolean | undefined;
|
|
10377
10377
|
validAfter?: number | undefined;
|
|
@@ -10396,8 +10396,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
10396
10396
|
preOpGas: bigint;
|
|
10397
10397
|
prefund: bigint;
|
|
10398
10398
|
paymasterContext: string;
|
|
10399
|
-
accountValidationData: bigint;
|
|
10400
10399
|
paymasterValidationData: bigint;
|
|
10400
|
+
accountValidationData: bigint;
|
|
10401
10401
|
accountSigFailed?: boolean | undefined;
|
|
10402
10402
|
paymasterSigFailed?: boolean | undefined;
|
|
10403
10403
|
validAfter?: number | undefined;
|
|
@@ -10446,8 +10446,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
10446
10446
|
preOpGas: bigint;
|
|
10447
10447
|
prefund: bigint;
|
|
10448
10448
|
paymasterContext: `0x${string}`;
|
|
10449
|
-
accountValidationData: bigint;
|
|
10450
10449
|
paymasterValidationData: bigint;
|
|
10450
|
+
accountValidationData: bigint;
|
|
10451
10451
|
accountSigFailed?: boolean | undefined;
|
|
10452
10452
|
paymasterSigFailed?: boolean | undefined;
|
|
10453
10453
|
validAfter?: number | undefined;
|
|
@@ -10497,8 +10497,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
10497
10497
|
preOpGas: bigint;
|
|
10498
10498
|
prefund: bigint;
|
|
10499
10499
|
paymasterContext: `0x${string}`;
|
|
10500
|
-
accountValidationData: bigint;
|
|
10501
10500
|
paymasterValidationData: bigint;
|
|
10501
|
+
accountValidationData: bigint;
|
|
10502
10502
|
accountSigFailed?: boolean | undefined;
|
|
10503
10503
|
paymasterSigFailed?: boolean | undefined;
|
|
10504
10504
|
validAfter?: number | undefined;
|
|
@@ -10545,8 +10545,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
10545
10545
|
preOpGas: bigint;
|
|
10546
10546
|
prefund: bigint;
|
|
10547
10547
|
paymasterContext: string;
|
|
10548
|
-
accountValidationData: bigint;
|
|
10549
10548
|
paymasterValidationData: bigint;
|
|
10549
|
+
accountValidationData: bigint;
|
|
10550
10550
|
accountSigFailed?: boolean | undefined;
|
|
10551
10551
|
paymasterSigFailed?: boolean | undefined;
|
|
10552
10552
|
validAfter?: number | undefined;
|
|
@@ -10586,8 +10586,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
10586
10586
|
preOpGas: bigint;
|
|
10587
10587
|
prefund: bigint;
|
|
10588
10588
|
paymasterContext: string;
|
|
10589
|
-
accountValidationData: bigint;
|
|
10590
10589
|
paymasterValidationData: bigint;
|
|
10590
|
+
accountValidationData: bigint;
|
|
10591
10591
|
accountSigFailed?: boolean | undefined;
|
|
10592
10592
|
paymasterSigFailed?: boolean | undefined;
|
|
10593
10593
|
validAfter?: number | undefined;
|
|
@@ -10863,8 +10863,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
10863
10863
|
preOpGas: bigint;
|
|
10864
10864
|
prefund: bigint;
|
|
10865
10865
|
paymasterContext: `0x${string}`;
|
|
10866
|
-
accountValidationData: bigint;
|
|
10867
10866
|
paymasterValidationData: bigint;
|
|
10867
|
+
accountValidationData: bigint;
|
|
10868
10868
|
accountSigFailed?: boolean | undefined;
|
|
10869
10869
|
paymasterSigFailed?: boolean | undefined;
|
|
10870
10870
|
validAfter?: number | undefined;
|
|
@@ -10873,8 +10873,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
10873
10873
|
preOpGas: bigint;
|
|
10874
10874
|
prefund: bigint;
|
|
10875
10875
|
paymasterContext: string;
|
|
10876
|
-
accountValidationData: bigint;
|
|
10877
10876
|
paymasterValidationData: bigint;
|
|
10877
|
+
accountValidationData: bigint;
|
|
10878
10878
|
accountSigFailed?: boolean | undefined;
|
|
10879
10879
|
paymasterSigFailed?: boolean | undefined;
|
|
10880
10880
|
validAfter?: number | undefined;
|
|
@@ -10949,8 +10949,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
10949
10949
|
preOpGas: bigint;
|
|
10950
10950
|
prefund: bigint;
|
|
10951
10951
|
paymasterContext: `0x${string}`;
|
|
10952
|
-
accountValidationData: bigint;
|
|
10953
10952
|
paymasterValidationData: bigint;
|
|
10953
|
+
accountValidationData: bigint;
|
|
10954
10954
|
accountSigFailed?: boolean | undefined;
|
|
10955
10955
|
paymasterSigFailed?: boolean | undefined;
|
|
10956
10956
|
validAfter?: number | undefined;
|
|
@@ -10983,8 +10983,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
10983
10983
|
preOpGas: bigint;
|
|
10984
10984
|
prefund: bigint;
|
|
10985
10985
|
paymasterContext: string;
|
|
10986
|
-
accountValidationData: bigint;
|
|
10987
10986
|
paymasterValidationData: bigint;
|
|
10987
|
+
accountValidationData: bigint;
|
|
10988
10988
|
accountSigFailed?: boolean | undefined;
|
|
10989
10989
|
paymasterSigFailed?: boolean | undefined;
|
|
10990
10990
|
validAfter?: number | undefined;
|
|
@@ -11048,8 +11048,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
11048
11048
|
preOpGas: bigint;
|
|
11049
11049
|
prefund: bigint;
|
|
11050
11050
|
paymasterContext: `0x${string}`;
|
|
11051
|
-
accountValidationData: bigint;
|
|
11052
11051
|
paymasterValidationData: bigint;
|
|
11052
|
+
accountValidationData: bigint;
|
|
11053
11053
|
accountSigFailed?: boolean | undefined;
|
|
11054
11054
|
paymasterSigFailed?: boolean | undefined;
|
|
11055
11055
|
validAfter?: number | undefined;
|
|
@@ -11115,8 +11115,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
11115
11115
|
preOpGas: bigint;
|
|
11116
11116
|
prefund: bigint;
|
|
11117
11117
|
paymasterContext: `0x${string}`;
|
|
11118
|
-
accountValidationData: bigint;
|
|
11119
11118
|
paymasterValidationData: bigint;
|
|
11119
|
+
accountValidationData: bigint;
|
|
11120
11120
|
accountSigFailed?: boolean | undefined;
|
|
11121
11121
|
paymasterSigFailed?: boolean | undefined;
|
|
11122
11122
|
validAfter?: number | undefined;
|
|
@@ -11178,8 +11178,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
11178
11178
|
preOpGas: bigint;
|
|
11179
11179
|
prefund: bigint;
|
|
11180
11180
|
paymasterContext: string;
|
|
11181
|
-
accountValidationData: bigint;
|
|
11182
11181
|
paymasterValidationData: bigint;
|
|
11182
|
+
accountValidationData: bigint;
|
|
11183
11183
|
accountSigFailed?: boolean | undefined;
|
|
11184
11184
|
paymasterSigFailed?: boolean | undefined;
|
|
11185
11185
|
validAfter?: number | undefined;
|
|
@@ -11233,8 +11233,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
11233
11233
|
preOpGas: bigint;
|
|
11234
11234
|
prefund: bigint;
|
|
11235
11235
|
paymasterContext: string;
|
|
11236
|
-
accountValidationData: bigint;
|
|
11237
11236
|
paymasterValidationData: bigint;
|
|
11237
|
+
accountValidationData: bigint;
|
|
11238
11238
|
accountSigFailed?: boolean | undefined;
|
|
11239
11239
|
paymasterSigFailed?: boolean | undefined;
|
|
11240
11240
|
validAfter?: number | undefined;
|
|
@@ -11343,8 +11343,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
11343
11343
|
preOpGas: bigint;
|
|
11344
11344
|
prefund: bigint;
|
|
11345
11345
|
paymasterContext: `0x${string}`;
|
|
11346
|
-
accountValidationData: bigint;
|
|
11347
11346
|
paymasterValidationData: bigint;
|
|
11347
|
+
accountValidationData: bigint;
|
|
11348
11348
|
accountSigFailed?: boolean | undefined;
|
|
11349
11349
|
paymasterSigFailed?: boolean | undefined;
|
|
11350
11350
|
validAfter?: number | undefined;
|
|
@@ -11394,8 +11394,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
11394
11394
|
preOpGas: bigint;
|
|
11395
11395
|
prefund: bigint;
|
|
11396
11396
|
paymasterContext: `0x${string}`;
|
|
11397
|
-
accountValidationData: bigint;
|
|
11398
11397
|
paymasterValidationData: bigint;
|
|
11398
|
+
accountValidationData: bigint;
|
|
11399
11399
|
accountSigFailed?: boolean | undefined;
|
|
11400
11400
|
paymasterSigFailed?: boolean | undefined;
|
|
11401
11401
|
validAfter?: number | undefined;
|
|
@@ -11456,8 +11456,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
11456
11456
|
preOpGas: bigint;
|
|
11457
11457
|
prefund: bigint;
|
|
11458
11458
|
paymasterContext: `0x${string}`;
|
|
11459
|
-
accountValidationData: bigint;
|
|
11460
11459
|
paymasterValidationData: bigint;
|
|
11460
|
+
accountValidationData: bigint;
|
|
11461
11461
|
accountSigFailed?: boolean | undefined;
|
|
11462
11462
|
paymasterSigFailed?: boolean | undefined;
|
|
11463
11463
|
validAfter?: number | undefined;
|
|
@@ -11523,8 +11523,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
11523
11523
|
preOpGas: bigint;
|
|
11524
11524
|
prefund: bigint;
|
|
11525
11525
|
paymasterContext: `0x${string}`;
|
|
11526
|
-
accountValidationData: bigint;
|
|
11527
11526
|
paymasterValidationData: bigint;
|
|
11527
|
+
accountValidationData: bigint;
|
|
11528
11528
|
accountSigFailed?: boolean | undefined;
|
|
11529
11529
|
paymasterSigFailed?: boolean | undefined;
|
|
11530
11530
|
validAfter?: number | undefined;
|
|
@@ -11594,8 +11594,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
11594
11594
|
preOpGas: bigint;
|
|
11595
11595
|
prefund: bigint;
|
|
11596
11596
|
paymasterContext: string;
|
|
11597
|
-
accountValidationData: bigint;
|
|
11598
11597
|
paymasterValidationData: bigint;
|
|
11598
|
+
accountValidationData: bigint;
|
|
11599
11599
|
accountSigFailed?: boolean | undefined;
|
|
11600
11600
|
paymasterSigFailed?: boolean | undefined;
|
|
11601
11601
|
validAfter?: number | undefined;
|
|
@@ -11635,8 +11635,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
11635
11635
|
preOpGas: bigint;
|
|
11636
11636
|
prefund: bigint;
|
|
11637
11637
|
paymasterContext: string;
|
|
11638
|
-
accountValidationData: bigint;
|
|
11639
11638
|
paymasterValidationData: bigint;
|
|
11639
|
+
accountValidationData: bigint;
|
|
11640
11640
|
accountSigFailed?: boolean | undefined;
|
|
11641
11641
|
paymasterSigFailed?: boolean | undefined;
|
|
11642
11642
|
validAfter?: number | undefined;
|
|
@@ -11686,8 +11686,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
11686
11686
|
preOpGas: bigint;
|
|
11687
11687
|
prefund: bigint;
|
|
11688
11688
|
paymasterContext: string;
|
|
11689
|
-
accountValidationData: bigint;
|
|
11690
11689
|
paymasterValidationData: bigint;
|
|
11690
|
+
accountValidationData: bigint;
|
|
11691
11691
|
accountSigFailed?: boolean | undefined;
|
|
11692
11692
|
paymasterSigFailed?: boolean | undefined;
|
|
11693
11693
|
validAfter?: number | undefined;
|
|
@@ -11741,8 +11741,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
11741
11741
|
preOpGas: bigint;
|
|
11742
11742
|
prefund: bigint;
|
|
11743
11743
|
paymasterContext: string;
|
|
11744
|
-
accountValidationData: bigint;
|
|
11745
11744
|
paymasterValidationData: bigint;
|
|
11745
|
+
accountValidationData: bigint;
|
|
11746
11746
|
accountSigFailed?: boolean | undefined;
|
|
11747
11747
|
paymasterSigFailed?: boolean | undefined;
|
|
11748
11748
|
validAfter?: number | undefined;
|
|
@@ -11856,8 +11856,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
11856
11856
|
preOpGas: bigint;
|
|
11857
11857
|
prefund: bigint;
|
|
11858
11858
|
paymasterContext: `0x${string}`;
|
|
11859
|
-
accountValidationData: bigint;
|
|
11860
11859
|
paymasterValidationData: bigint;
|
|
11860
|
+
accountValidationData: bigint;
|
|
11861
11861
|
accountSigFailed?: boolean | undefined;
|
|
11862
11862
|
paymasterSigFailed?: boolean | undefined;
|
|
11863
11863
|
validAfter?: number | undefined;
|
|
@@ -11907,8 +11907,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
11907
11907
|
preOpGas: bigint;
|
|
11908
11908
|
prefund: bigint;
|
|
11909
11909
|
paymasterContext: `0x${string}`;
|
|
11910
|
-
accountValidationData: bigint;
|
|
11911
11910
|
paymasterValidationData: bigint;
|
|
11911
|
+
accountValidationData: bigint;
|
|
11912
11912
|
accountSigFailed?: boolean | undefined;
|
|
11913
11913
|
paymasterSigFailed?: boolean | undefined;
|
|
11914
11914
|
validAfter?: number | undefined;
|
|
@@ -11969,8 +11969,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
11969
11969
|
preOpGas: bigint;
|
|
11970
11970
|
prefund: bigint;
|
|
11971
11971
|
paymasterContext: `0x${string}`;
|
|
11972
|
-
accountValidationData: bigint;
|
|
11973
11972
|
paymasterValidationData: bigint;
|
|
11973
|
+
accountValidationData: bigint;
|
|
11974
11974
|
accountSigFailed?: boolean | undefined;
|
|
11975
11975
|
paymasterSigFailed?: boolean | undefined;
|
|
11976
11976
|
validAfter?: number | undefined;
|
|
@@ -12036,8 +12036,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
12036
12036
|
preOpGas: bigint;
|
|
12037
12037
|
prefund: bigint;
|
|
12038
12038
|
paymasterContext: `0x${string}`;
|
|
12039
|
-
accountValidationData: bigint;
|
|
12040
12039
|
paymasterValidationData: bigint;
|
|
12040
|
+
accountValidationData: bigint;
|
|
12041
12041
|
accountSigFailed?: boolean | undefined;
|
|
12042
12042
|
paymasterSigFailed?: boolean | undefined;
|
|
12043
12043
|
validAfter?: number | undefined;
|
|
@@ -12151,8 +12151,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
12151
12151
|
preOpGas: bigint;
|
|
12152
12152
|
prefund: bigint;
|
|
12153
12153
|
paymasterContext: `0x${string}`;
|
|
12154
|
-
accountValidationData: bigint;
|
|
12155
12154
|
paymasterValidationData: bigint;
|
|
12155
|
+
accountValidationData: bigint;
|
|
12156
12156
|
accountSigFailed?: boolean | undefined;
|
|
12157
12157
|
paymasterSigFailed?: boolean | undefined;
|
|
12158
12158
|
validAfter?: number | undefined;
|
|
@@ -12202,8 +12202,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
12202
12202
|
preOpGas: bigint;
|
|
12203
12203
|
prefund: bigint;
|
|
12204
12204
|
paymasterContext: `0x${string}`;
|
|
12205
|
-
accountValidationData: bigint;
|
|
12206
12205
|
paymasterValidationData: bigint;
|
|
12206
|
+
accountValidationData: bigint;
|
|
12207
12207
|
accountSigFailed?: boolean | undefined;
|
|
12208
12208
|
paymasterSigFailed?: boolean | undefined;
|
|
12209
12209
|
validAfter?: number | undefined;
|
|
@@ -12264,8 +12264,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
12264
12264
|
preOpGas: bigint;
|
|
12265
12265
|
prefund: bigint;
|
|
12266
12266
|
paymasterContext: `0x${string}`;
|
|
12267
|
-
accountValidationData: bigint;
|
|
12268
12267
|
paymasterValidationData: bigint;
|
|
12268
|
+
accountValidationData: bigint;
|
|
12269
12269
|
accountSigFailed?: boolean | undefined;
|
|
12270
12270
|
paymasterSigFailed?: boolean | undefined;
|
|
12271
12271
|
validAfter?: number | undefined;
|
|
@@ -12331,8 +12331,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
12331
12331
|
preOpGas: bigint;
|
|
12332
12332
|
prefund: bigint;
|
|
12333
12333
|
paymasterContext: `0x${string}`;
|
|
12334
|
-
accountValidationData: bigint;
|
|
12335
12334
|
paymasterValidationData: bigint;
|
|
12335
|
+
accountValidationData: bigint;
|
|
12336
12336
|
accountSigFailed?: boolean | undefined;
|
|
12337
12337
|
paymasterSigFailed?: boolean | undefined;
|
|
12338
12338
|
validAfter?: number | undefined;
|
|
@@ -12451,8 +12451,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
12451
12451
|
preOpGas: bigint;
|
|
12452
12452
|
prefund: bigint;
|
|
12453
12453
|
paymasterContext: `0x${string}`;
|
|
12454
|
-
accountValidationData: bigint;
|
|
12455
12454
|
paymasterValidationData: bigint;
|
|
12455
|
+
accountValidationData: bigint;
|
|
12456
12456
|
accountSigFailed?: boolean | undefined;
|
|
12457
12457
|
paymasterSigFailed?: boolean | undefined;
|
|
12458
12458
|
validAfter?: number | undefined;
|
|
@@ -12502,8 +12502,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
12502
12502
|
preOpGas: bigint;
|
|
12503
12503
|
prefund: bigint;
|
|
12504
12504
|
paymasterContext: `0x${string}`;
|
|
12505
|
-
accountValidationData: bigint;
|
|
12506
12505
|
paymasterValidationData: bigint;
|
|
12506
|
+
accountValidationData: bigint;
|
|
12507
12507
|
accountSigFailed?: boolean | undefined;
|
|
12508
12508
|
paymasterSigFailed?: boolean | undefined;
|
|
12509
12509
|
validAfter?: number | undefined;
|
|
@@ -12564,8 +12564,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
12564
12564
|
preOpGas: bigint;
|
|
12565
12565
|
prefund: bigint;
|
|
12566
12566
|
paymasterContext: `0x${string}`;
|
|
12567
|
-
accountValidationData: bigint;
|
|
12568
12567
|
paymasterValidationData: bigint;
|
|
12568
|
+
accountValidationData: bigint;
|
|
12569
12569
|
accountSigFailed?: boolean | undefined;
|
|
12570
12570
|
paymasterSigFailed?: boolean | undefined;
|
|
12571
12571
|
validAfter?: number | undefined;
|
|
@@ -12631,8 +12631,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
12631
12631
|
preOpGas: bigint;
|
|
12632
12632
|
prefund: bigint;
|
|
12633
12633
|
paymasterContext: `0x${string}`;
|
|
12634
|
-
accountValidationData: bigint;
|
|
12635
12634
|
paymasterValidationData: bigint;
|
|
12635
|
+
accountValidationData: bigint;
|
|
12636
12636
|
accountSigFailed?: boolean | undefined;
|
|
12637
12637
|
paymasterSigFailed?: boolean | undefined;
|
|
12638
12638
|
validAfter?: number | undefined;
|
|
@@ -12757,8 +12757,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
12757
12757
|
preOpGas: bigint;
|
|
12758
12758
|
prefund: bigint;
|
|
12759
12759
|
paymasterContext: `0x${string}`;
|
|
12760
|
-
accountValidationData: bigint;
|
|
12761
12760
|
paymasterValidationData: bigint;
|
|
12761
|
+
accountValidationData: bigint;
|
|
12762
12762
|
accountSigFailed?: boolean | undefined;
|
|
12763
12763
|
paymasterSigFailed?: boolean | undefined;
|
|
12764
12764
|
validAfter?: number | undefined;
|
|
@@ -12808,8 +12808,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
12808
12808
|
preOpGas: bigint;
|
|
12809
12809
|
prefund: bigint;
|
|
12810
12810
|
paymasterContext: `0x${string}`;
|
|
12811
|
-
accountValidationData: bigint;
|
|
12812
12811
|
paymasterValidationData: bigint;
|
|
12812
|
+
accountValidationData: bigint;
|
|
12813
12813
|
accountSigFailed?: boolean | undefined;
|
|
12814
12814
|
paymasterSigFailed?: boolean | undefined;
|
|
12815
12815
|
validAfter?: number | undefined;
|
|
@@ -12870,8 +12870,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
12870
12870
|
preOpGas: bigint;
|
|
12871
12871
|
prefund: bigint;
|
|
12872
12872
|
paymasterContext: `0x${string}`;
|
|
12873
|
-
accountValidationData: bigint;
|
|
12874
12873
|
paymasterValidationData: bigint;
|
|
12874
|
+
accountValidationData: bigint;
|
|
12875
12875
|
accountSigFailed?: boolean | undefined;
|
|
12876
12876
|
paymasterSigFailed?: boolean | undefined;
|
|
12877
12877
|
validAfter?: number | undefined;
|
|
@@ -12937,8 +12937,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
12937
12937
|
preOpGas: bigint;
|
|
12938
12938
|
prefund: bigint;
|
|
12939
12939
|
paymasterContext: `0x${string}`;
|
|
12940
|
-
accountValidationData: bigint;
|
|
12941
12940
|
paymasterValidationData: bigint;
|
|
12941
|
+
accountValidationData: bigint;
|
|
12942
12942
|
accountSigFailed?: boolean | undefined;
|
|
12943
12943
|
paymasterSigFailed?: boolean | undefined;
|
|
12944
12944
|
validAfter?: number | undefined;
|
|
@@ -13065,8 +13065,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
13065
13065
|
preOpGas: bigint;
|
|
13066
13066
|
prefund: bigint;
|
|
13067
13067
|
paymasterContext: `0x${string}`;
|
|
13068
|
-
accountValidationData: bigint;
|
|
13069
13068
|
paymasterValidationData: bigint;
|
|
13069
|
+
accountValidationData: bigint;
|
|
13070
13070
|
accountSigFailed?: boolean | undefined;
|
|
13071
13071
|
paymasterSigFailed?: boolean | undefined;
|
|
13072
13072
|
validAfter?: number | undefined;
|
|
@@ -13116,8 +13116,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
13116
13116
|
preOpGas: bigint;
|
|
13117
13117
|
prefund: bigint;
|
|
13118
13118
|
paymasterContext: `0x${string}`;
|
|
13119
|
-
accountValidationData: bigint;
|
|
13120
13119
|
paymasterValidationData: bigint;
|
|
13120
|
+
accountValidationData: bigint;
|
|
13121
13121
|
accountSigFailed?: boolean | undefined;
|
|
13122
13122
|
paymasterSigFailed?: boolean | undefined;
|
|
13123
13123
|
validAfter?: number | undefined;
|
|
@@ -13178,8 +13178,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
13178
13178
|
preOpGas: bigint;
|
|
13179
13179
|
prefund: bigint;
|
|
13180
13180
|
paymasterContext: `0x${string}`;
|
|
13181
|
-
accountValidationData: bigint;
|
|
13182
13181
|
paymasterValidationData: bigint;
|
|
13182
|
+
accountValidationData: bigint;
|
|
13183
13183
|
accountSigFailed?: boolean | undefined;
|
|
13184
13184
|
paymasterSigFailed?: boolean | undefined;
|
|
13185
13185
|
validAfter?: number | undefined;
|
|
@@ -13245,8 +13245,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
13245
13245
|
preOpGas: bigint;
|
|
13246
13246
|
prefund: bigint;
|
|
13247
13247
|
paymasterContext: `0x${string}`;
|
|
13248
|
-
accountValidationData: bigint;
|
|
13249
13248
|
paymasterValidationData: bigint;
|
|
13249
|
+
accountValidationData: bigint;
|
|
13250
13250
|
accountSigFailed?: boolean | undefined;
|
|
13251
13251
|
paymasterSigFailed?: boolean | undefined;
|
|
13252
13252
|
validAfter?: number | undefined;
|
|
@@ -13365,8 +13365,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
13365
13365
|
preOpGas: bigint;
|
|
13366
13366
|
prefund: bigint;
|
|
13367
13367
|
paymasterContext: `0x${string}`;
|
|
13368
|
-
accountValidationData: bigint;
|
|
13369
13368
|
paymasterValidationData: bigint;
|
|
13369
|
+
accountValidationData: bigint;
|
|
13370
13370
|
accountSigFailed?: boolean | undefined;
|
|
13371
13371
|
paymasterSigFailed?: boolean | undefined;
|
|
13372
13372
|
validAfter?: number | undefined;
|
|
@@ -13416,8 +13416,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
13416
13416
|
preOpGas: bigint;
|
|
13417
13417
|
prefund: bigint;
|
|
13418
13418
|
paymasterContext: `0x${string}`;
|
|
13419
|
-
accountValidationData: bigint;
|
|
13420
13419
|
paymasterValidationData: bigint;
|
|
13420
|
+
accountValidationData: bigint;
|
|
13421
13421
|
accountSigFailed?: boolean | undefined;
|
|
13422
13422
|
paymasterSigFailed?: boolean | undefined;
|
|
13423
13423
|
validAfter?: number | undefined;
|
|
@@ -13478,8 +13478,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
13478
13478
|
preOpGas: bigint;
|
|
13479
13479
|
prefund: bigint;
|
|
13480
13480
|
paymasterContext: `0x${string}`;
|
|
13481
|
-
accountValidationData: bigint;
|
|
13482
13481
|
paymasterValidationData: bigint;
|
|
13482
|
+
accountValidationData: bigint;
|
|
13483
13483
|
accountSigFailed?: boolean | undefined;
|
|
13484
13484
|
paymasterSigFailed?: boolean | undefined;
|
|
13485
13485
|
validAfter?: number | undefined;
|
|
@@ -13545,8 +13545,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
13545
13545
|
preOpGas: bigint;
|
|
13546
13546
|
prefund: bigint;
|
|
13547
13547
|
paymasterContext: `0x${string}`;
|
|
13548
|
-
accountValidationData: bigint;
|
|
13549
13548
|
paymasterValidationData: bigint;
|
|
13549
|
+
accountValidationData: bigint;
|
|
13550
13550
|
accountSigFailed?: boolean | undefined;
|
|
13551
13551
|
paymasterSigFailed?: boolean | undefined;
|
|
13552
13552
|
validAfter?: number | undefined;
|
|
@@ -13620,8 +13620,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
13620
13620
|
preOpGas: bigint;
|
|
13621
13621
|
prefund: bigint;
|
|
13622
13622
|
paymasterContext: string;
|
|
13623
|
-
accountValidationData: bigint;
|
|
13624
13623
|
paymasterValidationData: bigint;
|
|
13624
|
+
accountValidationData: bigint;
|
|
13625
13625
|
accountSigFailed?: boolean | undefined;
|
|
13626
13626
|
paymasterSigFailed?: boolean | undefined;
|
|
13627
13627
|
validAfter?: number | undefined;
|
|
@@ -13661,8 +13661,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
13661
13661
|
preOpGas: bigint;
|
|
13662
13662
|
prefund: bigint;
|
|
13663
13663
|
paymasterContext: string;
|
|
13664
|
-
accountValidationData: bigint;
|
|
13665
13664
|
paymasterValidationData: bigint;
|
|
13665
|
+
accountValidationData: bigint;
|
|
13666
13666
|
accountSigFailed?: boolean | undefined;
|
|
13667
13667
|
paymasterSigFailed?: boolean | undefined;
|
|
13668
13668
|
validAfter?: number | undefined;
|
|
@@ -13712,8 +13712,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
13712
13712
|
preOpGas: bigint;
|
|
13713
13713
|
prefund: bigint;
|
|
13714
13714
|
paymasterContext: string;
|
|
13715
|
-
accountValidationData: bigint;
|
|
13716
13715
|
paymasterValidationData: bigint;
|
|
13716
|
+
accountValidationData: bigint;
|
|
13717
13717
|
accountSigFailed?: boolean | undefined;
|
|
13718
13718
|
paymasterSigFailed?: boolean | undefined;
|
|
13719
13719
|
validAfter?: number | undefined;
|
|
@@ -13767,8 +13767,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
13767
13767
|
preOpGas: bigint;
|
|
13768
13768
|
prefund: bigint;
|
|
13769
13769
|
paymasterContext: string;
|
|
13770
|
-
accountValidationData: bigint;
|
|
13771
13770
|
paymasterValidationData: bigint;
|
|
13771
|
+
accountValidationData: bigint;
|
|
13772
13772
|
accountSigFailed?: boolean | undefined;
|
|
13773
13773
|
paymasterSigFailed?: boolean | undefined;
|
|
13774
13774
|
validAfter?: number | undefined;
|
|
@@ -13886,8 +13886,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
13886
13886
|
preOpGas: bigint;
|
|
13887
13887
|
prefund: bigint;
|
|
13888
13888
|
paymasterContext: `0x${string}`;
|
|
13889
|
-
accountValidationData: bigint;
|
|
13890
13889
|
paymasterValidationData: bigint;
|
|
13890
|
+
accountValidationData: bigint;
|
|
13891
13891
|
accountSigFailed?: boolean | undefined;
|
|
13892
13892
|
paymasterSigFailed?: boolean | undefined;
|
|
13893
13893
|
validAfter?: number | undefined;
|
|
@@ -13937,8 +13937,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
13937
13937
|
preOpGas: bigint;
|
|
13938
13938
|
prefund: bigint;
|
|
13939
13939
|
paymasterContext: `0x${string}`;
|
|
13940
|
-
accountValidationData: bigint;
|
|
13941
13940
|
paymasterValidationData: bigint;
|
|
13941
|
+
accountValidationData: bigint;
|
|
13942
13942
|
accountSigFailed?: boolean | undefined;
|
|
13943
13943
|
paymasterSigFailed?: boolean | undefined;
|
|
13944
13944
|
validAfter?: number | undefined;
|
|
@@ -13999,8 +13999,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
13999
13999
|
preOpGas: bigint;
|
|
14000
14000
|
prefund: bigint;
|
|
14001
14001
|
paymasterContext: `0x${string}`;
|
|
14002
|
-
accountValidationData: bigint;
|
|
14003
14002
|
paymasterValidationData: bigint;
|
|
14003
|
+
accountValidationData: bigint;
|
|
14004
14004
|
accountSigFailed?: boolean | undefined;
|
|
14005
14005
|
paymasterSigFailed?: boolean | undefined;
|
|
14006
14006
|
validAfter?: number | undefined;
|
|
@@ -14066,8 +14066,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
14066
14066
|
preOpGas: bigint;
|
|
14067
14067
|
prefund: bigint;
|
|
14068
14068
|
paymasterContext: `0x${string}`;
|
|
14069
|
-
accountValidationData: bigint;
|
|
14070
14069
|
paymasterValidationData: bigint;
|
|
14070
|
+
accountValidationData: bigint;
|
|
14071
14071
|
accountSigFailed?: boolean | undefined;
|
|
14072
14072
|
paymasterSigFailed?: boolean | undefined;
|
|
14073
14073
|
validAfter?: number | undefined;
|
|
@@ -14137,8 +14137,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
14137
14137
|
preOpGas: bigint;
|
|
14138
14138
|
prefund: bigint;
|
|
14139
14139
|
paymasterContext: string;
|
|
14140
|
-
accountValidationData: bigint;
|
|
14141
14140
|
paymasterValidationData: bigint;
|
|
14141
|
+
accountValidationData: bigint;
|
|
14142
14142
|
accountSigFailed?: boolean | undefined;
|
|
14143
14143
|
paymasterSigFailed?: boolean | undefined;
|
|
14144
14144
|
validAfter?: number | undefined;
|
|
@@ -14178,8 +14178,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
14178
14178
|
preOpGas: bigint;
|
|
14179
14179
|
prefund: bigint;
|
|
14180
14180
|
paymasterContext: string;
|
|
14181
|
-
accountValidationData: bigint;
|
|
14182
14181
|
paymasterValidationData: bigint;
|
|
14182
|
+
accountValidationData: bigint;
|
|
14183
14183
|
accountSigFailed?: boolean | undefined;
|
|
14184
14184
|
paymasterSigFailed?: boolean | undefined;
|
|
14185
14185
|
validAfter?: number | undefined;
|
|
@@ -14229,8 +14229,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
14229
14229
|
preOpGas: bigint;
|
|
14230
14230
|
prefund: bigint;
|
|
14231
14231
|
paymasterContext: string;
|
|
14232
|
-
accountValidationData: bigint;
|
|
14233
14232
|
paymasterValidationData: bigint;
|
|
14233
|
+
accountValidationData: bigint;
|
|
14234
14234
|
accountSigFailed?: boolean | undefined;
|
|
14235
14235
|
paymasterSigFailed?: boolean | undefined;
|
|
14236
14236
|
validAfter?: number | undefined;
|
|
@@ -14284,8 +14284,8 @@ export declare const entryPointExecutionErrorSchemaV07: z.ZodEffects<z.ZodObject
|
|
|
14284
14284
|
preOpGas: bigint;
|
|
14285
14285
|
prefund: bigint;
|
|
14286
14286
|
paymasterContext: string;
|
|
14287
|
-
accountValidationData: bigint;
|
|
14288
14287
|
paymasterValidationData: bigint;
|
|
14288
|
+
accountValidationData: bigint;
|
|
14289
14289
|
accountSigFailed?: boolean | undefined;
|
|
14290
14290
|
paymasterSigFailed?: boolean | undefined;
|
|
14291
14291
|
validAfter?: number | undefined;
|