stack_wallet/lib/wallets/crypto_currency/interfaces/paynym_currency_interface.dart
2024-05-15 15:24:02 -06:00

10 lines
454 B
Dart

import 'package:stackwallet/utilities/amount/amount.dart';
import 'package:stackwallet/wallets/crypto_currency/interfaces/electrumx_currency_interface.dart';
import 'package:stackwallet/wallets/crypto_currency/intermediate/bip39_hd_currency.dart';
mixin PaynymCurrencyInterface on ElectrumXCurrencyInterface, Bip39HDCurrency {
Amount get dustLimitP2PKH => Amount(
rawValue: BigInt.from(546),
fractionDigits: fractionDigits,
);
}