stack_wallet/lib/wallets/crypto_currency/coins/wownero.dart

15 lines
379 B
Dart
Raw Normal View History

2023-11-06 21:37:18 +00:00
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
2023-11-06 21:37:18 +00:00
int get minConfirms => 15;
@override
bool validateAddress(String address) {
2023-11-06 21:37:18 +00:00
return wownero_wallet.validateAddress(address);
}
}