2023-08-14 13:57:47 +00:00
|
|
|
import 'dart:async';
|
2023-08-29 16:11:51 +00:00
|
|
|
import 'package:cw_core/address_info.dart';
|
2023-08-15 00:47:25 +00:00
|
|
|
import 'package:cw_core/hive_type_ids.dart';
|
|
|
|
import 'package:cw_core/wallet_type.dart';
|
|
|
|
import 'package:hive/hive.dart';
|
2021-12-24 12:52:08 +00:00
|
|
|
|
|
|
|
part 'wallet_info.g.dart';
|
|
|
|
|
2023-10-05 01:09:07 +00:00
|
|
|
@HiveType(typeId: DERIVATION_TYPE_TYPE_ID)
|
|
|
|
enum DerivationType {
|
|
|
|
@HiveField(0)
|
|
|
|
unknown,
|
|
|
|
@HiveField(1)
|
|
|
|
def, // default is a reserved word
|
|
|
|
@HiveField(2)
|
|
|
|
nano,
|
|
|
|
@HiveField(3)
|
|
|
|
bip39,
|
|
|
|
@HiveField(4)
|
|
|
|
electrum1,
|
|
|
|
@HiveField(5)
|
|
|
|
electrum2,
|
|
|
|
}
|
|
|
|
|
|
|
|
class DerivationInfo {
|
|
|
|
DerivationInfo({
|
|
|
|
required this.derivationType,
|
|
|
|
this.derivationPath,
|
|
|
|
this.balance = "",
|
|
|
|
this.address = "",
|
|
|
|
this.height = 0,
|
|
|
|
this.script_type,
|
|
|
|
this.description,
|
|
|
|
});
|
|
|
|
|
|
|
|
String balance;
|
|
|
|
String address;
|
|
|
|
int height;
|
|
|
|
final DerivationType derivationType;
|
|
|
|
final String? derivationPath;
|
|
|
|
final String? script_type;
|
|
|
|
final String? description;
|
|
|
|
}
|
|
|
|
|
2021-12-24 12:52:08 +00:00
|
|
|
@HiveType(typeId: WalletInfo.typeId)
|
|
|
|
class WalletInfo extends HiveObject {
|
2023-10-05 01:09:07 +00:00
|
|
|
WalletInfo(
|
|
|
|
this.id,
|
|
|
|
this.name,
|
|
|
|
this.type,
|
|
|
|
this.isRecovery,
|
|
|
|
this.restoreHeight,
|
|
|
|
this.timestamp,
|
|
|
|
this.dirPath,
|
|
|
|
this.path,
|
|
|
|
this.address,
|
|
|
|
this.yatEid,
|
|
|
|
this.yatLastUsedAddressRaw,
|
|
|
|
this.showIntroCakePayCard,
|
|
|
|
this.derivationType,
|
|
|
|
this.derivationPath)
|
2021-12-24 12:52:08 +00:00
|
|
|
: _yatLastUsedAddressController = StreamController<String>.broadcast();
|
|
|
|
|
2023-10-05 01:09:07 +00:00
|
|
|
factory WalletInfo.external({
|
|
|
|
required String id,
|
|
|
|
required String name,
|
|
|
|
required WalletType type,
|
|
|
|
required bool isRecovery,
|
|
|
|
required int restoreHeight,
|
|
|
|
required DateTime date,
|
|
|
|
required String dirPath,
|
|
|
|
required String path,
|
|
|
|
required String address,
|
|
|
|
bool? showIntroCakePayCard,
|
|
|
|
String yatEid = '',
|
|
|
|
String yatLastUsedAddressRaw = '',
|
|
|
|
DerivationType? derivationType,
|
|
|
|
String? derivationPath,
|
|
|
|
}) {
|
|
|
|
return WalletInfo(
|
|
|
|
id,
|
|
|
|
name,
|
|
|
|
type,
|
|
|
|
isRecovery,
|
|
|
|
restoreHeight,
|
|
|
|
date.millisecondsSinceEpoch,
|
|
|
|
dirPath,
|
|
|
|
path,
|
|
|
|
address,
|
|
|
|
yatEid,
|
|
|
|
yatLastUsedAddressRaw,
|
|
|
|
showIntroCakePayCard,
|
|
|
|
derivationType,
|
|
|
|
derivationPath);
|
2021-12-24 12:52:08 +00:00
|
|
|
}
|
|
|
|
|
2023-08-15 00:47:25 +00:00
|
|
|
static const typeId = WALLET_INFO_TYPE_ID;
|
2021-12-24 12:52:08 +00:00
|
|
|
static const boxName = 'WalletInfo';
|
|
|
|
|
2022-11-04 19:55:21 +00:00
|
|
|
@HiveField(0, defaultValue: '')
|
2021-12-24 12:52:08 +00:00
|
|
|
String id;
|
|
|
|
|
2022-11-04 19:55:21 +00:00
|
|
|
@HiveField(1, defaultValue: '')
|
2021-12-24 12:52:08 +00:00
|
|
|
String name;
|
|
|
|
|
|
|
|
@HiveField(2)
|
|
|
|
WalletType type;
|
|
|
|
|
2022-11-04 19:55:21 +00:00
|
|
|
@HiveField(3, defaultValue: false)
|
2021-12-24 12:52:08 +00:00
|
|
|
bool isRecovery;
|
|
|
|
|
2022-11-04 19:55:21 +00:00
|
|
|
@HiveField(4, defaultValue: 0)
|
2021-12-24 12:52:08 +00:00
|
|
|
int restoreHeight;
|
|
|
|
|
2022-11-04 19:55:21 +00:00
|
|
|
@HiveField(5, defaultValue: 0)
|
2021-12-24 12:52:08 +00:00
|
|
|
int timestamp;
|
|
|
|
|
2022-11-04 19:55:21 +00:00
|
|
|
@HiveField(6, defaultValue: '')
|
2021-12-24 12:52:08 +00:00
|
|
|
String dirPath;
|
|
|
|
|
2022-11-04 19:55:21 +00:00
|
|
|
@HiveField(7, defaultValue: '')
|
2021-12-24 12:52:08 +00:00
|
|
|
String path;
|
|
|
|
|
2022-11-04 19:55:21 +00:00
|
|
|
@HiveField(8, defaultValue: '')
|
2021-12-24 12:52:08 +00:00
|
|
|
String address;
|
|
|
|
|
|
|
|
@HiveField(10)
|
2022-10-12 17:09:57 +00:00
|
|
|
Map<String, String>? addresses;
|
2021-12-24 12:52:08 +00:00
|
|
|
|
|
|
|
@HiveField(11)
|
2022-10-31 16:16:46 +00:00
|
|
|
String? yatEid;
|
2021-12-24 12:52:08 +00:00
|
|
|
|
|
|
|
@HiveField(12)
|
2022-10-31 16:16:46 +00:00
|
|
|
String? yatLastUsedAddressRaw;
|
2021-12-24 12:52:08 +00:00
|
|
|
|
2022-08-30 18:03:02 +00:00
|
|
|
@HiveField(13)
|
2022-10-12 17:09:57 +00:00
|
|
|
bool? showIntroCakePayCard;
|
2022-08-30 18:03:02 +00:00
|
|
|
|
2023-08-29 16:11:51 +00:00
|
|
|
@HiveField(14)
|
|
|
|
Map<int, List<AddressInfo>>? addressInfos;
|
|
|
|
|
|
|
|
@HiveField(15)
|
|
|
|
List<String>? usedAddresses;
|
|
|
|
|
2023-10-05 01:09:07 +00:00
|
|
|
@HiveField(16)
|
|
|
|
DerivationType? derivationType;
|
|
|
|
|
|
|
|
@HiveField(17)
|
|
|
|
String? derivationPath;
|
|
|
|
|
2022-10-31 16:16:46 +00:00
|
|
|
String get yatLastUsedAddress => yatLastUsedAddressRaw ?? '';
|
2021-12-24 12:52:08 +00:00
|
|
|
|
|
|
|
set yatLastUsedAddress(String address) {
|
|
|
|
yatLastUsedAddressRaw = address;
|
|
|
|
_yatLastUsedAddressController.add(address);
|
|
|
|
}
|
|
|
|
|
|
|
|
String get yatEmojiId => yatEid ?? '';
|
|
|
|
|
2022-08-30 18:03:02 +00:00
|
|
|
bool get isShowIntroCakePayCard {
|
2023-10-05 01:09:07 +00:00
|
|
|
if (showIntroCakePayCard == null) {
|
2022-08-30 18:03:02 +00:00
|
|
|
return type != WalletType.haven;
|
|
|
|
}
|
2022-10-12 17:09:57 +00:00
|
|
|
return showIntroCakePayCard!;
|
2022-08-30 18:03:02 +00:00
|
|
|
}
|
|
|
|
|
2021-12-24 12:52:08 +00:00
|
|
|
DateTime get date => DateTime.fromMillisecondsSinceEpoch(timestamp);
|
|
|
|
|
|
|
|
Stream<String> get yatLastUsedAddressStream => _yatLastUsedAddressController.stream;
|
|
|
|
|
|
|
|
StreamController<String> _yatLastUsedAddressController;
|
|
|
|
}
|