@pimlico/alto 0.0.0-main.20240612T111639 → 0.0.0-prool.20240609T211112

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (107) hide show
  1. package/esm/cli/config/bundler.d.ts +37 -43
  2. package/esm/cli/config/bundler.js +0 -1
  3. package/esm/cli/config/bundler.js.map +1 -1
  4. package/esm/cli/config/options.js +0 -6
  5. package/esm/cli/config/options.js.map +1 -1
  6. package/esm/cli/handler.js +2 -26
  7. package/esm/cli/handler.js.map +1 -1
  8. package/esm/executor/executor.js +2 -15
  9. package/esm/executor/executor.js.map +1 -1
  10. package/esm/index.d.ts +448 -1
  11. package/esm/index.js +63 -1
  12. package/esm/index.js.map +1 -1
  13. package/esm/mempool/mempool.js +7 -5
  14. package/esm/mempool/mempool.js.map +1 -1
  15. package/esm/mempool/reputationManager.js +3 -7
  16. package/esm/mempool/reputationManager.js.map +1 -1
  17. package/esm/rpc/EntryPointSimulationsV07.d.ts +1 -5
  18. package/esm/rpc/EntryPointSimulationsV07.js +2 -2
  19. package/esm/rpc/EntryPointSimulationsV07.js.map +1 -1
  20. package/esm/rpc/gasEstimation.js +3 -7
  21. package/esm/rpc/gasEstimation.js.map +1 -1
  22. package/esm/rpc/rpcHandler.js +8 -19
  23. package/esm/rpc/rpcHandler.js.map +1 -1
  24. package/esm/rpc/server.js +0 -4
  25. package/esm/rpc/server.js.map +1 -1
  26. package/esm/rpc/validation/SafeValidator.d.ts +6 -2
  27. package/esm/rpc/validation/SafeValidator.js +206 -49
  28. package/esm/rpc/validation/SafeValidator.js.map +1 -1
  29. package/esm/rpc/validation/TracerResultParserV07.js +2 -6
  30. package/esm/rpc/validation/TracerResultParserV07.js.map +1 -1
  31. package/esm/rpc/validation/UnsafeValidator.d.ts +1 -2
  32. package/esm/rpc/validation/UnsafeValidator.js +45 -45
  33. package/esm/rpc/validation/UnsafeValidator.js.map +1 -1
  34. package/esm/rpc/validation/tracer.d.ts +1 -1
  35. package/esm/types/contracts/EntryPointSimulations.d.ts +1 -0
  36. package/esm/types/contracts/EntryPointSimulations.js +2 -1941
  37. package/esm/types/contracts/EntryPointSimulations.js.map +1 -1
  38. package/esm/types/contracts/PimlicoEntryPointSimulations.d.ts +1 -1
  39. package/esm/types/contracts/PimlicoEntryPointSimulations.js +1 -1
  40. package/esm/types/contracts/PimlicoEntryPointSimulations.js.map +1 -1
  41. package/esm/types/schemas.d.ts +116 -116
  42. package/esm/types/validation.d.ts +12 -12
  43. package/esm/utils/index.d.ts +1 -0
  44. package/esm/utils/index.js +1 -0
  45. package/esm/utils/index.js.map +1 -1
  46. package/esm/utils/metrics.d.ts +4 -4
  47. package/esm/utils/test.d.ts +1 -1
  48. package/esm/utils/toArgs.d.ts +36 -0
  49. package/esm/utils/toArgs.js +80 -0
  50. package/esm/utils/toArgs.js.map +1 -0
  51. package/esm/utils/userop.d.ts +2 -2
  52. package/esm/utils/userop.js +2 -2
  53. package/esm/utils/userop.js.map +1 -1
  54. package/lib/cli/config/bundler.d.ts +37 -43
  55. package/lib/cli/config/bundler.js +0 -1
  56. package/lib/cli/config/bundler.js.map +1 -1
  57. package/lib/cli/config/options.js +0 -6
  58. package/lib/cli/config/options.js.map +1 -1
  59. package/lib/cli/handler.js +1 -25
  60. package/lib/cli/handler.js.map +1 -1
  61. package/lib/executor/executor.js +2 -15
  62. package/lib/executor/executor.js.map +1 -1
  63. package/lib/index.d.ts +448 -1
  64. package/lib/index.js +64 -1
  65. package/lib/index.js.map +1 -1
  66. package/lib/mempool/mempool.js +7 -5
  67. package/lib/mempool/mempool.js.map +1 -1
  68. package/lib/mempool/reputationManager.js +3 -7
  69. package/lib/mempool/reputationManager.js.map +1 -1
  70. package/lib/rpc/EntryPointSimulationsV07.d.ts +1 -5
  71. package/lib/rpc/EntryPointSimulationsV07.js +2 -3
  72. package/lib/rpc/EntryPointSimulationsV07.js.map +1 -1
  73. package/lib/rpc/gasEstimation.js +3 -7
  74. package/lib/rpc/gasEstimation.js.map +1 -1
  75. package/lib/rpc/rpcHandler.js +7 -18
  76. package/lib/rpc/rpcHandler.js.map +1 -1
  77. package/lib/rpc/server.js +0 -4
  78. package/lib/rpc/server.js.map +1 -1
  79. package/lib/rpc/validation/SafeValidator.d.ts +6 -2
  80. package/lib/rpc/validation/SafeValidator.js +205 -48
  81. package/lib/rpc/validation/SafeValidator.js.map +1 -1
  82. package/lib/rpc/validation/TracerResultParserV07.js +2 -6
  83. package/lib/rpc/validation/TracerResultParserV07.js.map +1 -1
  84. package/lib/rpc/validation/UnsafeValidator.d.ts +1 -2
  85. package/lib/rpc/validation/UnsafeValidator.js +68 -45
  86. package/lib/rpc/validation/UnsafeValidator.js.map +1 -1
  87. package/lib/rpc/validation/tracer.d.ts +1 -1
  88. package/lib/types/contracts/EntryPointSimulations.d.ts +1 -0
  89. package/lib/types/contracts/EntryPointSimulations.js +3 -1942
  90. package/lib/types/contracts/EntryPointSimulations.js.map +1 -1
  91. package/lib/types/contracts/PimlicoEntryPointSimulations.d.ts +1 -1
  92. package/lib/types/contracts/PimlicoEntryPointSimulations.js +2 -2
  93. package/lib/types/contracts/PimlicoEntryPointSimulations.js.map +1 -1
  94. package/lib/types/schemas.d.ts +116 -116
  95. package/lib/types/validation.d.ts +12 -12
  96. package/lib/utils/index.d.ts +1 -0
  97. package/lib/utils/index.js +1 -0
  98. package/lib/utils/index.js.map +1 -1
  99. package/lib/utils/metrics.d.ts +4 -4
  100. package/lib/utils/test.d.ts +1 -1
  101. package/lib/utils/toArgs.d.ts +36 -0
  102. package/lib/utils/toArgs.js +87 -0
  103. package/lib/utils/toArgs.js.map +1 -0
  104. package/lib/utils/userop.d.ts +2 -2
  105. package/lib/utils/userop.js +25 -2
  106. package/lib/utils/userop.js.map +1 -1
  107. package/package.json +3 -2
