@pimlico/alto 0.0.6 → 0.0.8

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 (292) hide show
  1. package/esm/cli/alto.js +3 -1
  2. package/esm/cli/alto.js.map +1 -1
  3. package/esm/cli/config/bundler.d.ts +348 -306
  4. package/esm/cli/config/bundler.js +26 -7
  5. package/esm/cli/config/bundler.js.map +1 -1
  6. package/esm/cli/config/options.d.ts +2 -1
  7. package/esm/cli/config/options.js +46 -8
  8. package/esm/cli/config/options.js.map +1 -1
  9. package/esm/cli/customTransport.js +40 -7
  10. package/esm/cli/customTransport.js.map +1 -1
  11. package/esm/cli/deploySimulationsContract.d.ts +8 -0
  12. package/esm/cli/deploySimulationsContract.js +26 -0
  13. package/esm/cli/deploySimulationsContract.js.map +1 -0
  14. package/esm/cli/handler.d.ts +2 -2
  15. package/esm/cli/handler.js +67 -89
  16. package/esm/cli/handler.js.map +1 -1
  17. package/esm/cli/instrumentation.js +4 -2
  18. package/esm/cli/instrumentation.js.map +1 -1
  19. package/esm/cli/parseArgs.d.ts +8 -0
  20. package/esm/cli/parseArgs.js +21 -0
  21. package/esm/cli/parseArgs.js.map +1 -0
  22. package/esm/cli/setupServer.d.ts +4 -9
  23. package/esm/cli/setupServer.js +98 -82
  24. package/esm/cli/setupServer.js.map +1 -1
  25. package/esm/createConfig.d.ts +15 -0
  26. package/esm/createConfig.js +8 -0
  27. package/esm/createConfig.js.map +1 -0
  28. package/esm/executor/executor.d.ts +29 -13
  29. package/esm/executor/executor.js +110 -72
  30. package/esm/executor/executor.js.map +1 -1
  31. package/esm/executor/executorManager.d.ts +14 -10
  32. package/esm/executor/executorManager.js +42 -42
  33. package/esm/executor/executorManager.js.map +1 -1
  34. package/esm/executor/senderManager.d.ts +11 -6
  35. package/esm/executor/senderManager.js +25 -32
  36. package/esm/executor/senderManager.js.map +1 -1
  37. package/esm/executor/utilityWalletMonitor.d.ts +9 -5
  38. package/esm/executor/utilityWalletMonitor.js +8 -8
  39. package/esm/executor/utilityWalletMonitor.js.map +1 -1
  40. package/esm/executor/utils.d.ts +2 -1
  41. package/esm/executor/utils.js +7 -2
  42. package/esm/executor/utils.js.map +1 -1
  43. package/esm/handlers/arbitrumGasPriceManager.d.ts +11 -0
  44. package/esm/handlers/arbitrumGasPriceManager.js +29 -0
  45. package/esm/handlers/arbitrumGasPriceManager.js.map +1 -0
  46. package/esm/handlers/eventManager.d.ts +7 -3
  47. package/esm/handlers/eventManager.js +24 -16
  48. package/esm/handlers/eventManager.js.map +1 -1
  49. package/esm/handlers/gasPriceManager.d.ts +14 -27
  50. package/esm/handlers/gasPriceManager.js +81 -135
  51. package/esm/handlers/gasPriceManager.js.map +1 -1
  52. package/esm/handlers/mantleGasPriceManager.d.ts +20 -0
  53. package/esm/handlers/mantleGasPriceManager.js +28 -0
  54. package/esm/handlers/mantleGasPriceManager.js.map +1 -0
  55. package/esm/mempool/mempool.d.ts +13 -10
  56. package/esm/mempool/mempool.js +29 -26
  57. package/esm/mempool/mempool.js.map +1 -1
  58. package/esm/mempool/reputationManager.d.ts +4 -6
  59. package/esm/mempool/reputationManager.js +25 -29
  60. package/esm/mempool/reputationManager.js.map +1 -1
  61. package/esm/mempool/store.d.ts +1 -1
  62. package/esm/rpc/estimation/gasEstimationHandler.d.ts +24 -0
  63. package/esm/rpc/estimation/gasEstimationHandler.js +48 -0
  64. package/esm/rpc/estimation/gasEstimationHandler.js.map +1 -0
  65. package/esm/rpc/estimation/gasEstimationsV06.d.ts +19 -0
  66. package/esm/rpc/estimation/gasEstimationsV06.js +146 -0
  67. package/esm/rpc/estimation/gasEstimationsV06.js.map +1 -0
  68. package/esm/rpc/estimation/gasEstimationsV07.d.ts +88 -0
  69. package/esm/rpc/estimation/gasEstimationsV07.js +429 -0
  70. package/esm/rpc/estimation/gasEstimationsV07.js.map +1 -0
  71. package/esm/rpc/estimation/types.d.ts +113 -0
  72. package/esm/rpc/estimation/types.js +122 -0
  73. package/esm/rpc/estimation/types.js.map +1 -0
  74. package/esm/rpc/nonceQueuer.d.ts +10 -6
  75. package/esm/rpc/nonceQueuer.js +10 -10
  76. package/esm/rpc/nonceQueuer.js.map +1 -1
  77. package/esm/rpc/rpcHandler.d.ts +19 -16
  78. package/esm/rpc/rpcHandler.js +83 -72
  79. package/esm/rpc/rpcHandler.js.map +1 -1
  80. package/esm/rpc/server.d.ts +9 -7
  81. package/esm/rpc/server.js +27 -26
  82. package/esm/rpc/server.js.map +1 -1
  83. package/esm/rpc/validation/SafeValidator.d.ts +11 -6
  84. package/esm/rpc/validation/SafeValidator.js +16 -14
  85. package/esm/rpc/validation/SafeValidator.js.map +1 -1
  86. package/esm/rpc/validation/TracerResultParserV06.d.ts +1 -1
  87. package/esm/rpc/validation/TracerResultParserV06.js.map +1 -1
  88. package/esm/rpc/validation/TracerResultParserV07.d.ts +1 -1
  89. package/esm/rpc/validation/TracerResultParserV07.js +1 -1
  90. package/esm/rpc/validation/TracerResultParserV07.js.map +1 -1
  91. package/esm/rpc/validation/UnsafeValidator.d.ts +14 -17
  92. package/esm/rpc/validation/UnsafeValidator.js +49 -42
  93. package/esm/rpc/validation/UnsafeValidator.js.map +1 -1
  94. package/esm/types/contracts/ArbitrumL1FeeAbi.d.ts +32 -0
  95. package/esm/types/contracts/ArbitrumL1FeeAbi.js +42 -0
  96. package/esm/types/contracts/ArbitrumL1FeeAbi.js.map +1 -0
  97. package/esm/types/contracts/EntryPointSimulationsV6.d.ts +34 -0
  98. package/esm/types/contracts/EntryPointSimulationsV6.js +48 -0
  99. package/esm/types/contracts/EntryPointSimulationsV6.js.map +1 -0
  100. package/esm/types/contracts/EntryPointSimulationsV7.d.ts +1370 -0
  101. package/esm/types/contracts/{EntryPointSimulations.js → EntryPointSimulationsV7.js} +197 -385
  102. package/esm/types/contracts/EntryPointSimulationsV7.js.map +1 -0
  103. package/esm/types/contracts/IAccountExecute.d.ts +53 -0
  104. package/esm/types/contracts/IAccountExecute.js +68 -0
  105. package/esm/types/contracts/IAccountExecute.js.map +1 -0
  106. package/esm/types/contracts/MantleBvmGasPriceOracle.d.ts +219 -0
  107. package/esm/types/contracts/MantleBvmGasPriceOracle.js +177 -0
  108. package/esm/types/contracts/MantleBvmGasPriceOracle.js.map +1 -0
  109. package/esm/types/contracts/OpL1FeeAbi.d.ts +26 -0
  110. package/esm/types/contracts/OpL1FeeAbi.js +29 -0
  111. package/esm/types/contracts/OpL1FeeAbi.js.map +1 -0
  112. package/esm/types/contracts/PimlicoEntryPointSimulations.d.ts +1 -1
  113. package/esm/types/contracts/PimlicoEntryPointSimulations.js +1 -1
  114. package/esm/types/contracts/PimlicoEntryPointSimulations.js.map +1 -1
  115. package/esm/types/contracts/index.d.ts +5 -1
  116. package/esm/types/contracts/index.js +5 -1
  117. package/esm/types/contracts/index.js.map +1 -1
  118. package/esm/types/interfaces.d.ts +2 -2
  119. package/esm/types/schemas.d.ts +94 -94
  120. package/esm/types/schemas.js +3 -3
  121. package/esm/types/schemas.js.map +1 -1
  122. package/esm/types/utils.d.ts +1 -1
  123. package/esm/utils/bigInt.js +2 -2
  124. package/esm/utils/bigInt.js.map +1 -1
  125. package/esm/utils/helpers.js +1 -1
  126. package/esm/utils/helpers.js.map +1 -1
  127. package/esm/utils/rpc-reply.d.ts +1 -1
  128. package/esm/utils/timedQueue.d.ts +12 -0
  129. package/esm/utils/timedQueue.js +51 -0
  130. package/esm/utils/timedQueue.js.map +1 -0
  131. package/esm/utils/userop.d.ts +2 -2
  132. package/esm/utils/userop.js +2 -2
  133. package/esm/utils/userop.js.map +1 -1
  134. package/esm/utils/validation.d.ts +14 -6
  135. package/esm/utils/validation.js +115 -132
  136. package/esm/utils/validation.js.map +1 -1
  137. package/lib/cli/alto.js +2 -0
  138. package/lib/cli/alto.js.map +1 -1
  139. package/lib/cli/config/bundler.d.ts +348 -306
  140. package/lib/cli/config/bundler.js +26 -7
  141. package/lib/cli/config/bundler.js.map +1 -1
  142. package/lib/cli/config/options.d.ts +2 -1
  143. package/lib/cli/config/options.js +47 -9
  144. package/lib/cli/config/options.js.map +1 -1
  145. package/lib/cli/customTransport.js +38 -5
  146. package/lib/cli/customTransport.js.map +1 -1
  147. package/lib/cli/deploySimulationsContract.d.ts +8 -0
  148. package/lib/cli/deploySimulationsContract.js +30 -0
  149. package/lib/cli/deploySimulationsContract.js.map +1 -0
  150. package/lib/cli/handler.d.ts +2 -2
  151. package/lib/cli/handler.js +66 -88
  152. package/lib/cli/handler.js.map +1 -1
  153. package/lib/cli/instrumentation.js +4 -2
  154. package/lib/cli/instrumentation.js.map +1 -1
  155. package/lib/cli/parseArgs.d.ts +8 -0
  156. package/lib/cli/parseArgs.js +25 -0
  157. package/lib/cli/parseArgs.js.map +1 -0
  158. package/lib/cli/setupServer.d.ts +4 -9
  159. package/lib/cli/setupServer.js +98 -82
  160. package/lib/cli/setupServer.js.map +1 -1
  161. package/lib/createConfig.d.ts +15 -0
  162. package/lib/createConfig.js +12 -0
  163. package/lib/createConfig.js.map +1 -0
  164. package/lib/executor/executor.d.ts +29 -13
  165. package/lib/executor/executor.js +106 -68
  166. package/lib/executor/executor.js.map +1 -1
  167. package/lib/executor/executorManager.d.ts +14 -10
  168. package/lib/executor/executorManager.js +40 -40
  169. package/lib/executor/executorManager.js.map +1 -1
  170. package/lib/executor/senderManager.d.ts +11 -6
  171. package/lib/executor/senderManager.js +25 -32
  172. package/lib/executor/senderManager.js.map +1 -1
  173. package/lib/executor/utilityWalletMonitor.d.ts +9 -5
  174. package/lib/executor/utilityWalletMonitor.js +8 -8
  175. package/lib/executor/utilityWalletMonitor.js.map +1 -1
  176. package/lib/executor/utils.d.ts +2 -1
  177. package/lib/executor/utils.js +9 -3
  178. package/lib/executor/utils.js.map +1 -1
  179. package/lib/handlers/arbitrumGasPriceManager.d.ts +11 -0
  180. package/lib/handlers/arbitrumGasPriceManager.js +33 -0
  181. package/lib/handlers/arbitrumGasPriceManager.js.map +1 -0
  182. package/lib/handlers/eventManager.d.ts +7 -3
  183. package/lib/handlers/eventManager.js +24 -16
  184. package/lib/handlers/eventManager.js.map +1 -1
  185. package/lib/handlers/gasPriceManager.d.ts +14 -27
  186. package/lib/handlers/gasPriceManager.js +80 -134
  187. package/lib/handlers/gasPriceManager.js.map +1 -1
  188. package/lib/handlers/mantleGasPriceManager.d.ts +20 -0
  189. package/lib/handlers/mantleGasPriceManager.js +32 -0
  190. package/lib/handlers/mantleGasPriceManager.js.map +1 -0
  191. package/lib/mempool/mempool.d.ts +13 -10
  192. package/lib/mempool/mempool.js +28 -25
  193. package/lib/mempool/mempool.js.map +1 -1
  194. package/lib/mempool/reputationManager.d.ts +4 -6
  195. package/lib/mempool/reputationManager.js +25 -29
  196. package/lib/mempool/reputationManager.js.map +1 -1
  197. package/lib/mempool/store.d.ts +1 -1
  198. package/lib/rpc/estimation/gasEstimationHandler.d.ts +24 -0
  199. package/lib/rpc/estimation/gasEstimationHandler.js +52 -0
  200. package/lib/rpc/estimation/gasEstimationHandler.js.map +1 -0
  201. package/lib/rpc/estimation/gasEstimationsV06.d.ts +19 -0
  202. package/lib/rpc/estimation/gasEstimationsV06.js +150 -0
  203. package/lib/rpc/estimation/gasEstimationsV06.js.map +1 -0
  204. package/lib/rpc/estimation/gasEstimationsV07.d.ts +88 -0
  205. package/lib/rpc/estimation/gasEstimationsV07.js +435 -0
  206. package/lib/rpc/estimation/gasEstimationsV07.js.map +1 -0
  207. package/lib/rpc/estimation/types.d.ts +113 -0
  208. package/lib/rpc/estimation/types.js +125 -0
  209. package/lib/rpc/estimation/types.js.map +1 -0
  210. package/lib/rpc/nonceQueuer.d.ts +10 -6
  211. package/lib/rpc/nonceQueuer.js +9 -9
  212. package/lib/rpc/nonceQueuer.js.map +1 -1
  213. package/lib/rpc/rpcHandler.d.ts +19 -16
  214. package/lib/rpc/rpcHandler.js +82 -71
  215. package/lib/rpc/rpcHandler.js.map +1 -1
  216. package/lib/rpc/server.d.ts +9 -7
  217. package/lib/rpc/server.js +26 -25
  218. package/lib/rpc/server.js.map +1 -1
  219. package/lib/rpc/validation/SafeValidator.d.ts +11 -6
  220. package/lib/rpc/validation/SafeValidator.js +16 -14
  221. package/lib/rpc/validation/SafeValidator.js.map +1 -1
  222. package/lib/rpc/validation/TracerResultParserV06.d.ts +1 -1
  223. package/lib/rpc/validation/TracerResultParserV07.d.ts +1 -1
  224. package/lib/rpc/validation/TracerResultParserV07.js +1 -1
  225. package/lib/rpc/validation/TracerResultParserV07.js.map +1 -1
  226. package/lib/rpc/validation/UnsafeValidator.d.ts +14 -17
  227. package/lib/rpc/validation/UnsafeValidator.js +49 -42
  228. package/lib/rpc/validation/UnsafeValidator.js.map +1 -1
  229. package/lib/types/contracts/ArbitrumL1FeeAbi.d.ts +32 -0
  230. package/lib/types/contracts/ArbitrumL1FeeAbi.js +45 -0
  231. package/lib/types/contracts/ArbitrumL1FeeAbi.js.map +1 -0
  232. package/lib/types/contracts/EntryPointSimulationsV6.d.ts +34 -0
  233. package/lib/types/contracts/EntryPointSimulationsV6.js +51 -0
  234. package/lib/types/contracts/EntryPointSimulationsV6.js.map +1 -0
  235. package/lib/types/contracts/EntryPointSimulationsV7.d.ts +1370 -0
  236. package/lib/types/contracts/{EntryPointSimulations.js → EntryPointSimulationsV7.js} +198 -386
  237. package/lib/types/contracts/EntryPointSimulationsV7.js.map +1 -0
  238. package/lib/types/contracts/IAccountExecute.d.ts +53 -0
  239. package/lib/types/contracts/IAccountExecute.js +71 -0
  240. package/lib/types/contracts/IAccountExecute.js.map +1 -0
  241. package/lib/types/contracts/MantleBvmGasPriceOracle.d.ts +219 -0
  242. package/lib/types/contracts/MantleBvmGasPriceOracle.js +180 -0
  243. package/lib/types/contracts/MantleBvmGasPriceOracle.js.map +1 -0
  244. package/lib/types/contracts/OpL1FeeAbi.d.ts +26 -0
  245. package/lib/types/contracts/OpL1FeeAbi.js +32 -0
  246. package/lib/types/contracts/OpL1FeeAbi.js.map +1 -0
  247. package/lib/types/contracts/PimlicoEntryPointSimulations.d.ts +1 -1
  248. package/lib/types/contracts/PimlicoEntryPointSimulations.js +1 -1
  249. package/lib/types/contracts/PimlicoEntryPointSimulations.js.map +1 -1
  250. package/lib/types/contracts/index.d.ts +5 -1
  251. package/lib/types/contracts/index.js +5 -1
  252. package/lib/types/contracts/index.js.map +1 -1
  253. package/lib/types/interfaces.d.ts +2 -2
  254. package/lib/types/schemas.d.ts +94 -94
  255. package/lib/types/schemas.js +3 -3
  256. package/lib/types/schemas.js.map +1 -1
  257. package/lib/types/utils.d.ts +1 -1
  258. package/lib/utils/bigInt.js +2 -2
  259. package/lib/utils/bigInt.js.map +1 -1
  260. package/lib/utils/rpc-reply.d.ts +1 -1
  261. package/lib/utils/timedQueue.d.ts +12 -0
  262. package/lib/utils/timedQueue.js +55 -0
  263. package/lib/utils/timedQueue.js.map +1 -0
  264. package/lib/utils/userop.d.ts +2 -2
  265. package/lib/utils/userop.js +1 -1
  266. package/lib/utils/userop.js.map +1 -1
  267. package/lib/utils/validation.d.ts +14 -6
  268. package/lib/utils/validation.js +118 -134
  269. package/lib/utils/validation.js.map +1 -1
  270. package/package.json +1 -1
  271. package/esm/rpc/EntryPointSimulationsV07.d.ts +0 -62
  272. package/esm/rpc/EntryPointSimulationsV07.js +0 -410
  273. package/esm/rpc/EntryPointSimulationsV07.js.map +0 -1
  274. package/esm/rpc/ExecuteSimulator.d.ts +0 -37
  275. package/esm/rpc/ExecuteSimulator.js +0 -48
  276. package/esm/rpc/ExecuteSimulator.js.map +0 -1
  277. package/esm/rpc/gasEstimation.d.ts +0 -17
  278. package/esm/rpc/gasEstimation.js +0 -419
  279. package/esm/rpc/gasEstimation.js.map +0 -1
  280. package/esm/types/contracts/EntryPointSimulations.d.ts +0 -152
  281. package/esm/types/contracts/EntryPointSimulations.js.map +0 -1
  282. package/lib/rpc/EntryPointSimulationsV07.d.ts +0 -62
  283. package/lib/rpc/EntryPointSimulationsV07.js +0 -417
  284. package/lib/rpc/EntryPointSimulationsV07.js.map +0 -1
  285. package/lib/rpc/ExecuteSimulator.d.ts +0 -37
  286. package/lib/rpc/ExecuteSimulator.js +0 -51
  287. package/lib/rpc/ExecuteSimulator.js.map +0 -1
  288. package/lib/rpc/gasEstimation.d.ts +0 -17
  289. package/lib/rpc/gasEstimation.js +0 -426
  290. package/lib/rpc/gasEstimation.js.map +0 -1
  291. package/lib/types/contracts/EntryPointSimulations.d.ts +0 -152
  292. package/lib/types/contracts/EntryPointSimulations.js.map +0 -1
