@pimlico/alto 0.0.2 → 0.0.3

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 (233) hide show
  1. package/esm/cli/alto.d.ts +6 -0
  2. package/esm/cli/alto.js +92 -0
  3. package/esm/cli/alto.js.map +1 -0
  4. package/esm/cli/config/bundler.d.ts +397 -0
  5. package/esm/cli/config/bundler.js +133 -0
  6. package/esm/cli/config/bundler.js.map +1 -0
  7. package/esm/cli/config/index.d.ts +3 -0
  8. package/esm/cli/config/index.js +3 -0
  9. package/esm/cli/config/index.js.map +1 -0
  10. package/esm/cli/config/options.d.ts +11 -0
  11. package/esm/cli/config/options.js +342 -0
  12. package/esm/cli/config/options.js.map +1 -0
  13. package/esm/cli/customTransport.d.ts +14 -0
  14. package/esm/cli/customTransport.js +53 -0
  15. package/esm/cli/customTransport.js.map +1 -0
  16. package/esm/cli/handler.d.ts +3 -0
  17. package/esm/cli/handler.js +116 -0
  18. package/esm/cli/handler.js.map +1 -0
  19. package/esm/cli/index.d.ts +4 -0
  20. package/esm/cli/index.js +4 -0
  21. package/esm/cli/index.js.map +1 -0
  22. package/esm/cli/instrumentation.d.ts +2 -0
  23. package/esm/cli/instrumentation.js +39 -0
  24. package/esm/cli/instrumentation.js.map +1 -0
  25. package/esm/cli/setupServer.d.ts +17 -0
  26. package/esm/cli/setupServer.js +155 -0
  27. package/esm/cli/setupServer.js.map +1 -0
  28. package/esm/cli/util.d.ts +22 -0
  29. package/esm/cli/util.js +30 -0
  30. package/esm/cli/util.js.map +1 -0
  31. package/esm/executor/executor.d.ts +55 -0
  32. package/esm/executor/executor.js +645 -0
  33. package/esm/executor/executor.js.map +1 -0
  34. package/esm/executor/executorManager.d.ts +34 -0
  35. package/esm/executor/executorManager.js +402 -0
  36. package/esm/executor/executorManager.js.map +1 -0
  37. package/esm/executor/index.d.ts +5 -0
  38. package/esm/executor/index.js +5 -0
  39. package/esm/executor/index.js.map +1 -0
  40. package/esm/executor/senderManager.d.ts +17 -0
  41. package/esm/executor/senderManager.js +160 -0
  42. package/esm/executor/senderManager.js.map +1 -0
  43. package/esm/executor/test/utils.d.ts +13 -0
  44. package/esm/executor/test/utils.js +75 -0
  45. package/esm/executor/test/utils.js.map +1 -0
  46. package/esm/executor/utils.d.ts +32 -0
  47. package/esm/executor/utils.js +241 -0
  48. package/esm/executor/utils.js.map +1 -0
  49. package/esm/index.d.ts +2 -0
  50. package/esm/index.js +2 -0
  51. package/esm/index.js.map +1 -0
  52. package/esm/mempool/index.d.ts +5 -0
  53. package/esm/mempool/index.js +5 -0
  54. package/esm/mempool/index.js.map +1 -0
  55. package/esm/mempool/mempool.d.ts +64 -0
  56. package/esm/mempool/mempool.js +489 -0
  57. package/esm/mempool/mempool.js.map +1 -0
  58. package/esm/mempool/monitoring.d.ts +10 -0
  59. package/esm/mempool/monitoring.js +34 -0
  60. package/esm/mempool/monitoring.js.map +1 -0
  61. package/esm/mempool/nullMempool.d.ts +15 -0
  62. package/esm/mempool/nullMempool.js +36 -0
  63. package/esm/mempool/nullMempool.js.map +1 -0
  64. package/esm/mempool/reputationManager.d.ts +115 -0
  65. package/esm/mempool/reputationManager.js +397 -0
  66. package/esm/mempool/reputationManager.js.map +1 -0
  67. package/esm/mempool/store.d.ts +22 -0
  68. package/esm/mempool/store.js +123 -0
  69. package/esm/mempool/store.js.map +1 -0
  70. package/esm/rpc/EntryPointSimulationsV07.d.ts +58 -0
  71. package/esm/rpc/EntryPointSimulationsV07.js +407 -0
  72. package/esm/rpc/EntryPointSimulationsV07.js.map +1 -0
  73. package/esm/rpc/ExecuteSimulator.d.ts +37 -0
  74. package/esm/rpc/ExecuteSimulator.js +48 -0
  75. package/esm/rpc/ExecuteSimulator.js.map +1 -0
  76. package/esm/rpc/gasEstimation.d.ts +17 -0
  77. package/esm/rpc/gasEstimation.js +410 -0
  78. package/esm/rpc/gasEstimation.js.map +1 -0
  79. package/esm/rpc/index.d.ts +5 -0
  80. package/esm/rpc/index.js +5 -0
  81. package/esm/rpc/index.js.map +1 -0
  82. package/esm/rpc/nonceQueuer.d.ts +25 -0
  83. package/esm/rpc/nonceQueuer.js +135 -0
  84. package/esm/rpc/nonceQueuer.js.map +1 -0
  85. package/esm/rpc/rpcHandler.d.ts +64 -0
  86. package/esm/rpc/rpcHandler.js +727 -0
  87. package/esm/rpc/rpcHandler.js.map +1 -0
  88. package/esm/rpc/server.d.ts +31 -0
  89. package/esm/rpc/server.js +239 -0
  90. package/esm/rpc/server.js.map +1 -0
  91. package/esm/rpc/validation/BundlerCollectorTracerV06.d.ts +102 -0
  92. package/esm/rpc/validation/BundlerCollectorTracerV06.js +255 -0
  93. package/esm/rpc/validation/BundlerCollectorTracerV06.js.map +1 -0
  94. package/esm/rpc/validation/BundlerCollectorTracerV07.d.ts +102 -0
  95. package/esm/rpc/validation/BundlerCollectorTracerV07.js +254 -0
  96. package/esm/rpc/validation/BundlerCollectorTracerV07.js.map +1 -0
  97. package/esm/rpc/validation/SafeValidator.d.ts +35 -0
  98. package/esm/rpc/validation/SafeValidator.js +487 -0
  99. package/esm/rpc/validation/SafeValidator.js.map +1 -0
  100. package/esm/rpc/validation/TracerResultParserV06.d.ts +13 -0
  101. package/esm/rpc/validation/TracerResultParserV06.js +578 -0
  102. package/esm/rpc/validation/TracerResultParserV06.js.map +1 -0
  103. package/esm/rpc/validation/TracerResultParserV07.d.ts +33 -0
  104. package/esm/rpc/validation/TracerResultParserV07.js +557 -0
  105. package/esm/rpc/validation/TracerResultParserV07.js.map +1 -0
  106. package/esm/rpc/validation/UnsafeValidator.d.ts +63 -0
  107. package/esm/rpc/validation/UnsafeValidator.js +257 -0
  108. package/esm/rpc/validation/UnsafeValidator.js.map +1 -0
  109. package/esm/rpc/validation/index.d.ts +3 -0
  110. package/esm/rpc/validation/index.js +3 -0
  111. package/esm/rpc/validation/index.js.map +1 -0
  112. package/esm/rpc/validation/tracer.d.ts +122 -0
  113. package/esm/rpc/validation/tracer.js +82 -0
  114. package/esm/rpc/validation/tracer.js.map +1 -0
  115. package/esm/types/contracts/BundleBulker.d.ts +120 -0
  116. package/esm/types/contracts/BundleBulker.js +157 -0
  117. package/esm/types/contracts/BundleBulker.js.map +1 -0
  118. package/esm/types/contracts/CallEngine.d.ts +28 -0
  119. package/esm/types/contracts/CallEngine.js +37 -0
  120. package/esm/types/contracts/CallEngine.js.map +1 -0
  121. package/esm/types/contracts/CodeHashGetter.d.ts +37 -0
  122. package/esm/types/contracts/CodeHashGetter.js +45 -0
  123. package/esm/types/contracts/CodeHashGetter.js.map +1 -0
  124. package/esm/types/contracts/EntryPoint.d.ts +1789 -0
  125. package/esm/types/contracts/EntryPoint.js +2304 -0
  126. package/esm/types/contracts/EntryPoint.js.map +1 -0
  127. package/esm/types/contracts/EntryPointSimulations.d.ts +153 -0
  128. package/esm/types/contracts/EntryPointSimulations.js +15 -0
  129. package/esm/types/contracts/EntryPointSimulations.js.map +1 -0
  130. package/esm/types/contracts/IOpInflator.d.ts +61 -0
  131. package/esm/types/contracts/IOpInflator.js +80 -0
  132. package/esm/types/contracts/IOpInflator.js.map +1 -0
  133. package/esm/types/contracts/IPaymaster.d.ts +3 -0
  134. package/esm/types/contracts/IPaymaster.js +117 -0
  135. package/esm/types/contracts/IPaymaster.js.map +1 -0
  136. package/esm/types/contracts/Inflator.d.ts +65 -0
  137. package/esm/types/contracts/Inflator.js +84 -0
  138. package/esm/types/contracts/Inflator.js.map +1 -0
  139. package/esm/types/contracts/PerOpInflator.d.ts +176 -0
  140. package/esm/types/contracts/PerOpInflator.js +229 -0
  141. package/esm/types/contracts/PerOpInflator.js.map +1 -0
  142. package/esm/types/contracts/PimlicoEntryPointSimulations.d.ts +23 -0
  143. package/esm/types/contracts/PimlicoEntryPointSimulations.js +33 -0
  144. package/esm/types/contracts/PimlicoEntryPointSimulations.js.map +1 -0
  145. package/esm/types/contracts/SenderCreator.d.ts +4 -0
  146. package/esm/types/contracts/SenderCreator.js +23 -0
  147. package/esm/types/contracts/SenderCreator.js.map +1 -0
  148. package/esm/types/contracts/SimpleAccountFactory.d.ts +57 -0
  149. package/esm/types/contracts/SimpleAccountFactory.js +76 -0
  150. package/esm/types/contracts/SimpleAccountFactory.js.map +1 -0
  151. package/esm/types/contracts/TestOpcodesAccount.d.ts +4 -0
  152. package/esm/types/contracts/TestOpcodesAccount.js +281 -0
  153. package/esm/types/contracts/TestOpcodesAccount.js.map +1 -0
  154. package/esm/types/contracts/TestOpcodesAccountFactory.d.ts +4 -0
  155. package/esm/types/contracts/TestOpcodesAccountFactory.js +23 -0
  156. package/esm/types/contracts/TestOpcodesAccountFactory.js.map +1 -0
  157. package/esm/types/contracts/TestStorageAccount.d.ts +4 -0
  158. package/esm/types/contracts/TestStorageAccount.js +313 -0
  159. package/esm/types/contracts/TestStorageAccount.js.map +1 -0
  160. package/esm/types/contracts/index.d.ts +17 -0
  161. package/esm/types/contracts/index.js +17 -0
  162. package/esm/types/contracts/index.js.map +1 -0
  163. package/esm/types/gasPrice.d.ts +110 -0
  164. package/esm/types/gasPrice.js +52 -0
  165. package/esm/types/gasPrice.js.map +1 -0
  166. package/esm/types/index.d.ts +11 -0
  167. package/esm/types/index.js +11 -0
  168. package/esm/types/index.js.map +1 -0
  169. package/esm/types/interfaces.d.ts +26 -0
  170. package/esm/types/interfaces.js +2 -0
  171. package/esm/types/interfaces.js.map +1 -0
  172. package/esm/types/mempool.d.ts +79 -0
  173. package/esm/types/mempool.js +16 -0
  174. package/esm/types/mempool.js.map +1 -0
  175. package/esm/types/schemas.d.ts +4791 -0
  176. package/esm/types/schemas.js +497 -0
  177. package/esm/types/schemas.js.map +1 -0
  178. package/esm/types/test/validationTestErrors.d.ts +3 -0
  179. package/esm/types/test/validationTestErrors.js +229 -0
  180. package/esm/types/test/validationTestErrors.js.map +1 -0
  181. package/esm/types/utils.d.ts +24 -0
  182. package/esm/types/utils.js +30 -0
  183. package/esm/types/utils.js.map +1 -0
  184. package/esm/types/validation.d.ts +14327 -0
  185. package/esm/types/validation.js +304 -0
  186. package/esm/types/validation.js.map +1 -0
  187. package/esm/utils/bigInt.d.ts +3 -0
  188. package/esm/utils/bigInt.js +9 -0
  189. package/esm/utils/bigInt.js.map +1 -0
  190. package/esm/utils/compressionHandler.d.ts +11 -0
  191. package/esm/utils/compressionHandler.js +39 -0
  192. package/esm/utils/compressionHandler.js.map +1 -0
  193. package/esm/utils/gasPriceManager.d.ts +34 -0
  194. package/esm/utils/gasPriceManager.js +338 -0
  195. package/esm/utils/gasPriceManager.js.map +1 -0
  196. package/esm/utils/helpers.d.ts +4 -0
  197. package/esm/utils/helpers.js +13 -0
  198. package/esm/utils/helpers.js.map +1 -0
  199. package/esm/utils/index.d.ts +11 -0
  200. package/esm/utils/index.js +10 -0
  201. package/esm/utils/index.js.map +1 -0
  202. package/esm/utils/logger.d.ts +6 -0
  203. package/esm/utils/logger.js +76 -0
  204. package/esm/utils/logger.js.map +1 -0
  205. package/esm/utils/metrics.d.ts +22 -0
  206. package/esm/utils/metrics.js +150 -0
  207. package/esm/utils/metrics.js.map +1 -0
  208. package/esm/utils/rpc-reply.d.ts +17 -0
  209. package/esm/utils/rpc-reply.js +41 -0
  210. package/esm/utils/rpc-reply.js.map +1 -0
  211. package/esm/utils/test.d.ts +17 -0
  212. package/esm/utils/test.js +130 -0
  213. package/esm/utils/test.js.map +1 -0
  214. package/esm/utils/userop.d.ts +49 -0
  215. package/esm/utils/userop.js +408 -0
  216. package/esm/utils/userop.js.map +1 -0
  217. package/esm/utils/validation.d.ts +65 -0
  218. package/esm/utils/validation.js +461 -0
  219. package/esm/utils/validation.js.map +1 -0
  220. package/lib/cli/config/bundler.d.ts +6 -0
  221. package/lib/cli/config/bundler.js +2 -1
  222. package/lib/cli/config/bundler.js.map +1 -1
  223. package/lib/cli/config/options.js +6 -0
  224. package/lib/cli/config/options.js.map +1 -1
  225. package/lib/cli/setupServer.js +1 -1
  226. package/lib/cli/setupServer.js.map +1 -1
  227. package/lib/executor/executor.d.ts +2 -1
  228. package/lib/executor/executor.js +6 -4
  229. package/lib/executor/executor.js.map +1 -1
  230. package/lib/executor/utils.d.ts +1 -1
  231. package/lib/executor/utils.js +4 -4
  232. package/lib/executor/utils.js.map +1 -1
  233. package/package.json +1 -1
