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>
318 lines
10 KiB
Dart
318 lines
10 KiB
Dart
import 'dart:convert';
|
|
|
|
import 'package:cake_wallet/.secrets.g.dart' as secrets;
|
|
import 'package:cake_wallet/exchange/exchange_provider_description.dart';
|
|
import 'package:cake_wallet/exchange/limits.dart';
|
|
import 'package:cake_wallet/exchange/provider/exchange_provider.dart';
|
|
import 'package:cake_wallet/exchange/trade.dart';
|
|
import 'package:cake_wallet/exchange/trade_not_found_exception.dart';
|
|
import 'package:cake_wallet/exchange/trade_request.dart';
|
|
import 'package:cake_wallet/exchange/trade_state.dart';
|
|
import 'package:cake_wallet/exchange/utils/currency_pairs_utils.dart';
|
|
import 'package:cw_core/utils/proxy_wrapper.dart';
|
|
import 'package:cw_core/crypto_currency.dart';
|
|
import 'package:cw_core/utils/print_verbose.dart';
|
|
|
|
class ExolixExchangeProvider extends ExchangeProvider {
|
|
ExolixExchangeProvider() : super(pairList: supportedPairs(_notSupported));
|
|
|
|
static final apiKey = secrets.exolixApiKey;
|
|
static const apiBaseUrl = 'exolix.com';
|
|
static const transactionsPath = '/api/v2/transactions';
|
|
static const ratePath = '/api/v2/rate';
|
|
|
|
static const List<CryptoCurrency> _notSupported = [
|
|
CryptoCurrency.usdt,
|
|
CryptoCurrency.xhv,
|
|
CryptoCurrency.btt,
|
|
CryptoCurrency.firo,
|
|
CryptoCurrency.zaddr,
|
|
CryptoCurrency.xvg,
|
|
CryptoCurrency.kmd,
|
|
CryptoCurrency.paxg,
|
|
CryptoCurrency.rune,
|
|
CryptoCurrency.scrt,
|
|
CryptoCurrency.btcln,
|
|
CryptoCurrency.cro,
|
|
CryptoCurrency.ftm,
|
|
CryptoCurrency.frax,
|
|
CryptoCurrency.gusd,
|
|
CryptoCurrency.gtc,
|
|
CryptoCurrency.weth,
|
|
];
|
|
|
|
@override
|
|
String get title => 'Exolix';
|
|
|
|
@override
|
|
bool get isAvailable => true;
|
|
|
|
@override
|
|
bool get isEnabled => true;
|
|
|
|
@override
|
|
bool get supportsFixedRate => true;
|
|
|
|
@override
|
|
ExchangeProviderDescription get description => ExchangeProviderDescription.exolix;
|
|
|
|
@override
|
|
Future<bool> checkIsAvailable() async => true;
|
|
|
|
@override
|
|
Future<Limits> fetchLimits({
|
|
required CryptoCurrency from,
|
|
required CryptoCurrency to,
|
|
required bool isFixedRateMode,
|
|
}) async {
|
|
final params = <String, String>{
|
|
'rateType': _getRateType(isFixedRateMode),
|
|
'amount': '1',
|
|
'apiToken': apiKey,
|
|
};
|
|
|
|
if (isFixedRateMode) {
|
|
params['coinFrom'] = _normalizeCurrency(to);
|
|
params['coinTo'] = _normalizeCurrency(from);
|
|
params['networkFrom'] = _networkFor(to);
|
|
params['networkTo'] = _networkFor(from);
|
|
} else {
|
|
params['coinFrom'] = _normalizeCurrency(from);
|
|
params['coinTo'] = _normalizeCurrency(to);
|
|
params['networkFrom'] = _networkFor(from);
|
|
params['networkTo'] = _networkFor(to);
|
|
}
|
|
|
|
// Maximum of 2 attempts to fetch limits
|
|
for (int i = 0; i < 2; i++) {
|
|
final uri = Uri.https(apiBaseUrl, ratePath, params);
|
|
final response = await ProxyWrapper().get(clearnetUri: uri);
|
|
|
|
|
|
if (response.statusCode == 200) {
|
|
final responseJSON = json.decode(response.body) as Map<String, dynamic>;
|
|
final minAmount = responseJSON['minAmount'];
|
|
final maxAmount = responseJSON['maxAmount'];
|
|
return Limits(min: _toDouble(minAmount), max: _toDouble(maxAmount));
|
|
} else if (response.statusCode == 422) {
|
|
final errorResponse = json.decode(response.body) as Map<String, dynamic>;
|
|
if (errorResponse.containsKey('minAmount')) {
|
|
params['amount'] = errorResponse['minAmount'].toString();
|
|
continue;
|
|
}
|
|
throw Exception('Error 422: ${errorResponse['message'] ?? 'Unknown error'}');
|
|
} else {
|
|
throw Exception('Unexpected HTTP status: ${response.statusCode}');
|
|
}
|
|
}
|
|
|
|
throw Exception('Failed to fetch limits after retrying.');
|
|
}
|
|
|
|
@override
|
|
Future<double> fetchRate(
|
|
{required CryptoCurrency from,
|
|
required CryptoCurrency to,
|
|
required double amount,
|
|
required bool isFixedRateMode,
|
|
required bool isReceiveAmount}) async {
|
|
try {
|
|
if (amount == 0) return 0.0;
|
|
|
|
final params = {
|
|
'coinFrom': _normalizeCurrency(from),
|
|
'coinTo': _normalizeCurrency(to),
|
|
'networkFrom': _networkFor(from),
|
|
'networkTo': _networkFor(to),
|
|
'rateType': _getRateType(isFixedRateMode),
|
|
'apiToken': apiKey,
|
|
};
|
|
|
|
if (isReceiveAmount)
|
|
params['withdrawalAmount'] = amount.toString();
|
|
else
|
|
params['amount'] = amount.toString();
|
|
|
|
final uri = Uri.https(apiBaseUrl, ratePath, params);
|
|
final response = await ProxyWrapper().get(clearnetUri: uri);
|
|
|
|
final responseJSON = json.decode(response.body) as Map<String, dynamic>;
|
|
|
|
if (response.statusCode != 200) {
|
|
final message = responseJSON['message'] as String?;
|
|
throw Exception(message);
|
|
}
|
|
|
|
return responseJSON['rate'] as double;
|
|
} catch (e) {
|
|
printV(e.toString());
|
|
return 0.0;
|
|
}
|
|
}
|
|
|
|
@override
|
|
Future<Trade> createTrade({
|
|
required TradeRequest request,
|
|
required bool isFixedRateMode,
|
|
required bool isSendAll,
|
|
}) async {
|
|
final headers = {'Content-Type': 'application/json'};
|
|
final body = {
|
|
'coinFrom': _normalizeCurrency(request.fromCurrency),
|
|
'coinTo': _normalizeCurrency(request.toCurrency),
|
|
'networkFrom': _networkFor(request.fromCurrency),
|
|
'networkTo': _networkFor(request.toCurrency),
|
|
'withdrawalAddress': _normalizeAddress(request.toAddress),
|
|
'refundAddress': _normalizeAddress(request.refundAddress),
|
|
'rateType': _getRateType(isFixedRateMode),
|
|
'apiToken': apiKey,
|
|
};
|
|
|
|
if (isFixedRateMode)
|
|
body['withdrawalAmount'] = request.toAmount;
|
|
else
|
|
body['amount'] = request.fromAmount;
|
|
|
|
final uri = Uri.https(apiBaseUrl, transactionsPath);
|
|
final response = await ProxyWrapper().post(
|
|
clearnetUri: uri,
|
|
headers: headers,
|
|
body: json.encode(body),
|
|
);
|
|
|
|
|
|
if (response.statusCode == 400) {
|
|
final responseJSON = json.decode(response.body) as Map<String, dynamic>;
|
|
final errors = responseJSON['errors'] as Map<String, String>;
|
|
final errorMessage = errors.values.join(', ');
|
|
throw Exception(errorMessage);
|
|
}
|
|
|
|
if (response.statusCode != 200 && response.statusCode != 201)
|
|
throw Exception('Unexpected http status: ${response.statusCode}');
|
|
|
|
final responseJSON = json.decode(response.body) as Map<String, dynamic>;
|
|
final id = responseJSON['id'] as String;
|
|
final inputAddress = responseJSON['depositAddress'] as String;
|
|
final refundAddress = responseJSON['refundAddress'] as String?;
|
|
final extraId = responseJSON['depositExtraId'] as String?;
|
|
final payoutAddress = responseJSON['withdrawalAddress'] as String;
|
|
final amount = responseJSON['amount'].toString();
|
|
final receiveAmount = responseJSON['amountTo']?.toString();
|
|
|
|
return Trade(
|
|
id: id,
|
|
from: request.fromCurrency,
|
|
to: request.toCurrency,
|
|
provider: description,
|
|
inputAddress: inputAddress,
|
|
refundAddress: refundAddress,
|
|
extraId: extraId,
|
|
createdAt: DateTime.now(),
|
|
amount: amount,
|
|
receiveAmount: receiveAmount ?? request.toAmount,
|
|
state: TradeState.created,
|
|
payoutAddress: payoutAddress,
|
|
isSendAll: isSendAll,
|
|
);
|
|
}
|
|
|
|
@override
|
|
Future<Trade> findTradeById({required String id}) async {
|
|
final findTradeByIdPath = '$transactionsPath/$id';
|
|
final uri = Uri.https(apiBaseUrl, findTradeByIdPath);
|
|
final response = await ProxyWrapper().get(clearnetUri: uri);
|
|
|
|
if (response.statusCode == 404) throw TradeNotFoundException(id, provider: description);
|
|
|
|
if (response.statusCode == 400) {
|
|
final responseJSON = json.decode(response.body) as Map<String, dynamic>;
|
|
final errors = responseJSON['errors'] as Map<String, String>;
|
|
final errorMessage = errors.values.join(', ');
|
|
|
|
throw TradeNotFoundException(id, provider: description, description: errorMessage);
|
|
}
|
|
|
|
if (response.statusCode != 200)
|
|
throw Exception('Unexpected http status: ${response.statusCode}');
|
|
|
|
final responseJSON = json.decode(response.body) as Map<String, dynamic>;
|
|
final coinFrom = responseJSON['coinFrom']['coinCode'] as String;
|
|
final coinTo = responseJSON['coinTo']['coinCode'] as String;
|
|
final inputAddress = responseJSON['depositAddress'] as String;
|
|
final amount = responseJSON['amount'].toString();
|
|
final status = responseJSON['status'] as String;
|
|
final extraId = responseJSON['depositExtraId'] as String?;
|
|
final outputTransaction = responseJSON['hashOut']['hash'] as String?;
|
|
final payoutAddress = responseJSON['withdrawalAddress'] as String;
|
|
|
|
return Trade(
|
|
id: id,
|
|
from: CryptoCurrency.fromString(coinFrom),
|
|
to: CryptoCurrency.fromString(coinTo),
|
|
provider: description,
|
|
inputAddress: inputAddress,
|
|
amount: amount,
|
|
state: TradeState.deserialize(raw: _prepareStatus(status)),
|
|
extraId: extraId,
|
|
outputTransaction: outputTransaction,
|
|
payoutAddress: payoutAddress);
|
|
}
|
|
|
|
String _getRateType(bool isFixedRate) => isFixedRate ? 'fixed' : 'float';
|
|
|
|
String _prepareStatus(String status) {
|
|
switch (status) {
|
|
case 'deleted':
|
|
case 'error':
|
|
return 'overdue';
|
|
default:
|
|
return status;
|
|
}
|
|
}
|
|
|
|
String _networkFor(CryptoCurrency currency) {
|
|
switch (currency) {
|
|
case CryptoCurrency.arb:
|
|
return 'ARBITRUM';
|
|
default:
|
|
return currency.tag != null ? _normalizeTag(currency.tag!) : currency.title;
|
|
}
|
|
}
|
|
|
|
String _normalizeCurrency(CryptoCurrency currency) {
|
|
switch (currency) {
|
|
case CryptoCurrency.nano:
|
|
return 'XNO';
|
|
case CryptoCurrency.bttc:
|
|
return 'BTT';
|
|
case CryptoCurrency.zec:
|
|
return 'ZEC';
|
|
default:
|
|
return currency.title;
|
|
}
|
|
}
|
|
|
|
String _normalizeTag(String tag) {
|
|
switch (tag) {
|
|
case 'POLY':
|
|
return 'Polygon';
|
|
default:
|
|
return tag;
|
|
}
|
|
}
|
|
|
|
String _normalizeAddress(String address) =>
|
|
address.startsWith('bitcoincash:') ? address.replaceFirst('bitcoincash:', '') : address;
|
|
|
|
static double? _toDouble(dynamic value) {
|
|
if (value is int) {
|
|
return value.toDouble();
|
|
} else if (value is double) {
|
|
return value;
|
|
} else if (value is String) {
|
|
return double.tryParse(value);
|
|
}
|
|
return null;
|
|
}
|
|
}
|