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

9 lines
219 B
Dart
Raw Normal View History

import '../intermediate/bip39_hd_currency.dart';
2024-05-15 21:20:45 +00:00
mixin ElectrumXCurrencyInterface on Bip39HDCurrency {
int get transactionVersion;
/// The default fee rate in satoshis per kilobyte.
BigInt get defaultFeeRate;
2024-05-15 21:20:45 +00:00
}