stack_wallet/lib/wallets/wallet/intermediate/cryptonote_wallet.dart
2024-10-01 10:39:25 -06:00

9 lines
397 B
Dart

import '../../crypto_currency/intermediate/cryptonote_currency.dart';
import '../wallet.dart';
import '../wallet_mixin_interfaces/coin_control_interface.dart';
import '../wallet_mixin_interfaces/mnemonic_interface.dart';
abstract class CryptonoteWallet<T extends CryptonoteCurrency> extends Wallet<T>
with MnemonicInterface<T>, CoinControlInterface<T> {
CryptonoteWallet(super.currency);
}