2021-12-24 12:52:08 +00: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 17:09:57 +00:00
|
|
|
String bitcoinAmountToString({required int amount}) => bitcoinAmountFormat.format(
|
2021-12-24 12:52:08 +00:00
|
|
|
cryptoAmountToDouble(amount: amount, divider: bitcoinAmountDivider));
|
|
|
|
|
2022-10-12 17:09:57 +00:00
|
|
|
double bitcoinAmountToDouble({required int amount}) =>
|
2021-12-24 12:52:08 +00:00
|
|
|
cryptoAmountToDouble(amount: amount, divider: bitcoinAmountDivider);
|
|
|
|
|
|
|
|
int stringDoubleToBitcoinAmount(String amount) {
|
|
|
|
int result = 0;
|
|
|
|
|
|
|
|
try {
|
2023-02-15 21:16:21 +00:00
|
|
|
result = (double.parse(amount) * bitcoinAmountDivider).round();
|
2021-12-24 12:52:08 +00:00
|
|
|
} catch (e) {
|
|
|
|
result = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|