@lifi/sdk 3.0.0-alpha.3 → 3.0.0-alpha.30

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 (448) hide show
  1. package/package.json +31 -86
  2. package/src/_cjs/config.js +48 -0
  3. package/src/_cjs/config.js.map +1 -0
  4. package/{dist/cjs → src/_cjs}/constants.js +3 -5
  5. package/src/_cjs/constants.js.map +1 -0
  6. package/src/_cjs/core/BaseStepExecutor.js +55 -0
  7. package/src/_cjs/core/BaseStepExecutor.js.map +1 -0
  8. package/src/_cjs/core/EVM/EVM.js +46 -0
  9. package/src/_cjs/core/EVM/EVM.js.map +1 -0
  10. package/src/_cjs/core/EVM/EVMStepExecutor.js +276 -0
  11. package/src/_cjs/core/EVM/EVMStepExecutor.js.map +1 -0
  12. package/{dist/cjs/types → src/_cjs/core/EVM}/abi.js +1 -0
  13. package/src/_cjs/core/EVM/abi.js.map +1 -0
  14. package/{dist/cjs/execution → src/_cjs/core/EVM}/checkAllowance.js +12 -12
  15. package/src/_cjs/core/EVM/checkAllowance.js.map +1 -0
  16. package/{dist/cjs/allowance → src/_cjs/core/EVM}/getAllowance.js +13 -17
  17. package/src/_cjs/core/EVM/getAllowance.js.map +1 -0
  18. package/{dist/cjs/balance/getBalance.js → src/_cjs/core/EVM/getEVMBalance.js} +20 -22
  19. package/src/_cjs/core/EVM/getEVMBalance.js.map +1 -0
  20. package/{dist/cjs/execution → src/_cjs/core/EVM}/multisig.js +7 -11
  21. package/src/_cjs/core/EVM/multisig.js.map +1 -0
  22. package/src/_cjs/core/EVM/publicClient.js +35 -0
  23. package/src/_cjs/core/EVM/publicClient.js.map +1 -0
  24. package/src/_cjs/core/EVM/setAllowance.js +71 -0
  25. package/src/_cjs/core/EVM/setAllowance.js.map +1 -0
  26. package/src/_cjs/core/EVM/switchChain.js +37 -0
  27. package/src/_cjs/core/EVM/switchChain.js.map +1 -0
  28. package/src/_cjs/core/EVM/types.js +9 -0
  29. package/src/_cjs/core/EVM/types.js.map +1 -0
  30. package/{dist/cjs/utils/getMaxPriorityFeePerGas.js → src/_cjs/core/EVM/utils.js} +13 -3
  31. package/src/_cjs/core/EVM/utils.js.map +1 -0
  32. package/src/_cjs/core/Solana/Solana.js +44 -0
  33. package/src/_cjs/core/Solana/Solana.js.map +1 -0
  34. package/src/_cjs/core/Solana/SolanaStepExecutor.js +157 -0
  35. package/src/_cjs/core/Solana/SolanaStepExecutor.js.map +1 -0
  36. package/src/_cjs/core/Solana/connection.js +18 -0
  37. package/src/_cjs/core/Solana/connection.js.map +1 -0
  38. package/src/_cjs/core/Solana/getSolanaBalance.js +60 -0
  39. package/src/_cjs/core/Solana/getSolanaBalance.js.map +1 -0
  40. package/src/_cjs/core/Solana/types.js +10 -0
  41. package/src/_cjs/core/Solana/types.js.map +1 -0
  42. package/src/_cjs/core/StatusManager.js +167 -0
  43. package/src/_cjs/core/StatusManager.js.map +1 -0
  44. package/{dist/cjs/execution → src/_cjs/core}/checkBalance.js +5 -5
  45. package/src/_cjs/core/checkBalance.js.map +1 -0
  46. package/src/_cjs/core/execution.js +134 -0
  47. package/src/_cjs/core/execution.js.map +1 -0
  48. package/src/_cjs/core/executionState.js +23 -0
  49. package/src/_cjs/core/executionState.js.map +1 -0
  50. package/src/_cjs/core/index.js +7 -0
  51. package/src/_cjs/core/index.js.map +1 -0
  52. package/src/_cjs/core/prepareRestart.js +23 -0
  53. package/src/_cjs/core/prepareRestart.js.map +1 -0
  54. package/src/_cjs/core/provider.js +15 -0
  55. package/src/_cjs/core/provider.js.map +1 -0
  56. package/src/_cjs/core/stepComparison.js +25 -0
  57. package/src/_cjs/core/stepComparison.js.map +1 -0
  58. package/{dist/cjs/allowance → src/_cjs/core}/types.js +1 -0
  59. package/src/_cjs/core/types.js.map +1 -0
  60. package/{dist/cjs/execution → src/_cjs/core}/utils.js +16 -10
  61. package/src/_cjs/core/utils.js.map +1 -0
  62. package/{dist/cjs/execution → src/_cjs/core}/waitForReceivingTransaction.js +10 -12
  63. package/src/_cjs/core/waitForReceivingTransaction.js.map +1 -0
  64. package/src/_cjs/createConfig.js +50 -0
  65. package/src/_cjs/createConfig.js.map +1 -0
  66. package/src/_cjs/helpers.js +57 -0
  67. package/src/_cjs/helpers.js.map +1 -0
  68. package/src/_cjs/index.js +20 -0
  69. package/src/_cjs/index.js.map +1 -0
  70. package/src/_cjs/package.json +1 -0
  71. package/src/_cjs/request.js +66 -0
  72. package/src/_cjs/request.js.map +1 -0
  73. package/src/_cjs/services/api.js +304 -0
  74. package/src/_cjs/services/api.js.map +1 -0
  75. package/src/_cjs/services/balance.js +49 -0
  76. package/src/_cjs/services/balance.js.map +1 -0
  77. package/{dist/cjs → src/_cjs}/typeguards.js +1 -0
  78. package/src/_cjs/typeguards.js.map +1 -0
  79. package/src/_cjs/types/index.js +5 -0
  80. package/src/_cjs/types/index.js.map +1 -0
  81. package/{dist/cjs/types/internal.types.js → src/_cjs/types/internal.js} +1 -0
  82. package/src/_cjs/types/internal.js.map +1 -0
  83. package/{dist/cjs → src/_cjs}/utils/errors.js +25 -3
  84. package/src/_cjs/utils/errors.js.map +1 -0
  85. package/src/_cjs/utils/getTransactionMessage.js +31 -0
  86. package/src/_cjs/utils/getTransactionMessage.js.map +1 -0
  87. package/src/_cjs/utils/index.js +9 -0
  88. package/src/_cjs/utils/index.js.map +1 -0
  89. package/{dist/cjs → src/_cjs}/utils/median.js +1 -0
  90. package/src/_cjs/utils/median.js.map +1 -0
  91. package/src/_cjs/utils/parseBackendError.js +27 -0
  92. package/src/_cjs/utils/parseBackendError.js.map +1 -0
  93. package/src/_cjs/utils/parseError.js +67 -0
  94. package/src/_cjs/utils/parseError.js.map +1 -0
  95. package/{dist/cjs → src/_cjs}/utils/utils.js +5 -11
  96. package/src/_cjs/utils/utils.js.map +1 -0
  97. package/{dist/cjs → src/_cjs}/version.js +2 -1
  98. package/src/_cjs/version.js.map +1 -0
  99. package/src/_esm/config.js +45 -0
  100. package/src/_esm/config.js.map +1 -0
  101. package/{dist → src/_esm}/constants.js +2 -4
  102. package/src/_esm/constants.js.map +1 -0
  103. package/src/_esm/core/BaseStepExecutor.js +52 -0
  104. package/src/_esm/core/BaseStepExecutor.js.map +1 -0
  105. package/src/_esm/core/EVM/EVM.js +42 -0
  106. package/src/_esm/core/EVM/EVM.js.map +1 -0
  107. package/src/_esm/core/EVM/EVMStepExecutor.js +304 -0
  108. package/src/_esm/core/EVM/EVMStepExecutor.js.map +1 -0
  109. package/{dist/types → src/_esm/core/EVM}/abi.js +1 -0
  110. package/src/_esm/core/EVM/abi.js.map +1 -0
  111. package/{dist/execution → src/_esm/core/EVM}/checkAllowance.js +8 -6
  112. package/src/_esm/core/EVM/checkAllowance.js.map +1 -0
  113. package/{dist/allowance → src/_esm/core/EVM}/getAllowance.js +19 -6
  114. package/src/_esm/core/EVM/getAllowance.js.map +1 -0
  115. package/{dist/balance/getBalance.js → src/_esm/core/EVM/getEVMBalance.js} +10 -12
  116. package/src/_esm/core/EVM/getEVMBalance.js.map +1 -0
  117. package/{dist/execution → src/_esm/core/EVM}/multisig.js +5 -6
  118. package/src/_esm/core/EVM/multisig.js.map +1 -0
  119. package/src/_esm/core/EVM/publicClient.js +37 -0
  120. package/src/_esm/core/EVM/publicClient.js.map +1 -0
  121. package/{dist/allowance → src/_esm/core/EVM}/setAllowance.js +46 -11
  122. package/src/_esm/core/EVM/setAllowance.js.map +1 -0
  123. package/{dist/execution → src/_esm/core/EVM}/switchChain.js +5 -3
  124. package/src/_esm/core/EVM/switchChain.js.map +1 -0
  125. package/src/_esm/core/EVM/types.js +6 -0
  126. package/src/_esm/core/EVM/types.js.map +1 -0
  127. package/{dist/utils/getMaxPriorityFeePerGas.js → src/_esm/core/EVM/utils.js} +11 -1
  128. package/src/_esm/core/EVM/utils.js.map +1 -0
  129. package/src/_esm/core/Solana/Solana.js +40 -0
  130. package/src/_esm/core/Solana/Solana.js.map +1 -0
  131. package/src/_esm/core/Solana/SolanaStepExecutor.js +158 -0
  132. package/src/_esm/core/Solana/SolanaStepExecutor.js.map +1 -0
  133. package/src/_esm/core/Solana/connection.js +19 -0
  134. package/src/_esm/core/Solana/connection.js.map +1 -0
  135. package/src/_esm/core/Solana/getSolanaBalance.js +56 -0
  136. package/src/_esm/core/Solana/getSolanaBalance.js.map +1 -0
  137. package/src/_esm/core/Solana/types.js +7 -0
  138. package/src/_esm/core/Solana/types.js.map +1 -0
  139. package/src/_esm/core/StatusManager.js +203 -0
  140. package/src/_esm/core/StatusManager.js.map +1 -0
  141. package/{dist/execution → src/_esm/core}/checkBalance.js +3 -2
  142. package/src/_esm/core/checkBalance.js.map +1 -0
  143. package/src/_esm/core/execution.js +173 -0
  144. package/src/_esm/core/execution.js.map +1 -0
  145. package/src/_esm/core/executionState.js +20 -0
  146. package/src/_esm/core/executionState.js.map +1 -0
  147. package/src/_esm/core/index.js +4 -0
  148. package/src/_esm/core/index.js.map +1 -0
  149. package/src/_esm/core/prepareRestart.js +64 -0
  150. package/src/_esm/core/prepareRestart.js.map +1 -0
  151. package/src/_esm/core/provider.js +11 -0
  152. package/src/_esm/core/provider.js.map +1 -0
  153. package/{dist/execution → src/_esm/core}/stepComparison.js +7 -5
  154. package/src/_esm/core/stepComparison.js.map +1 -0
  155. package/src/_esm/core/types.js +2 -0
  156. package/src/_esm/core/types.js.map +1 -0
  157. package/{dist/execution → src/_esm/core}/utils.js +14 -0
  158. package/src/_esm/core/utils.js.map +1 -0
  159. package/{dist/execution → src/_esm/core}/waitForReceivingTransaction.js +8 -7
  160. package/src/_esm/core/waitForReceivingTransaction.js.map +1 -0
  161. package/src/_esm/createConfig.js +47 -0
  162. package/src/_esm/createConfig.js.map +1 -0
  163. package/{dist → src/_esm}/helpers.js +5 -17
  164. package/src/_esm/helpers.js.map +1 -0
  165. package/src/_esm/index.js +12 -0
  166. package/src/_esm/index.js.map +1 -0
  167. package/src/_esm/package.json +1 -0
  168. package/{dist → src/_esm}/request.js +23 -13
  169. package/src/_esm/request.js.map +1 -0
  170. package/src/_esm/services/api.js +372 -0
  171. package/src/_esm/services/api.js.map +1 -0
  172. package/src/_esm/services/balance.js +65 -0
  173. package/src/_esm/services/balance.js.map +1 -0
  174. package/{dist → src/_esm}/typeguards.js +1 -0
  175. package/src/_esm/typeguards.js.map +1 -0
  176. package/src/_esm/types/index.js +2 -0
  177. package/src/_esm/types/index.js.map +1 -0
  178. package/src/_esm/types/internal.js +2 -0
  179. package/src/_esm/types/internal.js.map +1 -0
  180. package/{dist → src/_esm}/utils/errors.js +25 -0
  181. package/src/_esm/utils/errors.js.map +1 -0
  182. package/src/_esm/utils/getTransactionMessage.js +28 -0
  183. package/src/_esm/utils/getTransactionMessage.js.map +1 -0
  184. package/src/_esm/utils/index.js +6 -0
  185. package/src/_esm/utils/index.js.map +1 -0
  186. package/{dist → src/_esm}/utils/median.js +1 -0
  187. package/src/_esm/utils/median.js.map +1 -0
  188. package/src/_esm/utils/parseBackendError.js +24 -0
  189. package/src/_esm/utils/parseBackendError.js.map +1 -0
  190. package/{dist → src/_esm}/utils/parseError.js +4 -53
  191. package/src/_esm/utils/parseError.js.map +1 -0
  192. package/{dist → src/_esm}/utils/utils.js +2 -1
  193. package/src/_esm/utils/utils.js.map +1 -0
  194. package/src/_esm/version.js +3 -0
  195. package/src/_esm/version.js.map +1 -0
  196. package/src/_types/config.d.ts +11 -0
  197. package/src/_types/config.d.ts.map +1 -0
  198. package/{dist/cjs → src/_types}/constants.d.ts +2 -4
  199. package/src/_types/constants.d.ts.map +1 -0
  200. package/src/_types/core/BaseStepExecutor.d.ts +13 -0
  201. package/src/_types/core/BaseStepExecutor.d.ts.map +1 -0
  202. package/src/_types/core/EVM/EVM.d.ts +3 -0
  203. package/src/_types/core/EVM/EVM.d.ts.map +1 -0
  204. package/src/_types/core/EVM/EVMStepExecutor.d.ts +16 -0
  205. package/src/_types/core/EVM/EVMStepExecutor.d.ts.map +1 -0
  206. package/{dist/cjs/types → src/_types/core/EVM}/abi.d.ts +1 -0
  207. package/src/_types/core/EVM/abi.d.ts.map +1 -0
  208. package/src/_types/core/EVM/checkAllowance.d.ts +6 -0
  209. package/src/_types/core/EVM/checkAllowance.d.ts.map +1 -0
  210. package/{dist/cjs/allowance → src/_types/core/EVM}/getAllowance.d.ts +15 -1
  211. package/src/_types/core/EVM/getAllowance.d.ts.map +1 -0
  212. package/src/_types/core/EVM/getEVMBalance.d.ts +3 -0
  213. package/src/_types/core/EVM/getEVMBalance.d.ts.map +1 -0
  214. package/src/_types/core/EVM/multisig.d.ts +6 -0
  215. package/src/_types/core/EVM/multisig.d.ts.map +1 -0
  216. package/src/_types/core/EVM/publicClient.d.ts +8 -0
  217. package/src/_types/core/EVM/publicClient.d.ts.map +1 -0
  218. package/src/_types/core/EVM/setAllowance.d.ts +25 -0
  219. package/src/_types/core/EVM/setAllowance.d.ts.map +1 -0
  220. package/{dist/cjs/execution → src/_types/core/EVM}/switchChain.d.ts +5 -4
  221. package/src/_types/core/EVM/switchChain.d.ts.map +1 -0
  222. package/src/_types/core/EVM/types.d.ts +57 -0
  223. package/src/_types/core/EVM/types.d.ts.map +1 -0
  224. package/src/_types/core/EVM/utils.d.ts +5 -0
  225. package/src/_types/core/EVM/utils.d.ts.map +1 -0
  226. package/src/_types/core/Solana/Solana.d.ts +3 -0
  227. package/src/_types/core/Solana/Solana.d.ts.map +1 -0
  228. package/src/_types/core/Solana/SolanaStepExecutor.d.ts +12 -0
  229. package/src/_types/core/Solana/SolanaStepExecutor.d.ts.map +1 -0
  230. package/src/_types/core/Solana/connection.d.ts +8 -0
  231. package/src/_types/core/Solana/connection.d.ts.map +1 -0
  232. package/src/_types/core/Solana/getSolanaBalance.d.ts +3 -0
  233. package/src/_types/core/Solana/getSolanaBalance.d.ts.map +1 -0
  234. package/src/_types/core/Solana/types.d.ts +13 -0
  235. package/src/_types/core/Solana/types.d.ts.map +1 -0
  236. package/{dist/cjs/execution → src/_types/core}/StatusManager.d.ts +13 -16
  237. package/src/_types/core/StatusManager.d.ts.map +1 -0
  238. package/src/_types/core/checkBalance.d.ts +3 -0
  239. package/src/_types/core/checkBalance.d.ts.map +1 -0
  240. package/src/_types/core/execution.d.ts +42 -0
  241. package/src/_types/core/execution.d.ts.map +1 -0
  242. package/src/_types/core/executionState.d.ts +15 -0
  243. package/src/_types/core/executionState.d.ts.map +1 -0
  244. package/src/_types/core/index.d.ts +4 -0
  245. package/src/_types/core/index.d.ts.map +1 -0
  246. package/src/_types/core/prepareRestart.d.ts +3 -0
  247. package/src/_types/core/prepareRestart.d.ts.map +1 -0
  248. package/src/_types/core/provider.d.ts +3 -0
  249. package/src/_types/core/provider.d.ts.map +1 -0
  250. package/{dist/execution → src/_types/core}/stepComparison.d.ts +7 -4
  251. package/src/_types/core/stepComparison.d.ts.map +1 -0
  252. package/src/_types/core/types.d.ts +80 -0
  253. package/src/_types/core/types.d.ts.map +1 -0
  254. package/{dist/execution → src/_types/core}/utils.d.ts +5 -2
  255. package/src/_types/core/utils.d.ts.map +1 -0
  256. package/src/_types/core/waitForReceivingTransaction.d.ts +4 -0
  257. package/src/_types/core/waitForReceivingTransaction.d.ts.map +1 -0
  258. package/src/_types/createConfig.d.ts +7 -0
  259. package/src/_types/createConfig.d.ts.map +1 -0
  260. package/{dist → src/_types}/helpers.d.ts +4 -3
  261. package/src/_types/helpers.d.ts.map +1 -0
  262. package/src/_types/index.d.ts +12 -0
  263. package/src/_types/index.d.ts.map +1 -0
  264. package/{dist → src/_types}/request.d.ts +1 -0
  265. package/src/_types/request.d.ts.map +1 -0
  266. package/src/_types/services/api.d.ts +88 -0
  267. package/src/_types/services/api.d.ts.map +1 -0
  268. package/src/_types/services/balance.d.ts +30 -0
  269. package/src/_types/services/balance.d.ts.map +1 -0
  270. package/{dist/cjs → src/_types}/typeguards.d.ts +3 -2
  271. package/src/_types/typeguards.d.ts.map +1 -0
  272. package/src/_types/types/index.d.ts +2 -0
  273. package/src/_types/types/index.d.ts.map +1 -0
  274. package/src/_types/types/internal.d.ts +56 -0
  275. package/src/_types/types/internal.d.ts.map +1 -0
  276. package/{dist → src/_types}/utils/errors.d.ts +1 -0
  277. package/src/_types/utils/errors.d.ts.map +1 -0
  278. package/src/_types/utils/getTransactionMessage.d.ts +4 -0
  279. package/src/_types/utils/getTransactionMessage.d.ts.map +1 -0
  280. package/src/_types/utils/index.d.ts +6 -0
  281. package/src/_types/utils/index.d.ts.map +1 -0
  282. package/{dist/cjs → src/_types}/utils/median.d.ts +1 -0
  283. package/src/_types/utils/median.d.ts.map +1 -0
  284. package/src/_types/utils/parseBackendError.d.ts +3 -0
  285. package/src/_types/utils/parseBackendError.d.ts.map +1 -0
  286. package/{dist → src/_types}/utils/parseError.d.ts +4 -6
  287. package/src/_types/utils/parseError.d.ts.map +1 -0
  288. package/{dist → src/_types}/utils/utils.d.ts +1 -0
  289. package/src/_types/utils/utils.d.ts.map +1 -0
  290. package/src/_types/version.d.ts +3 -0
  291. package/src/_types/version.d.ts.map +1 -0
  292. package/src/config.ts +47 -0
  293. package/src/constants.ts +4 -0
  294. package/src/core/BaseStepExecutor.ts +40 -0
  295. package/src/core/EVM/EVM.ts +50 -0
  296. package/src/core/EVM/EVMStepExecutor.ts +472 -0
  297. package/src/core/EVM/abi.ts +47 -0
  298. package/src/core/EVM/checkAllowance.ts +152 -0
  299. package/src/core/EVM/getAllowance.ts +144 -0
  300. package/src/core/EVM/getEVMBalance.ts +118 -0
  301. package/src/core/EVM/multisig.ts +53 -0
  302. package/src/core/EVM/publicClient.ts +46 -0
  303. package/src/core/EVM/setAllowance.ts +144 -0
  304. package/src/core/EVM/switchChain.ts +76 -0
  305. package/src/core/EVM/types.ts +75 -0
  306. package/src/core/EVM/utils.ts +47 -0
  307. package/src/core/Solana/Solana.ts +46 -0
  308. package/src/core/Solana/SolanaStepExecutor.ts +253 -0
  309. package/src/core/Solana/connection.ts +19 -0
  310. package/src/core/Solana/getSolanaBalance.ts +72 -0
  311. package/src/core/Solana/types.ts +18 -0
  312. package/src/core/StatusManager.ts +243 -0
  313. package/src/core/checkBalance.ts +48 -0
  314. package/src/core/execution.ts +218 -0
  315. package/src/core/executionState.ts +39 -0
  316. package/src/core/index.ts +3 -0
  317. package/src/core/prepareRestart.ts +82 -0
  318. package/src/core/provider.ts +12 -0
  319. package/src/core/stepComparison.ts +51 -0
  320. package/src/core/types.ts +117 -0
  321. package/src/core/utils.ts +122 -0
  322. package/src/core/waitForReceivingTransaction.ts +73 -0
  323. package/src/createConfig.ts +56 -0
  324. package/src/helpers.ts +83 -0
  325. package/src/index.ts +11 -0
  326. package/src/request.ts +79 -0
  327. package/src/services/api.ts +507 -0
  328. package/src/services/balance.ts +93 -0
  329. package/src/typeguards.ts +89 -0
  330. package/src/types/index.ts +1 -0
  331. package/src/types/internal.ts +58 -0
  332. package/src/utils/errors.ts +231 -0
  333. package/src/utils/getTransactionMessage.ts +46 -0
  334. package/src/utils/index.ts +5 -0
  335. package/src/utils/median.ts +11 -0
  336. package/src/utils/parseBackendError.ts +50 -0
  337. package/src/utils/parseError.ts +204 -0
  338. package/src/utils/utils.ts +48 -0
  339. package/src/version.ts +2 -0
  340. package/dist/LiFi.d.ts +0 -171
  341. package/dist/LiFi.js +0 -246
  342. package/dist/allowance/getAllowance.d.ts +0 -6
  343. package/dist/allowance/index.d.ts +0 -3
  344. package/dist/allowance/index.js +0 -3
  345. package/dist/allowance/setAllowance.d.ts +0 -5
  346. package/dist/allowance/types.d.ts +0 -27
  347. package/dist/allowance/types.js +0 -1
  348. package/dist/balance/getBalance.d.ts +0 -2
  349. package/dist/balance/getTokenBalance.d.ts +0 -8
  350. package/dist/balance/getTokenBalance.js +0 -27
  351. package/dist/balance/index.d.ts +0 -2
  352. package/dist/balance/index.js +0 -2
  353. package/dist/cjs/LiFi.d.ts +0 -171
  354. package/dist/cjs/LiFi.js +0 -276
  355. package/dist/cjs/allowance/index.d.ts +0 -3
  356. package/dist/cjs/allowance/index.js +0 -19
  357. package/dist/cjs/allowance/setAllowance.d.ts +0 -5
  358. package/dist/cjs/allowance/setAllowance.js +0 -56
  359. package/dist/cjs/allowance/types.d.ts +0 -27
  360. package/dist/cjs/balance/getBalance.d.ts +0 -2
  361. package/dist/cjs/balance/getTokenBalance.d.ts +0 -8
  362. package/dist/cjs/balance/getTokenBalance.js +0 -33
  363. package/dist/cjs/balance/index.d.ts +0 -2
  364. package/dist/cjs/balance/index.js +0 -18
  365. package/dist/cjs/connectors.d.ts +0 -8
  366. package/dist/cjs/connectors.js +0 -75
  367. package/dist/cjs/execution/RouteExecutionManager.d.ts +0 -59
  368. package/dist/cjs/execution/RouteExecutionManager.js +0 -202
  369. package/dist/cjs/execution/StatusManager.js +0 -171
  370. package/dist/cjs/execution/StepExecutionManager.d.ts +0 -7
  371. package/dist/cjs/execution/StepExecutionManager.js +0 -267
  372. package/dist/cjs/execution/StepExecutor.d.ts +0 -15
  373. package/dist/cjs/execution/StepExecutor.js +0 -62
  374. package/dist/cjs/execution/checkAllowance.d.ts +0 -4
  375. package/dist/cjs/execution/checkBalance.d.ts +0 -2
  376. package/dist/cjs/execution/index.d.ts +0 -1
  377. package/dist/cjs/execution/index.js +0 -17
  378. package/dist/cjs/execution/multisig.d.ts +0 -4
  379. package/dist/cjs/execution/prepareRestart.d.ts +0 -3
  380. package/dist/cjs/execution/prepareRestart.js +0 -65
  381. package/dist/cjs/execution/stepComparison.d.ts +0 -14
  382. package/dist/cjs/execution/stepComparison.js +0 -37
  383. package/dist/cjs/execution/switchChain.js +0 -54
  384. package/dist/cjs/execution/utils.d.ts +0 -12
  385. package/dist/cjs/execution/waitForReceivingTransaction.d.ts +0 -3
  386. package/dist/cjs/helpers.d.ts +0 -18
  387. package/dist/cjs/helpers.js +0 -84
  388. package/dist/cjs/index.d.ts +0 -5
  389. package/dist/cjs/index.js +0 -24
  390. package/dist/cjs/request.d.ts +0 -9
  391. package/dist/cjs/request.js +0 -60
  392. package/dist/cjs/services/ApiService.d.ts +0 -17
  393. package/dist/cjs/services/ApiService.js +0 -326
  394. package/dist/cjs/services/ChainsService.d.ts +0 -11
  395. package/dist/cjs/services/ChainsService.js +0 -39
  396. package/dist/cjs/services/ConfigService.d.ts +0 -23
  397. package/dist/cjs/services/ConfigService.js +0 -101
  398. package/dist/cjs/types/index.d.ts +0 -4
  399. package/dist/cjs/types/index.js +0 -22
  400. package/dist/cjs/types/internal.types.d.ts +0 -142
  401. package/dist/cjs/utils/errors.d.ts +0 -107
  402. package/dist/cjs/utils/getMaxPriorityFeePerGas.d.ts +0 -2
  403. package/dist/cjs/utils/index.d.ts +0 -5
  404. package/dist/cjs/utils/index.js +0 -21
  405. package/dist/cjs/utils/parseError.d.ts +0 -37
  406. package/dist/cjs/utils/parseError.js +0 -157
  407. package/dist/cjs/utils/utils.d.ts +0 -10
  408. package/dist/cjs/version.d.ts +0 -2
  409. package/dist/connectors.d.ts +0 -8
  410. package/dist/connectors.js +0 -41
  411. package/dist/constants.d.ts +0 -6
  412. package/dist/execution/RouteExecutionManager.d.ts +0 -59
  413. package/dist/execution/RouteExecutionManager.js +0 -195
  414. package/dist/execution/StatusManager.d.ts +0 -67
  415. package/dist/execution/StatusManager.js +0 -167
  416. package/dist/execution/StepExecutionManager.d.ts +0 -7
  417. package/dist/execution/StepExecutionManager.js +0 -260
  418. package/dist/execution/StepExecutor.d.ts +0 -15
  419. package/dist/execution/StepExecutor.js +0 -58
  420. package/dist/execution/checkAllowance.d.ts +0 -4
  421. package/dist/execution/checkBalance.d.ts +0 -2
  422. package/dist/execution/index.d.ts +0 -1
  423. package/dist/execution/index.js +0 -1
  424. package/dist/execution/multisig.d.ts +0 -4
  425. package/dist/execution/prepareRestart.d.ts +0 -3
  426. package/dist/execution/prepareRestart.js +0 -61
  427. package/dist/execution/switchChain.d.ts +0 -21
  428. package/dist/execution/waitForReceivingTransaction.d.ts +0 -3
  429. package/dist/index.d.ts +0 -5
  430. package/dist/index.js +0 -6
  431. package/dist/services/ApiService.d.ts +0 -17
  432. package/dist/services/ApiService.js +0 -321
  433. package/dist/services/ChainsService.d.ts +0 -11
  434. package/dist/services/ChainsService.js +0 -33
  435. package/dist/services/ConfigService.d.ts +0 -23
  436. package/dist/services/ConfigService.js +0 -99
  437. package/dist/typeguards.d.ts +0 -4
  438. package/dist/types/abi.d.ts +0 -5
  439. package/dist/types/index.d.ts +0 -4
  440. package/dist/types/index.js +0 -4
  441. package/dist/types/internal.types.d.ts +0 -142
  442. package/dist/types/internal.types.js +0 -1
  443. package/dist/utils/getMaxPriorityFeePerGas.d.ts +0 -2
  444. package/dist/utils/index.d.ts +0 -5
  445. package/dist/utils/index.js +0 -5
  446. package/dist/utils/median.d.ts +0 -1
  447. package/dist/version.d.ts +0 -2
  448. package/dist/version.js +0 -2
