Updated on 2026-08-14

This commit is contained in:
Tangem 2023-12-05 17:49:05 +03:00
parent 54f13f1082
commit d5d03d73f2
12 changed files with 289 additions and 149 deletions

View file

@ -13,4 +13,11 @@ data class ProxyAmount(
val currencySymbol: String,
var value: BigDecimal,
val decimals: Int,
)
) {
companion object {
fun empty(): ProxyAmount {
return ProxyAmount("", BigDecimal.ZERO, 0)
}
}
}