@@ -369,14 +369,14 @@ declare const jsonRpcSchema: z.ZodObject<{
369
369
  method: z.ZodString;
370
370
  params: z.ZodEffects<z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>, unknown[], unknown[] | undefined>;
371
371
  }, "strict", z.ZodTypeAny, {
372
+ method: string;
372
373
  params: unknown[];
373
374
  jsonrpc: "2.0";
374
375
  id: number;
375
- method: string;
376
376
  }, {
377
+ method: string;
377
378
  jsonrpc: "2.0";
378
379
  id: number;
379
- method: string;
380
380
  params?: unknown[] | undefined;
381
381
  }>;
382
382
  declare const jsonRpcResultSchema: z.ZodObject<{
@@ -396,21 +396,21 @@ declare const chainIdRequestSchema: z.ZodObject<{
396
396
  method: z.ZodLiteral<"eth_chainId">;
397
397
  params: z.ZodTuple<[], null>;
398
398
  }, "strip", z.ZodTypeAny, {
399
- params: [];
400
399
  method: "eth_chainId";
401
- }, {
402
400
  params: [];
401
+ }, {
403
402
  method: "eth_chainId";
403
+ params: [];
404
404
  }>;
405
405
  declare const supportedEntryPointsRequestSchema: z.ZodObject<{
406
406
  method: z.ZodLiteral<"eth_supportedEntryPoints">;
407
407
  params: z.ZodTuple<[], null>;
408
408
  }, "strip", z.ZodTypeAny, {
409
- params: [];
410
409
  method: "eth_supportedEntryPoints";
411
- }, {
412
410
  params: [];
411
+ }, {
413
412
  method: "eth_supportedEntryPoints";
413
+ params: [];
414
414
  }>;
415
415
  declare const stateOverridesSchema: z.ZodRecord<z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodObject<{
416
416
  balance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>>;
@@ -734,6 +734,7 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
734
734
  stateDiff?: unknown;
735
735
  }>>], null>]>;
736
736
  }, "strip", z.ZodTypeAny, {
737
+ method: "eth_estimateUserOperationGas";
737
738
  params: [{
738
739
  sender: `0x${string}`;
739
740
  nonce: bigint;
@@ -797,8 +798,8 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
797
798
  state?: unknown;
798
799
  stateDiff?: unknown;
799
800
  }>>];
800
- method: "eth_estimateUserOperationGas";
801
801
  }, {
802
+ method: "eth_estimateUserOperationGas";
802
803
  params: [{
803
804
  sender: string;
804
805
  nonce: string | number | bigint;
@@ -862,7 +863,6 @@ declare const estimateUserOperationGasRequestSchema: z.ZodObject<{
862
863
  state?: unknown;
863
864
  stateDiff?: unknown;
864
865
  }>];
865
- method: "eth_estimateUserOperationGas";
866
866
  }>;
867
867
  declare const sendUserOperationRequestSchema: z.ZodObject<{
868
868
  method: z.ZodLiteral<"eth_sendUserOperation">;
@@ -1008,6 +1008,7 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
1008
1008
  paymasterData?: string | null | undefined;
1009
1009
  }>]>, z.ZodEffects<z.ZodString, `0x${string}`, string>], null>;
