mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 09:47:35 +00:00
f6670c0236
* Added CoinsInfo to monero_api_cpp * Add struct on dart * Add struct on dart * Set coins value * CW-415 Use add-coin-to-monero branch * CW-415 Add get Coin and build Monero Deps using Docker * CW-415 Fix Typo * CW-415 add debug log info * CW-415 Add preferred key Images for coin control to Monero * CW-415 Fix generation * CW-415 Skip GA Cache Externals * CW-415 Skip GA Cache Externals * CW-415 Coin Control: remove Block Explorer for Monero, Add Tx hash, save note on field exit * CW-415 Coin Control: Throw Exception when all outputs are deselected * CW-415 Coin Control: Show Frozen Balance on Dashboard * CW-415 Coin Control: Show Frozen Balance on Dashboard * CW-415 Ignore cached Monero deps in Workflow * CW-415 Fix displaying frozen Balance * Use own Translator with http 1.1.0 * CW-415 Resolve requested Changes * CW-415 Resolve requested Changes * CW-415 Resolve requested Changes * CW-415 Apply requested Changes * CW-415 Apply requested Changes * CW-415 Ensure opening of UnspentCoinsInfo Box, even for Monero.com --------- Co-authored-by: Konstantin Ullrich <konstantinullrich12@gmail.com>
36 lines
1.4 KiB
Dart
36 lines
1.4 KiB
Dart
import 'package:cw_core/balance.dart';
|
|
import 'package:cw_core/monero_amount_format.dart';
|
|
|
|
class MoneroBalance extends Balance {
|
|
MoneroBalance({required this.fullBalance, required this.unlockedBalance, this.frozenBalance = 0})
|
|
: formattedFullBalance = moneroAmountToString(amount: fullBalance),
|
|
formattedUnlockedBalance = moneroAmountToString(amount: unlockedBalance),
|
|
frozenFormatted = moneroAmountToString(amount: frozenBalance),
|
|
super(unlockedBalance, fullBalance);
|
|
|
|
MoneroBalance.fromString(
|
|
{required this.formattedFullBalance,
|
|
required this.formattedUnlockedBalance,
|
|
this.frozenFormatted = '0.0'})
|
|
: fullBalance = moneroParseAmount(amount: formattedFullBalance),
|
|
unlockedBalance = moneroParseAmount(amount: formattedUnlockedBalance),
|
|
frozenBalance = moneroParseAmount(amount: frozenFormatted),
|
|
super(moneroParseAmount(amount: formattedUnlockedBalance),
|
|
moneroParseAmount(amount: formattedFullBalance));
|
|
|
|
final int fullBalance;
|
|
final int unlockedBalance;
|
|
final int frozenBalance;
|
|
final String formattedFullBalance;
|
|
final String formattedUnlockedBalance;
|
|
final String frozenFormatted;
|
|
|
|
@override
|
|
String get formattedFrozenBalance => frozenFormatted == '0.0' ? '' : frozenFormatted;
|
|
|
|
@override
|
|
String get formattedAvailableBalance => formattedUnlockedBalance;
|
|
|
|
@override
|
|
String get formattedAdditionalBalance => formattedFullBalance;
|
|
}
|