mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 22:06:25 +00:00
d19e95cb5b
closes #12244
15 lines
338 B
QML
15 lines
338 B
QML
import QtQuick 2.15
|
|
|
|
QtObject {
|
|
readonly property string currentCurrency: "USD"
|
|
property string currentCurrencySymbol: "$"
|
|
|
|
function formatCurrencyAmount(amount, symbol, options = null, locale = null) {
|
|
return amount
|
|
}
|
|
|
|
function getFiatValue(balance, cryptoSymbol, fiatSymbol) {
|
|
return balance
|
|
}
|
|
}
|