1010
1010
  }, "strip", z.ZodTypeAny, {
1011
+ method: "eth_sendUserOperation";
1011
1012
  params: [{
1012
1013
  sender: `0x${string}`;
1013
1014
  nonce: bigint;
@@ -1037,8 +1038,8 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
1037
1038
  factoryData: `0x${string}` | null;
1038
1039
  paymasterData: `0x${string}` | null;
1039
1040
  }, `0x${string}`];
1040
- method: "eth_sendUserOperation";
1041
1041
  }, {
1042
+ method: "eth_sendUserOperation";
1042
1043
  params: [{
1043
1044
  sender: string;
1044
1045
  nonce: string | number | bigint;
@@ -1068,77 +1069,76 @@ declare const sendUserOperationRequestSchema: z.ZodObject<{
1068
1069
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
1069
1070
  paymasterData?: string | null | undefined;
1070
1071
  }, string];
1071
- method: "eth_sendUserOperation";
1072
1072
  }>;
1073
1073
  declare const getUserOperationByHashRequestSchema: z.ZodObject<{
1074
1074
  method: z.ZodLiteral<"eth_getUserOperationByHash">;
1075
1075
  params: z.ZodTuple<[z.ZodEffects<z.ZodString, `0x${string}`, string>], null>;
1076
1076
  }, "strip", z.ZodTypeAny, {
1077
- params: [`0x${string}`];
1078
1077
  method: "eth_getUserOperationByHash";
1078
+ params: [`0x${string}`];
1079
1079
  }, {
1080
- params: [string];
1081
1080
  method: "eth_getUserOperationByHash";
1081
+ params: [string];
1082
1082
  }>;
1083
1083
  declare const getUserOperationReceiptRequestSchema: z.ZodObject<{
1084
1084
  method: z.ZodLiteral<"eth_getUserOperationReceipt">;
1085
1085
  params: z.ZodTuple<[z.ZodEffects<z.ZodString, `0x${string}`, string>], null>;
1086
1086
  }, "strip", z.ZodTypeAny, {
1087
- params: [`0x${string}`];
1088
1087
  method: "eth_getUserOperationReceipt";
1088
+ params: [`0x${string}`];
1089
1089
  }, {
1090
- params: [string];
1091
1090
  method: "eth_getUserOperationReceipt";
1091
+ params: [string];
1092
1092
  }>;
1093
1093
  declare const bundlerClearStateRequestSchema: z.ZodObject<{
1094
1094
  method: z.ZodLiteral<"debug_bundler_clearState">;
1095
1095
  params: z.ZodTuple<[], null>;
1096
1096
  }, "strip", z.ZodTypeAny, {
1097
- params: [];
1098
1097
  method: "debug_bundler_clearState";
1099
- }, {
1100
1098
  params: [];
1099
+ }, {
1101
1100
  method: "debug_bundler_clearState";
1101
+ params: [];
1102
1102
  }>;
1103
1103
  declare const bundlerClearMempoolRequestSchema: z.ZodObject<{
1104
1104
  method: z.ZodLiteral<"debug_bundler_clearMempool">;
1105
1105
  params: z.ZodTuple<[], null>;
1106
1106
  }, "strip", z.ZodTypeAny, {
1107
- params: [];
1108
1107
  method: "debug_bundler_clearMempool";
1109
- }, {
1110
1108
  params: [];
1109
+ }, {
1111
1110
  method: "debug_bundler_clearMempool";
1111
+ params: [];
1112
1112
  }>;
1113
1113
  declare const bundlerDumpMempoolRequestSchema: z.ZodObject<{
1114
1114
  method: z.ZodLiteral<"debug_bundler_dumpMempool">;
1115
1115
  params: z.ZodTuple<[z.ZodEffects<z.ZodString, `0x${string}`, string>], null>;
1116
1116
  }, "strip", z.ZodTypeAny, {
1117
- params: [`0x${string}`];
1118
1117
  method: "debug_bundler_dumpMempool";
1118
+ params: [`0x${string}`];
1119
1119
  }, {
1120
- params: [string];
1121
1120
  method: "debug_bundler_dumpMempool";
1121
+ params: [string];
1122
1122
  }>;
1123
1123
  declare const bundlerSendBundleNowRequestSchema: z.ZodObject<{
1124
1124
  method: z.ZodLiteral<"debug_bundler_sendBundleNow">;
1125
1125
  params: z.ZodTuple<[], null>;
1126
1126
  }, "strip", z.ZodTypeAny, {
1127
- params: [];
1128
1127
  method: "debug_bundler_sendBundleNow";
1129
- }, {
1130
1128
  params: [];
1129
+ }, {
1131
1130
  method: "debug_bundler_sendBundleNow";
1131
+ params: [];
1132
1132
  }>;
1133
1133
  declare const bundlerSetBundlingModeRequestSchema: z.ZodObject<{
1134
1134
  method: z.ZodLiteral<"debug_bundler_setBundlingMode">;
1135
1135
  params: z.ZodTuple<[z.ZodEnum<["manual", "auto"]>], null>;
1136
1136
  }, "strip", z.ZodTypeAny, {
1137
- params: ["manual" | "auto"];
1138
1137
  method: "debug_bundler_setBundlingMode";
1139
- }, {
1140
1138
  params: ["manual" | "auto"];
1139
+ }, {
1141
1140
  method: "debug_bundler_setBundlingMode";
1141
+ params: ["manual" | "auto"];
1142
1142
  }>;
1143
1143
  declare const bundlerSetReputationsRequestSchema: z.ZodObject<{
1144
1144
  method: z.ZodLiteral<"debug_bundler_setReputation">;
@@ -1156,59 +1156,59 @@ declare const bundlerSetReputationsRequestSchema: z.ZodObject<{
1156
1156
  opsIncluded: string | number | bigint;
1157
1157
  }>, "many">, z.ZodEffects<z.ZodString, `0x${string}`, string>], null>;
1158
1158
  }, "strip", z.ZodTypeAny, {
1159
+ method: "debug_bundler_setReputation";
1159
1160
  params: [{
1160
1161
  address: `0x${string}`;
1161
1162
  opsSeen: bigint;
1162
1163
  opsIncluded: bigint;
1163
1164
  }[], `0x${string}`];
1164
- method: "debug_bundler_setReputation";
1165
1165
  }, {
1166
+ method: "debug_bundler_setReputation";
1166
1167
  params: [{
1167
1168
  address: string;
1168
1169
  opsSeen: string | number | bigint;
1169
1170
  opsIncluded: string | number | bigint;
1170
1171
  }[], string];
1171
- method: "debug_bundler_setReputation";
1172
1172
  }>;
1173
1173
  declare const bundlerDumpReputationsRequestSchema: z.ZodObject<{
1174
1174
  method: z.ZodLiteral<"debug_bundler_dumpReputation">;
1175
1175
  params: z.ZodTuple<[z.ZodEffects<z.ZodString, `0x${string}`, string>], null>;
1176
1176
  }, "strip", z.ZodTypeAny, {
1177
- params: [`0x${string}`];
1178
1177
  method: "debug_bundler_dumpReputation";
1178
+ params: [`0x${string}`];
1179
1179
  }, {
1180
- params: [string];
1181
1180
  method: "debug_bundler_dumpReputation";
1181
+ params: [string];
1182
1182
  }>;
1183
1183
  declare const pimlicoGetStakeStatusRequestSchema: z.ZodObject<{
1184
1184
  method: z.ZodLiteral<"debug_bundler_getStakeStatus">;
1185
1185
  params: z.ZodTuple<[z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodEffects<z.ZodString, `0x${string}`, string>], null>;
1186
1186
  }, "strip", z.ZodTypeAny, {
1187
- params: [`0x${string}`, `0x${string}`];
1188
1187
  method: "debug_bundler_getStakeStatus";
1188
+ params: [`0x${string}`, `0x${string}`];
1189
1189
  }, {
1190
- params: [string, string];
1191
1190
  method: "debug_bundler_getStakeStatus";
1191
+ params: [string, string];
1192
1192
  }>;
1193
1193
  declare const pimlicoGetUserOperationStatusRequestSchema: z.ZodObject<{
1194
1194
  method: z.ZodLiteral<"pimlico_getUserOperationStatus">;
1195
1195
  params: z.ZodTuple<[z.ZodEffects<z.ZodString, `0x${string}`, string>], null>;
1196
1196
  }, "strip", z.ZodTypeAny, {
1197
- params: [`0x${string}`];
1198
1197
  method: "pimlico_getUserOperationStatus";
1198
+ params: [`0x${string}`];
1199
1199
  }, {
1200
- params: [string];
1201
1200
  method: "pimlico_getUserOperationStatus";
1201
+ params: [string];
1202
1202
  }>;
1203
1203
  declare const pimlicoGetUserOperationGasPriceRequestSchema: z.ZodObject<{
1204
1204
  method: z.ZodLiteral<"pimlico_getUserOperationGasPrice">;
1205
1205
  params: z.ZodTuple<[], null>;
1206
1206
  }, "strip", z.ZodTypeAny, {
1207
- params: [];
1208
1207
  method: "pimlico_getUserOperationGasPrice";
1209
- }, {
1210
1208
  params: [];
1209
+ }, {
1211
1210
  method: "pimlico_getUserOperationGasPrice";
1211
+ params: [];
1212
1212
  }>;
1213
1213
  export declare const altoVersions: z.ZodEnum<["v1", "v2"]>;
1214
1214
  export type AltoVersions = z.infer<typeof altoVersions>;
@@ -1216,20 +1216,20 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
1216
1216
  method: z.ZodLiteral<"eth_chainId">;
1217
1217
  params: z.ZodTuple<[], null>;
