@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.
- package/CHANGELOG.md +804 -0
- package/README.md +163 -0
- package/dist/package.json +76 -0
- package/dist/src/build.config.d.ts +46 -0
- package/dist/src/build.config.js +237 -0
- package/dist/src/build.config.js.map +1 -0
- package/dist/src/factory/client/clients.d.ts +11 -0
- package/dist/src/factory/client/clients.js +119 -0
- package/dist/src/factory/client/clients.js.map +1 -0
- package/dist/src/factory/client/evm.d.ts +6 -0
- package/dist/src/factory/client/evm.js +71 -0
- package/dist/src/factory/client/evm.js.map +1 -0
- package/dist/src/factory/client/index.d.ts +11 -0
- package/dist/src/factory/client/index.js +38 -0
- package/dist/src/factory/client/index.js.map +1 -0
- package/dist/src/factory/client/nft.d.ts +4 -0
- package/dist/src/factory/client/nft.js +26 -0
- package/dist/src/factory/client/nft.js.map +1 -0
- package/dist/src/factory/index.d.ts +3 -0
- package/dist/src/factory/index.js +7 -0
- package/dist/src/factory/index.js.map +1 -0
- package/dist/src/factory/settings.d.ts +4 -0
- package/dist/src/factory/settings.js +27 -0
- package/dist/src/factory/settings.js.map +1 -0
- package/dist/src/factory/swap/index.d.ts +4 -0
- package/dist/src/factory/swap/index.js +66 -0
- package/dist/src/factory/swap/index.js.map +1 -0
- package/dist/src/index.d.ts +1619 -0
- package/dist/src/index.js +38 -0
- package/dist/src/index.js.map +1 -0
- package/dist/src/index.test.d.ts +1 -0
- package/dist/src/index.test.js +187 -0
- package/dist/src/index.test.js.map +1 -0
- package/dist/src/nameResolvers/nameResolver.d.ts +7 -0
- package/dist/src/nameResolvers/nameResolver.js +3 -0
- package/dist/src/nameResolvers/nameResolver.js.map +1 -0
- package/dist/src/nameResolvers/uns.d.ts +12 -0
- package/dist/src/nameResolvers/uns.js +83 -0
- package/dist/src/nameResolvers/uns.js.map +1 -0
- package/dist/src/nameResolvers/uns.test.d.ts +1 -0
- package/dist/src/nameResolvers/uns.test.js +29 -0
- package/dist/src/nameResolvers/uns.test.js.map +1 -0
- package/dist/src/store/actions/acceptTermsAndConditions.d.ts +4 -0
- package/dist/src/store/actions/acceptTermsAndConditions.js +17 -0
- package/dist/src/store/actions/acceptTermsAndConditions.js.map +1 -0
- package/dist/src/store/actions/acceptTermsAndConditions.test.d.ts +1 -0
- package/dist/src/store/actions/acceptTermsAndConditions.test.js +22 -0
- package/dist/src/store/actions/acceptTermsAndConditions.test.js.map +1 -0
- package/dist/src/store/actions/accounts/createAccount.d.ts +7 -0
- package/dist/src/store/actions/accounts/createAccount.js +27 -0
- package/dist/src/store/actions/accounts/createAccount.js.map +1 -0
- package/dist/src/store/actions/accounts/createAccount.test.d.ts +1 -0
- package/dist/src/store/actions/accounts/createAccount.test.js +29 -0
- package/dist/src/store/actions/accounts/createAccount.test.js.map +1 -0
- package/dist/src/store/actions/accounts/index.d.ts +5 -0
- package/dist/src/store/actions/accounts/index.js +9 -0
- package/dist/src/store/actions/accounts/index.js.map +1 -0
- package/dist/src/store/actions/accounts/removeAccount.d.ts +7 -0
- package/dist/src/store/actions/accounts/removeAccount.js +12 -0
- package/dist/src/store/actions/accounts/removeAccount.js.map +1 -0
- package/dist/src/store/actions/accounts/removeAccount.test.d.ts +1 -0
- package/dist/src/store/actions/accounts/removeAccount.test.js +53 -0
- package/dist/src/store/actions/accounts/removeAccount.test.js.map +1 -0
- package/dist/src/store/actions/accounts/toggleAccount.d.ts +8 -0
- package/dist/src/store/actions/accounts/toggleAccount.js +19 -0
- package/dist/src/store/actions/accounts/toggleAccount.js.map +1 -0
- package/dist/src/store/actions/accounts/toggleAccount.test.d.ts +1 -0
- package/dist/src/store/actions/accounts/toggleAccount.test.js +44 -0
- package/dist/src/store/actions/accounts/toggleAccount.test.js.map +1 -0
- package/dist/src/store/actions/accounts/toggleBlockchain.d.ts +9 -0
- package/dist/src/store/actions/accounts/toggleBlockchain.js +14 -0
- package/dist/src/store/actions/accounts/toggleBlockchain.js.map +1 -0
- package/dist/src/store/actions/accounts/updateAccount.d.ts +26 -0
- package/dist/src/store/actions/accounts/updateAccount.js +14 -0
- package/dist/src/store/actions/accounts/updateAccount.js.map +1 -0
- package/dist/src/store/actions/addCustomToken.d.ts +12 -0
- package/dist/src/store/actions/addCustomToken.js +12 -0
- package/dist/src/store/actions/addCustomToken.js.map +1 -0
- package/dist/src/store/actions/addCustomToken.test.d.ts +1 -0
- package/dist/src/store/actions/addCustomToken.test.js +59 -0
- package/dist/src/store/actions/addCustomToken.test.js.map +1 -0
- package/dist/src/store/actions/addExternalConnection.d.ts +9 -0
- package/dist/src/store/actions/addExternalConnection.js +13 -0
- package/dist/src/store/actions/addExternalConnection.js.map +1 -0
- package/dist/src/store/actions/addExternalConnection.test.d.ts +1 -0
- package/dist/src/store/actions/addExternalConnection.test.js +100 -0
- package/dist/src/store/actions/addExternalConnection.test.js.map +1 -0
- package/dist/src/store/actions/analytics.d.ts +21 -0
- package/dist/src/store/actions/analytics.js +58 -0
- package/dist/src/store/actions/analytics.js.map +1 -0
- package/dist/src/store/actions/analytics.test.d.ts +1 -0
- package/dist/src/store/actions/analytics.test.js +33 -0
- package/dist/src/store/actions/analytics.test.js.map +1 -0
- package/dist/src/store/actions/changeActiveNetwork.d.ts +5 -0
- package/dist/src/store/actions/changeActiveNetwork.js +13 -0
- package/dist/src/store/actions/changeActiveNetwork.js.map +1 -0
- package/dist/src/store/actions/changeActiveWalletId.d.ts +5 -0
- package/dist/src/store/actions/changeActiveWalletId.js +11 -0
- package/dist/src/store/actions/changeActiveWalletId.js.map +1 -0
- package/dist/src/store/actions/changeActiveWalletId.test.d.ts +1 -0
- package/dist/src/store/actions/changeActiveWalletId.test.js +40 -0
- package/dist/src/store/actions/changeActiveWalletId.test.js.map +1 -0
- package/dist/src/store/actions/changePassword.d.ts +4 -0
- package/dist/src/store/actions/changePassword.js +13 -0
- package/dist/src/store/actions/changePassword.js.map +1 -0
- package/dist/src/store/actions/changePassword.test.d.ts +1 -0
- package/dist/src/store/actions/changePassword.test.js +22 -0
- package/dist/src/store/actions/changePassword.test.js.map +1 -0
- package/dist/src/store/actions/checkPendingActions.d.ts +5 -0
- package/dist/src/store/actions/checkPendingActions.js +25 -0
- package/dist/src/store/actions/checkPendingActions.js.map +1 -0
- package/dist/src/store/actions/clearErrorLog.d.ts +2 -0
- package/dist/src/store/actions/clearErrorLog.js +10 -0
- package/dist/src/store/actions/clearErrorLog.js.map +1 -0
- package/dist/src/store/actions/createWallet.d.ts +7 -0
- package/dist/src/store/actions/createWallet.js +90 -0
- package/dist/src/store/actions/createWallet.js.map +1 -0
- package/dist/src/store/actions/createWallet.test.d.ts +1 -0
- package/dist/src/store/actions/createWallet.test.js +41 -0
- package/dist/src/store/actions/createWallet.test.js.map +1 -0
- package/dist/src/store/actions/customChainSettings.d.ts +15 -0
- package/dist/src/store/actions/customChainSettings.js +37 -0
- package/dist/src/store/actions/customChainSettings.js.map +1 -0
- package/dist/src/store/actions/disableAssets.d.ts +7 -0
- package/dist/src/store/actions/disableAssets.js +28 -0
- package/dist/src/store/actions/disableAssets.js.map +1 -0
- package/dist/src/store/actions/disableEthereumInjection.d.ts +2 -0
- package/dist/src/store/actions/disableEthereumInjection.js +11 -0
- package/dist/src/store/actions/disableEthereumInjection.js.map +1 -0
- package/dist/src/store/actions/disableEthereumInjection.test.d.ts +1 -0
- package/dist/src/store/actions/disableEthereumInjection.test.js +24 -0
- package/dist/src/store/actions/disableEthereumInjection.test.js.map +1 -0
- package/dist/src/store/actions/enableAssets.d.ts +7 -0
- package/dist/src/store/actions/enableAssets.js +65 -0
- package/dist/src/store/actions/enableAssets.js.map +1 -0
- package/dist/src/store/actions/enableAssets.test.d.ts +1 -0
- package/dist/src/store/actions/enableAssets.test.js +37 -0
- package/dist/src/store/actions/enableAssets.test.js.map +1 -0
- package/dist/src/store/actions/enableDisableAssets.test.d.ts +1 -0
- package/dist/src/store/actions/enableDisableAssets.test.js +79 -0
- package/dist/src/store/actions/enableDisableAssets.test.js.map +1 -0
- package/dist/src/store/actions/enableEthereumInjection.d.ts +2 -0
- package/dist/src/store/actions/enableEthereumInjection.js +11 -0
- package/dist/src/store/actions/enableEthereumInjection.js.map +1 -0
- package/dist/src/store/actions/exportPrivateKey.d.ts +9 -0
- package/dist/src/store/actions/exportPrivateKey.js +12 -0
- package/dist/src/store/actions/exportPrivateKey.js.map +1 -0
- package/dist/src/store/actions/exportPrivateKey.test.d.ts +1 -0
- package/dist/src/store/actions/exportPrivateKey.test.js +36 -0
- package/dist/src/store/actions/exportPrivateKey.test.js.map +1 -0
- package/dist/src/store/actions/fetchTokenDetails.d.ts +11 -0
- package/dist/src/store/actions/fetchTokenDetails.js +22 -0
- package/dist/src/store/actions/fetchTokenDetails.js.map +1 -0
- package/dist/src/store/actions/forgetDappConnections.d.ts +2 -0
- package/dist/src/store/actions/forgetDappConnections.js +11 -0
- package/dist/src/store/actions/forgetDappConnections.js.map +1 -0
- package/dist/src/store/actions/getLockForAsset.d.ts +8 -0
- package/dist/src/store/actions/getLockForAsset.js +34 -0
- package/dist/src/store/actions/getLockForAsset.js.map +1 -0
- package/dist/src/store/actions/getQuotes.d.ts +13 -0
- package/dist/src/store/actions/getQuotes.js +70 -0
- package/dist/src/store/actions/getQuotes.js.map +1 -0
- package/dist/src/store/actions/getQuotes.test.d.ts +1 -0
- package/dist/src/store/actions/getQuotes.test.js +30 -0
- package/dist/src/store/actions/getQuotes.test.js.map +1 -0
- package/dist/src/store/actions/getUnusedAddresses.d.ts +8 -0
- package/dist/src/store/actions/getUnusedAddresses.js +51 -0
- package/dist/src/store/actions/getUnusedAddresses.js.map +1 -0
- package/dist/src/store/actions/hardware-wallet/getLedgerAccounts.d.ts +16 -0
- package/dist/src/store/actions/hardware-wallet/getLedgerAccounts.js +57 -0
- package/dist/src/store/actions/hardware-wallet/getLedgerAccounts.js.map +1 -0
- package/dist/src/store/actions/hardware-wallet/index.d.ts +1 -0
- package/dist/src/store/actions/hardware-wallet/index.js +5 -0
- package/dist/src/store/actions/hardware-wallet/index.js.map +1 -0
- package/dist/src/store/actions/index.d.ts +47 -0
- package/dist/src/store/actions/index.js +51 -0
- package/dist/src/store/actions/index.js.map +1 -0
- package/dist/src/store/actions/initializeAddresses.d.ts +6 -0
- package/dist/src/store/actions/initializeAddresses.js +26 -0
- package/dist/src/store/actions/initializeAddresses.js.map +1 -0
- package/dist/src/store/actions/initializeAddresses.test.d.ts +1 -0
- package/dist/src/store/actions/initializeAddresses.test.js +58 -0
- package/dist/src/store/actions/initializeAddresses.test.js.map +1 -0
- package/dist/src/store/actions/lockWallet.d.ts +2 -0
- package/dist/src/store/actions/lockWallet.js +11 -0
- package/dist/src/store/actions/lockWallet.js.map +1 -0
- package/dist/src/store/actions/lockWallet.test.d.ts +1 -0
- package/dist/src/store/actions/lockWallet.test.js +24 -0
- package/dist/src/store/actions/lockWallet.test.js.map +1 -0
- package/dist/src/store/actions/logError.d.ts +3 -0
- package/dist/src/store/actions/logError.js +10 -0
- package/dist/src/store/actions/logError.js.map +1 -0
- package/dist/src/store/actions/logError.test.d.ts +1 -0
- package/dist/src/store/actions/logError.test.js +27 -0
- package/dist/src/store/actions/logError.test.js.map +1 -0
- package/dist/src/store/actions/newSwap.d.ts +12 -0
- package/dist/src/store/actions/newSwap.js +34 -0
- package/dist/src/store/actions/newSwap.js.map +1 -0
- package/dist/src/store/actions/performNextAction/index.d.ts +7 -0
- package/dist/src/store/actions/performNextAction/index.js +65 -0
- package/dist/src/store/actions/performNextAction/index.js.map +1 -0
- package/dist/src/store/actions/performNextAction/send.d.ts +7 -0
- package/dist/src/store/actions/performNextAction/send.js +54 -0
- package/dist/src/store/actions/performNextAction/send.js.map +1 -0
- package/dist/src/store/actions/performNextAction/sendNFT.d.ts +7 -0
- package/dist/src/store/actions/performNextAction/sendNFT.js +50 -0
- package/dist/src/store/actions/performNextAction/sendNFT.js.map +1 -0
- package/dist/src/store/actions/performNextAction/utils.d.ts +11 -0
- package/dist/src/store/actions/performNextAction/utils.js +42 -0
- package/dist/src/store/actions/performNextAction/utils.js.map +1 -0
- package/dist/src/store/actions/proxyMutation.d.ts +5 -0
- package/dist/src/store/actions/proxyMutation.js +9 -0
- package/dist/src/store/actions/proxyMutation.js.map +1 -0
- package/dist/src/store/actions/removeCustomToken.d.ts +7 -0
- package/dist/src/store/actions/removeCustomToken.js +11 -0
- package/dist/src/store/actions/removeCustomToken.js.map +1 -0
- package/dist/src/store/actions/retrySwap.d.ts +5 -0
- package/dist/src/store/actions/retrySwap.js +23 -0
- package/dist/src/store/actions/retrySwap.js.map +1 -0
- package/dist/src/store/actions/sendNFTTransaction.d.ts +4 -0
- package/dist/src/store/actions/sendNFTTransaction.js +47 -0
- package/dist/src/store/actions/sendNFTTransaction.js.map +1 -0
- package/dist/src/store/actions/sendTransaction.d.ts +17 -0
- package/dist/src/store/actions/sendTransaction.js +51 -0
- package/dist/src/store/actions/sendTransaction.js.map +1 -0
- package/dist/src/store/actions/sendTransaction.test.d.ts +1 -0
- package/dist/src/store/actions/sendTransaction.test.js +80 -0
- package/dist/src/store/actions/sendTransaction.test.js.map +1 -0
- package/dist/src/store/actions/setEthereumInjectionChain.d.ts +5 -0
- package/dist/src/store/actions/setEthereumInjectionChain.js +11 -0
- package/dist/src/store/actions/setEthereumInjectionChain.js.map +1 -0
- package/dist/src/store/actions/setEthereumInjectionChain.test.d.ts +1 -0
- package/dist/src/store/actions/setEthereumInjectionChain.test.js +20 -0
- package/dist/src/store/actions/setEthereumInjectionChain.test.js.map +1 -0
- package/dist/src/store/actions/setWhatsNewModalVersion.d.ts +4 -0
- package/dist/src/store/actions/setWhatsNewModalVersion.js +10 -0
- package/dist/src/store/actions/setWhatsNewModalVersion.js.map +1 -0
- package/dist/src/store/actions/setWhatsNewModalVersion.test.d.ts +1 -0
- package/dist/src/store/actions/setWhatsNewModalVersion.test.js +24 -0
- package/dist/src/store/actions/setWhatsNewModalVersion.test.js.map +1 -0
- package/dist/src/store/actions/showNotification.d.ts +2 -0
- package/dist/src/store/actions/showNotification.js +10 -0
- package/dist/src/store/actions/showNotification.js.map +1 -0
- package/dist/src/store/actions/toggleExperiment.d.ts +5 -0
- package/dist/src/store/actions/toggleExperiment.js +10 -0
- package/dist/src/store/actions/toggleExperiment.js.map +1 -0
- package/dist/src/store/actions/toggleExperiment.test.d.ts +1 -0
- package/dist/src/store/actions/toggleExperiment.test.js +34 -0
- package/dist/src/store/actions/toggleExperiment.test.js.map +1 -0
- package/dist/src/store/actions/toggleNFTStarred.d.ts +8 -0
- package/dist/src/store/actions/toggleNFTStarred.js +10 -0
- package/dist/src/store/actions/toggleNFTStarred.js.map +1 -0
- package/dist/src/store/actions/unlockWallet.d.ts +4 -0
- package/dist/src/store/actions/unlockWallet.js +22 -0
- package/dist/src/store/actions/unlockWallet.js.map +1 -0
- package/dist/src/store/actions/updateAccountBalance.d.ts +7 -0
- package/dist/src/store/actions/updateAccountBalance.js +29 -0
- package/dist/src/store/actions/updateAccountBalance.js.map +1 -0
- package/dist/src/store/actions/updateBalances.d.ts +9 -0
- package/dist/src/store/actions/updateBalances.js +169 -0
- package/dist/src/store/actions/updateBalances.js.map +1 -0
- package/dist/src/store/actions/updateBalances.test.d.ts +1 -0
- package/dist/src/store/actions/updateBalances.test.js +43 -0
- package/dist/src/store/actions/updateBalances.test.js.map +1 -0
- package/dist/src/store/actions/updateCurrenciesInfo.d.ts +5 -0
- package/dist/src/store/actions/updateCurrenciesInfo.js +14 -0
- package/dist/src/store/actions/updateCurrenciesInfo.js.map +1 -0
- package/dist/src/store/actions/updateFees.d.ts +6 -0
- package/dist/src/store/actions/updateFees.js +16 -0
- package/dist/src/store/actions/updateFees.js.map +1 -0
- package/dist/src/store/actions/updateFees.test.d.ts +1 -0
- package/dist/src/store/actions/updateFees.test.js +86 -0
- package/dist/src/store/actions/updateFees.test.js.map +1 -0
- package/dist/src/store/actions/updateFiatRates.d.ts +5 -0
- package/dist/src/store/actions/updateFiatRates.js +15 -0
- package/dist/src/store/actions/updateFiatRates.js.map +1 -0
- package/dist/src/store/actions/updateFiatRates.test.d.ts +1 -0
- package/dist/src/store/actions/updateFiatRates.test.js +43 -0
- package/dist/src/store/actions/updateFiatRates.test.js.map +1 -0
- package/dist/src/store/actions/updateMarketData.d.ts +8 -0
- package/dist/src/store/actions/updateMarketData.js +28 -0
- package/dist/src/store/actions/updateMarketData.js.map +1 -0
- package/dist/src/store/actions/updateMarketData.test.d.ts +1 -0
- package/dist/src/store/actions/updateMarketData.test.js +49 -0
- package/dist/src/store/actions/updateMarketData.test.js.map +1 -0
- package/dist/src/store/actions/updateNFTs.d.ts +7 -0
- package/dist/src/store/actions/updateNFTs.js +39 -0
- package/dist/src/store/actions/updateNFTs.js.map +1 -0
- package/dist/src/store/actions/updateNFTs.test.d.ts +1 -0
- package/dist/src/store/actions/updateNFTs.test.js +32 -0
- package/dist/src/store/actions/updateNFTs.test.js.map +1 -0
- package/dist/src/store/actions/updateTransactionFee.d.ts +11 -0
- package/dist/src/store/actions/updateTransactionFee.js +81 -0
- package/dist/src/store/actions/updateTransactionFee.js.map +1 -0
- package/dist/src/store/broker/notification.d.ts +4 -0
- package/dist/src/store/broker/notification.js +84 -0
- package/dist/src/store/broker/notification.js.map +1 -0
- package/dist/src/store/getters.d.ts +59 -0
- package/dist/src/store/getters.js +350 -0
- package/dist/src/store/getters.js.map +1 -0
- package/dist/src/store/index.d.ts +3524 -0
- package/dist/src/store/index.js +24 -0
- package/dist/src/store/index.js.map +1 -0
- package/dist/src/store/migrations/10_analytics_settings.d.ts +4 -0
- package/dist/src/store/migrations/10_analytics_settings.js +19 -0
- package/dist/src/store/migrations/10_analytics_settings.js.map +1 -0
- package/dist/src/store/migrations/11_12_rsk_legacy_derivation_path.d.ts +8 -0
- package/dist/src/store/migrations/11_12_rsk_legacy_derivation_path.js +22 -0
- package/dist/src/store/migrations/11_12_rsk_legacy_derivation_path.js.map +1 -0
- package/dist/src/store/migrations/13_rsk_fish_token.d.ts +4 -0
- package/dist/src/store/migrations/13_rsk_fish_token.js +19 -0
- package/dist/src/store/migrations/13_rsk_fish_token.js.map +1 -0
- package/dist/src/store/migrations/14_account_set_derivation_path.d.ts +4 -0
- package/dist/src/store/migrations/14_account_set_derivation_path.js +56 -0
- package/dist/src/store/migrations/14_account_set_derivation_path.js.map +1 -0
- package/dist/src/store/migrations/15_accounts_chains_set_enabled.d.ts +4 -0
- package/dist/src/store/migrations/15_accounts_chains_set_enabled.js +25 -0
- package/dist/src/store/migrations/15_accounts_chains_set_enabled.js.map +1 -0
- package/dist/src/store/migrations/16_enable_terra_chain.d.ts +4 -0
- package/dist/src/store/migrations/16_enable_terra_chain.js +10 -0
- package/dist/src/store/migrations/16_enable_terra_chain.js.map +1 -0
- package/dist/src/store/migrations/17_remove_injection_enabled.d.ts +4 -0
- package/dist/src/store/migrations/17_remove_injection_enabled.js +12 -0
- package/dist/src/store/migrations/17_remove_injection_enabled.js.map +1 -0
- package/dist/src/store/migrations/18_enable_avalanche_chain.d.ts +4 -0
- package/dist/src/store/migrations/18_enable_avalanche_chain.js +10 -0
- package/dist/src/store/migrations/18_enable_avalanche_chain.js.map +1 -0
- package/dist/src/store/migrations/19_remove_existing_ledger_accounts.d.ts +4 -0
- package/dist/src/store/migrations/19_remove_existing_ledger_accounts.js +25 -0
- package/dist/src/store/migrations/19_remove_existing_ledger_accounts.js.map +1 -0
- package/dist/src/store/migrations/19_remove_existing_ledger_accounts.state.pre.json +1944 -0
- package/dist/src/store/migrations/19_remove_existing_ledger_accounts_test.d.ts +1 -0
- package/dist/src/store/migrations/19_remove_existing_ledger_accounts_test.js +7 -0
- package/dist/src/store/migrations/19_remove_existing_ledger_accounts_test.js.map +1 -0
- package/dist/src/store/migrations/1_first_migration.d.ts +4 -0
- package/dist/src/store/migrations/1_first_migration.js +11 -0
- package/dist/src/store/migrations/1_first_migration.js.map +1 -0
- package/dist/src/store/migrations/20_fix_accounts.d.ts +4 -0
- package/dist/src/store/migrations/20_fix_accounts.js +68 -0
- package/dist/src/store/migrations/20_fix_accounts.js.map +1 -0
- package/dist/src/store/migrations/21_enable_solana_chain.d.ts +4 -0
- package/dist/src/store/migrations/21_enable_solana_chain.js +10 -0
- package/dist/src/store/migrations/21_enable_solana_chain.js.map +1 -0
- package/dist/src/store/migrations/22_enable_optimism_chain.d.ts +4 -0
- package/dist/src/store/migrations/22_enable_optimism_chain.js +10 -0
- package/dist/src/store/migrations/22_enable_optimism_chain.js.map +1 -0
- package/dist/src/store/migrations/2_set_default_assets.d.ts +4 -0
- package/dist/src/store/migrations/2_set_default_assets.js +20 -0
- package/dist/src/store/migrations/2_set_default_assets.js.map +1 -0
- package/dist/src/store/migrations/3_add_network_custom_tokens.d.ts +4 -0
- package/dist/src/store/migrations/3_add_network_custom_tokens.js +21 -0
- package/dist/src/store/migrations/3_add_network_custom_tokens.js.map +1 -0
- package/dist/src/store/migrations/4_fix_rsk_token_injected_asset.d.ts +4 -0
- package/dist/src/store/migrations/4_fix_rsk_token_injected_asset.js +15 -0
- package/dist/src/store/migrations/4_fix_rsk_token_injected_asset.js.map +1 -0
- package/dist/src/store/migrations/5_multiple_account_support.d.ts +4 -0
- package/dist/src/store/migrations/5_multiple_account_support.js +96 -0
- package/dist/src/store/migrations/5_multiple_account_support.js.map +1 -0
- package/dist/src/store/migrations/6_use_ledger_live_default.d.ts +4 -0
- package/dist/src/store/migrations/6_use_ledger_live_default.js +11 -0
- package/dist/src/store/migrations/6_use_ledger_live_default.js.map +1 -0
- package/dist/src/store/migrations/7_multi_provider_swaps.d.ts +4 -0
- package/dist/src/store/migrations/7_multi_provider_swaps.js +27 -0
- package/dist/src/store/migrations/7_multi_provider_swaps.js.map +1 -0
- package/dist/src/store/migrations/8_remove_use_ledger_live.d.ts +4 -0
- package/dist/src/store/migrations/8_remove_use_ledger_live.js +12 -0
- package/dist/src/store/migrations/8_remove_use_ledger_live.js.map +1 -0
- package/dist/src/store/migrations/9_inject_ethereum_asset_chain.d.ts +4 -0
- package/dist/src/store/migrations/9_inject_ethereum_asset_chain.js +14 -0
- package/dist/src/store/migrations/9_inject_ethereum_asset_chain.js.map +1 -0
- package/dist/src/store/migrations/before_after_migration_script.test.d.ts +1 -0
- package/dist/src/store/migrations/before_after_migration_script.test.js +92 -0
- package/dist/src/store/migrations/before_after_migration_script.test.js.map +1 -0
- package/dist/src/store/migrations/enable_chain.d.ts +3 -0
- package/dist/src/store/migrations/enable_chain.js +71 -0
- package/dist/src/store/migrations/enable_chain.js.map +1 -0
- package/dist/src/store/migrations/index.d.ts +5 -0
- package/dist/src/store/migrations/index.js +78 -0
- package/dist/src/store/migrations/index.js.map +1 -0
- package/dist/src/store/migrations/migration_script.test.d.ts +1 -0
- package/dist/src/store/migrations/migration_script.test.js +59 -0
- package/dist/src/store/migrations/migration_script.test.js.map +1 -0
- package/dist/src/store/mutations.d.ts +209 -0
- package/dist/src/store/mutations.js +348 -0
- package/dist/src/store/mutations.js.map +1 -0
- package/dist/src/store/state.d.ts +3 -0
- package/dist/src/store/state.js +46 -0
- package/dist/src/store/state.js.map +1 -0
- package/dist/src/store/types.d.ts +249 -0
- package/dist/src/store/types.js +64 -0
- package/dist/src/store/types.js.map +1 -0
- package/dist/src/store/utils.d.ts +38 -0
- package/dist/src/store/utils.js +194 -0
- package/dist/src/store/utils.js.map +1 -0
- package/dist/src/swaps/EvmSwapProvider.d.ts +32 -0
- package/dist/src/swaps/EvmSwapProvider.js +118 -0
- package/dist/src/swaps/EvmSwapProvider.js.map +1 -0
- package/dist/src/swaps/SwapProvider.d.ts +35 -0
- package/dist/src/swaps/SwapProvider.js +89 -0
- package/dist/src/swaps/SwapProvider.js.map +1 -0
- package/dist/src/swaps/astroport/AstroportSwapProvider.d.ts +67 -0
- package/dist/src/swaps/astroport/AstroportSwapProvider.js +251 -0
- package/dist/src/swaps/astroport/AstroportSwapProvider.js.map +1 -0
- package/dist/src/swaps/astroport/info.json +7 -0
- package/dist/src/swaps/astroport/queries.d.ts +108 -0
- package/dist/src/swaps/astroport/queries.js +227 -0
- package/dist/src/swaps/astroport/queries.js.map +1 -0
- package/dist/src/swaps/debridge/DeBridgeSwapProvider.d.ts +98 -0
- package/dist/src/swaps/debridge/DeBridgeSwapProvider.js +553 -0
- package/dist/src/swaps/debridge/DeBridgeSwapProvider.js.map +1 -0
- package/dist/src/swaps/debridge/abi/DeBridgeGate.json +1958 -0
- package/dist/src/swaps/debridge/abi/SignatureVerifier.json +925 -0
- package/dist/src/swaps/debridge/info.json +13 -0
- package/dist/src/swaps/fastbtc/FastBTCDepositSwapProvider.d.ts +103 -0
- package/dist/src/swaps/fastbtc/FastBTCDepositSwapProvider.js +292 -0
- package/dist/src/swaps/fastbtc/FastBTCDepositSwapProvider.js.map +1 -0
- package/dist/src/swaps/fastbtc/FastBTCWithdrawSwapProvider.d.ts +108 -0
- package/dist/src/swaps/fastbtc/FastBTCWithdrawSwapProvider.js +306 -0
- package/dist/src/swaps/fastbtc/FastBTCWithdrawSwapProvider.js.map +1 -0
- package/dist/src/swaps/fastbtc/fastBtcBridgeContract.d.ts +19 -0
- package/dist/src/swaps/fastbtc/fastBtcBridgeContract.js +24 -0
- package/dist/src/swaps/fastbtc/fastBtcBridgeContract.js.map +1 -0
- package/dist/src/swaps/fastbtc/info.json +7 -0
- package/dist/src/swaps/hop/HopSwapProvider.d.ts +124 -0
- package/dist/src/swaps/hop/HopSwapProvider.js +479 -0
- package/dist/src/swaps/hop/HopSwapProvider.js.map +1 -0
- package/dist/src/swaps/hop/info.json +12 -0
- package/dist/src/swaps/hop/queries.d.ts +2 -0
- package/dist/src/swaps/hop/queries.js +61 -0
- package/dist/src/swaps/hop/queries.js.map +1 -0
- package/dist/src/swaps/jupiter/JupiterSwapProvider.d.ts +46 -0
- package/dist/src/swaps/jupiter/JupiterSwapProvider.js +189 -0
- package/dist/src/swaps/jupiter/JupiterSwapProvider.js.map +1 -0
- package/dist/src/swaps/jupiter/info.json +7 -0
- package/dist/src/swaps/lifi/LifiSwapProvider.d.ts +76 -0
- package/dist/src/swaps/lifi/LifiSwapProvider.js +313 -0
- package/dist/src/swaps/lifi/LifiSwapProvider.js.map +1 -0
- package/dist/src/swaps/lifi/info.json +7 -0
- package/dist/src/swaps/liquality/LiqualitySwapProvider.d.ts +104 -0
- package/dist/src/swaps/liquality/LiqualitySwapProvider.js +704 -0
- package/dist/src/swaps/liquality/LiqualitySwapProvider.js.map +1 -0
- package/dist/src/swaps/liquality/info.json +7 -0
- package/dist/src/swaps/liqualityboost/liqualityBoostERC20toNative/LiqualityBoostERC20toNative.d.ts +124 -0
- package/dist/src/swaps/liqualityboost/liqualityBoostERC20toNative/LiqualityBoostERC20toNative.js +239 -0
- package/dist/src/swaps/liqualityboost/liqualityBoostERC20toNative/LiqualityBoostERC20toNative.js.map +1 -0
- package/dist/src/swaps/liqualityboost/liqualityBoostERC20toNative/info.json +7 -0
- package/dist/src/swaps/liqualityboost/liqualityBoostNativeToERC20/LiqualityBoostNativeToERC20.d.ts +52 -0
- package/dist/src/swaps/liqualityboost/liqualityBoostNativeToERC20/LiqualityBoostNativeToERC20.js +213 -0
- package/dist/src/swaps/liqualityboost/liqualityBoostNativeToERC20/LiqualityBoostNativeToERC20.js.map +1 -0
- package/dist/src/swaps/liqualityboost/liqualityBoostNativeToERC20/info.json +7 -0
- package/dist/src/swaps/liqualityboost/types.d.ts +17 -0
- package/dist/src/swaps/liqualityboost/types.js +3 -0
- package/dist/src/swaps/liqualityboost/types.js.map +1 -0
- package/dist/src/swaps/oneinch/OneinchSwapProvider.d.ts +86 -0
- package/dist/src/swaps/oneinch/OneinchSwapProvider.js +369 -0
- package/dist/src/swaps/oneinch/OneinchSwapProvider.js.map +1 -0
- package/dist/src/swaps/oneinch/info.json +13 -0
- package/dist/src/swaps/sovryn/SovrynSwapProvider.d.ts +110 -0
- package/dist/src/swaps/sovryn/SovrynSwapProvider.js +369 -0
- package/dist/src/swaps/sovryn/SovrynSwapProvider.js.map +1 -0
- package/dist/src/swaps/sovryn/info.json +7 -0
- package/dist/src/swaps/teleswap/TeleSwapSwapProvider.d.ts +167 -0
- package/dist/src/swaps/teleswap/TeleSwapSwapProvider.js +874 -0
- package/dist/src/swaps/teleswap/TeleSwapSwapProvider.js.map +1 -0
- package/dist/src/swaps/teleswap/info.json +7 -0
- package/dist/src/swaps/thorchain/ThorchainSwapProvider.d.ts +194 -0
- package/dist/src/swaps/thorchain/ThorchainSwapProvider.js +534 -0
- package/dist/src/swaps/thorchain/ThorchainSwapProvider.js.map +1 -0
- package/dist/src/swaps/thorchain/info.json +7 -0
- package/dist/src/swaps/types.d.ts +87 -0
- package/dist/src/swaps/types.js +9 -0
- package/dist/src/swaps/types.js.map +1 -0
- package/dist/src/swaps/uniswap/UniswapSwapProvider.d.ts +117 -0
- package/dist/src/swaps/uniswap/UniswapSwapProvider.js +438 -0
- package/dist/src/swaps/uniswap/UniswapSwapProvider.js.map +1 -0
- package/dist/src/swaps/uniswap/info.json +7 -0
- package/dist/src/swaps/utils.d.ts +92 -0
- package/dist/src/swaps/utils.js +57 -0
- package/dist/src/swaps/utils.js.map +1 -0
- package/dist/src/tsconfig.json +30 -0
- package/dist/src/types.d.ts +29 -0
- package/dist/src/types.js +3 -0
- package/dist/src/types.js.map +1 -0
- package/dist/src/utils/accounts.d.ts +16 -0
- package/dist/src/utils/accounts.js +89 -0
- package/dist/src/utils/accounts.js.map +1 -0
- package/dist/src/utils/address.d.ts +8 -0
- package/dist/src/utils/address.js +17 -0
- package/dist/src/utils/address.js.map +1 -0
- package/dist/src/utils/address.test.d.ts +1 -0
- package/dist/src/utils/address.test.js +12 -0
- package/dist/src/utils/address.test.js.map +1 -0
- package/dist/src/utils/asset.d.ts +22 -0
- package/dist/src/utils/asset.js +198 -0
- package/dist/src/utils/asset.js.map +1 -0
- package/dist/src/utils/asset.test.d.ts +1 -0
- package/dist/src/utils/asset.test.js +42 -0
- package/dist/src/utils/asset.test.js.map +1 -0
- package/dist/src/utils/chainify.d.ts +3 -0
- package/dist/src/utils/chainify.js +41 -0
- package/dist/src/utils/chainify.js.map +1 -0
- package/dist/src/utils/coinFormatter.d.ts +13 -0
- package/dist/src/utils/coinFormatter.js +58 -0
- package/dist/src/utils/coinFormatter.js.map +1 -0
- package/dist/src/utils/crypto.d.ts +6 -0
- package/dist/src/utils/crypto.js +70 -0
- package/dist/src/utils/crypto.js.map +1 -0
- package/dist/src/utils/cryptoassets.d.ts +5 -0
- package/dist/src/utils/cryptoassets.js +26 -0
- package/dist/src/utils/cryptoassets.js.map +1 -0
- package/dist/src/utils/derivationPath.d.ts +6 -0
- package/dist/src/utils/derivationPath.js +75 -0
- package/dist/src/utils/derivationPath.js.map +1 -0
- package/dist/src/utils/derivationPath.spec.d.ts +1 -0
- package/dist/src/utils/derivationPath.spec.js +37 -0
- package/dist/src/utils/derivationPath.spec.js.map +1 -0
- package/dist/src/utils/export.d.ts +5 -0
- package/dist/src/utils/export.js +24 -0
- package/dist/src/utils/export.js.map +1 -0
- package/dist/src/utils/fees.d.ts +43 -0
- package/dist/src/utils/fees.js +222 -0
- package/dist/src/utils/fees.js.map +1 -0
- package/dist/src/utils/fees.test.d.ts +1 -0
- package/dist/src/utils/fees.test.js +40 -0
- package/dist/src/utils/fees.test.js.map +1 -0
- package/dist/src/utils/fetchTokenDetails.d.ts +1 -0
- package/dist/src/utils/fetchTokenDetails.js +19 -0
- package/dist/src/utils/fetchTokenDetails.js.map +1 -0
- package/dist/src/utils/history.d.ts +66 -0
- package/dist/src/utils/history.js +135 -0
- package/dist/src/utils/history.js.map +1 -0
- package/dist/src/utils/isTransactionNotFoundError.d.ts +1 -0
- package/dist/src/utils/isTransactionNotFoundError.js +16 -0
- package/dist/src/utils/isTransactionNotFoundError.js.map +1 -0
- package/dist/src/utils/ledger.d.ts +12 -0
- package/dist/src/utils/ledger.js +38 -0
- package/dist/src/utils/ledger.js.map +1 -0
- package/dist/src/utils/moment.d.ts +2 -0
- package/dist/src/utils/moment.js +8 -0
- package/dist/src/utils/moment.js.map +1 -0
- package/dist/src/utils/networks.d.ts +10 -0
- package/dist/src/utils/networks.js +43 -0
- package/dist/src/utils/networks.js.map +1 -0
- package/dist/src/utils/parseTokenTx.d.ts +2 -0
- package/dist/src/utils/parseTokenTx.js +10 -0
- package/dist/src/utils/parseTokenTx.js.map +1 -0
- package/dist/src/utils/quotes.d.ts +5 -0
- package/dist/src/utils/quotes.js +20 -0
- package/dist/src/utils/quotes.js.map +1 -0
- package/dist/src/utils/quotes.test.d.ts +1 -0
- package/dist/src/utils/quotes.test.js +85 -0
- package/dist/src/utils/quotes.test.js.map +1 -0
- package/dist/src/utils/timeline.d.ts +71 -0
- package/dist/src/utils/timeline.js +176 -0
- package/dist/src/utils/timeline.js.map +1 -0
- package/dist/src/walletOptions/defaultOptions.d.ts +3 -0
- package/dist/src/walletOptions/defaultOptions.js +36 -0
- package/dist/src/walletOptions/defaultOptions.js.map +1 -0
- package/dist/src/walletOptions/index.d.ts +7 -0
- package/dist/src/walletOptions/index.js +11 -0
- package/dist/src/walletOptions/index.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +76 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,804 @@
|
|
|
1
|
+
# @yaswap/wallet-core
|
|
2
|
+
|
|
3
|
+
## 4.26.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 9a927abd: Change teleswap to use infura http provider instead of wss
|
|
8
|
+
|
|
9
|
+
## 4.25.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 2cce88d4: fixed near client setup and rpc settings
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [2cce88d4]
|
|
18
|
+
- @yaswap/cryptoassets@2.11.0
|
|
19
|
+
- @yaswap/error-parser@2.2.10
|
|
20
|
+
|
|
21
|
+
## 4.24.0
|
|
22
|
+
|
|
23
|
+
### Minor Changes
|
|
24
|
+
|
|
25
|
+
- 2b5bb0a5: Updated node providers and infura nft from chanify
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- Updated dependencies [2b5bb0a5]
|
|
30
|
+
- @yaswap/cryptoassets@2.10.0
|
|
31
|
+
- @yaswap/error-parser@2.2.9
|
|
32
|
+
|
|
33
|
+
## 4.23.0
|
|
34
|
+
|
|
35
|
+
### Minor Changes
|
|
36
|
+
|
|
37
|
+
- 180320d8: Fixed issues with fastBTC query
|
|
38
|
+
|
|
39
|
+
## 4.22.0
|
|
40
|
+
|
|
41
|
+
### Minor Changes
|
|
42
|
+
|
|
43
|
+
- 5a03a948: Updated nft providers and enable fastBTC
|
|
44
|
+
|
|
45
|
+
### Patch Changes
|
|
46
|
+
|
|
47
|
+
- Updated dependencies [5a03a948]
|
|
48
|
+
- @yaswap/cryptoassets@2.9.0
|
|
49
|
+
- @yaswap/error-parser@2.2.8
|
|
50
|
+
|
|
51
|
+
## 4.21.1
|
|
52
|
+
|
|
53
|
+
### Patch Changes
|
|
54
|
+
|
|
55
|
+
- Updated dependencies [831f1e86]
|
|
56
|
+
- @yaswap/cryptoassets@2.8.0
|
|
57
|
+
- @yaswap/error-parser@2.2.7
|
|
58
|
+
|
|
59
|
+
## 4.21.0
|
|
60
|
+
|
|
61
|
+
### Minor Changes
|
|
62
|
+
|
|
63
|
+
- 5e9c2a4a: Remove Liq boost providers
|
|
64
|
+
|
|
65
|
+
## 4.20.0
|
|
66
|
+
|
|
67
|
+
### Minor Changes
|
|
68
|
+
|
|
69
|
+
- 017921f9: Updated Teleswap icon path for mainnet
|
|
70
|
+
- 23e4c33a: updated default assets config
|
|
71
|
+
|
|
72
|
+
## 4.19.0
|
|
73
|
+
|
|
74
|
+
### Minor Changes
|
|
75
|
+
|
|
76
|
+
- 217cbda8: Updated version to include latest changes from dev
|
|
77
|
+
|
|
78
|
+
### Patch Changes
|
|
79
|
+
|
|
80
|
+
- Updated dependencies [217cbda8]
|
|
81
|
+
- @yaswap/cryptoassets@2.7.0
|
|
82
|
+
- @yaswap/error-parser@2.2.6
|
|
83
|
+
|
|
84
|
+
## 4.18.0
|
|
85
|
+
|
|
86
|
+
### Minor Changes
|
|
87
|
+
|
|
88
|
+
- 1058bc36: Bumped version for Teleswap integration
|
|
89
|
+
|
|
90
|
+
### Patch Changes
|
|
91
|
+
|
|
92
|
+
- Updated dependencies [1058bc36]
|
|
93
|
+
- @yaswap/cryptoassets@2.6.0
|
|
94
|
+
- @yaswap/error-parser@2.2.5
|
|
95
|
+
|
|
96
|
+
## 4.17.0
|
|
97
|
+
|
|
98
|
+
### Minor Changes
|
|
99
|
+
|
|
100
|
+
- 5391ea28: Teleport Dao Integration
|
|
101
|
+
|
|
102
|
+
### Patch Changes
|
|
103
|
+
|
|
104
|
+
- Updated dependencies [5391ea28]
|
|
105
|
+
- @yaswap/cryptoassets@2.5.0
|
|
106
|
+
- @yaswap/error-parser@2.2.4
|
|
107
|
+
|
|
108
|
+
## 4.16.0
|
|
109
|
+
|
|
110
|
+
### Minor Changes
|
|
111
|
+
|
|
112
|
+
- 7b8a495: removed fast btc deposit
|
|
113
|
+
- dcca896: Disable Fast BTC Swap Provider
|
|
114
|
+
|
|
115
|
+
## 4.15.1
|
|
116
|
+
|
|
117
|
+
### Patch Changes
|
|
118
|
+
|
|
119
|
+
- Updated dependencies [ef71d00]
|
|
120
|
+
- Updated dependencies [8cbbaee]
|
|
121
|
+
- @yaswap/cryptoassets@2.4.0
|
|
122
|
+
- @yaswap/error-parser@2.2.3
|
|
123
|
+
|
|
124
|
+
## 4.15.0
|
|
125
|
+
|
|
126
|
+
### Minor Changes
|
|
127
|
+
|
|
128
|
+
- 4b6bcbe: Updated chanifiy deps
|
|
129
|
+
- baf04a7: Updated chanify ledger packages
|
|
130
|
+
|
|
131
|
+
## 4.12.0
|
|
132
|
+
|
|
133
|
+
### Minor Changes
|
|
134
|
+
|
|
135
|
+
- 651126b: Updated channify versions for ledger packages
|
|
136
|
+
|
|
137
|
+
## 4.11.0
|
|
138
|
+
|
|
139
|
+
### Minor Changes
|
|
140
|
+
|
|
141
|
+
- 59bb6a3: Updated ledger chanify packages
|
|
142
|
+
|
|
143
|
+
## 4.10.0
|
|
144
|
+
|
|
145
|
+
### Minor Changes
|
|
146
|
+
|
|
147
|
+
- 1a64072: Updated with thorchain fixes
|
|
148
|
+
- cca4448: Fixed lint issues
|
|
149
|
+
|
|
150
|
+
### Patch Changes
|
|
151
|
+
|
|
152
|
+
- Updated dependencies [3e6dd4e]
|
|
153
|
+
- @yaswap/cryptoassets@2.3.0
|
|
154
|
+
- @yaswap/error-parser@2.2.1
|
|
155
|
+
|
|
156
|
+
## 4.9.0
|
|
157
|
+
|
|
158
|
+
### Minor Changes
|
|
159
|
+
|
|
160
|
+
- 7f7f84f: Fix thorchain url
|
|
161
|
+
|
|
162
|
+
### Patch Changes
|
|
163
|
+
|
|
164
|
+
- Updated dependencies [7f7f84f]
|
|
165
|
+
- @yaswap/cryptoassets@2.2.0
|
|
166
|
+
- @yaswap/error-parser@2.2.0
|
|
167
|
+
|
|
168
|
+
## 4.8.0
|
|
169
|
+
|
|
170
|
+
### Minor Changes
|
|
171
|
+
|
|
172
|
+
- bba4da2: Fixed build linting issues
|
|
173
|
+
- a243592: Added color to be updated inside accounts
|
|
174
|
+
|
|
175
|
+
## 4.7.0
|
|
176
|
+
|
|
177
|
+
### Minor Changes
|
|
178
|
+
|
|
179
|
+
- ba314cc: Added account alias to be updated
|
|
180
|
+
|
|
181
|
+
## 4.6.0
|
|
182
|
+
|
|
183
|
+
### Minor Changes
|
|
184
|
+
|
|
185
|
+
- d4db2d6: Fixed validation for Solana unsoported method for estimate transfer fees
|
|
186
|
+
|
|
187
|
+
## 4.5.0
|
|
188
|
+
|
|
189
|
+
### Minor Changes
|
|
190
|
+
|
|
191
|
+
- 66a384e: Disabled hop protocol from swap providers
|
|
192
|
+
|
|
193
|
+
## 4.4.0
|
|
194
|
+
|
|
195
|
+
### Minor Changes
|
|
196
|
+
|
|
197
|
+
- 2ec598f: Added default enabled assets for DAI, USDC and USDT in EVM chains
|
|
198
|
+
- b5e4530: Added default enabled assets for DAI, USDC and USDT in EVM chains
|
|
199
|
+
|
|
200
|
+
## 4.3.0
|
|
201
|
+
|
|
202
|
+
### Minor Changes
|
|
203
|
+
|
|
204
|
+
- 7a0fe4a: Fixed Optimism provider to use the right chainId settings
|
|
205
|
+
|
|
206
|
+
## 4.2.0
|
|
207
|
+
|
|
208
|
+
### Minor Changes
|
|
209
|
+
|
|
210
|
+
- c66cf6f: Set miner tip to always be above 30 in Polygon in all speeds
|
|
211
|
+
|
|
212
|
+
## 4.1.0
|
|
213
|
+
|
|
214
|
+
### Minor Changes
|
|
215
|
+
|
|
216
|
+
- 2439e04: Set the right gas limit amount for Lify and Hop Providers when use Arbitrum
|
|
217
|
+
- 0bd5027: Publish swap gas estimation fixes
|
|
218
|
+
- fef13b7: Updated arbiutrum fixes
|
|
219
|
+
- 02d4bf0: Bumped version
|
|
220
|
+
|
|
221
|
+
## 4.0.0
|
|
222
|
+
|
|
223
|
+
### Major Changes
|
|
224
|
+
|
|
225
|
+
- c90fba9: Updated custom settings bindings
|
|
226
|
+
|
|
227
|
+
### Minor Changes
|
|
228
|
+
|
|
229
|
+
- f4f0143: Fixed prettier issues
|
|
230
|
+
|
|
231
|
+
## 3.1.0
|
|
232
|
+
|
|
233
|
+
### Minor Changes
|
|
234
|
+
|
|
235
|
+
- 8a17872: Updted package from chanify and implemented custom rpc settings
|
|
236
|
+
|
|
237
|
+
### Patch Changes
|
|
238
|
+
|
|
239
|
+
- Updated dependencies [8a17872]
|
|
240
|
+
- @yaswap/error-parser@2.1.0
|
|
241
|
+
|
|
242
|
+
## 3.0.0
|
|
243
|
+
|
|
244
|
+
### Major Changes
|
|
245
|
+
|
|
246
|
+
- 1b62040: Error Parsing user consent
|
|
247
|
+
|
|
248
|
+
### Minor Changes
|
|
249
|
+
|
|
250
|
+
- 92d0788: Changes to fix Error report with user consent
|
|
251
|
+
|
|
252
|
+
### Patch Changes
|
|
253
|
+
|
|
254
|
+
- 25567cb: fix: add ledger error parser
|
|
255
|
+
fix: add jsonRPC error parser
|
|
256
|
+
fix: add error parser for debridge
|
|
257
|
+
fix: add error parser for thorchain
|
|
258
|
+
- 839c9eb: test: bump to next pre release version
|
|
259
|
+
- 366cf25: fix NFTs without token_id
|
|
260
|
+
- 594615f: test: bump versions
|
|
261
|
+
- 7f192b5: fix: add error parser for uniswapV2
|
|
262
|
+
fix: split messages going to discord
|
|
263
|
+
- 4b3b100: test: bump pre release version
|
|
264
|
+
- a9ffd93: fix: add new liquality error, LedgerDeviceSmartContractTransactionDisabledError
|
|
265
|
+
fix: make chainify proxy work after transpilation. sendTransaction, an async function is made into a regular function and causes undesireable effects
|
|
266
|
+
- 9e5ff10: fix: report error iff users wish to
|
|
267
|
+
- Updated dependencies [25567cb]
|
|
268
|
+
- Updated dependencies [aa5fe04]
|
|
269
|
+
- Updated dependencies [118f1a0]
|
|
270
|
+
- Updated dependencies [839c9eb]
|
|
271
|
+
- Updated dependencies [594615f]
|
|
272
|
+
- Updated dependencies [196dd88]
|
|
273
|
+
- Updated dependencies [7f192b5]
|
|
274
|
+
- Updated dependencies [4b3b100]
|
|
275
|
+
- Updated dependencies [a9ffd93]
|
|
276
|
+
- Updated dependencies [a9110e3]
|
|
277
|
+
- Updated dependencies [9e5ff10]
|
|
278
|
+
- @yaswap/error-parser@2.0.1
|
|
279
|
+
- @yaswap/cryptoassets@2.1.0
|
|
280
|
+
|
|
281
|
+
## 2.0.1-next.3
|
|
282
|
+
|
|
283
|
+
### Patch Changes
|
|
284
|
+
|
|
285
|
+
- 9e5ff10: fix: report error iff users wish to
|
|
286
|
+
- Updated dependencies [118f1a0]
|
|
287
|
+
- Updated dependencies [9e5ff10]
|
|
288
|
+
- @yaswap/error-parser@2.0.1-next.3
|
|
289
|
+
|
|
290
|
+
## 2.0.1-next.2
|
|
291
|
+
|
|
292
|
+
### Patch Changes
|
|
293
|
+
|
|
294
|
+
- 4b3b100: test: bump pre release version
|
|
295
|
+
- Updated dependencies [4b3b100]
|
|
296
|
+
- @yaswap/cryptoassets@2.1.0-next.2
|
|
297
|
+
- @yaswap/error-parser@2.0.1-next.2
|
|
298
|
+
|
|
299
|
+
## 2.0.1-next.1
|
|
300
|
+
|
|
301
|
+
### Patch Changes
|
|
302
|
+
|
|
303
|
+
- 839c9eb: test: bump to next pre release version
|
|
304
|
+
- 366cf25: fix NFTs without token_id
|
|
305
|
+
- a9ffd93: fix: add new liquality error, LedgerDeviceSmartContractTransactionDisabledError
|
|
306
|
+
fix: make chainify proxy work after transpilation. sendTransaction, an async function is made into a regular function and causes undesireable effects
|
|
307
|
+
- Updated dependencies [839c9eb]
|
|
308
|
+
- Updated dependencies [196dd88]
|
|
309
|
+
- Updated dependencies [a9ffd93]
|
|
310
|
+
- Updated dependencies [a9110e3]
|
|
311
|
+
- @yaswap/cryptoassets@2.1.0-next.1
|
|
312
|
+
- @yaswap/error-parser@2.0.1-next.1
|
|
313
|
+
|
|
314
|
+
## 2.0.1-next.0
|
|
315
|
+
|
|
316
|
+
### Patch Changes
|
|
317
|
+
|
|
318
|
+
- 594615f: test: bump versions
|
|
319
|
+
- Updated dependencies [aa5fe04]
|
|
320
|
+
- Updated dependencies [594615f]
|
|
321
|
+
- @yaswap/cryptoassets@2.1.0-next.0
|
|
322
|
+
- @yaswap/error-parser@2.0.1-next.0
|
|
323
|
+
|
|
324
|
+
## 2.0.0
|
|
325
|
+
|
|
326
|
+
### Patch Changes
|
|
327
|
+
|
|
328
|
+
- 1673543: test: bump versions from master for 0.78.0 release
|
|
329
|
+
- Updated dependencies [1673543]
|
|
330
|
+
- @yaswap/cryptoassets@2.0.0
|
|
331
|
+
- @yaswap/error-parser@2.0.0
|
|
332
|
+
|
|
333
|
+
## 2.0.0-next.6
|
|
334
|
+
|
|
335
|
+
### Patch Changes
|
|
336
|
+
|
|
337
|
+
- 5bb19d0: bump version after fix
|
|
338
|
+
- Updated dependencies [5bb19d0]
|
|
339
|
+
- @yaswap/cryptoassets@2.0.0-next.6
|
|
340
|
+
- @yaswap/error-parser@2.0.0-next.6
|
|
341
|
+
|
|
342
|
+
## 2.0.0-next.5
|
|
343
|
+
|
|
344
|
+
### Major Changes
|
|
345
|
+
|
|
346
|
+
- bc9b6a3: test: bump all along with error parser
|
|
347
|
+
|
|
348
|
+
### Patch Changes
|
|
349
|
+
|
|
350
|
+
- Updated dependencies [bc9b6a3]
|
|
351
|
+
- @yaswap/cryptoassets@2.0.0-next.5
|
|
352
|
+
- @yaswap/error-parser@2.0.0-next.5
|
|
353
|
+
|
|
354
|
+
## 1.31.4-next.4
|
|
355
|
+
|
|
356
|
+
### Patch Changes
|
|
357
|
+
|
|
358
|
+
- b1dbb31: test: bump pre release version
|
|
359
|
+
- Updated dependencies [b1dbb31]
|
|
360
|
+
- @yaswap/cryptoassets@1.16.3-next.4
|
|
361
|
+
- @yaswap/error-parser@1.1.4-next.4
|
|
362
|
+
|
|
363
|
+
## 1.31.4-next.3
|
|
364
|
+
|
|
365
|
+
### Patch Changes
|
|
366
|
+
|
|
367
|
+
- 07bd108: test: bump pre release
|
|
368
|
+
- Updated dependencies [07bd108]
|
|
369
|
+
- @yaswap/cryptoassets@1.16.3-next.3
|
|
370
|
+
- @yaswap/error-parser@1.1.4-next.3
|
|
371
|
+
|
|
372
|
+
## 1.31.4-next.2
|
|
373
|
+
|
|
374
|
+
### Patch Changes
|
|
375
|
+
|
|
376
|
+
- 3c309e1: fix: covalent api key
|
|
377
|
+
- Updated dependencies [3c309e1]
|
|
378
|
+
- @yaswap/cryptoassets@1.16.3-next.2
|
|
379
|
+
|
|
380
|
+
## 1.31.4-next.1
|
|
381
|
+
|
|
382
|
+
### Patch Changes
|
|
383
|
+
|
|
384
|
+
- a156f8e: test: bump versions to next
|
|
385
|
+
- Updated dependencies [a156f8e]
|
|
386
|
+
- @yaswap/cryptoassets@1.16.3-next.1
|
|
387
|
+
|
|
388
|
+
## 1.31.4-next.0
|
|
389
|
+
|
|
390
|
+
### Patch Changes
|
|
391
|
+
|
|
392
|
+
- test: bump versions
|
|
393
|
+
- Updated dependencies
|
|
394
|
+
- @yaswap/cryptoassets@1.16.3-next.0
|
|
395
|
+
|
|
396
|
+
## 1.31.3
|
|
397
|
+
|
|
398
|
+
### Patch Changes
|
|
399
|
+
|
|
400
|
+
- 2173cb9: feat: bump wallet core version with slippage % debridge
|
|
401
|
+
|
|
402
|
+
## 1.31.2
|
|
403
|
+
|
|
404
|
+
### Patch Changes
|
|
405
|
+
|
|
406
|
+
- 2ecbc28: test: bump versions with toggle fix
|
|
407
|
+
- Updated dependencies [2ecbc28]
|
|
408
|
+
- @yaswap/cryptoassets@1.16.2
|
|
409
|
+
|
|
410
|
+
## 1.31.1
|
|
411
|
+
|
|
412
|
+
### Patch Changes
|
|
413
|
+
|
|
414
|
+
- 0dd1f89: test: bump versions from master
|
|
415
|
+
- Updated dependencies [0dd1f89]
|
|
416
|
+
- @yaswap/cryptoassets@1.16.1
|
|
417
|
+
|
|
418
|
+
## 1.31.0
|
|
419
|
+
|
|
420
|
+
### Patch Changes
|
|
421
|
+
|
|
422
|
+
- 17378a0: test: bump versions for 0.76.0 release
|
|
423
|
+
- Updated dependencies [17378a0]
|
|
424
|
+
- @yaswap/cryptoassets@1.16.0
|
|
425
|
+
|
|
426
|
+
## 1.31.0-next.5
|
|
427
|
+
|
|
428
|
+
### Patch Changes
|
|
429
|
+
|
|
430
|
+
- 840dbd8: chore: bump versions after lifi integration
|
|
431
|
+
- Updated dependencies [840dbd8]
|
|
432
|
+
- @yaswap/cryptoassets@1.16.0-next.5
|
|
433
|
+
|
|
434
|
+
## 1.31.0-next.4
|
|
435
|
+
|
|
436
|
+
### Minor Changes
|
|
437
|
+
|
|
438
|
+
- fa3595a: fix debridge and testnet issues
|
|
439
|
+
|
|
440
|
+
### Patch Changes
|
|
441
|
+
|
|
442
|
+
- Updated dependencies [fa3595a]
|
|
443
|
+
- @yaswap/cryptoassets@1.16.0-next.4
|
|
444
|
+
|
|
445
|
+
## 1.31.0-next.3
|
|
446
|
+
|
|
447
|
+
### Minor Changes
|
|
448
|
+
|
|
449
|
+
- 7454432: lifi + debridge + goerli
|
|
450
|
+
|
|
451
|
+
### Patch Changes
|
|
452
|
+
|
|
453
|
+
- Updated dependencies [7454432]
|
|
454
|
+
- @yaswap/cryptoassets@1.16.0-next.3
|
|
455
|
+
|
|
456
|
+
## 1.31.0-next.2
|
|
457
|
+
|
|
458
|
+
### Minor Changes
|
|
459
|
+
|
|
460
|
+
- 412e1d1: bump
|
|
461
|
+
- 412e1d1: bump2
|
|
462
|
+
|
|
463
|
+
### Patch Changes
|
|
464
|
+
|
|
465
|
+
- Updated dependencies [412e1d1]
|
|
466
|
+
- Updated dependencies [412e1d1]
|
|
467
|
+
- @yaswap/cryptoassets@1.16.0-next.2
|
|
468
|
+
|
|
469
|
+
## 1.31.0-next.1
|
|
470
|
+
|
|
471
|
+
### Minor Changes
|
|
472
|
+
|
|
473
|
+
- b9db052: increment
|
|
474
|
+
|
|
475
|
+
### Patch Changes
|
|
476
|
+
|
|
477
|
+
- Updated dependencies [b9db052]
|
|
478
|
+
- @yaswap/cryptoassets@1.16.0-next.1
|
|
479
|
+
|
|
480
|
+
## 1.31.0-next.0
|
|
481
|
+
|
|
482
|
+
### Minor Changes
|
|
483
|
+
|
|
484
|
+
- 3d90aee: Lifi + debridge + goerli testnet
|
|
485
|
+
- e45d2cb: fix: debridge rpc url
|
|
486
|
+
- 61c228e: feat: eth testnet to goerli
|
|
487
|
+
|
|
488
|
+
### Patch Changes
|
|
489
|
+
|
|
490
|
+
- Updated dependencies [3d90aee]
|
|
491
|
+
- Updated dependencies [e45d2cb]
|
|
492
|
+
- Updated dependencies [61c228e]
|
|
493
|
+
- @yaswap/cryptoassets@1.16.0-next.0
|
|
494
|
+
|
|
495
|
+
## 1.30.3
|
|
496
|
+
|
|
497
|
+
### Patch Changes
|
|
498
|
+
|
|
499
|
+
- d764511: - fix fetching assets
|
|
500
|
+
- Updated dependencies [d764511]
|
|
501
|
+
- @yaswap/cryptoassets@1.15.3
|
|
502
|
+
|
|
503
|
+
## 1.30.2
|
|
504
|
+
|
|
505
|
+
### Patch Changes
|
|
506
|
+
|
|
507
|
+
- efdc92d: fix: pass solana rpc as environmnet variable
|
|
508
|
+
- Updated dependencies [efdc92d]
|
|
509
|
+
- @yaswap/cryptoassets@1.15.2
|
|
510
|
+
|
|
511
|
+
## 1.30.1
|
|
512
|
+
|
|
513
|
+
### Patch Changes
|
|
514
|
+
|
|
515
|
+
- 1ae3e84: fix: bump versions from master
|
|
516
|
+
- Updated dependencies [1ae3e84]
|
|
517
|
+
- @yaswap/cryptoassets@1.15.1
|
|
518
|
+
|
|
519
|
+
## 1.30.0
|
|
520
|
+
|
|
521
|
+
### Minor Changes
|
|
522
|
+
|
|
523
|
+
- 87ea3f6: - evm chains work under same logic now
|
|
524
|
+
|
|
525
|
+
### Patch Changes
|
|
526
|
+
|
|
527
|
+
- Updated dependencies [87ea3f6]
|
|
528
|
+
- @yaswap/cryptoassets@1.15.0
|
|
529
|
+
|
|
530
|
+
## 1.29.25
|
|
531
|
+
|
|
532
|
+
### Patch Changes
|
|
533
|
+
|
|
534
|
+
- bd46603: test: bump all versions for hot fix solana endpoints change
|
|
535
|
+
- Updated dependencies [bd46603]
|
|
536
|
+
- @yaswap/cryptoassets@1.14.20
|
|
537
|
+
|
|
538
|
+
## 1.29.24
|
|
539
|
+
|
|
540
|
+
### Patch Changes
|
|
541
|
+
|
|
542
|
+
- Updated dependencies [4a746a4]
|
|
543
|
+
- @yaswap/cryptoassets@1.14.19
|
|
544
|
+
|
|
545
|
+
## 1.29.23
|
|
546
|
+
|
|
547
|
+
### Patch Changes
|
|
548
|
+
|
|
549
|
+
- f6394a0: fix: revert some changes and bump versions
|
|
550
|
+
- Updated dependencies [f6394a0]
|
|
551
|
+
- @yaswap/cryptoassets@1.14.18
|
|
552
|
+
|
|
553
|
+
## 1.29.22
|
|
554
|
+
|
|
555
|
+
### Patch Changes
|
|
556
|
+
|
|
557
|
+
- 3c0113f: test: bump patch versions
|
|
558
|
+
- e466d4f: test: bump versions
|
|
559
|
+
- Updated dependencies [3c0113f]
|
|
560
|
+
- Updated dependencies [e466d4f]
|
|
561
|
+
- @yaswap/cryptoassets@1.14.17
|
|
562
|
+
|
|
563
|
+
## 1.29.21
|
|
564
|
+
|
|
565
|
+
### Patch Changes
|
|
566
|
+
|
|
567
|
+
- 955a8c3: feat: bump to patch versions for 0.73.0
|
|
568
|
+
- Updated dependencies [955a8c3]
|
|
569
|
+
- @yaswap/cryptoassets@1.14.16
|
|
570
|
+
|
|
571
|
+
## 1.29.21-next.1
|
|
572
|
+
|
|
573
|
+
### Patch Changes
|
|
574
|
+
|
|
575
|
+
- af3fca0: test: bump versions
|
|
576
|
+
- Updated dependencies [af3fca0]
|
|
577
|
+
- @yaswap/cryptoassets@1.14.16-next.1
|
|
578
|
+
|
|
579
|
+
## 1.29.21-next.0
|
|
580
|
+
|
|
581
|
+
### Patch Changes
|
|
582
|
+
|
|
583
|
+
- 671dea7: Bump up Chainify package
|
|
584
|
+
- 06aebc7: fix: regression bugs bump version
|
|
585
|
+
- Updated dependencies [06aebc7]
|
|
586
|
+
- @yaswap/cryptoassets@1.14.16-next.0
|
|
587
|
+
|
|
588
|
+
## 1.29.20
|
|
589
|
+
|
|
590
|
+
### Patch Changes
|
|
591
|
+
|
|
592
|
+
- 8f4b740: test: bump version from master test
|
|
593
|
+
- Updated dependencies [8f4b740]
|
|
594
|
+
- @yaswap/cryptoassets@1.14.15
|
|
595
|
+
|
|
596
|
+
## 1.29.19
|
|
597
|
+
|
|
598
|
+
### Patch Changes
|
|
599
|
+
|
|
600
|
+
- c632674: test: bump all packages after remove logic from ci
|
|
601
|
+
- Updated dependencies [c632674]
|
|
602
|
+
- @yaswap/cryptoassets@1.14.14
|
|
603
|
+
|
|
604
|
+
## 1.29.18
|
|
605
|
+
|
|
606
|
+
### Patch Changes
|
|
607
|
+
|
|
608
|
+
- 1784096: feat: bump version from master after yarn lock file
|
|
609
|
+
- Updated dependencies [1784096]
|
|
610
|
+
- @yaswap/cryptoassets@1.14.13
|
|
611
|
+
|
|
612
|
+
## 1.29.17
|
|
613
|
+
|
|
614
|
+
### Patch Changes
|
|
615
|
+
|
|
616
|
+
- fe656f0: test: testing bump version without running changeset version command local
|
|
617
|
+
- 66038e7: test: bump another next version from develop branch
|
|
618
|
+
- 66038e7: test: test another pre release bump
|
|
619
|
+
- f552f0e: feat: bump patch version from master branch for rc0.73.0
|
|
620
|
+
- ae1b06b: Wallet core minor bump
|
|
621
|
+
- Updated dependencies [fe656f0]
|
|
622
|
+
- Updated dependencies [66038e7]
|
|
623
|
+
- Updated dependencies [66038e7]
|
|
624
|
+
- Updated dependencies [f552f0e]
|
|
625
|
+
- @yaswap/cryptoassets@1.14.12
|
|
626
|
+
|
|
627
|
+
## 1.29.17-next.4
|
|
628
|
+
|
|
629
|
+
### Patch Changes
|
|
630
|
+
|
|
631
|
+
- ae1b06b: Wallet core minor bump
|
|
632
|
+
|
|
633
|
+
## 1.29.17-next.3
|
|
634
|
+
|
|
635
|
+
### Patch Changes
|
|
636
|
+
|
|
637
|
+
- fe656f0: test: testing bump version without running changeset version command local
|
|
638
|
+
- Updated dependencies [fe656f0]
|
|
639
|
+
- @yaswap/cryptoassets@1.14.12-next.3
|
|
640
|
+
|
|
641
|
+
## 1.29.17-next.2
|
|
642
|
+
|
|
643
|
+
### Patch Changes
|
|
644
|
+
|
|
645
|
+
- test: test another pre release bump
|
|
646
|
+
- Updated dependencies
|
|
647
|
+
- @yaswap/cryptoassets@1.14.12-next.2
|
|
648
|
+
|
|
649
|
+
## 1.29.17-next.1
|
|
650
|
+
|
|
651
|
+
### Patch Changes
|
|
652
|
+
|
|
653
|
+
- test: bump another next version from develop branch
|
|
654
|
+
- Updated dependencies
|
|
655
|
+
- @yaswap/cryptoassets@1.14.12-next.1
|
|
656
|
+
|
|
657
|
+
## 1.29.17-next.0
|
|
658
|
+
|
|
659
|
+
### Patch Changes
|
|
660
|
+
|
|
661
|
+
- 179f0b4: test: prerelease version bump
|
|
662
|
+
- Updated dependencies [179f0b4]
|
|
663
|
+
- @yaswap/cryptoassets@1.14.12-next.0
|
|
664
|
+
|
|
665
|
+
## 1.29.16
|
|
666
|
+
|
|
667
|
+
### Patch Changes
|
|
668
|
+
|
|
669
|
+
- 5e73c63: feat: bump all versions from master
|
|
670
|
+
- Updated dependencies [5e73c63]
|
|
671
|
+
- @yaswap/cryptoassets@1.14.11
|
|
672
|
+
|
|
673
|
+
## 1.29.14
|
|
674
|
+
|
|
675
|
+
### Patch Changes
|
|
676
|
+
|
|
677
|
+
- 7f1b399: Add account id for client getter inside NFT send transaction action
|
|
678
|
+
|
|
679
|
+
## 1.29.15
|
|
680
|
+
|
|
681
|
+
### Patch Changes
|
|
682
|
+
|
|
683
|
+
- 52f0702: - fix RSK address validation
|
|
684
|
+
- Updated dependencies [52f0702]
|
|
685
|
+
- @yaswap/cryptoassets@1.14.10
|
|
686
|
+
|
|
687
|
+
## 1.29.13
|
|
688
|
+
|
|
689
|
+
### Patch Changes
|
|
690
|
+
|
|
691
|
+
- a45924d: - fix address validation for evm chains
|
|
692
|
+
- Updated dependencies [a45924d]
|
|
693
|
+
- c9f3735: - fix address validation for evm chains
|
|
694
|
+
- Updated dependencies [c9f3735]
|
|
695
|
+
- @yaswap/cryptoassets@1.14.8
|
|
696
|
+
|
|
697
|
+
## 1.29.12
|
|
698
|
+
|
|
699
|
+
### Patch Changes
|
|
700
|
+
|
|
701
|
+
- 376246d: test: testing bump versions with beta tag
|
|
702
|
+
- Updated dependencies [376246d]
|
|
703
|
+
- 7179204: chore: bump versions with correct script
|
|
704
|
+
- Updated dependencies [7179204]
|
|
705
|
+
- @yaswap/cryptoassets@1.14.7
|
|
706
|
+
|
|
707
|
+
## 1.29.11
|
|
708
|
+
|
|
709
|
+
### Patch Changes
|
|
710
|
+
|
|
711
|
+
- f3bb88f: fix: uns name resolving
|
|
712
|
+
- Updated dependencies [f3bb88f]
|
|
713
|
+
- 9e0c685: core: bump both packages versions
|
|
714
|
+
- Updated dependencies [9e0c685]
|
|
715
|
+
- @yaswap/cryptoassets@1.14.6
|
|
716
|
+
|
|
717
|
+
## 1.29.10
|
|
718
|
+
|
|
719
|
+
### Patch Changes
|
|
720
|
+
|
|
721
|
+
- fa2d81f: test: test publishing single package
|
|
722
|
+
|
|
723
|
+
## 1.29.9
|
|
724
|
+
|
|
725
|
+
### Patch Changes
|
|
726
|
+
|
|
727
|
+
- 62a7f32: test: testing changeset publish
|
|
728
|
+
- Updated dependencies [62a7f32]
|
|
729
|
+
- @yaswap/cryptoassets@1.14.5
|
|
730
|
+
|
|
731
|
+
## 1.29.8
|
|
732
|
+
|
|
733
|
+
### Patch Changes
|
|
734
|
+
|
|
735
|
+
- 76252fd: test: test yarn issue
|
|
736
|
+
- Updated dependencies [76252fd]
|
|
737
|
+
- @yaswap/cryptoassets@1.14.4
|
|
738
|
+
|
|
739
|
+
## 1.29.7
|
|
740
|
+
|
|
741
|
+
### Patch Changes
|
|
742
|
+
|
|
743
|
+
- f80033c: test: testing yarn exit issue
|
|
744
|
+
|
|
745
|
+
## 1.29.6
|
|
746
|
+
|
|
747
|
+
### Patch Changes
|
|
748
|
+
|
|
749
|
+
- 266526d: test: bump wallet core version for testing
|
|
750
|
+
|
|
751
|
+
## 1.29.5
|
|
752
|
+
|
|
753
|
+
### Patch Changes
|
|
754
|
+
|
|
755
|
+
- 783263e: feat: bump wallet core for testing
|
|
756
|
+
|
|
757
|
+
## 1.29.4
|
|
758
|
+
|
|
759
|
+
### Patch Changes
|
|
760
|
+
|
|
761
|
+
- 3a367a2: ci: added git release flag
|
|
762
|
+
|
|
763
|
+
## 1.29.3
|
|
764
|
+
|
|
765
|
+
### Patch Changes
|
|
766
|
+
|
|
767
|
+
- 457fd1a: feat: optimism chain integration
|
|
768
|
+
- Updated dependencies [457fd1a]
|
|
769
|
+
- @yaswap/cryptoassets@1.14.3
|
|
770
|
+
|
|
771
|
+
## 1.29.2
|
|
772
|
+
|
|
773
|
+
### Patch Changes
|
|
774
|
+
|
|
775
|
+
- ec9a3b9: fix: fix the script in package.json
|
|
776
|
+
- Updated dependencies [ec9a3b9]
|
|
777
|
+
- @yaswap/cryptoassets@1.14.2
|
|
778
|
+
|
|
779
|
+
## 1.29.1
|
|
780
|
+
|
|
781
|
+
### Patch Changes
|
|
782
|
+
|
|
783
|
+
- e268c44: fix: added npm token to yarnnc
|
|
784
|
+
- Updated dependencies [e268c44]
|
|
785
|
+
- @yaswap/cryptoassets@1.14.1
|
|
786
|
+
|
|
787
|
+
## 1.29.0
|
|
788
|
+
|
|
789
|
+
### Minor Changes
|
|
790
|
+
|
|
791
|
+
- 607345e: fix: UNS should resolve for polygon correctly and test
|
|
792
|
+
|
|
793
|
+
### Patch Changes
|
|
794
|
+
|
|
795
|
+
- Updated dependencies [607345e]
|
|
796
|
+
- @yaswap/cryptoassets@1.14.0
|
|
797
|
+
|
|
798
|
+
## 1.28.6
|
|
799
|
+
|
|
800
|
+
### Patch Changes
|
|
801
|
+
|
|
802
|
+
- eb07864: ci: update timestamp
|
|
803
|
+
- Updated dependencies [eb07864]
|
|
804
|
+
- @yaswap/cryptoassets@1.13.6
|