@aa-sdk/core 4.0.0-alpha.1 → 4.0.0-alpha.11

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 (275) hide show
  1. package/dist/cjs/account/smartContractAccount.d.ts +9 -3
  2. package/dist/cjs/account/smartContractAccount.js +11 -6
  3. package/dist/cjs/account/smartContractAccount.js.map +1 -1
  4. package/dist/cjs/actions/smartAccount/buildUserOperationFromTx.js.map +1 -1
  5. package/dist/cjs/actions/smartAccount/buildUserOperationFromTxs.js.map +1 -1
  6. package/dist/cjs/actions/smartAccount/checkGasSponsorshipEligibility.js.map +1 -1
  7. package/dist/cjs/actions/smartAccount/dropAndReplaceUserOperation.js +1 -5
  8. package/dist/cjs/actions/smartAccount/dropAndReplaceUserOperation.js.map +1 -1
  9. package/dist/cjs/actions/smartAccount/estimateUserOperationGas.js.map +1 -1
  10. package/dist/cjs/actions/smartAccount/internal/initUserOperation.js.map +1 -1
  11. package/dist/cjs/actions/smartAccount/internal/runMiddlewareStack.js.map +1 -1
  12. package/dist/cjs/actions/smartAccount/internal/sendUserOperation.js.map +1 -1
  13. package/dist/cjs/actions/smartAccount/sendUserOperation.js.map +1 -1
  14. package/dist/cjs/client/bundlerClient.js.map +1 -1
  15. package/dist/cjs/client/decorators/bundlerClient.js.map +1 -1
  16. package/dist/cjs/client/isSmartAccountClient.js.map +1 -1
  17. package/dist/cjs/client/smartAccountClient.js +6 -0
  18. package/dist/cjs/client/smartAccountClient.js.map +1 -1
  19. package/dist/cjs/client/types.d.ts +2 -7
  20. package/dist/cjs/client/types.js.map +1 -1
  21. package/dist/cjs/ens/utils.d.ts +1 -1
  22. package/dist/cjs/ens/utils.js +3 -3
  23. package/dist/cjs/ens/utils.js.map +1 -1
  24. package/dist/cjs/errors/account.js.map +1 -1
  25. package/dist/cjs/errors/client.js.map +1 -1
  26. package/dist/cjs/errors/entrypoint.js.map +1 -1
  27. package/dist/cjs/errors/signer.js.map +1 -1
  28. package/dist/cjs/errors/transaction.js.map +1 -1
  29. package/dist/cjs/errors/useroperation.js.map +1 -1
  30. package/dist/cjs/index.d.ts +3 -6
  31. package/dist/cjs/index.js +38 -64
  32. package/dist/cjs/index.js.map +1 -1
  33. package/dist/cjs/logger.js.map +1 -1
  34. package/dist/cjs/middleware/actions.js +2 -18
  35. package/dist/cjs/middleware/actions.js.map +1 -1
  36. package/dist/cjs/middleware/defaults/gasEstimator.js +4 -2
  37. package/dist/cjs/middleware/defaults/gasEstimator.js.map +1 -1
  38. package/dist/cjs/middleware/erc7677middleware.d.ts +40 -0
  39. package/dist/cjs/middleware/erc7677middleware.js +77 -0
  40. package/dist/cjs/middleware/erc7677middleware.js.map +1 -0
  41. package/dist/cjs/middleware/noopMiddleware.d.ts +2 -1
  42. package/dist/cjs/middleware/noopMiddleware.js.map +1 -1
  43. package/dist/cjs/middleware/types.d.ts +3 -2
  44. package/dist/cjs/middleware/types.js.map +1 -1
  45. package/dist/cjs/signer/local-account.d.ts +44 -44
  46. package/dist/cjs/signer/local-account.js.map +1 -1
  47. package/dist/cjs/signer/wallet-client.d.ts +44 -44
  48. package/dist/cjs/signer/wallet-client.js.map +1 -1
  49. package/dist/cjs/transport/split.js.map +1 -1
  50. package/dist/cjs/utils/bigint.js.map +1 -1
  51. package/dist/cjs/utils/bytes.js.map +1 -1
  52. package/dist/cjs/utils/defaults.d.ts +2 -4
  53. package/dist/cjs/utils/defaults.js +5 -45
  54. package/dist/cjs/utils/defaults.js.map +1 -1
  55. package/dist/cjs/utils/index.d.ts +0 -3
  56. package/dist/cjs/utils/index.js +1 -25
  57. package/dist/cjs/utils/index.js.map +1 -1
  58. package/dist/cjs/utils/types.js.map +1 -1
  59. package/dist/cjs/utils/userop.js.map +1 -1
  60. package/dist/cjs/version.d.ts +1 -1
  61. package/dist/cjs/version.js +1 -1
  62. package/dist/cjs/version.js.map +1 -1
  63. package/dist/esm/account/smartContractAccount.d.ts +9 -3
  64. package/dist/esm/account/smartContractAccount.js +6 -1
  65. package/dist/esm/account/smartContractAccount.js.map +1 -1
  66. package/dist/esm/actions/smartAccount/buildUserOperationFromTx.js.map +1 -1
  67. package/dist/esm/actions/smartAccount/buildUserOperationFromTxs.js.map +1 -1
  68. package/dist/esm/actions/smartAccount/checkGasSponsorshipEligibility.js.map +1 -1
  69. package/dist/esm/actions/smartAccount/dropAndReplaceUserOperation.js +2 -6
  70. package/dist/esm/actions/smartAccount/dropAndReplaceUserOperation.js.map +1 -1
  71. package/dist/esm/actions/smartAccount/estimateUserOperationGas.js.map +1 -1
  72. package/dist/esm/actions/smartAccount/internal/initUserOperation.js.map +1 -1
  73. package/dist/esm/actions/smartAccount/internal/runMiddlewareStack.js.map +1 -1
  74. package/dist/esm/actions/smartAccount/internal/sendUserOperation.js.map +1 -1
  75. package/dist/esm/actions/smartAccount/sendUserOperation.js.map +1 -1
  76. package/dist/esm/client/bundlerClient.js.map +1 -1
  77. package/dist/esm/client/decorators/bundlerClient.js.map +1 -1
  78. package/dist/esm/client/isSmartAccountClient.js.map +1 -1
  79. package/dist/esm/client/smartAccountClient.js +6 -0
  80. package/dist/esm/client/smartAccountClient.js.map +1 -1
  81. package/dist/esm/client/types.d.ts +2 -7
  82. package/dist/esm/client/types.js.map +1 -1
  83. package/dist/esm/ens/utils.d.ts +1 -1
  84. package/dist/esm/ens/utils.js +1 -1
  85. package/dist/esm/ens/utils.js.map +1 -1
  86. package/dist/esm/errors/account.js.map +1 -1
  87. package/dist/esm/errors/client.js.map +1 -1
  88. package/dist/esm/errors/entrypoint.js.map +1 -1
  89. package/dist/esm/errors/signer.js.map +1 -1
  90. package/dist/esm/errors/transaction.js.map +1 -1
  91. package/dist/esm/errors/useroperation.js.map +1 -1
  92. package/dist/esm/index.d.ts +3 -6
  93. package/dist/esm/index.js +2 -4
  94. package/dist/esm/index.js.map +1 -1
  95. package/dist/esm/logger.js.map +1 -1
  96. package/dist/esm/middleware/actions.js +3 -18
  97. package/dist/esm/middleware/actions.js.map +1 -1
  98. package/dist/esm/middleware/defaults/gasEstimator.js +4 -2
  99. package/dist/esm/middleware/defaults/gasEstimator.js.map +1 -1
  100. package/dist/esm/middleware/erc7677middleware.d.ts +40 -0
  101. package/dist/esm/middleware/erc7677middleware.js +73 -0
  102. package/dist/esm/middleware/erc7677middleware.js.map +1 -0
  103. package/dist/esm/middleware/noopMiddleware.d.ts +2 -1
  104. package/dist/esm/middleware/noopMiddleware.js.map +1 -1
  105. package/dist/esm/middleware/types.d.ts +3 -2
  106. package/dist/esm/middleware/types.js.map +1 -1
  107. package/dist/esm/signer/local-account.d.ts +44 -44
  108. package/dist/esm/signer/local-account.js.map +1 -1
  109. package/dist/esm/signer/wallet-client.d.ts +44 -44
  110. package/dist/esm/signer/wallet-client.js.map +1 -1
  111. package/dist/esm/transport/split.js.map +1 -1
  112. package/dist/esm/utils/bigint.js.map +1 -1
  113. package/dist/esm/utils/bytes.js.map +1 -1
  114. package/dist/esm/utils/defaults.d.ts +2 -4
  115. package/dist/esm/utils/defaults.js +1 -40
  116. package/dist/esm/utils/defaults.js.map +1 -1
  117. package/dist/esm/utils/index.d.ts +0 -3
  118. package/dist/esm/utils/index.js +0 -11
  119. package/dist/esm/utils/index.js.map +1 -1
  120. package/dist/esm/utils/types.js.map +1 -1
  121. package/dist/esm/utils/userop.js.map +1 -1
  122. package/dist/esm/version.d.ts +1 -1
  123. package/dist/esm/version.js +1 -1
  124. package/dist/esm/version.js.map +1 -1
  125. package/dist/types/account/smartContractAccount.d.ts +17 -11
  126. package/dist/types/account/smartContractAccount.d.ts.map +1 -1
  127. package/dist/types/actions/smartAccount/buildUserOperationFromTx.d.ts +33 -33
  128. package/dist/types/actions/smartAccount/buildUserOperationFromTxs.d.ts +43 -59
  129. package/dist/types/actions/smartAccount/buildUserOperationFromTxs.d.ts.map +1 -1
  130. package/dist/types/actions/smartAccount/checkGasSponsorshipEligibility.d.ts +18 -18
  131. package/dist/types/actions/smartAccount/dropAndReplaceUserOperation.d.ts.map +1 -1
  132. package/dist/types/actions/smartAccount/estimateUserOperationGas.d.ts +3 -3
  133. package/dist/types/actions/smartAccount/internal/initUserOperation.d.ts +3 -4
  134. package/dist/types/actions/smartAccount/internal/initUserOperation.d.ts.map +1 -1
  135. package/dist/types/actions/smartAccount/internal/runMiddlewareStack.d.ts +0 -14
  136. package/dist/types/actions/smartAccount/internal/runMiddlewareStack.d.ts.map +1 -1
  137. package/dist/types/actions/smartAccount/internal/sendUserOperation.d.ts +0 -7
  138. package/dist/types/actions/smartAccount/internal/sendUserOperation.d.ts.map +1 -1
  139. package/dist/types/actions/smartAccount/sendUserOperation.d.ts +17 -3
  140. package/dist/types/actions/smartAccount/sendUserOperation.d.ts.map +1 -1
  141. package/dist/types/client/bundlerClient.d.ts +2 -2
  142. package/dist/types/client/decorators/bundlerClient.d.ts +8 -8
  143. package/dist/types/client/isSmartAccountClient.d.ts +4 -4
  144. package/dist/types/client/smartAccountClient.d.ts.map +1 -1
  145. package/dist/types/client/types.d.ts +2 -7
  146. package/dist/types/client/types.d.ts.map +1 -1
  147. package/dist/types/ens/utils.d.ts +1 -1
  148. package/dist/types/ens/utils.d.ts.map +1 -1
  149. package/dist/types/errors/account.d.ts +53 -4
  150. package/dist/types/errors/account.d.ts.map +1 -1
  151. package/dist/types/errors/client.d.ts +15 -0
  152. package/dist/types/errors/client.d.ts.map +1 -1
  153. package/dist/types/errors/entrypoint.d.ts +12 -0
  154. package/dist/types/errors/entrypoint.d.ts.map +1 -1
  155. package/dist/types/errors/signer.d.ts +5 -0
  156. package/dist/types/errors/signer.d.ts.map +1 -1
  157. package/dist/types/errors/transaction.d.ts +8 -1
  158. package/dist/types/errors/transaction.d.ts.map +1 -1
  159. package/dist/types/errors/useroperation.d.ts +5 -5
  160. package/dist/types/errors/useroperation.d.ts.map +1 -1
  161. package/dist/types/index.d.ts +3 -6
  162. package/dist/types/index.d.ts.map +1 -1
  163. package/dist/types/logger.d.ts +88 -0
  164. package/dist/types/logger.d.ts.map +1 -1
  165. package/dist/types/middleware/actions.d.ts +3 -3
  166. package/dist/types/middleware/actions.d.ts.map +1 -1
  167. package/dist/types/middleware/defaults/gasEstimator.d.ts +2 -2
  168. package/dist/types/middleware/defaults/gasEstimator.d.ts.map +1 -1
  169. package/dist/types/middleware/erc7677middleware.d.ts +62 -0
  170. package/dist/types/middleware/erc7677middleware.d.ts.map +1 -0
  171. package/dist/types/middleware/noopMiddleware.d.ts +4 -4
  172. package/dist/types/middleware/noopMiddleware.d.ts.map +1 -1
  173. package/dist/types/middleware/types.d.ts +3 -2
  174. package/dist/types/middleware/types.d.ts.map +1 -1
  175. package/dist/types/signer/local-account.d.ts +137 -45
  176. package/dist/types/signer/local-account.d.ts.map +1 -1
  177. package/dist/types/signer/wallet-client.d.ts +133 -44
  178. package/dist/types/signer/wallet-client.d.ts.map +1 -1
  179. package/dist/types/transport/split.d.ts +3 -3
  180. package/dist/types/utils/bigint.d.ts +14 -14
  181. package/dist/types/utils/bigint.d.ts.map +1 -1
  182. package/dist/types/utils/bytes.d.ts +5 -5
  183. package/dist/types/utils/defaults.d.ts +2 -12
  184. package/dist/types/utils/defaults.d.ts.map +1 -1
  185. package/dist/types/utils/index.d.ts +12 -22
  186. package/dist/types/utils/index.d.ts.map +1 -1
  187. package/dist/types/utils/types.d.ts +2 -2
  188. package/dist/types/utils/userop.d.ts +33 -33
  189. package/dist/types/version.d.ts +1 -1
  190. package/dist/types/version.d.ts.map +1 -1
  191. package/package.json +4 -3
  192. package/src/account/smartContractAccount.ts +19 -13
  193. package/src/actions/smartAccount/buildUserOperationFromTx.ts +35 -35
  194. package/src/actions/smartAccount/buildUserOperationFromTxs.ts +44 -60
  195. package/src/actions/smartAccount/checkGasSponsorshipEligibility.ts +19 -19
  196. package/src/actions/smartAccount/dropAndReplaceUserOperation.ts +10 -10
  197. package/src/actions/smartAccount/estimateUserOperationGas.ts +3 -3
  198. package/src/actions/smartAccount/internal/initUserOperation.ts +3 -4
  199. package/src/actions/smartAccount/internal/runMiddlewareStack.ts +0 -22
  200. package/src/actions/smartAccount/internal/sendUserOperation.ts +0 -7
  201. package/src/actions/smartAccount/sendUserOperation.ts +17 -3
  202. package/src/client/bundlerClient.ts +2 -2
  203. package/src/client/decorators/bundlerClient.ts +8 -8
  204. package/src/client/isSmartAccountClient.ts +4 -4
  205. package/src/client/smartAccountClient.ts +7 -0
  206. package/src/client/types.ts +2 -15
  207. package/src/ens/utils.ts +1 -2
  208. package/src/errors/account.ts +64 -4
  209. package/src/errors/client.ts +18 -0
  210. package/src/errors/entrypoint.ts +12 -0
  211. package/src/errors/signer.ts +6 -0
  212. package/src/errors/transaction.ts +10 -1
  213. package/src/errors/useroperation.ts +5 -6
  214. package/src/index.ts +2 -31
  215. package/src/logger.ts +88 -0
  216. package/src/middleware/actions.ts +6 -27
  217. package/src/middleware/defaults/gasEstimator.ts +9 -5
  218. package/src/middleware/erc7677middleware.ts +201 -0
  219. package/src/middleware/noopMiddleware.ts +6 -4
  220. package/src/middleware/types.ts +16 -7
  221. package/src/signer/local-account.ts +94 -2
  222. package/src/signer/wallet-client.ts +89 -0
  223. package/src/transport/split.ts +3 -3
  224. package/src/utils/bigint.ts +15 -15
  225. package/src/utils/bytes.ts +5 -5
  226. package/src/utils/defaults.ts +3 -76
  227. package/src/utils/index.ts +12 -35
  228. package/src/utils/types.ts +2 -2
  229. package/src/utils/userop.ts +33 -33
  230. package/src/version.ts +1 -1
  231. package/dist/cjs/account/base.d.ts +0 -49
  232. package/dist/cjs/account/base.js +0 -257
  233. package/dist/cjs/account/base.js.map +0 -1
  234. package/dist/cjs/account/schema.d.ts +0 -100
  235. package/dist/cjs/account/schema.js +0 -43
  236. package/dist/cjs/account/schema.js.map +0 -1
  237. package/dist/cjs/account/simple.d.ts +0 -14
  238. package/dist/cjs/account/simple.js +0 -119
  239. package/dist/cjs/account/simple.js.map +0 -1
  240. package/dist/cjs/account/types.d.ts +0 -30
  241. package/dist/cjs/account/types.js +0 -3
  242. package/dist/cjs/account/types.js.map +0 -1
  243. package/dist/cjs/chains/index.d.ts +0 -20
  244. package/dist/cjs/chains/index.js +0 -169
  245. package/dist/cjs/chains/index.js.map +0 -1
  246. package/dist/esm/account/base.d.ts +0 -49
  247. package/dist/esm/account/base.js +0 -253
  248. package/dist/esm/account/base.js.map +0 -1
  249. package/dist/esm/account/schema.d.ts +0 -100
  250. package/dist/esm/account/schema.js +0 -35
  251. package/dist/esm/account/schema.js.map +0 -1
  252. package/dist/esm/account/simple.d.ts +0 -14
  253. package/dist/esm/account/simple.js +0 -115
  254. package/dist/esm/account/simple.js.map +0 -1
  255. package/dist/esm/account/types.d.ts +0 -30
  256. package/dist/esm/account/types.js +0 -2
  257. package/dist/esm/account/types.js.map +0 -1
  258. package/dist/esm/chains/index.d.ts +0 -20
  259. package/dist/esm/chains/index.js +0 -166
  260. package/dist/esm/chains/index.js.map +0 -1
  261. package/dist/types/account/base.d.ts +0 -128
  262. package/dist/types/account/base.d.ts.map +0 -1
  263. package/dist/types/account/schema.d.ts +0 -101
  264. package/dist/types/account/schema.d.ts.map +0 -1
  265. package/dist/types/account/simple.d.ts +0 -15
  266. package/dist/types/account/simple.d.ts.map +0 -1
  267. package/dist/types/account/types.d.ts +0 -144
  268. package/dist/types/account/types.d.ts.map +0 -1
  269. package/dist/types/chains/index.d.ts +0 -21
  270. package/dist/types/chains/index.d.ts.map +0 -1
  271. package/src/account/base.ts +0 -415
  272. package/src/account/schema.ts +0 -51
  273. package/src/account/simple.ts +0 -221
  274. package/src/account/types.ts +0 -184
  275. package/src/chains/index.ts +0 -194
