@yaswap/wallet-core 2.0.0

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 (563) hide show
  1. package/CHANGELOG.md +804 -0
  2. package/README.md +163 -0
  3. package/dist/package.json +76 -0
  4. package/dist/src/build.config.d.ts +46 -0
  5. package/dist/src/build.config.js +237 -0
  6. package/dist/src/build.config.js.map +1 -0
  7. package/dist/src/factory/client/clients.d.ts +11 -0
  8. package/dist/src/factory/client/clients.js +119 -0
  9. package/dist/src/factory/client/clients.js.map +1 -0
  10. package/dist/src/factory/client/evm.d.ts +6 -0
  11. package/dist/src/factory/client/evm.js +71 -0
  12. package/dist/src/factory/client/evm.js.map +1 -0
  13. package/dist/src/factory/client/index.d.ts +11 -0
  14. package/dist/src/factory/client/index.js +38 -0
  15. package/dist/src/factory/client/index.js.map +1 -0
  16. package/dist/src/factory/client/nft.d.ts +4 -0
  17. package/dist/src/factory/client/nft.js +26 -0
  18. package/dist/src/factory/client/nft.js.map +1 -0
  19. package/dist/src/factory/index.d.ts +3 -0
  20. package/dist/src/factory/index.js +7 -0
  21. package/dist/src/factory/index.js.map +1 -0
  22. package/dist/src/factory/settings.d.ts +4 -0
  23. package/dist/src/factory/settings.js +27 -0
  24. package/dist/src/factory/settings.js.map +1 -0
  25. package/dist/src/factory/swap/index.d.ts +4 -0
  26. package/dist/src/factory/swap/index.js +66 -0
  27. package/dist/src/factory/swap/index.js.map +1 -0
  28. package/dist/src/index.d.ts +1619 -0
  29. package/dist/src/index.js +38 -0
  30. package/dist/src/index.js.map +1 -0
  31. package/dist/src/index.test.d.ts +1 -0
  32. package/dist/src/index.test.js +187 -0
  33. package/dist/src/index.test.js.map +1 -0
  34. package/dist/src/nameResolvers/nameResolver.d.ts +7 -0
  35. package/dist/src/nameResolvers/nameResolver.js +3 -0
  36. package/dist/src/nameResolvers/nameResolver.js.map +1 -0
  37. package/dist/src/nameResolvers/uns.d.ts +12 -0
  38. package/dist/src/nameResolvers/uns.js +83 -0
  39. package/dist/src/nameResolvers/uns.js.map +1 -0
  40. package/dist/src/nameResolvers/uns.test.d.ts +1 -0
  41. package/dist/src/nameResolvers/uns.test.js +29 -0
  42. package/dist/src/nameResolvers/uns.test.js.map +1 -0
  43. package/dist/src/store/actions/acceptTermsAndConditions.d.ts +4 -0
  44. package/dist/src/store/actions/acceptTermsAndConditions.js +17 -0
  45. package/dist/src/store/actions/acceptTermsAndConditions.js.map +1 -0
  46. package/dist/src/store/actions/acceptTermsAndConditions.test.d.ts +1 -0
  47. package/dist/src/store/actions/acceptTermsAndConditions.test.js +22 -0
  48. package/dist/src/store/actions/acceptTermsAndConditions.test.js.map +1 -0
  49. package/dist/src/store/actions/accounts/createAccount.d.ts +7 -0
  50. package/dist/src/store/actions/accounts/createAccount.js +27 -0
  51. package/dist/src/store/actions/accounts/createAccount.js.map +1 -0
  52. package/dist/src/store/actions/accounts/createAccount.test.d.ts +1 -0
  53. package/dist/src/store/actions/accounts/createAccount.test.js +29 -0
  54. package/dist/src/store/actions/accounts/createAccount.test.js.map +1 -0
  55. package/dist/src/store/actions/accounts/index.d.ts +5 -0
  56. package/dist/src/store/actions/accounts/index.js +9 -0
  57. package/dist/src/store/actions/accounts/index.js.map +1 -0
  58. package/dist/src/store/actions/accounts/removeAccount.d.ts +7 -0
  59. package/dist/src/store/actions/accounts/removeAccount.js +12 -0
  60. package/dist/src/store/actions/accounts/removeAccount.js.map +1 -0
  61. package/dist/src/store/actions/accounts/removeAccount.test.d.ts +1 -0
  62. package/dist/src/store/actions/accounts/removeAccount.test.js +53 -0
  63. package/dist/src/store/actions/accounts/removeAccount.test.js.map +1 -0
  64. package/dist/src/store/actions/accounts/toggleAccount.d.ts +8 -0
  65. package/dist/src/store/actions/accounts/toggleAccount.js +19 -0
  66. package/dist/src/store/actions/accounts/toggleAccount.js.map +1 -0
  67. package/dist/src/store/actions/accounts/toggleAccount.test.d.ts +1 -0
  68. package/dist/src/store/actions/accounts/toggleAccount.test.js +44 -0
  69. package/dist/src/store/actions/accounts/toggleAccount.test.js.map +1 -0
  70. package/dist/src/store/actions/accounts/toggleBlockchain.d.ts +9 -0
  71. package/dist/src/store/actions/accounts/toggleBlockchain.js +14 -0
  72. package/dist/src/store/actions/accounts/toggleBlockchain.js.map +1 -0
  73. package/dist/src/store/actions/accounts/updateAccount.d.ts +26 -0
  74. package/dist/src/store/actions/accounts/updateAccount.js +14 -0
  75. package/dist/src/store/actions/accounts/updateAccount.js.map +1 -0
  76. package/dist/src/store/actions/addCustomToken.d.ts +12 -0
  77. package/dist/src/store/actions/addCustomToken.js +12 -0
  78. package/dist/src/store/actions/addCustomToken.js.map +1 -0
  79. package/dist/src/store/actions/addCustomToken.test.d.ts +1 -0
  80. package/dist/src/store/actions/addCustomToken.test.js +59 -0
  81. package/dist/src/store/actions/addCustomToken.test.js.map +1 -0
  82. package/dist/src/store/actions/addExternalConnection.d.ts +9 -0
  83. package/dist/src/store/actions/addExternalConnection.js +13 -0
  84. package/dist/src/store/actions/addExternalConnection.js.map +1 -0
  85. package/dist/src/store/actions/addExternalConnection.test.d.ts +1 -0
  86. package/dist/src/store/actions/addExternalConnection.test.js +100 -0
  87. package/dist/src/store/actions/addExternalConnection.test.js.map +1 -0
  88. package/dist/src/store/actions/analytics.d.ts +21 -0
  89. package/dist/src/store/actions/analytics.js +58 -0
  90. package/dist/src/store/actions/analytics.js.map +1 -0
  91. package/dist/src/store/actions/analytics.test.d.ts +1 -0
  92. package/dist/src/store/actions/analytics.test.js +33 -0
  93. package/dist/src/store/actions/analytics.test.js.map +1 -0
  94. package/dist/src/store/actions/changeActiveNetwork.d.ts +5 -0
  95. package/dist/src/store/actions/changeActiveNetwork.js +13 -0
  96. package/dist/src/store/actions/changeActiveNetwork.js.map +1 -0
  97. package/dist/src/store/actions/changeActiveWalletId.d.ts +5 -0
  98. package/dist/src/store/actions/changeActiveWalletId.js +11 -0
  99. package/dist/src/store/actions/changeActiveWalletId.js.map +1 -0
  100. package/dist/src/store/actions/changeActiveWalletId.test.d.ts +1 -0
  101. package/dist/src/store/actions/changeActiveWalletId.test.js +40 -0
  102. package/dist/src/store/actions/changeActiveWalletId.test.js.map +1 -0
  103. package/dist/src/store/actions/changePassword.d.ts +4 -0
  104. package/dist/src/store/actions/changePassword.js +13 -0
  105. package/dist/src/store/actions/changePassword.js.map +1 -0
  106. package/dist/src/store/actions/changePassword.test.d.ts +1 -0
  107. package/dist/src/store/actions/changePassword.test.js +22 -0
  108. package/dist/src/store/actions/changePassword.test.js.map +1 -0
  109. package/dist/src/store/actions/checkPendingActions.d.ts +5 -0
  110. package/dist/src/store/actions/checkPendingActions.js +25 -0
  111. package/dist/src/store/actions/checkPendingActions.js.map +1 -0
  112. package/dist/src/store/actions/clearErrorLog.d.ts +2 -0
  113. package/dist/src/store/actions/clearErrorLog.js +10 -0
  114. package/dist/src/store/actions/clearErrorLog.js.map +1 -0
  115. package/dist/src/store/actions/createWallet.d.ts +7 -0
  116. package/dist/src/store/actions/createWallet.js +90 -0
  117. package/dist/src/store/actions/createWallet.js.map +1 -0
  118. package/dist/src/store/actions/createWallet.test.d.ts +1 -0
  119. package/dist/src/store/actions/createWallet.test.js +41 -0
  120. package/dist/src/store/actions/createWallet.test.js.map +1 -0
  121. package/dist/src/store/actions/customChainSettings.d.ts +15 -0
  122. package/dist/src/store/actions/customChainSettings.js +37 -0
  123. package/dist/src/store/actions/customChainSettings.js.map +1 -0
  124. package/dist/src/store/actions/disableAssets.d.ts +7 -0
  125. package/dist/src/store/actions/disableAssets.js +28 -0
  126. package/dist/src/store/actions/disableAssets.js.map +1 -0
  127. package/dist/src/store/actions/disableEthereumInjection.d.ts +2 -0
  128. package/dist/src/store/actions/disableEthereumInjection.js +11 -0
  129. package/dist/src/store/actions/disableEthereumInjection.js.map +1 -0
  130. package/dist/src/store/actions/disableEthereumInjection.test.d.ts +1 -0
  131. package/dist/src/store/actions/disableEthereumInjection.test.js +24 -0
  132. package/dist/src/store/actions/disableEthereumInjection.test.js.map +1 -0
  133. package/dist/src/store/actions/enableAssets.d.ts +7 -0
  134. package/dist/src/store/actions/enableAssets.js +65 -0
  135. package/dist/src/store/actions/enableAssets.js.map +1 -0
  136. package/dist/src/store/actions/enableAssets.test.d.ts +1 -0
  137. package/dist/src/store/actions/enableAssets.test.js +37 -0
  138. package/dist/src/store/actions/enableAssets.test.js.map +1 -0
  139. package/dist/src/store/actions/enableDisableAssets.test.d.ts +1 -0
  140. package/dist/src/store/actions/enableDisableAssets.test.js +79 -0
  141. package/dist/src/store/actions/enableDisableAssets.test.js.map +1 -0
  142. package/dist/src/store/actions/enableEthereumInjection.d.ts +2 -0
  143. package/dist/src/store/actions/enableEthereumInjection.js +11 -0
  144. package/dist/src/store/actions/enableEthereumInjection.js.map +1 -0
  145. package/dist/src/store/actions/exportPrivateKey.d.ts +9 -0
  146. package/dist/src/store/actions/exportPrivateKey.js +12 -0
  147. package/dist/src/store/actions/exportPrivateKey.js.map +1 -0
  148. package/dist/src/store/actions/exportPrivateKey.test.d.ts +1 -0
  149. package/dist/src/store/actions/exportPrivateKey.test.js +36 -0
  150. package/dist/src/store/actions/exportPrivateKey.test.js.map +1 -0
  151. package/dist/src/store/actions/fetchTokenDetails.d.ts +11 -0
  152. package/dist/src/store/actions/fetchTokenDetails.js +22 -0
  153. package/dist/src/store/actions/fetchTokenDetails.js.map +1 -0
  154. package/dist/src/store/actions/forgetDappConnections.d.ts +2 -0
  155. package/dist/src/store/actions/forgetDappConnections.js +11 -0
  156. package/dist/src/store/actions/forgetDappConnections.js.map +1 -0
  157. package/dist/src/store/actions/getLockForAsset.d.ts +8 -0
  158. package/dist/src/store/actions/getLockForAsset.js +34 -0
  159. package/dist/src/store/actions/getLockForAsset.js.map +1 -0
  160. package/dist/src/store/actions/getQuotes.d.ts +13 -0
  161. package/dist/src/store/actions/getQuotes.js +70 -0
  162. package/dist/src/store/actions/getQuotes.js.map +1 -0
  163. package/dist/src/store/actions/getQuotes.test.d.ts +1 -0
  164. package/dist/src/store/actions/getQuotes.test.js +30 -0
  165. package/dist/src/store/actions/getQuotes.test.js.map +1 -0
  166. package/dist/src/store/actions/getUnusedAddresses.d.ts +8 -0
  167. package/dist/src/store/actions/getUnusedAddresses.js +51 -0
  168. package/dist/src/store/actions/getUnusedAddresses.js.map +1 -0
  169. package/dist/src/store/actions/hardware-wallet/getLedgerAccounts.d.ts +16 -0
  170. package/dist/src/store/actions/hardware-wallet/getLedgerAccounts.js +57 -0
  171. package/dist/src/store/actions/hardware-wallet/getLedgerAccounts.js.map +1 -0
  172. package/dist/src/store/actions/hardware-wallet/index.d.ts +1 -0
  173. package/dist/src/store/actions/hardware-wallet/index.js +5 -0
  174. package/dist/src/store/actions/hardware-wallet/index.js.map +1 -0
  175. package/dist/src/store/actions/index.d.ts +47 -0
  176. package/dist/src/store/actions/index.js +51 -0
  177. package/dist/src/store/actions/index.js.map +1 -0
  178. package/dist/src/store/actions/initializeAddresses.d.ts +6 -0
  179. package/dist/src/store/actions/initializeAddresses.js +26 -0
  180. package/dist/src/store/actions/initializeAddresses.js.map +1 -0
  181. package/dist/src/store/actions/initializeAddresses.test.d.ts +1 -0
  182. package/dist/src/store/actions/initializeAddresses.test.js +58 -0
  183. package/dist/src/store/actions/initializeAddresses.test.js.map +1 -0
  184. package/dist/src/store/actions/lockWallet.d.ts +2 -0
  185. package/dist/src/store/actions/lockWallet.js +11 -0
  186. package/dist/src/store/actions/lockWallet.js.map +1 -0
  187. package/dist/src/store/actions/lockWallet.test.d.ts +1 -0
  188. package/dist/src/store/actions/lockWallet.test.js +24 -0
  189. package/dist/src/store/actions/lockWallet.test.js.map +1 -0
  190. package/dist/src/store/actions/logError.d.ts +3 -0
  191. package/dist/src/store/actions/logError.js +10 -0
  192. package/dist/src/store/actions/logError.js.map +1 -0
  193. package/dist/src/store/actions/logError.test.d.ts +1 -0
  194. package/dist/src/store/actions/logError.test.js +27 -0
  195. package/dist/src/store/actions/logError.test.js.map +1 -0
  196. package/dist/src/store/actions/newSwap.d.ts +12 -0
  197. package/dist/src/store/actions/newSwap.js +34 -0
  198. package/dist/src/store/actions/newSwap.js.map +1 -0
  199. package/dist/src/store/actions/performNextAction/index.d.ts +7 -0
  200. package/dist/src/store/actions/performNextAction/index.js +65 -0
  201. package/dist/src/store/actions/performNextAction/index.js.map +1 -0
  202. package/dist/src/store/actions/performNextAction/send.d.ts +7 -0
  203. package/dist/src/store/actions/performNextAction/send.js +54 -0
  204. package/dist/src/store/actions/performNextAction/send.js.map +1 -0
  205. package/dist/src/store/actions/performNextAction/sendNFT.d.ts +7 -0
  206. package/dist/src/store/actions/performNextAction/sendNFT.js +50 -0
  207. package/dist/src/store/actions/performNextAction/sendNFT.js.map +1 -0
  208. package/dist/src/store/actions/performNextAction/utils.d.ts +11 -0
  209. package/dist/src/store/actions/performNextAction/utils.js +42 -0
  210. package/dist/src/store/actions/performNextAction/utils.js.map +1 -0
  211. package/dist/src/store/actions/proxyMutation.d.ts +5 -0
  212. package/dist/src/store/actions/proxyMutation.js +9 -0
  213. package/dist/src/store/actions/proxyMutation.js.map +1 -0
  214. package/dist/src/store/actions/removeCustomToken.d.ts +7 -0
  215. package/dist/src/store/actions/removeCustomToken.js +11 -0
  216. package/dist/src/store/actions/removeCustomToken.js.map +1 -0
  217. package/dist/src/store/actions/retrySwap.d.ts +5 -0
  218. package/dist/src/store/actions/retrySwap.js +23 -0
  219. package/dist/src/store/actions/retrySwap.js.map +1 -0
  220. package/dist/src/store/actions/sendNFTTransaction.d.ts +4 -0
  221. package/dist/src/store/actions/sendNFTTransaction.js +47 -0
  222. package/dist/src/store/actions/sendNFTTransaction.js.map +1 -0
  223. package/dist/src/store/actions/sendTransaction.d.ts +17 -0
  224. package/dist/src/store/actions/sendTransaction.js +51 -0
  225. package/dist/src/store/actions/sendTransaction.js.map +1 -0
  226. package/dist/src/store/actions/sendTransaction.test.d.ts +1 -0
  227. package/dist/src/store/actions/sendTransaction.test.js +80 -0
  228. package/dist/src/store/actions/sendTransaction.test.js.map +1 -0
  229. package/dist/src/store/actions/setEthereumInjectionChain.d.ts +5 -0
  230. package/dist/src/store/actions/setEthereumInjectionChain.js +11 -0
  231. package/dist/src/store/actions/setEthereumInjectionChain.js.map +1 -0
  232. package/dist/src/store/actions/setEthereumInjectionChain.test.d.ts +1 -0
  233. package/dist/src/store/actions/setEthereumInjectionChain.test.js +20 -0
  234. package/dist/src/store/actions/setEthereumInjectionChain.test.js.map +1 -0
  235. package/dist/src/store/actions/setWhatsNewModalVersion.d.ts +4 -0
  236. package/dist/src/store/actions/setWhatsNewModalVersion.js +10 -0
  237. package/dist/src/store/actions/setWhatsNewModalVersion.js.map +1 -0
  238. package/dist/src/store/actions/setWhatsNewModalVersion.test.d.ts +1 -0
  239. package/dist/src/store/actions/setWhatsNewModalVersion.test.js +24 -0
  240. package/dist/src/store/actions/setWhatsNewModalVersion.test.js.map +1 -0
  241. package/dist/src/store/actions/showNotification.d.ts +2 -0
  242. package/dist/src/store/actions/showNotification.js +10 -0
  243. package/dist/src/store/actions/showNotification.js.map +1 -0
  244. package/dist/src/store/actions/toggleExperiment.d.ts +5 -0
  245. package/dist/src/store/actions/toggleExperiment.js +10 -0
  246. package/dist/src/store/actions/toggleExperiment.js.map +1 -0
  247. package/dist/src/store/actions/toggleExperiment.test.d.ts +1 -0
  248. package/dist/src/store/actions/toggleExperiment.test.js +34 -0
  249. package/dist/src/store/actions/toggleExperiment.test.js.map +1 -0
  250. package/dist/src/store/actions/toggleNFTStarred.d.ts +8 -0
  251. package/dist/src/store/actions/toggleNFTStarred.js +10 -0
  252. package/dist/src/store/actions/toggleNFTStarred.js.map +1 -0
  253. package/dist/src/store/actions/unlockWallet.d.ts +4 -0
  254. package/dist/src/store/actions/unlockWallet.js +22 -0
  255. package/dist/src/store/actions/unlockWallet.js.map +1 -0
  256. package/dist/src/store/actions/updateAccountBalance.d.ts +7 -0
  257. package/dist/src/store/actions/updateAccountBalance.js +29 -0
  258. package/dist/src/store/actions/updateAccountBalance.js.map +1 -0
  259. package/dist/src/store/actions/updateBalances.d.ts +9 -0
  260. package/dist/src/store/actions/updateBalances.js +169 -0
  261. package/dist/src/store/actions/updateBalances.js.map +1 -0
  262. package/dist/src/store/actions/updateBalances.test.d.ts +1 -0
  263. package/dist/src/store/actions/updateBalances.test.js +43 -0
  264. package/dist/src/store/actions/updateBalances.test.js.map +1 -0
  265. package/dist/src/store/actions/updateCurrenciesInfo.d.ts +5 -0
  266. package/dist/src/store/actions/updateCurrenciesInfo.js +14 -0
  267. package/dist/src/store/actions/updateCurrenciesInfo.js.map +1 -0
  268. package/dist/src/store/actions/updateFees.d.ts +6 -0
  269. package/dist/src/store/actions/updateFees.js +16 -0
  270. package/dist/src/store/actions/updateFees.js.map +1 -0
  271. package/dist/src/store/actions/updateFees.test.d.ts +1 -0
  272. package/dist/src/store/actions/updateFees.test.js +86 -0
  273. package/dist/src/store/actions/updateFees.test.js.map +1 -0
  274. package/dist/src/store/actions/updateFiatRates.d.ts +5 -0
  275. package/dist/src/store/actions/updateFiatRates.js +15 -0
  276. package/dist/src/store/actions/updateFiatRates.js.map +1 -0
  277. package/dist/src/store/actions/updateFiatRates.test.d.ts +1 -0
  278. package/dist/src/store/actions/updateFiatRates.test.js +43 -0
  279. package/dist/src/store/actions/updateFiatRates.test.js.map +1 -0
  280. package/dist/src/store/actions/updateMarketData.d.ts +8 -0
  281. package/dist/src/store/actions/updateMarketData.js +28 -0
  282. package/dist/src/store/actions/updateMarketData.js.map +1 -0
  283. package/dist/src/store/actions/updateMarketData.test.d.ts +1 -0
  284. package/dist/src/store/actions/updateMarketData.test.js +49 -0
  285. package/dist/src/store/actions/updateMarketData.test.js.map +1 -0
  286. package/dist/src/store/actions/updateNFTs.d.ts +7 -0
  287. package/dist/src/store/actions/updateNFTs.js +39 -0
  288. package/dist/src/store/actions/updateNFTs.js.map +1 -0
  289. package/dist/src/store/actions/updateNFTs.test.d.ts +1 -0
  290. package/dist/src/store/actions/updateNFTs.test.js +32 -0
  291. package/dist/src/store/actions/updateNFTs.test.js.map +1 -0
  292. package/dist/src/store/actions/updateTransactionFee.d.ts +11 -0
  293. package/dist/src/store/actions/updateTransactionFee.js +81 -0
  294. package/dist/src/store/actions/updateTransactionFee.js.map +1 -0
  295. package/dist/src/store/broker/notification.d.ts +4 -0
  296. package/dist/src/store/broker/notification.js +84 -0
  297. package/dist/src/store/broker/notification.js.map +1 -0
  298. package/dist/src/store/getters.d.ts +59 -0
  299. package/dist/src/store/getters.js +350 -0
  300. package/dist/src/store/getters.js.map +1 -0
  301. package/dist/src/store/index.d.ts +3524 -0
  302. package/dist/src/store/index.js +24 -0
  303. package/dist/src/store/index.js.map +1 -0
  304. package/dist/src/store/migrations/10_analytics_settings.d.ts +4 -0
  305. package/dist/src/store/migrations/10_analytics_settings.js +19 -0
  306. package/dist/src/store/migrations/10_analytics_settings.js.map +1 -0
  307. package/dist/src/store/migrations/11_12_rsk_legacy_derivation_path.d.ts +8 -0
  308. package/dist/src/store/migrations/11_12_rsk_legacy_derivation_path.js +22 -0
  309. package/dist/src/store/migrations/11_12_rsk_legacy_derivation_path.js.map +1 -0
  310. package/dist/src/store/migrations/13_rsk_fish_token.d.ts +4 -0
  311. package/dist/src/store/migrations/13_rsk_fish_token.js +19 -0
  312. package/dist/src/store/migrations/13_rsk_fish_token.js.map +1 -0
  313. package/dist/src/store/migrations/14_account_set_derivation_path.d.ts +4 -0
  314. package/dist/src/store/migrations/14_account_set_derivation_path.js +56 -0
  315. package/dist/src/store/migrations/14_account_set_derivation_path.js.map +1 -0
  316. package/dist/src/store/migrations/15_accounts_chains_set_enabled.d.ts +4 -0
  317. package/dist/src/store/migrations/15_accounts_chains_set_enabled.js +25 -0
  318. package/dist/src/store/migrations/15_accounts_chains_set_enabled.js.map +1 -0
  319. package/dist/src/store/migrations/16_enable_terra_chain.d.ts +4 -0
  320. package/dist/src/store/migrations/16_enable_terra_chain.js +10 -0
  321. package/dist/src/store/migrations/16_enable_terra_chain.js.map +1 -0
  322. package/dist/src/store/migrations/17_remove_injection_enabled.d.ts +4 -0
  323. package/dist/src/store/migrations/17_remove_injection_enabled.js +12 -0
  324. package/dist/src/store/migrations/17_remove_injection_enabled.js.map +1 -0
  325. package/dist/src/store/migrations/18_enable_avalanche_chain.d.ts +4 -0
  326. package/dist/src/store/migrations/18_enable_avalanche_chain.js +10 -0
  327. package/dist/src/store/migrations/18_enable_avalanche_chain.js.map +1 -0
  328. package/dist/src/store/migrations/19_remove_existing_ledger_accounts.d.ts +4 -0
  329. package/dist/src/store/migrations/19_remove_existing_ledger_accounts.js +25 -0
  330. package/dist/src/store/migrations/19_remove_existing_ledger_accounts.js.map +1 -0
  331. package/dist/src/store/migrations/19_remove_existing_ledger_accounts.state.pre.json +1944 -0
  332. package/dist/src/store/migrations/19_remove_existing_ledger_accounts_test.d.ts +1 -0
  333. package/dist/src/store/migrations/19_remove_existing_ledger_accounts_test.js +7 -0
  334. package/dist/src/store/migrations/19_remove_existing_ledger_accounts_test.js.map +1 -0
  335. package/dist/src/store/migrations/1_first_migration.d.ts +4 -0
  336. package/dist/src/store/migrations/1_first_migration.js +11 -0
  337. package/dist/src/store/migrations/1_first_migration.js.map +1 -0
  338. package/dist/src/store/migrations/20_fix_accounts.d.ts +4 -0
  339. package/dist/src/store/migrations/20_fix_accounts.js +68 -0
  340. package/dist/src/store/migrations/20_fix_accounts.js.map +1 -0
  341. package/dist/src/store/migrations/21_enable_solana_chain.d.ts +4 -0
  342. package/dist/src/store/migrations/21_enable_solana_chain.js +10 -0
  343. package/dist/src/store/migrations/21_enable_solana_chain.js.map +1 -0
  344. package/dist/src/store/migrations/22_enable_optimism_chain.d.ts +4 -0
  345. package/dist/src/store/migrations/22_enable_optimism_chain.js +10 -0
  346. package/dist/src/store/migrations/22_enable_optimism_chain.js.map +1 -0
  347. package/dist/src/store/migrations/2_set_default_assets.d.ts +4 -0
  348. package/dist/src/store/migrations/2_set_default_assets.js +20 -0
  349. package/dist/src/store/migrations/2_set_default_assets.js.map +1 -0
  350. package/dist/src/store/migrations/3_add_network_custom_tokens.d.ts +4 -0
  351. package/dist/src/store/migrations/3_add_network_custom_tokens.js +21 -0
  352. package/dist/src/store/migrations/3_add_network_custom_tokens.js.map +1 -0
  353. package/dist/src/store/migrations/4_fix_rsk_token_injected_asset.d.ts +4 -0
  354. package/dist/src/store/migrations/4_fix_rsk_token_injected_asset.js +15 -0
  355. package/dist/src/store/migrations/4_fix_rsk_token_injected_asset.js.map +1 -0
  356. package/dist/src/store/migrations/5_multiple_account_support.d.ts +4 -0
  357. package/dist/src/store/migrations/5_multiple_account_support.js +96 -0
  358. package/dist/src/store/migrations/5_multiple_account_support.js.map +1 -0
  359. package/dist/src/store/migrations/6_use_ledger_live_default.d.ts +4 -0
  360. package/dist/src/store/migrations/6_use_ledger_live_default.js +11 -0
  361. package/dist/src/store/migrations/6_use_ledger_live_default.js.map +1 -0
  362. package/dist/src/store/migrations/7_multi_provider_swaps.d.ts +4 -0
  363. package/dist/src/store/migrations/7_multi_provider_swaps.js +27 -0
  364. package/dist/src/store/migrations/7_multi_provider_swaps.js.map +1 -0
  365. package/dist/src/store/migrations/8_remove_use_ledger_live.d.ts +4 -0
  366. package/dist/src/store/migrations/8_remove_use_ledger_live.js +12 -0
  367. package/dist/src/store/migrations/8_remove_use_ledger_live.js.map +1 -0
  368. package/dist/src/store/migrations/9_inject_ethereum_asset_chain.d.ts +4 -0
  369. package/dist/src/store/migrations/9_inject_ethereum_asset_chain.js +14 -0
  370. package/dist/src/store/migrations/9_inject_ethereum_asset_chain.js.map +1 -0
  371. package/dist/src/store/migrations/before_after_migration_script.test.d.ts +1 -0
  372. package/dist/src/store/migrations/before_after_migration_script.test.js +92 -0
  373. package/dist/src/store/migrations/before_after_migration_script.test.js.map +1 -0
  374. package/dist/src/store/migrations/enable_chain.d.ts +3 -0
  375. package/dist/src/store/migrations/enable_chain.js +71 -0
  376. package/dist/src/store/migrations/enable_chain.js.map +1 -0
  377. package/dist/src/store/migrations/index.d.ts +5 -0
  378. package/dist/src/store/migrations/index.js +78 -0
  379. package/dist/src/store/migrations/index.js.map +1 -0
  380. package/dist/src/store/migrations/migration_script.test.d.ts +1 -0
  381. package/dist/src/store/migrations/migration_script.test.js +59 -0
  382. package/dist/src/store/migrations/migration_script.test.js.map +1 -0
  383. package/dist/src/store/mutations.d.ts +209 -0
  384. package/dist/src/store/mutations.js +348 -0
  385. package/dist/src/store/mutations.js.map +1 -0
  386. package/dist/src/store/state.d.ts +3 -0
  387. package/dist/src/store/state.js +46 -0
  388. package/dist/src/store/state.js.map +1 -0
  389. package/dist/src/store/types.d.ts +249 -0
  390. package/dist/src/store/types.js +64 -0
  391. package/dist/src/store/types.js.map +1 -0
  392. package/dist/src/store/utils.d.ts +38 -0
  393. package/dist/src/store/utils.js +194 -0
  394. package/dist/src/store/utils.js.map +1 -0
  395. package/dist/src/swaps/EvmSwapProvider.d.ts +32 -0
  396. package/dist/src/swaps/EvmSwapProvider.js +118 -0
  397. package/dist/src/swaps/EvmSwapProvider.js.map +1 -0
  398. package/dist/src/swaps/SwapProvider.d.ts +35 -0
  399. package/dist/src/swaps/SwapProvider.js +89 -0
  400. package/dist/src/swaps/SwapProvider.js.map +1 -0
  401. package/dist/src/swaps/astroport/AstroportSwapProvider.d.ts +67 -0
  402. package/dist/src/swaps/astroport/AstroportSwapProvider.js +251 -0
  403. package/dist/src/swaps/astroport/AstroportSwapProvider.js.map +1 -0
  404. package/dist/src/swaps/astroport/info.json +7 -0
  405. package/dist/src/swaps/astroport/queries.d.ts +108 -0
  406. package/dist/src/swaps/astroport/queries.js +227 -0
  407. package/dist/src/swaps/astroport/queries.js.map +1 -0
  408. package/dist/src/swaps/debridge/DeBridgeSwapProvider.d.ts +98 -0
  409. package/dist/src/swaps/debridge/DeBridgeSwapProvider.js +553 -0
  410. package/dist/src/swaps/debridge/DeBridgeSwapProvider.js.map +1 -0
  411. package/dist/src/swaps/debridge/abi/DeBridgeGate.json +1958 -0
  412. package/dist/src/swaps/debridge/abi/SignatureVerifier.json +925 -0
  413. package/dist/src/swaps/debridge/info.json +13 -0
  414. package/dist/src/swaps/fastbtc/FastBTCDepositSwapProvider.d.ts +103 -0
  415. package/dist/src/swaps/fastbtc/FastBTCDepositSwapProvider.js +292 -0
  416. package/dist/src/swaps/fastbtc/FastBTCDepositSwapProvider.js.map +1 -0
  417. package/dist/src/swaps/fastbtc/FastBTCWithdrawSwapProvider.d.ts +108 -0
  418. package/dist/src/swaps/fastbtc/FastBTCWithdrawSwapProvider.js +306 -0
  419. package/dist/src/swaps/fastbtc/FastBTCWithdrawSwapProvider.js.map +1 -0
  420. package/dist/src/swaps/fastbtc/fastBtcBridgeContract.d.ts +19 -0
  421. package/dist/src/swaps/fastbtc/fastBtcBridgeContract.js +24 -0
  422. package/dist/src/swaps/fastbtc/fastBtcBridgeContract.js.map +1 -0
  423. package/dist/src/swaps/fastbtc/info.json +7 -0
  424. package/dist/src/swaps/hop/HopSwapProvider.d.ts +124 -0
  425. package/dist/src/swaps/hop/HopSwapProvider.js +479 -0
  426. package/dist/src/swaps/hop/HopSwapProvider.js.map +1 -0
  427. package/dist/src/swaps/hop/info.json +12 -0
  428. package/dist/src/swaps/hop/queries.d.ts +2 -0
  429. package/dist/src/swaps/hop/queries.js +61 -0
  430. package/dist/src/swaps/hop/queries.js.map +1 -0
  431. package/dist/src/swaps/jupiter/JupiterSwapProvider.d.ts +46 -0
  432. package/dist/src/swaps/jupiter/JupiterSwapProvider.js +189 -0
  433. package/dist/src/swaps/jupiter/JupiterSwapProvider.js.map +1 -0
  434. package/dist/src/swaps/jupiter/info.json +7 -0
  435. package/dist/src/swaps/lifi/LifiSwapProvider.d.ts +76 -0
  436. package/dist/src/swaps/lifi/LifiSwapProvider.js +313 -0
  437. package/dist/src/swaps/lifi/LifiSwapProvider.js.map +1 -0
  438. package/dist/src/swaps/lifi/info.json +7 -0
  439. package/dist/src/swaps/liquality/LiqualitySwapProvider.d.ts +104 -0
  440. package/dist/src/swaps/liquality/LiqualitySwapProvider.js +704 -0
  441. package/dist/src/swaps/liquality/LiqualitySwapProvider.js.map +1 -0
  442. package/dist/src/swaps/liquality/info.json +7 -0
  443. package/dist/src/swaps/liqualityboost/liqualityBoostERC20toNative/LiqualityBoostERC20toNative.d.ts +124 -0
  444. package/dist/src/swaps/liqualityboost/liqualityBoostERC20toNative/LiqualityBoostERC20toNative.js +239 -0
  445. package/dist/src/swaps/liqualityboost/liqualityBoostERC20toNative/LiqualityBoostERC20toNative.js.map +1 -0
  446. package/dist/src/swaps/liqualityboost/liqualityBoostERC20toNative/info.json +7 -0
  447. package/dist/src/swaps/liqualityboost/liqualityBoostNativeToERC20/LiqualityBoostNativeToERC20.d.ts +52 -0
  448. package/dist/src/swaps/liqualityboost/liqualityBoostNativeToERC20/LiqualityBoostNativeToERC20.js +213 -0
  449. package/dist/src/swaps/liqualityboost/liqualityBoostNativeToERC20/LiqualityBoostNativeToERC20.js.map +1 -0
  450. package/dist/src/swaps/liqualityboost/liqualityBoostNativeToERC20/info.json +7 -0
  451. package/dist/src/swaps/liqualityboost/types.d.ts +17 -0
  452. package/dist/src/swaps/liqualityboost/types.js +3 -0
  453. package/dist/src/swaps/liqualityboost/types.js.map +1 -0
  454. package/dist/src/swaps/oneinch/OneinchSwapProvider.d.ts +86 -0
  455. package/dist/src/swaps/oneinch/OneinchSwapProvider.js +369 -0
  456. package/dist/src/swaps/oneinch/OneinchSwapProvider.js.map +1 -0
  457. package/dist/src/swaps/oneinch/info.json +13 -0
  458. package/dist/src/swaps/sovryn/SovrynSwapProvider.d.ts +110 -0
  459. package/dist/src/swaps/sovryn/SovrynSwapProvider.js +369 -0
  460. package/dist/src/swaps/sovryn/SovrynSwapProvider.js.map +1 -0
  461. package/dist/src/swaps/sovryn/info.json +7 -0
  462. package/dist/src/swaps/teleswap/TeleSwapSwapProvider.d.ts +167 -0
  463. package/dist/src/swaps/teleswap/TeleSwapSwapProvider.js +874 -0
  464. package/dist/src/swaps/teleswap/TeleSwapSwapProvider.js.map +1 -0
  465. package/dist/src/swaps/teleswap/info.json +7 -0
  466. package/dist/src/swaps/thorchain/ThorchainSwapProvider.d.ts +194 -0
  467. package/dist/src/swaps/thorchain/ThorchainSwapProvider.js +534 -0
  468. package/dist/src/swaps/thorchain/ThorchainSwapProvider.js.map +1 -0
  469. package/dist/src/swaps/thorchain/info.json +7 -0
  470. package/dist/src/swaps/types.d.ts +87 -0
  471. package/dist/src/swaps/types.js +9 -0
  472. package/dist/src/swaps/types.js.map +1 -0
  473. package/dist/src/swaps/uniswap/UniswapSwapProvider.d.ts +117 -0
  474. package/dist/src/swaps/uniswap/UniswapSwapProvider.js +438 -0
  475. package/dist/src/swaps/uniswap/UniswapSwapProvider.js.map +1 -0
  476. package/dist/src/swaps/uniswap/info.json +7 -0
  477. package/dist/src/swaps/utils.d.ts +92 -0
  478. package/dist/src/swaps/utils.js +57 -0
  479. package/dist/src/swaps/utils.js.map +1 -0
  480. package/dist/src/tsconfig.json +30 -0
  481. package/dist/src/types.d.ts +29 -0
  482. package/dist/src/types.js +3 -0
  483. package/dist/src/types.js.map +1 -0
  484. package/dist/src/utils/accounts.d.ts +16 -0
  485. package/dist/src/utils/accounts.js +89 -0
  486. package/dist/src/utils/accounts.js.map +1 -0
  487. package/dist/src/utils/address.d.ts +8 -0
  488. package/dist/src/utils/address.js +17 -0
  489. package/dist/src/utils/address.js.map +1 -0
  490. package/dist/src/utils/address.test.d.ts +1 -0
  491. package/dist/src/utils/address.test.js +12 -0
  492. package/dist/src/utils/address.test.js.map +1 -0
  493. package/dist/src/utils/asset.d.ts +22 -0
  494. package/dist/src/utils/asset.js +198 -0
  495. package/dist/src/utils/asset.js.map +1 -0
  496. package/dist/src/utils/asset.test.d.ts +1 -0
  497. package/dist/src/utils/asset.test.js +42 -0
  498. package/dist/src/utils/asset.test.js.map +1 -0
  499. package/dist/src/utils/chainify.d.ts +3 -0
  500. package/dist/src/utils/chainify.js +41 -0
  501. package/dist/src/utils/chainify.js.map +1 -0
  502. package/dist/src/utils/coinFormatter.d.ts +13 -0
  503. package/dist/src/utils/coinFormatter.js +58 -0
  504. package/dist/src/utils/coinFormatter.js.map +1 -0
  505. package/dist/src/utils/crypto.d.ts +6 -0
  506. package/dist/src/utils/crypto.js +70 -0
  507. package/dist/src/utils/crypto.js.map +1 -0
  508. package/dist/src/utils/cryptoassets.d.ts +5 -0
  509. package/dist/src/utils/cryptoassets.js +26 -0
  510. package/dist/src/utils/cryptoassets.js.map +1 -0
  511. package/dist/src/utils/derivationPath.d.ts +6 -0
  512. package/dist/src/utils/derivationPath.js +75 -0
  513. package/dist/src/utils/derivationPath.js.map +1 -0
  514. package/dist/src/utils/derivationPath.spec.d.ts +1 -0
  515. package/dist/src/utils/derivationPath.spec.js +37 -0
  516. package/dist/src/utils/derivationPath.spec.js.map +1 -0
  517. package/dist/src/utils/export.d.ts +5 -0
  518. package/dist/src/utils/export.js +24 -0
  519. package/dist/src/utils/export.js.map +1 -0
  520. package/dist/src/utils/fees.d.ts +43 -0
  521. package/dist/src/utils/fees.js +222 -0
  522. package/dist/src/utils/fees.js.map +1 -0
  523. package/dist/src/utils/fees.test.d.ts +1 -0
  524. package/dist/src/utils/fees.test.js +40 -0
  525. package/dist/src/utils/fees.test.js.map +1 -0
  526. package/dist/src/utils/fetchTokenDetails.d.ts +1 -0
  527. package/dist/src/utils/fetchTokenDetails.js +19 -0
  528. package/dist/src/utils/fetchTokenDetails.js.map +1 -0
  529. package/dist/src/utils/history.d.ts +66 -0
  530. package/dist/src/utils/history.js +135 -0
  531. package/dist/src/utils/history.js.map +1 -0
  532. package/dist/src/utils/isTransactionNotFoundError.d.ts +1 -0
  533. package/dist/src/utils/isTransactionNotFoundError.js +16 -0
  534. package/dist/src/utils/isTransactionNotFoundError.js.map +1 -0
  535. package/dist/src/utils/ledger.d.ts +12 -0
  536. package/dist/src/utils/ledger.js +38 -0
  537. package/dist/src/utils/ledger.js.map +1 -0
  538. package/dist/src/utils/moment.d.ts +2 -0
  539. package/dist/src/utils/moment.js +8 -0
  540. package/dist/src/utils/moment.js.map +1 -0
  541. package/dist/src/utils/networks.d.ts +10 -0
  542. package/dist/src/utils/networks.js +43 -0
  543. package/dist/src/utils/networks.js.map +1 -0
  544. package/dist/src/utils/parseTokenTx.d.ts +2 -0
  545. package/dist/src/utils/parseTokenTx.js +10 -0
  546. package/dist/src/utils/parseTokenTx.js.map +1 -0
  547. package/dist/src/utils/quotes.d.ts +5 -0
  548. package/dist/src/utils/quotes.js +20 -0
  549. package/dist/src/utils/quotes.js.map +1 -0
  550. package/dist/src/utils/quotes.test.d.ts +1 -0
  551. package/dist/src/utils/quotes.test.js +85 -0
  552. package/dist/src/utils/quotes.test.js.map +1 -0
  553. package/dist/src/utils/timeline.d.ts +71 -0
  554. package/dist/src/utils/timeline.js +176 -0
  555. package/dist/src/utils/timeline.js.map +1 -0
  556. package/dist/src/walletOptions/defaultOptions.d.ts +3 -0
  557. package/dist/src/walletOptions/defaultOptions.js +36 -0
  558. package/dist/src/walletOptions/defaultOptions.js.map +1 -0
  559. package/dist/src/walletOptions/index.d.ts +7 -0
  560. package/dist/src/walletOptions/index.js +11 -0
  561. package/dist/src/walletOptions/index.js.map +1 -0
  562. package/dist/tsconfig.tsbuildinfo +1 -0
  563. package/package.json +76 -0
