mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 20:39:51 +00:00
120 lines
3.3 KiB
Dart
120 lines
3.3 KiB
Dart
|
import 'dart:math';
|
||
|
|
||
|
import 'package:cake_wallet/core/execution_state.dart';
|
||
|
import 'package:cake_wallet/ethereum/ethereum.dart';
|
||
|
import 'package:cake_wallet/store/app_store.dart';
|
||
|
import 'package:cake_wallet/view_model/send/send_view_model_state.dart';
|
||
|
import 'package:cw_core/pending_transaction.dart';
|
||
|
import 'package:cw_core/wallet_type.dart';
|
||
|
import 'package:mobx/mobx.dart';
|
||
|
|
||
|
part 'deuro_view_model.g.dart';
|
||
|
|
||
|
class DEuroViewModel = DEuroViewModelBase with _$DEuroViewModel;
|
||
|
|
||
|
abstract class DEuroViewModelBase with Store {
|
||
|
final AppStore _appStore;
|
||
|
|
||
|
DEuroViewModelBase(this._appStore) {
|
||
|
reloadInterestRate();
|
||
|
reloadSavingsUserData();
|
||
|
}
|
||
|
|
||
|
@observable
|
||
|
String savingsBalance = '0.00';
|
||
|
|
||
|
@observable
|
||
|
ExecutionState state = InitialExecutionState();
|
||
|
|
||
|
@observable
|
||
|
String interestRate = '0';
|
||
|
|
||
|
@observable
|
||
|
String accruedInterest = '0.00';
|
||
|
|
||
|
@observable
|
||
|
BigInt approvedTokens = BigInt.zero;
|
||
|
|
||
|
@computed
|
||
|
bool get isEnabled => approvedTokens > BigInt.zero;
|
||
|
|
||
|
@observable
|
||
|
PendingTransaction? transaction = null;
|
||
|
|
||
|
@observable
|
||
|
PendingTransaction? approvalTransaction = null;
|
||
|
|
||
|
@action
|
||
|
Future<void> reloadSavingsUserData() async {
|
||
|
final savingsBalanceRaw =
|
||
|
ethereum!.getDEuroSavingsBalance(_appStore.wallet!);
|
||
|
final accruedInterestRaw =
|
||
|
ethereum!.getDEuroAccruedInterest(_appStore.wallet!);
|
||
|
|
||
|
approvedTokens = await ethereum!.getDEuroSavingsApproved(_appStore.wallet!);
|
||
|
|
||
|
savingsBalance = ethereum!
|
||
|
.formatterEthereumAmountToDouble(amount: await savingsBalanceRaw)
|
||
|
.toStringAsFixed(6);
|
||
|
accruedInterest = ethereum!
|
||
|
.formatterEthereumAmountToDouble(amount: await accruedInterestRaw)
|
||
|
.toStringAsFixed(6);
|
||
|
}
|
||
|
|
||
|
@action
|
||
|
Future<void> reloadInterestRate() async {
|
||
|
final interestRateRaw =
|
||
|
await ethereum!.getDEuroInterestRate(_appStore.wallet!);
|
||
|
|
||
|
interestRate = (interestRateRaw / BigInt.from(10000)).toString();
|
||
|
}
|
||
|
|
||
|
@action
|
||
|
Future<void> prepareApproval() async {
|
||
|
final priority = _appStore.settingsStore.priority[WalletType.ethereum]!;
|
||
|
approvalTransaction =
|
||
|
await ethereum!.enableDEuroSaving(_appStore.wallet!, priority);
|
||
|
}
|
||
|
|
||
|
@action
|
||
|
Future<void> prepareSavingsEdit(String amountRaw, bool isAdding) async {
|
||
|
final amount = BigInt.from(num.parse(amountRaw) * pow(10, 18));
|
||
|
final priority = _appStore.settingsStore.priority[WalletType.ethereum]!;
|
||
|
transaction = await (isAdding
|
||
|
? ethereum!.addDEuroSaving(_appStore.wallet!, amount, priority)
|
||
|
: ethereum!.removeDEuroSaving(_appStore.wallet!, amount, priority));
|
||
|
}
|
||
|
|
||
|
Future<void> prepareCollectInterest() =>
|
||
|
prepareSavingsEdit(accruedInterest, false);
|
||
|
|
||
|
@action
|
||
|
Future<void> commitTransaction() async {
|
||
|
if (transaction != null) {
|
||
|
state = TransactionCommitting();
|
||
|
await transaction!.commit();
|
||
|
transaction = null;
|
||
|
reloadSavingsUserData();
|
||
|
state = TransactionCommitted();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@action
|
||
|
Future<void> commitApprovalTransaction() async {
|
||
|
if (approvalTransaction != null) {
|
||
|
state = TransactionCommitting();
|
||
|
await approvalTransaction!.commit();
|
||
|
approvalTransaction = null;
|
||
|
reloadSavingsUserData();
|
||
|
state = TransactionCommitted();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@action
|
||
|
void dismissTransaction() {
|
||
|
transaction == null;
|
||
|
approvalTransaction = null;
|
||
|
state = InitialExecutionState();
|
||
|
}
|
||
|
}
|