@@ -3,43 +3,43 @@ import type { GetEntryPointFromAccount, SmartContractAccount } from "../../accou
3
3
  import type { UserOperationOverrides, UserOperationStruct } from "../../types.js";
4
4
  import type { UserOperationContext } from "./types.js";
5
5
  /**
6
- * Performs [`buildUserOperationFromTx`](./buildUserOperationFromTx.md) in batch and builds into a single, yet to be signed `UserOperation` (UO) struct. The output user operation struct will be filled with all gas fields (and paymaster data if a paymaster is used) based on the transactions data (`to`, `data`, `value`, `maxFeePerGas`, `maxPriorityFeePerGas`) computed using the configured [`ClientMiddlewares`](/packages/aa-core/smart-account-client/middleware/index) on the `SmartAccountClient`
6
+ * Performs `buildUserOperationFromTx` in batch and builds into a single, yet to be signed `UserOperation` (UO) struct. The output user operation struct will be filled with all gas fields (and paymaster data if a paymaster is used) based on the transactions data (`to`, `data`, `value`, `maxFeePerGas`, `maxPriorityFeePerGas`) computed using the configured `ClientMiddlewares` on the `SmartAccountClient`
7
7
  *
8
8
  * @example
9
9
  * ```ts
10
- import type { RpcTransactionRequest } from "viem";
11
- import { smartAccountClient } from "./smartAccountClient";
12
- // [!code focus:99]
13
- // buildUserOperationFromTx converts a traditional Ethereum transaction and returns
14
- // the unsigned user operation struct after constructing the user operation struct
15
- // through the middleware pipeline
16
- const tx: RpcTransactionRequest = {
17
- from, // ignored
18
- to,
19
- data: encodeFunctionData({
20
- abi: ContractABI.abi,
21
- functionName: "func",
22
- args: [arg1, arg2, ...],
23
- }),
24
- };
25
- const uoStruct = await smartAccountClient.buildUserOperationFromTx(tx);
26
-
27
- // signUserOperation signs the above unsigned user operation struct built
28
- // using the account connected to the smart account client
29
- const request = await smartAccountClient.signUserOperation({ uoStruct });
30
-
31
- // You can use the BundlerAction `sendRawUserOperation` (packages/core/src/actions/bundler/sendRawUserOperation.ts)
32
- // to send the signed user operation request to the bundler, requesting the bundler to send the signed uo to the
33
- // EntryPoint contract pointed at by the entryPoint address parameter
34
- const entryPointAddress = client.account.getEntryPoint().address;
35
- const uoHash = await smartAccountClient.sendRawUserOperation({ request, entryPoint: entryPointAddress });
36
- ```
10
+ * import type { RpcTransactionRequest } from "viem";
11
+ * import { smartAccountClient } from "./smartAccountClient";
12
+ * // [!code focus:99]
13
+ * // buildUserOperationFromTx converts a traditional Ethereum transaction and returns
14
+ * // the unsigned user operation struct after constructing the user operation struct
15
+ * // through the middleware pipeline
16
+ * const tx: RpcTransactionRequest = {
17
+ * from, // ignored
18
+ * to,
19
+ * data: encodeFunctionData({
20
+ * abi: ContractABI.abi,
21
+ * functionName: "func",
22
+ * args: [arg1, arg2, ...],
23
+ * }),
24
+ * };
25
+ * const uoStruct = await smartAccountClient.buildUserOperationFromTx(tx);
37
26
  *
38
- * @param client the smart account client to use for RPC requests
39
- * @param args {@link SendTransactionParameters}
40
- * @param overrides optional {@link UserOperationOverrides} to use for any of the fields
41
- * @param context if the smart account client requires additinoal context for building UOs
42
- * @returns a Promise containing the built user operation
27
+ * // signUserOperation signs the above unsigned user operation struct built
28
+ * // using the account connected to the smart account client
29
+ * const request = await smartAccountClient.signUserOperation({ uoStruct });
30
+ *
31
+ * // You can use the BundlerAction `sendRawUserOperation` (packages/core/src/actions/bundler/sendRawUserOperation.ts)
32
+ * // to send the signed user operation request to the bundler, requesting the bundler to send the signed uo to the
33
+ * // EntryPoint contract pointed at by the entryPoint address parameter
34
+ * const entryPointAddress = client.account.getEntryPoint().address;
35
+ * const uoHash = await smartAccountClient.sendRawUserOperation({ request, entryPoint: entryPointAddress });
36
+ * ```
37
+ *
38
+ * @param {Client<Transport, TChain, TAccount>} client the smart account client to use for RPC requests
39
+ * @param {SendTransactionParameters} args the send tx parameters
40
+ * @param {UserOperationOverrides} overrides optional overrides to use for any of the fields
41
+ * @param {TContext} context if the smart account client requires additinoal context for building UOs
42
+ * @returns {Promise<UserOperationStruct<TEntryPointVersion>>} a Promise containing the built user operation
43
43
  */
