mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-25 14:00:00 +00:00
f70609119c
which can configure and enable the shard index for a given community - integrate it into community settings - add a dedicated storybook page and make it also available from EditSettingsPanelPage Needed for https://github.com/status-im/status-desktop/issues/12197
36 lines
981 B
QML
36 lines
981 B
QML
pragma Singleton
|
|
|
|
import QtQuick 2.14
|
|
|
|
QtObject {
|
|
property var userProfileInst
|
|
property bool isTenorWarningAccepted
|
|
property bool isGifWidgetEnabled
|
|
property bool isWalletEnabled
|
|
property var getSelectedTextWithFormationChars
|
|
property var gifColumnA
|
|
property var currentCurrency
|
|
|
|
property var currencyStore
|
|
property var history
|
|
|
|
property var getNetworkIcon
|
|
property var getFiatValue
|
|
property var getLatestBlockNumber
|
|
property var hex2Dec
|
|
property var getNetworkColor
|
|
property var getNetworkFullName
|
|
property var getNetworkShortName
|
|
property var formatCurrencyAmount
|
|
property var getNameForSavedWalletAddress
|
|
property var getNameForAddress
|
|
property var getEnsForSavedWalletAddress
|
|
property var getChainShortNamesForSavedWalletAddress
|
|
property var getGasEthValue
|
|
property var getNetworkLayer
|
|
|
|
function copyToClipboard(text) {
|
|
console.warn("STUB: copyToClipboard:", text)
|
|
}
|
|
}
|