cake_wallet/cw_ethereum/lib/ethereum_formatter.dart

7 lines
165 B
Dart
Raw Normal View History

import 'dart:math';
2023-03-16 17:24:21 +00:00
class EthereumFormatter {
static int parseEthereumAmount(String amount) =>
BigInt.from(double.parse(amount) * (pow(10, 18))).toInt();
}