stack_wallet/lib/wallets/wallet/impl/nano_wallet.dart

9 lines
361 B
Dart
Raw Normal View History

import '../../crypto_currency/crypto_currency.dart';
import '../../crypto_currency/intermediate/nano_currency.dart';
import '../intermediate/bip39_wallet.dart';
import '../wallet_mixin_interfaces/nano_interface.dart';
2023-11-15 21:59:01 +00:00
class NanoWallet extends Bip39Wallet<NanoCurrency> with NanoInterface {
2023-11-15 21:59:01 +00:00
NanoWallet(CryptoCurrencyNetwork network) : super(Nano(network));
}