2021-12-24 14:52:08 +02:00
|
|
|
import 'package:intl/intl.dart';
|
|
|
|
import 'package:cw_core/crypto_amount_format.dart';
|
|
|
|
|
|
|
|
const bitcoinAmountLength = 8;
|
|
|
|
const bitcoinAmountDivider = 100000000;
|
|
|
|
final bitcoinAmountFormat = NumberFormat()
|
|
|
|
..maximumFractionDigits = bitcoinAmountLength
|
|
|
|
..minimumFractionDigits = 1;
|
|
|
|
|
2022-10-12 13:09:57 -04:00
|
|
|
String bitcoinAmountToString({required int amount}) => bitcoinAmountFormat.format(
|
2021-12-24 14:52:08 +02:00
|
|
|
cryptoAmountToDouble(amount: amount, divider: bitcoinAmountDivider));
|
|
|
|
|
2022-10-12 13:09:57 -04:00
|
|
|
double bitcoinAmountToDouble({required int amount}) =>
|
2021-12-24 14:52:08 +02:00
|
|
|
cryptoAmountToDouble(amount: amount, divider: bitcoinAmountDivider);
|
|
|
|
|
|
|
|
int stringDoubleToBitcoinAmount(String amount) {
|
|
|
|
int result = 0;
|
|
|
|
|
|
|
|
try {
|
2023-02-15 23:16:21 +02:00
|
|
|
result = (double.parse(amount) * bitcoinAmountDivider).round();
|
2021-12-24 14:52:08 +02:00
|
|
|
} catch (e) {
|
|
|
|
result = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|