44
44
  export declare function buildUserOperationFromTx<TChain extends Chain | undefined = Chain | undefined, TAccount extends SmartContractAccount | undefined = SmartContractAccount | undefined, TChainOverride extends Chain | undefined = Chain | undefined, TContext extends UserOperationContext | undefined = UserOperationContext | undefined, TEntryPointVersion extends GetEntryPointFromAccount<TAccount> = GetEntryPointFromAccount<TAccount>>(client: Client<Transport, TChain, TAccount>, args: SendTransactionParameters<TChain, TAccount, TChainOverride>, overrides?: UserOperationOverrides<TEntryPointVersion>, context?: TContext): Promise<UserOperationStruct<TEntryPointVersion>>;
45
45
  //# sourceMappingURL=buildUserOperationFromTx.d.ts.map
@@ -2,74 +2,58 @@ import { type Chain, type Client, type Transport } from "viem";
2
2
  import type { GetEntryPointFromAccount, SmartContractAccount } from "../../account/smartContractAccount";
3
3
  import type { BuildTransactionParameters, BuildUserOperationFromTransactionsResult, UserOperationContext } from "./types";
4
4
  /**
5
- * Performs {@link buildUserOperationFromTx} in batch and builds into a single,
5
+ * Performs `buildUserOperationFromTx` in batch and builds into a single,
6
6
  * yet to be signed `UserOperation` (UO) struct. The output user operation struct
7
7
  * will be filled with all gas fields (and paymaster data if a paymaster is used)
8
8
  * based on the transactions data (`to`, `data`, `value`, `maxFeePerGas`,
9
- * `maxPriorityFeePerGas`) computed using the configured
10
- * [`ClientMiddlewares`](/packages/aa-core/smart-account-client/middleware/index) on the `SmartAccountClient`
9
+ * `maxPriorityFeePerGas`) computed using the configured ClientMiddlewares on the SmartAccountClient.
11
10
  *
12
11
  * @example
13
12
  * ```ts
14
13
  * import type { RpcTransactionRequest } from "viem";
15
- import { smartAccountClient } from "./smartAccountClient";
16
- // [!code focus:99]
17
- // buildUserOperationFromTxs converts traditional Ethereum transactions in batch and returns
18
- // the unsigned user operation struct after constructing the user operation struct
19
- // through the middleware pipeline
20
- const requests: RpcTransactionRequest[] = [
21
- {
22
- from, // ignored
23
- to,
24
- data: encodeFunctionData({
25
- abi: ContractABI.abi,
26
- functionName: "func",
27
- args: [arg1, arg2, ...],
28
- }),
29
- },
30
- {
31
- from, // ignored
32
- to,
33
- data: encodeFunctionData({
34
- abi: ContractABI.abi,
35
- functionName: "func",
36
- args: [arg1, arg2, ...],
37
- }),
38
- },
39
- ...
40
- {
41
- from, // ignored
42
- to,
43
- data: encodeFunctionData({
44
- abi: ContractABI.abi,
45
- functionName: "func",
46
- args: [arg1, arg2, ...],
47
- }),
48
- },
49
- ];
50
- const uoStruct = await smartAccountClient.buildUserOperationFromTxs({
51
- requests,
52
- });
53
-
54
- // signUserOperation signs the above unsigned user operation struct built
55
- // using the account connected to the smart account client
56
- const request = await smartAccountClient.signUserOperation({ uoStruct });
57
-
58
- // You can use the BundlerAction `sendRawUserOperation` (packages/core/src/actions/bundler/sendRawUserOperation.ts)
59
- // to send the signed user operation request to the bundler, requesting the bundler to send the signed uo to the
60
- // EntryPoint contract pointed at by the entryPoint address parameter
61
- const entryPointAddress = client.account.getEntryPoint().address;
62
- const uoHash = await smartAccountClient.sendRawUserOperation({
63
- request,
64
- entryPoint: entryPointAddress,
65
- });
14
+ * import { smartAccountClient } from "./smartAccountClient";
15
+ *
16
+ * const requests: RpcTransactionRequest[] = [
17
+ * {
18
+ * from, // ignored
19
+ * to,
20
+ * data: encodeFunctionData({
21
+ * abi: ContractABI.abi,
22
+ * functionName: "func",
23
+ * args: [arg1, arg2, ...],
24
+ * }),
25
+ * },
26
+ * {
27
+ * from, // ignored
28
+ * to,
29
+ * data: encodeFunctionData({
30
+ * abi: ContractABI.abi,
31
+ * functionName: "func",
32
+ * args: [arg1, arg2, ...],
33
+ * }),
34
+ * },
35
+ * ];
36
+ * const uoStruct = await smartAccountClient.buildUserOperationFromTxs({
37
+ * requests,
38
+ * });
39
+ *
40
+ * // signUserOperation signs the above unsigned user operation struct built
41
+ * // using the account connected to the smart account client
42
+ * const request = await smartAccountClient.signUserOperation({ uoStruct });
43
+ *
44
+ * // You can use the BundlerAction `sendRawUserOperation` (packages/core/src/actions/bundler/sendRawUserOperation.ts)
45
+ * // to send the signed user operation request to the bundler, requesting the bundler to send the signed uo to the
46
+ * // EntryPoint contract pointed at by the entryPoint address parameter
47
+ * const entryPointAddress = client.account.getEntryPoint().address;
48
+ * const uoHash = await smartAccountClient.sendRawUserOperation({
49
+ * request,
50
+ * entryPoint: entryPointAddress,
51
+ * });
66
52
  * ```
67
53
  *
68
- * @param client the smart account client to use to make RPC calls
69
- * @param args {@link BuildTransactionParameters} an object containing the requests
70
- * to build as well as, the account if not hoisted, the context, the overrides, and
71
- * optionally a flag to enable signing of the UO via the underlying middleware
72
- * @returns a Promise containing the built user operation
54
+ * @param {Client<TTransport, TChain, TAccount>} client the smart account client to use to make RPC calls
55
+ * @param {BuildTransactionParameters} args an object containing the requests to build as well as, the account if not hoisted, the context, the overrides, and optionally a flag to enable signing of the UO via the underlying middleware
56
+ * @returns {Promise<BuildUserOperationFromTransactionsResult<TEntryPointVersion>>} a Promise containing the built user operation
73
57
  */
