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

10 lines
327 B
Dart
Raw Normal View History

2024-01-13 21:49:29 +00:00
import 'package:stackwallet/utilities/amount/amount.dart';
import 'package:stackwallet/wallets/crypto_currency/intermediate/bip39_hd_currency.dart';
mixin PaynymCurrencyInterface on Bip39HDCurrency {
Amount get dustLimitP2PKH => Amount(
rawValue: BigInt.from(546),
fractionDigits: fractionDigits,
);
}