@pimlico/alto 0.0.0-main.20250214T151652 → 0.0.0-main.20250225T152738

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/config/bundler.d.ts +6 -0
  2. package/esm/cli/config/bundler.js +1 -0
  3. package/esm/cli/config/bundler.js.map +1 -1
  4. package/esm/cli/config/options.js +5 -0
  5. package/esm/cli/config/options.js.map +1 -1
  6. package/esm/cli/setupServer.js +4 -4
  7. package/esm/cli/setupServer.js.map +1 -1
  8. package/esm/executor/executorManager.d.ts +9 -9
  9. package/esm/handlers/gasPriceManager.js +6 -0
  10. package/esm/handlers/gasPriceManager.js.map +1 -1
  11. package/esm/mempool/index.d.ts +1 -0
  12. package/esm/mempool/index.js +1 -0
  13. package/esm/mempool/index.js.map +1 -1
  14. package/esm/{rpc → mempool}/nonceQueuer.d.ts +1 -1
  15. package/esm/mempool/nonceQueuer.js.map +1 -0
  16. package/esm/mempool/reputationManager.d.ts +3 -2
  17. package/esm/mempool/reputationManager.js.map +1 -1
  18. package/esm/rpc/createMethodHandler.d.ts +31 -0
  19. package/esm/rpc/createMethodHandler.js +30 -0
  20. package/esm/rpc/createMethodHandler.js.map +1 -0
  21. package/esm/rpc/index.d.ts +0 -1
  22. package/esm/rpc/index.js +0 -1
  23. package/esm/rpc/index.js.map +1 -1
  24. package/esm/rpc/methods/debug_bundler_clearReputation.d.ts +22 -0
  25. package/esm/rpc/methods/debug_bundler_clearReputation.js +12 -0
  26. package/esm/rpc/methods/debug_bundler_clearReputation.js.map +1 -0
  27. package/esm/rpc/methods/debug_bundler_clearState.d.ts +22 -0
  28. package/esm/rpc/methods/debug_bundler_clearState.js +13 -0
  29. package/esm/rpc/methods/debug_bundler_clearState.js.map +1 -0
  30. package/esm/rpc/methods/debug_bundler_dumpMempool.d.ts +468 -0
  31. package/esm/rpc/methods/debug_bundler_dumpMempool.js +13 -0
  32. package/esm/rpc/methods/debug_bundler_dumpMempool.js.map +1 -0
  33. package/esm/rpc/methods/debug_bundler_dumpReputation.d.ts +57 -0
  34. package/esm/rpc/methods/debug_bundler_dumpReputation.js +13 -0
  35. package/esm/rpc/methods/debug_bundler_dumpReputation.js.map +1 -0
  36. package/esm/rpc/methods/debug_bundler_getStakeStatus.d.ts +79 -0
  37. package/esm/rpc/methods/debug_bundler_getStakeStatus.js +14 -0
  38. package/esm/rpc/methods/debug_bundler_getStakeStatus.js.map +1 -0
  39. package/esm/rpc/methods/debug_bundler_sendBundleNow.d.ts +22 -0
  40. package/esm/rpc/methods/debug_bundler_sendBundleNow.js +12 -0
  41. package/esm/rpc/methods/debug_bundler_sendBundleNow.js.map +1 -0
  42. package/esm/rpc/methods/debug_bundler_setBundlingMode.d.ts +22 -0
  43. package/esm/rpc/methods/debug_bundler_setBundlingMode.js +13 -0
  44. package/esm/rpc/methods/debug_bundler_setBundlingMode.js.map +1 -0
  45. package/esm/rpc/methods/debug_bundler_setReputation.d.ts +46 -0
  46. package/esm/rpc/methods/debug_bundler_setReputation.js +13 -0
  47. package/esm/rpc/methods/debug_bundler_setReputation.js.map +1 -0
  48. package/esm/rpc/methods/eth_chainId.d.ts +22 -0
  49. package/esm/rpc/methods/eth_chainId.js +10 -0
  50. package/esm/rpc/methods/eth_chainId.js.map +1 -0
  51. package/esm/rpc/methods/eth_estimateUserOperationGas.d.ts +979 -0
  52. package/esm/rpc/methods/eth_estimateUserOperationGas.js +18 -0
  53. package/esm/rpc/methods/eth_estimateUserOperationGas.js.map +1 -0
  54. package/esm/rpc/methods/eth_getUserOperationByHash.d.ts +878 -0
  55. package/esm/rpc/methods/eth_getUserOperationByHash.js +98 -0
  56. package/esm/rpc/methods/eth_getUserOperationByHash.js.map +1 -0
  57. package/esm/rpc/methods/eth_getUserOperationReceipt.d.ts +412 -0
  58. package/esm/rpc/methods/eth_getUserOperationReceipt.js +11 -0
  59. package/esm/rpc/methods/eth_getUserOperationReceipt.js.map +1 -0
  60. package/esm/rpc/methods/eth_sendUserOperation.d.ts +422 -0
  61. package/esm/rpc/methods/eth_sendUserOperation.js +30 -0
  62. package/esm/rpc/methods/eth_sendUserOperation.js.map +1 -0
  63. package/esm/rpc/methods/eth_supportedEntryPoints.d.ts +22 -0
  64. package/esm/rpc/methods/eth_supportedEntryPoints.js +10 -0
  65. package/esm/rpc/methods/eth_supportedEntryPoints.js.map +1 -0
  66. package/esm/rpc/methods/index.d.ts +3 -0
  67. package/esm/rpc/methods/index.js +45 -0
  68. package/esm/rpc/methods/index.js.map +1 -0
  69. package/esm/rpc/methods/pimlico_experimental_estimateUserOperationGas7702.d.ts +979 -0
  70. package/esm/rpc/methods/pimlico_experimental_estimateUserOperationGas7702.js +20 -0
  71. package/esm/rpc/methods/pimlico_experimental_estimateUserOperationGas7702.js.map +1 -0
  72. package/esm/rpc/methods/pimlico_experimental_sendUserOperation7702.d.ts +422 -0
  73. package/esm/rpc/methods/pimlico_experimental_sendUserOperation7702.js +16 -0
  74. package/esm/rpc/methods/pimlico_experimental_sendUserOperation7702.js.map +1 -0
  75. package/esm/rpc/methods/pimlico_getUserOperationGasPrice.d.ts +131 -0
  76. package/esm/rpc/methods/pimlico_getUserOperationGasPrice.js +30 -0
  77. package/esm/rpc/methods/pimlico_getUserOperationGasPrice.js.map +1 -0
  78. package/esm/rpc/methods/pimlico_getUserOperationStatus.d.ts +43 -0
  79. package/esm/rpc/methods/pimlico_getUserOperationStatus.js +11 -0
  80. package/esm/rpc/methods/pimlico_getUserOperationStatus.js.map +1 -0
  81. package/esm/rpc/methods/pimlico_sendUserOperationNow.d.ts +812 -0
  82. package/esm/rpc/methods/pimlico_sendUserOperationNow.js +41 -0
  83. package/esm/rpc/methods/pimlico_sendUserOperationNow.js.map +1 -0
  84. package/esm/rpc/rpcHandler.d.ts +13 -104
  85. package/esm/rpc/rpcHandler.js +34 -373
  86. package/esm/rpc/rpcHandler.js.map +1 -1
  87. package/esm/rpc/server.d.ts +2 -2
  88. package/esm/rpc/server.js +1 -1
  89. package/esm/rpc/server.js.map +1 -1
  90. package/esm/rpc/validation/TracerResultParserV07.js +5 -5
  91. package/esm/rpc/validation/TracerResultParserV07.js.map +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/config/bundler.d.ts +6 -0
  98. package/lib/cli/config/bundler.js +1 -0
  99. package/lib/cli/config/bundler.js.map +1 -1
  100. package/lib/cli/config/options.js +5 -0
  101. package/lib/cli/config/options.js.map +1 -1
  102. package/lib/cli/setupServer.js +3 -3
  103. package/lib/cli/setupServer.js.map +1 -1
  104. package/lib/executor/executorManager.d.ts +9 -9
  105. package/lib/handlers/gasPriceManager.js +6 -0
  106. package/lib/handlers/gasPriceManager.js.map +1 -1
  107. package/lib/mempool/index.d.ts +1 -0
  108. package/lib/mempool/index.js +1 -0
  109. package/lib/mempool/index.js.map +1 -1
  110. package/lib/{rpc → mempool}/nonceQueuer.d.ts +1 -1
  111. package/lib/mempool/nonceQueuer.js.map +1 -0
  112. package/lib/mempool/reputationManager.d.ts +3 -2
  113. package/lib/mempool/reputationManager.js.map +1 -1
  114. package/lib/rpc/createMethodHandler.d.ts +31 -0
  115. package/lib/rpc/createMethodHandler.js +34 -0
  116. package/lib/rpc/createMethodHandler.js.map +1 -0
  117. package/lib/rpc/index.d.ts +0 -1
  118. package/lib/rpc/index.js +0 -1
  119. package/lib/rpc/index.js.map +1 -1
  120. package/lib/rpc/methods/debug_bundler_clearReputation.d.ts +22 -0
  121. package/lib/rpc/methods/debug_bundler_clearReputation.js +15 -0
  122. package/lib/rpc/methods/debug_bundler_clearReputation.js.map +1 -0
  123. package/lib/rpc/methods/debug_bundler_clearState.d.ts +22 -0
  124. package/lib/rpc/methods/debug_bundler_clearState.js +16 -0
  125. package/lib/rpc/methods/debug_bundler_clearState.js.map +1 -0
  126. package/lib/rpc/methods/debug_bundler_dumpMempool.d.ts +468 -0
  127. package/lib/rpc/methods/debug_bundler_dumpMempool.js +16 -0
  128. package/lib/rpc/methods/debug_bundler_dumpMempool.js.map +1 -0
  129. package/lib/rpc/methods/debug_bundler_dumpReputation.d.ts +57 -0
  130. package/lib/rpc/methods/debug_bundler_dumpReputation.js +16 -0
  131. package/lib/rpc/methods/debug_bundler_dumpReputation.js.map +1 -0
  132. package/lib/rpc/methods/debug_bundler_getStakeStatus.d.ts +79 -0
  133. package/lib/rpc/methods/debug_bundler_getStakeStatus.js +17 -0
  134. package/lib/rpc/methods/debug_bundler_getStakeStatus.js.map +1 -0
  135. package/lib/rpc/methods/debug_bundler_sendBundleNow.d.ts +22 -0
  136. package/lib/rpc/methods/debug_bundler_sendBundleNow.js +15 -0
  137. package/lib/rpc/methods/debug_bundler_sendBundleNow.js.map +1 -0
  138. package/lib/rpc/methods/debug_bundler_setBundlingMode.d.ts +22 -0
  139. package/lib/rpc/methods/debug_bundler_setBundlingMode.js +16 -0
  140. package/lib/rpc/methods/debug_bundler_setBundlingMode.js.map +1 -0
  141. package/lib/rpc/methods/debug_bundler_setReputation.d.ts +46 -0
  142. package/lib/rpc/methods/debug_bundler_setReputation.js +16 -0
  143. package/lib/rpc/methods/debug_bundler_setReputation.js.map +1 -0
  144. package/lib/rpc/methods/eth_chainId.d.ts +22 -0
  145. package/lib/rpc/methods/eth_chainId.js +13 -0
  146. package/lib/rpc/methods/eth_chainId.js.map +1 -0
  147. package/lib/rpc/methods/eth_estimateUserOperationGas.d.ts +979 -0
  148. package/lib/rpc/methods/eth_estimateUserOperationGas.js +21 -0
  149. package/lib/rpc/methods/eth_estimateUserOperationGas.js.map +1 -0
  150. package/lib/rpc/methods/eth_getUserOperationByHash.d.ts +878 -0
  151. package/lib/rpc/methods/eth_getUserOperationByHash.js +101 -0
  152. package/lib/rpc/methods/eth_getUserOperationByHash.js.map +1 -0
  153. package/lib/rpc/methods/eth_getUserOperationReceipt.d.ts +412 -0
  154. package/lib/rpc/methods/eth_getUserOperationReceipt.js +14 -0
  155. package/lib/rpc/methods/eth_getUserOperationReceipt.js.map +1 -0
  156. package/lib/rpc/methods/eth_sendUserOperation.d.ts +422 -0
  157. package/lib/rpc/methods/eth_sendUserOperation.js +33 -0
  158. package/lib/rpc/methods/eth_sendUserOperation.js.map +1 -0
  159. package/lib/rpc/methods/eth_supportedEntryPoints.d.ts +22 -0
  160. package/lib/rpc/methods/eth_supportedEntryPoints.js +13 -0
  161. package/lib/rpc/methods/eth_supportedEntryPoints.js.map +1 -0
  162. package/lib/rpc/methods/index.d.ts +3 -0
  163. package/lib/rpc/methods/index.js +49 -0
  164. package/lib/rpc/methods/index.js.map +1 -0
  165. package/lib/rpc/methods/pimlico_experimental_estimateUserOperationGas7702.d.ts +979 -0
  166. package/lib/rpc/methods/pimlico_experimental_estimateUserOperationGas7702.js +23 -0
  167. package/lib/rpc/methods/pimlico_experimental_estimateUserOperationGas7702.js.map +1 -0
  168. package/lib/rpc/methods/pimlico_experimental_sendUserOperation7702.d.ts +422 -0
  169. package/lib/rpc/methods/pimlico_experimental_sendUserOperation7702.js +19 -0
  170. package/lib/rpc/methods/pimlico_experimental_sendUserOperation7702.js.map +1 -0
  171. package/lib/rpc/methods/pimlico_getUserOperationGasPrice.d.ts +131 -0
  172. package/lib/rpc/methods/pimlico_getUserOperationGasPrice.js +33 -0
  173. package/lib/rpc/methods/pimlico_getUserOperationGasPrice.js.map +1 -0
  174. package/lib/rpc/methods/pimlico_getUserOperationStatus.d.ts +43 -0
  175. package/lib/rpc/methods/pimlico_getUserOperationStatus.js +14 -0
  176. package/lib/rpc/methods/pimlico_getUserOperationStatus.js.map +1 -0
  177. package/lib/rpc/methods/pimlico_sendUserOperationNow.d.ts +812 -0
  178. package/lib/rpc/methods/pimlico_sendUserOperationNow.js +44 -0
  179. package/lib/rpc/methods/pimlico_sendUserOperationNow.js.map +1 -0
  180. package/lib/rpc/rpcHandler.d.ts +13 -104
  181. package/lib/rpc/rpcHandler.js +31 -370
  182. package/lib/rpc/rpcHandler.js.map +1 -1
  183. package/lib/rpc/server.d.ts +2 -2
  184. package/lib/rpc/server.js +1 -1
  185. package/lib/rpc/server.js.map +1 -1
  186. package/lib/rpc/validation/TracerResultParserV07.js +4 -4
  187. package/lib/rpc/validation/TracerResultParserV07.js.map +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,98 @@
