mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-27 14:09:50 +00:00
15 lines
702 B
Dart
15 lines
702 B
Dart
|
import 'package:cake_wallet/store/dashboard/fiat_conversion_store.dart';
|
||
|
import 'package:cw_core/crypto_currency.dart';
|
||
|
import 'package:cw_monero/monero_amount_format.dart';
|
||
|
import 'package:cw_haven/api/balance_list.dart';
|
||
|
|
||
|
Future<void> updateHavenRate(FiatConversionStore fiatConversionStore) async {
|
||
|
final rate = getRate();
|
||
|
final base = rate.firstWhere((row) => row.getAssetType() == 'XUSD', orElse: () => null);
|
||
|
rate.forEach((row) {
|
||
|
final cur = CryptoCurrency.fromString(row.getAssetType());
|
||
|
final baseRate = moneroAmountToDouble(amount: base.getRate());
|
||
|
final rowRate = moneroAmountToDouble(amount: row.getRate());
|
||
|
fiatConversionStore.prices[cur] = baseRate * rowRate;
|
||
|
});
|
||
|
}
|