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

15 lines
416 B
QML
Raw Normal View History

import QtQuick 2.13
QtObject {
id: root
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
property var importedAccounts: walletSectionAccounts.imported
property var generatedAccounts: walletSectionAccounts.generated
property var watchOnlyAccounts: walletSectionAccounts.watchOnly
}