1218
1218
  }, "strip", z.ZodTypeAny, {
1219
- params: [];
1220
1219
  method: "eth_chainId";
1221
- }, {
1222
1220
  params: [];
1221
+ }, {
1223
1222
  method: "eth_chainId";
1223
+ params: [];
1224
1224
  }>, z.ZodObject<{
1225
1225
  method: z.ZodLiteral<"eth_supportedEntryPoints">;
1226
1226
  params: z.ZodTuple<[], null>;
1227
1227
  }, "strip", z.ZodTypeAny, {
1228
- params: [];
1229
1228
  method: "eth_supportedEntryPoints";
1230
- }, {
1231
1229
  params: [];
1230
+ }, {
1232
1231
  method: "eth_supportedEntryPoints";
1232
+ params: [];
1233
1233
  }>, z.ZodObject<{
1234
1234
  method: z.ZodLiteral<"eth_estimateUserOperationGas">;
1235
1235
  params: z.ZodUnion<[z.ZodTuple<[z.ZodUnion<[z.ZodEffects<z.ZodObject<{
@@ -1532,6 +1532,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
1532
1532
  stateDiff?: unknown;
1533
1533
  }>>], null>]>;
1534
1534
  }, "strip", z.ZodTypeAny, {
1535
+ method: "eth_estimateUserOperationGas";
1535
1536
  params: [{
1536
1537
  sender: `0x${string}`;
1537
1538
  nonce: bigint;
@@ -1595,8 +1596,8 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
1595
1596
  state?: unknown;
1596
1597
  stateDiff?: unknown;
1597
1598
  }>>];
1598
- method: "eth_estimateUserOperationGas";
1599
1599
  }, {
1600
+ method: "eth_estimateUserOperationGas";
1600
1601
  params: [{
1601
1602
  sender: string;
1602
1603
  nonce: string | number | bigint;
@@ -1660,7 +1661,6 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
1660
1661
  state?: unknown;
1661
1662
  stateDiff?: unknown;
1662
1663
  }>];
1663
- method: "eth_estimateUserOperationGas";
1664
1664
  }>, z.ZodObject<{
1665
1665
  method: z.ZodLiteral<"eth_sendUserOperation">;
1666
1666
  params: z.ZodTuple<[z.ZodUnion<[z.ZodEffects<z.ZodObject<{
@@ -1805,6 +1805,7 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
1805
1805
  paymasterData?: string | null | undefined;
1806
1806
  }>]>, z.ZodEffects<z.ZodString, `0x${string}`, string>], null>;
1807
1807
  }, "strip", z.ZodTypeAny, {
1808
+ method: "eth_sendUserOperation";
1808
1809
  params: [{
1809
1810
  sender: `0x${string}`;
1810
1811
  nonce: bigint;
@@ -1834,8 +1835,8 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
1834
1835
  factoryData: `0x${string}` | null;
1835
1836
  paymasterData: `0x${string}` | null;
1836
1837
  }, `0x${string}`];
1837
- method: "eth_sendUserOperation";
1838
1838
  }, {
1839
+ method: "eth_sendUserOperation";
1839
1840
  params: [{
1840
1841
  sender: string;
1841
1842
  nonce: string | number | bigint;
@@ -1865,70 +1866,69 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
1865
1866
  paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
1866
1867
  paymasterData?: string | null | undefined;
1867
1868
  }, string];
1868
- method: "eth_sendUserOperation";
1869
1869
  }>, z.ZodObject<{
1870
1870
  method: z.ZodLiteral<"eth_getUserOperationByHash">;
1871
1871
  params: z.ZodTuple<[z.ZodEffects<z.ZodString, `0x${string}`, string>], null>;
1872
1872
  }, "strip", z.ZodTypeAny, {
1873
- params: [`0x${string}`];
1874
1873
  method: "eth_getUserOperationByHash";
1874
+ params: [`0x${string}`];
1875
1875
  }, {
1876
- params: [string];
1877
1876
  method: "eth_getUserOperationByHash";
1877
+ params: [string];
1878
1878
  }>, z.ZodObject<{
1879
1879
  method: z.ZodLiteral<"eth_getUserOperationReceipt">;
1880
1880
  params: z.ZodTuple<[z.ZodEffects<z.ZodString, `0x${string}`, string>], null>;
1881
1881
  }, "strip", z.ZodTypeAny, {
1882
- params: [`0x${string}`];
1883
1882
  method: "eth_getUserOperationReceipt";
1883
+ params: [`0x${string}`];
1884
1884
  }, {
1885
- params: [string];
1886
1885
  method: "eth_getUserOperationReceipt";
1886
+ params: [string];
1887
1887
  }>, z.ZodObject<{
1888
1888
  method: z.ZodLiteral<"debug_bundler_clearState">;
1889
1889
  params: z.ZodTuple<[], null>;
1890
1890
  }, "strip", z.ZodTypeAny, {
1891
- params: [];
1892
1891
  method: "debug_bundler_clearState";
1893
- }, {
1894
1892
  params: [];
1893
+ }, {
1895
1894
  method: "debug_bundler_clearState";
1895
+ params: [];
1896
1896
  }>, z.ZodObject<{
1897
1897
  method: z.ZodLiteral<"debug_bundler_clearMempool">;
1898
1898
  params: z.ZodTuple<[], null>;
1899
1899
  }, "strip", z.ZodTypeAny, {
1900
- params: [];
1901
1900
  method: "debug_bundler_clearMempool";
1902
- }, {
1903
1901
  params: [];
1902
+ }, {
1904
1903
  method: "debug_bundler_clearMempool";
1904
+ params: [];
1905
1905
  }>, z.ZodObject<{
1906
1906
  method: z.ZodLiteral<"debug_bundler_dumpMempool">;
1907
1907
  params: z.ZodTuple<[z.ZodEffects<z.ZodString, `0x${string}`, string>], null>;
1908
1908
  }, "strip", z.ZodTypeAny, {
1909
- params: [`0x${string}`];
1910
1909
  method: "debug_bundler_dumpMempool";
1910
+ params: [`0x${string}`];
1911
1911
  }, {
1912
- params: [string];
1913
1912
  method: "debug_bundler_dumpMempool";
1913
+ params: [string];
1914
1914
  }>, z.ZodObject<{
1915
1915
  method: z.ZodLiteral<"debug_bundler_sendBundleNow">;
1916
1916
  params: z.ZodTuple<[], null>;
1917
1917
  }, "strip", z.ZodTypeAny, {
1918
- params: [];
1919
1918
  method: "debug_bundler_sendBundleNow";
1920
- }, {
1921
1919
  params: [];
1920
+ }, {
1922
1921
  method: "debug_bundler_sendBundleNow";
1922
+ params: [];
1923
1923
  }>, z.ZodObject<{
1924
1924
  method: z.ZodLiteral<"debug_bundler_setBundlingMode">;
1925
1925
  params: z.ZodTuple<[z.ZodEnum<["manual", "auto"]>], null>;
1926
1926
  }, "strip", z.ZodTypeAny, {
1927
- params: ["manual" | "auto"];
1928
1927
  method: "debug_bundler_setBundlingMode";
1929
- }, {
1930
1928
  params: ["manual" | "auto"];
1929
+ }, {
1931
1930
  method: "debug_bundler_setBundlingMode";
1931
+ params: ["manual" | "auto"];
1932
1932
  }>, z.ZodObject<{
1933
1933
  method: z.ZodLiteral<"debug_bundler_setReputation">;
1934
1934
  params: z.ZodTuple<[z.ZodArray<z.ZodObject<{
@@ -1945,64 +1945,64 @@ declare const bundlerRequestSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObje
1945
1945
  opsIncluded: string | number | bigint;
1946
1946
  }>, "many">, z.ZodEffects<z.ZodString, `0x${string}`, string>], null>;
1947
1947
  }, "strip", z.ZodTypeAny, {
1948
+ method: "debug_bundler_setReputation";
1948
1949
  params: [{
1949
1950
  address: `0x${string}`;
1950
1951
  opsSeen: bigint;
1951
1952
  opsIncluded: bigint;
1952
1953
  }[], `0x${string}`];
1953
- method: "debug_bundler_setReputation";
1954
1954
  }, {
1955
+ method: "debug_bundler_setReputation";
1955
1956
  params: [{
1956
1957
  address: string;
1957
1958
  opsSeen: string | number | bigint;
1958
1959
  opsIncluded: string | number | bigint;
1959
1960
  }[], string];
1960
- method: "debug_bundler_setReputation";
1961
1961
  }>, z.ZodObject<{
1962
1962
  method: z.ZodLiteral<"debug_bundler_dumpReputation">;
1963
1963
  params: z.ZodTuple<[z.ZodEffects<z.ZodString, `0x${string}`, string>], null>;
1964
1964
  }, "strip", z.ZodTypeAny, {
1965
- params: [`0x${string}`];
1966
1965
  method: "debug_bundler_dumpReputation";
1966
+ params: [`0x${string}`];
1967
1967
  }, {
1968
- params: [string];
1969
1968
  method: "debug_bundler_dumpReputation";
1969
+ params: [string];
1970
1970
  }>, z.ZodObject<{
1971
1971
  method: z.ZodLiteral<"debug_bundler_getStakeStatus">;
1972
1972
  params: z.ZodTuple<[z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodEffects<z.ZodString, `0x${string}`, string>], null>;
1973
1973
  }, "strip", z.ZodTypeAny, {
1974
- params: [`0x${string}`, `0x${string}`];
1975
1974
  method: "debug_bundler_getStakeStatus";
1975
+ params: [`0x${string}`, `0x${string}`];
1976
1976
  }, {
1977
- params: [string, string];
1978
1977
  method: "debug_bundler_getStakeStatus";
1978
+ params: [string, string];
1979
1979
  }>, z.ZodObject<{
1980
1980
  method: z.ZodLiteral<"pimlico_getUserOperationStatus">;
1981
1981
  params: z.ZodTuple<[z.ZodEffects<z.ZodString, `0x${string}`, string>], null>;
1982
1982
  }, "strip", z.ZodTypeAny, {
1983
- params: [`0x${string}`];
1984
1983
  method: "pimlico_getUserOperationStatus";
1984
+ params: [`0x${string}`];
1985
1985
  }, {
1986
- params: [string];
1987
1986
  method: "pimlico_getUserOperationStatus";
1987
+ params: [string];
1988
1988
  }>, z.ZodObject<{
1989
1989
  method: z.ZodLiteral<"pimlico_getUserOperationGasPrice">;
1990
1990
  params: z.ZodTuple<[], null>;
1991
1991
  }, "strip", z.ZodTypeAny, {
1992
- params: [];
1993
1992
  method: "pimlico_getUserOperationGasPrice";
1994
- }, {
1995
1993
  params: [];
1994
+ }, {
1996
1995
  method: "pimlico_getUserOperationGasPrice";
1996
+ params: [];
1997
1997
  }>, z.ZodObject<{
1998
1998
  method: z.ZodLiteral<"pimlico_sendCompressedUserOperation">;
1999
1999
  params: z.ZodTuple<[z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodEffects<z.ZodString, `0x${string}`, string>], null>;
2000
2000
  }, "strip", z.ZodTypeAny, {
2001
- params: [`0x${string}`, `0x${string}`, `0x${string}`];
2002
2001
  method: "pimlico_sendCompressedUserOperation";
2002
+ params: [`0x${string}`, `0x${string}`, `0x${string}`];
2003
2003
  }, {
2004
- params: [string, string, string];
2005
2004
  method: "pimlico_sendCompressedUserOperation";
2005
+ params: [string, string, string];
2006
2006
  }>]>;
