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

55 lines
1.6 KiB
QML
Raw Normal View History

import QtQuick 2.13
import shared.stores 1.0 as SharedStore
import "../../Wallet/stores"
QtObject {
id: root
property var accountSensitiveSettings: localAccountSensitiveSettings
2022-03-15 13:38:20 +00:00
property var areTestNetworksEnabled: networksModule.areTestNetworksEnabled
2022-02-17 09:15:37 +00:00
property var layer1Networks: networksModule.layer1
property var layer2Networks: networksModule.layer2
property var testNetworks: networksModule.test
2022-03-01 14:40:53 +00:00
2022-03-15 13:38:20 +00:00
function toggleTestNetworksEnabled(){
networksModule.toggleTestNetworksEnabled()
}
2022-03-01 14:40:53 +00:00
2022-06-22 12:16:21 +00:00
property var accounts: walletSectionAccounts.model
2022-03-01 14:40:53 +00:00
property var importedAccounts: walletSectionAccounts.imported
property var generatedAccounts: walletSectionAccounts.generated
property var watchOnlyAccounts: walletSectionAccounts.watchOnly
property var currencyStore: SharedStore.RootStore.currencyStore
property var currentAccount: walletSectionCurrent
function switchAccountByAddress(address) {
walletSection.switchAccountByAddress(address)
}
function deleteAccount(address) {
return walletSectionAccounts.deleteAccount(address)
}
function updateCurrentAccount(address, accountName, color, emoji) {
return walletSectionCurrent.update(address, accountName, color, emoji)
}
property var dappList: dappPermissionsModule.dapps
function disconnect(dappName) {
dappPermissionsModule.disconnect(dappName)
}
function accountsForDapp(dappName) {
return dappPermissionsModule.accountsForDapp(dappName)
}
function disconnectAddress(dappName, address) {
return dappPermissionsModule.disconnectAddress(dappName, address)
}
}