74
58
  export declare function buildUserOperationFromTxs<TTransport extends Transport = Transport, TChain extends Chain | undefined = Chain | undefined, TAccount extends SmartContractAccount | undefined = SmartContractAccount | undefined, TEntryPointVersion extends GetEntryPointFromAccount<TAccount> = GetEntryPointFromAccount<TAccount>, TContext extends UserOperationContext | undefined = UserOperationContext | undefined>(client: Client<TTransport, TChain, TAccount>, args: BuildTransactionParameters<TAccount, TContext, TEntryPointVersion>): Promise<BuildUserOperationFromTransactionsResult<TEntryPointVersion>>;
75
59
  //# sourceMappingURL=buildUserOperationFromTxs.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"buildUserOperationFromTxs.d.ts","sourceRoot":"","sources":["../../../../src/actions/smartAccount/buildUserOperationFromTxs.ts"],"names":[],"mappings":"AAAA,OAAO,EAAW,KAAK,KAAK,EAAE,KAAK,MAAM,EAAE,KAAK,SAAS,EAAE,MAAM,MAAM,CAAC;AACxE,OAAO,KAAK,EACV,wBAAwB,EACxB,oBAAoB,EACrB,MAAM,oCAAoC,CAAC;AAQ5C,OAAO,KAAK,EACV,0BAA0B,EAC1B,wCAAwC,EACxC,oBAAoB,EACrB,MAAM,SAAS,CAAC;AAEjB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqEG;AACH,wBAAsB,yBAAyB,CAC7C,UAAU,SAAS,SAAS,GAAG,SAAS,EACxC,MAAM,SAAS,KAAK,GAAG,SAAS,GAAG,KAAK,GAAG,SAAS,EACpD,QAAQ,SAAS,oBAAoB,GAAG,SAAS,GAC7C,oBAAoB,GACpB,SAAS,EACb,kBAAkB,SAAS,wBAAwB,CAAC,QAAQ,CAAC,GAAG,wBAAwB,CAAC,QAAQ,CAAC,EAClG,QAAQ,SAAS,oBAAoB,GAAG,SAAS,GAC7C,oBAAoB,GACpB,SAAS,EAEb,MAAM,EAAE,MAAM,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,CAAC,EAC5C,IAAI,EAAE,0BAA0B,CAAC,QAAQ,EAAE,QAAQ,EAAE,kBAAkB,CAAC,GACvE,OAAO,CAAC,wCAAwC,CAAC,kBAAkB,CAAC,CAAC,CAkEvE"}
1
+ {"version":3,"file":"buildUserOperationFromTxs.d.ts","sourceRoot":"","sources":["../../../../src/actions/smartAccount/buildUserOperationFromTxs.ts"],"names":[],"mappings":"AAAA,OAAO,EAAW,KAAK,KAAK,EAAE,KAAK,MAAM,EAAE,KAAK,SAAS,EAAE,MAAM,MAAM,CAAC;AACxE,OAAO,KAAK,EACV,wBAAwB,EACxB,oBAAoB,EACrB,MAAM,oCAAoC,CAAC;AAQ5C,OAAO,KAAK,EACV,0BAA0B,EAC1B,wCAAwC,EACxC,oBAAoB,EACrB,MAAM,SAAS,CAAC;AAEjB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqDG;AACH,wBAAsB,yBAAyB,CAC7C,UAAU,SAAS,SAAS,GAAG,SAAS,EACxC,MAAM,SAAS,KAAK,GAAG,SAAS,GAAG,KAAK,GAAG,SAAS,EACpD,QAAQ,SAAS,oBAAoB,GAAG,SAAS,GAC7C,oBAAoB,GACpB,SAAS,EACb,kBAAkB,SAAS,wBAAwB,CAAC,QAAQ,CAAC,GAAG,wBAAwB,CAAC,QAAQ,CAAC,EAClG,QAAQ,SAAS,oBAAoB,GAAG,SAAS,GAC7C,oBAAoB,GACpB,SAAS,EAEb,MAAM,EAAE,MAAM,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,CAAC,EAC5C,IAAI,EAAE,0BAA0B,CAAC,QAAQ,EAAE,QAAQ,EAAE,kBAAkB,CAAC,GACvE,OAAO,CAAC,wCAAwC,CAAC,kBAAkB,CAAC,CAAC,CAkEvE"}
@@ -3,31 +3,31 @@ import type { SmartContractAccount } from "../../account/smartContractAccount.js
3
3
  import type { SendUserOperationParameters, UserOperationContext } from "./types";
4
4
  /**
5
5
  * This function verifies the eligibility of the connected account for gas sponsorship concerning the upcoming `UserOperation` (UO) that is intended to be sent.
6
- * Internally, this method invokes [`buildUserOperation`](./buildUserOperation.md), which navigates through the middleware pipeline, including the `PaymasterMiddleware`. Its purpose is to construct the UO struct meant for transmission to the bundler. Following the construction of the UO struct, this function verifies if the resulting structure contains a non-empty `paymasterAndData` field.
6
+ * Internally, this method invokes `buildUserOperation`, which navigates through the middleware pipeline, including the `PaymasterMiddleware`. Its purpose is to construct the UO struct meant for transmission to the bundler. Following the construction of the UO struct, this function verifies if the resulting structure contains a non-empty `paymasterAndData` field.
7
7
  * You can utilize this method before sending the user operation to confirm its eligibility for gas sponsorship. Depending on the outcome, it allows you to tailor the user experience accordingly, based on eligibility.
8
8
  *
9
9
  * @example
10
10
  * ```ts
11
11
  * import { smartAccountClient } from "./smartAccountClient";
12
- // [!code focus:99]
13
- const eligible = await smartAccountClient.checkGasSponsorshipEligibility({
14
- uo: {
15
- data: "0xCalldata",
16
- target: "0xTarget",
17
- value: 0n,
18
- },
19
- });
20
-
21
- console.log(
22
- `User Operation is ${
23
- eligible ? "eligible" : "ineligible"
24
- } for gas sponsorship.`
25
- );
12
+ * // [!code focus:99]
13
+ * const eligible = await smartAccountClient.checkGasSponsorshipEligibility({
14
+ * uo: {
15
+ * data: "0xCalldata",
16
+ * target: "0xTarget",
17
+ * value: 0n,
18
+ * },
19
+ * });
20
+ *
21
+ * console.log(
22
+ * `User Operation is ${
23
+ * eligible ? "eligible" : "ineligible"
24
+ * } for gas sponsorship.`
25
+ * );
26
26
  * ```
27
27
  *
28
- * @param client the smart account client to use for making RPC calls
29
- * @param args {@link SendUserOperationParameters} containing the user operation, account, context, and overrides
30
- * @returns a Promise containing a boolean indicating if the account is elgibile for sponsorship
28
+ * @param {Client<TTransport, TChain, TAccount>} client the smart account client to use for making RPC calls
29
+ * @param {SendUserOperationParameters} args containing the user operation, account, context, and overrides
30
+ * @returns {Promise<boolean>} a Promise containing a boolean indicating if the account is elgibile for sponsorship
31
31
  */
32
32
  export declare function checkGasSponsorshipEligibility<TTransport extends Transport = Transport, TChain extends Chain | undefined = Chain | undefined, TAccount extends SmartContractAccount | undefined = SmartContractAccount | undefined, TContext extends UserOperationContext | undefined = UserOperationContext | undefined>(client: Client<TTransport, TChain, TAccount>, args: SendUserOperationParameters<TAccount, TContext>): Promise<boolean>;
