2021-12-24 12:52:08 +00:00
|
|
|
import 'package:cw_core/transaction_info.dart';
|
2022-03-30 15:57:04 +00:00
|
|
|
import 'package:cw_core/monero_amount_format.dart';
|
2021-12-24 12:52:08 +00:00
|
|
|
import 'package:cw_monero/api/structs/transaction_info_row.dart';
|
|
|
|
import 'package:cw_core/parseBoolFromString.dart';
|
|
|
|
import 'package:cw_core/transaction_direction.dart';
|
|
|
|
import 'package:cw_core/format_amount.dart';
|
|
|
|
import 'package:cw_monero/api/transaction_history.dart';
|
2023-02-15 21:51:48 +00:00
|
|
|
import 'package:intl/intl.dart';
|
2021-12-24 12:52:08 +00:00
|
|
|
|
|
|
|
class MoneroTransactionInfo extends TransactionInfo {
|
|
|
|
MoneroTransactionInfo(this.id, this.height, this.direction, this.date,
|
2023-02-15 13:56:58 +00:00
|
|
|
this.isPending, this.amount, this.accountIndex, this.addressIndex, this.fee, this.unlockTime,
|
2023-02-08 16:47:12 +00:00
|
|
|
this.confirmations);
|
2021-12-24 12:52:08 +00:00
|
|
|
|
|
|
|
MoneroTransactionInfo.fromRow(TransactionInfoRow row)
|
|
|
|
: id = row.getHash(),
|
|
|
|
height = row.blockHeight,
|
2023-02-06 19:42:24 +00:00
|
|
|
direction = TransactionDirection.parseFromInt(row.direction),
|
2021-12-24 12:52:08 +00:00
|
|
|
date = DateTime.fromMillisecondsSinceEpoch(row.getDatetime() * 1000),
|
|
|
|
isPending = row.isPending != 0,
|
|
|
|
amount = row.getAmount(),
|
|
|
|
accountIndex = row.subaddrAccount,
|
|
|
|
addressIndex = row.subaddrIndex,
|
2023-02-15 21:51:48 +00:00
|
|
|
unlockTime = row.unlockTime,
|
2023-02-08 16:47:12 +00:00
|
|
|
confirmations = row.confirmations,
|
2021-12-24 12:52:08 +00:00
|
|
|
key = getTxKey(row.getHash()),
|
2022-01-31 12:08:38 +00:00
|
|
|
fee = row.fee {
|
2023-02-07 16:39:41 +00:00
|
|
|
additionalInfo = <String, dynamic>{
|
|
|
|
'key': key,
|
|
|
|
'accountIndex': accountIndex,
|
|
|
|
'addressIndex': addressIndex
|
|
|
|
};
|
|
|
|
}
|
2021-12-24 12:52:08 +00:00
|
|
|
|
|
|
|
final String id;
|
|
|
|
final int height;
|
|
|
|
final TransactionDirection direction;
|
|
|
|
final DateTime date;
|
|
|
|
final int accountIndex;
|
|
|
|
final bool isPending;
|
|
|
|
final int amount;
|
|
|
|
final int fee;
|
|
|
|
final int addressIndex;
|
2023-02-06 11:27:36 +00:00
|
|
|
final int unlockTime;
|
2023-02-08 16:47:12 +00:00
|
|
|
final int confirmations;
|
2022-10-12 17:09:57 +00:00
|
|
|
String? recipientAddress;
|
|
|
|
String? key;
|
|
|
|
String? _fiatAmount;
|
2021-12-24 12:52:08 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
String amountFormatted() =>
|
|
|
|
'${formatAmount(moneroAmountToString(amount: amount))} XMR';
|
|
|
|
|
|
|
|
@override
|
|
|
|
String fiatAmount() => _fiatAmount ?? '';
|
|
|
|
|
|
|
|
@override
|
|
|
|
void changeFiatAmount(String amount) => _fiatAmount = formatAmount(amount);
|
|
|
|
|
|
|
|
@override
|
|
|
|
String feeFormatted() =>
|
|
|
|
'${formatAmount(moneroAmountToString(amount: fee))} XMR';
|
2023-02-06 11:27:36 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
String? unlockTimeFormatted() {
|
2023-02-15 21:51:48 +00:00
|
|
|
if (direction == TransactionDirection.outgoing || unlockTime < (height + 10)) {
|
2023-02-06 11:27:36 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2023-02-15 21:51:48 +00:00
|
|
|
if (unlockTime < 500000000) {
|
|
|
|
return (unlockTime - height) * 2 > 500000
|
|
|
|
? '>1 year'
|
|
|
|
: '~${(unlockTime - height) * 2} minutes';
|
2023-02-06 11:27:36 +00:00
|
|
|
}
|
2023-02-07 16:39:41 +00:00
|
|
|
|
2023-02-15 21:51:48 +00:00
|
|
|
var locked = DateTime.fromMillisecondsSinceEpoch(unlockTime).compareTo(DateTime.now());
|
|
|
|
final DateFormat formatter = DateFormat('yyyy-MM-dd HH:mm:ss');
|
|
|
|
final String formattedUnlockTime =
|
|
|
|
formatter.format(DateTime.fromMillisecondsSinceEpoch(unlockTime));
|
|
|
|
|
|
|
|
return locked >= 0 ? '$formattedUnlockTime' : null;
|
|
|
|
}
|
2021-12-24 12:52:08 +00:00
|
|
|
}
|