status-desktop/ui/app/AppLayouts/Browser/stores/WalletStore.qml

23 lines
608 B
QML
Raw Normal View History

pragma Singleton
import QtQuick 2.13
QtObject {
id: root
property var dappBrowserAccount: browserSectionCurrentAccount
2021-11-19 09:42:41 +00:00
property var accounts: walletSectionAccounts.model
property string defaultCurrency: walletSection.currentCurrency
property string signingPhrase: walletSection.signingPhrase
function getEtherscanLink(chainID) {
return networksModule.all.getBlockExplorerURL(chainID)
}
function switchAccountByAddress(address) {
browserSectionCurrentAccount.switchAccountByAddress(address)
walletSectionTransactions.setModel(address)
}
}