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

36 lines
1.1 KiB
Dart
Raw Normal View History

2023-10-30 15:48:05 +00:00
import 'package:flutter_libepiccash/lib.dart' as epic;
2023-09-18 21:28:31 +00:00
import 'package:stackwallet/utilities/enums/coin_enum.dart';
import 'package:stackwallet/wallets/crypto_currency/bip39_currency.dart';
import 'package:stackwallet/wallets/crypto_currency/crypto_currency.dart';
class Epiccash extends Bip39Currency {
Epiccash(super.network) {
switch (network) {
case CryptoCurrencyNetwork.main:
coin = Coin.epicCash;
default:
throw Exception("Unsupported network: $network");
}
}
@override
// change this to change the number of confirms a tx needs in order to show as confirmed
int get minConfirms => 3;
@override
bool validateAddress(String address) {
// Invalid address that contains HTTP and epicbox domain
if ((address.startsWith("http://") || address.startsWith("https://")) &&
address.contains("@")) {
return false;
}
if (address.startsWith("http://") || address.startsWith("https://")) {
if (Uri.tryParse(address) != null) {
return true;
}
}
2023-10-30 15:48:05 +00:00
return epic.LibEpiccash.validateSendAddress(address: address);
2023-09-18 21:28:31 +00:00
}
}