@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,1944 @@
1
+ {
2
+ "accounts": {
3
+ "7bf8478a-5e46-4565-967f-3369f0537930": {
4
+ "mainnet": [
5
+ {
6
+ "addresses": [],
7
+ "alias": "",
8
+ "assets": ["BTC"],
9
+ "balances": {
10
+ "BTC": "0"
11
+ },
12
+ "chain": "bitcoin",
13
+ "color": "#EAB300",
14
+ "createdAt": 1653480213781,
15
+ "derivationPath": "84'/0'/0'",
16
+ "enabled": true,
17
+ "id": "7819f678-728c-4a9e-800c-9454bdfd0cea",
18
+ "index": 0,
19
+ "loadingInitialBalance": false,
20
+ "name": "Bitcoin 1",
21
+ "type": "default",
22
+ "walletId": "7bf8478a-5e46-4565-967f-3369f0537930"
23
+ },
24
+ {
25
+ "addresses": ["de924dfe76a7b8c4cac2c7bc4e25ad30148f2f03"],
26
+ "alias": "",
27
+ "assets": ["ETH", "DAI", "USDC", "USDT", "WBTC", "UNI"],
28
+ "balances": {
29
+ "DAI": "0",
30
+ "ETH": "0",
31
+ "UNI": "0",
32
+ "USDC": "0",
33
+ "USDT": "0",
34
+ "WBTC": "0"
35
+ },
36
+ "chain": "ethereum",
37
+ "color": "#4F67E4",
38
+ "createdAt": 1653480213782,
39
+ "derivationPath": "m/44'/60'/0'/0/0",
40
+ "enabled": true,
41
+ "id": "6e3a5da4-6657-4d73-83ba-74bf5fc6994d",
42
+ "index": 0,
43
+ "loadingInitialBalance": false,
44
+ "name": "Ethereum 1",
45
+ "type": "default",
46
+ "walletId": "7bf8478a-5e46-4565-967f-3369f0537930"
47
+ },
48
+ {
49
+ "addresses": ["de924dfe76a7b8c4cac2c7bc4e25ad30148f2f03"],
50
+ "alias": "",
51
+ "assets": ["RBTC", "SOV", "FISH"],
52
+ "balances": {
53
+ "FISH": "0",
54
+ "RBTC": "0",
55
+ "SOV": "0"
56
+ },
57
+ "chain": "rsk",
58
+ "color": "#3AB24D",
59
+ "createdAt": 1653480213784,
60
+ "derivationPath": "m/44'/60'/0'/0/0",
61
+ "enabled": true,
62
+ "id": "fb4b00b0-e1fc-4055-a37c-05788d845b58",
63
+ "index": 0,
64
+ "loadingInitialBalance": false,
65
+ "name": "Rootstock 1",
66
+ "type": "default",
67
+ "walletId": "7bf8478a-5e46-4565-967f-3369f0537930"
68
+ },
69
+ {
70
+ "addresses": ["de924dfe76a7b8c4cac2c7bc4e25ad30148f2f03"],
71
+ "alias": "",
72
+ "assets": ["BNB"],
73
+ "balances": {
74
+ "BNB": "0"
75
+ },
76
+ "chain": "bsc",
77
+ "color": "#F7CA4F",
78
+ "createdAt": 1653480213785,
79
+ "derivationPath": "m/44'/60'/0'/0/0",
80
+ "enabled": true,
81
+ "id": "d05cc0ad-0b91-4613-990c-2be88f9c869c",
82
+ "index": 0,
83
+ "loadingInitialBalance": false,
84
+ "name": "Binance Smart Chain 1",
85
+ "type": "default",
86
+ "walletId": "7bf8478a-5e46-4565-967f-3369f0537930"
87
+ },
88
+ {
89
+ "addresses": ["c1bebd838f5adce07575a5c6cadd5dcb79393443bee582bed5143407aed9eaf6"],
90
+ "alias": "",
91
+ "assets": ["NEAR"],
92
+ "balances": {
93
+ "NEAR": "0"
94
+ },
95
+ "chain": "near",
96
+ "color": "#000000",
97
+ "createdAt": 1653480213788,
98
+ "derivationPath": "m/44'/397'/0'",
99
+ "enabled": true,
100
+ "id": "7ce6a85f-c32b-4b7e-bee5-432c9bb3c959",
101
+ "index": 0,
102
+ "loadingInitialBalance": false,
103
+ "name": "Near 1",
104
+ "type": "default",
105
+ "walletId": "7bf8478a-5e46-4565-967f-3369f0537930"
106
+ },
107
+ {
108
+ "addresses": ["de924dfe76a7b8c4cac2c7bc4e25ad30148f2f03"],
109
+ "alias": "",
110
+ "assets": ["MATIC", "PWETH"],
111
+ "balances": {
112
+ "MATIC": "0",
113
+ "PWETH": "0"
114
+ },
115
+ "chain": "polygon",
116
+ "color": "#8247E5",
117
+ "createdAt": 1653480213791,
118
+ "derivationPath": "m/44'/60'/0'/0/0",
119
+ "enabled": true,
120
+ "id": "b8416bcd-60f2-4283-bac9-fc16cef1fe6a",
121
+ "index": 0,
122
+ "loadingInitialBalance": false,
123
+ "name": "Polygon 1",
124
+ "type": "default",
125
+ "walletId": "7bf8478a-5e46-4565-967f-3369f0537930"
126
+ },
127
+ {
128
+ "addresses": ["de924dfe76a7b8c4cac2c7bc4e25ad30148f2f03"],
129
+ "alias": "",
130
+ "assets": ["ARBETH"],
131
+ "balances": {
132
+ "ARBETH": "0"
133
+ },
134
+ "chain": "arbitrum",
135
+ "color": "#28A0EF",
136
+ "createdAt": 1653480213793,
137
+ "derivationPath": "m/44'/60'/0'/0/0",
138
+ "enabled": true,
139
+ "id": "33cb5b7b-0733-4381-babb-1bf41dbd158b",
140
+ "index": 0,
141
+ "loadingInitialBalance": false,
142
+ "name": "Arbitrum 1",
143
+ "type": "default",
144
+ "walletId": "7bf8478a-5e46-4565-967f-3369f0537930"
145
+ },
146
+ {
147
+ "addresses": ["terra1yntwahp85gp4umxza0xjczrhukq7tc67kn3xpr"],
148
+ "alias": "",
149
+ "assets": ["LUNA", "UST"],
150
+ "balances": {
151
+ "LUNA": "0",
152
+ "UST": "0"
153
+ },
154
+ "chain": "terra",
155
+ "color": "#008080",
156
+ "createdAt": 1653480213795,
157
+ "derivationPath": "'m/44'/370'/0'",
158
+ "enabled": true,
159
+ "id": "2835b624-f9b5-47a2-9c87-59f86903df1e",
160
+ "index": 0,
161
+ "loadingInitialBalance": false,
162
+ "name": "Terra 1",
163
+ "type": "default",
164
+ "walletId": "7bf8478a-5e46-4565-967f-3369f0537930"
165
+ },
166
+ {
167
+ "addresses": [],
168
+ "alias": "",
169
+ "assets": [],
170
+ "balances": {},
171
+ "chain": "fuse",
172
+ "color": "#46e8b6",
173
+ "createdAt": 1653480213796,
174
+ "derivationPath": "m/44'/60'/0'/0/0",
175
+ "enabled": true,
176
+ "id": "9a234b80-23e6-4c9a-8c20-1ca639f5d8da",
177
+ "index": 0,
178
+ "name": "Fuse 1",
179
+ "type": "default",
180
+ "walletId": "7bf8478a-5e46-4565-967f-3369f0537930"
181
+ },
182
+ {
183
+ "addresses": ["de924dfe76a7b8c4cac2c7bc4e25ad30148f2f03"],
184
+ "alias": "",
185
+ "assets": ["AVAX"],
186
+ "balances": {
187
+ "AVAX": "0"
188
+ },
189
+ "chain": "avalanche",
190
+ "color": "#E84141",
191
+ "createdAt": 1653480213798,
192
+ "derivationPath": "m/44'/60'/0'/0/0",
193
+ "enabled": true,
194
+ "id": "ebd9eeb2-b4b4-466d-8a99-3a458101cc74",
195
+ "index": 0,
196
+ "loadingInitialBalance": false,
197
+ "name": "Avalanche 1",
198
+ "type": "default",
199
+ "walletId": "7bf8478a-5e46-4565-967f-3369f0537930"
200
+ }
201
+ ],
202
+ "testnet": [
203
+ {
204
+ "addresses": [],
205
+ "alias": "",
206
+ "assets": ["BTC"],
207
+ "balances": {
208
+ "BTC": "0"
209
+ },
210
+ "chain": "bitcoin",
211
+ "color": "#EAB300",
212
+ "createdAt": 1653480213799,
213
+ "derivationPath": "84'/1'/0'",
214
+ "enabled": true,
215
+ "id": "d2f806da-57a5-4eed-ad46-818f2befca39",
216
+ "index": 0,
217
+ "loadingInitialBalance": false,
218
+ "name": "Bitcoin 1",
219
+ "type": "default",
220
+ "walletId": "7bf8478a-5e46-4565-967f-3369f0537930"
221
+ },
222
+ {
223
+ "addresses": ["de924dfe76a7b8c4cac2c7bc4e25ad30148f2f03"],
224
+ "alias": "",
225
+ "assets": ["ETH", "DAI"],
226
+ "balances": {
227
+ "DAI": "0",
228
+ "ETH": "0"
229
+ },
230
+ "chain": "ethereum",
231
+ "color": "#4F67E4",
232
+ "createdAt": 1653480213805,
233
+ "derivationPath": "m/44'/60'/0'/0/0",
234
+ "enabled": true,
235
+ "id": "29d576d6-7a52-4a19-a06e-594cc4c7b631",
236
+ "index": 0,
237
+ "loadingInitialBalance": false,
238
+ "name": "Ethereum 1",
239
+ "type": "default",
240
+ "walletId": "7bf8478a-5e46-4565-967f-3369f0537930"
241
+ },
242
+ {
243
+ "addresses": ["de924dfe76a7b8c4cac2c7bc4e25ad30148f2f03"],
244
+ "alias": "",
245
+ "assets": ["RBTC", "SOV"],
246
+ "balances": {
247
+ "RBTC": "0",
248
+ "SOV": "0"
249
+ },
250
+ "chain": "rsk",
251
+ "color": "#3AB24D",
252
+ "createdAt": 1653480213808,
253
+ "derivationPath": "m/44'/60'/0'/0/0",
254
+ "enabled": true,
255
+ "id": "57939092-d650-45b8-80ce-efe1cf9cc45d",
256
+ "index": 0,
257
+ "loadingInitialBalance": false,
258
+ "name": "Rootstock 1",
259
+ "type": "default",
260
+ "walletId": "7bf8478a-5e46-4565-967f-3369f0537930"
261
+ },
262
+ {
263
+ "addresses": ["de924dfe76a7b8c4cac2c7bc4e25ad30148f2f03"],
264
+ "alias": "",
265
+ "assets": ["BNB"],
266
+ "balances": {
267
+ "BNB": "0"
268
+ },
269
+ "chain": "bsc",
270
+ "color": "#F7CA4F",
271
+ "createdAt": 1653480213812,
272
+ "derivationPath": "m/44'/60'/0'/0/0",
273
+ "enabled": true,
274
+ "id": "893297a2-8576-4b98-8b99-b09198d2ac17",
275
+ "index": 0,
276
+ "loadingInitialBalance": false,
277
+ "name": "Binance Smart Chain 1",
278
+ "type": "default",
279
+ "walletId": "7bf8478a-5e46-4565-967f-3369f0537930"
280
+ },
281
+ {
282
+ "addresses": ["c1bebd838f5adce07575a5c6cadd5dcb79393443bee582bed5143407aed9eaf6"],
283
+ "alias": "",
284
+ "assets": ["NEAR"],
285
+ "balances": {
286
+ "NEAR": "0"
287
+ },
288
+ "chain": "near",
289
+ "color": "#000000",
290
+ "createdAt": 1653480213815,
291
+ "derivationPath": "m/44'/397'/0'",
292
+ "enabled": true,
293
+ "id": "4d4dc9a2-c60b-49a2-b660-be46b15ab29b",
294
+ "index": 0,
295
+ "loadingInitialBalance": false,
296
+ "name": "Near 1",
297
+ "type": "default",
298
+ "walletId": "7bf8478a-5e46-4565-967f-3369f0537930"
299
+ },
300
+ {
301
+ "addresses": ["de924dfe76a7b8c4cac2c7bc4e25ad30148f2f03"],
302
+ "alias": "",
303
+ "assets": ["MATIC", "PWETH"],
304
+ "balances": {
305
+ "MATIC": "0",
306
+ "PWETH": "0"
307
+ },
308
+ "chain": "polygon",
309
+ "color": "#8247E5",
310
+ "createdAt": 1653480213817,
311
+ "derivationPath": "m/44'/60'/0'/0/0",
312
+ "enabled": true,
313
+ "id": "57eac31f-5041-45e5-81ac-8f6f5877163e",
314
+ "index": 0,
315
+ "loadingInitialBalance": false,
316
+ "name": "Polygon 1",
317
+ "type": "default",
318
+ "walletId": "7bf8478a-5e46-4565-967f-3369f0537930"
319
+ },
320
+ {
321
+ "addresses": ["de924dfe76a7b8c4cac2c7bc4e25ad30148f2f03"],
322
+ "alias": "",
323
+ "assets": ["ARBETH"],
324
+ "balances": {
325
+ "ARBETH": "0"
326
+ },
327
+ "chain": "arbitrum",
328
+ "color": "#28A0EF",
329
+ "createdAt": 1653480213819,
330
+ "derivationPath": "m/44'/60'/0'/0/0",
331
+ "enabled": true,
332
+ "id": "9f1c9744-2ec2-41e6-b707-56ee7e59cc35",
333
+ "index": 0,
334
+ "loadingInitialBalance": false,
335
+ "name": "Arbitrum 1",
336
+ "type": "default",
337
+ "walletId": "7bf8478a-5e46-4565-967f-3369f0537930"
338
+ },
339
+ {
340
+ "addresses": ["terra1yntwahp85gp4umxza0xjczrhukq7tc67kn3xpr"],
341
+ "alias": "",
342
+ "assets": ["LUNA", "UST"],
343
+ "balances": {
344
+ "LUNA": "0",
345
+ "UST": "0"
346
+ },
347
+ "chain": "terra",
348
+ "color": "#008080",
349
+ "createdAt": 1653480213821,
350
+ "derivationPath": "'m/44'/370'/0'",
351
+ "enabled": true,
352
+ "id": "bd793d8c-cd88-4651-83be-39a061059eac",
353
+ "index": 0,
354
+ "loadingInitialBalance": false,
355
+ "name": "Terra 1",
356
+ "type": "default",
357
+ "walletId": "7bf8478a-5e46-4565-967f-3369f0537930"
358
+ },
359
+ {
360
+ "addresses": [],
361
+ "alias": "",
362
+ "assets": [],
363
+ "balances": {},
364
+ "chain": "fuse",
365
+ "color": "#46e8b6",
366
+ "createdAt": 1653480213823,
367
+ "derivationPath": "m/44'/60'/0'/0/0",
368
+ "enabled": true,
369
+ "id": "a61707ca-e732-4fc0-89d7-81508ae9f533",
370
+ "index": 0,
371
+ "name": "Fuse 1",
372
+ "type": "default",
373
+ "walletId": "7bf8478a-5e46-4565-967f-3369f0537930"
374
+ },
375
+ {
376
+ "addresses": ["de924dfe76a7b8c4cac2c7bc4e25ad30148f2f03"],
377
+ "alias": "",
378
+ "assets": ["AVAX"],
379
+ "balances": {
380
+ "AVAX": "0"
381
+ },
382
+ "chain": "avalanche",
383
+ "color": "#E84141",
384
+ "createdAt": 1653480213826,
385
+ "derivationPath": "m/44'/60'/0'/0/0",
386
+ "enabled": true,
387
+ "id": "744079ee-1727-4177-81a1-820e96d94eb9",
388
+ "index": 0,
389
+ "loadingInitialBalance": false,
390
+ "name": "Avalanche 1",
391
+ "type": "default",
392
+ "walletId": "7bf8478a-5e46-4565-967f-3369f0537930"
393
+ }
394
+ ]
395
+ }
396
+ },
397
+ "activeNetwork": "testnet",
398
+ "activeWalletId": "7bf8478a-5e46-4565-967f-3369f0537930",
399
+ "analytics": {
400
+ "acceptedDate": 1653480198158,
401
+ "askedDate": 1653480196427,
402
+ "askedTimes": 0,
403
+ "notAskAgain": false,
404
+ "userId": "48038d81-298e-406e-831c-39e059263657"
405
+ },
406
+ "brokerReady": true,
407
+ "customTokens": {},
408
+ "enabledAssets": {
409
+ "mainnet": {
410
+ "7bf8478a-5e46-4565-967f-3369f0537930": [
411
+ "BTC",
412
+ "ETH",
413
+ "DAI",
414
+ "USDC",
415
+ "USDT",
416
+ "WBTC",
417
+ "UNI",
418
+ "RBTC",
419
+ "SOV",
420
+ "BNB",
421
+ "NEAR",
422
+ "MATIC",
423
+ "PWETH",
424
+ "ARBETH",
425
+ "AVAX",
426
+ "FISH",
427
+ "LUNA",
428
+ "UST"
429
+ ]
430
+ },
431
+ "testnet": {
432
+ "7bf8478a-5e46-4565-967f-3369f0537930": [
433
+ "BTC",
434
+ "ETH",
435
+ "DAI",
436
+ "RBTC",
437
+ "BNB",
438
+ "NEAR",
439
+ "SOV",
440
+ "MATIC",
441
+ "PWETH",
442
+ "ARBETH",
443
+ "AVAX",
444
+ "LUNA",
445
+ "UST"
446
+ ]
447
+ }
448
+ },
449
+ "enabledChains": {
450
+ "7bf8478a-5e46-4565-967f-3369f0537930": {
451
+ "mainnet": ["bitcoin", "ethereum", "rsk", "bsc", "near", "polygon", "arbitrum", "terra", "fuse", "avalanche"],
452
+ "testnet": ["bitcoin", "ethereum", "rsk", "bsc", "near", "polygon", "arbitrum", "terra", "fuse", "avalanche"]
453
+ }
454
+ },
455
+ "encryptedWallets": "{\"ct\":\"PhSTvGzf6MgQchPhAsgKFy7E1SiUG2tLv28H8eHcyw9o6GvEliHIIyPfkiUL5vR6K7KqjdTO0hTg5M/xDzFuLLr2M5w/BPs2yJJUBz1jTPLNQ7tBrtlDDcPQvnuwuN01bNRVWY7GssyPJiwWXx/lSBOGT0UHuoQ4CJECy6xgVYtTuw2pLH4Uua9uAvglWudu26B3BY6n0QRTafo5fi6r215h/Qog7al0vFI8AQj3eTzfAnuYiP6K3n/OMnT8IdBS\",\"iv\":\"626d3543c83c47922d959be4742e2536\",\"s\":\"b8ddf9ca16102efb\"}",
456
+ "experiments": {},
457
+ "externalConnections": {},
458
+ "fees": {},
459
+ "fiatRates": {
460
+ "ARBETH": 1946.35,
461
+ "AVAX": 27.75,
462
+ "BNB": 325.23,
463
+ "BTC": 29397,
464
+ "DAI": 1,
465
+ "ETH": 1946.35,
466
+ "LUNA": 0.00016979,
467
+ "MATIC": 0.631543,
468
+ "NEAR": 5.72,
469
+ "PWETH": 1944.61,
470
+ "RBTC": 29397,
471
+ "SOV": 1.87,
472
+ "UNI": 5.42,
473
+ "USDC": 1.001,
474
+ "USDT": 0.999769,
475
+ "UST": 0.071053,
476
+ "WBTC": 29392,
477
+ "WETH": 1944.61
478
+ },
479
+ "history": {},
480
+ "injectEthereum": true,
481
+ "injectEthereumChain": "ethereum",
482
+ "keySalt": "70ec2bf509c32c33a996f266c17fef88",
483
+ "keyUpdatedAt": 1653480213769,
484
+ "marketData": {
485
+ "mainnet": [
486
+ {
487
+ "from": "RBTC",
488
+ "max": "1.272838009684932",
489
+ "min": "0.002",
490
+ "provider": "liquality",
491
+ "rate": "29103.03",
492
+ "to": "DAI"
493
+ },
494
+ {
495
+ "from": "MATIC",
496
+ "max": "26474.49064809184",
497
+ "min": "30",
498
+ "provider": "liquality",
499
+ "rate": "0.62559585",
500
+ "to": "USDT"
501
+ },
502
+ {
503
+ "from": "WBTC",
504
+ "max": "0.54532146",
505
+ "min": "0.002",
506
+ "provider": "liquality",
507
+ "rate": "46039.62558255",
508
+ "to": "MATIC"
509
+ },
510
+ {
511
+ "from": "ETH",
512
+ "max": "17.038865658436606",
513
+ "min": "0.05",
514
+ "provider": "liquality",
515
+ "rate": "1923.04041916",
516
+ "to": "USDC"
517
+ },
518
+ {
519
+ "from": "WBTC",
520
+ "max": "1.63722852",
521
+ "min": "0.002",
522
+ "provider": "liquality",
523
+ "rate": "14.94868122",
524
+ "to": "ETH"
525
+ },
526
+ {
527
+ "from": "BTC",
528
+ "max": "1.12798988",
529
+ "min": "0.002",
530
+ "provider": "liquality",
531
+ "rate": "29044.94011976",
532
+ "to": "USDC"
533
+ },
534
+ {
535
+ "from": "MATIC",
536
+ "max": "7687.285424922072",
537
+ "min": "30",
538
+ "provider": "liquality",
539
+ "rate": "0.02252776",
540
+ "to": "AVAX"
541
+ },
542
+ {
543
+ "from": "AVAX",
544
+ "max": "602.4352485728048",
545
+ "min": "0.5",
546
+ "provider": "liquality",
547
+ "rate": "27.4923",
548
+ "to": "USDT"
549
+ },
550
+ {
551
+ "from": "RBTC",
552
+ "max": "1.63688841520772",
553
+ "min": "0.002",
554
+ "provider": "liquality",
555
+ "rate": "14.95178685",
556
+ "to": "ETH"
557
+ },
558
+ {
559
+ "from": "BTC",
560
+ "max": "0",
561
+ "min": "0.002",
562
+ "provider": "liquality",
563
+ "rate": "5359.67403315",
564
+ "to": "UNI"
565
+ },
566
+ {
567
+ "from": "USDC",
568
+ "max": "0",
569
+ "min": "100",
570
+ "provider": "liquality",
571
+ "rate": "0.00003376",
572
+ "to": "WBTC"
573
+ },
574
+ {
575
+ "from": "WBTC",
576
+ "max": "1.12865852",
577
+ "min": "0.002",
578
+ "provider": "liquality",
579
+ "rate": "29035.05988024",
580
+ "to": "USDC"
581
+ },
582
+ {
583
+ "from": "USDT",
584
+ "max": "4857.710969",
585
+ "min": "50",
586
+ "provider": "liquality",
587
+ "rate": "0.03564998",
588
+ "to": "AVAX"
589
+ },
590
+ {
591
+ "from": "RBTC",
592
+ "max": "0",
593
+ "min": "0.002",
594
+ "provider": "liquality",
595
+ "rate": "0.99033688",
596
+ "to": "WBTC"
597
+ },
598
+ {
599
+ "from": "BTC",
600
+ "max": "1.63655704",
601
+ "min": "0.002",
602
+ "provider": "liquality",
603
+ "rate": "14.95481427",
604
+ "to": "ETH"
605
+ },
606
+ {
607
+ "from": "AVAX",
608
+ "max": "1194.227702914489",
609
+ "min": "0.5",
610
+ "provider": "liquality",
611
+ "rate": "27.43742515",
612
+ "to": "USDC"
613
+ },
614
+ {
615
+ "from": "DAI",
616
+ "max": "48083.44867969592",
617
+ "min": "50",
618
+ "provider": "liquality",
619
+ "rate": "0.000509",
620
+ "to": "ETH"
621
+ },
622
+ {
623
+ "from": "USDC",
624
+ "max": "37339.502317",
625
+ "min": "100",
626
+ "provider": "liquality",
627
+ "rate": "0.99198",
628
+ "to": "DAI"
629
+ },
630
+ {
631
+ "from": "WBTC",
632
+ "max": "0.16530207",
633
+ "min": "0.002",
634
+ "provider": "liquality",
635
+ "rate": "1047.64602089",
636
+ "to": "AVAX"
637
+ },
638
+ {
639
+ "from": "MATIC",
640
+ "max": "52481.27551800948",
641
+ "min": "30",
642
+ "provider": "liquality",
643
+ "rate": "0.62434716",
644
+ "to": "USDC"
645
+ },
646
+ {
647
+ "from": "AVAX",
648
+ "max": "0",
649
+ "min": "0.5",
650
+ "provider": "liquality",
651
+ "rate": "5.06303867",
652
+ "to": "UNI"
653
+ },
654
+ {
655
+ "from": "ETH",
656
+ "max": "0.20520582771406237",
657
+ "min": "0.05",
658
+ "provider": "liquality",
659
+ "rate": "0.06553924",
660
+ "to": "BTC"
661
+ },
662
+ {
663
+ "from": "WBTC",
664
+ "max": "0.0135892",
665
+ "min": "0.002",
666
+ "provider": "liquality",
667
+ "rate": "0.98968543",
668
+ "to": "BTC"
669
+ },
670
+ {
671
+ "from": "WBTC",
672
+ "max": "0",
673
+ "min": "0.002",
674
+ "provider": "liquality",
675
+ "rate": "5357.85082873",
676
+ "to": "UNI"
677
+ },
678
+ {
679
+ "from": "BTC",
680
+ "max": "0.16524553",
681
+ "min": "0.002",
682
+ "provider": "liquality",
683
+ "rate": "1048.00252071",
684
+ "to": "AVAX"
685
+ },
686
+ {
687
+ "from": "UNI",
688
+ "max": "18802.08103058267",
689
+ "min": "25",
690
+ "provider": "liquality",
691
+ "rate": "0.00018287",
692
+ "to": "RBTC"
693
+ },
694
+ {
695
+ "from": "UNI",
696
+ "max": "6107.496244399686",
697
+ "min": "25",
698
+ "provider": "liquality",
699
+ "rate": "5.36497006",
700
+ "to": "USDC"
701
+ },
702
+ {
703
+ "from": "USDT",
704
+ "max": "33163.705128",
705
+ "min": "50",
706
+ "provider": "liquality",
707
+ "rate": "0.98802395",
708
+ "to": "USDC"
709
+ },
710
+ {
711
+ "from": "USDC",
712
+ "max": "0",
713
+ "min": "100",
714
+ "provider": "liquality",
715
+ "rate": "0.18268508",
716
+ "to": "UNI"
717
+ },
718
+ {
719
+ "from": "ETH",
720
+ "max": "52.4547486131722",
721
+ "min": "0.05",
722
+ "provider": "liquality",
723
+ "rate": "0.06554705",
724
+ "to": "RBTC"
725
+ },
726
+ {
727
+ "from": "DAI",
728
+ "max": "16729.62778905",
729
+ "min": "50",
730
+ "provider": "liquality",
731
+ "rate": "0.99",
732
+ "to": "USDT"
733
+ },
734
+ {
735
+ "from": "ETH",
736
+ "max": "8.595310988507467",
737
+ "min": "0.05",
738
+ "provider": "liquality",
739
+ "rate": "1926.8865",
740
+ "to": "USDT"
741
+ },
742
+ {
743
+ "from": "UNI",
744
+ "max": "3080.9627268038614",
745
+ "min": "25",
746
+ "provider": "liquality",
747
+ "rate": "5.3757",
748
+ "to": "USDT"
749
+ },
750
+ {
751
+ "from": "USDC",
752
+ "max": "4848.014939",
753
+ "min": "100",
754
+ "provider": "liquality",
755
+ "rate": "0.03572128",
756
+ "to": "AVAX"
757
+ },
758
+ {
759
+ "from": "WBTC",
760
+ "max": "0.5693143",
761
+ "min": "0.002",
762
+ "provider": "liquality",
763
+ "rate": "29093.13",
764
+ "to": "USDT"
765
+ },
766
+ {
767
+ "from": "USDT",
768
+ "max": "48095.609626",
769
+ "min": "50",
770
+ "provider": "liquality",
771
+ "rate": "0.00050887",
772
+ "to": "ETH"
773
+ },
774
+ {
775
+ "from": "UNI",
776
+ "max": "8860.130350147376",
777
+ "min": "25",
778
+ "provider": "liquality",
779
+ "rate": "0.00276231",
780
+ "to": "ETH"
781
+ },
782
+ {
783
+ "from": "AVAX",
784
+ "max": "14.38284239610634",
785
+ "min": "0.5",
786
+ "provider": "liquality",
787
+ "rate": "0.00093507",
788
+ "to": "BTC"
789
+ },
790
+ {
791
+ "from": "UNI",
792
+ "max": "6890.272742710246",
793
+ "min": "25",
794
+ "provider": "liquality",
795
+ "rate": "5.3757",
796
+ "to": "DAI"
797
+ },
798
+ {
799
+ "from": "DAI",
800
+ "max": "33163.70512862682",
801
+ "min": "50",
802
+ "provider": "liquality",
803
+ "rate": "0.98802395",
804
+ "to": "USDC"
805
+ },
806
+ {
807
+ "from": "RBTC",
808
+ "max": "0.5691453171062667",
809
+ "min": "0.002",
810
+ "provider": "liquality",
811
+ "rate": "29103.03",
812
+ "to": "USDT"
813
+ },
814
+ {
815
+ "from": "UNI",
816
+ "max": "0",
817
+ "min": "25",
818
+ "provider": "liquality",
819
+ "rate": "0.00018293",
820
+ "to": "WBTC"
821
+ },
822
+ {
823
+ "from": "USDC",
824
+ "max": "398.734437",
825
+ "min": "100",
826
+ "provider": "liquality",
827
+ "rate": "0.00003373",
828
+ "to": "BTC"
829
+ },
830
+ {
831
+ "from": "WBTC",
832
+ "max": "3.47416543",
833
+ "min": "0.002",
834
+ "provider": "liquality",
835
+ "rate": "0.98966323",
836
+ "to": "RBTC"
837
+ },
838
+ {
839
+ "from": "RBTC",
840
+ "max": "1.1279898899573266",
841
+ "min": "0.002",
842
+ "provider": "liquality",
843
+ "rate": "29044.94011976",
844
+ "to": "USDC"
845
+ },
846
+ {
847
+ "from": "USDC",
848
+ "max": "16696.235282",
849
+ "min": "100",
850
+ "provider": "liquality",
851
+ "rate": "0.99198",
852
+ "to": "USDT"
853
+ },
854
+ {
855
+ "from": "MATIC",
856
+ "max": "76148.54244292166",
857
+ "min": "30",
858
+ "provider": "liquality",
859
+ "rate": "0.0003214",
860
+ "to": "ETH"
861
+ },
862
+ {
863
+ "from": "USDT",
864
+ "max": "0",
865
+ "min": "50",
866
+ "provider": "liquality",
867
+ "rate": "0.00003369",
868
+ "to": "WBTC"
869
+ },
870
+ {
871
+ "from": "ETH",
872
+ "max": "8.232842855273935",
873
+ "min": "0.05",
874
+ "provider": "liquality",
875
+ "rate": "3049.28115332",
876
+ "to": "MATIC"
877
+ },
878
+ {
879
+ "from": "MATIC",
880
+ "max": "161564.92565620325",
881
+ "min": "30",
882
+ "provider": "liquality",
883
+ "rate": "0.00002128",
884
+ "to": "RBTC"
885
+ },
886
+ {
887
+ "from": "USDT",
888
+ "max": "399.085849",
889
+ "min": "50",
890
+ "provider": "liquality",
891
+ "rate": "0.0000337",
892
+ "to": "BTC"
893
+ },
894
+ {
895
+ "from": "RBTC",
896
+ "max": "0",
897
+ "min": "0.002",
898
+ "provider": "liquality",
899
+ "rate": "5359.67403315",
900
+ "to": "UNI"
901
+ },
902
+ {
903
+ "from": "MATIC",
904
+ "max": "0",
905
+ "min": "30",
906
+ "provider": "liquality",
907
+ "rate": "0.00002129",
908
+ "to": "WBTC"
909
+ },
910
+ {
911
+ "from": "USDT",
912
+ "max": "0",
913
+ "min": "50",
914
+ "provider": "liquality",
915
+ "rate": "0.18232044",
916
+ "to": "UNI"
917
+ },
918
+ {
919
+ "from": "WBTC",
920
+ "max": "1.27321593",
921
+ "min": "0.002",
922
+ "provider": "liquality",
923
+ "rate": "29093.13",
924
+ "to": "DAI"
925
+ },
926
+ {
927
+ "from": "AVAX",
928
+ "max": "1347.287695620773",
929
+ "min": "0.5",
930
+ "provider": "liquality",
931
+ "rate": "27.4923",
932
+ "to": "DAI"
933
+ },
934
+ {
935
+ "from": "USDT",
936
+ "max": "102095.299996",
937
+ "min": "50",
938
+ "provider": "liquality",
939
+ "rate": "0.00003368",
940
+ "to": "RBTC"
941
+ },
942
+ {
943
+ "from": "USDC",
944
+ "max": "48039.53344",
945
+ "min": "100",
946
+ "provider": "liquality",
947
+ "rate": "0.00050946",
948
+ "to": "ETH"
949
+ },
950
+ {
951
+ "from": "BTC",
952
+ "max": "3.47298363",
953
+ "min": "0.002",
954
+ "provider": "liquality",
955
+ "rate": "0.99",
956
+ "to": "RBTC"
957
+ },
958
+ {
959
+ "from": "USDT",
960
+ "max": "37414.181401",
961
+ "min": "50",
962
+ "provider": "liquality",
963
+ "rate": "0.99",
964
+ "to": "DAI"
965
+ },
966
+ {
967
+ "from": "MATIC",
968
+ "max": "0",
969
+ "min": "30",
970
+ "provider": "liquality",
971
+ "rate": "0.11521102",
972
+ "to": "UNI"
973
+ },
974
+ {
975
+ "from": "ETH",
976
+ "max": "19.2225749776171",
977
+ "min": "0.05",
978
+ "provider": "liquality",
979
+ "rate": "1926.8865",
980
+ "to": "DAI"
981
+ },
982
+ {
983
+ "from": "UNI",
984
+ "max": "73.53912358580709",
985
+ "min": "25",
986
+ "provider": "liquality",
987
+ "rate": "0.00018288",
988
+ "to": "BTC"
989
+ },
990
+ {
991
+ "from": "USDT",
992
+ "max": "16023.994536",
993
+ "min": "50",
994
+ "provider": "liquality",
995
+ "rate": "1.5666664",
996
+ "to": "MATIC"
997
+ },
998
+ {
999
+ "from": "AVAX",
1000
+ "max": "577.0254121128926",
1001
+ "min": "0.5",
1002
+ "provider": "liquality",
1003
+ "rate": "43.50632601",
1004
+ "to": "MATIC"
1005
+ },
1006
+ {
1007
+ "from": "BTC",
1008
+ "max": "0.56914531",
1009
+ "min": "0.002",
1010
+ "provider": "liquality",
1011
+ "rate": "29103.03",
1012
+ "to": "USDT"
1013
+ },
1014
+ {
1015
+ "from": "BTC",
1016
+ "max": "0.54506532",
1017
+ "min": "0.002",
1018
+ "provider": "liquality",
1019
+ "rate": "46055.29224658",
1020
+ "to": "MATIC"
1021
+ },
1022
+ {
1023
+ "from": "BTC",
1024
+ "max": "1.272838",
1025
+ "min": "0.002",
1026
+ "provider": "liquality",
1027
+ "rate": "29103.03",
1028
+ "to": "DAI"
1029
+ },
1030
+ {
1031
+ "from": "ETH",
1032
+ "max": "2.495804655312367",
1033
+ "min": "0.05",
1034
+ "provider": "liquality",
1035
+ "rate": "69.38734246",
1036
+ "to": "AVAX"
1037
+ },
1038
+ {
1039
+ "from": "DAI",
1040
+ "max": "399.08584900111604",
1041
+ "min": "50",
1042
+ "provider": "liquality",
1043
+ "rate": "0.0000337",
1044
+ "to": "BTC"
1045
+ },
1046
+ {
1047
+ "from": "BTC",
1048
+ "max": "0",
1049
+ "min": "0.002",
1050
+ "provider": "liquality",
1051
+ "rate": "0.99033688",
1052
+ "to": "WBTC"
1053
+ },
1054
+ {
1055
+ "from": "USDC",
1056
+ "max": "15992.010626",
1057
+ "min": "100",
1058
+ "provider": "liquality",
1059
+ "rate": "1.56979974",
1060
+ "to": "MATIC"
1061
+ },
1062
+ {
1063
+ "from": "RBTC",
1064
+ "max": "0.0135848823",
1065
+ "min": "0.002",
1066
+ "provider": "liquality",
1067
+ "rate": "0.99",
1068
+ "to": "BTC"
1069
+ },
1070
+ {
1071
+ "from": "RBTC",
1072
+ "max": "0.16524553694993498",
1073
+ "min": "0.002",
1074
+ "provider": "liquality",
1075
+ "rate": "1048.00252071",
1076
+ "to": "AVAX"
1077
+ },
1078
+ {
1079
+ "from": "DAI",
1080
+ "max": "4857.710969181999",
1081
+ "min": "50",
1082
+ "provider": "liquality",
1083
+ "rate": "0.03564998",
1084
+ "to": "AVAX"
1085
+ },
1086
+ {
1087
+ "from": "UNI",
1088
+ "max": "2951.011831422508",
1089
+ "min": "25",
1090
+ "provider": "liquality",
1091
+ "rate": "8.50699857",
1092
+ "to": "MATIC"
1093
+ },
1094
+ {
1095
+ "from": "DAI",
1096
+ "max": "0",
1097
+ "min": "50",
1098
+ "provider": "liquality",
1099
+ "rate": "0.18232044",
1100
+ "to": "UNI"
1101
+ },
1102
+ {
1103
+ "from": "DAI",
1104
+ "max": "16023.994536623497",
1105
+ "min": "50",
1106
+ "provider": "liquality",
1107
+ "rate": "1.5666664",
1108
+ "to": "MATIC"
1109
+ },
1110
+ {
1111
+ "from": "USDC",
1112
+ "max": "101891.516962",
1113
+ "min": "100",
1114
+ "provider": "liquality",
1115
+ "rate": "0.00003374",
1116
+ "to": "RBTC"
1117
+ },
1118
+ {
1119
+ "from": "RBTC",
1120
+ "max": "0.5450653225070915",
1121
+ "min": "0.002",
1122
+ "provider": "liquality",
1123
+ "rate": "46055.29224658",
1124
+ "to": "MATIC"
1125
+ },
1126
+ {
1127
+ "from": "DAI",
1128
+ "max": "102095.2999960481",
1129
+ "min": "50",
1130
+ "provider": "liquality",
1131
+ "rate": "0.00003368",
1132
+ "to": "RBTC"
1133
+ },
1134
+ {
1135
+ "from": "MATIC",
1136
+ "max": "632.1490134946226",
1137
+ "min": "30",
1138
+ "provider": "liquality",
1139
+ "rate": "0.00002128",
1140
+ "to": "BTC"
1141
+ },
1142
+ {
1143
+ "from": "ETH",
1144
+ "max": "0",
1145
+ "min": "0.05",
1146
+ "provider": "liquality",
1147
+ "rate": "0.06556935",
1148
+ "to": "WBTC"
1149
+ },
1150
+ {
1151
+ "from": "AVAX",
1152
+ "max": "3676.460208730915",
1153
+ "min": "0.5",
1154
+ "provider": "liquality",
1155
+ "rate": "0.00093521",
1156
+ "to": "RBTC"
1157
+ },
1158
+ {
1159
+ "from": "ETH",
1160
+ "max": "0",
1161
+ "min": "0.05",
1162
+ "provider": "liquality",
1163
+ "rate": "354.85939227",
1164
+ "to": "UNI"
1165
+ },
1166
+ {
1167
+ "from": "DAI",
1168
+ "max": "0",
1169
+ "min": "50",
1170
+ "provider": "liquality",
1171
+ "rate": "0.00003369",
1172
+ "to": "WBTC"
1173
+ },
1174
+ {
1175
+ "from": "AVAX",
1176
+ "max": "1732.8528793592125",
1177
+ "min": "0.5",
1178
+ "provider": "liquality",
1179
+ "rate": "0.01412377",
1180
+ "to": "ETH"
1181
+ },
1182
+ {
1183
+ "from": "AVAX",
1184
+ "max": "0",
1185
+ "min": "0.5",
1186
+ "provider": "liquality",
1187
+ "rate": "0.00093553",
1188
+ "to": "WBTC"
1189
+ },
1190
+ {
1191
+ "from": "UNI",
1192
+ "max": "894.6060709599282",
1193
+ "min": "25",
1194
+ "provider": "liquality",
1195
+ "rate": "0.1935794",
1196
+ "to": "AVAX"
1197
+ },
1198
+ {
1199
+ "from": "MATIC",
1200
+ "max": "59207.61705511455",
1201
+ "min": "30",
1202
+ "provider": "liquality",
1203
+ "rate": "0.62559585",
1204
+ "to": "DAI"
1205
+ },
1206
+ {
1207
+ "from": "BTC",
1208
+ "max": "300000000",
1209
+ "min": "40000",
1210
+ "provider": "fastBTC",
1211
+ "rate": "0.998",
1212
+ "to": "RBTC"
1213
+ }
1214
+ ],
1215
+ "testnet": [
1216
+ {
1217
+ "from": "MATIC",
1218
+ "max": "0",
1219
+ "min": "80",
1220
+ "provider": "liquality",
1221
+ "rate": "0.02253072",
1222
+ "to": "AVAX"
1223
+ },
1224
+ {
1225
+ "from": "ARBETH",
1226
+ "max": "0",
1227
+ "min": "10",
1228
+ "provider": "liquality",
1229
+ "rate": "69.43735135",
1230
+ "to": "AVAX"
1231
+ },
1232
+ {
1233
+ "from": "SOL",
1234
+ "max": "0",
1235
+ "min": "0.1",
1236
+ "provider": "liquality",
1237
+ "rate": "0.02426234",
1238
+ "to": "ARBETH"
1239
+ },
1240
+ {
1241
+ "from": "MATIC",
1242
+ "max": "0",
1243
+ "min": "80",
1244
+ "provider": "liquality",
1245
+ "rate": "0.62522757",
1246
+ "to": "DAI"
1247
+ },
1248
+ {
1249
+ "from": "SOL",
1250
+ "max": "0",
1251
+ "min": "0.1",
1252
+ "provider": "liquality",
1253
+ "rate": "0.00160639",
1254
+ "to": "RBTC"
1255
+ },
1256
+ {
1257
+ "from": "AVAX",
1258
+ "max": "0",
1259
+ "min": "10",
1260
+ "provider": "liquality",
1261
+ "rate": "0.00093453",
1262
+ "to": "RBTC"
1263
+ },
1264
+ {
1265
+ "from": "NEAR",
1266
+ "max": "0",
1267
+ "min": "10",
1268
+ "provider": "liquality",
1269
+ "rate": "0.00019297",
1270
+ "to": "RBTC"
1271
+ },
1272
+ {
1273
+ "from": "ARBETH",
1274
+ "max": "0.000535383333333333",
1275
+ "min": "10",
1276
+ "provider": "liquality",
1277
+ "rate": "3051.07728215",
1278
+ "to": "MATIC"
1279
+ },
1280
+ {
1281
+ "from": "AVAX",
1282
+ "max": "0",
1283
+ "min": "10",
1284
+ "provider": "liquality",
1285
+ "rate": "0.01411565",
1286
+ "to": "ETH"
1287
+ },
1288
+ {
1289
+ "from": "RBTC",
1290
+ "max": "0",
1291
+ "min": "0.002",
1292
+ "provider": "liquality",
1293
+ "rate": "14.95178685",
1294
+ "to": "ETH"
1295
+ },
1296
+ {
1297
+ "from": "DAI",
1298
+ "max": "0",
1299
+ "min": "100",
1300
+ "provider": "liquality",
1301
+ "rate": "0.52941176",
1302
+ "to": "SOV"
1303
+ },
1304
+ {
1305
+ "from": "SOL",
1306
+ "max": "0.021845833",
1307
+ "min": "0.1",
1308
+ "provider": "liquality",
1309
+ "rate": "74.77400589",
1310
+ "to": "MATIC"
1311
+ },
1312
+ {
1313
+ "from": "SOV",
1314
+ "max": "30.6368066998246",
1315
+ "min": "0.1",
1316
+ "provider": "liquality",
1317
+ "rate": "0.32308901",
1318
+ "to": "NEAR"
1319
+ },
1320
+ {
1321
+ "from": "DAI",
1322
+ "max": "0",
1323
+ "min": "100",
1324
+ "provider": "liquality",
1325
+ "rate": "0.00050864",
1326
+ "to": "ARBETH"
1327
+ },
1328
+ {
1329
+ "from": "ETH",
1330
+ "max": "0",
1331
+ "min": "0.05",
1332
+ "provider": "liquality",
1333
+ "rate": "40.3959434",
1334
+ "to": "SOL"
1335
+ },
1336
+ {
1337
+ "from": "BTC",
1338
+ "max": "0",
1339
+ "min": "0.002",
1340
+ "provider": "liquality",
1341
+ "rate": "610.12641509",
1342
+ "to": "SOL"
1343
+ },
1344
+ {
1345
+ "from": "SOV",
1346
+ "max": "0",
1347
+ "min": "0.1",
1348
+ "provider": "liquality",
1349
+ "rate": "0.06671351",
1350
+ "to": "AVAX"
1351
+ },
1352
+ {
1353
+ "from": "NEAR",
1354
+ "max": "0",
1355
+ "min": "10",
1356
+ "provider": "liquality",
1357
+ "rate": "3.03352941",
1358
+ "to": "SOV"
1359
+ },
1360
+ {
1361
+ "from": "AVAX",
1362
+ "max": "2.0645343462172",
1363
+ "min": "10",
1364
+ "provider": "liquality",
1365
+ "rate": "4.79450262",
1366
+ "to": "NEAR"
1367
+ },
1368
+ {
1369
+ "from": "NEAR",
1370
+ "max": "0.16941321423066666",
1371
+ "min": "10",
1372
+ "provider": "liquality",
1373
+ "rate": "0.00019284",
1374
+ "to": "BTC"
1375
+ },
1376
+ {
1377
+ "from": "MATIC",
1378
+ "max": "0",
1379
+ "min": "80",
1380
+ "provider": "liquality",
1381
+ "rate": "0.00032123",
1382
+ "to": "ARBETH"
1383
+ },
1384
+ {
1385
+ "from": "SOV",
1386
+ "max": "0.5192761605036667",
1387
+ "min": "0.1",
1388
+ "provider": "liquality",
1389
+ "rate": "0.00006291",
1390
+ "to": "BTC"
1391
+ },
1392
+ {
1393
+ "from": "BTC",
1394
+ "max": "0",
1395
+ "min": "0.002",
1396
+ "provider": "liquality",
1397
+ "rate": "1048.75783784",
1398
+ "to": "AVAX"
1399
+ },
1400
+ {
1401
+ "from": "MATIC",
1402
+ "max": "0",
1403
+ "min": "80",
1404
+ "provider": "liquality",
1405
+ "rate": "0.0131075",
1406
+ "to": "SOL"
1407
+ },
1408
+ {
1409
+ "from": "AVAX",
1410
+ "max": "0",
1411
+ "min": "10",
1412
+ "provider": "liquality",
1413
+ "rate": "14.69117647",
1414
+ "to": "SOV"
1415
+ },
1416
+ {
1417
+ "from": "BTC",
1418
+ "max": "0",
1419
+ "min": "0.002",
1420
+ "provider": "liquality",
1421
+ "rate": "14.952619",
1422
+ "to": "ARBETH"
1423
+ },
1424
+ {
1425
+ "from": "SOL",
1426
+ "max": "0",
1427
+ "min": "0.1",
1428
+ "provider": "liquality",
1429
+ "rate": "1.70172973",
1430
+ "to": "AVAX"
1431
+ },
1432
+ {
1433
+ "from": "DAI",
1434
+ "max": "0",
1435
+ "min": "100",
1436
+ "provider": "liquality",
1437
+ "rate": "0.02075472",
1438
+ "to": "SOL"
1439
+ },
1440
+ {
1441
+ "from": "ETH",
1442
+ "max": "0.000498480013666666",
1443
+ "min": "0.05",
1444
+ "provider": "liquality",
1445
+ "rate": "0.06553924",
1446
+ "to": "BTC"
1447
+ },
1448
+ {
1449
+ "from": "RBTC",
1450
+ "max": "0",
1451
+ "min": "0.002",
1452
+ "provider": "liquality",
1453
+ "rate": "14.952619",
1454
+ "to": "ARBETH"
1455
+ },
1456
+ {
1457
+ "from": "SOL",
1458
+ "max": "0",
1459
+ "min": "0.1",
1460
+ "provider": "liquality",
1461
+ "rate": "25.25294118",
1462
+ "to": "SOV"
1463
+ },
1464
+ {
1465
+ "from": "ARBETH",
1466
+ "max": "0",
1467
+ "min": "10",
1468
+ "provider": "liquality",
1469
+ "rate": "40.3959434",
1470
+ "to": "SOL"
1471
+ },
1472
+ {
1473
+ "from": "NEAR",
1474
+ "max": "0.18185793333333335",
1475
+ "min": "10",
1476
+ "provider": "liquality",
1477
+ "rate": "8.98228624",
1478
+ "to": "MATIC"
1479
+ },
1480
+ {
1481
+ "from": "BTC",
1482
+ "max": "0",
1483
+ "min": "0.002",
1484
+ "provider": "liquality",
1485
+ "rate": "0.99",
1486
+ "to": "RBTC"
1487
+ },
1488
+ {
1489
+ "from": "NEAR",
1490
+ "max": "0",
1491
+ "min": "10",
1492
+ "provider": "liquality",
1493
+ "rate": "0.20442162",
1494
+ "to": "AVAX"
1495
+ },
1496
+ {
1497
+ "from": "SOV",
1498
+ "max": "0",
1499
+ "min": "0.1",
1500
+ "provider": "liquality",
1501
+ "rate": "0.03881132",
1502
+ "to": "SOL"
1503
+ },
1504
+ {
1505
+ "from": "AVAX",
1506
+ "max": "0",
1507
+ "min": "10",
1508
+ "provider": "liquality",
1509
+ "rate": "27.4725",
1510
+ "to": "DAI"
1511
+ },
1512
+ {
1513
+ "from": "BTC",
1514
+ "max": "0",
1515
+ "min": "0.002",
1516
+ "provider": "liquality",
1517
+ "rate": "15563.11764706",
1518
+ "to": "SOV"
1519
+ },
1520
+ {
1521
+ "from": "ETH",
1522
+ "max": "0.000535383333333333",
1523
+ "min": "0.05",
1524
+ "provider": "liquality",
1525
+ "rate": "3051.07728215",
1526
+ "to": "MATIC"
1527
+ },
1528
+ {
1529
+ "from": "RBTC",
1530
+ "max": "0.001948879931533333",
1531
+ "min": "0.002",
1532
+ "provider": "liquality",
1533
+ "rate": "5079.06282723",
1534
+ "to": "NEAR"
1535
+ },
1536
+ {
1537
+ "from": "ETH",
1538
+ "max": "0",
1539
+ "min": "0.05",
1540
+ "provider": "liquality",
1541
+ "rate": "69.43735135",
1542
+ "to": "AVAX"
1543
+ },
1544
+ {
1545
+ "from": "SOL",
1546
+ "max": "0",
1547
+ "min": "0.1",
1548
+ "provider": "liquality",
1549
+ "rate": "47.223",
1550
+ "to": "DAI"
1551
+ },
1552
+ {
1553
+ "from": "AVAX",
1554
+ "max": "0.0375512",
1555
+ "min": "10",
1556
+ "provider": "liquality",
1557
+ "rate": "43.50060091",
1558
+ "to": "MATIC"
1559
+ },
1560
+ {
1561
+ "from": "MATIC",
1562
+ "max": "0",
1563
+ "min": "80",
1564
+ "provider": "liquality",
1565
+ "rate": "0.33434629",
1566
+ "to": "SOV"
1567
+ },
1568
+ {
1569
+ "from": "RBTC",
1570
+ "max": "0",
1571
+ "min": "0.002",
1572
+ "provider": "liquality",
1573
+ "rate": "15563.11764706",
1574
+ "to": "SOV"
1575
+ },
1576
+ {
1577
+ "from": "ARBETH",
1578
+ "max": "0",
1579
+ "min": "10",
1580
+ "provider": "liquality",
1581
+ "rate": "0.06554705",
1582
+ "to": "RBTC"
1583
+ },
1584
+ {
1585
+ "from": "DAI",
1586
+ "max": "57.290828562",
1587
+ "min": "100",
1588
+ "provider": "liquality",
1589
+ "rate": "0.17277487",
1590
+ "to": "NEAR"
1591
+ },
1592
+ {
1593
+ "from": "AVAX",
1594
+ "max": "0",
1595
+ "min": "10",
1596
+ "provider": "liquality",
1597
+ "rate": "0.5759434",
1598
+ "to": "SOL"
1599
+ },
1600
+ {
1601
+ "from": "ETH",
1602
+ "max": "0",
1603
+ "min": "0.05",
1604
+ "provider": "liquality",
1605
+ "rate": "0.99",
1606
+ "to": "ARBETH"
1607
+ },
1608
+ {
1609
+ "from": "ETH",
1610
+ "max": "0",
1611
+ "min": "0.05",
1612
+ "provider": "liquality",
1613
+ "rate": "1030.42058824",
1614
+ "to": "SOV"
1615
+ },
1616
+ {
1617
+ "from": "SOV",
1618
+ "max": "0",
1619
+ "min": "0.1",
1620
+ "provider": "liquality",
1621
+ "rate": "1.8513",
1622
+ "to": "DAI"
1623
+ },
1624
+ {
1625
+ "from": "DAI",
1626
+ "max": "0.9700176366843333",
1627
+ "min": "100",
1628
+ "provider": "liquality",
1629
+ "rate": "0.00003368",
1630
+ "to": "BTC"
1631
+ },
1632
+ {
1633
+ "from": "ARBETH",
1634
+ "max": "0.000498480013666666",
1635
+ "min": "10",
1636
+ "provider": "liquality",
1637
+ "rate": "0.06553924",
1638
+ "to": "BTC"
1639
+ },
1640
+ {
1641
+ "from": "MATIC",
1642
+ "max": "1.535597952536",
1643
+ "min": "80",
1644
+ "provider": "liquality",
1645
+ "rate": "0.00002128",
1646
+ "to": "BTC"
1647
+ },
1648
+ {
1649
+ "from": "RBTC",
1650
+ "max": "0.000032999999999999",
1651
+ "min": "0.002",
1652
+ "provider": "liquality",
1653
+ "rate": "0.99",
1654
+ "to": "BTC"
1655
+ },
1656
+ {
1657
+ "from": "ARBETH",
1658
+ "max": "0",
1659
+ "min": "10",
1660
+ "provider": "liquality",
1661
+ "rate": "0.99",
1662
+ "to": "ETH"
1663
+ },
1664
+ {
1665
+ "from": "SOL",
1666
+ "max": "0",
1667
+ "min": "0.1",
1668
+ "provider": "liquality",
1669
+ "rate": "0.02426337",
1670
+ "to": "ETH"
1671
+ },
1672
+ {
1673
+ "from": "SOL",
1674
+ "max": "0.020339108",
1675
+ "min": "0.1",
1676
+ "provider": "liquality",
1677
+ "rate": "0.00160627",
1678
+ "to": "BTC"
1679
+ },
1680
+ {
1681
+ "from": "BTC",
1682
+ "max": "0.00003545",
1683
+ "min": "0.002",
1684
+ "provider": "liquality",
1685
+ "rate": "46082.42035776",
1686
+ "to": "MATIC"
1687
+ },
1688
+ {
1689
+ "from": "NEAR",
1690
+ "max": "0",
1691
+ "min": "10",
1692
+ "provider": "liquality",
1693
+ "rate": "0.00291453",
1694
+ "to": "ARBETH"
1695
+ },
1696
+ {
1697
+ "from": "RBTC",
1698
+ "max": "0",
1699
+ "min": "0.002",
1700
+ "provider": "liquality",
1701
+ "rate": "1048.75783784",
1702
+ "to": "AVAX"
1703
+ },
1704
+ {
1705
+ "from": "SOV",
1706
+ "max": "0",
1707
+ "min": "0.1",
1708
+ "provider": "liquality",
1709
+ "rate": "0.00095117",
1710
+ "to": "ARBETH"
1711
+ },
1712
+ {
1713
+ "from": "NEAR",
1714
+ "max": "0",
1715
+ "min": "10",
1716
+ "provider": "liquality",
1717
+ "rate": "0.11892453",
1718
+ "to": "SOL"
1719
+ },
1720
+ {
1721
+ "from": "ARBETH",
1722
+ "max": "0.0294349848518",
1723
+ "min": "10",
1724
+ "provider": "liquality",
1725
+ "rate": "336.28036649",
1726
+ "to": "NEAR"
1727
+ },
1728
+ {
1729
+ "from": "ETH",
1730
+ "max": "0.0294349848518",
1731
+ "min": "0.05",
1732
+ "provider": "liquality",
1733
+ "rate": "336.28036649",
1734
+ "to": "NEAR"
1735
+ },
1736
+ {
1737
+ "from": "NEAR",
1738
+ "max": "0",
1739
+ "min": "10",
1740
+ "provider": "liquality",
1741
+ "rate": "0.00291304",
1742
+ "to": "ETH"
1743
+ },
1744
+ {
1745
+ "from": "ARBETH",
1746
+ "max": "0",
1747
+ "min": "10",
1748
+ "provider": "liquality",
1749
+ "rate": "1030.42058824",
1750
+ "to": "SOV"
1751
+ },
1752
+ {
1753
+ "from": "SOL",
1754
+ "max": "1.201065605",
1755
+ "min": "0.1",
1756
+ "provider": "liquality",
1757
+ "rate": "8.24136126",
1758
+ "to": "NEAR"
1759
+ },
1760
+ {
1761
+ "from": "MATIC",
1762
+ "max": "0",
1763
+ "min": "80",
1764
+ "provider": "liquality",
1765
+ "rate": "0.00002127",
1766
+ "to": "RBTC"
1767
+ },
1768
+ {
1769
+ "from": "MATIC",
1770
+ "max": "90.71564177034772",
1771
+ "min": "80",
1772
+ "provider": "liquality",
1773
+ "rate": "0.10911476",
1774
+ "to": "NEAR"
1775
+ },
1776
+ {
1777
+ "from": "MATIC",
1778
+ "max": "0",
1779
+ "min": "80",
1780
+ "provider": "liquality",
1781
+ "rate": "0.00032129",
1782
+ "to": "ETH"
1783
+ },
1784
+ {
1785
+ "from": "RBTC",
1786
+ "max": "0",
1787
+ "min": "0.002",
1788
+ "provider": "liquality",
1789
+ "rate": "610.12641509",
1790
+ "to": "SOL"
1791
+ },
1792
+ {
1793
+ "from": "ETH",
1794
+ "max": "0",
1795
+ "min": "0.05",
1796
+ "provider": "liquality",
1797
+ "rate": "1926.8865",
1798
+ "to": "DAI"
1799
+ },
1800
+ {
1801
+ "from": "DAI",
1802
+ "max": "1.04204595",
1803
+ "min": "100",
1804
+ "provider": "liquality",
1805
+ "rate": "1.56758922",
1806
+ "to": "MATIC"
1807
+ },
1808
+ {
1809
+ "from": "DAI",
1810
+ "max": "0",
1811
+ "min": "100",
1812
+ "provider": "liquality",
1813
+ "rate": "0.00003368",
1814
+ "to": "RBTC"
1815
+ },
1816
+ {
1817
+ "from": "BTC",
1818
+ "max": "0.00194887",
1819
+ "min": "0.002",
1820
+ "provider": "liquality",
1821
+ "rate": "5079.06282723",
1822
+ "to": "NEAR"
1823
+ },
1824
+ {
1825
+ "from": "BTC",
1826
+ "max": "0",
1827
+ "min": "0.002",
1828
+ "provider": "liquality",
1829
+ "rate": "14.95481427",
1830
+ "to": "ETH"
1831
+ },
1832
+ {
1833
+ "from": "ETH",
1834
+ "max": "0",
1835
+ "min": "0.05",
1836
+ "provider": "liquality",
1837
+ "rate": "0.06554705",
1838
+ "to": "RBTC"
1839
+ },
1840
+ {
1841
+ "from": "DAI",
1842
+ "max": "0",
1843
+ "min": "100",
1844
+ "provider": "liquality",
1845
+ "rate": "0.03567568",
1846
+ "to": "AVAX"
1847
+ },
1848
+ {
1849
+ "from": "NEAR",
1850
+ "max": "0",
1851
+ "min": "10",
1852
+ "provider": "liquality",
1853
+ "rate": "5.6727",
1854
+ "to": "DAI"
1855
+ },
1856
+ {
1857
+ "from": "RBTC",
1858
+ "max": "0",
1859
+ "min": "0.002",
1860
+ "provider": "liquality",
1861
+ "rate": "29103.03",
1862
+ "to": "DAI"
1863
+ },
1864
+ {
1865
+ "from": "SOV",
1866
+ "max": "0",
1867
+ "min": "0.1",
1868
+ "provider": "liquality",
1869
+ "rate": "0.00006298",
1870
+ "to": "RBTC"
1871
+ },
1872
+ {
1873
+ "from": "AVAX",
1874
+ "max": "0",
1875
+ "min": "10",
1876
+ "provider": "liquality",
1877
+ "rate": "0.01411488",
1878
+ "to": "ARBETH"
1879
+ },
1880
+ {
1881
+ "from": "AVAX",
1882
+ "max": "0.034960960261",
1883
+ "min": "10",
1884
+ "provider": "liquality",
1885
+ "rate": "0.00093447",
1886
+ "to": "BTC"
1887
+ },
1888
+ {
1889
+ "from": "DAI",
1890
+ "max": "0",
1891
+ "min": "100",
1892
+ "provider": "liquality",
1893
+ "rate": "0.00050881",
1894
+ "to": "ETH"
1895
+ },
1896
+ {
1897
+ "from": "BTC",
1898
+ "max": "0",
1899
+ "min": "0.002",
1900
+ "provider": "liquality",
1901
+ "rate": "29103.03",
1902
+ "to": "DAI"
1903
+ },
1904
+ {
1905
+ "from": "ARBETH",
1906
+ "max": "0",
1907
+ "min": "10",
1908
+ "provider": "liquality",
1909
+ "rate": "1926.8865",
1910
+ "to": "DAI"
1911
+ },
1912
+ {
1913
+ "from": "RBTC",
1914
+ "max": "0.00003545",
1915
+ "min": "0.002",
1916
+ "provider": "liquality",
1917
+ "rate": "46082.42035776",
1918
+ "to": "MATIC"
1919
+ },
1920
+ {
1921
+ "from": "SOV",
1922
+ "max": "0.5572438166666667",
1923
+ "min": "0.1",
1924
+ "provider": "liquality",
1925
+ "rate": "2.93139185",
1926
+ "to": "MATIC"
1927
+ },
1928
+ {
1929
+ "from": "SOV",
1930
+ "max": "0",
1931
+ "min": "0.1",
1932
+ "provider": "liquality",
1933
+ "rate": "0.00095036",
1934
+ "to": "ETH"
1935
+ }
1936
+ ]
1937
+ },
1938
+ "rskLegacyDerivation": false,
1939
+ "setupAt": 1653480213769,
1940
+ "termsAcceptedAt": 1653480196426,
1941
+ "usbBridgeWindowsId": 0,
1942
+ "version": 18,
1943
+ "watsNewModalVersion": "0.62.2"
1944
+ }