@@ -0,0 +1,123 @@
1
+ export class MemoryStore {
2
+ // private monitoredTransactions: Map<HexData32, TransactionInfo> = new Map() // tx hash to info
3
+ outstandingUserOperations = [];
4
+ processingUserOperations = [];
5
+ submittedUserOperations = [];
6
+ logger;
7
+ metrics;
8
+ constructor(logger, metrics) {
9
+ this.logger = logger;
10
+ this.metrics = metrics;
11
+ }
12
+ addOutstanding(op) {
13
+ const store = this.outstandingUserOperations;
14
+ store.push(op);
15
+ this.logger.debug({ userOpHash: op.userOperationHash, store: "outstanding" }, "added user op to mempool");
16
+ this.metrics.userOperationsInMempool
17
+ .labels({
18
+ status: "outstanding"
19
+ })
20
+ .inc();
21
+ }
22
+ addProcessing(op) {
23
+ const store = this.processingUserOperations;
24
+ store.push(op);
25
+ this.logger.debug({ userOpHash: op.userOperationHash, store: "processing" }, "added user op to mempool");
26
+ this.metrics.userOperationsInMempool
27
+ .labels({
28
+ status: "processing"
29
+ })
30
+ .inc();
31
+ }
32
+ addSubmitted(op) {
33
+ const store = this.submittedUserOperations;
34
+ store.push(op);
35
+ this.logger.debug({
36
+ userOpHash: op.userOperation.userOperationHash,
37
+ store: "submitted"
38
+ }, "added user op to submitted mempool");
39
+ this.metrics.userOperationsInMempool
40
+ .labels({
41
+ status: "submitted"
42
+ })
43
+ .inc();
44
+ }
45
+ removeOutstanding(userOpHash) {
46
+ const index = this.outstandingUserOperations.findIndex((op) => op.userOperationHash === userOpHash);
47
+ if (index === -1) {
48
+ this.logger.warn({ userOpHash, store: "outstanding" }, "tried to remove non-existent user op from mempool");
49
+ return;
50
+ }
51
+ this.outstandingUserOperations.splice(index, 1);
52
+ this.logger.debug({ userOpHash, store: "outstanding" }, "removed user op from mempool");
53
+ this.metrics.userOperationsInMempool
54
+ .labels({
55
+ status: "outstanding"
56
+ })
57
+ .dec();
58
+ }
59
+ removeProcessing(userOpHash) {
60
+ const index = this.processingUserOperations.findIndex((op) => op.userOperationHash === userOpHash);
61
+ if (index === -1) {
62
+ this.logger.warn({ userOpHash, store: "outstanding" }, "tried to remove non-existent user op from mempool");
63
+ return;
64
+ }
65
+ this.processingUserOperations.splice(index, 1);
66
+ this.logger.debug({ userOpHash, store: "processing" }, "removed user op from mempool");
67
+ this.metrics.userOperationsInMempool
68
+ .labels({
69
+ status: "processing"
70
+ })
71
+ .dec();
72
+ }
73
+ removeSubmitted(userOpHash) {
74
+ const index = this.submittedUserOperations.findIndex((op) => op.userOperation.userOperationHash === userOpHash);
75
+ if (index === -1) {
76
+ this.logger.warn({ userOpHash, store: "submitted" }, "tried to remove non-existent user op from mempool");
77
+ return;
78
+ }
79
+ this.submittedUserOperations.splice(index, 1);
80
+ this.logger.debug({ userOpHash, store: "submitted" }, "removed user op from mempool");
81
+ this.metrics.userOperationsInMempool
82
+ .labels({
83
+ status: "submitted"
84
+ })
85
+ .dec();
86
+ }
87
+ dumpOutstanding() {
88
+ this.logger.trace({
89
+ store: "outstanding",
90
+ length: this.outstandingUserOperations.length
91
+ }, "dumping mempool");
92
+ return this.outstandingUserOperations;
93
+ }
94
+ dumpProcessing() {
95
+ this.logger.trace({
96
+ store: "processing",
97
+ length: this.processingUserOperations.length
98
+ }, "dumping mempool");
99
+ return this.processingUserOperations;
100
+ }
101
+ dumpSubmitted() {
102
+ this.logger.trace({ store: "submitted", length: this.submittedUserOperations.length }, "dumping mempool");
103
+ return this.submittedUserOperations;
104
+ }
105
+ clear(from) {
106
+ if (from === "outstanding") {
107
+ this.outstandingUserOperations = [];
108
+ this.logger.debug({ store: from, length: this.outstandingUserOperations.length }, "clearing mempool");
109
+ }
110
+ else if (from === "processing") {
111
+ this.processingUserOperations = [];
112
+ this.logger.debug({ store: from, length: this.processingUserOperations.length }, "clearing mempool");
113
+ }
114
+ else if (from === "submitted") {
115
+ this.submittedUserOperations = [];
116
+ this.logger.debug({ store: from, length: this.submittedUserOperations.length }, "clearing mempool");
117
+ }
118
+ else {
119
+ throw new Error("unreachable");
120
+ }
121
+ }
122
+ }
123
+ //# sourceMappingURL=store.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"store.js","sourceRoot":"","sources":["../../mempool/store.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,58 @@
1
+ import type { Hex } from "viem";
2
+ import { type Address, type PublicClient } from "viem";
3
+ import { ExecutionErrors, ValidationErrors, type StateOverrides, type UserOperationV07 } from "../types/index.js";
4
+ export declare function parseFailedOpWithRevert(data: Hex): string;
5
+ export declare function simulateHandleOp(userOperation: UserOperationV07, entryPoint: Address, publicClient: PublicClient, replacedEntryPoint: boolean, targetAddress: Address, targetCallData: Hex, entryPointSimulationsAddress: Address, stateOverride?: StateOverrides): Promise<{
6
+ readonly result: "failed";
7
+ readonly data: string;
8
+ readonly code: ExecutionErrors;
9
+ } | {
10
+ readonly result: "failed";
11
+ readonly data: unknown;
12
+ readonly code: ValidationErrors.SimulateValidation;
13
+ } | {
14
+ readonly result: "execution";
15
+ readonly data: {
16
+ preOpGas: bigint;
17
+ paid: bigint;
18
+ validationData: bigint;
19
+ paymasterValidationData: bigint;
20
+ targetSuccess: boolean;
21
+ targetResult: `0x${string}`;
22
+ };
23
+ readonly code?: undefined;
24
+ }>;
25
+ export declare function simulateValidation(userOperation: UserOperationV07, queuedUserOperations: UserOperationV07[], entryPoint: Address, publicClient: PublicClient, entryPointSimulationsAddress: Address): Promise<{
26
+ simulateValidationResult: {
27
+ status: "validation" | "failed";
28
+ data: string | {
29
+ returnInfo: {
30
+ preOpGas: bigint;
31
+ prefund: bigint;
32
+ paymasterContext: `0x${string}`;
33
+ accountValidationData: bigint;
34
+ paymasterValidationData: bigint;
35
+ accountSigFailed?: boolean | undefined;
36
+ paymasterSigFailed?: boolean | undefined;
37
+ validAfter?: number | undefined;
38
+ validUntil?: number | undefined;
39
+ };
40
+ senderInfo: {
41
+ stake: bigint;
42
+ unstakeDelaySec: bigint;
43
+ addr?: string | undefined;
44
+ };
45
+ factoryInfo: {
46
+ stake: bigint;
47
+ unstakeDelaySec: bigint;
48
+ addr?: string | undefined;
49
+ } | undefined;
50
+ paymasterInfo: {
51
+ stake: bigint;
52
+ unstakeDelaySec: bigint;
53
+ addr?: string | undefined;
54
+ } | undefined;
55
+ };
56
+ };
57
+ }>;
58
+ //# sourceMappingURL=EntryPointSimulationsV07.d.ts.map
@@ -0,0 +1,407 @@
1
+ import { decodeErrorResult, encodeFunctionData, toHex, decodeAbiParameters } from "viem";
2
+ import { ExecuteSimulatorDeployedBytecode } from "./ExecuteSimulator.js";
3
+ import { EntryPointV07Abi, EntryPointV07SimulationsAbi, ExecutionErrors, ValidationErrors, PimlicoEntryPointSimulationsAbi } from "../types/index.js";
4
+ import { deepHexlify, toPackedUserOperation } from "../utils/index.js";
5
+ const panicCodes = {
6
+ // from https://docs.soliditylang.org/en/v0.8.0/control-structures.html
7
+ 1: "assert(false)",
8
+ 17: "arithmetic overflow/underflow",
9
+ 18: "divide by zero",
10
+ 33: "invalid enum value",
11
+ 34: "storage byte array that is incorrectly encoded",
12
+ 49: ".pop() on an empty array.",
13
+ 50: "array sout-of-bounds or negative index",
14
+ 65: "memory overflow",
15
+ 81: "zero-initialized variable of internal function type"
16
+ };
17
+ export function parseFailedOpWithRevert(data) {
18
+ const methodSig = data.slice(0, 10);
19
+ const dataParams = `0x${data.slice(10)}`;
20
+ if (methodSig === "0x08c379a0") {
21
+ const [err] = decodeAbiParameters([
22
+ {
23
+ name: "err",
24
+ type: "string"
25
+ }
26
+ ], dataParams);
27
+ return err;
28
+ }
29
+ if (methodSig === "0x4e487b71") {
30
+ const [code] = decodeAbiParameters([
31
+ {
32
+ name: "err",
33
+ type: "uint256"
34
+ }
35
+ ], dataParams);
36
+ return panicCodes[Number(code)] ?? `${code}`;
37
+ }
38
+ return data;
39
+ }
40
+ function getStateOverrides({ userOperation, entryPoint, replacedEntryPoint, stateOverride = {} }) {
41
+ return replacedEntryPoint
42
+ ? {
43
+ ...stateOverride,
44
+ [userOperation.sender]: {
45
+ balance: toHex(100000000000000000000000n),
46
+ ...(stateOverride
47
+ ? deepHexlify(stateOverride?.[userOperation.sender])
48
+ : [])
49
+ },
50
+ [entryPoint]: {
51
+ code: ExecuteSimulatorDeployedBytecode
52
+ }
53
+ }
54
+ : {
55
+ ...stateOverride,
56
+ [userOperation.sender]: {
57
+ balance: toHex(100000000000000000000000n),
58
+ ...(stateOverride
59
+ ? deepHexlify(stateOverride?.[userOperation.sender])
60
+ : [])
61
+ }
62
+ };
63
+ }
64
+ function validateTargetCallDataResult(data) {
65
+ const decodedDelegateAndError = decodeErrorResult({
66
+ abi: EntryPointV07Abi,
67
+ data: data
68
+ });
69
+ if (!decodedDelegateAndError?.args?.[1]) {
70
+ throw new Error("Unexpected error");
71
+ }
72
+ try {
73
+ const decodedError = decodeErrorResult({
74
+ abi: EntryPointV07SimulationsAbi,
75
+ data: decodedDelegateAndError.args[1]
76
+ });
77
+ if (decodedError?.args) {
78
+ const targetSuccess = decodedError?.args[0];
79
+ const targetResult = decodedError?.args[1];
80
+ if (!targetSuccess) {
81
+ return {
82
+ result: "failed",
83
+ data: parseFailedOpWithRevert(targetResult),
84
+ code: ExecutionErrors.UserOperationReverted
85
+ };
86
+ }
87
+ return {
88
+ result: "success"
89
+ };
90
+ }
91
+ return {
92
+ result: "failed",
93
+ data: "Unknown error, could not parse target call data result.",
94
+ code: ExecutionErrors.UserOperationReverted
95
+ };
96
+ }
97
+ catch (e) {
98
+ // no error we go the result
99
+ return {
100
+ result: "failed",
101
+ data: "Unknown error, could not parse target call data result.",
102
+ code: ExecutionErrors.UserOperationReverted
103
+ };
104
+ }
105
+ }
106
+ function getSimulateHandleOpResult(data) {
107
+ const decodedDelegateAndError = decodeErrorResult({
108
+ abi: EntryPointV07Abi,
109
+ data: data
110
+ });
111
+ if (!decodedDelegateAndError?.args?.[1]) {
112
+ throw new Error("Unexpected error");
113
+ }
114
+ try {
115
+ const decodedError = decodeErrorResult({
116
+ abi: EntryPointV07SimulationsAbi,
117
+ data: decodedDelegateAndError.args[1]
118
+ });
119
+ if (decodedError &&
120
+ decodedError.errorName === "FailedOp" &&
121
+ decodedError.args) {
122
+ return {
123
+ result: "failed",
124
+ data: decodedError.args[1],
125
+ code: ValidationErrors.SimulateValidation
126
+ };
127
+ }
128
+ if (decodedError &&
129
+ decodedError.errorName === "FailedOpWithRevert" &&
130
+ decodedError.args) {
131
+ return {
132
+ result: "failed",
133
+ data: parseFailedOpWithRevert(decodedError.args?.[2]),
134
+ code: ValidationErrors.SimulateValidation
135
+ };
136
+ }
137
+ }
138
+ catch {
139
+ // no error we go the result
140
+ const decodedResult = decodeAbiParameters([
141
+ {
142
+ components: [
143
+ {
144
+ internalType: "uint256",
145
+ name: "preOpGas",
146
+ type: "uint256"
147
+ },
148
+ {
149
+ internalType: "uint256",
150
+ name: "paid",
151
+ type: "uint256"
152
+ },
153
+ {
154
+ internalType: "uint256",
155
+ name: "validationData",
156
+ type: "uint256"
157
+ },
158
+ {
159
+ internalType: "uint256",
160
+ name: "paymasterValidationData",
161
+ type: "uint256"
162
+ },
163
+ {
164
+ internalType: "bool",
165
+ name: "targetSuccess",
166
+ type: "bool"
167
+ },
168
+ {
169
+ internalType: "bytes",
170
+ name: "targetResult",
171
+ type: "bytes"
172
+ }
173
+ ],
174
+ internalType: "struct IEntryPointSimulations.ExecutionResult",
175
+ name: "",
176
+ type: "tuple"
177
+ }
178
+ ], decodedDelegateAndError.args[1])[0];
179
+ return {
180
+ result: "execution",
181
+ data: decodedResult
182
+ };
183
+ }
184
+ throw new Error("Unexpected error");
185
+ }
186
+ async function callPimlicoEntryPointSimulations(publicClient, entryPoint, entryPointSimulationsCallData, entryPointSimulationsAddress, stateOverride) {
187
+ const callData = encodeFunctionData({
188
+ abi: PimlicoEntryPointSimulationsAbi,
189
+ functionName: "simulateEntryPoint",
190
+ args: [entryPoint, entryPointSimulationsCallData]
191
+ });
192
+ const result = (await publicClient.request({
193
+ method: "eth_call",
194
+ params: [
195
+ {
196
+ to: entryPointSimulationsAddress,
197
+ data: callData
198
+ },
199
+ "latest",
200
+ // @ts-ignore
201
+ stateOverride
202
+ ]
203
+ }));
204
+ const returnBytes = decodeAbiParameters([{ name: "ret", type: "bytes[]" }], result);
205
+ return returnBytes[0];
206
+ }
207
+ export async function simulateHandleOp(userOperation, entryPoint, publicClient, replacedEntryPoint, targetAddress, targetCallData, entryPointSimulationsAddress, stateOverride = {}) {
208
+ const finalParam = getStateOverrides({
209
+ userOperation,
210
+ entryPoint,
211
+ replacedEntryPoint,
212
+ stateOverride
213
+ });
214
+ const packedUserOperation = toPackedUserOperation(userOperation);
215
+ const entryPointSimulationsSimulateHandleOpCallData = encodeFunctionData({
216
+ abi: EntryPointV07SimulationsAbi,
217
+ functionName: "simulateHandleOp",
218
+ args: [packedUserOperation]
219
+ });
220
+ const entryPointSimulationsSimulateTargetCallData = encodeFunctionData({
221
+ abi: EntryPointV07SimulationsAbi,
222
+ functionName: "simulateCallData",
223
+ args: [packedUserOperation, targetAddress, targetCallData]
224
+ });
225
+ const cause = await callPimlicoEntryPointSimulations(publicClient, entryPoint, [
226
+ entryPointSimulationsSimulateHandleOpCallData,
227
+ entryPointSimulationsSimulateTargetCallData
228
+ ], entryPointSimulationsAddress, finalParam);
229
+ const targetCallValidationResult = validateTargetCallDataResult(cause[1]);
230
+ if (targetCallValidationResult.result === "failed") {
231
+ return targetCallValidationResult;
232
+ }
233
+ return getSimulateHandleOpResult(cause[0]);
234
+ }
235
+ function getSimulateValidationResult(errorData) {
236
+ const decodedDelegateAndError = decodeErrorResult({
237
+ abi: EntryPointV07Abi,
238
+ data: errorData
239
+ });
240
+ if (!decodedDelegateAndError?.args?.[1]) {
241
+ throw new Error("Unexpected error");
242
+ }
243
+ try {
244
+ const decodedError = decodeErrorResult({
245
+ abi: EntryPointV07SimulationsAbi,
246
+ data: decodedDelegateAndError.args[1]
247
+ });
248
+ if (decodedError &&
249
+ decodedError.errorName === "FailedOp" &&
250
+ decodedError.args) {
251
+ return {
252
+ status: "failed",
253
+ data: decodedError.args[1]
254
+ };
255
+ }
256
+ if (decodedError &&
257
+ decodedError.errorName === "FailedOpWithRevert" &&
258
+ decodedError.args) {
259
+ return {
260
+ status: "failed",
261
+ data: `${decodedError.args?.[1]} - ${parseFailedOpWithRevert(decodedError.args?.[2])}`
262
+ };
263
+ }
264
+ }
265
+ catch {
266
+ const decodedResult = decodeAbiParameters([
267
+ {
268
+ components: [
269
+ {
270
+ components: [
271
+ {
272
+ internalType: "uint256",
273
+ name: "preOpGas",
274
+ type: "uint256"
275
+ },
276
+ {
277
+ internalType: "uint256",
278
+ name: "prefund",
279
+ type: "uint256"
280
+ },
281
+ {
282
+ internalType: "uint256",
283
+ name: "accountValidationData",
284
+ type: "uint256"
285
+ },
286
+ {
287
+ internalType: "uint256",
288
+ name: "paymasterValidationData",
289
+ type: "uint256"
290
+ },
291
+ {
292
+ internalType: "bytes",
293
+ name: "paymasterContext",
294
+ type: "bytes"
295
+ }
296
+ ],
297
+ internalType: "struct IEntryPoint.ReturnInfo",
298
+ name: "returnInfo",
299
+ type: "tuple"
300
+ },
301
+ {
302
+ components: [
303
+ {
304
+ internalType: "uint256",
305
+ name: "stake",
306
+ type: "uint256"
307
+ },
308
+ {
309
+ internalType: "uint256",
310
+ name: "unstakeDelaySec",
311
+ type: "uint256"
312
+ }
313
+ ],
314
+ internalType: "struct IStakeManager.StakeInfo",
315
+ name: "senderInfo",
316
+ type: "tuple"
317
+ },
318
+ {
319
+ components: [
320
+ {
321
+ internalType: "uint256",
322
+ name: "stake",
323
+ type: "uint256"
324
+ },
325
+ {
326
+ internalType: "uint256",
327
+ name: "unstakeDelaySec",
328
+ type: "uint256"
329
+ }
330
+ ],
331
+ internalType: "struct IStakeManager.StakeInfo",
332
+ name: "factoryInfo",
333
+ type: "tuple"
334
+ },
335
+ {
336
+ components: [
337
+ {
338
+ internalType: "uint256",
339
+ name: "stake",
340
+ type: "uint256"
341
+ },
342
+ {
343
+ internalType: "uint256",
344
+ name: "unstakeDelaySec",
345
+ type: "uint256"
346
+ }
347
+ ],
348
+ internalType: "struct IStakeManager.StakeInfo",
349
+ name: "paymasterInfo",
350
+ type: "tuple"
351
+ },
352
+ {
353
+ components: [
354
+ {
355
+ internalType: "address",
356
+ name: "aggregator",
357
+ type: "address"
358
+ },
359
+ {
360
+ components: [
361
+ {
362
+ internalType: "uint256",
363
+ name: "stake",
364
+ type: "uint256"
365
+ },
366
+ {
367
+ internalType: "uint256",
368
+ name: "unstakeDelaySec",
369
+ type: "uint256"
370
+ }
371
+ ],
372
+ internalType: "struct IStakeManager.StakeInfo",
373
+ name: "stakeInfo",
374
+ type: "tuple"
375
+ }
376
+ ],
377
+ internalType: "struct IEntryPoint.AggregatorStakeInfo",
378
+ name: "aggregatorInfo",
379
+ type: "tuple"
380
+ }
381
+ ],
382
+ internalType: "struct IEntryPointSimulations.ValidationResult",
383
+ name: "",
384
+ type: "tuple"
385
+ }
386
+ ], decodedDelegateAndError.args[1])[0];
387
+ return {
388
+ status: "validation",
389
+ data: decodedResult
390
+ };
391
+ }
392
+ throw new Error("Unexpected error - errorName is not ValidationResult or ValidationResultWithAggregation");
393
+ }
394
+ export async function simulateValidation(userOperation, queuedUserOperations, entryPoint, publicClient, entryPointSimulationsAddress) {
395
+ const userOperations = [...queuedUserOperations, userOperation];
396
+ const packedUserOperations = userOperations.map(uo => toPackedUserOperation(uo));
397
+ const entryPointSimulationsCallData = encodeFunctionData({
398
+ abi: EntryPointV07SimulationsAbi,
399
+ functionName: "simulateValidationLast",
400
+ args: [packedUserOperations]
401
+ });
402
+ const errorResult = await callPimlicoEntryPointSimulations(publicClient, entryPoint, [entryPointSimulationsCallData], entryPointSimulationsAddress);
403
+ return {
404
+ simulateValidationResult: getSimulateValidationResult(errorResult[0])
405
+ };
406
+ }
407
+ //# sourceMappingURL=EntryPointSimulationsV07.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EntryPointSimulationsV07.js","sourceRoot":"","sources":["../../rpc/EntryPointSimulationsV07.ts"],"names":[],"mappings":"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"}