2022-12-01 22:52:45 +00:00
|
|
|
pragma Singleton
|
|
|
|
|
|
|
|
import QtQuick 2.14
|
|
|
|
|
|
|
|
QtObject {
|
|
|
|
property var userProfileInst
|
2022-12-06 07:55:50 +00:00
|
|
|
property bool isTenorWarningAccepted
|
2022-12-13 16:18:02 +00:00
|
|
|
property bool isGifWidgetEnabled
|
|
|
|
property bool isWalletEnabled
|
2022-12-06 07:55:50 +00:00
|
|
|
property var getSelectedTextWithFormationChars
|
|
|
|
property var gifColumnA
|
2023-05-31 09:25:16 +00:00
|
|
|
property var currentCurrency
|
2023-05-10 11:05:45 +00:00
|
|
|
|
|
|
|
property var currencyStore
|
2023-06-07 14:16:23 +00:00
|
|
|
property var history
|
2023-05-31 09:25:16 +00:00
|
|
|
|
2023-05-10 11:05:45 +00:00
|
|
|
property var getNetworkIcon
|
2023-05-31 09:25:16 +00:00
|
|
|
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
|
2023-06-05 06:22:30 +00:00
|
|
|
property var getGasEthValue
|
|
|
|
property var getNetworkLayer
|
2022-12-01 22:52:45 +00:00
|
|
|
}
|