import QtQuick 2.13 import utils 1.0 import shared.stores 1.0 import "../../../app/AppLayouts/Profile/stores" QtObject { id: root property CurrenciesStore currencyStore: CurrenciesStore { } property ProfileSectionStore profileSectionStore: ProfileSectionStore {} property var contactStore: profileSectionStore.contactsStore property var mainModuleInst: mainModule property var walletSectionTransactionsInst: walletSectionTransactions property string locale: localAppSettings.language property string currentCurrency: walletSection.currentCurrency property var allNetworks: networksModule.all property var accounts: walletSectionAccounts.model property var currentAccount: walletSectionCurrent property string signingPhrase: walletSection.signingPhrase property var savedAddressesModel: walletSectionSavedAddresses.model property var disabledChainIdsFromList: [] property var disabledChainIdsToList: [] function addRemoveDisabledFromChain(chainID, isDisabled) { var tempList = disabledChainIdsFromList if(isDisabled) { tempList.push(chainID) } else { for(var i = 0; i < tempList.length;i++) { if(tempList[i] === chainID) { tempList.splice(i, 1) } } } disabledChainIdsFromList = tempList } function addRemoveDisabledToChain(chainID, isDisabled) { var tempList = disabledChainIdsToList if(isDisabled) { tempList.push(chainID) } else { for(var i = 0; i < tempList.length;i++) { if(tempList[i] === chainID) { tempList.splice(i, 1) } } } disabledChainIdsToList = tempList } function getEtherscanLink() { return profileSectionModule.ensUsernamesModule.getEtherscanLink() } function copyToClipboard(text) { globalUtils.copyToClipboard(text) } function estimateGas(from_addr, to, assetSymbol, value, chainId, data) { return walletSectionTransactions.estimateGas(from_addr, to, assetSymbol, value, chainId, data) } function getFiatValue(balance, cryptoSymbol, fiatSymbol) { return profileSectionStore.ensUsernamesStore.getFiatValue(balance, cryptoSymbol, fiatSymbol) } function getGasEthValue(gweiValue, gasLimit) { return profileSectionStore.ensUsernamesStore.getGasEthValue(gweiValue, gasLimit) } function authenticateAndTransfer(from, to, tokenSymbol, amount, uuid, priority, selectedRoutes) { walletSectionTransactions.authenticateAndTransfer(from, to, tokenSymbol, amount, uuid, priority, selectedRoutes) } function suggestedFees(chainId) { return JSON.parse(walletSectionTransactions.suggestedFees(chainId)) } function getEstimatedTime(chainId, maxFeePerGas) { return walletSectionTransactions.getEstimatedTime(chainId, maxFeePerGas) } function getChainIdForChat() { return walletSectionTransactions.getChainIdForChat() } function getChainIdForBrowser() { return walletSectionTransactions.getChainIdForBrowser() } function suggestedRoutes(account, amount, token, disabledFromChainIDs, disabledToChainIDs, preferredChainIds, priority, sendType) { walletSectionTransactions.suggestedRoutes(account, amount, token, disabledFromChainIDs, disabledToChainIDs, preferredChainIds, priority, sendType) } function hex2Eth(value) { return globalUtils.hex2Eth(value) } function switchAccount(newIndex) { if(Constants.isCppApp) walletSectionAccounts.switchAccount(newIndex) else walletSection.switchAccount(newIndex) } function resolveENS(value) { mainModuleInst.resolveENS(value, "") } function getWei2Eth(wei) { return globalUtils.wei2Eth(wei,18) } function getEth2Wei(eth) { return globalUtils.eth2Wei(eth, 18) } function plainText(text) { return globalUtils.plainText(text) } }