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

8 lines
219 B
Dart

import '../intermediate/bip39_hd_currency.dart';
mixin ElectrumXCurrencyInterface on Bip39HDCurrency {
int get transactionVersion;
/// The default fee rate in satoshis per kilobyte.
BigInt get defaultFeeRate;
}