@@ -1,101 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const types_1 = require("../types");
4
- const DefaultExecutionSettings = {
5
- /* eslint-disable-next-line @typescript-eslint/no-empty-function */
6
- updateRouteHook: () => { },
7
- switchChainHook: () => Promise.resolve(undefined),
8
- acceptExchangeRateUpdateHook: () => Promise.resolve(undefined),
9
- infiniteApproval: false,
10
- executeInBackground: false,
11
- };
12
- class ConfigService {
13
- constructor() {
14
- this.resolveSetupPromise = undefined;
15
- /**
16
- * This call immediately returns the current config. It does not make sure that all chain data is already loaded
17
- * Use this if you need access to basic information like API urls or settings
18
- */
19
- this.getConfig = () => {
20
- return this.config;
21
- };
22
- /**
23
- * This call waits for all setup promises to be done.
24
- * Use this if you need access to chain data (RPCs or multicalls)
25
- */
26
- this.getConfigAsync = async () => {
27
- await this.setupPromise;
28
- return this.config;
29
- };
30
- this.updateConfig = (configUpdate) => {
31
- // API
32
- this.config.apiUrl = configUpdate.apiUrl || this.config.apiUrl;
33
- // RPCS
34
- this.config.rpcs = Object.assign(this.config.rpcs, configUpdate.rpcs);
35
- // MULTICALL
36
- this.config.multicallAddresses = Object.assign(this.config.multicallAddresses, configUpdate.multicallAddresses);
37
- // SETTINGS
38
- this.config.defaultExecutionSettings = Object.assign(this.config.defaultExecutionSettings, configUpdate.defaultExecutionSettings);
39
- // OPTIONS
40
- this.config.defaultRouteOptions = Object.assign(this.config.defaultRouteOptions, configUpdate.defaultRouteOptions);
41
- this.config.userId = configUpdate.userId || this.config.userId;
42
- this.config.integrator = configUpdate.integrator || this.config.integrator;
43
- this.config.defaultRouteOptions.integrator =
44
- configUpdate.integrator ||
45
- configUpdate.defaultRouteOptions?.integrator ||
46
- this.config.integrator;
47
- this.config.widgetVersion =
48
- configUpdate.widgetVersion || this.config.widgetVersion;
49
- this.config.multisig = configUpdate.multisigConfig || this.config.multisig;
50
- return this.config;
51
- };
52
- this.updateChains = (chains) => {
53
- for (const chain of chains) {
54
- const chainId = chain.id;
55
- // set RPCs if they were not configured by the user before
56
- if (!this.config.rpcs[chainId]?.length) {
57
- this.config.rpcs[chainId] = chain.metamask.rpcUrls;
58
- }
59
- // set multicall addresses if they exist and were not configured by the user before
60
- if (chain.multicallAddress && !this.config.multicallAddresses[chainId]) {
61
- this.config.multicallAddresses[chainId] = chain.multicallAddress;
62
- }
63
- }
64
- this.resolveSetupPromise?.();
65
- return this.config;
66
- };
67
- this.config = ConfigService.getDefaultConfig();
68
- this.setupPromise = new Promise((resolve) => {
69
- this.resolveSetupPromise = resolve;
70
- });
71
- }
72
- static chainIdToObject(val) {
73
- const result = {};
74
- const values = Object.values(types_1.ChainId);
75
- values.forEach((chainId) => {
76
- if (typeof chainId !== 'string') {
77
- result[chainId] = val ? JSON.parse(JSON.stringify(val)) : val;
78
- }
79
- });
80
- return result;
81
- }
82
- static getInstance() {
83
- if (!this.instance) {
84
- this.instance = new ConfigService();
85
- }
86
- return this.instance;
87
- }
88
- }
89
- ConfigService.getDefaultConfig = () => {
90
- return {
91
- apiUrl: 'https://li.quest/v1',
92
- rpcs: ConfigService.chainIdToObject([]),
93
- multicallAddresses: ConfigService.chainIdToObject(undefined),
94
- defaultExecutionSettings: DefaultExecutionSettings,
95
- defaultRouteOptions: {
96
- integrator: 'lifi-sdk',
97
- },
98
- integrator: 'lifi-sdk',
99
- };
100
- };
101
- exports.default = ConfigService;
@@ -1,4 +0,0 @@
1
- export * from '@lifi/types';
2
- export { ErrorCode, LiFiError } from '../utils/errors';
3
- export * from './abi';
4
- export * from './internal.types';
@@ -1,22 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
- exports.LiFiError = void 0;
18
- __exportStar(require("@lifi/types"), exports);
19
- var errors_1 = require("../utils/errors");
20
- Object.defineProperty(exports, "LiFiError", { enumerable: true, get: function () { return errors_1.LiFiError; } });
21
- __exportStar(require("./abi"), exports);
22
- __exportStar(require("./internal.types"), exports);
@@ -1,142 +0,0 @@
1
- import type { ChainId, LifiStep, Route, RouteOptions, Token } from '@lifi/types';
2
- import type { Hash, Hex, WalletClient } from 'viem';
3
- import type { StatusManager } from '../execution/StatusManager';
4
- import type { StepExecutor } from '../execution/StepExecutor';
5
- export type TransactionParameters = {
6
- chainId?: number;
7
- to?: string;
8
- from?: string;
9
- nonce?: number;
10
- data?: Hex;
11
- value?: bigint;
12
- gas?: bigint;
13
- gasPrice?: bigint;
14
- maxFeePerGas?: bigint;
15
- maxPriorityFeePerGas?: bigint;
16
- };
17
- export interface ExecutionParams {
18
- walletClient: WalletClient;
19
- step: LifiStep;
20
- statusManager: StatusManager;
21
- settings: InternalExecutionSettings;
22
- }
23
- export type UpdateRouteHook = (updatedRoute: Route) => void;
24
- export type TransactionRequestUpdateHook = (updatedTxRequest: TransactionParameters) => Promise<TransactionParameters>;
25
- export type Config = {
26
- apiUrl: string;
27
- rpcs: Record<ChainId, string[]>;
28
- multicallAddresses: Record<ChainId, string | undefined>;
29
- defaultExecutionSettings: InternalExecutionSettings;
30
- defaultRouteOptions: RouteOptions;
31
- disableVersionCheck?: boolean;
32
- userId?: string;
33
- integrator: string;
34
- widgetVersion?: string;
35
- multisig?: MultisigConfig;
36
- };
37
- export interface MultisigTxDetails {
38
- status: 'DONE' | 'FAILED' | 'PENDING' | 'CANCELLED';
39
- txHash?: Hash;
40
- }
41
- export interface MultisigTransactionResponse {
42
- hash: string;
43
- }
44
- export interface BaseTransaction {
45
- to: string;
46
- value?: bigint;
47
- data: string;
48
- }
49
- export interface MultisigConfig {
50
- isMultisigWalletClient: boolean;
51
- getMultisigTransactionDetails: (txHash: Hash, fromChainId: number, updateIntermediateStatus?: () => void) => Promise<MultisigTxDetails>;
52
- sendBatchTransaction?: (batchTransactions: BaseTransaction[]) => Promise<Hash>;
53
- shouldBatchTransactions?: boolean;
54
- }
55
- export type ConfigUpdate = {
56
- apiUrl?: string;
57
- rpcs?: Record<number, string[]>;
58
- multicallAddresses?: Record<number, string | undefined>;
59
- defaultExecutionSettings?: ExecutionSettings;
60
- defaultRouteOptions?: RouteOptions;
61
- disableVersionCheck?: boolean;
62
- userId?: string;
63
- integrator: string;
64
- widgetVersion?: string;
65
- multisigConfig?: MultisigConfig;
66
- };
67
- export type SwitchChainHook = (requiredChainId: number) => Promise<WalletClient | undefined>;
68
- export interface AcceptSlippageUpdateHookParams {
69
- toToken: Token;
70
- oldToAmount: string;
71
- newToAmount: string;
72
- oldSlippage: number;
73
- newSlippage: number;
74
- }
75
- export type AcceptSlippageUpdateHook = (params: AcceptSlippageUpdateHookParams) => Promise<boolean | undefined>;
76
- export interface ExchangeRateUpdateParams {
77
- toToken: Token;
78
- oldToAmount: string;
79
- newToAmount: string;
80
- }
81
- export type AcceptExchangeRateUpdateHook = (params: ExchangeRateUpdateParams) => Promise<boolean | undefined>;
82
- export interface RouteExecutionData {
83
- route: Route;
84
- executors: StepExecutor[];
85
- settings: InternalExecutionSettings;
86
- }
87
- export type ExecutionSettings = Partial<InternalExecutionSettings>;
88
- export interface InternalExecutionSettings {
89
- acceptExchangeRateUpdateHook: AcceptExchangeRateUpdateHook;
90
- switchChainHook: SwitchChainHook;
91
- updateRouteHook: UpdateRouteHook;
92
- updateTransactionRequestHook?: TransactionRequestUpdateHook;
93
- executeInBackground: boolean;
94
- infiniteApproval: boolean;
95
- }
96
- export type RouteExecutionDictionary = Partial<Record<string, RouteExecutionData>>;
97
- export type RouteExecutionPromiseDictionary = Partial<Record<string, Promise<Route>>>;
98
- export interface InteractionSettings {
99
- allowInteraction?: boolean;
100
- allowUpdates?: boolean;
101
- stopExecution?: boolean;
102
- }
103
- export interface TenderlyResponse {
104
- hash: string;
105
- block_hash: string;
106
- block_number: number;
107
- from: string;
108
- gas: number;
109
- gas_price: number;
110
- gas_fee_cap: number;
111
- gas_tip_cap: number;
112
- cumulative_gas_used: number;
113
- gas_used: number;
114
- effective_gas_price: number;
115
- input: string;
116
- nonce: number;
117
- to: string;
118
- index: number;
119
- value: string;
120
- access_list: any;
121
- status: boolean;
122
- addresses: string[];
123
- contract_ids: string[];
124
- network_id: string;
125
- timestamp: string;
126
- function_selector: string;
127
- l1_block_number: number;
128
- l1_timestamp: number;
129
- deposit_tx: boolean;
130
- system_tx: boolean;
131
- mint: number;
132
- sig: Signature;
133
- error_message: string;
134
- method: string;
135
- decoded_input: any;
136
- call_trace: any;
137
- }
138
- export interface Signature {
139
- v: string;
140
- r: string;
141
- s: string;
142
- }
@@ -1,107 +0,0 @@
1
- declare enum ErrorType {
2
- RPCError = "RPCError",
3
- ProviderError = "ProviderError",
4
- ServerError = "ServerError",
5
- TransactionError = "TransactionError",
6
- ValidationError = "ValidationError",
7
- NotFoundError = "NotFoundError",
8
- UnknownError = "UnknownError",
9
- SlippageError = "SlippageError"
10
- }
11
- export declare enum LiFiErrorCode {
12
- InternalError = 1000,
13
- ValidationError = 1001,
14
- TransactionUnderpriced = 1002,
15
- TransactionFailed = 1003,
16
- Timeout = 1004,
17
- ProviderUnavailable = 1005,
18
- NotFound = 1006,
19
- ChainSwitchError = 1007,
20
- TransactionUnprepared = 1008,
21
- GasLimitError = 1009,
22
- TransactionCanceled = 1010,
23
- SlippageError = 1011,
24
- SignatureRejected = 1012,
25
- BalanceError = 1013,
26
- AllowanceRequired = 1014,
27
- InsufficientFunds = 1015,
28
- ExchangeRateUpdateCanceled = 1016
29
- }
30
- export declare enum EthersErrorType {
31
- ActionRejected = "ACTION_REJECTED",
32
- CallExecption = "CALL_EXCEPTION",
33
- InsufficientFunds = "INSUFFICIENT_FUNDS"
34
- }
35
- export declare enum EthersErrorMessage {
36
- ERC20Allowance = "ERC20: transfer amount exceeds allowance",
37
- LowGas = "intrinsic gas too low",
38
- OutOfGas = "out of gas",
39
- Underpriced = "underpriced",
40
- LowReplacementFee = "replacement fee too low"
41
- }
42
- export declare enum ErrorMessage {
43
- UnknownError = "Unknown error occurred.",
44
- SlippageError = "The slippage is larger than the defined threshold. Please request a new route to get a fresh quote.",
45
- GasLimitLow = "Gas limit is too low.",
46
- TransactionUnderpriced = "Transaction is underpriced.",
47
- Default = "Something went wrong."
48
- }
49
- export declare enum MetaMaskRPCErrorCode {
50
- invalidInput = -32000,
51
- resourceNotFound = -32001,
52
- resourceUnavailable = -32002,
53
- transactionRejected = -32003,
54
- methodNotSupported = -32004,
55
- limitExceeded = -32005,
56
- parse = -32700,
57
- invalidRequest = -32600,
58
- methodNotFound = -32601,
59
- invalidParams = -32602,
60
- internal = -32603
61
- }
62
- export declare enum MetaMaskProviderErrorCode {
63
- userRejectedRequest = 4001,
64
- unauthorized = 4100,
65
- unsupportedMethod = 4200,
66
- disconnected = 4900,
67
- chainDisconnected = 4901
68
- }
69
- export type ErrorCode = LiFiErrorCode | MetaMaskRPCErrorCode | MetaMaskProviderErrorCode;
70
- export declare class LiFiError extends Error {
71
- code: ErrorCode;
72
- htmlMessage?: string;
73
- constructor(type: ErrorType, code: number, message: string, htmlMessage?: string, stack?: string);
74
- }
75
- export declare class RPCError extends LiFiError {
76
- constructor(code: ErrorCode, message: string, htmlMessage?: string, stack?: string);
77
- }
78
- export declare class ProviderError extends LiFiError {
79
- constructor(code: ErrorCode, message: string, htmlMessage?: string, stack?: string);
80
- }
81
- export declare class ServerError extends LiFiError {
82
- constructor(message: string, htmlMessage?: string, stack?: string);
83
- }
84
- export declare class ValidationError extends LiFiError {
85
- constructor(message: string, htmlMessage?: string, stack?: string);
86
- }
87
- export declare class TransactionError extends LiFiError {
88
- constructor(code: ErrorCode, message: string, htmlMessage?: string, stack?: string);
89
- }
90
- export declare class SlippageError extends LiFiError {
91
- constructor(message: string, htmlMessage?: string, stack?: string);
92
- }
93
- export declare class BalanceError extends LiFiError {
94
- constructor(message: string, htmlMessage?: string, stack?: string);
95
- }
96
- export declare class NotFoundError extends LiFiError {
97
- constructor(message: string, htmlMessage?: string, stack?: string);
98
- }
99
- export declare class UnknownError extends LiFiError {
100
- constructor(code: ErrorCode, message: string, htmlMessage?: string, stack?: string);
101
- }
102
- export declare class HTTPError extends Error {
103
- response: Response;
104
- status: number;
105
- constructor(response: Response);
106
- }
107
- export {};
@@ -1,2 +0,0 @@
1
- import type { PublicClient } from 'viem';
2
- export declare const getMaxPriorityFeePerGas: (client: PublicClient) => Promise<bigint | undefined>;
@@ -1,5 +0,0 @@
1
- export * from './errors';
2
- export * from './getMaxPriorityFeePerGas';
3
- export * from './median';
4
- export * from './parseError';
5
- export * from './utils';
@@ -1,21 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./errors"), exports);
18
- __exportStar(require("./getMaxPriorityFeePerGas"), exports);
19
- __exportStar(require("./median"), exports);
20
- __exportStar(require("./parseError"), exports);
21
- __exportStar(require("./utils"), exports);
@@ -1,37 +0,0 @@
1
- import type { LifiStep, Process } from '@lifi/types';
2
- import { LiFiError } from './errors';
3
- /**
4
- * Available MetaMask error codes:
5
- *
6
- * export const errorCodes: ErrorCodes = {
7
- rpc: {
8
- invalidInput: -32000,
9
- resourceNotFound: -32001,
10
- resourceUnavailable: -32002,
11
- transactionRejected: -32003,
12
- methodNotSupported: -32004,
13
- limitExceeded: -32005,
14
- parse: -32700,
15
- invalidRequest: -32600,
16
- methodNotFound: -32601,
17
- invalidParams: -32602,
18
- internal: -32603,
19
- },
20
- provider: {
21
- userRejectedRequest: 4001,
22
- unauthorized: 4100,
23
- unsupportedMethod: 4200,
24
- disconnected: 4900,
25
- chainDisconnected: 4901,
26
- },
27
- };
28
- *
29
- * For more information about error codes supported by metamask check
30
- * https://github.com/MetaMask/eth-rpc-errors
31
- * https://eips.ethereum.org/EIPS/eip-1474#error-codes
32
- * https://eips.ethereum.org/EIPS/eip-1193#provider-errors
33
- */
34
- export declare const getTransactionNotSentMessage: (step?: LifiStep, process?: Process) => Promise<string>;
35
- export declare const getTransactionFailedMessage: (step: LifiStep, txLink?: string) => Promise<string>;
36
- export declare const parseError: (e: any, step?: LifiStep, process?: Process) => Promise<LiFiError>;
37
- export declare const parseBackendError: (e: any) => Promise<LiFiError>;
@@ -1,157 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.parseBackendError = exports.parseError = exports.getTransactionFailedMessage = exports.getTransactionNotSentMessage = void 0;
7
- const eth_rpc_errors_1 = require("eth-rpc-errors");
8
- const viem_1 = require("viem");
9
- const helpers_1 = require("../helpers");
10
- const ChainsService_1 = __importDefault(require("../services/ChainsService"));
11
- const errors_1 = require("./errors");
12
- /**
13
- * Available MetaMask error codes:
14
- *
15
- * export const errorCodes: ErrorCodes = {
16
- rpc: {
17
- invalidInput: -32000,
18
- resourceNotFound: -32001,
19
- resourceUnavailable: -32002,
20
- transactionRejected: -32003,
21
- methodNotSupported: -32004,
22
- limitExceeded: -32005,
23
- parse: -32700,
24
- invalidRequest: -32600,
25
- methodNotFound: -32601,
26
- invalidParams: -32602,
27
- internal: -32603,
28
- },
29
- provider: {
30
- userRejectedRequest: 4001,
31
- unauthorized: 4100,
32
- unsupportedMethod: 4200,
33
- disconnected: 4900,
34
- chainDisconnected: 4901,
35
- },
36
- };
37
- *
38
- * For more information about error codes supported by metamask check
39
- * https://github.com/MetaMask/eth-rpc-errors
40
- * https://eips.ethereum.org/EIPS/eip-1474#error-codes
41
- * https://eips.ethereum.org/EIPS/eip-1193#provider-errors
42
- */
43
- const getTransactionNotSentMessage = async (step, process) => {
44
- let transactionNotSend = 'Transaction was not sent, your funds are still in your wallet';
45
- // add information about funds if available
46
- if (step) {
47
- const chainService = ChainsService_1.default.getInstance();
48
- const chain = await chainService.getChainById(step.action.fromChainId);
49
- transactionNotSend += ` (${(0, viem_1.formatUnits)(BigInt(step.action.fromAmount), step.action.fromToken.decimals)} ${step.action.fromToken.symbol} on ${chain.name})`;
50
- }
51
- transactionNotSend +=
52
- ", please retry.<br/>If it still doesn't work, it is safe to delete this transfer and start a new one.";
53
- // add transaction explorer link if available
54
- transactionNotSend +=
55
- process && process.txLink
56
- ? `<br>You can check the failed transaction&nbsp;<a href="${process.txLink}" target="_blank" rel="nofollow noreferrer">here</a>.`
57
- : '';
58
- return transactionNotSend;
59
- };
60
- exports.getTransactionNotSentMessage = getTransactionNotSentMessage;
61
- const getTransactionFailedMessage = async (step, txLink) => {
62
- const chainsService = ChainsService_1.default.getInstance();
63
- const chain = await chainsService.getChainById(step.action.toChainId);
64
- const baseString = `It appears that your transaction may not have been successful.
65
- However, to confirm this, please check your ${chain.name} wallet for ${step.action.toToken.symbol}.`;
66
- return txLink
67
- ? `${baseString}
68
- You can also check the&nbsp;<a href="${txLink}" target="_blank" rel="nofollow noreferrer">block explorer</a> for more information.`
69
- : baseString;
70
- };
71
- exports.getTransactionFailedMessage = getTransactionFailedMessage;
72
- const parseError = async (e, step, process) => {
73
- if (e instanceof errors_1.LiFiError) {
74
- return e;
75
- }
76
- const errorCode = e.code || e.cause?.code;
77
- switch (errorCode) {
78
- case errors_1.EthersErrorType.CallExecption:
79
- const defaultErrorMessage = await (0, exports.getTransactionNotSentMessage)(step, process);
80
- try {
81
- if (!step?.action.fromChainId) {
82
- throw new Error('fromChainId is not defined.');
83
- }
84
- const response = await (0, helpers_1.fetchTxErrorDetails)(e.transactionHash, step?.action.fromChainId);
85
- const errorMessage = response?.error_message ?? e.reason;
86
- const isAllowanceError = response?.error_message?.includes(errors_1.EthersErrorMessage.ERC20Allowance) || e.reason?.includes(errors_1.EthersErrorMessage.ERC20Allowance);
87
- if (isAllowanceError) {
88
- return new errors_1.TransactionError(errors_1.LiFiErrorCode.AllowanceRequired, e.reason, errorMessage, e.stack);
89
- }
90
- // Error messages other than allowance error will be handled in catch block
91
- throw new Error(e);
92
- }
93
- catch (error) {
94
- return new errors_1.ProviderError(errors_1.LiFiErrorCode.TransactionFailed, e.reason, defaultErrorMessage, e.stack);
95
- }
96
- case errors_1.EthersErrorType.InsufficientFunds:
97
- return new errors_1.TransactionError(errors_1.LiFiErrorCode.InsufficientFunds, e.message, await (0, exports.getTransactionNotSentMessage)(step, process), e.stack);
98
- case errors_1.EthersErrorType.ActionRejected:
99
- case errors_1.MetaMaskProviderErrorCode.userRejectedRequest:
100
- return new errors_1.TransactionError(errors_1.LiFiErrorCode.SignatureRejected, e.message, await (0, exports.getTransactionNotSentMessage)(step, process), e.stack);
101
- case errors_1.LiFiErrorCode.TransactionUnprepared:
102
- return new errors_1.TransactionError(errors_1.LiFiErrorCode.TransactionUnprepared, e.message, await (0, exports.getTransactionNotSentMessage)(step, process), e.stack);
103
- case errors_1.LiFiErrorCode.ValidationError:
104
- return new errors_1.TransactionError(errors_1.LiFiErrorCode.ValidationError, e.message, e.htmlMessage);
105
- case errors_1.LiFiErrorCode.TransactionCanceled:
106
- return new errors_1.TransactionError(errors_1.LiFiErrorCode.TransactionCanceled, e.message, e.htmlMessage);
107
- case errors_1.LiFiErrorCode.ExchangeRateUpdateCanceled:
108
- return new errors_1.TransactionError(errors_1.LiFiErrorCode.ExchangeRateUpdateCanceled, e.message, e.htmlMessage);
109
- default: {
110
- if (errorCode && typeof errorCode === 'number') {
111
- if (Object.values(eth_rpc_errors_1.errorCodes.rpc).includes(errorCode)) {
112
- // rpc errors
113
- // underpriced errors are sent as internal errors, so we need to parse the message manually
114
- if (errorCode === eth_rpc_errors_1.errorCodes.rpc.internal &&
115
- (e.message?.includes(errors_1.EthersErrorMessage.Underpriced) ||
116
- e.message?.includes(errors_1.EthersErrorMessage.LowReplacementFee))) {
117
- return new errors_1.RPCError(errors_1.LiFiErrorCode.TransactionUnderpriced, errors_1.ErrorMessage.TransactionUnderpriced, await (0, exports.getTransactionNotSentMessage)(step, process), e.stack);
118
- }
119
- if (e.message?.includes(errors_1.EthersErrorMessage.LowGas) ||
120
- e.message?.includes(errors_1.EthersErrorMessage.OutOfGas)) {
121
- return new errors_1.TransactionError(errors_1.LiFiErrorCode.GasLimitError, errors_1.ErrorMessage.GasLimitLow, await (0, exports.getTransactionNotSentMessage)(step, process), e.stack);
122
- }
123
- return new errors_1.RPCError(errorCode, (0, eth_rpc_errors_1.getMessageFromCode)(errorCode), await (0, exports.getTransactionNotSentMessage)(step, process), e.stack);
124
- }
125
- // provider errors
126
- if (Object.values(eth_rpc_errors_1.errorCodes.provider).includes(errorCode)) {
127
- return new errors_1.ProviderError(errorCode, (0, eth_rpc_errors_1.getMessageFromCode)(errorCode), await (0, exports.getTransactionNotSentMessage)(step, process), e.stack);
128
- }
129
- }
130
- return new errors_1.UnknownError(errors_1.LiFiErrorCode.InternalError, e.message || errors_1.ErrorMessage.UnknownError, undefined, e.stack);
131
- }
132
- }
133
- };
134
- exports.parseError = parseError;
135
- const parseBackendError = async (e) => {
136
- let data;
137
- try {
138
- data = await e.response?.json();
139
- }
140
- catch (error) {
141
- // ignore
142
- }
143
- if (e.response?.status === 400) {
144
- return new errors_1.ValidationError(data?.message || e.response?.statusText, undefined, e.stack);
145
- }
146
- if (e.response?.status === 404) {
147
- return new errors_1.NotFoundError(data?.message || e.response?.statusText, undefined, e.stack);
148
- }
149
- if (e.response?.status === 409) {
150
- return new errors_1.SlippageError(data?.message || e.response?.statusText, errors_1.ErrorMessage.SlippageError, e.stack);
151
- }
152
- if (e.response?.status === 500) {
153
- return new errors_1.ServerError(data?.message || e.response?.statusText, undefined, e.stack);
154
- }
155
- return new errors_1.ServerError(errors_1.ErrorMessage.Default, undefined, e.stack);
156
- };
157
- exports.parseBackendError = parseBackendError;
@@ -1,10 +0,0 @@
1
- export declare const wait: (ms: number) => Promise<undefined>;
2
- /**
3
- * Repeatedly calls a given asynchronous function until it resolves with a value
4
- * @param toRepeat The function that should be repeated
5
- * @param timeout The timeout in milliseconds between retries, defaults to 5000
6
- * @returns The result of the toRepeat function
7
- */
8
- export declare const repeatUntilDone: <T>(toRepeat: () => Promise<T | undefined>, timeout?: number) => Promise<T>;
9
- export declare const isZeroAddress: (address: string) => boolean;
10
- export declare const isNativeTokenAddress: (address: string) => boolean;
@@ -1,2 +0,0 @@
1
- export declare const name = "@lifi/sdk";
2
- export declare const version = "3.0.0-alpha.3";
@@ -1,8 +0,0 @@
1
- import type { PublicClient } from 'viem';
2
- import type { Chain } from 'viem/chains';
3
- import type { ChainId } from './types';
4
- export declare const getChainById: (chainId: ChainId) => Chain | undefined;
5
- export declare const getRpcUrl: (chainId: ChainId) => Promise<string>;
6
- export declare const getRpcUrls: (chainId: ChainId) => Promise<string[]>;
7
- export declare const getPublicClient: (chainId: number) => Promise<PublicClient>;
8
- export declare const getMulticallAddress: (chainId: ChainId) => Promise<string | undefined>;
@@ -1,41 +0,0 @@
1
- import { createPublicClient, fallback, http } from 'viem';
2
- import * as chains from 'viem/chains'; // TODO: optimize using BE chains
3
- import ConfigService from './services/ConfigService';
4
- import { ServerError } from './utils/errors';
5
- // cached providers
6
- const publicClients = {};
7
- export const getChainById = (chainId) => {
8
- return Object.values(chains).find((chain) => chain.id === chainId);
9
- };
10
- // RPC Urls
11
- export const getRpcUrl = async (chainId) => {
12
- const rpcUrls = await getRpcUrls(chainId);
13
- return rpcUrls[0];
14
- };
15
- export const getRpcUrls = async (chainId) => {
16
- const configService = ConfigService.getInstance();
17
- const config = await configService.getConfigAsync();
18
- return config.rpcs[chainId];
19
- };
20
- export const getPublicClient = async (chainId) => {
21
- if (!publicClients[chainId]) {
22
- const urls = await getRpcUrls(chainId);
23
- const fallbackTransports = urls.map((url) => http(url, {
24
- batch: true,
25
- }));
26
- publicClients[chainId] = createPublicClient({
27
- chain: getChainById(chainId),
28
- transport: fallback(fallbackTransports),
29
- });
30
- }
31
- if (!publicClients[chainId]) {
32
- throw new ServerError(`Unable to configure provider for chain ${chainId}`);
33
- }
34
- return publicClients[chainId];
35
- };
36
- // Multicall
37
- export const getMulticallAddress = async (chainId) => {
38
- const configService = ConfigService.getInstance();
39
- const config = await configService.getConfigAsync();
40
- return config.multicallAddresses[chainId];
41
- };