@@ -3,6 +3,7 @@ import { z } from "zod";
3
3
  export declare const bundlerArgsSchema: z.ZodObject<{
4
4
  entrypoints: z.ZodEffects<z.ZodString, `0x${string}`[], string>;
5
5
  "entrypoint-simulation-contract": z.ZodEffects<z.ZodOptional<z.ZodEffects<z.ZodString, `0x${string}`, string>>, `0x${string}` | undefined, unknown>;
6
+ "refill-helper-contract": z.ZodOptional<z.ZodEffects<z.ZodString, `0x${string}`, string>>;
6
7
  "no-profit-bundling": z.ZodBoolean;
7
8
  "safe-mode": z.ZodBoolean;
8
9
  "utility-private-key": z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, {
@@ -33,6 +34,7 @@ export declare const bundlerArgsSchema: z.ZodObject<{
33
34
  [x: `uint192[${string}]`]: undefined;
34
35
  [x: `bytes4[${string}]`]: undefined;
35
36
  [x: `uint8[${string}]`]: undefined;
37
+ [x: `uint64[${string}]`]: undefined;
36
38
  [x: `bytes1[${string}]`]: undefined;
37
39
  [x: `bytes11[${string}]`]: undefined;
38
40
  [x: `bytes2[${string}]`]: undefined;
@@ -43,34 +45,32 @@ export declare const bundlerArgsSchema: z.ZodObject<{
43
45
  [x: `bytes8[${string}]`]: undefined;
44
46
  [x: `bytes9[${string}]`]: undefined;
45
47
  [x: `bytes10[${string}]`]: undefined;
46
- [x: `bytes18[${string}]`]: undefined;
47
- [x: `bytes12[${string}]`]: undefined;
48
- [x: `bytes14[${string}]`]: undefined;
49
- [x: `bytes16[${string}]`]: undefined;
50
48
  [x: `bytes20[${string}]`]: undefined;
51
- [x: `bytes25[${string}]`]: undefined;
52
- [x: `bytes30[${string}]`]: undefined;
49
+ [x: `bytes18[${string}]`]: undefined;
53
50
  [x: `bytes31[${string}]`]: undefined;
51
+ [x: `bytes30[${string}]`]: undefined;
54
52
  [x: `bytes29[${string}]`]: undefined;
55
53
  [x: `bytes28[${string}]`]: undefined;
56
54
  [x: `bytes27[${string}]`]: undefined;
57
55
  [x: `bytes26[${string}]`]: undefined;
56
+ [x: `bytes25[${string}]`]: undefined;
58
57
  [x: `bytes24[${string}]`]: undefined;
59
58
  [x: `bytes23[${string}]`]: undefined;
60
59
  [x: `bytes22[${string}]`]: undefined;
61
60
  [x: `bytes21[${string}]`]: undefined;
62
61
  [x: `bytes19[${string}]`]: undefined;
63
62
  [x: `bytes17[${string}]`]: undefined;
63
+ [x: `bytes16[${string}]`]: undefined;
64
64
  [x: `bytes15[${string}]`]: undefined;
65
+ [x: `bytes14[${string}]`]: undefined;
65
66
  [x: `bytes13[${string}]`]: undefined;
67
+ [x: `bytes12[${string}]`]: undefined;
66
68
  [x: `int[${string}]`]: undefined;
67
69
  [x: `int8[${string}]`]: undefined;
68
- [x: `int16[${string}]`]: undefined;
69
70
  [x: `int40[${string}]`]: undefined;
70
- [x: `int120[${string}]`]: undefined;
71
- [x: `int240[${string}]`]: undefined;
72
71
  [x: `int32[${string}]`]: undefined;
73
72
  [x: `int24[${string}]`]: undefined;
73
+ [x: `int16[${string}]`]: undefined;
74
74
  [x: `int48[${string}]`]: undefined;
75
75
  [x: `int56[${string}]`]: undefined;
76
76
  [x: `int64[${string}]`]: undefined;
@@ -80,6 +80,7 @@ export declare const bundlerArgsSchema: z.ZodObject<{
80
80
  [x: `int96[${string}]`]: undefined;
81
81
  [x: `int104[${string}]`]: undefined;
82
82
  [x: `int112[${string}]`]: undefined;
83
+ [x: `int120[${string}]`]: undefined;
83
84
  [x: `int128[${string}]`]: undefined;
84
85
  [x: `int136[${string}]`]: undefined;
85
86
  [x: `int144[${string}]`]: undefined;
@@ -94,21 +95,20 @@ export declare const bundlerArgsSchema: z.ZodObject<{
94
95
  [x: `int216[${string}]`]: undefined;
95
96
  [x: `int224[${string}]`]: undefined;
96
97
  [x: `int232[${string}]`]: undefined;
98
+ [x: `int240[${string}]`]: undefined;
97
99
  [x: `int248[${string}]`]: undefined;
98
100
  [x: `int256[${string}]`]: undefined;
99
101
  [x: `uint[${string}]`]: undefined;
100
- [x: `uint16[${string}]`]: undefined;
101
102
  [x: `uint40[${string}]`]: undefined;
102
- [x: `uint120[${string}]`]: undefined;
103
- [x: `uint240[${string}]`]: undefined;
104
103
  [x: `uint24[${string}]`]: undefined;
104
+ [x: `uint16[${string}]`]: undefined;
105
105
  [x: `uint56[${string}]`]: undefined;
106
- [x: `uint64[${string}]`]: undefined;
107
106
  [x: `uint72[${string}]`]: undefined;
108
107
  [x: `uint80[${string}]`]: undefined;
109
108
  [x: `uint88[${string}]`]: undefined;
110
109
  [x: `uint96[${string}]`]: undefined;
111
110
  [x: `uint104[${string}]`]: undefined;
111
+ [x: `uint120[${string}]`]: undefined;
112
112
  [x: `uint128[${string}]`]: undefined;
113
113
  [x: `uint136[${string}]`]: undefined;
114
114
  [x: `uint144[${string}]`]: undefined;
@@ -122,6 +122,7 @@ export declare const bundlerArgsSchema: z.ZodObject<{
122
122
  [x: `uint216[${string}]`]: undefined;
123
123
  [x: `uint224[${string}]`]: undefined;
124
124
  [x: `uint232[${string}]`]: undefined;
125
+ [x: `uint240[${string}]`]: undefined;
125
126
  [x: `uint248[${string}]`]: undefined;
126
127
  string?: undefined;
127
128
  address?: undefined;
@@ -135,6 +136,7 @@ export declare const bundlerArgsSchema: z.ZodObject<{
135
136
  uint192?: undefined;
136
137
  bytes4?: undefined;
137
138
  uint8?: undefined;
139
+ uint64?: undefined;
138
140
  bytes1?: undefined;
139
141
  bytes11?: undefined;
140
142
  bytes2?: undefined;
@@ -145,33 +147,31 @@ export declare const bundlerArgsSchema: z.ZodObject<{
145
147
  bytes8?: undefined;
146
148
  bytes9?: undefined;
147
149
  bytes10?: undefined;
148
- bytes18?: undefined;
149
- bytes12?: undefined;
150
- bytes14?: undefined;
151
- bytes16?: undefined;
152
150
  bytes20?: undefined;
153
- bytes25?: undefined;
154
- bytes30?: undefined;
151
+ bytes18?: undefined;
155
152
  bytes31?: undefined;
153
+ bytes30?: undefined;
156
154
  bytes29?: undefined;
157
155
  bytes28?: undefined;
158
156
  bytes27?: undefined;
159
157
  bytes26?: undefined;
158
+ bytes25?: undefined;
160
159
  bytes24?: undefined;
161
160
  bytes23?: undefined;
162
161
  bytes22?: undefined;
163
162
  bytes21?: undefined;
164
163
  bytes19?: undefined;
165
164
  bytes17?: undefined;
165
+ bytes16?: undefined;
166
166
  bytes15?: undefined;
167
+ bytes14?: undefined;
167
168
  bytes13?: undefined;
169
+ bytes12?: undefined;
168
170
  int8?: undefined;
169
- int16?: undefined;
170
171
  int40?: undefined;
171
- int120?: undefined;
172
- int240?: undefined;
173
172
  int32?: undefined;
174
173
  int24?: undefined;
174
+ int16?: undefined;
175
175
  int48?: undefined;
176
176
  int56?: undefined;
177
177
  int64?: undefined;
@@ -181,6 +181,7 @@ export declare const bundlerArgsSchema: z.ZodObject<{
181
181
  int96?: undefined;
182
182
  int104?: undefined;
183
183
  int112?: undefined;
184
+ int120?: undefined;
184
185
  int128?: undefined;
185
186
  int136?: undefined;
186
187
  int144?: undefined;
@@ -195,20 +196,19 @@ export declare const bundlerArgsSchema: z.ZodObject<{
195
196
  int216?: undefined;
196
197
  int224?: undefined;
197
198
  int232?: undefined;
199
+ int240?: undefined;
198
200
  int248?: undefined;
199
201
  int256?: undefined;
200
- uint16?: undefined;
201
202
  uint40?: undefined;
202
- uint120?: undefined;
203
- uint240?: undefined;
204
203
  uint24?: undefined;
204
+ uint16?: undefined;
205
205
  uint56?: undefined;
206
- uint64?: undefined;
207
206
  uint72?: undefined;
208
207
  uint80?: undefined;
209
208
  uint88?: undefined;
210
209
  uint96?: undefined;
211
210
  uint104?: undefined;
211
+ uint120?: undefined;
212
212
  uint128?: undefined;
213
213
  uint136?: undefined;
214
214
  uint144?: undefined;
@@ -222,6 +222,7 @@ export declare const bundlerArgsSchema: z.ZodObject<{
222
222
  uint216?: undefined;
223
223
  uint224?: undefined;
224
224
  uint232?: undefined;
225
+ uint240?: undefined;
225
226
  uint248?: undefined;
226
227
  }, primaryType extends "EIP712Domain" | keyof typedData = keyof typedData>(parameters: import("viem").TypedDataDefinition<typedData, primaryType>) => Promise<`0x${string}`>;
227
228
  publicKey: `0x${string}`;
@@ -258,6 +259,7 @@ export declare const bundlerArgsSchema: z.ZodObject<{
258
259
  [x: `uint192[${string}]`]: undefined;
259
260
  [x: `bytes4[${string}]`]: undefined;
260
261
  [x: `uint8[${string}]`]: undefined;
262
+ [x: `uint64[${string}]`]: undefined;
261
263
  [x: `bytes1[${string}]`]: undefined;
262
264
  [x: `bytes11[${string}]`]: undefined;
263
265
  [x: `bytes2[${string}]`]: undefined;
@@ -268,34 +270,32 @@ export declare const bundlerArgsSchema: z.ZodObject<{
268
270
  [x: `bytes8[${string}]`]: undefined;
269
271
  [x: `bytes9[${string}]`]: undefined;
270
272
  [x: `bytes10[${string}]`]: undefined;
271
- [x: `bytes18[${string}]`]: undefined;
272
- [x: `bytes12[${string}]`]: undefined;
273
- [x: `bytes14[${string}]`]: undefined;
274
- [x: `bytes16[${string}]`]: undefined;
275
273
  [x: `bytes20[${string}]`]: undefined;
276
- [x: `bytes25[${string}]`]: undefined;
277
- [x: `bytes30[${string}]`]: undefined;
274
+ [x: `bytes18[${string}]`]: undefined;
278
275
  [x: `bytes31[${string}]`]: undefined;
276
+ [x: `bytes30[${string}]`]: undefined;
279
277
  [x: `bytes29[${string}]`]: undefined;
280
278
  [x: `bytes28[${string}]`]: undefined;
281
279
  [x: `bytes27[${string}]`]: undefined;
282
280
  [x: `bytes26[${string}]`]: undefined;
281
+ [x: `bytes25[${string}]`]: undefined;
283
282
  [x: `bytes24[${string}]`]: undefined;
284
283
  [x: `bytes23[${string}]`]: undefined;
285
284
  [x: `bytes22[${string}]`]: undefined;
286
285
  [x: `bytes21[${string}]`]: undefined;
287
286
  [x: `bytes19[${string}]`]: undefined;
288
287
  [x: `bytes17[${string}]`]: undefined;
288
+ [x: `bytes16[${string}]`]: undefined;
289
289
  [x: `bytes15[${string}]`]: undefined;
290
+ [x: `bytes14[${string}]`]: undefined;
290
291
  [x: `bytes13[${string}]`]: undefined;
292
+ [x: `bytes12[${string}]`]: undefined;
291
293
  [x: `int[${string}]`]: undefined;
292
294
  [x: `int8[${string}]`]: undefined;
293
- [x: `int16[${string}]`]: undefined;
294
295
  [x: `int40[${string}]`]: undefined;
295
- [x: `int120[${string}]`]: undefined;
296
- [x: `int240[${string}]`]: undefined;
297
296
  [x: `int32[${string}]`]: undefined;
298
297
  [x: `int24[${string}]`]: undefined;
298
+ [x: `int16[${string}]`]: undefined;
299
299
  [x: `int48[${string}]`]: undefined;
300
300
  [x: `int56[${string}]`]: undefined;
301
301
  [x: `int64[${string}]`]: undefined;
@@ -305,6 +305,7 @@ export declare const bundlerArgsSchema: z.ZodObject<{
305
305
  [x: `int96[${string}]`]: undefined;
306
306
  [x: `int104[${string}]`]: undefined;
307
307
  [x: `int112[${string}]`]: undefined;
308
+ [x: `int120[${string}]`]: undefined;
308
309
  [x: `int128[${string}]`]: undefined;
309
310
  [x: `int136[${string}]`]: undefined;
310
311
  [x: `int144[${string}]`]: undefined;
@@ -319,21 +320,20 @@ export declare const bundlerArgsSchema: z.ZodObject<{
319
320
  [x: `int216[${string}]`]: undefined;
320
321
  [x: `int224[${string}]`]: undefined;
321
322
  [x: `int232[${string}]`]: undefined;
323
+ [x: `int240[${string}]`]: undefined;
322
324
  [x: `int248[${string}]`]: undefined;
323
325
  [x: `int256[${string}]`]: undefined;
324
326
  [x: `uint[${string}]`]: undefined;
325
- [x: `uint16[${string}]`]: undefined;
326
327
  [x: `uint40[${string}]`]: undefined;
327
- [x: `uint120[${string}]`]: undefined;
328
- [x: `uint240[${string}]`]: undefined;
329
328
  [x: `uint24[${string}]`]: undefined;
329
+ [x: `uint16[${string}]`]: undefined;
330
330
  [x: `uint56[${string}]`]: undefined;
331
- [x: `uint64[${string}]`]: undefined;
332
331
  [x: `uint72[${string}]`]: undefined;
333
332
  [x: `uint80[${string}]`]: undefined;
334
333
  [x: `uint88[${string}]`]: undefined;
335
334
  [x: `uint96[${string}]`]: undefined;
336
335
  [x: `uint104[${string}]`]: undefined;
336
+ [x: `uint120[${string}]`]: undefined;
337
337
  [x: `uint128[${string}]`]: undefined;
338
338
  [x: `uint136[${string}]`]: undefined;
339
339
  [x: `uint144[${string}]`]: undefined;
@@ -347,6 +347,7 @@ export declare const bundlerArgsSchema: z.ZodObject<{
347
347
  [x: `uint216[${string}]`]: undefined;
348
348
  [x: `uint224[${string}]`]: undefined;
349
349
  [x: `uint232[${string}]`]: undefined;
350
+ [x: `uint240[${string}]`]: undefined;
350
351
  [x: `uint248[${string}]`]: undefined;
351
352
  string?: undefined;
352
353
  address?: undefined;
@@ -360,6 +361,7 @@ export declare const bundlerArgsSchema: z.ZodObject<{
360
361
  uint192?: undefined;
361
362
  bytes4?: undefined;
362
363
  uint8?: undefined;
364
+ uint64?: undefined;
363
365
  bytes1?: undefined;
364
366
  bytes11?: undefined;
365
367
  bytes2?: undefined;
@@ -370,33 +372,31 @@ export declare const bundlerArgsSchema: z.ZodObject<{
370
372
  bytes8?: undefined;
371
373
  bytes9?: undefined;
372
374
  bytes10?: undefined;
373
- bytes18?: undefined;
374
- bytes12?: undefined;
375
- bytes14?: undefined;
376
- bytes16?: undefined;
377
375
  bytes20?: undefined;
378
- bytes25?: undefined;
379
- bytes30?: undefined;
376
+ bytes18?: undefined;
380
377
  bytes31?: undefined;
378
+ bytes30?: undefined;
381
379
  bytes29?: undefined;
382
380
  bytes28?: undefined;
383
381
  bytes27?: undefined;
384
382
  bytes26?: undefined;
383
+ bytes25?: undefined;
385
384
  bytes24?: undefined;
386
385
  bytes23?: undefined;
387
386
  bytes22?: undefined;
388
387
  bytes21?: undefined;
389
388
  bytes19?: undefined;
390
389
  bytes17?: undefined;
390
+ bytes16?: undefined;
391
391
  bytes15?: undefined;
392
+ bytes14?: undefined;
392
393
  bytes13?: undefined;
394
+ bytes12?: undefined;
393
395
  int8?: undefined;
394
- int16?: undefined;
395
396
  int40?: undefined;
396
- int120?: undefined;
397
- int240?: undefined;
398
397
  int32?: undefined;
399
398
  int24?: undefined;
399
+ int16?: undefined;
400
400
  int48?: undefined;
401
401
  int56?: undefined;
402
402
  int64?: undefined;
@@ -406,6 +406,7 @@ export declare const bundlerArgsSchema: z.ZodObject<{
406
406
  int96?: undefined;
407
407
  int104?: undefined;
408
408
  int112?: undefined;
409
+ int120?: undefined;
409
410
  int128?: undefined;
410
411
  int136?: undefined;
411
412
  int144?: undefined;
@@ -420,20 +421,19 @@ export declare const bundlerArgsSchema: z.ZodObject<{
420
421
  int216?: undefined;
421
422
  int224?: undefined;
422
423
  int232?: undefined;
424
+ int240?: undefined;
423
425
  int248?: undefined;
424
426
  int256?: undefined;
425
- uint16?: undefined;
426
427
  uint40?: undefined;
427
- uint120?: undefined;
428
- uint240?: undefined;
429
428
  uint24?: undefined;
429
+ uint16?: undefined;
430
430
  uint56?: undefined;
431
- uint64?: undefined;
432
431
  uint72?: undefined;
433
432
  uint80?: undefined;
434
433
  uint88?: undefined;
435
434
  uint96?: undefined;
436
435
  uint104?: undefined;
436
+ uint120?: undefined;
437
437
  uint128?: undefined;
438
438
  uint136?: undefined;
439
439
  uint144?: undefined;
@@ -447,6 +447,7 @@ export declare const bundlerArgsSchema: z.ZodObject<{
447
447
  uint216?: undefined;
448
448
  uint224?: undefined;
449
449
  uint232?: undefined;
450
+ uint240?: undefined;
450
451
  uint248?: undefined;
451
452
  }, primaryType extends "EIP712Domain" | keyof typedData = keyof typedData>(parameters: import("viem").TypedDataDefinition<typedData, primaryType>) => Promise<`0x${string}`>;
452
453
  publicKey: `0x${string}`;
@@ -480,6 +481,7 @@ export declare const bundlerArgsSchema: z.ZodObject<{
480
481
  [x: `uint192[${string}]`]: undefined;
481
482
  [x: `bytes4[${string}]`]: undefined;
482
483
  [x: `uint8[${string}]`]: undefined;
484
+ [x: `uint64[${string}]`]: undefined;
483
485
  [x: `bytes1[${string}]`]: undefined;
484
486
  [x: `bytes11[${string}]`]: undefined;
485
487
  [x: `bytes2[${string}]`]: undefined;
@@ -490,34 +492,32 @@ export declare const bundlerArgsSchema: z.ZodObject<{
490
492
  [x: `bytes8[${string}]`]: undefined;
491
493
  [x: `bytes9[${string}]`]: undefined;
492
494
  [x: `bytes10[${string}]`]: undefined;
493
- [x: `bytes18[${string}]`]: undefined;
494
- [x: `bytes12[${string}]`]: undefined;
495
- [x: `bytes14[${string}]`]: undefined;
496
- [x: `bytes16[${string}]`]: undefined;
497
495
  [x: `bytes20[${string}]`]: undefined;
498
- [x: `bytes25[${string}]`]: undefined;
499
- [x: `bytes30[${string}]`]: undefined;
496
+ [x: `bytes18[${string}]`]: undefined;
500
497
  [x: `bytes31[${string}]`]: undefined;
498
+ [x: `bytes30[${string}]`]: undefined;
501
499
  [x: `bytes29[${string}]`]: undefined;
502
500
  [x: `bytes28[${string}]`]: undefined;
503
501
  [x: `bytes27[${string}]`]: undefined;
504
502
  [x: `bytes26[${string}]`]: undefined;
503
+ [x: `bytes25[${string}]`]: undefined;
505
504
  [x: `bytes24[${string}]`]: undefined;
506
505
  [x: `bytes23[${string}]`]: undefined;
507
506
  [x: `bytes22[${string}]`]: undefined;
508
507
  [x: `bytes21[${string}]`]: undefined;
509
508
  [x: `bytes19[${string}]`]: undefined;
510
509
  [x: `bytes17[${string}]`]: undefined;
510
+ [x: `bytes16[${string}]`]: undefined;
511
511
  [x: `bytes15[${string}]`]: undefined;
512
+ [x: `bytes14[${string}]`]: undefined;
512
513
  [x: `bytes13[${string}]`]: undefined;
514
+ [x: `bytes12[${string}]`]: undefined;
513
515
  [x: `int[${string}]`]: undefined;
514
516
  [x: `int8[${string}]`]: undefined;
515
- [x: `int16[${string}]`]: undefined;
516
517
  [x: `int40[${string}]`]: undefined;
517
- [x: `int120[${string}]`]: undefined;
518
- [x: `int240[${string}]`]: undefined;
519
518
  [x: `int32[${string}]`]: undefined;
520
519
  [x: `int24[${string}]`]: undefined;
520
+ [x: `int16[${string}]`]: undefined;
521
521
  [x: `int48[${string}]`]: undefined;
522
522
  [x: `int56[${string}]`]: undefined;
523
523
  [x: `int64[${string}]`]: undefined;
@@ -527,6 +527,7 @@ export declare const bundlerArgsSchema: z.ZodObject<{
527
527
  [x: `int96[${string}]`]: undefined;
528
528
  [x: `int104[${string}]`]: undefined;
529
529
  [x: `int112[${string}]`]: undefined;
530
+ [x: `int120[${string}]`]: undefined;
530
531
  [x: `int128[${string}]`]: undefined;
531
532
  [x: `int136[${string}]`]: undefined;
532
533
  [x: `int144[${string}]`]: undefined;
@@ -541,21 +542,20 @@ export declare const bundlerArgsSchema: z.ZodObject<{
541
542
  [x: `int216[${string}]`]: undefined;
542
543
  [x: `int224[${string}]`]: undefined;
543
544
  [x: `int232[${string}]`]: undefined;
545
+ [x: `int240[${string}]`]: undefined;
544
546
  [x: `int248[${string}]`]: undefined;
545
547
  [x: `int256[${string}]`]: undefined;
546
548
  [x: `uint[${string}]`]: undefined;
547
- [x: `uint16[${string}]`]: undefined;
548
549
  [x: `uint40[${string}]`]: undefined;
549
- [x: `uint120[${string}]`]: undefined;
550
- [x: `uint240[${string}]`]: undefined;
551
550
  [x: `uint24[${string}]`]: undefined;
551
+ [x: `uint16[${string}]`]: undefined;
552
552
  [x: `uint56[${string}]`]: undefined;
553
- [x: `uint64[${string}]`]: undefined;
554
553
  [x: `uint72[${string}]`]: undefined;
555
554
  [x: `uint80[${string}]`]: undefined;
556
555
  [x: `uint88[${string}]`]: undefined;
557
556
  [x: `uint96[${string}]`]: undefined;
558
557
  [x: `uint104[${string}]`]: undefined;
558
+ [x: `uint120[${string}]`]: undefined;
559
559
  [x: `uint128[${string}]`]: undefined;
560
560
  [x: `uint136[${string}]`]: undefined;
561
561
  [x: `uint144[${string}]`]: undefined;
@@ -569,6 +569,7 @@ export declare const bundlerArgsSchema: z.ZodObject<{
569
569
  [x: `uint216[${string}]`]: undefined;
570
570
  [x: `uint224[${string}]`]: undefined;
571
571
  [x: `uint232[${string}]`]: undefined;
572
+ [x: `uint240[${string}]`]: undefined;
572
573
  [x: `uint248[${string}]`]: undefined;
573
574
  string?: undefined;
574
575
  address?: undefined;
@@ -582,6 +583,7 @@ export declare const bundlerArgsSchema: z.ZodObject<{
582
583
  uint192?: undefined;
583
584
  bytes4?: undefined;
584
585
  uint8?: undefined;
586
+ uint64?: undefined;
585
587
  bytes1?: undefined;
586
588
  bytes11?: undefined;
587
589
  bytes2?: undefined;
@@ -592,33 +594,31 @@ export declare const bundlerArgsSchema: z.ZodObject<{
592
594
  bytes8?: undefined;
593
595
  bytes9?: undefined;
594
596
  bytes10?: undefined;
595
- bytes18?: undefined;
596
- bytes12?: undefined;
597
- bytes14?: undefined;
598
- bytes16?: undefined;
599
597
  bytes20?: undefined;
600
- bytes25?: undefined;
601
- bytes30?: undefined;
598
+ bytes18?: undefined;
602
599
  bytes31?: undefined;
600
+ bytes30?: undefined;
603
601
  bytes29?: undefined;
604
602
  bytes28?: undefined;
605
603
  bytes27?: undefined;
606
604
  bytes26?: undefined;
605
+ bytes25?: undefined;
607
606
  bytes24?: undefined;
608
607
  bytes23?: undefined;
609
608
  bytes22?: undefined;
610
609
  bytes21?: undefined;
611
610
  bytes19?: undefined;
612
611
  bytes17?: undefined;
612
+ bytes16?: undefined;
613
613
  bytes15?: undefined;
614
+ bytes14?: undefined;
614
615
  bytes13?: undefined;
616
+ bytes12?: undefined;
615
617
  int8?: undefined;
616
- int16?: undefined;
617
618
  int40?: undefined;
618
- int120?: undefined;
619
- int240?: undefined;
620
619
  int32?: undefined;
621
620
  int24?: undefined;
621
+ int16?: undefined;
622
622
  int48?: undefined;
623
623
  int56?: undefined;
624
624
  int64?: undefined;
@@ -628,6 +628,7 @@ export declare const bundlerArgsSchema: z.ZodObject<{
628
628
  int96?: undefined;
629
629
  int104?: undefined;
630
630
  int112?: undefined;
631
+ int120?: undefined;
631
632
  int128?: undefined;
632
633
  int136?: undefined;
633
634
  int144?: undefined;
@@ -642,20 +643,19 @@ export declare const bundlerArgsSchema: z.ZodObject<{
642
643
  int216?: undefined;
643
644
  int224?: undefined;
644
645
  int232?: undefined;
646
+ int240?: undefined;
645
647
  int248?: undefined;
646
648
  int256?: undefined;
647
- uint16?: undefined;
648
649
  uint40?: undefined;
649
- uint120?: undefined;
650
- uint240?: undefined;
651
650
  uint24?: undefined;
651
+ uint16?: undefined;
652
652
  uint56?: undefined;
653
- uint64?: undefined;
654
653
  uint72?: undefined;
655
654
  uint80?: undefined;
656
655
  uint88?: undefined;
657
656
  uint96?: undefined;
658
657
  uint104?: undefined;
658
+ uint120?: undefined;
659
659
  uint128?: undefined;
660
660
  uint136?: undefined;
661
661
  uint144?: undefined;
@@ -669,6 +669,7 @@ export declare const bundlerArgsSchema: z.ZodObject<{
669
669
  uint216?: undefined;
670
670
  uint224?: undefined;
671
671
  uint232?: undefined;
672
+ uint240?: undefined;
672
673
  uint248?: undefined;
673
674
  }, primaryType extends "EIP712Domain" | keyof typedData = keyof typedData>(parameters: import("viem").TypedDataDefinition<typedData, primaryType>) => Promise<`0x${string}`>;
674
675
  publicKey: `0x${string}`;
@@ -733,6 +734,7 @@ export declare const bundlerArgsSchema: z.ZodObject<{
733
734
  [x: `uint192[${string}]`]: undefined;
734
735
  [x: `bytes4[${string}]`]: undefined;
735
736
  [x: `uint8[${string}]`]: undefined;
737
+ [x: `uint64[${string}]`]: undefined;
736
738
  [x: `bytes1[${string}]`]: undefined;
737
739
  [x: `bytes11[${string}]`]: undefined;
738
740
  [x: `bytes2[${string}]`]: undefined;
@@ -743,34 +745,32 @@ export declare const bundlerArgsSchema: z.ZodObject<{
743
745
  [x: `bytes8[${string}]`]: undefined;
744
746
  [x: `bytes9[${string}]`]: undefined;
745
747
  [x: `bytes10[${string}]`]: undefined;
746
- [x: `bytes18[${string}]`]: undefined;
747
- [x: `bytes12[${string}]`]: undefined;
748
- [x: `bytes14[${string}]`]: undefined;
749
- [x: `bytes16[${string}]`]: undefined;
750
748
  [x: `bytes20[${string}]`]: undefined;
751
- [x: `bytes25[${string}]`]: undefined;
752
- [x: `bytes30[${string}]`]: undefined;
749
+ [x: `bytes18[${string}]`]: undefined;
753
750
  [x: `bytes31[${string}]`]: undefined;
751
+ [x: `bytes30[${string}]`]: undefined;
754
752
  [x: `bytes29[${string}]`]: undefined;
755
753
  [x: `bytes28[${string}]`]: undefined;
756
754
  [x: `bytes27[${string}]`]: undefined;
757
755
  [x: `bytes26[${string}]`]: undefined;
756
+ [x: `bytes25[${string}]`]: undefined;
758
757
  [x: `bytes24[${string}]`]: undefined;
759
758
  [x: `bytes23[${string}]`]: undefined;
760
759
  [x: `bytes22[${string}]`]: undefined;
761
760
  [x: `bytes21[${string}]`]: undefined;
762
761
  [x: `bytes19[${string}]`]: undefined;
763
762
  [x: `bytes17[${string}]`]: undefined;
763
+ [x: `bytes16[${string}]`]: undefined;
764
764
  [x: `bytes15[${string}]`]: undefined;
765
+ [x: `bytes14[${string}]`]: undefined;
765
766
  [x: `bytes13[${string}]`]: undefined;
767
+ [x: `bytes12[${string}]`]: undefined;
766
768
  [x: `int[${string}]`]: undefined;
767
769
  [x: `int8[${string}]`]: undefined;
768
- [x: `int16[${string}]`]: undefined;
769
770
  [x: `int40[${string}]`]: undefined;
770
- [x: `int120[${string}]`]: undefined;
771
- [x: `int240[${string}]`]: undefined;
772
771
  [x: `int32[${string}]`]: undefined;
773
772
  [x: `int24[${string}]`]: undefined;
773
+ [x: `int16[${string}]`]: undefined;
774
774
  [x: `int48[${string}]`]: undefined;
775
775
  [x: `int56[${string}]`]: undefined;
776
776
  [x: `int64[${string}]`]: undefined;
@@ -780,6 +780,7 @@ export declare const bundlerArgsSchema: z.ZodObject<{
780
780
  [x: `int96[${string}]`]: undefined;
781
781
  [x: `int104[${string}]`]: undefined;
782
782
  [x: `int112[${string}]`]: undefined;
783
+ [x: `int120[${string}]`]: undefined;
783
784
  [x: `int128[${string}]`]: undefined;
784
785
  [x: `int136[${string}]`]: undefined;
785
786
  [x: `int144[${string}]`]: undefined;
@@ -794,21 +795,20 @@ export declare const bundlerArgsSchema: z.ZodObject<{
794
795
  [x: `int216[${string}]`]: undefined;
795
796
  [x: `int224[${string}]`]: undefined;
796
797
  [x: `int232[${string}]`]: undefined;
798
+ [x: `int240[${string}]`]: undefined;
797
799
  [x: `int248[${string}]`]: undefined;
798
800
  [x: `int256[${string}]`]: undefined;
799
801
  [x: `uint[${string}]`]: undefined;
800
- [x: `uint16[${string}]`]: undefined;
801
802
  [x: `uint40[${string}]`]: undefined;
802
- [x: `uint120[${string}]`]: undefined;
803
- [x: `uint240[${string}]`]: undefined;
804
803
  [x: `uint24[${string}]`]: undefined;
804
+ [x: `uint16[${string}]`]: undefined;
805
805
  [x: `uint56[${string}]`]: undefined;
806
- [x: `uint64[${string}]`]: undefined;
807
806
  [x: `uint72[${string}]`]: undefined;
808
807
  [x: `uint80[${string}]`]: undefined;
809
808
  [x: `uint88[${string}]`]: undefined;
810
809
  [x: `uint96[${string}]`]: undefined;
811
810
  [x: `uint104[${string}]`]: undefined;
811
+ [x: `uint120[${string}]`]: undefined;
812
812
  [x: `uint128[${string}]`]: undefined;
813
813
  [x: `uint136[${string}]`]: undefined;
814
814
  [x: `uint144[${string}]`]: undefined;
@@ -822,6 +822,7 @@ export declare const bundlerArgsSchema: z.ZodObject<{
822
822
  [x: `uint216[${string}]`]: undefined;
823
823
  [x: `uint224[${string}]`]: undefined;
824
824
  [x: `uint232[${string}]`]: undefined;
825
+ [x: `uint240[${string}]`]: undefined;
825
826
  [x: `uint248[${string}]`]: undefined;
826
827
  string?: undefined;
827
828
  address?: undefined;
@@ -835,6 +836,7 @@ export declare const bundlerArgsSchema: z.ZodObject<{
835
836
  uint192?: undefined;
836
837
  bytes4?: undefined;
837
838
  uint8?: undefined;
839
+ uint64?: undefined;
838
840
  bytes1?: undefined;
839
841
  bytes11?: undefined;
840
842
  bytes2?: undefined;
@@ -845,33 +847,31 @@ export declare const bundlerArgsSchema: z.ZodObject<{
845
847
  bytes8?: undefined;
846
848
  bytes9?: undefined;
847
849
  bytes10?: undefined;
848
- bytes18?: undefined;
849
- bytes12?: undefined;
850
- bytes14?: undefined;
851
- bytes16?: undefined;
852
850
  bytes20?: undefined;
853
- bytes25?: undefined;
854
- bytes30?: undefined;
851
+ bytes18?: undefined;
855
852
  bytes31?: undefined;
853
+ bytes30?: undefined;
856
854
  bytes29?: undefined;
857
855
  bytes28?: undefined;
858
856
  bytes27?: undefined;
859
857
  bytes26?: undefined;
858
+ bytes25?: undefined;
860
859
  bytes24?: undefined;
861
860
  bytes23?: undefined;
862
861
  bytes22?: undefined;
863
862
  bytes21?: undefined;
864
863
  bytes19?: undefined;
865
864
  bytes17?: undefined;
865
+ bytes16?: undefined;
866
866
  bytes15?: undefined;
867
+ bytes14?: undefined;
867
868
  bytes13?: undefined;
869
+ bytes12?: undefined;
868
870
  int8?: undefined;
869
- int16?: undefined;
870
871
  int40?: undefined;
871
- int120?: undefined;
872
- int240?: undefined;
873
872
  int32?: undefined;
874
873
  int24?: undefined;
874
+ int16?: undefined;
875
875
  int48?: undefined;
876
876
  int56?: undefined;
877
877
  int64?: undefined;
@@ -881,6 +881,7 @@ export declare const bundlerArgsSchema: z.ZodObject<{
881
881
  int96?: undefined;
882
882
  int104?: undefined;
883
883
  int112?: undefined;
884
+ int120?: undefined;
884
885
  int128?: undefined;
885
886
  int136?: undefined;
886
887
  int144?: undefined;
@@ -895,20 +896,19 @@ export declare const bundlerArgsSchema: z.ZodObject<{
895
896
  int216?: undefined;
896
897
  int224?: undefined;
897
898
  int232?: undefined;
899
+ int240?: undefined;
898
900
  int248?: undefined;
899
901
  int256?: undefined;
900
- uint16?: undefined;
901
902
  uint40?: undefined;
902
- uint120?: undefined;
903
- uint240?: undefined;
904
903
  uint24?: undefined;
904
+ uint16?: undefined;
905
905
  uint56?: undefined;
906
- uint64?: undefined;
907
906
  uint72?: undefined;
908
907
  uint80?: undefined;
909
908
  uint88?: undefined;
910
909
  uint96?: undefined;
911
910
  uint104?: undefined;
911
+ uint120?: undefined;
912
912
  uint128?: undefined;
913
913
  uint136?: undefined;
914
914
  uint144?: undefined;
@@ -922,6 +922,7 @@ export declare const bundlerArgsSchema: z.ZodObject<{
922
922
  uint216?: undefined;
923
923
  uint224?: undefined;
924
924
  uint232?: undefined;
925
+ uint240?: undefined;
925
926
  uint248?: undefined;
926
927
  }, primaryType extends "EIP712Domain" | keyof typedData = keyof typedData>(parameters: import("viem").TypedDataDefinition<typedData, primaryType>) => Promise<`0x${string}`>;
927
928
  publicKey: `0x${string}`;
@@ -951,6 +952,7 @@ export declare const bundlerArgsSchema: z.ZodObject<{
951
952
  "aa95-gas-multiplier": bigint;
952
953
  "enable-instant-bundling-endpoint": boolean;
953
954
  "entrypoint-simulation-contract"?: `0x${string}` | undefined;
955
+ "refill-helper-contract"?: `0x${string}` | undefined;
954
956
  "utility-private-key"?: {
955
957
  address: `0x${string}`;
956
958
  nonceManager?: import("viem").NonceManager | undefined;
@@ -979,6 +981,7 @@ export declare const bundlerArgsSchema: z.ZodObject<{
979
981
  [x: `uint192[${string}]`]: undefined;
980
982
  [x: `bytes4[${string}]`]: undefined;
981
983
  [x: `uint8[${string}]`]: undefined;
984
+ [x: `uint64[${string}]`]: undefined;
982
985
  [x: `bytes1[${string}]`]: undefined;
983
986
  [x: `bytes11[${string}]`]: undefined;
984
987
  [x: `bytes2[${string}]`]: undefined;
@@ -989,34 +992,32 @@ export declare const bundlerArgsSchema: z.ZodObject<{
989
992
  [x: `bytes8[${string}]`]: undefined;
990
993
  [x: `bytes9[${string}]`]: undefined;
991
994
  [x: `bytes10[${string}]`]: undefined;
992
- [x: `bytes18[${string}]`]: undefined;
993
- [x: `bytes12[${string}]`]: undefined;
994
- [x: `bytes14[${string}]`]: undefined;
995
- [x: `bytes16[${string}]`]: undefined;
996
995
  [x: `bytes20[${string}]`]: undefined;
997
- [x: `bytes25[${string}]`]: undefined;
998
- [x: `bytes30[${string}]`]: undefined;
996
+ [x: `bytes18[${string}]`]: undefined;
999
997
  [x: `bytes31[${string}]`]: undefined;
998
+ [x: `bytes30[${string}]`]: undefined;
1000
999
  [x: `bytes29[${string}]`]: undefined;
1001
1000
  [x: `bytes28[${string}]`]: undefined;
1002
1001
  [x: `bytes27[${string}]`]: undefined;
1003
1002
  [x: `bytes26[${string}]`]: undefined;
1003
+ [x: `bytes25[${string}]`]: undefined;
1004
1004
  [x: `bytes24[${string}]`]: undefined;
1005
1005
  [x: `bytes23[${string}]`]: undefined;
1006
1006
  [x: `bytes22[${string}]`]: undefined;
1007
1007
  [x: `bytes21[${string}]`]: undefined;
1008
1008
  [x: `bytes19[${string}]`]: undefined;
1009
1009
  [x: `bytes17[${string}]`]: undefined;
1010
+ [x: `bytes16[${string}]`]: undefined;
1010
1011
  [x: `bytes15[${string}]`]: undefined;
1012
+ [x: `bytes14[${string}]`]: undefined;
1011
1013
  [x: `bytes13[${string}]`]: undefined;
1014
+ [x: `bytes12[${string}]`]: undefined;
1012
1015
  [x: `int[${string}]`]: undefined;
1013
1016
  [x: `int8[${string}]`]: undefined;
1014
- [x: `int16[${string}]`]: undefined;
1015
1017
  [x: `int40[${string}]`]: undefined;
1016
- [x: `int120[${string}]`]: undefined;
1017
- [x: `int240[${string}]`]: undefined;
1018
1018
  [x: `int32[${string}]`]: undefined;
1019
1019
  [x: `int24[${string}]`]: undefined;
1020
+ [x: `int16[${string}]`]: undefined;
1020
1021
  [x: `int48[${string}]`]: undefined;
1021
1022
  [x: `int56[${string}]`]: undefined;
1022
1023
  [x: `int64[${string}]`]: undefined;
@@ -1026,6 +1027,7 @@ export declare const bundlerArgsSchema: z.ZodObject<{
1026
1027
  [x: `int96[${string}]`]: undefined;
1027
1028
  [x: `int104[${string}]`]: undefined;
1028
1029
  [x: `int112[${string}]`]: undefined;
1030
+ [x: `int120[${string}]`]: undefined;
1029
1031
  [x: `int128[${string}]`]: undefined;
1030
1032
  [x: `int136[${string}]`]: undefined;
1031
1033
  [x: `int144[${string}]`]: undefined;
@@ -1040,21 +1042,20 @@ export declare const bundlerArgsSchema: z.ZodObject<{
1040
1042
  [x: `int216[${string}]`]: undefined;
1041
1043
  [x: `int224[${string}]`]: undefined;
1042
1044
  [x: `int232[${string}]`]: undefined;
1045
+ [x: `int240[${string}]`]: undefined;
1043
1046
  [x: `int248[${string}]`]: undefined;
1044
1047
  [x: `int256[${string}]`]: undefined;
1045
1048
  [x: `uint[${string}]`]: undefined;
1046
- [x: `uint16[${string}]`]: undefined;
1047
1049
  [x: `uint40[${string}]`]: undefined;
1048
- [x: `uint120[${string}]`]: undefined;
1049
- [x: `uint240[${string}]`]: undefined;
1050
1050
  [x: `uint24[${string}]`]: undefined;
1051
+ [x: `uint16[${string}]`]: undefined;
1051
1052
  [x: `uint56[${string}]`]: undefined;
1052
- [x: `uint64[${string}]`]: undefined;
1053
1053
  [x: `uint72[${string}]`]: undefined;
1054
1054
  [x: `uint80[${string}]`]: undefined;
1055
1055
  [x: `uint88[${string}]`]: undefined;
1056
1056
  [x: `uint96[${string}]`]: undefined;
1057
1057
  [x: `uint104[${string}]`]: undefined;
1058
+ [x: `uint120[${string}]`]: undefined;
1058
1059
  [x: `uint128[${string}]`]: undefined;
1059
1060
  [x: `uint136[${string}]`]: undefined;
1060
1061
  [x: `uint144[${string}]`]: undefined;
@@ -1068,6 +1069,7 @@ export declare const bundlerArgsSchema: z.ZodObject<{
1068
1069
  [x: `uint216[${string}]`]: undefined;
1069
1070
  [x: `uint224[${string}]`]: undefined;
1070
1071
  [x: `uint232[${string}]`]: undefined;
1072
+ [x: `uint240[${string}]`]: undefined;
1071
1073
  [x: `uint248[${string}]`]: undefined;
1072
1074
  string?: undefined;
1073
1075
  address?: undefined;
@@ -1081,6 +1083,7 @@ export declare const bundlerArgsSchema: z.ZodObject<{
1081
1083
  uint192?: undefined;
1082
1084
  bytes4?: undefined;
1083
1085
  uint8?: undefined;
1086
+ uint64?: undefined;
1084
1087
  bytes1?: undefined;
1085
1088
  bytes11?: undefined;
1086
1089
  bytes2?: undefined;
@@ -1091,33 +1094,31 @@ export declare const bundlerArgsSchema: z.ZodObject<{
1091
1094
  bytes8?: undefined;
1092
1095
  bytes9?: undefined;
1093
1096
  bytes10?: undefined;
1094
- bytes18?: undefined;
1095
- bytes12?: undefined;
1096
- bytes14?: undefined;
1097
- bytes16?: undefined;
1098
1097
  bytes20?: undefined;
1099
- bytes25?: undefined;
1100
- bytes30?: undefined;
1098
+ bytes18?: undefined;
1101
1099
  bytes31?: undefined;
1100
+ bytes30?: undefined;
1102
1101
  bytes29?: undefined;
1103
1102
  bytes28?: undefined;
1104
1103
  bytes27?: undefined;
1105
1104
  bytes26?: undefined;
1105
+ bytes25?: undefined;
1106
1106
  bytes24?: undefined;
1107
1107
  bytes23?: undefined;
1108
1108
  bytes22?: undefined;
1109
1109
  bytes21?: undefined;
1110
1110
  bytes19?: undefined;
1111
1111
  bytes17?: undefined;
1112
+ bytes16?: undefined;
1112
1113
  bytes15?: undefined;
1114
+ bytes14?: undefined;
1113
1115
  bytes13?: undefined;
1116
+ bytes12?: undefined;
1114
1117
  int8?: undefined;
1115
- int16?: undefined;
1116
1118
  int40?: undefined;
1117
- int120?: undefined;
1118
- int240?: undefined;
1119
1119
  int32?: undefined;
1120
1120
  int24?: undefined;
1121
+ int16?: undefined;
1121
1122
  int48?: undefined;
1122
1123
  int56?: undefined;
1123
1124
  int64?: undefined;
@@ -1127,6 +1128,7 @@ export declare const bundlerArgsSchema: z.ZodObject<{
1127
1128
  int96?: undefined;
1128
1129
  int104?: undefined;
1129
1130
  int112?: undefined;
1131
+ int120?: undefined;
1130
1132
  int128?: undefined;
1131
1133
  int136?: undefined;
1132
1134
  int144?: undefined;
@@ -1141,20 +1143,19 @@ export declare const bundlerArgsSchema: z.ZodObject<{
1141
1143
  int216?: undefined;
1142
1144
  int224?: undefined;
1143
1145
  int232?: undefined;
1146
+ int240?: undefined;
1144
1147
  int248?: undefined;
1145
1148
  int256?: undefined;
1146
- uint16?: undefined;
1147
1149
  uint40?: undefined;
1148
- uint120?: undefined;
1149
- uint240?: undefined;
1150
1150
  uint24?: undefined;
1151
+ uint16?: undefined;
1151
1152
  uint56?: undefined;
1152
- uint64?: undefined;
1153
1153
  uint72?: undefined;
1154
1154
  uint80?: undefined;
1155
1155
  uint88?: undefined;
1156
1156
  uint96?: undefined;
1157
1157
  uint104?: undefined;
1158
+ uint120?: undefined;
1158
1159
  uint128?: undefined;
1159
1160
  uint136?: undefined;
1160
1161
  uint144?: undefined;
@@ -1168,6 +1169,7 @@ export declare const bundlerArgsSchema: z.ZodObject<{
1168
1169
  uint216?: undefined;
1169
1170
  uint224?: undefined;
1170
1171
  uint232?: undefined;
1172
+ uint240?: undefined;
1171
1173
  uint248?: undefined;
1172
1174
  }, primaryType extends "EIP712Domain" | keyof typedData = keyof typedData>(parameters: import("viem").TypedDataDefinition<typedData, primaryType>) => Promise<`0x${string}`>;
1173
1175
  publicKey: `0x${string}`;
@@ -1196,6 +1198,7 @@ export declare const bundlerArgsSchema: z.ZodObject<{
1196
1198
  "aa95-gas-multiplier": string;
1197
1199
  "enable-instant-bundling-endpoint": boolean;
1198
1200
  "entrypoint-simulation-contract"?: unknown;
1201
+ "refill-helper-contract"?: string | undefined;
1199
1202
  "utility-private-key"?: string | undefined;
1200
1203
  "max-executors"?: number | undefined;
1201
1204
  "min-executor-balance"?: string | undefined;
@@ -1207,32 +1210,29 @@ export declare const bundlerArgsSchema: z.ZodObject<{
1207
1210
  "refilling-wallets"?: boolean | undefined;
1208
1211
  }>;
1209
1212
  export declare const compatibilityArgsSchema: z.ZodObject<{
1210
- "chain-type": z.ZodEnum<["default", "op-stack", "arbitrum", "hedera"]>;
1213
+ "chain-type": z.ZodEnum<["default", "op-stack", "arbitrum", "hedera", "mantle"]>;
1211
1214
  "legacy-transactions": z.ZodBoolean;
1212
1215
  "api-version": z.ZodEffects<z.ZodDefault<z.ZodOptional<z.ZodString>>, ApiVersion[], string | undefined>;
1213
1216
  "default-api-version": z.ZodEffects<z.ZodOptional<z.ZodEnum<["v1", "v2"]>>, "v1" | "v2", "v1" | "v2" | undefined>;
1214
1217
  "balance-override": z.ZodBoolean;
1215
1218
  "local-gas-limit-calculation": z.ZodBoolean;
1216
1219
  "flush-stuck-transactions-during-startup": z.ZodBoolean;
1217
- "paymaster-gas-limit-multiplier": z.ZodEffects<z.ZodString, bigint, string>;
1218
1220
  "fixed-gas-limit-for-estimation": z.ZodOptional<z.ZodEffects<z.ZodString, bigint, string>>;
1219
1221
  }, "strip", z.ZodTypeAny, {
1220
- "chain-type": "default" | "op-stack" | "arbitrum" | "hedera";
1222
+ "chain-type": "default" | "op-stack" | "arbitrum" | "hedera" | "mantle";
1221
1223
  "legacy-transactions": boolean;
1222
1224
  "api-version": ApiVersion[];
1223
1225
  "default-api-version": "v1" | "v2";
1224
1226
  "balance-override": boolean;
1225
1227
  "local-gas-limit-calculation": boolean;
1226
1228
  "flush-stuck-transactions-during-startup": boolean;
1227
- "paymaster-gas-limit-multiplier": bigint;
1228
1229
  "fixed-gas-limit-for-estimation"?: bigint | undefined;
1229
1230
  }, {
1230
- "chain-type": "default" | "op-stack" | "arbitrum" | "hedera";
1231
+ "chain-type": "default" | "op-stack" | "arbitrum" | "hedera" | "mantle";
1231
1232
  "legacy-transactions": boolean;
1232
1233
  "balance-override": boolean;
1233
1234
  "local-gas-limit-calculation": boolean;
1234
1235
  "flush-stuck-transactions-during-startup": boolean;
1235
- "paymaster-gas-limit-multiplier": string;
1236
1236
  "api-version"?: string | undefined;
1237
1237
  "default-api-version"?: "v1" | "v2" | undefined;
1238
1238
  "fixed-gas-limit-for-estimation"?: string | undefined;
@@ -1259,10 +1259,12 @@ export declare const rpcArgsSchema: z.ZodObject<{
1259
1259
  "polling-interval": z.ZodNumber;
1260
1260
  "max-block-range": z.ZodOptional<z.ZodNumber>;
1261
1261
  "block-tag-support": z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1262
+ "code-override-support": z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1262
1263
  }, "strip", z.ZodTypeAny, {
1263
1264
  "rpc-url": string;
1264
1265
  "polling-interval": number;
1265
1266
  "block-tag-support": boolean;
1267
+ "code-override-support": boolean;
1266
1268
  "send-transaction-rpc-url"?: string | undefined;
1267
1269
  "max-block-range"?: number | undefined;
1268
1270
  }, {
@@ -1271,6 +1273,7 @@ export declare const rpcArgsSchema: z.ZodObject<{
1271
1273
  "send-transaction-rpc-url"?: string | undefined;
1272
1274
  "max-block-range"?: number | undefined;
1273
1275
  "block-tag-support"?: boolean | undefined;
1276
+ "code-override-support"?: boolean | undefined;
1274
1277
  }>;
1275
1278
  export declare const bundleCopmressionArgsSchema: z.ZodObject<{
1276
1279
  "bundle-bulker-address": z.ZodOptional<z.ZodEffects<z.ZodString, `0x${string}`, string>>;
@@ -1284,6 +1287,7 @@ export declare const bundleCopmressionArgsSchema: z.ZodObject<{
1284
1287
  }>;
1285
1288
  export declare const logArgsSchema: z.ZodObject<{
1286
1289
  "redis-queue-endpoint": z.ZodOptional<z.ZodString>;
1290
+ "redis-event-manager-queue-name": z.ZodOptional<z.ZodString>;
1287
1291
  json: z.ZodBoolean;
1288
1292
  "network-name": z.ZodString;
1289
1293
  "log-level": z.ZodEnum<["trace", "debug", "info", "warn", "error", "fatal"]>;
@@ -1297,27 +1301,29 @@ export declare const logArgsSchema: z.ZodObject<{
1297
1301
  }, "strip", z.ZodTypeAny, {
1298
1302
  json: boolean;
1299
1303
  "network-name": string;
1300
- "log-level": "error" | "info" | "debug" | "fatal" | "warn" | "trace";
1304
+ "log-level": "error" | "info" | "trace" | "debug" | "warn" | "fatal";
1301
1305
  "redis-queue-endpoint"?: string | undefined;
1302
- "public-client-log-level"?: "error" | "info" | "debug" | "fatal" | "warn" | "trace" | undefined;
1303
- "wallet-client-log-level"?: "error" | "info" | "debug" | "fatal" | "warn" | "trace" | undefined;
1304
- "rpc-log-level"?: "error" | "info" | "debug" | "fatal" | "warn" | "trace" | undefined;
1305
- "mempool-log-level"?: "error" | "info" | "debug" | "fatal" | "warn" | "trace" | undefined;
1306
- "executor-log-level"?: "error" | "info" | "debug" | "fatal" | "warn" | "trace" | undefined;
1307
- "reputation-manager-log-level"?: "error" | "info" | "debug" | "fatal" | "warn" | "trace" | undefined;
1308
- "nonce-queuer-log-level"?: "error" | "info" | "debug" | "fatal" | "warn" | "trace" | undefined;
1306
+ "redis-event-manager-queue-name"?: string | undefined;
1307
+ "public-client-log-level"?: "error" | "info" | "trace" | "debug" | "warn" | "fatal" | undefined;
1308
+ "wallet-client-log-level"?: "error" | "info" | "trace" | "debug" | "warn" | "fatal" | undefined;
1309
+ "rpc-log-level"?: "error" | "info" | "trace" | "debug" | "warn" | "fatal" | undefined;
1310
+ "mempool-log-level"?: "error" | "info" | "trace" | "debug" | "warn" | "fatal" | undefined;
1311
+ "executor-log-level"?: "error" | "info" | "trace" | "debug" | "warn" | "fatal" | undefined;
1312
+ "reputation-manager-log-level"?: "error" | "info" | "trace" | "debug" | "warn" | "fatal" | undefined;
1313
+ "nonce-queuer-log-level"?: "error" | "info" | "trace" | "debug" | "warn" | "fatal" | undefined;
1309
1314
  }, {
1310
1315
  json: boolean;
1311
1316
  "network-name": string;
1312
- "log-level": "error" | "info" | "debug" | "fatal" | "warn" | "trace";
1317
+ "log-level": "error" | "info" | "trace" | "debug" | "warn" | "fatal";
1313
1318
  "redis-queue-endpoint"?: string | undefined;
1314
- "public-client-log-level"?: "error" | "info" | "debug" | "fatal" | "warn" | "trace" | undefined;
1315
- "wallet-client-log-level"?: "error" | "info" | "debug" | "fatal" | "warn" | "trace" | undefined;
1316
- "rpc-log-level"?: "error" | "info" | "debug" | "fatal" | "warn" | "trace" | undefined;
1317
- "mempool-log-level"?: "error" | "info" | "debug" | "fatal" | "warn" | "trace" | undefined;
1318
- "executor-log-level"?: "error" | "info" | "debug" | "fatal" | "warn" | "trace" | undefined;
1319
- "reputation-manager-log-level"?: "error" | "info" | "debug" | "fatal" | "warn" | "trace" | undefined;
1320
- "nonce-queuer-log-level"?: "error" | "info" | "debug" | "fatal" | "warn" | "trace" | undefined;
1319
+ "redis-event-manager-queue-name"?: string | undefined;
1320
+ "public-client-log-level"?: "error" | "info" | "trace" | "debug" | "warn" | "fatal" | undefined;
1321
+ "wallet-client-log-level"?: "error" | "info" | "trace" | "debug" | "warn" | "fatal" | undefined;
1322
+ "rpc-log-level"?: "error" | "info" | "trace" | "debug" | "warn" | "fatal" | undefined;
1323
+ "mempool-log-level"?: "error" | "info" | "trace" | "debug" | "warn" | "fatal" | undefined;
1324
+ "executor-log-level"?: "error" | "info" | "trace" | "debug" | "warn" | "fatal" | undefined;
1325
+ "reputation-manager-log-level"?: "error" | "info" | "trace" | "debug" | "warn" | "fatal" | undefined;
1326
+ "nonce-queuer-log-level"?: "error" | "info" | "trace" | "debug" | "warn" | "fatal" | undefined;
1321
1327
  }>;
1322
1328
  export declare const debugArgsSchema: z.ZodObject<{
1323
1329
  "bundle-mode": z.ZodEnum<["auto", "manual"]>;
@@ -1341,6 +1347,22 @@ export declare const debugArgsSchema: z.ZodObject<{
1341
1347
  "deploy-simulations-contract": boolean;
1342
1348
  tenderly: boolean;
1343
1349
  }>;
1350
+ export declare const gasEstimationArgsSchema: z.ZodObject<{
1351
+ "binary-search-tolerance-delta": z.ZodDefault<z.ZodEffects<z.ZodString, bigint, string>>;
1352
+ "binary-search-gas-allowance": z.ZodDefault<z.ZodEffects<z.ZodString, bigint, string>>;
1353
+ "call-gas-limit-multiplier": z.ZodEffects<z.ZodString, bigint, string>;
1354
+ "paymaster-gas-limit-multiplier": z.ZodEffects<z.ZodString, bigint, string>;
1355
+ }, "strip", z.ZodTypeAny, {
1356
+ "binary-search-tolerance-delta": bigint;
1357
+ "binary-search-gas-allowance": bigint;
1358
+ "call-gas-limit-multiplier": bigint;
1359
+ "paymaster-gas-limit-multiplier": bigint;
1360
+ }, {
1361
+ "call-gas-limit-multiplier": string;
1362
+ "paymaster-gas-limit-multiplier": string;
1363
+ "binary-search-tolerance-delta"?: string | undefined;
1364
+ "binary-search-gas-allowance"?: string | undefined;
1365
+ }>;
1344
1366
  export type IBundlerArgs = z.infer<typeof bundlerArgsSchema>;
1345
1367
  export type IBundlerArgsInput = z.input<typeof bundlerArgsSchema>;
1346
1368
  export type ICompatibilityArgs = z.infer<typeof compatibilityArgsSchema>;
@@ -1355,7 +1377,13 @@ export type ILogArgs = z.infer<typeof logArgsSchema>;
1355
1377
  export type ILogArgsInput = z.input<typeof logArgsSchema>;
1356
1378
  export type IDebugArgs = z.infer<typeof debugArgsSchema>;
1357
1379
  export type IDebugArgsInput = z.input<typeof debugArgsSchema>;
1380
+ export type IGasEstimationArgs = z.infer<typeof gasEstimationArgsSchema>;
1381
+ export type IGasEstimationArgsInput = z.input<typeof gasEstimationArgsSchema>;
1358
1382
  export declare const optionArgsSchema: z.ZodObject<{
1383
+ "binary-search-tolerance-delta": z.ZodDefault<z.ZodEffects<z.ZodString, bigint, string>>;
1384
+ "binary-search-gas-allowance": z.ZodDefault<z.ZodEffects<z.ZodString, bigint, string>>;
1385
+ "call-gas-limit-multiplier": z.ZodEffects<z.ZodString, bigint, string>;
1386
+ "paymaster-gas-limit-multiplier": z.ZodEffects<z.ZodString, bigint, string>;
1359
1387
  "bundle-mode": z.ZodEnum<["auto", "manual"]>;
1360
1388
  "enable-debug-endpoints": z.ZodBoolean;
1361
1389
  "expiration-check": z.ZodBoolean;
@@ -1369,11 +1397,13 @@ export declare const optionArgsSchema: z.ZodObject<{
1369
1397
  "polling-interval": z.ZodNumber;
1370
1398
  "max-block-range": z.ZodOptional<z.ZodNumber>;
1371
1399
  "block-tag-support": z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1400
+ "code-override-support": z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1372
1401
  port: z.ZodNumber;
1373
1402
  timeout: z.ZodOptional<z.ZodNumber>;
1374
1403
  websocket: z.ZodDefault<z.ZodBoolean>;
1375
1404
  "websocket-max-payload-size": z.ZodDefault<z.ZodNumber>;
1376
1405
  "redis-queue-endpoint": z.ZodOptional<z.ZodString>;
1406
+ "redis-event-manager-queue-name": z.ZodOptional<z.ZodString>;
1377
1407
  json: z.ZodBoolean;
1378
1408
  "network-name": z.ZodString;
1379
1409
  "log-level": z.ZodEnum<["trace", "debug", "info", "warn", "error", "fatal"]>;
@@ -1384,17 +1414,17 @@ export declare const optionArgsSchema: z.ZodObject<{
1384
1414
  "executor-log-level": z.ZodOptional<z.ZodEnum<["trace", "debug", "info", "warn", "error", "fatal"]>>;
1385
1415
  "reputation-manager-log-level": z.ZodOptional<z.ZodEnum<["trace", "debug", "info", "warn", "error", "fatal"]>>;
1386
1416
  "nonce-queuer-log-level": z.ZodOptional<z.ZodEnum<["trace", "debug", "info", "warn", "error", "fatal"]>>;
1387
- "chain-type": z.ZodEnum<["default", "op-stack", "arbitrum", "hedera"]>;
1417
+ "chain-type": z.ZodEnum<["default", "op-stack", "arbitrum", "hedera", "mantle"]>;
1388
1418
  "legacy-transactions": z.ZodBoolean;
1389
1419
  "api-version": z.ZodEffects<z.ZodDefault<z.ZodOptional<z.ZodString>>, ApiVersion[], string | undefined>;
1390
1420
  "default-api-version": z.ZodEffects<z.ZodOptional<z.ZodEnum<["v1", "v2"]>>, "v1" | "v2", "v1" | "v2" | undefined>;
1391
1421
  "balance-override": z.ZodBoolean;
1392
1422
  "local-gas-limit-calculation": z.ZodBoolean;
1393
1423
  "flush-stuck-transactions-during-startup": z.ZodBoolean;
1394
- "paymaster-gas-limit-multiplier": z.ZodEffects<z.ZodString, bigint, string>;
1395
1424
  "fixed-gas-limit-for-estimation": z.ZodOptional<z.ZodEffects<z.ZodString, bigint, string>>;
1396
1425
  entrypoints: z.ZodEffects<z.ZodString, `0x${string}`[], string>;
1397
1426
  "entrypoint-simulation-contract": z.ZodEffects<z.ZodOptional<z.ZodEffects<z.ZodString, `0x${string}`, string>>, `0x${string}` | undefined, unknown>;
1427
+ "refill-helper-contract": z.ZodOptional<z.ZodEffects<z.ZodString, `0x${string}`, string>>;
1398
1428
  "no-profit-bundling": z.ZodBoolean;
1399
1429
  "safe-mode": z.ZodBoolean;
1400
1430
  "utility-private-key": z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, {
@@ -1425,6 +1455,7 @@ export declare const optionArgsSchema: z.ZodObject<{
1425
1455
  [x: `uint192[${string}]`]: undefined;
1426
1456
  [x: `bytes4[${string}]`]: undefined;
1427
1457
  [x: `uint8[${string}]`]: undefined;
1458
+ [x: `uint64[${string}]`]: undefined;
1428
1459
  [x: `bytes1[${string}]`]: undefined;
1429
1460
  [x: `bytes11[${string}]`]: undefined;
1430
1461
  [x: `bytes2[${string}]`]: undefined;
@@ -1435,34 +1466,32 @@ export declare const optionArgsSchema: z.ZodObject<{
1435
1466
  [x: `bytes8[${string}]`]: undefined;
1436
1467
  [x: `bytes9[${string}]`]: undefined;
1437
1468
  [x: `bytes10[${string}]`]: undefined;
1438
- [x: `bytes18[${string}]`]: undefined;
1439
- [x: `bytes12[${string}]`]: undefined;
1440
- [x: `bytes14[${string}]`]: undefined;
1441
- [x: `bytes16[${string}]`]: undefined;
1442
1469
  [x: `bytes20[${string}]`]: undefined;
1443
- [x: `bytes25[${string}]`]: undefined;
1444
- [x: `bytes30[${string}]`]: undefined;
1470
+ [x: `bytes18[${string}]`]: undefined;
1445
1471
  [x: `bytes31[${string}]`]: undefined;
1472
+ [x: `bytes30[${string}]`]: undefined;
1446
1473
  [x: `bytes29[${string}]`]: undefined;
1447
1474
  [x: `bytes28[${string}]`]: undefined;
1448
1475
  [x: `bytes27[${string}]`]: undefined;
1449
1476
  [x: `bytes26[${string}]`]: undefined;
1477
+ [x: `bytes25[${string}]`]: undefined;
1450
1478
  [x: `bytes24[${string}]`]: undefined;
1451
1479
  [x: `bytes23[${string}]`]: undefined;
1452
1480
  [x: `bytes22[${string}]`]: undefined;
1453
1481
  [x: `bytes21[${string}]`]: undefined;
1454
1482
  [x: `bytes19[${string}]`]: undefined;
1455
1483
  [x: `bytes17[${string}]`]: undefined;
1484
+ [x: `bytes16[${string}]`]: undefined;
1456
1485
  [x: `bytes15[${string}]`]: undefined;
1486
+ [x: `bytes14[${string}]`]: undefined;
1457
1487
  [x: `bytes13[${string}]`]: undefined;
1488
+ [x: `bytes12[${string}]`]: undefined;
1458
1489
  [x: `int[${string}]`]: undefined;
1459
1490
  [x: `int8[${string}]`]: undefined;
1460
- [x: `int16[${string}]`]: undefined;
1461
1491
  [x: `int40[${string}]`]: undefined;
1462
- [x: `int120[${string}]`]: undefined;
1463
- [x: `int240[${string}]`]: undefined;
1464
1492
  [x: `int32[${string}]`]: undefined;
1465
1493
  [x: `int24[${string}]`]: undefined;
1494
+ [x: `int16[${string}]`]: undefined;
1466
1495
  [x: `int48[${string}]`]: undefined;
1467
1496
  [x: `int56[${string}]`]: undefined;
1468
1497
  [x: `int64[${string}]`]: undefined;
@@ -1472,6 +1501,7 @@ export declare const optionArgsSchema: z.ZodObject<{
1472
1501
  [x: `int96[${string}]`]: undefined;
1473
1502
  [x: `int104[${string}]`]: undefined;
1474
1503
  [x: `int112[${string}]`]: undefined;
1504
+ [x: `int120[${string}]`]: undefined;
1475
1505
  [x: `int128[${string}]`]: undefined;
1476
1506
  [x: `int136[${string}]`]: undefined;
1477
1507
  [x: `int144[${string}]`]: undefined;
@@ -1486,21 +1516,20 @@ export declare const optionArgsSchema: z.ZodObject<{
1486
1516
  [x: `int216[${string}]`]: undefined;
1487
1517
  [x: `int224[${string}]`]: undefined;
1488
1518
  [x: `int232[${string}]`]: undefined;
1519
+ [x: `int240[${string}]`]: undefined;
1489
1520
  [x: `int248[${string}]`]: undefined;
1490
1521
  [x: `int256[${string}]`]: undefined;
1491
1522
  [x: `uint[${string}]`]: undefined;
1492
- [x: `uint16[${string}]`]: undefined;
1493
1523
  [x: `uint40[${string}]`]: undefined;
1494
- [x: `uint120[${string}]`]: undefined;
1495
- [x: `uint240[${string}]`]: undefined;
1496
1524
  [x: `uint24[${string}]`]: undefined;
1525
+ [x: `uint16[${string}]`]: undefined;
1497
1526
  [x: `uint56[${string}]`]: undefined;
1498
- [x: `uint64[${string}]`]: undefined;
1499
1527
  [x: `uint72[${string}]`]: undefined;
1500
1528
  [x: `uint80[${string}]`]: undefined;
1501
1529
  [x: `uint88[${string}]`]: undefined;
1502
1530
  [x: `uint96[${string}]`]: undefined;
1503
1531
  [x: `uint104[${string}]`]: undefined;
1532
+ [x: `uint120[${string}]`]: undefined;
1504
1533
  [x: `uint128[${string}]`]: undefined;
1505
1534
  [x: `uint136[${string}]`]: undefined;
1506
1535
  [x: `uint144[${string}]`]: undefined;
@@ -1514,6 +1543,7 @@ export declare const optionArgsSchema: z.ZodObject<{
1514
1543
  [x: `uint216[${string}]`]: undefined;
1515
1544
  [x: `uint224[${string}]`]: undefined;
1516
1545
  [x: `uint232[${string}]`]: undefined;
1546
+ [x: `uint240[${string}]`]: undefined;
1517
1547
  [x: `uint248[${string}]`]: undefined;
1518
1548
  string?: undefined;
1519
1549
  address?: undefined;
@@ -1527,6 +1557,7 @@ export declare const optionArgsSchema: z.ZodObject<{
1527
1557
  uint192?: undefined;
1528
1558
  bytes4?: undefined;
1529
1559
  uint8?: undefined;
1560
+ uint64?: undefined;
1530
1561
  bytes1?: undefined;
1531
1562
  bytes11?: undefined;
1532
1563
  bytes2?: undefined;
@@ -1537,33 +1568,31 @@ export declare const optionArgsSchema: z.ZodObject<{
1537
1568
  bytes8?: undefined;
1538
1569
  bytes9?: undefined;
1539
1570
  bytes10?: undefined;
1540
- bytes18?: undefined;
1541
- bytes12?: undefined;
1542
- bytes14?: undefined;
1543
- bytes16?: undefined;
1544
1571
  bytes20?: undefined;
1545
- bytes25?: undefined;
1546
- bytes30?: undefined;
1572
+ bytes18?: undefined;
1547
1573
  bytes31?: undefined;
1574
+ bytes30?: undefined;
1548
1575
  bytes29?: undefined;
1549
1576
  bytes28?: undefined;
1550
1577
  bytes27?: undefined;
1551
1578
  bytes26?: undefined;
1579
+ bytes25?: undefined;
1552
1580
  bytes24?: undefined;
1553
1581
  bytes23?: undefined;
1554
1582
  bytes22?: undefined;
1555
1583
  bytes21?: undefined;
1556
1584
  bytes19?: undefined;
1557
1585
  bytes17?: undefined;
1586
+ bytes16?: undefined;
1558
1587
  bytes15?: undefined;
1588
+ bytes14?: undefined;
1559
1589
  bytes13?: undefined;
1590
+ bytes12?: undefined;
1560
1591
  int8?: undefined;
1561
- int16?: undefined;
1562
1592
  int40?: undefined;
1563
- int120?: undefined;
1564
- int240?: undefined;
1565
1593
  int32?: undefined;
1566
1594
  int24?: undefined;
1595
+ int16?: undefined;
1567
1596
  int48?: undefined;
1568
1597
  int56?: undefined;
1569
1598
  int64?: undefined;
@@ -1573,6 +1602,7 @@ export declare const optionArgsSchema: z.ZodObject<{
1573
1602
  int96?: undefined;
1574
1603
  int104?: undefined;
1575
1604
  int112?: undefined;
1605
+ int120?: undefined;
1576
1606
  int128?: undefined;
1577
1607
  int136?: undefined;
1578
1608
  int144?: undefined;
@@ -1587,20 +1617,19 @@ export declare const optionArgsSchema: z.ZodObject<{
1587
1617
  int216?: undefined;
1588
1618
  int224?: undefined;
1589
1619
  int232?: undefined;
1620
+ int240?: undefined;
1590
1621
  int248?: undefined;
1591
1622
  int256?: undefined;
1592
- uint16?: undefined;
1593
1623
  uint40?: undefined;
1594
- uint120?: undefined;
1595
- uint240?: undefined;
1596
1624
  uint24?: undefined;
1625
+ uint16?: undefined;
1597
1626
  uint56?: undefined;
1598
- uint64?: undefined;
1599
1627
  uint72?: undefined;
1600
1628
  uint80?: undefined;
1601
1629
  uint88?: undefined;
1602
1630
  uint96?: undefined;
1603
1631
  uint104?: undefined;
1632
+ uint120?: undefined;
1604
1633
  uint128?: undefined;
1605
1634
  uint136?: undefined;
1606
1635
  uint144?: undefined;
@@ -1614,6 +1643,7 @@ export declare const optionArgsSchema: z.ZodObject<{
1614
1643
  uint216?: undefined;
1615
1644
  uint224?: undefined;
1616
1645
  uint232?: undefined;
1646
+ uint240?: undefined;
1617
1647
  uint248?: undefined;
1618
1648
  }, primaryType extends "EIP712Domain" | keyof typedData = keyof typedData>(parameters: import("viem").TypedDataDefinition<typedData, primaryType>) => Promise<`0x${string}`>;
1619
1649
  publicKey: `0x${string}`;
@@ -1650,6 +1680,7 @@ export declare const optionArgsSchema: z.ZodObject<{
1650
1680
  [x: `uint192[${string}]`]: undefined;
1651
1681
  [x: `bytes4[${string}]`]: undefined;
1652
1682
  [x: `uint8[${string}]`]: undefined;
1683
+ [x: `uint64[${string}]`]: undefined;
1653
1684
  [x: `bytes1[${string}]`]: undefined;
1654
1685
  [x: `bytes11[${string}]`]: undefined;
1655
1686
  [x: `bytes2[${string}]`]: undefined;
@@ -1660,34 +1691,32 @@ export declare const optionArgsSchema: z.ZodObject<{
1660
1691
  [x: `bytes8[${string}]`]: undefined;
1661
1692
  [x: `bytes9[${string}]`]: undefined;
1662
1693
  [x: `bytes10[${string}]`]: undefined;
1663
- [x: `bytes18[${string}]`]: undefined;
1664
- [x: `bytes12[${string}]`]: undefined;
1665
- [x: `bytes14[${string}]`]: undefined;
1666
- [x: `bytes16[${string}]`]: undefined;
1667
1694
  [x: `bytes20[${string}]`]: undefined;
1668
- [x: `bytes25[${string}]`]: undefined;
1669
- [x: `bytes30[${string}]`]: undefined;
1695
+ [x: `bytes18[${string}]`]: undefined;
1670
1696
  [x: `bytes31[${string}]`]: undefined;
1697
+ [x: `bytes30[${string}]`]: undefined;
1671
1698
  [x: `bytes29[${string}]`]: undefined;
1672
1699
  [x: `bytes28[${string}]`]: undefined;
1673
1700
  [x: `bytes27[${string}]`]: undefined;
1674
1701
  [x: `bytes26[${string}]`]: undefined;
1702
+ [x: `bytes25[${string}]`]: undefined;
1675
1703
  [x: `bytes24[${string}]`]: undefined;
1676
1704
  [x: `bytes23[${string}]`]: undefined;
1677
1705
  [x: `bytes22[${string}]`]: undefined;
1678
1706
  [x: `bytes21[${string}]`]: undefined;
1679
1707
  [x: `bytes19[${string}]`]: undefined;
1680
1708
  [x: `bytes17[${string}]`]: undefined;
1709
+ [x: `bytes16[${string}]`]: undefined;
1681
1710
  [x: `bytes15[${string}]`]: undefined;
1711
+ [x: `bytes14[${string}]`]: undefined;
1682
1712
  [x: `bytes13[${string}]`]: undefined;
1713
+ [x: `bytes12[${string}]`]: undefined;
1683
1714
  [x: `int[${string}]`]: undefined;
1684
1715
  [x: `int8[${string}]`]: undefined;
1685
- [x: `int16[${string}]`]: undefined;
1686
1716
  [x: `int40[${string}]`]: undefined;
1687
- [x: `int120[${string}]`]: undefined;
1688
- [x: `int240[${string}]`]: undefined;
1689
1717
  [x: `int32[${string}]`]: undefined;
1690
1718
  [x: `int24[${string}]`]: undefined;
1719
+ [x: `int16[${string}]`]: undefined;
1691
1720
  [x: `int48[${string}]`]: undefined;
1692
1721
  [x: `int56[${string}]`]: undefined;
1693
1722
  [x: `int64[${string}]`]: undefined;
@@ -1697,6 +1726,7 @@ export declare const optionArgsSchema: z.ZodObject<{
1697
1726
  [x: `int96[${string}]`]: undefined;
1698
1727
  [x: `int104[${string}]`]: undefined;
1699
1728
  [x: `int112[${string}]`]: undefined;
1729
+ [x: `int120[${string}]`]: undefined;
1700
1730
  [x: `int128[${string}]`]: undefined;
1701
1731
  [x: `int136[${string}]`]: undefined;
1702
1732
  [x: `int144[${string}]`]: undefined;
@@ -1711,21 +1741,20 @@ export declare const optionArgsSchema: z.ZodObject<{
1711
1741
  [x: `int216[${string}]`]: undefined;
1712
1742
  [x: `int224[${string}]`]: undefined;
1713
1743
  [x: `int232[${string}]`]: undefined;
1744
+ [x: `int240[${string}]`]: undefined;
1714
1745
  [x: `int248[${string}]`]: undefined;
1715
1746
  [x: `int256[${string}]`]: undefined;
1716
1747
  [x: `uint[${string}]`]: undefined;
1717
- [x: `uint16[${string}]`]: undefined;
1718
1748
  [x: `uint40[${string}]`]: undefined;
1719
- [x: `uint120[${string}]`]: undefined;
1720
- [x: `uint240[${string}]`]: undefined;
1721
1749
  [x: `uint24[${string}]`]: undefined;
1750
+ [x: `uint16[${string}]`]: undefined;
1722
1751
  [x: `uint56[${string}]`]: undefined;
1723
- [x: `uint64[${string}]`]: undefined;
1724
1752
  [x: `uint72[${string}]`]: undefined;
1725
1753
  [x: `uint80[${string}]`]: undefined;
1726
1754
  [x: `uint88[${string}]`]: undefined;
1727
1755
  [x: `uint96[${string}]`]: undefined;
1728
1756
  [x: `uint104[${string}]`]: undefined;
1757
+ [x: `uint120[${string}]`]: undefined;
1729
1758
  [x: `uint128[${string}]`]: undefined;
1730
1759
  [x: `uint136[${string}]`]: undefined;
1731
1760
  [x: `uint144[${string}]`]: undefined;
@@ -1739,6 +1768,7 @@ export declare const optionArgsSchema: z.ZodObject<{
1739
1768
  [x: `uint216[${string}]`]: undefined;
1740
1769
  [x: `uint224[${string}]`]: undefined;
1741
1770
  [x: `uint232[${string}]`]: undefined;
1771
+ [x: `uint240[${string}]`]: undefined;
1742
1772
  [x: `uint248[${string}]`]: undefined;
1743
1773
  string?: undefined;
1744
1774
  address?: undefined;
@@ -1752,6 +1782,7 @@ export declare const optionArgsSchema: z.ZodObject<{
1752
1782
  uint192?: undefined;
1753
1783
  bytes4?: undefined;
1754
1784
  uint8?: undefined;
1785
+ uint64?: undefined;
1755
1786
  bytes1?: undefined;
1756
1787
  bytes11?: undefined;
1757
1788
  bytes2?: undefined;
@@ -1762,33 +1793,31 @@ export declare const optionArgsSchema: z.ZodObject<{
1762
1793
  bytes8?: undefined;
1763
1794
  bytes9?: undefined;
1764
1795
  bytes10?: undefined;
1765
- bytes18?: undefined;
1766
- bytes12?: undefined;
1767
- bytes14?: undefined;
1768
- bytes16?: undefined;
1769
1796
  bytes20?: undefined;
1770
- bytes25?: undefined;
1771
- bytes30?: undefined;
1797
+ bytes18?: undefined;
1772
1798
  bytes31?: undefined;
1799
+ bytes30?: undefined;
1773
1800
  bytes29?: undefined;
1774
1801
  bytes28?: undefined;
1775
1802
  bytes27?: undefined;
1776
1803
  bytes26?: undefined;
1804
+ bytes25?: undefined;
1777
1805
  bytes24?: undefined;
1778
1806
  bytes23?: undefined;
1779
1807
  bytes22?: undefined;
1780
1808
  bytes21?: undefined;
1781
1809
  bytes19?: undefined;
1782
1810
  bytes17?: undefined;
1811
+ bytes16?: undefined;
1783
1812
  bytes15?: undefined;
1813
+ bytes14?: undefined;
1784
1814
  bytes13?: undefined;
1815
+ bytes12?: undefined;
1785
1816
  int8?: undefined;
1786
- int16?: undefined;
1787
1817
  int40?: undefined;
1788
- int120?: undefined;
1789
- int240?: undefined;
1790
1818
  int32?: undefined;
1791
1819
  int24?: undefined;
1820
+ int16?: undefined;
1792
1821
  int48?: undefined;
1793
1822
  int56?: undefined;
1794
1823
  int64?: undefined;
@@ -1798,6 +1827,7 @@ export declare const optionArgsSchema: z.ZodObject<{
1798
1827
  int96?: undefined;
1799
1828
  int104?: undefined;
1800
1829
  int112?: undefined;
1830
+ int120?: undefined;
1801
1831
  int128?: undefined;
1802
1832
  int136?: undefined;
1803
1833
  int144?: undefined;
@@ -1812,20 +1842,19 @@ export declare const optionArgsSchema: z.ZodObject<{
1812
1842
  int216?: undefined;
1813
1843
  int224?: undefined;
1814
1844
  int232?: undefined;
1845
+ int240?: undefined;
1815
1846
  int248?: undefined;
1816
1847
  int256?: undefined;
1817
- uint16?: undefined;
1818
1848
  uint40?: undefined;
1819
- uint120?: undefined;
1820
- uint240?: undefined;
1821
1849
  uint24?: undefined;
1850
+ uint16?: undefined;
1822
1851
  uint56?: undefined;
1823
- uint64?: undefined;
1824
1852
  uint72?: undefined;
1825
1853
  uint80?: undefined;
1826
1854
  uint88?: undefined;
1827
1855
  uint96?: undefined;
1828
1856
  uint104?: undefined;
1857
+ uint120?: undefined;
1829
1858
  uint128?: undefined;
1830
1859
  uint136?: undefined;
1831
1860
  uint144?: undefined;
@@ -1839,6 +1868,7 @@ export declare const optionArgsSchema: z.ZodObject<{
1839
1868
  uint216?: undefined;
1840
1869
  uint224?: undefined;
1841
1870
  uint232?: undefined;
1871
+ uint240?: undefined;
1842
1872
  uint248?: undefined;
1843
1873
  }, primaryType extends "EIP712Domain" | keyof typedData = keyof typedData>(parameters: import("viem").TypedDataDefinition<typedData, primaryType>) => Promise<`0x${string}`>;
1844
1874
  publicKey: `0x${string}`;
@@ -1872,6 +1902,7 @@ export declare const optionArgsSchema: z.ZodObject<{
1872
1902
  [x: `uint192[${string}]`]: undefined;
1873
1903
  [x: `bytes4[${string}]`]: undefined;
1874
1904
  [x: `uint8[${string}]`]: undefined;
1905
+ [x: `uint64[${string}]`]: undefined;
1875
1906
  [x: `bytes1[${string}]`]: undefined;
1876
1907
  [x: `bytes11[${string}]`]: undefined;
1877
1908
  [x: `bytes2[${string}]`]: undefined;
@@ -1882,34 +1913,32 @@ export declare const optionArgsSchema: z.ZodObject<{
1882
1913
  [x: `bytes8[${string}]`]: undefined;
1883
1914
  [x: `bytes9[${string}]`]: undefined;
1884
1915
  [x: `bytes10[${string}]`]: undefined;
1885
- [x: `bytes18[${string}]`]: undefined;
1886
- [x: `bytes12[${string}]`]: undefined;
1887
- [x: `bytes14[${string}]`]: undefined;
1888
- [x: `bytes16[${string}]`]: undefined;
1889
1916
  [x: `bytes20[${string}]`]: undefined;
1890
- [x: `bytes25[${string}]`]: undefined;
1891
- [x: `bytes30[${string}]`]: undefined;
1917
+ [x: `bytes18[${string}]`]: undefined;
1892
1918
  [x: `bytes31[${string}]`]: undefined;
1919
+ [x: `bytes30[${string}]`]: undefined;
1893
1920
  [x: `bytes29[${string}]`]: undefined;
1894
1921
  [x: `bytes28[${string}]`]: undefined;
1895
1922
  [x: `bytes27[${string}]`]: undefined;
1896
1923
  [x: `bytes26[${string}]`]: undefined;
1924
+ [x: `bytes25[${string}]`]: undefined;
1897
1925
  [x: `bytes24[${string}]`]: undefined;
1898
1926
  [x: `bytes23[${string}]`]: undefined;
1899
1927
  [x: `bytes22[${string}]`]: undefined;
1900
1928
  [x: `bytes21[${string}]`]: undefined;
1901
1929
  [x: `bytes19[${string}]`]: undefined;
1902
1930
  [x: `bytes17[${string}]`]: undefined;
1931
+ [x: `bytes16[${string}]`]: undefined;
1903
1932
  [x: `bytes15[${string}]`]: undefined;
1933
+ [x: `bytes14[${string}]`]: undefined;
1904
1934
  [x: `bytes13[${string}]`]: undefined;
1935
+ [x: `bytes12[${string}]`]: undefined;
1905
1936
  [x: `int[${string}]`]: undefined;
1906
1937
  [x: `int8[${string}]`]: undefined;
1907
- [x: `int16[${string}]`]: undefined;
1908
1938
  [x: `int40[${string}]`]: undefined;
1909
- [x: `int120[${string}]`]: undefined;
1910
- [x: `int240[${string}]`]: undefined;
1911
1939
  [x: `int32[${string}]`]: undefined;
1912
1940
  [x: `int24[${string}]`]: undefined;
1941
+ [x: `int16[${string}]`]: undefined;
1913
1942
  [x: `int48[${string}]`]: undefined;
1914
1943
  [x: `int56[${string}]`]: undefined;
1915
1944
  [x: `int64[${string}]`]: undefined;
@@ -1919,6 +1948,7 @@ export declare const optionArgsSchema: z.ZodObject<{
1919
1948
  [x: `int96[${string}]`]: undefined;
1920
1949
  [x: `int104[${string}]`]: undefined;
1921
1950
  [x: `int112[${string}]`]: undefined;
1951
+ [x: `int120[${string}]`]: undefined;
1922
1952
  [x: `int128[${string}]`]: undefined;
1923
1953
  [x: `int136[${string}]`]: undefined;
1924
1954
  [x: `int144[${string}]`]: undefined;
@@ -1933,21 +1963,20 @@ export declare const optionArgsSchema: z.ZodObject<{
1933
1963
  [x: `int216[${string}]`]: undefined;
1934
1964
  [x: `int224[${string}]`]: undefined;
1935
1965
  [x: `int232[${string}]`]: undefined;
1966
+ [x: `int240[${string}]`]: undefined;
1936
1967
  [x: `int248[${string}]`]: undefined;
1937
1968
  [x: `int256[${string}]`]: undefined;
1938
1969
  [x: `uint[${string}]`]: undefined;
1939
- [x: `uint16[${string}]`]: undefined;
1940
1970
  [x: `uint40[${string}]`]: undefined;
1941
- [x: `uint120[${string}]`]: undefined;
1942
- [x: `uint240[${string}]`]: undefined;
1943
1971
  [x: `uint24[${string}]`]: undefined;
1972
+ [x: `uint16[${string}]`]: undefined;
1944
1973
  [x: `uint56[${string}]`]: undefined;
1945
- [x: `uint64[${string}]`]: undefined;
1946
1974
  [x: `uint72[${string}]`]: undefined;
1947
1975
  [x: `uint80[${string}]`]: undefined;
1948
1976
  [x: `uint88[${string}]`]: undefined;
1949
1977
  [x: `uint96[${string}]`]: undefined;
1950
1978
  [x: `uint104[${string}]`]: undefined;
1979
+ [x: `uint120[${string}]`]: undefined;
1951
1980
  [x: `uint128[${string}]`]: undefined;
1952
1981
  [x: `uint136[${string}]`]: undefined;
1953
1982
  [x: `uint144[${string}]`]: undefined;
@@ -1961,6 +1990,7 @@ export declare const optionArgsSchema: z.ZodObject<{
1961
1990
  [x: `uint216[${string}]`]: undefined;
1962
1991
  [x: `uint224[${string}]`]: undefined;
1963
1992
  [x: `uint232[${string}]`]: undefined;
1993
+ [x: `uint240[${string}]`]: undefined;
1964
1994
  [x: `uint248[${string}]`]: undefined;
1965
1995
  string?: undefined;
1966
1996
  address?: undefined;
@@ -1974,6 +2004,7 @@ export declare const optionArgsSchema: z.ZodObject<{
1974
2004
  uint192?: undefined;
1975
2005
  bytes4?: undefined;
1976
2006
  uint8?: undefined;
2007
+ uint64?: undefined;
1977
2008
  bytes1?: undefined;
1978
2009
  bytes11?: undefined;
1979
2010
  bytes2?: undefined;
@@ -1984,33 +2015,31 @@ export declare const optionArgsSchema: z.ZodObject<{
1984
2015
  bytes8?: undefined;
1985
2016
  bytes9?: undefined;
1986
2017
  bytes10?: undefined;
1987
- bytes18?: undefined;
1988
- bytes12?: undefined;
1989
- bytes14?: undefined;
1990
- bytes16?: undefined;
1991
2018
  bytes20?: undefined;
1992
- bytes25?: undefined;
1993
- bytes30?: undefined;
2019
+ bytes18?: undefined;
1994
2020
  bytes31?: undefined;
2021
+ bytes30?: undefined;
1995
2022
  bytes29?: undefined;
1996
2023
  bytes28?: undefined;
1997
2024
  bytes27?: undefined;
1998
2025
  bytes26?: undefined;
2026
+ bytes25?: undefined;
1999
2027
  bytes24?: undefined;
2000
2028
  bytes23?: undefined;
2001
2029
  bytes22?: undefined;
2002
2030
  bytes21?: undefined;
2003
2031
  bytes19?: undefined;
2004
2032
  bytes17?: undefined;
2033
+ bytes16?: undefined;
2005
2034
  bytes15?: undefined;
2035
+ bytes14?: undefined;
2006
2036
  bytes13?: undefined;
2037
+ bytes12?: undefined;
2007
2038
  int8?: undefined;
2008
- int16?: undefined;
2009
2039
  int40?: undefined;
2010
- int120?: undefined;
2011
- int240?: undefined;
2012
2040
  int32?: undefined;
2013
2041
  int24?: undefined;
2042
+ int16?: undefined;
2014
2043
  int48?: undefined;
2015
2044
  int56?: undefined;
2016
2045
  int64?: undefined;
@@ -2020,6 +2049,7 @@ export declare const optionArgsSchema: z.ZodObject<{
2020
2049
  int96?: undefined;
2021
2050
  int104?: undefined;
2022
2051
  int112?: undefined;
2052
+ int120?: undefined;
2023
2053
  int128?: undefined;
2024
2054
  int136?: undefined;
2025
2055
  int144?: undefined;
@@ -2034,20 +2064,19 @@ export declare const optionArgsSchema: z.ZodObject<{
2034
2064
  int216?: undefined;
2035
2065
  int224?: undefined;
2036
2066
  int232?: undefined;
2067
+ int240?: undefined;
2037
2068
  int248?: undefined;
2038
2069
  int256?: undefined;
2039
- uint16?: undefined;
2040
2070
  uint40?: undefined;
2041
- uint120?: undefined;
2042
- uint240?: undefined;
2043
2071
  uint24?: undefined;
2072
+ uint16?: undefined;
2044
2073
  uint56?: undefined;
2045
- uint64?: undefined;
2046
2074
  uint72?: undefined;
2047
2075
  uint80?: undefined;
2048
2076
  uint88?: undefined;
2049
2077
  uint96?: undefined;
2050
2078
  uint104?: undefined;
2079
+ uint120?: undefined;
2051
2080
  uint128?: undefined;
2052
2081
  uint136?: undefined;
2053
2082
  uint144?: undefined;
@@ -2061,6 +2090,7 @@ export declare const optionArgsSchema: z.ZodObject<{
2061
2090
  uint216?: undefined;
2062
2091
  uint224?: undefined;
2063
2092
  uint232?: undefined;
2093
+ uint240?: undefined;
2064
2094
  uint248?: undefined;
2065
2095
  }, primaryType extends "EIP712Domain" | keyof typedData = keyof typedData>(parameters: import("viem").TypedDataDefinition<typedData, primaryType>) => Promise<`0x${string}`>;
2066
2096
  publicKey: `0x${string}`;
@@ -2092,7 +2122,6 @@ export declare const optionArgsSchema: z.ZodObject<{
2092
2122
  "aa95-gas-multiplier": z.ZodEffects<z.ZodString, bigint, string>;
2093
2123
  "enable-instant-bundling-endpoint": z.ZodBoolean;
2094
2124
  }, "strip", z.ZodTypeAny, {
2095
- port: number;
2096
2125
  entrypoints: `0x${string}`[];
2097
2126
  "no-profit-bundling": boolean;
2098
2127
  "safe-mode": boolean;
@@ -2126,6 +2155,7 @@ export declare const optionArgsSchema: z.ZodObject<{
2126
2155
  [x: `uint192[${string}]`]: undefined;
2127
2156
  [x: `bytes4[${string}]`]: undefined;
2128
2157
  [x: `uint8[${string}]`]: undefined;
2158
+ [x: `uint64[${string}]`]: undefined;
2129
2159
  [x: `bytes1[${string}]`]: undefined;
2130
2160
  [x: `bytes11[${string}]`]: undefined;
2131
2161
  [x: `bytes2[${string}]`]: undefined;
@@ -2136,34 +2166,32 @@ export declare const optionArgsSchema: z.ZodObject<{
2136
2166
  [x: `bytes8[${string}]`]: undefined;
2137
2167
  [x: `bytes9[${string}]`]: undefined;
2138
2168
  [x: `bytes10[${string}]`]: undefined;
2139
- [x: `bytes18[${string}]`]: undefined;
2140
- [x: `bytes12[${string}]`]: undefined;
2141
- [x: `bytes14[${string}]`]: undefined;
2142
- [x: `bytes16[${string}]`]: undefined;
2143
2169
  [x: `bytes20[${string}]`]: undefined;
2144
- [x: `bytes25[${string}]`]: undefined;
2145
- [x: `bytes30[${string}]`]: undefined;
2170
+ [x: `bytes18[${string}]`]: undefined;
2146
2171
  [x: `bytes31[${string}]`]: undefined;
2172
+ [x: `bytes30[${string}]`]: undefined;
2147
2173
  [x: `bytes29[${string}]`]: undefined;
2148
2174
  [x: `bytes28[${string}]`]: undefined;
2149
2175
  [x: `bytes27[${string}]`]: undefined;
2150
2176
  [x: `bytes26[${string}]`]: undefined;
2177
+ [x: `bytes25[${string}]`]: undefined;
2151
2178
  [x: `bytes24[${string}]`]: undefined;
2152
2179
  [x: `bytes23[${string}]`]: undefined;
2153
2180
  [x: `bytes22[${string}]`]: undefined;
2154
2181
  [x: `bytes21[${string}]`]: undefined;
2155
2182
  [x: `bytes19[${string}]`]: undefined;
2156
2183
  [x: `bytes17[${string}]`]: undefined;
2184
+ [x: `bytes16[${string}]`]: undefined;
2157
2185
  [x: `bytes15[${string}]`]: undefined;
2186
+ [x: `bytes14[${string}]`]: undefined;
2158
2187
  [x: `bytes13[${string}]`]: undefined;
2188
+ [x: `bytes12[${string}]`]: undefined;
2159
2189
  [x: `int[${string}]`]: undefined;
2160
2190
  [x: `int8[${string}]`]: undefined;
2161
- [x: `int16[${string}]`]: undefined;
2162
2191
  [x: `int40[${string}]`]: undefined;
2163
- [x: `int120[${string}]`]: undefined;
2164
- [x: `int240[${string}]`]: undefined;
2165
2192
  [x: `int32[${string}]`]: undefined;
2166
2193
  [x: `int24[${string}]`]: undefined;
2194
+ [x: `int16[${string}]`]: undefined;
2167
2195
  [x: `int48[${string}]`]: undefined;
2168
2196
  [x: `int56[${string}]`]: undefined;
2169
2197
  [x: `int64[${string}]`]: undefined;
@@ -2173,6 +2201,7 @@ export declare const optionArgsSchema: z.ZodObject<{
2173
2201
  [x: `int96[${string}]`]: undefined;
2174
2202
  [x: `int104[${string}]`]: undefined;
2175
2203
  [x: `int112[${string}]`]: undefined;
2204
+ [x: `int120[${string}]`]: undefined;
2176
2205
  [x: `int128[${string}]`]: undefined;
2177
2206
  [x: `int136[${string}]`]: undefined;
2178
2207
  [x: `int144[${string}]`]: undefined;
@@ -2187,21 +2216,20 @@ export declare const optionArgsSchema: z.ZodObject<{
2187
2216
  [x: `int216[${string}]`]: undefined;
2188
2217
  [x: `int224[${string}]`]: undefined;
2189
2218
  [x: `int232[${string}]`]: undefined;
2219
+ [x: `int240[${string}]`]: undefined;
2190
2220
  [x: `int248[${string}]`]: undefined;
2191
2221
  [x: `int256[${string}]`]: undefined;
2192
2222
  [x: `uint[${string}]`]: undefined;
2193
- [x: `uint16[${string}]`]: undefined;
2194
2223
  [x: `uint40[${string}]`]: undefined;
2195
- [x: `uint120[${string}]`]: undefined;
2196
- [x: `uint240[${string}]`]: undefined;
2197
2224
  [x: `uint24[${string}]`]: undefined;
2225
+ [x: `uint16[${string}]`]: undefined;
2198
2226
  [x: `uint56[${string}]`]: undefined;
2199
- [x: `uint64[${string}]`]: undefined;
2200
2227
  [x: `uint72[${string}]`]: undefined;
2201
2228
  [x: `uint80[${string}]`]: undefined;
2202
2229
  [x: `uint88[${string}]`]: undefined;
2203
2230
  [x: `uint96[${string}]`]: undefined;
2204
2231
  [x: `uint104[${string}]`]: undefined;
2232
+ [x: `uint120[${string}]`]: undefined;
2205
2233
  [x: `uint128[${string}]`]: undefined;
2206
2234
  [x: `uint136[${string}]`]: undefined;
2207
2235
  [x: `uint144[${string}]`]: undefined;
@@ -2215,6 +2243,7 @@ export declare const optionArgsSchema: z.ZodObject<{
2215
2243
  [x: `uint216[${string}]`]: undefined;
2216
2244
  [x: `uint224[${string}]`]: undefined;
2217
2245
  [x: `uint232[${string}]`]: undefined;
2246
+ [x: `uint240[${string}]`]: undefined;
2218
2247
  [x: `uint248[${string}]`]: undefined;
2219
2248
  string?: undefined;
2220
2249
  address?: undefined;
@@ -2228,6 +2257,7 @@ export declare const optionArgsSchema: z.ZodObject<{
2228
2257
  uint192?: undefined;
2229
2258
  bytes4?: undefined;
2230
2259
  uint8?: undefined;
2260
+ uint64?: undefined;
2231
2261
  bytes1?: undefined;
2232
2262
  bytes11?: undefined;
2233
2263
  bytes2?: undefined;
@@ -2238,33 +2268,31 @@ export declare const optionArgsSchema: z.ZodObject<{
2238
2268
  bytes8?: undefined;
2239
2269
  bytes9?: undefined;
2240
2270
  bytes10?: undefined;
2241
- bytes18?: undefined;
2242
- bytes12?: undefined;
2243
- bytes14?: undefined;
2244
- bytes16?: undefined;
2245
2271
  bytes20?: undefined;
2246
- bytes25?: undefined;
2247
- bytes30?: undefined;
2272
+ bytes18?: undefined;
2248
2273
  bytes31?: undefined;
2274
+ bytes30?: undefined;
2249
2275
  bytes29?: undefined;
2250
2276
  bytes28?: undefined;
2251
2277
  bytes27?: undefined;
2252
2278
  bytes26?: undefined;
2279
+ bytes25?: undefined;
2253
2280
  bytes24?: undefined;
2254
2281
  bytes23?: undefined;
2255
2282
  bytes22?: undefined;
2256
2283
  bytes21?: undefined;
2257
2284
  bytes19?: undefined;
2258
2285
  bytes17?: undefined;
2286
+ bytes16?: undefined;
2259
2287
  bytes15?: undefined;
2288
+ bytes14?: undefined;
2260
2289
  bytes13?: undefined;
2290
+ bytes12?: undefined;
2261
2291
  int8?: undefined;
2262
- int16?: undefined;
2263
2292
  int40?: undefined;
2264
- int120?: undefined;
2265
- int240?: undefined;
2266
2293
  int32?: undefined;
2267
2294
  int24?: undefined;
2295
+ int16?: undefined;
2268
2296
  int48?: undefined;
2269
2297
  int56?: undefined;
2270
2298
  int64?: undefined;
@@ -2274,6 +2302,7 @@ export declare const optionArgsSchema: z.ZodObject<{
2274
2302
  int96?: undefined;
2275
2303
  int104?: undefined;
2276
2304
  int112?: undefined;
2305
+ int120?: undefined;
2277
2306
  int128?: undefined;
2278
2307
  int136?: undefined;
2279
2308
  int144?: undefined;
@@ -2288,20 +2317,19 @@ export declare const optionArgsSchema: z.ZodObject<{
2288
2317
  int216?: undefined;
2289
2318
  int224?: undefined;
2290
2319
  int232?: undefined;
2320
+ int240?: undefined;
2291
2321
  int248?: undefined;
2292
2322
  int256?: undefined;
2293
- uint16?: undefined;
2294
2323
  uint40?: undefined;
2295
- uint120?: undefined;
2296
- uint240?: undefined;
2297
2324
  uint24?: undefined;
2325
+ uint16?: undefined;
2298
2326
  uint56?: undefined;
2299
- uint64?: undefined;
2300
2327
  uint72?: undefined;
2301
2328
  uint80?: undefined;
2302
2329
  uint88?: undefined;
2303
2330
  uint96?: undefined;
2304
2331
  uint104?: undefined;
2332
+ uint120?: undefined;
2305
2333
  uint128?: undefined;
2306
2334
  uint136?: undefined;
2307
2335
  uint144?: undefined;
@@ -2315,6 +2343,7 @@ export declare const optionArgsSchema: z.ZodObject<{
2315
2343
  uint216?: undefined;
2316
2344
  uint224?: undefined;
2317
2345
  uint232?: undefined;
2346
+ uint240?: undefined;
2318
2347
  uint248?: undefined;
2319
2348
  }, primaryType extends "EIP712Domain" | keyof typedData = keyof typedData>(parameters: import("viem").TypedDataDefinition<typedData, primaryType>) => Promise<`0x${string}`>;
2320
2349
  publicKey: `0x${string}`;
@@ -2343,43 +2372,50 @@ export declare const optionArgsSchema: z.ZodObject<{
2343
2372
  "refilling-wallets": boolean;
2344
2373
  "aa95-gas-multiplier": bigint;
2345
2374
  "enable-instant-bundling-endpoint": boolean;
2346
- "chain-type": "default" | "op-stack" | "arbitrum" | "hedera";
2375
+ "chain-type": "default" | "op-stack" | "arbitrum" | "hedera" | "mantle";
2347
2376
  "legacy-transactions": boolean;
2348
2377
  "api-version": ApiVersion[];
2349
2378
  "default-api-version": "v1" | "v2";
2350
2379
  "balance-override": boolean;
2351
2380
  "local-gas-limit-calculation": boolean;
2352
2381
  "flush-stuck-transactions-during-startup": boolean;
2353
- "paymaster-gas-limit-multiplier": bigint;
2382
+ port: number;
2354
2383
  websocket: boolean;
2355
2384
  "websocket-max-payload-size": number;
2356
2385
  "rpc-url": string;
2357
2386
  "polling-interval": number;
2358
2387
  "block-tag-support": boolean;
2388
+ "code-override-support": boolean;
2359
2389
  json: boolean;
2360
2390
  "network-name": string;
2361
- "log-level": "error" | "info" | "debug" | "fatal" | "warn" | "trace";
2391
+ "log-level": "error" | "info" | "trace" | "debug" | "warn" | "fatal";
2362
2392
  "bundle-mode": "manual" | "auto";
2363
2393
  "enable-debug-endpoints": boolean;
2364
2394
  "expiration-check": boolean;
2365
2395
  "dangerous-skip-user-operation-validation": boolean;
2366
2396
  "deploy-simulations-contract": boolean;
2367
2397
  tenderly: boolean;
2398
+ "binary-search-tolerance-delta": bigint;
2399
+ "binary-search-gas-allowance": bigint;
2400
+ "call-gas-limit-multiplier": bigint;
2401
+ "paymaster-gas-limit-multiplier": bigint;
2368
2402
  "bundle-bulker-address"?: `0x${string}` | undefined;
2369
2403
  "per-op-inflator-address"?: `0x${string}` | undefined;
2370
2404
  "send-transaction-rpc-url"?: string | undefined;
2371
2405
  "max-block-range"?: number | undefined;
2372
2406
  timeout?: number | undefined;
2373
2407
  "redis-queue-endpoint"?: string | undefined;
2374
- "public-client-log-level"?: "error" | "info" | "debug" | "fatal" | "warn" | "trace" | undefined;
2375
- "wallet-client-log-level"?: "error" | "info" | "debug" | "fatal" | "warn" | "trace" | undefined;
2376
- "rpc-log-level"?: "error" | "info" | "debug" | "fatal" | "warn" | "trace" | undefined;
2377
- "mempool-log-level"?: "error" | "info" | "debug" | "fatal" | "warn" | "trace" | undefined;
2378
- "executor-log-level"?: "error" | "info" | "debug" | "fatal" | "warn" | "trace" | undefined;
2379
- "reputation-manager-log-level"?: "error" | "info" | "debug" | "fatal" | "warn" | "trace" | undefined;
2380
- "nonce-queuer-log-level"?: "error" | "info" | "debug" | "fatal" | "warn" | "trace" | undefined;
2408
+ "redis-event-manager-queue-name"?: string | undefined;
2409
+ "public-client-log-level"?: "error" | "info" | "trace" | "debug" | "warn" | "fatal" | undefined;
2410
+ "wallet-client-log-level"?: "error" | "info" | "trace" | "debug" | "warn" | "fatal" | undefined;
2411
+ "rpc-log-level"?: "error" | "info" | "trace" | "debug" | "warn" | "fatal" | undefined;
2412
+ "mempool-log-level"?: "error" | "info" | "trace" | "debug" | "warn" | "fatal" | undefined;
2413
+ "executor-log-level"?: "error" | "info" | "trace" | "debug" | "warn" | "fatal" | undefined;
2414
+ "reputation-manager-log-level"?: "error" | "info" | "trace" | "debug" | "warn" | "fatal" | undefined;
2415
+ "nonce-queuer-log-level"?: "error" | "info" | "trace" | "debug" | "warn" | "fatal" | undefined;
2381
2416
  "fixed-gas-limit-for-estimation"?: bigint | undefined;
2382
2417
  "entrypoint-simulation-contract"?: `0x${string}` | undefined;
2418
+ "refill-helper-contract"?: `0x${string}` | undefined;
2383
2419
  "utility-private-key"?: {
2384
2420
  address: `0x${string}`;
2385
2421
  nonceManager?: import("viem").NonceManager | undefined;
@@ -2408,6 +2444,7 @@ export declare const optionArgsSchema: z.ZodObject<{
2408
2444
  [x: `uint192[${string}]`]: undefined;
2409
2445
  [x: `bytes4[${string}]`]: undefined;
2410
2446
  [x: `uint8[${string}]`]: undefined;
2447
+ [x: `uint64[${string}]`]: undefined;
2411
2448
  [x: `bytes1[${string}]`]: undefined;
2412
2449
  [x: `bytes11[${string}]`]: undefined;
2413
2450
  [x: `bytes2[${string}]`]: undefined;
@@ -2418,34 +2455,32 @@ export declare const optionArgsSchema: z.ZodObject<{
2418
2455
  [x: `bytes8[${string}]`]: undefined;
2419
2456
  [x: `bytes9[${string}]`]: undefined;
2420
2457
  [x: `bytes10[${string}]`]: undefined;
2421
- [x: `bytes18[${string}]`]: undefined;
2422
- [x: `bytes12[${string}]`]: undefined;
2423
- [x: `bytes14[${string}]`]: undefined;
2424
- [x: `bytes16[${string}]`]: undefined;
2425
2458
  [x: `bytes20[${string}]`]: undefined;
2426
- [x: `bytes25[${string}]`]: undefined;
2427
- [x: `bytes30[${string}]`]: undefined;
2459
+ [x: `bytes18[${string}]`]: undefined;
2428
2460
  [x: `bytes31[${string}]`]: undefined;
2461
+ [x: `bytes30[${string}]`]: undefined;
2429
2462
  [x: `bytes29[${string}]`]: undefined;
2430
2463
  [x: `bytes28[${string}]`]: undefined;
2431
2464
  [x: `bytes27[${string}]`]: undefined;
2432
2465
  [x: `bytes26[${string}]`]: undefined;
2466
+ [x: `bytes25[${string}]`]: undefined;
2433
2467
  [x: `bytes24[${string}]`]: undefined;
2434
2468
  [x: `bytes23[${string}]`]: undefined;
2435
2469
  [x: `bytes22[${string}]`]: undefined;
2436
2470
  [x: `bytes21[${string}]`]: undefined;
2437
2471
  [x: `bytes19[${string}]`]: undefined;
2438
2472
  [x: `bytes17[${string}]`]: undefined;
2473
+ [x: `bytes16[${string}]`]: undefined;
2439
2474
  [x: `bytes15[${string}]`]: undefined;
2475
+ [x: `bytes14[${string}]`]: undefined;
2440
2476
  [x: `bytes13[${string}]`]: undefined;
2477
+ [x: `bytes12[${string}]`]: undefined;
2441
2478
  [x: `int[${string}]`]: undefined;
2442
2479
  [x: `int8[${string}]`]: undefined;
2443
- [x: `int16[${string}]`]: undefined;
2444
2480
  [x: `int40[${string}]`]: undefined;
2445
- [x: `int120[${string}]`]: undefined;
2446
- [x: `int240[${string}]`]: undefined;
2447
2481
  [x: `int32[${string}]`]: undefined;
2448
2482
  [x: `int24[${string}]`]: undefined;
2483
+ [x: `int16[${string}]`]: undefined;
2449
2484
  [x: `int48[${string}]`]: undefined;
2450
2485
  [x: `int56[${string}]`]: undefined;
2451
2486
  [x: `int64[${string}]`]: undefined;
@@ -2455,6 +2490,7 @@ export declare const optionArgsSchema: z.ZodObject<{
2455
2490
  [x: `int96[${string}]`]: undefined;
2456
2491
  [x: `int104[${string}]`]: undefined;
2457
2492
  [x: `int112[${string}]`]: undefined;
2493
+ [x: `int120[${string}]`]: undefined;
2458
2494
  [x: `int128[${string}]`]: undefined;
2459
2495
  [x: `int136[${string}]`]: undefined;
2460
2496
  [x: `int144[${string}]`]: undefined;
@@ -2469,21 +2505,20 @@ export declare const optionArgsSchema: z.ZodObject<{
2469
2505
  [x: `int216[${string}]`]: undefined;
2470
2506
  [x: `int224[${string}]`]: undefined;
2471
2507
  [x: `int232[${string}]`]: undefined;
2508
+ [x: `int240[${string}]`]: undefined;
2472
2509
  [x: `int248[${string}]`]: undefined;
2473
2510
  [x: `int256[${string}]`]: undefined;
2474
2511
  [x: `uint[${string}]`]: undefined;
2475
- [x: `uint16[${string}]`]: undefined;
2476
2512
  [x: `uint40[${string}]`]: undefined;
2477
- [x: `uint120[${string}]`]: undefined;
2478
- [x: `uint240[${string}]`]: undefined;
2479
2513
  [x: `uint24[${string}]`]: undefined;
2514
+ [x: `uint16[${string}]`]: undefined;
2480
2515
  [x: `uint56[${string}]`]: undefined;
2481
- [x: `uint64[${string}]`]: undefined;
2482
2516
  [x: `uint72[${string}]`]: undefined;
2483
2517
  [x: `uint80[${string}]`]: undefined;
2484
2518
  [x: `uint88[${string}]`]: undefined;
2485
2519
  [x: `uint96[${string}]`]: undefined;
2486
2520
  [x: `uint104[${string}]`]: undefined;
2521
+ [x: `uint120[${string}]`]: undefined;
2487
2522
  [x: `uint128[${string}]`]: undefined;
2488
2523
  [x: `uint136[${string}]`]: undefined;
2489
2524
  [x: `uint144[${string}]`]: undefined;
@@ -2497,6 +2532,7 @@ export declare const optionArgsSchema: z.ZodObject<{
2497
2532
  [x: `uint216[${string}]`]: undefined;
2498
2533
  [x: `uint224[${string}]`]: undefined;
2499
2534
  [x: `uint232[${string}]`]: undefined;
2535
+ [x: `uint240[${string}]`]: undefined;
2500
2536
  [x: `uint248[${string}]`]: undefined;
2501
2537
  string?: undefined;
2502
2538
  address?: undefined;
@@ -2510,6 +2546,7 @@ export declare const optionArgsSchema: z.ZodObject<{
2510
2546
  uint192?: undefined;
2511
2547
  bytes4?: undefined;
2512
2548
  uint8?: undefined;
2549
+ uint64?: undefined;
2513
2550
  bytes1?: undefined;
2514
2551
  bytes11?: undefined;
2515
2552
  bytes2?: undefined;
@@ -2520,33 +2557,31 @@ export declare const optionArgsSchema: z.ZodObject<{
2520
2557
  bytes8?: undefined;
2521
2558
  bytes9?: undefined;
2522
2559
  bytes10?: undefined;
2523
- bytes18?: undefined;
2524
- bytes12?: undefined;
2525
- bytes14?: undefined;
2526
- bytes16?: undefined;
2527
2560
  bytes20?: undefined;
2528
- bytes25?: undefined;
2529
- bytes30?: undefined;
2561
+ bytes18?: undefined;
2530
2562
  bytes31?: undefined;
2563
+ bytes30?: undefined;
2531
2564
  bytes29?: undefined;
2532
2565
  bytes28?: undefined;
2533
2566
  bytes27?: undefined;
2534
2567
  bytes26?: undefined;
2568
+ bytes25?: undefined;
2535
2569
  bytes24?: undefined;
2536
2570
  bytes23?: undefined;
2537
2571
  bytes22?: undefined;
2538
2572
  bytes21?: undefined;
2539
2573
  bytes19?: undefined;
2540
2574
  bytes17?: undefined;
2575
+ bytes16?: undefined;
2541
2576
  bytes15?: undefined;
2577
+ bytes14?: undefined;
2542
2578
  bytes13?: undefined;
2579
+ bytes12?: undefined;
2543
2580
  int8?: undefined;
2544
- int16?: undefined;
2545
2581
  int40?: undefined;
2546
- int120?: undefined;
2547
- int240?: undefined;
2548
2582
  int32?: undefined;
2549
2583
  int24?: undefined;
2584
+ int16?: undefined;
2550
2585
  int48?: undefined;
2551
2586
  int56?: undefined;
2552
2587
  int64?: undefined;
@@ -2556,6 +2591,7 @@ export declare const optionArgsSchema: z.ZodObject<{
2556
2591
  int96?: undefined;
2557
2592
  int104?: undefined;
2558
2593
  int112?: undefined;
2594
+ int120?: undefined;
2559
2595
  int128?: undefined;
2560
2596
  int136?: undefined;
2561
2597
  int144?: undefined;
@@ -2570,20 +2606,19 @@ export declare const optionArgsSchema: z.ZodObject<{
2570
2606
  int216?: undefined;
2571
2607
  int224?: undefined;
2572
2608
  int232?: undefined;
2609
+ int240?: undefined;
2573
2610
  int248?: undefined;
2574
2611
  int256?: undefined;
2575
- uint16?: undefined;
2576
2612
  uint40?: undefined;
2577
- uint120?: undefined;
2578
- uint240?: undefined;
2579
2613
  uint24?: undefined;
2614
+ uint16?: undefined;
2580
2615
  uint56?: undefined;
2581
- uint64?: undefined;
2582
2616
  uint72?: undefined;
2583
2617
  uint80?: undefined;
2584
2618
  uint88?: undefined;
2585
2619
  uint96?: undefined;
2586
2620
  uint104?: undefined;
2621
+ uint120?: undefined;
2587
2622
  uint128?: undefined;
2588
2623
  uint136?: undefined;
2589
2624
  uint144?: undefined;
@@ -2597,6 +2632,7 @@ export declare const optionArgsSchema: z.ZodObject<{
2597
2632
  uint216?: undefined;
2598
2633
  uint224?: undefined;
2599
2634
  uint232?: undefined;
2635
+ uint240?: undefined;
2600
2636
  uint248?: undefined;
2601
2637
  }, primaryType extends "EIP712Domain" | keyof typedData = keyof typedData>(parameters: import("viem").TypedDataDefinition<typedData, primaryType>) => Promise<`0x${string}`>;
2602
2638
  publicKey: `0x${string}`;
@@ -2606,7 +2642,6 @@ export declare const optionArgsSchema: z.ZodObject<{
2606
2642
  "max-executors"?: number | undefined;
2607
2643
  "min-executor-balance"?: bigint | undefined;
2608
2644
  }, {
2609
- port: number;
2610
2645
  entrypoints: string;
2611
2646
  "no-profit-bundling": boolean;
2612
2647
  "safe-mode": boolean;
@@ -2625,43 +2660,50 @@ export declare const optionArgsSchema: z.ZodObject<{
2625
2660
  "rpc-methods": string | null;
2626
2661
  "aa95-gas-multiplier": string;
2627
2662
  "enable-instant-bundling-endpoint": boolean;
2628
- "chain-type": "default" | "op-stack" | "arbitrum" | "hedera";
2663
+ "chain-type": "default" | "op-stack" | "arbitrum" | "hedera" | "mantle";
2629
2664
  "legacy-transactions": boolean;
2630
2665
  "balance-override": boolean;
2631
2666
  "local-gas-limit-calculation": boolean;
2632
2667
  "flush-stuck-transactions-during-startup": boolean;
2633
- "paymaster-gas-limit-multiplier": string;
2668
+ port: number;
2634
2669
  "rpc-url": string;
2635
2670
  "polling-interval": number;
2636
2671
  json: boolean;
2637
2672
  "network-name": string;
2638
- "log-level": "error" | "info" | "debug" | "fatal" | "warn" | "trace";
2673
+ "log-level": "error" | "info" | "trace" | "debug" | "warn" | "fatal";
2639
2674
  "bundle-mode": "manual" | "auto";
2640
2675
  "enable-debug-endpoints": boolean;
2641
2676
  "expiration-check": boolean;
2642
2677
  "dangerous-skip-user-operation-validation": boolean;
2643
2678
  "deploy-simulations-contract": boolean;
2644
2679
  tenderly: boolean;
2680
+ "call-gas-limit-multiplier": string;
2681
+ "paymaster-gas-limit-multiplier": string;
2682
+ "binary-search-tolerance-delta"?: string | undefined;
2683
+ "binary-search-gas-allowance"?: string | undefined;
2645
2684
  "bundle-bulker-address"?: string | undefined;
2646
2685
  "per-op-inflator-address"?: string | undefined;
2647
2686
  "send-transaction-rpc-url"?: string | undefined;
2648
2687
  "max-block-range"?: number | undefined;
2649
2688
  "block-tag-support"?: boolean | undefined;
2689
+ "code-override-support"?: boolean | undefined;
2650
2690
  timeout?: number | undefined;
2651
2691
  websocket?: boolean | undefined;
2652
2692
  "websocket-max-payload-size"?: number | undefined;
2653
2693
  "redis-queue-endpoint"?: string | undefined;
2654
- "public-client-log-level"?: "error" | "info" | "debug" | "fatal" | "warn" | "trace" | undefined;
2655
- "wallet-client-log-level"?: "error" | "info" | "debug" | "fatal" | "warn" | "trace" | undefined;
2656
- "rpc-log-level"?: "error" | "info" | "debug" | "fatal" | "warn" | "trace" | undefined;
2657
- "mempool-log-level"?: "error" | "info" | "debug" | "fatal" | "warn" | "trace" | undefined;
2658
- "executor-log-level"?: "error" | "info" | "debug" | "fatal" | "warn" | "trace" | undefined;
2659
- "reputation-manager-log-level"?: "error" | "info" | "debug" | "fatal" | "warn" | "trace" | undefined;
2660
- "nonce-queuer-log-level"?: "error" | "info" | "debug" | "fatal" | "warn" | "trace" | undefined;
2694
+ "redis-event-manager-queue-name"?: string | undefined;
2695
+ "public-client-log-level"?: "error" | "info" | "trace" | "debug" | "warn" | "fatal" | undefined;
2696
+ "wallet-client-log-level"?: "error" | "info" | "trace" | "debug" | "warn" | "fatal" | undefined;
2697
+ "rpc-log-level"?: "error" | "info" | "trace" | "debug" | "warn" | "fatal" | undefined;
2698
+ "mempool-log-level"?: "error" | "info" | "trace" | "debug" | "warn" | "fatal" | undefined;
2699
+ "executor-log-level"?: "error" | "info" | "trace" | "debug" | "warn" | "fatal" | undefined;
2700
+ "reputation-manager-log-level"?: "error" | "info" | "trace" | "debug" | "warn" | "fatal" | undefined;
2701
+ "nonce-queuer-log-level"?: "error" | "info" | "trace" | "debug" | "warn" | "fatal" | undefined;
2661
2702
  "api-version"?: string | undefined;
2662
2703
  "default-api-version"?: "v1" | "v2" | undefined;
2663
2704
  "fixed-gas-limit-for-estimation"?: string | undefined;
2664
2705
  "entrypoint-simulation-contract"?: unknown;
2706
+ "refill-helper-contract"?: string | undefined;
2665
2707
  "utility-private-key"?: string | undefined;
2666
2708
  "max-executors"?: number | undefined;
2667
2709
  "min-executor-balance"?: string | undefined;