@pimlico/alto 0.0.0-main.20250307T203608 → 0.0.0-main.20250324T173034

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 (289) hide show
  1. package/esm/cli/alto.js +5 -3
  2. package/esm/cli/alto.js.map +1 -1
  3. package/esm/cli/config/bundler.d.ts +87 -36
  4. package/esm/cli/config/bundler.js +15 -3
  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 +59 -5
  8. package/esm/cli/config/options.js.map +1 -1
  9. package/esm/cli/handler.js +3 -4
  10. package/esm/cli/handler.js.map +1 -1
  11. package/esm/cli/setupServer.d.ts +1 -1
  12. package/esm/cli/setupServer.js +109 -49
  13. package/esm/cli/setupServer.js.map +1 -1
  14. package/esm/createConfig.d.ts +1 -0
  15. package/esm/createConfig.js +1 -0
  16. package/esm/createConfig.js.map +1 -1
  17. package/esm/executor/executor.d.ts +3 -3
  18. package/esm/executor/executor.js +1 -3
  19. package/esm/executor/executor.js.map +1 -1
  20. package/esm/executor/executorManager.d.ts +14 -12
  21. package/esm/executor/executorManager.js +131 -97
  22. package/esm/executor/executorManager.js.map +1 -1
  23. package/esm/executor/index.d.ts +1 -1
  24. package/esm/executor/index.js +1 -1
  25. package/esm/executor/senderManager/createMemorySenderManager.d.ts +8 -0
  26. package/esm/executor/senderManager/createMemorySenderManager.js +41 -0
  27. package/esm/executor/senderManager/createMemorySenderManager.js.map +1 -0
  28. package/esm/executor/senderManager/createRedisSenderManager.d.ts +8 -0
  29. package/esm/executor/senderManager/createRedisSenderManager.js +78 -0
  30. package/esm/executor/senderManager/createRedisSenderManager.js.map +1 -0
  31. package/esm/executor/senderManager/flushOnStartUp.d.ts +9 -0
  32. package/esm/executor/senderManager/flushOnStartUp.js +33 -0
  33. package/esm/executor/senderManager/flushOnStartUp.js.map +1 -0
  34. package/esm/executor/senderManager/index.d.ts +15 -0
  35. package/esm/executor/senderManager/index.js +20 -0
  36. package/esm/executor/senderManager/index.js.map +1 -0
  37. package/esm/executor/senderManager/validateAndRefill.d.ts +11 -0
  38. package/esm/executor/senderManager/validateAndRefill.js +111 -0
  39. package/esm/executor/senderManager/validateAndRefill.js.map +1 -0
  40. package/esm/executor/utils.d.ts +8 -2
  41. package/esm/executor/utils.js +9 -1
  42. package/esm/executor/utils.js.map +1 -1
  43. package/esm/handlers/arbitrumGasPriceManager.d.ts +7 -4
  44. package/esm/handlers/arbitrumGasPriceManager.js +19 -13
  45. package/esm/handlers/arbitrumGasPriceManager.js.map +1 -1
  46. package/esm/handlers/eventManager.js +5 -4
  47. package/esm/handlers/eventManager.js.map +1 -1
  48. package/esm/handlers/gasPriceManager.d.ts +1 -4
  49. package/esm/handlers/gasPriceManager.js +81 -48
  50. package/esm/handlers/gasPriceManager.js.map +1 -1
  51. package/esm/handlers/mantleGasPriceManager.d.ts +6 -3
  52. package/esm/handlers/mantleGasPriceManager.js +23 -11
  53. package/esm/handlers/mantleGasPriceManager.js.map +1 -1
  54. package/esm/handlers/optimismManager.d.ts +5 -2
  55. package/esm/handlers/optimismManager.js +8 -5
  56. package/esm/handlers/optimismManager.js.map +1 -1
  57. package/esm/mempool/index.d.ts +0 -1
  58. package/esm/mempool/index.js +0 -1
  59. package/esm/mempool/index.js.map +1 -1
  60. package/esm/mempool/mempool.d.ts +95 -27
  61. package/esm/mempool/mempool.js +132 -252
  62. package/esm/mempool/mempool.js.map +1 -1
  63. package/esm/mempool/monitoring.d.ts +8 -4
  64. package/esm/mempool/monitoring.js +72 -9
  65. package/esm/mempool/monitoring.js.map +1 -1
  66. package/esm/rpc/estimation/gasEstimationHandler.d.ts +10 -4
  67. package/esm/rpc/estimation/gasEstimationHandler.js +16 -19
  68. package/esm/rpc/estimation/gasEstimationHandler.js.map +1 -1
  69. package/esm/rpc/estimation/gasEstimationsV07.d.ts +7 -0
  70. package/esm/rpc/estimation/gasEstimationsV07.js +69 -4
  71. package/esm/rpc/estimation/gasEstimationsV07.js.map +1 -1
  72. package/esm/rpc/methods/debug_bundler_clearReputation.js.map +1 -1
  73. package/esm/rpc/methods/debug_bundler_dumpMempool.js +2 -2
  74. package/esm/rpc/methods/debug_bundler_dumpMempool.js.map +1 -1
  75. package/esm/rpc/methods/debug_bundler_setBundlingMode.js.map +1 -1
  76. package/esm/rpc/methods/eth_chainId.js +1 -1
  77. package/esm/rpc/methods/eth_chainId.js.map +1 -1
  78. package/esm/rpc/methods/eth_sendUserOperation.js +2 -2
  79. package/esm/rpc/methods/eth_sendUserOperation.js.map +1 -1
  80. package/esm/rpc/methods/index.js +0 -5
  81. package/esm/rpc/methods/index.js.map +1 -1
  82. package/esm/rpc/methods/pimlico_sendUserOperationNow.js +2 -3
  83. package/esm/rpc/methods/pimlico_sendUserOperationNow.js.map +1 -1
  84. package/esm/rpc/rpcHandler.d.ts +4 -7
  85. package/esm/rpc/rpcHandler.js +37 -37
  86. package/esm/rpc/rpcHandler.js.map +1 -1
  87. package/esm/rpc/validation/SafeValidator.js +2 -2
  88. package/esm/rpc/validation/SafeValidator.js.map +1 -1
  89. package/esm/rpc/validation/UnsafeValidator.d.ts +7 -2
  90. package/esm/rpc/validation/UnsafeValidator.js +20 -4
  91. package/esm/rpc/validation/UnsafeValidator.js.map +1 -1
  92. package/esm/store/createMemoryOutstandingStore.d.ts +28 -0
  93. package/esm/store/createMemoryOutstandingStore.js +221 -0
  94. package/esm/store/createMemoryOutstandingStore.js.map +1 -0
  95. package/esm/store/createMempoolStore.d.ts +8 -0
  96. package/esm/store/createMempoolStore.js +193 -0
  97. package/esm/store/createMempoolStore.js.map +1 -0
  98. package/esm/store/createRedisOutstandingStore.d.ts +27 -0
  99. package/esm/store/createRedisOutstandingStore.js +344 -0
  100. package/esm/store/createRedisOutstandingStore.js.map +1 -0
  101. package/esm/store/createRedisStore.d.ts +9 -0
  102. package/esm/store/createRedisStore.js +131 -0
  103. package/esm/store/createRedisStore.js.map +1 -0
  104. package/esm/store/createStore.d.ts +6 -0
  105. package/esm/store/createStore.js +66 -0
  106. package/esm/store/createStore.js.map +1 -0
  107. package/esm/store/index.d.ts +81 -0
  108. package/esm/store/index.js +2 -0
  109. package/esm/store/index.js.map +1 -0
  110. package/esm/types/interfaces.d.ts +7 -3
  111. package/esm/types/mempool.d.ts +2 -15
  112. package/esm/types/mempool.js.map +1 -1
  113. package/esm/types/schemas.d.ts +4617 -7632
  114. package/esm/types/schemas.js +19 -42
  115. package/esm/types/schemas.js.map +1 -1
  116. package/esm/utils/minMaxQueue/createMemoryMinMaxQueue.d.ts +6 -0
  117. package/esm/utils/minMaxQueue/createMemoryMinMaxQueue.js +53 -0
  118. package/esm/utils/minMaxQueue/createMemoryMinMaxQueue.js.map +1 -0
  119. package/esm/utils/minMaxQueue/createRedisMinMaxQueue.d.ts +7 -0
  120. package/esm/utils/minMaxQueue/createRedisMinMaxQueue.js +98 -0
  121. package/esm/utils/minMaxQueue/createRedisMinMaxQueue.js.map +1 -0
  122. package/esm/utils/minMaxQueue/index.d.ts +12 -0
  123. package/esm/utils/minMaxQueue/index.js +12 -0
  124. package/esm/utils/minMaxQueue/index.js.map +1 -0
  125. package/esm/utils/validation.js +8 -10
  126. package/esm/utils/validation.js.map +1 -1
  127. package/lib/cli/alto.js +3 -1
  128. package/lib/cli/alto.js.map +1 -1
  129. package/lib/cli/config/bundler.d.ts +87 -36
  130. package/lib/cli/config/bundler.js +16 -4
  131. package/lib/cli/config/bundler.js.map +1 -1
  132. package/lib/cli/config/options.d.ts +2 -1
  133. package/lib/cli/config/options.js +60 -6
  134. package/lib/cli/config/options.js.map +1 -1
  135. package/lib/cli/handler.js +3 -4
  136. package/lib/cli/handler.js.map +1 -1
  137. package/lib/cli/setupServer.d.ts +1 -1
  138. package/lib/cli/setupServer.js +108 -48
  139. package/lib/cli/setupServer.js.map +1 -1
  140. package/lib/createConfig.d.ts +1 -0
  141. package/lib/createConfig.js +1 -0
  142. package/lib/createConfig.js.map +1 -1
  143. package/lib/executor/executor.d.ts +3 -3
  144. package/lib/executor/executor.js +1 -3
  145. package/lib/executor/executor.js.map +1 -1
  146. package/lib/executor/executorManager.d.ts +14 -12
  147. package/lib/executor/executorManager.js +131 -97
  148. package/lib/executor/executorManager.js.map +1 -1
  149. package/lib/executor/index.d.ts +1 -1
  150. package/lib/executor/index.js +1 -1
  151. package/lib/executor/senderManager/createMemorySenderManager.d.ts +8 -0
  152. package/lib/executor/senderManager/createMemorySenderManager.js +45 -0
  153. package/lib/executor/senderManager/createMemorySenderManager.js.map +1 -0
  154. package/lib/executor/senderManager/createRedisSenderManager.d.ts +8 -0
  155. package/lib/executor/senderManager/createRedisSenderManager.js +85 -0
  156. package/lib/executor/senderManager/createRedisSenderManager.js.map +1 -0
  157. package/lib/executor/senderManager/flushOnStartUp.d.ts +9 -0
  158. package/lib/executor/senderManager/flushOnStartUp.js +37 -0
  159. package/lib/executor/senderManager/flushOnStartUp.js.map +1 -0
  160. package/lib/executor/senderManager/index.d.ts +15 -0
  161. package/lib/executor/senderManager/index.js +25 -0
  162. package/lib/executor/senderManager/index.js.map +1 -0
  163. package/lib/executor/senderManager/validateAndRefill.d.ts +11 -0
  164. package/lib/executor/senderManager/validateAndRefill.js +115 -0
  165. package/lib/executor/senderManager/validateAndRefill.js.map +1 -0
  166. package/lib/executor/utils.d.ts +8 -2
  167. package/lib/executor/utils.js +9 -1
  168. package/lib/executor/utils.js.map +1 -1
  169. package/lib/handlers/arbitrumGasPriceManager.d.ts +7 -4
  170. package/lib/handlers/arbitrumGasPriceManager.js +19 -13
  171. package/lib/handlers/arbitrumGasPriceManager.js.map +1 -1
  172. package/lib/handlers/eventManager.js +5 -4
  173. package/lib/handlers/eventManager.js.map +1 -1
  174. package/lib/handlers/gasPriceManager.d.ts +1 -4
  175. package/lib/handlers/gasPriceManager.js +81 -48
  176. package/lib/handlers/gasPriceManager.js.map +1 -1
  177. package/lib/handlers/mantleGasPriceManager.d.ts +6 -3
  178. package/lib/handlers/mantleGasPriceManager.js +23 -11
  179. package/lib/handlers/mantleGasPriceManager.js.map +1 -1
  180. package/lib/handlers/optimismManager.d.ts +5 -2
  181. package/lib/handlers/optimismManager.js +8 -5
  182. package/lib/handlers/optimismManager.js.map +1 -1
  183. package/lib/mempool/index.d.ts +0 -1
  184. package/lib/mempool/index.js +0 -1
  185. package/lib/mempool/index.js.map +1 -1
  186. package/lib/mempool/mempool.d.ts +95 -27
  187. package/lib/mempool/mempool.js +133 -253
  188. package/lib/mempool/mempool.js.map +1 -1
  189. package/lib/mempool/monitoring.d.ts +8 -4
  190. package/lib/mempool/monitoring.js +72 -9
  191. package/lib/mempool/monitoring.js.map +1 -1
  192. package/lib/rpc/estimation/gasEstimationHandler.d.ts +10 -4
  193. package/lib/rpc/estimation/gasEstimationHandler.js +15 -18
  194. package/lib/rpc/estimation/gasEstimationHandler.js.map +1 -1
  195. package/lib/rpc/estimation/gasEstimationsV07.d.ts +7 -0
  196. package/lib/rpc/estimation/gasEstimationsV07.js +69 -4
  197. package/lib/rpc/estimation/gasEstimationsV07.js.map +1 -1
  198. package/lib/rpc/methods/debug_bundler_clearReputation.js.map +1 -1
  199. package/lib/rpc/methods/debug_bundler_dumpMempool.js +2 -2
  200. package/lib/rpc/methods/debug_bundler_dumpMempool.js.map +1 -1
  201. package/lib/rpc/methods/debug_bundler_setBundlingMode.js.map +1 -1
  202. package/lib/rpc/methods/eth_chainId.js +1 -1
  203. package/lib/rpc/methods/eth_chainId.js.map +1 -1
  204. package/lib/rpc/methods/eth_sendUserOperation.js +2 -2
  205. package/lib/rpc/methods/eth_sendUserOperation.js.map +1 -1
  206. package/lib/rpc/methods/index.js +0 -5
  207. package/lib/rpc/methods/index.js.map +1 -1
  208. package/lib/rpc/methods/pimlico_sendUserOperationNow.js +2 -3
  209. package/lib/rpc/methods/pimlico_sendUserOperationNow.js.map +1 -1
  210. package/lib/rpc/rpcHandler.d.ts +4 -7
  211. package/lib/rpc/rpcHandler.js +37 -37
  212. package/lib/rpc/rpcHandler.js.map +1 -1
  213. package/lib/rpc/validation/SafeValidator.js +2 -2
  214. package/lib/rpc/validation/SafeValidator.js.map +1 -1
  215. package/lib/rpc/validation/UnsafeValidator.d.ts +7 -2
  216. package/lib/rpc/validation/UnsafeValidator.js +20 -4
  217. package/lib/rpc/validation/UnsafeValidator.js.map +1 -1
  218. package/lib/store/createMemoryOutstandingStore.d.ts +28 -0
  219. package/lib/store/createMemoryOutstandingStore.js +226 -0
  220. package/lib/store/createMemoryOutstandingStore.js.map +1 -0
  221. package/lib/store/createMempoolStore.d.ts +8 -0
  222. package/lib/store/createMempoolStore.js +197 -0
  223. package/lib/store/createMempoolStore.js.map +1 -0
  224. package/lib/store/createRedisOutstandingStore.d.ts +27 -0
  225. package/lib/store/createRedisOutstandingStore.js +349 -0
  226. package/lib/store/createRedisOutstandingStore.js.map +1 -0
  227. package/lib/store/createRedisStore.d.ts +9 -0
  228. package/lib/store/createRedisStore.js +138 -0
  229. package/lib/store/createRedisStore.js.map +1 -0
  230. package/lib/store/createStore.d.ts +6 -0
  231. package/lib/store/createStore.js +70 -0
  232. package/lib/store/createStore.js.map +1 -0
  233. package/lib/store/index.d.ts +81 -0
  234. package/lib/store/index.js +6 -0
  235. package/lib/store/index.js.map +1 -0
  236. package/lib/types/interfaces.d.ts +7 -3
  237. package/lib/types/mempool.d.ts +2 -15
  238. package/lib/types/mempool.js.map +1 -1
  239. package/lib/types/schemas.d.ts +4617 -7632
  240. package/lib/types/schemas.js +24 -47
  241. package/lib/types/schemas.js.map +1 -1
  242. package/lib/utils/minMaxQueue/createMemoryMinMaxQueue.d.ts +6 -0
  243. package/lib/utils/minMaxQueue/createMemoryMinMaxQueue.js +57 -0
  244. package/lib/utils/minMaxQueue/createMemoryMinMaxQueue.js.map +1 -0
  245. package/lib/utils/minMaxQueue/createRedisMinMaxQueue.d.ts +7 -0
  246. package/lib/utils/minMaxQueue/createRedisMinMaxQueue.js +105 -0
  247. package/lib/utils/minMaxQueue/createRedisMinMaxQueue.js.map +1 -0
  248. package/lib/utils/minMaxQueue/index.d.ts +12 -0
  249. package/lib/utils/minMaxQueue/index.js +16 -0
  250. package/lib/utils/minMaxQueue/index.js.map +1 -0
  251. package/lib/utils/validation.js +8 -10
  252. package/lib/utils/validation.js.map +1 -1
  253. package/package.json +2 -2
  254. package/esm/executor/senderManager.d.ts +0 -26
  255. package/esm/executor/senderManager.js +0 -216
  256. package/esm/executor/senderManager.js.map +0 -1
  257. package/esm/mempool/nonceQueuer.d.ts +0 -32
  258. package/esm/mempool/nonceQueuer.js +0 -143
  259. package/esm/mempool/nonceQueuer.js.map +0 -1
  260. package/esm/mempool/store.d.ts +0 -22
  261. package/esm/mempool/store.js +0 -124
  262. package/esm/mempool/store.js.map +0 -1
  263. package/esm/rpc/methods/pimlico_experimental_estimateUserOperationGas7702.d.ts +0 -979
  264. package/esm/rpc/methods/pimlico_experimental_estimateUserOperationGas7702.js +0 -22
  265. package/esm/rpc/methods/pimlico_experimental_estimateUserOperationGas7702.js.map +0 -1
  266. package/esm/rpc/methods/pimlico_experimental_sendUserOperation7702.d.ts +0 -422
  267. package/esm/rpc/methods/pimlico_experimental_sendUserOperation7702.js +0 -19
  268. package/esm/rpc/methods/pimlico_experimental_sendUserOperation7702.js.map +0 -1
  269. package/esm/utils/slidingWindowTimedQueue.d.ts +0 -12
  270. package/esm/utils/slidingWindowTimedQueue.js +0 -48
  271. package/esm/utils/slidingWindowTimedQueue.js.map +0 -1
  272. package/lib/executor/senderManager.d.ts +0 -26
  273. package/lib/executor/senderManager.js +0 -220
  274. package/lib/executor/senderManager.js.map +0 -1
  275. package/lib/mempool/nonceQueuer.d.ts +0 -32
  276. package/lib/mempool/nonceQueuer.js +0 -147
  277. package/lib/mempool/nonceQueuer.js.map +0 -1
  278. package/lib/mempool/store.d.ts +0 -22
  279. package/lib/mempool/store.js +0 -128
  280. package/lib/mempool/store.js.map +0 -1
  281. package/lib/rpc/methods/pimlico_experimental_estimateUserOperationGas7702.d.ts +0 -979
  282. package/lib/rpc/methods/pimlico_experimental_estimateUserOperationGas7702.js +0 -25
  283. package/lib/rpc/methods/pimlico_experimental_estimateUserOperationGas7702.js.map +0 -1
  284. package/lib/rpc/methods/pimlico_experimental_sendUserOperation7702.d.ts +0 -422
  285. package/lib/rpc/methods/pimlico_experimental_sendUserOperation7702.js +0 -22
  286. package/lib/rpc/methods/pimlico_experimental_sendUserOperation7702.js.map +0 -1
  287. package/lib/utils/slidingWindowTimedQueue.d.ts +0 -12
  288. package/lib/utils/slidingWindowTimedQueue.js +0 -52
  289. package/lib/utils/slidingWindowTimedQueue.js.map +0 -1
