mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 12:09:43 +00:00
71 lines
2.1 KiB
Dart
71 lines
2.1 KiB
Dart
|
import 'package:cw_core/format_amount.dart';
|
||
|
import 'package:cw_core/transaction_direction.dart';
|
||
|
import 'package:cw_core/transaction_info.dart';
|
||
|
import 'package:cw_nano/nano_util.dart';
|
||
|
|
||
|
class NanoTransactionInfo extends TransactionInfo {
|
||
|
NanoTransactionInfo({
|
||
|
required this.id,
|
||
|
required this.height,
|
||
|
required this.amountRaw,
|
||
|
this.tokenSymbol = "XNO",
|
||
|
required this.direction,
|
||
|
required this.confirmed,
|
||
|
required this.date,
|
||
|
required this.confirmations,
|
||
|
}) : this.amount = amountRaw.toInt();
|
||
|
|
||
|
final String id;
|
||
|
final int height;
|
||
|
final int amount;
|
||
|
final BigInt amountRaw;
|
||
|
final TransactionDirection direction;
|
||
|
final DateTime date;
|
||
|
final bool confirmed;
|
||
|
final int confirmations;
|
||
|
final String tokenSymbol;
|
||
|
String? _fiatAmount;
|
||
|
|
||
|
bool get isPending => !this.confirmed;
|
||
|
|
||
|
@override
|
||
|
String amountFormatted() {
|
||
|
final String amt = NanoUtil.getRawAsUsableString(amountRaw.toString(), NanoUtil.rawPerNano);
|
||
|
final String acc = NanoUtil.getRawAccuracy(amountRaw.toString(), NanoUtil.rawPerNano);
|
||
|
return "$acc$amt $tokenSymbol";
|
||
|
}
|
||
|
|
||
|
@override
|
||
|
String fiatAmount() => _fiatAmount ?? '';
|
||
|
|
||
|
@override
|
||
|
void changeFiatAmount(String amount) => _fiatAmount = formatAmount(amount);
|
||
|
|
||
|
@override
|
||
|
String feeFormatted() => "0 XNO";
|
||
|
|
||
|
factory NanoTransactionInfo.fromJson(Map<String, dynamic> data) {
|
||
|
return NanoTransactionInfo(
|
||
|
id: data['id'] as String,
|
||
|
height: data['height'] as int,
|
||
|
amountRaw: BigInt.parse(data['amountRaw'] as String),
|
||
|
direction: parseTransactionDirectionFromInt(data['direction'] as int),
|
||
|
date: DateTime.fromMillisecondsSinceEpoch(data['date'] as int),
|
||
|
confirmed: data['confirmed'] as bool,
|
||
|
confirmations: data['confirmations'] as int,
|
||
|
tokenSymbol: data['tokenSymbol'] as String,
|
||
|
);
|
||
|
}
|
||
|
|
||
|
Map<String, dynamic> toJson() => {
|
||
|
'id': id,
|
||
|
'height': height,
|
||
|
'amountRaw': amountRaw.toString(),
|
||
|
'direction': direction.index,
|
||
|
'date': date.millisecondsSinceEpoch,
|
||
|
'confirmed': confirmed,
|
||
|
'confirmations': confirmations,
|
||
|
'tokenSymbol': tokenSymbol,
|
||
|
};
|
||
|
}
|