mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 01:37:54 +00:00
10 lines
347 B
Dart
10 lines
347 B
Dart
import '../../../utilities/amount/amount.dart';
|
|
import 'electrumx_currency_interface.dart';
|
|
import '../intermediate/bip39_hd_currency.dart';
|
|
|
|
mixin PaynymCurrencyInterface on ElectrumXCurrencyInterface, Bip39HDCurrency {
|
|
Amount get dustLimitP2PKH => Amount(
|
|
rawValue: BigInt.from(546),
|
|
fractionDigits: fractionDigits,
|
|
);
|
|
}
|