mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 09:47:37 +00:00
10 lines
327 B
Dart
10 lines
327 B
Dart
|
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,
|
||
|
);
|
||
|
}
|