@pimlico/alto 0.0.0-main.20250214T163421 → 0.0.0-main.20250225T164854

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