2022-02-11 09:44:49 +00:00
|
|
|
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
|
|
|
|
}
|