Merge pull request #766 from josepfo/feat/crypto-units-selector

feat: advanced wallet settings
This commit is contained in:
Rafael Taranto 2021-11-14 23:13:16 +00:00 committed by GitHub
commit 0881d00594
9 changed files with 222 additions and 47 deletions

View file

@ -132,6 +132,10 @@ const getCryptosFromWalletNamespace = config => {
const getCashInSettings = config => fromNamespace(namespaces.CASH_IN)(config)
const getCryptoUnits = (crypto, config) => {
return getWalletSettings(crypto, config).cryptoUnits
}
module.exports = {
getWalletSettings,
getCashInSettings,
@ -149,5 +153,6 @@ module.exports = {
getTriggers,
getTriggersAutomation,
getCashOut,
getCryptosFromWalletNamespace
getCryptosFromWalletNamespace,
getCryptoUnits
}