mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-06 04:17:42 +00:00
59 lines
1.4 KiB
Dart
59 lines
1.4 KiB
Dart
import 'dart:convert';
|
|
|
|
import 'package:decimal/decimal.dart';
|
|
import 'package:stackwallet/utilities/enums/coin_enum.dart';
|
|
import 'package:stackwallet/utilities/format.dart';
|
|
|
|
class Balance {
|
|
final Coin coin;
|
|
final int total;
|
|
final int spendable;
|
|
final int blockedTotal;
|
|
final int pendingSpendable;
|
|
|
|
Balance({
|
|
required this.coin,
|
|
required this.total,
|
|
required this.spendable,
|
|
required this.blockedTotal,
|
|
required this.pendingSpendable,
|
|
});
|
|
|
|
Decimal getTotal({bool includeBlocked = false}) => Format.satoshisToAmount(
|
|
includeBlocked ? total : total - blockedTotal,
|
|
coin: coin,
|
|
);
|
|
|
|
Decimal getSpendable() => Format.satoshisToAmount(
|
|
spendable,
|
|
coin: coin,
|
|
);
|
|
|
|
Decimal getPending() => Format.satoshisToAmount(
|
|
pendingSpendable,
|
|
coin: coin,
|
|
);
|
|
|
|
Decimal getBlocked() => Format.satoshisToAmount(
|
|
blockedTotal,
|
|
coin: coin,
|
|
);
|
|
|
|
String toJsonIgnoreCoin() => jsonEncode({
|
|
"total": total,
|
|
"spendable": spendable,
|
|
"blockedTotal": blockedTotal,
|
|
"pendingSpendable": pendingSpendable,
|
|
});
|
|
|
|
factory Balance.fromJson(String json, Coin coin) {
|
|
final decoded = jsonDecode(json);
|
|
return Balance(
|
|
coin: coin,
|
|
total: decoded["total"] as int,
|
|
spendable: decoded["spendable"] as int,
|
|
blockedTotal: decoded["blockedTotal"] as int,
|
|
pendingSpendable: decoded["pendingSpendable"] as int,
|
|
);
|
|
}
|
|
}
|