mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-26 13:39:39 +00:00
d1870ba8b8
* chore: Initial setup for Tron Wallet * feat: Create Tron Wallet base flow implemented, keys, address, receive, restore and proxy classes all setup * feat: Display seed and key within the app * feat: Activate restore from key and seed for Tron wallet * feat: Add icon for tron wallet in wallet listing page * feat: Activate display of receive address for tron * feat: Fetch and display tron balance, sending transaction flow setup, fee limit calculation setup * feat: Implement sending of native tron, setup sending of trc20 tokens * chore: Rename function * Delete lib/tron/tron.dart * feat: Activate exchange for tron and its tokens, implement balance display for trc20 tokens and setup secrets configuration for tron * feat: Implement tron token management, add, remove, delete, and get tokens in home settings view, also minor cleanup * feat: Activate buy and sell for tron * feat: Implement restore from QR, transactions history listing for both native transactions and trc20 transactions * feat: Activate send all and do some minor cleanups * chore: Fix some lint infos and warnings * chore: Adjust configurations * ci: Modify CI to create and add secrets for node * fix: Fixes made while self reviewing the PR for this feature * feat: Add guide for adding new wallet types, and add fixes to requested changes * fix: Handle exceptions gracefully * fix: Alternative for trc20 estimated fee * fix: Fixes to display of amount and fee, removing clashes * fix: Fee calculation WIP * fix: Fix issue with handling of send all flow and display of amount and fee values before broadcasting transaction * fix: PR review fixes and fix merge conflicts * fix: Modify fetching assetOfTransaction [skip ci] * fix: Move tron settings migration to 33
196 lines
6.8 KiB
Dart
196 lines
6.8 KiB
Dart
import 'dart:async';
|
|
|
|
import 'package:cake_wallet/exchange/exchange_provider_description.dart';
|
|
import 'package:cake_wallet/exchange/provider/changenow_exchange_provider.dart';
|
|
import 'package:cake_wallet/exchange/provider/exchange_provider.dart';
|
|
import 'package:cake_wallet/exchange/provider/exolix_exchange_provider.dart';
|
|
import 'package:cake_wallet/exchange/provider/sideshift_exchange_provider.dart';
|
|
import 'package:cake_wallet/exchange/provider/simpleswap_exchange_provider.dart';
|
|
import 'package:cake_wallet/exchange/provider/thorchain_exchange.provider.dart';
|
|
import 'package:cake_wallet/exchange/provider/trocador_exchange_provider.dart';
|
|
import 'package:cake_wallet/exchange/trade.dart';
|
|
import 'package:cake_wallet/generated/i18n.dart';
|
|
import 'package:cake_wallet/src/screens/exchange_trade/exchange_trade_item.dart';
|
|
import 'package:cake_wallet/store/dashboard/trades_store.dart';
|
|
import 'package:cake_wallet/view_model/send/send_view_model.dart';
|
|
import 'package:cw_core/crypto_currency.dart';
|
|
import 'package:cw_core/wallet_base.dart';
|
|
import 'package:hive/hive.dart';
|
|
import 'package:mobx/mobx.dart';
|
|
|
|
part 'exchange_trade_view_model.g.dart';
|
|
|
|
class ExchangeTradeViewModel = ExchangeTradeViewModelBase with _$ExchangeTradeViewModel;
|
|
|
|
abstract class ExchangeTradeViewModelBase with Store {
|
|
ExchangeTradeViewModelBase(
|
|
{required this.wallet,
|
|
required this.trades,
|
|
required this.tradesStore,
|
|
required this.sendViewModel})
|
|
: trade = tradesStore.trade!,
|
|
isSendable = _checkIfCanSend(tradesStore, wallet),
|
|
items = ObservableList<ExchangeTradeItem>() {
|
|
switch (trade.provider) {
|
|
case ExchangeProviderDescription.changeNow:
|
|
_provider =
|
|
ChangeNowExchangeProvider(settingsStore: sendViewModel.balanceViewModel.settingsStore);
|
|
break;
|
|
case ExchangeProviderDescription.sideShift:
|
|
_provider = SideShiftExchangeProvider();
|
|
break;
|
|
case ExchangeProviderDescription.simpleSwap:
|
|
_provider = SimpleSwapExchangeProvider();
|
|
break;
|
|
case ExchangeProviderDescription.trocador:
|
|
_provider = TrocadorExchangeProvider();
|
|
break;
|
|
case ExchangeProviderDescription.exolix:
|
|
_provider = ExolixExchangeProvider();
|
|
break;
|
|
case ExchangeProviderDescription.thorChain:
|
|
_provider = ThorChainExchangeProvider(tradesStore: trades);
|
|
break;
|
|
}
|
|
|
|
_updateItems();
|
|
|
|
if (_provider != null) {
|
|
_updateTrade();
|
|
timer = Timer.periodic(Duration(seconds: 20), (_) async => _updateTrade());
|
|
}
|
|
}
|
|
|
|
final WalletBase wallet;
|
|
final Box<Trade> trades;
|
|
final TradesStore tradesStore;
|
|
final SendViewModel sendViewModel;
|
|
|
|
@observable
|
|
Trade trade;
|
|
|
|
@observable
|
|
bool isSendable;
|
|
|
|
@computed
|
|
String get extraInfo => trade.from == CryptoCurrency.xlm
|
|
? '\n\n' + S.current.xlm_extra_info
|
|
: trade.from == CryptoCurrency.xrp
|
|
? '\n\n' + S.current.xrp_extra_info
|
|
: '';
|
|
|
|
@computed
|
|
String get pendingTransactionFiatAmountValueFormatted => sendViewModel.isFiatDisabled
|
|
? ''
|
|
: sendViewModel.pendingTransactionFiatAmount + ' ' + sendViewModel.fiat.title;
|
|
|
|
@computed
|
|
String get pendingTransactionFeeFiatAmountFormatted => sendViewModel.isFiatDisabled
|
|
? ''
|
|
: sendViewModel.pendingTransactionFeeFiatAmount + ' ' + sendViewModel.fiat.title;
|
|
|
|
@observable
|
|
ObservableList<ExchangeTradeItem> items;
|
|
|
|
ExchangeProvider? _provider;
|
|
|
|
Timer? timer;
|
|
|
|
@action
|
|
Future<void> confirmSending() async {
|
|
if (!isSendable) return;
|
|
|
|
sendViewModel.clearOutputs();
|
|
final output = sendViewModel.outputs.first;
|
|
output.address = trade.inputAddress ?? '';
|
|
output.setCryptoAmount(trade.amount);
|
|
if (_provider is ThorChainExchangeProvider) output.memo = trade.memo;
|
|
if (trade.isSendAll == true) output.sendAll = true;
|
|
sendViewModel.selectedCryptoCurrency = trade.from;
|
|
final pendingTransaction = await sendViewModel.createTransaction(provider: _provider);
|
|
if (_provider is ThorChainExchangeProvider) {
|
|
trade.id = pendingTransaction?.id ?? '';
|
|
trades.add(trade);
|
|
}
|
|
}
|
|
|
|
@action
|
|
Future<void> _updateTrade() async {
|
|
try {
|
|
final agreedAmount = tradesStore.trade!.amount;
|
|
final isSendAll = tradesStore.trade!.isSendAll;
|
|
final updatedTrade = await _provider!.findTradeById(id: trade.id);
|
|
|
|
if (updatedTrade.createdAt == null && trade.createdAt != null)
|
|
updatedTrade.createdAt = trade.createdAt;
|
|
|
|
if (updatedTrade.amount.isEmpty) updatedTrade.amount = trade.amount;
|
|
|
|
trade = updatedTrade;
|
|
trade.amount = agreedAmount;
|
|
trade.isSendAll = isSendAll;
|
|
|
|
_updateItems();
|
|
} catch (e) {
|
|
print(e.toString());
|
|
}
|
|
}
|
|
|
|
void _updateItems() {
|
|
final tagFrom =
|
|
tradesStore.trade!.from.tag != null ? '${tradesStore.trade!.from.tag}' + ' ' : '';
|
|
final tagTo = tradesStore.trade!.to.tag != null ? '${tradesStore.trade!.to.tag}' + ' ' : '';
|
|
items.clear();
|
|
|
|
if (trade.provider != ExchangeProviderDescription.thorChain)
|
|
items.add(ExchangeTradeItem(
|
|
title: "${trade.provider.title} ${S.current.id}", data: '${trade.id}', isCopied: true));
|
|
|
|
if (trade.extraId != null) {
|
|
final title = trade.from == CryptoCurrency.xrp
|
|
? S.current.destination_tag
|
|
: trade.from == CryptoCurrency.xlm
|
|
? S.current.memo
|
|
: S.current.extra_id;
|
|
|
|
items.add(ExchangeTradeItem(title: title, data: '${trade.extraId}', isCopied: false));
|
|
}
|
|
|
|
items.addAll([
|
|
ExchangeTradeItem(title: S.current.amount, data: '${trade.amount}', isCopied: true),
|
|
ExchangeTradeItem(
|
|
title: S.current.send_to_this_address('${tradesStore.trade!.from}', tagFrom) + ':',
|
|
data: trade.inputAddress ?? '',
|
|
isCopied: true),
|
|
ExchangeTradeItem(
|
|
title: S.current.arrive_in_this_address('${tradesStore.trade!.to}', tagTo) + ':',
|
|
data: trade.payoutAddress ?? '',
|
|
isCopied: true),
|
|
]);
|
|
}
|
|
|
|
static bool _checkIfCanSend(TradesStore tradesStore, WalletBase wallet) {
|
|
bool _isEthToken() =>
|
|
wallet.currency == CryptoCurrency.eth &&
|
|
tradesStore.trade!.from.tag == CryptoCurrency.eth.title;
|
|
|
|
bool _isPolygonToken() =>
|
|
wallet.currency == CryptoCurrency.maticpoly &&
|
|
tradesStore.trade!.from.tag == CryptoCurrency.maticpoly.tag;
|
|
|
|
bool _isTronToken() =>
|
|
wallet.currency == CryptoCurrency.trx &&
|
|
tradesStore.trade!.from.tag == CryptoCurrency.trx.title;
|
|
|
|
bool _isSplToken() =>
|
|
wallet.currency == CryptoCurrency.sol &&
|
|
tradesStore.trade!.from.tag == CryptoCurrency.sol.title;
|
|
|
|
return tradesStore.trade!.from == wallet.currency ||
|
|
tradesStore.trade!.provider == ExchangeProviderDescription.xmrto ||
|
|
_isEthToken() ||
|
|
_isPolygonToken() ||
|
|
_isSplToken() ||
|
|
_isTronToken();
|
|
}
|
|
}
|