cake_wallet/cw_zano/lib/zano_wallet.dart

661 lines
27 KiB
Dart
Raw Normal View History

2023-10-02 14:17:35 +00:00
import 'dart:async';
import 'dart:io';
import 'dart:math';
2023-12-14 04:51:16 +00:00
import 'package:cw_core/cake_hive.dart';
2023-10-02 14:17:35 +00:00
import 'package:cw_core/crypto_currency.dart';
import 'package:cw_core/monero_transaction_priority.dart';
2023-12-14 04:51:16 +00:00
import 'package:cw_core/monero_wallet_utils.dart';
import 'package:cw_core/node.dart';
2023-10-02 14:17:35 +00:00
import 'package:cw_core/pathForWallet.dart';
2023-12-14 04:51:16 +00:00
import 'package:cw_core/pending_transaction.dart';
import 'package:cw_core/sync_status.dart';
import 'package:cw_core/transaction_direction.dart';
2023-10-02 14:17:35 +00:00
import 'package:cw_core/transaction_priority.dart';
2023-12-14 04:51:16 +00:00
import 'package:cw_core/wallet_base.dart';
import 'package:cw_core/wallet_credentials.dart';
2023-12-14 04:51:16 +00:00
import 'package:cw_core/wallet_info.dart';
2024-04-06 10:03:11 +00:00
import 'package:cw_zano/api/model/balance.dart';
import 'package:cw_zano/api/model/create_wallet_result.dart';
import 'package:cw_zano/api/model/destination.dart';
import 'package:cw_zano/api/model/get_recent_txs_and_info_result.dart';
import 'package:cw_zano/api/model/get_wallet_status_result.dart';
import 'package:cw_zano/api/model/subtransfer.dart';
2024-03-16 10:55:03 +00:00
import 'package:cw_zano/api/model/transfer.dart';
2024-03-19 15:51:08 +00:00
import 'package:cw_zano/model/pending_zano_transaction.dart';
import 'package:cw_zano/model/zano_asset.dart';
import 'package:cw_zano/model/zano_balance.dart';
import 'package:cw_zano/model/zano_transaction_creation_exception.dart';
2024-03-19 15:51:08 +00:00
import 'package:cw_zano/model/zano_transaction_credentials.dart';
import 'package:cw_zano/model/zano_transaction_info.dart';
import 'package:cw_zano/model/zano_wallet_keys.dart';
import 'package:cw_zano/zano_formatter.dart';
import 'package:cw_zano/zano_transaction_history.dart';
2023-12-14 04:51:16 +00:00
import 'package:cw_zano/zano_wallet_addresses.dart';
2024-03-15 12:42:27 +00:00
import 'package:cw_zano/zano_wallet_api.dart';
import 'package:cw_zano/zano_wallet_exceptions.dart';
import 'package:cw_zano/zano_wallet_service.dart';
2023-12-16 12:19:11 +00:00
import 'package:flutter/material.dart';
import 'package:hive/hive.dart';
2023-12-14 04:51:16 +00:00
import 'package:mobx/mobx.dart';
2024-04-06 10:03:11 +00:00
import 'package:collection/collection.dart';
2023-10-02 14:17:35 +00:00
part 'zano_wallet.g.dart';
class ZanoWallet = ZanoWalletBase with _$ZanoWallet;
2023-12-14 04:51:16 +00:00
2024-03-15 12:42:27 +00:00
abstract class ZanoWalletBase extends WalletBase<ZanoBalance, ZanoTransactionHistory, ZanoTransactionInfo> with Store, ZanoWalletApi {
2023-10-02 14:17:35 +00:00
static const int _autoSaveInterval = 30;
//List<Transfer> transfers = [];
2023-10-02 14:17:35 +00:00
@override
ZanoWalletAddresses walletAddresses;
@override
@observable
SyncStatus syncStatus;
@override
@observable
2023-11-17 17:40:23 +00:00
ObservableMap<CryptoCurrency, ZanoBalance> balance;
2023-10-02 14:17:35 +00:00
@override
2023-12-14 04:51:16 +00:00
String seed = '';
2023-10-02 14:17:35 +00:00
@override
ZanoWalletKeys keys = ZanoWalletKeys(privateSpendKey: '', privateViewKey: '', publicSpendKey: '', publicViewKey: '');
2024-03-16 10:55:03 +00:00
static const String zanoAssetId = 'd6329b5b1f7c0805b5c345f4957554002a2f557845f64d7645dae0e051a6498a';
/*
late final Box<ZanoAsset> zanoAssetsBox;
2024-04-06 10:03:11 +00:00
List<ZanoAsset> whitelists = [];
List<ZanoAsset> get zanoAssets => zanoAssetsBox.values.toList();
*/
Map<String, ZanoAsset> zanoAssets = {};
2023-10-02 14:17:35 +00:00
//zano_wallet.SyncListener? _listener;
// ReactionDisposer? _onAccountChangeReaction;
Timer? _updateSyncInfoTimer;
int _cachedBlockchainHeight = 0;
int _lastKnownBlockHeight = 0;
int _initialSyncHeight = 0;
int currentDaemonHeight = 0;
2023-10-02 14:17:35 +00:00
bool _isTransactionUpdating;
bool _hasSyncAfterStartup;
Timer? _autoSaveTimer;
2023-11-17 17:40:23 +00:00
/// index of last transaction fetched
int _lastTxIndex = 0;
/// number of transactions in each request
static const int _txChunkSize = 30;
ZanoWalletBase(WalletInfo walletInfo)
2024-04-06 10:03:11 +00:00
: balance = ObservableMap.of({CryptoCurrency.zano: ZanoBalance.empty()}),
_isTransactionUpdating = false,
_hasSyncAfterStartup = false,
walletAddresses = ZanoWalletAddresses(walletInfo),
syncStatus = NotConnectedSyncStatus(),
super(walletInfo) {
transactionHistory = ZanoTransactionHistory();
2024-03-15 12:42:27 +00:00
if (!CakeHive.isAdapterRegistered(ZanoAsset.typeId)) {
CakeHive.registerAdapter(ZanoAssetAdapter());
}
// _onAccountChangeReaction =
// reaction((_) => walletAddresses.account, (Account? account) {
// if (account == null) {
// return;
// }
// balance.addAll(getZanoBalance(accountIndex: account.id));
// /**walletAddresses.updateSubaddressList(accountIndex: account.id);*/
// });
}
@override
2024-03-15 12:42:27 +00:00
int calculateEstimatedFee(TransactionPriority priority, [int? amount = null]) => getCurrentTxFee(priority);
2023-10-02 14:17:35 +00:00
@override
Future<void> changePassword(String password) async {
2024-03-15 12:42:27 +00:00
setPassword(password);
}
2023-10-02 14:17:35 +00:00
static Future<ZanoWallet> create({required WalletCredentials credentials}) async {
final wallet = ZanoWallet(credentials.walletInfo!);
await wallet.connectToNode(node: Node());
final path = await pathForWallet(name: credentials.name, type: credentials.walletInfo!.type);
final createWalletResult = await wallet.createWallet(path, credentials.password!);
await _parseCreateWalletResult(createWalletResult, wallet);
//await wallet.store(); // TODO: unnecessary here?
await wallet.init(createWalletResult.wi.address);
return wallet;
}
static Future<ZanoWallet> restore({required ZanoRestoreWalletFromSeedCredentials credentials}) async {
final wallet = ZanoWallet(credentials.walletInfo!);
await wallet.connectToNode(node: Node());
final path = await pathForWallet(name: credentials.name, type: credentials.walletInfo!.type);
final createWalletResult = await wallet.restoreWalletFromSeed(path, credentials.password!, credentials.mnemonic);
await _parseCreateWalletResult(createWalletResult, wallet);
//await wallet.store(); // TODO: unnecessary here?
await wallet.init(createWalletResult.wi.address);
return wallet;
}
static Future<ZanoWallet> open({required String name, required String password, required WalletInfo walletInfo}) async {
final path = await pathForWallet(name: name, type: walletInfo.type);
final wallet = ZanoWallet(walletInfo);
await wallet.connectToNode(node: Node());
final createWalletResult = await wallet.loadWallet(path, password);
await _parseCreateWalletResult(createWalletResult, wallet);
//await wallet.store(); // TODO: unnecessary here?
await wallet.init(createWalletResult.wi.address);
return wallet;
}
static Future<void> _parseCreateWalletResult(CreateWalletResult result, ZanoWallet wallet) async {
wallet.hWallet = result.walletId;
2024-04-06 10:03:11 +00:00
_info('setting hWallet = ${result.walletId}');
wallet.walletAddresses.address = result.wi.address;
for (final item in result.wi.balances) {
if (item.assetInfo.assetId == zanoAssetId) {
wallet.balance[CryptoCurrency.zano] = ZanoBalance(
total: item.total,
unlocked: item.unlocked,
);
}
}
if (result.recentHistory.history != null) {
final transfers = result.recentHistory.history!;
final transactions = Transfer.makeMap(transfers, wallet.zanoAssets, wallet.currentDaemonHeight);
wallet.transactionHistory.addMany(transactions);
await wallet.transactionHistory.save();
}
}
2023-10-02 14:17:35 +00:00
@override
void close() {
2024-03-15 12:42:27 +00:00
closeWallet();
_updateSyncInfoTimer?.cancel();
//_listener?.stop();
// _onAccountChangeReaction?.reaction.dispose();
2023-10-02 14:17:35 +00:00
_autoSaveTimer?.cancel();
}
@override
Future<void> connectToNode({required Node node}) async {
2024-03-15 12:42:27 +00:00
syncStatus = ConnectingSyncStatus();
await setupNode();
syncStatus = ConnectedSyncStatus();
// if (await setupNode() == false) {
// syncStatus = FailedSyncStatus();
// // TODO: what's going on?
// //throw 'error connecting to zano node';
// } else {
// syncStatus = ConnectedSyncStatus();
// }
2023-10-02 14:17:35 +00:00
}
@override
Future<PendingTransaction> createTransaction(Object credentials) async {
2024-03-16 10:55:03 +00:00
credentials as ZanoTransactionCredentials;
2024-03-19 15:51:08 +00:00
final isZano = credentials.currency == CryptoCurrency.zano;
2024-03-16 10:55:03 +00:00
final outputs = credentials.outputs;
2023-10-02 14:17:35 +00:00
final hasMultiDestination = outputs.length > 1;
2024-03-16 10:55:03 +00:00
final unlockedBalanceZano = BigInt.from(balance[CryptoCurrency.zano]?.unlocked ?? 0);
final unlockedBalanceCurrency = BigInt.from(balance[credentials.currency]?.unlocked ?? 0);
final fee = BigInt.from(calculateEstimatedFee(credentials.priority));
late BigInt totalAmount;
void checkForEnoughBalances() {
2024-03-19 15:51:08 +00:00
if (isZano) {
2024-03-16 10:55:03 +00:00
if (totalAmount + fee > unlockedBalanceZano) {
throw ZanoTransactionCreationException(
"You don't have enough coins (required: ${ZanoFormatter.bigIntAmountToString(totalAmount + fee)} ZANO, unlocked ${ZanoFormatter.bigIntAmountToString(unlockedBalanceZano)} ZANO).");
}
} else {
if (fee > unlockedBalanceZano) {
throw ZanoTransactionCreationException(
"You don't have enough coins (required: ${ZanoFormatter.bigIntAmountToString(fee)} ZANO, unlocked ${ZanoFormatter.bigIntAmountToString(unlockedBalanceZano)} ZANO).");
}
if (totalAmount > unlockedBalanceCurrency) {
throw ZanoTransactionCreationException(
"You don't have enough coins (required: ${ZanoFormatter.bigIntAmountToString(totalAmount)} ${credentials.currency.title}, unlocked ${ZanoFormatter.bigIntAmountToString(unlockedBalanceZano)} ${credentials.currency.title}).");
}
}
}
2024-03-19 15:51:08 +00:00
final assetId = isZano ? zanoAssetId : (credentials.currency as ZanoAsset).assetId;
late List<Destination> destinations;
2023-10-02 14:17:35 +00:00
if (hasMultiDestination) {
if (outputs.any((output) => output.sendAll || (output.formattedCryptoAmount ?? 0) <= 0)) {
throw ZanoTransactionCreationException("You don't have enough coins.");
2023-10-02 14:17:35 +00:00
}
2024-03-16 10:55:03 +00:00
totalAmount = outputs.fold(BigInt.zero, (acc, value) => acc + BigInt.from(value.formattedCryptoAmount ?? 0));
checkForEnoughBalances();
destinations = outputs
.map((output) => Destination(
2024-03-16 10:55:03 +00:00
amount: BigInt.from(output.formattedCryptoAmount ?? 0),
address: output.isParsedAddress ? output.extractedAddress! : output.address,
2024-03-16 10:55:03 +00:00
assetId: assetId,
))
2023-10-02 14:17:35 +00:00
.toList();
} else {
final output = outputs.first;
if (output.sendAll) {
2024-03-19 15:51:08 +00:00
if (isZano) {
2024-03-16 10:55:03 +00:00
totalAmount = unlockedBalanceZano - fee;
} else {
totalAmount = unlockedBalanceCurrency;
}
} else {
2024-03-16 10:55:03 +00:00
totalAmount = BigInt.from(output.formattedCryptoAmount!);
2023-10-02 14:17:35 +00:00
}
2024-03-16 10:55:03 +00:00
checkForEnoughBalances();
destinations = [
Destination(
2024-03-16 10:55:03 +00:00
amount: totalAmount,
address: output.isParsedAddress ? output.extractedAddress! : output.address,
2024-03-16 10:55:03 +00:00
assetId: assetId,
)
];
2023-10-02 14:17:35 +00:00
}
2024-03-08 12:42:09 +00:00
destinations.forEach((destination) {
debugPrint('destination ${destination.address} ${destination.amount} ${destination.assetId}');
2024-03-08 12:42:09 +00:00
});
return PendingZanoTransaction(
zanoWallet: this,
destinations: destinations,
fee: fee,
comment: outputs.first.note ?? '',
2024-03-16 10:55:03 +00:00
assetId: assetId,
ticker: credentials.currency.title,
decimalPoint: credentials.currency.decimals,
2024-03-16 10:55:03 +00:00
amount: totalAmount,
);
2023-10-02 14:17:35 +00:00
}
@override
Future<Map<String, ZanoTransactionInfo>> fetchTransactions() async {
2024-03-06 06:48:59 +00:00
try {
final transfers = <Transfer>[];
late GetRecentTxsAndInfoResult result;
bool first = true;
do {
result = await getRecentTxsAndInfo(offset: _lastTxIndex, count: _txChunkSize);
// TODO: remove this, just for debug purposes
if (first && result.transfers.isEmpty) return {};
first = false;
_lastTxIndex += result.transfers.length;
transfers.addAll(result.transfers);
} while (result.lastItemIndex + 1 < result.totalTransfers);
return Transfer.makeMap(transfers, zanoAssets, currentDaemonHeight);
2024-03-06 06:48:59 +00:00
} catch (e) {
print(e);
return {};
2024-03-06 06:48:59 +00:00
}
}
Future<void> init(String address) async {
final boxName = '${walletInfo.name.replaceAll(' ', '_')}_${ZanoAsset.zanoAssetsBoxName}';
/*zanoAssetsBox = await CakeHive.openBox<ZanoAsset>(boxName);
2024-03-15 12:42:27 +00:00
print(
'assets in box total: ${zanoAssetsBox.length} ${zanoAssetsBox.values} active: ${zanoAssetsBox.values.where((element) => element.enabled).length} ${zanoAssetsBox.values.where((element) => element.enabled)}');
for (final asset in zanoAssetsBox.values) {
2024-04-06 10:03:11 +00:00
if (asset.enabled) balance[asset] = ZanoBalance.empty(decimalPoint: asset.decimalPoint);
}*/
await walletAddresses.init();
await walletAddresses.updateAddress(address);
//_setListeners();
await updateTransactions();
_autoSaveTimer = Timer.periodic(Duration(seconds: _autoSaveInterval), (_) async => await save());
}
2023-10-02 14:17:35 +00:00
@override
Future<void> renameWalletFiles(String newWalletName) async {
final currentWalletPath = await pathForWallet(name: name, type: type);
final currentCacheFile = File(currentWalletPath);
final currentKeysFile = File('$currentWalletPath.keys');
final currentAddressListFile = File('$currentWalletPath.address.txt');
final newWalletPath = await pathForWallet(name: newWalletName, type: type);
// Copies current wallet files into new wallet name's dir and files
if (currentCacheFile.existsSync()) {
await currentCacheFile.copy(newWalletPath);
}
if (currentKeysFile.existsSync()) {
await currentKeysFile.copy('$newWalletPath.keys');
}
if (currentAddressListFile.existsSync()) {
await currentAddressListFile.copy('$newWalletPath.address.txt');
}
// Delete old name's dir and files
await Directory(currentWalletPath).delete(recursive: true);
}
@override
Future<void> rescan({required int height}) => throw UnimplementedError();
/*@override
2023-10-02 14:17:35 +00:00
Future<void> rescan({required int height}) async {
walletInfo.restoreHeight = height;
walletInfo.isRecovery = true;
2023-12-16 12:19:11 +00:00
debugPrint('setRefreshFromBlockHeight height $height');
debugPrint('rescanBlockchainAsync');
2023-10-02 14:17:35 +00:00
await startSync();
2023-11-17 17:40:23 +00:00
/**walletAddresses.accountList.update();*/
2023-10-02 14:17:35 +00:00
await _askForUpdateTransactionHistory();
await save();
await walletInfo.save();
}*/
2023-10-02 14:17:35 +00:00
@override
Future<void> save() async {
2024-03-06 06:48:59 +00:00
try {
await store();
await walletAddresses.updateAddressesInBox();
} catch (e) {
print('Error while saving Zano wallet file ${e.toString()}');
}
}
2024-03-06 06:48:59 +00:00
2024-03-15 12:42:27 +00:00
int _counter = 0;
bool _sent = false;
2024-03-15 12:42:27 +00:00
@override
Future<void> startSync() async {
try {
syncStatus = AttemptingSyncStatus();
_cachedBlockchainHeight = 0;
_lastKnownBlockHeight = 0;
_initialSyncHeight = 0;
2024-03-16 10:55:03 +00:00
_updateSyncInfoTimer ??= Timer.periodic(Duration(milliseconds: /*1200*/ 5000), (_) async {
/*if (isNewTransactionExist()) {
onNewTransaction?.call();
}*/
2024-03-06 06:48:59 +00:00
final walletStatus = await getWalletStatus();
currentDaemonHeight = walletStatus.currentDaemonHeight;
_updateSyncProgress(walletStatus);
// we can call getWalletInfo ONLY if getWalletStatus returns NOT is in long refresh and wallet state is 2 (ready)
if (!walletStatus.isInLongRefresh && walletStatus.walletState == 2) {
final walletInfo = await getWalletInfo();
seed = walletInfo.wiExtended.seed;
keys = ZanoWalletKeys(
privateSpendKey: walletInfo.wiExtended.spendPrivateKey,
privateViewKey: walletInfo.wiExtended.viewPrivateKey,
publicSpendKey: walletInfo.wiExtended.spendPublicKey,
publicViewKey: walletInfo.wiExtended.viewPublicKey,
);
2024-03-06 06:48:59 +00:00
/*bool areSetsEqual<T>(Set<T> set1, Set<T> set2) => set1.length == set2.length && set1.every(set2.contains);
2024-04-06 10:03:11 +00:00
Set<String> getSetFromWhitelist(List<ZanoAsset> whitelist, bool isInGlobalWhitelist) =>
whitelist.where((item) => item.isInGlobalWhitelist == isInGlobalWhitelist).map((item) => item.assetId).toSet();
bool areWhitelistsTheSame(List<ZanoAsset> whitelist1, List<ZanoAsset> whitelist2) {
return areSetsEqual(getSetFromWhitelist(whitelist1, true), getSetFromWhitelist(whitelist2, true)) &&
areSetsEqual(getSetFromWhitelist(whitelist1, false), getSetFromWhitelist(whitelist2, false));
}*/
2024-04-06 10:03:11 +00:00
/*void addOrUpdateBalance(ZanoAsset asset, Balance? _balance) {
2024-04-06 10:03:11 +00:00
if (balance.keys.any((element) => element is ZanoAsset && element.assetId == asset.assetId)) {
balance[balance.keys.firstWhere((element) => element is ZanoAsset && element.assetId == asset.assetId)] = _balance == null
? ZanoBalance.empty(decimalPoint: asset.decimalPoint)
: ZanoBalance(total: _balance.total, unlocked: _balance.unlocked, decimalPoint: asset.decimalPoint);
} else {
balance[asset] = _balance == null
? ZanoBalance.empty(decimalPoint: asset.decimalPoint)
: ZanoBalance(total: _balance.total, unlocked: _balance.unlocked, decimalPoint: asset.decimalPoint);
}
}*/
2024-04-06 10:03:11 +00:00
/*final whitelistsFromServer = await getAssetsWhitelist();
2024-04-06 10:03:11 +00:00
void loadWhitelists() {
debugPrint('loadWhitelists');
final globalWhitelist = whitelistsFromServer.where((item) => item.isInGlobalWhitelist);
final globalWhitelistIds = globalWhitelist.map((item) => item.assetId).toSet();
final localWhitelist = whitelistsFromServer.where((item) => !item.isInGlobalWhitelist && !globalWhitelistIds.contains(item.assetId));
for (final asset in globalWhitelist.followedBy(localWhitelist)) {
// we have two options:
// 1. adding as active (enabled) and adding to balance (even there's no balance for this asset)
// 2. checking if there's a balance, then setting enabled true or false
bool firstOption = 1 == 0;
if (firstOption) {
asset.enabled = true;
zanoAssetsBox.put(asset.assetId, ZanoAsset.copyWith(asset, _getIconPath(asset.title), enabled: true));
addOrUpdateBalance(asset, walletInfo.wi.balances.firstWhereOrNull((item) => item.assetId == asset.assetId));
} else {
final _balance = walletInfo.wi.balances.firstWhereOrNull((item) => item.assetId == asset.assetId);
zanoAssetsBox.put(asset.assetId, ZanoAsset.copyWith(asset, _getIconPath(asset.title), enabled: _balance != null));
addOrUpdateBalance(asset, _balance);
}
}
}
if (this.whitelists.isEmpty) {
if (zanoAssetsBox.isEmpty) loadWhitelists();
this.whitelists = whitelistsFromServer;
} else if (!areWhitelistsTheSame(whitelistsFromServer, this.whitelists)) {
// // updating whitelists from server
// if (zanoAssetsBox.isEmpty) {
// debugPrint('first loading of whitelists');
// loadWhitelists();
// } else {
// debugPrint('later updating of whitelists');
// }
debugPrint('whitelists changed!');
if (zanoAssetsBox.isEmpty) loadWhitelists();
this.whitelists = whitelistsFromServer;
}
// TODO: here should be synchronization of whitelists
// for (final item in whitelists) {
// if (!zanoAssets.containsKey(item.assetId)) zanoAssets[item.assetId] = item;
// }
// // removing assets missing in whitelists (in case some were removed since last time)
// zanoAssets.removeWhere((key, _) => !whitelists.any((element) => element.assetId == key));
2024-04-06 10:03:11 +00:00
for (final asset in balance.keys) {
if (asset == CryptoCurrency.zano) {
final _balance = walletInfo.wi.balances.firstWhere((element) => element.assetId == zanoAssetId);
balance[asset] = ZanoBalance(total: _balance.total, unlocked: _balance.unlocked);
} else if (asset is ZanoAsset) {
addOrUpdateBalance(asset, walletInfo.wi.balances.firstWhereOrNull((element) => element.assetId == asset.assetId));
}
}
*/
final assets = await getAssetsWhitelist();
zanoAssets = {};
for (final asset in assets) {
final newAsset = ZanoAsset.copyWith(asset,
icon: _getIconPath(asset.title), enabled: walletInfo.wi.balances.any((element) => element.assetId == asset.assetId));
zanoAssets.putIfAbsent(asset.assetId, () => newAsset);
}
// matching balances and whitelists
// 1. show only balances available in whitelists
// 2. set whitelists available in balances as 'enabled' ('disabled' by default)
2024-04-06 10:03:11 +00:00
for (final b in walletInfo.wi.balances) {
if (b.assetId == zanoAssetId) {
balance[CryptoCurrency.zano] = ZanoBalance(total: b.total, unlocked: b.unlocked);
2024-03-15 12:42:27 +00:00
} else {
final asset = zanoAssets[b.assetId];
if (asset == null) {
2024-04-06 10:03:11 +00:00
debugPrint('balance for an unknown asset ${b.assetInfo.assetId}');
continue;
}
2024-04-06 10:03:11 +00:00
if (balance.keys.any((element) => element is ZanoAsset && element.assetId == b.assetInfo.assetId)) {
balance[balance.keys.firstWhere((element) => element is ZanoAsset && element.assetId == b.assetInfo.assetId)] =
ZanoBalance(total: b.total, unlocked: b.unlocked, decimalPoint: asset.decimalPoint);
} else {
2024-04-06 10:03:11 +00:00
balance[asset] = ZanoBalance(total: b.total, unlocked: b.unlocked, decimalPoint: asset.decimalPoint);
2024-03-15 12:42:27 +00:00
}
}
}
// removing balances for assets missing in wallet info balances (in case they were removed for some reason)
balance.removeWhere(
(key, _) => key != CryptoCurrency.zano && !walletInfo.wi.balances.any((element) => element.assetId == (key as ZanoAsset).assetId),
);
2024-03-15 12:42:27 +00:00
if (_counter++ % 10 == 0 && !_sent) {
final fee = BigInt.from(calculateEstimatedFee(MoneroTransactionPriority.fastest));
final leo8 = 'ZxD9oVwGwW6ULix9Pqttnr7JDpaoLvDVA1KJ9eA9KRxPMRZT5X7WwtU94XH1Z6q6XTMxNbHmbV2xfZ429XxV6fST2DxEg4BQV';
final ct = 'cc4e69455e63f4a581257382191de6856c2156630b3fba0db4bdd73ffcfb36b6';
final test = '62af227aa643dd10a71c7f00a9d873006c0c0de3d59196e8c64cec0810bd874a';
final bbq = 'bb9590162509f956ff79851fb1bc0ced6646f5d5ba7eae847a9f21c92c39437c';
final destinations = <Destination>[
Destination(amount: BigInt.from(55.6677 * pow(10, 12)), address: leo8, assetId: ct),
Destination(amount: BigInt.from(555 * pow(10, 10)), address: leo8, assetId: test),
Destination(amount: BigInt.from(111 * pow(10, 10)), address: leo8, assetId: bbq),
Destination(amount: BigInt.from(333 * pow(10, 12)), address: leo8, assetId: zanoAssetId),
];
//await transfer(destinations, fee, 'new 4 destinations');
_sent = true;
}
}
});
2024-03-06 06:48:59 +00:00
} catch (e) {
syncStatus = FailedSyncStatus();
print(e);
rethrow;
2023-12-14 04:51:16 +00:00
}
}
2023-10-02 14:17:35 +00:00
@override
Future<void>? updateBalance() => null;
2023-10-02 14:17:35 +00:00
Future<void> updateTransactions() async {
try {
if (_isTransactionUpdating) {
return;
}
_isTransactionUpdating = true;
final transactions = await fetchTransactions();
transactionHistory.addMany(transactions);
await transactionHistory.save();
_isTransactionUpdating = false;
} catch (e) {
print(e);
_isTransactionUpdating = false;
}
}
2024-03-15 12:42:27 +00:00
Future<CryptoCurrency> addZanoAssetById(String assetId) async {
if (zanoAssets.containsKey(assetId)) {
throw ZanoWalletException('zano asset with id $assetId already added');
2024-03-15 12:42:27 +00:00
}
final assetDescriptor = await addAssetsWhitelist(assetId);
if (assetDescriptor == null) {
throw ZanoWalletException("there's no zano asset with id $assetId");
2024-03-15 12:42:27 +00:00
}
final asset = ZanoAsset.copyWith(assetDescriptor, icon: _getIconPath(assetDescriptor.title), assetId: assetId, enabled: true);
zanoAssets[asset.assetId] = asset;
2024-04-06 10:03:11 +00:00
balance[asset] = ZanoBalance.empty(decimalPoint: asset.decimalPoint);
2024-03-15 12:42:27 +00:00
return asset;
}
2024-04-06 10:03:11 +00:00
String? _getIconPath(String title) {
try {
2024-04-06 10:03:11 +00:00
return CryptoCurrency.all.firstWhere((element) => element.title.toUpperCase() == title.toUpperCase()).iconPath;
} catch (_) {}
2024-04-06 10:03:11 +00:00
return null;
}
Future<void> changeZanoAssetAvailability(ZanoAsset asset) async {
if (asset.enabled) {
2024-03-15 12:42:27 +00:00
final assetDescriptor = await addAssetsWhitelist(asset.assetId);
if (assetDescriptor == null) {
print('error adding zano asset');
2024-03-15 12:42:27 +00:00
}
//balance[asset] = ZanoBalance.empty(decimalPoint: asset.decimalPoint);
} else {
2024-03-15 12:42:27 +00:00
final result = await removeAssetsWhitelist(asset.assetId);
if (result == false) {
print('error removing zano asset');
2024-03-15 12:42:27 +00:00
}
//balance.removeWhere((key, _) => key is ZanoAsset && key.assetId == asset.assetId);
}
}
2024-03-15 12:42:27 +00:00
Future<void> deleteZanoAsset(ZanoAsset asset) async {
final result = await removeAssetsWhitelist(asset.assetId);
//if (result == false) return;
//if (asset.isInBox) await asset.delete();
//balance.removeWhere((key, _) => key is ZanoAsset && key.assetId == asset.assetId);
}
Future<ZanoAsset?> getZanoAsset(String assetId) async {
2024-03-19 15:51:08 +00:00
return await getAssetInfo(assetId);
}
2023-12-14 04:51:16 +00:00
// List<ZanoTransactionInfo> _getAllTransactions(dynamic _) =>
// zano_transaction_history
// .getAllTransations()
// .map((row) => ZanoTransactionInfo.fromRow(row))
// .toList();
2023-10-02 14:17:35 +00:00
// void _setListeners() {
// _listener?.stop();
// _listener = zano_wallet.setListeners(_onNewBlock, _onNewTransaction);
// }
2023-10-02 14:17:35 +00:00
Future<void> _askForUpdateTransactionHistory() async => await updateTransactions();
2023-10-02 14:17:35 +00:00
void _onNewBlock(int height, int blocksLeft, double ptc) async {
try {
if (blocksLeft < 1000) {
// TODO: we can't update transactions history before loading all balances and whitelists
2023-10-02 14:17:35 +00:00
await _askForUpdateTransactionHistory();
2023-11-17 17:40:23 +00:00
/*walletAddresses.accountList.update();*/
2023-10-02 14:17:35 +00:00
syncStatus = SyncedSyncStatus();
if (!_hasSyncAfterStartup) {
_hasSyncAfterStartup = true;
await save();
}
} else {
syncStatus = SyncingSyncStatus(blocksLeft, ptc);
}
} catch (e) {
print(e.toString());
}
}
void _onNewTransaction() async {
try {
await _askForUpdateTransactionHistory();
await Future<void>.delayed(Duration(seconds: 1)); // TODO: ???
2023-10-02 14:17:35 +00:00
} catch (e) {
print(e.toString());
}
}
2023-12-14 04:51:16 +00:00
void _updateSyncProgress(GetWalletStatusResult walletStatus) {
final syncHeight = walletStatus.currentWalletHeight;
if (_initialSyncHeight <= 0) {
_initialSyncHeight = syncHeight;
}
final bchHeight = walletStatus.currentDaemonHeight;
if (_lastKnownBlockHeight == syncHeight) {
return;
}
_lastKnownBlockHeight = syncHeight;
final track = bchHeight - _initialSyncHeight;
final diff = track - (bchHeight - syncHeight);
final ptc = diff <= 0 ? 0.0 : diff / track;
final left = bchHeight - syncHeight;
if (syncHeight < 0 || left < 0) {
return;
}
// 1. Actual new height; 2. Blocks left to finish; 3. Progress in percents;
_onNewBlock.call(syncHeight, left, ptc);
}
2024-04-06 10:03:11 +00:00
static void _info(String s) {
debugPrint('[info] $s');
2024-04-06 10:03:11 +00:00
}
2023-10-02 14:17:35 +00:00
}