@@ -0,0 +1,189 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.JupiterSwapProvider = void 0;
4
+ const tslib_1 = require("tslib");
5
+ const types_1 = require("@yaswap/types");
6
+ const cryptoassets_1 = require("@yaswap/cryptoassets");
7
+ const isTransactionNotFoundError_1 = require("../../utils/isTransactionNotFoundError");
8
+ const web3_js_1 = require("@solana/web3.js");
9
+ const axios_1 = tslib_1.__importDefault(require("axios"));
10
+ const bignumber_js_1 = tslib_1.__importStar(require("bignumber.js"));
11
+ const uuid_1 = require("uuid");
12
+ const utils_1 = require("../../store/actions/performNextAction/utils");
13
+ const coinFormatter_1 = require("../../utils/coinFormatter");
14
+ const cryptoassets_2 = tslib_1.__importDefault(require("../../utils/cryptoassets"));
15
+ const SwapProvider_1 = require("../SwapProvider");
16
+ const error_parser_1 = require("@yaswap/error-parser");
17
+ const SOL_MINT_ADDRESS = 'So11111111111111111111111111111111111111112';
18
+ class JupiterSwapProvider extends SwapProvider_1.SwapProvider {
19
+ _getStatuses() {
20
+ return {
21
+ WAITING_FOR_SWAP_CONFIRMATIONS: {
22
+ step: 0,
23
+ label: 'Swapping {from}',
24
+ filterStatus: 'PENDING',
25
+ notification() {
26
+ return { message: 'Engaging Astroport' };
27
+ },
28
+ },
29
+ SUCCESS: {
30
+ step: 1,
31
+ label: 'Completed',
32
+ filterStatus: 'COMPLETED',
33
+ notification(swap) {
34
+ return {
35
+ message: `Swap completed, ${(0, coinFormatter_1.prettyBalance)(new bignumber_js_1.BigNumber(swap.toAmount), swap.to)} ${swap.to} ready to use`,
36
+ };
37
+ },
38
+ },
39
+ FAILED: {
40
+ step: 1,
41
+ label: 'Swap Failed',
42
+ filterStatus: 'REFUNDED',
43
+ notification() {
44
+ return { message: 'Swap failed' };
45
+ },
46
+ },
47
+ };
48
+ }
49
+ _txTypes() {
50
+ return {
51
+ SWAP: 'SWAP',
52
+ };
53
+ }
54
+ _fromTxType() {
55
+ return this._txTypes().SWAP;
56
+ }
57
+ _toTxType() {
58
+ return null;
59
+ }
60
+ _totalSteps() {
61
+ return 2;
62
+ }
63
+ _timelineDiagramSteps() {
64
+ return ['SWAP'];
65
+ }
66
+ getSupportedPairs() {
67
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
68
+ return [];
69
+ });
70
+ }
71
+ getQuote(quoteRequest) {
72
+ var _a;
73
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
74
+ const { from, to, amount } = quoteRequest;
75
+ const fromInfo = cryptoassets_2.default[from];
76
+ const toInfo = cryptoassets_2.default[to];
77
+ if (fromInfo.chain !== cryptoassets_1.ChainId.Solana || toInfo.chain !== cryptoassets_1.ChainId.Solana || amount.lt(0)) {
78
+ return null;
79
+ }
80
+ const fromAddress = fromInfo.contractAddress || SOL_MINT_ADDRESS;
81
+ const toAddress = toInfo.contractAddress || SOL_MINT_ADDRESS;
82
+ const fromAmountInUnit = (0, cryptoassets_1.currencyToUnit)(fromInfo, new bignumber_js_1.default(amount)).toFixed();
83
+ const { data } = yield axios_1.default.get(`https://quote-api.jup.ag/v1/quote?inputMint=${fromAddress}&outputMint=${toAddress}&amount=${fromAmountInUnit}&slippage=0.5&`);
84
+ if (!((_a = data.data) === null || _a === void 0 ? void 0 : _a[0])) {
85
+ return null;
86
+ }
87
+ const info = data.data[0];
88
+ return {
89
+ from,
90
+ to,
91
+ fromAmount: fromAmountInUnit.toString(),
92
+ toAmount: info.outAmount.toString(),
93
+ info: Object.assign(Object.assign({}, info), { toAddress }),
94
+ };
95
+ });
96
+ }
97
+ newSwap(quoteInput) {
98
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
99
+ const { network, walletId, quote } = quoteInput;
100
+ const client = this.getClient(network, walletId, quote.from, quote.fromAccountId);
101
+ const connection = client.chain.getProvider();
102
+ const [{ address }] = yield client.wallet.getAddresses();
103
+ const transactions = yield this._getTransactions(quote.info, address);
104
+ let swapTx;
105
+ const txTypes = Object.keys(transactions);
106
+ for (let i = 0; i < txTypes.length; i++) {
107
+ const tx = web3_js_1.Transaction.from(Buffer.from(transactions[txTypes[i]], 'base64'));
108
+ if (txTypes[i] === 'swapTransaction') {
109
+ swapTx = yield client.wallet.sendTransaction({ transaction: tx, value: new bignumber_js_1.default(quote.fromAmount) });
110
+ yield connection.confirmTransaction(swapTx.hash);
111
+ }
112
+ else {
113
+ const transaction = yield client.wallet.sendTransaction({ transaction: tx, value: new bignumber_js_1.default(0) });
114
+ yield connection.confirmTransaction(transaction.hash);
115
+ }
116
+ }
117
+ const updates = {
118
+ status: 'WAITING_FOR_SWAP_CONFIRMATIONS',
119
+ swapTx,
120
+ swapTxHash: swapTx === null || swapTx === void 0 ? void 0 : swapTx.hash,
121
+ };
122
+ return Object.assign({ id: (0, uuid_1.v4)(), fee: quote.fee, slippage: 50 }, updates);
123
+ });
124
+ }
125
+ estimateFees({ txType, feePrices, asset, network, }) {
126
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
127
+ if (txType != this.fromTxType) {
128
+ throw (0, error_parser_1.createInternalError)(error_parser_1.CUSTOM_ERRORS.Invalid.TransactionType(txType));
129
+ }
130
+ const nativeAsset = (0, cryptoassets_1.getNativeAssetCode)(network, cryptoassets_2.default[asset].chain);
131
+ const gasLimit = 1000000000;
132
+ const fees = {};
133
+ for (const feePrice of feePrices) {
134
+ const fee = new bignumber_js_1.default(gasLimit).times(feePrice);
135
+ fees[feePrice] = new bignumber_js_1.default((0, cryptoassets_1.unitToCurrency)(cryptoassets_2.default[nativeAsset], fee).toFixed());
136
+ }
137
+ return fees;
138
+ });
139
+ }
140
+ getExtraAmountToExtractFromBalance() {
141
+ return 33333333;
142
+ }
143
+ performNextSwapAction(_store, { network, walletId, swap }) {
144
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
145
+ if (swap.status === 'WAITING_FOR_SWAP_CONFIRMATIONS') {
146
+ return (0, utils_1.withInterval)(() => tslib_1.__awaiter(this, void 0, void 0, function* () { return this.waitForSwapConfirmations({ swap, network, walletId }); }));
147
+ }
148
+ });
149
+ }
150
+ getMin(_quoteRequest) {
151
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
152
+ return new bignumber_js_1.default(0);
153
+ });
154
+ }
155
+ waitForSwapConfirmations({ swap, network, walletId }) {
156
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
157
+ const client = this.getClient(network, walletId, swap.from, swap.fromAccountId);
158
+ try {
159
+ const tx = yield client.chain.getTransactionByHash(swap.swapTxHash);
160
+ if (tx && tx.confirmations && tx.confirmations > 0) {
161
+ const { status } = tx;
162
+ this.updateBalances(network, walletId, [swap.from]);
163
+ return {
164
+ endTime: Date.now(),
165
+ status: status === types_1.TxStatus.Success ? 'SUCCESS' : 'FAILED',
166
+ };
167
+ }
168
+ }
169
+ catch (e) {
170
+ if ((0, isTransactionNotFoundError_1.isTransactionNotFoundError)(e))
171
+ console.warn(e);
172
+ else
173
+ throw e;
174
+ }
175
+ });
176
+ }
177
+ _getTransactions(route, userPublicKey) {
178
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
179
+ const { data: transactions } = yield axios_1.default.post('https://quote-api.jup.ag/v1/swap', {
180
+ route,
181
+ userPublicKey,
182
+ wrapUnwrapSOL: true,
183
+ });
184
+ return transactions;
185
+ });
186
+ }
187
+ }
188
+ exports.JupiterSwapProvider = JupiterSwapProvider;
189
+ //# sourceMappingURL=JupiterSwapProvider.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"JupiterSwapProvider.js","sourceRoot":"","sources":["../../../../src/swaps/jupiter/JupiterSwapProvider.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,7 @@
1
+ {
2
+ "title": "Jupiter AMM Swaps",
3
+ "description": "Decentralized, permissionless and open-source, Jupiter marketplace is a public good governed by its community of token holders",
4
+ "pros": ["Low liquidity provider fee", "Margin Trading"],
5
+ "cons": ["Slippage"],
6
+ "fees": ["0.15% liquidity provider fee", "Slippage (up to 0.5% in Liquality)"]
7
+ }
@@ -0,0 +1,76 @@
1
+ import { EvmTypes } from '@yaswap/evm';
2
+ import { Transaction } from '@yaswap/types';
3
+ import { Order, Step } from '@lifi/sdk';
4
+ import BN from 'bignumber.js';
5
+ import { ActionContext } from '../../store';
6
+ import { EvmSwapHistoryItem, EvmSwapProvider, EvmSwapProviderConfig } from '../EvmSwapProvider';
7
+ import { EstimateFeeRequest, EstimateFeeResponse, NextSwapActionRequest, QuoteRequest, SwapRequest, SwapStatus } from '../types';
8
+ export interface LifiSwapProviderConfig extends EvmSwapProviderConfig {
9
+ apiURL: string;
10
+ slippage?: number;
11
+ order?: Order;
12
+ }
13
+ export interface LifiSwapHistoryItem extends EvmSwapHistoryItem {
14
+ fromFundHash: string;
15
+ fromFundTx: Transaction<EvmTypes.EthersTransactionResponse>;
16
+ }
17
+ export { Action as LifiToolAction, QuoteRequest as LifiQuoteRequest } from '@lifi/sdk';
18
+ declare class LifiSwapProvider extends EvmSwapProvider {
19
+ readonly config: LifiSwapProviderConfig;
20
+ readonly nativeAssetAddress = "0x0000000000000000000000000000000000000000";
21
+ private readonly _lifiClient;
22
+ private readonly _httpClient;
23
+ constructor(config: LifiSwapProviderConfig);
24
+ getSupportedPairs(): Promise<never[]>;
25
+ getQuote({ network, from, to, amount, fromAccountId, toAccountId, walletId }: QuoteRequest): Promise<{
26
+ from: string;
27
+ to: string;
28
+ fromAmount: string;
29
+ toAmount: string;
30
+ lifiRoute: Step;
31
+ } | null>;
32
+ newSwap(swap: SwapRequest<LifiSwapHistoryItem>): Promise<{
33
+ status: string;
34
+ approveTx: Transaction<any>;
35
+ approveTxHash: string;
36
+ id: string;
37
+ } | {
38
+ status: string;
39
+ approveTx?: undefined;
40
+ approveTxHash?: undefined;
41
+ id: string;
42
+ } | {
43
+ status: string;
44
+ fromFundTx: Transaction<any>;
45
+ fromFundHash: string;
46
+ id: string;
47
+ }>;
48
+ private initiateSwap;
49
+ estimateFees(feeRequest: EstimateFeeRequest<string, LifiSwapHistoryItem>): Promise<EstimateFeeResponse | null>;
50
+ getMin(_quoteRequest: QuoteRequest): Promise<BN>;
51
+ private getCrossChainSwapStatus;
52
+ private getChainNameByChainID;
53
+ private isCrossSwap;
54
+ private getRoute;
55
+ waitForInitiationConfirmations({ swap, network, walletId }: NextSwapActionRequest<LifiSwapHistoryItem>): Promise<{
56
+ endTime: number;
57
+ status: string;
58
+ } | undefined>;
59
+ waitForReceiveConfirmations({ swap, network, walletId }: NextSwapActionRequest<LifiSwapHistoryItem>): Promise<{
60
+ endTime: number;
61
+ status: string;
62
+ } | undefined>;
63
+ performNextSwapAction(store: ActionContext, { network, walletId, swap }: NextSwapActionRequest<LifiSwapHistoryItem>): Promise<Partial<{
64
+ endTime: number;
65
+ status: string;
66
+ }> | undefined>;
67
+ protected _getStatuses(): Record<string, SwapStatus>;
68
+ protected _txTypes(): {
69
+ SWAP: string;
70
+ };
71
+ protected _fromTxType(): string | null;
72
+ protected _toTxType(): string | null;
73
+ protected _timelineDiagramSteps(): string[];
74
+ protected _totalSteps(): number;
75
+ }
76
+ export { LifiSwapProvider };
@@ -0,0 +1,313 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.LifiSwapProvider = void 0;
4
+ const tslib_1 = require("tslib");
5
+ const client_1 = require("@yaswap/client");
6
+ const types_1 = require("@yaswap/types");
7
+ const sdk_1 = tslib_1.__importStar(require("@lifi/sdk"));
8
+ const cryptoassets_1 = require("@yaswap/cryptoassets");
9
+ const error_parser_1 = require("@yaswap/error-parser");
10
+ const bignumber_js_1 = tslib_1.__importDefault(require("bignumber.js"));
11
+ const ethers_1 = require("ethers");
12
+ const uuid_1 = require("uuid");
13
+ const utils_1 = require("../../store/actions/performNextAction/utils");
14
+ const coinFormatter_1 = require("../../utils/coinFormatter");
15
+ const cryptoassets_2 = tslib_1.__importDefault(require("../../utils/cryptoassets"));
16
+ const EvmSwapProvider_1 = require("../EvmSwapProvider");
17
+ class LifiSwapProvider extends EvmSwapProvider_1.EvmSwapProvider {
18
+ constructor(config) {
19
+ var _a, _b;
20
+ super(config);
21
+ this.nativeAssetAddress = ethers_1.ethers.constants.AddressZero;
22
+ const lifiConfig = {
23
+ defaultRouteOptions: {
24
+ slippage: (_a = config.slippage) !== null && _a !== void 0 ? _a : 0.05,
25
+ order: (_b = config.order) !== null && _b !== void 0 ? _b : sdk_1.Orders[0],
26
+ integrator: 'Liquality Wallet',
27
+ bridges: {
28
+ deny: ['connext'],
29
+ },
30
+ },
31
+ };
32
+ this._httpClient = new client_1.HttpClient({ baseURL: this.config.apiURL });
33
+ this._lifiClient = new sdk_1.default(lifiConfig);
34
+ }
35
+ getSupportedPairs() {
36
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
37
+ return [];
38
+ });
39
+ }
40
+ getQuote({ network, from, to, amount, fromAccountId, toAccountId, walletId }) {
41
+ var _a, _b, _c;
42
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
43
+ const fromInfo = cryptoassets_2.default[from];
44
+ const toInfo = cryptoassets_2.default[to];
45
+ const fromAmountInUnit = (0, cryptoassets_1.currencyToUnit)(fromInfo, new bignumber_js_1.default(amount)).toString(10);
46
+ const fromChainId = (0, cryptoassets_1.getChain)(network, fromInfo.chain).network.chainId;
47
+ const toChainId = (0, cryptoassets_1.getChain)(network, toInfo.chain).network.chainId;
48
+ const fromAddressRaw = yield this.getSwapAddress(network, walletId, from, fromAccountId);
49
+ const toAddressRaw = yield this.getSwapAddress(network, walletId, to, toAccountId);
50
+ const quoteRequest = {
51
+ fromChain: fromChainId,
52
+ fromAmount: fromAmountInUnit,
53
+ fromToken: (_a = fromInfo.contractAddress) !== null && _a !== void 0 ? _a : this.nativeAssetAddress,
54
+ toChain: toChainId,
55
+ toToken: (_b = toInfo.contractAddress) !== null && _b !== void 0 ? _b : this.nativeAssetAddress,
56
+ fromAddress: (0, cryptoassets_1.getChain)(network, fromInfo.chain).formatAddress(fromAddressRaw),
57
+ toAddress: (0, cryptoassets_1.getChain)(network, toInfo.chain).formatAddress(toAddressRaw),
58
+ order: this._lifiClient.getConfig().defaultRouteOptions.order,
59
+ slippage: this._lifiClient.getConfig().defaultRouteOptions.slippage,
60
+ integrator: this._lifiClient.getConfig().defaultRouteOptions.integrator,
61
+ denyBridges: (_c = this._lifiClient.getConfig().defaultRouteOptions.bridges) === null || _c === void 0 ? void 0 : _c.deny,
62
+ };
63
+ try {
64
+ const parser = (0, error_parser_1.getErrorParser)(error_parser_1.LifiQuoteErrorParser);
65
+ const lifiRoute = (yield parser.wrapAsync(() => tslib_1.__awaiter(this, void 0, void 0, function* () { return yield this._lifiClient.getQuote(quoteRequest); }), {
66
+ fromToken: quoteRequest.fromToken,
67
+ toToken: quoteRequest.toToken,
68
+ fromAmount: quoteRequest.fromAmount,
69
+ }));
70
+ return { from, to, fromAmount: fromAmountInUnit, toAmount: lifiRoute.estimate.toAmount, lifiRoute };
71
+ }
72
+ catch (e) {
73
+ return null;
74
+ }
75
+ });
76
+ }
77
+ newSwap(swap) {
78
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
79
+ const route = this.getRoute(swap.quote);
80
+ const approvalAddress = route.estimate.approvalAddress;
81
+ const approveTx = yield this.approve(swap, false, approvalAddress);
82
+ let updates;
83
+ if (approveTx) {
84
+ updates = approveTx;
85
+ }
86
+ else {
87
+ updates = yield this.initiateSwap(swap);
88
+ }
89
+ return Object.assign({ id: (0, uuid_1.v4)() }, updates);
90
+ });
91
+ }
92
+ initiateSwap({ network, walletId, quote }) {
93
+ const _super = Object.create(null, {
94
+ getClient: { get: () => super.getClient }
95
+ });
96
+ var _a;
97
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
98
+ const route = this.getRoute(quote);
99
+ const client = _super.getClient.call(this, network, walletId, quote.from, quote.fromAccountId);
100
+ const txData = route.transactionRequest;
101
+ let gasLimit = txData.gasLimit;
102
+ const chainName = (_a = cryptoassets_2.default[quote.from]) === null || _a === void 0 ? void 0 : _a.chain;
103
+ if (chainName === cryptoassets_1.ChainId.Arbitrum && (0, bignumber_js_1.default)(gasLimit || 0).lt(9000000)) {
104
+ gasLimit = 9000000;
105
+ }
106
+ const fromFundTx = yield client.wallet.sendTransaction({
107
+ data: txData.data,
108
+ to: txData.to,
109
+ value: txData.value,
110
+ gasLimit,
111
+ fee: quote.fee,
112
+ });
113
+ return {
114
+ status: 'WAITING_FOR_INITIATION_CONFIRMATIONS',
115
+ fromFundTx,
116
+ fromFundHash: fromFundTx.hash,
117
+ };
118
+ });
119
+ }
120
+ estimateFees(feeRequest) {
121
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
122
+ const route = this.getRoute(feeRequest.quote);
123
+ if (feeRequest.txType in this._txTypes()) {
124
+ const fees = {};
125
+ const client = this.getClient(feeRequest.network, feeRequest.walletId, feeRequest.quote.from, feeRequest.quote.fromAccountId);
126
+ const approvalData = yield this.buildApprovalTx(feeRequest, false, route.estimate.approvalAddress);
127
+ let approvalGas = 0;
128
+ if (approvalData) {
129
+ approvalGas = (yield client.chain.getProvider().estimateGas(Object.assign(Object.assign({}, approvalData), { fee: feeRequest.quote.fee }))).toNumber();
130
+ }
131
+ const txData = route.transactionRequest;
132
+ let txGas = 0;
133
+ try {
134
+ txGas = (yield client.chain.getProvider().estimateGas({
135
+ data: txData === null || txData === void 0 ? void 0 : txData.data,
136
+ to: txData === null || txData === void 0 ? void 0 : txData.to,
137
+ from: txData === null || txData === void 0 ? void 0 : txData.from,
138
+ value: txData === null || txData === void 0 ? void 0 : txData.value,
139
+ fee: feeRequest.quote.fee,
140
+ })).toNumber();
141
+ }
142
+ catch (_a) {
143
+ txGas = txData === null || txData === void 0 ? void 0 : txData.gasLimit;
144
+ }
145
+ const nativeAsset = (0, cryptoassets_1.getChain)(feeRequest.network, cryptoassets_2.default[feeRequest.quote.from].chain).nativeAsset[0];
146
+ for (const feePrice of feeRequest.feePrices) {
147
+ const gasPrice = new bignumber_js_1.default(feePrice).times(1e9);
148
+ const fee = new bignumber_js_1.default(approvalGas).plus(txGas).times(1.1).times(gasPrice);
149
+ fees[feePrice] = (0, cryptoassets_1.unitToCurrency)(nativeAsset, fee);
150
+ }
151
+ return fees;
152
+ }
153
+ return null;
154
+ });
155
+ }
156
+ getMin(_quoteRequest) {
157
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
158
+ return new bignumber_js_1.default(0);
159
+ });
160
+ }
161
+ getCrossChainSwapStatus(quote) {
162
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
163
+ const route = this.getRoute(quote);
164
+ const result = yield this._httpClient.nodeGet('/status', {
165
+ bridge: route.tool,
166
+ fromChain: this.getChainNameByChainID(route.action.fromChainId),
167
+ toChain: this.getChainNameByChainID(route.action.toChainId),
168
+ txHash: quote.fromFundHash,
169
+ });
170
+ return result;
171
+ });
172
+ }
173
+ getChainNameByChainID(id) {
174
+ const indexOfChainId = Object.values(sdk_1.ChainId).indexOf(id);
175
+ return Object.keys(sdk_1.ChainId)[indexOfChainId];
176
+ }
177
+ isCrossSwap(swap) {
178
+ const route = this.getRoute(swap);
179
+ switch (route.type) {
180
+ case 'swap':
181
+ return false;
182
+ case 'cross':
183
+ return true;
184
+ case 'lifi':
185
+ return route.includedSteps.reduce((acc, action) => action.type === 'cross' || acc, false);
186
+ }
187
+ }
188
+ getRoute(quote) {
189
+ if (!quote.lifiRoute) {
190
+ throw new Error(`LiFiSwapProvider: best route doesn't exist`);
191
+ }
192
+ return quote.lifiRoute;
193
+ }
194
+ waitForInitiationConfirmations({ swap, network, walletId }) {
195
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
196
+ const client = this.getClient(network, walletId, swap.from, swap.fromAccountId);
197
+ try {
198
+ const tx = yield client.chain.getTransactionByHash(swap.fromFundHash);
199
+ if (tx && tx.confirmations && tx.confirmations > 0) {
200
+ const { status } = tx;
201
+ this.updateBalances(network, walletId, [swap.fromAccountId]);
202
+ if (status === types_1.TxStatus.Success && this.isCrossSwap(swap)) {
203
+ return {
204
+ endTime: Date.now(),
205
+ status: 'WAITING_FOR_RECEIVE_CONFIRMATIONS',
206
+ };
207
+ }
208
+ return {
209
+ endTime: Date.now(),
210
+ status: status === types_1.TxStatus.Success ? 'SUCCESS' : 'FAILED',
211
+ };
212
+ }
213
+ }
214
+ catch (e) {
215
+ if (e.name === 'TxNotFoundError') {
216
+ console.warn(e);
217
+ }
218
+ else {
219
+ throw e;
220
+ }
221
+ }
222
+ });
223
+ }
224
+ waitForReceiveConfirmations({ swap, network, walletId }) {
225
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
226
+ try {
227
+ const result = yield this.getCrossChainSwapStatus(swap);
228
+ if (result.status === 'DONE' || result.status === 'FAILED') {
229
+ this.updateBalances(network, walletId, [swap.toAccountId]);
230
+ return {
231
+ endTime: Date.now(),
232
+ status: result.status === 'DONE' ? 'SUCCESS' : 'FAILED',
233
+ };
234
+ }
235
+ }
236
+ catch (e) {
237
+ console.warn('LifiSwapProvider: ', e);
238
+ }
239
+ });
240
+ }
241
+ performNextSwapAction(store, { network, walletId, swap }) {
242
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
243
+ switch (swap.status) {
244
+ case 'WAITING_FOR_APPROVE_CONFIRMATIONS':
245
+ return (0, utils_1.withInterval)(() => tslib_1.__awaiter(this, void 0, void 0, function* () { return this.waitForApproveConfirmations({ swap, network, walletId }); }));
246
+ case 'APPROVE_CONFIRMED':
247
+ return (0, utils_1.withLock)(store, { item: swap, network, walletId, asset: swap.from }, () => tslib_1.__awaiter(this, void 0, void 0, function* () { return this.initiateSwap({ quote: swap, network, walletId }); }));
248
+ case 'WAITING_FOR_INITIATION_CONFIRMATIONS':
249
+ return (0, utils_1.withInterval)(() => tslib_1.__awaiter(this, void 0, void 0, function* () { return this.waitForInitiationConfirmations({ swap, network, walletId }); }));
250
+ case 'WAITING_FOR_RECEIVE_CONFIRMATIONS':
251
+ return yield (0, utils_1.withInterval)(() => tslib_1.__awaiter(this, void 0, void 0, function* () { return this.waitForReceiveConfirmations({ swap, network, walletId }); }));
252
+ }
253
+ });
254
+ }
255
+ _getStatuses() {
256
+ return Object.assign(Object.assign({}, super._getStatuses()), { WAITING_FOR_INITIATION_CONFIRMATIONS: {
257
+ step: 1,
258
+ label: 'Swapping {from}',
259
+ filterStatus: 'PENDING',
260
+ notification() {
261
+ return {
262
+ message: 'Engaging LiFi',
263
+ };
264
+ },
265
+ }, WAITING_FOR_RECEIVE_CONFIRMATIONS: {
266
+ step: 2,
267
+ label: 'Swapping {to}',
268
+ filterStatus: 'PENDING',
269
+ notification() {
270
+ return {
271
+ message: 'Engaging LiFi',
272
+ };
273
+ },
274
+ }, SUCCESS: {
275
+ step: 3,
276
+ label: 'Completed',
277
+ filterStatus: 'COMPLETED',
278
+ notification(swap) {
279
+ return {
280
+ message: `Swap completed, ${(0, coinFormatter_1.prettyBalance)(swap.toAmount, swap.to)} ${swap.to} ready to use`,
281
+ };
282
+ },
283
+ }, FAILED: {
284
+ step: 3,
285
+ label: 'Swap Failed',
286
+ filterStatus: 'REFUNDED',
287
+ notification() {
288
+ return {
289
+ message: 'Swap failed',
290
+ };
291
+ },
292
+ } });
293
+ }
294
+ _txTypes() {
295
+ return {
296
+ SWAP: 'SWAP',
297
+ };
298
+ }
299
+ _fromTxType() {
300
+ return this._txTypes().SWAP;
301
+ }
302
+ _toTxType() {
303
+ return null;
304
+ }
305
+ _timelineDiagramSteps() {
306
+ return ['APPROVE', 'INITIATION', 'RECEIVE'];
307
+ }
308
+ _totalSteps() {
309
+ return 4;
310
+ }
311
+ }
312
+ exports.LifiSwapProvider = LifiSwapProvider;
313
+ //# sourceMappingURL=LifiSwapProvider.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"LifiSwapProvider.js","sourceRoot":"","sources":["../../../../src/swaps/lifi/LifiSwapProvider.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,7 @@
1
+ {
2
+ "title": "Li.Fi",
3
+ "description": "Advanced Bridge & DEX Aggregation Protocol",
4
+ "pros": ["Cross-chain bridging"],
5
+ "cons": ["Slippage"],
6
+ "fees": ["0.003% fee", "Slippage (up to 0.5%)"]
7
+ }