@@ -1,979 +0,0 @@
1
- export declare const experimentalEstimateUserOperationGas7702Handler: {
2
- schema: import("zod").ZodObject<{
3
- method: import("zod").ZodLiteral<"pimlico_experimental_estimateUserOperationGas7702">;
4
- params: import("zod").ZodUnion<[import("zod").ZodTuple<[import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodObject<{
5
- sender: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
6
- nonce: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
7
- initCode: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
8
- callData: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
9
- callGasLimit: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
10
- verificationGasLimit: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
11
- preVerificationGas: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
12
- maxPriorityFeePerGas: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
13
- maxFeePerGas: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
14
- paymasterAndData: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
15
- signature: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
16
- eip7702Auth: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
17
- contractAddress: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
18
- chainId: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
19
- nonce: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
20
- r: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
21
- s: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
22
- v: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
23
- yParity: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
24
- }, "strip", import("zod").ZodTypeAny, {
25
- nonce: number;
26
- contractAddress: `0x${string}`;
27
- chainId: number;
28
- r: `0x${string}`;
29
- s: `0x${string}`;
30
- v: bigint;
31
- yParity: number;
32
- }, {
33
- nonce: string | number | bigint;
34
- contractAddress: string;
35
- chainId: string | number | bigint;
36
- r: string;
37
- s: string;
38
- v: string | number | bigint;
39
- yParity: string | number | bigint;
40
- }>>>;
41
- }, "strict", import("zod").ZodTypeAny, {
42
- sender: `0x${string}`;
43
- nonce: bigint;
44
- initCode: `0x${string}`;
45
- paymasterAndData: `0x${string}`;
46
- callData: `0x${string}`;
47
- callGasLimit: bigint;
48
- verificationGasLimit: bigint;
49
- preVerificationGas: bigint;
50
- maxFeePerGas: bigint;
51
- maxPriorityFeePerGas: bigint;
52
- signature: `0x${string}`;
53
- eip7702Auth?: {
54
- nonce: number;
55
- contractAddress: `0x${string}`;
56
- chainId: number;
57
- r: `0x${string}`;
58
- s: `0x${string}`;
59
- v: bigint;
60
- yParity: number;
61
- } | null | undefined;
62
- }, {
63
- sender: string;
64
- nonce: string | number | bigint;
65
- initCode: string;
66
- paymasterAndData: string;
67
- callData: string;
68
- signature: string;
69
- callGasLimit?: string | number | bigint | undefined;
70
- verificationGasLimit?: string | number | bigint | undefined;
71
- preVerificationGas?: string | number | bigint | undefined;
72
- maxPriorityFeePerGas?: string | number | bigint | undefined;
73
- maxFeePerGas?: string | number | bigint | undefined;
74
- eip7702Auth?: {
75
- nonce: string | number | bigint;
76
- contractAddress: string;
77
- chainId: string | number | bigint;
78
- r: string;
79
- s: string;
80
- v: string | number | bigint;
81
- yParity: string | number | bigint;
82
- } | null | undefined;
83
- }>, {
84
- sender: `0x${string}`;
85
- nonce: bigint;
86
- initCode: `0x${string}`;
87
- paymasterAndData: `0x${string}`;
88
- callData: `0x${string}`;
89
- callGasLimit: bigint;
90
- verificationGasLimit: bigint;
91
- preVerificationGas: bigint;
92
- maxFeePerGas: bigint;
93
- maxPriorityFeePerGas: bigint;
94
- signature: `0x${string}`;
95
- eip7702Auth?: {
96
- nonce: number;
97
- contractAddress: `0x${string}`;
98
- chainId: number;
99
- r: `0x${string}`;
100
- s: `0x${string}`;
101
- v: bigint;
102
- yParity: number;
103
- } | null | undefined;
104
- }, {
105
- sender: string;
106
- nonce: string | number | bigint;
107
- initCode: string;
108
- paymasterAndData: string;
109
- callData: string;
110
- signature: string;
111
- callGasLimit?: string | number | bigint | undefined;
112
- verificationGasLimit?: string | number | bigint | undefined;
113
- preVerificationGas?: string | number | bigint | undefined;
114
- maxPriorityFeePerGas?: string | number | bigint | undefined;
115
- maxFeePerGas?: string | number | bigint | undefined;
116
- eip7702Auth?: {
117
- nonce: string | number | bigint;
118
- contractAddress: string;
119
- chainId: string | number | bigint;
120
- r: string;
121
- s: string;
122
- v: string | number | bigint;
123
- yParity: string | number | bigint;
124
- } | null | undefined;
125
- }>, import("zod").ZodEffects<import("zod").ZodObject<{
126
- sender: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
127
- nonce: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
128
- factory: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
129
- factoryData: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
130
- callData: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
131
- callGasLimit: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
132
- verificationGasLimit: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
133
- preVerificationGas: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
134
- maxFeePerGas: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
135
- maxPriorityFeePerGas: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
136
- paymaster: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
137
- paymasterVerificationGasLimit: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
138
- paymasterPostOpGasLimit: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
139
- paymasterData: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
140
- signature: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
141
- eip7702Auth: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
142
- contractAddress: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
143
- chainId: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
144
- nonce: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
145
- r: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
146
- s: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
147
- v: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
148
- yParity: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
149
- }, "strip", import("zod").ZodTypeAny, {
150
- nonce: number;
151
- contractAddress: `0x${string}`;
152
- chainId: number;
153
- r: `0x${string}`;
154
- s: `0x${string}`;
155
- v: bigint;
156
- yParity: number;
157
- }, {
158
- nonce: string | number | bigint;
159
- contractAddress: string;
160
- chainId: string | number | bigint;
161
- r: string;
162
- s: string;
163
- v: string | number | bigint;
164
- yParity: string | number | bigint;
165
- }>>>;
166
- }, "strict", import("zod").ZodTypeAny, {
167
- sender: `0x${string}`;
168
- factory: `0x${string}` | null;
169
- paymaster: `0x${string}` | null;
170
- nonce: bigint;
171
- callData: `0x${string}`;
172
- callGasLimit: bigint;
173
- verificationGasLimit: bigint;
174
- preVerificationGas: bigint;
175
- maxFeePerGas: bigint;
176
- maxPriorityFeePerGas: bigint;
177
- signature: `0x${string}`;
178
- paymasterVerificationGasLimit: bigint | null;
179
- paymasterPostOpGasLimit: bigint | null;
180
- factoryData: `0x${string}` | null;
181
- paymasterData: `0x${string}` | null;
182
- eip7702Auth?: {
183
- nonce: number;
184
- contractAddress: `0x${string}`;
185
- chainId: number;
186
- r: `0x${string}`;
187
- s: `0x${string}`;
188
- v: bigint;
189
- yParity: number;
190
- } | null | undefined;
191
- }, {
192
- sender: string;
193
- nonce: string | number | bigint;
194
- callData: string;
195
- signature: string;
196
- factory?: string | null | undefined;
197
- factoryData?: string | null | undefined;
198
- callGasLimit?: string | number | bigint | undefined;
199
- verificationGasLimit?: string | number | bigint | undefined;
200
- preVerificationGas?: string | number | bigint | undefined;
201
- maxFeePerGas?: string | number | bigint | undefined;
202
- maxPriorityFeePerGas?: string | number | bigint | undefined;
203
- paymaster?: string | null | undefined;
204
- paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
205
- paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
206
- paymasterData?: string | null | undefined;
207
- eip7702Auth?: {
208
- nonce: string | number | bigint;
209
- contractAddress: string;
210
- chainId: string | number | bigint;
211
- r: string;
212
- s: string;
213
- v: string | number | bigint;
214
- yParity: string | number | bigint;
215
- } | null | undefined;
216
- }>, {
217
- sender: `0x${string}`;
218
- factory: `0x${string}` | null;
219
- paymaster: `0x${string}` | null;
220
- nonce: bigint;
221
- callData: `0x${string}`;
222
- callGasLimit: bigint;
223
- verificationGasLimit: bigint;
224
- preVerificationGas: bigint;
225
- maxFeePerGas: bigint;
226
- maxPriorityFeePerGas: bigint;
227
- signature: `0x${string}`;
228
- paymasterVerificationGasLimit: bigint | null;
229
- paymasterPostOpGasLimit: bigint | null;
230
- factoryData: `0x${string}` | null;
231
- paymasterData: `0x${string}` | null;
232
- eip7702Auth?: {
233
- nonce: number;
234
- contractAddress: `0x${string}`;
235
- chainId: number;
236
- r: `0x${string}`;
237
- s: `0x${string}`;
238
- v: bigint;
239
- yParity: number;
240
- } | null | undefined;
241
- }, {
242
- sender: string;
243
- nonce: string | number | bigint;
244
- callData: string;
245
- signature: string;
246
- factory?: string | null | undefined;
247
- factoryData?: string | null | undefined;
248
- callGasLimit?: string | number | bigint | undefined;
249
- verificationGasLimit?: string | number | bigint | undefined;
250
- preVerificationGas?: string | number | bigint | undefined;
251
- maxFeePerGas?: string | number | bigint | undefined;
252
- maxPriorityFeePerGas?: string | number | bigint | undefined;
253
- paymaster?: string | null | undefined;
254
- paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
255
- paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
256
- paymasterData?: string | null | undefined;
257
- eip7702Auth?: {
258
- nonce: string | number | bigint;
259
- contractAddress: string;
260
- chainId: string | number | bigint;
261
- r: string;
262
- s: string;
263
- v: string | number | bigint;
264
- yParity: string | number | bigint;
265
- } | null | undefined;
266
- }>]>, import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>], null>, import("zod").ZodTuple<[import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodObject<{
267
- sender: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
268
- nonce: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
269
- initCode: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
270
- callData: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
271
- callGasLimit: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
272
- verificationGasLimit: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
273
- preVerificationGas: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
274
- maxPriorityFeePerGas: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
275
- maxFeePerGas: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
276
- paymasterAndData: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
277
- signature: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
278
- eip7702Auth: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
279
- contractAddress: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
280
- chainId: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
281
- nonce: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
282
- r: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
283
- s: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
284
- v: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
285
- yParity: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
286
- }, "strip", import("zod").ZodTypeAny, {
287
- nonce: number;
288
- contractAddress: `0x${string}`;
289
- chainId: number;
290
- r: `0x${string}`;
291
- s: `0x${string}`;
292
- v: bigint;
293
- yParity: number;
294
- }, {
295
- nonce: string | number | bigint;
296
- contractAddress: string;
297
- chainId: string | number | bigint;
298
- r: string;
299
- s: string;
300
- v: string | number | bigint;
301
- yParity: string | number | bigint;
302
- }>>>;
303
- }, "strict", import("zod").ZodTypeAny, {
304
- sender: `0x${string}`;
305
- nonce: bigint;
306
- initCode: `0x${string}`;
307
- paymasterAndData: `0x${string}`;
308
- callData: `0x${string}`;
309
- callGasLimit: bigint;
310
- verificationGasLimit: bigint;
311
- preVerificationGas: bigint;
312
- maxFeePerGas: bigint;
313
- maxPriorityFeePerGas: bigint;
314
- signature: `0x${string}`;
315
- eip7702Auth?: {
316
- nonce: number;
317
- contractAddress: `0x${string}`;
318
- chainId: number;
319
- r: `0x${string}`;
320
- s: `0x${string}`;
321
- v: bigint;
322
- yParity: number;
323
- } | null | undefined;
324
- }, {
325
- sender: string;
326
- nonce: string | number | bigint;
327
- initCode: string;
328
- paymasterAndData: string;
329
- callData: string;
330
- signature: string;
331
- callGasLimit?: string | number | bigint | undefined;
332
- verificationGasLimit?: string | number | bigint | undefined;
333
- preVerificationGas?: string | number | bigint | undefined;
334
- maxPriorityFeePerGas?: string | number | bigint | undefined;
335
- maxFeePerGas?: string | number | bigint | undefined;
336
- eip7702Auth?: {
337
- nonce: string | number | bigint;
338
- contractAddress: string;
339
- chainId: string | number | bigint;
340
- r: string;
341
- s: string;
342
- v: string | number | bigint;
343
- yParity: string | number | bigint;
344
- } | null | undefined;
345
- }>, {
346
- sender: `0x${string}`;
347
- nonce: bigint;
348
- initCode: `0x${string}`;
349
- paymasterAndData: `0x${string}`;
350
- callData: `0x${string}`;
351
- callGasLimit: bigint;
352
- verificationGasLimit: bigint;
353
- preVerificationGas: bigint;
354
- maxFeePerGas: bigint;
355
- maxPriorityFeePerGas: bigint;
356
- signature: `0x${string}`;
357
- eip7702Auth?: {
358
- nonce: number;
359
- contractAddress: `0x${string}`;
360
- chainId: number;
361
- r: `0x${string}`;
362
- s: `0x${string}`;
363
- v: bigint;
364
- yParity: number;
365
- } | null | undefined;
366
- }, {
367
- sender: string;
368
- nonce: string | number | bigint;
369
- initCode: string;
370
- paymasterAndData: string;
371
- callData: string;
372
- signature: string;
373
- callGasLimit?: string | number | bigint | undefined;
374
- verificationGasLimit?: string | number | bigint | undefined;
375
- preVerificationGas?: string | number | bigint | undefined;
376
- maxPriorityFeePerGas?: string | number | bigint | undefined;
377
- maxFeePerGas?: string | number | bigint | undefined;
378
- eip7702Auth?: {
379
- nonce: string | number | bigint;
380
- contractAddress: string;
381
- chainId: string | number | bigint;
382
- r: string;
383
- s: string;
384
- v: string | number | bigint;
385
- yParity: string | number | bigint;
386
- } | null | undefined;
387
- }>, import("zod").ZodEffects<import("zod").ZodObject<{
388
- sender: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
389
- nonce: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
390
- factory: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
391
- factoryData: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
392
- callData: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
393
- callGasLimit: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
394
- verificationGasLimit: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
395
- preVerificationGas: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
396
- maxFeePerGas: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
397
- maxPriorityFeePerGas: import("zod").ZodDefault<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
398
- paymaster: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
399
- paymasterVerificationGasLimit: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
400
- paymasterPostOpGasLimit: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>>, bigint | null, string | number | bigint | null | undefined>;
401
- paymasterData: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>>>, `0x${string}` | null, string | null | undefined>;
402
- signature: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
403
- eip7702Auth: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
404
- contractAddress: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
405
- chainId: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
406
- nonce: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
407
- r: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
408
- s: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, `0x${string}`, string>;
409
- v: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
410
- yParity: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>, number, string | number | bigint>;
411
- }, "strip", import("zod").ZodTypeAny, {
412
- nonce: number;
413
- contractAddress: `0x${string}`;
414
- chainId: number;
415
- r: `0x${string}`;
416
- s: `0x${string}`;
417
- v: bigint;
418
- yParity: number;
419
- }, {
420
- nonce: string | number | bigint;
421
- contractAddress: string;
422
- chainId: string | number | bigint;
423
- r: string;
424
- s: string;
425
- v: string | number | bigint;
426
- yParity: string | number | bigint;
427
- }>>>;
428
- }, "strict", import("zod").ZodTypeAny, {
429
- sender: `0x${string}`;
430
- factory: `0x${string}` | null;
431
- paymaster: `0x${string}` | null;
432
- nonce: bigint;
433
- callData: `0x${string}`;
434
- callGasLimit: bigint;
435
- verificationGasLimit: bigint;
436
- preVerificationGas: bigint;
437
- maxFeePerGas: bigint;
438
- maxPriorityFeePerGas: bigint;
439
- signature: `0x${string}`;
440
- paymasterVerificationGasLimit: bigint | null;
441
- paymasterPostOpGasLimit: bigint | null;
442
- factoryData: `0x${string}` | null;
443
- paymasterData: `0x${string}` | null;
444
- eip7702Auth?: {
445
- nonce: number;
446
- contractAddress: `0x${string}`;
447
- chainId: number;
448
- r: `0x${string}`;
449
- s: `0x${string}`;
450
- v: bigint;
451
- yParity: number;
452
- } | null | undefined;
453
- }, {
454
- sender: string;
455
- nonce: string | number | bigint;
456
- callData: string;
457
- signature: string;
458
- factory?: string | null | undefined;
459
- factoryData?: string | null | undefined;
460
- callGasLimit?: string | number | bigint | undefined;
461
- verificationGasLimit?: string | number | bigint | undefined;
462
- preVerificationGas?: string | number | bigint | undefined;
463
- maxFeePerGas?: string | number | bigint | undefined;
464
- maxPriorityFeePerGas?: string | number | bigint | undefined;
465
- paymaster?: string | null | undefined;
466
- paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
467
- paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
468
- paymasterData?: string | null | undefined;
469
- eip7702Auth?: {
470
- nonce: string | number | bigint;
471
- contractAddress: string;
472
- chainId: string | number | bigint;
473
- r: string;
474
- s: string;
475
- v: string | number | bigint;
476
- yParity: string | number | bigint;
477
- } | null | undefined;
478
- }>, {
479
- sender: `0x${string}`;
480
- factory: `0x${string}` | null;
481
- paymaster: `0x${string}` | null;
482
- nonce: bigint;
483
- callData: `0x${string}`;
484
- callGasLimit: bigint;
485
- verificationGasLimit: bigint;
486
- preVerificationGas: bigint;
487
- maxFeePerGas: bigint;
488
- maxPriorityFeePerGas: bigint;
489
- signature: `0x${string}`;
490
- paymasterVerificationGasLimit: bigint | null;
491
- paymasterPostOpGasLimit: bigint | null;
492
- factoryData: `0x${string}` | null;
493
- paymasterData: `0x${string}` | null;
494
- eip7702Auth?: {
495
- nonce: number;
496
- contractAddress: `0x${string}`;
497
- chainId: number;
498
- r: `0x${string}`;
499
- s: `0x${string}`;
500
- v: bigint;
501
- yParity: number;
502
- } | null | undefined;
503
- }, {
504
- sender: string;
505
- nonce: string | number | bigint;
506
- callData: string;
507
- signature: string;
508
- factory?: string | null | undefined;
509
- factoryData?: string | null | undefined;
510
- callGasLimit?: string | number | bigint | undefined;
511
- verificationGasLimit?: string | number | bigint | undefined;
512
- preVerificationGas?: string | number | bigint | undefined;
513
- maxFeePerGas?: string | number | bigint | undefined;
514
- maxPriorityFeePerGas?: string | number | bigint | undefined;
515
- paymaster?: string | null | undefined;
516
- paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
517
- paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
518
- paymasterData?: string | null | undefined;
519
- eip7702Auth?: {
520
- nonce: string | number | bigint;
521
- contractAddress: string;
522
- chainId: string | number | bigint;
523
- r: string;
524
- s: string;
525
- v: string | number | bigint;
526
- yParity: string | number | bigint;
527
- } | null | undefined;
528
- }>]>, import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, import("zod").ZodRecord<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, import("zod").ZodObject<{
529
- balance: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
530
- nonce: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
531
- code: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>>;
532
- state: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>>>;
533
- stateDiff: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>>>;
534
- }, "strip", import("zod").ZodTypeAny, {
535
- balance?: bigint | undefined;
536
- nonce?: bigint | undefined;
537
- code?: `0x${string}` | undefined;
538
- state?: Partial<Record<`0x${string}`, `0x${string}`>> | undefined;
539
- stateDiff?: Partial<Record<`0x${string}`, `0x${string}`>> | undefined;
540
- }, {
541
- balance?: string | number | bigint | undefined;
542
- nonce?: string | number | bigint | undefined;
543
- code?: string | undefined;
544
- state?: Record<string, string> | undefined;
545
- stateDiff?: Record<string, string> | undefined;
546
- }>>], null>]>;
547
- result: import("zod").ZodUnion<[import("zod").ZodObject<{
548
- callGasLimit: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
549
- preVerificationGas: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
550
- verificationGasLimit: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
551
- verificationGas: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
552
- }, "strip", import("zod").ZodTypeAny, {
553
- callGasLimit: bigint;
554
- verificationGasLimit: bigint;
555
- preVerificationGas: bigint;
556
- verificationGas?: bigint | undefined;
557
- }, {
558
- callGasLimit: string | number | bigint;
559
- verificationGasLimit: string | number | bigint;
560
- preVerificationGas: string | number | bigint;
561
- verificationGas?: string | number | bigint | undefined;
562
- }>, import("zod").ZodObject<{
563
- callGasLimit: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
564
- preVerificationGas: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
565
- verificationGasLimit: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>;
566
- paymasterVerificationGasLimit: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
567
- paymasterPostOpGasLimit: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodBigInt]>, bigint, string | number | bigint>, bigint, string | number | bigint>>;
568
- }, "strip", import("zod").ZodTypeAny, {
569
- callGasLimit: bigint;
570
- verificationGasLimit: bigint;
571
- preVerificationGas: bigint;
572
- paymasterVerificationGasLimit?: bigint | undefined;
573
- paymasterPostOpGasLimit?: bigint | undefined;
574
- }, {
575
- callGasLimit: string | number | bigint;
576
- verificationGasLimit: string | number | bigint;
577
- preVerificationGas: string | number | bigint;
578
- paymasterVerificationGasLimit?: string | number | bigint | undefined;
579
- paymasterPostOpGasLimit?: string | number | bigint | undefined;
580
- }>]>;
581
- }, "strip", import("zod").ZodTypeAny, {
582
- result: ({
583
- callGasLimit: bigint;
584
- verificationGasLimit: bigint;
585
- preVerificationGas: bigint;
586
- verificationGas?: bigint | undefined;
587
- } | {
588
- callGasLimit: bigint;
589
- verificationGasLimit: bigint;
590
- preVerificationGas: bigint;
591
- paymasterVerificationGasLimit?: bigint | undefined;
592
- paymasterPostOpGasLimit?: bigint | undefined;
593
- }) & ({
594
- callGasLimit: bigint;
595
- verificationGasLimit: bigint;
596
- preVerificationGas: bigint;
597
- verificationGas?: bigint | undefined;
598
- } | {
599
- callGasLimit: bigint;
600
- verificationGasLimit: bigint;
601
- preVerificationGas: bigint;
602
- paymasterVerificationGasLimit?: bigint | undefined;
603
- paymasterPostOpGasLimit?: bigint | undefined;
604
- } | undefined);
605
- params: [{
606
- sender: `0x${string}`;
607
- nonce: bigint;
608
- initCode: `0x${string}`;
609
- paymasterAndData: `0x${string}`;
610
- callData: `0x${string}`;
611
- callGasLimit: bigint;
612
- verificationGasLimit: bigint;
613
- preVerificationGas: bigint;
614
- maxFeePerGas: bigint;
615
- maxPriorityFeePerGas: bigint;
616
- signature: `0x${string}`;
617
- eip7702Auth?: {
618
- nonce: number;
619
- contractAddress: `0x${string}`;
620
- chainId: number;
621
- r: `0x${string}`;
622
- s: `0x${string}`;
623
- v: bigint;
624
- yParity: number;
625
- } | null | undefined;
626
- } | {
627
- sender: `0x${string}`;
628
- factory: `0x${string}` | null;
629
- paymaster: `0x${string}` | null;
630
- nonce: bigint;
631
- callData: `0x${string}`;
632
- callGasLimit: bigint;
633
- verificationGasLimit: bigint;
634
- preVerificationGas: bigint;
635
- maxFeePerGas: bigint;
636
- maxPriorityFeePerGas: bigint;
637
- signature: `0x${string}`;
638
- paymasterVerificationGasLimit: bigint | null;
639
- paymasterPostOpGasLimit: bigint | null;
640
- factoryData: `0x${string}` | null;
641
- paymasterData: `0x${string}` | null;
642
- eip7702Auth?: {
643
- nonce: number;
644
- contractAddress: `0x${string}`;
645
- chainId: number;
646
- r: `0x${string}`;
647
- s: `0x${string}`;
648
- v: bigint;
649
- yParity: number;
650
- } | null | undefined;
651
- }, `0x${string}`] | [{
652
- sender: `0x${string}`;
653
- nonce: bigint;
654
- initCode: `0x${string}`;
655
- paymasterAndData: `0x${string}`;
656
- callData: `0x${string}`;
657
- callGasLimit: bigint;
658
- verificationGasLimit: bigint;
659
- preVerificationGas: bigint;
660
- maxFeePerGas: bigint;
661
- maxPriorityFeePerGas: bigint;
662
- signature: `0x${string}`;
663
- eip7702Auth?: {
664
- nonce: number;
665
- contractAddress: `0x${string}`;
666
- chainId: number;
667
- r: `0x${string}`;
668
- s: `0x${string}`;
669
- v: bigint;
670
- yParity: number;
671
- } | null | undefined;
672
- } | {
673
- sender: `0x${string}`;
674
- factory: `0x${string}` | null;
675
- paymaster: `0x${string}` | null;
676
- nonce: bigint;
677
- callData: `0x${string}`;
678
- callGasLimit: bigint;
679
- verificationGasLimit: bigint;
680
- preVerificationGas: bigint;
681
- maxFeePerGas: bigint;
682
- maxPriorityFeePerGas: bigint;
683
- signature: `0x${string}`;
684
- paymasterVerificationGasLimit: bigint | null;
685
- paymasterPostOpGasLimit: bigint | null;
686
- factoryData: `0x${string}` | null;
687
- paymasterData: `0x${string}` | null;
688
- eip7702Auth?: {
689
- nonce: number;
690
- contractAddress: `0x${string}`;
691
- chainId: number;
692
- r: `0x${string}`;
693
- s: `0x${string}`;
694
- v: bigint;
695
- yParity: number;
696
- } | null | undefined;
697
- }, `0x${string}`, Partial<Record<`0x${string}`, {
698
- balance?: bigint | undefined;
699
- nonce?: bigint | undefined;
700
- code?: `0x${string}` | undefined;
701
- state?: Partial<Record<`0x${string}`, `0x${string}`>> | undefined;
702
- stateDiff?: Partial<Record<`0x${string}`, `0x${string}`>> | undefined;
703
- }>>];
704
- method: "pimlico_experimental_estimateUserOperationGas7702";
705
- }, {
706
- result: ({
707
- callGasLimit: string | number | bigint;
708
- verificationGasLimit: string | number | bigint;
709
- preVerificationGas: string | number | bigint;
710
- verificationGas?: string | number | bigint | undefined;
711
- } | {
712
- callGasLimit: string | number | bigint;
713
- verificationGasLimit: string | number | bigint;
714
- preVerificationGas: string | number | bigint;
715
- paymasterVerificationGasLimit?: string | number | bigint | undefined;
716
- paymasterPostOpGasLimit?: string | number | bigint | undefined;
717
- }) & ({
718
- callGasLimit: string | number | bigint;
719
- verificationGasLimit: string | number | bigint;
720
- preVerificationGas: string | number | bigint;
721
- verificationGas?: string | number | bigint | undefined;
722
- } | {
723
- callGasLimit: string | number | bigint;
724
- verificationGasLimit: string | number | bigint;
725
- preVerificationGas: string | number | bigint;
726
- paymasterVerificationGasLimit?: string | number | bigint | undefined;
727
- paymasterPostOpGasLimit?: string | number | bigint | undefined;
728
- } | undefined);
729
- params: [{
730
- sender: string;
731
- nonce: string | number | bigint;
732
- initCode: string;
733
- paymasterAndData: string;
734
- callData: string;
735
- signature: string;
736
- callGasLimit?: string | number | bigint | undefined;
737
- verificationGasLimit?: string | number | bigint | undefined;
738
- preVerificationGas?: string | number | bigint | undefined;
739
- maxPriorityFeePerGas?: string | number | bigint | undefined;
740
- maxFeePerGas?: string | number | bigint | undefined;
741
- eip7702Auth?: {
742
- nonce: string | number | bigint;
743
- contractAddress: string;
744
- chainId: string | number | bigint;
745
- r: string;
746
- s: string;
747
- v: string | number | bigint;
748
- yParity: string | number | bigint;
749
- } | null | undefined;
750
- } | {
751
- sender: string;
752
- nonce: string | number | bigint;
753
- callData: string;
754
- signature: string;
755
- factory?: string | null | undefined;
756
- factoryData?: string | null | undefined;
757
- callGasLimit?: string | number | bigint | undefined;
758
- verificationGasLimit?: string | number | bigint | undefined;
759
- preVerificationGas?: string | number | bigint | undefined;
760
- maxFeePerGas?: string | number | bigint | undefined;
761
- maxPriorityFeePerGas?: string | number | bigint | undefined;
762
- paymaster?: string | null | undefined;
763
- paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
764
- paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
765
- paymasterData?: string | null | undefined;
766
- eip7702Auth?: {
767
- nonce: string | number | bigint;
768
- contractAddress: string;
769
- chainId: string | number | bigint;
770
- r: string;
771
- s: string;
772
- v: string | number | bigint;
773
- yParity: string | number | bigint;
774
- } | null | undefined;
775
- }, string] | [{
776
- sender: string;
777
- nonce: string | number | bigint;
778
- initCode: string;
779
- paymasterAndData: string;
780
- callData: string;
781
- signature: string;
782
- callGasLimit?: string | number | bigint | undefined;
783
- verificationGasLimit?: string | number | bigint | undefined;
784
- preVerificationGas?: string | number | bigint | undefined;
785
- maxPriorityFeePerGas?: string | number | bigint | undefined;
786
- maxFeePerGas?: string | number | bigint | undefined;
787
- eip7702Auth?: {
788
- nonce: string | number | bigint;
789
- contractAddress: string;
790
- chainId: string | number | bigint;
791
- r: string;
792
- s: string;
793
- v: string | number | bigint;
794
- yParity: string | number | bigint;
795
- } | null | undefined;
796
- } | {
797
- sender: string;
798
- nonce: string | number | bigint;
799
- callData: string;
800
- signature: string;
801
- factory?: string | null | undefined;
802
- factoryData?: string | null | undefined;
803
- callGasLimit?: string | number | bigint | undefined;
804
- verificationGasLimit?: string | number | bigint | undefined;
805
- preVerificationGas?: string | number | bigint | undefined;
806
- maxFeePerGas?: string | number | bigint | undefined;
807
- maxPriorityFeePerGas?: string | number | bigint | undefined;
808
- paymaster?: string | null | undefined;
809
- paymasterVerificationGasLimit?: string | number | bigint | null | undefined;
810
- paymasterPostOpGasLimit?: string | number | bigint | null | undefined;
811
- paymasterData?: string | null | undefined;
812
- eip7702Auth?: {
813
- nonce: string | number | bigint;
814
- contractAddress: string;
815
- chainId: string | number | bigint;
816
- r: string;
817
- s: string;
818
- v: string | number | bigint;
819
- yParity: string | number | bigint;
820
- } | null | undefined;
821
- }, string, Record<string, {
822
- balance?: string | number | bigint | undefined;
823
- nonce?: string | number | bigint | undefined;
824
- code?: string | undefined;
825
- state?: Record<string, string> | undefined;
826
- stateDiff?: Record<string, string> | undefined;
827
- }>];
828
- method: "pimlico_experimental_estimateUserOperationGas7702";
829
- }>;
830
- method: "pimlico_experimental_estimateUserOperationGas7702";
831
- handler: (args: {
832
- rpcHandler: import("../index.js").RpcHandler;
833
- params: readonly [import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
834
- sender: `0x${string}`;
835
- nonce: bigint;
836
- initCode: `0x${string}`;
837
- paymasterAndData: `0x${string}`;
838
- callData: `0x${string}`;
839
- callGasLimit: bigint;
840
- verificationGasLimit: bigint;
841
- preVerificationGas: bigint;
842
- maxFeePerGas: bigint;
843
- maxPriorityFeePerGas: bigint;
844
- signature: `0x${string}`;
845
- eip7702Auth?: {
846
- nonce: number;
847
- contractAddress: `0x${string}`;
848
- chainId: number;
849
- r: `0x${string}`;
850
- s: `0x${string}`;
851
- v: bigint;
852
- yParity: number;
853
- } | null | undefined;
854
- }> | import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
855
- sender: `0x${string}`;
856
- factory: `0x${string}` | null;
857
- paymaster: `0x${string}` | null;
858
- nonce: bigint;
859
- callData: `0x${string}`;
860
- callGasLimit: bigint;
861
- verificationGasLimit: bigint;
862
- preVerificationGas: bigint;
863
- maxFeePerGas: bigint;
864
- maxPriorityFeePerGas: bigint;
865
- signature: `0x${string}`;
866
- paymasterVerificationGasLimit: bigint | null;
867
- paymasterPostOpGasLimit: bigint | null;
868
- factoryData: `0x${string}` | null;
869
- paymasterData: `0x${string}` | null;
870
- eip7702Auth?: {
871
- nonce: number;
872
- contractAddress: `0x${string}`;
873
- chainId: number;
874
- r: `0x${string}`;
875
- s: `0x${string}`;
876
- v: bigint;
877
- yParity: number;
878
- } | null | undefined;
879
- }>, `0x${string}`] | readonly [import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
880
- sender: `0x${string}`;
881
- nonce: bigint;
882
- initCode: `0x${string}`;
883
- paymasterAndData: `0x${string}`;
884
- callData: `0x${string}`;
885
- callGasLimit: bigint;
886
- verificationGasLimit: bigint;
887
- preVerificationGas: bigint;
888
- maxFeePerGas: bigint;
889
- maxPriorityFeePerGas: bigint;
890
- signature: `0x${string}`;
891
- eip7702Auth?: {
892
- nonce: number;
893
- contractAddress: `0x${string}`;
894
- chainId: number;
895
- r: `0x${string}`;
896
- s: `0x${string}`;
897
- v: bigint;
898
- yParity: number;
899
- } | null | undefined;
900
- }> | import("type-fest/source/readonly-deep").ReadonlyObjectDeep<{
901
- sender: `0x${string}`;
902
- factory: `0x${string}` | null;
903
- paymaster: `0x${string}` | null;
904
- nonce: bigint;
905
- callData: `0x${string}`;
906
- callGasLimit: bigint;
907
- verificationGasLimit: bigint;
908
- preVerificationGas: bigint;
909
- maxFeePerGas: bigint;
910
- maxPriorityFeePerGas: bigint;
911
- signature: `0x${string}`;
912
- paymasterVerificationGasLimit: bigint | null;
913
- paymasterPostOpGasLimit: bigint | null;
914
- factoryData: `0x${string}` | null;
915
- paymasterData: `0x${string}` | null;
916
- eip7702Auth?: {
917
- nonce: number;
918
- contractAddress: `0x${string}`;
919
- chainId: number;
920
- r: `0x${string}`;
921
- s: `0x${string}`;
922
- v: bigint;
923
- yParity: number;
924
- } | null | undefined;
925
- }>, `0x${string}`, import("type-fest/source/readonly-deep").ReadonlyObjectDeep<Partial<Record<`0x${string}`, {
926
- balance?: bigint | undefined;
927
- nonce?: bigint | undefined;
928
- code?: `0x${string}` | undefined;
929
- state?: Partial<Record<`0x${string}`, `0x${string}`>> | undefined;
930
- stateDiff?: Partial<Record<`0x${string}`, `0x${string}`>> | undefined;
931
- }>>>];
932
- apiVersion: import("../../types/index.js").ApiVersion;
933
- }) => (({
934
- callGasLimit: bigint;
935
- verificationGasLimit: bigint;
936
- preVerificationGas: bigint;
937
- verificationGas?: bigint | undefined;
938
- } | {
939
- callGasLimit: bigint;
940
- verificationGasLimit: bigint;
941
- preVerificationGas: bigint;
942
- paymasterVerificationGasLimit?: bigint | undefined;
943
- paymasterPostOpGasLimit?: bigint | undefined;
944
- }) & ({
945
- callGasLimit: bigint;
946
- verificationGasLimit: bigint;
947
- preVerificationGas: bigint;
948
- verificationGas?: bigint | undefined;
949
- } | {
950
- callGasLimit: bigint;
951
- verificationGasLimit: bigint;
952
- preVerificationGas: bigint;
953
- paymasterVerificationGasLimit?: bigint | undefined;
954
- paymasterPostOpGasLimit?: bigint | undefined;
955
- } | undefined)) | Promise<({
956
- callGasLimit: bigint;
957
- verificationGasLimit: bigint;
958
- preVerificationGas: bigint;
959
- verificationGas?: bigint | undefined;
960
- } | {
961
- callGasLimit: bigint;
962
- verificationGasLimit: bigint;
963
- preVerificationGas: bigint;
964
- paymasterVerificationGasLimit?: bigint | undefined;
965
- paymasterPostOpGasLimit?: bigint | undefined;
966
- }) & ({
967
- callGasLimit: bigint;
968
- verificationGasLimit: bigint;
969
- preVerificationGas: bigint;
970
- verificationGas?: bigint | undefined;
971
- } | {
972
- callGasLimit: bigint;
973
- verificationGasLimit: bigint;
974
- preVerificationGas: bigint;
975
- paymasterVerificationGasLimit?: bigint | undefined;
976
- paymasterPostOpGasLimit?: bigint | undefined;
977
- } | undefined)>;
978
- };
979
- //# sourceMappingURL=pimlico_experimental_estimateUserOperationGas7702.d.ts.map