mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-22 11:38:57 +00:00
12 lines
466 B
QML
12 lines
466 B
QML
|
import QtQuick 2.15
|
||
|
|
||
|
QtObject {
|
||
|
id: root
|
||
|
|
||
|
/* TODO: all of these should come from their respective stores once the stores are reworked and
|
||
|
streamlined. This store should contain only swap specific properties/methods if any */
|
||
|
readonly property var accounts: walletSectionAccounts.accounts
|
||
|
readonly property var flatNetworks: networksModule.flatNetworks
|
||
|
readonly property bool areTestNetworksEnabled: networksModule.areTestNetworksEnabled
|
||
|
}
|