1
+ import { getAbiItem, TransactionNotFoundError, decodeFunctionData, toFunctionSelector, slice, getAddress } from "viem";
2
+ import { toUnpackedUserOperation } from "../../utils/userop.js";
3
+ import { createMethodHandler } from "../createMethodHandler.js";
4
+ import { EntryPointV06Abi, EntryPointV07Abi, getUserOperationByHashSchema } from "../../types/index.js";
5
+ const userOperationEventAbiItem = getAbiItem({
6
+ abi: EntryPointV06Abi,
7
+ name: "UserOperationEvent"
8
+ });
9
+ export const ethGetUserOperationByHashHandler = createMethodHandler({
10
+ method: "eth_getUserOperationByHash",
11
+ schema: getUserOperationByHashSchema,
12
+ handler: async ({ rpcHandler, params }) => {
13
+ const [userOperationHash] = params;
14
+ let fromBlock;
15
+ let toBlock;
16
+ if (rpcHandler.config.maxBlockRange !== undefined) {
17
+ const latestBlock = await rpcHandler.config.publicClient.getBlockNumber();
18
+ fromBlock = latestBlock - BigInt(rpcHandler.config.maxBlockRange);
19
+ if (fromBlock < 0n) {
20
+ fromBlock = 0n;
21
+ }
22
+ toBlock = "latest";
23
+ }
24
+ const filterResult = await rpcHandler.config.publicClient.getLogs({
25
+ address: rpcHandler.config.entrypoints,
26
+ event: userOperationEventAbiItem,
27
+ fromBlock,
28
+ toBlock,
29
+ args: {
30
+ userOpHash: userOperationHash
31
+ }
32
+ });
33
+ if (filterResult.length === 0) {
34
+ return null;
35
+ }
36
+ const userOperationEvent = filterResult[0];
37
+ const txHash = userOperationEvent.transactionHash;
38
+ if (txHash === null) {
39
+ // transaction pending
40
+ return null;
41
+ }
42
+ const getTransaction = async (txHash) => {
43
+ try {
44
+ return await rpcHandler.config.publicClient.getTransaction({
45
+ hash: txHash
46
+ });
47
+ }
48
+ catch (e) {
49
+ if (e instanceof TransactionNotFoundError) {
50
+ return getTransaction(txHash);
51
+ }
52
+ throw e;
53
+ }
54
+ };
55
+ const tx = await getTransaction(txHash);
56
+ if (!tx.to) {
57
+ return null;
58
+ }
59
+ let op;
60
+ try {
61
+ const decoded = decodeFunctionData({
62
+ abi: [...EntryPointV06Abi, ...EntryPointV07Abi],
63
+ data: tx.input
64
+ });
65
+ if (decoded.functionName !== "handleOps") {
66
+ return null;
67
+ }
68
+ const ops = decoded.args[0];
69
+ const foundOp = ops.find((op) => op.sender === userOperationEvent.args.sender &&
70
+ op.nonce === userOperationEvent.args.nonce);
71
+ if (foundOp === undefined) {
72
+ return null;
73
+ }
74
+ const handleOpsV07AbiItem = getAbiItem({
75
+ abi: EntryPointV07Abi,
76
+ name: "handleOps"
77
+ });
78
+ const handleOpsV07Selector = toFunctionSelector(handleOpsV07AbiItem);
79
+ if (slice(tx.input, 0, 4) === handleOpsV07Selector) {
80
+ op = toUnpackedUserOperation(foundOp);
81
+ }
82
+ else {
83
+ op = foundOp;
84
+ }
85
+ }
86
+ catch {
87
+ return null;
88
+ }
89
+ return {
90
+ userOperation: Object.fromEntries(Object.entries(op).filter(([_, v]) => v !== null)),
91
+ entryPoint: getAddress(tx.to),
92
+ transactionHash: txHash,
93
+ blockHash: tx.blockHash ?? "0x",
94
+ blockNumber: BigInt(tx.blockNumber ?? 0n)
95
+ };
96
+ }
97
+ });
98
+ //# sourceMappingURL=eth_getUserOperationByHash.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"eth_getUserOperationByHash.js","sourceRoot":"","sources":["../../../rpc/methods/eth_getUserOperationByHash.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,412 @@
1
+ export declare const ethGetUserOperationReceiptHandler: {
2
+ schema: import("zod").ZodObject<{
3
+ method: import("zod").ZodLiteral<"eth_getUserOperationReceipt">;
4
+ params: import("zod").ZodTuple<[import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>], null>;
5
+ result: import("zod").ZodUnion<[import("zod").ZodObject<{
6
+ userOpHash: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
7
+ entryPoint: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
8
+ sender: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
9
+ 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>;
10
+ paymaster: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>>;
11
+ actualGasCost: 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
+ actualGasUsed: 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
+ success: import("zod").ZodBoolean;
14
+ reason: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>>;
15
+ logs: import("zod").ZodArray<import("zod").ZodObject<{
16
+ logIndex: 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>;
17
+ transactionIndex: 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>;
18
+ transactionHash: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
19
+ blockHash: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
20
+ 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>;
21
+ address: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
22
+ data: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
23
+ topics: import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, "many">;
24
+ }, "strip", import("zod").ZodTypeAny, {
25
+ address: `0x${string}`;
26
+ data: `0x${string}`;
27
+ logIndex: bigint;
28
+ transactionIndex: bigint;
29
+ transactionHash: `0x${string}`;
30
+ blockHash: `0x${string}`;
31
+ blockNumber: bigint;
32
+ topics: `0x${string}`[];
33
+ }, {
34
+ address: string;
35
+ data: string;
36
+ logIndex: string | number | bigint;
37
+ transactionIndex: string | number | bigint;
38
+ transactionHash: string;
39
+ blockHash: string;
40
+ blockNumber: string | number | bigint;
41
+ topics: string[];
42
+ }>, "many">;
43
+ receipt: import("zod").ZodObject<{
44
+ transactionHash: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
45
+ transactionIndex: 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>;
46
+ blockHash: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
47
+ 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>;
48
+ from: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
49
+ to: import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, import("zod").ZodNull]>;
50
+ cumulativeGasUsed: 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>;
51
+ gasUsed: 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>;
52
+ contractAddress: import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, import("zod").ZodNull]>;
53
+ logs: import("zod").ZodArray<import("zod").ZodObject<{
54
+ logIndex: 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>;
55
+ transactionIndex: 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>;
56
+ transactionHash: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
57
+ blockHash: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
58
+ 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>;
59
+ address: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
60
+ data: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
61
+ topics: import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>, "many">;
62
+ }, "strip", import("zod").ZodTypeAny, {
63
+ address: `0x${string}`;
64
+ data: `0x${string}`;
65
+ logIndex: bigint;
66
+ transactionIndex: bigint;
67
+ transactionHash: `0x${string}`;
68
+ blockHash: `0x${string}`;
69
+ blockNumber: bigint;
70
+ topics: `0x${string}`[];
71
+ }, {
72
+ address: string;
73
+ data: string;
74
+ logIndex: string | number | bigint;
75
+ transactionIndex: string | number | bigint;
76
+ transactionHash: string;
77
+ blockHash: string;
78
+ blockNumber: string | number | bigint;
79
+ topics: string[];
80
+ }>, "many">;
81
+ logsBloom: import("zod").ZodString;
82
+ status: import("zod").ZodUnion<[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>, import("zod").ZodNull]>;
83
+ effectiveGasPrice: 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>>>;
84
+ }, "strip", import("zod").ZodTypeAny, {
85
+ to: `0x${string}` | null;
86
+ gasUsed: bigint;
87
+ status: bigint | null;
88
+ contractAddress: `0x${string}` | null;
89
+ transactionIndex: bigint;
90
+ transactionHash: `0x${string}`;
91
+ blockHash: `0x${string}`;
92
+ blockNumber: bigint;
93
+ from: `0x${string}`;
94
+ cumulativeGasUsed: bigint;
95
+ logs: {
96
+ address: `0x${string}`;
97
+ data: `0x${string}`;
98
+ logIndex: bigint;
99
+ transactionIndex: bigint;
100
+ transactionHash: `0x${string}`;
101
+ blockHash: `0x${string}`;
102
+ blockNumber: bigint;
103
+ topics: `0x${string}`[];
104
+ }[];
105
+ logsBloom: string;
106
+ effectiveGasPrice?: bigint | null | undefined;
107
+ }, {
108
+ to: string | null;
109
+ gasUsed: string | number | bigint;
110
+ status: string | number | bigint | null;
111
+ contractAddress: string | null;
112
+ transactionIndex: string | number | bigint;
113
+ transactionHash: string;
114
+ blockHash: string;
115
+ blockNumber: string | number | bigint;
116
+ from: string;
117
+ cumulativeGasUsed: string | number | bigint;
118
+ logs: {
119
+ address: string;
120
+ data: string;
121
+ logIndex: string | number | bigint;
122
+ transactionIndex: string | number | bigint;
123
+ transactionHash: string;
124
+ blockHash: string;
125
+ blockNumber: string | number | bigint;
126
+ topics: string[];
127
+ }[];
128
+ logsBloom: string;
129
+ effectiveGasPrice?: string | number | bigint | null | undefined;
130
+ }>;
131
+ }, "strip", import("zod").ZodTypeAny, {
132
+ sender: `0x${string}`;
133
+ userOpHash: `0x${string}`;
134
+ nonce: bigint;
135
+ success: boolean;
136
+ actualGasCost: bigint;
137
+ actualGasUsed: bigint;
138
+ entryPoint: `0x${string}`;
139
+ logs: {
140
+ address: `0x${string}`;
141
+ data: `0x${string}`;
142
+ logIndex: bigint;
143
+ transactionIndex: bigint;
144
+ transactionHash: `0x${string}`;
145
+ blockHash: `0x${string}`;
146
+ blockNumber: bigint;
147
+ topics: `0x${string}`[];
148
+ }[];
149
+ receipt: {
150
+ to: `0x${string}` | null;
151
+ gasUsed: bigint;
152
+ status: bigint | null;
153
+ contractAddress: `0x${string}` | null;
154
+ transactionIndex: bigint;
155
+ transactionHash: `0x${string}`;
156
+ blockHash: `0x${string}`;
157
+ blockNumber: bigint;
158
+ from: `0x${string}`;
159
+ cumulativeGasUsed: bigint;
160
+ logs: {
161
+ address: `0x${string}`;
162
+ data: `0x${string}`;
163
+ logIndex: bigint;
164
+ transactionIndex: bigint;
165
+ transactionHash: `0x${string}`;
166
+ blockHash: `0x${string}`;
167
+ blockNumber: bigint;
168
+ topics: `0x${string}`[];
169
+ }[];
170
+ logsBloom: string;
171
+ effectiveGasPrice?: bigint | null | undefined;
172
+ };
173
+ paymaster?: `0x${string}` | undefined;
174
+ reason?: `0x${string}` | undefined;
175
+ }, {
176
+ sender: string;
177
+ userOpHash: string;
178
+ nonce: string | number | bigint;
179
+ success: boolean;
180
+ actualGasCost: string | number | bigint;
181
+ actualGasUsed: string | number | bigint;
182
+ entryPoint: string;
183
+ logs: {
184
+ address: string;
185
+ data: string;
186
+ logIndex: string | number | bigint;
187
+ transactionIndex: string | number | bigint;
188
+ transactionHash: string;
189
+ blockHash: string;
190
+ blockNumber: string | number | bigint;
191
+ topics: string[];
192
+ }[];
193
+ receipt: {
194
+ to: string | null;
195
+ gasUsed: string | number | bigint;
196
+ status: string | number | bigint | null;
197
+ contractAddress: string | null;
198
+ transactionIndex: string | number | bigint;
199
+ transactionHash: string;
200
+ blockHash: string;
201
+ blockNumber: string | number | bigint;
202
+ from: string;
203
+ cumulativeGasUsed: string | number | bigint;
204
+ logs: {
205
+ address: string;
206
+ data: string;
207
+ logIndex: string | number | bigint;
208
+ transactionIndex: string | number | bigint;
209
+ transactionHash: string;
210
+ blockHash: string;
211
+ blockNumber: string | number | bigint;
212
+ topics: string[];
213
+ }[];
214
+ logsBloom: string;
215
+ effectiveGasPrice?: string | number | bigint | null | undefined;
216
+ };
217
+ paymaster?: string | undefined;
218
+ reason?: string | undefined;
219
+ }>, import("zod").ZodNull]>;
220
+ }, "strip", import("zod").ZodTypeAny, {
221
+ result: {
222
+ sender: `0x${string}`;
223
+ userOpHash: `0x${string}`;
224
+ nonce: bigint;
225
+ success: boolean;
226
+ actualGasCost: bigint;
227
+ actualGasUsed: bigint;
228
+ entryPoint: `0x${string}`;
229
+ logs: {
230
+ address: `0x${string}`;
231
+ data: `0x${string}`;
232
+ logIndex: bigint;
233
+ transactionIndex: bigint;
234
+ transactionHash: `0x${string}`;
235
+ blockHash: `0x${string}`;
236
+ blockNumber: bigint;
237
+ topics: `0x${string}`[];
238
+ }[];
239
+ receipt: {
240
+ to: `0x${string}` | null;
241
+ gasUsed: bigint;
242
+ status: bigint | null;
243
+ contractAddress: `0x${string}` | null;
244
+ transactionIndex: bigint;
245
+ transactionHash: `0x${string}`;
246
+ blockHash: `0x${string}`;
247
+ blockNumber: bigint;
248
+ from: `0x${string}`;
249
+ cumulativeGasUsed: bigint;
250
+ logs: {
251
+ address: `0x${string}`;
252
+ data: `0x${string}`;
253
+ logIndex: bigint;
254
+ transactionIndex: bigint;
255
+ transactionHash: `0x${string}`;
256
+ blockHash: `0x${string}`;
257
+ blockNumber: bigint;
258
+ topics: `0x${string}`[];
259
+ }[];
260
+ logsBloom: string;
261
+ effectiveGasPrice?: bigint | null | undefined;
262
+ };
263
+ paymaster?: `0x${string}` | undefined;
264
+ reason?: `0x${string}` | undefined;
265
+ } | null;
266
+ params: [`0x${string}`];
267
+ method: "eth_getUserOperationReceipt";
268
+ }, {
269
+ result: {
270
+ sender: string;
271
+ userOpHash: string;
272
+ nonce: string | number | bigint;
273
+ success: boolean;
274
+ actualGasCost: string | number | bigint;
275
+ actualGasUsed: string | number | bigint;
276
+ entryPoint: string;
277
+ logs: {
278
+ address: string;
279
+ data: string;
280
+ logIndex: string | number | bigint;
281
+ transactionIndex: string | number | bigint;
282
+ transactionHash: string;
283
+ blockHash: string;
284
+ blockNumber: string | number | bigint;
285
+ topics: string[];
286
+ }[];
287
+ receipt: {
288
+ to: string | null;
289
+ gasUsed: string | number | bigint;
290
+ status: string | number | bigint | null;
291
+ contractAddress: string | null;
292
+ transactionIndex: string | number | bigint;
293
+ transactionHash: string;
294
+ blockHash: string;
295
+ blockNumber: string | number | bigint;
296
+ from: string;
297
+ cumulativeGasUsed: string | number | bigint;
298
+ logs: {
299
+ address: string;
300
+ data: string;
301
+ logIndex: string | number | bigint;
302
+ transactionIndex: string | number | bigint;
303
+ transactionHash: string;
304
+ blockHash: string;
305
+ blockNumber: string | number | bigint;
306
+ topics: string[];
307
+ }[];
308
+ logsBloom: string;
309
+ effectiveGasPrice?: string | number | bigint | null | undefined;
310
+ };
311
+ paymaster?: string | undefined;
312
+ reason?: string | undefined;
313
+ } | null;
314
+ params: [string];
315
+ method: "eth_getUserOperationReceipt";
316
+ }>;
317
+ method: "eth_getUserOperationReceipt";
318
+ handler: (args: {
319
+ rpcHandler: import("../index.js").RpcHandler;
320
+ params: readonly [`0x${string}`];
321
+ apiVersion: import("../../types/index.js").ApiVersion;
322
+ }) => {
323
+ sender: `0x${string}`;
324
+ userOpHash: `0x${string}`;
325
+ nonce: bigint;
326
+ success: boolean;
327
+ actualGasCost: bigint;
328
+ actualGasUsed: bigint;
329
+ entryPoint: `0x${string}`;
330
+ logs: {
331
+ address: `0x${string}`;
332
+ data: `0x${string}`;
333
+ logIndex: bigint;
334
+ transactionIndex: bigint;
335
+ transactionHash: `0x${string}`;
336
+ blockHash: `0x${string}`;
337
+ blockNumber: bigint;
338
+ topics: `0x${string}`[];
339
+ }[];
340
+ receipt: {
341
+ to: `0x${string}` | null;
342
+ gasUsed: bigint;
343
+ status: bigint | null;
344
+ contractAddress: `0x${string}` | null;
345
+ transactionIndex: bigint;
346
+ transactionHash: `0x${string}`;
347
+ blockHash: `0x${string}`;
348
+ blockNumber: bigint;
349
+ from: `0x${string}`;
350
+ cumulativeGasUsed: bigint;
351
+ logs: {
352
+ address: `0x${string}`;
353
+ data: `0x${string}`;
354
+ logIndex: bigint;
355
+ transactionIndex: bigint;
356
+ transactionHash: `0x${string}`;
357
+ blockHash: `0x${string}`;
358
+ blockNumber: bigint;
359
+ topics: `0x${string}`[];
360
+ }[];
361
+ logsBloom: string;
362
+ effectiveGasPrice?: bigint | null | undefined;
363
+ };
364
+ paymaster?: `0x${string}` | undefined;
365
+ reason?: `0x${string}` | undefined;
366
+ } | Promise<{
367
+ sender: `0x${string}`;
368
+ userOpHash: `0x${string}`;
369
+ nonce: bigint;
370
+ success: boolean;
371
+ actualGasCost: bigint;
372
+ actualGasUsed: bigint;
373
+ entryPoint: `0x${string}`;
374
+ logs: {
375
+ address: `0x${string}`;
376
+ data: `0x${string}`;
377
+ logIndex: bigint;
378
+ transactionIndex: bigint;
379
+ transactionHash: `0x${string}`;
380
+ blockHash: `0x${string}`;
381
+ blockNumber: bigint;
382
+ topics: `0x${string}`[];
383
+ }[];
384
+ receipt: {
385
+ to: `0x${string}` | null;
386
+ gasUsed: bigint;
387
+ status: bigint | null;
388
+ contractAddress: `0x${string}` | null;
389
+ transactionIndex: bigint;
390
+ transactionHash: `0x${string}`;
391
+ blockHash: `0x${string}`;
392
+ blockNumber: bigint;
393
+ from: `0x${string}`;
394
+ cumulativeGasUsed: bigint;
395
+ logs: {
396
+ address: `0x${string}`;
397
+ data: `0x${string}`;
398
+ logIndex: bigint;
399
+ transactionIndex: bigint;
400
+ transactionHash: `0x${string}`;
401
+ blockHash: `0x${string}`;
402
+ blockNumber: bigint;
403
+ topics: `0x${string}`[];
404
+ }[];
405
+ logsBloom: string;
406
+ effectiveGasPrice?: bigint | null | undefined;
407
+ };
408
+ paymaster?: `0x${string}` | undefined;
409
+ reason?: `0x${string}` | undefined;
410
+ } | null> | null;
411
+ };
412
+ //# sourceMappingURL=eth_getUserOperationReceipt.d.ts.map
@@ -0,0 +1,11 @@
1
+ import { createMethodHandler } from "../createMethodHandler.js";
2
+ import { getUserOperationReceiptSchema } from "../../types/index.js";
3
+ export const ethGetUserOperationReceiptHandler = createMethodHandler({
4
+ method: "eth_getUserOperationReceipt",
5
+ schema: getUserOperationReceiptSchema,
6
+ handler: ({ rpcHandler, params }) => {
7
+ const [userOperationHash] = params;
8
+ return rpcHandler.executorManager.getUserOperationReceipt(userOperationHash);
9
+ }
10
+ });
11
+ //# sourceMappingURL=eth_getUserOperationReceipt.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"eth_getUserOperationReceipt.js","sourceRoot":"","sources":["../../../rpc/methods/eth_getUserOperationReceipt.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAA;AAC5D,OAAO,EAAE,6BAA6B,EAAE,MAAM,aAAa,CAAA;AAE3D,MAAM,CAAC,MAAM,iCAAiC,GAAG,mBAAmB,CAAC;IACjE,MAAM,EAAE,6BAA6B;IACrC,MAAM,EAAE,6BAA6B;IACrC,OAAO,EAAE,CAAC,EAAE,UAAU,EAAE,MAAM,EAAE,EAAE,EAAE;QAChC,MAAM,CAAC,iBAAiB,CAAC,GAAG,MAAM,CAAA;QAClC,OAAO,UAAU,CAAC,eAAe,CAAC,uBAAuB,CACrD,iBAAiB,CACpB,CAAA;IACL,CAAC;CACJ,CAAC,CAAA"}