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
|
|
}
|
|
}
|