2024-05-23 00:37:06 +00:00
|
|
|
import '../../../models/isar/models/blockchain_data/address.dart';
|
|
|
|
import '../crypto_currency.dart';
|
2024-11-12 15:28:44 +00:00
|
|
|
import '../interfaces/view_only_option_currency_interface.dart';
|
2023-11-06 18:26:33 +00:00
|
|
|
|
2024-11-12 15:28:44 +00:00
|
|
|
abstract class CryptonoteCurrency extends CryptoCurrency
|
|
|
|
with ViewOnlyOptionCurrencyInterface {
|
2023-11-06 18:26:33 +00:00
|
|
|
CryptonoteCurrency(super.network);
|
2023-11-06 21:37:18 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
String get genesisHash {
|
|
|
|
return "not used in stack's cryptonote coins";
|
|
|
|
}
|
2024-05-15 21:20:45 +00:00
|
|
|
|
|
|
|
@override
|
2024-06-20 16:16:12 +00:00
|
|
|
AddressType get defaultAddressType => AddressType.cryptonote;
|
2023-11-06 18:26:33 +00:00
|
|
|
}
|