mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 12:29:51 +00:00
* - enabled development options in CI builds. - Implemented caching for account retrieval. - refactor transaction handling in `dashboard_view_model.dart` to improve efficiency and reduce unnecessary updates in xmr. - `DevMoneroCallProfilerPage`, for profiling performance of xmr,wow,zano wallet calls. * use FeatureFlag.hasDevOptions * prevent crashes in monero_c by using mutexes properly improve performance of _transactionDisposer remove unnecessary checks * remove logging, bring back simplified logic * update _transactionDisposer on length and confirmation of first and last transaction * address comments from review * don't throw unhandled exceptions in unawaited async code * use cached transaction list in getAllSubaddresses, fix usage of txHistoryMutex * [DNM] fix: crashes when opening wallet, performance issue when syncing and update dependencies * Revert "use cached transaction list in getAllSubaddresses, fix usage of txHistoryMutex" This reverts commit 4c4c33ac6a47603e970a6c8d940e90204525b241. * Revert "[DNM] fix: crashes when opening wallet, performance issue when syncing and update dependencies" This reverts commit d7603445ad6ae76d76bf179c34728ce242c8c610. * Revert "use cached transaction list in getAllSubaddresses, fix usage of txHistoryMutex" This reverts commit 4c4c33ac6a47603e970a6c8d940e90204525b241. * update shared_preferences * improve state management performance by not rendering multiple changes in transaction screen on a single frame * fix wallet switching
60 lines
1.6 KiB
Dart
60 lines
1.6 KiB
Dart
import 'dart:ffi';
|
|
import 'dart:isolate';
|
|
|
|
import 'package:cw_monero/api/account_list.dart';
|
|
import 'package:monero/monero.dart' as monero;
|
|
import 'package:mutex/mutex.dart';
|
|
|
|
monero.Coins? coins = null;
|
|
final coinsMutex = Mutex();
|
|
|
|
Future<void> refreshCoins(int accountIndex) async {
|
|
if (coinsMutex.isLocked) {
|
|
return;
|
|
}
|
|
coins = monero.Wallet_coins(wptr!);
|
|
final coinsPtr = coins!.address;
|
|
await coinsMutex.acquire();
|
|
await Isolate.run(() => monero.Coins_refresh(Pointer.fromAddress(coinsPtr)));
|
|
coinsMutex.release();
|
|
}
|
|
|
|
Future<int> countOfCoins() async {
|
|
await coinsMutex.acquire();
|
|
final count = monero.Coins_count(coins!);
|
|
coinsMutex.release();
|
|
return count;
|
|
}
|
|
|
|
Future<monero.CoinsInfo> getCoin(int index) async {
|
|
await coinsMutex.acquire();
|
|
final coin = monero.Coins_coin(coins!, index);
|
|
coinsMutex.release();
|
|
return coin;
|
|
}
|
|
|
|
Future<int?> getCoinByKeyImage(String keyImage) async {
|
|
final count = await countOfCoins();
|
|
for (int i = 0; i < count; i++) {
|
|
final coin = await getCoin(i);
|
|
final coinAddress = monero.CoinsInfo_keyImage(coin);
|
|
if (keyImage == coinAddress) {
|
|
return i;
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
Future<void> freezeCoin(int index) async {
|
|
await coinsMutex.acquire();
|
|
final coinsPtr = coins!.address;
|
|
await Isolate.run(() => monero.Coins_setFrozen(Pointer.fromAddress(coinsPtr), index: index));
|
|
coinsMutex.release();
|
|
}
|
|
|
|
Future<void> thawCoin(int index) async {
|
|
await coinsMutex.acquire();
|
|
final coinsPtr = coins!.address;
|
|
await Isolate.run(() => monero.Coins_thaw(Pointer.fromAddress(coinsPtr), index: index));
|
|
coinsMutex.release();
|
|
}
|