mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 04:19:50 +00:00
* tor wip * Enable tor on iOS * Prevent app lag when node is exceptionally slow (usually over tor) * fix: logic in daemonBlockchainHeight refresh fix: storing tor state * Pin ledger_flutter_plus dependency to fix builds * bump arti version * wip * add single httpclient * route everything I was able to catch trough the built-in tor node * Enable proxy for http.Client [run tests] * add tor proxy support to cw_evm, cw_tron and cw_polygon [run tests] * remove log pollution, cleanup [skip slack] * fix tests not working in latest main [skip slack] [run tests] * remove cw_wownero import * fix build issues * migrate all remaining calls to use ProxyWrapper add a CI action to enforce using ProxyWrapper instead of http/http.dart to prevent leaks * fix tor background sync (will work on test builds after #2142 is merged and this PR is rebased on top) * wip [skip ci] * relicense to GPLv3 add socks5 license, build fixes * use ProxyWrapper instead of http in robinhood * Revert "relicense to GPLv3" * feat(cw_bitcoin): support socks proxy and CakeTor * fix(tor): migrate OCP and EVM over to ProxyWrapper() * chore: cleanup fix: show tor loading screen when app is starting * fix: tor switch properly dismisses fullscreen loading dialog fix: connectToNode after tor startup on app start * fix(tor): status check for xmr/wow/zano * fix(tor): onramper request fix * fix(api): ServicesResponse is now being cached and doesn't fetch data everytime DashboardViewModel is being rebuilt fix(tor): do not fallback to clearnet when tor failed. fix(tor): do not leak connections during app startup chore: refactor bootstrap() function to be separated into bootstrapOffline and bootstrapOnline fix(cw_bitcoin): migrate payjoin to use ProxyWrapper * [skip ci] remove print * address comments from review * fix: derusting tor implementation Instead of rust-based Arti I've moved back to the OG C++ tor implementation. This fixed all issues we had with Tor. - onion services now work - all requests are going through without random errors - we don't have to navigate a maze of multiple forks of multiple packages - fully working `torrc` config file (probably will be needed for Tari). - logging for Tor client - and so on. feat: network logging tab feat: use built-in proxy on Tails - this should resolve all issues for Tails users (needs testing though) * fix conflicts with main bump https to fix build issue relax store() call * fix(cw_wownero): tor connection fix(tor): connection issues * fix(cw_evm): add missing chainId fix(cw_core): solana rpc fix * feat: mark tor as experimental fix: drop anonpay onion authority fix: drop fiatapi onion authority fix: drop trocador onion authority fix: disable networkimage when tor is enabled fix: handle cakepay errors gracefully * fix re-formatting [skip ci] * changes from review * Delete android/.kotlin/sessions/kotlin-compiler-2468481326039681181.salive * fix missing imports * Update pubspec_base.yaml --------- Co-authored-by: OmarHatem <omarh.ismail1@gmail.com>
367 lines
No EOL
11 KiB
Dart
367 lines
No EOL
11 KiB
Dart
import 'dart:async';
|
|
import 'dart:ffi';
|
|
import 'dart:isolate';
|
|
|
|
import 'package:cw_core/utils/print_verbose.dart';
|
|
import 'package:cw_wownero/api/account_list.dart';
|
|
import 'package:cw_wownero/api/exceptions/setup_wallet_exception.dart';
|
|
import 'package:monero/wownero.dart' as wownero;
|
|
import 'package:mutex/mutex.dart';
|
|
import 'package:polyseed/polyseed.dart';
|
|
|
|
int getSyncingHeight() {
|
|
// final height = wownero.WOWNERO_cw_WalletListener_height(getWlptr());
|
|
final h2 = wownero.Wallet_blockChainHeight(wptr!);
|
|
// printV("height: $height / $h2");
|
|
return h2;
|
|
}
|
|
|
|
bool isNeededToRefresh() {
|
|
// final ret = wownero.WOWNERO_cw_WalletListener_isNeedToRefresh(getWlptr());
|
|
// wownero.WOWNERO_cw_WalletListener_resetNeedToRefresh(getWlptr());
|
|
return true;
|
|
}
|
|
|
|
bool isNewTransactionExist() {
|
|
// final ret =
|
|
// wownero.WOWNERO_cw_WalletListener_isNewTransactionExist(getWlptr());
|
|
// wownero.WOWNERO_cw_WalletListener_resetIsNewTransactionExist(getWlptr());
|
|
// NOTE: I don't know why wownero is being funky, but
|
|
return true;
|
|
}
|
|
|
|
String getFilename() => wownero.Wallet_filename(wptr!);
|
|
|
|
String getSeed() {
|
|
// monero.Wallet_setCacheAttribute(wptr!, key: "cakewallet.seed", value: seed);
|
|
final cakepolyseed =
|
|
wownero.Wallet_getCacheAttribute(wptr!, key: "cakewallet.seed");
|
|
final cakepassphrase = getPassphrase();
|
|
|
|
final weirdPolyseed = wownero.Wallet_getPolyseed(wptr!, passphrase: cakepassphrase);
|
|
if (weirdPolyseed != "") return weirdPolyseed;
|
|
|
|
if (cakepolyseed != "") {
|
|
if (cakepassphrase != "") {
|
|
try {
|
|
final lang = PolyseedLang.getByPhrase(cakepolyseed);
|
|
final coin = PolyseedCoin.POLYSEED_WOWNERO;
|
|
final ps = Polyseed.decode(cakepolyseed, lang, coin);
|
|
final passphrase = getPassphrase();
|
|
if (ps.isEncrypted || passphrase == "") return ps.encode(lang, coin);
|
|
ps.crypt(passphrase);
|
|
return ps.encode(lang, coin);
|
|
} catch (e) {
|
|
printV(e);
|
|
}
|
|
}
|
|
return cakepolyseed;
|
|
}
|
|
final legacy = getSeedLegacy(null);
|
|
return legacy;
|
|
}
|
|
|
|
String getSeedLegacy(String? language) {
|
|
final cakepassphrase = getPassphrase();
|
|
var legacy = wownero.Wallet_seed(wptr!, seedOffset: cakepassphrase);
|
|
switch (language) {
|
|
case "Chinese (Traditional)": language = "Chinese (simplified)"; break;
|
|
case "Chinese (Simplified)": language = "Chinese (simplified)"; break;
|
|
case "Korean": language = "English"; break;
|
|
case "Czech": language = "English"; break;
|
|
case "Japanese": language = "English"; break;
|
|
}
|
|
if (wownero.Wallet_status(wptr!) != 0) {
|
|
wownero.Wallet_setSeedLanguage(wptr!, language: language ?? "English");
|
|
legacy = wownero.Wallet_seed(wptr!, seedOffset: cakepassphrase);
|
|
}
|
|
if (wownero.Wallet_status(wptr!) != 0) {
|
|
final err = wownero.Wallet_errorString(wptr!);
|
|
if (legacy.isNotEmpty) {
|
|
return "$err\n\n$legacy";
|
|
}
|
|
return err;
|
|
}
|
|
return legacy;
|
|
}
|
|
Map<int, Map<int, Map<int, String>>> addressCache = {};
|
|
|
|
String getPassphrase() {
|
|
return wownero.Wallet_getCacheAttribute(wptr!, key: "cakewallet.passphrase");
|
|
}
|
|
|
|
String getAddress({int accountIndex = 0, int addressIndex = 1}) {
|
|
while (wownero.Wallet_numSubaddresses(wptr!, accountIndex: accountIndex)-1 < addressIndex) {
|
|
printV("adding subaddress");
|
|
wownero.Wallet_addSubaddress(wptr!, accountIndex: accountIndex);
|
|
}
|
|
addressCache[wptr!.address] ??= {};
|
|
addressCache[wptr!.address]![accountIndex] ??= {};
|
|
addressCache[wptr!.address]![accountIndex]![addressIndex] ??= wownero.Wallet_address(wptr!,
|
|
accountIndex: accountIndex, addressIndex: addressIndex);
|
|
return addressCache[wptr!.address]![accountIndex]![addressIndex]!;
|
|
}
|
|
|
|
int getFullBalance({int accountIndex = 0}) =>
|
|
wownero.Wallet_balance(wptr!, accountIndex: accountIndex);
|
|
|
|
int getUnlockedBalance({int accountIndex = 0}) =>
|
|
wownero.Wallet_unlockedBalance(wptr!, accountIndex: accountIndex);
|
|
|
|
int getCurrentHeight() => wownero.Wallet_blockChainHeight(wptr!);
|
|
|
|
int cachedNodeHeight = 0;
|
|
int getNodeHeightSync() {
|
|
(() async {
|
|
final wptrAddress = wptr!.address;
|
|
cachedNodeHeight = await Isolate.run(() async {
|
|
return wownero.Wallet_daemonBlockChainHeight(Pointer.fromAddress(wptrAddress));
|
|
});
|
|
})();
|
|
return cachedNodeHeight;
|
|
}
|
|
|
|
bool isConnectedSync() => wownero.Wallet_connected(wptr!) != 0;
|
|
|
|
Future<bool> setupNodeSync(
|
|
{required String address,
|
|
String? login,
|
|
String? password,
|
|
bool useSSL = false,
|
|
bool isLightWallet = false,
|
|
String? socksProxyAddress}) async {
|
|
printV('''
|
|
{
|
|
wptr!,
|
|
daemonAddress: $address,
|
|
useSsl: $useSSL,
|
|
proxyAddress: $socksProxyAddress ?? '',
|
|
daemonUsername: $login ?? '',
|
|
daemonPassword: $password ?? ''
|
|
}
|
|
''');
|
|
final addr = wptr!.address;
|
|
await Isolate.run(() {
|
|
wownero.Wallet_init(Pointer.fromAddress(addr),
|
|
daemonAddress: address,
|
|
useSsl: useSSL,
|
|
proxyAddress: socksProxyAddress ?? '',
|
|
daemonUsername: login ?? '',
|
|
daemonPassword: password ?? '');
|
|
});
|
|
// wownero.Wallet_init3(wptr!, argv0: '', defaultLogBaseName: 'wowneroc', console: true);
|
|
|
|
final status = wownero.Wallet_status(wptr!);
|
|
|
|
if (status != 0) {
|
|
final error = wownero.Wallet_errorString(wptr!);
|
|
printV("error: $error");
|
|
throw SetupWalletException(message: error);
|
|
}
|
|
|
|
return status == 0;
|
|
}
|
|
|
|
void startRefreshSync() {
|
|
// wownero.Wallet_refreshAsync(wptr!);
|
|
wownero.Wallet_startRefresh(wptr!);
|
|
}
|
|
|
|
Future<bool> connectToNode() async {
|
|
return true;
|
|
}
|
|
|
|
void setRefreshFromBlockHeight({required int height}) =>
|
|
wownero.Wallet_setRefreshFromBlockHeight(wptr!,
|
|
refresh_from_block_height: height);
|
|
|
|
void setRecoveringFromSeed({required bool isRecovery}) =>
|
|
wownero.Wallet_setRecoveringFromSeed(wptr!, recoveringFromSeed: isRecovery);
|
|
|
|
final storeMutex = Mutex();
|
|
|
|
int lastStorePointer = 0;
|
|
int lastStoreHeight = 0;
|
|
void storeSync() async {
|
|
final addr = wptr!.address;
|
|
final synchronized = await Isolate.run(() {
|
|
return wownero.Wallet_synchronized(Pointer.fromAddress(addr));
|
|
});
|
|
if (lastStorePointer == wptr!.address &&
|
|
lastStoreHeight + 5000 < wownero.Wallet_blockChainHeight(wptr!) &&
|
|
!synchronized) {
|
|
return;
|
|
}
|
|
lastStorePointer = wptr!.address;
|
|
lastStoreHeight = wownero.Wallet_blockChainHeight(wptr!);
|
|
await storeMutex.acquire();
|
|
Isolate.run(() {
|
|
wownero.Wallet_store(Pointer.fromAddress(addr));
|
|
});
|
|
storeMutex.release();
|
|
}
|
|
|
|
void setPasswordSync(String password) {
|
|
wownero.Wallet_setPassword(wptr!, password: password);
|
|
|
|
final status = wownero.Wallet_status(wptr!);
|
|
if (status != 0) {
|
|
throw Exception(wownero.Wallet_errorString(wptr!));
|
|
}
|
|
}
|
|
|
|
void closeCurrentWallet() {
|
|
wownero.Wallet_stop(wptr!);
|
|
}
|
|
|
|
String getSecretViewKey() => wownero.Wallet_secretViewKey(wptr!);
|
|
|
|
String getPublicViewKey() => wownero.Wallet_publicViewKey(wptr!);
|
|
|
|
String getSecretSpendKey() => wownero.Wallet_secretSpendKey(wptr!);
|
|
|
|
String getPublicSpendKey() => wownero.Wallet_publicSpendKey(wptr!);
|
|
|
|
class SyncListener {
|
|
SyncListener(this.onNewBlock, this.onNewTransaction)
|
|
: _cachedBlockchainHeight = 0,
|
|
_lastKnownBlockHeight = 0,
|
|
_initialSyncHeight = 0;
|
|
|
|
void Function(int, int, double) onNewBlock;
|
|
void Function() onNewTransaction;
|
|
|
|
Timer? _updateSyncInfoTimer;
|
|
int _cachedBlockchainHeight;
|
|
int _lastKnownBlockHeight;
|
|
int _initialSyncHeight;
|
|
|
|
Future<int> getNodeHeightOrUpdate(int baseHeight) async {
|
|
if (_cachedBlockchainHeight < baseHeight || _cachedBlockchainHeight == 0) {
|
|
_cachedBlockchainHeight = await getNodeHeight();
|
|
}
|
|
|
|
return _cachedBlockchainHeight;
|
|
}
|
|
|
|
void start() {
|
|
_cachedBlockchainHeight = 0;
|
|
_lastKnownBlockHeight = 0;
|
|
_initialSyncHeight = 0;
|
|
_updateSyncInfoTimer ??=
|
|
Timer.periodic(Duration(milliseconds: 1200), (_) async {
|
|
if (isNewTransactionExist()) {
|
|
onNewTransaction();
|
|
}
|
|
|
|
var syncHeight = getSyncingHeight();
|
|
|
|
if (syncHeight <= 0) {
|
|
syncHeight = getCurrentHeight();
|
|
}
|
|
|
|
if (_initialSyncHeight <= 0) {
|
|
_initialSyncHeight = syncHeight;
|
|
}
|
|
|
|
final bchHeight = await getNodeHeightOrUpdate(syncHeight);
|
|
|
|
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);
|
|
});
|
|
}
|
|
|
|
void stop() => _updateSyncInfoTimer?.cancel();
|
|
}
|
|
|
|
SyncListener setListeners(void Function(int, int, double) onNewBlock,
|
|
void Function() onNewTransaction) {
|
|
final listener = SyncListener(onNewBlock, onNewTransaction);
|
|
// setListenerNative();
|
|
return listener;
|
|
}
|
|
|
|
void onStartup() {}
|
|
|
|
void _storeSync(Object _) => storeSync();
|
|
|
|
Future<bool> _setupNodeSync(Map<String, Object?> args) async {
|
|
final address = args['address'] as String;
|
|
final login = (args['login'] ?? '') as String;
|
|
final password = (args['password'] ?? '') as String;
|
|
final useSSL = args['useSSL'] as bool;
|
|
final isLightWallet = args['isLightWallet'] as bool;
|
|
final socksProxyAddress = (args['socksProxyAddress'] ?? '') as String;
|
|
|
|
return setupNodeSync(
|
|
address: address,
|
|
login: login,
|
|
password: password,
|
|
useSSL: useSSL,
|
|
isLightWallet: isLightWallet,
|
|
socksProxyAddress: socksProxyAddress);
|
|
}
|
|
|
|
bool _isConnected(Object _) => isConnectedSync();
|
|
|
|
int _getNodeHeight(Object _) => getNodeHeightSync();
|
|
|
|
void startRefresh() => startRefreshSync();
|
|
|
|
Future<void> setupNode(
|
|
{required String address,
|
|
String? login,
|
|
String? password,
|
|
bool useSSL = false,
|
|
String? socksProxyAddress,
|
|
bool isLightWallet = false}) async =>
|
|
_setupNodeSync({
|
|
'address': address,
|
|
'login': login,
|
|
'password': password,
|
|
'useSSL': useSSL,
|
|
'isLightWallet': isLightWallet,
|
|
'socksProxyAddress': socksProxyAddress
|
|
});
|
|
|
|
Future<void> store() async => _storeSync(0);
|
|
|
|
Future<bool> isConnected() async => _isConnected(0);
|
|
|
|
Future<int> getNodeHeight() async => _getNodeHeight(0);
|
|
|
|
void rescanBlockchainAsync() => wownero.Wallet_rescanBlockchainAsync(wptr!);
|
|
|
|
String getSubaddressLabel(int accountIndex, int addressIndex) {
|
|
return wownero.Wallet_getSubaddressLabel(wptr!,
|
|
accountIndex: accountIndex, addressIndex: addressIndex);
|
|
}
|
|
|
|
Future setTrustedDaemon(bool trusted) async =>
|
|
wownero.Wallet_setTrustedDaemon(wptr!, arg: trusted);
|
|
|
|
Future<bool> trustedDaemon() async => wownero.Wallet_trustedDaemon(wptr!);
|
|
|
|
String signMessage(String message, {String address = ""}) {
|
|
return wownero.Wallet_signMessage(wptr!, message: message, address: address);
|
|
}
|
|
|
|
bool verifyMessage(String message, String address, String signature) {
|
|
return wownero.Wallet_verifySignedMessage(wptr!, message: message, address: address, signature: signature);
|
|
}
|
|
|
|
Map<String, List<int>> debugCallLength() => wownero.debugCallLength; |