stack_wallet/lib/wallets/crypto_currency/coins/wownero.dart
2023-11-06 15:37:18 -06:00

14 lines
379 B
Dart

import 'package:cw_wownero/api/wallet.dart' as wownero_wallet;
import 'package:stackwallet/wallets/crypto_currency/intermediate/cryptonote_currency.dart';
class Wownero extends CryptonoteCurrency {
Wownero(super.network);
@override
int get minConfirms => 15;
@override
bool validateAddress(String address) {
return wownero_wallet.validateAddress(address);
}
}