33
33
  //# sourceMappingURL=checkGasSponsorshipEligibility.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"dropAndReplaceUserOperation.d.ts","sourceRoot":"","sources":["../../../../src/actions/smartAccount/dropAndReplaceUserOperation.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,MAAM,CAAC;AACrD,OAAO,KAAK,EACV,wBAAwB,EACxB,oBAAoB,EACrB,MAAM,oCAAoC,CAAC;AAE5C,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,oBAAoB,CAAC;AAWlE,OAAO,KAAK,EACV,qCAAqC,EACrC,oBAAoB,EACrB,MAAM,SAAS,CAAC;AAEjB;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,wBAAsB,2BAA2B,CAC/C,UAAU,SAAS,SAAS,GAAG,SAAS,EACxC,MAAM,SAAS,KAAK,GAAG,SAAS,GAAG,KAAK,GAAG,SAAS,EACpD,QAAQ,SAAS,oBAAoB,GAAG,SAAS,GAC7C,oBAAoB,GACpB,SAAS,EACb,QAAQ,SAAS,oBAAoB,GAAG,SAAS,GAC7C,oBAAoB,GACpB,SAAS,EACb,kBAAkB,SAAS,wBAAwB,CAAC,QAAQ,CAAC,GAAG,wBAAwB,CAAC,QAAQ,CAAC,EAElG,MAAM,EAAE,MAAM,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,CAAC,EAC5C,IAAI,EAAE,qCAAqC,CAAC,QAAQ,EAAE,QAAQ,CAAC,GAC9D,OAAO,CAAC,uBAAuB,CAAC,kBAAkB,CAAC,CAAC,CA2EtD"}
