mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-19 17:25:02 +00:00
2b808ad50a
* change cw_decred from package to plugin * add libdcrwallet dependency and link library for android, ios and macos * remove spvwallet, make some libdcrwallet fns async, light refactor * libdcrwallet: use json payload returns * use specific libwallet commit hash * decred: fix Rename wallet. --------- Co-authored-by: JoeGruff <joegruffins@gmail.com>
20 lines
578 B
Dart
20 lines
578 B
Dart
import 'package:cw_decred/amount_format.dart';
|
|
import 'package:cw_core/balance.dart';
|
|
|
|
class DecredBalance extends Balance {
|
|
const DecredBalance({required this.confirmed, required this.unconfirmed})
|
|
: super(confirmed, unconfirmed);
|
|
|
|
factory DecredBalance.zero() => DecredBalance(confirmed: 0, unconfirmed: 0);
|
|
|
|
final int confirmed;
|
|
final int unconfirmed;
|
|
|
|
@override
|
|
String get formattedAvailableBalance =>
|
|
decredAmountToString(amount: confirmed);
|
|
|
|
@override
|
|
String get formattedAdditionalBalance =>
|
|
decredAmountToString(amount: unconfirmed);
|
|
}
|