mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-18 02:07:43 +00:00
14 lines
379 B
Dart
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);
|
|
}
|
|
}
|