1
+ {"version":3,"file":"dropAndReplaceUserOperation.d.ts","sourceRoot":"","sources":["../../../../src/actions/smartAccount/dropAndReplaceUserOperation.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,MAAM,CAAC;AACrD,OAAO,KAAK,EACV,wBAAwB,EACxB,oBAAoB,EACrB,MAAM,oCAAoC,CAAC;AAE5C,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,oBAAoB,CAAC;AAelE,OAAO,KAAK,EACV,qCAAqC,EACrC,oBAAoB,EACrB,MAAM,SAAS,CAAC;AAEjB;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,wBAAsB,2BAA2B,CAC/C,UAAU,SAAS,SAAS,GAAG,SAAS,EACxC,MAAM,SAAS,KAAK,GAAG,SAAS,GAAG,KAAK,GAAG,SAAS,EACpD,QAAQ,SAAS,oBAAoB,GAAG,SAAS,GAC7C,oBAAoB,GACpB,SAAS,EACb,QAAQ,SAAS,oBAAoB,GAAG,SAAS,GAC7C,oBAAoB,GACpB,SAAS,EACb,kBAAkB,SAAS,wBAAwB,CAAC,QAAQ,CAAC,GAAG,wBAAwB,CAAC,QAAQ,CAAC,EAElG,MAAM,EAAE,MAAM,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,CAAC,EAC5C,IAAI,EAAE,qCAAqC,CAAC,QAAQ,EAAE,QAAQ,CAAC,GAC9D,OAAO,CAAC,uBAAuB,CAAC,kBAAkB,CAAC,CAAC,CAuEtD"}
@@ -11,9 +11,9 @@ import type { SendUserOperationParameters, UserOperationContext } from "./types.
11
11
  * @template {SmartContractAccount | undefined} TAccount
12
12
  * @template {UserOperationContext | undefined} TContext
13
13
  * @template {GetEntryPointFromAccount<TAccount>} TEntryPointVersion
14
- * @param client smart account client
15
- * @param args send user operation parameters
16
- * @returns user operation gas estimate response
14
+ * @param {Client<TTransport, TChain, TAccount>} client smart account client
15
+ * @param {SendUserOperationParameters<TAccount, TContext>} args send user operation parameters
16
+ * @returns {Promise<UserOperationEstimateGasResponse<TEntryPointVersion>>}user operation gas estimate response
17
17
  */
18
18
  export declare function estimateUserOperationGas<TTransport extends Transport = Transport, TChain extends Chain | undefined = Chain | undefined, TAccount extends SmartContractAccount | undefined = SmartContractAccount | undefined, TContext extends UserOperationContext | undefined = UserOperationContext | undefined, TEntryPointVersion extends GetEntryPointFromAccount<TAccount> = GetEntryPointFromAccount<TAccount>>(client: Client<TTransport, TChain, TAccount>, args: SendUserOperationParameters<TAccount, TContext>): Promise<UserOperationEstimateGasResponse<TEntryPointVersion>>;
19
19
  //# sourceMappingURL=estimateUserOperationGas.d.ts.map
@@ -8,15 +8,14 @@ import type { BuildUserOperationParameters, SendUserOperationParameters, UserOpe
8
8
  * Description internal action function of SmartAccountClient for initializing
9
9
  * a user operation for the sender account
10
10
  *
11
- * @async
12
11
  * @template {Transport} TTransport
13
12
  * @template {Chain | undefined} TChain
14
13
  * @template {SmartContractAccount | undefined} TAccount
15
14
  * @template {UserOperationContext | undefined} TContext
16
15
  * @template {GetEntryPointFromAccount} TEntryPointVersion
17
- * @param client smart account client
18
- * @param args send user operation parameters
19
- * @returns initialized user operation struct
16
+ * @param {BaseSmartAccountClient<TTransport, TChain, TAccount>} client smart account client
17
+ * @param {SendUserOperationParameters<TAccount, TContext, TEntryPointVersion> | BuildUserOperationParameters<TAccount, TContext, TEntryPointVersion>} args send user operation parameters
18
+ * @returns {Promise<Deferrable<UserOperationStruct<TEntryPointVersion>>>} initialized user operation struct
20
19
  */
21
20
  export declare function _initUserOperation<TTransport extends Transport = Transport, TChain extends Chain | undefined = Chain | undefined, TAccount extends SmartContractAccount | undefined = SmartContractAccount | undefined, TContext extends UserOperationContext | undefined = UserOperationContext | undefined, TEntryPointVersion extends GetEntryPointFromAccount<TAccount> = GetEntryPointFromAccount<TAccount>>(client: BaseSmartAccountClient<TTransport, TChain, TAccount>, args: SendUserOperationParameters<TAccount, TContext, TEntryPointVersion> | BuildUserOperationParameters<TAccount, TContext, TEntryPointVersion>): Promise<Deferrable<UserOperationStruct<TEntryPointVersion>>>;
22
21
  //# sourceMappingURL=initUserOperation.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"initUserOperation.d.ts","sourceRoot":"","sources":["../../../../../src/actions/smartAccount/internal/initUserOperation.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,MAAM,CAAC;AAC7C,OAAO,KAAK,EACV,wBAAwB,EACxB,oBAAoB,EACrB,MAAM,0CAA0C,CAAC;AAClD,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,uCAAuC,CAAC;AAGpF,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AAC7D,OAAO,EAAqB,KAAK,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAC7E,OAAO,KAAK,EACV,4BAA4B,EAC5B,2BAA2B,EAC3B,oBAAoB,EACrB,MAAM,aAAa,CAAC;AAErB;;;;;;;;;;;;;GAaG;AACH,wBAAsB,kBAAkB,CACtC,UAAU,SAAS,SAAS,GAAG,SAAS,EACxC,MAAM,SAAS,KAAK,GAAG,SAAS,GAAG,KAAK,GAAG,SAAS,EACpD,QAAQ,SAAS,oBAAoB,GAAG,SAAS,GAC7C,oBAAoB,GACpB,SAAS,EACb,QAAQ,SAAS,oBAAoB,GAAG,SAAS,GAC7C,oBAAoB,GACpB,SAAS,EACb,kBAAkB,SAAS,wBAAwB,CAAC,QAAQ,CAAC,GAAG,wBAAwB,CAAC,QAAQ,CAAC,EAElG,MAAM,EAAE,sBAAsB,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,CAAC,EAC5D,IAAI,EACA,2BAA2B,CAAC,QAAQ,EAAE,QAAQ,EAAE,kBAAkB,CAAC,GACnE,4BAA4B,CAAC,QAAQ,EAAE,QAAQ,EAAE,kBAAkB,CAAC,GACvE,OAAO,CAAC,UAAU,CAAC,mBAAmB,CAAC,kBAAkB,CAAC,CAAC,CAAC,CA+C9D"}
1
+ {"version":3,"file":"initUserOperation.d.ts","sourceRoot":"","sources":["../../../../../src/actions/smartAccount/internal/initUserOperation.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,MAAM,CAAC;AAC7C,OAAO,KAAK,EACV,wBAAwB,EACxB,oBAAoB,EACrB,MAAM,0CAA0C,CAAC;AAClD,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,uCAAuC,CAAC;AAGpF,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AAC7D,OAAO,EAAqB,KAAK,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAC7E,OAAO,KAAK,EACV,4BAA4B,EAC5B,2BAA2B,EAC3B,oBAAoB,EACrB,MAAM,aAAa,CAAC;AAErB;;;;;;;;;;;;GAYG;AACH,wBAAsB,kBAAkB,CACtC,UAAU,SAAS,SAAS,GAAG,SAAS,EACxC,MAAM,SAAS,KAAK,GAAG,SAAS,GAAG,KAAK,GAAG,SAAS,EACpD,QAAQ,SAAS,oBAAoB,GAAG,SAAS,GAC7C,oBAAoB,GACpB,SAAS,EACb,QAAQ,SAAS,oBAAoB,GAAG,SAAS,GAC7C,oBAAoB,GACpB,SAAS,EACb,kBAAkB,SAAS,wBAAwB,CAAC,QAAQ,CAAC,GAAG,wBAAwB,CAAC,QAAQ,CAAC,EAElG,MAAM,EAAE,sBAAsB,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,CAAC,EAC5D,IAAI,EACA,2BAA2B,CAAC,QAAQ,EAAE,QAAQ,EAAE,kBAAkB,CAAC,GACnE,4BAA4B,CAAC,QAAQ,EAAE,QAAQ,EAAE,kBAAkB,CAAC,GACvE,OAAO,CAAC,UAAU,CAAC,mBAAmB,CAAC,kBAAkB,CAAC,CAAC,CAAC,CA+C9D"}
@@ -4,20 +4,6 @@ import type { BaseSmartAccountClient } from "../../../client/smartAccountClient"
4
4
  import type { UserOperationOverridesParameter, UserOperationStruct } from "../../../types";
5
5
  import { type Deferrable } from "../../../utils/index.js";
6
6
  import type { UserOperationContext } from "../types";
7
- /**
8
- * Internal method of {@link SmartAccountClient} running the middleware stack for a user operation
9
- *
10
- * @async
11
- * @template TTransport
12
- * @template TChain
13
- * @template TAccount
14
- * @template TContext the {@link UserOperationContext} passed to the middleware
15
- * @template TEntryPointVersion
16
- * @param client the smart account client instance that runs the middleware pipeline with
17
- * @param args the Deferrable {@link UserOperationStruct} to run the middleware pipeline on
18
- *
19
- * @returns the resolved {@link UserOperationStruct} after running the middleware pipeline
20
- */
21
7
  export declare function _runMiddlewareStack<TTransport extends Transport = Transport, TChain extends Chain | undefined = Chain | undefined, TAccount extends SmartContractAccount | undefined = SmartContractAccount | undefined, TContext extends UserOperationContext | undefined = UserOperationContext | undefined, TEntryPointVersion extends GetEntryPointFromAccount<TAccount> = GetEntryPointFromAccount<TAccount>>(client: BaseSmartAccountClient<TTransport, TChain, TAccount>, args: {
22
8
  uo: Deferrable<UserOperationStruct<TEntryPointVersion>>;
23
9
  context?: TContext;
@@ -1 +1 @@
1
- {"version":3,"file":"runMiddlewareStack.d.ts","sourceRoot":"","sources":["../../../../../src/actions/smartAccount/internal/runMiddlewareStack.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,MAAM,CAAC;AAC7C,OAAO,KAAK,EACV,mBAAmB,EACnB,wBAAwB,EACxB,oBAAoB,EACrB,MAAM,uCAAuC,CAAC;AAC/C,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,oCAAoC,CAAC;AAIjF,OAAO,KAAK,EACV,+BAA+B,EAC/B,mBAAmB,EACpB,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAGL,KAAK,UAAU,EAChB,MAAM,yBAAyB,CAAC;AACjC,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAC;AAoBrD;;;;;;;;;;;;;GAaG;AACH,wBAAsB,mBAAmB,CACvC,UAAU,SAAS,SAAS,GAAG,SAAS,EACxC,MAAM,SAAS,KAAK,GAAG,SAAS,GAAG,KAAK,GAAG,SAAS,EACpD,QAAQ,SAAS,oBAAoB,GAAG,SAAS,GAC7C,oBAAoB,GACpB,SAAS,EACb,QAAQ,SAAS,oBAAoB,GAAG,SAAS,GAC7C,oBAAoB,GACpB,SAAS,EACb,kBAAkB,SAAS,wBAAwB,CAAC,QAAQ,CAAC,GAAG,wBAAwB,CAAC,QAAQ,CAAC,EAElG,MAAM,EAAE,sBAAsB,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,CAAC,EAC5D,IAAI,EAAE;IACJ,EAAE,EAAE,UAAU,CAAC,mBAAmB,CAAC,kBAAkB,CAAC,CAAC,CAAC;IACxD,OAAO,CAAC,EAAE,QAAQ,CAAC;CACpB,GAAG,mBAAmB,CAAC,QAAQ,CAAC,GAC/B,+BAA+B,CAAC,kBAAkB,CAAC,GACpD,OAAO,CAAC,mBAAmB,CAAC,kBAAkB,CAAC,CAAC,CAkDlD"}
1
+ {"version":3,"file":"runMiddlewareStack.d.ts","sourceRoot":"","sources":["../../../../../src/actions/smartAccount/internal/runMiddlewareStack.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,MAAM,CAAC;AAC7C,OAAO,KAAK,EACV,mBAAmB,EACnB,wBAAwB,EACxB,oBAAoB,EACrB,MAAM,uCAAuC,CAAC;AAC/C,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,oCAAoC,CAAC;AAIjF,OAAO,KAAK,EACV,+BAA+B,EAC/B,mBAAmB,EACpB,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAGL,KAAK,UAAU,EAChB,MAAM,yBAAyB,CAAC;AACjC,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAC;AAYrD,wBAAsB,mBAAmB,CACvC,UAAU,SAAS,SAAS,GAAG,SAAS,EACxC,MAAM,SAAS,KAAK,GAAG,SAAS,GAAG,KAAK,GAAG,SAAS,EACpD,QAAQ,SAAS,oBAAoB,GAAG,SAAS,GAC7C,oBAAoB,GACpB,SAAS,EACb,QAAQ,SAAS,oBAAoB,GAAG,SAAS,GAC7C,oBAAoB,GACpB,SAAS,EACb,kBAAkB,SAAS,wBAAwB,CAAC,QAAQ,CAAC,GAAG,wBAAwB,CAAC,QAAQ,CAAC,EAElG,MAAM,EAAE,sBAAsB,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,CAAC,EAC5D,IAAI,EAAE;IACJ,EAAE,EAAE,UAAU,CAAC,mBAAmB,CAAC,kBAAkB,CAAC,CAAC,CAAC;IACxD,OAAO,CAAC,EAAE,QAAQ,CAAC;CACpB,GAAG,mBAAmB,CAAC,QAAQ,CAAC,GAC/B,+BAA+B,CAAC,kBAAkB,CAAC,GACpD,OAAO,CAAC,mBAAmB,CAAC,kBAAkB,CAAC,CAAC,CAkDlD"}
@@ -4,13 +4,6 @@ import type { BaseSmartAccountClient } from "../../../client/smartAccountClient"
4
4
  import type { SendUserOperationResult } from "../../../client/types";
5
5
  import type { UserOperationOverrides, UserOperationStruct } from "../../../types";
6
6
  import type { GetContextParameter, UserOperationContext } from "../types";
7
- /**
8
- * Used internally to send a user operation that has **already** been signed
9
- *
10
- * @param client a base smart account client instance with middleware configured
11
- * @param args user operation struct, overrides, account, and context to be used in sending
12
- * @returns A Promise containing the send user operation result {@link SendUserOperationResult}
13
- */
14
7
  export declare function _sendUserOperation<TTransport extends Transport = Transport, TChain extends Chain | undefined = Chain | undefined, TAccount extends SmartContractAccount | undefined = SmartContractAccount | undefined, TContext extends UserOperationContext | undefined = UserOperationContext | undefined, TEntryPointVersion extends GetEntryPointFromAccount<TAccount> = GetEntryPointFromAccount<TAccount>>(client: BaseSmartAccountClient<TTransport, TChain, TAccount>, args: {
15
8
  uoStruct: UserOperationStruct<TEntryPointVersion>;
16
9
  overrides?: UserOperationOverrides<TEntryPointVersion>;
@@ -1 +1 @@
1
- {"version":3,"file":"sendUserOperation.d.ts","sourceRoot":"","sources":["../../../../../src/actions/smartAccount/internal/sendUserOperation.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,MAAM,CAAC;AAC7C,OAAO,KAAK,EACV,mBAAmB,EACnB,wBAAwB,EACxB,oBAAoB,EACrB,MAAM,uCAAuC,CAAC;AAC/C,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,oCAAoC,CAAC;AACjF,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,uBAAuB,CAAC;AAGrE,OAAO,KAAK,EACV,sBAAsB,EACtB,mBAAmB,EACpB,MAAM,gBAAgB,CAAC;AAExB,OAAO,KAAK,EAAE,mBAAmB,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAC;AAE1E;;;;;;GAMG;AACH,wBAAsB,kBAAkB,CACtC,UAAU,SAAS,SAAS,GAAG,SAAS,EACxC,MAAM,SAAS,KAAK,GAAG,SAAS,GAAG,KAAK,GAAG,SAAS,EACpD,QAAQ,SAAS,oBAAoB,GAAG,SAAS,GAC7C,oBAAoB,GACpB,SAAS,EACb,QAAQ,SAAS,oBAAoB,GAAG,SAAS,GAC7C,oBAAoB,GACpB,SAAS,EACb,kBAAkB,SAAS,wBAAwB,CAAC,QAAQ,CAAC,GAAG,wBAAwB,CAAC,QAAQ,CAAC,EAElG,MAAM,EAAE,sBAAsB,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,CAAC,EAC5D,IAAI,EAAE;IACJ,QAAQ,EAAE,mBAAmB,CAAC,kBAAkB,CAAC,CAAC;IAClD,SAAS,CAAC,EAAE,sBAAsB,CAAC,kBAAkB,CAAC,CAAC;CACxD,GAAG,mBAAmB,CAAC,QAAQ,CAAC,GAC/B,mBAAmB,CAAC,QAAQ,CAAC,GAC9B,OAAO,CAAC,uBAAuB,CAAC,kBAAkB,CAAC,CAAC,CAsBtD"}
1
+ {"version":3,"file":"sendUserOperation.d.ts","sourceRoot":"","sources":["../../../../../src/actions/smartAccount/internal/sendUserOperation.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,MAAM,CAAC;AAC7C,OAAO,KAAK,EACV,mBAAmB,EACnB,wBAAwB,EACxB,oBAAoB,EACrB,MAAM,uCAAuC,CAAC;AAC/C,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,oCAAoC,CAAC;AACjF,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,uBAAuB,CAAC;AAGrE,OAAO,KAAK,EACV,sBAAsB,EACtB,mBAAmB,EACpB,MAAM,gBAAgB,CAAC;AAExB,OAAO,KAAK,EAAE,mBAAmB,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAC;AAE1E,wBAAsB,kBAAkB,CACtC,UAAU,SAAS,SAAS,GAAG,SAAS,EACxC,MAAM,SAAS,KAAK,GAAG,SAAS,GAAG,KAAK,GAAG,SAAS,EACpD,QAAQ,SAAS,oBAAoB,GAAG,SAAS,GAC7C,oBAAoB,GACpB,SAAS,EACb,QAAQ,SAAS,oBAAoB,GAAG,SAAS,GAC7C,oBAAoB,GACpB,SAAS,EACb,kBAAkB,SAAS,wBAAwB,CAAC,QAAQ,CAAC,GAAG,wBAAwB,CAAC,QAAQ,CAAC,EAElG,MAAM,EAAE,sBAAsB,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,CAAC,EAC5D,IAAI,EAAE;IACJ,QAAQ,EAAE,mBAAmB,CAAC,kBAAkB,CAAC,CAAC;IAClD,SAAS,CAAC,EAAE,sBAAsB,CAAC,kBAAkB,CAAC,CAAC;CACxD,GAAG,mBAAmB,CAAC,QAAQ,CAAC,GAC/B,mBAAmB,CAAC,QAAQ,CAAC,GAC9B,OAAO,CAAC,uBAAuB,CAAC,kBAAkB,CAAC,CAAC,CAsBtD"}
@@ -5,9 +5,23 @@ import type { SendUserOperationParameters, UserOperationContext } from "./types.
5
5
  /**
6
6
  * Sends a user operation or batch of user operations using the connected account. Before executing, sendUserOperation will run the user operation through the middleware pipeline.
7
7
  *
8
- * @param client the smart account client to use for RPC requests
9
- * @param args {@link SendUserOperationParameters} containg the UO or batch to send, context, overrides, and account if not hoisted on the client
10
- * @returns a Promise containing the {@link SendUserOperationResult}
8
+ * @example
9
+ * ```ts
10
+ * import { createSmartAccountClient, toSmartContractAccount } from "@aa-sdk/core";
11
+ *
12
+ * const account = await toSmartContractAccount(...);
13
+ * const result = await createSmartAccountClient(...).sendUserOperation({
14
+ * uo: {
15
+ * target: "0x...",
16
+ * data: "0x...", // or "0x",
17
+ * value: 0n, // optional
18
+ * }
19
+ * });
20
+ * ```
21
+ *
22
+ * @param {Client<TTransport, TChain, TAccount>} client the smart account client to use for RPC requests
23
+ * @param {SendUserOperationParameters<TAccount, TContext>} args contains the UO or batch to send, context, overrides, and account if not hoisted on the client
24
+ * @returns {Promise<SendUserOperationResult<TEntryPointVersion>>} a Promise containing the result of the user operation
11
25
  */
12
26
  export declare function sendUserOperation<TTransport extends Transport = Transport, TChain extends Chain | undefined = Chain | undefined, TAccount extends SmartContractAccount | undefined = SmartContractAccount | undefined, TContext extends UserOperationContext | undefined = UserOperationContext | undefined, TEntryPointVersion extends GetEntryPointFromAccount<TAccount> = GetEntryPointFromAccount<TAccount>>(client: Client<TTransport, TChain, TAccount>, args: SendUserOperationParameters<TAccount, TContext>): Promise<SendUserOperationResult<TEntryPointVersion>>;
13
27
  //# sourceMappingURL=sendUserOperation.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"sendUserOperation.d.ts","sourceRoot":"","sources":["../../../../src/actions/smartAccount/sendUserOperation.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,MAAM,CAAC;AACrD,OAAO,KAAK,EACV,wBAAwB,EACxB,oBAAoB,EACrB,MAAM,uCAAuC,CAAC;AAE/C,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,uBAAuB,CAAC;AAKrE,OAAO,KAAK,EACV,2BAA2B,EAC3B,oBAAoB,EACrB,MAAM,YAAY,CAAC;AAEpB;;;;;;GAMG;AACH,wBAAsB,iBAAiB,CACrC,UAAU,SAAS,SAAS,GAAG,SAAS,EACxC,MAAM,SAAS,KAAK,GAAG,SAAS,GAAG,KAAK,GAAG,SAAS,EACpD,QAAQ,SAAS,oBAAoB,GAAG,SAAS,GAC7C,oBAAoB,GACpB,SAAS,EACb,QAAQ,SAAS,oBAAoB,GAAG,SAAS,GAC7C,oBAAoB,GACpB,SAAS,EACb,kBAAkB,SAAS,wBAAwB,CAAC,QAAQ,CAAC,GAAG,wBAAwB,CAAC,QAAQ,CAAC,EAElG,MAAM,EAAE,MAAM,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,CAAC,EAC5C,IAAI,EAAE,2BAA2B,CAAC,QAAQ,EAAE,QAAQ,CAAC,GACpD,OAAO,CAAC,uBAAuB,CAAC,kBAAkB,CAAC,CAAC,CA4BtD"}
1
+ {"version":3,"file":"sendUserOperation.d.ts","sourceRoot":"","sources":["../../../../src/actions/smartAccount/sendUserOperation.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,MAAM,CAAC;AACrD,OAAO,KAAK,EACV,wBAAwB,EACxB,oBAAoB,EACrB,MAAM,uCAAuC,CAAC;AAE/C,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,uBAAuB,CAAC;AAKrE,OAAO,KAAK,EACV,2BAA2B,EAC3B,oBAAoB,EACrB,MAAM,YAAY,CAAC;AAEpB;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,wBAAsB,iBAAiB,CACrC,UAAU,SAAS,SAAS,GAAG,SAAS,EACxC,MAAM,SAAS,KAAK,GAAG,SAAS,GAAG,KAAK,GAAG,SAAS,EACpD,QAAQ,SAAS,oBAAoB,GAAG,SAAS,GAC7C,oBAAoB,GACpB,SAAS,EACb,QAAQ,SAAS,oBAAoB,GAAG,SAAS,GAC7C,oBAAoB,GACpB,SAAS,EACb,kBAAkB,SAAS,wBAAwB,CAAC,QAAQ,CAAC,GAAG,wBAAwB,CAAC,QAAQ,CAAC,EAElG,MAAM,EAAE,MAAM,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,CAAC,EAC5C,IAAI,EAAE,2BAA2B,CAAC,QAAQ,EAAE,QAAQ,CAAC,GACpD,OAAO,CAAC,uBAAuB,CAAC,kBAAkB,CAAC,CAAC,CA4BtD"}
@@ -23,8 +23,8 @@ export declare const createBundlerClientFromExisting: <T extends Transport | Fal
23
23
  /**
24
24
  * Creates a PublicClient with methods for calling Bundler RPC methods
25
25
  *
26
- * @param args - configuration for the client
27
- * @returns a PublicClient with methods for calling Bundler RPC methods
26
+ * @param {PublicClientConfig<TTransport, Chain> & { type?: string }} args - configuration for the client
27
+ * @returns {BundlerClient<TTransport>} a PublicClient with methods for calling Bundler RPC methods
28
28
  */
29
29
  export declare function createBundlerClient<TTransport extends Transport>(args: PublicClientConfig<TTransport, Chain> & {
30
30
  type?: string;
@@ -32,38 +32,38 @@ export type BundlerActions = {
32
32
  /**
33
33
  * calls `eth_estimateUserOperationGas` and returns the result
34
34
  *
35
- * @param request - the {@link UserOperationRequest} to estimate gas for
35
+ * @param request - the UserOperationRequest to estimate gas for
36
36
  * @param entryPoint - the entry point address the op will be sent to
37
37
  * @param stateOverride - the state override to use for the estimation
38
- * @returns the gas estimates for the given response (see: {@link UserOperationEstimateGasResponse})
38
+ * @returns the gas estimates for the given response
39
39
  */
40
40
  estimateUserOperationGas<TEntryPointVersion extends EntryPointVersion = EntryPointVersion>(request: UserOperationRequest<TEntryPointVersion>, entryPoint: Address, stateOverride?: StateOverride): Promise<UserOperationEstimateGasResponse<TEntryPointVersion>>;
41
41
  /**
42
42
  * calls `eth_sendUserOperation` and returns the hash of the sent UserOperation
43
43
  *
44
- * @param request - the {@link UserOperationRequest} to send
44
+ * @param request - the UserOperationRequest to send
45
45
  * @param entryPoint - the entry point address the op will be sent to
46
46
  * @returns the hash of the sent UserOperation
47
47
  */
48
48
  sendRawUserOperation<TEntryPointVersion extends EntryPointVersion = EntryPointVersion>(request: UserOperationRequest<TEntryPointVersion>, entryPoint: Address): Promise<Hash>;
49
49
  /**
50
- * calls `eth_getUserOperationByHash` and returns the {@link UserOperationResponse}
50
+ * calls `eth_getUserOperationByHash` and returns the UserOperationResponse
51
51
  *
52
52
  * @param hash - the hash of the UserOperation to fetch
53
- * @returns - {@link UserOperationResponse}
53
+ * @returns - the user operation if found or null
54
54
  */
55
55
  getUserOperationByHash(hash: Hash): Promise<UserOperationResponse | null>;
56
56
  /**
57
- * calls `eth_getUserOperationReceipt` and returns the {@link UserOperationReceipt}
57
+ * calls `eth_getUserOperationReceipt` and returns the UserOperationReceipt
58
58
  *
59
59
  * @param hash - the hash of the UserOperation to get the receipt for
60
- * @returns - {@link UserOperationReceipt}
60
+ * @returns - a user operation receipt or null if not found
61
61
  */
62
62
  getUserOperationReceipt(hash: Hash): Promise<UserOperationReceipt | null>;
63
63
  /**
64
64
  * calls `eth_supportedEntryPoints` and returns the entry points the RPC supports
65
65
  *
66
- * @returns - {@link Address}[]
66
+ * @returns - an array of the entrypoint addresses supported
67
67
  */
68
68
  getSupportedEntryPoints(): Promise<Address[]>;
69
69
  };
@@ -6,8 +6,8 @@ import type { BaseSmartAccountClient, SmartAccountClient } from "./smartAccountC
6
6
  * Useful for narrowing the type of the client down when used within the
7
7
  * smart account client decorators
8
8
  *
9
- * @param client a viem client
10
- * @returns true if the client is a SmartAccountClient
9
+ * @param {Client<TTransport, TChain, TAccount>} client a viem client
10
+ * @returns {boolean} true if the client is a SmartAccountClient
11
11
  */
12
12
  export declare function isSmartAccountClient<TTransport extends Transport = Transport, TChain extends Chain | undefined = Chain | undefined, TAccount extends SmartContractAccount | undefined = SmartContractAccount | undefined>(client: Client<TTransport, TChain, TAccount>): client is SmartAccountClient<TTransport, TChain, TAccount>;
13
13
  /**
@@ -15,8 +15,8 @@ export declare function isSmartAccountClient<TTransport extends Transport = Tran
15
15
  * Useful for narrowing the type of the client down when used within the
16
16
  * smart account action decorators
17
17
  *
18
- * @param client a viem client
19
- * @returns true if the account is a BaseSmartAccountClient
18
+ * @param {Client<TTransport, TChain, TAccount>} client a viem client
19
+ * @returns {boolean} true if the account is a BaseSmartAccountClient
20
20
  */
21
21
  export declare function isBaseSmartAccountClient<TTransport extends Transport = Transport, TChain extends Chain | undefined = Chain | undefined, TAccount extends SmartContractAccount | undefined = SmartContractAccount | undefined>(client: Client<TTransport, TChain, TAccount>): client is BaseSmartAccountClient<TTransport, TChain, TAccount>;
22
22
  //# sourceMappingURL=isSmartAccountClient.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"smartAccountClient.d.ts","sourceRoot":"","sources":["../../../src/client/smartAccountClient.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"smartAccountClient.d.ts","sourceRoot":"","sources":["../../../src/client/smartAccountClient.ts"],"names":[],"mappings":"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"}
@@ -3,7 +3,7 @@ import type { Hash, Hex } from "viem";
3
3
  import type { z } from "zod";
4
4
  import type { UserOperationContext } from "../actions/smartAccount/types.js";
5
5
  import type { EntryPointVersion } from "../entrypoint/types.js";
6
- import type { ClientMiddleware, ClientMiddlewareFn } from "../middleware/types.js";
6
+ import type { ClientMiddleware } from "../middleware/types.js";
7
7
  import type { UserOperationRequest } from "../types.js";
8
8
  import type { ConnectionConfigSchema } from "./schema.js";
9
9
  export type ConnectorData = {
@@ -18,10 +18,5 @@ export type UpgradeToData = {
18
18
  implAddress: Address;
19
19
  initializationData: Hex;
20
20
  };
21
- export type ClientMiddlewareConfig<TContext extends UserOperationContext | undefined = UserOperationContext | undefined> = Omit<Partial<ClientMiddleware<TContext>>, "dummyPaymasterAndData" | "paymasterAndData"> & {
22
- paymasterAndData?: {
23
- dummyPaymasterAndData: () => UserOperationRequest<"0.6.0">["paymasterAndData"] | Pick<UserOperationRequest<"0.7.0">, "paymaster" | "paymasterData">;
24
- paymasterAndData: ClientMiddlewareFn<TContext>;
25
- };
26
- };
21
+ export type ClientMiddlewareConfig<TContext extends UserOperationContext | undefined = UserOperationContext | undefined> = Partial<ClientMiddleware<TContext>>;
27
22
  //# sourceMappingURL=types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/client/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AACvC,OAAO,KAAK,EAAE,IAAI,EAAE,GAAG,EAAE,MAAM,MAAM,CAAC;AACtC,OAAO,KAAK,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAC7B,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,kCAAkC,CAAC;AAC7E,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAChE,OAAO,KAAK,EACV,gBAAgB,EAChB,kBAAkB,EACnB,MAAM,wBAAwB,CAAC;AAChC,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC;AACxD,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,aAAa,CAAC;AAE1D,MAAM,MAAM,aAAa,GAAG;IAC1B,OAAO,CAAC,EAAE,GAAG,CAAC;CACf,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAGtE,MAAM,MAAM,uBAAuB,CACjC,kBAAkB,SAAS,iBAAiB,GAAG,iBAAiB,IAC9D;IACF,IAAI,EAAE,IAAI,CAAC;IACX,OAAO,EAAE,oBAAoB,CAAC,kBAAkB,CAAC,CAAC;CACnD,CAAC;AAIF,MAAM,MAAM,aAAa,GAAG;IAC1B,WAAW,EAAE,OAAO,CAAC;IACrB,kBAAkB,EAAE,GAAG,CAAC;CACzB,CAAC;AAIF,MAAM,MAAM,sBAAsB,CAChC,QAAQ,SAAS,oBAAoB,GAAG,SAAS,GAC7C,oBAAoB,GACpB,SAAS,IACX,IAAI,CACN,OAAO,CAAC,gBAAgB,CAAC,QAAQ,CAAC,CAAC,EACnC,uBAAuB,GAAG,kBAAkB,CAC7C,GAAG;IACF,gBAAgB,CAAC,EAAE;QACjB,qBAAqB,EAAE,MACnB,oBAAoB,CAAC,OAAO,CAAC,CAAC,kBAAkB,CAAC,GACjD,IAAI,CAAC,oBAAoB,CAAC,OAAO,CAAC,EAAE,WAAW,GAAG,eAAe,CAAC,CAAC;QACvE,gBAAgB,EAAE,kBAAkB,CAAC,QAAQ,CAAC,CAAC;KAChD,CAAC;CACH,CAAC"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/client/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AACvC,OAAO,KAAK,EAAE,IAAI,EAAE,GAAG,EAAE,MAAM,MAAM,CAAC;AACtC,OAAO,KAAK,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAC7B,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,kCAAkC,CAAC;AAC7E,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAChE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAC/D,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC;AACxD,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,aAAa,CAAC;AAE1D,MAAM,MAAM,aAAa,GAAG;IAC1B,OAAO,CAAC,EAAE,GAAG,CAAC;CACf,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAGtE,MAAM,MAAM,uBAAuB,CACjC,kBAAkB,SAAS,iBAAiB,GAAG,iBAAiB,IAC9D;IACF,IAAI,EAAE,IAAI,CAAC;IACX,OAAO,EAAE,oBAAoB,CAAC,kBAAkB,CAAC,CAAC;CACnD,CAAC;AAIF,MAAM,MAAM,aAAa,GAAG;IAC1B,WAAW,EAAE,OAAO,CAAC;IACrB,kBAAkB,EAAE,GAAG,CAAC;CACzB,CAAC;AAIF,MAAM,MAAM,sBAAsB,CAChC,QAAQ,SAAS,oBAAoB,GAAG,SAAS,GAC7C,oBAAoB,GACpB,SAAS,IACX,OAAO,CAAC,gBAAgB,CAAC,QAAQ,CAAC,CAAC,CAAC"}
@@ -1,5 +1,5 @@
1
- import type { Chain } from "viem/chains";
2
1
  import * as chains from "viem/chains";
2
+ import { type Chain } from "viem/chains";
3
3
  export declare const ChainsById: Map<number, chains.Chain>;
4
4
  /**
5
5
  * Converts a given chain ID to a coin type, following specific standards for mainnet and non-mainnet chains.
@@ -1 +1 @@
1
- {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../src/ens/utils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AACzC,OAAO,KAAK,MAAM,MAAM,aAAa,CAAC;AAGtC,eAAO,MAAM,UAAU,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,KAAK,CAEhD,CAAC;AAEF;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAM,wBAAwB,YAAa,MAAM,KAAG,MAQ1D,CAAC;AAEF;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,wBAAwB,aAAc,MAAM,KAAG,MAQ3D,CAAC;AAEF;;;;;;;;;;;;;;;GAeG;AACH,eAAO,MAAM,sBAAsB,aAAc,MAAM,KAAG,KAQzD,CAAC"}
1
+ {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../src/ens/utils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,MAAM,aAAa,CAAC;AACtC,OAAO,EAAW,KAAK,KAAK,EAAE,MAAM,aAAa,CAAC;AAElD,eAAO,MAAM,UAAU,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,KAAK,CAEhD,CAAC;AAEF;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAM,wBAAwB,YAAa,MAAM,KAAG,MAQ1D,CAAC;AAEF;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,wBAAwB,aAAc,MAAM,KAAG,MAQ3D,CAAC;AAEF;;;;;;;;;;;;;;;GAeG;AACH,eAAO,MAAM,sBAAsB,aAAc,MAAM,KAAG,KAQzD,CAAC"}