mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 20:39:51 +00:00
* fix(cw_monero): call store() directly after commiting tx to make sure that tx key is written to cache also, store it in TransactionDescription hive box * Update lib/view_model/send/send_view_model.dart --------- Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com>
43 lines
1.2 KiB
Dart
43 lines
1.2 KiB
Dart
import 'package:cw_core/hive_type_ids.dart';
|
|
import 'package:hive/hive.dart';
|
|
|
|
part 'transaction_description.g.dart';
|
|
|
|
@HiveType(typeId: TransactionDescription.typeId)
|
|
class TransactionDescription extends HiveObject {
|
|
TransactionDescription({required this.id, this.recipientAddress, this.transactionNote, this.transactionKey});
|
|
|
|
static const typeId = TRANSACTION_TYPE_ID;
|
|
static const boxName = 'TransactionDescriptions';
|
|
static const boxKey = 'transactionDescriptionsBoxKey';
|
|
|
|
@HiveField(0, defaultValue: '')
|
|
String id;
|
|
|
|
@HiveField(1)
|
|
String? recipientAddress;
|
|
|
|
@HiveField(2)
|
|
String? transactionNote;
|
|
|
|
@HiveField(3)
|
|
String? transactionKey;
|
|
|
|
String get note => transactionNote ?? '';
|
|
|
|
Map<String, dynamic> toJson() => {
|
|
'id': id,
|
|
'recipientAddress': recipientAddress,
|
|
'transactionNote': transactionNote,
|
|
'transactionKey': transactionKey,
|
|
};
|
|
|
|
factory TransactionDescription.fromJson(Map<String, dynamic> json) {
|
|
return TransactionDescription(
|
|
id: json['id'] as String,
|
|
recipientAddress: json['recipientAddress'] as String?,
|
|
transactionNote: json['transactionNote'] as String?,
|
|
transactionKey: json['transactionKey'] as String?,
|
|
);
|
|
}
|
|
}
|