mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 01:37:40 +00:00
64 lines
1.8 KiB
Dart
64 lines
1.8 KiB
Dart
import 'dart:convert';
|
|
import 'package:cw_bitcoin/bitcoin_amount_format.dart';
|
|
import 'package:cw_core/balance.dart';
|
|
|
|
class ElectrumBalance extends Balance {
|
|
ElectrumBalance({
|
|
required this.confirmed,
|
|
required this.unconfirmed,
|
|
required this.frozen,
|
|
this.secondConfirmed = 0,
|
|
this.secondUnconfirmed = 0,
|
|
}) : super(
|
|
confirmed,
|
|
unconfirmed,
|
|
secondAvailable: secondConfirmed,
|
|
secondAdditional: secondUnconfirmed,
|
|
);
|
|
|
|
static ElectrumBalance? fromJSON(String? jsonSource) {
|
|
if (jsonSource == null) {
|
|
return null;
|
|
}
|
|
|
|
final decoded = json.decode(jsonSource) as Map;
|
|
|
|
return ElectrumBalance(
|
|
confirmed: decoded['confirmed'] as int? ?? 0,
|
|
unconfirmed: decoded['unconfirmed'] as int? ?? 0,
|
|
frozen: decoded['frozen'] as int? ?? 0);
|
|
}
|
|
|
|
int confirmed;
|
|
int unconfirmed;
|
|
final int frozen;
|
|
int secondConfirmed = 0;
|
|
int secondUnconfirmed = 0;
|
|
|
|
@override
|
|
String get formattedAvailableBalance =>
|
|
bitcoinAmountToString(amount: confirmed + secondConfirmed - frozen);
|
|
|
|
@override
|
|
String get formattedAdditionalBalance => bitcoinAmountToString(amount: unconfirmed);
|
|
|
|
@override
|
|
String get formattedUnAvailableBalance {
|
|
final frozenFormatted = bitcoinAmountToString(amount: frozen);
|
|
return frozenFormatted == '0.0' ? '' : frozenFormatted;
|
|
}
|
|
|
|
@override
|
|
String get formattedSecondAvailableBalance => bitcoinAmountToString(amount: secondConfirmed);
|
|
|
|
@override
|
|
String get formattedSecondAdditionalBalance => bitcoinAmountToString(amount: secondUnconfirmed);
|
|
|
|
String toJSON() => json.encode({
|
|
'confirmed': confirmed,
|
|
'unconfirmed': unconfirmed,
|
|
'frozen': frozen,
|
|
'secondConfirmed': secondConfirmed,
|
|
'secondUnconfirmed': secondUnconfirmed
|
|
});
|
|
}
|