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;
|
|
|
|
|
Btc address types (#1263)
* inital migration changes
* feat: rest of changes
* minor fix [skip ci]
* fix: P2wshAddress & wallet address index
* fix: address review comments
* fix: address type restore
* feat: add testnet
* Fix review comments
Remove bitcoin_base from cw_core
* Fix address not matching selected type on start
* remove un-necessary parameter [skip ci]
* Remove bitcoin specific code from main lib
Fix possible runtime exception from list wrong access
* Minor fix
* fix: fixes for Testnet
* fix: bitcoin receive option dependency breaks monerocom
* Fix issues when building Monero.com
* feat: Transaction Builder changes
* fix: discover addresses, testnet restoring, duplicate unspent coins, and taproot address vs schnorr sig tweak
* fix: remove print
* feat: improve error when failed broadcast response
* feat: create fish shell env script
* fix: unmodifiable maps
* fix: build
* fix: build
* fix: computed observable side effect bug
* feat: add nix script for android build_all
* fix: wrong keypairs used for signing
* fix: wrong addresses when using fromScriptPubKey scripts
* fix(actual commit): testnet tx expanded + wrong addresses when using fromScriptPubKey scripts (update bitcoin_base deps)
* fix: self-send [skip ci]
* fix: p2wsh
* fix: testnet fees
* New versions
* Update macos build number
Minor UI fix
* fix: use new bitcoin_base ref, fix tx list wrong hex value & refactor hidden vs hd use
- if always use sideHd for isHidden, it is easier to simplify the functions instead of passing both which can be error prone
- (ps: now this could probably be changed, for example from isHidden to isChange since with address list we now see "hidden" addresses)
* Fix if condition to handle litecoin case
* fix: self-send, change address was always making direction incoming
* refactor: improve estimation function, add more inputs if balance missing
* fix: new bitcoin_base update, fixes script issues
* Update evm chain wallet service arguments
* Fix translation [skip ci]
* Fix translation [skip ci]
* Update strings_fr.arb [skip ci]
* fix: async isChange function not being awaited, refactor to reduce looping into a single place
* fix: _address vs address, missing p2sh
* fix: minor mistake in storing p2sh page type [skip ci]
* refactor: use already matched addresses property
* feat: improved perfomance for fetching transaction histories
* feat: continue perfomance change, improve address discovery only to last address by type with history
* fix: make sure transaction list is sorted by date
* refactor: isTestnet only for bitcoin
* fix: walletInfo type null case
* fix: deprecated p2pk
* refactor: make condition more readable
* refactor: remove unnecessary Str variant
* refactor: make condition more readable
* fix: infinite loop possible
* Revert removing isTestnet from other wallets [skip ci]
* refactor: rename addresses when matched by receive type
* Make the beta build [skip ci]
Remove app_env.fish
---------
Co-authored-by: OmarHatem <omarh.ismail1@gmail.com>
2024-02-23 16:13:30 +00:00
|
|
|
@HiveField(18)
|
|
|
|
String? addressPageType;
|
|
|
|
|
|
|
|
@HiveField(19)
|
|
|
|
String? network;
|
|
|
|
|
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;
|
|
|
|
}
|