stack_wallet/lib/wallets/wallet/intermediate/cryptonote_wallet.dart

10 lines
397 B
Dart
Raw Normal View History

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';
import '../wallet_mixin_interfaces/mnemonic_interface.dart';
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);
}