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';
|
2023-09-18 21:56:57 +00:00
|
|
|
import 'package:stackwallet/wallets/example/libepiccash.dart';
|
2023-09-18 21:28:31 +00:00
|
|
|
|
|
|
|
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-09-18 21:56:57 +00:00
|
|
|
return LibEpiccash.validateSendAddress(address: address);
|
2023-09-18 21:28:31 +00:00
|
|
|
}
|
2023-09-20 14:12:48 +00:00
|
|
|
|
|
|
|
String getMnemonic() {
|
|
|
|
return LibEpiccash.getMnemonic();
|
|
|
|
}
|
|
|
|
|
2023-09-26 15:36:21 +00:00
|
|
|
Future<void> createNewWallet(({String config, String mnemonic, String password, String name})? data) async {
|
|
|
|
await LibEpiccash.initializeNewWallet(
|
2023-09-20 14:12:48 +00:00
|
|
|
config: data!.config,
|
|
|
|
mnemonic: data.mnemonic,
|
|
|
|
password: data.password,
|
|
|
|
name: data.name);
|
|
|
|
}
|
2023-09-18 21:28:31 +00:00
|
|
|
}
|