stack_wallet/lib/wallets/crypto_currency/interfaces/paynym_currency_interface.dart

11 lines
347 B
Dart
Raw Normal View History

import '../../../utilities/amount/amount.dart';
import 'electrumx_currency_interface.dart';
import '../intermediate/bip39_hd_currency.dart';
2024-01-13 21:49:29 +00:00
2024-05-15 21:20:45 +00:00
mixin PaynymCurrencyInterface on ElectrumXCurrencyInterface, Bip39HDCurrency {
2024-01-13 21:49:29 +00:00
Amount get dustLimitP2PKH => Amount(
rawValue: BigInt.from(546),
fractionDigits: fractionDigits,
);
}