mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 06:16:32 +00:00
9fcb54cb74
- unbreak passing the controller into the adaptor; can't be strongly typed as that hides all the assets (always returns `false` from the `visible` property) - fix selecting account address (var account -> string accountAddress) - fix the mocked account model to contain the needed `canSend` role, fix the mocked check function - fix showing community assets and balance threshold
12 lines
285 B
QML
12 lines
285 B
QML
import QtQuick 2.15
|
|
|
|
QtObject {
|
|
id: root
|
|
|
|
property var plainTokensBySymbolModel
|
|
property bool showCommunityAssetsInSend
|
|
property bool displayAssetsBelowBalance
|
|
property var getDisplayAssetsBelowBalanceThresholdDisplayAmount
|
|
property double tokenListUpdatedAt
|
|
}
|