mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-26 05:19:22 +00:00
9 lines
397 B
Dart
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);
|
|
}
|