2024-05-23 00:37:06 +00:00
|
|
|
import '../../crypto_currency/intermediate/cryptonote_currency.dart';
|
|
|
|
import '../wallet.dart';
|
2024-09-30 15:36:12 +00:00
|
|
|
import '../wallet_mixin_interfaces/coin_control_interface.dart';
|
2024-05-23 00:37:06 +00:00
|
|
|
import '../wallet_mixin_interfaces/mnemonic_interface.dart';
|
2023-09-14 23:34:01 +00:00
|
|
|
|
2023-11-06 18:26:33 +00:00
|
|
|
abstract class CryptonoteWallet<T extends CryptonoteCurrency> extends Wallet<T>
|
2024-09-30 15:36:12 +00:00
|
|
|
with MnemonicInterface<T>, CoinControlInterface<T> {
|
2024-05-27 23:56:22 +00:00
|
|
|
CryptonoteWallet(super.currency);
|
2023-09-14 23:34:01 +00:00
|
|
|
}
|