2007
2007
  declare const chainIdResponseSchema: z.ZodObject<{
2008
2008
  method: z.ZodLiteral<"eth_chainId">;
@@ -2535,8 +2535,8 @@ declare const logSchema: z.ZodObject<{
2535
2535
  data: z.ZodEffects<z.ZodString, `0x${string}`, string>;
2536
2536
  topics: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
2537
2537
  }, "strip", z.ZodTypeAny, {
2538
- address: `0x${string}`;
2539
2538
  data: `0x${string}`;
2539
+ address: `0x${string}`;
2540
2540
  blockNumber: bigint;
2541
2541
  blockHash: `0x${string}`;
2542
2542
  transactionHash: `0x${string}`;
@@ -2544,8 +2544,8 @@ declare const logSchema: z.ZodObject<{
2544
2544
  transactionIndex: bigint;
2545
2545
  topics: `0x${string}`[];
2546
2546
  }, {
2547
- address: string;
2548
2547
  data: string;
2548
+ address: string;
2549
2549
  blockNumber: string | number | bigint;
2550
2550
  blockHash: string;
2551
2551
  transactionHash: string;
@@ -2573,8 +2573,8 @@ declare const receiptSchema: z.ZodObject<{
2573
2573
  data: z.ZodEffects<z.ZodString, `0x${string}`, string>;
2574
2574
  topics: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
2575
2575
  }, "strip", z.ZodTypeAny, {
2576
- address: `0x${string}`;
2577
2576
  data: `0x${string}`;
2577
+ address: `0x${string}`;
2578
2578
  blockNumber: bigint;
2579
2579
  blockHash: `0x${string}`;
2580
2580
  transactionHash: `0x${string}`;
@@ -2582,8 +2582,8 @@ declare const receiptSchema: z.ZodObject<{
2582
2582
  transactionIndex: bigint;
2583
2583
  topics: `0x${string}`[];
2584
2584
  }, {
2585
- address: string;
2586
2585
  data: string;
2586
+ address: string;
2587
2587
  blockNumber: string | number | bigint;
2588
2588
  blockHash: string;
2589
2589
  transactionHash: string;
@@ -2595,9 +2595,9 @@ declare const receiptSchema: z.ZodObject<{
2595
2595
  status: z.ZodUnion<[z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, z.ZodNull]>;
2596
2596
  effectiveGasPrice: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
2597
2597
  }, "strip", z.ZodTypeAny, {
2598
+ status: bigint | null;
2598
2599
  to: `0x${string}` | null;
2599
2600
  gasUsed: bigint;
2600
- status: bigint | null;
2601
2601
  blockNumber: bigint;
2602
2602
  blockHash: `0x${string}`;
2603
2603
  transactionHash: `0x${string}`;
@@ -2606,8 +2606,8 @@ declare const receiptSchema: z.ZodObject<{
2606
2606
  cumulativeGasUsed: bigint;
2607
2607
  contractAddress: `0x${string}` | null;
2608
2608
  logs: {
2609
- address: `0x${string}`;
2610
2609
  data: `0x${string}`;
2610
+ address: `0x${string}`;
2611
2611
  blockNumber: bigint;
2612
2612
  blockHash: `0x${string}`;
2613
2613
  transactionHash: `0x${string}`;
@@ -2618,9 +2618,9 @@ declare const receiptSchema: z.ZodObject<{
2618
2618
  logsBloom: string;
2619
2619
  effectiveGasPrice: bigint;
2620
2620
  }, {
2621
+ status: string | number | bigint | null;
2621
2622
  to: string | null;
2622
2623
  gasUsed: string | number | bigint;
2623
- status: string | number | bigint | null;
2624
2624
  blockNumber: string | number | bigint;
2625
2625
  blockHash: string;
2626
2626
  transactionHash: string;
@@ -2629,8 +2629,8 @@ declare const receiptSchema: z.ZodObject<{
2629
2629
  cumulativeGasUsed: string | number | bigint;
2630
2630
  contractAddress: string | null;
2631
2631
  logs: {
2632
- address: string;
2633
2632
  data: string;
2633
+ address: string;
2634
2634
  blockNumber: string | number | bigint;
2635
2635
  blockHash: string;
2636
2636
  transactionHash: string;
@@ -2663,8 +2663,8 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
2663
2663
  data: z.ZodEffects<z.ZodString, `0x${string}`, string>;
2664
2664
  topics: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
2665
2665
  }, "strip", z.ZodTypeAny, {
2666
- address: `0x${string}`;
2667
2666
  data: `0x${string}`;
2667
+ address: `0x${string}`;
2668
2668
  blockNumber: bigint;
2669
2669
  blockHash: `0x${string}`;
2670
2670
  transactionHash: `0x${string}`;
@@ -2672,8 +2672,8 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
2672
2672
  transactionIndex: bigint;
2673
2673
  topics: `0x${string}`[];
2674
2674
  }, {
2675
- address: string;
2676
2675
  data: string;
2676
+ address: string;
2677
2677
  blockNumber: string | number | bigint;
2678
2678
  blockHash: string;
2679
2679
  transactionHash: string;
@@ -2701,8 +2701,8 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
2701
2701
  data: z.ZodEffects<z.ZodString, `0x${string}`, string>;
2702
2702
  topics: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
2703
2703
  }, "strip", z.ZodTypeAny, {
2704
- address: `0x${string}`;
2705
2704
  data: `0x${string}`;
2705
+ address: `0x${string}`;
2706
2706
  blockNumber: bigint;
2707
2707
  blockHash: `0x${string}`;
2708
2708
  transactionHash: `0x${string}`;
@@ -2710,8 +2710,8 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
2710
2710
  transactionIndex: bigint;
2711
2711
  topics: `0x${string}`[];
2712
2712
  }, {
2713
- address: string;
2714
2713
  data: string;
2714
+ address: string;
2715
2715
  blockNumber: string | number | bigint;
2716
2716
  blockHash: string;
2717
2717
  transactionHash: string;
@@ -2723,9 +2723,9 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
2723
2723
  status: z.ZodUnion<[z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, z.ZodNull]>;
2724
2724
  effectiveGasPrice: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
2725
2725
  }, "strip", z.ZodTypeAny, {
2726
+ status: bigint | null;
2726
2727
  to: `0x${string}` | null;
2727
2728
  gasUsed: bigint;
2728
- status: bigint | null;
2729
2729
  blockNumber: bigint;
2730
2730
  blockHash: `0x${string}`;
2731
2731
  transactionHash: `0x${string}`;
@@ -2734,8 +2734,8 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
2734
2734
  cumulativeGasUsed: bigint;
2735
2735
  contractAddress: `0x${string}` | null;
2736
2736
  logs: {
2737
- address: `0x${string}`;
2738
2737
  data: `0x${string}`;
2738
+ address: `0x${string}`;
2739
2739
  blockNumber: bigint;
2740
2740
  blockHash: `0x${string}`;
2741
2741
  transactionHash: `0x${string}`;
@@ -2746,9 +2746,9 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
2746
2746
  logsBloom: string;
2747
2747
  effectiveGasPrice: bigint;
2748
2748
  }, {
2749
+ status: string | number | bigint | null;
2749
2750
  to: string | null;
2750
2751
  gasUsed: string | number | bigint;
2751
- status: string | number | bigint | null;
2752
2752
  blockNumber: string | number | bigint;
2753
2753
  blockHash: string;
2754
2754
  transactionHash: string;
@@ -2757,8 +2757,8 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
2757
2757
  cumulativeGasUsed: string | number | bigint;
2758
2758
  contractAddress: string | null;
2759
2759
  logs: {
2760
- address: string;
2761
2760
  data: string;
2761
+ address: string;
2762
2762
  blockNumber: string | number | bigint;
2763
2763
  blockHash: string;
2764
2764
  transactionHash: string;
@@ -2778,8 +2778,8 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
2778
2778
  actualGasUsed: bigint;
2779
2779
  entryPoint: `0x${string}`;
2780
2780
  logs: {
2781
- address: `0x${string}`;
2782
2781
  data: `0x${string}`;
2782
+ address: `0x${string}`;
2783
2783
  blockNumber: bigint;
2784
2784
  blockHash: `0x${string}`;
2785
2785
  transactionHash: `0x${string}`;
@@ -2788,9 +2788,9 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
2788
2788
  topics: `0x${string}`[];
2789
2789
  }[];
2790
2790
  receipt: {
2791
+ status: bigint | null;
2791
2792
  to: `0x${string}` | null;
2792
2793
  gasUsed: bigint;
2793
- status: bigint | null;
2794
2794
  blockNumber: bigint;
2795
2795
  blockHash: `0x${string}`;
2796
2796
  transactionHash: `0x${string}`;
@@ -2799,8 +2799,8 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
2799
2799
  cumulativeGasUsed: bigint;
2800
2800
  contractAddress: `0x${string}` | null;
2801
2801
  logs: {
2802
- address: `0x${string}`;
2803
2802
  data: `0x${string}`;
2803
+ address: `0x${string}`;
2804
2804
  blockNumber: bigint;
2805
2805
  blockHash: `0x${string}`;
2806
2806
  transactionHash: `0x${string}`;
@@ -2822,8 +2822,8 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
2822
2822
  actualGasUsed: string | number | bigint;
2823
2823
  entryPoint: string;
2824
2824
  logs: {
2825
- address: string;
2826
2825
  data: string;
2826
+ address: string;
2827
2827
  blockNumber: string | number | bigint;
2828
2828
  blockHash: string;
2829
2829
  transactionHash: string;
@@ -2832,9 +2832,9 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
2832
2832
  topics: string[];
2833
2833
  }[];
2834
2834
  receipt: {
2835
+ status: string | number | bigint | null;
2835
2836
  to: string | null;
2836
2837
  gasUsed: string | number | bigint;
2837
- status: string | number | bigint | null;
2838
2838
  blockNumber: string | number | bigint;
2839
2839
  blockHash: string;
2840
2840
  transactionHash: string;
@@ -2843,8 +2843,8 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
2843
2843
  cumulativeGasUsed: string | number | bigint;
2844
2844
  contractAddress: string | null;
2845
2845
  logs: {
2846
- address: string;
2847
2846
  data: string;
2847
+ address: string;
2848
2848
  blockNumber: string | number | bigint;
2849
2849
  blockHash: string;
2850
2850
  transactionHash: string;
@@ -2869,8 +2869,8 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
2869
2869
  actualGasUsed: bigint;
2870
2870
  entryPoint: `0x${string}`;
2871
2871
  logs: {
2872
- address: `0x${string}`;
2873
2872
  data: `0x${string}`;
2873
+ address: `0x${string}`;
2874
2874
  blockNumber: bigint;
2875
2875
  blockHash: `0x${string}`;
2876
2876
  transactionHash: `0x${string}`;
@@ -2879,9 +2879,9 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
2879
2879
  topics: `0x${string}`[];
2880
2880
  }[];
2881
2881
  receipt: {
2882
+ status: bigint | null;
2882
2883
  to: `0x${string}` | null;
2883
2884
  gasUsed: bigint;
2884
- status: bigint | null;
2885
2885
  blockNumber: bigint;
2886
2886
  blockHash: `0x${string}`;
2887
2887
  transactionHash: `0x${string}`;
@@ -2890,8 +2890,8 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
2890
2890
  cumulativeGasUsed: bigint;
2891
2891
  contractAddress: `0x${string}` | null;
2892
2892
  logs: {
2893
- address: `0x${string}`;
2894
2893
  data: `0x${string}`;
2894
+ address: `0x${string}`;
2895
2895
  blockNumber: bigint;
2896
2896
  blockHash: `0x${string}`;
2897
2897
  transactionHash: `0x${string}`;
@@ -2916,8 +2916,8 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
2916
2916
  actualGasUsed: string | number | bigint;
2917
2917
  entryPoint: string;
2918
2918
  logs: {
2919
- address: string;
2920
2919
  data: string;
2920
+ address: string;
2921
2921
  blockNumber: string | number | bigint;
2922
2922
  blockHash: string;
2923
2923
  transactionHash: string;
@@ -2926,9 +2926,9 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
2926
2926
  topics: string[];
2927
2927
  }[];
2928
2928
  receipt: {
2929
+ status: string | number | bigint | null;
2929
2930
  to: string | null;
2930
2931
  gasUsed: string | number | bigint;
2931
- status: string | number | bigint | null;
2932
2932
  blockNumber: string | number | bigint;
2933
2933
  blockHash: string;
2934
2934
  transactionHash: string;
@@ -2937,8 +2937,8 @@ declare const getUserOperationReceiptResponseSchema: z.ZodObject<{
2937
2937
  cumulativeGasUsed: string | number | bigint;
2938
2938
  contractAddress: string | null;
2939
2939
  logs: {
2940
- address: string;
2941
2940
  data: string;
2941
+ address: string;
2942
2942
  blockNumber: string | number | bigint;
2943
2943
  blockHash: string;
2944
2944
  transactionHash: string;
@@ -3964,8 +3964,8 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
3964
3964
  data: z.ZodEffects<z.ZodString, `0x${string}`, string>;
3965
3965
  topics: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
3966
3966
  }, "strip", z.ZodTypeAny, {
3967
- address: `0x${string}`;
3968
3967
  data: `0x${string}`;
3968
+ address: `0x${string}`;
3969
3969
  blockNumber: bigint;
3970
3970
  blockHash: `0x${string}`;
3971
3971
  transactionHash: `0x${string}`;
@@ -3973,8 +3973,8 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
3973
3973
  transactionIndex: bigint;
3974
3974
  topics: `0x${string}`[];
3975
3975
  }, {
3976
- address: string;
3977
3976
  data: string;
3977
+ address: string;
3978
3978
  blockNumber: string | number | bigint;
3979
3979
  blockHash: string;
3980
3980
  transactionHash: string;
@@ -4002,8 +4002,8 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
4002
4002
  data: z.ZodEffects<z.ZodString, `0x${string}`, string>;
4003
4003
  topics: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
4004
4004
  }, "strip", z.ZodTypeAny, {
4005
- address: `0x${string}`;
4006
4005
  data: `0x${string}`;
4006
+ address: `0x${string}`;
4007
4007
  blockNumber: bigint;
4008
4008
  blockHash: `0x${string}`;
4009
4009
  transactionHash: `0x${string}`;
@@ -4011,8 +4011,8 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
4011
4011
  transactionIndex: bigint;
4012
4012
  topics: `0x${string}`[];
4013
4013
  }, {
4014
- address: string;
4015
4014
  data: string;
4015
+ address: string;
4016
4016
  blockNumber: string | number | bigint;
4017
4017
  blockHash: string;
4018
4018
  transactionHash: string;
@@ -4024,9 +4024,9 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
4024
4024
  status: z.ZodUnion<[z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>, z.ZodNull]>;
4025
4025
  effectiveGasPrice: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBigInt]>, bigint, string | number | bigint>;
4026
4026
  }, "strip", z.ZodTypeAny, {
4027
+ status: bigint | null;
4027
4028
  to: `0x${string}` | null;
4028
4029
  gasUsed: bigint;
4029
- status: bigint | null;
4030
4030
  blockNumber: bigint;
4031
4031
  blockHash: `0x${string}`;
4032
4032
  transactionHash: `0x${string}`;
@@ -4035,8 +4035,8 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
4035
4035
  cumulativeGasUsed: bigint;
4036
4036
  contractAddress: `0x${string}` | null;
4037
4037
  logs: {
4038
- address: `0x${string}`;
4039
4038
  data: `0x${string}`;
4039
+ address: `0x${string}`;
4040
4040
  blockNumber: bigint;
4041
4041
  blockHash: `0x${string}`;
4042
4042
  transactionHash: `0x${string}`;
@@ -4047,9 +4047,9 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
4047
4047
  logsBloom: string;
4048
4048
  effectiveGasPrice: bigint;
4049
4049
  }, {
4050
+ status: string | number | bigint | null;
4050
4051
  to: string | null;
4051
4052
  gasUsed: string | number | bigint;
4052
- status: string | number | bigint | null;
4053
4053
  blockNumber: string | number | bigint;
4054
4054
  blockHash: string;
4055
4055
  transactionHash: string;
@@ -4058,8 +4058,8 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
4058
4058
  cumulativeGasUsed: string | number | bigint;
4059
4059
  contractAddress: string | null;
4060
4060
  logs: {
4061
- address: string;
4062
4061
  data: string;
4062
+ address: string;
4063
4063
  blockNumber: string | number | bigint;
4064
4064
  blockHash: string;
4065
4065
  transactionHash: string;
@@ -4079,8 +4079,8 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
4079
4079
  actualGasUsed: bigint;
4080
4080
  entryPoint: `0x${string}`;
4081
4081
  logs: {
4082
- address: `0x${string}`;
4083
4082
  data: `0x${string}`;
4083
+ address: `0x${string}`;
4084
4084
  blockNumber: bigint;
4085
4085
  blockHash: `0x${string}`;
4086
4086
  transactionHash: `0x${string}`;
@@ -4089,9 +4089,9 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
4089
4089
  topics: `0x${string}`[];
4090
4090
  }[];
4091
4091
  receipt: {
4092
+ status: bigint | null;
4092
4093
  to: `0x${string}` | null;
4093
4094
  gasUsed: bigint;
4094
- status: bigint | null;
4095
4095
  blockNumber: bigint;
4096
4096
  blockHash: `0x${string}`;
4097
4097
  transactionHash: `0x${string}`;
@@ -4100,8 +4100,8 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
4100
4100
  cumulativeGasUsed: bigint;
4101
4101
  contractAddress: `0x${string}` | null;
4102
4102
  logs: {
4103
- address: `0x${string}`;
4104
4103
  data: `0x${string}`;
4104
+ address: `0x${string}`;
4105
4105
  blockNumber: bigint;
4106
4106
  blockHash: `0x${string}`;
4107
4107
  transactionHash: `0x${string}`;
@@ -4123,8 +4123,8 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
4123
4123
  actualGasUsed: string | number | bigint;
4124
4124
  entryPoint: string;
4125
4125
  logs: {
4126
- address: string;
4127
4126
  data: string;
4127
+ address: string;
4128
4128
  blockNumber: string | number | bigint;
4129
4129
  blockHash: string;
4130
4130
  transactionHash: string;
@@ -4133,9 +4133,9 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
4133
4133
  topics: string[];
4134
4134
  }[];
4135
4135
  receipt: {
4136
+ status: string | number | bigint | null;
4136
4137
  to: string | null;
4137
4138
  gasUsed: string | number | bigint;
4138
- status: string | number | bigint | null;
4139
4139
  blockNumber: string | number | bigint;
4140
4140
  blockHash: string;
4141
4141
  transactionHash: string;
@@ -4144,8 +4144,8 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
4144
4144
  cumulativeGasUsed: string | number | bigint;
4145
4145
  contractAddress: string | null;
4146
4146
  logs: {
4147
- address: string;
4148
4147
  data: string;
4148
+ address: string;
4149
4149
  blockNumber: string | number | bigint;
4150
4150
  blockHash: string;
4151
4151
  transactionHash: string;
@@ -4170,8 +4170,8 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
4170
4170
  actualGasUsed: bigint;
4171
4171
  entryPoint: `0x${string}`;
4172
4172
  logs: {
4173
- address: `0x${string}`;
4174
4173
  data: `0x${string}`;
4174
+ address: `0x${string}`;
4175
4175
  blockNumber: bigint;
4176
4176
  blockHash: `0x${string}`;
4177
4177
  transactionHash: `0x${string}`;
@@ -4180,9 +4180,9 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
4180
4180
  topics: `0x${string}`[];
4181
4181
  }[];
4182
4182
  receipt: {
4183
+ status: bigint | null;
4183
4184
  to: `0x${string}` | null;
4184
4185
  gasUsed: bigint;
4185
- status: bigint | null;
4186
4186
  blockNumber: bigint;
4187
4187
  blockHash: `0x${string}`;
4188
4188
  transactionHash: `0x${string}`;
@@ -4191,8 +4191,8 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
4191
4191
  cumulativeGasUsed: bigint;
4192
4192
  contractAddress: `0x${string}` | null;
4193
4193
  logs: {
4194
- address: `0x${string}`;
4195
4194
  data: `0x${string}`;
4195
+ address: `0x${string}`;
4196
4196
  blockNumber: bigint;
4197
4197
  blockHash: `0x${string}`;
4198
4198
  transactionHash: `0x${string}`;
@@ -4217,8 +4217,8 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
4217
4217
  actualGasUsed: string | number | bigint;
4218
4218
  entryPoint: string;
4219
4219
  logs: {
4220
- address: string;
4221
4220
  data: string;
4221
+ address: string;
4222
4222
  blockNumber: string | number | bigint;
4223
4223
  blockHash: string;
4224
4224
  transactionHash: string;
@@ -4227,9 +4227,9 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
4227
4227
  topics: string[];
4228
4228
  }[];
4229
4229
  receipt: {
4230
+ status: string | number | bigint | null;
4230
4231
  to: string | null;
4231
4232
  gasUsed: string | number | bigint;
4232
- status: string | number | bigint | null;
4233
4233
  blockNumber: string | number | bigint;
4234
4234
  blockHash: string;
4235
4235
  transactionHash: string;
@@ -4238,8 +4238,8 @@ declare const bundlerResponseSchema: z.ZodDiscriminatedUnion<"method", [z.ZodObj
4238
4238
  cumulativeGasUsed: string | number | bigint;
4239
4239
  contractAddress: string | null;
4240
4240
  logs: {
4241
- address: string;
4242
4241
  data: string;
4242
+ address: string;
4243
4243
  blockNumber: string | number | bigint;
4244
4244
  blockHash: string;
4245
4245
  transactionHash: string;